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
0810d330eb640abd249bf6012cda10ea0570c634
d6301c557b112bd6aa69ffbf6a0d25f1474f590c
/C/danei/thread/1.cc
dd1ff9d614e1dcf91b36d0ffc200a918d8fe5928
[]
no_license
awubo/C-language
f82d42a8bf300f5032c3983f29d17020ecb9eb3e
1ce412414b73b5f0c933e4cd796d8295a2911e22
refs/heads/master
2021-01-01T05:15:09.179517
2016-06-01T01:06:24
2016-06-01T01:06:24
58,862,274
0
0
null
2016-05-15T13:43:05
2016-05-15T13:12:51
null
UTF-8
C++
false
false
117
cc
#include<iostream> #include<pthread.h> using namespace std; struct stu{ char name[20]; int age; }; int main() { }
[ "7329422@qq.com" ]
7329422@qq.com
12b257119ab48d81f9b0d1c78074f60b7aba98fb
b05a9282ce27be0b3257c5954c06bc2103d9c23c
/demos/066_Marching_Cubes_CS/main.cpp
68014f750a62a317626125326d5789bc0ab935e8
[ "MIT" ]
permissive
KuKuLuo/OpenGL
9faf327b12075e3a5dbce5896ca1bf89de856d71
05026f25eb1bf0b7688e00c29066f519195c61fa
refs/heads/master
2020-12-30T16:58:47.597606
2017-05-11T22:54:58
2017-05-11T22:54:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,466
cpp
#include <iostream> #include <random> #include <stdlib.h> #define GLEW_STATIC #include <GL/glew.h> // OpenGL extensions #include <GLFW/glfw3.h> // windows and event management library #include <glm/glm.hpp> // OpenGL mathematics #include <glm/gtx/transform.hpp> #include <glm/gtc/matrix_transform.hpp> // for transformation matrices to work #include <glm/gtx/rotate_vector.hpp> #include <glm/ext.hpp> #include <glm/gtc/random.hpp> #include "log.hpp" #include "constants.hpp" #include "gl_info.hpp" #include "glfw_window.hpp" #include "shader.hpp" #include "camera.hpp" const float two_pi = 6.283185307179586476925286766559; const unsigned int TEXTURE_SIZE = 32; const unsigned int res_x = 1920; const unsigned int res_y = 1080; struct demo_window_t : public glfw_window_t { camera_t camera; demo_window_t(const char* title, int glfw_samples, int version_major, int version_minor, int res_x, int res_y, bool fullscreen = true) : glfw_window_t(title, glfw_samples, version_major, version_minor, res_x, res_y, fullscreen /*, true */) { gl_info::dump(OPENGL_BASIC_INFO | OPENGL_EXTENSIONS_INFO); camera.infinite_perspective(constants::two_pi / 6.0f, aspect(), 0.1f); } //=================================================================================================================================================================================================================== // event handlers //=================================================================================================================================================================================================================== void on_key(int key, int scancode, int action, int mods) override { if ((key == GLFW_KEY_UP) || (key == GLFW_KEY_W)) camera.move_forward(frame_dt); else if ((key == GLFW_KEY_DOWN) || (key == GLFW_KEY_S)) camera.move_backward(frame_dt); else if ((key == GLFW_KEY_RIGHT) || (key == GLFW_KEY_D)) camera.straight_right(frame_dt); else if ((key == GLFW_KEY_LEFT) || (key == GLFW_KEY_A)) camera.straight_left(frame_dt); } void on_mouse_move() override { double norm = glm::length(mouse_delta); if (norm > 0.01) camera.rotateXY(mouse_delta / norm, norm * frame_dt); } }; //======================================================================================================================================================================================================================= // program entry point //======================================================================================================================================================================================================================= int main(int argc, char *argv[]) { //=================================================================================================================================================================================================================== // initialize GLFW library, create GLFW window and initialize GLEW library // 8AA samples, OpenGL 4.3 context, screen resolution : 1920 x 1080, fullscreen //=================================================================================================================================================================================================================== if (!glfw::init()) exit_msg("Failed to initialize GLFW library. Exiting ..."); demo_window_t window("Marching cubes via GL_COMPUTE_SHADER", 4, 4, 3, 1920, 1080, true); //=================================================================================================================================================================================================================== // compile shaders and load static uniforms //=================================================================================================================================================================================================================== glsl_program_t isosurface(glsl_shader_t(GL_VERTEX_SHADER, "glsl/isosurface.vs"), glsl_shader_t(GL_FRAGMENT_SHADER, "glsl/isosurface.fs")); isosurface.enable(); uniform_t isosurface_inverse_view_matrix_id = isosurface["inverse_view_matrix"]; uniform_t isosurface_view_matrix = isosurface["view_matrix"]; //=================================================================================================================================================================================================================== // Density compute shader //=================================================================================================================================================================================================================== glsl_program_t density_compute(glsl_shader_t(GL_COMPUTE_SHADER, "glsl/density_compute.cs")); density_compute.enable(); uniform_t inverse_view_matrix_id = density_compute["inverse_view_matrix"]; //=================================================================================================================================================================================================================== // Marching cubes compute shader //=================================================================================================================================================================================================================== glsl_program_t marching_cubes(glsl_shader_t(GL_COMPUTE_SHADER, "glsl/marching_cubes.cs")); marching_cubes.enable(); uniform_t uniform_inverse_view_matrix_id = marching_cubes["inverse_view_matrix"]; //=================================================================================================================================================================================================================== // Create image texture to be used for the GL_COMPUTE_SHADER output //=================================================================================================================================================================================================================== GLuint density_texture_id; glGenTextures(1, &density_texture_id); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_3D, density_texture_id); glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE); glTexStorage3D(GL_TEXTURE_3D, 1, GL_R32F, TEXTURE_SIZE, TEXTURE_SIZE, TEXTURE_SIZE); glBindImageTexture(0, density_texture_id, 0, GL_TRUE, 0, GL_READ_WRITE, GL_R32F); // Note : GL_TRUE is necessary as GL_TEXTURE_3D is layered GLuint vertices_ssbo_id; glGenBuffers(1, &vertices_ssbo_id); glBindBuffer(GL_SHADER_STORAGE_BUFFER, vertices_ssbo_id); glBufferData(GL_SHADER_STORAGE_BUFFER, 400000 * sizeof(glm::vec4), 0, GL_DYNAMIC_DRAW); glBindBufferBase(GL_SHADER_STORAGE_BUFFER, 0, vertices_ssbo_id); GLuint triangles_acbo_id; glGenBuffers(1, &triangles_acbo_id); glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, triangles_acbo_id); glBufferData(GL_ATOMIC_COUNTER_BUFFER, sizeof(GLuint), 0, GL_DYNAMIC_COPY); glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, triangles_acbo_id); GLuint* data = (GLuint*) glMapBuffer(GL_ATOMIC_COUNTER_BUFFER, GL_WRITE_ONLY); *data = 0; glUnmapBuffer(GL_ATOMIC_COUNTER_BUFFER); //=================================================================================================================================================================================================================== // Create fake VAO with no attribute buffers, all the input data will come from GL_SHADER_STORAGE_BUFFER //=================================================================================================================================================================================================================== GLuint vao_id; glGenVertexArrays(1, &vao_id); glBindVertexArray(vao_id); glEnable(GL_DEPTH_TEST); glDisable(GL_CULL_FACE); double startup_ts = window.frame_ts; while(!window.should_close()) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // clear the screen window.new_frame(); float time = window.frame_ts; glm::mat4 inverse_view_matrix = glm::inverse(window.camera.view_matrix); debug_msg("Current camera matrix = %s", glm::to_string(inverse_view_matrix).c_str()); //=============================================================================================================================================================================================================== // Compute density texture3D //=============================================================================================================================================================================================================== density_compute.enable(); inverse_view_matrix_id = inverse_view_matrix; glDispatchCompute(TEXTURE_SIZE, TEXTURE_SIZE, TEXTURE_SIZE); //=============================================================================================================================================================================================================== // Marching cubes compute shader //=============================================================================================================================================================================================================== marching_cubes.enable(); //uniform_inverse_view_matrix_id = inverse_view_matrix; glDispatchCompute(TEXTURE_SIZE, TEXTURE_SIZE, TEXTURE_SIZE); //=============================================================================================================================================================================================================== // Read how many triangles were produced, and zero the counter for next iteration //=============================================================================================================================================================================================================== GLuint* data = (GLuint*) glMapBuffer(GL_ATOMIC_COUNTER_BUFFER, GL_READ_WRITE); unsigned int triangles_count = *data; *data = 0; glUnmapBuffer(GL_ATOMIC_COUNTER_BUFFER); debug_msg("Computation #%u done. FPS = %f. time = %f. %u vertices were generated by GL_COMPUTE_SHADER.", window.frame, double(window.frame) / (time - startup_ts), time, triangles_count); //=============================================================================================================================================================================================================== // Finally, render the mesh constructed by marching cubes compute shader //=============================================================================================================================================================================================================== isosurface.enable(); isosurface_view_matrix = window.camera.view_matrix; isosurface_inverse_view_matrix_id = inverse_view_matrix; glDrawArrays(GL_TRIANGLES, 0, 3 * triangles_count); // ============================================================================================================================================================================================================== // Done. // ============================================================================================================================================================================================================== window.end_frame(); }; glfw::terminate(); // close OpenGL window and terminate GLFW return 0; }
[ "AFoksha@luxoft.com" ]
AFoksha@luxoft.com
fdbd81a727ccc7ac6ea3b12e80f567c749cc8ad2
6b281eb2e6bb994b4590c41030ece2953e79d9a3
/SpaceInvaders2D/Classes/EnemyEasy.cpp
096b347bd2eb84a34819b7c76620c4d4896432a8
[]
no_license
amemos/spaceInvaders
a46fd8d291f34f55a5ef2067d0cf505cf4254b97
fb3fe2ce3c5d873c721e57dae317bf7fba2ab7a5
refs/heads/master
2022-12-27T23:19:43.187473
2020-10-11T23:47:17
2020-10-11T23:47:17
303,231,408
0
0
null
null
null
null
UTF-8
C++
false
false
237
cpp
// // EnemyEasy.cpp // SpaceInvaders2D // // Created by Ahmet Şentürk on 3.10.2020. // #include "EnemyEasy.hpp" EnemyEasy::EnemyEasy() { this->life = ENEMY_LIFE_50; this->sprite = Sprite::create(ENEMY_EASY_SPRITE_PATH); }
[ "ahmet.m.senturk@gmail.com" ]
ahmet.m.senturk@gmail.com
26a7cc6a02835b476c43a605ea71e525ea447965
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14675/function14675_schedule_22/function14675_schedule_22.cpp
e59cd0692ca0e7c3cf6fbdcf0fe8ad2452e377fe
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
1,468
cpp
#include <tiramisu/tiramisu.h> using namespace tiramisu; int main(int argc, char **argv){ tiramisu::init("function14675_schedule_22"); constant c0("c0", 1024), c1("c1", 256), c2("c2", 256); var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06"); input input00("input00", {i2}, p_int32); input input01("input01", {i1}, p_int32); input input02("input02", {i2}, p_int32); input input03("input03", {i1}, p_int32); input input04("input04", {i1}, p_int32); computation comp0("comp0", {i0, i1, i2}, input00(i2) + input01(i1) + input02(i2) + input03(i1) + input04(i1)); comp0.tile(i0, i1, i2, 32, 64, 64, i01, i02, i03, i04, i05, i06); comp0.parallelize(i01); buffer buf00("buf00", {256}, p_int32, a_input); buffer buf01("buf01", {256}, p_int32, a_input); buffer buf02("buf02", {256}, p_int32, a_input); buffer buf03("buf03", {256}, p_int32, a_input); buffer buf04("buf04", {256}, p_int32, a_input); buffer buf0("buf0", {1024, 256, 256}, p_int32, a_output); input00.store_in(&buf00); input01.store_in(&buf01); input02.store_in(&buf02); input03.store_in(&buf03); input04.store_in(&buf04); comp0.store_in(&buf0); tiramisu::codegen({&buf00, &buf01, &buf02, &buf03, &buf04, &buf0}, "../data/programs/function14675/function14675_schedule_22/function14675_schedule_22.o"); return 0; }
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
c58432168610a4028589b9b674072099bd0498e5
5c3c559b9accafebcbd143f543ecf20dd4410269
/Catastrophe/Game/animation system.cpp
5950619fcacd927e7aac8f5b0613f32ea8618b2b
[]
no_license
indianakernick/Catastrophe
cd2688af966755d934c20aafdb73562674071939
8b50525c43c4f6d6b034e98c1882ded492745458
refs/heads/master
2022-05-24T13:45:30.678733
2018-10-06T09:32:44
2018-10-06T09:32:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
699
cpp
// // animation system.cpp // Catastrophe // // Created by Indi Kernick on 9/9/17. // Copyright © 2017 Indi Kernick. All rights reserved. // #include "animation system.hpp" #include "animation component.hpp" #include <Simpleton/Utils/profiler.hpp> void AnimationSystem::add( const EntityID entityID, const CompPtr comp, const YAML::Node &node ) { comp->init(node); components.emplace(entityID, comp); } void AnimationSystem::rem(const EntityID entityID) { components.erase(entityID); } void AnimationSystem::update(const float delta) { PROFILE(AnimationSystem update); for (auto c = components.cbegin(); c != components.cend(); ++c) { c->second->update(delta); } }
[ "kerndog73@gmail.com" ]
kerndog73@gmail.com
ea22c85243b4c505d70cec00bfbf7250eb95a307
2ba4dacdba5e3c5ae9cf30e0dad20a65710fdd55
/Booklet Answers/are_we_there.cpp
d477374153de020a5c024486dead1c1d90243288
[]
no_license
jsarmiento4/jazlyn_sarmiento_projects
3be74aa3eda077ac00637c35b859a93ac95c81f3
a05a41912af9e7fd4a9e471c4313caf0b2b212fb
refs/heads/master
2020-04-10T01:42:35.273671
2019-04-05T17:48:51
2019-04-05T17:48:51
160,722,965
0
0
null
null
null
null
UTF-8
C++
false
false
235
cpp
#include <iostream> #include <string> using namespace std; int main() { string answer = ""; while (answer != "y" && answer != "Y" && answer != "yes") { cout << "Are we there yet? " << endl; cin >> answer; } return 0; }
[ "jsarmiento@csumb.edu" ]
jsarmiento@csumb.edu
94ee8df4735c3cc9eac93c78b2f722b21daf1daf
0895905868a857fc66054c0ac4bb125360da9eeb
/monitor/CameraController.h
29facf11a430dad7f61deaeaf7683d762e8e0c8a
[]
no_license
medusaGit/polyworld-agent
956b6a36cd4123e411c5f00666be9e4fe5c62e1d
fc7dbbca6485d994c429755338843ba6d78f30bc
refs/heads/master
2020-07-01T10:12:15.503312
2014-11-20T02:31:59
2014-11-20T02:31:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,656
h
#pragma once #include "gcamera.h" class CameraController { public: class RotationParms { public: RotationParms( float _radius, float _height, float _rate, float _angleStart, float _fixationPointX, float _fixationPointY, float _fixationPointZ ) : radius(_radius), height(_height), rate(_rate), angleStart(_angleStart) { fixationPoint[0] = _fixationPointX; fixationPoint[1] = _fixationPointY; fixationPoint[2] = _fixationPointZ; } private: friend class CameraController; float radius; float height; float rate; float angleStart; float fixationPoint[3]; RotationParms() {} }; class AgentTrackingParms { public: enum Perspective { OVERHEAD, POV }; AgentTrackingParms( class AgentTracker *_tracker, Perspective _perspective ) : tracker(_tracker), perspective(_perspective) {} private: friend class CameraController; class AgentTracker *tracker; Perspective perspective; AgentTrackingParms() {} }; CameraController( gcamera &camera ); virtual ~CameraController(); class AgentTracker *getAgentTracker(); void step(); void initRotation( const RotationParms &parms ); void initAgentTracking( const AgentTrackingParms &parms ); void setRotationAngle( float angle ); float getRotationAngle(); private: void setAgentTrackingTarget(); private: gcamera &camera; enum Mode { MODE__UNDEFINED, MODE__ROTATE, MODE__AGENT_TRACKING } mode; struct RotationState { RotationParms parms; float angle; } rotationState; struct AgentTrackingState { AgentTrackingParms parms; } agentTrackingState; };
[ "rockhowse@gmail.com" ]
rockhowse@gmail.com
d49ff39c557a5104a3ffd8bc771d47ca55f41dfa
39065a69221cbdf3609be1c55409c363563df077
/Code/DBSrv/Server.cpp
fe9d637ae59d164405dd805a78e4b55688801c5b
[]
no_license
felipee12/nadademais
651305a13bd2fa3662704dd02d4caf8cb5850f8e
470c5b788108f28eb830ed11e9e09b8e9998fb51
refs/heads/master
2023-08-17T15:06:51.242101
2021-09-28T00:41:10
2021-09-28T00:41:10
411,081,497
0
0
null
null
null
null
UTF-8
C++
false
false
8,493
cpp
#include "pch.h" CLog cLog = CLog(); CServer cSrv = CServer(); uint32 CurrentTime = 0; HFONT hFont = NULL; HFONT h; HDC hDC = NULL; int x = 0; int y = 0; CLog::CLog() { this->SysFile = NULL; this->WarnFile = NULL; this->ErrFile = NULL; this->PacketFile = NULL; this->SysLogDay = -1; this->WarnLogDay = -1; this->ErrLogDay = -1; this->PacketLogDay = -1; } CLog::~CLog() { } void CLog::Start() { if (this->SysFile != NULL) fclose(this->SysFile); if (this->WarnFile != NULL) fclose(this->WarnFile); if (this->ErrFile != NULL) fclose(this->ErrFile); if (this->PacketFile != NULL) fclose(this->PacketFile); auto when = getNow(); snprintf(cSrv.temp, sizeof(cSrv.temp), ".\\Log\\System\\System_%02d_%02d_%02d_%02d_%02d.txt", when.tm_mday, when.tm_mon + 1, when.tm_hour, when.tm_min, when.tm_sec); this->SysFile = fopen(cSrv.temp, "wt"); this->SysLogDay = when.tm_mday; snprintf(cSrv.temp, sizeof(cSrv.temp), ".\\Log\\Warning\\System_%02d_%02d_%02d_%02d_%02d.txt", when.tm_mday, when.tm_mon + 1, when.tm_hour, when.tm_min, when.tm_sec); this->WarnFile = fopen(cSrv.temp, "wt"); this->WarnLogDay = when.tm_mday; snprintf(cSrv.temp, sizeof(cSrv.temp), ".\\Log\\Error\\System_%02d_%02d_%02d_%02d_%02d.txt", when.tm_mday, when.tm_mon + 1, when.tm_hour, when.tm_min, when.tm_sec); this->ErrFile = fopen(cSrv.temp, "wt"); this->ErrLogDay = when.tm_mday; snprintf(cSrv.temp, sizeof(cSrv.temp), ".\\Log\\Packet\\System_%02d_%02d_%02d_%02d_%02d.txt", when.tm_mday, when.tm_mon + 1, when.tm_hour, when.tm_min, when.tm_sec); this->PacketFile = fopen(cSrv.temp, "wt"); this->PacketLogDay = when.tm_mday; } void CLog::Write(uint32 ip, TL Type, const std::string& str) { auto when = getNow(); if (ip != 0) { uint8* cIP = (uint8*)&ip; snprintf(cSrv.temp, sizeof(cSrv.temp), "[%02d/%02d/%04d][%02d:%02d:%02d] IP: %d.%d.%d.%d", when.tm_mday, when.tm_mon + 1, when.tm_year + 1900, when.tm_hour, when.tm_min, when.tm_sec, cIP[0], cIP[1], cIP[2], cIP[3]); } else snprintf(cSrv.temp, sizeof(cSrv.temp), "[%02d/%02d/%04d][%02d:%02d:%02d] ", when.tm_mday, when.tm_mon + 1, when.tm_year + 1900, when.tm_hour, when.tm_min, when.tm_sec); snprintf(cSrv.temp, sizeof(cSrv.temp), "%s %s\n", cSrv.temp, str.c_str()); switch (Type) { case TL::Sys: if (this->SysFile) fprintf_s(this->SysFile, cSrv.temp); break; case TL::Warn: if (this->WarnFile) fprintf_s(this->WarnFile, cSrv.temp); break; case TL::Err: if (this->ErrFile) fprintf_s(this->ErrFile, cSrv.temp); break; case TL::Pakt: if (this->PacketFile) fprintf_s(this->PacketFile, cSrv.temp); break; } SetWindowText(hWndMain, cSrv.temp); } CServer::CServer() { this->SecCounter = 0; this->MinCounter = 0; this->HourCounter = 0; this->ServerIndex = -1; this->LastCapsule = 0; this->Sapphire = 8; memset(this->temp, 0, sizeof(this->temp)); memset(this->LocalIP, 0, sizeof(this->LocalIP)); } CServer::~CServer() { } CUser* CServer::getUserDB(int id) { if (id >= 0 && id < MAX_SERVER) return &pUser[id]; return nullptr; } int CServer::getUserSocket(int Sock) { for (int i = 0; i < MAX_SERVER; i++) { if (pUser[i].cSock.Sock == (unsigned)Sock) return i; } return -1; } void CServer::ProcessClientMessage(int conn, char* msg) { MSG_HEADER* m = (MSG_HEADER*)msg; if (!(m->Type & FLAG_GAME2DB) || (m->ID < 0) || (m->ID >= MAX_USER)) { snprintf(this->temp, sizeof(this->temp), "err,packet Type:%d ID:%d Size:%d KeyWord:%d", m->Type, m->ID, m->Size, m->KeyWord); cLog.Write(0, TL::Err, this->temp); return; } cFileDB.ProcessMessage(conn, msg); } int CServer::WriteConfig() { FILE* fp = fopen("Config.txt", "wt"); if (fp == NULL) return FALSE; fprintf(fp, "Sapphire %d\n", Sapphire); fprintf(fp, "LastCapsule %d\n", LastCapsule); fclose(fp); return TRUE; } void CServer::TextOutWind(const char* str, int color) { SetTextColor(hDC, color); sprintf(cSrv.temp, str); auto len = strlen(cSrv.temp); TextOutA(hDC, x, y, cSrv.temp, len); y += 16; } void CServer::DrawConfig() { x = 0; y = 0; h = 0; hDC = GetDC(hWndMain); if (hDC == NULL) return; if (hFont == 0) return; if (SelectObject(hDC, hFont) != 0) h = (HFONT)SelectObject(hDC, hFont); this->TextOutWind("Server Zone Status:", 255); // int VERMELHO = 255; if (auto userDB = cSrv.getUserDB(0)) { uint8* cIP = (uint8*)&(userDB->IP); snprintf(this->temp, sizeof(this->temp), " IP: %3d. %3d. %3d. %3d Socket: %3d Guild: %4d %4d %4d %4d %4d User: %4d ", cIP[0], cIP[1], cIP[2], cIP[3], userDB->cSock.Sock, ChargedGuildList[0][0], ChargedGuildList[0][1], ChargedGuildList[0][2], ChargedGuildList[0][3], ChargedGuildList[0][4], userDB->Count); this->TextOutWind(this->temp, 0); //int PRETO = 0; } if (hFont && h) h = (HFONT)SelectObject(hDC, h); ReleaseDC(hWndMain, hDC); } void CServer::ProcessSecTimer() { this->SecCounter++; //if (SecCounter % 2 == 0) //{ // CReadFiles::ImportItem(); // Once every two minutes // CReadFiles::ImportDonate(); //} if (SecCounter % 10 == 0) this->DrawConfig(); if (SecCounter % 30 == 0) { this->MinCounter++; if (this->MinCounter % 30 == 0) this->HourCounter++; } auto when = getNow(); if (when.tm_mday != cLog.SysLogDay) cLog.Start(); /*if (when.tm_hour == 0 && when.tm_wday == 0 && when.tm_min == 0 && when.tm_sec == 0) { for (int i = 0; i < 65536; i++) { if (GuildInfo[i].Fame) { GuildInfo[i].Fame = 0; for (int j = 0; j < MAX_SERVER; j++) { if (pUser[j].cSock.Sock == 0) continue; if (pUser[j].Mode == 0) continue; cFileDB.SendGuildInfo(j, i); } } } readFile.WriteGuildInfo(); }*/ } void CServer::ReadConfig() { FILE* fp = fopen("Config.txt", "rt"); if (fp == NULL) { MessageBox(hWndMain, "cant find Config.txt", "BOOTING ERROR", NULL); return; } fscanf(fp, "Sapphire %d\n", &Sapphire); fscanf(fp, "LastCapsule %hu\n", &LastCapsule); fclose(fp); } void CServer::loadCharacter() { int handle = -1; handle = _open("./BaseMob/TK", _O_RDONLY | _O_BINARY); if (handle == -1) { MessageBoxA(hWndMain, "no TransKnight file", "BOOTING ERROR", MB_OK); return; } _read(handle, &g_pBaseSet[0], sizeof(STRUCT_MOB)); _close(handle); handle = -1; handle = _open("./BaseMob/FM", _O_RDONLY | _O_BINARY); if (handle == -1) { MessageBoxA(hWndMain, "no Foema file", "BOOTING ERROR", MB_OK); return; } _read(handle, &g_pBaseSet[1], sizeof(STRUCT_MOB)); _close(handle); handle = -1; handle = _open("./BaseMob/BM", _O_RDONLY | _O_BINARY); if (handle == -1) { MessageBoxA(hWndMain, "no BeastMaster file", "BOOTING ERROR", MB_OK); return; } _read(handle, &g_pBaseSet[2], sizeof(STRUCT_MOB)); _close(handle); handle = -1; handle = _open("./BaseMob/HT", _O_RDONLY | _O_BINARY); if (handle == -1) { MessageBoxA(hWndMain, "no Huntress file", "BOOTING ERROR", MB_OK); return; } _read(handle, &g_pBaseSet[3], sizeof(STRUCT_MOB)); _close(handle); g_pBaseSet[0].BaseScore = g_pBaseSet[0].CurrentScore; g_pBaseSet[1].BaseScore = g_pBaseSet[1].CurrentScore; g_pBaseSet[2].BaseScore = g_pBaseSet[2].CurrentScore; g_pBaseSet[3].BaseScore = g_pBaseSet[3].CurrentScore; } bool CServer::geralStart() { int ret = ListenSocket.WSAInitialize(); if (!ret) { cLog.Write(0, TL::Err, "-system err,wsainitialize fail"); return false; } BASE_InitializeServerList(); char name[256]; int i = 0; struct addrinfo hints, * res, * p; memset(&hints, 0, sizeof(addrinfo)); hints.ai_family = AF_INET; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_PASSIVE; gethostname(name, sizeof(name)); getaddrinfo(name, NULL, &hints, &res); for (p = res; p != NULL; p = p->ai_next) { if (p->ai_family != AF_INET) continue; struct sockaddr_in* ipv4 = (struct sockaddr_in*)p->ai_addr; inet_ntop(p->ai_family, &(ipv4->sin_addr), name, sizeof(name)); for (i = 0; i < MAX_SERVERGROUP; i++) { if (!strcmp(g_pServerList[i][0], name)) { ServerIndex = i; sscanf(name, "%hhu.%hhu.%hhu.%hhu", &LocalIP[0], &LocalIP[1], &LocalIP[2], &LocalIP[3]); break; } } if (ServerIndex != -1) break; } if (ServerIndex == -1) { MessageBox(hWndMain, "Can't get Server Group Index LocalIP:", "", MB_OK | MB_SYSTEMMODAL); MessageBox(hWndMain, "Can't get Server Group Index TestServerIP:", g_pServerList[i][0], MB_OK | MB_SYSTEMMODAL); return false; } ListenSocket.StartListen(hWndMain, 0, DB_PORT, WSA_ACCEPT); return true; }
[ "bryannfsloko@gmail.com" ]
bryannfsloko@gmail.com
e8ce460eef6f8572fb594488aed2a4709c4102f0
066c3b3104410a4baf9308ff9e16205a2c88bb74
/include/ionlang/construct/expression/binary_operation.h
1a7d74842ce5506aa444f9811c91567f800f0e2a
[ "Unlicense" ]
permissive
notYuriy/ionlang
9e56b1b37b80845050cffde376b6659132fbf711
c15755554266cdb39f2158f4839eb016955dd626
refs/heads/master
2022-12-29T03:52:10.881985
2020-09-30T02:23:49
2020-09-30T02:23:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,082
h
#pragma once #include <ionlang/construct/expression.h> #include "unary_operation.h" namespace ionlang { class Pass; struct BinaryOperationOpts { ionshared::Ptr<Type> type; Operator operation; ionshared::Ptr<Construct> leftSide; ionshared::OptPtr<Construct> rightSide; }; class BinaryOperation : public Expression { private: Operator operation; ionshared::Ptr<Construct> leftSide; ionshared::OptPtr<Construct> rightSide; public: explicit BinaryOperation(const BinaryOperationOpts &opts); [[nodiscard]] Operator getOperator() const noexcept; void setOperator(Operator operation) noexcept; [[nodiscard]] ionshared::Ptr<Construct> getLeftSide() const noexcept; void setLeftSide(ionshared::Ptr<Construct> leftSide) noexcept; [[nodiscard]] ionshared::OptPtr<Construct> getRightSide() const noexcept; void setRightSide(ionshared::OptPtr<Construct> rightSide) noexcept; [[nodiscard]] bool hasRightSide() const noexcept; }; }
[ "cloudrex@outlook.com" ]
cloudrex@outlook.com
0f07aac56eb93d25f7a6019c5332cd98bf97bc1e
9e42c316c017e90ed90965a4f6f46c25a996c69b
/src/QTabCtrl.h
332860cd193e8597a6c2c2aa6919b541a6c31f8a
[]
no_license
GX-Software/QuickQuiz
0e8c42bdc2c09516e2238b745579b2dfe0c7efbe
41af2b9b1a9433465b4bbbe96de76bef46be781b
refs/heads/main
2023-07-19T05:49:06.412107
2021-09-13T07:38:12
2021-09-13T07:38:12
397,945,967
36
9
null
null
null
null
UTF-8
C++
false
false
1,720
h
#if !defined(AFX_QTABCTRL_H__67849A40_66AF_4A80_9932_B24E59CC1F33__INCLUDED_) #define AFX_QTABCTRL_H__67849A40_66AF_4A80_9932_B24E59CC1F33__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // QTabCtrl.h : header file // class CTabPage; #define MAXPAGENUM 6 ///////////////////////////////////////////////////////////////////////////// // CQTabCtrl window class CQTabCtrl : public CTabCtrl { // Construction public: CQTabCtrl(); // Attributes public: // Operations public: BOOL AddPage(UINT nIDTemplate, CTabPage *pPage, LPCTSTR szTitle); CTabPage* GetPage(int nIndex); int GetPageCount() { return m_nPageCount; } void SwitchPage(int nIndex); void SetChangeable(BOOL bIsChangeable) { m_bCanChangeType = bIsChangeable; } // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CQTabCtrl) protected: virtual void PreSubclassWindow(); //}}AFX_VIRTUAL // Implementation public: virtual ~CQTabCtrl(); // Generated message map functions protected: //{{AFX_MSG(CQTabCtrl) afx_msg void OnSelChange(NMHDR* pNMHDR, LRESULT* pResult); afx_msg BOOL OnEraseBkgnd(CDC* pDC); afx_msg void OnDestroy(); afx_msg void OnPaint(); //}}AFX_MSG DECLARE_MESSAGE_MAP() void SetChildPos(CTabPage *pPage); BOOL SwitchShow(int nIndex); void Paint(HDC hDC); protected: int m_nPageCount; int m_nShowingPage; CTabPage *m_pPageList[MAXPAGENUM]; BOOL m_bCanChangeType; }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_QTABCTRL_H__67849A40_66AF_4A80_9932_B24E59CC1F33__INCLUDED_)
[ "njjs1991@163.com" ]
njjs1991@163.com
f814d548b9b386487ab62b5a715b93dbeebef9b6
581d2d5a28c3d4f905ecd752f14f726ed2fa9966
/DataStructure/Deque.cpp
5411a141dbb3a49e44eb2efdbd001c9f6b9729bb
[]
no_license
HelloWoori/AlgorithmStudyWithBaekjoon
ba938def4639e6995af6222ed923153dc204dedd
a7354153f87fdb0e74c5486a526dce57c82b3060
refs/heads/master
2021-12-17T22:08:56.551710
2021-12-13T14:36:06
2021-12-13T14:36:06
159,617,860
1
0
null
null
null
null
UTF-8
C++
false
false
1,828
cpp
/* 덱 https://www.acmicpc.net/problem/10866 */ #include <iostream> #include <vector> #include <string> using namespace std; int main() { ios_base::sync_with_stdio(false); vector<int> v; string str; int n = 0, X = 0; cin >> n; while (n-- > 0) { cin >> str; if (str == "push_front") { cin >> X; v.insert(v.begin(), X); } else if (str == "push_back") { cin >> X; v.push_back(X); } else if (str == "pop_front") { if (!v.empty()) { cout << v.front() << '\n'; v.erase(v.begin()); } else { cout << "-1" << '\n'; } } else if (str == "pop_back") { if (!v.empty()) { cout << v.back() << '\n'; v.pop_back(); } else { cout << "-1" << '\n'; } } else if (str == "size") { cout << v.size() << '\n'; } else if (str == "empty") { if (v.empty()) cout << "1" << '\n'; else cout << "0" << '\n'; } else if (str == "front") { if (!v.empty()) { cout << v.front() << '\n'; } else { cout << "-1" << '\n'; } } else if (str == "back") { if (!v.empty()) { cout << v.back() << '\n'; } else { cout << "-1" << '\n'; } } } return 0; }
[ "myahn0607@gmail.com" ]
myahn0607@gmail.com
4444644a871212d9322c7a41e252d2ad928d5031
90db257b5223623c0fef64eaf5709f505a8174c9
/site-packages/include/glm/detail/type_vec3.hpp
c7c429d144340ae6a33e52717b1d44ab4e036925
[]
no_license
yishiyu/MineCraft_Yishiyu_Edition
88da0c0c6cd05a59f6b7abf629e89389f7eb5cc2
9feeeb062902f782f7b3cb3844bc219b5732f804
refs/heads/master
2023-01-24T07:19:36.679265
2020-11-16T13:26:41
2020-11-16T13:26:41
309,030,646
2
2
null
null
null
null
UTF-8
C++
false
false
15,093
hpp
/// @ref core /// @file glm/detail/type_vec3.hpp #pragma once #include "type_vec.hpp" #if GLM_SWIZZLE == GLM_SWIZZLE_ENABLED # if GLM_HAS_UNRESTRICTED_UNIONS # include "_swizzle.hpp" # else # include "_swizzle_func.hpp" # endif #endif //GLM_SWIZZLE == GLM_SWIZZLE_ENABLED #include <cstddef> namespace glm { template <typename T, precision P = defaultp> struct tvec3 { // -- Implementation detail -- typedef T value_type; typedef tvec3<T, P> type; typedef tvec3<bool, P> bool_type; // -- Data -- # if GLM_HAS_ALIGNED_TYPE # if GLM_COMPILER & GLM_COMPILER_GCC # pragma GCC diagnostic push //# pragma GCC diagnostic ignored "-pedantic" # endif # if GLM_COMPILER & GLM_COMPILER_CLANG # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" # pragma clang diagnostic ignored "-Wnested-anon-types" # endif union { struct{ T x, y, z; }; struct{ T r, g, b; }; struct{ T s, t, p; }; # if GLM_SWIZZLE == GLM_SWIZZLE_ENABLED _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, x, y, z) _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, r, g, b) _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, s, t, p) _GLM_SWIZZLE3_3_MEMBERS(T, P, glm::tvec3, x, y, z) _GLM_SWIZZLE3_3_MEMBERS(T, P, glm::tvec3, r, g, b) _GLM_SWIZZLE3_3_MEMBERS(T, P, glm::tvec3, s, t, p) _GLM_SWIZZLE3_4_MEMBERS(T, P, glm::tvec4, x, y, z) _GLM_SWIZZLE3_4_MEMBERS(T, P, glm::tvec4, r, g, b) _GLM_SWIZZLE3_4_MEMBERS(T, P, glm::tvec4, s, t, p) # endif//GLM_SWIZZLE }; # if GLM_COMPILER & GLM_COMPILER_CLANG # pragma clang diagnostic pop # endif # if GLM_COMPILER & GLM_COMPILER_GCC # pragma GCC diagnostic pop # endif # else union { T x, r, s; }; union { T y, g, t; }; union { T z, b, p; }; # if GLM_SWIZZLE == GLM_SWIZZLE_ENABLED GLM_SWIZZLE_GEN_VEC_FROM_VEC3(T, P, tvec3, tvec2, tvec3, tvec4) # endif//GLM_SWIZZLE # endif//GLM_LANG // -- Component accesses -- /// Return the count of components of the vector typedef length_t length_type; GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const; GLM_FUNC_DECL T & operator[](length_type i); GLM_FUNC_DECL T const & operator[](length_type i) const; // -- Implicit basic constructors -- GLM_FUNC_DECL GLM_CONSTEXPR tvec3() GLM_DEFAULT_CTOR; GLM_FUNC_DECL GLM_CONSTEXPR tvec3(tvec3<T, P> const & v) GLM_DEFAULT; template <precision Q> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(tvec3<T, Q> const & v); // -- Explicit basic constructors -- GLM_FUNC_DECL GLM_CONSTEXPR_CTOR explicit tvec3(ctor); GLM_FUNC_DECL GLM_CONSTEXPR explicit tvec3(T scalar); GLM_FUNC_DECL GLM_CONSTEXPR tvec3(T a, T b, T c); // -- Conversion scalar constructors -- /// Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename A, typename B, typename C> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(A a, B b, C c); template <typename A, typename B, typename C> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(tvec1<A, P> const & a, tvec1<B, P> const & b, tvec1<C, P> const & c); // -- Conversion vector constructors -- /// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename A, typename B, precision Q> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(tvec2<A, Q> const & a, B b); /// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename A, typename B, precision Q> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(tvec2<A, Q> const & a, tvec1<B, Q> const & b); /// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename A, typename B, precision Q> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(A a, tvec2<B, Q> const & b); /// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename A, typename B, precision Q> GLM_FUNC_DECL GLM_CONSTEXPR tvec3(tvec1<A, Q> const & a, tvec2<B, Q> const & b); /// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename U, precision Q> GLM_FUNC_DECL GLM_CONSTEXPR GLM_EXPLICIT tvec3(tvec4<U, Q> const & v); /// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template <typename U, precision Q> GLM_FUNC_DECL GLM_CONSTEXPR GLM_EXPLICIT tvec3(tvec3<U, Q> const & v); // -- Swizzle constructors -- # if GLM_HAS_UNRESTRICTED_UNIONS && (GLM_SWIZZLE == GLM_SWIZZLE_ENABLED) template <int E0, int E1, int E2> GLM_FUNC_DECL tvec3(detail::_swizzle<3, T, P, glm::tvec3, E0, E1, E2, -1> const & that) { *this = that(); } template <int E0, int E1> GLM_FUNC_DECL tvec3(detail::_swizzle<2, T, P, glm::tvec2, E0, E1, -1, -2> const & v, T const & scalar) { *this = tvec3<T, P>(v(), scalar); } template <int E0, int E1> GLM_FUNC_DECL tvec3(T const & scalar, detail::_swizzle<2, T, P, glm::tvec2, E0, E1, -1, -2> const & v) { *this = tvec3<T, P>(scalar, v()); } # endif// GLM_HAS_UNRESTRICTED_UNIONS && (GLM_SWIZZLE == GLM_SWIZZLE_ENABLED) // -- Unary arithmetic operators -- GLM_FUNC_DECL tvec3<T, P> & operator=(tvec3<T, P> const & v) GLM_DEFAULT; template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator+=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator+=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator+=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator-=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator-=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator-=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator*=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator*=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator*=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator/=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator/=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator/=(tvec3<U, P> const & v); // -- Increment and decrement operators -- GLM_FUNC_DECL tvec3<T, P> & operator++(); GLM_FUNC_DECL tvec3<T, P> & operator--(); GLM_FUNC_DECL tvec3<T, P> operator++(int); GLM_FUNC_DECL tvec3<T, P> operator--(int); // -- Unary bit operators -- template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator%=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator%=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator%=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator&=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator&=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator&=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator|=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator|=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator|=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator^=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator^=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator^=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator<<=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator<<=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator<<=(tvec3<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator>>=(U scalar); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator>>=(tvec1<U, P> const & v); template <typename U> GLM_FUNC_DECL tvec3<T, P> & operator>>=(tvec3<U, P> const & v); }; // -- Unary operators -- template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator+(tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator-(tvec3<T, P> const & v); // -- Binary operators -- template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator+(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator+(tvec3<T, P> const & v, tvec1<T, P> const & scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator+(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator+(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator+(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator-(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator-(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator-(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator-(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator-(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator*(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator*(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator*(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator*(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator*(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator/(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator/(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator/(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator/(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator/(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator%(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator%(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator%(T const & scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator%(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator%(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator&(tvec3<T, P> const & v1, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator&(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator&(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator&(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator&(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator|(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator|(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator|(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator|(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator|(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator^(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator^(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator^(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator^(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator^(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator<<(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator<<(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator<<(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator<<(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator<<(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator>>(tvec3<T, P> const & v, T scalar); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator>>(tvec3<T, P> const & v1, tvec1<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator>>(T scalar, tvec3<T, P> const & v); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator>>(tvec1<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator>>(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> operator~(tvec3<T, P> const & v); // -- Boolean operators -- template <typename T, precision P> GLM_FUNC_DECL bool operator==(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <typename T, precision P> GLM_FUNC_DECL bool operator!=(tvec3<T, P> const & v1, tvec3<T, P> const & v2); template <precision P> GLM_FUNC_DECL tvec3<bool, P> operator&&(tvec3<bool, P> const & v1, tvec3<bool, P> const & v2); template <precision P> GLM_FUNC_DECL tvec3<bool, P> operator||(tvec3<bool, P> const & v1, tvec3<bool, P> const & v2); }//namespace glm #ifndef GLM_EXTERNAL_TEMPLATE #include "type_vec3.inl" #endif//GLM_EXTERNAL_TEMPLATE
[ "814384981@qq.com" ]
814384981@qq.com
62a7f9cfb08db93fa111cd915ee55a7fb87f0006
56542e144d02a3de61b9f1740cd1ba2723393dd5
/Binary Search/2 PivotElement.cpp
2c73cef4d2d620dde6a2faaa48f752eacb01a487
[]
no_license
ravirathee/Algorithms
0560510d5efe05f96df4dedb306f42c47608445b
3e7f7fcfc79f23d4b7a7fe7215d0a63b1b21664c
refs/heads/master
2022-11-04T11:50:16.607408
2020-06-17T22:20:05
2020-06-17T22:20:05
263,341,246
0
0
null
null
null
null
UTF-8
C++
false
false
1,901
cpp
///* // https://practice.geeksforgeeks.org/problems/minimum-element-in-a-sorted-and-rotated-array/0 // // read theory and logic from here // http://theoryofprogramming.com/2017/12/16/find-pivot-element-sorted-rotated-array/ // take hint how to implement here // minimum element // https://www.geeksforgeeks.org/find-minimum-element-in-a-sorted-and-rotated-array/ // //maximum element // https://www.geeksforgeeks.org/maximum-element-in-a-sorted-and-rotated-array/?ref=rp // implemented this code on my own // */ // //#include<bits/stdc++.h> //using namespace std; // //// //int minElement(int a[],int l,int r){ // int mid,pos = -1; // while(l<=r){ // mid = (l+r)/2; // // if(l==r) return l; //only one element // // if(a[mid+1] < a[mid]) return mid+1; // else if( a[mid]>a[r]) l = mid; // else if( a[mid]<a[r]) r = mid; // } // return pos; //} // ////max Element in a rotated sorted array (also called pivot element) //int maxElement(int a[],int l,int r){ // int mid,pos = -1,len=r+1; // while(l<=r){ // mid = (l+r)/2; // // if(l==r) { // if(l==0) return len-1; //if array already sorted we'll reach first element // else return l; //only one element // } // // if(a[mid+1] < a[mid]) return mid; // else if( a[mid]>a[r]) l = mid; // else if( a[mid]<a[r]) r = mid; // } // return pos; //} // //void test_case(){ // int n; cin>>n; // int a[n]; for(int i=0; i<n ; i++) cin>>a[i]; // cout<<a[minElement(a,0,n-1)]<<"\n"; //} // //int main() { // int t; cin>>t; // while(t--){ // test_case(); // } // //code // return 0; //} // ///* //5 //5 //2 3 4 5 1 //5 //3 4 5 1 2 //5 //4 5 1 2 3 //5 //5 1 2 3 4 //5 //1 2 3 4 5 //*/ // ///* //6 //6 //2 3 4 5 6 1 //6 //3 4 5 6 1 2 //6 //4 5 6 1 2 3 //6 //5 6 1 2 3 4 //6 //6 1 2 3 4 5 //6 //1 2 3 4 5 6 //*/ //
[ "ravik.rathee@gmail.com" ]
ravik.rathee@gmail.com
50e5b20da5395e2ccbd685b7021725dbf539332c
5cc6d366c6dfbde35538768315b55dfe7baa7b49
/1070J.cpp
758f179903b3a364b1009bc64e181a6e91492d65
[]
no_license
khoapham12397/CodeForces
dbb641f144ea1bdbb17fb46ef564cfc0883c689d
962f9b6fabfa12c85b94f6a6947868670358ec81
refs/heads/master
2023-04-19T02:48:11.496923
2021-05-09T15:10:46
2021-05-09T15:10:46
365,781,403
1
0
null
null
null
null
UTF-8
C++
false
false
1,660
cpp
#include <iostream> #include <algorithm> #include <vector> #include <string> using namespace std; int n,m,k,a[26]; bool dp[26][30010][26]; void solve() { for (int i = 0; i < 26; i++) a[i] = 0; cin >> n >> m >> k; string s; cin >> s; for (int i = 0; i < k; i++) { a[int(s[i])-65]++; } int ans = int(1e9); for (int j = 0; j < 26; j++) { if (a[j] == 0) continue; if (j == 0) { dp[0][0][0] = 1; for (int s = 1; s <= m; s++) dp[0][s][0] = 0; } else { dp[0][0][j] = 1; for (int s = 1; s <= m; s++) dp[0][s][j] = 0; dp[0][a[0]][j] = 1; } for (int i = 1; i < 25; i++) { if (i == j) { for (int s = 0; s <= m; s++) dp[i][s][j] = dp[i - 1][s][j]; continue; } for (int s = 0; s <= m; s++) { if (s >= a[i]) dp[i][s][j] = dp[i - 1][s - a[i]][j] | dp[i - 1][s][j]; else dp[i][s][j] = dp[i - 1][s][j]; } } int gtmax = 0; if (j == 25) { for (int s = 0; s <= m; s++) { dp[25][s][j] = dp[24][s][j]; if (dp[25][s][j]) { int x = m - s, r = k - s - a[j]; if (x > a[j]) continue; if (n <= r || x == a[j]) { cout << 0 << endl; return; } int d = n - r; ans = min(ans, x*d); } } } else { for (int s = 0; s <= m; s++) { if (s >= a[25]) dp[25][s][j] = (dp[24][s][j] | dp[24][s - a[25]][j]); else dp[25][s][j] = dp[24][s][j]; if (dp[25][s][j]) { int x = m - s, r = k - s - a[j]; if (x > a[j]) continue; if (n <= r || x == a[j]) { cout << 0 << endl; return; } int d = n - r; ans = min(ans, x*d); } } } } cout << ans << endl; } int main() { int t; cin >> t; while (t--) solve(); // system("pause"); return 0; }
[ "khoa.pham12397@hcmut.edu.vn" ]
khoa.pham12397@hcmut.edu.vn
72fff7fd74ace9589a7e18103faa69ad144c1759
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/multimedia/dshow/filters/tsdvr/tools/dsnet/receiver/netrecv.h
d9dc52001dd0b425ef587cc3e6f7132c45d050fe
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,591
h
/*++ Copyright (c) 2000 Microsoft Corporation. All Rights Reserved. Module Name: netrecv.h Abstract: Contains the class declaration for CNetReceiver, which is a general, non dshow-specific multicast receiver. Notes: --*/ #ifndef __netrecv_h #define __netrecv_h class CBufferPool ; class CBufferPoolBuffer ; class CNetworkReceiverFilter ; class CNetReceiver { enum { PULSE_MILLIS = 100 // worker thread times out periodically to // perform housekeeping work } ; enum { EVENT_STOP, EVENT_GET_BLOCK, EVENT_COUNT // always last } ; HANDLE m_hThread ; // worker thread HANDLE m_hEvents [EVENT_COUNT] ; // win32 events WSADATA m_wsaData ; // wsainit SOCKET m_hAsyncSocket ; // socket CBufferPool * m_pBufferPool ; // buffer pool LONG m_lReadsPended ; // outstanding io count CNetworkReceiverFilter * m_pRecvFilter ; // back pointer to host CRITICAL_SECTION m_crt ; // crit sect DWORD m_dwMaxPendReads ; // max pended reads void Lock_ () { EnterCriticalSection (& m_crt) ; } void Unlock_ () { LeaveCriticalSection (& m_crt) ; } HRESULT JoinMulticast_ ( IN ULONG ulIP, // IP; class d; network order IN USHORT usPort, // port; network order IN ULONG ulNIC // network interface; network order ) ; void LeaveMulticast_ ( ) ; void PendReads_ ( IN DWORD dwBufferWaitMax = 0 ) ; public : CNetReceiver ( IN HKEY hkeyRoot, IN CBufferPool * pBufferPool, IN CNetworkReceiverFilter * pRecvFilter, OUT HRESULT * phr ) ; ~CNetReceiver ( ) ; // synchronous call to join the multicast and start the thread HRESULT Activate ( IN ULONG ulIP, // IP; class d; network order IN USHORT usPort, // port; network order IN ULONG ulNIC // network interface; network order ) ; // synchronous call to stop the thread and leave the multicast HRESULT Stop ( ) ; // handles the receiver-specific read completion void ReadCompletion ( IN CBufferPoolBuffer *, IN DWORD ) ; // entry point for an async read completion static void CALLBACK AsyncCompletionCallback ( IN DWORD dwError, IN DWORD dwBytesReceived, IN LPWSAOVERLAPPED pOverlapped, IN DWORD dwFlags ) ; void ThreadProc ( ) ; static DWORD WINAPI ThreadEntry ( IN LPVOID pv ) { (reinterpret_cast <CNetReceiver *> (pv)) -> ThreadProc () ; return EXIT_SUCCESS ; } } ; #endif // __netrecv_h
[ "112426112@qq.com" ]
112426112@qq.com
7285f4a6ca81fbb7ef5b72343349ce6321d3e0d8
6c8fa6ce2fea51c22ba9040ff2a6a0d78746836c
/CS106X/code/01-intro-code/build-narcissistic-numbers-Desktop_Qt_5_13_1_clang_64bit-Debug/moc_gcontainer.cpp
1085070cbde76781b614841015c18863199e78c8
[]
no_license
LavenderMP/Stanford-CS-AI
b34e05c9d4340f880edc47e5944854975582fc58
93422b13bdc74a5b7c358a55542e54a96c52278d
refs/heads/master
2021-07-14T07:24:43.293716
2021-02-06T19:22:35
2021-02-06T19:22:35
233,680,885
0
0
null
null
null
null
UTF-8
C++
false
false
2,960
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'gcontainer.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.13.1) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include <memory> #include "../narcissistic-numbers/lib/StanfordCPPLib/graphics/gcontainer.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'gcontainer.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.13.1. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE QT_WARNING_PUSH QT_WARNING_DISABLE_DEPRECATED struct qt_meta_stringdata__Internal_QContainer_t { QByteArrayData data[1]; char stringdata0[21]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata__Internal_QContainer_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata__Internal_QContainer_t qt_meta_stringdata__Internal_QContainer = { { QT_MOC_LITERAL(0, 0, 20) // "_Internal_QContainer" }, "_Internal_QContainer" }; #undef QT_MOC_LITERAL static const uint qt_meta_data__Internal_QContainer[] = { // content: 8, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; void _Internal_QContainer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } QT_INIT_METAOBJECT const QMetaObject _Internal_QContainer::staticMetaObject = { { &QWidget::staticMetaObject, qt_meta_stringdata__Internal_QContainer.data, qt_meta_data__Internal_QContainer, qt_static_metacall, nullptr, nullptr } }; const QMetaObject *_Internal_QContainer::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *_Internal_QContainer::qt_metacast(const char *_clname) { if (!_clname) return nullptr; if (!strcmp(_clname, qt_meta_stringdata__Internal_QContainer.stringdata0)) return static_cast<void*>(this); if (!strcmp(_clname, "_Internal_QWidget")) return static_cast< _Internal_QWidget*>(this); return QWidget::qt_metacast(_clname); } int _Internal_QContainer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QWidget::qt_metacall(_c, _id, _a); return _id; } QT_WARNING_POP QT_END_MOC_NAMESPACE
[ "hvhnk1993@gmail.com" ]
hvhnk1993@gmail.com
bd68adc810137420ef019d3955cdf2a501ae4dcb
0c9cae0ec0f276b6f727cab8b0829b831dd0b7fb
/ValidSudoku/ValidSudoku/ValidSudoku.cpp
51c6c39ca17e7d3b745ff8a15575ffddb4b18d10
[]
no_license
timruning/leecode
e7b97bd52cf2e064b3873d980c81d040043090a6
899643daeb40a8f6b4ebe975f3c76ff1865f7959
refs/heads/master
2021-01-19T02:55:42.357388
2016-07-26T14:02:13
2016-07-26T14:02:13
45,767,185
0
0
null
null
null
null
GB18030
C++
false
false
281
cpp
// ValidSudoku.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include<iostream> #include<vector> using namespace std; class Solution { public: bool isValidSudoku(vector<vector<char>>& board) { } }; int _tmain(int argc, _TCHAR* argv[]) { return 0; }
[ "timruning@163.com" ]
timruning@163.com
93d4af384920f62427c16657ba33d9ea5eacc039
69e875159f67f784653708853acca21dfc67162e
/src/md5.cpp
f90682ab1c78ec8490a31f4d6c0dc80df02aba33
[]
no_license
brycewalton/advent-of-code-2015
50655ac16e8ef18a955d0ccd1da599e6cca95715
d50fc94c4dfcaaccbb1bc10f680306f40a9264ca
refs/heads/master
2021-01-10T14:19:09.266432
2015-12-22T07:49:44
2015-12-22T07:49:44
48,407,947
0
0
null
2015-12-22T07:49:44
2015-12-22T03:21:34
C++
UTF-8
C++
false
false
10,477
cpp
/* MD5 converted to C++ class by Frank Thilo (thilo@unix-ag.org) for bzflag (http://www.bzflag.org) based on: md5.h and md5.c reference implemantion of RFC 1321 Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved. License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material mentioning or referencing this software or this function. License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material mentioning or referencing the derived work. RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this documentation and/or software. */ /* interface header */ #include "md5.h" /* system implementation headers */ #include <cstdio> // Constants for MD5Transform routine. #define S11 7 #define S12 12 #define S13 17 #define S14 22 #define S21 5 #define S22 9 #define S23 14 #define S24 20 #define S31 4 #define S32 11 #define S33 16 #define S34 23 #define S41 6 #define S42 10 #define S43 15 #define S44 21 /////////////////////////////////////////////// // F, G, H and I are basic MD5 functions. inline MD5::uint4 MD5::F(uint4 x, uint4 y, uint4 z) { return x&y | ~x&z; } inline MD5::uint4 MD5::G(uint4 x, uint4 y, uint4 z) { return x&z | y&~z; } inline MD5::uint4 MD5::H(uint4 x, uint4 y, uint4 z) { return x^y^z; } inline MD5::uint4 MD5::I(uint4 x, uint4 y, uint4 z) { return y ^ (x | ~z); } // rotate_left rotates x left n bits. inline MD5::uint4 MD5::rotate_left(uint4 x, int n) { return (x << n) | (x >> (32-n)); } // FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. // Rotation is separate from addition to prevent recomputation. inline void MD5::FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { a = rotate_left(a+ F(b,c,d) + x + ac, s) + b; } inline void MD5::GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { a = rotate_left(a + G(b,c,d) + x + ac, s) + b; } inline void MD5::HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { a = rotate_left(a + H(b,c,d) + x + ac, s) + b; } inline void MD5::II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { a = rotate_left(a + I(b,c,d) + x + ac, s) + b; } ////////////////////////////////////////////// // default ctor, just initailize MD5::MD5() { init(); } ////////////////////////////////////////////// // nifty shortcut ctor, compute MD5 for string and finalize it right away MD5::MD5(const std::string &text) { init(); update(text.c_str(), text.length()); finalize(); } ////////////////////////////// void MD5::init() { finalized=false; count[0] = 0; count[1] = 0; // load magic initialization constants. state[0] = 0x67452301; state[1] = 0xefcdab89; state[2] = 0x98badcfe; state[3] = 0x10325476; } ////////////////////////////// // decodes input (unsigned char) into output (uint4). Assumes len is a multiple of 4. void MD5::decode(uint4 output[], const uint1 input[], size_type len) { for (unsigned int i = 0, j = 0; j < len; i++, j += 4) output[i] = ((uint4)input[j]) | (((uint4)input[j+1]) << 8) | (((uint4)input[j+2]) << 16) | (((uint4)input[j+3]) << 24); } ////////////////////////////// // encodes input (uint4) into output (unsigned char). Assumes len is // a multiple of 4. void MD5::encode(uint1 output[], const uint4 input[], size_type len) { for (size_type i = 0, j = 0; j < len; i++, j += 4) { output[j] = input[i] & 0xff; output[j+1] = (input[i] >> 8) & 0xff; output[j+2] = (input[i] >> 16) & 0xff; output[j+3] = (input[i] >> 24) & 0xff; } } ////////////////////////////// // apply MD5 algo on a block void MD5::transform(const uint1 block[blocksize]) { uint4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; decode (x, block, blocksize); /* Round 1 */ FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */ FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */ FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */ FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */ FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */ FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */ FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */ FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */ FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */ FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */ FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */ FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */ FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */ FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */ /* Round 2 */ GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */ GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */ GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */ GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */ GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */ GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */ GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */ GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */ GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */ GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */ GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */ GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */ GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */ GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */ GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */ GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */ /* Round 3 */ HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */ HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */ HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */ HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */ HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */ HH (b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */ HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */ HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */ HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */ HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */ /* Round 4 */ II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */ II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */ II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */ II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */ II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */ II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */ II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */ II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */ II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */ II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */ II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */ II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */ II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */ II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */ II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */ II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */ state[0] += a; state[1] += b; state[2] += c; state[3] += d; // Zeroize sensitive information. memset(x, 0, sizeof x); } ////////////////////////////// // MD5 block update operation. Continues an MD5 message-digest // operation, processing another message block void MD5::update(const unsigned char input[], size_type length) { // compute number of bytes mod 64 size_type index = count[0] / 8 % blocksize; // Update number of bits if ((count[0] += (length << 3)) < (length << 3)) count[1]++; count[1] += (length >> 29); // number of bytes we need to fill in buffer size_type firstpart = 64 - index; size_type i; // transform as many times as possible. if (length >= firstpart) { // fill buffer first, transform memcpy(&buffer[index], input, firstpart); transform(buffer); // transform chunks of blocksize (64 bytes) for (i = firstpart; i + blocksize <= length; i += blocksize) transform(&input[i]); index = 0; } else i = 0; // buffer remaining input memcpy(&buffer[index], &input[i], length-i); } ////////////////////////////// // for convenience provide a verson with signed char void MD5::update(const char input[], size_type length) { update((const unsigned char*)input, length); } ////////////////////////////// // MD5 finalization. Ends an MD5 message-digest operation, writing the // the message digest and zeroizing the context. MD5& MD5::finalize() { static unsigned char padding[64] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; if (!finalized) { // Save number of bits unsigned char bits[8]; encode(bits, count, 8); // pad out to 56 mod 64. size_type index = count[0] / 8 % 64; size_type padLen = (index < 56) ? (56 - index) : (120 - index); update(padding, padLen); // Append length (before padding) update(bits, 8); // Store state in digest encode(digest, state, 16); // Zeroize sensitive information. memset(buffer, 0, sizeof buffer); memset(count, 0, sizeof count); finalized=true; } return *this; } ////////////////////////////// // return hex representation of digest as string std::string MD5::hexdigest() const { if (!finalized) return ""; char buf[33]; for (int i=0; i<16; i++) sprintf(buf+i*2, "%02x", digest[i]); buf[32]=0; return std::string(buf); } ////////////////////////////// //std::ostream& operator<<(std::ostream& out, MD5 md5) //{ // return out << md5.hexdigest(); //} ////////////////////////////// std::string md5(const std::string str) { MD5 md5 = MD5(str); return md5.hexdigest(); }
[ "bryce.walton@gmail.com" ]
bryce.walton@gmail.com
baaf9a365650eabe513ad1c2ec1bb5d26513a730
df18af092b4bc7fa5fe66e9f3da116446a7dcde5
/include/fruit/impl/normalized_component.defn.h
489e75dd5dc33840c68ac45d10b9fd125125dad3
[ "Apache-2.0" ]
permissive
kidundead/fruit
d764823f3354a6932f0c60a76686998e1f564afa
1ff06b3c9ef021dd268533c97747d93370b7bff3
refs/heads/master
2021-01-17T23:11:42.077111
2015-07-19T19:06:19
2015-07-19T19:06:19
40,112,006
1
0
null
2015-08-03T07:43:46
2015-08-03T07:43:46
null
UTF-8
C++
false
false
1,267
h
/* * Copyright 2014 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. */ #ifndef FRUIT_NORMALIZED_COMPONENT_INLINES_H #define FRUIT_NORMALIZED_COMPONENT_INLINES_H #include "../normalized_component.h" namespace fruit { template <typename... Params> inline NormalizedComponent<Params...>::NormalizedComponent(Component<Params...>&& component) : storage(std::move(component.storage), fruit::impl::getTypeIdsForList< typename fruit::impl::meta::Eval<fruit::impl::meta::SetToVector( typename fruit::impl::meta::Eval< fruit::impl::meta::ConstructComponentImpl(fruit::impl::meta::Type<Params>...) >::Ps)>>()) { } } // namespace fruit #endif // FRUIT_NORMALIZED_COMPONENT_INLINES_H
[ "poletti.marco@gmail.com" ]
poletti.marco@gmail.com
a6d0752c74a49975ab4ac190741a5de839cf4796
7fd5e6156d6a42b305809f474659f641450cea81
/boost/multi_index/detail/rnd_index_node.hpp
20435ad0e84fb783b5a94dc9ed188c097fff518c
[]
no_license
imos/icfpc2015
5509b6cfc060108c9e5df8093c5bc5421c8480ea
e998055c0456c258aa86e8379180fad153878769
refs/heads/master
2020-04-11T04:30:08.777739
2015-08-10T11:53:12
2015-08-10T11:53:12
40,011,767
8
0
null
null
null
null
UTF-8
C++
false
false
6,257
hpp
/* Copyright 2003-2013 Joaquin M Lopez Munoz. * 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) * * See http://www.boost.org/libs/multi_index for library home page. */ #ifndef BOOST_MULTI_INDEX_DETAIL_RND_INDEX_NODE_HPP #define BOOST_MULTI_INDEX_DETAIL_RND_INDEX_NODE_HPP #if defined(_MSC_VER) #pragma once #endif #include "boost/config.hpp" /* keep it first to prevent nasty warns in MSVC */ #include <algorithm> #include "boost/detail/allocator_utilities.hpp" #include "boost/math/common_factor_rt.hpp" #include <cstddef> #include <functional> namespace boost{ namespace multi_index{ namespace detail{ template<typename Allocator> struct random_access_index_node_impl { typedef typename boost::detail::allocator::rebind_to< Allocator,random_access_index_node_impl >::type::pointer pointer; typedef typename boost::detail::allocator::rebind_to< Allocator,random_access_index_node_impl >::type::const_pointer const_pointer; typedef typename boost::detail::allocator::rebind_to< Allocator,pointer >::type::pointer ptr_pointer; ptr_pointer& up(){return up_;} ptr_pointer up()const{return up_;} /* interoperability with rnd_node_iterator */ static void increment(pointer& x) { x=*(x->up()+1); } static void decrement(pointer& x) { x=*(x->up()-1); } static void advance(pointer& x,std::ptrdiff_t n) { x=*(x->up()+n); } static std::ptrdiff_t distance(pointer x,pointer y) { return y->up()-x->up(); } /* algorithmic stuff */ static void relocate(ptr_pointer pos,ptr_pointer x) { pointer n=*x; if(x<pos){ extract(x,pos); *(pos-1)=n; n->up()=pos-1; } else{ while(x!=pos){ *x=*(x-1); (*x)->up()=x; --x; } *pos=n; n->up()=pos; } }; static void relocate(ptr_pointer pos,ptr_pointer first,ptr_pointer last) { ptr_pointer begin,middle,end; if(pos<first){ begin=pos; middle=first; end=last; } else{ begin=first; middle=last; end=pos; } std::ptrdiff_t n=end-begin; std::ptrdiff_t m=middle-begin; std::ptrdiff_t n_m=n-m; std::ptrdiff_t p=math::gcd(n,m); for(std::ptrdiff_t i=0;i<p;++i){ pointer tmp=begin[i]; for(std::ptrdiff_t j=i,k;;){ if(j<n_m)k=j+m; else k=j-n_m; if(k==i){ *(begin+j)=tmp; (*(begin+j))->up()=begin+j; break; } else{ *(begin+j)=*(begin+k); (*(begin+j))->up()=begin+j; } if(k<n_m)j=k+m; else j=k-n_m; if(j==i){ *(begin+k)=tmp; (*(begin+k))->up()=begin+k; break; } else{ *(begin+k)=*(begin+j); (*(begin+k))->up()=begin+k; } } } }; static void extract(ptr_pointer x,ptr_pointer pend) { --pend; while(x!=pend){ *x=*(x+1); (*x)->up()=x; ++x; } } static void transfer( ptr_pointer pbegin0,ptr_pointer pend0,ptr_pointer pbegin1) { while(pbegin0!=pend0){ *pbegin1=*pbegin0++; (*pbegin1)->up()=pbegin1; ++pbegin1; } } static void reverse(ptr_pointer pbegin,ptr_pointer pend) { std::ptrdiff_t d=(pend-pbegin)/2; for(std::ptrdiff_t i=0;i<d;++i){ std::swap(*pbegin,*--pend); (*pbegin)->up()=pbegin; (*pend)->up()=pend; ++pbegin; } } private: ptr_pointer up_; }; template<typename Super> struct random_access_index_node_trampoline: random_access_index_node_impl< typename boost::detail::allocator::rebind_to< typename Super::allocator_type, char >::type > { typedef random_access_index_node_impl< typename boost::detail::allocator::rebind_to< typename Super::allocator_type, char >::type > impl_type; }; template<typename Super> struct random_access_index_node: Super,random_access_index_node_trampoline<Super> { private: typedef random_access_index_node_trampoline<Super> trampoline; public: typedef typename trampoline::impl_type impl_type; typedef typename trampoline::pointer impl_pointer; typedef typename trampoline::const_pointer const_impl_pointer; typedef typename trampoline::ptr_pointer impl_ptr_pointer; impl_ptr_pointer& up(){return trampoline::up();} impl_ptr_pointer up()const{return trampoline::up();} impl_pointer impl() { return static_cast<impl_pointer>( static_cast<impl_type*>(static_cast<trampoline*>(this))); } const_impl_pointer impl()const { return static_cast<const_impl_pointer>( static_cast<const impl_type*>(static_cast<const trampoline*>(this))); } static random_access_index_node* from_impl(impl_pointer x) { return static_cast<random_access_index_node*>( static_cast<trampoline*>(&*x)); } static const random_access_index_node* from_impl(const_impl_pointer x) { return static_cast<const random_access_index_node*>( static_cast<const trampoline*>(&*x)); } /* interoperability with rnd_node_iterator */ static void increment(random_access_index_node*& x) { impl_pointer xi=x->impl(); trampoline::increment(xi); x=from_impl(xi); } static void decrement(random_access_index_node*& x) { impl_pointer xi=x->impl(); trampoline::decrement(xi); x=from_impl(xi); } static void advance(random_access_index_node*& x,std::ptrdiff_t n) { impl_pointer xi=x->impl(); trampoline::advance(xi,n); x=from_impl(xi); } static std::ptrdiff_t distance( random_access_index_node* x,random_access_index_node* y) { return trampoline::distance(x->impl(),y->impl()); } }; } /* namespace multi_index::detail */ } /* namespace multi_index */ } /* namespace boost */ #endif
[ "git@imoz.jp" ]
git@imoz.jp
a6f13f15f6cf978ee4ff917d3b7ebff9b0da5c9f
0a3363c1d3d5867f1340de49b84eab84defa3fb8
/mods/core/objects/filters/SlewLimiter.h
9b9537d8acebf868a0ce8f75431e565b891300b5
[ "MIT" ]
permissive
odevices/er-301
b09bc53f1b11ff1bba2be8a51220ebfe932dd935
3a7b592fe5d223d5a96b2d8e90b578b23bbdabe5
refs/heads/develop
2023-02-17T16:31:01.764589
2023-02-14T06:55:32
2023-02-14T06:55:32
343,000,824
124
26
MIT
2023-02-14T06:55:34
2021-02-28T02:06:10
C
UTF-8
C++
false
false
657
h
/* * SlewLimiter.h * * Created on: 17 Dec 2017 * Author: clarkson */ #ifndef APP_OBJECTS_FILTERS_SLEWLIMITER_H_ #define APP_OBJECTS_FILTERS_SLEWLIMITER_H_ #include <od/objects/Object.h> namespace od { class SlewLimiter : public Object { public: SlewLimiter(); virtual ~SlewLimiter(); #ifndef SWIGLUA virtual void process(); Inlet mInput{"In"}; Outlet mOutput{"Out"}; Parameter mTime{"Time", 0.0f}; Option mDirection{"Direction", CHOICE_BOTH}; #endif private: float mPreviousValue = 0.0f; }; } /* namespace od */ #endif /* APP_OBJECTS_FILTERS_SLEWLIMITER_H_ */
[ "clarkson@orthogonaldevices.com" ]
clarkson@orthogonaldevices.com
ee54a1eb55e61aec33f65a8debe56804c5e21587
815cbd1ca6307d207b52076eedd4501bc9856be7
/cooper1/src/ofApp.h
f46b58b59a321a47e486570cd1871d3784bd55f2
[]
no_license
tsfnis/reCode
b0fcd72a7366177248f65fd29cb7d40e4734dc03
4cc1b86b0d2983b6fc81e21a9b4ed571b113b8f9
refs/heads/master
2021-01-24T12:49:12.478110
2018-04-20T18:02:15
2018-04-20T18:02:15
123,154,003
1
0
null
null
null
null
UTF-8
C++
false
false
837
h
#pragma once #include "ofMain.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); void keyPressed(int key); void keyReleased(int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, int button); void mouseReleased(int x, int y, int button); void mouseEntered(int x, int y); void mouseExited(int x, int y); void windowResized(int w, int h); void dragEvent(ofDragInfo dragInfo); void gotMessage(ofMessage msg); // ofRectangle one(0, 0, 303, 503); // ofRectangle two(308, 196, 148, 502); // ofRectangle three(461, 337, 72, 503); // ofRectangle four(537, 115, 35, 503); // ofRectangle five(576, 0, 17, 503); ofRectangle one; ofTrueTypeFont font; };
[ "tsfnis@gmail.com" ]
tsfnis@gmail.com
75da10695b49fe62e01cae9b74b54d4441b7c3ab
59cacf6c27395c65935d852047c02744ca01a813
/moonhae/moonhae/medium.cpp
698b3039f136813dd69b041380115c8c05becd2b
[]
no_license
zmd9220/object-trainning
2131432f552520888e5d69d9cd1355a59da98854
c0945710ec7ff3164bcdbcdf8f6864a0d67c7902
refs/heads/master
2021-07-15T17:45:06.763697
2020-05-20T15:04:07
2020-05-20T15:04:07
151,281,660
0
0
null
2020-05-20T15:04:08
2018-10-02T15:53:29
null
UTF-8
C++
false
false
937
cpp
#include <iostream> #include <queue> #include <algorithm> #include <functional> using namespace std; int main() { std::ios::sync_with_stdio(false); int T; cin >> T; while (T--) { priority_queue<int, vector<int>, less<int> > min_heap; priority_queue<int, vector<int>, greater<int> > max_heap; int N; cin >> N; for (int i = 0; i < N; i++) { int a; cin >> a; if (i == 0) { min_heap.push(a); } else { int b = min_heap.top(); if (a > b) { max_heap.push(a); } else { min_heap.push(a); } } if (min_heap.size() > max_heap.size() + 1) { int b = min_heap.top(); min_heap.pop(); max_heap.push(b); } else if (max_heap.size() > min_heap.size()) { int b = max_heap.top(); max_heap.pop(); min_heap.push(b); } cout << min_heap.top() << " "; } cout << endl; } }
[ "31811018+zmd9220@users.noreply.github.com" ]
31811018+zmd9220@users.noreply.github.com
025ca0f224bcdc976af3fe55b248d735d1a74eaf
372dc892e95a6a988c084d1ba810e088dba3243f
/main.cpp
410aa7c879e95d52d9364c82eba5e3a059abbc2e
[]
no_license
EvgenyVRN/pipeline-demo
8b9dbfd841f650c6787b0c32d79812dce314bcb1
6cabbd02f20912b22a7743588808ebbca8cea0c4
refs/heads/master
2021-03-12T06:07:51.443682
2020-03-07T10:49:12
2020-03-07T10:49:12
246,596,231
0
0
null
null
null
null
UTF-8
C++
false
false
1,875
cpp
#include "src/Pipeline.h" #include <iostream> #include <boost/filesystem.hpp> // #define GOOGLE_STRIP_LOG 1 // отключить логирование сообщений ниже заданного уровня строгости #include <glog/logging.h> using namespace std; namespace fs = boost::filesystem; void InitGlog(const std::string& program) { // Initialize Google's logging library. auto log_name = fs::path(program).filename().string(); auto program_path = fs::path(program).remove_filename(); auto logs_path = program_path.append("/logs/"); if (!fs::is_directory(logs_path) || !fs::exists(logs_path)) // Check if src folder exists fs::create_directory(logs_path); // create src folder // auto log_name = "pipeline"; auto log_filename = logs_path.string() + log_name + ".INFO"; auto wf_filename = logs_path.string() + log_name + ".WARN"; auto ef_filename = logs_path.string() + log_name + ".ERR"; ::google::SetLogDestination(google::INFO, log_filename.c_str()); ::google::SetLogDestination(google::WARNING, wf_filename.c_str()); ::google::SetLogDestination(google::ERROR, ef_filename.c_str()); ::google::SetLogDestination(google::FATAL, ""); ::google::SetLogSymlink(google::INFO, log_name.c_str()); ::google::SetLogSymlink(google::WARNING, log_name.c_str()); ::google::SetLogSymlink(google::ERROR, log_name.c_str()); ::google::SetLogSymlink(google::FATAL, ""); google::InitGoogleLogging(program.c_str()); } int main(int , char** argv) { InitGlog(argv[0]); LOG(INFO) << "Start pipeline programm"; LOG(WARNING) << "Start pipeline programm"; LOG(ERROR) << "Start pipeline programm"; DLOG(INFO) << "Logging only for debug version"; vector<double> data = {1, 2, 3, 4, 5}; Pipeline pipeline; auto res = pipeline.Solve(data); return 0; }
[ "ekolosov@inobitec.com" ]
ekolosov@inobitec.com
49d2a192e89b4258c03625e24bbdfba7ba1c2b79
d790e442a394dcc35a45e3aed8141c9911e86d58
/template.cpp
1506071548997d588adf46a080196745dbcc1dab
[]
no_license
KevinBoxuGao/CCC
5b332a613b9bb97bd714017fb0b287a48e6d21c4
62c52c9ad2e183d9b7b34c5393ab4a30f0fcfa4d
refs/heads/master
2023-03-12T04:06:33.117030
2021-02-24T01:51:09
2021-02-24T01:51:09
162,652,794
0
0
null
null
null
null
UTF-8
C++
false
false
612
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef pair<int, int> pii; typedef vector<pii> vpii; #define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a)) #define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a)) #define FOREACH(a, b) for (auto &(a) : (b)) #define REP(i, n) FOR(i, 0, n) #define REPN(i, n) FORN(i, 1, n) #define pb push_back #define ALL(v) v.begin(), v.end() #define PrintLinear(v) \ FOREACH(i, v) \ (cout << i << "\n") #define INF 2147483647; int main() { ios::sync_with_stdio(0); cin.tie(0); }
[ "kevingao2003@gmail.com" ]
kevingao2003@gmail.com
d4109e7eb9055dde1662d0e52cbfe316f4a89805
b6c6cfd8bbf186c14c680a6cbbec367537e82036
/atcoder/abc/36/a.cpp
86f26231f2bb9b6052bddf9571bf01c10d309da6
[ "MIT" ]
permissive
utgwkk/programming-contest
d62ac280df2d9595a03e92d82bf8795a0abb31cf
eb7f28ae913296c6f4f9a8136dca8bd321e01e79
refs/heads/master
2020-12-25T18:09:39.168895
2019-05-19T16:02:44
2019-05-19T16:02:44
37,702,799
0
0
null
null
null
null
UTF-8
C++
false
false
297
cpp
#include <bits/stdc++.h> #define FOR(i,m,n) for(int i=m;i<(n);i++) #define REP(i,n) FOR(i,0,n) #define ALL(x) (x).begin(),(x).end() typedef long long ll; using namespace std; int main(void){ int a,b;cin>>a>>b; if(b-a*(b/a)==0)cout<<b/a<<endl; else cout<<b/a+1<<endl; return 0; }
[ "utagawakiki@gmail.com" ]
utagawakiki@gmail.com
e2f26a5b20f3e62e0119bf09c59e2e6159dcb77f
655202725f7b5eac7bd45a415b333042cd33ef6b
/Utilities/IDGenerator.h
7f97953dedb9460eff9bd180469959c25ef0881f
[]
no_license
BarabasGitHub/DogDealer
8c6aac914b1dfa54b6e89b0a3727a83d4ab61706
41b7d6bdbc6b9c2690695612ff8828f08b1403c7
refs/heads/master
2022-12-08T04:25:50.257398
2022-11-19T19:31:07
2022-11-19T19:31:07
121,017,925
1
2
null
null
null
null
UTF-8
C++
false
false
640
h
#pragma once #include "Range.h" #include <vector> #include <deque> template<typename IDType> class IDGenerator { std::vector<typename IDType::generation_t> m_generation; std::deque<typename IDType::index_t> m_unused; public: bool IsValid(IDType id ) const; IDType NewID(); void Remove(IDType id); // removes all valid ids in the vector // returns a vector with the valid and thus removed entity ids std::vector<IDType> Remove( std::vector<IDType> ids ); // removes all valid ids in the range void Remove(Range<IDType const *> ids); }; #include "IDGenerator.inl"
[ "mailbasvandenberg@gmail.com" ]
mailbasvandenberg@gmail.com
e71a852c5d040a9de1feb69b7c508b8291e0f122
5c3c559b9accafebcbd143f543ecf20dd4410269
/Catastrophe/Game/body physics component.cpp
dc68a47e08ddaacf1d2810f1e5fd20226ff1af88
[]
no_license
indianakernick/Catastrophe
cd2688af966755d934c20aafdb73562674071939
8b50525c43c4f6d6b034e98c1882ded492745458
refs/heads/master
2022-05-24T13:45:30.678733
2018-10-06T09:32:44
2018-10-06T09:32:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,247
cpp
// // body physics component.cpp // Catastrophe // // Created by Indi Kernick on 11/10/17. // Copyright © 2017 Indi Kernick. All rights reserved. // #include "body physics component.hpp" #include <cassert> #include "b2 helper.hpp" #include "b2 glm cast.hpp" #include "yaml helper.hpp" #include "physics file.hpp" void BodyPhysicsComponent::init(b2World &world, const YAML::Node &node) { body = loadBody(getChild(node, "body").Scalar(), world, node.as<Transform>()); body->SetUserData(this); } void BodyPhysicsComponent::quit(b2World &world) { body->SetUserData(nullptr); world.DestroyBody(body); body = nullptr; } AABB BodyPhysicsComponent::getAABB() const { const b2AABB aabb = bodyAABB(body); return { castToGLM(aabb.lowerBound), castToGLM(aabb.upperBound) }; } glm::vec2 BodyPhysicsComponent::getPos() const { assert(body); return castToGLM(body->GetPosition()); } glm::vec2 BodyPhysicsComponent::getVel() const { assert(body); return castToGLM(body->GetLinearVelocity()); } float BodyPhysicsComponent::getAngle() const { assert(body); return body->GetAngle(); } b2Body *BodyPhysicsComponent::getBody() { return body; } const b2Body *BodyPhysicsComponent::getBody() const { return body; }
[ "kerndog73@gmail.com" ]
kerndog73@gmail.com
c1dd60979b25e97904a2b82293e33db229cf0ed6
c76f2ea19ff738e074f04d036da3c43100dfcdf0
/opencl/softbodyCL/aabb.cpp
5665fea7b1528c3a2b6a95ae277f53b4779fa1ef
[]
no_license
saggita/experiments
a60a4be96aad404bc2331f75fa4ef6a0bcff6511
6c68b3ed80ae58a7962c6b1594bcd3c79303932e
refs/heads/master
2021-01-18T06:22:40.951956
2013-05-07T22:50:23
2013-05-07T22:50:23
2,521,063
0
0
null
null
null
null
UTF-8
C++
false
false
5,275
cpp
#ifdef WIN32 # define WIN32_LEAN_AND_MEAN # define NOMINMAX # include <windows.h> # undef WIN32_LEAN_AND_MEAN # undef NOMINMAX #endif #define NOMINMAX #include "..\..\rendering\rendertest\OpenGLInclude.h" #include "Aabb.h" #include <algorithm> #include <limits> #include "LinearMath/btVector3.h" #include <assert.h> using namespace std; CAabb::CAabb(void) { Empty(); } CAabb::CAabb(const CAabb& other) : IBoundingVolume(other) { m_Min = other.m_Min; m_Max = other.m_Max; } CAabb::~CAabb(void) { } void CAabb::Set(const btVector3& min, const btVector3& max) { m_Min = min; m_Max = max; } void CAabb::Enlarge(float h) { m_Min[0] -= h; m_Min[1] -= h; m_Min[2] -= h; m_Max[0] += h; m_Max[1] += h; m_Max[2] += h; } bool CAabb::Collide(const IBoundingVolume& other, float tolerance /*= 0*/) const { const CAabb& box = (CAabb&)other; if ( m_Min[0] > box.m_Max[0] + tolerance ) return false; if ( m_Min[1] > box.m_Max[1] + tolerance ) return false; if ( m_Min[2] > box.m_Max[2] + tolerance ) return false; if ( m_Max[0] < box.m_Min[0] + tolerance ) return false; if ( m_Max[1] < box.m_Min[1] + tolerance ) return false; if ( m_Max[2] < box.m_Min[2] + tolerance ) return false; return true; } bool CAabb::Inside(const btVector3& point) const { if ( point[0] < m_Min[0] || m_Max[0] < point[0] ) return false; if ( point[1] < m_Min[1] || m_Max[1] < point[1] ) return false; if ( point[2] < m_Min[2] || m_Max[2] < point[2] ) return false; return true; } void CAabb::Empty() { float max = numeric_limits<float>::max(); float min = numeric_limits<float>::min(); m_Min = btVector3(max, max, max); m_Max = btVector3(min, min, min); } bool CAabb::IsEmpty() const { float max = numeric_limits<float>::max(); float min = numeric_limits<float>::min(); if ( m_Min[0] == max && m_Min[1] == max && m_Min[2] == max && m_Max[0] == min && m_Max[1] == min && m_Max[2] == min ) return true; else return false; } float CAabb::Height() const { return m_Max[1] - m_Min[1]; } float CAabb::Width() const { return m_Max[0] - m_Min[0]; } float CAabb::Length() const { return m_Max[2] - m_Min[2]; } btVector3 CAabb::Center() const { return (m_Min + m_Max) * 0.5; } float CAabb::Volume() const { return Width() * Length() * Height(); } int CAabb::LongestSide() const { float w = Width(); float h = Height(); float l = Length(); if ( w >= h && w >= l ) return 0; else if ( h >= w && h >= l ) return 1; else // if ( l >= w && l >= h ) return 2; } void CAabb::Split(IBoundingVolume*& leftBV, IBoundingVolume*& rightBV) const { leftBV = new CAabb(*this); rightBV = new CAabb(*this); CAabb* lBox = (CAabb*)leftBV; CAabb* rBox = (CAabb*)rightBV; btVector3 c = Center(); int longSide = LongestSide(); if ( longSide == 0 ) { lBox->Max()[0] = c[0]; rBox->Min()[0] = c[0]; } else if ( longSide == 1 ) { lBox->Max()[1] = c[1]; rBox->Min()[1] = c[1]; } else // if ( longSide == 2 ) { lBox->Max()[2] = c[2]; rBox->Min()[2] = c[2]; } } void CAabb::Visualize(bool bCollided) const { btVector3 min(m_Min); btVector3 max(m_Max); if ( bCollided ) glColor3f(1.0f, 1.0f, 1.0f); else glColor3f(0.5f, 0.5f, 0.5f); glLineWidth(1.0); glBegin(GL_LINE_STRIP); glVertex3d(min[0], min[1], min[2]); glVertex3d(max[0], min[1], min[2]); glVertex3d(max[0], min[1], max[2]); glVertex3d(min[0], min[1], max[2]); glVertex3d(min[0], min[1], min[2]); glEnd(); glBegin(GL_LINE_STRIP); glVertex3d(min[0], max[1], min[2]); glVertex3d(max[0], max[1], min[2]); glVertex3d(max[0], max[1], max[2]); glVertex3d(min[0], max[1], max[2]); glVertex3d(min[0], max[1], min[2]); glEnd(); glBegin(GL_LINES); glVertex3d(min[0], min[1], min[2]); glVertex3d(min[0], max[1], min[2]); glVertex3d(max[0], min[1], min[2]); glVertex3d(max[0], max[1], min[2]); glVertex3d(max[0], min[1], max[2]); glVertex3d(max[0], max[1], max[2]); glVertex3d(min[0], min[1], max[2]); glVertex3d(min[0], max[1], max[2]); glEnd(); } IBoundingVolume& CAabb::operator=(const IBoundingVolume& other) { const CAabb& bv = (CAabb&)other; return operator=(bv); } CAabb& CAabb::operator=(const CAabb& other) { IBoundingVolume::operator=(other); m_Min = other.m_Min; m_Max = other.m_Max; return (*this); } IBoundingVolume& CAabb::operator+=(const btVector3& vec) { if ( IsEmpty() ) { m_Min[0] = vec[0]; m_Min[1] = vec[1]; m_Min[2] = vec[2]; m_Max[0] = vec[0]; m_Max[1] = vec[1]; m_Max[2] = vec[2]; } else { for ( int i = 0; i < 3; i++ ) { m_Min[i] = std::min(m_Min[i], vec[i]); m_Max[i] = std::max(m_Max[i], vec[i]); } } return (*this); } IBoundingVolume& CAabb::operator+=(const IBoundingVolume& other) { const CAabb& bv = (CAabb&)other; if ( IsEmpty() ) { *this = other; } else { for ( int i = 0; i < 3; i++ ) { m_Min[i] = std::min(m_Min[i], bv.m_Min[i]); m_Max[i] = std::max(m_Max[i], bv.m_Max[i]); } } return (*this); }
[ "saggitasaggita@gmail.com" ]
saggitasaggita@gmail.com
549105a724d6e9267298b656b041d1900b25682f
3de0cad97f49a704165c4748e472b970147f6469
/Behavioural/Command/Command-4/CeilingFanHighCommand.hpp
de271ea943001880433df698079369aef215002c
[]
no_license
mjaimin/DesignPatterns
e991ccba1a80273f00403f460c5cfea3d86a2c8d
0a79410d631070eb091dfd00bfaf4d4e31e9c47d
refs/heads/master
2020-12-25T15:42:12.383221
2020-10-18T05:24:07
2020-10-18T05:24:07
8,261,551
1
0
null
null
null
null
UTF-8
C++
false
false
964
hpp
#ifndef _HEAD_FIRST_DESIGN_PATTERNS_COMMAND_UNDO_CEILING_FAN_HIGH_COMMAND_HPP_ #define _HEAD_FIRST_DESIGN_PATTERNS_COMMAND_UNDO_CEILING_FAN_HIGH_COMMAND_HPP_ #include "Undo.hpp" namespace HeadFirstDesignPatterns { namespace Command { namespace Undo { class CeilingFanHighCommand : public Command { private: CeilingFan* ceilingFan; private: int prevSpeed; public: CeilingFanHighCommand(CeilingFan* ceilingFan) { this->ceilingFan = ceilingFan; } public: virtual void execute() { prevSpeed = ceilingFan->getSpeed(); ceilingFan->high(); } public: virtual void undo() { if (prevSpeed == CeilingFan::HIGH) { ceilingFan->high(); } else if (prevSpeed == CeilingFan::MEDIUM) { ceilingFan->medium(); } else if (prevSpeed == CeilingFan::LOW) { ceilingFan->low(); } else if (prevSpeed == CeilingFan::OFF) { ceilingFan->off(); } } }; } // namespace Undo } // namespace Command } // namespace HeadFirstDesignPatterns #endif
[ "m.jaimin@gmail.com" ]
m.jaimin@gmail.com
e2de2cfcaafd36d5869cfc00b23a9ce430413d4b
d0945281b194b52241ee3a36bd9d4ae2c546828d
/Source/UI/src/Windows/CommandBar.cpp
ad711032118c4c688a958d9e49ca20bd4250d5fb
[ "Apache-2.0", "LicenseRef-scancode-generic-cla" ]
permissive
fcjurado/titanium_mobile_windows
a61d5683c193e40d56d0c264f294c11d1cefd3a6
c0fbff4b6c451c3139ad29f2e9f9a870d25fe8ea
refs/heads/master
2021-01-17T22:03:29.751916
2015-06-20T22:55:04
2015-06-20T22:55:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,051
cpp
/** * Windows.CommandBar * * Copyright (c) 2015 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Apache Public License. * Please see the LICENSE included with this distribution for details. */ #include "TitaniumWindows/UI/Windows/CommandBar.hpp" #include "TitaniumWindows/UI/Windows/AppBarButton.hpp" #include "TitaniumWindows/UI/Windows/AppBarToggleButton.hpp" #include "TitaniumWindows/UI/Windows/AppBarSeparator.hpp" namespace TitaniumWindows { namespace UI { namespace WindowsXaml { using namespace ::Windows::UI::Xaml; CommandBar::CommandBar(const JSContext& js_context) TITANIUM_NOEXCEPT : Titanium::Module(js_context) , items__(js_context.CreateArray()) { TITANIUM_LOG_DEBUG("CommandBar::ctor Initialize"); } void CommandBar::postCallAsConstructor(const JSContext& js_context, const std::vector<JSValue>& arguments) { TITANIUM_LOG_DEBUG("CommandBar::postCallAsConstructor"); Titanium::Module::postCallAsConstructor(js_context, arguments); commandBar__ = ref new Controls::CommandBar(); } void CommandBar::JSExportInitialize() { JSExport<CommandBar>::SetClassVersion(1); JSExport<CommandBar>::SetParent(JSExport<Titanium::Module>::Class()); TITANIUM_ADD_PROPERTY(CommandBar, items); } TITANIUM_PROPERTY_GETTER(CommandBar, items) { return items__; } /* * TODO: We should enable use of the secondary commands property too. * Not sure if we want another property or we want to overload items, * so that if it is an array containing two arrays, * the first inner array is primary and second is secondary? * * May be more logical to have a second property? */ TITANIUM_PROPERTY_SETTER(CommandBar, items) { TITANIUM_ASSERT(argument.IsObject()); items__ = argument; const auto itemsObj = static_cast<JSObject>(argument); TITANIUM_ASSERT(itemsObj.IsArray()); const auto items = static_cast<std::vector<JSValue>>(static_cast<JSArray>(itemsObj)); commandBar__->PrimaryCommands->Clear(); for (auto item : items) { if (item.IsObject()) { const auto button = static_cast<JSObject>(item).GetPrivate<TitaniumWindows::UI::WindowsXaml::AppBarButton>(); const auto toggleButton = static_cast<JSObject>(item).GetPrivate<TitaniumWindows::UI::WindowsXaml::AppBarToggleButton>(); const auto separator = static_cast<JSObject>(item).GetPrivate<TitaniumWindows::UI::WindowsXaml::AppBarSeparator>(); if (button != nullptr) { commandBar__->PrimaryCommands->Append(button->getComponent()); } else if (toggleButton != nullptr) { commandBar__->PrimaryCommands->Append(toggleButton->getComponent()); } else if (separator != nullptr) { commandBar__->PrimaryCommands->Append(separator->getComponent()); } } } return true; } } // namespace WindowsXaml } // namespace UI } // namespace TitaniumWindows
[ "developer@infosia.co.jp" ]
developer@infosia.co.jp
9bd810eebf8cc700fedffed271bef830b59a6dfb
4cd7f9447801592739d8b05c4f41f9f210fdb784
/src/chrome/browser/banners/app_banner_data_fetcher_desktop.h
f5623b05553f75b8b8c1931c51c8b5f482619586
[ "BSD-3-Clause" ]
permissive
crash0verrid3/Firework-Browser
15fbcdcdf521f1b1a1f609310fba9a5ab520b92a
9f2e99135fa4230581bde1806ca51e484372be50
refs/heads/master
2021-01-10T13:18:41.267236
2015-10-18T23:04:10
2015-10-18T23:04:10
44,147,842
2
1
null
null
null
null
UTF-8
C++
false
false
1,645
h
// Copyright 2015 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_BANNERS_APP_BANNER_DATA_FETCHER_DESKTOP_H_ #define CHROME_BROWSER_BANNERS_APP_BANNER_DATA_FETCHER_DESKTOP_H_ #include "chrome/browser/banners/app_banner_data_fetcher.h" namespace extensions { class BookmarkAppHelper; class Extension; } // namespace extensions namespace banners { // Fetches data required to show a banner for the URL currently shown by the // WebContents. Extends the regular fetch to support desktop web apps. class AppBannerDataFetcherDesktop : public AppBannerDataFetcher { public: AppBannerDataFetcherDesktop(content::WebContents* web_contents, base::WeakPtr<Delegate> weak_delegate, int ideal_icon_size); // Callback for finishing bookmark app creation void FinishCreateBookmarkApp(const extensions::Extension* extension, const WebApplicationInfo& web_app_info); protected: ~AppBannerDataFetcherDesktop() override; // AppBannerDataFetcher override. void ShowBanner(const SkBitmap* icon, const base::string16& title) override; private: // AppBannerDataFetcher override. bool IsWebAppInstalled(content::BrowserContext* browser_context, const GURL& start_url) override; scoped_ptr<extensions::BookmarkAppHelper> bookmark_app_helper_; DISALLOW_COPY_AND_ASSIGN(AppBannerDataFetcherDesktop); }; } // namespace banners #endif // CHROME_BROWSER_BANNERS_APP_BANNER_DATA_FETCHER_DESKTOP_H_
[ "sasha@sasha-kaidalov" ]
sasha@sasha-kaidalov
fd09111cb7706b3e0c5930b47dd5bcf345758b45
5dde665a05fc7ac8284f4a63cdbfd58d8365e24f
/interview/meituan/zhang2.cpp
7525806f82a6560ede106c14dec2f0d280ba2741
[]
no_license
chen-huicheng/cpp-coder
e6613544db89c94b12e465986e60c851e908f7d6
de318edbdadff6fc31087be280228e32aae08147
refs/heads/master
2023-08-05T07:04:14.784018
2021-09-22T08:52:27
2021-09-22T08:52:27
359,787,922
1
0
null
null
null
null
UTF-8
C++
false
false
696
cpp
#include<bits/stdc++.h> using namespace std; int main(){ vector<vector<int>> idxs(26,vector<int>()); string s,a; cin>>s>>a; int n=s.size(); int m=a.size(); for(int i=0;i<n;i++){ idxs[s[i]-'a'].push_back(i); } int res=0; int preid=-1; for(auto c:a){ if(idxs[c-'a'].size()==0){ res=-1; break; } auto it=upper_bound(idxs[c-'a'].begin(),idxs[c-'a'].end(),preid); if(it==idxs[c-'a'].end()){ res+=n-preid-1; preid=idxs[c-'a'][0]; res+=preid; }else{ res+=*it-preid-1; preid=*it; } } cout<<res<<endl; return 0; }
[ "huicheng_chen@qq.com" ]
huicheng_chen@qq.com
aeea772b5e919f0095584b10905598006be09871
a5d418868bdc1d81719cd111f2787f2c5137518c
/IoT/21-03-03/21-03-03/실습3/push_btn/push_btn.ino
f70eea7849b68a7f5024b630bbc4ee8f8a4ffbed
[]
no_license
sohn0356-git/TIL
aa0e89b2d163a342fc99e93b0552b73bf1db9e4a
9c7447326caed4d25044a0ab559744ffc469924c
refs/heads/master
2023-07-15T23:33:19.650261
2021-08-24T11:04:12
2021-08-24T11:04:12
327,533,782
0
1
null
null
null
null
UTF-8
C++
false
false
330
ino
int push_btn = 12; int btn_state = 0; void setup() { Serial.begin(9600); pinMode(push_btn,INPUT); } void loop() { delay(1000); btn_state = digitalRead(push_btn); Serial.println(btn_state); // if(btn_state==HIGH){ // Serial.println("push버튼 누름"); // }else{ // Serial.println("push버튼 해제"); // } }
[ "sohn0356@gmail.com" ]
sohn0356@gmail.com
76ebf0b1f181f07a52b12e85fd12ec41ed881629
a40f66e4f174ae54438dfed778839b46f52599b5
/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h
0a2530c0ab1fa330dcf43d3a3f18306968a744b5
[]
no_license
PFCM/SwivelAutotune
61e2f63e8fb9244e6a2ca1d840839b16b457d7b6
f52201aef77806febba1ade85688e989fe3da09d
refs/heads/master
2021-01-22T05:24:10.935556
2013-11-28T03:59:29
2013-11-28T03:59:29
14,478,275
1
0
null
2013-11-27T19:48:34
2013-11-18T00:12:56
C++
UTF-8
C++
false
false
20,740
h
/* ============================================================================== This file is part of the juce_core module of the JUCE library. Copyright (c) 2013 - Raw Material Software Ltd. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------------------------------------------------ NOTE! This permissive ISC license applies ONLY to files within the juce_core module! All other JUCE modules are covered by a dual GPL/commercial license, so if you are using any other modules, be sure to check that you also comply with their license. For more details, visit www.juce.com ============================================================================== */ #ifndef __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__ #define __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__ //============================================================================== #if JUCE_WINDOWS && ! DOXYGEN #define JUCE_NATIVE_WCHAR_IS_UTF8 0 #define JUCE_NATIVE_WCHAR_IS_UTF16 1 #define JUCE_NATIVE_WCHAR_IS_UTF32 0 #else /** This macro will be set to 1 if the compiler's native wchar_t is an 8-bit type. */ #define JUCE_NATIVE_WCHAR_IS_UTF8 0 /** This macro will be set to 1 if the compiler's native wchar_t is a 16-bit type. */ #define JUCE_NATIVE_WCHAR_IS_UTF16 0 /** This macro will be set to 1 if the compiler's native wchar_t is a 32-bit type. */ #define JUCE_NATIVE_WCHAR_IS_UTF32 1 #endif #if JUCE_NATIVE_WCHAR_IS_UTF32 || DOXYGEN /** A platform-independent 32-bit unicode character type. */ typedef wchar_t juce_wchar; #else typedef uint32 juce_wchar; #endif #ifndef DOXYGEN /** This macro is deprecated, but preserved for compatibility with old code. */ #define JUCE_T(stringLiteral) (L##stringLiteral) #endif #if JUCE_DEFINE_T_MACRO /** The 'T' macro is an alternative for using the "L" prefix in front of a string literal. This macro is deprecated, but available for compatibility with old code if you set JUCE_DEFINE_T_MACRO = 1. The fastest, most portable and best way to write your string literals is as standard char strings, using escaped utf-8 character sequences for extended characters, rather than trying to store them as wide-char strings. */ #define T(stringLiteral) JUCE_T(stringLiteral) #endif //============================================================================== /** A collection of functions for manipulating characters and character strings. Most of these methods are designed for internal use by the String and CharPointer classes, but some of them may be useful to call directly. @see String, CharPointer_UTF8, CharPointer_UTF16, CharPointer_UTF32 */ class JUCE_API CharacterFunctions { public: //============================================================================== /** Converts a character to upper-case. */ static juce_wchar toUpperCase (juce_wchar character) noexcept; /** Converts a character to lower-case. */ static juce_wchar toLowerCase (juce_wchar character) noexcept; /** Checks whether a unicode character is upper-case. */ static bool isUpperCase (juce_wchar character) noexcept; /** Checks whether a unicode character is lower-case. */ static bool isLowerCase (juce_wchar character) noexcept; /** Checks whether a character is whitespace. */ static bool isWhitespace (char character) noexcept; /** Checks whether a character is whitespace. */ static bool isWhitespace (juce_wchar character) noexcept; /** Checks whether a character is a digit. */ static bool isDigit (char character) noexcept; /** Checks whether a character is a digit. */ static bool isDigit (juce_wchar character) noexcept; /** Checks whether a character is alphabetic. */ static bool isLetter (char character) noexcept; /** Checks whether a character is alphabetic. */ static bool isLetter (juce_wchar character) noexcept; /** Checks whether a character is alphabetic or numeric. */ static bool isLetterOrDigit (char character) noexcept; /** Checks whether a character is alphabetic or numeric. */ static bool isLetterOrDigit (juce_wchar character) noexcept; /** Returns 0 to 16 for '0' to 'F", or -1 for characters that aren't a legal hex digit. */ static int getHexDigitValue (juce_wchar digit) noexcept; //============================================================================== /** Parses a character string to read a floating-point number. Note that this will advance the pointer that is passed in, leaving it at the end of the number. */ template <typename CharPointerType> static double readDoubleValue (CharPointerType& text) noexcept { double result[3] = { 0 }, accumulator[2] = { 0 }; int exponentAdjustment[2] = { 0 }, exponentAccumulator[2] = { -1, -1 }; int exponent = 0, decPointIndex = 0, digit = 0; int lastDigit = 0, numSignificantDigits = 0; bool isNegative = false, digitsFound = false; const int maxSignificantDigits = 15 + 2; text = text.findEndOfWhitespace(); juce_wchar c = *text; switch (c) { case '-': isNegative = true; // fall-through.. case '+': c = *++text; } switch (c) { case 'n': case 'N': if ((text[1] == 'a' || text[1] == 'A') && (text[2] == 'n' || text[2] == 'N')) return std::numeric_limits<double>::quiet_NaN(); break; case 'i': case 'I': if ((text[1] == 'n' || text[1] == 'N') && (text[2] == 'f' || text[2] == 'F')) return std::numeric_limits<double>::infinity(); break; } for (;;) { if (text.isDigit()) { lastDigit = digit; digit = (int) text.getAndAdvance() - '0'; digitsFound = true; if (decPointIndex != 0) exponentAdjustment[1]++; if (numSignificantDigits == 0 && digit == 0) continue; if (++numSignificantDigits > maxSignificantDigits) { if (digit > 5) ++accumulator [decPointIndex]; else if (digit == 5 && (lastDigit & 1) != 0) ++accumulator [decPointIndex]; if (decPointIndex > 0) exponentAdjustment[1]--; else exponentAdjustment[0]++; while (text.isDigit()) { ++text; if (decPointIndex == 0) exponentAdjustment[0]++; } } else { const double maxAccumulatorValue = (double) ((std::numeric_limits<unsigned int>::max() - 9) / 10); if (accumulator [decPointIndex] > maxAccumulatorValue) { result [decPointIndex] = mulexp10 (result [decPointIndex], exponentAccumulator [decPointIndex]) + accumulator [decPointIndex]; accumulator [decPointIndex] = 0; exponentAccumulator [decPointIndex] = 0; } accumulator [decPointIndex] = accumulator[decPointIndex] * 10 + digit; exponentAccumulator [decPointIndex]++; } } else if (decPointIndex == 0 && *text == '.') { ++text; decPointIndex = 1; if (numSignificantDigits > maxSignificantDigits) { while (text.isDigit()) ++text; break; } } else { break; } } result[0] = mulexp10 (result[0], exponentAccumulator[0]) + accumulator[0]; if (decPointIndex != 0) result[1] = mulexp10 (result[1], exponentAccumulator[1]) + accumulator[1]; c = *text; if ((c == 'e' || c == 'E') && digitsFound) { bool negativeExponent = false; switch (*++text) { case '-': negativeExponent = true; // fall-through.. case '+': ++text; } while (text.isDigit()) exponent = (exponent * 10) + ((int) text.getAndAdvance() - '0'); if (negativeExponent) exponent = -exponent; } double r = mulexp10 (result[0], exponent + exponentAdjustment[0]); if (decPointIndex != 0) r += mulexp10 (result[1], exponent - exponentAdjustment[1]); return isNegative ? -r : r; } /** Parses a character string, to read a floating-point value. */ template <typename CharPointerType> static double getDoubleValue (CharPointerType text) noexcept { return readDoubleValue (text); } //============================================================================== /** Parses a character string, to read an integer value. */ template <typename IntType, typename CharPointerType> static IntType getIntValue (const CharPointerType text) noexcept { IntType v = 0; CharPointerType s (text.findEndOfWhitespace()); const bool isNeg = *s == '-'; if (isNeg) ++s; for (;;) { const juce_wchar c = s.getAndAdvance(); if (c >= '0' && c <= '9') v = v * 10 + (IntType) (c - '0'); else break; } return isNeg ? -v : v; } //============================================================================== /** Counts the number of characters in a given string, stopping if the count exceeds a specified limit. */ template <typename CharPointerType> static size_t lengthUpTo (CharPointerType text, const size_t maxCharsToCount) noexcept { size_t len = 0; while (len < maxCharsToCount && text.getAndAdvance() != 0) ++len; return len; } /** Counts the number of characters in a given string, stopping if the count exceeds a specified end-pointer. */ template <typename CharPointerType> static size_t lengthUpTo (CharPointerType start, const CharPointerType end) noexcept { size_t len = 0; while (start < end && start.getAndAdvance() != 0) ++len; return len; } /** Copies null-terminated characters from one string to another. */ template <typename DestCharPointerType, typename SrcCharPointerType> static void copyAll (DestCharPointerType& dest, SrcCharPointerType src) noexcept { for (;;) { const juce_wchar c = src.getAndAdvance(); if (c == 0) break; dest.write (c); } dest.writeNull(); } /** Copies characters from one string to another, up to a null terminator or a given byte size limit. */ template <typename DestCharPointerType, typename SrcCharPointerType> static size_t copyWithDestByteLimit (DestCharPointerType& dest, SrcCharPointerType src, size_t maxBytesToWrite) noexcept { typename DestCharPointerType::CharType const* const startAddress = dest.getAddress(); ssize_t maxBytes = (ssize_t) maxBytesToWrite; maxBytes -= sizeof (typename DestCharPointerType::CharType); // (allow for a terminating null) for (;;) { const juce_wchar c = src.getAndAdvance(); const size_t bytesNeeded = DestCharPointerType::getBytesRequiredFor (c); maxBytes -= bytesNeeded; if (c == 0 || maxBytes < 0) break; dest.write (c); } dest.writeNull(); return (size_t) getAddressDifference (dest.getAddress(), startAddress) + sizeof (typename DestCharPointerType::CharType); } /** Copies characters from one string to another, up to a null terminator or a given maximum number of characters. */ template <typename DestCharPointerType, typename SrcCharPointerType> static void copyWithCharLimit (DestCharPointerType& dest, SrcCharPointerType src, int maxChars) noexcept { while (--maxChars > 0) { const juce_wchar c = src.getAndAdvance(); if (c == 0) break; dest.write (c); } dest.writeNull(); } /** Compares two null-terminated character strings. */ template <typename CharPointerType1, typename CharPointerType2> static int compare (CharPointerType1 s1, CharPointerType2 s2) noexcept { for (;;) { const int c1 = (int) s1.getAndAdvance(); const int c2 = (int) s2.getAndAdvance(); const int diff = c1 - c2; if (diff != 0) return diff < 0 ? -1 : 1; if (c1 == 0) break; } return 0; } /** Compares two null-terminated character strings, up to a given number of characters. */ template <typename CharPointerType1, typename CharPointerType2> static int compareUpTo (CharPointerType1 s1, CharPointerType2 s2, int maxChars) noexcept { while (--maxChars >= 0) { const int c1 = (int) s1.getAndAdvance(); const int c2 = (int) s2.getAndAdvance(); const int diff = c1 - c2; if (diff != 0) return diff < 0 ? -1 : 1; if (c1 == 0) break; } return 0; } /** Compares two null-terminated character strings, using a case-independant match. */ template <typename CharPointerType1, typename CharPointerType2> static int compareIgnoreCase (CharPointerType1 s1, CharPointerType2 s2) noexcept { for (;;) { const int c1 = (int) s1.toUpperCase(); ++s1; const int c2 = (int) s2.toUpperCase(); ++s2; const int diff = c1 - c2; if (diff != 0) return diff < 0 ? -1 : 1; if (c1 == 0) break; } return 0; } /** Compares two null-terminated character strings, using a case-independent match. */ template <typename CharPointerType1, typename CharPointerType2> static int compareIgnoreCaseUpTo (CharPointerType1 s1, CharPointerType2 s2, int maxChars) noexcept { while (--maxChars >= 0) { const int c1 = (int) s1.toUpperCase(); ++s1; const int c2 = (int) s2.toUpperCase(); ++s2; const int diff = c1 - c2; if (diff != 0) return diff < 0 ? -1 : 1; if (c1 == 0) break; } return 0; } /** Finds the character index of a given substring in another string. Returns -1 if the substring is not found. */ template <typename CharPointerType1, typename CharPointerType2> static int indexOf (CharPointerType1 textToSearch, const CharPointerType2 substringToLookFor) noexcept { int index = 0; const int substringLength = (int) substringToLookFor.length(); for (;;) { if (textToSearch.compareUpTo (substringToLookFor, substringLength) == 0) return index; if (textToSearch.getAndAdvance() == 0) return -1; ++index; } } /** Returns a pointer to the first occurrence of a substring in a string. If the substring is not found, this will return a pointer to the string's null terminator. */ template <typename CharPointerType1, typename CharPointerType2> static CharPointerType1 find (CharPointerType1 textToSearch, const CharPointerType2 substringToLookFor) noexcept { const int substringLength = (int) substringToLookFor.length(); while (textToSearch.compareUpTo (substringToLookFor, substringLength) != 0 && ! textToSearch.isEmpty()) ++textToSearch; return textToSearch; } /** Finds the character index of a given substring in another string, using a case-independent match. Returns -1 if the substring is not found. */ template <typename CharPointerType1, typename CharPointerType2> static int indexOfIgnoreCase (CharPointerType1 haystack, const CharPointerType2 needle) noexcept { int index = 0; const int needleLength = (int) needle.length(); for (;;) { if (haystack.compareIgnoreCaseUpTo (needle, needleLength) == 0) return index; if (haystack.getAndAdvance() == 0) return -1; ++index; } } /** Finds the character index of a given character in another string. Returns -1 if the character is not found. */ template <typename Type> static int indexOfChar (Type text, const juce_wchar charToFind) noexcept { int i = 0; while (! text.isEmpty()) { if (text.getAndAdvance() == charToFind) return i; ++i; } return -1; } /** Finds the character index of a given character in another string, using a case-independent match. Returns -1 if the character is not found. */ template <typename Type> static int indexOfCharIgnoreCase (Type text, juce_wchar charToFind) noexcept { charToFind = CharacterFunctions::toLowerCase (charToFind); int i = 0; while (! text.isEmpty()) { if (text.toLowerCase() == charToFind) return i; ++text; ++i; } return -1; } /** Returns a pointer to the first non-whitespace character in a string. If the string contains only whitespace, this will return a pointer to its null terminator. */ template <typename Type> static Type findEndOfWhitespace (const Type& text) noexcept { Type p (text); while (p.isWhitespace()) ++p; return p; } /** Returns a pointer to the first character in the string which is found in the breakCharacters string. */ template <typename Type> static Type findEndOfToken (const Type& text, const Type& breakCharacters, const Type& quoteCharacters) { Type t (text); juce_wchar currentQuoteChar = 0; while (! t.isEmpty()) { const juce_wchar c = t.getAndAdvance(); if (currentQuoteChar == 0 && breakCharacters.indexOf (c) >= 0) { --t; break; } if (quoteCharacters.indexOf (c) >= 0) { if (currentQuoteChar == 0) currentQuoteChar = c; else if (currentQuoteChar == c) currentQuoteChar = 0; } } return t; } private: static double mulexp10 (const double value, int exponent) noexcept; }; #endif // __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__
[ "pfcmathews@gmail.com" ]
pfcmathews@gmail.com
186c421db835b71d615a525ff928fc3c26c28537
61aad86201fbaf50fc40bde4e50b96c71249e2a8
/src/PrtPrimaryGeneratorAction.cxx
a443087ace9c16f89974c45e02b5aa693f382c0f
[]
no_license
pinkenburg/eicdirc
f91be42a45d20bda54c9d8e6ae0adcbe3ec0e66c
1ec651cf3099d55fb993afc546191ab7a4fdf60b
refs/heads/master
2021-01-14T06:54:38.782892
2019-10-26T17:37:41
2019-10-26T17:37:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,473
cxx
#include "PrtPrimaryGeneratorAction.h" #include "PrtPrimaryGeneratorMessenger.h" #include "Randomize.hh" #include "G4Event.hh" #include "G4ParticleGun.hh" #include "G4ParticleTable.hh" #include "G4ParticleDefinition.hh" #include "G4SystemOfUnits.hh" #include "globals.hh" #include "PrtManager.h" PrtPrimaryGeneratorAction::PrtPrimaryGeneratorAction() : G4VUserPrimaryGeneratorAction(), fParticleGun(0){ G4int n_particle = 1; fParticleGun = new G4ParticleGun(n_particle); //create a messenger for this class fGunMessenger = new PrtPrimaryGeneratorMessenger(this); //default kinematic // G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable(); fParticleK = particleTable->FindParticle("kaon+"); fParticlePi = particleTable->FindParticle("pi+"); fParticleE = particleTable->FindParticle("e-"); fParticleMu = particleTable->FindParticle("mu-"); fParticleGun->SetParticleDefinition(fParticlePi); fParticleGun->SetParticleTime(0.0*ns); fParticleGun->SetParticlePosition(G4ThreeVector(0.0*cm,0.0*cm,-0.5*cm)); fParticleGun->SetParticleMomentumDirection(G4ThreeVector(1.,0.,0.)); fParticleGun->SetParticleEnergy(500.0*keV); } PrtPrimaryGeneratorAction::~PrtPrimaryGeneratorAction(){ delete fParticleGun; delete fGunMessenger; } void PrtPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent){ G4double x,y,z; G4double angle = PrtManager::Instance()->GetAngle(); G4double zpos = PrtManager::Instance()->GetZPos(); G4double radiatorL = PrtManager::Instance()->GetRadiatorL(); G4double radiatorW = PrtManager::Instance()->GetRadiatorW(); G4double radiatorH = PrtManager::Instance()->GetRadiatorH(); if(PrtManager::Instance()->GetMix()){ if(PrtManager::Instance()->GetParticle()==211 || PrtManager::Instance()->GetParticle()==0){ if(PrtManager::Instance()->GetMix()==1){ fParticleGun->SetParticleDefinition(fParticleK); PrtManager::Instance()->SetParticle(321); }else if(PrtManager::Instance()->GetMix()==2){ fParticleGun->SetParticleDefinition(fParticleE); PrtManager::Instance()->SetParticle(11); }else if(PrtManager::Instance()->GetMix()==3){ fParticleGun->SetParticleDefinition(fParticleMu); PrtManager::Instance()->SetParticle(13); } }else{ fParticleGun->SetParticleDefinition(fParticlePi); PrtManager::Instance()->SetParticle(211); } } PrtManager::Instance()->AddEvent(PrtEvent()); if(PrtManager::Instance()->GetRunType() == 0 || PrtManager::Instance()->GetRunType() == 10){ // simulation G4ThreeVector vec(0,0,1); //G4int id = anEvent->GetEventID()%5; // if(id==0) vec.setTheta(M_PI-110*deg); // if(id==0) vec.setPhi(0*deg); // if(id==1) vec.setTheta(M_PI-30*deg); // if(id==1) vec.setPhi(70*deg); // if(id==2) vec.setTheta(M_PI-140*deg); // if(id==2) vec.setPhi(180*deg); // if(id==3) vec.setTheta(M_PI-70*deg); // if(id==3) vec.setPhi(250*deg); // // else{ double trackresolution=PrtManager::Instance()->GetBeamDimension(); if(angle>0){ std::cout<<"angle "<<angle*TMath::RadToDeg()<<std::endl; if(trackresolution<0.00001){ vec.setTheta(angle); }else{ //smear track resolution vec.setTheta(G4RandGauss::shoot(angle,trackresolution)); vec.setPhi(G4RandGauss::shoot(0,trackresolution)); } }else{ G4double theta = M_PI*G4UniformRand(); theta = acos((cos(30*deg)-cos(150*deg))*G4UniformRand()+cos(150*deg)); theta = G4RandGauss::shoot(theta,trackresolution); vec.setTheta(M_PI-theta); vec.setPhi(G4RandGauss::shoot(0,trackresolution)); // vec.setPhi(2*M_PI*G4UniformRand()); PrtManager::Instance()->Event()->SetAngle(theta/deg); } fParticleGun->SetParticlePosition(G4ThreeVector(0,0,zpos)); PrtManager::Instance()->Event()->SetPosition(TVector3(0,0,zpos)); // // } fParticleGun->SetParticleMomentumDirection(vec); } if(PrtManager::Instance()->GetBeamDimension() == 1){ // smearing and divergence G4double sigma = 1*cm; z = fParticleGun->GetParticlePosition().z(); x = G4RandGauss::shoot(0,sigma); y = G4RandGauss::shoot(0,sigma); fParticleGun->SetParticlePosition(G4ThreeVector(x,y,z)); PrtManager::Instance()->Event()->SetPosition(TVector3(x,y,z)); } if(PrtManager::Instance()->GetRunType() == 1){ // LUT generation G4double barShift=0; // 390/12./2; fParticleGun->SetParticlePosition(G4ThreeVector(0,barShift,radiatorL/2.-0.5)); G4double angle = -G4UniformRand()*M_PI; G4ThreeVector vec(0,0,-1); vec.setTheta(acos(G4UniformRand())); vec.setPhi(2*M_PI*G4UniformRand()); // vec.rotateY(-M_PI/2.); fParticleGun->SetParticleMomentumDirection(vec); } if(PrtManager::Instance()->GetRunType() == 5){ // calibration light G4double shift = PrtManager::Instance()->GetShift(); fParticleGun->SetParticlePosition(G4ThreeVector(-1250/2.+0.1-shift,0,5+tan(45*M_PI/180.)*shift+25)); G4double angle = -G4UniformRand()*M_PI; G4ThreeVector vec(0,0,1); vec.setTheta(acos(G4UniformRand())); vec.setPhi(2*M_PI*G4UniformRand()); vec.rotateY(-M_PI/2.); fParticleGun->SetParticleMomentumDirection(vec); } fParticleGun->GeneratePrimaryVertex(anEvent); G4ThreeVector dir = fParticleGun->GetParticleMomentumDirection(); dir *= fParticleGun->GetParticleMomentum(); PrtManager::Instance()->SetMomentum(TVector3(dir.x(),dir.y(),dir.z())); } void PrtPrimaryGeneratorAction::SetOptPhotonPolar(){ G4double angle = G4UniformRand() * 360.0*deg; SetOptPhotonPolar(angle); } void PrtPrimaryGeneratorAction::SetOptPhotonPolar(G4double angle){ if (fParticleGun->GetParticleDefinition()->GetParticleName()!="opticalphoton") { G4cout << "--> warning from PrimaryGeneratorAction::SetOptPhotonPolar() :" "the particleGun is not an opticalphoton " << fParticleGun->GetParticleDefinition()->GetParticleName()<< G4endl; return; } G4ThreeVector normal (1., 0., 0.); G4ThreeVector kphoton = fParticleGun->GetParticleMomentumDirection(); G4ThreeVector product = normal.cross(kphoton); G4double modul2 = product*product; G4ThreeVector e_perpend (0., 0., 1.); if (modul2 > 0.) e_perpend = (1./std::sqrt(modul2))*product; G4ThreeVector e_paralle = e_perpend.cross(kphoton); G4ThreeVector polar = std::cos(angle)*e_paralle + std::sin(angle)*e_perpend; fParticleGun->SetParticlePolarization(polar); }
[ "r.dzhygadlo@gsi.de" ]
r.dzhygadlo@gsi.de
be41c6d3aabd5770c66c434950268252b2afefad
a4322e8603c04c1f57d19a2808c653e9ba8b9ded
/ThreeBodyMassivePhaseSpace.h
e96841539e40a86980509442172015fa1270ea9d
[]
no_license
MatthiasLinster/Bachelor-Thesis
9557a39d5bae37857f21416f9812f5631a281ae0
d21768900b94acf7e4a7cba689b3582324dca38f
refs/heads/master
2021-01-22T08:48:51.470906
2015-04-14T18:15:30
2015-04-14T18:15:30
33,821,802
0
0
null
null
null
null
UTF-8
C++
false
false
967
h
#ifndef THREE_BODY_MASSIVE_PHASE_SPACE_H #define THREE_BODY_MASSIVE_PHASE_SPACE_H #include "PhaseSpace.h" #include "TwoBodyMassivePhaseSpace.h" #include <iostream> class ThreeBodyMassivePhaseSpace : public PhaseSpace { public: ThreeBodyMassivePhaseSpace(const double massParticle1,const double massParticle2,const double massParticle3); ~ThreeBodyMassivePhaseSpace(); // Volumen des Phasenraums überschreiben virtual double getPhaseSpaceVolume() const; // Implementierung der Phasenraum-Punkt-Funktion virtual void getNextPhaseSpacePoint(const double* pSamplingPoint,FourVector const& pInTotalMomentum,FourVector* pOutMomentum,double* pPhaseSpaceFactor); protected: // Källen-Funktion double kaellenFunction(const double x1,const double x2,const double x3) const; // Massen der Teilchen double m_massParticles[3]; // Zwei Phasenraum-Objekte zur Generierung der Teilchen TwoBodyMassivePhaseSpace* m_ps1,*m_ps2; }; #endif
[ "matthias.linster@gmail.com" ]
matthias.linster@gmail.com
769134091bc11ee0243e90979340072b975f2718
aa8dcda692ed02ed558d88d834b92e53f2ca747c
/final/Final242/Final242/q1.cpp
30b9a5b47b0609e856ca22e7ca83a47ddce0d7b5
[]
no_license
KimballDavid/CSC242
5430267cb527b63db19fd6282323c857a0eb3fd1
9d7f5585396717083c2e0ce26a43d8c2196ef01a
refs/heads/master
2020-05-01T11:33:57.237244
2019-03-24T17:24:51
2019-03-24T17:24:51
177,446,352
0
0
null
null
null
null
UTF-8
C++
false
false
1,659
cpp
#include<iostream> // my understanidn of this question was unclear I did not // know if you wanted literally 1,2,3...99,100 // or just positive integers between there // as such I made two function for this part below // fucntion to initilize array with values 1-100 /*double initilizeArray(double array[], const int size) { double arrayValue = 0.0; for (int i = 0; i < size; i++) { array[i] = i + 1; arrayValue = array[i]; } return arrayValue; }*/ // initilize array with random values between 1-100 double initilizeArray(double array[], const int size) { double arrayValue = 0.0; for (int i = 0; i < size; i++) { array[i] = 1 + rand() % 100; arrayValue = array[i]; } return arrayValue; } // function to find array average double averageArray(double array[], int size) { double sum = 0.0; double average = 0.0; for (int i = 0; i < size; i++) sum += array[i]; average = sum / size; return average; } // function to cycle through array units and print value void printArray(const double array[], int size) { using std::cout; for (int i = 0; i < size; i++) cout << array[i] << " "; } int main() { using std::cout; // build empty array container and determine size // initilize variables used in main() const int size = 100; double array1[size]; double avgofArray = 0.0; // initilize array for (int i = 0; i < size; i++) { array1[i] = initilizeArray(array1, size); } // get average of array values avgofArray = averageArray(array1, size); // print array horizontally printArray(array1, size); // print average of array cout << "\n The average of the array is: " << avgofArray; return 0; }
[ "kimbadp@gmail.com" ]
kimbadp@gmail.com
ef3094c04a52014855a432efdc5ab1ad8dc68a0b
ba9322f7db02d797f6984298d892f74768193dcf
/bssopenapi/include/alibabacloud/bssopenapi/model/QuerySettlementBillResult.h
4c1b70f12617c98f65bc083a8c41a55a86a94e1a
[ "Apache-2.0" ]
permissive
sdk-team/aliyun-openapi-cpp-sdk
e27f91996b3bad9226c86f74475b5a1a91806861
a27fc0000a2b061cd10df09cbe4fff9db4a7c707
refs/heads/master
2022-08-21T18:25:53.080066
2022-07-25T10:01:05
2022-07-25T10:01:05
183,356,893
3
0
null
2019-04-25T04:34:29
2019-04-25T04:34:28
null
UTF-8
C++
false
false
3,065
h
/* * Copyright 2009-2017 Alibaba Cloud 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. */ #ifndef ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYSETTLEMENTBILLRESULT_H_ #define ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYSETTLEMENTBILLRESULT_H_ #include <string> #include <vector> #include <utility> #include <alibabacloud/core/ServiceResult.h> #include <alibabacloud/bssopenapi/BssOpenApiExport.h> namespace AlibabaCloud { namespace BssOpenApi { namespace Model { class ALIBABACLOUD_BSSOPENAPI_EXPORT QuerySettlementBillResult : public ServiceResult { public: struct Data { struct Item { float afterTaxAmount; std::string config; std::string originalOrderID; float accountDiscount; std::string clearedTime; float deductedByCashCoupons; std::string paymentTime; float tax; std::string paymentCurrency; std::string payerAccount; std::string orderID; std::string promotion; float paymentAmount; float deductedByPrepaidCard; std::string usageEndTime; std::string item; std::string subscriptionType; float pretaxGrossAmount; std::string orderType; std::string solutionID; std::string currency; std::string billID; std::string usageStartTime; float mybankPaymentAmount; std::string solutionName; std::string suborderID; std::string status; float deductedByCoupons; float previousBillingCycleBalance; std::string linkedCustomerOrderID; std::string productCode; std::string createTime; std::string productType; std::string quantity; float chargeDiscount; float outstandingAmount; std::string invoiceNo; std::string ownerID; float pretaxAmount; std::string region; std::string recordID; std::string seller; float pretaxAmountLocal; }; int totalCount; std::string billingCycle; int pageNum; int pageSize; std::vector<Item> items; }; QuerySettlementBillResult(); explicit QuerySettlementBillResult(const std::string &payload); ~QuerySettlementBillResult(); std::string getMessage()const; Data getData()const; std::string getCode()const; bool getSuccess()const; protected: void parse(const std::string &payload); private: std::string message_; Data data_; std::string code_; bool success_; }; } } } #endif // !ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYSETTLEMENTBILLRESULT_H_
[ "haowei.yao@alibaba-inc.com" ]
haowei.yao@alibaba-inc.com
cb1056a3577de5487a86f6e267394578202c344c
fe0559eaa11c60145797571bf0ab051bed71ae91
/functions/FunctionResolveURI.cpp
2dc963c550d3e2e7a731221b1f5d506ec7070083
[]
no_license
ren19890419/xqilla
23e64a012f825ff58371907284d15872c9286f7b
ba6e4d58c777bede091856c0edee68c58a5fa364
refs/heads/master
2021-05-26T12:09:50.022580
2012-04-11T13:41:47
2012-04-11T13:41:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,373
cpp
/* * Copyright (c) 2001, 2008, * DecisionSoft Limited. All rights reserved. * Copyright (c) 2004, 2011, * Oracle and/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. * 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 "../config/xqilla_config.h" #include <assert.h> #include <xqilla/functions/FunctionResolveURI.hpp> #include <xqilla/items/ATStringOrDerived.hpp> #include <xqilla/exceptions/FunctionException.hpp> #include <xqilla/exceptions/StaticErrorException.hpp> #include "../exceptions/InvalidLexicalSpaceException.hpp" #include <xqilla/context/DynamicContext.hpp> #include <xqilla/items/DatatypeFactory.hpp> #include <xqilla/ast/XQLiteral.hpp> #include <xercesc/util/XMLString.hpp> #include <xercesc/util/XMLUri.hpp> XERCES_CPP_NAMESPACE_USE; const XMLCh FunctionResolveURI::name[] = { chLatin_r, chLatin_e, chLatin_s, chLatin_o, chLatin_l, chLatin_v, chLatin_e, chDash, chLatin_u, chLatin_r, chLatin_i, chNull }; const unsigned int FunctionResolveURI::minArgs = 1; const unsigned int FunctionResolveURI::maxArgs = 2; /** * fn:resolve-uri($relative as xs:string?) as xs:anyURI? * fn:resolve-uri($relative as xs:string?, $base as xs:string) as xs:anyURI? **/ FunctionResolveURI::FunctionResolveURI(const VectorOfASTNodes &args, XPath2MemoryManager* memMgr) : XQFunction(name, "($relative as xs:string?, $base as xs:string) as xs:anyURI?", args, memMgr) { } ASTNode* FunctionResolveURI::staticResolution(StaticContext *context) { if(getNumArgs() == 1) { if(!context->getBaseURI()) XQThrow(StaticErrorException, X("FunctionResolveURI::staticResolution"), X("Base uri undefined in the static context [err:FONS0005]")); XPath2MemoryManager* mm = context->getMemoryManager(); ASTNode *baseURI = new (mm) XQLiteral(SchemaSymbols::fgURI_SCHEMAFORSCHEMA, SchemaSymbols::fgDT_STRING, context->getBaseURI(), AnyAtomicType::STRING, mm); baseURI->setLocationInfo(this); _args.push_back(baseURI); } resolveArguments(context); return this; } Sequence FunctionResolveURI::createSequence(DynamicContext* context, int flags) const { XPath2MemoryManager *memMgr = context->getMemoryManager(); Item::Ptr relative = getParamNumber(1, context)->next(context); if(relative.isNull()) return Sequence(memMgr); const XMLCh *relativeURI = relative->asString(context); try { if(XMLUri::isValidURI(false, relativeURI)) return Sequence(context->getItemFactory()->createAnyURI(relativeURI, context), memMgr); } catch(InvalidLexicalSpaceException &e){ XQThrow(FunctionException, X("FunctionResolveURI::createSequence"), X("Invalid argument to resolve-uri [err:FORG0002]")); } try { const XMLCh *baseURI = getParamNumber(2, context)->next(context)->asString(context); if(!XMLUri::isValidURI(true, relativeURI)) XQThrow(FunctionException, X("FunctionResolveURI::createSequence"), X("Invalid relative uri argument to resolve-uri [err:FORG0002]")); if(!XMLUri::isValidURI(false, baseURI)) XQThrow(FunctionException, X("FunctionResolveURI::createSequence"), X("Invalid base-uri argument to resolve-uri [err:FORG0002]")); try { XMLUri base(baseURI); XMLUri full(&base, relativeURI); return Sequence(context->getItemFactory()->createAnyURI(full.getUriText(), context), memMgr); } catch(InvalidLexicalSpaceException &e){ XQThrow(FunctionException, X("FunctionResolveURI::createSequence"), X("Invalid argument to resolve-uri [err:FORG0002]")); } } catch(XMLException &e) { //if can't build, assume its cause there was a relative URI given XQThrow(FunctionException, X("FunctionResolveURI::createSequence"), X("Relative URI base argument to resolve-uri [err:FORG0009]")); } //should not get here assert(0); }
[ "yayanyang@gmail.com" ]
yayanyang@gmail.com
0fced2200642e486b3cbfb2450ee6f4092c2cd61
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/multimedia/directx/dxg/swrast/sample/main.cpp
431387c31ec799aa0de33363b50559e0e8998390
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,324
cpp
#include "pch.h" #include "SampleSW.h" #pragma hdrstop // Needed as MSVC doesn't throw bad_alloc upon failed new(), unless // we specifically make it do. _PNH g_OldNewHandler= NULL; int _cdecl NewHandlerThatThrows( size_t size ) { throw std::bad_alloc(); // Tell new to stop allocation attempts. return 0; } CMyDriver* CMyDriver::sm_pGlobalDriver= NULL; DX8SDDIFW::COSDetector DX8SDDIFW::g_OSDetector; BOOL WINAPI DllMain( HINSTANCE hInstance, DWORD dwReason, LPVOID lpvReserved) { switch (dwReason) { case DLL_PROCESS_ATTACH: g_OldNewHandler = _set_new_handler( NewHandlerThatThrows); CMyDriver::sm_pGlobalDriver= new CMyDriver; break; // DLL_PROCESS_DETACH will be called if ATTACH returned FALSE. case DLL_PROCESS_DETACH: delete CMyDriver::sm_pGlobalDriver; CMyDriver::sm_pGlobalDriver= NULL; _set_new_handler( g_OldNewHandler); break; case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: break; } return TRUE; } HRESULT APIENTRY D3D8GetSWInfo( D3DCAPS8* pCaps, PD3D8_SWCALLBACKS pCallbacks, DWORD* pNumTextures, DDSURFACEDESC** ppTexList) { return CMyDriver::sm_pGlobalDriver->GetSWInfo( *pCaps, *pCallbacks, *pNumTextures, *ppTexList ); }
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
72f5e41ad1014e6753e72ebab2c401b2ddbd0835
6f666c9a5410c3e56d3309d0b4c535449217557d
/2020/Qualification_Round/travel.cpp
a2cdcbc0ed9d76984ab641e88aaf3957a12a3976
[]
no_license
Gbemiro8/Facebook_hackercup
33d4e221ce4b31c38b0e590a9666f6a2c6c0c947
8f200abb54ae20e88297f64a5b63df0c293d7c74
refs/heads/master
2022-11-20T18:48:33.936264
2020-07-27T18:01:13
2020-07-27T18:01:13
282,975,291
0
0
null
null
null
null
UTF-8
C++
false
false
1,174
cpp
#include<bits/stdc++.h> using namespace std; typedef long long ll; const char N = 'N', Y = 'Y'; vector<int> adj[55]; vector<int> vis(55); void dfs(int cur, int x, vector<string> &ans){ if(vis[cur]) return; vis[cur] = 1; for(auto e : adj[cur]){ ans[x][cur] = Y; ans[x][e] = Y; ans[cur][e] = Y; dfs(e,x, ans); } } int main() { int _T; cin >> _T; auto solve = [&](){ memset(adj, 0, sizeof(adj)); int n; cin >> n; for(int i = 0; i < n; i++) vis[i] = 0; string in, out; cin >> in >> out; vector<string> ans(n); for(int i = 0; i < n; i++){ string tmp = ""; for(int j = 0; j < n; j++){ tmp += N; } ans[i] = tmp; } for(int i = 0; i < n; i++){ if(i-1 >= 0){ if(out[i] == Y && in[i-1] == Y) adj[i].push_back(i-1); } if(i+1 < n){ if(out[i] == Y && in[i+1] == Y) adj[i].push_back(i+1); } adj[i].push_back(i); } for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++) vis[j] = 0; dfs(i,i, ans); } for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ cout << ans[i][j]; } cout << "\n"; } }; for(int xx = 1; xx <= _T; xx++){ cout << "Case #" << xx << ": " << "\n"; solve(); } }
[ "peculiar.isrl17@gmail.com" ]
peculiar.isrl17@gmail.com
368a74356abca5e2cf69411217871eeff1fc892b
59f00d4f6fccb6b1103c5aa54f43a6e4d4f8bfc5
/src/common-plugin-view/SampleTreeViewPlugin/SampleTreeViewFunctions.cpp
549ac81ba69748258384230812a899fbfd5efe29
[]
no_license
tomas-pluskal/masspp
9c9492443bb796533bcb27fe52a0a60e4ba62160
808bf095215e549e7eb5317c02c04dfb2ceaba15
refs/heads/master
2021-01-01T05:33:44.483127
2015-06-07T12:54:17
2015-06-07T12:54:17
33,917,190
0
1
null
null
null
null
UTF-8
C++
false
false
6,807
cpp
/** * @file SampleTreeViewFunctions.cpp * @brief SampleTreeView plug-in function implements * * @author S.Tanaka * @date 2008.01.10 * * Copyright(C) 2006-2014 Eisai Co., Ltd. All rights reserved. */ #include "stdafx.h" #include "SampleTreeViewFunctions.h" #include "SampleTreeManager.h" #include <wx/treectrl.h> #include <wx/notebook.h> using namespace kome::view; #include <crtdbg.h> #ifdef _DEBUG #define new new( _NORMAL_BLOCK, __FILE__, __LINE__ ) #define malloc( s ) _malloc_dbg( s, _NORMAL_BLOCK, __FILE__, __LINE__ ) #endif // _DEBUG #define RAW_TREE_STATUS_NAME "RAW_TREE" // initialize tree view kome::objects::Variant initView( kome::objects::Parameters* ) { // return value; kome::objects::Variant ret; // get managers SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); kome::objects::StatusManager& statusMgr = kome::objects::StatusManager::getInstance(); // set status statusMgr.setValue( RAW_TREE_STATUS_NAME, "on" ); // @date 2011.05.10 <Add> M.Izumi treeMgr.createNoteBook(); wxNotebook* book = treeMgr.getNoteBook(); // add dock wxWindow* wnd = kome::window::WindowTool::getMainWindow(); kome::window::MainFrame* mainFrame = dynamic_cast< kome::window::MainFrame* >( wnd ); if( mainFrame != NULL ) { mainFrame->appendPane( book, "Sample Tree", kome::window::WindowTool::DOCK_ALIGN_LEFT ); } return ret; } // finalize view kome::objects::Variant finalizeView( kome::objects::Parameters* ) { // return value; kome::objects::Variant ret; // get tree manager object SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // set status kome::objects::StatusManager& statusMgr = kome::objects::StatusManager::getInstance(); statusMgr.setValue( RAW_TREE_STATUS_NAME, "on" ); // release treeMgr.releaseView(); return ret; } // toggle visibility kome::objects::Variant toggleTreeView( kome::objects::Parameters* ) { // return value; kome::objects::Variant ret; ret.type = kome::objects::Variant::BOOL; ret.prim.boolVal = true; // get tree manager object SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // init view if( !treeMgr.hasView() ) { initView( NULL ); return ret; } // @date 2011.04.25 <Mod> M.Izumi wxNotebook* book = treeMgr.getNoteBook(); if( book ==NULL ){ return ret; } // toggle visibility wxWindow* wnd = kome::window::WindowTool::getMainWindow(); kome::window::MainFrame* mainFrame = dynamic_cast< kome::window::MainFrame* >( wnd ); if( mainFrame != NULL ) { // @date 2011.04.25 <Mod> M.Izumi mainFrame->toggleVisibleBar( book ); } return ret; } // check visibility kome::objects::Variant isVisibleTreeView( kome::objects::Parameters* params ) { // return value; kome::objects::Variant ret; ret.type = kome::objects::Variant::BOOL; // check the visibility SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // @date 2011.04.25 <Mod> M.Izumi wxNotebook* book = treeMgr.getNoteBook(); wxWindow* wnd = kome::window::WindowTool::getMainWindow(); kome::window::MainFrame* mainFrame = dynamic_cast< kome::window::MainFrame* >( wnd ); // @date 2011.04.25 <Mod> M.Izumi if( mainFrame == NULL || book == NULL ) { ret.prim.boolVal = false; } else { // @date 2011.04.25 <Mod> M.Izumi ret.prim.boolVal = mainFrame->isVisibleBar( book ); } return ret; } // add sample node kome::objects::Variant addSampleNode( kome::objects::Parameters* params ) { // return value kome::objects::Variant ret; // get tree manager object SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // get sample kome::objects::Sample* sample = kome::plugin::PluginCallTool::getSample( params ); if( sample == NULL ) { return ret; } // open sample tree view kome::window::MainFrame* mainFrame = dynamic_cast< kome::window::MainFrame* >( kome::window::WindowTool::getMainWindow() ); wxNotebook* book = treeMgr.getNoteBook(); if( mainFrame != NULL && book != NULL ) { // @date 2011.04.25 <Mod> M.Izumi treeMgr.createTreeCtrl( sample ); mainFrame->showBar( book ); } return ret; } // update group kome::objects::Variant updateGroup( kome::objects::Parameters* params ) { // return value kome::objects::Variant ret; // manager SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // group kome::objects::DataGroupNode* group = kome::plugin::PluginCallTool::getGroup( params ); if( group == NULL ) { return ret; } // update nodes treeMgr.updateNodes( group ); return ret; } // update sample kome::objects::Variant updateSample( kome::objects::Parameters* params ) { // return value kome::objects::Variant ret; // manager SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // sample kome::objects::Sample* sample = kome::plugin::PluginCallTool::getSample( params ); if( sample == NULL ) { return ret; } // update sample node treeMgr.updateSampleNode( sample ); return ret; } // select sample page kome::objects::Variant selectSamplePage( kome::objects::Parameters* params ) { // return value kome::objects::Variant ret; // manager SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); // active object kome::objects::Variant var = kome::plugin::PluginCallTool::getActiveObject( params ); kome::objects::MsDataVariant obj( var ); kome::objects::Sample* sample = obj.getSample(); if( sample != NULL ) { treeMgr.selectSample( sample ); } return ret; } // navigates to the spectrum on open kome::objects::Variant updateSpectrum( kome::objects::Parameters* params ) { // return value kome::objects::Variant ret; ret.type = kome::objects::Variant::BOOL; ret.prim.boolVal = true; // spectrum kome::objects::Spectrum* spec = kome::plugin::PluginCallTool::getSpectrum( params ); if( spec == NULL ) { return ret; } // manager SampleTreeManager& treeMgr = SampleTreeManager::getInstance(); treeMgr.selectSpectrum( spec ); return ret; } // on activate kome::objects::Variant onActivateObject( kome::objects::Parameters* params ) { // return value kome::objects::Variant ret; // manager SampleTreeManager& mgr = SampleTreeManager::getInstance(); // active object kome::objects::Variant var = kome::plugin::PluginCallTool::getActiveObject( params ); kome::objects::MsDataVariant obj( var ); kome::objects::Spectrum* spec = obj.getSpectrum(); kome::objects::Chromatogram* chrom = obj.getChromatogram(); // select if( chrom != NULL ) { mgr.selectChromatogram( chrom ); } else { mgr.selectSpectrum( spec ); } return ret; }
[ "Satoshi Tanaka@localhost" ]
Satoshi Tanaka@localhost
0bb87c90d6d3ae6fb668c9023a4ca3c1a3d9b360
dd80a584130ef1a0333429ba76c1cee0eb40df73
/hardware/qcom/display/msm8x26/libgralloc/alloc_controller.h
5fe81fac779bd0c564d56bb71daf232758d6172c
[ "MIT", "Apache-2.0" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
2,402
h
/* * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * Neither the name of The Linux Foundation 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 "AS IS" AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT * 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. */ #ifndef GRALLOC_ALLOCCONTROLLER_H #define GRALLOC_ALLOCCONTROLLER_H namespace gralloc { struct alloc_data; class IMemAlloc; class IonAlloc; class IAllocController { public: /* Allocate using a suitable method * Returns the type of buffer allocated */ virtual int allocate(alloc_data& data, int usage) = 0; virtual IMemAlloc* getAllocator(int flags) = 0; virtual ~IAllocController() {}; static IAllocController* getInstance(void); private: static IAllocController* sController; }; class IonController : public IAllocController { public: virtual int allocate(alloc_data& data, int usage); virtual IMemAlloc* getAllocator(int flags); IonController(); private: IonAlloc* mIonAlloc; }; } //end namespace gralloc #endif // GRALLOC_ALLOCCONTROLLER_H
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
d66fb4ccea97ef0359c900b8e4f2071c4c6b006a
6f1e33d8b737a0d9b1f5c152122f8470990ac39e
/independent_vad/src/vad_filterbank.hpp
60cd577776595dad758857f58267d87e3d9c1b3e
[ "BSD-3-Clause" ]
permissive
AudioBucket/audio-processing-module
9fa74a6d648fbb1c3bd0c434f79e8e962390c922
65ef2e64471d5e28b1985e37dc329d68fa5fe2a4
refs/heads/master
2020-04-12T19:44:29.731110
2018-12-04T09:47:36
2018-12-04T09:47:36
162,716,912
1
0
null
2018-12-21T13:23:24
2018-12-21T13:23:24
null
UTF-8
C++
false
false
1,815
hpp
/* * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ /* * This file includes feature calculating functionality used in vad_core.c. */ #ifndef WEBRTC_COMMON_AUDIO_VAD_VAD_FILTERBANK_H_ #define WEBRTC_COMMON_AUDIO_VAD_VAD_FILTERBANK_H_ #include "vad_core.hpp" // Takes |data_length| samples of |data_in| and calculates the logarithm of the // energy of each of the |kNumChannels| = 6 frequency bands used by the VAD: // 80 Hz - 250 Hz // 250 Hz - 500 Hz // 500 Hz - 1000 Hz // 1000 Hz - 2000 Hz // 2000 Hz - 3000 Hz // 3000 Hz - 4000 Hz // // The values are given in Q4 and written to |features|. Further, an approximate // overall energy is returned. The return value is used in // WebRtcVad_GmmProbability() as a signal indicator, hence it is arbitrary above // the threshold |kMinEnergy|. // // - self [i/o] : State information of the VAD. // - data_in [i] : Input audio data, for feature extraction. // - data_length [i] : Audio data size, in number of samples. // - features [o] : 10 * log10(energy in each frequency band), Q4. // - returns : Total energy of the signal (NOTE! This value is not // exact. It is only used in a comparison.) int16_t WebRtcVad_CalculateFeatures(VadInstT* self, const int16_t* data_in, size_t data_length, int16_t* features); #endif // WEBRTC_COMMON_AUDIO_VAD_VAD_FILTERBANK_H_
[ "41682958+zhang-ray@users.noreply.github.com" ]
41682958+zhang-ray@users.noreply.github.com
f7f36a3c4cd51b38fbbb1ebc8d36116697953190
43be190d372ee2b5160a0226ce4dd59f2e975c02
/LibUser/GenericUtilities/Directory.cpp
939e997cc9add7605cdb8abd8134640148671ffc
[]
no_license
barakman/VirtualFlyThrough
c189b495332bdb4c063e308a235885f9d7255268
0b2e1ba2c2c600ddc1dcec0618a50d8b66b56728
refs/heads/master
2016-09-07T18:57:25.802045
2014-05-15T18:08:49
2014-05-15T18:08:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,322
cpp
#include "Directory.h" #include <direct.h> #include <string.h> #include <io.h> Directory::Directory(const char* aName) { _chdir(aName); Open(); } Directory::~Directory() { Close(); } void Directory::ChangeTo(int iId) { if (FileIsSubDir(iId)==true) { _chdir(GetFileName(iId)); Close(); Open(); } } int Directory::GetNumOfFiles() const { return m_iFileCount; } bool Directory::FileIsSubDir(int iId) const { if (0<=iId && iId<=m_iFileCount-1) return m_aFileFlags[iId]; return false; } char* Directory::GetFileName(int iId) const { if (0<=iId && iId<=m_iFileCount-1) return m_aFileNames[iId]; return NULL; } void Directory::Open() { int iHandle; struct _finddata_t sFile; iHandle=_findfirst("*.*",&sFile); m_iFileCount=0; while (_findnext(iHandle,&sFile)==0) m_iFileCount++; _findclose(iHandle); m_aFileFlags=new bool[m_iFileCount]; m_aFileNames=new char*[m_iFileCount]; iHandle=_findfirst("*.*",&sFile); for (int i=0; i<m_iFileCount; i++) { _findnext(iHandle,&sFile); m_aFileFlags[i]=(sFile.attrib&_A_SUBDIR)!=0; m_aFileNames[i]=new char[strlen(sFile.name)+1]; strcpy(m_aFileNames[i],sFile.name); } _findclose(iHandle); } void Directory::Close() { delete[] m_aFileFlags; for (int i=0; i<m_iFileCount; i++) delete[] m_aFileNames[i]; delete[] m_aFileNames; }
[ "barakman@yahoo.com" ]
barakman@yahoo.com
7ab5c56c4d95ac40173bb362ebddef26c3875f08
9965bfe8c79f9c4468d03b8d9944e4a369747816
/include/HTTPClientInterface.h
928fa3bb81650df8d2a2ac140af7b29ae8a12ff6
[ "MIT" ]
permissive
axiu-fly/httpclient
ad10e2dec48171d3504a5989d5e598153b3a3136
bbe8c008297ce3f90313a8e3c8d631353d7dfe22
refs/heads/master
2023-02-06T23:17:26.815155
2020-12-29T22:57:41
2020-12-29T22:57:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
543
h
#ifndef _HTTPCLIENTINTERFACE_H_ #define _HTTPCLIENTINTERFACE_H_ #include <cstddef> #include <string> class HTTPClientInterface { public: virtual ~HTTPClientInterface() = default; virtual void handleResultCode(int code) { } virtual bool handleRedirectUrl(const std::string & url) { return true; } virtual void handleHeader(const std::string & key, const std::string & value) { } virtual bool handleChunk(size_t len, const char * chunk) = 0; virtual void handleDisconnect() { } virtual bool onIdle() { return true; } }; #endif
[ "mikael.rekola@gmail.com" ]
mikael.rekola@gmail.com
d3ca28462400f60418276aab7f4fbcc1a615d70f
d2aefbd1a3a661b03fe5a6ad7d72db997b1c695d
/qtproject/opencvtest/morphology_1.cpp
e9b30074c9b4ba7f43ad9b9506ac91aeeb64c9d0
[]
no_license
doudouwyh/opencv_qt
9be3bb72fe345dd661256733f79690ccbd02e831
e08ad43e034281cd00437eef17650bd0d73e7419
refs/heads/master
2021-01-15T17:19:21.128922
2017-08-09T00:15:28
2017-08-09T00:15:28
99,747,294
0
0
null
null
null
null
UTF-8
C++
false
false
2,710
cpp
/** * @file Morphology_1.cpp * @brief Erosion and Dilation sample code * @author OpenCV team */ #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" #include <stdlib.h> #include <stdio.h> using namespace cv; /// Global variables Mat src1, erosion_dst, dilation_dst; int erosion_elem = 0; int erosion_size = 0; int dilation_elem = 0; int dilation_size = 0; int const max_elem = 2; int const max_kernel_size = 21; /** Function Headers */ void Erosion( int, void* ); void Dilation( int, void* ); /** * @function main */ int morphology_1_test( ) { /// Load an image src1 = imread("./images/Morphology_1_Tutorial_Original_Image.jpg" ); if( !src1.data ) { return -1; } /// Create windows namedWindow( "Erosion Demo", WINDOW_AUTOSIZE ); namedWindow( "Dilation Demo", WINDOW_AUTOSIZE ); moveWindow( "Dilation Demo", src1.cols, 0 ); /// Create Erosion Trackbar createTrackbar( "Element:\n 0: Rect \n 1: Cross \n 2: Ellipse", "Erosion Demo", &erosion_elem, max_elem, Erosion ); createTrackbar( "Kernel size:\n 2n +1", "Erosion Demo", &erosion_size, max_kernel_size, Erosion ); /// Create Dilation Trackbar createTrackbar( "Element:\n 0: Rect \n 1: Cross \n 2: Ellipse", "Dilation Demo", &dilation_elem, max_elem, Dilation ); createTrackbar( "Kernel size:\n 2n +1", "Dilation Demo", &dilation_size, max_kernel_size, Dilation ); /// Default start Erosion( 0, 0 ); Dilation( 0, 0 ); waitKey(0); return 0; } /** * @function Erosion */ void Erosion( int, void* ) { int erosion_type = 0; if( erosion_elem == 0 ){ erosion_type = MORPH_RECT; } else if( erosion_elem == 1 ){ erosion_type = MORPH_CROSS; } else if( erosion_elem == 2) { erosion_type = MORPH_ELLIPSE; } Mat element = getStructuringElement( erosion_type, Size( 2*erosion_size + 1, 2*erosion_size+1 ), Point( erosion_size, erosion_size ) ); /// Apply the erosion operation erode( src1, erosion_dst, element ); imshow( "Erosion Demo", erosion_dst ); } /** * @function Dilation */ void Dilation( int, void* ) { int dilation_type = 0; if( dilation_elem == 0 ){ dilation_type = MORPH_RECT; } else if( dilation_elem == 1 ){ dilation_type = MORPH_CROSS; } else if( dilation_elem == 2) { dilation_type = MORPH_ELLIPSE; } Mat element = getStructuringElement( dilation_type, Size( 2*dilation_size + 1, 2*dilation_size+1 ), Point( dilation_size, dilation_size ) ); /// Apply the dilation operation dilate( src1, dilation_dst, element ); imshow( "Dilation Demo", dilation_dst ); }
[ "wenhuan193@pingan.com.cn" ]
wenhuan193@pingan.com.cn
0d65953eb9f97093508495e447c990efcbbf17ca
d3e4fe9772316a1ebdc7bc9363e2c19a64aa6ae7
/avi2apv/QTFFmpegWrapper/QVideoDecoder.cpp
2a77275cccbf5526304be9d164e111650ee41464
[ "BSD-2-Clause" ]
permissive
hitomi2500/avi2pseudo
ed227876024f831ffb31956b31b9757399b7cd8a
4e4e5ef728003517bf80dad98e02716fc512af18
refs/heads/master
2020-04-02T07:41:36.433290
2018-11-09T20:10:31
2018-11-09T20:10:31
154,209,755
2
0
null
null
null
null
UTF-8
C++
false
false
17,509
cpp
/* QTFFmpegWrapper - QT FFmpeg Wrapper Class Copyright (C) 2009,2010: Daniel Roggen, droggen@gmail.com All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDERS ``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 FREEBSD PROJECT 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 "QVideoDecoder.h" #include <limits.h> #include <stdint.h> #include "ffmpeg.h" /****************************************************************************** ******************************************************************************* * QVideoDecoder QVideoDecoder QVideoDecoder QVideoDecoder QVideoDecoder ******************************************************************************* ******************************************************************************/ /****************************************************************************** * PUBLIC PUBLIC PUBLIC PUBLIC PUBLIC PUBLIC PUBLIC PUBLIC PUBLIC ******************************************************************************/ /** \brief Constructor - opens a video on later openFile call **/ QVideoDecoder::QVideoDecoder() { InitVars(); initCodec(); } /** \brief Constructor - opens directly a video **/ QVideoDecoder::QVideoDecoder(QString file) { InitVars(); initCodec(); ok = openFile(file.toStdString().c_str()); } QVideoDecoder::~QVideoDecoder() { close(); } void QVideoDecoder::InitVars() { ok=false; pFormatCtx=0; pCodecCtx=0; pCodec=0; pFrame=0; pFrameRGB=0; buffer=0; img_convert_ctx=0; } void QVideoDecoder::close() { if(!ok) return; // Free the RGB image if(buffer) delete [] buffer; // Free the YUV frame if(pFrame) av_free(pFrame); // Free the RGB frame if(pFrameRGB) av_free(pFrameRGB); // Close the codec if(pCodecCtx) avcodec_close(pCodecCtx); // Close the video file if(pFormatCtx) ffmpeg::avformat_close_input(&pFormatCtx); InitVars(); } bool QVideoDecoder::initCodec() { //ffmpeg::avcodec_init(); ffmpeg::avcodec_register_all(); ffmpeg::av_register_all(); printf("License: %s\n",ffmpeg::avformat_license()); printf("AVCodec version %d\n",ffmpeg::avformat_version()); printf("AVFormat configuration: %s\n",ffmpeg::avformat_configuration()); return true; } bool QVideoDecoder::openFile(QString filename) { // Close last video.. close(); LastLastFrameTime=INT_MIN; // Last last must be small to handle the seek well LastFrameTime=0; LastLastFrameNumber=INT_MIN; LastFrameNumber=0; DesiredFrameTime=DesiredFrameNumber=0; LastFrameOk=false; // Open video file if(avformat_open_input(&pFormatCtx, filename.toStdString().c_str(), nullptr, 0)!=0) return false; // Couldn't open file // Retrieve stream information if(avformat_find_stream_info(pFormatCtx,nullptr)<0) return false; // Couldn't find stream information // Dump information about file onto standard error av_dump_format(pFormatCtx, 0, filename.toStdString().c_str(), false); // Find the first video stream videoStream=-1; for(unsigned i=0; i<pFormatCtx->nb_streams; i++) if(pFormatCtx->streams[i]->codec->codec_type==ffmpeg::AVMEDIA_TYPE_VIDEO) { videoStream=i; break; } if(videoStream==-1) return false; // Didn't find a video stream // Get a pointer to the codec context for the video stream pCodecCtx=pFormatCtx->streams[videoStream]->codec; // Find the decoder for the video stream pCodec=avcodec_find_decoder(pCodecCtx->codec_id); if(pCodec==NULL) return false; // Codec not found // Open codec if(avcodec_open2(pCodecCtx, pCodec,nullptr)<0) return false; // Could not open codec // Hack to correct wrong frame rates that seem to be generated by some // codecs if(pCodecCtx->time_base.num>1000 && pCodecCtx->time_base.den==1) pCodecCtx->time_base.den=1000; // Allocate video frame pFrame=ffmpeg::av_frame_alloc(); // Allocate an AVFrame structure pFrameRGB=ffmpeg::av_frame_alloc(); if(pFrameRGB==NULL) return false; // Determine required buffer size and allocate buffer numBytes=ffmpeg::avpicture_get_size(ffmpeg::AV_PIX_FMT_RGB24, pCodecCtx->width,pCodecCtx->height); buffer=new uint8_t[numBytes]; // Assign appropriate parts of buffer to image planes in pFrameRGB avpicture_fill((ffmpeg::AVPicture *)pFrameRGB, buffer, ffmpeg::AV_PIX_FMT_RGB24, pCodecCtx->width, pCodecCtx->height); ok=true; return true; } bool QVideoDecoder::isOk() { return ok; } /** Decodes the video stream until the first frame with number larger or equal than 'after' is found. Returns: - true if a frame is found, false otherwise. - the image as a QImage if img is non-null - time frame time, if frametime is non-null - the frame number, if framenumber is non-null All times are in milliseconds. **/ bool QVideoDecoder::decodeSeekFrame(int after) { if(!ok) return false; //printf("decodeSeekFrame. after: %d. LLT: %d. LT: %d. LLF: %d. LF: %d. LastFrameOk: %d.\n",after,LastLastFrameTime,LastFrameTime,LastLastFrameNumber,LastFrameNumber,(int)LastFrameOk); // If the last decoded frame satisfies the time condition we return it //if( after!=-1 && ( LastDataInvalid==false && after>=LastLastFrameTime && after <= LastFrameTime)) if( after!=-1 && ( LastFrameOk==true && after>=LastLastFrameNumber && after <= LastFrameNumber)) { // This is the frame we want to return // Compute desired frame time ffmpeg::AVRational millisecondbase = {1, 1000}; DesiredFrameTime = ffmpeg::av_rescale_q(after,pFormatCtx->streams[videoStream]->time_base,millisecondbase); //printf("Returning already available frame %d @ %d. DesiredFrameTime: %d\n",LastFrameNumber,LastFrameTime,DesiredFrameTime); return true; } // The last decoded frame wasn't ok; either we need any new frame (after=-1), or a specific new frame with time>after bool done=false; while(!done) { // Read a frame if(av_read_frame(pFormatCtx, &packet)<0) return false; // Frame read failed (e.g. end of stream) //printf("Packet of stream %d, size %d\n",packet.stream_index,packet.size); if(packet.stream_index==videoStream) { // Is this a packet from the video stream -> decode video frame int frameFinished; avcodec_decode_video2(pCodecCtx,pFrame,&frameFinished,&packet); //printf("used %d out of %d bytes\n",len,packet.size); //printf("Frame type: "); //if(pFrame->pict_type == FF_B_TYPE) // printf("B\n"); //else if (pFrame->pict_type == FF_I_TYPE) // printf("I\n"); //else // printf("P\n"); /*printf("codecctx time base: num: %d den: %d\n",pCodecCtx->time_base.num,pCodecCtx->time_base.den); printf("formatctx time base: num: %d den: %d\n",pFormatCtx->streams[videoStream]->time_base.num,pFormatCtx->streams[videoStream]->time_base.den); printf("pts: %ld\n",pts); printf("dts: %ld\n",dts);*/ // Did we get a video frame? if(frameFinished) { ffmpeg::AVRational millisecondbase = {1, 1000}; int f = packet.dts; int t = ffmpeg::av_rescale_q(packet.dts,pFormatCtx->streams[videoStream]->time_base,millisecondbase); if(LastFrameOk==false) { LastFrameOk=true; LastLastFrameTime=LastFrameTime=t; LastLastFrameNumber=LastFrameNumber=f; } else { // If we decoded 2 frames in a row, the last times are okay LastLastFrameTime = LastFrameTime; LastLastFrameNumber = LastFrameNumber; LastFrameTime=t; LastFrameNumber=f; } //printf("Frame %d @ %d. LastLastT: %d. LastLastF: %d. LastFrameOk: %d\n",LastFrameNumber,LastFrameTime,LastLastFrameTime,LastLastFrameNumber,(int)LastFrameOk); // Is this frame the desired frame? if(after==-1 || LastFrameNumber>=after) { // It's the desired frame // Convert the image format (init the context the first time) int w = pCodecCtx->width; int h = pCodecCtx->height; img_convert_ctx = ffmpeg::sws_getCachedContext(img_convert_ctx,w, h, pCodecCtx->pix_fmt, w, h, ffmpeg::AV_PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL, NULL); if(img_convert_ctx == NULL) { printf("Cannot initialize the conversion context!\n"); return false; } ffmpeg::sws_scale(img_convert_ctx, pFrame->data, pFrame->linesize, 0, pCodecCtx->height, pFrameRGB->data, pFrameRGB->linesize); // Convert the frame to QImage LastFrame=QImage(w,h,QImage::Format_RGB888); for(int y=0;y<h;y++) memcpy(LastFrame.scanLine(y),pFrameRGB->data[0]+y*pFrameRGB->linesize[0],w*3); // Set the time DesiredFrameTime = ffmpeg::av_rescale_q(after,pFormatCtx->streams[videoStream]->time_base,millisecondbase); LastFrameOk=true; done = true; } // frame of interest } // frameFinished } // stream_index==videoStream av_free_packet(&packet); // Free the packet that was allocated by av_read_frame } //printf("Returning new frame %d @ %d. LastLastT: %d. LastLastF: %d. LastFrameOk: %d\n",LastFrameNumber,LastFrameTime,LastLastFrameTime,LastLastFrameNumber,(int)LastFrameOk); //printf("\n"); return done; // done indicates whether or not we found a frame } /** \brief Decodes the next frame in the video stream **/ bool QVideoDecoder::seekNextFrame() { bool ret = decodeSeekFrame(DesiredFrameNumber+1); if(ret) DesiredFrameNumber++; // Only updates the DesiredFrameNumber if we were successful in getting that frame else LastFrameOk=false; // We didn't find the next frame (e.g. seek out of range) - mark we don't know where we are. return ret; } /** \brief Seek to millisecond **/ bool QVideoDecoder::seekMs(int tsms) { if(!ok) return false; //printf("**** SEEK TO ms %d. LLT: %d. LT: %d. LLF: %d. LF: %d. LastFrameOk: %d\n",tsms,LastLastFrameTime,LastFrameTime,LastLastFrameNumber,LastFrameNumber,(int)LastFrameOk); // Convert time into frame number DesiredFrameNumber = ffmpeg::av_rescale(tsms,pFormatCtx->streams[videoStream]->time_base.den,pFormatCtx->streams[videoStream]->time_base.num); DesiredFrameNumber/=1000; return seekFrame(DesiredFrameNumber); } /** \brief Seek to frame **/ bool QVideoDecoder::seekFrame(int64_t frame) { if(!ok) return false; //printf("**** seekFrame to %d. LLT: %d. LT: %d. LLF: %d. LF: %d. LastFrameOk: %d\n",(int)frame,LastLastFrameTime,LastFrameTime,LastLastFrameNumber,LastFrameNumber,(int)LastFrameOk); // Seek if: // - we don't know where we are (Ok=false) // - we know where we are but: // - the desired frame is after the last decoded frame (this could be optimized: if the distance is small, calling decodeSeekFrame may be faster than seeking from the last key frame) // - the desired frame is smaller or equal than the previous to the last decoded frame. Equal because if frame==LastLastFrameNumber we don't want the LastFrame, but the one before->we need to seek there if( (LastFrameOk==false) || ((LastFrameOk==true) && (frame<=LastLastFrameNumber || frame>LastFrameNumber) ) ) { //printf("\t avformat_seek_file\n"); if(ffmpeg::avformat_seek_file(pFormatCtx,videoStream,0,frame,frame,AVSEEK_FLAG_FRAME)<0) return false; avcodec_flush_buffers(pCodecCtx); DesiredFrameNumber = frame; LastFrameOk=false; } //printf("\t decodeSeekFrame\n"); return decodeSeekFrame(frame); return true; } bool QVideoDecoder::getFrame(QImage&img,int *effectiveframenumber,int *effectiveframetime,int *desiredframenumber,int *desiredframetime) { img = LastFrame; if(effectiveframenumber) *effectiveframenumber = LastFrameNumber; if(effectiveframetime) *effectiveframetime = LastFrameTime; if(desiredframenumber) *desiredframenumber = DesiredFrameNumber; if(desiredframetime) *desiredframetime = DesiredFrameTime; //printf("getFrame. Returning valid? %s. Desired %d @ %d. Effective %d @ %d\n",LastFrameOk?"yes":"no",DesiredFrameNumber,DesiredFrameTime,LastFrameNumber,LastFrameTime); return LastFrameOk; } /** \brief Debug function: saves a frame as PPM **/ void QVideoDecoder::saveFramePPM(ffmpeg::AVFrame *pFrame, int width, int height, int iFrame) { FILE *pFile; char szFilename[32]; int y; // Open file sprintf(szFilename, "frame%d.ppm", iFrame); pFile=fopen(szFilename, "wb"); if(pFile==NULL) return; // Write header fprintf(pFile, "P6\n%d %d\n255\n", width, height); // Write pixel data for(y=0; y<height; y++) fwrite(pFrame->data[0]+y*pFrame->linesize[0], 1, width*3, pFile); // Close file fclose(pFile); } void QVideoDecoder::dumpFormat(ffmpeg::AVFormatContext *ic, int index, const char *url, int is_output) { //int i; uint8_t *printed = (uint8_t*)ffmpeg::av_mallocz(ic->nb_streams); if (ic->nb_streams && !printed) return; printf("AV_TIME_BASE: %d\n",AV_TIME_BASE); printf("%s #%d, %s,\n %s '%s':\n", is_output ? "Output" : "Input", index, is_output ? ic->oformat->name : ic->iformat->name, is_output ? "to" : "from", url); if (!is_output) { printf(" Duration: "); //if (ic->duration != AV_NOPTS_VALUE) { int hours, mins, secs, us; secs = ic->duration / AV_TIME_BASE; us = ic->duration % AV_TIME_BASE; mins = secs / 60; secs %= 60; hours = mins / 60; mins %= 60; printf("%02d:%02d:%02d.%02d\n", hours, mins, secs, (100 * us) / AV_TIME_BASE); } //else { //printf("N/A"); //} //if (ic->start_time != AV_NOPTS_VALUE) { int secs, us; printf(", start: "); secs = ic->start_time / AV_TIME_BASE; us = ic->start_time % AV_TIME_BASE; printf("%d.%06d\n", secs, (int)ffmpeg::av_rescale(us, 1000000, AV_TIME_BASE)); } printf(", bitrate: "); if (ic->bit_rate) { printf("%d kb/s\n", ic->bit_rate / 1000); } else { printf("N/A\n"); } printf("\n"); } if(ic->nb_programs) { unsigned int j, total=0; for(j=0; j<ic->nb_programs; j++) { ffmpeg::AVDictionaryEntry *name = av_dict_get(ic->programs[j]->metadata, "name", NULL, 0); printf(" Program %d %s\n", ic->programs[j]->id, name ? name->value : ""); /*for(k=0; k<ic->programs[j]->nb_stream_indexes; k++) { dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output); printed[ic->programs[j]->stream_index[k]] = 1; }*/ total += ic->programs[j]->nb_stream_indexes; } if (total < ic->nb_streams) printf( " No Program\n"); } /*for(i=0;i<ic->nb_streams;i++) if (!printed[i]) ffmpeg::dump_stream_format(ic, i, index, is_output);*/ if (ic->metadata) { ffmpeg::AVDictionaryEntry *tag=NULL; printf(" Metadata\n"); while((tag=av_dict_get(ic->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))) { printf(" %-16s: %s\n", tag->key, tag->value); } } ffmpeg::av_free(printed); } int QVideoDecoder::getVideoLengthMs() { if(!isOk()) return -1; int secs = pFormatCtx->duration / AV_TIME_BASE; int us = pFormatCtx->duration % AV_TIME_BASE; int l = secs*1000 + us/1000; dumpFormat(pFormatCtx,videoStream,"test video",0); return l; }
[ "sokolov@acsys.ru" ]
sokolov@acsys.ru
e055480ff897cbc5322d5efab6c227110dac0c34
916109bf168239202442498e568b2bfc9a8bc8a9
/src/asiUI/utils/asiUI_Common.cpp
b01468ccc0f122e055bbcd7c340fb96d68fb199a
[ "BSD-3-Clause", "MIT" ]
permissive
yeeeeeeti/3D_feature_extract
35da69cd64cd6ed6c92fd4541da5de7bb96dc2b6
6297daa8afaac09aef9b44858e74fb2a95e1e7c5
refs/heads/master
2020-09-05T02:27:30.997017
2019-11-07T01:24:26
2019-11-07T01:24:26
219,956,109
1
0
null
null
null
null
UTF-8
C++
false
false
6,777
cpp
//----------------------------------------------------------------------------- // Created on: 03 February 2016 //----------------------------------------------------------------------------- // Copyright (c) 2017, Sergey Slyadnev // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of the copyright holder(s) nor the // names of all 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 AUTHORS 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. //----------------------------------------------------------------------------- // A-Situs includes #include <asiUI_Common.h> // Qt includes #pragma warning(push, 0) #include <QFileDialog> #pragma warning(pop) //! Allows to select filename for graphics format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectGraphicsFile(const OpenSaveAction action) { QStringList filter; filter << "Graphics (*.svg)"; // return selectFile(filter, "Select graphics file", "Save graphics file", action); } //! Allows to select filename for B-Rep format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectBRepFile(const OpenSaveAction action) { QStringList filter; filter << "BREP (*.brep; *.bin; *.binbrep)"; // return selectFile(filter, "Select BREP file", "Save BREP file", action); } //! Allows to select filename for IGES format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectIGESFile(const OpenSaveAction action) { QStringList filter; filter << "IGES (*.igs)"; // return selectFile(filter, "Select IGES file", "Save IGES file", action); } //! Allows to select filename for STEP format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectSTEPFile(const OpenSaveAction action) { QStringList filter; filter << "STEP (*.stp; *.step)"; // return selectFile(filter, "Select STEP file", "Save STEP file", action); } //! Allows to select filename for ply format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectPLYFile(const OpenSaveAction action) { QStringList filter; filter << "PLY (*.ply)"; // return selectFile(filter, "Select PLY file", "Save PLY file", action); } //! Allows to select filename for xbf format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectXBFFile(const OpenSaveAction action) { QStringList filter; filter << "XBF (*.xbf)"; // return selectFile(filter, "Select XBF file", "Save XBF file", action); } //! Allows to select filename for xyz format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectXYZFile(const OpenSaveAction action) { QStringList filter; filter << "XYZ point cloud (*.xyz)"; // return selectFile(filter, "Select XYZ file", "Save XYZ file", action); } //! Allows to select filename for OBJ format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectOBJFile(const OpenSaveAction action) { QStringList filter; filter << "OBJ mesh (*.obj)"; // return selectFile(filter, "Select OBJ file", "Save OBJ file", action); } //! Allows to select filename for STL format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectSTLFile(const OpenSaveAction action) { QStringList filter; filter << "STL mesh (*.stl)"; // return selectFile(filter, "Select STL file", "Save STL file", action); } //! Allows to select filename for DOT format. //! \param action [in] open or save. //! \return selected filename. QString asiUI_Common::selectDOTFile(const OpenSaveAction action) { QStringList filter; filter << "DOT graph (*.dot)"; // return selectFile(filter, "Select DOT file", "Save DOT file", action); } //! Selects filename for opening or saving. //! \param filter [in] filter for extensions. //! \param openTitle [in] title for open dialog. //! \param saveTitle [in] title for save dialog. //! \param action [in] open/save action. //! \return filename selected by user. QString asiUI_Common::selectFile(const QStringList& filter, const QString& openTitle, const QString& saveTitle, const OpenSaveAction action) { QString dir; QString filename; // Open or save if ( action == OpenSaveAction_Open ) filename = QFileDialog::getOpenFileName(NULL, openTitle, dir, filter.join(";;"), NULL); else filename = QFileDialog::getSaveFileName(NULL, saveTitle, dir, filter.join(";;"), NULL); return filename; } //----------------------------------------------------------------------------- //! Easy accessor for the part shape. //! \param model [in] Data Model instance. //! \param part_n [out] Part Node. //! \param part [out] part shape. //! \return true if the part shape is accessible and not null. bool asiUI_Common::PartShape(const Handle(asiEngine_Model)& model, Handle(asiData_PartNode)& part_n, TopoDS_Shape& part) { // Access Geometry Node part_n = model->GetPartNode(); // if ( part_n.IsNull() || !part_n->IsWellFormed() ) return false; // Working shape part = part_n->GetShape(); // if ( part.IsNull() ) return false; return true; }
[ "469345750@qq.com" ]
469345750@qq.com
e463b27ea9427b175b862feb9dbf26d604f69062
ba4e388d7dc535bcd9be0422937e3c3115e241c9
/source/Irrlicht/COGLES2NormalMapRenderer.cpp
30b9fbe2c745d18aa1f3f50941d0f475aba6c485
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "Zlib" ]
permissive
whztt07/irrAndroid
85e1616d0ea59ae3a6661e47cbe8cd45c3f4dc62
41d3f2724663a605f7a60df5c957c2e91100f0e7
refs/heads/master
2021-01-16T21:36:38.482188
2012-06-04T14:33:22
2012-06-04T14:33:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,822
cpp
// Copyright (C) 2009-2010 Amundis // Heavily based on the OpenGL driver implemented by Nikolaus Gebhardt // and OpenGL ES driver implemented by Christian Stehno // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in Irrlicht.h #include "IrrCompileConfig.h" #ifdef _IRR_COMPILE_WITH_OGLES2_ #include "COGLES2NormalMapRenderer.h" #include "IGPUProgrammingServices.h" #include "IShaderConstantSetCallBack.h" #include "IVideoDriver.h" #include "os.h" #include "COGLES2Driver.h" #include "COGLES2Utils.h" #define MAX_LIGHTS 2 namespace irr { namespace video { const char* const COGLES2NormalMapRenderer::sBuiltInShaderUniformNames[] = { "uMvpMatrix", "uLightPos[0]", "uLightColor[0]", "texture0", "texture1", 0 }; // Irrlicht Engine OGLES2 render path normal map vertex shader const c8 VertexShaderFile[] = IRR_OGLES2_SHADER_PATH "COGLES2NormalMap.vsh"; const c8 FragmentShaderFile[] = IRR_OGLES2_SHADER_PATH "COGLES2NormalMap.fsh"; //! Constructor COGLES2NormalMapRenderer::COGLES2NormalMapRenderer( video::COGLES2Driver* driver, io::IFileSystem* fs, s32& outMaterialTypeNr, IMaterialRenderer* baseMaterial ) : COGLES2SLMaterialRenderer( driver, fs, 0, baseMaterial, sBuiltInShaderUniformNames, UNIFORM_COUNT ), CompiledShaders( true ) { #ifdef _DEBUG setDebugName( "COGLES2NormalMapRenderer" ); #endif // set this as callback. We could have done this in // the initialization list, but some compilers don't like it. CallBack = this; // check if already compiled normal map shaders are there. video::IMaterialRenderer* renderer = driver->getMaterialRenderer( EMT_NORMAL_MAP_SOLID ); if ( renderer ) { // use the already compiled shaders video::COGLES2NormalMapRenderer* nmr = reinterpret_cast<video::COGLES2NormalMapRenderer*>( renderer ); CompiledShaders = false; Program = nmr->Program; UniformInfo = nmr->UniformInfo; AttributeInfo = nmr->AttributeInfo; outMaterialTypeNr = driver->addMaterialRenderer( this ); } else { // compile shaders on our own if (initFromFiles(outMaterialTypeNr, VertexShaderFile, FragmentShaderFile)) { useProgram(); int dummy = 0; setUniform( TEXTURE_UNIT0, &dummy ); dummy = 1; setUniform( TEXTURE_UNIT1, &dummy ); } } // fallback if compilation has failed if ( -1 == outMaterialTypeNr ) outMaterialTypeNr = driver->addMaterialRenderer( this ); } COGLES2NormalMapRenderer::~COGLES2NormalMapRenderer() { if ( CallBack == this ) CallBack = 0; if ( !CompiledShaders ) { // prevent this from deleting shaders we did not create Program = 0; } } //! Returns the render capability of the material. s32 COGLES2NormalMapRenderer::getRenderCapability() const { if ( Driver->queryFeature( video::EVDF_ARB_FRAGMENT_PROGRAM_1 ) && Driver->queryFeature( video::EVDF_ARB_VERTEX_PROGRAM_1 ) ) return 0; return 1; } //! Called by the engine when the vertex and/or pixel shader constants //! for an material renderer should be set. void COGLES2NormalMapRenderer::OnSetConstants( IMaterialRendererServices* services, s32 userData ) { video::IVideoDriver* driver = services->getVideoDriver(); // set transposed worldViewProj matrix core::matrix4 worldViewProj( driver->getTransform( video::ETS_PROJECTION ) ); worldViewProj *= driver->getTransform( video::ETS_VIEW ); worldViewProj *= driver->getTransform( video::ETS_WORLD ); setUniform( MVP_MATRIX, worldViewProj.pointer() ); // here we fetch the fixed function lights from the driver // and set them as constants u32 cnt = driver->getDynamicLightCount(); // Load the inverse world matrix. core::matrix4 invWorldMat; driver->getTransform( video::ETS_WORLD ).getInverse( invWorldMat ); float lightPosition[4*MAX_LIGHTS]; float lightColor[4*MAX_LIGHTS]; for ( u32 i = 0; i < MAX_LIGHTS; ++i ) { video::SLight light; if ( i < cnt ) light = driver->getDynamicLight( i ); else { light.DiffuseColor.set( 0, 0, 0 ); // make light dark light.Radius = 1.0f; } light.DiffuseColor.a = 1.0f / ( light.Radius * light.Radius ); // set attenuation // Transform the light by the inverse world matrix to get it into object space. invWorldMat.transformVect( light.Position ); memcpy( lightPosition + i*4, &light.Position, sizeof( float )*4 ); memcpy( lightColor + i*4, &light.DiffuseColor, sizeof( float )*4 ); } setUniform( LIGHT_POSITION, lightPosition, MAX_LIGHTS ); setUniform( LIGHT_COLOR, lightColor, MAX_LIGHTS ); } } // end namespace video } // end namespace irr #endif
[ "reizencroft@gmail.com" ]
reizencroft@gmail.com
37f2ce64caa931101caff6984e31982a3e7e003e
399b5e377fdd741fe6e7b845b70491b9ce2cccfd
/LLVM_src/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/copy.pass.cpp
6c9c476cd19fe4254d145c401ea1b82d20367343
[ "NCSA", "LLVM-exception", "MIT", "Apache-2.0" ]
permissive
zslwyuan/LLVM-9-for-Light-HLS
6ebdd03769c6b55e5eec923cb89e4a8efc7dc9ab
ec6973122a0e65d963356e0fb2bff7488150087c
refs/heads/master
2021-06-30T20:12:46.289053
2020-12-07T07:52:19
2020-12-07T07:52:19
203,967,206
1
3
null
2019-10-29T14:45:36
2019-08-23T09:25:42
C++
UTF-8
C++
false
false
808
cpp
//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // <memory> // template <class X> class auto_ptr; // auto_ptr(auto_ptr& a) throw(); // REQUIRES: c++98 || c++03 || c++11 || c++14 #include <memory> #include <cassert> #include "../A.h" void test() { { A* p = new A(1); std::auto_ptr<A> ap1(p); std::auto_ptr<A> ap2(ap1); assert(ap1.get() == 0); assert(ap2.get() == p); assert(A::count == 1); } assert(A::count == 0); } int main() { test(); }
[ "tliang@connect.ust.hk" ]
tliang@connect.ust.hk
2e4347b99c2684fdd8e1483f847f89069b1c3aae
a5eb60037be0e4a561f2f6f46a2c7cc481266c2b
/linkedList.cpp
5eb433dde0af961dac3731737fbe692a7a606c69
[]
no_license
WFCSC112AlqahtaniFall2019/project6-steicb18
62b889aa8b3ca0151b9aff217cf1a90ea893b1d7
e9500bb9547059fe0e7aa06fbed232d41624a03b
refs/heads/master
2020-08-27T13:06:49.896723
2019-11-10T20:17:24
2019-11-10T20:17:24
217,381,465
0
0
null
null
null
null
UTF-8
C++
false
false
3,400
cpp
// // Created by stein on 10/30/2019. // #include <iostream> #include "Node.h" #include "linkedList.h" using namespace std; linkedList::linkedList(){ //default constructor Node(0, nullptr); } linkedList::~linkedList() { //destructor cout<<"Destructor called"<<endl; Node* current = head; while( current != 0 ) { Node* next = current->next; delete current; current = next; } head = 0; } void linkedList::printList() { //Prints linked list Node * current = head; if(current == nullptr){ //Outputs if there is no linked list cout<<"No list linked list"<<endl; } else{ cout<<"Sorted Linked List:"<<endl; while ( current != nullptr ){ //Outputs each value in the list cout << current->value <<endl; current = current -> next ; } } } linkedList::linkedList(const linkedList& left){ //copy constructor used for deep copy this->head = new Node(left.head->value, nullptr); Node* newCurrent = head->next; Node* current = left.head->next; Node* New = left.head; while(current->next!=nullptr) { newCurrent = new Node(current->value, nullptr); current = current->next; newCurrent = newCurrent->next; } } linkedList& linkedList::operator= ( linkedList& rhs) { //copy assignment operator used for deep copy cout << "assignment operator called" << endl; linkedList temp(rhs); // copy constructor temp swap(head, rhs.head); //built-in swap return *this; } void linkedList::Append(int nNode){ //creates/inserts value into linked list if(head == nullptr){ //creates the first node in a list if it doesnt exist head = new Node(nNode); } else{ //creates and connects new node to list Node* current = head; while(current->next != nullptr){ current = current->next; } current->next = new Node(nNode); } } void linkedList::insertionSort() { //sorts linked list Node *temp = head; //Create a temporary value Node *lead = head->next; //Create lead value Node *trail = head; //Create trail value to follow lead value if (head == nullptr ) { //outputs notifies user if there is no list cout<< "No List"<< endl; return; } if(head->next == nullptr){ //Notifies user if there is only one value in list cout<<"Only one value in list"<<endl; return; } while (lead != nullptr) { //loops until the end of the list is reached if (lead->value > trail->value) { //moves to next values if they are in the right order lead = lead->next; trail= trail->next; } else { //Removes node in wrong position from linked list if (lead->value < head->value) { trail->next = lead->next; lead->next = head; head = lead; } else { temp = head; while (temp->next->value < lead->value && temp != nullptr ) { // moves through list and reinserts node into the correct position temp = temp->next; } trail->next = lead->next; lead->next = temp->next; temp->next = lead; } } lead = trail->next; } }
[ "steicb18@wfu.edu" ]
steicb18@wfu.edu
d184bdc45714865c8b722b1b7f4e694c4fb243fa
38ff049bf1dce1098a80aa55ef83ca9883e52b1a
/CGUE/PhysicsPass.cpp
54db3a35386148d00d7baedf588d90b3575155dd
[]
no_license
metzzo/cgue17-regimerunner
67e75700e66c920da30a1084c9fa07ca8774736b
e24d2c8a89127e553e98bffdf6f222a191d90124
refs/heads/master
2021-03-22T00:27:25.839318
2017-06-27T17:32:59
2017-06-27T17:32:59
83,583,572
5
0
null
null
null
null
UTF-8
C++
false
false
272
cpp
#include "PhysicsPass.h" namespace Engine { PhysicsPass::PhysicsPass(GameEngine* gameEngine) : Pass(gameEngine) { } PhysicsPass::~PhysicsPass() { } void PhysicsPass::BeforePass() { } void PhysicsPass::AfterPass() { } void PhysicsPass::Init() { } }
[ "e1425684@student.tuwien.ac.at" ]
e1425684@student.tuwien.ac.at
df1905c64bbe39b778797ea2edcec1f43b8e51f2
f62e6bf812b46ed7b7011bfa4487f4bb940a86c9
/TichLonNhat_NhoNhat.cpp
7fbd856e42cb5a5112ff9204a2a091c552b7d742
[]
no_license
diepdao1708/CPP
a18ae6904783b03ab4af0776aeff1268f190b473
b94421300cf0a9db280887a817e8d09509899fbe
refs/heads/main
2023-07-14T18:50:26.199755
2021-08-23T09:02:27
2021-08-23T09:02:27
366,944,692
12
0
null
null
null
null
UTF-8
C++
false
false
453
cpp
#include<iostream> #include<string> #include<vector> #include<cmath> #include<algorithm> #include<stack> #include<queue> #define ll long long using namespace std; int n, m; long long a[1000001], b[1000001]; void Run() { cin>>n>>m; for(int i=0; i<n; i++) cin>>a[i]; for(int j=0; j<m; j++) cin>>b[j]; sort(a, a+n); sort(b, b+m); cout<<a[n-1]*b[0]<<endl; } int main() { int T=1; cin>>T; while(T--) Run(); return 0; }
[ "diepdao1708@gmail.com" ]
diepdao1708@gmail.com
e7e42b628e6a9571bbe02d9dafbb81667fa0267e
8a8ec6f9c2d41b084b4655a493f6c7c5fa82ccf8
/servo_basic/servo_basic.ino
538d0bd8804bf5cbda1d569cf4874d7d6ddae397
[]
no_license
OldProjectsArchive/arduinoexp
cc85763b0dd9ac73eb43664eddc74c5d5f1db245
a6584c7f96caa6e00887ec4de02aefe0aba10169
refs/heads/master
2021-05-31T03:50:55.502532
2016-04-23T05:18:04
2016-04-23T05:18:04
56,825,218
0
0
null
null
null
null
UTF-8
C++
false
false
628
ino
// 效果 // 舵机轮流摆动 // // 接线说明 // 舵机 红线正极 黑线负极 黄线数据 // 正极 => 5V // 负极 => GND // 数据 => 3 int servoPin = 3; void setup() { pinMode(servoPin, OUTPUT); } void setServoPosition(int pin, int pos) { for (int i = 0; i < 5; ++i) { digitalWrite(pin, HIGH); delayMicroseconds(pos); digitalWrite(pin, LOW); delay(20); } } void loop() { for (int pos = 1000; pos <= 2500; pos += 100) { setServoPosition(servoPin, pos); delay(100); } for (int pos = 2500; pos >= 1000; pos -= 100) { setServoPosition(servoPin, pos); delay(100); } }
[ "303248153@qq.com" ]
303248153@qq.com
588fdfcae148c630ee064a3eb39a7f2415a8de25
0cf229c047d41de974d81e494ea392e4991abf9b
/source/opendmc/wnds/combo.cc
955f057db5a0cce906308ca892242e296d0b6446
[]
no_license
AxeenCore/opendmc
2f31c2468926a29eec397c521015b846d1aaa21e
394ca444a5894a2ac6e8f318460a94673acacaf5
refs/heads/master
2021-07-24T14:29:13.734691
2020-01-04T03:03:06
2020-01-04T03:03:06
220,901,272
0
0
null
null
null
null
UTF-8
C++
false
false
30,012
cc
/**************************************************************************//** * @file combo.cc * @brief DmCombo 組合框類別成員函數定義 * @date 2000-10-10 * @date 2018-09-08 * @author Swang *****************************************************************************/ #include "opendmc/wnds/combo.hh" /** * @brief DmCombo 建構式 */ DmCombo::DmCombo() : DmWnds(EmCtrls::Combo) { } /** * @brief DmCombo 解構式 * @remark 解構時,進行釋放(銷毀)控制項 */ DmCombo::~DmCombo() { this->DestroyMine(); } /** * @brief [重載] 建立一個組合框 Combo Box * @param[in] szCaptionPtr 指向控制項名稱字串緩衝區位址,請直接填上 NULL。 * @param[in] x 起始位置 (左上角) X * @param[in] y 起始最至 (左上角) Y * @param[in] wd 寬度 * @param[in] ht 高度 * @param[in] hWndParent 父視窗操作代碼 * @param[in] nIDCItem 項目識別碼 * @param[in] hInstance 視窗應用程式實例操作代碼 * @return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值,值為視窗或控制項操作代碼。 \n 若函數操作失敗返回值為零。 */ BOOL DmCombo::Create(const TCHAR* szCaptionPtr, int x, int y, int wd, int ht, HWND hWndParent, int nIDCItem) { const DWORD dwStyle = CBS_DROPDOWN; const DWORD dwExStyle = 0; WNDSCTRLS smCtrl; UNREFERENCED_PARAMETER(szCaptionPtr); ::memset(&smCtrl, 0, sizeof(smCtrl)); smCtrl.hInstance = ::GetWinapp().GetInstanceHandle(); smCtrl.hParent = hWndParent; smCtrl.pszCaption = nullptr; // Combo Box 沒有標題文字 smCtrl.dwStyle = dwStyle; smCtrl.dwExStyle = dwExStyle; smCtrl.nPosx = x; smCtrl.nPosy = y; smCtrl.nWidth = wd; smCtrl.nHeight = ht; smCtrl.nIDCItem = nIDCItem; return this->CreateControls(&smCtrl); } /** * @brief 建立一個組合框樣本 (由繼承者發展) * @return <b>型別: BOOL</b> 若視窗建立成功返回值為非零值,若視窗建立失敗責返回值為零。 */ BOOL DmCombo::CreateSample() { return FALSE; } /** * @brief 新增文字項目,此方式會受 CBS_SORT 樣式的影響自動進行項目排序 * @param[in] szPtr 指向文字字串緩衝區位址的指標 * @return <b>型別: int</b> \n 若函數操作成功返回值為新增項目的索引值,若函數操作失敗則返回值為 CB_ERR */ int DmCombo::AddItem(LPCTSTR szPtr) const { assert(this->IsWindow()); // CB_ADDSTRING // wParam = 不使用,必須為零 // lParam = 指向文字字串緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(szPtr))); } /** * @brief 新增指定文字字串或與指定符合匹配的目錄和文件的名稱 * @param[in] uAttr 要增加到下拉式組合框的文件或目錄的屬性 * @param[in] wildPtr 指向以 NULL 結尾的文字字串緩衝區位址的指標,可以指定絕對路徑,相對路徑或文件名稱 * @return <b>型別: int</b> \n 若函數操作成功返回值為 CB_ERR 以外的任意數值。 \n 若函數操作失敗則返回值為零。 * @remark <b>uAttr 屬性列表</b> * - DDL_ARCHIVE \n 包括存檔文件。 * - DDL_DIRECTORY \n 包含子目錄,用方括號([])括起來。 * - DDL_DRIVES \n 所有映射的磁碟將增加到列表中。驅動器以[ - x - ] 的形式列出,其中x是磁碟編號。 * - DDL_EXCLUSIVE \n 僅包含具有指定屬性的文件。默認情況下,即使未指定 DDL_READWRITE,也會列出讀/寫文件。 * - DDL_HIDDEN \n 包含隱藏文件。 * - DDL_READONLY \n 包括只讀文件。 * - DDL_READWRITE \n 包括沒有其他屬性的讀/寫文件。這是默認值。 * - DDL_SYSTEM \n 包括系統文件。 */ int DmCombo::Dir(UINT uAttr, const TCHAR* wildPtr) const { assert(this->IsWindow()); // CB_DIR // wParam = 屬性 // lParam = 指向以 null 結尾的文字字串緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_DIR, static_cast<WPARAM>(uAttr), reinterpret_cast<LPARAM>(wildPtr))); } /** * @brief 在下拉式組合框(ComboBox)的列表框(ListBox),找尋第一個與指定字串相符的項目索引值 (從 0 起算) * @param[in] nStart 指定要開始搜尋的第一個項目索引值,從已指定的上一個項目開始搜尋,若此值為 1 那麼就是從頭開始搜尋 * @param[in] textPtr 指向一個以 null 結尾的文字字串緩衝區位址的指標,用來作為搜尋的參照文字。 * @return <b>型別: int</b> \n 若函數操作成功返回值為第一個搜到的項目索引值。\n 若函數操作失敗則返回 CB_ERR */ int DmCombo::FindString(int nStart, const TCHAR* textPtr) const { assert(this->IsWindow()); // CB_FINDSTRING // wParam = 指定要開始搜尋的第一個項目索引值 // lParam = 指向一個以 null 結尾的文字字串緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_FINDSTRING, static_cast<WPARAM>(nStart), reinterpret_cast<LPARAM>(textPtr))); } /** * @brief 在下拉式組合框(ComboBox) 尋找與 textPtr 指定的文字第一個相符、匹配的項目索引值 (從 0 起算) * @param[in] nStart 指定要開始搜尋的第一個項目索引值,從已指定的上一個項目開始搜尋,若此值為 1 那麼就是從頭開始搜尋 * @param[in] textPtr textPtr 指向一個以 null 結尾的文字字串緩衝區位址的指標,用來作為搜尋的參照文字。 * @return <b>型別: int</b> \n 返回值是匹配的項目從零開始的索引值。如果搜索不成功,則返回值為 CB_ERR。 */ int DmCombo::FindStringExact(int nStart, const TCHAR * textPtr) const { assert(this->IsWindow()); // CB_FINDSTRINGEXACT // wParam = 指定要開始搜尋的第一個項目索引值 // lParam = 指向一個以 null 結尾的文字字串緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_FINDSTRINGEXACT, static_cast<WPARAM>(nStart), reinterpret_cast<LPARAM>(textPtr))); } /** * @brief 取得指定下拉式組合框(ComboBox)的訊息。 * @param[out] cbiPtr 指向 COMBOBOXINFO 結構緩衝區位址的指標,用來接收下拉框的訊息 * @return <b>型別: BOOL</b> * \n 若函數操作成功返回值為非零值。 * \n 若函數操作失敗返回值為零。要取得錯誤訊息,請調用 GetLastError */ BOOL DmCombo::GetComboBoxInfo(COMBOBOXINFO* cbiPtr) const { assert(this->IsWindow()); // CB_GETCOMBOBOXINFO // wParam = 不使用,必須為零 // lParam = 指向 COMBOBOXINFO 結構緩衝區位址 return ::SendMessage(*this, CB_GETCOMBOBOXINFO, 0, reinterpret_cast<LPARAM>(cbiPtr)) != 0; } /** * @brief 刪除一個指定的項目 * @param[in] nItem 要刪除的項目索引值 (從 0 算起) * @return <b>型別: int</b> \n 若函數操作成功返回值為目前項目的數量,若函數操作失敗則返回值為 CB_ERR */ int DmCombo::DeleteItem(int nItem) const { assert(this->IsWindow()); // CB_DELETESTRING // wParam = 要刪除項目的索引值 // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_DELETESTRING, static_cast<WPARAM>(nItem), 0)); } /** * @brief 取得下拉式組合框(ComboBox)所有項目的數量 * @return <b>型別: int</b> \n 若函數操作成功返回值為項目數量,若函數操作失敗則返回值為 CB_ERR */ int DmCombo::GetCount() const { assert(this->IsWindow()); // CB_GETCOUNT // wParam 不使用,必須為零 // lParam 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETCOUNT, 0, 0)); } /** * @brief 取得下拉框(ComboBox)項目的文字內容 * @param[out] textPtr 指向文字字串緩衝區位址的指標,接收下拉式組合框提示文字。 * @param[in] cchMax 要取得字數最大值(單位: TCHAR) * @return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值 \n 若函數操作失敗返回值為零 */ BOOL DmCombo::GetCueBanner(TCHAR* textPtr, int cchMax) const { assert(this->IsWindow()); // CB_GETCUEBANNER // wParam = 要取得字數最大值(單位: TCHAR) // lParam = 指向文字字串緩衝區位址的指標 return ::SendMessage(*this, CB_GETCUEBANNER, static_cast<WPARAM>(cchMax), reinterpret_cast<LPARAM>(textPtr)) == 1; } /** * @brief 取得光標所在位置 * @return <b>型別: int</b> \n 若函數操作成功返回值為光標所在位置的索引值,若函數操作失敗則返回值為 CB_ERR */ int DmCombo::GetCurSel() const { assert(this->IsWindow()); // CB_GETCURSEL // wParam 不使用,必須為零 // lParam 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETCURSEL, 0, 0)); } /** * @brief 取得下拉式組合框的列表框座標 * @param[in] rcPtr 指向 RECT 結構緩衝區位址的指標,用來接收下拉式組合框的列表框的座標。 * @return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值。 \n 若函數操作失敗返回值為零。 */ BOOL DmCombo::GetDroppedControlRect(RECT* rcPtr) const { assert(this->IsWindow()); // CB_GETDROPPEDCONTROLRECT // wParam = 不使用,必須為零 // lParam = 指向 RECT 結構緩衝區位址 return ::SendMessage(*this, CB_GETDROPPEDCONTROLRECT, 0, reinterpret_cast<LPARAM>(rcPtr)) != 0; } /** * @brief 取得下拉式組合框的列表框(ListBox)顯示狀態 * @return <b>型別: BOOL</b> \n 若列表框為可視狀態,返回值為非零值。 \n 若列表框為不可視或隱藏狀態,返回值為零。 */ BOOL DmCombo::GetDroppedState() const { assert(this->IsWindow()); // CB_GETDROPPEDSTATE // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 return ::SendMessage(*this, CB_GETDROPPEDSTATE, 0, 0) != 0; } /** * @brief 取得下拉式組合框(ComboBox)的列表框(ListBox)最小可允許的寬度 * @return <b>型別: int</b> * \n 若函數操作成功返回值為下拉式組合框(ComboBox)的列表框(ListBox)的寬度 * \n 若函數操作失敗凡回值為 CB_ERR */ int DmCombo::GetDroppedWidth() const { assert(this->IsWindow()); // CB_GETDROPPEDWIDTH // wParam 不使用,必須為零 // lParam 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETDROPPEDWIDTH, 0, 0)); } /** * @brief 取得下拉式組合框(ComboBox)的編輯框(EditBox)操作代碼 * @return <b>型別: HWND</b> \n 若函數操作成功返回值為非零值,值為編輯框的操作代碼。 \n 若函數操作失敗返回值為零。 */ HWND DmCombo::GetEditboxCtrl() const { HWND hEdit = nullptr; COMBOBOXINFO cbi; ::memset(&cbi, 0, sizeof(COMBOBOXINFO)); cbi.cbSize = sizeof(COMBOBOXINFO); if (::GetComboBoxInfo(*this, &cbi)) { hEdit = cbi.hwndItem; } return hEdit; } /** * @brief 取得下拉式組合框(ComboBox)的編輯框(EditBox)中文字被選取的範圍 * @return <b>型別: DWORD</b> * \n 編輯框中文字被選取的範圍 * \n LOWORD = 選取範圍的起始文字,由左算起第幾個字元 (從零開始起算) * \n HIWORD = 選取範圍的結束文字,由左算起第幾個字元 (從零開始起算) */ DWORD DmCombo::GetEditSel() const { assert(this->IsWindow()); // CB_GETEDITSEL // wParam 不使用,必須為零 // lParam 不使用,必須為零 return static_cast<DWORD>(::SendMessage(*this, CB_GETEDITSEL, 0, 0)); } /** * @brief 取得下拉式組合框是否有使用擴展樣式 * @return <b>型別: BOOL</b> 若下拉式組合框有使用擴展樣式則返回值為非零值,否則返回值為零。 */ BOOL DmCombo::GetExtendedUI() const { assert(this->IsWindow()); // CB_GETEXTENDEDUI // wParam 不使用,必須為零 // lParam 不使用,必須為零 return static_cast<DWORD>(::SendMessage(*this, CB_GETEXTENDEDUI, 0, 0)); } /** * @brief 取得下拉式組合框的列表框水平捲軸寬度,單位像素(pixel) * @return <b>型別: UINT</b> \n 返回值為水平寬度,單位像素(pixel) */ UINT DmCombo::GetHorizontalExtent() const { assert(this->IsWindow()); // CB_GETHORIZONTALEXTENT // wParam 不使用,必須為零 // lParam 不使用,必須為零 return static_cast<UINT>(::SendMessage(*this, CB_GETHORIZONTALEXTENT, 0, 0)); } /** * @brief 取得指定項目的關連值 * @param[in] nItem 指定項目的索引值 * @return <b>型別: DWORD_PTR</b> * \n 若函數操作成功,返回值為 CB_ERR 以外的任意數值,值為與項關聯的值。 * \n 若含數操作失敗或發生錯誤,則返回值為 CB_ERR。 */ DWORD_PTR DmCombo::GetItemData(int nItem) const { assert(this->IsWindow()); // CB_GETITEMDATA // wParam = 指定項目索引值 // lParam = 不使用,必須為零 return static_cast<DWORD_PTR>(::SendMessage(*this, CB_GETITEMDATA, static_cast<WPARAM>(nItem), 0)); } /** * @brief 取得下拉式組合框(ComboBox)的列表(ListBox)項目的高度 * @param[in] nItem 指定下拉式組合框的高度,若下拉式組合框定義了 CBS_OWNERDRAWVARIABLE 樣式,那麼此值為項目索引值 * @return <b>型別: int</b> \n 若函數操作成功返回值為高度(單位為像素下拉式組合框指定的項目)。 \n 若函數操作失敗或發生錯誤,傳回值為 CB_ERR。 */ int DmCombo::GetItemHeight(int nItem) const { assert(this->IsWindow()); // CB_GETITEMHEIGHT // wParam = 指定下拉式組合框的高度 // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETITEMHEIGHT, static_cast<WPARAM>(nItem), 0)); } /** * @brief 取得指定項目的文字內容 * @param[in] nItem 指定項目的索引值 * @param[out] textPtr 指向保存文字字串緩衝區位址的指標 * @return <b>型別: int</b> * \n 若函數操作成功返回值為指定項目的文字內容長度,單位 TCHAR (不含 NULL 結尾)。 * \n 若函數操作失敗則返回值為 CB_ERR */ int DmCombo::GetItemText(int nItem, TCHAR* textPtr) const { assert(this->IsWindow()); // CB_GETLBTEXT // wParam = 指定項目的索引值 // lParam = 指向保存文字字串的緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_GETLBTEXT, static_cast<WPARAM>(nItem), reinterpret_cast<LPARAM>(textPtr))); } /** * @brief 取得指定項目文字字串長度 * @param[in] nItem 要取得字串的索引值 * @return <b>型別: int</b> * \n 若函數操作成功返回值為指定項目的字串長度(單位 TCHAR,不含 NULL 結尾)。 * \n 若函數操作失敗則返回值 CB_ERR */ int DmCombo::GetItemTextLength(int nItem) const { assert(this->IsWindow()); // CB_GETLBTEXTLEN // wParam = 指定項目的索引值 // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETLBTEXTLEN, static_cast<WPARAM>(nItem), 0)); } /** * @brief 取得下拉式組合框(ComboBox)的列表框(ListBox)操作代碼 * @return <b>型別: HWND</b> * \n 若函數操作成功返回值為非零值,值為下拉式組合框的列表框操作代碼。 * \n 若函數操作失敗返回值為零。 */ HWND DmCombo::GetListboxCtrl() const { HWND hList = nullptr; COMBOBOXINFO cbi; ::memset(&cbi, 0, sizeof(COMBOBOXINFO)); cbi.cbSize = sizeof(COMBOBOXINFO); if (::GetComboBoxInfo(*this, &cbi)) { hList = cbi.hwndList; } return hList; } /** * @brief 取得下拉式組合框(ComboBox)當前地區語言設置,可以使用區域設置來確定顯示文字的正確排序順序。 * @return <b>型別: LCID</b> \n 返回值為當前下拉式組合框(ComboBox)的地區語言設置。 * - HIWORD = 國家/地區代碼 * - LOWORD = 包含語言標識符 */ LCID DmCombo::GetLocale() const { assert(this->IsWindow()); // CB_GETLOCALE // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 return static_cast<LCID>(::SendMessage(*this, CB_GETLOCALE, 0, 0)); } /** * @brief 取得可見項目範圍最小值 * @return <b>型別: int</b> * \n 若函數操作成功返回值為 CB_ERR 以外的任意值,值為下拉式組合框的列表框最小可見的項目數量。 * \n 若函數操作失敗或發生錯誤,返回值為 CB_ERR。 */ int DmCombo::GetMinVisible() const { assert(this->IsWindow()); // CB_GETMINVISIBLE // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETMINVISIBLE, 0, 0)); } /** * @brief 取得下拉式組合框(ComboBox)第一個可見項目的索引值 * @return <b>型別: int</b> * \n 若函數操作成功返回值為 CB_ERR 已外的任意值,值為第一個可見的項目所引值。 * \n 若函數操作失敗返回值為零。 */ int DmCombo::GetTopIndex() const { assert(this->IsWindow()); // CB_GETTOPINDEX // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_GETTOPINDEX, 0, 0)); } /** * @brief 配置 ComboBox 記憶體 * @param[in] nNumber 指定要增加的項目數量 * @param[in] uBytes 指定記憶體數量 (單位: byte) * @return <b>型別: int</b> * \n 若運作成功返回值為已分配的記憶體總合。(即所有成功使用 CB_INITSTORAGE 增加的記憶體總數) * \n 若運作失敗返回值為 CB_ERRSPACE */ int DmCombo::InitStorage(int nNumber, UINT uBytes) const { // CB_INITSTORAGE // wParam = 指定要鄒積的項目數量 // lParam = 指定記憶體數量 return static_cast<int>(::SendMessage(*this, CB_INITSTORAGE, static_cast<WPARAM>(nNumber), static_cast<LPARAM>(uBytes))); } /** * @brief 新增項目、插入一個新的項目,新增的項目會依據指定位置,其指定的位置的項目含以後項目會依序往後遞增。此方式新增不會受 CBS_SORT 樣式影響,不會自動排序。 * @param[in] nItem 指定要插入的索引值,若指定值為 -1 則表示將在列表最底部新增項目 * @param[in] szPtr 指向字串緩衝區位址的指標 * @return <b>型別: int</b> \n 若函數操作成功返回值為新增索引值,若函數操作失敗則返回值為 CB_ERR */ int DmCombo::InsertItem(int nItem, LPCTSTR szPtr) const { assert(this->IsWindow()); // CB_INSERTSTRING // wParam = 指定要插入的索引值 // lParam = 指向字串緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_INSERTSTRING, static_cast<WPARAM>(nItem), reinterpret_cast<LPARAM>(szPtr))); } /** * @brief 設定 ComboBox 的 EditBox 文本輸入字數限制 (in TCHAR) * @param[in] ccLimit 限制輸入的自串長度 (單位 TCHAR), 最大長度限制為 0x7FFFFFFE 個 TCHAR 字元。 * @return 此函數沒有返回值,CBS_AUTOHSCROLL 訊息處理始終返回 TRUE * @remark 如果 ComboBox 沒有具備 CBS_AUTOHSCROLL 樣式,則將文字字串字元數限制設置大於 EditBox 控制項的大小則無效。 */ void DmCombo::SetLimitText(int ccLimit) const { assert(this->IsWindow()); // CB_LIMITTEXT // wParam = 限制輸入的自串長度 (單位 TCHAR) // lParam = 不使用,必須為零 ::SendMessage(*this, CB_LIMITTEXT, static_cast<WPARAM>(ccLimit), 0); } /** * @brief 重置 ComboBox,清除 ComboBox 列表上的所有項目 * @return 此函數沒有返回值 * @see DmCombo::RemoveAllItem */ void DmCombo::ResetContent() const { assert(this->IsWindow()); // CB_RESETCONTENT // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 ::SendMessage(*this, CB_RESETCONTENT, 0, 0); } /** * @brief 移除 ComboBox 列表上的所有項目 * @return 此函數沒有返回值 */ void DmCombo::RemoveAllItem() const { assert(this->IsWindow()); // CB_RESETCONTENT // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 ::SendMessage(*this, CB_RESETCONTENT, 0, 0); } /** * @brief 搜尋下拉式組合框(ComboBox)的列表框(ListBox)清單的字串,並找到字串,如果在列表框中找到符合的字串,將其文字複製下拉式組合框的編輯框。 * @param[in] nStartAfter 指定要進行搜索的起始索引值 (從 0 算起), 搜尋不含指定的起始值值。 * @param[in] strPtr 指向文字字緩衝區位址的指標,存放用來進行搜尋的比對參照字串。 * @return <b>型別: int</b> * \n 若函數操作成功返回值為 CB_ERR 已外的任意值,值為找到字串的索引值。 * \n 若函數操作失敗返回值為 CB_ERR 且不會變更當前的選擇。 */ int DmCombo::SelectString(int nStartAfter, const TCHAR* strPtr) const { assert(this->IsWindow()); // CB_SELECTSTRING // wParam = 指定要進行搜索的起始索引值 // lParam = 指向文字字緩衝區位址 return static_cast<int>(::SendMessage(*this, CB_SELECTSTRING, static_cast<WPARAM>(nStartAfter), reinterpret_cast<LPARAM>(strPtr))); } /** * @brief 設定下拉式控制框(ComboBox)所顯示的提式文字。 * @param[in] textPtr 指向文字字串緩衝區位址的指標,要設定的文字內容存放區 * @return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值 \n 若雸術操作失敗返回值為零 */ BOOL DmCombo::SetCueBanner(const TCHAR* textPtr) const { assert(this->IsWindow()); // CB_SETCUEBANNER // wParam = 不使用,必須為零 // lParam = 指向文字字串緩衝區位址 return ::SendMessage(*this, CB_SETCUEBANNER, 0, reinterpret_cast<LPARAM>(textPtr)) == 1; } /** * @brief 設定目前清單上光標位置 (選擇項目) * @param[in] nItem 欲設定 cursel 位置的索引值 * @return <b>型別: int</b> \n 若函數操作成功返回值為當前光標的位置,若函數操作失敗則返回值為 CB_ERR */ int DmCombo::SetCurSel(int nItem) const { assert(this->IsWindow()); // CB_SETCURSEL // wParam = 指定列表光標(Cursel)未置的索引值 // lParam = 不使用、必須為零 return static_cast<int>(::SendMessage(*this, CB_SETCURSEL, static_cast<WPARAM>(nItem), 0)); } /** * @brief 設定下拉式組合框(ComboBox)的列表框(ListBox)最小可允許的寬度 * @param[in] nWidth 指定寬度,單位: 像素(pixel) * @return <b>型別: int</b> * \n 若函數操作成功返回值為下拉式組合框(ComboBox)的列表框(ListBox)的新寬度 * \n 若函數操作失敗凡回值為 CB_ERR */ int DmCombo::SetDroppedWidth(int nWidth) const { // CB_SETDROPPEDWIDTH // wParam = 指定寬度,單位: 像素(pixel) // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_SETDROPPEDWIDTH, static_cast<WPARAM>(nWidth), 0)); } /** * @brief 取得下拉式組合框(ComboBox)的編輯框(EditBox) 字元 * @param[in] nStartChar 指定開始位置 (從 0 算起的字元位置) * @param[in] nEndChar 指定結束位置 (從 0 算起的自原位置) * return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值。 \n 若函數操作失敗返回值為零。 */ BOOL DmCombo::SetEditSel(int nStartChar, int nEndChar) const { assert(this->IsWindow()); // CB_SETEDITSEL // wParam = 不使用、必須為零 // lParam = 指定範圍 return ::SendMessage(*this, CB_SETEDITSEL, 0, static_cast<LPARAM>(MAKELONG(nStartChar, nEndChar))) != 0; } /** * @brief 設定下拉式組合框使用擴展樣式 * @param[in] bExtended 指定使用擴展樣式 * - TRUE \n 使用,使用擴展樣式 * - FALSE \n 不使用,使用標準樣式 * @return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值。 \n 若函數操作失敗則返回值為零 */ BOOL DmCombo::SetExtendedUI(BOOL bExtended) { assert(this->IsWindow()); // CB_SETEXTENDEDUI - 若成功返回 CB_OKAY,若失敗返回 CB_ERR // wParam = 設定值 // lParam = 不使用、必須為零 return static_cast<int>(::SendMessage(*this, CB_SETEXTENDEDUI, static_cast<WPARAM>(bExtended), 0)); } /** * @brief 設定下拉式組合框(ComboBox)的列表框(ListBox)水平捲軸的寬度。 * @param[in] nExtent 水平捲軸的寬度,單位像素(pixel) * @return 此函數沒有返回值。 */ void DmCombo::SetHorizontalExtent(UINT nExtent) { assert(this->IsWindow()); // CB_SETHORIZONTALEXTENT // wParam = 水平捲軸的寬度 // lParam = 不使用、必須為零 ::SendMessage(*this, CB_SETHORIZONTALEXTENT, static_cast<WPARAM>(nExtent), 0); } /** * @brief 設定一個 32-bit 的值到指定的項目中 * @param[in] nItem 指定要進行關連的項目索引值 * @param[in] dwItemData 要進行關連的指定值 * return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值。 \n 若函數操作失敗返回值為零。 */ BOOL DmCombo::SetItemData(int nItem, DWORD_PTR dwItemData) const { assert(this->IsWindow()); // CB_SETITEMDATA - 若發生錯誤返回值為 LB_ERR // wParam = 項目索引值 // lParam = 關連值 return ::SendMessage(*this, CB_SETITEMDATA, static_cast<WPARAM>(nItem), static_cast<LPARAM>(dwItemData)) != LB_ERR; } /** * @brief 設定下拉式組合框(ComboBox)的列表(ListBox)項目的高度 * @param[in] nItem 指定下拉式組合框的高度,若下拉式組合框定義了 CBS_OWNERDRAWVARIABLE 樣式,那麼此值為項目索引值。 * @param[in] cyItemHeight 指定由 nItem 標示的下拉式組合框高度,以像素(pixel)為單位。 * @return <b>型別: int</b> \n 若函數操作成功返回值為項目所引值或高度 \n 若函數操作失敗或發生錯誤返回值為 CB_ERR */ int DmCombo::SetItemHeight(int nItem, int cyItemHeight) const { assert(this->IsWindow()); // CB_SETITEMHEIGHT // wParam = 指定下拉式組合框的高度 // lParam = 指定由 nItem 標示的下拉式組合框高度 return static_cast<int>(::SendMessage(*this, CB_SETITEMHEIGHT, static_cast<WPARAM>(nItem), static_cast<LPARAM>(cyItemHeight))); } /** * @brief 設定下拉式組合框(ComboBox)的區域設定。 * @param[in] dwLocale 區域設定 * - HIWORD = 國家/地區代碼 * - LOWORD = 包含語言標識符 * @return <b>型別: LCID</b> \n 返回值為設定前的區域設定值 */ LCID DmCombo::SetLocale(LCID dwLocale) const { assert(this->IsWindow()); // CB_SETLOCALE // wParam = 區域設定 // lParam = 不使用、必須為零 return static_cast<LCID>(::SendMessage(*this, CB_SETLOCALE, static_cast<WPARAM>(dwLocale), 0)); } /** * @brief 設定下拉式組合框(ComboBox)的區域設定。 * @param[in] nCountry 國家/地區代碼 * @param[in] nLanguage 語言標識符 * @return <b>型別: LCID</b> \n 返回值為設定前的區域設定值 * @remark <b>訊息參數 LPARAM 資料表示</b> * - HIWORD = 國家/地區代碼 * - LOWORD = 包含語言標識符 */ LCID DmCombo::SetLocale(int nCountry, int nLanguage) const { assert(this->IsWindow()); // CB_SETLOCALE // wParam = 區域設定 // lParam = 不使用、必須為零 return static_cast<LCID>(::SendMessage(*this, CB_SETLOCALE, static_cast<WPARAM>(MAKELCID(nLanguage, nCountry)), 0)); } /** * @brief 設定可見範圍內的項目數量,下拉式組合框的列表框的列表框項目數量。 * @param[in] iMinVisible 項目數量 * @return <b>型別: BOOL</b> \n 若函數操作成功返回值為非零值。 \n 若含數操作不當則返回值為零。 */ BOOL DmCombo::SetMinVisibleItems(int iMinVisible) { assert(this->IsWindow()); // CB_SETMINVISIBLE // wParam = 項目數量 // lParam = 不使用,必須為零 return ::SendMessage(*this, CB_SETMINVISIBLE, static_cast<WPARAM>(iMinVisible), 0) != 0; } /** * @brief 設定指定項目 * @param[in] nItem 指定項目索引值 * @return <b>型別: int</b> \n 若函數操作成功返回值為零 \n 若函數操作失敗返回 CB_ERR */ int DmCombo::SetTopIndex(int nItem) const { assert(this->IsWindow()); // CB_SETTOPINDEX // wParam = 指定項目索引值 // lParam = 不使用,必須為零 return static_cast<int>(::SendMessage(*this, CB_SETTOPINDEX, static_cast<WPARAM>(nItem), 0)); } /** * @brief 顯示或隱藏下拉框 * @param[in] bEnable 若值為 TRUE 則表示顯示下拉框,若值為 FALSE 表表示收起下拉框。 * @return 此函數沒有返回值,CB_SHOWDROPDOWN 訊息操作後始終返回 TRUE */ void DmCombo::ShowDropdown(BOOL bEnable) const { assert(this->IsWindow()); // CB_SHOWDROPDOWN // wParam = 指定顯示或隱藏 (TRUE / FALSE) // lParam = 不使用、必須為零 ::SendMessage(*this, CB_SHOWDROPDOWN, static_cast<WPARAM>(bEnable), 0); } /** * @brief 清除、刪除下拉式組合框(ComboBox)當前選擇的的編輯框(EditBox)內容 * @return 此函數沒有返回值 */ void DmCombo::Clear() const { assert(this->IsWindow()); // WM_CLEAR // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 ::SendMessage(*this, WM_CLEAR, 0, 0); } /** * @brief 複製下拉式組合框(ComboBox)當前選擇的編輯框(EditBox)內容,以 CF_TEXT 格式將當前選擇編輯框(EditBox)內容複製到剪貼板。 * @return 此函數沒有返回值 */ void DmCombo::Cpoy() const { assert(this->IsWindow()); // WM_COPY // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 ::SendMessage(*this, WM_COPY, 0, 0); } /** * @brief 剪下下拉式組合框(ComboBox)的當前選擇編輯框(EditBox)內容,並以 CF_TEXT 格式將當前選擇編輯框(EditBox)內容複製到剪貼板。 * @return 此函數沒有返回值 */ void DmCombo::Cut() const { assert(this->IsWindow()); // WM_CUT // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 ::SendMessage(*this, WM_CUT, 0, 0); } /** * @brief 將剪貼板的內容貼到下拉式組合框(ComboBox)當前被選取的編輯框(EditBox)裡,剪貼板要有 CF_TEXT 格式所保存的內容,才會進行貼上。 * return 此函數沒有返回值 */ void DmCombo::Paste() const { assert(this->IsWindow()); // WM_PASTE // wParam = 不使用,必須為零 // lParam = 不使用,必須為零 ::SendMessage(*this, WM_PASTE, 0, 0); } /** * @brief 復原最後的改變 * @return <b>型別: BOOL</b> \n 若復原作業成功返回值為非零值。 \n 若復原失敗返回值為零。 */ BOOL DmCombo::UnDo() const { assert(this->IsWindow()); // EM_UNDO // wParam = 未使用,必須為零 // lParam = 未使用,必須為零 return ::SendMessage(*this, WM_UNDO, 0, 0) != 0; }
[ "swang.com@gmail.com" ]
swang.com@gmail.com
3f8d334ded623fab4087aa0f858df5ed29edc8dc
5a9c8599f463847beaf03f384cf7e2b0082bc6e4
/include/atom.h
39077611e6a142ff97525ad003e17b87ee15a7bb
[]
no_license
puckettlab/circlePack
4b79af92c4b4363e449a457d9f3d9e7f1142e40c
61168099f2c742aaf4d910b9d2d0554ed7fb164e
refs/heads/master
2023-07-14T23:47:33.660635
2021-09-05T16:24:07
2021-09-05T16:24:07
403,343,367
0
0
null
null
null
null
UTF-8
C++
false
false
599
h
#ifndef ATOM_H_ #define ATOM_H_ #include <vector> #include "type.h" // type (double/float) and minor includes class ATOM { public: T m; // mass T r; // radius int Z; // z number of contacts std::vector<T> x; // x,y position std::vector<T> v; // velocity std::vector<T> f; // force std::vector<T> fold; // force, last timesetp, md only // void force_clear(); void velocity_clear(); // T getForceMag(); T getVelocityMag(); // ATOM() ; // constructor ~ATOM(); }; #endif
[ "jpuckett@gettysburg.edu" ]
jpuckett@gettysburg.edu
d5b2e0948d59508f65110c77a7f96252e4ce297c
b6f3cdbe8de6142f48ea5b6a0ef4a118bf300c15
/FractalTree-master/FractalTree/App1/GameResources.h
3d4fb6531fecaa7699b12a73f34d00168dbf399f
[]
no_license
jwang320/Engine
182042cc2b5ea8bb71fe45022296aa00dbbc4e13
5fe1d23fc695f5b43f5a484297b6448c5a446f5a
refs/heads/master
2023-01-01T12:25:18.545583
2020-10-28T00:45:05
2020-10-28T00:45:05
307,857,598
0
0
null
null
null
null
UTF-8
C++
false
false
1,960
h
#pragma once #include "..\src\ResourceManager.h" #include "PlatformerCharacter.h" #include "GameDefinition.h" class GameRenderer; struct BlockModel { std::vector<BlockCoordinate> blockList; }; struct RoomModel { std::vector<BlockCoordinate> blockList; int width; int height; }; class GameResources : public ResourceManager { public: #ifndef _NO_GRAPHICS enum ParticleSystems { BasicFireTrail, IneffectiveMissileFireTrail, DecentMissileFireTrail, GiantExplosion, MediumExplosion, HugeExplosion, GrenadeFireTrail, GiantExplosion2 }; #endif public: static void LoadResources(GameRenderer* renderer = NULL); static float GridWidth; static float SquareWidth; static float MouseSensitivity; static bool UseInstancing; static float WorldZDepth; static bool renderWireFrame; static int BMPRegularBlockValue; static int BMPHeartBlockValue; static int BMPGunBlockValue; static std::string PlayerShipType; static bool LockCamera; static bool CanDie; static float StartX; static float StartY; static bool SpawnEnemies; static bool UseDiscreteAnimation; static bool UseDiscreteAnimationPlayer; static int BMPArmorBlockValue; static int RegularBlockStartCount; static int GunBlockStartCount; static int ArmorBlockStartCount; static int ThrusterBlockStartCount; static std::vector<BlockModel> BlockModelDefinitions; static std::map<std::string, int> BlockModelResourceMap; static std::vector<RoomModel> RoomModelDefinitions; static std::map<std::string, int> RoomModelResourceMap; static std::map<std::string, GameDefinition> GameDefinitions; static std::map<std::string, int> blockTypes; //static std::map<std::string, int> BlockTypeIndexMap; private: static void loadPixelBlockResources(const std::string& fileName); static void loadGameDefinition(const std::string& resourceName); static void loadBlockModel(const std::string& resourceName); static void loadRoomModel(const std::string& resourceName); };
[ "73551517+jwang320@users.noreply.github.com" ]
73551517+jwang320@users.noreply.github.com
e7dc19cf86b34683bf8912d089a6312a91368f9f
64589428b06258be0b9b82a7e7c92c0b3f0778f1
/Codeforces/Gym/101669 2017-2018 ACM-ICPC Southeastern European Regional Programming Contest (SEERC 2017)/L.cpp
d4837c7fa6d2e00a8723dd82383c70f91b557ac8
[]
no_license
splucs/Competitive-Programming
b6def1ec6be720c6fbf93f2618e926e1062fdc48
4f41a7fbc71aa6ab8cb943d80e82d9149de7c7d6
refs/heads/master
2023-08-31T05:10:09.573198
2023-08-31T00:40:32
2023-08-31T00:40:32
85,239,827
141
27
null
2023-01-08T20:31:49
2017-03-16T20:42:37
C++
UTF-8
C++
false
false
1,882
cpp
#include <bits/stdc++.h> #define MAXN 200009 #define MAXLOGN 20 #define MOD 1000000007 #define INF 0x3f3f3f3f #define INFLL 0x3f3f3f3f3f3f3f3f #define FOR(i, n) for(int i = 0; i < n; i++) #define REP(i, n) for(int i = n-1; i >= 0; i--) #define FOR1(i, n) for(int i = 1; i <= n; i++) #define REP1(i, n) for(int i = n; i > 0; i--) #define pb push_back #define fi first #define se second #define sz(x) int(x.size()) #define all(x) x.begin(), x.end() using namespace std; typedef long long int ll; typedef pair<int, int> ii; typedef vector<int> vi; int n; vector<int> g[2][MAXN]; set<int> sub[MAXN]; multiset<int> reach[MAXN]; void merge(int u, int v) { if (sz(sub[u]) < sz(sub[v])) { swap(sub[u], sub[v]); swap(reach[u], reach[v]); } for(int w : sub[v]) { reach[u].erase(w); sub[u].insert(w); } sub[v].clear(); for(int w : reach[v]) { if (!sub[u].count(w)) reach[u].insert(w); } reach[v].clear(); } void dfs(int u, int p, int k, int &minans, int &cntans) { sub[u].clear(); sub[u].insert(u); reach[u] = multiset<int>(all(g[k^1][u])); for(int v : g[k][u]) { if (v == p) continue; dfs(v, u, k, minans, cntans); merge(u, v); } if (p == -1) return; int outedges = 1 + sz(reach[u]); /*printf("k=%d, edge %d-%d, outedges: %d\n", k, u, p, outedges); printf("sub:"); for(int w : sub[u]) printf(" %d", w); printf("\n"); printf("reach:"); for(int w : reach[u]) printf(" %d", w); printf("\n\n");*/ if (outedges > minans) return; if (outedges < minans) { minans = outedges; cntans = 0; } cntans++; } int main() { scanf("%d", &n); FOR(k, 2) FOR(i, n-1) { int u, v; scanf("%d %d", &u, &v); g[k][u].pb(v); g[k][v].pb(u); } int minans = INF, cntans = 0; dfs(1, -1, 0, minans, cntans); dfs(1, -1, 1, minans, cntans); if (minans == 2) { assert(cntans % 2 == 0); cntans /= 2; } printf("%d %d\n", minans, cntans); return 0; }
[ "lucas.fra.oli18@gmail.com" ]
lucas.fra.oli18@gmail.com
406f8730087cc868a78459c5009251b2186b029e
9c0606f801c6357853ba6f192dc6ef3ec2cb940c
/Actividad 11/Actividad 11.cpp
beee2dbc29e5dcd0e8a87aa4659fb65e5dfac477
[]
no_license
Oscar7246/Portafolio_00096819
83f24052bd3b6bb3fac6eb4e142ac9cfde0734d8
b2d1550ce9ed3fbd4959b0a4ca4d1292c6733184
refs/heads/master
2020-07-08T23:27:18.544486
2019-11-11T01:16:13
2019-11-11T01:16:13
203,810,308
0
0
null
null
null
null
UTF-8
C++
false
false
1,921
cpp
#include <iostream> using namespace std; int Cola[5]; int frente = -1, atras = -1, n=5; void insertarCO(int val) { if ((frente == 0 && atras == n-1) || (frente == atras+1)) { cout<<"La cola esta llena \n"; return; } if (frente == -1) { frente = 0; atras = 0; } else { if (atras == n - 1) atras = 0; else atras = atras + 1; } Cola[atras] = val ; } void borrarCO() { if (frente == -1) { cout<<"Cola Underflow\n"; return ; } cout<<"El elemento eliminado de la cola es : "<<Cola[frente]<<endl; if (frente == atras) { frente = -1; atras = -1; } else { if (frente == n - 1) frente = 0; else frente = frente + 1; } } void mostrarCO() { int f = frente, r = atras; if (frente == -1) { cout<<"La cola esta vacia"<<endl; return; } cout<<"Los elementos de la cola son :\n"; if (f <= r) { while (f <= r){ cout<<Cola[f]<<" "; f++; } } else { while (f <= n - 1) { cout<<Cola[f]<<" "; f++; } f = 0; while (f <= r) { cout<<Cola[f]<<" "; f++; } } cout<<endl; } int main() { int ch, val; cout<<"1)Insertar un elemento\n"; cout<<"2)Borrar un elemento\n"; cout<<"3)Mostrar Cola\n"; cout<<"4)Salir\n"; do { cout<<"Ingrese una opcion : "<<endl; cin>>ch; switch(ch) { case 1: cout<<"Numero a insertar: "<<endl; cin>>val; insertarCO(val); break; case 2: borrarCO(); break; case 3: mostrarCO(); break; case 4: cout<<"Salir\n"; break; default: cout<<"Incorrecto!\n"; } } while(ch != 4); return 0; }
[ "00096819@uca.edu.sv" ]
00096819@uca.edu.sv
cae1be1593e3280d7072f7bb0beef0a6ee06d396
c9cf0586ace11aa32fa67606d237a130a06364ee
/circular-cylinder-3-1/4.25/p
df0364d26b04145a33cdc694bf4ef822440abf7b
[]
no_license
jezvonek/CFD-Final-Project
c74cfa21f22545c27d97d85cf30eb6dc8c824dc1
7c9a7fb032d74f20888effa0a0b75b212bf899f4
refs/heads/master
2022-07-05T14:43:52.967657
2020-05-14T03:40:56
2020-05-14T03:40:56
262,370,756
1
1
null
null
null
null
UTF-8
C++
false
false
194,606
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "4.25"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 19200 ( -0.425335 -0.419958 -0.416181 -0.413034 -0.410144 -0.407489 -0.405014 -0.40266 -0.400388 -0.398172 -0.395992 -0.393837 -0.391699 -0.389574 -0.38746 -0.385358 -0.383269 -0.381194 -0.379135 -0.377095 -0.375076 -0.37308 -0.371109 -0.369162 -0.367243 -0.365355 -0.363498 -0.361611 -0.359647 -0.35825 -0.431349 -0.42572 -0.421838 -0.418597 -0.415603 -0.412838 -0.410245 -0.40777 -0.405373 -0.403031 -0.400724 -0.398443 -0.39618 -0.393933 -0.391701 -0.389484 -0.387284 -0.385103 -0.382944 -0.38081 -0.378702 -0.376623 -0.374575 -0.372559 -0.370576 -0.368634 -0.366729 -0.364792 -0.36276 -0.361374 -0.437958 -0.431976 -0.427931 -0.42456 -0.421435 -0.418537 -0.41581 -0.413196 -0.410659 -0.408175 -0.405727 -0.403306 -0.400905 -0.398522 -0.396157 -0.393812 -0.391489 -0.38919 -0.386918 -0.384677 -0.382469 -0.380298 -0.378164 -0.376069 -0.374016 -0.372012 -0.370055 -0.368062 -0.365969 -0.364661 -0.444934 -0.438664 -0.434454 -0.430931 -0.427654 -0.424604 -0.421722 -0.418952 -0.416257 -0.413615 -0.41101 -0.408432 -0.405877 -0.403344 -0.400833 -0.398346 -0.395886 -0.393455 -0.391059 -0.388699 -0.386379 -0.384103 -0.381873 -0.37969 -0.377556 -0.375482 -0.373467 -0.37141 -0.369237 -0.367998 -0.452321 -0.445778 -0.441397 -0.437706 -0.434258 -0.431036 -0.427981 -0.425038 -0.422169 -0.419352 -0.416573 -0.413824 -0.411101 -0.408403 -0.405731 -0.403087 -0.400476 -0.397901 -0.395366 -0.392875 -0.390431 -0.388039 -0.3857 -0.383418 -0.381195 -0.379042 -0.376959 -0.374829 -0.372562 -0.371395 -0.460145 -0.453323 -0.44876 -0.444885 -0.441248 -0.437837 -0.434593 -0.431458 -0.428397 -0.42539 -0.422422 -0.419486 -0.416579 -0.4137 -0.410853 -0.408039 -0.405263 -0.402529 -0.399841 -0.397205 -0.394625 -0.392104 -0.389646 -0.387253 -0.384929 -0.382688 -0.380529 -0.378315 -0.375943 -0.374856 -0.468421 -0.461302 -0.456548 -0.452472 -0.448629 -0.445012 -0.44156 -0.438217 -0.434948 -0.431733 -0.428559 -0.425421 -0.422314 -0.41924 -0.416202 -0.413203 -0.410248 -0.407341 -0.404487 -0.401692 -0.398961 -0.396298 -0.393707 -0.391192 -0.388756 -0.386416 -0.384171 -0.381865 -0.379374 -0.378376 -0.477159 -0.469717 -0.464764 -0.460472 -0.456406 -0.452564 -0.448888 -0.445319 -0.441825 -0.438386 -0.434991 -0.431633 -0.428311 -0.425027 -0.421783 -0.418584 -0.415434 -0.412339 -0.409305 -0.406337 -0.403441 -0.400623 -0.397886 -0.395235 -0.392675 -0.390224 -0.387884 -0.385474 -0.382852 -0.381953 -0.486369 -0.478575 -0.473416 -0.46889 -0.464582 -0.460499 -0.45658 -0.452768 -0.449032 -0.445353 -0.441719 -0.438127 -0.434575 -0.431065 -0.4276 -0.424185 -0.420826 -0.417529 -0.414299 -0.411143 -0.408068 -0.405079 -0.402182 -0.399382 -0.396684 -0.394111 -0.391665 -0.389139 -0.386372 -0.385583 -0.496064 -0.487878 -0.482509 -0.47773 -0.473163 -0.468821 -0.464642 -0.46057 -0.456575 -0.452638 -0.448751 -0.444908 -0.44111 -0.437359 -0.433658 -0.430013 -0.426429 -0.422914 -0.419473 -0.416115 -0.412845 -0.40967 -0.406598 -0.403634 -0.400784 -0.398076 -0.395511 -0.392857 -0.389931 -0.38926 -0.506263 -0.497622 -0.492052 -0.486999 -0.482154 -0.477536 -0.473079 -0.468729 -0.464458 -0.460248 -0.456091 -0.451982 -0.447922 -0.443914 -0.439962 -0.436072 -0.432249 -0.428501 -0.424834 -0.421256 -0.417776 -0.4144 -0.411137 -0.407993 -0.404977 -0.402119 -0.399422 -0.396625 -0.393525 -0.392982 -0.51697 -0.507802 -0.50206 -0.496704 -0.49156 -0.486647 -0.481895 -0.477251 -0.472686 -0.468187 -0.463744 -0.459354 -0.455018 -0.450738 -0.446521 -0.44237 -0.438292 -0.434296 -0.430387 -0.426575 -0.422868 -0.419275 -0.415805 -0.412464 -0.409265 -0.406241 -0.403397 -0.400442 -0.397151 -0.396743 -0.528114 -0.518493 -0.512536 -0.506849 -0.501387 -0.496162 -0.491096 -0.48614 -0.481266 -0.476461 -0.471717 -0.46703 -0.462403 -0.457838 -0.45334 -0.448915 -0.444568 -0.440308 -0.436143 -0.43208 -0.42813 -0.424302 -0.420606 -0.417052 -0.413651 -0.410445 -0.407437 -0.404307 -0.400806 -0.400541 -0.539755 -0.529759 -0.523402 -0.51743 -0.511642 -0.506084 -0.500687 -0.495402 -0.490203 -0.485077 -0.480016 -0.475019 -0.470087 -0.465222 -0.46043 -0.455716 -0.451086 -0.446548 -0.44211 -0.437781 -0.43357 -0.42949 -0.42555 -0.421762 -0.418142 -0.414733 -0.411544 -0.408218 -0.404486 -0.40437 -0.551905 -0.541496 -0.534758 -0.528463 -0.522329 -0.516419 -0.510674 -0.505043 -0.499503 -0.49404 -0.488649 -0.483327 -0.478076 -0.472899 -0.4678 -0.462783 -0.457856 -0.453026 -0.4483 -0.443688 -0.4392 -0.434849 -0.430646 -0.426605 -0.422743 -0.419111 -0.415719 -0.412175 -0.408188 -0.408224 -0.564556 -0.553734 -0.5466 -0.539953 -0.533452 -0.527174 -0.521062 -0.515069 -0.509171 -0.503358 -0.497622 -0.491963 -0.486381 -0.480878 -0.475459 -0.470128 -0.464891 -0.459754 -0.454726 -0.449815 -0.445032 -0.440391 -0.435905 -0.431587 -0.427461 -0.423581 -0.419963 -0.416176 -0.411907 -0.412096 -0.577693 -0.566502 -0.558927 -0.551902 -0.545017 -0.538351 -0.531855 -0.525484 -0.519214 -0.513036 -0.506943 -0.500934 -0.495008 -0.489169 -0.483419 -0.477762 -0.472203 -0.466747 -0.461401 -0.456175 -0.45108 -0.446129 -0.441338 -0.436721 -0.432304 -0.42815 -0.424277 -0.420218 -0.415635 -0.415972 -0.59137 -0.579774 -0.571741 -0.564316 -0.557026 -0.549955 -0.543059 -0.536293 -0.529637 -0.523081 -0.516618 -0.510248 -0.503969 -0.497783 -0.491691 -0.485698 -0.479805 -0.474017 -0.468341 -0.462785 -0.45736 -0.452079 -0.446959 -0.442016 -0.43728 -0.432821 -0.428661 -0.424294 -0.41936 -0.419837 -0.605601 -0.59355 -0.585044 -0.577198 -0.569484 -0.561989 -0.554676 -0.547501 -0.540445 -0.533498 -0.526655 -0.519912 -0.51327 -0.506728 -0.500287 -0.493947 -0.487711 -0.481581 -0.475562 -0.469661 -0.463888 -0.458256 -0.452783 -0.447486 -0.442398 -0.437598 -0.433113 -0.428396 -0.423066 -0.423664 -0.620386 -0.607833 -0.598839 -0.590551 -0.582392 -0.574455 -0.566708 -0.55911 -0.551642 -0.544293 -0.537058 -0.529935 -0.522921 -0.516015 -0.509216 -0.502523 -0.495935 -0.489453 -0.48308 -0.476821 -0.470683 -0.464679 -0.458827 -0.453144 -0.447667 -0.442484 -0.437626 -0.432509 -0.426728 -0.427416 -0.635723 -0.622626 -0.613126 -0.604373 -0.595749 -0.587353 -0.579158 -0.571123 -0.563229 -0.555468 -0.547833 -0.540322 -0.532929 -0.525653 -0.518491 -0.511438 -0.504493 -0.497652 -0.490915 -0.484285 -0.477766 -0.471369 -0.46511 -0.459007 -0.453098 -0.447481 -0.442194 -0.436611 -0.430308 -0.431041 -0.651608 -0.637928 -0.627901 -0.618662 -0.609555 -0.600682 -0.592024 -0.583539 -0.57521 -0.567027 -0.558985 -0.551078 -0.543301 -0.535651 -0.528121 -0.520705 -0.513398 -0.506194 -0.499087 -0.492076 -0.485162 -0.478352 -0.471658 -0.465097 -0.458708 -0.452595 -0.446807 -0.440675 -0.433756 -0.43446 -0.668037 -0.653735 -0.643159 -0.633414 -0.623803 -0.614439 -0.605303 -0.596357 -0.587583 -0.57897 -0.570514 -0.562207 -0.554043 -0.546015 -0.538116 -0.530337 -0.522667 -0.515098 -0.507618 -0.500221 -0.492902 -0.485661 -0.478505 -0.471446 -0.46452 -0.45784 -0.451458 -0.444666 -0.437002 -0.437568 -0.685003 -0.67004 -0.658892 -0.648619 -0.638488 -0.628617 -0.618992 -0.609574 -0.600346 -0.591297 -0.582421 -0.57371 -0.565157 -0.556752 -0.548485 -0.540345 -0.532316 -0.524384 -0.516535 -0.508752 -0.501024 -0.49334 -0.485699 -0.478103 -0.47058 -0.463244 -0.456153 -0.448553 -0.439959 -0.440211 -0.702499 -0.686832 -0.675088 -0.664268 -0.653599 -0.643207 -0.633082 -0.623183 -0.613494 -0.604004 -0.594705 -0.585589 -0.576646 -0.567866 -0.559235 -0.550739 -0.542359 -0.534075 -0.525866 -0.517707 -0.509576 -0.501451 -0.493312 -0.485146 -0.476965 -0.468875 -0.460926 -0.45231 -0.442507 -0.442162 -0.720516 -0.704097 -0.69173 -0.680344 -0.669122 -0.658197 -0.647562 -0.637176 -0.62702 -0.617084 -0.60736 -0.597838 -0.588508 -0.579356 -0.570369 -0.561528 -0.552811 -0.544193 -0.535645 -0.527134 -0.518624 -0.510076 -0.50145 -0.492703 -0.483817 -0.47487 -0.465886 -0.455968 -0.444529 -0.443127 -0.739047 -0.721812 -0.708796 -0.696827 -0.685039 -0.673572 -0.66242 -0.651539 -0.640913 -0.630529 -0.620378 -0.610452 -0.600737 -0.591221 -0.581888 -0.572716 -0.563683 -0.554757 -0.545905 -0.537085 -0.528245 -0.519329 -0.510269 -0.500982 -0.491399 -0.481542 -0.471378 -0.459859 -0.446199 -0.442967 -0.758119 -0.739958 -0.726256 -0.713691 -0.701328 -0.689312 -0.677637 -0.666259 -0.655158 -0.644324 -0.633748 -0.623418 -0.613324 -0.603452 -0.593784 -0.584301 -0.574977 -0.565781 -0.556674 -0.547609 -0.538523 -0.52934 -0.519961 -0.510257 -0.500083 -0.489371 -0.477989 -0.464587 -0.447686 -0.440796 -0.777781 -0.7585 -0.744063 -0.730896 -0.717959 -0.705394 -0.693195 -0.681317 -0.669741 -0.658456 -0.647454 -0.636723 -0.626254 -0.616034 -0.606046 -0.596271 -0.586687 -0.577264 -0.567965 -0.558742 -0.549529 -0.540237 -0.53074 -0.520847 -0.5103 -0.498858 -0.486094 -0.469797 -0.446477 -0.430836 -0.797549 -0.77725 -0.762144 -0.748405 -0.734906 -0.721795 -0.70907 -0.69669 -0.684637 -0.6729 -0.661471 -0.650341 -0.639501 -0.628939 -0.618641 -0.608594 -0.598779 -0.589175 -0.579754 -0.570482 -0.561312 -0.552173 -0.542958 -0.533481 -0.523451 -0.512476 -0.499668 -0.481526 -0.451795 -0.424668 -1.26818 -1.26684 -1.26349 -1.2586 -1.25219 -1.2443 -1.23502 -1.2244 -1.21253 -1.19949 -1.18537 -1.17024 -1.15419 -1.13731 -1.11968 -1.10138 -1.08249 -1.06309 -1.04327 -1.02308 -1.00261 -0.981925 -0.961085 -0.940155 -0.91919 -0.898245 -0.877362 -0.856555 -0.835816 -0.815589 -1.23304 -1.23166 -1.22845 -1.22367 -1.21737 -1.20963 -1.20053 -1.19014 -1.17856 -1.16585 -1.1521 -1.1374 -1.12182 -1.10544 -1.08836 -1.07064 -1.05237 -1.03361 -1.01446 -0.994974 -0.975225 -0.955279 -0.935201 -0.915051 -0.894887 -0.874764 -0.854738 -0.834858 -0.815178 -0.795878 -1.20466 -1.20328 -1.20019 -1.19553 -1.1894 -1.18185 -1.17298 -1.16285 -1.15156 -1.13917 -1.12578 -1.11147 -1.0963 -1.08038 -1.06376 -1.04654 -1.02879 -1.01058 -0.991983 -0.973075 -0.953922 -0.934587 -0.915134 -0.895622 -0.876108 -0.856649 -0.837298 -0.818111 -0.79915 -0.780493 -1.17746 -1.17618 -1.17325 -1.16881 -1.1629 -1.15562 -1.14703 -1.13722 -1.12626 -1.11424 -1.10124 -1.08733 -1.0726 -1.05712 -1.04098 -1.02425 -1.007 -0.98931 -0.971252 -0.952893 -0.934301 -0.915539 -0.896668 -0.877748 -0.858835 -0.839982 -0.821243 -0.802668 -0.784313 -0.766228 -1.14966 -1.14858 -1.1459 -1.14174 -1.13615 -1.1292 -1.12097 -1.11153 -1.10098 -1.08938 -1.07681 -1.06335 -1.04909 -1.03409 -1.01844 -1.00222 -0.985496 -0.96834 -0.950826 -0.933021 -0.914991 -0.896798 -0.878505 -0.860168 -0.841844 -0.823584 -0.805438 -0.787456 -0.769684 -0.752165 -1.12158 -1.1208 -1.11846 -1.11466 -1.10945 -1.10291 -1.0951 -1.08611 -1.076 -1.06487 -1.05278 -1.03981 -1.02605 -1.01156 -0.996437 -0.98074 -0.964549 -0.947935 -0.930967 -0.913714 -0.896241 -0.87861 -0.86088 -0.843111 -0.825355 -0.807665 -0.79009 -0.772676 -0.755464 -0.738496 -1.09333 -1.09294 -1.09101 -1.08764 -1.08288 -1.07681 -1.06948 -1.06098 -1.05138 -1.04076 -1.02919 -1.01675 -1.00352 -0.989574 -0.974988 -0.959836 -0.944191 -0.928125 -0.911706 -0.895003 -0.87808 -0.861 -0.843821 -0.826601 -0.809394 -0.792251 -0.775221 -0.758347 -0.741672 -0.725234 -1.06495 -1.065 -1.06355 -1.06067 -1.05642 -1.05087 -1.04407 -1.03612 -1.02707 -1.017 -1.00599 -0.994114 -0.981447 -0.968064 -0.95404 -0.93945 -0.924365 -0.908855 -0.89299 -0.876837 -0.860461 -0.843922 -0.827281 -0.810595 -0.793918 -0.777301 -0.760792 -0.744435 -0.728271 -0.712341 -1.0365 -1.03705 -1.03611 -1.03378 -1.03008 -1.02509 -1.01888 -1.01151 -1.00305 -0.993572 -0.983156 -0.971873 -0.959798 -0.947004 -0.933565 -0.919553 -0.905041 -0.890098 -0.874793 -0.859191 -0.843357 -0.827354 -0.811241 -0.795074 -0.77891 -0.762798 -0.746788 -0.730925 -0.715248 -0.6998 -1.00807 -1.00915 -1.00878 -1.00701 -1.00391 -0.999519 -0.993915 -0.98716 -0.979323 -0.970472 -0.96068 -0.950018 -0.93856 -0.926377 -0.913543 -0.900127 -0.886202 -0.871835 -0.857095 -0.842048 -0.826756 -0.811283 -0.795688 -0.780029 -0.764361 -0.748735 -0.733202 -0.717808 -0.702594 -0.687603 -0.979766 -0.981399 -0.9816 -0.98043 -0.977937 -0.974177 -0.969209 -0.963096 -0.955905 -0.947703 -0.938558 -0.928541 -0.917722 -0.90617 -0.893958 -0.881155 -0.86783 -0.85405 -0.839883 -0.825393 -0.810644 -0.795698 -0.780614 -0.76545 -0.750263 -0.735105 -0.720028 -0.705079 -0.690302 -0.675743 -0.951678 -0.953869 -0.954656 -0.954093 -0.952225 -0.949104 -0.944787 -0.939334 -0.932808 -0.925272 -0.916792 -0.907437 -0.897274 -0.886372 -0.874798 -0.862621 -0.849908 -0.836726 -0.82314 -0.809212 -0.795008 -0.780586 -0.766007 -0.751329 -0.736609 -0.721901 -0.707259 -0.692732 -0.678366 -0.66421 -0.923897 -0.926644 -0.928014 -0.928059 -0.926818 -0.924342 -0.920683 -0.915898 -0.910045 -0.903187 -0.895385 -0.886706 -0.877213 -0.866972 -0.85605 -0.844513 -0.832425 -0.81985 -0.806852 -0.793494 -0.779836 -0.765939 -0.751861 -0.737661 -0.723395 -0.70912 -0.69489 -0.68076 -0.666778 -0.652997 -0.896507 -0.899797 -0.901741 -0.902384 -0.901765 -0.89993 -0.896927 -0.892811 -0.887635 -0.881459 -0.874343 -0.866346 -0.857533 -0.847965 -0.837705 -0.826818 -0.815365 -0.803408 -0.791008 -0.778226 -0.76512 -0.751748 -0.738169 -0.724439 -0.710617 -0.696758 -0.68292 -0.66916 -0.655533 -0.642095 -0.869586 -0.873397 -0.875896 -0.877123 -0.877112 -0.875907 -0.873552 -0.870098 -0.865597 -0.860102 -0.853671 -0.846361 -0.838231 -0.829342 -0.819754 -0.809525 -0.798717 -0.787388 -0.775595 -0.763396 -0.750848 -0.738006 -0.724925 -0.711662 -0.698272 -0.684814 -0.671346 -0.657929 -0.644624 -0.631494 -0.843199 -0.847505 -0.850535 -0.852323 -0.852901 -0.852308 -0.850587 -0.847784 -0.843947 -0.839126 -0.833376 -0.826751 -0.819307 -0.8111 -0.802187 -0.792625 -0.78247 -0.771777 -0.760601 -0.748995 -0.737013 -0.724706 -0.712127 -0.699328 -0.686363 -0.673291 -0.66017 -0.647067 -0.634047 -0.621185 -0.817403 -0.822175 -0.825706 -0.828028 -0.82917 -0.829167 -0.82806 -0.825889 -0.822702 -0.818544 -0.813467 -0.807521 -0.800758 -0.793233 -0.784998 -0.776106 -0.766611 -0.756563 -0.746014 -0.735012 -0.723606 -0.711843 -0.699771 -0.687438 -0.674894 -0.662194 -0.649399 -0.636576 -0.6238 -0.611157 -0.792247 -0.797449 -0.80145 -0.804274 -0.805951 -0.806512 -0.805994 -0.804435 -0.801878 -0.798367 -0.793949 -0.788671 -0.782583 -0.775736 -0.768178 -0.759959 -0.751129 -0.741735 -0.731823 -0.721437 -0.71062 -0.699413 -0.687858 -0.675996 -0.663872 -0.651535 -0.639043 -0.626465 -0.613884 -0.601402 -0.767767 -0.773365 -0.777799 -0.781094 -0.783274 -0.784368 -0.784411 -0.783438 -0.781488 -0.778603 -0.774827 -0.770204 -0.76478 -0.758603 -0.751719 -0.744174 -0.736013 -0.727279 -0.718014 -0.708257 -0.698045 -0.687411 -0.676388 -0.665009 -0.65331 -0.64133 -0.629121 -0.61675 -0.604307 -0.591911 -0.743993 -0.749949 -0.754782 -0.758511 -0.76116 -0.762755 -0.763329 -0.762913 -0.761544 -0.759262 -0.756107 -0.752121 -0.747347 -0.74183 -0.735613 -0.728739 -0.721249 -0.713182 -0.704575 -0.695462 -0.685872 -0.675831 -0.665361 -0.654485 -0.643223 -0.631602 -0.619659 -0.607456 -0.595083 -0.582679 -0.720945 -0.727223 -0.732417 -0.736545 -0.739628 -0.74169 -0.742761 -0.742872 -0.742056 -0.74035 -0.737792 -0.734422 -0.730282 -0.725411 -0.719851 -0.713643 -0.706823 -0.699429 -0.691491 -0.683037 -0.67409 -0.664667 -0.65478 -0.644433 -0.633632 -0.622382 -0.610698 -0.598622 -0.586242 -0.573704 -0.698636 -0.705201 -0.71072 -0.71521 -0.718691 -0.721185 -0.72272 -0.723324 -0.72303 -0.721871 -0.719885 -0.717108 -0.713579 -0.709339 -0.704424 -0.698874 -0.692723 -0.686003 -0.678743 -0.670965 -0.662685 -0.653911 -0.644641 -0.634864 -0.624562 -0.613711 -0.602291 -0.590308 -0.57783 -0.564995 -0.677073 -0.683889 -0.689698 -0.694515 -0.698358 -0.701249 -0.703213 -0.704277 -0.704472 -0.70383 -0.702386 -0.700176 -0.697237 -0.693607 -0.689322 -0.684419 -0.67893 -0.672887 -0.666313 -0.659227 -0.651639 -0.643548 -0.63494 -0.625785 -0.616038 -0.605635 -0.594508 -0.582598 -0.569926 -0.556576 -0.656258 -0.663291 -0.669355 -0.674464 -0.678634 -0.681887 -0.684245 -0.685735 -0.686386 -0.686229 -0.685297 -0.683626 -0.681251 -0.678209 -0.674536 -0.670266 -0.665433 -0.660063 -0.654181 -0.647803 -0.640933 -0.633564 -0.62567 -0.617203 -0.608088 -0.598215 -0.587443 -0.575617 -0.562659 -0.548503 -0.636185 -0.643404 -0.649691 -0.655058 -0.659521 -0.663101 -0.665818 -0.6677 -0.668773 -0.669068 -0.668617 -0.667455 -0.665617 -0.663139 -0.660056 -0.656403 -0.652213 -0.647513 -0.642326 -0.636668 -0.630541 -0.623935 -0.616815 -0.609117 -0.600738 -0.591516 -0.581218 -0.569541 -0.556247 -0.540916 -0.616846 -0.62422 -0.630696 -0.636287 -0.641009 -0.64488 -0.647922 -0.650159 -0.651618 -0.65233 -0.652325 -0.651639 -0.650306 -0.648363 -0.645844 -0.642786 -0.639221 -0.63518 -0.630686 -0.625755 -0.620393 -0.614587 -0.608303 -0.601466 -0.593951 -0.585549 -0.57592 -0.56456 -0.550994 -0.534118 -0.598232 -0.60573 -0.612365 -0.618148 -0.623093 -0.62722 -0.630549 -0.633104 -0.634912 -0.636002 -0.636406 -0.636158 -0.635293 -0.633848 -0.63186 -0.629366 -0.6264 -0.622995 -0.619177 -0.614969 -0.610378 -0.605399 -0.600001 -0.594114 -0.587605 -0.580234 -0.571554 -0.560815 -0.547245 -0.528501 -0.580334 -0.587951 -0.594737 -0.600702 -0.605861 -0.610231 -0.613833 -0.616691 -0.618831 -0.620282 -0.621077 -0.621249 -0.620835 -0.619872 -0.618399 -0.616454 -0.614075 -0.611297 -0.608154 -0.60467 -0.600863 -0.596738 -0.592278 -0.587431 -0.582081 -0.575995 -0.568664 -0.55908 -0.546013 -0.524441 -0.563128 -0.570886 -0.577844 -0.584012 -0.589406 -0.594042 -0.597942 -0.601129 -0.60363 -0.605476 -0.606698 -0.607331 -0.607414 -0.606986 -0.606086 -0.604757 -0.603038 -0.600971 -0.598593 -0.595936 -0.593028 -0.589887 -0.586518 -0.582899 -0.578968 -0.574574 -0.569295 -0.562051 -0.551034 -0.525116 -0.546522 -0.554202 -0.561115 -0.567275 -0.572694 -0.577392 -0.581389 -0.584711 -0.587384 -0.58944 -0.590914 -0.591842 -0.592264 -0.592223 -0.591764 -0.590932 -0.589777 -0.588344 -0.586683 -0.584839 -0.582856 -0.580775 -0.578634 -0.576466 -0.5743 -0.572176 -0.569989 -0.567154 -0.563431 -0.54331 -0.436729 -0.485969 -0.533967 -0.581355 -0.627972 -0.673684 -0.71826 -0.761436 -0.80328 -0.843745 -0.882723 -0.920118 -0.955846 -0.989833 -1.02201 -1.05233 -1.08072 -1.10716 -1.1316 -1.15401 -1.17439 -1.1927 -1.20895 -1.22315 -1.23528 -1.24539 -1.25347 -1.25955 -1.26362 -1.26606 -0.429372 -0.477441 -0.524472 -0.570701 -0.615996 -0.660214 -0.703328 -0.745359 -0.786106 -0.825422 -0.863235 -0.899474 -0.934066 -0.966943 -0.998045 -1.02732 -1.05471 -1.08019 -1.10371 -1.12526 -1.14482 -1.16238 -1.17793 -1.19148 -1.20304 -1.21264 -1.2203 -1.22605 -1.22993 -1.23211 -0.418617 -0.465688 -0.511882 -0.557264 -0.601732 -0.645178 -0.687519 -0.728666 -0.768494 -0.806941 -0.843926 -0.879369 -0.913197 -0.945342 -0.975746 -1.00435 -1.03112 -1.056 -1.07898 -1.10002 -1.1191 -1.13622 -1.15138 -1.16459 -1.17585 -1.18519 -1.19264 -1.19824 -1.20201 -1.20407 -0.40426 -0.450409 -0.495774 -0.540353 -0.584038 -0.626729 -0.668332 -0.708752 -0.747899 -0.785689 -0.822045 -0.856891 -0.890153 -0.921766 -0.951672 -0.979817 -1.00616 -1.03065 -1.05327 -1.07399 -1.0928 -1.10968 -1.12464 -1.13768 -1.14881 -1.15806 -1.16545 -1.17102 -1.1748 -1.17688 -0.386808 -0.432039 -0.476558 -0.520327 -0.563236 -0.605183 -0.646075 -0.685823 -0.724338 -0.761538 -0.797337 -0.831664 -0.864445 -0.895618 -0.925123 -0.952908 -0.978928 -1.00314 -1.02552 -1.04605 -1.06469 -1.08145 -1.09633 -1.10932 -1.12045 -1.12972 -1.13717 -1.14283 -1.14673 -1.14893 -0.367023 -0.411337 -0.455002 -0.49796 -0.540099 -0.581318 -0.621527 -0.660635 -0.698553 -0.735201 -0.770491 -0.804354 -0.83672 -0.867522 -0.896703 -0.92421 -0.949996 -0.974024 -0.99626 -1.01668 -1.03527 -1.05201 -1.06691 -1.07996 -1.09118 -1.10058 -1.1082 -1.11405 -1.11816 -1.12061 -0.34563 -0.389016 -0.431811 -0.473944 -0.515305 -0.555796 -0.595325 -0.633801 -0.671138 -0.707251 -0.742066 -0.775503 -0.807492 -0.83797 -0.866877 -0.894161 -0.919775 -0.943679 -0.965839 -0.986231 -1.00483 -1.02164 -1.03663 -1.04983 -1.06122 -1.07084 -1.0787 -1.08483 -1.08925 -1.09202 -0.323269 -0.365709 -0.407612 -0.448898 -0.489463 -0.52921 -0.568048 -0.605888 -0.642643 -0.67823 -0.712572 -0.745593 -0.777222 -0.807396 -0.836056 -0.863147 -0.888622 -0.91244 -0.934567 -0.954975 -0.973643 -0.990557 -1.00571 -1.0191 -1.03074 -1.04063 -1.0488 -1.05527 -1.06006 -1.06323 -0.30049 -0.341961 -0.382947 -0.423364 -0.463111 -0.502095 -0.540223 -0.57741 -0.61357 -0.648621 -0.682484 -0.715086 -0.746356 -0.776229 -0.804647 -0.831555 -0.856904 -0.880653 -0.902766 -0.923214 -0.941973 -0.959028 -0.974369 -0.987993 -0.999905 -1.01011 -1.01864 -1.02549 -1.03071 -1.03432 -0.277739 -0.318224 -0.358271 -0.397797 -0.436704 -0.474901 -0.5123 -0.548815 -0.584361 -0.618857 -0.652227 -0.684395 -0.715294 -0.744857 -0.773026 -0.799745 -0.824965 -0.848645 -0.870746 -0.891238 -0.910097 -0.927304 -0.942847 -0.956722 -0.968929 -0.979476 -0.988375 -0.995647 -1.00131 -1.0054 -0.25537 -0.294853 -0.333945 -0.372561 -0.410609 -0.448 -0.484648 -0.52047 -0.555381 -0.589303 -0.622159 -0.653875 -0.684382 -0.713617 -0.741519 -0.768034 -0.793112 -0.816709 -0.838788 -0.859316 -0.878267 -0.895622 -0.911366 -0.925492 -0.937998 -0.948889 -0.958175 -0.965873 -0.971998 -0.976586 -0.233647 -0.27212 -0.310246 -0.347938 -0.385112 -0.421681 -0.457561 -0.492671 -0.526928 -0.560254 -0.592574 -0.623815 -0.65391 -0.682793 -0.710406 -0.736693 -0.761606 -0.7851 -0.807136 -0.827681 -0.846707 -0.864194 -0.880125 -0.894491 -0.907286 -0.918515 -0.928183 -0.936304 -0.942894 -0.947979 -0.212764 -0.250225 -0.287377 -0.324139 -0.360428 -0.396164 -0.431263 -0.465645 -0.49923 -0.531942 -0.563706 -0.594451 -0.624108 -0.652615 -0.679913 -0.705947 -0.730668 -0.754031 -0.775998 -0.796534 -0.815611 -0.833206 -0.849301 -0.863885 -0.876951 -0.888499 -0.898534 -0.907067 -0.914109 -0.919684 -0.192849 -0.2293 -0.26548 -0.301309 -0.336711 -0.371606 -0.405916 -0.43956 -0.472461 -0.504543 -0.535733 -0.56596 -0.595158 -0.623265 -0.650221 -0.675975 -0.700475 -0.723679 -0.745547 -0.766043 -0.78514 -0.802814 -0.819044 -0.833818 -0.847129 -0.858972 -0.86935 -0.878272 -0.885747 -0.891795 -0.173982 -0.209431 -0.244644 -0.279544 -0.31406 -0.348115 -0.381632 -0.414533 -0.446741 -0.478181 -0.508782 -0.538475 -0.567194 -0.594877 -0.621468 -0.646914 -0.671166 -0.69418 -0.715917 -0.736343 -0.755427 -0.773146 -0.789479 -0.804412 -0.817934 -0.830041 -0.840734 -0.850017 -0.857899 -0.864396 -0.156202 -0.190661 -0.224916 -0.258897 -0.292534 -0.325753 -0.35848 -0.390636 -0.422148 -0.45294 -0.482942 -0.512086 -0.540309 -0.56755 -0.593753 -0.618866 -0.642842 -0.665637 -0.687213 -0.707536 -0.726575 -0.744305 -0.760707 -0.775763 -0.789463 -0.8018 -0.812773 -0.822386 -0.830643 -0.837558 -0.139516 -0.173 -0.206311 -0.239385 -0.272155 -0.304549 -0.336493 -0.36791 -0.398725 -0.428867 -0.458264 -0.48685 -0.514564 -0.541345 -0.56714 -0.591899 -0.615574 -0.638124 -0.65951 -0.679698 -0.69866 -0.716368 -0.732803 -0.747948 -0.76179 -0.774321 -0.785539 -0.795445 -0.804043 -0.811343 -0.12391 -0.156436 -0.188819 -0.221002 -0.252921 -0.284505 -0.315678 -0.346364 -0.376489 -0.405981 -0.434771 -0.462794 -0.489989 -0.516299 -0.54167 -0.566055 -0.589408 -0.611688 -0.632857 -0.652883 -0.671736 -0.68939 -0.705825 -0.721023 -0.734971 -0.74766 -0.759086 -0.769249 -0.778152 -0.785801 -0.109354 -0.140935 -0.17241 -0.203722 -0.23481 -0.265602 -0.29602 -0.325989 -0.355433 -0.384281 -0.412465 -0.439922 -0.466593 -0.492421 -0.517357 -0.541353 -0.564366 -0.586354 -0.607283 -0.62712 -0.645837 -0.663407 -0.67981 -0.695027 -0.709047 -0.721859 -0.733457 -0.74384 -0.75301 -0.760971 -0.0958031 -0.126455 -0.157039 -0.187504 -0.217785 -0.247807 -0.277491 -0.306758 -0.335533 -0.363746 -0.391329 -0.418221 -0.444365 -0.469708 -0.494199 -0.517794 -0.54045 -0.56213 -0.582799 -0.602425 -0.620979 -0.638438 -0.654779 -0.669986 -0.684044 -0.696944 -0.708679 -0.719246 -0.728646 -0.736883 -0.0832068 -0.112938 -0.142654 -0.172297 -0.201797 -0.231075 -0.260048 -0.288633 -0.316755 -0.344344 -0.371334 -0.397665 -0.423283 -0.448136 -0.472177 -0.495363 -0.517652 -0.539009 -0.5594 -0.578795 -0.597166 -0.614489 -0.630742 -0.645909 -0.659976 -0.672932 -0.68477 -0.695486 -0.705082 -0.713558 -0.0715071 -0.100321 -0.129191 -0.158041 -0.186792 -0.215357 -0.243643 -0.271568 -0.299055 -0.326033 -0.35244 -0.378217 -0.403313 -0.427677 -0.451265 -0.474035 -0.495949 -0.516972 -0.537072 -0.55622 -0.574388 -0.591554 -0.607696 -0.622797 -0.636845 -0.649827 -0.661737 -0.67257 -0.682326 -0.691007 -0.0606406 -0.0885331 -0.116584 -0.144674 -0.172711 -0.200594 -0.228223 -0.255512 -0.282382 -0.308765 -0.334601 -0.359833 -0.384411 -0.408289 -0.431424 -0.453777 -0.475311 -0.495992 -0.51579 -0.534677 -0.552628 -0.569619 -0.585629 -0.600642 -0.614645 -0.627626 -0.639579 -0.650499 -0.660384 -0.669236 -0.0505347 -0.0774872 -0.104752 -0.132124 -0.159486 -0.186725 -0.213728 -0.240405 -0.266679 -0.292485 -0.317763 -0.34246 -0.36653 -0.389927 -0.412612 -0.434547 -0.455697 -0.476032 -0.495521 -0.514138 -0.531859 -0.54866 -0.564521 -0.579426 -0.593362 -0.606319 -0.618289 -0.629267 -0.639252 -0.648243 -0.0411003 -0.0670898 -0.0936197 -0.120322 -0.147058 -0.173693 -0.200103 -0.226196 -0.251897 -0.277142 -0.301877 -0.326052 -0.349622 -0.372545 -0.394785 -0.416304 -0.437071 -0.457056 -0.476231 -0.49457 -0.512053 -0.528652 -0.544349 -0.559129 -0.572979 -0.58589 -0.597853 -0.608864 -0.618921 -0.628024 -0.0322247 -0.0572792 -0.0831658 -0.109262 -0.135425 -0.161499 -0.187349 -0.212882 -0.238029 -0.26273 -0.286935 -0.310598 -0.333676 -0.356133 -0.37793 -0.399036 -0.419419 -0.439051 -0.457905 -0.47596 -0.493197 -0.509583 -0.525101 -0.539739 -0.553485 -0.566329 -0.578262 -0.589281 -0.599383 -0.608568 -0.0237477 -0.0479585 -0.0733525 -0.0989161 -0.12456 -0.150114 -0.175431 -0.200425 -0.225035 -0.249205 -0.272891 -0.296051 -0.318646 -0.340641 -0.362002 -0.382697 -0.402697 -0.421977 -0.440512 -0.458276 -0.475259 -0.491419 -0.506746 -0.521229 -0.534854 -0.547612 -0.559496 -0.570501 -0.580624 -0.589865 -0.0151744 -0.0383536 -0.0634448 -0.0885972 -0.113807 -0.138902 -0.163734 -0.188229 -0.212336 -0.236011 -0.259212 -0.281902 -0.304046 -0.325611 -0.346565 -0.366878 -0.386524 -0.405481 -0.423733 -0.441223 -0.457969 -0.473917 -0.489067 -0.503406 -0.516921 -0.529603 -0.541443 -0.552438 -0.562583 -0.57188 -0.00512175 -0.0269693 -0.0521467 -0.0771858 -0.102179 -0.126967 -0.151431 -0.175532 -0.199233 -0.2225 -0.2453 -0.2676 -0.289367 -0.310572 -0.331184 -0.351175 -0.370518 -0.389189 -0.407156 -0.424438 -0.441049 -0.45684 -0.471854 -0.486088 -0.499527 -0.512162 -0.523988 -0.534998 -0.545191 -0.554566 0.00517827 -0.018805 -0.0451065 -0.0702887 -0.0952086 -0.119751 -0.143849 -0.167523 -0.190766 -0.213554 -0.23586 -0.257659 -0.278922 -0.299623 -0.319736 -0.339233 -0.358085 -0.37625 -0.39363 -0.410459 -0.426886 -0.442353 -0.457025 -0.470935 -0.484077 -0.496442 -0.508027 -0.518828 -0.528843 -0.538073 0.529408 0.536456 0.543675 0.551032 0.55852 0.566137 0.573874 0.581719 0.589659 0.597679 0.605761 0.613882 0.62202 0.630148 0.638238 0.646263 0.654196 0.662012 0.669697 0.677247 0.684676 0.69203 0.699388 0.706883 0.714722 0.723204 0.732652 0.743322 0.75697 0.777117 0.521901 0.528694 0.535754 0.54293 0.550217 0.557622 0.565135 0.572745 0.580437 0.588193 0.595995 0.603819 0.61164 0.619431 0.627163 0.634806 0.64233 0.649713 0.656936 0.663997 0.670911 0.677723 0.68452 0.69144 0.698698 0.706611 0.71552 0.725709 0.738995 0.759034 0.513532 0.520024 0.526899 0.533868 0.540924 0.548084 0.555341 0.562681 0.570087 0.577542 0.585023 0.592509 0.599971 0.60738 0.614706 0.621917 0.628984 0.63588 0.64259 0.649107 0.655452 0.66167 0.667853 0.674148 0.680782 0.688086 0.696425 0.706121 0.719056 0.739004 0.50431 0.510454 0.517119 0.523855 0.530648 0.537532 0.544501 0.551536 0.558621 0.565736 0.572859 0.579964 0.587024 0.594007 0.60088 0.607613 0.614172 0.620532 0.626675 0.632599 0.638321 0.643894 0.649413 0.655035 0.660999 0.667654 0.675387 0.684551 0.69707 0.716768 0.494244 0.499993 0.506424 0.5129 0.519402 0.525979 0.532626 0.539324 0.546052 0.55279 0.559515 0.5662 0.572814 0.579326 0.585702 0.591908 0.597911 0.603685 0.609212 0.614489 0.619538 0.624415 0.629222 0.634123 0.639372 0.645335 0.652422 0.661015 0.673064 0.692405 0.483344 0.488654 0.494828 0.501018 0.507199 0.513438 0.519732 0.526057 0.532393 0.538719 0.545007 0.551232 0.55736 0.563358 0.569191 0.574824 0.580223 0.585361 0.590221 0.594802 0.599128 0.60326 0.607305 0.61144 0.61593 0.621159 0.62756 0.635544 0.647077 0.665985 0.471623 0.47645 0.482344 0.488223 0.494054 0.499925 0.505834 0.511754 0.517664 0.52354 0.529356 0.53508 0.540681 0.546123 0.55137 0.556384 0.561133 0.565588 0.569733 0.573569 0.577123 0.58046 0.583698 0.587022 0.59071 0.595164 0.60084 0.608177 0.61915 0.637561 0.459094 0.463398 0.468989 0.474532 0.479984 0.485457 0.49095 0.496434 0.501885 0.507277 0.512582 0.517769 0.522803 0.527647 0.532264 0.536616 0.540669 0.544395 0.547778 0.550822 0.553557 0.556054 0.558439 0.560907 0.563753 0.567394 0.572307 0.57896 0.589333 0.607189 0.445773 0.449514 0.454781 0.459962 0.465008 0.470055 0.475102 0.480119 0.485077 0.48995 0.49471 0.499322 0.503751 0.507958 0.511904 0.515551 0.518864 0.521816 0.524392 0.526598 0.528469 0.530083 0.531572 0.533144 0.535107 0.537897 0.542013 0.547948 0.557681 0.574928 0.431676 0.434816 0.439738 0.444534 0.449147 0.453739 0.458312 0.46283 0.467264 0.471587 0.475767 0.479769 0.483555 0.487086 0.490322 0.493223 0.495754 0.49789 0.499616 0.500941 0.501905 0.502592 0.503144 0.503781 0.504825 0.506729 0.510014 0.515199 0.524257 0.540843 0.416818 0.419323 0.42388 0.428268 0.432423 0.436532 0.440603 0.444594 0.448474 0.452214 0.455781 0.459139 0.462247 0.465066 0.467553 0.469669 0.471379 0.472657 0.473492 0.473895 0.473912 0.473633 0.47321 0.472875 0.472965 0.473951 0.476374 0.480779 0.489128 0.505003 0.401218 0.403055 0.40723 0.411187 0.414857 0.418459 0.422001 0.425437 0.428734 0.431862 0.434785 0.437465 0.439862 0.441933 0.443636 0.44493 0.445781 0.446163 0.446068 0.445511 0.444543 0.443261 0.441828 0.440487 0.439592 0.43963 0.441161 0.444758 0.452366 0.467482 0.384892 0.386032 0.389808 0.393314 0.396476 0.399546 0.402533 0.405388 0.408075 0.410561 0.412811 0.414784 0.416437 0.417728 0.418612 0.419049 0.419005 0.418456 0.417396 0.415843 0.413855 0.411536 0.40906 0.406683 0.404774 0.403836 0.40445 0.407213 0.414048 0.428359 0.367859 0.368276 0.371638 0.374671 0.377303 0.379818 0.382228 0.384477 0.386528 0.388347 0.389895 0.391132 0.392012 0.392491 0.392526 0.392074 0.391103 0.389589 0.38753 0.384949 0.381908 0.378522 0.374974 0.371534 0.368584 0.366646 0.36632 0.368226 0.374259 0.387718 0.350137 0.349808 0.352743 0.355285 0.357366 0.359305 0.361115 0.362736 0.364128 0.365254 0.366076 0.366549 0.366629 0.366269 0.365425 0.364055 0.362126 0.359618 0.35653 0.352891 0.348769 0.344288 0.339642 0.335113 0.331101 0.328142 0.326854 0.327881 0.333085 0.34565 0.331742 0.330648 0.333145 0.335179 0.33669 0.338034 0.339225 0.340198 0.340909 0.341321 0.341393 0.34108 0.340334 0.339109 0.337359 0.335043 0.33213 0.3286 0.324457 0.319734 0.314506 0.308906 0.303139 0.297502 0.292407 0.288408 0.286141 0.286269 0.290619 0.302247 0.31269 0.310818 0.312868 0.314379 0.315304 0.316036 0.316591 0.316897 0.316909 0.316587 0.315889 0.314767 0.313173 0.31106 0.308382 0.305097 0.301175 0.2966 0.291378 0.285547 0.279192 0.272452 0.265546 0.258782 0.25259 0.247535 0.244273 0.243486 0.246958 0.257608 0.292998 0.290338 0.291934 0.29291 0.293235 0.293343 0.293246 0.292871 0.292167 0.291094 0.289608 0.287659 0.285198 0.282177 0.278549 0.274274 0.269323 0.263681 0.25736 0.250404 0.242902 0.235006 0.226945 0.219042 0.211739 0.205617 0.201347 0.19963 0.202203 0.211837 0.272678 0.269227 0.270369 0.2708 0.270514 0.269986 0.269227 0.268158 0.266725 0.264888 0.262598 0.259806 0.256462 0.252516 0.247921 0.242638 0.236639 0.229914 0.222477 0.214379 0.205717 0.196652 0.187425 0.178371 0.169949 0.162752 0.157463 0.154805 0.156458 0.165039 0.251745 0.247506 0.248194 0.248074 0.247171 0.246 0.244572 0.2428 0.240629 0.238015 0.23491 0.231263 0.227021 0.222135 0.216559 0.210253 0.203193 0.195371 0.186805 0.177552 0.167719 0.157476 0.147075 0.136865 0.127318 0.119039 0.112726 0.109116 0.109832 0.117326 0.23021 0.225194 0.225434 0.224762 0.22324 0.221423 0.219322 0.216841 0.213925 0.210527 0.206598 0.202085 0.196935 0.191098 0.184528 0.177189 0.169056 0.160125 0.150421 0.140006 0.128995 0.117569 0.105989 0.0946211 0.0839463 0.0745837 0.0672423 0.0626731 0.0624371 0.0688113 0.208086 0.202313 0.202116 0.200896 0.198756 0.196296 0.193522 0.190332 0.186667 0.18248 0.17772 0.172334 0.166267 0.15947 0.151899 0.143517 0.134303 0.124256 0.113408 0.101826 0.0896335 0.0770216 0.0642646 0.0517383 0.039938 0.0294923 0.0211214 0.0155887 0.0143873 0.0196132 0.185382 0.178884 0.178267 0.176509 0.173763 0.170667 0.167224 0.163326 0.158913 0.153935 0.14834 0.142074 0.135085 0.127322 0.118742 0.109311 0.0990105 0.0878447 0.0758485 0.0630983 0.0497254 0.0359303 0.0219991 0.00831962 -0.00460148 -0.0161261 -0.0255249 -0.0320231 -0.0342001 -0.030148 0.162113 0.154933 0.153922 0.151645 0.148309 0.14459 0.140489 0.135889 0.130728 0.124957 0.118525 0.111377 0.10346 0.094726 0.0851329 0.0746493 0.06326 0.0509735 0.0378302 0.023914 0.00936448 -0.00560782 -0.0207059 -0.0355305 -0.0495642 -0.0621609 -0.0725831 -0.0800464 -0.0832061 -0.0803481 0.138288 0.130488 0.129123 0.126358 0.122458 0.118136 0.113387 0.108091 0.102185 0.095622 0.0883495 0.0803148 0.0714667 0.0617582 0.0511493 0.0396115 0.0271333 0.0137278 -0.000558746 -0.0156353 -0.0313537 -0.0474936 -0.0637477 -0.0797059 -0.0948409 -0.1085 -0.119939 -0.128364 -0.132511 -0.13086 0.113904 0.105578 0.103922 0.100719 0.0962907 0.0913895 0.0860064 0.0800199 0.0733692 0.0660099 0.0578928 0.0489669 0.0391832 0.028497 0.0168707 0.00427899 -0.0092858 -0.0238058 -0.0392287 -0.0554563 -0.072332 -0.0896264 -0.107022 -0.124099 -0.140321 -0.15503 -0.167477 -0.176861 -0.181995 -0.181556 0.0889445 0.0802374 0.0784017 0.0748321 0.0699206 0.0644628 0.0584534 0.0517743 0.0443721 0.0362083 0.0272379 0.0174135 0.00668884 -0.00497834 -0.0176226 -0.0312663 -0.045913 -0.0615399 -0.0780888 -0.0954546 -0.113473 -0.131904 -0.150424 -0.168601 -0.185894 -0.20164 -0.215086 -0.225424 -0.231545 -0.232304 0.063382 0.0546196 0.0528063 0.0489248 0.0435379 0.0375173 0.0308648 0.0234714 0.0152958 0.00630829 -0.00353065 -0.0142649 -0.0259379 -0.0385893 -0.0522512 -0.0669428 -0.0826639 -0.099387 -0.117048 -0.135535 -0.154676 -0.174224 -0.193845 -0.213101 -0.231444 -0.248211 -0.262646 -0.273935 -0.281034 -0.282939 0.0359958 0.0283289 0.0272195 0.0231905 0.0173355 0.0107198 0.00337783 -0.00477619 -0.0137643 -0.023606 -0.0343356 -0.0459943 -0.0586235 -0.0722615 -0.0869383 -0.102671 -0.119455 -0.137259 -0.156014 -0.1756 -0.195839 -0.216477 -0.23717 -0.257476 -0.276844 -0.294611 -0.310023 -0.322261 -0.330322 -0.333274 0.00573027 0.00112234 0.00143762 -0.0023905 -0.00856416 -0.0157909 -0.0238953 -0.0328796 -0.0427342 -0.0534685 -0.0651141 -0.0777116 -0.091303 -0.105927 -0.121612 -0.138374 -0.156206 -0.175072 -0.194898 -0.215559 -0.236869 -0.258567 -0.280304 -0.301634 -0.322006 -0.340763 -0.357161 -0.37039 -0.379548 -0.383792 0.357635 0.360488 0.368774 0.374164 0.377681 0.380554 0.383063 0.385271 0.387244 0.389038 0.390691 0.392236 0.393703 0.395129 0.396556 0.398033 0.399622 0.401392 0.403426 0.405814 0.408653 0.41204 0.416061 0.420777 0.4262 0.432254 0.438733 0.445215 0.450839 0.454001 0.380872 0.380525 0.386152 0.390615 0.393997 0.397052 0.399899 0.402529 0.404966 0.407245 0.409396 0.411445 0.413421 0.415356 0.417291 0.419274 0.421363 0.423627 0.426144 0.429005 0.432305 0.436143 0.440607 0.445764 0.451634 0.458157 0.465141 0.472183 0.478579 0.483125 0.399525 0.398215 0.402682 0.406801 0.410225 0.413468 0.416602 0.419591 0.422438 0.425161 0.427779 0.43031 0.432779 0.435215 0.437654 0.44014 0.44273 0.445488 0.44849 0.451825 0.455587 0.459874 0.464777 0.470368 0.476675 0.483655 0.491135 0.498738 0.50593 0.511866 0.415394 0.414267 0.418483 0.422575 0.426132 0.429588 0.433002 0.436331 0.439563 0.442706 0.445769 0.448767 0.451717 0.454645 0.457582 0.46057 0.463659 0.466913 0.470403 0.474215 0.478441 0.48318 0.488523 0.494547 0.50129 0.508724 0.516694 0.524844 0.532771 0.539893 0.430079 0.429405 0.433638 0.437824 0.44157 0.445269 0.448974 0.452638 0.456245 0.459795 0.463293 0.466745 0.470167 0.473579 0.477009 0.480493 0.484079 0.487825 0.491801 0.496089 0.500779 0.505966 0.511746 0.518198 0.525369 0.533245 0.541691 0.550369 0.558987 0.567194 0.443801 0.443657 0.448032 0.452407 0.456405 0.460387 0.464405 0.468415 0.472399 0.476353 0.480278 0.484178 0.488064 0.491952 0.495867 0.499842 0.50392 0.508155 0.512613 0.517373 0.522521 0.528153 0.534362 0.541233 0.54882 0.557123 0.566024 0.575205 0.584482 0.593722 0.456669 0.457089 0.461667 0.466287 0.470578 0.474872 0.479223 0.483589 0.487953 0.492309 0.496658 0.501 0.505343 0.509701 0.514095 0.518553 0.523116 0.527833 0.532767 0.537992 0.543592 0.54966 0.55629 0.563568 0.571556 0.580269 0.589604 0.599262 0.609166 0.619399 0.468749 0.469743 0.474555 0.479447 0.484054 0.488678 0.493372 0.498101 0.502847 0.507605 0.512373 0.517151 0.521944 0.526764 0.531627 0.536561 0.5416 0.546791 0.552192 0.557873 0.563915 0.570409 0.577448 0.58512 0.593493 0.602595 0.612341 0.62245 0.632948 0.64414 0.480068 0.481639 0.486698 0.491873 0.496807 0.50177 0.506813 0.511906 0.517034 0.522189 0.527371 0.532577 0.537811 0.543082 0.548405 0.553803 0.559308 0.564962 0.570819 0.576944 0.583416 0.590322 0.597755 0.605804 0.614543 0.624013 0.634146 0.644677 0.65574 0.667855 0.49064 0.492783 0.498095 0.503556 0.508816 0.514118 0.51951 0.524965 0.530468 0.536015 0.541601 0.547226 0.55289 0.558601 0.564372 0.570221 0.576178 0.582281 0.588579 0.595135 0.602021 0.609323 0.617133 0.62554 0.634625 0.644439 0.65493 0.665856 0.677452 0.690455 0.500469 0.503174 0.508738 0.51448 0.520063 0.525699 0.531433 0.537242 0.543114 0.549041 0.555021 0.561052 0.567133 0.573269 0.579472 0.585757 0.59215 0.598685 0.605408 0.612376 0.619659 0.627339 0.635504 0.644248 0.653654 0.663787 0.67461 0.6859 0.697997 0.71185 0.509556 0.512806 0.518618 0.524634 0.530529 0.536489 0.542555 0.548708 0.554935 0.56123 0.56759 0.57401 0.580492 0.587037 0.593653 0.600356 0.607166 0.614114 0.621241 0.628602 0.63626 0.644295 0.652795 0.661851 0.671553 0.681976 0.693101 0.704725 0.717289 0.731953 0.517894 0.521672 0.527724 0.534001 0.540196 0.546466 0.55285 0.559332 0.565899 0.572546 0.579268 0.586061 0.592923 0.599857 0.606867 0.613966 0.621171 0.62851 0.636019 0.643748 0.651758 0.660124 0.668931 0.678273 0.688242 0.698927 0.710323 0.722248 0.735244 0.750677 0.525478 0.529761 0.536042 0.542566 0.549044 0.555608 0.562294 0.569088 0.575977 0.582956 0.59002 0.597164 0.604387 0.611686 0.619067 0.626538 0.634113 0.641817 0.649682 0.657754 0.666088 0.674757 0.683844 0.693442 0.703649 0.714563 0.726196 0.73839 0.751781 0.767941 0.532299 0.53706 0.543558 0.550312 0.557055 0.563895 0.570864 0.577948 0.585138 0.592428 0.599812 0.607285 0.614842 0.622483 0.630208 0.638024 0.645942 0.653983 0.662176 0.67056 0.679189 0.688131 0.697466 0.707288 0.7177 0.72881 0.740647 0.753073 0.766824 0.783663 0.538346 0.543555 0.550256 0.557223 0.56421 0.571305 0.578534 0.585889 0.593357 0.600934 0.608612 0.616387 0.624253 0.632207 0.640248 0.648379 0.656611 0.664958 0.673446 0.682111 0.691002 0.700184 0.709734 0.719746 0.730328 0.741598 0.753603 0.766226 0.780297 0.79777 0.543608 0.549234 0.556121 0.563281 0.570491 0.577817 0.585285 0.592885 0.600606 0.608444 0.61639 0.624439 0.632585 0.640821 0.649147 0.657563 0.666074 0.674694 0.683444 0.692355 0.701472 0.710857 0.720586 0.730752 0.741467 0.75286 0.764996 0.777779 0.792131 0.810189 0.548071 0.55408 0.561138 0.56847 0.575879 0.583414 0.591094 0.598913 0.606861 0.614932 0.623118 0.631411 0.639804 0.648292 0.656869 0.665535 0.674291 0.683147 0.692121 0.701241 0.710547 0.720097 0.729966 0.740246 0.751056 0.762534 0.774761 0.787666 0.802258 0.820852 0.551723 0.55808 0.56529 0.572774 0.580357 0.588075 0.595942 0.603953 0.612099 0.620373 0.628767 0.637273 0.645882 0.654586 0.663379 0.672258 0.681221 0.690276 0.699435 0.708723 0.718178 0.727852 0.737819 0.748174 0.759037 0.77056 0.782839 0.795827 0.810618 0.829697 0.55457 0.561228 0.568569 0.57618 0.583911 0.591784 0.59981 0.607984 0.616299 0.624745 0.633315 0.641999 0.650788 0.659673 0.668645 0.677698 0.68683 0.696042 0.705345 0.714759 0.724319 0.734074 0.744098 0.754484 0.765358 0.776883 0.789173 0.802204 0.817153 0.836665 0.556614 0.563523 0.570964 0.578674 0.586525 0.594524 0.60268 0.610988 0.619439 0.628025 0.636737 0.645566 0.654499 0.663526 0.672638 0.681825 0.691083 0.700409 0.709813 0.719309 0.728929 0.738721 0.748755 0.759128 0.769969 0.781453 0.793712 0.806746 0.821811 0.841703 0.557768 0.564925 0.572446 0.580234 0.58818 0.596278 0.604535 0.612946 0.621502 0.630195 0.639014 0.64795 0.656989 0.66612 0.675331 0.68461 0.69395 0.703347 0.712805 0.722337 0.731971 0.741752 0.751751 0.762063 0.772826 0.784226 0.79641 0.809405 0.824544 0.844764 0.558104 0.565434 0.573013 0.580854 0.588866 0.597034 0.605361 0.613843 0.622471 0.631236 0.640127 0.649133 0.658239 0.667433 0.676701 0.686028 0.695406 0.704827 0.714292 0.723812 0.733411 0.743133 0.753046 0.763251 0.77389 0.785158 0.797225 0.810141 0.825311 0.845806 0.557569 0.565027 0.572649 0.580521 0.58857 0.596779 0.605145 0.613666 0.622332 0.631134 0.64006 0.649097 0.658231 0.667446 0.676726 0.686058 0.695427 0.704824 0.714248 0.723705 0.733219 0.742831 0.75261 0.762659 0.773124 0.784216 0.796121 0.808917 0.824076 0.844792 0.556159 0.563704 0.571346 0.579224 0.587284 0.595502 0.603877 0.612404 0.621074 0.629877 0.638799 0.647828 0.656948 0.666141 0.675391 0.684679 0.693992 0.703317 0.712649 0.721993 0.73137 0.740821 0.750415 0.760256 0.770499 0.781368 0.793066 0.8057 0.820807 0.841694 0.553881 0.561466 0.569102 0.57696 0.585 0.593198 0.601549 0.610048 0.618687 0.627453 0.636334 0.645315 0.654379 0.663506 0.672679 0.681878 0.691086 0.700288 0.709477 0.718656 0.727844 0.73708 0.746436 0.756019 0.765991 0.776588 0.788035 0.800464 0.815478 0.836489 0.550734 0.55831 0.565913 0.573725 0.581715 0.58986 0.598154 0.606592 0.615163 0.623856 0.632657 0.641548 0.650513 0.659531 0.668581 0.677643 0.686696 0.695724 0.704718 0.713679 0.722624 0.731592 0.740656 0.749928 0.759578 0.769854 0.781004 0.793187 0.808068 0.829164 0.546713 0.55423 0.561776 0.569513 0.577424 0.585485 0.593689 0.602031 0.610499 0.619081 0.627761 0.636522 0.645345 0.654208 0.663089 0.671964 0.680813 0.689615 0.698361 0.70705 0.715698 0.724344 0.733063 0.74197 0.751245 0.761152 0.771957 0.78385 0.798563 0.819727 0.541817 0.549226 0.556688 0.564325 0.572126 0.58007 0.588152 0.596363 0.604691 0.613123 0.621643 0.630233 0.63887 0.647533 0.656197 0.664837 0.67343 0.681955 0.6904 0.698762 0.707057 0.715326 0.723644 0.732133 0.740981 0.750467 0.760877 0.772435 0.78695 0.808206 0.536046 0.543298 0.550652 0.558162 0.565821 0.573617 0.581543 0.589588 0.59774 0.605985 0.614305 0.62268 0.631089 0.639506 0.647906 0.656262 0.664549 0.672744 0.680834 0.688816 0.696704 0.704541 0.712405 0.720422 0.728791 0.737802 0.74776 0.758918 0.77314 0.794349 0.358793 0.34872 0.332936 0.316414 0.299504 0.282444 0.265349 0.248232 0.231113 0.214019 0.196974 0.180005 0.163138 0.146399 0.129817 0.113446 0.0973698 0.0810999 0.0652681 0.0497322 0.0344641 0.0194821 0.00480055 -0.00956913 -0.0236165 -0.0373326 -0.05071 -0.0637434 -0.0764289 -0.0887639 0.356404 0.346647 0.331948 0.315857 0.29918 0.282188 0.265029 0.24778 0.230489 0.213194 0.19593 0.178727 0.161616 0.144625 0.127777 0.111098 0.0946447 0.0783187 0.0622917 0.0465293 0.03104 0.0158449 0.000959272 -0.013604 -0.0278331 -0.0417183 -0.0552514 -0.0684263 -0.0812383 -0.0936836 0.358824 0.346376 0.33119 0.314986 0.298199 0.281032 0.263647 0.246141 0.228577 0.211003 0.193459 0.175982 0.158603 0.141353 0.124257 0.107339 0.090645 0.0741639 0.0579553 0.0420249 0.0263891 0.0110671 -0.00392543 -0.0185749 -0.0328692 -0.0467979 -0.0603528 -0.0735274 -0.0863169 -0.0987168 0.36121 0.347076 0.33136 0.314849 0.297791 0.280351 0.262676 0.244867 0.226991 0.209103 0.191249 0.173468 0.155796 0.138265 0.120905 0.103744 0.086813 0.0701199 0.0537099 0.0375997 0.0218064 0.00634796 -0.00875976 -0.0235028 -0.0378689 -0.0518479 -0.0654313 -0.0786132 -0.0913887 -0.103754 0.363115 0.347936 0.331718 0.314829 0.297441 0.279691 0.261708 0.243583 0.22539 0.207186 0.189019 0.170934 0.152967 0.135154 0.117526 0.100115 0.0829482 0.0660432 0.0494368 0.0331498 0.0172007 0.00160762 -0.0136132 -0.0284476 -0.0428832 -0.0569099 -0.0705195 -0.0837064 -0.0964659 -0.108794 0.364876 0.348826 0.332059 0.314736 0.296974 0.278883 0.260567 0.242115 0.223597 0.205073 0.186593 0.168203 0.149944 0.131852 0.113962 0.0963048 0.0789105 0.0618017 0.0450096 0.028557 0.0124638 -0.00325128 -0.0185718 -0.0334833 -0.0479736 -0.0620327 -0.0756527 -0.0888284 -0.101555 -0.113831 0.366526 0.349708 0.332372 0.31458 0.296411 0.277947 0.259278 0.240482 0.221629 0.202779 0.183983 0.165289 0.146739 0.128372 0.110225 0.0923284 0.0747146 0.0574095 0.0404417 0.023835 0.00761038 -0.00821319 -0.023619 -0.0385926 -0.053122 -0.0671973 -0.0808113 -0.0939594 -0.106637 -0.118843 0.368027 0.350533 0.332636 0.31436 0.295759 0.2769 0.257858 0.238706 0.21951 0.200328 0.181214 0.162216 0.143378 0.12474 0.106341 0.0882127 0.0703882 0.0528955 0.0357624 0.0190133 0.00266992 -0.0132487 -0.0287257 -0.0437468 -0.0583003 -0.0723769 -0.0859698 -0.0990752 -0.11169 -0.123812 0.36938 0.351271 0.332827 0.31406 0.295012 0.275742 0.256314 0.236795 0.217249 0.197732 0.178299 0.158998 0.139876 0.120973 0.102328 0.0839767 0.0659511 0.048281 0.0309941 0.0141153 -0.00233367 -0.0183334 -0.0338673 -0.0489213 -0.0634843 -0.0775474 -0.0911049 -0.104154 -0.116691 -0.128718 0.370599 0.351914 0.332935 0.313674 0.294171 0.274478 0.254654 0.234761 0.214859 0.195005 0.175253 0.155654 0.136251 0.11709 0.098208 0.0796425 0.0614264 0.0435902 0.0261619 0.00916635 -0.00737439 -0.0234411 -0.0390176 -0.0540902 -0.0686483 -0.0826842 -0.0961928 -0.109172 -0.121621 -0.133541 0.371702 0.352466 0.332961 0.313207 0.293244 0.27312 0.252893 0.232621 0.212361 0.19217 0.172102 0.152207 0.132531 0.113118 0.0940081 0.0752387 0.0568434 0.0388532 0.0212961 0.00419719 -0.0124217 -0.0285417 -0.0441468 -0.0592244 -0.0737646 -0.0877605 -0.101208 -0.114108 -0.126457 -0.138262 0.372708 0.352938 0.332916 0.312672 0.292246 0.271689 0.251055 0.230401 0.209782 0.189256 0.168875 0.148689 0.128746 0.109091 0.0897627 0.0708001 0.0522372 0.0341052 0.0164321 -0.000757237 -0.0174412 -0.0336013 -0.0492225 -0.0642929 -0.0788035 -0.0927487 -0.106126 -0.118937 -0.13118 -0.142864 0.373645 0.353351 0.332822 0.31209 0.291204 0.270212 0.24917 0.228133 0.207158 0.186299 0.165609 0.14514 0.124938 0.105048 0.0855122 0.0663674 0.0476484 0.0293864 0.0116094 -0.00565815 -0.0223952 -0.038584 -0.0542103 -0.0692631 -0.0837349 -0.0976213 -0.110921 -0.123638 -0.135771 -0.147331 0.374546 0.353738 0.332707 0.311494 0.290149 0.268726 0.247277 0.22586 0.204531 0.183343 0.162351 0.141605 0.121152 0.101038 0.0813036 0.0619871 0.0431228 0.0247418 0.00687174 -0.0104635 -0.0272436 -0.0434517 -0.0590745 -0.0741024 -0.0885291 -0.102352 -0.115571 -0.128191 -0.140214 -0.151651 0.375451 0.354136 0.332613 0.310925 0.289127 0.267275 0.245425 0.223632 0.201953 0.180442 0.159154 0.138138 0.117443 0.0971132 0.0771898 0.0577109 0.0387108 0.02022 0.00226565 -0.0151291 -0.0319449 -0.0481658 -0.06378 -0.078779 -0.0931581 -0.106916 -0.120055 -0.132581 -0.144497 -0.155819 0.376412 0.354599 0.332591 0.310435 0.288192 0.265918 0.243671 0.221507 0.199485 0.177658 0.15608 0.134802 0.113871 0.0933333 0.0732286 0.0535949 0.0344661 0.0158722 -0.00216063 -0.0196101 -0.0364577 -0.052689 -0.0682934 -0.0832639 -0.0975974 -0.111294 -0.124359 -0.136798 -0.148616 -0.159832 0.377488 0.355186 0.332704 0.31009 0.287408 0.26472 0.242082 0.219555 0.197195 0.175058 0.153196 0.131662 0.110503 0.0897621 0.0694814 0.0496977 0.0304441 0.01175 -0.00635941 -0.0238629 -0.0407432 -0.0569872 -0.0725857 -0.0875333 -0.101828 -0.115473 -0.128474 -0.140838 -0.152573 -0.163699 0.378753 0.355972 0.333026 0.309963 0.286852 0.263757 0.240736 0.217851 0.19516 0.172717 0.150577 0.128791 0.107406 0.0864655 0.0660106 0.0460776 0.0266988 0.00790272 -0.0102865 -0.0278487 -0.0447681 -0.0610329 -0.0766354 -0.0915717 -0.105842 -0.11945 -0.132403 -0.144712 -0.156383 -0.16744 0.380288 0.35704 0.33364 0.310138 0.286607 0.263112 0.239716 0.216478 0.193459 0.170714 0.148298 0.12626 0.104649 0.0835076 0.0628756 0.0427888 0.0232789 0.00437321 -0.0139051 -0.0315374 -0.0485088 -0.0648092 -0.0804323 -0.0953757 -0.109641 -0.123234 -0.136163 -0.14844 -0.160072 -0.171088 0.382186 0.358479 0.334637 0.310705 0.286761 0.262874 0.239106 0.215519 0.192174 0.169126 0.146431 0.124139 0.102296 0.0809461 0.0601279 0.0398765 0.0202226 0.00119251 -0.0171917 -0.0349125 -0.0519566 -0.068315 -0.0839828 -0.0989591 -0.113247 -0.126853 -0.139788 -0.152064 -0.163689 -0.174695 0.384541 0.360387 0.336111 0.311756 0.287406 0.263128 0.23899 0.215052 0.191378 0.168023 0.145041 0.122484 0.100397 0.0788245 0.0578036 0.0373688 0.0175499 -0.00162755 -0.0201428 -0.0379792 -0.0551249 -0.0715718 -0.0873165 -0.102359 -0.116704 -0.130359 -0.143336 -0.155648 -0.167303 -0.178337 0.387448 0.362854 0.338151 0.313378 0.28862 0.263952 0.239438 0.215144 0.19113 0.167454 0.144171 0.121332 0.0989811 0.0771623 0.0559131 0.035267 0.0152531 -0.00410419 -0.0227847 -0.0407731 -0.0580581 -0.0746329 -0.090495 -0.105646 -0.12009 -0.133836 -0.146898 -0.159288 -0.171014 -0.182117 0.39099 0.36596 0.34083 0.315636 0.290466 0.265398 0.240497 0.215831 0.191459 0.167442 0.143834 0.120684 0.098039 0.0759412 0.0544281 0.0335325 0.0132831 -0.00629626 -0.0251863 -0.0433722 -0.0608435 -0.0775942 -0.0936223 -0.10893 -0.123522 -0.137409 -0.150603 -0.163119 -0.174963 -0.186179 0.395221 0.36975 0.344188 0.318561 0.292965 0.267478 0.242169 0.217105 0.192347 0.167957 0.143987 0.120489 0.097508 0.075087 0.0532631 0.0320691 0.0115332 -0.00832106 -0.0274746 -0.045913 -0.0636264 -0.0806089 -0.0968589 -0.112379 -0.127174 -0.141255 -0.154635 -0.167326 -0.179335 -0.190711 0.400142 0.374218 0.348204 0.322121 0.296071 0.270135 0.244383 0.218883 0.193699 0.168889 0.144509 0.120611 0.0972405 0.0744397 0.0522464 0.0306935 0.00980928 -0.0103825 -0.0298629 -0.0486174 -0.0666361 -0.0839132 -0.100447 -0.11624 -0.131298 -0.14563 -0.159249 -0.172167 -0.18439 -0.195969 0.405668 0.379261 0.352759 0.326179 0.299631 0.273198 0.246953 0.220962 0.195293 0.170004 0.145152 0.120788 0.0969602 0.0737103 0.0510769 0.0290936 0.00778915 -0.0128121 -0.0326908 -0.0518319 -0.070225 -0.087864 -0.104747 -0.120876 -0.136256 -0.150896 -0.164808 -0.178005 -0.190486 -0.202308 0.411582 0.384647 0.357603 0.330466 0.303354 0.276355 0.249541 0.22298 0.196769 0.170934 0.145538 0.120635 0.0962734 0.0724976 0.0493468 0.0268558 0.00505472 -0.0160313 -0.0363817 -0.0559806 -0.0748169 -0.0928835 -0.110178 -0.126702 -0.142459 -0.157459 -0.171713 -0.185231 -0.198008 -0.210101 0.417479 0.389954 0.362292 0.334527 0.306782 0.279147 0.251697 0.224492 0.197664 0.171211 0.145196 0.119678 0.0947062 0.0703285 0.0465858 0.0235144 0.00114607 -0.0204925 -0.0413794 -0.0614974 -0.0808341 -0.0993816 -0.117136 -0.134099 -0.150275 -0.165671 -0.180299 -0.194166 -0.207267 -0.219643 0.422612 0.394299 0.365801 0.337242 0.308736 0.280387 0.252309 0.224418 0.196685 0.169389 0.142576 0.11628 0.09055 0.0654312 0.040966 0.0171922 -0.00585709 -0.0281533 -0.0496728 -0.0703969 -0.0903115 -0.109408 -0.127681 -0.145132 -0.161766 -0.177591 -0.19262 -0.206867 -0.220338 -0.23302 0.425815 0.396164 0.366279 0.336464 0.306728 0.277076 0.247541 0.218415 0.189763 0.161494 0.133666 0.106353 0.0796185 0.0535169 0.0280961 0.00339856 -0.0205386 -0.0436836 -0.0660096 -0.0874953 -0.108125 -0.127887 -0.146776 -0.164794 -0.181946 -0.198246 -0.213716 -0.228404 -0.242377 -0.255476 -0.100764 -0.112408 -0.12371 -0.134678 -0.145321 -0.155649 -0.165674 -0.17541 -0.184873 -0.194079 -0.203045 -0.211787 -0.220326 -0.228676 -0.236858 -0.244886 -0.252779 -0.260553 -0.268224 -0.27581 -0.283332 -0.290815 -0.298293 -0.305811 -0.313438 -0.321284 -0.329275 -0.336926 -0.344457 -0.334669 -0.105782 -0.117502 -0.128864 -0.139872 -0.150535 -0.160862 -0.170863 -0.180551 -0.189939 -0.199042 -0.207875 -0.216452 -0.22479 -0.232904 -0.240808 -0.248517 -0.256044 -0.263405 -0.27061 -0.277674 -0.284608 -0.291425 -0.298136 -0.304739 -0.311211 -0.317453 -0.323069 -0.327044 -0.327722 -0.312519 -0.11075 -0.12238 -0.133629 -0.144502 -0.155007 -0.165153 -0.174951 -0.184414 -0.193555 -0.202389 -0.210931 -0.219197 -0.227203 -0.234964 -0.242496 -0.249813 -0.256929 -0.263856 -0.270606 -0.277185 -0.2836 -0.289846 -0.295908 -0.301744 -0.307255 -0.312227 -0.316138 -0.317993 -0.316565 -0.30571 -0.115735 -0.12729 -0.138444 -0.149205 -0.159578 -0.169575 -0.179208 -0.188488 -0.197431 -0.206051 -0.214365 -0.222388 -0.230137 -0.237627 -0.244874 -0.251893 -0.258695 -0.265293 -0.271694 -0.277902 -0.283914 -0.289717 -0.295276 -0.300524 -0.305332 -0.309456 -0.312414 -0.313414 -0.31159 -0.303825 -0.120722 -0.132202 -0.143262 -0.153911 -0.164156 -0.174008 -0.18348 -0.192584 -0.201337 -0.209753 -0.21785 -0.225643 -0.233149 -0.240385 -0.247365 -0.254104 -0.260614 -0.266905 -0.272982 -0.278847 -0.284491 -0.289893 -0.29501 -0.299765 -0.304023 -0.307554 -0.309965 -0.310674 -0.309059 -0.303489 -0.12569 -0.137078 -0.148028 -0.15855 -0.168651 -0.178344 -0.187641 -0.196557 -0.205109 -0.213312 -0.221183 -0.22874 -0.236 -0.242979 -0.249694 -0.256157 -0.262381 -0.268375 -0.274144 -0.279686 -0.28499 -0.290032 -0.294767 -0.299116 -0.302954 -0.306086 -0.308209 -0.308921 -0.30782 -0.304124 -0.130618 -0.141899 -0.152724 -0.163105 -0.173051 -0.182573 -0.191686 -0.200406 -0.20875 -0.216735 -0.224379 -0.231701 -0.238717 -0.245445 -0.251902 -0.258101 -0.264054 -0.269772 -0.275256 -0.280506 -0.285509 -0.290242 -0.294659 -0.298692 -0.30223 -0.305118 -0.307133 -0.308011 -0.307518 -0.30533 -0.135489 -0.146651 -0.15734 -0.16757 -0.17735 -0.186694 -0.195618 -0.204139 -0.212273 -0.220041 -0.227461 -0.234551 -0.241331 -0.247819 -0.254031 -0.259982 -0.265685 -0.271148 -0.276377 -0.281368 -0.286112 -0.290585 -0.294749 -0.298543 -0.301879 -0.304636 -0.306657 -0.307774 -0.307858 -0.306813 -0.140286 -0.151317 -0.161861 -0.171933 -0.181541 -0.190703 -0.199435 -0.207754 -0.215681 -0.223235 -0.230435 -0.237303 -0.243857 -0.250117 -0.256099 -0.261821 -0.267294 -0.272528 -0.277529 -0.282296 -0.286819 -0.291079 -0.295045 -0.298665 -0.301871 -0.304573 -0.306662 -0.308033 -0.308623 -0.308431 -0.14499 -0.155883 -0.166275 -0.176182 -0.185616 -0.194593 -0.203132 -0.211253 -0.218976 -0.226322 -0.233311 -0.239966 -0.246307 -0.252354 -0.258124 -0.263635 -0.268901 -0.273931 -0.278733 -0.283307 -0.287646 -0.291735 -0.295547 -0.299045 -0.302174 -0.304868 -0.307053 -0.308666 -0.309677 -0.310125 -0.149586 -0.160335 -0.17057 -0.180311 -0.189569 -0.198363 -0.206713 -0.21464 -0.222166 -0.229313 -0.236102 -0.242557 -0.2487 -0.25455 -0.260127 -0.265449 -0.270529 -0.275381 -0.280011 -0.284421 -0.288609 -0.292561 -0.296259 -0.299671 -0.302758 -0.305472 -0.307762 -0.309589 -0.310942 -0.311868 -0.154059 -0.164662 -0.174739 -0.184313 -0.193399 -0.202014 -0.210182 -0.217923 -0.225262 -0.232221 -0.238825 -0.245095 -0.251056 -0.256728 -0.262131 -0.267285 -0.272203 -0.2769 -0.281384 -0.285658 -0.289722 -0.293567 -0.297179 -0.300533 -0.303601 -0.306347 -0.308736 -0.310744 -0.312369 -0.313652 -0.158398 -0.168854 -0.178776 -0.18819 -0.197108 -0.205553 -0.213548 -0.221115 -0.22828 -0.235067 -0.241499 -0.247602 -0.253399 -0.258913 -0.264163 -0.26917 -0.273949 -0.278514 -0.282875 -0.287037 -0.291001 -0.294762 -0.298309 -0.301623 -0.304684 -0.307465 -0.309941 -0.312097 -0.313931 -0.315481 -0.162593 -0.172909 -0.182683 -0.191943 -0.200705 -0.208991 -0.216826 -0.224234 -0.23124 -0.237871 -0.244151 -0.250106 -0.255759 -0.261134 -0.266253 -0.271134 -0.275794 -0.280249 -0.284507 -0.288578 -0.292461 -0.296155 -0.299652 -0.302939 -0.305998 -0.308809 -0.311356 -0.313626 -0.315619 -0.317363 -0.166643 -0.176827 -0.186464 -0.195583 -0.204203 -0.212345 -0.220037 -0.227303 -0.23417 -0.240664 -0.246812 -0.252638 -0.258169 -0.263426 -0.268433 -0.273209 -0.27777 -0.282133 -0.286309 -0.290304 -0.294122 -0.297762 -0.301219 -0.304483 -0.307539 -0.310373 -0.312972 -0.315325 -0.317433 -0.319316 -0.170552 -0.180618 -0.190132 -0.199128 -0.207623 -0.215641 -0.223208 -0.230353 -0.237102 -0.243481 -0.249517 -0.255237 -0.260666 -0.265827 -0.270743 -0.275432 -0.279914 -0.284202 -0.288309 -0.292243 -0.296007 -0.299602 -0.303024 -0.306265 -0.309315 -0.312161 -0.314791 -0.3172 -0.319385 -0.321362 -0.174333 -0.1843 -0.193711 -0.202604 -0.210995 -0.218911 -0.226378 -0.233425 -0.240078 -0.246365 -0.252313 -0.257949 -0.263298 -0.268383 -0.273226 -0.277848 -0.282266 -0.286495 -0.290546 -0.294429 -0.298147 -0.301702 -0.30509 -0.308306 -0.311341 -0.314185 -0.316829 -0.319267 -0.321495 -0.323527 -0.17801 -0.187901 -0.197234 -0.206049 -0.214362 -0.222201 -0.229593 -0.236567 -0.24315 -0.24937 -0.255253 -0.260828 -0.266118 -0.271146 -0.275936 -0.280507 -0.284876 -0.289057 -0.293063 -0.296902 -0.300579 -0.304095 -0.307448 -0.310633 -0.313644 -0.316472 -0.31911 -0.321551 -0.323793 -0.325848 -0.181623 -0.191466 -0.200749 -0.209514 -0.217779 -0.225569 -0.232914 -0.239842 -0.246381 -0.252559 -0.258402 -0.263938 -0.269189 -0.274181 -0.278935 -0.283469 -0.287801 -0.291945 -0.295913 -0.299713 -0.30335 -0.306825 -0.310139 -0.313286 -0.316261 -0.319057 -0.321668 -0.32409 -0.326318 -0.328365 -0.185228 -0.195056 -0.204322 -0.213069 -0.221316 -0.229089 -0.236417 -0.243328 -0.24985 -0.256011 -0.261838 -0.267356 -0.272589 -0.277562 -0.282294 -0.286804 -0.29111 -0.295224 -0.299159 -0.302921 -0.306518 -0.309949 -0.313216 -0.316314 -0.31924 -0.321988 -0.324553 -0.326932 -0.329119 -0.33113 -0.188906 -0.198755 -0.208039 -0.216803 -0.225066 -0.232854 -0.240195 -0.247119 -0.253651 -0.259821 -0.265653 -0.271174 -0.276408 -0.281376 -0.2861 -0.290597 -0.294884 -0.298973 -0.302876 -0.306601 -0.310153 -0.313535 -0.316745 -0.319783 -0.322645 -0.325326 -0.327825 -0.330137 -0.332258 -0.334205 -0.192764 -0.202674 -0.212013 -0.220832 -0.229146 -0.236981 -0.244367 -0.251331 -0.2579 -0.264102 -0.269962 -0.275504 -0.280754 -0.285731 -0.290457 -0.294948 -0.29922 -0.303287 -0.307158 -0.310842 -0.314343 -0.317665 -0.320808 -0.323771 -0.326552 -0.329148 -0.331558 -0.333779 -0.335807 -0.337662 -0.196948 -0.206959 -0.216393 -0.225303 -0.233702 -0.241618 -0.249077 -0.256109 -0.262738 -0.268993 -0.274899 -0.280479 -0.285756 -0.290753 -0.295487 -0.299976 -0.304236 -0.308278 -0.312113 -0.315748 -0.31919 -0.322441 -0.325503 -0.328375 -0.331057 -0.333547 -0.335844 -0.337949 -0.339856 -0.34159 -0.201645 -0.211799 -0.221367 -0.230402 -0.23892 -0.246946 -0.254505 -0.261627 -0.268338 -0.274663 -0.280628 -0.286257 -0.291571 -0.296591 -0.301337 -0.305824 -0.310068 -0.31408 -0.317871 -0.321449 -0.324818 -0.327984 -0.330948 -0.333711 -0.336272 -0.338633 -0.340793 -0.342753 -0.34451 -0.34609 -0.207111 -0.217445 -0.22718 -0.236374 -0.245039 -0.253199 -0.26088 -0.268111 -0.274917 -0.281323 -0.287356 -0.293037 -0.29839 -0.303434 -0.308188 -0.312668 -0.316888 -0.32086 -0.324595 -0.3281 -0.331381 -0.334443 -0.337288 -0.339919 -0.342337 -0.344542 -0.346538 -0.348325 -0.349898 -0.351288 -0.213691 -0.224235 -0.234168 -0.243545 -0.252378 -0.260688 -0.268504 -0.275852 -0.282758 -0.289249 -0.295348 -0.301079 -0.306464 -0.311523 -0.316274 -0.320733 -0.324915 -0.32883 -0.33249 -0.335902 -0.339073 -0.342007 -0.344709 -0.347182 -0.349428 -0.35145 -0.353251 -0.354831 -0.356186 -0.357343 -0.221743 -0.232517 -0.242664 -0.25224 -0.26125 -0.269716 -0.277667 -0.285129 -0.29213 -0.298694 -0.304848 -0.310614 -0.316015 -0.321071 -0.3258 -0.330217 -0.334337 -0.338172 -0.341732 -0.345025 -0.348058 -0.350837 -0.353367 -0.355652 -0.357696 -0.359503 -0.361077 -0.362419 -0.363518 -0.364394 -0.231527 -0.242532 -0.252899 -0.26267 -0.27185 -0.28046 -0.28853 -0.296088 -0.30316 -0.309775 -0.315957 -0.321731 -0.32712 -0.332143 -0.33682 -0.341165 -0.345194 -0.348917 -0.352346 -0.355489 -0.358353 -0.360944 -0.363269 -0.365333 -0.367143 -0.368703 -0.370019 -0.371093 -0.37191 -0.37246 -0.244968 -0.2562 -0.26679 -0.276732 -0.286042 -0.294749 -0.302885 -0.310479 -0.317563 -0.324163 -0.330308 -0.336024 -0.341333 -0.346256 -0.350812 -0.355018 -0.358887 -0.362432 -0.365663 -0.368587 -0.371213 -0.373547 -0.375596 -0.377367 -0.37887 -0.380112 -0.381105 -0.381862 -0.382391 -0.382567 -0.266877 -0.278372 -0.289222 -0.299289 -0.308644 -0.317344 -0.325429 -0.332937 -0.339902 -0.346355 -0.352327 -0.357846 -0.362936 -0.36762 -0.371916 -0.375844 -0.379415 -0.382643 -0.385535 -0.388101 -0.390346 -0.392278 -0.393902 -0.395231 -0.396276 -0.397059 -0.397607 -0.397991 -0.398308 -0.398144 -0.395782 -0.382155 -0.372853 -0.365186 -0.358432 -0.352612 -0.347601 -0.343248 -0.339435 -0.336063 -0.333045 -0.330308 -0.327791 -0.32544 -0.32321 -0.321061 -0.318956 -0.316863 -0.314744 -0.312561 -0.310262 -0.307778 -0.304999 -0.30174 -0.297705 -0.292489 -0.285197 -0.272491 -0.248312 -0.224472 -0.395083 -0.381917 -0.373032 -0.365707 -0.359244 -0.353663 -0.348846 -0.34465 -0.34096 -0.337679 -0.334725 -0.332023 -0.329513 -0.32714 -0.324856 -0.322617 -0.320382 -0.318108 -0.31575 -0.313255 -0.310556 -0.307564 -0.304156 -0.30015 -0.295298 -0.289362 -0.281927 -0.271011 -0.253473 -0.241062 -0.394502 -0.381655 -0.373121 -0.366107 -0.359918 -0.35457 -0.349944 -0.345904 -0.342338 -0.339151 -0.336262 -0.333599 -0.331102 -0.328715 -0.32639 -0.324082 -0.321747 -0.319341 -0.316816 -0.314118 -0.311184 -0.307937 -0.304278 -0.300081 -0.295205 -0.289567 -0.283018 -0.27443 -0.262651 -0.258227 -0.393683 -0.381271 -0.37312 -0.366411 -0.360488 -0.355366 -0.350929 -0.347042 -0.343598 -0.340505 -0.337684 -0.335065 -0.332588 -0.330199 -0.327851 -0.325499 -0.3231 -0.320612 -0.317991 -0.315188 -0.312151 -0.308821 -0.305129 -0.300997 -0.296354 -0.291205 -0.285501 -0.278427 -0.269452 -0.268045 -0.39272 -0.380786 -0.373035 -0.366626 -0.360963 -0.356064 -0.351812 -0.348076 -0.344754 -0.341757 -0.339007 -0.336438 -0.333991 -0.331614 -0.329263 -0.326894 -0.324468 -0.321946 -0.319292 -0.316466 -0.313428 -0.310141 -0.306562 -0.302652 -0.298392 -0.293838 -0.289005 -0.283234 -0.276131 -0.276058 -0.39169 -0.380227 -0.372884 -0.36677 -0.361363 -0.356682 -0.352611 -0.349027 -0.345827 -0.342927 -0.340253 -0.33774 -0.335333 -0.332984 -0.330648 -0.328287 -0.325867 -0.323354 -0.320717 -0.317928 -0.314961 -0.311793 -0.308404 -0.304782 -0.300936 -0.296947 -0.292859 -0.288097 -0.282304 -0.282896 -0.390646 -0.379617 -0.37269 -0.366866 -0.361708 -0.357241 -0.353351 -0.349914 -0.346837 -0.344037 -0.341443 -0.338993 -0.336637 -0.334327 -0.332025 -0.329695 -0.327307 -0.324834 -0.322253 -0.319543 -0.316688 -0.313678 -0.310509 -0.307183 -0.303724 -0.300219 -0.296715 -0.292696 -0.287813 -0.288686 -0.389619 -0.378987 -0.372481 -0.366936 -0.362022 -0.357766 -0.354051 -0.350762 -0.347807 -0.345108 -0.342597 -0.340218 -0.33792 -0.335662 -0.333407 -0.331126 -0.328791 -0.326382 -0.323881 -0.321274 -0.318553 -0.315718 -0.312771 -0.309723 -0.306604 -0.303497 -0.300447 -0.296978 -0.29275 -0.293681 -0.388581 -0.378404 -0.372294 -0.367008 -0.362331 -0.358279 -0.354736 -0.351591 -0.348757 -0.34616 -0.343736 -0.341431 -0.339199 -0.337002 -0.334806 -0.332586 -0.330319 -0.327989 -0.325582 -0.32309 -0.320512 -0.31785 -0.315113 -0.312315 -0.309485 -0.3067 -0.303997 -0.300941 -0.297202 -0.298065 -0.387587 -0.377889 -0.372147 -0.367106 -0.362657 -0.358803 -0.355427 -0.352423 -0.349709 -0.347214 -0.344878 -0.342651 -0.340489 -0.338359 -0.33623 -0.33408 -0.331889 -0.329646 -0.32734 -0.324967 -0.322529 -0.320031 -0.317484 -0.314903 -0.312314 -0.309786 -0.307348 -0.304604 -0.301241 -0.301964 -0.386684 -0.377533 -0.372002 -0.367245 -0.363027 -0.359362 -0.356146 -0.35328 -0.350682 -0.348288 -0.346041 -0.343893 -0.341804 -0.339744 -0.337686 -0.33561 -0.3335 -0.331346 -0.329142 -0.326885 -0.324579 -0.322231 -0.319852 -0.317455 -0.315065 -0.312739 -0.310504 -0.307999 -0.30493 -0.305474 -0.385846 -0.377313 -0.371969 -0.367464 -0.363462 -0.359978 -0.356916 -0.354181 -0.351697 -0.349401 -0.347241 -0.345171 -0.343157 -0.341168 -0.339182 -0.33718 -0.335151 -0.333085 -0.330979 -0.328831 -0.326646 -0.324431 -0.322197 -0.319955 -0.317726 -0.315561 -0.313479 -0.311158 -0.308326 -0.30867 -0.385195 -0.377196 -0.37206 -0.367784 -0.363987 -0.360674 -0.357758 -0.355148 -0.352772 -0.350571 -0.348494 -0.346501 -0.344558 -0.342639 -0.340724 -0.338795 -0.336844 -0.334862 -0.332846 -0.330798 -0.328721 -0.326623 -0.324511 -0.322398 -0.3203 -0.318261 -0.316295 -0.314116 -0.311475 -0.31161 -0.38476 -0.377216 -0.372293 -0.368231 -0.364623 -0.361471 -0.358692 -0.3562 -0.353925 -0.351813 -0.349815 -0.347895 -0.346021 -0.344169 -0.34232 -0.34046 -0.338581 -0.336676 -0.334743 -0.332784 -0.330801 -0.328802 -0.326795 -0.324787 -0.322794 -0.320853 -0.318975 -0.316907 -0.314421 -0.314343 -0.384554 -0.377406 -0.372691 -0.368825 -0.365394 -0.36239 -0.359738 -0.357355 -0.355175 -0.353145 -0.351221 -0.349368 -0.347557 -0.345766 -0.343978 -0.342182 -0.340368 -0.338532 -0.336672 -0.33479 -0.332889 -0.330974 -0.329052 -0.327131 -0.325222 -0.323356 -0.321544 -0.319565 -0.317205 -0.316902 -0.384592 -0.377794 -0.373275 -0.36959 -0.366319 -0.363451 -0.360916 -0.358632 -0.356538 -0.354582 -0.352725 -0.350932 -0.349178 -0.347442 -0.345709 -0.343967 -0.342211 -0.340435 -0.338638 -0.336822 -0.334989 -0.333144 -0.331294 -0.329442 -0.3276 -0.325792 -0.324029 -0.322125 -0.319856 -0.319273 -0.384893 -0.378404 -0.374067 -0.370545 -0.367418 -0.364675 -0.362244 -0.360049 -0.35803 -0.356141 -0.354342 -0.352602 -0.350896 -0.349208 -0.347521 -0.345827 -0.344119 -0.342393 -0.340649 -0.338888 -0.337111 -0.335324 -0.33353 -0.331735 -0.329946 -0.328183 -0.326456 -0.324601 -0.322413 -0.321571 -0.385477 -0.379257 -0.375086 -0.371709 -0.368712 -0.366078 -0.363739 -0.361621 -0.359669 -0.357836 -0.356086 -0.354389 -0.352725 -0.351074 -0.349426 -0.34777 -0.346101 -0.344416 -0.342715 -0.340997 -0.339266 -0.337524 -0.335777 -0.334027 -0.332282 -0.330559 -0.328865 -0.327062 -0.325013 -0.324221 -0.386361 -0.380375 -0.376352 -0.373103 -0.370218 -0.367679 -0.365418 -0.363367 -0.361469 -0.359681 -0.357971 -0.356309 -0.354675 -0.353054 -0.351434 -0.349807 -0.348168 -0.346514 -0.344844 -0.34316 -0.341463 -0.339756 -0.338044 -0.336328 -0.334616 -0.332922 -0.331249 -0.32948 -0.327519 -0.326647 -0.387565 -0.381777 -0.377882 -0.374743 -0.371954 -0.369494 -0.367299 -0.3653 -0.363445 -0.361692 -0.36001 -0.358373 -0.35676 -0.355159 -0.353558 -0.351949 -0.35033 -0.348697 -0.347049 -0.345388 -0.343715 -0.342033 -0.340345 -0.338654 -0.336964 -0.335288 -0.333629 -0.331886 -0.329988 -0.329005 -0.389106 -0.383482 -0.379694 -0.376646 -0.373936 -0.371539 -0.369395 -0.367436 -0.365612 -0.363882 -0.362218 -0.360594 -0.358992 -0.3574 -0.355807 -0.354208 -0.352599 -0.350976 -0.349341 -0.347693 -0.346034 -0.344367 -0.342694 -0.341018 -0.339342 -0.337677 -0.336024 -0.3343 -0.332451 -0.331364 -0.391 -0.385506 -0.381805 -0.378829 -0.376179 -0.37383 -0.371722 -0.369789 -0.367982 -0.366264 -0.364605 -0.362984 -0.361382 -0.359789 -0.358195 -0.356595 -0.354985 -0.353363 -0.35173 -0.350086 -0.348432 -0.346771 -0.345104 -0.343435 -0.341765 -0.340103 -0.33845 -0.336738 -0.334925 -0.333747 -0.393264 -0.387866 -0.384229 -0.381306 -0.378698 -0.376381 -0.374293 -0.372372 -0.37057 -0.368851 -0.367186 -0.365555 -0.363943 -0.362337 -0.360731 -0.35912 -0.357499 -0.355869 -0.354228 -0.352578 -0.35092 -0.349256 -0.347587 -0.345916 -0.344245 -0.342581 -0.340924 -0.339217 -0.337429 -0.336174 -0.395913 -0.390578 -0.386982 -0.38409 -0.381506 -0.379203 -0.377121 -0.375198 -0.373387 -0.371653 -0.36997 -0.368319 -0.366684 -0.365055 -0.363427 -0.361793 -0.360152 -0.358502 -0.356845 -0.35518 -0.353508 -0.351833 -0.350154 -0.348475 -0.346796 -0.345124 -0.343457 -0.341749 -0.339977 -0.33866 -0.398965 -0.393654 -0.390074 -0.387194 -0.384615 -0.382309 -0.380217 -0.378277 -0.376443 -0.374682 -0.372969 -0.371285 -0.369616 -0.367953 -0.36629 -0.364624 -0.362952 -0.361274 -0.359589 -0.3579 -0.356206 -0.354511 -0.352815 -0.35112 -0.349427 -0.347741 -0.346061 -0.344346 -0.342579 -0.341215 -0.402436 -0.397107 -0.393519 -0.390629 -0.388035 -0.38571 -0.383593 -0.381621 -0.379751 -0.377949 -0.376192 -0.374463 -0.372748 -0.371039 -0.369331 -0.367622 -0.365908 -0.364191 -0.36247 -0.360747 -0.359023 -0.357299 -0.355578 -0.353859 -0.352146 -0.350441 -0.348744 -0.347016 -0.345244 -0.343848 -0.406346 -0.400946 -0.397323 -0.394402 -0.391777 -0.389415 -0.387256 -0.385239 -0.383318 -0.381462 -0.379649 -0.377861 -0.376088 -0.374322 -0.372558 -0.370793 -0.369028 -0.367261 -0.365494 -0.363728 -0.361964 -0.360204 -0.358449 -0.3567 -0.35496 -0.353231 -0.351512 -0.349765 -0.347978 -0.346563 -0.410738 -0.405183 -0.401491 -0.39852 -0.395845 -0.393431 -0.391217 -0.389138 -0.387153 -0.38523 -0.383347 -0.381489 -0.379645 -0.377809 -0.375976 -0.374146 -0.372317 -0.370491 -0.368667 -0.366848 -0.365035 -0.36323 -0.361434 -0.359648 -0.357873 -0.356114 -0.354368 -0.352596 -0.350783 -0.349361 -0.41567 -0.409815 -0.406014 -0.402979 -0.40024 -0.397762 -0.395478 -0.393325 -0.391262 -0.389257 -0.387291 -0.38535 -0.383423 -0.381505 -0.379592 -0.377685 -0.375782 -0.373884 -0.371994 -0.370112 -0.368241 -0.366382 -0.364536 -0.362705 -0.360889 -0.359094 -0.357316 -0.355512 -0.353661 -0.35224 -0.420895 -0.414767 -0.410885 -0.407789 -0.404981 -0.402425 -0.400057 -0.397815 -0.395658 -0.393557 -0.391494 -0.389455 -0.387431 -0.385418 -0.383413 -0.381415 -0.379426 -0.377447 -0.375479 -0.373524 -0.371584 -0.369662 -0.367758 -0.365874 -0.364011 -0.362173 -0.360358 -0.358515 -0.356614 -0.355205 -0.35856 -0.325982 -0.31972 -0.288511 -0.269923 -0.238766 -0.211992 -0.180287 -0.150763 -0.120812 -0.0935496 -0.0684422 -0.0467862 -0.0283818 -0.0135827 -0.00227716 0.00582225 0.0110741 0.0138475 0.0146696 0.0140708 0.0125938 0.0106934 0.0087156 0.00687729 0.00528948 0.00398356 0.00294841 0.00214846 0.00154405 0.00109385 0.000765397 0.000526675 0.000359398 0.000238199 0.000159883 9.73508e-05 6.76315e-05 2.56573e-05 2.81958e-05 -0.362882 -0.328671 -0.322819 -0.290994 -0.272298 -0.240733 -0.213622 -0.181521 -0.151634 -0.121352 -0.0938209 -0.0685136 -0.0467267 -0.0282571 -0.0134495 -0.00215117 0.0059101 0.0111158 0.0138466 0.0146354 0.0140148 0.0125265 0.0106232 0.00864752 0.00681436 0.00523289 0.00393366 0.00290504 0.00211118 0.00151239 0.00106718 0.000743254 0.000508464 0.000344702 0.000226499 0.000150932 9.06297e-05 6.33444e-05 2.27249e-05 2.83191e-05 -0.367589 -0.331282 -0.326075 -0.293536 -0.274758 -0.242789 -0.215353 -0.182874 -0.152634 -0.122035 -0.0942386 -0.0687308 -0.0468052 -0.0282581 -0.0134242 -0.00211719 0.00592402 0.0111003 0.0138028 0.0145701 0.0139368 0.012444 0.0105425 0.00857238 0.00674669 0.00517311 0.00388163 0.00286024 0.00207294 0.00148006 0.00104007 0.000720785 0.000490031 0.000329842 0.000214689 0.000141911 8.38437e-05 5.90118e-05 1.97875e-05 2.84257e-05 -0.37268 -0.333827 -0.329459 -0.296124 -0.27729 -0.244923 -0.217175 -0.184338 -0.153759 -0.122857 -0.0947999 -0.0690918 -0.0470204 -0.0283839 -0.0135066 -0.00217506 0.00586404 0.0110274 0.0137162 0.0144736 0.0138368 0.0123463 0.0104515 0.00849024 0.00667434 0.00511019 0.00382749 0.00281402 0.00203375 0.00144707 0.00101252 0.000698005 0.000471388 0.000314836 0.000202775 0.000132826 7.70079e-05 5.46441e-05 1.68444e-05 2.85131e-05 -0.3781 -0.336344 -0.332951 -0.298751 -0.279882 -0.247127 -0.219079 -0.185907 -0.155004 -0.123813 -0.0955014 -0.069594 -0.0473704 -0.028633 -0.0136959 -0.00232398 0.00573061 0.0108975 0.0135868 0.0143461 0.0137149 0.0122334 0.0103501 0.00840113 0.00659732 0.00504415 0.00377125 0.0027664 0.00199361 0.00141343 0.000984523 0.000674915 0.000452534 0.000299685 0.000190761 0.000123676 7.01255e-05 5.02431e-05 1.38925e-05 2.85808e-05 -0.383825 -0.338842 -0.336537 -0.301409 -0.282522 -0.249393 -0.221059 -0.187576 -0.156363 -0.124898 -0.0963394 -0.0702343 -0.0478526 -0.0290034 -0.0139908 -0.00256296 0.00552435 0.0107109 0.0134149 0.0141878 0.0135712 0.0121054 0.0102385 0.0083051 0.00651567 0.004975 0.00371294 0.00271737 0.00195252 0.00137914 0.000956085 0.000651521 0.000433472 0.00028439 0.00017865 0.00011446 6.32026e-05 4.58124e-05 1.09303e-05 2.86294e-05 -0.389841 -0.341318 -0.340197 -0.304094 -0.285196 -0.251712 -0.223104 -0.189336 -0.15783 -0.126109 -0.0973098 -0.0710092 -0.0484641 -0.0294928 -0.0143898 -0.00289069 0.00524612 0.0104681 0.0132009 0.0139988 0.0134058 0.0119625 0.0101167 0.00820218 0.00642941 0.00490276 0.00365256 0.00266695 0.0019105 0.00134422 0.000927208 0.000627826 0.000414203 0.000268954 0.000166444 0.000105179 5.62389e-05 4.13514e-05 7.95765e-06 2.86577e-05 -0.396137 -0.343775 -0.343914 -0.306801 -0.287893 -0.254077 -0.225207 -0.191182 -0.159399 -0.127439 -0.098408 -0.0719147 -0.0492015 -0.0300985 -0.0148909 -0.00330562 0.00489697 0.01017 0.0129451 0.0137795 0.0132189 0.0118047 0.00998482 0.00809243 0.00633857 0.00482745 0.00359013 0.00261516 0.00186754 0.00130865 0.000897896 0.000603833 0.000394729 0.000253378 0.000154143 9.58319e-05 4.92345e-05 3.686e-05 4.97473e-06 2.86644e-05 -0.402698 -0.346219 -0.347668 -0.309529 -0.290601 -0.256481 -0.227361 -0.193106 -0.161065 -0.128884 -0.0996294 -0.0729466 -0.0500614 -0.0308175 -0.0154918 -0.00380594 0.00447815 0.00981725 0.0126482 0.0135302 0.013011 0.0116321 0.00984283 0.00797589 0.0062432 0.00474911 0.00352567 0.002562 0.00182365 0.00127246 0.000868154 0.000579543 0.000375051 0.000237661 0.000141747 8.64204e-05 4.21896e-05 3.23378e-05 1.98163e-06 2.86482e-05 -0.409513 -0.348659 -0.35144 -0.312275 -0.293308 -0.258919 -0.229558 -0.195104 -0.162822 -0.130437 -0.100969 -0.0741004 -0.0510396 -0.0316465 -0.0161899 -0.00438966 0.00399107 0.00941083 0.0123107 0.0132511 0.0127817 0.0114444 0.00969083 0.00785261 0.00614331 0.00466773 0.00345918 0.00250748 0.00177885 0.00123565 0.000837985 0.000554961 0.000355172 0.000221807 0.000129258 7.69443e-05 3.51042e-05 2.77848e-05 -1.02154e-06 2.8608e-05 -0.416568 -0.351109 -0.35521 -0.31504 -0.296006 -0.261384 -0.231793 -0.197168 -0.164664 -0.132095 -0.102422 -0.0753714 -0.0521322 -0.0325819 -0.0169825 -0.00505455 0.00343731 0.00895179 0.0119332 0.0129428 0.0125316 0.0112417 0.00952898 0.00772263 0.00603895 0.00458336 0.0033907 0.00245161 0.00173314 0.00119822 0.000807394 0.000530089 0.000335094 0.000205815 0.000116676 6.74041e-05 2.79786e-05 2.32008e-05 -4.03469e-06 2.85427e-05 -0.42385 -0.353584 -0.358959 -0.317827 -0.298685 -0.263871 -0.234057 -0.199294 -0.166585 -0.13385 -0.103983 -0.0767549 -0.0533347 -0.03362 -0.0178666 -0.00579824 0.00281857 0.00844128 0.0115164 0.0126056 0.012261 0.0110301 0.00935744 0.00758601 0.00593013 0.004496 0.00332022 0.00239441 0.00168653 0.00116018 0.000776385 0.00050493 0.000314819 0.000189688 0.000104002 5.78003e-05 2.0813e-05 1.85855e-05 -7.05768e-06 2.84511e-05 -0.431343 -0.356108 -0.362665 -0.320637 -0.301337 -0.266376 -0.236348 -0.201475 -0.168581 -0.135699 -0.105646 -0.0782457 -0.0546426 -0.0347568 -0.018839 -0.00661824 0.00213669 0.00788056 0.0110613 0.01224 0.0119701 0.010799 0.009176 0.00744279 0.0058169 0.00440568 0.00324776 0.00233589 0.00163903 0.00112153 0.000744963 0.000479488 0.000294349 0.000173427 9.12379e-05 4.81333e-05 1.36076e-05 1.39389e-05 -1.00904e-05 2.83322e-05 -0.439028 -0.358708 -0.36631 -0.323475 -0.303956 -0.268894 -0.238658 -0.203706 -0.170646 -0.137634 -0.107408 -0.0798389 -0.0560514 -0.0359884 -0.0198963 -0.0075119 0.0013936 0.00727095 0.0105686 0.0118465 0.011659 0.0105541 0.00898376 0.00729297 0.00569927 0.00431242 0.00317335 0.00227605 0.00159064 0.00108229 0.000713133 0.000453765 0.000273687 0.000157034 7.83837e-05 3.84037e-05 6.36261e-06 9.26095e-06 -1.31327e-05 2.81849e-05 -0.446882 -0.361417 -0.369874 -0.326345 -0.306537 -0.271423 -0.240986 -0.205983 -0.172776 -0.139652 -0.109262 -0.0815294 -0.0575565 -0.0373107 -0.0210353 -0.0084765 0.000591324 0.00661385 0.0100391 0.0114257 0.0113283 0.0102959 0.00878111 0.0071366 0.00557729 0.00421623 0.00309699 0.00221492 0.00154138 0.00104245 0.0006809 0.000427766 0.000252835 0.000140509 6.54406e-05 2.86122e-05 -9.21608e-07 4.55151e-06 -1.61846e-05 2.80082e-05 -0.454878 -0.364274 -0.373335 -0.329252 -0.309078 -0.273958 -0.243327 -0.2083 -0.174964 -0.141746 -0.111203 -0.0833121 -0.0591531 -0.0387194 -0.0222525 -0.00950928 -0.000268064 0.00591072 0.009474 0.010978 0.0109781 0.0100241 0.0085738 0.00697378 0.00545098 0.00411714 0.0030187 0.00215249 0.00149126 0.00100203 0.000648268 0.000401494 0.000231795 0.000123856 5.24099e-05 1.87592e-05 -8.24479e-06 -1.89442e-07 -1.92458e-05 2.78012e-05 -0.462976 -0.367325 -0.376678 -0.332201 -0.311577 -0.276498 -0.245679 -0.210655 -0.177208 -0.143912 -0.113226 -0.085182 -0.0608366 -0.0402106 -0.0235443 -0.0106074 -0.00118243 0.00516305 0.00887409 0.0105043 0.0106089 0.00973866 0.00835207 0.00680447 0.00532036 0.00401518 0.00293849 0.00208878 0.00144028 0.000961028 0.000615243 0.000374953 0.000210571 0.000107076 3.92926e-05 8.8454e-06 -1.56066e-05 -4.9619e-06 -2.23161e-05 2.75628e-05 -0.471128 -0.370623 -0.379886 -0.335194 -0.314035 -0.279039 -0.24804 -0.213042 -0.179503 -0.146145 -0.115326 -0.0871341 -0.0626023 -0.0417799 -0.0249073 -0.011768 -0.00214959 0.0043724 0.00824045 0.0100049 0.0102209 0.0094399 0.00812213 0.00662797 0.00518545 0.00391035 0.00285638 0.00202381 0.00138845 0.000919458 0.000581831 0.000348146 0.000189165 9.01699e-05 2.60901e-05 -1.12839e-06 -2.30066e-05 -9.76584e-06 -2.53956e-05 2.72923e-05 -0.479269 -0.374228 -0.382946 -0.338235 -0.316456 -0.28158 -0.250408 -0.215459 -0.181846 -0.14844 -0.117499 -0.0891635 -0.0644457 -0.0434233 -0.026338 -0.0129882 -0.00316739 0.00354031 0.00757411 0.00948067 0.00981451 0.00912802 0.00788415 0.00644453 0.00504626 0.00380267 0.00277238 0.00195759 0.00133579 0.000877324 0.000548036 0.000321078 0.000167579 7.31406e-05 1.28035e-05 -1.11615e-05 -3.04445e-05 -1.46012e-05 -2.8484e-05 2.69886e-05 -0.487315 -0.378203 -0.385852 -0.341325 -0.318845 -0.28412 -0.252784 -0.217902 -0.184231 -0.150793 -0.119739 -0.0912654 -0.0663623 -0.0451369 -0.027833 -0.0142653 -0.00423362 0.00266839 0.00687612 0.00893215 0.00939016 0.00880318 0.00763723 0.00626236 0.00490294 0.00369218 0.00268651 0.00189012 0.0012823 0.000834635 0.000513865 0.000293753 0.000145818 5.59899e-05 -5.65817e-07 -2.12531e-05 -3.79197e-05 -1.94678e-05 -3.15811e-05 2.66511e-05 -0.495156 -0.382618 -0.3886 -0.34446 -0.321208 -0.286657 -0.255166 -0.220369 -0.186657 -0.153199 -0.122042 -0.0934351 -0.0683477 -0.0469164 -0.0293887 -0.0155962 -0.00534602 0.00175828 0.00614763 0.00836007 0.00894822 0.0084656 0.00738113 0.00606684 0.00475581 0.0035789 0.00259878 0.00182143 0.00122799 0.000791398 0.000479323 0.000266175 0.000123883 3.87197e-05 -1.40166e-05 -3.14025e-05 -4.5432e-05 -2.43657e-05 -3.46869e-05 2.62789e-05 -0.502652 -0.387543 -0.3912 -0.347639 -0.323553 -0.289192 -0.257556 -0.222857 -0.189119 -0.155653 -0.124403 -0.0956679 -0.0703974 -0.0487581 -0.0310018 -0.0169783 -0.00650239 0.000811622 0.00538976 0.00776516 0.00848911 0.0081155 0.00711608 0.00586527 0.00460436 0.00346283 0.0025092 0.00175151 0.00117288 0.000747623 0.000444417 0.000238349 0.000101779 2.13326e-05 -2.75471e-05 -4.16086e-05 -5.29806e-05 -2.92946e-05 -3.7801e-05 2.58712e-05 -0.509621 -0.393044 -0.393671 -0.350854 -0.325891 -0.291725 -0.259955 -0.225366 -0.191616 -0.158154 -0.126819 -0.0979605 -0.0725083 -0.0506589 -0.0326698 -0.0184094 -0.00770115 -0.000170452 0.00460323 0.00714783 0.00801304 0.00775295 0.00684219 0.00565844 0.00444599 0.00334389 0.00241779 0.0016804 0.00111697 0.00070332 0.000409157 0.000210282 7.95106e-05 3.83277e-06 -4.11545e-05 -5.18695e-05 -6.05645e-05 -3.42538e-05 -4.09232e-05 2.54274e-05 -0.515817 -0.399178 -0.396046 -0.3541 -0.328233 -0.294258 -0.262364 -0.227893 -0.194146 -0.160698 -0.129288 -0.10031 -0.0746781 -0.052617 -0.0343911 -0.0198883 -0.00894132 -0.00118734 0.00378833 0.0065081 0.00751986 0.00737776 0.00655927 0.00544552 0.00428068 0.00322204 0.0023245 0.00160807 0.00106027 0.000658489 0.000373544 0.000181978 5.70804e-05 -1.37784e-05 -5.48377e-05 -6.21846e-05 -6.81831e-05 -3.92433e-05 -4.40533e-05 2.4947e-05 -0.520893 -0.405972 -0.398366 -0.357364 -0.330589 -0.296792 -0.264783 -0.230436 -0.196703 -0.163277 -0.1318 -0.102708 -0.0768977 -0.0546238 -0.0361582 -0.0214086 -0.0102178 -0.002235 0.0029481 0.00584819 0.0070111 0.00699092 0.0062679 0.00522667 0.00412204 0.00309734 0.00222935 0.00153449 0.00100274 0.000613096 0.000337547 0.000153407 3.44663e-05 -3.15178e-05 -6.86091e-05 -7.25623e-05 -7.58422e-05 -4.42664e-05 -4.71928e-05 2.44282e-05 -0.524426 -0.413406 -0.400679 -0.360625 -0.332961 -0.299321 -0.267205 -0.232981 -0.19927 -0.165871 -0.134333 -0.10513 -0.0791435 -0.0566572 -0.0379508 -0.0229524 -0.011515 -0.00330035 0.00209334 0.00517671 0.00649341 0.00659736 0.00597156 0.00500414 0.00394967 0.00297071 0.00213282 0.00145992 0.00094447 0.000567169 0.000301158 0.000124551 1.1645e-05 -4.94064e-05 -8.24859e-05 -8.30156e-05 -8.35506e-05 -4.93286e-05 -5.03444e-05 2.38694e-05 -0.526105 -0.421473 -0.403078 -0.363883 -0.335363 -0.301856 -0.269641 -0.235541 -0.201861 -0.168496 -0.136902 -0.107592 -0.0814314 -0.0587313 -0.0397809 -0.0245288 -0.0128395 -0.00438752 0.00122167 0.00449256 0.00596653 0.00619736 0.00567088 0.00477876 0.00377855 0.00284318 0.00203566 0.00138497 0.000886001 0.000521136 0.000264716 9.56689e-05 -1.1189e-05 -6.7303e-05 -9.63682e-05 -9.3477e-05 -9.12651e-05 -5.44048e-05 -5.34964e-05 2.32754e-05 -0.525292 -0.430265 -0.405805 -0.367229 -0.337877 -0.304477 -0.272187 -0.238236 -0.204621 -0.171315 -0.139687 -0.110278 -0.0839404 -0.0610155 -0.0418033 -0.0262756 -0.0143109 -0.00559832 0.000248387 0.00372711 0.00537677 0.00575077 0.00533743 0.00453181 0.00359701 0.00270854 0.00193484 0.00130865 0.000827376 0.000475522 0.000228901 6.74281e-05 -3.3457e-05 -8.47436e-05 -0.000109905 -0.000103699 -9.88192e-05 -5.93954e-05 -5.66003e-05 2.26681e-05 -0.518481 -0.439415 -0.408982 -0.37072 -0.340524 -0.307193 -0.274838 -0.241058 -0.207543 -0.174332 -0.142699 -0.113212 -0.0867094 -0.0635602 -0.0440788 -0.0282627 -0.0160056 -0.00701248 -0.000905467 0.00280637 0.00465858 0.00520262 0.00492751 0.00423012 0.00337802 0.00254901 0.00181915 0.00122378 0.000763945 0.000427312 0.000191763 3.8575e-05 -5.59594e-05 -0.000102234 -0.000123412 -0.00011387 -0.000106322 -6.43589e-05 -5.96794e-05 2.20335e-05 -0.499088 -0.446184 -0.411616 -0.373712 -0.342809 -0.309436 -0.276864 -0.243065 -0.209489 -0.176251 -0.144549 -0.114975 -0.0883502 -0.0650612 -0.0454242 -0.0294484 -0.017031 -0.00788304 -0.00163006 0.00221421 0.00418219 0.00482319 0.00462681 0.00399154 0.00318836 0.00239397 0.00169891 0.00112842 0.000688014 0.000366932 0.000143927 9.02115e-07 -8.53948e-05 -0.000124949 -0.000140708 -0.000126647 -0.000115536 -7.03382e-05 -6.32337e-05 2.1135e-05 -0.465721 -0.448252 -0.413834 -0.376909 -0.345719 -0.312175 -0.279002 -0.244606 -0.210338 -0.176471 -0.144195 -0.114163 -0.087188 -0.0636668 -0.0438944 -0.0278646 -0.0154551 -0.00636849 -0.000227038 0.00345502 0.00521684 0.00562463 0.00519362 0.00434725 0.00337564 0.00246654 0.00168319 0.00106768 0.000609734 0.000286565 6.97797e-05 -6.32432e-05 -0.000138414 -0.000167109 -0.000173157 -0.000150506 -0.000132473 -8.11035e-05 -6.93064e-05 1.92599e-05 -0.446783 -0.44694 -0.41088 -0.374575 -0.34334 -0.310191 -0.277294 -0.243397 -0.209621 -0.176288 -0.144489 -0.114873 -0.0882152 -0.064914 -0.0452613 -0.0292658 -0.0168159 -0.00763212 -0.00135312 0.00248774 0.00441242 0.00497243 0.00467437 0.00393751 0.00305345 0.00220811 0.00148465 0.000913487 0.00048847 0.00019122 -4.9349e-06 -0.000121519 -0.000183553 -0.000201736 -0.000199366 -0.000169848 -0.000146347 -9.01307e-05 -7.46539e-05 1.8031e-05 -0.438429 -0.442613 -0.405689 -0.370087 -0.339086 -0.306528 -0.274165 -0.241025 -0.20802 -0.175496 -0.144432 -0.115462 -0.089311 -0.0663799 -0.0469572 -0.0310686 -0.0186184 -0.00934876 -0.00291806 0.00111777 0.00325869 0.00403468 0.00393571 0.00336971 0.002625 0.00188693 0.00124567 0.000735209 0.000354799 9.04549e-05 -8.12321e-05 -0.000179464 -0.000227565 -0.000235072 -0.000224412 -0.000188316 -0.000159609 -9.8815e-05 -7.98573e-05 1.6928e-05 -0.432687 -0.436037 -0.399828 -0.365087 -0.334492 -0.302612 -0.27084 -0.238463 -0.206224 -0.174491 -0.14415 -0.115816 -0.0901722 -0.0676181 -0.0484376 -0.0326721 -0.02024 -0.0109046 -0.00434414 -0.000136981 0.00219535 0.00316273 0.00324029 0.00282638 0.00220691 0.00156762 0.00100197 0.000549014 0.000212607 -1.83098e-05 -0.000164488 -0.00024317 -0.000276168 -0.000271953 -0.00025211 -0.000208697 -0.000174187 -0.000108346 -8.54981e-05 1.56427e-05 -0.42734 -0.4276 -0.393104 -0.359383 -0.329357 -0.298279 -0.267203 -0.235654 -0.204236 -0.173334 -0.143749 -0.116078 -0.090965 -0.0688069 -0.0498839 -0.0342529 -0.0218471 -0.0124518 -0.00576587 -0.00139109 0.00112903 0.00228424 0.00253511 0.00227092 0.00177526 0.00123431 0.000745296 0.000351554 6.07684e-05 -0.000135077 -0.0002542 -0.000311973 -0.000328712 -0.000311825 -0.000282024 -0.000230683 -0.000189871 -0.000118606 -9.15106e-05 1.41998e-05 -0.421656 -0.417539 -0.385222 -0.352751 -0.323475 -0.293341 -0.2631 -0.232483 -0.20198 -0.171986 -0.143224 -0.116273 -0.0917386 -0.0700133 -0.0513753 -0.0358972 -0.0235286 -0.0140778 -0.00726583 -0.00271899 -3.91505e-06 0.00134788 0.00178132 0.00167585 0.00131201 0.000876173 0.000469648 0.00013975 -0.000101903 -0.000259985 -0.000350001 -0.000385311 -0.000384615 -0.000354174 -0.000313738 -0.00025397 -0.000206445 -0.000129467 -9.78282e-05 1.26276e-05 -0.41489 -0.406051 -0.376078 -0.345152 -0.316818 -0.287773 -0.25851 -0.22893 -0.199438 -0.170428 -0.142559 -0.116386 -0.0924777 -0.0712241 -0.0529008 -0.0375968 -0.025279 -0.0157797 -0.00884322 -0.00412146 -0.00120532 0.000351297 0.000976491 0.00103892 0.000815296 0.000491936 0.000173949 -8.7299e-05 -0.000276055 -0.00039348 -0.000452188 -0.000463382 -0.000444002 -0.000399082 -0.000347304 -0.00027859 -0.000223928 -0.000140945 -0.000104455 1.09189e-05 -0.40642 -0.393334 -0.36567 -0.336598 -0.309407 -0.281587 -0.253444 -0.225001 -0.196609 -0.168658 -0.141744 -0.116402 -0.0931671 -0.0724227 -0.054444 -0.039336 -0.0270839 -0.0175448 -0.0104873 -0.00558992 -0.0024687 -0.000700987 0.000123454 0.00036165 0.000285689 8.1559e-05 -0.000142202 -0.000330117 -0.000462223 -0.000536047 -0.00056117 -0.00054651 -0.000507125 -0.000446734 -0.000382853 -0.000304639 -0.000242382 -0.000153081 -0.000111406 9.05853e-06 -0.395897 -0.379573 -0.354065 -0.327116 -0.301272 -0.274806 -0.247913 -0.220707 -0.193499 -0.166673 -0.140776 -0.116316 -0.0937974 -0.0735989 -0.0559948 -0.0411055 -0.0289353 -0.0193666 -0.0121932 -0.00712088 -0.0037919 -0.0018079 -0.000777524 -0.000356254 -0.000277408 -0.000355706 -0.000479541 -0.000589391 -0.000660959 -0.000688127 -0.000677288 -0.000634954 -0.000574172 -0.000497267 -0.000420482 -0.000332182 -0.000261848 -0.000165905 -0.000118691 7.03412e-06 -0.383229 -0.364932 -0.341395 -0.316756 -0.292458 -0.267461 -0.241939 -0.216059 -0.190114 -0.164476 -0.13965 -0.116119 -0.0943599 -0.0747433 -0.0575436 -0.0428966 -0.0308259 -0.0212393 -0.0139568 -0.00871175 -0.00517359 -0.00296907 -0.00172674 -0.00111547 -0.00087483 -0.000820715 -0.000838838 -0.00086571 -0.000872781 -0.000850121 -0.00080084 -0.000728929 -0.000645295 -0.000550786 -0.00046026 -0.000361267 -0.000282354 -0.000179438 -0.000126316 4.8344e-06 -0.36854 -0.349552 -0.327847 -0.305607 -0.283032 -0.259605 -0.235555 -0.211082 -0.186467 -0.162073 -0.138366 -0.115807 -0.0948455 -0.0758449 -0.0590793 -0.0446988 -0.0327463 -0.0231554 -0.0157721 -0.0103584 -0.0066112 -0.00418319 -0.00272377 -0.00191616 -0.00150705 -0.00131406 -0.00122069 -0.00115964 -0.00109813 -0.00102238 -0.000932089 -0.000828625 -0.000720628 -0.000607383 -0.000502249 -0.000391936 -0.000303923 -0.000193697 -0.000134283 2.44841e-06 -0.352145 -0.333559 -0.31364 -0.293794 -0.273077 -0.251304 -0.228805 -0.205806 -0.182576 -0.159471 -0.136925 -0.115374 -0.0952452 -0.0768922 -0.0605894 -0.0464999 -0.0346856 -0.0251054 -0.0176318 -0.0120553 -0.00810088 -0.00544787 -0.00376736 -0.00275785 -0.00217407 -0.00183603 -0.00162548 -0.00147157 -0.00133736 -0.00120517 -0.00107125 -0.000934198 -0.000800281 -0.000667133 -0.000546495 -0.000424219 -0.000326572 -0.000208696 -0.000142593 -1.34203e-07 -0.334455 -0.317111 -0.299 -0.281468 -0.262691 -0.242635 -0.221744 -0.200266 -0.178465 -0.156683 -0.13533 -0.114818 -0.0955504 -0.0778737 -0.0620607 -0.0482866 -0.0366314 -0.0270784 -0.0195268 -0.0137954 -0.00963756 -0.00675971 -0.00485544 -0.00363946 -0.00287546 -0.00238656 -0.00205333 -0.00180171 -0.00159066 -0.00139869 -0.00121846 -0.00104575 -0.000884323 -0.000730082 -0.000593025 -0.000458132 -0.000350308 -0.000224441 -0.000151242 -2.92252e-06 -0.315922 -0.300402 -0.284144 -0.268795 -0.251985 -0.233683 -0.214431 -0.194506 -0.17416 -0.153725 -0.133586 -0.114135 -0.0957535 -0.0787779 -0.0634799 -0.0500448 -0.0385701 -0.0290625 -0.0214468 -0.0155704 -0.0112149 -0.00811424 -0.00598505 -0.00455916 -0.00361018 -0.00296513 -0.00250406 -0.00215 -0.00185808 -0.00160298 -0.00137378 -0.00116333 -0.000972778 -0.000796238 -0.000641841 -0.000493672 -0.000375122 -0.000240928 -0.000160223 -5.92371e-06 -0.297007 -0.283639 -0.269268 -0.255947 -0.241074 -0.224536 -0.206933 -0.18857 -0.169692 -0.150615 -0.131703 -0.113326 -0.0958481 -0.0795939 -0.0648333 -0.0517601 -0.0404875 -0.0310441 -0.0233802 -0.0173706 -0.0128254 -0.00950579 -0.00715221 -0.0055143 -0.00437657 -0.00357075 -0.00297707 -0.00251613 -0.00213944 -0.00181794 -0.00153713 -0.00128687 -0.0010656 -0.000865565 -0.000692908 -0.000530811 -0.000400991 -0.000258144 -0.000169523 -9.14227e-06 -0.278135 -0.267026 -0.254547 -0.243088 -0.230079 -0.215285 -0.199317 -0.182509 -0.165094 -0.147373 -0.129688 -0.112393 -0.0958292 -0.0803122 -0.0661082 -0.0534178 -0.0423684 -0.033009 -0.0253141 -0.0191851 -0.01446 -0.0109274 -0.00835178 -0.00650127 -0.00517215 -0.00420178 -0.00347129 -0.00289939 -0.00243426 -0.00204324 -0.00170829 -0.0014162 -0.00116266 -0.000937962 -0.00074615 -0.00056949 -0.00042787 -0.000276059 -0.000179122 -1.25791e-05 -0.259664 -0.250757 -0.240129 -0.23037 -0.219117 -0.20602 -0.191654 -0.176371 -0.160401 -0.144021 -0.127557 -0.111339 -0.095694 -0.0809243 -0.0672924 -0.0550037 -0.0441977 -0.0349423 -0.0272345 -0.0210015 -0.0161085 -0.0123709 -0.00957742 -0.00751535 -0.00599353 -0.00485583 -0.00398507 -0.00329865 -0.00274176 -0.00227831 -0.00188684 -0.00155104 -0.00126374 -0.00101326 -0.000801434 -0.000609608 -0.000455688 -0.000294625 -0.000188992 -1.62304e-05 -0.241876 -0.235004 -0.226145 -0.217932 -0.208305 -0.196828 -0.184011 -0.170211 -0.15565 -0.140586 -0.125323 -0.110172 -0.095442 -0.0814241 -0.0683753 -0.0565041 -0.0459603 -0.0368286 -0.0291267 -0.0228065 -0.0177591 -0.0138265 -0.0108214 -0.00855064 -0.00683632 -0.00552969 -0.00451608 -0.00371221 -0.00306073 -0.00252253 -0.00207215 -0.00169089 -0.00136847 -0.00109118 -0.000858563 -0.000651021 -0.000484342 -0.000313775 -0.000199094 -2.00868e-05 -0.224977 -0.219915 -0.212707 -0.205891 -0.197749 -0.187797 -0.176459 -0.164083 -0.150883 -0.137097 -0.123005 -0.108901 -0.0950756 -0.0818078 -0.0693483 -0.0579069 -0.0476419 -0.0386524 -0.0309754 -0.0245856 -0.0193989 -0.0152831 -0.0120747 -0.00959993 -0.00769494 -0.00621915 -0.00506119 -0.00413776 -0.00338943 -0.00277414 -0.00226327 -0.00183506 -0.00147634 -0.00117135 -0.000917258 -0.000693525 -0.000513689 -0.000333413 -0.000209377 -2.41316e-05 -0.20915 -0.205618 -0.199914 -0.194356 -0.187552 -0.179011 -0.169067 -0.158042 -0.146142 -0.133585 -0.120626 -0.10754 -0.0946009 -0.0820747 -0.070205 -0.0592015 -0.0492288 -0.0403985 -0.0327648 -0.0263234 -0.0210138 -0.0167284 -0.0133267 -0.0106545 -0.00856251 -0.00691887 -0.00561634 -0.00457224 -0.0037256 -0.00303169 -0.00245893 -0.00198263 -0.00158666 -0.00125326 -0.000977142 -0.000736844 -0.000543542 -0.00035341 -0.000219775 -2.83399e-05 -0.194435 -0.19221 -0.187856 -0.183419 -0.177808 -0.170554 -0.161904 -0.152148 -0.141476 -0.130086 -0.118212 -0.106106 -0.0940275 -0.0822273 -0.070942 -0.0603795 -0.0507089 -0.0420522 -0.0344789 -0.0280038 -0.0225885 -0.0181483 -0.0145652 -0.0117043 -0.00943074 -0.00762228 -0.00617641 -0.00501173 -0.00406624 -0.00329296 -0.00265745 -0.00213233 -0.00169851 -0.00133622 -0.00103772 -0.000780623 -0.000573655 -0.000373602 -0.000230205 -3.26766e-05 -0.180933 -0.17978 -0.176612 -0.173165 -0.168605 -0.162508 -0.155044 -0.146462 -0.136936 -0.126644 -0.115795 -0.104623 -0.0933695 -0.0822721 -0.0715588 -0.0614345 -0.0520713 -0.0435996 -0.0361019 -0.0296103 -0.0241065 -0.0195275 -0.0157765 -0.0127373 -0.0102898 -0.0083214 -0.00673508 -0.00545132 -0.00440761 -0.00355509 -0.00285669 -0.00228256 -0.0018107 -0.00141936 -0.00109837 -0.000824409 -0.000603721 -0.00039378 -0.000240562 -3.70957e-05 -0.168686 -0.1684 -0.166257 -0.163673 -0.160029 -0.154955 -0.148561 -0.14105 -0.132579 -0.123303 -0.113412 -0.103119 -0.0926458 -0.0822195 -0.0720583 -0.0623631 -0.0533072 -0.0450275 -0.0376179 -0.0311255 -0.0255502 -0.020849 -0.016945 -0.01374 -0.011128 -0.00900671 -0.00728472 -0.00588501 -0.00474505 -0.00381454 -0.00305433 -0.00243133 -0.00192174 -0.00150159 -0.00115829 -0.000867634 -0.000633353 -0.000413684 -0.000250714 -4.1538e-05 -0.157729 -0.158131 -0.15686 -0.155019 -0.15216 -0.147977 -0.142532 -0.135983 -0.128466 -0.120118 -0.111107 -0.101625 -0.09188 -0.0820843 -0.0724469 -0.0631641 -0.0544091 -0.0463237 -0.0390111 -0.0325314 -0.0269008 -0.0220944 -0.0180536 -0.0146969 -0.0119322 -0.00966702 -0.00781621 -0.00630554 -0.0050729 -0.00406694 -0.00324637 -0.00257615 -0.00202982 -0.00158156 -0.00121651 -0.000909601 -0.000662079 -0.000432994 -0.000260503 -4.59303e-05 -0.148096 -0.149034 -0.14849 -0.147277 -0.145082 -0.141659 -0.137038 -0.131336 -0.124666 -0.117147 -0.108927 -0.100182 -0.0911012 -0.0818856 -0.0727346 -0.0638391 -0.0553714 -0.0474767 -0.0402656 -0.0338094 -0.0281383 -0.0232435 -0.0190828 -0.0155904 -0.0126868 -0.0102893 -0.00831884 -0.00670431 -0.0053844 -0.00430704 -0.0034292 -0.00271404 -0.0021327 -0.00165765 -0.00127187 -0.000949471 -0.000689329 -0.000451327 -0.000269735 -5.01836e-05 -0.139827 -0.141171 -0.141217 -0.140524 -0.138878 -0.136091 -0.132168 -0.127191 -0.121252 -0.114455 -0.106929 -0.0988333 -0.0903432 -0.0816466 -0.0729343 -0.0643918 -0.0561897 -0.0484754 -0.0413652 -0.0349397 -0.0292411 -0.0242742 -0.0200115 -0.0164007 -0.0133743 -0.0108585 -0.00878013 -0.00707123 -0.00567157 -0.00452867 -0.00359811 -0.00284144 -0.00222774 -0.00172791 -0.00132294 -0.000986238 -0.000714422 -0.000468228 -0.00027818 -5.41911e-05 -0.13297 -0.134611 -0.135127 -0.134851 -0.133643 -0.131368 -0.128015 -0.123638 -0.118308 -0.112116 -0.105176 -0.097631 -0.0896449 -0.0813942 -0.0730616 -0.0648275 -0.0568602 -0.0493083 -0.0422926 -0.035901 -0.0301853 -0.0251619 -0.0208155 -0.0171057 -0.013975 -0.0113576 -0.00918578 -0.00739465 -0.00592513 -0.0047246 -0.00374756 -0.00295419 -0.00231183 -0.00179005 -0.00136809 -0.00101873 -0.000736564 -0.000483159 -0.000285573 -5.78259e-05 -0.127603 -0.129451 -0.130319 -0.130361 -0.129486 -0.1276 -0.124688 -0.120778 -0.115927 -0.110211 -0.103736 -0.0966314 -0.0890495 -0.0811585 -0.0731341 -0.065152 -0.0573786 -0.0499628 -0.0430286 -0.0366694 -0.0309445 -0.0258794 -0.0214683 -0.0176803 -0.0144664 -0.0117671 -0.00951948 -0.00766125 -0.00613448 -0.00488654 -0.00387117 -0.00304747 -0.00238138 -0.00184144 -0.00140541 -0.00104558 -0.000754833 -0.0004955 -0.000291606 -6.09425e-05 -0.12384 -0.125818 -0.126924 -0.127183 -0.126535 -0.124918 -0.12231 -0.118727 -0.114212 -0.108834 -0.102688 -0.0958969 -0.0886041 -0.0809714 -0.0731694 -0.0653702 -0.0577385 -0.0504233 -0.0435506 -0.0372175 -0.0314886 -0.0263955 -0.0219396 -0.0180965 -0.0148232 -0.0120652 -0.00976285 -0.007856 -0.00628759 -0.00500508 -0.00396171 -0.00311583 -0.00243234 -0.00187909 -0.00143273 -0.00106525 -0.000768169 -0.000504576 -0.000295876 -6.33914e-05 -0.121828 -0.123875 -0.125106 -0.125481 -0.124953 -0.123477 -0.121031 -0.117621 -0.113286 -0.108088 -0.102119 -0.0954953 -0.0883582 -0.080865 -0.0731834 -0.0654836 -0.0579292 -0.0506693 -0.0438307 -0.0375126 -0.0317822 -0.0266747 -0.022195 -0.0183224 -0.0150172 -0.0122275 -0.00989545 -0.00796219 -0.00637112 -0.00506979 -0.00401113 -0.00315315 -0.00246016 -0.00189967 -0.00144762 -0.00107604 -0.000775364 -0.000509679 -0.000297866 -6.49967e-05 -0.522383 -0.528914 -0.534716 -0.539797 -0.544167 -0.547841 -0.550834 -0.553169 -0.554868 -0.555959 -0.556475 -0.556453 -0.555933 -0.554963 -0.553595 -0.551887 -0.549904 -0.547717 -0.545405 -0.543056 -0.540765 -0.538645 -0.53682 -0.53544 -0.534719 -0.534992 -0.536441 -0.53965 -0.552971 -0.584647 -0.492446 -0.499146 -0.505226 -0.510694 -0.515561 -0.519844 -0.523559 -0.526727 -0.529372 -0.531521 -0.533205 -0.534459 -0.535321 -0.535834 -0.536045 -0.536006 -0.535773 -0.535409 -0.53498 -0.534562 -0.534237 -0.534101 -0.534263 -0.534858 -0.536082 -0.538174 -0.541111 -0.545605 -0.557769 -0.574321 -0.46371 -0.470382 -0.476538 -0.482183 -0.487329 -0.491987 -0.496171 -0.499897 -0.503184 -0.506054 -0.508529 -0.510638 -0.51241 -0.513877 -0.515077 -0.516049 -0.516836 -0.517487 -0.518052 -0.518591 -0.519168 -0.519853 -0.520726 -0.521884 -0.523458 -0.525571 -0.528089 -0.531535 -0.540374 -0.550506 -0.436087 -0.442569 -0.448618 -0.454238 -0.459438 -0.464226 -0.468615 -0.472617 -0.476247 -0.479521 -0.48246 -0.485084 -0.487418 -0.489488 -0.491325 -0.492961 -0.494434 -0.495783 -0.497055 -0.4983 -0.499572 -0.500936 -0.50246 -0.504228 -0.506353 -0.508927 -0.511832 -0.515574 -0.523682 -0.53167 -0.409646 -0.415922 -0.421835 -0.42739 -0.432592 -0.437451 -0.441976 -0.446177 -0.450067 -0.453659 -0.45697 -0.460018 -0.462822 -0.465405 -0.467792 -0.47001 -0.47209 -0.474066 -0.475975 -0.477858 -0.479762 -0.481737 -0.483838 -0.486131 -0.488703 -0.491611 -0.494744 -0.498555 -0.505859 -0.512312 -0.384434 -0.390479 -0.396222 -0.401665 -0.406816 -0.411679 -0.416264 -0.42058 -0.424636 -0.428443 -0.432015 -0.435366 -0.438513 -0.441473 -0.444266 -0.446914 -0.449442 -0.451877 -0.454249 -0.456591 -0.458938 -0.46133 -0.46381 -0.466428 -0.46925 -0.47231 -0.475514 -0.479267 -0.485846 -0.491357 -0.360438 -0.366229 -0.371768 -0.377057 -0.382101 -0.386906 -0.391479 -0.395825 -0.399955 -0.403877 -0.407601 -0.411139 -0.414504 -0.41771 -0.420773 -0.423711 -0.426544 -0.429293 -0.431981 -0.434636 -0.437285 -0.43996 -0.442695 -0.445529 -0.448512 -0.451665 -0.454913 -0.458606 -0.464555 -0.469427 -0.337636 -0.343159 -0.348471 -0.353574 -0.358472 -0.36317 -0.367673 -0.371987 -0.376118 -0.380075 -0.383865 -0.387497 -0.390982 -0.394331 -0.397557 -0.400673 -0.403696 -0.406642 -0.409531 -0.412382 -0.415218 -0.418063 -0.420944 -0.423893 -0.426946 -0.430116 -0.433347 -0.436931 -0.442279 -0.446673 -0.316 -0.321246 -0.326315 -0.331209 -0.335931 -0.340484 -0.344874 -0.349104 -0.353179 -0.357106 -0.360892 -0.364543 -0.368067 -0.371474 -0.374772 -0.377974 -0.381091 -0.384136 -0.387124 -0.390071 -0.392994 -0.395912 -0.398846 -0.401819 -0.40486 -0.407979 -0.411133 -0.414559 -0.419329 -0.423331 -0.295497 -0.300462 -0.305278 -0.309946 -0.314469 -0.318849 -0.323091 -0.327197 -0.331171 -0.335019 -0.338744 -0.342354 -0.345853 -0.349249 -0.352549 -0.355762 -0.358896 -0.361963 -0.364972 -0.367935 -0.370867 -0.373782 -0.376695 -0.379625 -0.382593 -0.385605 -0.388634 -0.391859 -0.396072 -0.399724 -0.276097 -0.28078 -0.285336 -0.289767 -0.294075 -0.298262 -0.30233 -0.306281 -0.31012 -0.313849 -0.317473 -0.320995 -0.324419 -0.327752 -0.330999 -0.334166 -0.337259 -0.340286 -0.343256 -0.346178 -0.349061 -0.351915 -0.354754 -0.35759 -0.360439 -0.363307 -0.366173 -0.369169 -0.372858 -0.376185 -0.257769 -0.262171 -0.266466 -0.270654 -0.274737 -0.278715 -0.282591 -0.286367 -0.290045 -0.293627 -0.297117 -0.300516 -0.30383 -0.30706 -0.310212 -0.31329 -0.316299 -0.319244 -0.322132 -0.324967 -0.327759 -0.330515 -0.333242 -0.335951 -0.338654 -0.341353 -0.344036 -0.346793 -0.350007 -0.353037 -0.240489 -0.244615 -0.248649 -0.252591 -0.256443 -0.260204 -0.263876 -0.267461 -0.270961 -0.274376 -0.277709 -0.280961 -0.284136 -0.287236 -0.290264 -0.293223 -0.296116 -0.298948 -0.301722 -0.304443 -0.307115 -0.309746 -0.312339 -0.314902 -0.317444 -0.319966 -0.322461 -0.324981 -0.327782 -0.330545 -0.224228 -0.228085 -0.231863 -0.235561 -0.23918 -0.24272 -0.246183 -0.249569 -0.252878 -0.256113 -0.259274 -0.262363 -0.265382 -0.268332 -0.271215 -0.274034 -0.276791 -0.279488 -0.282128 -0.284715 -0.287251 -0.289741 -0.292188 -0.294596 -0.296972 -0.299318 -0.301627 -0.303927 -0.306379 -0.308906 -0.208969 -0.212565 -0.216093 -0.219551 -0.22294 -0.226259 -0.22951 -0.232692 -0.235806 -0.238853 -0.241834 -0.24475 -0.247601 -0.250389 -0.253115 -0.255781 -0.258387 -0.260937 -0.263431 -0.265872 -0.268262 -0.270603 -0.272898 -0.27515 -0.277362 -0.279537 -0.28167 -0.283769 -0.285936 -0.288253 -0.194684 -0.198031 -0.201319 -0.204544 -0.207708 -0.21081 -0.213851 -0.216831 -0.219749 -0.222607 -0.225404 -0.228141 -0.23082 -0.233439 -0.236002 -0.238507 -0.240957 -0.243352 -0.245694 -0.247983 -0.250222 -0.252412 -0.254555 -0.256652 -0.258705 -0.260717 -0.262685 -0.264603 -0.266536 -0.268665 -0.181356 -0.184467 -0.187524 -0.190527 -0.193474 -0.196366 -0.199202 -0.201983 -0.204708 -0.207378 -0.209993 -0.212552 -0.215057 -0.217507 -0.219904 -0.222247 -0.224538 -0.226776 -0.228964 -0.231101 -0.233188 -0.235227 -0.237219 -0.239165 -0.241065 -0.242924 -0.244736 -0.246491 -0.24823 -0.250188 -0.168963 -0.171851 -0.174692 -0.177482 -0.180223 -0.182914 -0.185554 -0.188143 -0.190681 -0.193168 -0.195605 -0.19799 -0.200324 -0.202608 -0.204841 -0.207024 -0.209157 -0.211241 -0.213275 -0.215262 -0.2172 -0.219092 -0.220936 -0.222736 -0.22449 -0.226202 -0.227869 -0.229475 -0.23105 -0.232845 -0.157489 -0.160169 -0.162806 -0.165397 -0.167943 -0.170443 -0.172897 -0.175303 -0.177663 -0.179976 -0.182241 -0.184458 -0.186628 -0.18875 -0.190825 -0.192852 -0.194832 -0.196766 -0.198652 -0.200492 -0.202286 -0.204035 -0.205739 -0.207398 -0.209013 -0.210586 -0.212115 -0.213583 -0.215014 -0.216653 -0.146914 -0.149402 -0.151849 -0.154255 -0.156619 -0.158941 -0.161219 -0.163455 -0.165646 -0.167793 -0.169897 -0.171955 -0.173969 -0.175937 -0.177861 -0.17974 -0.181574 -0.183364 -0.185109 -0.186809 -0.188466 -0.190079 -0.191648 -0.193175 -0.194659 -0.196102 -0.197503 -0.198844 -0.200147 -0.20164 -0.137228 -0.139537 -0.14181 -0.144045 -0.14624 -0.148397 -0.150513 -0.152588 -0.154623 -0.156616 -0.158568 -0.160477 -0.162344 -0.164169 -0.165951 -0.167691 -0.169387 -0.171041 -0.172653 -0.174222 -0.175749 -0.177233 -0.178676 -0.180077 -0.181438 -0.182759 -0.184038 -0.185261 -0.186445 -0.187795 -0.128411 -0.130559 -0.132673 -0.134751 -0.136793 -0.138798 -0.140765 -0.142694 -0.144585 -0.146436 -0.148248 -0.15002 -0.151752 -0.153443 -0.155094 -0.156704 -0.158274 -0.159802 -0.16129 -0.162737 -0.164144 -0.16551 -0.166835 -0.168121 -0.169367 -0.170575 -0.171742 -0.172857 -0.173934 -0.175149 -0.12046 -0.122463 -0.124434 -0.126371 -0.128274 -0.130141 -0.131974 -0.13377 -0.135529 -0.137251 -0.138935 -0.140582 -0.14219 -0.14376 -0.145291 -0.146783 -0.148237 -0.14965 -0.151025 -0.152361 -0.153658 -0.154915 -0.156134 -0.157314 -0.158456 -0.159561 -0.160626 -0.161643 -0.162623 -0.163713 -0.113373 -0.115246 -0.117089 -0.118899 -0.120678 -0.122423 -0.124134 -0.125811 -0.127452 -0.129059 -0.130629 -0.132163 -0.133661 -0.135121 -0.136545 -0.137931 -0.13928 -0.140591 -0.141864 -0.1431 -0.144298 -0.145459 -0.146582 -0.147668 -0.148716 -0.149729 -0.150704 -0.151633 -0.152527 -0.153502 -0.107156 -0.108915 -0.110645 -0.112344 -0.114013 -0.115649 -0.117254 -0.118825 -0.120363 -0.121867 -0.123337 -0.124772 -0.126172 -0.127537 -0.128865 -0.130158 -0.131415 -0.132635 -0.13382 -0.134968 -0.136079 -0.137155 -0.138194 -0.139197 -0.140164 -0.141096 -0.141991 -0.142845 -0.143665 -0.144538 -0.101823 -0.103484 -0.105116 -0.10672 -0.108293 -0.109837 -0.111349 -0.11283 -0.114278 -0.115694 -0.117077 -0.118426 -0.119742 -0.121024 -0.122271 -0.123483 -0.124661 -0.125804 -0.126912 -0.127985 -0.129022 -0.130025 -0.130992 -0.131925 -0.132823 -0.133687 -0.134515 -0.135305 -0.136062 -0.136847 -0.0973958 -0.0989748 -0.100526 -0.10205 -0.103545 -0.105011 -0.106446 -0.107852 -0.109226 -0.110569 -0.111879 -0.113158 -0.114404 -0.115617 -0.116797 -0.117943 -0.119056 -0.120135 -0.12118 -0.122191 -0.123168 -0.124111 -0.12502 -0.125895 -0.126736 -0.127544 -0.128318 -0.129056 -0.129761 -0.130473 -0.0939364 -0.0954486 -0.0969343 -0.0983928 -0.0998236 -0.101226 -0.102599 -0.103944 -0.105258 -0.106541 -0.107794 -0.109016 -0.110207 -0.111365 -0.112491 -0.113586 -0.114647 -0.115676 -0.116672 -0.117635 -0.118566 -0.119463 -0.120327 -0.121159 -0.121957 -0.122723 -0.123456 -0.124155 -0.124822 -0.125478 -0.0914919 -0.0929574 -0.0943972 -0.0958104 -0.0971966 -0.0985552 -0.0998856 -0.101187 -0.10246 -0.103703 -0.104916 -0.106099 -0.107251 -0.108372 -0.109462 -0.11052 -0.111547 -0.112542 -0.113505 -0.114435 -0.115334 -0.1162 -0.117034 -0.117835 -0.118605 -0.119342 -0.120047 -0.120719 -0.121361 -0.121978 -0.0902053 -0.0916361 -0.0930418 -0.0944217 -0.0957754 -0.0971024 -0.0984023 -0.0996746 -0.100919 -0.102135 -0.103322 -0.10448 -0.105608 -0.106707 -0.107776 -0.108814 -0.109822 -0.1108 -0.111746 -0.112662 -0.113546 -0.114399 -0.115221 -0.116011 -0.11677 -0.117497 -0.118192 -0.118857 -0.11949 -0.120093 -0.000766764 -0.0353963 -0.0641282 -0.0882135 -0.111769 -0.134926 -0.157485 -0.179532 -0.201109 -0.2222 -0.242787 -0.262852 -0.282376 -0.301338 -0.319721 -0.337507 -0.354683 -0.371249 -0.387203 -0.402402 -0.416823 -0.430598 -0.443684 -0.456067 -0.467738 -0.478685 -0.488901 -0.49838 -0.50712 -0.515121 -0.0114792 -0.0392707 -0.0647516 -0.0862775 -0.107518 -0.128795 -0.14966 -0.170065 -0.190042 -0.209576 -0.228644 -0.24723 -0.265319 -0.282895 -0.299943 -0.316448 -0.332393 -0.347763 -0.362544 -0.376705 -0.390322 -0.403542 -0.416002 -0.427781 -0.43893 -0.449447 -0.459325 -0.468562 -0.47716 -0.485121 -0.024422 -0.0499384 -0.0730447 -0.0927174 -0.111997 -0.13127 -0.150148 -0.168563 -0.186563 -0.204155 -0.221325 -0.238065 -0.254366 -0.27022 -0.285616 -0.300546 -0.314999 -0.328966 -0.342445 -0.355377 -0.367496 -0.379781 -0.391314 -0.402213 -0.412586 -0.422438 -0.431758 -0.440545 -0.448798 -0.456519 -0.0357138 -0.0590231 -0.0796955 -0.0974815 -0.114941 -0.132377 -0.149458 -0.166113 -0.182387 -0.198287 -0.213807 -0.228939 -0.243677 -0.258017 -0.271953 -0.28548 -0.298593 -0.311289 -0.323572 -0.335504 -0.347164 -0.357743 -0.368196 -0.378264 -0.38787 -0.397025 -0.405734 -0.413994 -0.421805 -0.42917 -0.0453128 -0.0663901 -0.0847642 -0.10073 -0.116466 -0.132178 -0.147575 -0.162595 -0.177273 -0.191619 -0.205627 -0.219291 -0.232609 -0.245576 -0.258191 -0.270448 -0.282345 -0.293877 -0.305037 -0.315824 -0.326237 -0.336137 -0.345887 -0.355226 -0.364144 -0.372675 -0.380825 -0.388596 -0.395989 -0.403005 -0.0531592 -0.0722305 -0.0885697 -0.102895 -0.117065 -0.131204 -0.145058 -0.158576 -0.17179 -0.184709 -0.197331 -0.209652 -0.22167 -0.233384 -0.244792 -0.255891 -0.266681 -0.277158 -0.28732 -0.297167 -0.306705 -0.315921 -0.324768 -0.333346 -0.341604 -0.349536 -0.357148 -0.364443 -0.371421 -0.378084 -0.0594451 -0.0766955 -0.0911907 -0.104005 -0.116731 -0.129426 -0.141864 -0.154009 -0.165888 -0.177512 -0.188877 -0.199981 -0.210823 -0.221404 -0.231722 -0.241776 -0.251564 -0.261087 -0.270342 -0.279329 -0.288055 -0.296525 -0.304637 -0.312554 -0.320204 -0.327575 -0.334677 -0.341513 -0.348085 -0.354393 -0.064345 -0.0799118 -0.0927324 -0.104158 -0.115561 -0.126936 -0.138085 -0.148981 -0.159649 -0.170098 -0.180325 -0.19033 -0.200111 -0.209668 -0.219002 -0.22811 -0.236994 -0.245651 -0.254081 -0.262283 -0.270257 -0.277997 -0.28546 -0.29281 -0.299902 -0.306749 -0.313369 -0.319768 -0.325944 -0.3319 -0.0679642 -0.0819696 -0.0932849 -0.103451 -0.113651 -0.123832 -0.133815 -0.143582 -0.153157 -0.162547 -0.171749 -0.180762 -0.189586 -0.198222 -0.206669 -0.214926 -0.222994 -0.230871 -0.238559 -0.246056 -0.253364 -0.260489 -0.267434 -0.274128 -0.280668 -0.287026 -0.293194 -0.299173 -0.304967 -0.310576 -0.0704164 -0.0829815 -0.0929575 -0.101994 -0.111109 -0.120213 -0.129148 -0.137901 -0.146493 -0.15493 -0.163211 -0.171333 -0.179298 -0.187104 -0.194752 -0.202242 -0.209573 -0.216744 -0.223756 -0.230609 -0.237301 -0.243838 -0.250221 -0.256405 -0.26246 -0.268363 -0.274104 -0.279686 -0.285112 -0.290382 -0.0718315 -0.0830753 -0.0918691 -0.0999 -0.108041 -0.116182 -0.124178 -0.132022 -0.139734 -0.147318 -0.154773 -0.162096 -0.169289 -0.17635 -0.18328 -0.190078 -0.196743 -0.203276 -0.209676 -0.215943 -0.222077 -0.228077 -0.233944 -0.239662 -0.245271 -0.250743 -0.256076 -0.261278 -0.266348 -0.271288 -0.0723428 -0.0823811 -0.0901372 -0.0972782 -0.104551 -0.111832 -0.118991 -0.126025 -0.132951 -0.139773 -0.146488 -0.153097 -0.159597 -0.165989 -0.172273 -0.178448 -0.184513 -0.190468 -0.196312 -0.202045 -0.207666 -0.213175 -0.218566 -0.223826 -0.229035 -0.234111 -0.239065 -0.243907 -0.248638 -0.253259 -0.0720802 -0.0810253 -0.087875 -0.0942328 -0.100734 -0.107251 -0.113666 -0.119979 -0.126206 -0.132348 -0.138405 -0.144374 -0.150255 -0.156048 -0.161752 -0.167367 -0.172891 -0.178325 -0.183668 -0.18892 -0.194079 -0.199147 -0.204128 -0.209032 -0.213777 -0.218456 -0.223052 -0.227553 -0.231959 -0.236271 -0.0711674 -0.0791273 -0.0851887 -0.0908599 -0.0966789 -0.102518 -0.108275 -0.113949 -0.119553 -0.125092 -0.130561 -0.13596 -0.141287 -0.146543 -0.151727 -0.156837 -0.161873 -0.166834 -0.171719 -0.176528 -0.18126 -0.185913 -0.190489 -0.194987 -0.199396 -0.203735 -0.207996 -0.212175 -0.216274 -0.220292 -0.0697206 -0.0767977 -0.082176 -0.0872473 -0.0924646 -0.0977055 -0.10288 -0.107988 -0.113042 -0.118044 -0.122991 -0.127882 -0.132715 -0.137491 -0.142207 -0.146864 -0.15146 -0.155995 -0.160466 -0.164874 -0.169218 -0.173497 -0.177711 -0.181857 -0.185932 -0.189945 -0.193889 -0.197763 -0.201568 -0.205303 -0.0678468 -0.0741375 -0.0789256 -0.0834742 -0.0881626 -0.0928766 -0.0975379 -0.102147 -0.106714 -0.11124 -0.115723 -0.120162 -0.124554 -0.1289 -0.133199 -0.137448 -0.141648 -0.145796 -0.149893 -0.153936 -0.157926 -0.16186 -0.165739 -0.16956 -0.173317 -0.177036 -0.180688 -0.184277 -0.187806 -0.191276 -0.0656442 -0.0712378 -0.0755176 -0.0796121 -0.083837 -0.0880881 -0.0922981 -0.0964672 -0.100604 -0.10471 -0.108782 -0.112819 -0.116819 -0.120782 -0.124706 -0.128591 -0.132434 -0.136236 -0.139994 -0.143708 -0.147377 -0.150999 -0.154574 -0.158102 -0.161585 -0.165002 -0.168375 -0.1717 -0.174972 -0.178191 -0.0632019 -0.0681804 -0.0720236 -0.0757248 -0.0795445 -0.0833902 -0.0872042 -0.0909867 -0.0947449 -0.0984792 -0.102187 -0.105868 -0.10952 -0.113141 -0.116731 -0.120289 -0.123812 -0.127301 -0.130753 -0.134168 -0.137545 -0.140881 -0.144177 -0.147432 -0.150645 -0.153809 -0.156931 -0.16001 -0.163042 -0.166027 -0.0606012 -0.0650389 -0.0685084 -0.0718697 -0.0753364 -0.078828 -0.0822956 -0.0857392 -0.0891646 -0.0925719 -0.095959 -0.0993244 -0.102667 -0.105985 -0.109277 -0.112543 -0.11578 -0.118988 -0.122165 -0.125311 -0.128423 -0.131501 -0.134544 -0.137551 -0.14052 -0.143449 -0.146339 -0.14919 -0.151999 -0.154766 -0.0579153 -0.0618795 -0.0650299 -0.0680984 -0.0712587 -0.0744419 -0.0776073 -0.0807546 -0.0838884 -0.0870084 -0.0901128 -0.0932 -0.0962687 -0.0993176 -0.102345 -0.105351 -0.108333 -0.111289 -0.11422 -0.117123 -0.119997 -0.122842 -0.125655 -0.128436 -0.131184 -0.133897 -0.136575 -0.139217 -0.141821 -0.144388 -0.0552108 -0.0587622 -0.061641 -0.0644584 -0.0673537 -0.0702695 -0.0731723 -0.0760615 -0.0789407 -0.0818093 -0.0846658 -0.0875085 -0.0903362 -0.0931475 -0.0959412 -0.098716 -0.101471 -0.104204 -0.106914 -0.1096 -0.112261 -0.114896 -0.117503 -0.120081 -0.122629 -0.125145 -0.127631 -0.130082 -0.132499 -0.134882 -0.0525482 -0.0557414 -0.0583898 -0.0609927 -0.0636599 -0.0663448 -0.0690204 -0.0716858 -0.0743436 -0.0769932 -0.0796331 -0.0822616 -0.0848777 -0.0874799 -0.0900671 -0.0926379 -0.095191 -0.0977252 -0.100239 -0.102732 -0.105202 -0.107648 -0.11007 -0.112466 -0.114833 -0.117169 -0.119486 -0.121767 -0.124014 -0.126229 -0.0499827 -0.0528672 -0.0553214 -0.0577421 -0.0602144 -0.0627014 -0.0651817 -0.0676544 -0.0701211 -0.0725812 -0.0750332 -0.0774758 -0.0799076 -0.0823275 -0.0847342 -0.0871264 -0.0895029 -0.0918625 -0.0942039 -0.0965259 -0.0988272 -0.101107 -0.103363 -0.105595 -0.107803 -0.109988 -0.112135 -0.11426 -0.116358 -0.118425 -0.0475659 -0.050187 -0.0524786 -0.054746 -0.0570532 -0.0593721 -0.061686 -0.063994 -0.066297 -0.0685944 -0.0708847 -0.0731668 -0.0754392 -0.0777009 -0.0799507 -0.0821873 -0.0844096 -0.0866162 -0.0888061 -0.0909781 -0.093131 -0.0952636 -0.0973749 -0.0994637 -0.101529 -0.10357 -0.105585 -0.107574 -0.109536 -0.111469 -0.0453444 -0.0477435 -0.0499006 -0.0520407 -0.05421 -0.0563878 -0.0585619 -0.0607311 -0.0628959 -0.0650555 -0.0672086 -0.0693541 -0.0714908 -0.0736175 -0.0757331 -0.0778365 -0.0799264 -0.0820017 -0.0840613 -0.0861041 -0.0881289 -0.0901346 -0.0921202 -0.0940845 -0.0960266 -0.0979455 -0.0998398 -0.101709 -0.103552 -0.105368 -0.043368 -0.045585 -0.0476336 -0.0496704 -0.0517273 -0.0537896 -0.0558488 -0.0579036 -0.059954 -0.0619994 -0.0640384 -0.06607 -0.0680931 -0.0701065 -0.0721092 -0.0741001 -0.0760781 -0.0780421 -0.0799909 -0.0819236 -0.083839 -0.0857361 -0.0876139 -0.0894713 -0.0913074 -0.0931212 -0.0949116 -0.0966779 -0.0984191 -0.100134 -0.0416749 -0.0437468 -0.0457105 -0.0476662 -0.0496341 -0.0516047 -0.0535721 -0.0555353 -0.0574939 -0.0594471 -0.0613939 -0.0633331 -0.0652638 -0.0671849 -0.0690954 -0.0709943 -0.0728805 -0.0747529 -0.0766106 -0.0784525 -0.0802777 -0.082085 -0.0838736 -0.0856425 -0.0873908 -0.0891174 -0.0908215 -0.0925022 -0.0941588 -0.0957902 -0.0403292 -0.0422959 -0.0441995 -0.0460974 -0.048001 -0.0499047 -0.0518048 -0.0537002 -0.0555904 -0.0574745 -0.0593515 -0.0612205 -0.0630805 -0.0649305 -0.0667695 -0.0685966 -0.0704108 -0.0722112 -0.0739968 -0.0757665 -0.0775196 -0.0792551 -0.080972 -0.0826695 -0.0843466 -0.0860026 -0.0876366 -0.0892477 -0.0908352 -0.0923984 -0.0393521 -0.0412492 -0.0431147 -0.0449754 -0.0468367 -0.0486957 -0.0505501 -0.0523992 -0.0542422 -0.0560784 -0.0579067 -0.0597265 -0.0615367 -0.0633365 -0.0651251 -0.0669014 -0.0686646 -0.0704139 -0.0721483 -0.0738669 -0.0755689 -0.0772534 -0.0789196 -0.0805666 -0.0821936 -0.0837998 -0.0853844 -0.0869467 -0.0884858 -0.0900011 -0.0388577 -0.0407354 -0.0425963 -0.0444516 -0.0463035 -0.0481505 -0.0499911 -0.0518245 -0.05365 -0.0554667 -0.0572738 -0.0590705 -0.0608561 -0.0626296 -0.0643903 -0.0661375 -0.0678702 -0.0695878 -0.0712895 -0.0729745 -0.0746421 -0.0762915 -0.0779221 -0.079533 -0.0811237 -0.0826934 -0.0842416 -0.0857674 -0.0872703 -0.0887499 0.204242 0.204323 0.204527 0.204912 0.205457 0.206164 0.207033 0.208059 0.209239 0.210567 0.212033 0.213625 0.215322 0.217096 0.218907 0.220699 0.222393 0.223882 0.225013 0.225583 0.225303 0.223787 0.220485 0.214677 0.205302 0.191055 0.169944 0.139451 0.0969714 0.0265014 0.201915 0.201982 0.202163 0.202504 0.202988 0.203616 0.204384 0.205288 0.206323 0.207479 0.208744 0.210101 0.211524 0.212981 0.214423 0.215788 0.216986 0.2179 0.218366 0.218164 0.216995 0.214455 0.209988 0.202864 0.192055 0.176257 0.153683 0.121665 0.0792551 0.00999069 0.199436 0.199501 0.19967 0.199977 0.200409 0.200965 0.201642 0.202433 0.203332 0.204326 0.205401 0.206536 0.207702 0.208862 0.209964 0.210938 0.21169 0.212095 0.211984 0.211132 0.209236 0.205895 0.200564 0.192537 0.180848 0.164252 0.141208 0.109077 0.0682093 0.00392011 0.196787 0.196845 0.196992 0.197256 0.197625 0.198098 0.198669 0.199332 0.200075 0.200886 0.201747 0.202634 0.203513 0.204343 0.205066 0.205606 0.205863 0.205706 0.204959 0.203391 0.200698 0.196481 0.19021 0.181202 0.168557 0.151107 0.12753 0.0953688 0.055397 -0.00480838 0.193961 0.194009 0.194131 0.194346 0.194647 0.19503 0.195487 0.196011 0.196589 0.197206 0.19784 0.198463 0.199039 0.199521 0.199847 0.199934 0.199677 0.198938 0.197537 0.195239 0.191739 0.186644 0.179441 0.169476 0.155917 0.137685 0.113641 0.0816052 0.0423005 -0.0140733 0.190952 0.190989 0.191083 0.191249 0.191479 0.191767 0.192107 0.192487 0.192893 0.193308 0.193707 0.19406 0.194326 0.194453 0.194375 0.194006 0.193235 0.191918 0.189874 0.186867 0.182596 0.176676 0.168618 0.157807 0.143478 0.12466 0.100366 0.0687535 0.0303384 -0.0220963 0.187751 0.187777 0.187843 0.187957 0.188112 0.188303 0.18852 0.188751 0.18898 0.189188 0.189346 0.189422 0.189371 0.189139 0.188655 0.187829 0.186546 0.184662 0.181993 0.178306 0.173307 0.166627 0.157804 0.146269 0.131331 0.11213 0.0878165 0.0569003 0.0196525 -0.0288545 0.184353 0.184367 0.184403 0.184463 0.184541 0.18463 0.18472 0.184798 0.184845 0.184839 0.184751 0.184545 0.184173 0.183579 0.182687 0.181406 0.17962 0.177182 0.17391 0.169578 0.163901 0.15653 0.147037 0.134901 0.119507 0.100111 0.0759872 0.0459801 0.0101312 -0.0345816 0.180752 0.180754 0.180757 0.180761 0.18076 0.180745 0.180704 0.180624 0.180485 0.180262 0.179924 0.179432 0.178738 0.177781 0.176485 0.174756 0.172478 0.169506 0.165661 0.160725 0.154429 0.146445 0.136382 0.123771 0.108076 0.0886632 0.064923 0.0359943 0.00174222 -0.0393617 0.176944 0.176932 0.176903 0.17685 0.176767 0.176645 0.176471 0.17623 0.175902 0.175459 0.174869 0.174091 0.173075 0.171759 0.170066 0.167902 0.16515 0.161671 0.15729 0.151801 0.144951 0.13644 0.125913 0.11296 0.0971149 0.0778547 0.0546751 0.0269624 -0.00552962 -0.0432325 0.172927 0.172901 0.172839 0.172728 0.172561 0.17233 0.172022 0.171619 0.1711 0.170437 0.169595 0.168534 0.167201 0.165533 0.163455 0.160872 0.157671 0.153717 0.148845 0.14286 0.135529 0.126582 0.115704 0.102537 0.0866906 0.0677384 0.0452755 0.0188859 -0.0117271 -0.0462453 0.168702 0.168663 0.168567 0.168396 0.168145 0.167805 0.167362 0.166797 0.166087 0.165205 0.164115 0.162775 0.161133 0.159126 0.156678 0.153699 0.150079 0.14569 0.140376 0.133959 0.126227 0.116938 0.10582 0.0925674 0.0768572 0.0583524 0.0367375 0.011749 -0.0169138 -0.0484639 0.164273 0.164219 0.16409 0.16386 0.163526 0.163076 0.162498 0.161772 0.160875 0.159778 0.158446 0.156836 0.154896 0.152565 0.14977 0.146422 0.142418 0.137638 0.131939 0.125157 0.117105 0.107572 0.0963229 0.0831057 0.0676582 0.0497215 0.0290594 0.00552185 -0.0211641 -0.0499576 0.159647 0.15958 0.159416 0.159129 0.158711 0.158154 0.157444 0.15656 0.155481 0.154175 0.152609 0.150741 0.148519 0.145884 0.142766 0.139082 0.134735 0.129613 0.123588 0.116514 0.108226 0.0985432 0.0872689 0.0741982 0.0591252 0.0418569 0.0222257 0.000163026 -0.0245592 -0.0508001 0.154837 0.154756 0.154559 0.154215 0.153716 0.153054 0.152215 0.15118 0.149924 0.148419 0.146631 0.144519 0.142034 0.13912 0.135709 0.131725 0.127079 0.12167 0.115382 0.108088 0.099647 0.0899059 0.0787046 0.0658806 0.0512771 0.0347567 0.0162085 -0.00437962 -0.0271845 -0.051069 0.14986 0.149765 0.149536 0.149137 0.14856 0.147797 0.146835 0.145654 0.144232 0.142539 0.140544 0.138207 0.135482 0.132315 0.128645 0.124401 0.119504 0.113862 0.107375 0.0999344 0.0914199 0.081707 0.0706678 0.0581772 0.044121 0.0284065 0.0109688 -0.00816673 -0.0291272 -0.050844 0.144738 0.144629 0.14437 0.143919 0.143267 0.142409 0.141331 0.140014 0.138436 0.136571 0.134386 0.131844 0.128904 0.125516 0.121623 0.117162 0.112062 0.106244 0.0996225 0.0921043 0.0835921 0.0739857 0.0631863 0.0511015 0.0376518 0.0227809 0.00645891 -0.0112652 -0.0304743 -0.0502052 0.139499 0.139379 0.139091 0.13859 0.13787 0.136923 0.135737 0.134295 0.132576 0.130553 0.128198 0.125476 0.122349 0.118772 0.114694 0.11006 0.104808 0.09887 0.0921742 0.0846447 0.0762033 0.0667724 0.0562783 0.0446559 0.0318543 0.0178449 0.00262414 -0.0137457 -0.031311 -0.0492305 0.134181 0.134049 0.133735 0.13319 0.132406 0.131378 0.130095 0.12854 0.126694 0.124532 0.122029 0.119153 0.115869 0.112137 0.107914 0.10315 0.0977945 0.0917898 0.0850774 0.0775964 0.0692862 0.060089 0.0499523 0.0388333 0.0267039 0.0135562 -0.00059487 -0.0156808 -0.0317193 -0.0479949 0.128827 0.128684 0.128346 0.127761 0.12692 0.125821 0.124452 0.122798 0.120841 0.118561 0.115932 0.112928 0.109517 0.105666 0.101336 0.096486 0.0910732 0.0850516 0.0783743 0.0709942 0.0628663 0.0539491 0.0442081 0.0336184 0.0221689 0.00986691 -0.00326026 -0.017143 -0.0317774 -0.0465689 0.123489 0.123337 0.122978 0.122358 0.121468 0.120306 0.118862 0.117124 0.115075 0.112696 0.109966 0.106861 0.103354 0.0994166 0.0950167 0.0901209 0.084694 0.0786999 0.0721026 0.0648673 0.0569619 0.048359 0.0390382 0.0289887 0.018212 0.00672583 -0.00543501 -0.0182028 -0.0315583 -0.0450183 0.118227 0.118068 0.11769 0.117041 0.116109 0.114895 0.11339 0.111583 0.109459 0.107002 0.104194 0.101014 0.0974402 0.0934486 0.0890134 0.0841079 0.0787045 0.0727759 0.0662956 0.0592391 0.0515855 0.0433186 0.0344292 0.0249169 0.0147925 0.00408011 -0.00718134 -0.0189279 -0.0311301 -0.0434033 0.113113 0.112947 0.112555 0.111881 0.110916 0.109659 0.108105 0.106244 0.104063 0.101547 0.0986835 0.0954538 0.0918403 0.0878235 0.0833835 0.0784994 0.0731509 0.0673181 0.0609827 0.0541291 0.0467451 0.0388235 0.0303637 0.0213729 0.011868 0.00187725 -0.00855923 -0.0193822 -0.0305556 -0.0417798 0.108226 0.108055 0.107651 0.106959 0.105967 0.104678 0.103088 0.101186 0.0989638 0.096409 0.0935097 0.0902522 0.0866224 0.0826052 0.0781855 0.0733481 0.0680785 0.0623634 0.0561913 0.0495537 0.0424455 0.0348666 0.0268224 0.0183256 0.00939696 6.66813e-05 -0.0096253 -0.0196248 -0.0298924 -0.040199 0.103659 0.103483 0.103071 0.102365 0.101354 0.100042 0.0984249 0.0964963 0.0942475 0.0916693 0.0887521 0.0854856 0.0818588 0.0778608 0.0734806 0.0687079 0.0635331 0.0579484 0.0519479 0.0455287 0.0386912 0.0314403 0.0237862 0.015745 0.00733976 -0.00139873 -0.0104318 -0.0197101 -0.0291928 -0.0387079 0.099512 0.0993338 0.0989156 0.0981998 0.0971764 0.0958487 0.0942153 0.0922705 0.0900074 0.087419 0.084498 0.0812367 0.0776273 0.0736621 0.0693337 0.0646359 0.0595632 0.0541121 0.0482811 0.0420717 0.0354883 0.0285397 0.0212391 0.0136049 0.00566123 -0.00256133 -0.0110259 -0.0196874 -0.0285052 -0.0373522 0.095902 0.0957219 0.0952998 0.0945783 0.0935471 0.0922104 0.0905681 0.0886156 0.0863475 0.0837586 0.0808435 0.0775969 0.0740133 0.0700879 0.0658163 0.0611952 0.0562227 0.0508985 0.0452245 0.0392053 0.0328484 0.0261652 0.0191708 0.0118849 0.00433233 -0.00345726 -0.0114487 -0.0196009 -0.0278736 -0.0361726 0.0929576 0.0927763 0.0923521 0.0916275 0.0905924 0.0892515 0.0876056 0.0856512 0.0833841 0.0808004 0.0778964 0.0746684 0.0711131 0.0672276 0.0630098 0.0584589 0.0535753 0.0483612 0.042821 0.0369614 0.0307921 0.0243261 0.0175798 0.0105738 0.00333252 -0.00411493 -0.0117352 -0.0194901 -0.0273409 -0.0352177 0.090824 0.090642 0.0902167 0.0894909 0.0884544 0.0871121 0.0854656 0.0835123 0.0812487 0.078672 0.0757795 0.0725688 0.0690378 0.0651853 0.0610107 0.0565146 0.0516993 0.0465685 0.0411282 0.0353865 0.0293546 0.0230462 0.0164786 0.00967265 0.00265272 -0.00455288 -0.0119119 -0.0193882 -0.0269434 -0.0345207 0.0896651 0.0894825 0.0890565 0.0883306 0.0872938 0.0859515 0.0843054 0.0823535 0.0800929 0.0775211 0.0746361 0.0714361 0.0679198 0.0640867 0.059937 0.0554722 0.0506954 0.0456112 0.0402262 0.0345495 0.0285926 0.02237 0.0158992 0.00920101 0.00229973 -0.00477684 -0.0119974 -0.0193271 -0.026729 -0.0341557 0.239522 0.239669 0.240092 0.240859 0.241945 0.243372 0.245148 0.247291 0.249821 0.252762 0.256141 0.259992 0.264355 0.269274 0.274802 0.281002 0.287943 0.295711 0.304398 0.314122 0.325005 0.337217 0.350898 0.366327 0.383593 0.40323 0.425044 0.450121 0.477498 0.508846 0.238674 0.238818 0.239234 0.23999 0.241064 0.242474 0.24423 0.246349 0.24885 0.251757 0.255098 0.258904 0.263216 0.268076 0.273536 0.279657 0.286508 0.294171 0.302736 0.312319 0.323034 0.33505 0.348495 0.363649 0.380564 0.39981 0.421061 0.4456 0.471937 0.502699 0.2378 0.237942 0.23835 0.239096 0.240156 0.241549 0.243284 0.245378 0.24785 0.250723 0.254023 0.257784 0.262041 0.266839 0.272229 0.278267 0.285023 0.292574 0.30101 0.310441 0.320976 0.332781 0.345967 0.360819 0.377347 0.396157 0.416771 0.440701 0.46584 0.495921 0.236902 0.237041 0.237441 0.238177 0.239223 0.240598 0.242312 0.24438 0.246822 0.249659 0.252918 0.25663 0.260832 0.265566 0.27088 0.276832 0.283487 0.290922 0.29922 0.308489 0.318832 0.330409 0.343316 0.357839 0.373942 0.392272 0.412177 0.435428 0.45921 0.488517 0.235979 0.236115 0.236507 0.237233 0.238264 0.239622 0.241313 0.243355 0.245765 0.248566 0.251782 0.255444 0.259588 0.264255 0.269492 0.275354 0.281903 0.289214 0.297367 0.306464 0.316602 0.327935 0.340543 0.354711 0.37035 0.388156 0.40728 0.429783 0.452051 0.480494 0.235033 0.235166 0.23555 0.236265 0.237281 0.23862 0.240289 0.242304 0.244682 0.247444 0.250616 0.254227 0.258311 0.262908 0.268064 0.273831 0.28027 0.287452 0.295452 0.304368 0.314288 0.325362 0.337649 0.351435 0.366574 0.383812 0.402082 0.42377 0.444368 0.471861 0.234062 0.234193 0.234568 0.235272 0.236274 0.237594 0.23924 0.241227 0.243572 0.246295 0.249421 0.252978 0.257 0.261525 0.266597 0.272266 0.27859 0.285636 0.293475 0.302201 0.311891 0.322689 0.334634 0.348012 0.362614 0.37924 0.396587 0.417392 0.436166 0.462626 0.233068 0.233196 0.233563 0.234256 0.235243 0.236544 0.238166 0.240125 0.242435 0.245118 0.248197 0.2517 0.255658 0.260108 0.265092 0.270659 0.276863 0.283767 0.291438 0.299963 0.309412 0.319918 0.331501 0.344444 0.358474 0.374444 0.390798 0.410654 0.42745 0.4528 0.232051 0.232176 0.232535 0.233217 0.234189 0.23547 0.237068 0.238998 0.241273 0.243915 0.246946 0.250392 0.254283 0.258656 0.26355 0.269011 0.27509 0.281847 0.289342 0.297657 0.306851 0.31705 0.328252 0.340733 0.354155 0.369425 0.384719 0.403558 0.418228 0.442393 0.231012 0.231134 0.231485 0.232156 0.233112 0.234373 0.235947 0.237846 0.240086 0.242686 0.245667 0.249055 0.252878 0.257171 0.261972 0.267323 0.273272 0.279875 0.287188 0.295283 0.304211 0.314087 0.324887 0.33688 0.34966 0.364184 0.378354 0.396108 0.408509 0.431417 0.22995 0.23007 0.230412 0.231072 0.232012 0.233254 0.234803 0.236672 0.238875 0.241432 0.244362 0.24769 0.251443 0.255654 0.260358 0.265596 0.271411 0.277855 0.284976 0.292843 0.301492 0.31103 0.321408 0.332887 0.344992 0.358725 0.371707 0.388309 0.3983 0.419882 0.228866 0.228983 0.229318 0.229966 0.230891 0.232113 0.233636 0.235474 0.237641 0.240153 0.243031 0.246297 0.249979 0.254105 0.25871 0.26383 0.269507 0.275785 0.282709 0.290337 0.298697 0.307881 0.317818 0.328755 0.340152 0.353049 0.364785 0.380161 0.387613 0.4078 0.22776 0.227876 0.228203 0.22884 0.229749 0.23095 0.232448 0.234254 0.236383 0.23885 0.241675 0.244879 0.248486 0.252526 0.257028 0.262028 0.267561 0.273668 0.280387 0.287768 0.295826 0.304641 0.314118 0.324488 0.335145 0.347158 0.357594 0.371669 0.37646 0.39518 0.226634 0.226747 0.227067 0.227693 0.228586 0.229767 0.231238 0.233013 0.235103 0.237525 0.240295 0.243434 0.246966 0.250917 0.255314 0.260189 0.265574 0.271505 0.278012 0.285136 0.292881 0.301311 0.31031 0.320086 0.329974 0.341054 0.350139 0.362834 0.364855 0.382033 0.225486 0.225598 0.225911 0.226526 0.227404 0.228563 0.230009 0.231751 0.233802 0.236177 0.238891 0.241965 0.24542 0.249279 0.253568 0.258315 0.263548 0.269297 0.275585 0.282443 0.289864 0.297895 0.306396 0.315551 0.324641 0.33474 0.342429 0.353656 0.352813 0.368366 0.224319 0.22443 0.224736 0.22534 0.226202 0.227341 0.228759 0.230469 0.232481 0.234807 0.237465 0.240472 0.243847 0.247613 0.251791 0.256407 0.261484 0.267045 0.273107 0.279691 0.286776 0.294393 0.302379 0.310887 0.31915 0.328217 0.33447 0.344135 0.340353 0.354184 0.223132 0.223241 0.223541 0.224135 0.224981 0.226099 0.227491 0.229168 0.231139 0.233417 0.236018 0.238956 0.242251 0.24592 0.249986 0.254467 0.259382 0.264751 0.27058 0.276881 0.28362 0.290807 0.29826 0.306095 0.313505 0.321487 0.326271 0.33427 0.327497 0.339488 0.221925 0.222034 0.222327 0.222912 0.223743 0.22484 0.226205 0.227848 0.229778 0.232008 0.234549 0.237418 0.24063 0.244202 0.248151 0.252494 0.257245 0.262415 0.268005 0.274014 0.280396 0.28714 0.294043 0.301178 0.307708 0.314553 0.317841 0.324058 0.314269 0.324274 0.2207 0.220809 0.221099 0.221671 0.222487 0.223563 0.224902 0.226511 0.2284 0.230579 0.233061 0.235859 0.238987 0.242459 0.24629 0.250492 0.255073 0.26004 0.265384 0.271093 0.277107 0.283393 0.289728 0.296139 0.301763 0.307419 0.309186 0.313497 0.300698 0.308531 0.219456 0.219565 0.21985 0.220413 0.221214 0.22227 0.223581 0.225157 0.227004 0.229133 0.231554 0.23428 0.237322 0.240693 0.244402 0.24846 0.252868 0.257627 0.262718 0.268118 0.273754 0.279568 0.285318 0.29098 0.295673 0.300087 0.300316 0.302582 0.286814 0.292241 0.218194 0.218304 0.218585 0.21914 0.219926 0.220961 0.222245 0.223786 0.225591 0.227669 0.230029 0.232682 0.235637 0.238904 0.24249 0.2464 0.250631 0.255177 0.260009 0.265093 0.270339 0.275668 0.280817 0.285704 0.289441 0.29256 0.291236 0.291311 0.272653 0.275377 0.216915 0.217027 0.217304 0.21785 0.218622 0.219637 0.220894 0.2224 0.224163 0.226189 0.228487 0.231065 0.233931 0.237093 0.240553 0.244313 0.248364 0.252691 0.257258 0.262017 0.266864 0.271695 0.276224 0.280314 0.28307 0.284845 0.281952 0.279682 0.258251 0.257901 0.215619 0.215733 0.216008 0.216546 0.217304 0.218298 0.219528 0.221 0.22272 0.224693 0.226928 0.229431 0.232208 0.235262 0.238594 0.2422 0.246067 0.250171 0.254467 0.258894 0.263332 0.267651 0.271545 0.274814 0.276563 0.276946 0.272469 0.267697 0.243648 0.239762 0.214306 0.214423 0.214698 0.215228 0.215973 0.216947 0.218149 0.219586 0.221263 0.223184 0.225355 0.227781 0.230467 0.233412 0.236614 0.240064 0.243743 0.24762 0.251639 0.255726 0.259746 0.26354 0.266782 0.269209 0.269924 0.268874 0.262793 0.255363 0.228885 0.220899 0.212977 0.213098 0.213373 0.213896 0.214627 0.215582 0.216757 0.218159 0.219792 0.22166 0.223766 0.226115 0.228708 0.231543 0.234612 0.237903 0.241391 0.245035 0.248772 0.252511 0.256102 0.259359 0.261933 0.263497 0.263151 0.260627 0.252914 0.242683 0.213986 0.201226 0.211632 0.211759 0.212034 0.212551 0.213269 0.214203 0.215352 0.216718 0.218307 0.22012 0.222161 0.224431 0.226929 0.22965 0.232584 0.235712 0.239003 0.242409 0.245856 0.249238 0.252388 0.255093 0.256978 0.257654 0.256214 0.252177 0.242792 0.229635 0.198932 0.180609 0.210273 0.210405 0.210683 0.211194 0.2119 0.212815 0.213936 0.215268 0.216812 0.218571 0.220546 0.222736 0.225138 0.227745 0.230541 0.233504 0.236595 0.239758 0.242908 0.245925 0.248624 0.250763 0.251943 0.251711 0.249147 0.24357 0.232466 0.216296 0.183796 0.15899 0.208899 0.209042 0.209326 0.209834 0.210532 0.21143 0.212528 0.213828 0.215332 0.217041 0.218955 0.221071 0.223384 0.225883 0.228549 0.231355 0.234256 0.237187 0.240053 0.242719 0.244982 0.246573 0.247064 0.245942 0.242266 0.235165 0.222323 0.203126 0.169016 0.136666 0.207512 0.207667 0.207961 0.20847 0.209161 0.210047 0.211124 0.212397 0.213864 0.215528 0.217386 0.219434 0.221665 0.224065 0.226613 0.229274 0.231998 0.234714 0.237314 0.239649 0.241498 0.242563 0.242387 0.240396 0.235617 0.226996 0.212354 0.190085 0.154352 0.112852 0.206103 0.206254 0.206539 0.207027 0.20769 0.208538 0.209567 0.210781 0.212178 0.213757 0.215515 0.217446 0.219538 0.221774 0.224127 0.226557 0.229004 0.231386 0.233582 0.235424 0.236667 0.23698 0.235872 0.2327 0.226453 0.215915 0.198991 0.173312 0.135311 0.0817266 0.252867 0.25306 0.253571 0.25447 0.255735 0.257384 0.259429 0.26188 0.264788 0.268152 0.272102 0.276351 0.281249 0.286691 0.292767 0.299497 0.30691 0.31503 0.323879 0.333443 0.343709 0.354576 0.365891 0.377366 0.388585 0.398643 0.406917 0.40998 0.410511 0.393252 0.252791 0.252982 0.253494 0.254395 0.255662 0.257316 0.259367 0.26183 0.264732 0.26808 0.271789 0.27631 0.281311 0.286759 0.292863 0.299646 0.307137 0.315363 0.324355 0.334107 0.344631 0.355846 0.367632 0.379744 0.391833 0.403054 0.412923 0.418175 0.420587 0.411446 0.252691 0.252881 0.253393 0.254292 0.255558 0.257209 0.259258 0.261721 0.264617 0.26797 0.271779 0.276164 0.281005 0.286646 0.29275 0.299526 0.307021 0.31527 0.324307 0.334124 0.344753 0.356125 0.368145 0.380603 0.393208 0.405183 0.416165 0.423266 0.427201 0.424298 0.252568 0.252756 0.253268 0.254166 0.255431 0.257081 0.259129 0.261591 0.264488 0.267848 0.271694 0.27605 0.280935 0.286412 0.292643 0.299479 0.306991 0.315274 0.324381 0.334295 0.345066 0.356641 0.368945 0.381807 0.394984 0.407774 0.419875 0.428856 0.434293 0.436356 0.25242 0.252607 0.253119 0.254017 0.255281 0.256931 0.258978 0.261439 0.264337 0.267698 0.271542 0.275911 0.280825 0.286325 0.292457 0.29937 0.306983 0.315299 0.324467 0.334494 0.345422 0.357215 0.369819 0.383104 0.396869 0.410494 0.423691 0.434533 0.441491 0.447725 0.252248 0.252434 0.252945 0.253843 0.255106 0.256754 0.2588 0.261261 0.264157 0.267516 0.271358 0.275733 0.280655 0.286181 0.292332 0.299162 0.306867 0.315299 0.324491 0.334617 0.34569 0.357686 0.370569 0.384251 0.398567 0.412986 0.427205 0.439824 0.448336 0.458168 0.252051 0.252236 0.252747 0.253644 0.254905 0.256552 0.258596 0.261054 0.263948 0.267305 0.271147 0.27552 0.280445 0.285979 0.292156 0.299016 0.306607 0.315228 0.324569 0.334684 0.345871 0.358053 0.371193 0.385245 0.400074 0.415246 0.430421 0.444715 0.454829 0.467772 0.25183 0.252014 0.252524 0.253419 0.254679 0.256323 0.258364 0.26082 0.26371 0.267065 0.270905 0.275276 0.280202 0.285738 0.291926 0.298816 0.306448 0.314844 0.324782 0.334735 0.345983 0.358333 0.37171 0.38611 0.401423 0.417308 0.433388 0.449245 0.461003 0.476635 0.251583 0.251766 0.252276 0.253169 0.254426 0.256068 0.258105 0.260557 0.263444 0.266794 0.270631 0.274998 0.279924 0.285461 0.291655 0.298559 0.306232 0.31469 0.323753 0.334736 0.346043 0.358516 0.372119 0.386849 0.402614 0.419173 0.436108 0.453413 0.466843 0.484807 0.25131 0.251492 0.252001 0.252893 0.254148 0.255786 0.257819 0.260266 0.263148 0.266493 0.270325 0.274687 0.27961 0.285147 0.291343 0.298255 0.305947 0.314478 0.323839 0.334347 0.346044 0.35861 0.372419 0.387455 0.403642 0.420831 0.438577 0.457211 0.472321 0.49232 0.251012 0.251193 0.251701 0.252591 0.253842 0.255477 0.257505 0.259947 0.262822 0.26616 0.269986 0.274342 0.279261 0.284794 0.29099 0.297907 0.305611 0.314178 0.323671 0.334128 0.345867 0.358763 0.372632 0.387927 0.404506 0.422278 0.44079 0.460634 0.477414 0.499202 0.250688 0.250869 0.251375 0.252262 0.25351 0.25514 0.257163 0.259598 0.262467 0.265797 0.269615 0.273963 0.278875 0.284402 0.290595 0.297513 0.305224 0.313807 0.323326 0.333873 0.345461 0.359092 0.372792 0.388268 0.405203 0.423509 0.442744 0.463684 0.482102 0.505472 0.250338 0.250518 0.251023 0.251906 0.253151 0.254775 0.256792 0.25922 0.262081 0.265402 0.269211 0.273549 0.278452 0.28397 0.290157 0.297074 0.304787 0.31338 0.322917 0.333525 0.345206 0.357713 0.372844 0.388496 0.405721 0.424519 0.444435 0.466362 0.486365 0.511142 0.249962 0.25014 0.250644 0.251524 0.252764 0.254383 0.256393 0.258813 0.261664 0.264975 0.268774 0.2731 0.277991 0.2835 0.289677 0.296588 0.304299 0.312897 0.322453 0.333091 0.34488 0.357838 0.37243 0.388613 0.406073 0.425307 0.445857 0.468666 0.490185 0.51622 0.24956 0.249737 0.250238 0.251115 0.25235 0.253962 0.255964 0.258375 0.261217 0.264516 0.268302 0.272615 0.277494 0.282989 0.289154 0.296055 0.30376 0.312358 0.321925 0.332584 0.344437 0.357593 0.372116 0.388513 0.406433 0.425901 0.447007 0.470599 0.493546 0.520708 0.249131 0.249307 0.249806 0.250679 0.251908 0.253514 0.255507 0.257908 0.260738 0.264025 0.267798 0.272095 0.276959 0.282438 0.288588 0.295474 0.303169 0.31176 0.321331 0.332003 0.343887 0.357096 0.371765 0.387947 0.406919 0.426348 0.44789 0.47216 0.496433 0.524605 0.248676 0.24885 0.249347 0.250215 0.251438 0.253036 0.255021 0.257411 0.260229 0.263501 0.267259 0.27154 0.276385 0.281846 0.287978 0.294847 0.302526 0.311105 0.320671 0.331346 0.343248 0.356495 0.371272 0.38763 0.405276 0.42658 0.448535 0.473355 0.498833 0.527909 0.248194 0.248367 0.248861 0.249724 0.250941 0.252531 0.254505 0.256884 0.259688 0.262945 0.266686 0.270948 0.275774 0.281213 0.287324 0.294171 0.30183 0.31039 0.319945 0.330615 0.342524 0.355803 0.370636 0.387169 0.405385 0.426064 0.448914 0.47421 0.500743 0.530613 0.247685 0.247857 0.248347 0.249206 0.250416 0.251997 0.25396 0.256326 0.259116 0.262356 0.266079 0.270321 0.275124 0.28054 0.286625 0.293447 0.301081 0.309617 0.319152 0.329807 0.341713 0.355008 0.369874 0.386508 0.405016 0.425731 0.448736 0.474731 0.50218 0.532723 0.24715 0.247321 0.247807 0.24866 0.249862 0.251434 0.253386 0.255738 0.258512 0.261735 0.265437 0.269657 0.274436 0.279826 0.285883 0.292675 0.300279 0.308785 0.318292 0.328924 0.340813 0.354107 0.368988 0.38567 0.404278 0.425219 0.448295 0.474706 0.50315 0.534289 0.246588 0.246757 0.24724 0.248087 0.249281 0.250842 0.252782 0.25512 0.257877 0.261081 0.264761 0.268957 0.27371 0.27907 0.285096 0.291855 0.299423 0.307893 0.317365 0.327963 0.339823 0.353101 0.367977 0.384678 0.403345 0.424425 0.447791 0.474125 0.50343 0.535288 0.246 0.246167 0.246645 0.247486 0.248672 0.250222 0.252149 0.254471 0.257211 0.260394 0.264051 0.268221 0.272945 0.278273 0.284264 0.290986 0.298514 0.306942 0.316371 0.326926 0.338745 0.351989 0.36684 0.383536 0.402234 0.423375 0.446944 0.473538 0.503005 0.535155 0.245385 0.24555 0.246024 0.246858 0.248034 0.249573 0.251487 0.253793 0.256513 0.259674 0.263307 0.267449 0.272142 0.277436 0.283389 0.290068 0.297552 0.305931 0.31531 0.325812 0.337577 0.350771 0.365576 0.38224 0.400932 0.422086 0.445755 0.472522 0.502433 0.534789 0.244744 0.244907 0.245375 0.246202 0.247369 0.248896 0.250795 0.253084 0.255784 0.258922 0.262529 0.266641 0.2713 0.276557 0.282469 0.289103 0.296536 0.304861 0.31418 0.32462 0.336319 0.349447 0.364186 0.38079 0.399437 0.42056 0.444251 0.471073 0.501266 0.533871 0.244076 0.244237 0.2447 0.245519 0.246676 0.248191 0.250074 0.252345 0.255024 0.258138 0.261716 0.265797 0.27042 0.275637 0.281504 0.288088 0.295467 0.303731 0.312984 0.323351 0.334971 0.348017 0.362668 0.379186 0.39775 0.418796 0.442438 0.469231 0.499503 0.532246 0.243382 0.243541 0.243998 0.244809 0.245956 0.247457 0.249324 0.251576 0.254233 0.257321 0.26087 0.264917 0.269503 0.274677 0.280496 0.287026 0.294344 0.302541 0.31172 0.322004 0.333533 0.346481 0.361024 0.377428 0.395871 0.416795 0.440315 0.467005 0.49719 0.529957 0.242662 0.242818 0.243269 0.244072 0.245208 0.246695 0.248546 0.250777 0.253411 0.256472 0.25999 0.264002 0.268547 0.273676 0.279443 0.285916 0.293169 0.301292 0.310388 0.320581 0.332006 0.344839 0.359252 0.375515 0.393799 0.414556 0.437882 0.464396 0.494336 0.527023 0.241915 0.24207 0.242514 0.243309 0.244432 0.245905 0.247738 0.249949 0.252558 0.255591 0.259077 0.263051 0.267554 0.272635 0.278347 0.284758 0.29194 0.299984 0.30899 0.31908 0.330389 0.343091 0.357353 0.373448 0.391535 0.412079 0.435138 0.461402 0.49094 0.523445 0.241143 0.241295 0.241733 0.242518 0.24363 0.245088 0.246903 0.249092 0.251676 0.254679 0.258131 0.262066 0.266524 0.271554 0.277208 0.283552 0.29066 0.298618 0.307525 0.317503 0.328683 0.341238 0.355327 0.371227 0.389079 0.409365 0.432082 0.458024 0.487 0.519221 0.240345 0.240495 0.240925 0.241702 0.242801 0.244244 0.246039 0.248206 0.250763 0.253736 0.257152 0.261046 0.265458 0.270433 0.276026 0.2823 0.289327 0.297193 0.305994 0.31585 0.326888 0.339279 0.353175 0.368853 0.386431 0.406415 0.428717 0.454263 0.482519 0.514353 0.213957 0.213852 0.213606 0.213188 0.212588 0.211806 0.210842 0.209689 0.208341 0.20679 0.20503 0.203052 0.200846 0.198406 0.19572 0.192779 0.189576 0.186101 0.182345 0.178304 0.173969 0.169338 0.164407 0.159177 0.153648 0.147827 0.141719 0.135337 0.128693 0.121809 0.214625 0.214522 0.214282 0.213871 0.213283 0.212516 0.21157 0.210437 0.209111 0.207584 0.205849 0.203897 0.201718 0.199303 0.196642 0.193724 0.19054 0.187081 0.183336 0.179299 0.174962 0.170321 0.16537 0.160111 0.154542 0.14867 0.1425 0.136044 0.129316 0.12234 0.215843 0.215745 0.215514 0.215118 0.214552 0.213813 0.212899 0.211805 0.210521 0.209041 0.207355 0.205453 0.203325 0.20096 0.198347 0.195474 0.19233 0.188902 0.185181 0.181155 0.176818 0.17216 0.167177 0.161865 0.156225 0.150259 0.143972 0.137377 0.130484 0.123321 0.217499 0.217406 0.217189 0.216816 0.216281 0.215582 0.214717 0.213677 0.212455 0.211042 0.209427 0.2076 0.205548 0.203258 0.200718 0.197913 0.19483 0.191454 0.187771 0.18377 0.179438 0.174764 0.169741 0.164362 0.158626 0.152532 0.146085 0.139295 0.132174 0.124753 0.219491 0.219405 0.219205 0.218861 0.218366 0.21772 0.216916 0.215949 0.214807 0.213482 0.211961 0.210232 0.208281 0.206093 0.203652 0.200941 0.197944 0.194643 0.19102 0.18706 0.182746 0.178063 0.173 0.167548 0.161699 0.155451 0.148807 0.141774 0.134365 0.126613 0.221725 0.221648 0.221468 0.221159 0.220714 0.220131 0.219404 0.218524 0.217481 0.216265 0.214861 0.213255 0.211431 0.209372 0.207058 0.204471 0.201588 0.19839 0.194853 0.190957 0.18668 0.182003 0.176909 0.171383 0.165413 0.158994 0.152124 0.144808 0.137058 0.128911 0.224119 0.224052 0.223897 0.223629 0.223241 0.222732 0.222094 0.221317 0.220392 0.219304 0.21804 0.216582 0.214912 0.213011 0.210856 0.208423 0.205688 0.202623 0.199204 0.195401 0.191188 0.186539 0.18143 0.17584 0.16975 0.16315 0.156032 0.1484 0.140262 0.131654 0.2266 0.226546 0.226418 0.226196 0.225874 0.225448 0.224911 0.224253 0.223462 0.222523 0.221421 0.220136 0.218648 0.216934 0.214969 0.212725 0.210172 0.207279 0.204012 0.200338 0.196222 0.191631 0.186532 0.180895 0.174695 0.167913 0.160535 0.152559 0.143991 0.134861 0.229109 0.229067 0.228969 0.228798 0.228548 0.228215 0.227791 0.227265 0.226624 0.225853 0.224933 0.223846 0.222567 0.221071 0.219329 0.217308 0.214976 0.212293 0.20922 0.205716 0.201737 0.197241 0.192185 0.186529 0.180238 0.173281 0.165638 0.157299 0.148266 0.138553 0.231591 0.231563 0.231497 0.231381 0.23121 0.230978 0.230677 0.230295 0.229818 0.229232 0.228516 0.227648 0.226605 0.225356 0.223869 0.222109 0.220036 0.217605 0.214771 0.211482 0.207687 0.203331 0.198359 0.192721 0.186366 0.179254 0.17135 0.162635 0.153107 0.142753 0.234005 0.233992 0.23396 0.233902 0.233815 0.23369 0.233519 0.233292 0.232993 0.232606 0.232112 0.231486 0.230701 0.229728 0.228529 0.227066 0.225292 0.223158 0.220609 0.217586 0.214025 0.20986 0.205024 0.199448 0.193069 0.185828 0.177678 0.168584 0.15854 0.147484 0.236316 0.236318 0.236322 0.236325 0.236325 0.236313 0.23628 0.236215 0.236104 0.23593 0.235672 0.235307 0.234804 0.234132 0.233252 0.232119 0.230684 0.228891 0.226677 0.223972 0.220702 0.216786 0.212142 0.206684 0.200329 0.192999 0.184628 0.17516 0.164588 0.15277 0.238498 0.238515 0.238556 0.238623 0.238712 0.238816 0.238926 0.23903 0.239115 0.239164 0.239156 0.239066 0.238865 0.238517 0.237983 0.237214 0.236157 0.234748 0.232917 0.230586 0.227666 0.224062 0.219674 0.214397 0.208125 0.200757 0.192201 0.182376 0.171274 0.158632 0.240533 0.240565 0.240643 0.240774 0.240954 0.241176 0.241432 0.24171 0.241997 0.242276 0.242527 0.242726 0.242841 0.242838 0.242674 0.242299 0.241654 0.240672 0.239273 0.23737 0.234861 0.231637 0.227576 0.222551 0.216431 0.209086 0.200394 0.190242 0.178619 0.165092 0.242406 0.242454 0.242569 0.242764 0.243036 0.243377 0.243779 0.244232 0.244724 0.245239 0.245756 0.246252 0.246697 0.247054 0.247281 0.247325 0.247125 0.246608 0.245688 0.244267 0.242232 0.239456 0.235797 0.231103 0.225214 0.217965 0.2092 0.19876 0.186642 0.172168 0.244112 0.244175 0.244326 0.244585 0.244948 0.245407 0.245955 0.246584 0.247281 0.248032 0.248819 0.249618 0.2504 0.25113 0.251764 0.252249 0.252522 0.252505 0.252106 0.25122 0.249719 0.247461 0.244283 0.240005 0.234433 0.227365 0.218604 0.207929 0.195359 0.179874 0.245646 0.245724 0.24591 0.246232 0.246684 0.247259 0.247952 0.248753 0.249655 0.250642 0.251699 0.252803 0.253927 0.255037 0.25609 0.257033 0.2578 0.258313 0.258475 0.258171 0.257263 0.255593 0.252975 0.249202 0.244043 0.23725 0.228583 0.217742 0.204783 0.188222 0.24701 0.247102 0.247323 0.247706 0.248244 0.248933 0.249765 0.250737 0.251839 0.253059 0.254383 0.255791 0.257257 0.258751 0.260229 0.261641 0.262921 0.263988 0.264744 0.265065 0.264806 0.26379 0.261812 0.258634 0.253989 0.247577 0.239108 0.228182 0.214923 0.197216 0.248208 0.248313 0.248568 0.249009 0.249631 0.250428 0.251397 0.252533 0.253829 0.255277 0.256863 0.25857 0.260377 0.262252 0.264159 0.266046 0.26785 0.269491 0.270867 0.271851 0.272289 0.271991 0.270731 0.26824 0.264213 0.258294 0.250141 0.239225 0.225781 0.206857 0.249246 0.249363 0.24965 0.250147 0.250849 0.25175 0.252849 0.254143 0.255627 0.257295 0.259135 0.261135 0.263275 0.265529 0.267861 0.270225 0.27256 0.274786 0.276803 0.278481 0.279659 0.280136 0.279666 0.277953 0.27465 0.269343 0.261637 0.25084 0.237356 0.217139 0.250132 0.250261 0.250577 0.251127 0.251905 0.252905 0.254128 0.255572 0.257236 0.259115 0.261201 0.263484 0.265948 0.268572 0.271324 0.274161 0.277027 0.279845 0.282517 0.284912 0.286866 0.288168 0.288556 0.287706 0.285235 0.280662 0.273542 0.262984 0.249638 0.22805 0.250875 0.251015 0.25136 0.25196 0.252808 0.253901 0.255241 0.256828 0.258662 0.260741 0.263062 0.265617 0.268395 0.271377 0.274539 0.277841 0.281234 0.284644 0.287977 0.291106 0.293863 0.296032 0.297339 0.297434 0.295897 0.292181 0.285797 0.275609 0.262608 0.239573 0.251486 0.251636 0.252007 0.252654 0.253568 0.254748 0.256198 0.257918 0.259913 0.262182 0.264726 0.267539 0.270617 0.273945 0.277503 0.281259 0.285169 0.289166 0.293161 0.29703 0.30061 0.30368 0.305957 0.30707 0.306566 0.303829 0.298333 0.288657 0.276232 0.251683 0.251975 0.252134 0.252529 0.25322 0.254196 0.255457 0.257008 0.258854 0.260998 0.263446 0.266199 0.269257 0.272619 0.276277 0.280216 0.284411 0.288824 0.293397 0.298048 0.30266 0.307073 0.311069 0.314357 0.31655 0.31717 0.315529 0.311073 0.302059 0.290455 0.264346 0.252353 0.25252 0.252938 0.253669 0.254702 0.256037 0.257683 0.259644 0.261929 0.264542 0.267491 0.270779 0.27441 0.278381 0.282683 0.287299 0.292198 0.297332 0.302627 0.307975 0.313224 0.31816 0.322492 0.32582 0.327645 0.327212 0.323946 0.31576 0.305224 0.277555 0.25263 0.252805 0.253244 0.254012 0.255096 0.256501 0.258233 0.260301 0.262715 0.265482 0.268614 0.272117 0.276 0.280265 0.284911 0.289929 0.295295 0.300972 0.306895 0.312969 0.319051 0.324936 0.330337 0.334848 0.337954 0.338842 0.336916 0.329756 0.320535 0.291394 0.252817 0.252999 0.253457 0.254259 0.25539 0.256858 0.25867 0.260836 0.263368 0.266278 0.26958 0.273281 0.2774 0.281942 0.286913 0.292312 0.298125 0.304323 0.310857 0.317641 0.324549 0.331385 0.337871 0.343604 0.348058 0.350371 0.349923 0.344001 0.336281 0.305836 0.252924 0.253112 0.253588 0.254421 0.255595 0.25712 0.259005 0.261261 0.263902 0.266941 0.270397 0.274284 0.278622 0.28342 0.288693 0.294447 0.300678 0.307369 0.314481 0.321941 0.329641 0.337396 0.344942 0.351877 0.357672 0.361423 0.362469 0.357907 0.351541 0.319828 0.252961 0.253153 0.253646 0.254507 0.255721 0.257298 0.259249 0.261587 0.264323 0.267478 0.271069 0.275119 0.27965 0.284678 0.290221 0.296292 0.302896 0.310026 0.317655 0.325722 0.334133 0.342716 0.351216 0.359238 0.366246 0.371301 0.373694 0.370474 0.364926 0.332043 0.252935 0.253131 0.253637 0.254522 0.255768 0.257388 0.259395 0.261807 0.264623 0.267883 0.271628 0.275791 0.28049 0.285726 0.29152 0.297891 0.304853 0.312411 0.320556 0.329239 0.338394 0.347867 0.357431 0.366713 0.375199 0.381942 0.386232 0.385067 0.381151 0.350745 0.117312 0.115495 0.113673 0.111841 0.109996 0.108139 0.106271 0.104392 0.102502 0.100604 0.0986956 0.0967792 0.0948549 0.0929233 0.090985 0.0890406 0.0870907 0.085136 0.0831771 0.0812145 0.0792491 0.0772814 0.075312 0.0733416 0.0713708 0.0694007 0.0674313 0.0654636 0.063498 0.0615355 0.117783 0.115955 0.114125 0.112284 0.110429 0.108559 0.106676 0.10478 0.102872 0.100952 0.0990209 0.0970792 0.0951275 0.0931665 0.0911968 0.0892191 0.0872341 0.0852426 0.0832452 0.0812426 0.0792357 0.0772252 0.0752118 0.0731964 0.0711798 0.0691624 0.0671455 0.0651297 0.0631157 0.0611044 0.118617 0.116734 0.114856 0.112971 0.11107 0.109152 0.107219 0.105272 0.103311 0.101338 0.0993519 0.0973543 0.0953458 0.0933269 0.0912986 0.0892614 0.0872161 0.0851636 0.0831045 0.0810398 0.0789701 0.0768963 0.0748192 0.0727397 0.0706587 0.0685769 0.0664952 0.0644143 0.0623353 0.0602589 0.119857 0.117891 0.115938 0.113984 0.112013 0.110023 0.108016 0.105993 0.103956 0.101905 0.0998402 0.0977625 0.0956727 0.0935715 0.0914596 0.0893379 0.0872071 0.0850681 0.0829216 0.0807686 0.0786099 0.0764464 0.0742789 0.0721084 0.0699359 0.0677621 0.0655879 0.0634143 0.0612422 0.0590726 0.121468 0.119388 0.117329 0.115278 0.11321 0.11112 0.109013 0.106889 0.104749 0.102594 0.100425 0.0982419 0.0960458 0.0938375 0.0916178 0.0893874 0.0871473 0.0848983 0.0826413 0.0803772 0.0781068 0.0758311 0.073551 0.0712674 0.0689817 0.0666942 0.0644061 0.0621184 0.0598321 0.057548 0.123482 0.121257 0.119064 0.11689 0.1147 0.112486 0.110253 0.108002 0.105735 0.103452 0.101154 0.0988416 0.0965152 0.0941759 0.0918245 0.0894618 0.0870887 0.0847062 0.082315 0.0799162 0.0775107 0.0750994 0.0726832 0.070263 0.0678409 0.0654163 0.0629905 0.060565 0.0581406 0.0557184 0.125909 0.123509 0.12115 0.118826 0.116487 0.114122 0.111737 0.109334 0.106914 0.104478 0.102025 0.099558 0.0970765 0.0945816 0.0920741 0.0895548 0.0870248 0.0844848 0.0819358 0.0793787 0.0768145 0.0742442 0.071668 0.0690862 0.0665079 0.0639245 0.0613386 0.0587526 0.0561677 0.0535849 0.128779 0.126174 0.123616 0.121114 0.118599 0.116057 0.113492 0.11091 0.108311 0.105695 0.103063 0.100416 0.0977544 0.095079 0.0923909 0.0896908 0.0869796 0.0842583 0.0815278 0.078789 0.0760429 0.0732904 0.0705331 0.0677729 0.0650044 0.0622354 0.0594662 0.0566968 0.0539279 0.0511609 0.132119 0.129278 0.126485 0.123774 0.121055 0.118307 0.115535 0.112746 0.10994 0.107117 0.104279 0.101425 0.0985569 0.0956751 0.0927805 0.0898739 0.0869562 0.0840283 0.0810912 0.0781457 0.0751928 0.0722334 0.0692688 0.0663009 0.063327 0.0603514 0.0573748 0.0543978 0.0514213 0.0484464 0.135962 0.132852 0.129787 0.126834 0.123882 0.120897 0.117888 0.114863 0.111821 0.108764 0.105691 0.102603 0.099501 0.0963858 0.0932581 0.0901188 0.0869686 0.0838084 0.0806391 0.0774616 0.0742769 0.0710857 0.0678889 0.0646897 0.0614851 0.058278 0.0550694 0.0518604 0.0486519 0.0454448 0.140341 0.136927 0.133548 0.13032 0.127102 0.12385 0.120573 0.11728 0.113972 0.11065 0.107313 0.103962 0.100598 0.0972217 0.0938333 0.0904339 0.0870242 0.0836052 0.0801775 0.0767422 0.0733 0.0698512 0.0663961 0.0629426 0.059482 0.0560175 0.0525518 0.0490858 0.0456202 0.042156 0.145287 0.141534 0.137797 0.134256 0.13074 0.127187 0.123608 0.120015 0.11641 0.112792 0.10916 0.105516 0.10186 0.098192 0.0945137 0.0908254 0.0871278 0.0834216 0.0797074 0.0759862 0.0722585 0.0685231 0.0647788 0.0610505 0.0573103 0.0535639 0.0498164 0.0460689 0.0423218 0.0385758 0.150835 0.146704 0.142561 0.13867 0.13482 0.13093 0.127015 0.123088 0.119151 0.115204 0.111245 0.107276 0.103297 0.0993078 0.0953102 0.0913042 0.0872905 0.0832698 0.0792428 0.07521 0.071172 0.0671318 0.0630957 0.0590331 0.0549763 0.0509228 0.0468684 0.0428134 0.0387587 0.0347053 0.157016 0.152468 0.147868 0.143585 0.139364 0.1351 0.13081 0.126513 0.122209 0.117898 0.113578 0.10925 0.104914 0.100571 0.0962219 0.0918663 0.087505 0.0831385 0.0787674 0.0743922 0.0700129 0.0656302 0.0612523 0.0568643 0.0524753 0.0480869 0.0436985 0.0393105 0.0349234 0.0305379 0.163862 0.158855 0.153743 0.149025 0.144394 0.139717 0.135014 0.130307 0.125599 0.120887 0.116169 0.111447 0.106721 0.101991 0.0972567 0.0925193 0.0877788 0.0830357 0.0782903 0.073543 0.0687914 0.064034 0.0593012 0.0545541 0.0498026 0.0450526 0.0403044 0.0355578 0.030813 0.0260703 0.171404 0.165895 0.160214 0.155016 0.149933 0.1448 0.139642 0.134486 0.129333 0.124181 0.119028 0.113875 0.108722 0.103568 0.098415 0.0932621 0.0881099 0.0829584 0.077808 0.0726585 0.0675098 0.062366 0.0572254 0.0520832 0.0469437 0.0418076 0.0366744 0.0315442 0.0264173 0.0212937 0.179674 0.173621 0.167308 0.16158 0.156002 0.15037 0.144713 0.139063 0.133424 0.127791 0.122162 0.116538 0.110919 0.105305 0.0996955 0.0940914 0.0884924 0.0828988 0.0773106 0.0717272 0.0661511 0.0605976 0.055017 0.0494494 0.0438936 0.0383441 0.0327998 0.0272611 0.0217278 0.0162 0.188703 0.182061 0.175051 0.168745 0.162625 0.156447 0.150243 0.144055 0.137885 0.131727 0.125579 0.119442 0.113316 0.107201 0.101096 0.0950024 0.0889191 0.0828466 0.0767848 0.0707302 0.0646809 0.0586775 0.0526565 0.0466411 0.040639 0.0346482 0.0286671 0.0226953 0.0167325 0.0107782 0.198524 0.19125 0.183474 0.176534 0.169825 0.163051 0.156252 0.149477 0.142728 0.135999 0.129287 0.122592 0.115916 0.109258 0.102616 0.0959926 0.0893858 0.0827958 0.0762214 0.0696552 0.0630958 0.0566152 0.0501176 0.043627 0.0371542 0.0306977 0.024256 0.0178284 0.0114145 0.00501375 0.20917 0.20122 0.192604 0.184977 0.177629 0.170206 0.162759 0.155346 0.147969 0.140619 0.133294 0.125995 0.118723 0.111477 0.104257 0.0970625 0.0898949 0.0827536 0.0756372 0.0685533 0.0615383 0.0544465 0.0474061 0.0404083 0.0334355 0.0264843 0.0195552 0.0126479 0.0057614 -0.0011053 0.220671 0.212005 0.202473 0.1941 0.18606 0.177936 0.169786 0.161681 0.153622 0.145599 0.13761 0.129656 0.121737 0.113854 0.106005 0.0981912 0.0904127 0.0826689 0.0749523 0.0672597 0.0596773 0.0520686 0.0444897 0.036952 0.0294492 0.0219785 0.0145394 0.00713153 -0.000246198 -0.00759502 0.23306 0.223634 0.213107 0.203931 0.195147 0.186264 0.177355 0.168502 0.159707 0.150956 0.142248 0.133586 0.124969 0.116397 0.107872 0.0993921 0.0909589 0.0825698 0.0742163 0.0659059 0.0577064 0.0495075 0.0413497 0.0332424 0.0251814 0.0171649 0.00919273 0.00126417 -0.00662175 -0.0144663 0.246361 0.236135 0.224531 0.214496 0.204914 0.195214 0.185487 0.17583 0.166239 0.156703 0.14722 0.137793 0.128422 0.119109 0.109855 0.10066 0.0915272 0.0824533 0.0734471 0.0645893 0.0556244 0.0467564 0.0379799 0.029269 0.0206183 0.0120287 0.00350037 -0.00496749 -0.013376 -0.0217264 0.260591 0.249521 0.236762 0.225816 0.215383 0.204807 0.194205 0.183683 0.173239 0.162859 0.152541 0.142289 0.132105 0.12199 0.111946 0.101973 0.0920712 0.0822185 0.0723998 0.0628729 0.0532884 0.0437692 0.0343427 0.0249984 0.0157336 0.00654978 -0.00255263 -0.0115739 -0.0205145 -0.0293756 0.275758 0.26379 0.249798 0.237895 0.226563 0.215056 0.203521 0.192079 0.180724 0.169439 0.158226 0.14709 0.136034 0.125061 0.114174 0.103377 0.0926717 0.082067 0.0716335 0.0611619 0.0508005 0.0405727 0.0304555 0.0204413 0.0105321 0.000730008 -0.00896435 -0.0185508 -0.0280294 -0.0374009 0.291923 0.278972 0.263658 0.250755 0.238476 0.225984 0.21346 0.201042 0.188715 0.176465 0.164294 0.152211 0.140218 0.128319 0.116522 0.104834 0.0932506 0.0817669 0.0705857 0.0592858 0.0481316 0.0371456 0.0262984 0.0155839 0.00500579 -0.00543325 -0.015732 -0.0258896 -0.0359052 -0.0457791 0.309132 0.295079 0.278316 0.26436 0.251083 0.237543 0.223977 0.210526 0.197172 0.183898 0.170711 0.15762 0.144631 0.131747 0.118977 0.106316 0.0936859 0.0810011 0.0691839 0.0571615 0.0452265 0.0334653 0.0218673 0.0104333 -0.000830135 -0.0119185 -0.0228288 -0.0335586 -0.0441061 -0.0544709 0.327325 0.311977 0.293624 0.278644 0.264365 0.249762 0.235141 0.22064 0.206225 0.191887 0.177639 0.163492 0.149455 0.135541 0.121759 0.108113 0.0946729 0.0817747 0.0682088 0.0551017 0.0423144 0.0297209 0.0173185 0.00512305 -0.00685771 -0.0186192 -0.0301573 -0.0414682 -0.0525491 -0.0633992 0.348094 0.330825 0.31073 0.294682 0.279212 0.263403 0.24762 0.231944 0.216336 0.200802 0.18536 0.170025 0.154813 0.139738 0.124812 0.110025 0.0953835 0.0811656 0.0668458 0.0528441 0.0391184 0.0256277 0.0123856 -0.000593085 -0.0132998 -0.0257275 -0.0378696 -0.0497206 -0.0612764 -0.0725352 0.368504 0.346688 0.325209 0.307739 0.290691 0.273635 0.256756 0.239997 0.223315 0.206716 0.190216 0.17383 0.157578 0.141479 0.125547 0.109814 0.0943632 0.0789277 0.0637954 0.0489838 0.034449 0.0201992 0.00625267 -0.0073771 -0.0206787 -0.033641 -0.0462543 -0.0585099 -0.0704003 -0.0819209 0.0595765 0.0576217 0.0556718 0.0537274 0.0517892 0.0498578 0.0479337 0.0460177 0.0441103 0.0422121 0.0403238 0.0384458 0.0365789 0.0347235 0.0328803 0.0310498 0.0292325 0.027429 0.0256398 0.0238654 0.0221063 0.0203631 0.0186362 0.0169261 0.0152333 0.0135582 0.0119014 0.0102634 0.008644 0.00704253 0.0590967 0.0570931 0.0550947 0.053102 0.051116 0.0491374 0.0471668 0.0452052 0.0432532 0.0413115 0.0393808 0.0374619 0.0355554 0.033662 0.0317824 0.0299171 0.0280668 0.026232 0.0244134 0.0226114 0.0208267 0.0190597 0.017311 0.0155809 0.0138699 0.0121785 0.010507 0.00885625 0.00722593 0.00561214 0.058186 0.0561173 0.0540539 0.0519964 0.0499457 0.0479026 0.0458679 0.0438425 0.041827 0.0398223 0.0378291 0.0358481 0.0338801 0.0319257 0.0299857 0.0280606 0.0261512 0.0242581 0.0223819 0.0205231 0.0186823 0.0168601 0.015057 0.0132735 0.0115099 0.00976687 0.0080448 0.00634491 0.00466694 0.00300021 0.0569064 0.0547444 0.0525876 0.0504369 0.0482932 0.0461573 0.0440302 0.0419126 0.0398055 0.0377096 0.0356258 0.0335549 0.0314976 0.0294547 0.0274269 0.025415 0.0234196 0.0214413 0.0194809 0.017539 0.015616 0.0137127 0.0118295 0.00996692 0.00812545 0.00630543 0.0045075 0.00273343 0.000982995 -0.000762492 0.0552673 0.0529908 0.0507194 0.0484542 0.046196 0.0439459 0.0417047 0.0394732 0.0372525 0.0350433 0.0328465 0.030663 0.0284935 0.0263388 0.0241997 0.022077 0.0199714 0.0178834 0.0158139 0.0137635 0.0117327 0.00972222 0.0077325 0.00576412 0.00381753 0.00189305 -8.62893e-06 -0.00188509 -0.00373631 -0.00558937 0.0532994 0.0508844 0.0484746 0.0460709 0.0436744 0.0412858 0.0389063 0.0365367 0.034178 0.0318311 0.0294968 0.027176 0.0248695 0.0225783 0.020303 0.0180444 0.0158034 0.0135805 0.0113765 0.00919212 0.00702791 0.00488449 0.00276245 0.000662335 -0.0014154 -0.00347048 -0.0055022 -0.0075076 -0.00948611 -0.0114714 0.0510051 0.0484293 0.0458584 0.0432936 0.0407359 0.0381861 0.0356454 0.0331146 0.0305947 0.0280866 0.0255912 0.0231094 0.0206421 0.0181901 0.0157542 0.0133352 0.0109339 0.00855105 0.00618727 0.0038433 0.00151979 -0.000782652 -0.00306342 -0.00532195 -0.00755778 -0.00977063 -0.0119599 -0.0141223 -0.0162564 -0.0183987 0.0483967 0.0456364 0.0428808 0.0401312 0.0373884 0.0346535 0.0319275 0.0292113 0.0265059 0.0238122 0.0211311 0.0184635 0.0158103 0.0131723 0.0105503 0.00794524 0.00535775 0.00278863 0.000238604 -0.00229164 -0.00480144 -0.00729015 -0.00975716 -0.0122019 -0.0146238 -0.0170227 -0.019398 -0.0217468 -0.0240666 -0.0263898 0.0454743 0.0425056 0.0395416 0.0365831 0.0336314 0.0306872 0.0277517 0.0248256 0.0219101 0.0190059 0.0161141 0.0132354 0.0103707 0.00752083 0.00468666 0.00186896 -0.000931523 -0.00371404 -0.00647787 -0.00922232 -0.0119467 -0.0146504 -0.0173328 -0.0199933 -0.0226313 -0.0252465 -0.0278386 -0.0304058 -0.0329449 -0.0354732 0.0422402 0.0390389 0.0358418 0.0326501 0.0294647 0.0262864 0.0231164 0.0199553 0.0168043 0.013664 0.0105354 0.00741935 0.00431661 0.001228 -0.00184572 -0.00490379 -0.00794548 -0.0109701 -0.0139769 -0.0169653 -0.0199346 -0.0228841 -0.0258134 -0.0287217 -0.0316085 -0.0344733 -0.037316 -0.0401377 -0.0429362 -0.0456948 0.0386941 0.0352352 0.0317802 0.0283301 0.0248859 0.0214483 0.0180183 0.0145966 0.011184 0.00778145 0.00438959 0.00100921 -0.00235896 -0.0057142 -0.00905583 -0.0123832 -0.0156956 -0.0189925 -0.0222733 -0.0255373 -0.028784 -0.0320129 -0.0352234 -0.038415 -0.0415871 -0.0447388 -0.0478703 -0.0509887 -0.0540959 -0.0571133 0.0348319 0.0310907 0.0273529 0.0236196 0.0198915 0.0161693 0.0124537 0.00874554 0.00504542 0.00135402 -0.00232802 -0.00600008 -0.00966159 -0.013312 -0.0169507 -0.0205773 -0.0241912 -0.0277921 -0.0313794 -0.0349528 -0.0385119 -0.0420563 -0.0455857 -0.0490997 -0.0525981 -0.0560791 -0.0595433 -0.0630078 -0.0664871 -0.0697968 0.0306541 0.0266052 0.0225595 0.0185177 0.0144803 0.0104481 0.00642145 0.002401 -0.0016128 -0.00561947 -0.0096186 -0.0136098 -0.0175927 -0.0215669 -0.0255323 -0.0294886 -0.0334355 -0.0373729 -0.0413007 -0.0452188 -0.0491271 -0.0530257 -0.0569146 -0.060794 -0.0646639 -0.0685217 -0.0723679 -0.0762364 -0.0801676 -0.0838103 0.0261546 0.0217735 0.0173952 0.0130204 0.00864934 0.00428245 -7.99733e-05 -0.00443765 -0.00879036 -0.0131379 -0.0174802 -0.0218171 -0.0261486 -0.0304748 -0.0347957 -0.0391115 -0.0434225 -0.0477289 -0.0520311 -0.0563296 -0.0606248 -0.0649173 -0.0692079 -0.0734978 -0.0777874 -0.0820731 -0.0863543 -0.0906906 -0.0951704 -0.0991944 0.0213304 0.0165928 0.0118581 0.00712646 0.00239806 -0.00232703 -0.00704883 -0.0117674 -0.0164828 -0.0211953 -0.0259052 -0.0306127 -0.0353183 -0.0400225 -0.044726 -0.0494295 -0.0541338 -0.0588398 -0.0635486 -0.0682614 -0.0729796 -0.0777045 -0.0824379 -0.0871823 -0.0919394 -0.0967037 -0.101473 -0.106342 -0.111478 -0.115937 0.0161737 0.0110568 0.00594304 0.000832429 -0.0042752 -0.00938015 -0.0144828 -0.0195836 -0.0246831 -0.0297819 -0.0348809 -0.0399809 -0.0450828 -0.0501879 -0.0552974 -0.0604127 -0.0655354 -0.0706674 -0.0758105 -0.080967 -0.0861392 -0.0913297 -0.0965414 -0.101779 -0.107045 -0.112332 -0.117633 -0.123092 -0.128995 -0.133938 0.0106776 0.00515954 -0.000354286 -0.00586422 -0.0113708 -0.0168748 -0.022377 -0.0278783 -0.0333798 -0.0388826 -0.0443881 -0.0498979 -0.0554135 -0.0609368 -0.06647 -0.0720151 -0.0775748 -0.0831518 -0.0887491 -0.09437 -0.100018 -0.105697 -0.111412 -0.117168 -0.122972 -0.128812 -0.134674 -0.140761 -0.147526 -0.15299 0.0048322 -0.0011069 -0.00703965 -0.0129667 -0.0188892 -0.0248081 -0.0307247 -0.0366406 -0.0425573 -0.0484766 -0.0544005 -0.0603311 -0.0662708 -0.0722224 -0.0781887 -0.0841728 -0.0901782 -0.0962088 -0.102269 -0.108362 -0.114494 -0.120671 -0.126897 -0.133181 -0.139531 -0.145932 -0.152359 -0.159086 -0.16678 -0.17278 -0.00137463 -0.00775216 -0.0141198 -0.0204785 -0.0268298 -0.0331751 -0.0395164 -0.0458555 -0.0521946 -0.058536 -0.0648826 -0.071237 -0.0776025 -0.0839824 -0.0903807 -0.0968013 -0.103249 -0.109728 -0.116244 -0.122802 -0.12941 -0.136072 -0.142798 -0.149596 -0.156479 -0.163424 -0.170392 -0.177739 -0.186394 -0.192922 -0.00795324 -0.0147842 -0.0215995 -0.0284006 -0.0351892 -0.0419673 -0.0487372 -0.0555014 -0.0622626 -0.0690237 -0.075788 -0.0825591 -0.0893408 -0.0961374 -0.102954 -0.109794 -0.116665 -0.123571 -0.13052 -0.137517 -0.144571 -0.15169 -0.158881 -0.166158 -0.173534 -0.180983 -0.188444 -0.196359 -0.205968 -0.212995 -0.0149162 -0.0222117 -0.029483 -0.0367318 -0.0439603 -0.0511709 -0.0583661 -0.065549 -0.0727227 -0.0798907 -0.0870569 -0.0942256 -0.101401 -0.108589 -0.115794 -0.123023 -0.130281 -0.137576 -0.144916 -0.152308 -0.159762 -0.167286 -0.17489 -0.18259 -0.190402 -0.198295 -0.20618 -0.21459 -0.225114 -0.232602 -0.0222711 -0.0300378 -0.0377682 -0.0454642 -0.0531283 -0.060763 -0.0683714 -0.0759569 -0.083523 -0.0910737 -0.0986137 -0.106148 -0.113681 -0.121219 -0.12877 -0.136338 -0.143933 -0.151562 -0.159235 -0.16696 -0.174749 -0.182613 -0.190563 -0.198616 -0.206795 -0.21506 -0.223297 -0.232119 -0.243498 -0.251419 -0.0300206 -0.0382598 -0.0464459 -0.0545812 -0.0626682 -0.0707097 -0.0787091 -0.08667 -0.0945966 -0.102493 -0.110366 -0.118219 -0.126059 -0.133894 -0.141729 -0.149575 -0.15744 -0.165333 -0.173267 -0.181252 -0.189301 -0.197428 -0.205647 -0.21398 -0.222453 -0.231024 -0.239542 -0.248699 -0.260868 -0.269226 -0.0381591 -0.0468654 -0.0554966 -0.0640549 -0.0725431 -0.0809642 -0.0893218 -0.09762 -0.105863 -0.114058 -0.122208 -0.130322 -0.138405 -0.146468 -0.154518 -0.162565 -0.170622 -0.178699 -0.186811 -0.194972 -0.203198 -0.211508 -0.219918 -0.228454 -0.237153 -0.24597 -0.254716 -0.264144 -0.277051 -0.285902 -0.0466674 -0.0558282 -0.0648855 -0.0738417 -0.0826996 -0.0914627 -0.100135 -0.108721 -0.117227 -0.125658 -0.134022 -0.142327 -0.150582 -0.158796 -0.16698 -0.175148 -0.183313 -0.19149 -0.199696 -0.20795 -0.216273 -0.224687 -0.233214 -0.241888 -0.250755 -0.259772 -0.26871 -0.278365 -0.291979 -0.301459 -0.0555138 -0.0651069 -0.0745609 -0.0838786 -0.0930629 -0.102118 -0.111048 -0.119859 -0.128558 -0.137153 -0.145652 -0.154066 -0.162405 -0.170682 -0.178911 -0.187109 -0.195291 -0.203478 -0.211692 -0.219955 -0.228295 -0.236741 -0.245322 -0.254081 -0.263078 -0.27228 -0.281413 -0.291298 -0.305652 -0.316018 -0.0646559 -0.0746565 -0.0844758 -0.094117 -0.103584 -0.11288 -0.122013 -0.130988 -0.139815 -0.148502 -0.15706 -0.165503 -0.173843 -0.182097 -0.190281 -0.198415 -0.206519 -0.214618 -0.222737 -0.230907 -0.239159 -0.247529 -0.256056 -0.26479 -0.273811 -0.283104 -0.292354 -0.302398 -0.317574 -0.329357 -0.0740223 -0.0844119 -0.0945722 -0.104508 -0.114224 -0.123727 -0.133024 -0.142125 -0.151042 -0.159786 -0.168373 -0.176817 -0.185135 -0.193347 -0.201473 -0.209535 -0.217558 -0.225568 -0.233595 -0.241671 -0.249832 -0.258118 -0.266569 -0.275239 -0.284217 -0.293506 -0.302728 -0.312725 -0.328766 -0.342724 -0.083502 -0.0941677 -0.104539 -0.114621 -0.124422 -0.133952 -0.143222 -0.152246 -0.161043 -0.16963 -0.178029 -0.186264 -0.194359 -0.20234 -0.210237 -0.218079 -0.225897 -0.233722 -0.241589 -0.249534 -0.257595 -0.265816 -0.274246 -0.282948 -0.292051 -0.301656 -0.311451 -0.322395 -0.341574 -0.361867 -0.0930767 -0.103852 -0.114252 -0.124284 -0.133954 -0.143271 -0.152248 -0.160903 -0.169255 -0.177327 -0.185145 -0.192738 -0.200138 -0.207379 -0.214496 -0.221525 -0.228503 -0.235464 -0.242444 -0.249472 -0.256578 -0.263791 -0.271141 -0.278673 -0.286509 -0.294898 -0.303837 -0.314124 -0.335304 -0.371472 0.00226468 -0.00526641 -0.0124467 -0.0191791 -0.0253474 -0.0308291 -0.0355091 -0.0392859 -0.0420767 -0.0438177 -0.0444833 -0.0440778 -0.0426473 -0.0402833 -0.0371207 -0.0333326 -0.0291208 -0.0247017 -0.0202896 -0.0160788 -0.012228 -0.00884916 -0.00600374 -0.00370485 -0.00192604 -0.000613178 0.000303437 0.000898153 0.0012424 0.0013996 0.00142341 0.00135651 0.00123277 0.00107533 0.000904437 0.00072527 0.000556188 0.000376329 0.000229081 3.14656e-05 0.000702188 -0.00688802 -0.0140876 -0.0208378 -0.0270106 -0.0324698 -0.0370978 -0.0407968 -0.0434869 -0.0451094 -0.0456388 -0.0450841 -0.0434966 -0.0409732 -0.0376543 -0.0337188 -0.0293737 -0.0248399 -0.020335 -0.0160547 -0.0121572 -0.00875229 -0.00589768 -0.00360206 -0.00183452 -0.000536993 0.000363256 0.000942612 0.00127364 0.0014202 0.00143594 0.00136323 0.00123559 0.00107566 0.000903508 0.000723621 0.000554784 0.000374768 0.000229088 3.0567e-05 -0.00221274 -0.00992393 -0.0171597 -0.0239444 -0.0301252 -0.0355396 -0.0400675 -0.0436182 -0.0461179 -0.0475151 -0.0477876 -0.0469527 -0.0450713 -0.04225 -0.0386396 -0.0344295 -0.0298367 -0.0250904 -0.020414 -0.0160058 -0.012023 -0.00857093 -0.00570033 -0.00341158 -0.00166546 -0.000396607 0.00047325 0.00102421 0.00133088 0.00145788 0.0014588 0.00137546 0.00124069 0.00107626 0.000901709 0.000720683 0.000551993 0.000372244 0.000228266 2.96738e-05 -0.00639452 -0.0142607 -0.0215393 -0.0283665 -0.0345496 -0.0398898 -0.0442661 -0.0475988 -0.0498229 -0.0508945 -0.0507992 -0.0495654 -0.047267 -0.0440244 -0.0400029 -0.0354068 -0.0304669 -0.0254242 -0.02051 -0.0159259 -0.0118271 -0.00831257 -0.00542263 -0.00314579 -0.00143111 -0.000203096 0.000624114 0.00113561 0.00140865 0.00150881 0.00148948 0.0013917 0.00124726 0.0010768 0.000899006 0.00071654 0.000548004 0.00036881 0.000226819 2.88065e-05 -0.011764 -0.0198125 -0.027134 -0.0340054 -0.0401768 -0.0454058 -0.0495745 -0.0526183 -0.0544829 -0.0551334 -0.0545661 -0.0528234 -0.0499954 -0.0462195 -0.0416796 -0.0365984 -0.0312246 -0.0258135 -0.0206061 -0.0158075 -0.0115699 -0.00798294 -0.00507375 -0.00281548 -0.00114239 3.35343e-05 0.000807356 0.00127005 0.00150189 0.00156942 0.00152564 0.00141051 0.00125452 0.00107691 0.00089533 0.000711248 0.000542938 0.000364562 0.000224851 2.7975e-05 -0.0182902 -0.0265306 -0.033886 -0.0407933 -0.0469277 -0.0519986 -0.0558972 -0.0585782 -0.0599992 -0.0601355 -0.0589968 -0.0566423 -0.0531803 -0.0487686 -0.0436129 -0.0379584 -0.0320744 -0.0262333 -0.0206869 -0.0156437 -0.0112511 -0.007587 -0.00466186 -0.00243034 -0.000809109 0.000304297 0.00101536 0.00142149 0.00160609 0.00163653 0.00156517 0.00143061 0.00126177 0.00107631 0.00089061 0.000704871 0.00053689 0.000359618 0.000222398 2.72058e-05 -0.0259545 -0.0343822 -0.0417531 -0.0486782 -0.0547372 -0.0595922 -0.0631516 -0.0653924 -0.0662851 -0.065816 -0.0640108 -0.0609472 -0.0567542 -0.0516123 -0.0457525 -0.0394455 -0.0329845 -0.026661 -0.0207386 -0.0154283 -0.0108708 -0.00712942 -0.00419453 -0.00199921 -0.000440164 0.000601117 0.00124135 0.00158461 0.00171731 0.00170738 0.00160626 0.0014509 0.00126843 0.00107473 0.000884795 0.000697476 0.000529951 0.000354079 0.000219494 2.6518e-05 -0.0347511 -0.0433446 -0.0507041 -0.057616 -0.0635461 -0.0681156 -0.0712599 -0.0729801 -0.073259 -0.0720953 -0.0695329 -0.0656692 -0.060655 -0.0546962 -0.0480519 -0.0410219 -0.033926 -0.0270765 -0.0207491 -0.0151563 -0.0104299 -0.00661504 -0.00367903 -0.00153036 -4.36844e-05 0.000916748 0.00147932 0.00175473 0.00183213 0.00177962 0.00164739 0.00147048 0.00127402 0.00107199 0.000877859 0.000689132 0.000522211 0.000348033 0.000216177 2.59207e-05 -0.0446719 -0.0533943 -0.0607094 -0.0675619 -0.0732916 -0.0774945 -0.0801417 -0.081258 -0.0808378 -0.0788935 -0.0754884 -0.07074 -0.0648219 -0.0579675 -0.0504671 -0.0426523 -0.0348723 -0.0274616 -0.020708 -0.0148241 -0.00992973 -0.00604898 -0.00312249 -0.00103158 0.000372904 0.00124472 0.00172405 0.00192788 0.00194768 0.00185129 0.00168731 0.00148864 0.00127817 0.00106796 0.000869805 0.000679909 0.000513756 0.000341559 0.000212488 2.5417e-05 -0.0556928 -0.064498 -0.0717345 -0.0784618 -0.0838991 -0.0876435 -0.0897066 -0.090133 -0.0889296 -0.0861237 -0.0817974 -0.0760877 -0.0691918 -0.0613725 -0.0529537 -0.0443021 -0.0357982 -0.0278 -0.0206067 -0.0144293 -0.00937285 -0.00543676 -0.00253194 -0.000510172 0.000802848 0.00157933 0.00197101 0.00210068 0.00206159 0.00192083 0.00172507 0.00150482 0.00128065 0.00106257 0.000860661 0.000669882 0.000504673 0.000334731 0.000208471 2.5006e-05 -0.0677539 -0.0766013 -0.0837316 -0.0902415 -0.0952723 -0.0984576 -0.099846 -0.0994954 -0.0974277 -0.0936863 -0.0883694 -0.0816321 -0.0736954 -0.0648531 -0.0554652 -0.0459358 -0.0366787 -0.028076 -0.0204377 -0.0139707 -0.00876241 -0.00478416 -0.00191428 2.7013e-05 0.00124007 0.00191559 0.00221637 0.00227037 0.00217195 0.001987 0.00175992 0.00151865 0.00128128 0.00105579 0.00085048 0.000659137 0.000495048 0.000327618 0.000204169 2.46837e-05 -0.0807357 -0.0896177 -0.0966291 -0.102795 -0.107284 -0.109804 -0.110425 -0.109214 -0.106206 -0.101465 -0.0950992 -0.0872808 -0.0782544 -0.0683452 -0.0579514 -0.0475163 -0.0374887 -0.0282748 -0.0201945 -0.0134482 -0.00810226 -0.00409721 -0.0012762 0.00057365 0.00167916 0.00224922 0.00245697 0.00243472 0.00227729 0.00204891 0.00179135 0.00152987 0.00127999 0.00104765 0.000839338 0.000647764 0.000484967 0.000320285 0.000199624 2.44439e-05 -0.094438 -0.10342 -0.11032 -0.115975 -0.11977 -0.121519 -0.121281 -0.119128 -0.115116 -0.109322 -0.101865 -0.0929288 -0.0827808 -0.0717781 -0.060358 -0.0490048 -0.0382029 -0.0283826 -0.0198719 -0.0128623 -0.0073968 -0.00338203 -0.000624073 0.00112397 0.00211539 0.00257663 0.00269023 0.00259201 0.00237651 0.0021059 0.00181904 0.00153836 0.00127678 0.0010382 0.000827322 0.000635856 0.000474515 0.000312792 0.00019488 2.42786e-05 -0.108568 -0.117838 -0.124651 -0.129583 -0.13253 -0.133404 -0.132216 -0.12905 -0.123985 -0.117103 -0.108531 -0.0984597 -0.0871787 -0.0750758 -0.0626282 -0.0503617 -0.0387965 -0.0283861 -0.0194654 -0.0122146 -0.00665083 -0.0026447 3.60755e-05 0.00167278 0.00254471 0.00289487 0.00291415 0.00274093 0.00246887 0.00215757 0.0018428 0.00154409 0.00127169 0.00102754 0.000814534 0.000623506 0.000463773 0.000305191 0.000189976 2.4179e-05 -0.122744 -0.132668 -0.139412 -0.143372 -0.145331 -0.145236 -0.143011 -0.138777 -0.132627 -0.124644 -0.114952 -0.103752 -0.0913491 -0.0781612 -0.0647053 -0.0515482 -0.039246 -0.0282741 -0.0189721 -0.0115077 -0.00586955 -0.00189121 0.000698673 0.00221553 0.00296371 0.00320159 0.0031272 0.00288061 0.00255386 0.00220371 0.0018626 0.0015471 0.00126481 0.00101577 0.000801077 0.000610803 0.000452817 0.000297532 0.000184954 2.4136e-05 -0.136503 -0.147707 -0.154338 -0.157059 -0.157924 -0.156778 -0.15345 -0.148104 -0.140859 -0.131781 -0.120989 -0.108688 -0.0951959 -0.0809603 -0.0665357 -0.0525292 -0.0395311 -0.0280372 -0.0183909 -0.0107447 -0.00505842 -0.00112736 0.00135864 0.00274827 0.00336962 0.00349498 0.00332833 0.00301045 0.00263126 0.00224427 0.00187849 0.00154749 0.00125626 0.001003 0.000787059 0.000597836 0.000441719 0.000289858 0.00017985 2.41401e-05 -0.149363 -0.162767 -0.16912 -0.170354 -0.170063 -0.167795 -0.163314 -0.156843 -0.148511 -0.138364 -0.126514 -0.11316 -0.0986342 -0.0834083 -0.0680737 -0.0532752 -0.0396357 -0.0276697 -0.0177223 -0.00993013 -0.0042231 -0.000358639 0.00201146 0.00326769 0.00376023 0.00377373 0.00351684 0.00313018 0.002701 0.00227932 0.00189059 0.00154541 0.0012462 0.00098937 0.000772588 0.000584686 0.000430547 0.000282208 0.000174699 2.41825e-05 -0.160901 -0.177676 -0.183426 -0.182993 -0.181529 -0.178078 -0.172418 -0.164836 -0.155445 -0.144274 -0.131423 -0.117083 -0.101596 -0.0854544 -0.0692841 -0.0537648 -0.0395495 -0.027169 -0.016969 -0.00906909 -0.00336937 0.000409808 0.00265314 0.00377107 0.00413389 0.00403695 0.00369234 0.00323971 0.00276317 0.00230902 0.00189909 0.00154104 0.00123476 0.000975002 0.000757767 0.00057143 0.000419361 0.000274615 0.000169533 2.42547e-05 -0.170823 -0.192287 -0.196943 -0.19477 -0.192148 -0.187469 -0.180632 -0.171967 -0.161564 -0.149428 -0.135648 -0.1204 -0.104036 -0.0870652 -0.0701451 -0.0539861 -0.0392686 -0.026537 -0.0161359 -0.00816765 -0.00250305 0.00117324 0.00328031 0.00425626 0.0044894 0.00428413 0.00385473 0.00333917 0.002818 0.00233362 0.00190423 0.00153459 0.00122213 0.000960024 0.000742696 0.00055814 0.000408217 0.000267111 0.000164379 2.43487e-05 -0.179018 -0.206476 -0.209409 -0.205553 -0.201803 -0.195873 -0.187881 -0.178176 -0.166817 -0.153784 -0.139153 -0.123083 -0.105933 -0.0882264 -0.0706491 -0.0539375 -0.0387957 -0.0257792 -0.0152299 -0.00723259 -0.00162987 0.00192737 0.00389011 0.00472162 0.00482601 0.00451505 0.00400412 0.00342882 0.00286578 0.00235341 0.00190626 0.00152625 0.00120845 0.00094456 0.000727467 0.000544879 0.000397164 0.000259719 0.000159265 2.44576e-05 -0.185575 -0.220131 -0.22065 -0.21529 -0.210433 -0.203243 -0.194149 -0.183456 -0.171204 -0.157344 -0.141939 -0.125133 -0.107289 -0.0889423 -0.0708023 -0.0536269 -0.03814 -0.0249048 -0.0142596 -0.00627117 -0.000755402 0.00266836 0.00448021 0.00516597 0.0051433 0.00472976 0.0041408 0.00350902 0.0029069 0.00236873 0.00190545 0.00151625 0.00119389 0.000928727 0.000712166 0.000531704 0.000386244 0.000252464 0.000154211 2.45752e-05 -0.190762 -0.233143 -0.230595 -0.223997 -0.218039 -0.209609 -0.199474 -0.187846 -0.174763 -0.160143 -0.14404 -0.126579 -0.108129 -0.0892339 -0.0706233 -0.0530706 -0.0373157 -0.0239261 -0.0132349 -0.00529095 0.000115084 0.00339289 0.00504882 0.00558854 0.00544117 0.00492853 0.00426517 0.00358023 0.00294175 0.00237991 0.00190208 0.00150478 0.00117861 0.000912635 0.000696871 0.000518668 0.000375495 0.000245361 0.000149238 2.46964e-05 -0.194992 -0.245397 -0.239282 -0.231739 -0.224668 -0.215044 -0.20393 -0.19142 -0.177566 -0.162246 -0.145512 -0.127468 -0.108494 -0.0891361 -0.0701411 -0.0522923 -0.0363417 -0.0228578 -0.0121666 -0.00429939 0.00097682 0.00409827 0.00559471 0.00598908 0.00571989 0.00511187 0.00437783 0.00364299 0.00297082 0.00238734 0.00189644 0.00149207 0.00116276 0.000896392 0.000681656 0.000505818 0.00036495 0.000238429 0.000144362 2.4817e-05 -0.198776 -0.256766 -0.246839 -0.238612 -0.230409 -0.219649 -0.20762 -0.194278 -0.179706 -0.163737 -0.146428 -0.127865 -0.108438 -0.088694 -0.0693923 -0.0513209 -0.0352399 -0.0217157 -0.0110658 -0.00330369 0.00182563 0.00478247 0.00611723 0.00636773 0.00598002 0.00528049 0.00447948 0.00369794 0.00299461 0.00239143 0.00188882 0.00147833 0.00114649 0.000880099 0.000666591 0.000493196 0.00035464 0.000231681 0.000139597 2.49337e-05 -0.202695 -0.267118 -0.253458 -0.244722 -0.23537 -0.223544 -0.210658 -0.196527 -0.181281 -0.164704 -0.146867 -0.127839 -0.108019 -0.0879545 -0.0684141 -0.0501852 -0.0340322 -0.0205157 -0.00994341 -0.00231108 0.00265696 0.00544278 0.00661494 0.00672384 0.00622137 0.00543447 0.00457031 0.0037453 0.00301336 0.00239234 0.00187938 0.00146366 0.00112988 0.000863801 0.000651703 0.000480819 0.000344576 0.00022512 0.000134951 2.50426e-05 -0.207399 -0.276322 -0.259358 -0.250163 -0.239668 -0.226844 -0.21315 -0.198265 -0.182381 -0.165226 -0.146897 -0.127444 -0.107283 -0.0869549 -0.0672362 -0.0489081 -0.0327357 -0.0192711 -0.00880991 -0.0013299 0.00346404 0.0060737 0.00708341 0.007054 0.00644145 0.00557207 0.00464919 0.00378433 0.00302658 0.00238978 0.0018679 0.00144792 0.00111281 0.000847428 0.000636945 0.000468655 0.000334738 0.000218734 0.000130425 2.51373e-05 -0.21351 -0.284254 -0.264761 -0.255015 -0.243424 -0.22967 -0.215215 -0.199607 -0.183113 -0.165404 -0.14661 -0.126766 -0.106302 -0.0857564 -0.0659078 -0.0475273 -0.0313781 -0.0180005 -0.00767653 -0.000365919 0.00424482 0.00667552 0.00752422 0.00736031 0.00664243 0.00569526 0.00471775 0.00381635 0.00303527 0.00238448 0.00185491 0.0014315 0.00109556 0.000831161 0.000622435 0.000456776 0.000325173 0.000212546 0.000126033 2.52198e-05 -0.221529 -0.290792 -0.269941 -0.259426 -0.24683 -0.23221 -0.217048 -0.200766 -0.183709 -0.165483 -0.146262 -0.126056 -0.105316 -0.0845716 -0.0646053 -0.0461772 -0.0300497 -0.0167526 -0.00655626 0.000595325 0.00503182 0.00728969 0.00798029 0.00768204 0.00685721 0.00582989 0.00479541 0.00385548 0.00304952 0.00238357 0.0018454 0.00141782 0.00108049 0.000816579 0.000609216 0.000445841 0.000316286 0.000206778 0.000121885 2.53338e-05 -0.232797 -0.295892 -0.275316 -0.263657 -0.25007 -0.234617 -0.21881 -0.201924 -0.184381 -0.165707 -0.146111 -0.125577 -0.104574 -0.0836213 -0.0635087 -0.0449892 -0.0288319 -0.015562 -0.00544435 0.00158784 0.00587726 0.00797587 0.00850994 0.00807041 0.00712734 0.00600768 0.00490531 0.00391811 0.00308074 0.00239488 0.00184473 0.00141054 0.00107003 0.000805296 0.00059833 0.000436495 0.000308467 0.000201639 0.00011808 2.5522e-05 -0.253181 -0.299437 -0.280677 -0.267309 -0.252537 -0.236217 -0.219741 -0.202183 -0.184065 -0.164845 -0.144804 -0.123917 -0.102688 -0.0816307 -0.0615331 -0.0431222 -0.0271532 -0.0141241 -0.00427338 0.0024938 0.0065412 0.00843433 0.00880569 0.00824597 0.0072198 0.00604626 0.00491105 0.00390523 0.00305832 0.00236861 0.001818 0.0013854 0.0010475 0.000786024 0.000582287 0.00042397 0.000298763 0.000195492 0.00011384 2.54477e-05 -0.287721 -0.299272 -0.279351 -0.266666 -0.252093 -0.235288 -0.218059 -0.199464 -0.18028 -0.16005 -0.139249 -0.117922 -0.0966545 -0.0759465 -0.0565377 -0.039054 -0.0241442 -0.012187 -0.00331377 0.00265399 0.00612878 0.00768681 0.00793059 0.0073941 0.00647764 0.00544582 0.00444835 0.00355901 0.00280308 0.00218158 0.00168122 0.00128565 0.000975047 0.00073405 0.000545338 0.000398695 0.000281603 0.000185393 0.000107975 2.43078e-05 -0.311522 -0.298128 -0.280417 -0.266845 -0.251577 -0.23411 -0.216363 -0.197213 -0.177576 -0.156926 -0.135839 -0.114359 -0.0931082 -0.0725729 -0.0534765 -0.0364003 -0.0219583 -0.0104822 -0.00206312 0.00350948 0.00666698 0.0079905 0.00807527 0.00744065 0.00646975 0.00541168 0.00440441 0.00351399 0.00276116 0.00214452 0.00164951 0.00125922 0.000953441 0.000716851 0.000531859 0.000388646 0.000274143 0.000180739 0.000104918 2.4046e-05 -0.324566 -0.296243 -0.281485 -0.267179 -0.251238 -0.233257 -0.21519 -0.195699 -0.175839 -0.154986 -0.133773 -0.112221 -0.0909871 -0.0705356 -0.0515886 -0.0347031 -0.0204854 -0.00924559 -0.00105852 0.00430065 0.00727106 0.00843727 0.0083941 0.00765894 0.00661186 0.0054985 0.00445297 0.00353745 0.00276902 0.00214333 0.00164348 0.00125101 0.000944622 0.000708427 0.000524268 0.00038236 0.000269014 0.000177366 0.000102458 2.40662e-05 -0.332103 -0.293986 -0.282581 -0.266603 -0.251016 -0.232558 -0.214196 -0.194352 -0.174179 -0.153123 -0.13179 -0.11017 -0.0889628 -0.0686072 -0.0498224 -0.0331374 -0.01915 -0.00814769 -0.000188012 0.00496737 0.00776432 0.00878966 0.00863632 0.00781802 0.00671032 0.00555449 0.00448052 0.00354698 0.00276784 0.00213632 0.00163374 0.00124046 0.00093433 0.000699087 0.000516112 0.000375736 0.000263684 0.000173887 9.9945e-05 2.4094e-05 -0.337271 -0.29192 -0.283789 -0.26637 -0.250604 -0.231614 -0.213154 -0.193062 -0.172484 -0.151101 -0.129633 -0.107933 -0.0867592 -0.0665183 -0.0479255 -0.0314759 -0.0177558 -0.00702521 0.000678486 0.00560912 0.00821992 0.00909945 0.00883712 0.0079408 0.00677937 0.00558804 0.00449165 0.00354482 0.00275846 0.00212362 0.00162006 0.00122718 0.000922174 0.000688494 0.000507131 0.00036859 0.000258036 0.000170236 9.73476e-05 2.41141e-05 -0.340672 -0.290225 -0.285007 -0.266099 -0.249737 -0.230316 -0.211375 -0.190946 -0.170871 -0.149066 -0.127432 -0.10565 -0.084512 -0.0643915 -0.0459996 -0.0297934 -0.0163492 -0.00589762 0.00154463 0.00624687 0.00866952 0.00940255 0.00903144 0.0080579 0.00684375 0.00561794 0.00450005 0.00354066 0.00274762 0.00210985 0.0016056 0.00121336 0.000909627 0.000677629 0.000497966 0.000361326 0.000252315 0.000166548 9.47288e-05 2.4151e-05 -0.342632 -0.28892 -0.286187 -0.265731 -0.249551 -0.229625 -0.210484 -0.189581 -0.16857 -0.147101 -0.125237 -0.103374 -0.0822769 -0.0622802 -0.0440933 -0.0281318 -0.0149639 -0.00479001 0.00239347 0.00687069 0.00910859 0.00969809 0.00922058 0.00817153 0.00690588 0.0056464 0.00450753 0.0035359 0.0027364 0.00209583 0.00159098 0.00119941 0.000896999 0.000666708 0.000488764 0.000354038 0.00024658 0.000162853 9.21039e-05 2.42101e-05 -0.343533 -0.288015 -0.287294 -0.265345 -0.249298 -0.228853 -0.209477 -0.188218 -0.166927 -0.145112 -0.123067 -0.1011 -0.0800518 -0.0601824 -0.0422059 -0.0264916 -0.0136018 -0.00370573 0.00322063 0.00747563 0.00953212 0.00998144 0.00940054 0.00827851 0.00696333 0.00567165 0.00451285 0.00352972 0.00272423 0.00208118 0.00157594 0.00118519 0.000884186 0.000655665 0.000479483 0.0003467 0.000240814 0.000159144 8.94691e-05 2.42886e-05 -0.343671 -0.287503 -0.288309 -0.26498 -0.249041 -0.22806 -0.208419 -0.18678 -0.165293 -0.142816 -0.120946 -0.098821 -0.0778363 -0.0580971 -0.0403363 -0.0248712 -0.012262 -0.0026442 0.00402616 0.00806125 0.00993933 0.0102517 0.00957037 0.00837798 0.00701539 0.00569316 0.00451562 0.00352182 0.00271091 0.00206576 0.00156037 0.00117061 0.000871138 0.000644465 0.000470099 0.000339297 0.000235011 0.000155414 8.68223e-05 2.43844e-05 -0.343265 -0.28736 -0.289228 -0.264659 -0.248844 -0.227318 -0.207417 -0.185369 -0.163607 -0.140971 -0.118768 -0.0965587 -0.0756358 -0.0560308 -0.0384895 -0.0232741 -0.0109467 -0.0016069 0.00480924 0.00862722 0.0103302 0.0105089 0.00973027 0.00847014 0.00706224 0.00571103 0.00451592 0.00351225 0.00269647 0.00204959 0.0015443 0.00115569 0.000857854 0.000633108 0.000460613 0.000331829 0.000229167 0.000151664 8.41633e-05 2.44961e-05 -0.342483 -0.287552 -0.29006 -0.264407 -0.248713 -0.226641 -0.206482 -0.184015 -0.161945 -0.139078 -0.116473 -0.0944096 -0.0734592 -0.05399 -0.0366716 -0.0217048 -0.00965925 -0.000596106 0.00556842 0.00917271 0.0107043 0.0107529 0.00988027 0.00855507 0.00710397 0.00572537 0.0045138 0.00350105 0.00268094 0.00203267 0.00152772 0.00114043 0.000844342 0.000621598 0.000451027 0.000324296 0.000223286 0.000147894 8.14925e-05 2.46227e-05 -0.341463 -0.288042 -0.29082 -0.264246 -0.248655 -0.226038 -0.205619 -0.182724 -0.16034 -0.137165 -0.114484 -0.0924047 -0.0713241 -0.0519812 -0.0348884 -0.0201673 -0.00840274 0.000385996 0.00630225 0.0096968 0.0110611 0.0109836 0.0100202 0.00863275 0.00714058 0.00573618 0.00450929 0.00348824 0.00266432 0.00201502 0.00151065 0.00112483 0.000830603 0.000609935 0.000441341 0.0003167 0.000217366 0.000144103 7.88101e-05 2.47628e-05 -0.34032 -0.288796 -0.291529 -0.264194 -0.248679 -0.225522 -0.204837 -0.181503 -0.1588 -0.135302 -0.112488 -0.0899855 -0.0692445 -0.0500114 -0.0331457 -0.0186656 -0.00718017 0.00133733 0.00700936 0.0101987 0.0114002 0.0112006 0.0101501 0.00870311 0.00717207 0.00574347 0.00450239 0.00347382 0.00264661 0.00199664 0.00149308 0.0011089 0.000816635 0.00059812 0.000431554 0.00030904 0.000211407 0.000140292 7.6116e-05 2.49152e-05 -0.339156 -0.289781 -0.292211 -0.264267 -0.248792 -0.225104 -0.204147 -0.180364 -0.157331 -0.13351 -0.110506 -0.0880905 -0.0672282 -0.0480868 -0.0314492 -0.0172037 -0.00599452 0.00225583 0.00768843 0.0106775 0.011721 0.0114037 0.0102697 0.00876616 0.00719844 0.00574724 0.00449311 0.00345779 0.00262783 0.00197753 0.00147501 0.00109263 0.000802439 0.000586151 0.000421667 0.000301314 0.000205409 0.000136459 7.34104e-05 2.50786e-05 -0.338075 -0.29094 -0.292904 -0.264476 -0.249005 -0.224795 -0.203558 -0.179317 -0.155945 -0.131794 -0.108584 -0.086138 -0.0651597 -0.0462175 -0.0298051 -0.0157855 -0.00484882 0.00313944 0.00833814 0.0111325 0.0120232 0.0115928 0.010379 0.00882185 0.00721969 0.00574752 0.00448147 0.00344018 0.00260797 0.0019577 0.00145646 0.00107602 0.000788016 0.000574029 0.000411679 0.000293524 0.000199373 0.000132604 7.06932e-05 2.52516e-05 -0.337154 -0.292175 -0.293691 -0.264829 -0.249325 -0.224606 -0.20308 -0.178373 -0.154652 -0.130163 -0.106743 -0.084164 -0.0632036 -0.044427 -0.0282193 -0.0144149 -0.00374608 0.00398611 0.00895722 0.0115629 0.0123064 0.0117676 0.0104779 0.0088702 0.00723584 0.00574431 0.00446746 0.00342097 0.00258704 0.00193713 0.0014374 0.00105907 0.000773365 0.000561754 0.000401591 0.000285669 0.000193297 0.000128727 6.79646e-05 2.54328e-05 -0.336269 -0.293595 -0.294622 -0.26533 -0.249761 -0.224545 -0.202719 -0.17754 -0.153461 -0.128625 -0.104991 -0.0822691 -0.0613808 -0.0427164 -0.0266977 -0.0130957 -0.00268928 0.00479386 0.00954441 0.0119681 0.0125702 0.0119279 0.0105664 0.00891118 0.00724691 0.00573763 0.00445112 0.00340019 0.00256505 0.00191585 0.00141786 0.0010418 0.000758486 0.000549326 0.000391402 0.000277749 0.000187181 0.000124827 6.52246e-05 2.56209e-05 -0.335382 -0.295716 -0.295273 -0.26598 -0.25032 -0.224619 -0.202484 -0.176826 -0.152381 -0.127191 -0.103333 -0.0804751 -0.0596179 -0.0408775 -0.0252493 -0.0118314 -0.00168136 0.00556073 0.0100985 0.0123472 0.0128142 0.0120737 0.0106443 0.00894478 0.00725289 0.0057275 0.00443244 0.00337783 0.002542 0.00189385 0.00139783 0.00102418 0.000743382 0.000536744 0.000381112 0.000269763 0.000181026 0.000120905 6.24733e-05 2.58144e-05 -0.33484 -0.297823 -0.296041 -0.266841 -0.251009 -0.224836 -0.202379 -0.17624 -0.151421 -0.125869 -0.10178 -0.0787824 -0.0579302 -0.0393136 -0.0239287 -0.0106254 -0.000725109 0.00628481 0.0106184 0.0126998 0.0130381 0.0122047 0.0107118 0.00897102 0.00725381 0.00571393 0.00441144 0.00335391 0.00251789 0.00187113 0.00137731 0.00100624 0.00072805 0.000524011 0.000370721 0.000261711 0.000174831 0.000116959 5.97107e-05 2.60121e-05 -0.334666 -0.299923 -0.296981 -0.267882 -0.251837 -0.225199 -0.202412 -0.175787 -0.150586 -0.124668 -0.100339 -0.0771967 -0.0563363 -0.0378257 -0.0227453 -0.00948271 0.000176724 0.00696428 0.0111029 0.0130251 0.0132417 0.0123208 0.0107687 0.00898989 0.00724968 0.00569694 0.00438814 0.00332844 0.00249273 0.0018477 0.00135631 0.000987959 0.000712493 0.000511124 0.00036023 0.000253593 0.000168596 0.000112989 5.69369e-05 2.62125e-05 -0.334849 -0.302088 -0.298096 -0.269058 -0.25282 -0.225712 -0.202584 -0.175473 -0.149883 -0.123595 -0.0990197 -0.0757256 -0.0548468 -0.0364004 -0.0204133 -0.00840525 0.00102102 0.00759739 0.0115509 0.0133225 0.0134245 0.0124219 0.010815 0.0090014 0.00724053 0.00567655 0.00436255 0.00330143 0.00246654 0.00182356 0.00133482 0.00096935 0.000696711 0.000498086 0.000349637 0.00024541 0.000162321 0.000108995 5.41518e-05 2.64142e-05 -0.335402 -0.304326 -0.299386 -0.270366 -0.253964 -0.226378 -0.202898 -0.175301 -0.149319 -0.122657 -0.0978277 -0.074376 -0.0534677 -0.0350759 -0.0193984 -0.00741758 0.00180518 0.00818248 0.0119616 0.0135916 0.0135864 0.012508 0.0108506 0.00900556 0.00722636 0.00565277 0.00433467 0.00327288 0.0024393 0.00179872 0.00131285 0.000950412 0.000680705 0.000484895 0.000338944 0.00023716 0.000156006 0.000104976 5.13557e-05 2.66158e-05 -0.336342 -0.306624 -0.300861 -0.271875 -0.255206 -0.227195 -0.203357 -0.175276 -0.148895 -0.121857 -0.0967695 -0.0731538 -0.0522049 -0.0338587 -0.0184129 -0.00651923 0.00252612 0.00871804 0.0123339 0.0138318 0.013727 0.0125789 0.0108756 0.00900239 0.00720721 0.00562562 0.00430453 0.00324281 0.00241103 0.00177318 0.00129041 0.000931145 0.000664475 0.000471552 0.000328151 0.000228845 0.00014965 0.000100932 4.85484e-05 2.68158e-05 -0.337681 -0.308972 -0.302531 -0.273548 -0.256572 -0.228165 -0.203959 -0.175397 -0.148617 -0.121202 -0.0958502 -0.0720645 -0.0510639 -0.0327535 -0.017465 -0.00567422 0.00318177 0.0092026 0.0126671 0.0140427 0.0138464 0.0126345 0.01089 0.00899189 0.00718309 0.00559512 0.00427214 0.00321121 0.00238174 0.00174693 0.00126748 0.000911552 0.000648021 0.000458058 0.000317256 0.000220462 0.000143253 9.68627e-05 4.57302e-05 2.70128e-05 -0.339426 -0.311362 -0.3044 -0.275385 -0.258055 -0.229284 -0.204705 -0.175667 -0.148485 -0.120694 -0.095074 -0.0711126 -0.0500492 -0.0317635 -0.0166069 -0.00494131 0.00376951 0.00963486 0.0129603 0.0142239 0.0139441 0.0126748 0.0108937 0.0089741 0.00715402 0.00556129 0.00423751 0.00317811 0.00235142 0.00171999 0.00124408 0.000891632 0.000631346 0.000444413 0.000306262 0.000212014 0.000136816 9.27669e-05 4.29009e-05 2.72055e-05 -0.341581 -0.313786 -0.306476 -0.277326 -0.259697 -0.230547 -0.205592 -0.176084 -0.148501 -0.120336 -0.0944443 -0.0703018 -0.0491648 -0.0308917 -0.0158463 -0.00428274 0.00428834 0.0100136 0.0132128 0.014375 0.0140201 0.0126998 0.0108868 0.00894903 0.00712004 0.00552415 0.00420066 0.00314351 0.00232009 0.00169236 0.00122021 0.000871389 0.000614449 0.000430618 0.000295167 0.000203499 0.000130338 8.86447e-05 4.00607e-05 2.73924e-05 -0.344144 -0.316238 -0.30878 -0.279343 -0.26149 -0.231947 -0.206617 -0.176647 -0.148665 -0.120129 -0.0939636 -0.0696351 -0.048414 -0.0301407 -0.0151853 -0.0037008 0.00474069 0.0103377 0.0134241 0.0144956 0.0140743 0.0127094 0.0108693 0.00891672 0.00708116 0.00548371 0.00416159 0.00310742 0.00228775 0.00166404 0.00119587 0.000850824 0.000597332 0.000416673 0.000283972 0.000194918 0.00012382 8.44957e-05 3.72098e-05 2.75721e-05 -0.347108 -0.318706 -0.31133 -0.281424 -0.263419 -0.233477 -0.207775 -0.177353 -0.148975 -0.120074 -0.0936333 -0.0691147 -0.0477991 -0.0295128 -0.0146262 -0.00320706 0.0051183 0.0106066 0.0135937 0.0145856 0.0141065 0.0127036 0.0108412 0.00887718 0.00703741 0.00544 0.00412033 0.00306985 0.00225441 0.00163504 0.00117106 0.000829937 0.000579995 0.000402577 0.000272676 0.00018627 0.000117259 8.03189e-05 3.43477e-05 2.77429e-05 -0.350475 -0.321154 -0.313959 -0.28373 -0.265475 -0.235129 -0.209061 -0.178198 -0.14943 -0.12017 -0.0934543 -0.0687419 -0.047322 -0.0290094 -0.0141715 -0.00280495 0.00542535 0.0108195 0.013721 0.0146448 0.0141167 0.0126824 0.0108024 0.00883044 0.00698882 0.00539304 0.00407689 0.00303081 0.00222007 0.00160537 0.00114579 0.000808732 0.000562438 0.000388332 0.000261283 0.000177552 0.00011066 7.6115e-05 3.14709e-05 2.79049e-05 -0.354288 -0.323551 -0.3168 -0.286094 -0.267646 -0.236895 -0.210469 -0.179178 -0.150028 -0.120417 -0.0934266 -0.0685176 -0.0469841 -0.0286321 -0.0138231 -0.00249473 0.0056608 0.0109756 0.0138058 0.0146729 0.0141049 0.0126458 0.0107532 0.00877657 0.00693542 0.00534285 0.00403128 0.00299032 0.00218475 0.00157503 0.00112005 0.000787215 0.000544659 0.000373936 0.000249791 0.000168759 0.000104022 7.18831e-05 2.8574e-05 2.8057e-05 ) ; boundaryField { inlet { type freestreamPressure; freestreamValue uniform 0; value nonuniform List<scalar> 120 ( 0.204242 0.201915 0.199436 0.196787 0.193961 0.190952 0.187751 0.184353 0.180752 0.176944 0.172927 0.168702 0.164273 0.159647 0.154837 0.14986 0.144738 0.139499 0.134181 0.128827 0.123489 0.118227 0.113113 0.108226 0.103659 0.099512 0.095902 0.0929576 0.090824 0.0896651 0.239522 0.238674 0.2378 0.236902 0.235979 0.235033 0.234062 0.233068 0.232051 0.231012 0.22995 0.228866 0.22776 0.226634 0.225486 0.224319 0.223132 0.221925 0.2207 0.219456 0.218194 0.216915 0.215619 0.214306 0.212977 0.211632 0.210273 0.208899 0.207512 0.206103 0.252867 0.252791 0.252691 0.252568 0.25242 0.252248 0.252051 0.25183 0.251583 0.25131 0.251012 0.250688 0.250338 0.249962 0.24956 0.249131 0.248676 0.248194 0.247685 0.24715 0.246588 0.246 0.245385 0.244744 0.244076 0.243382 0.242662 0.241915 0.241143 0.240345 0.213957 0.214625 0.215843 0.217499 0.219491 0.221725 0.224119 0.2266 0.229109 0.231591 0.234005 0.236316 0.238498 0.240533 0.242406 0.244112 0.245646 0.24701 0.248208 0.249246 0.250132 0.250875 0.251486 0.251975 0.252353 0.25263 0.252817 0.252924 0.252961 0.252935 ) ; } outlet { type freestreamPressure; freestreamValue uniform 0; value nonuniform List<scalar> 120 ( 4.30266e-12 3.95224e-12 3.63402e-12 3.28285e-12 2.90697e-12 2.51562e-12 2.11097e-12 1.69445e-12 1.26874e-12 8.3761e-13 4.05749e-13 -2.11695e-14 -4.36416e-13 -8.32204e-13 -1.19977e-12 -1.52956e-12 -1.81149e-12 -2.03545e-12 -2.19184e-12 -2.27239e-12 -2.2711e-12 -2.18526e-12 -2.01668e-12 -1.77278e-12 -1.46761e-12 -1.12257e-12 -7.66696e-13 -4.36176e-13 -1.72714e-13 -2.05022e-14 7.92701e-12 7.92341e-12 7.91342e-12 7.89646e-12 7.8725e-12 7.84181e-12 7.80417e-12 7.75935e-12 7.70717e-12 7.64746e-12 7.58009e-12 7.50494e-12 7.4219e-12 7.33092e-12 7.23193e-12 7.1249e-12 7.00983e-12 6.88672e-12 6.75561e-12 6.61656e-12 6.46963e-12 6.31492e-12 6.15256e-12 5.98268e-12 5.80523e-12 5.62006e-12 5.42868e-12 5.23645e-12 5.04047e-12 4.78684e-12 7.15833e-12 7.09314e-12 7.10888e-12 7.12554e-12 7.13843e-12 7.15472e-12 7.17596e-12 7.20137e-12 7.23028e-12 7.26232e-12 7.29713e-12 7.33432e-12 7.37345e-12 7.41413e-12 7.45592e-12 7.49838e-12 7.5411e-12 7.58362e-12 7.62552e-12 7.66635e-12 7.70567e-12 7.74308e-12 7.77813e-12 7.8104e-12 7.83949e-12 7.865e-12 7.88654e-12 7.90366e-12 7.9164e-12 7.92449e-12 2.38316e-14 1.98562e-13 5.00117e-13 8.84558e-13 1.31554e-12 1.76578e-12 2.21642e-12 2.65538e-12 3.07565e-12 3.47382e-12 3.84883e-12 4.20093e-12 4.53105e-12 4.84028e-12 5.1297e-12 5.4002e-12 5.65246e-12 5.88698e-12 6.10415e-12 6.30427e-12 6.48763e-12 6.65458e-12 6.80555e-12 6.9411e-12 7.06148e-12 7.16605e-12 7.25644e-12 7.34667e-12 7.45118e-12 7.47133e-12 ) ; } top { type symmetryPlane; } bottom { type symmetryPlane; } cylinder { type zeroGradient; } frontandback { type empty; } } // ************************************************************************* //
[ "jezvonek@gmail.com" ]
jezvonek@gmail.com
77f3a61b31809796d825b703c023002e7c2c8848
60bbb28f104e490b900e31ed8c38e87f8af994ce
/util/Value/SizeValue.cpp
eb4f2071dab34827b6b888d1f64b11abb7d02369
[]
no_license
spadapet/ffcore
f504319e7b88a195150f4243679c3d733889baa6
4d998f29dfb79dd70edbc843556d619a2424592f
refs/heads/master
2021-06-28T08:55:29.187147
2020-10-05T18:04:39
2020-10-05T20:24:46
167,233,156
0
0
null
null
null
null
UTF-8
C++
false
false
1,785
cpp
#include "pch.h" #include "Data/DataPersist.h" #include "Value/Values.h" ff::SizeValue::SizeValue() { } ff::SizeValue::SizeValue(size_t value) : _value(value) { } size_t ff::SizeValue::GetValue() const { return _value; } ff::Value* ff::SizeValue::GetStaticValue(size_t value) { noAssertRetVal(value < 256, nullptr); static bool s_init = false; static SizeValue s_values[256]; static ff::Mutex s_mutex; if (!s_init) { ff::LockMutex lock(s_mutex); if (!s_init) { for (size_t i = 0; i < 256; i++) { s_values[i]._value = i; } s_init = true; } } return &s_values[value]; } ff::Value* ff::SizeValue::GetStaticDefaultValue() { return GetStaticValue(0); } ff::ValuePtr ff::SizeValueType::ConvertTo(const ff::Value* value, std::type_index type) const { size_t src = value->GetValue<SizeValue>(); if (type == typeid(BoolValue)) { return ff::Value::New<BoolValue>(src != 0); } if (type == typeid(DoubleValue)) { return ff::Value::New<DoubleValue>((double)src); } if (type == typeid(FixedIntValue)) { return ff::Value::New<FixedIntValue>((unsigned long long)src); } if (type == typeid(FloatValue)) { return ff::Value::New<FloatValue>((float)src); } if (type == typeid(IntValue)) { return ff::Value::New<IntValue>((int)src); } if (type == typeid(StringValue)) { return ff::Value::New<StringValue>(ff::String::format_new(L"%d", src)); } return nullptr; } ff::ValuePtr ff::SizeValueType::Load(ff::IDataReader* stream) const { uint64_t data; assertRetVal(ff::LoadData(stream, data), false); return ff::Value::New<SizeValue>((size_t)data); } bool ff::SizeValueType::Save(const ff::Value* value, ff::IDataWriter* stream) const { uint64_t data = value->GetValue<SizeValue>(); return ff::SaveData(stream, data); }
[ "peterspa@microsoft.com" ]
peterspa@microsoft.com
7bfdf0bc46f972e599a6c4068b9f4929166884a5
82bd88332c69484293a953cf1fb762f7cc3d7262
/third_party/blink/renderer/core/layout/ng/svg/layout_ng_svg_text.h
d560b5643ba594eeb5f53215d4a4ac916a14c386
[ "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause", "MIT", "Apache-2.0" ]
permissive
pkoarmy/chromium
ab317292d1f877e3d20d1a7f8aa9306860ba949c
2ba933e8b9b404296d3a5d71fbe2abb0fa148544
refs/heads/master
2023-03-09T00:03:01.766283
2021-02-27T00:41:27
2021-02-27T00:41:27
342,725,308
0
0
BSD-3-Clause
2021-02-27T00:41:27
2021-02-26T23:20:15
null
UTF-8
C++
false
false
892
h
// Copyright 2021 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 THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_SVG_LAYOUT_NG_SVG_TEXT_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_SVG_LAYOUT_NG_SVG_TEXT_H_ #include "third_party/blink/renderer/core/layout/ng/layout_ng_block_flow.h" namespace blink { // The LayoutNG representation of SVG <text>. class LayoutNGSVGText final : public LayoutNGBlockFlow { public: explicit LayoutNGSVGText(Element* element); private: // LayoutObject override: const char* GetName() const override; bool IsOfType(LayoutObjectType type) const override; // LayoutBox override: bool CreatesNewFormattingContext() const override; }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_SVG_LAYOUT_NG_SVG_TEXT_H_
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
448caf557f96b125eee5f6318369e60835183b08
0a2357ad0098bbb7b74528cb01d6decaab928ed8
/pku/1944.cpp
a8d901f0bd1d6ae7c8963b37047dca2971d89812
[]
no_license
touyou/CompetitiveProgramming
12af9e18f4fe9ce9f08f0a0f2750bcb5d1fc9ce7
419f310ccb0f24ff08d3599e5147e5a614071926
refs/heads/master
2021-06-18T09:19:01.767323
2020-07-16T03:40:08
2020-07-16T03:40:08
90,118,147
0
0
null
2020-10-13T04:32:19
2017-05-03T06:57:58
C++
UTF-8
C++
false
false
930
cpp
#include <cstdio> #include <map> #include <algorithm> using namespace std; int main() { int n, p; scanf("%d%d",&n,&p); int state[n]; // 0=1~2,1=2~3...n-1=n~1 fill(state, state+n, 0); pair<int, int> in[p]; for (int i=0; i<p; i++) { int s, e; scanf("%d%d",&s,&e); if (s>e) swap(s,e); in[i].first=s; in[i].second=e; } sort(in, in+p); for (int i=p-1; i>=0; i--) { int s=in[i].first, e=in[i].second; int r1=0, r2=0; for (int j=s-1; j<e-1; j++) r1+=state[j]; for (int j=0; j<s-1; j++) r2+=state[j]; for (int j=e-1; j<n; j++) r2+=state[j]; if (e-s-r1<s+n-e-r2) { for (int j=s-1; j<e-1; j++) state[j]=1; } else { for (int j=0; j<s-1; j++) state[j]=1; for (int j=e-1; j<n; j++) state[j]=1; } } int res=0; printf("%d\n",res); } for (int i=0; i<n; i++) res+=state[i];
[ "fujiyou1121@gmail.com" ]
fujiyou1121@gmail.com
8554c43b38c098781ab641aa1db61cc8cf20a1a1
7eebf21716e334faaf79b4b9ca778d6194e1f0de
/rs/src/CUsuarioDelegate.h
252ed6aebe72ca82e8387b5690de8f74f3a6068d
[]
no_license
xvjau/Reserva-de-Salas
4c86132bfede52a5cf64187372b26b27ef45af49
cd942b99e93b14bfab62486073a1b757020c492a
refs/heads/master
2021-01-23T18:48:41.491409
2010-03-08T21:58:50
2010-03-08T21:58:50
2,019,678
0
0
null
null
null
null
UTF-8
C++
false
false
1,522
h
/* Reserva de Salas Copyright 2006 Gianfranco Rossi. Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo sob os termos da Licença Pública Geral GNU, conforme publicada pela Free Software Foundation; tanto a versão 2 da Licença. Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para obter mais detalhes. Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este programa; se não, escreva para a Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ #ifndef CCOMBOBOXDELEGATE_H #define CCOMBOBOXDELEGATE_H #include <QtGui/QItemDelegate> #include <QtGui/QAbstractItemView> #include "main.h" #include "CData.h" /** @author Gianni Rossi <gianni.rossi@gmail.com> */ class CUsuarioDelegate: public QItemDelegate { Q_OBJECT public: CUsuarioDelegate ( CData * _data, QObject *_parent = 0 ); private: QStringList * m_items; CData * m_data; public: virtual QWidget * createEditor ( QWidget * parent, const QStyleOptionViewItem & option, const QModelIndex & index ) const; virtual void setEditorData ( QWidget * editor, const QModelIndex & index ) const; virtual void setModelData ( QWidget * editor, QAbstractItemModel * model, const QModelIndex & index ) const; }; #endif
[ "xvjau@c7be1d08-1417-0410-99dc-ed190eba7aff" ]
xvjau@c7be1d08-1417-0410-99dc-ed190eba7aff
f7f9b4a454cfa01455e5bb1dfbfdc264d0135254
616650fda8a7d360162c4823ddf2c2120c217cff
/Geometry.cpp
2f6a64e3fc7b34f50f3f29e1840372c550ea01fb
[]
no_license
thelowps/graphics-final-project
31fda157fbf00c00556a69bcd7794e9f5c7dcf23
e94a86e183d73bfe208e328140af89cb543879fe
refs/heads/master
2021-01-10T19:48:45.228522
2012-12-10T03:08:20
2012-12-10T03:08:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,450
cpp
#include "Geometry.h" SHAPE_TYPE Shape::getType () const { return type; } Sphere::Sphere(Point center, double radius) { c = center; r = radius; type = SPHERE; } Box::Box(Point center, double width, double height, double depth) { c = center; w = width; h = height; d = depth; type = BOX; } double Box::dim(short i) const { if (i == 0) return w; if (i == 1) return h; if (i == 2) return d; else return 0; } short detectCollision (const Shape* a, const Shape* b) { if (a->getType() == SPHERE) { if (b->getType() == SPHERE) { return detectCollision( *((Sphere*)a), *((Sphere*)b)); } else if (b->getType() == BOX) { return detectCollision( *((Sphere*)a), *((Box*)b)); } } else if (a->getType() == BOX) { if (b->getType() == SPHERE) { return detectCollision( *((Sphere*)b), *((Box*)a)); } else if (b->getType() == BOX) { return detectCollision( *((Box*)a), *((Box*)b)); } } } short detectCollision(const Sphere a, const Sphere b) { double distSq = (a.c-b.c).magSq(); if (distSq < (a.r+b.r)*(a.r+b.r) ) return 1; else return 0; } short detectCollision(const Sphere s, const Box b) { // for each dimension short collide = 1; for (short d = 0; d < 3; ++d) { float sleft = s.c.at(d) - s.r; float sright = s.c.at(d) + s.r; float bleft = b.c.at(d) - b.dim(d)/2; float bright = b.c.at(d) + b.dim(d)/2; // Check if sphere points are on either end of a box side if ( (sleft - bleft )*(sright - bleft ) < 0 || (sleft - bright)*(sright - bright) < 0 || (bleft - sleft )*(bright - sleft) < 0 || (bleft - sright )*(bright - sright) < 0 ) { continue; } else { collide = 0; break; // no need to keep checking } } return collide; } short detectCollision(const Box a, const Box b) { // for each dimension short collide = 1; for (short d = 0; d < 3; ++d) { float sleft = a.c.at(d) - a.dim(d)/2; float sright = a.c.at(d) + a.dim(d)/2; float bleft = b.c.at(d) - b.dim(d)/2; float bright = b.c.at(d) + b.dim(d)/2; // Check if sphere points are on either end of a box side if ( (sleft - bleft )*(sright - bleft ) < 0 || (sleft - bright)*(sright - bright) < 0 || (bleft - sleft )*(bright - sleft) < 0 || (bleft - sright )*(bright - sright) < 0 ) { continue; } else { collide = 0; break; // no need to keep checking } } return collide; }
[ "david@ubuntu.(none)" ]
david@ubuntu.(none)
f2e104e30378f8a165d23d8c91865c04a737f027
fff771a3bcd6aa3a45de7cd248a80091bb22e9d8
/Source/Editor/View/GameSystemProfilerView.h
ace30fedcb81719df9371f9e8f6788a38c4a6a6a
[]
no_license
Blodjer/B2D
ba9e495d8e662f4d882c5b903a3b8aa422e322bf
f091d1ec72b14bdfb110e2071a27a723dd1c5d4c
refs/heads/master
2023-08-02T09:16:12.695209
2021-04-14T15:38:10
2021-04-14T15:38:10
115,878,910
0
0
null
null
null
null
UTF-8
C++
false
false
155
h
#pragma once #include "IEditorView.h" class GameSystemProfilerView : public IEditorView { protected: virtual void Tick(float deltaTime) override; };
[ "j95.szwaczka@gmail.com" ]
j95.szwaczka@gmail.com
4457e9969019d3fb5c241aec4a35738246355a78
0149a18329517d09305285f16ab41a251835269f
/Problem Set Volumes/Volume 6 (600-699)/UVa_668_Parliament.cpp
6dd7e9bac3c59d46d506f0eec409ad4ca28c61d8
[]
no_license
keisuke-kanao/my-UVa-solutions
138d4bf70323a50defb3a659f11992490f280887
f5d31d4760406378fdd206dcafd0f984f4f80889
refs/heads/master
2021-05-14T13:35:56.317618
2019-04-16T10:13:45
2019-04-16T10:13:45
116,445,001
3
1
null
null
null
null
UTF-8
C++
false
false
2,662
cpp
/* UVa 668 - Parliament To build using Visual Studio 2012: cl -EHsc -O2 UVa_668_Parliament.cpp */ #include <cstdio> #include <cstring> /* 4 5: 2 3 6: 2 4 7: 3 4 8: 3 5 5 9: 2 3 4 5: + 4 10: 2 3 5 5: + 5 11: 2 4 5 6: + 5 12: 3 4 5 7: + 5 13: 3 4 6 7: + 6 6 14: 2 3 4 5 9: + 5 15: 2 3 4 6 9: + 6 16: 2 3 5 6 10: + 6 17: 2 4 5 6 11: + 6 18: 3 4 5 6 12: + 6 19: 3 4 5 7 12: + 7 7 20: 2 3 4 5 6 14: + 6 21: 2 3 4 5 7 14: + 7 22: 2 3 4 6 7 15: + 7 23: 2 3 5 6 7 16: + 7 24: 2 4 5 6 7 17: + 7 25: 3 4 5 6 7 18: + 7 26: 3 4 5 6 8 18: + 8 8 27: 2 3 4 5 6 7 20: + 7 28: 2 3 4 5 6 8 20: + 8 29: 2 3 4 5 7 8 21: + 8 30: 2 3 4 6 7 8 22: + 8 31: 2 3 5 6 7 8 23: + 8 32: 2 4 5 6 7 8 24: + 8 33: 3 4 5 6 7 8 25: + 8 34: 3 4 5 6 7 9 25: + 9 9 35: 2 3 4 5 6 7 8 27: + 8 36: 2 3 4 5 6 7 9 27: + 9 37: 2 3 4 5 6 8 9 28: + 9 38: 2 3 4 5 7 8 9 29: + 9 39: 2 3 4 6 7 8 9 30: + 9 40: 2 3 5 6 7 8 9 31: + 9 41: 2 4 5 6 7 8 9 32: + 9 42: 3 4 5 6 7 8 9 33: + 9 43: 3 4 5 6 7 8 10 33: + 10 ... */ const int N_min = 5, N_max = 1000, nr_sizes_max = 45; int nr_sizes[N_max + 1] = { 0, 0, 0, 0, 0, 2, 2, 2, 2 }; int sizes[N_max + 1][nr_sizes_max] = { {0}, {0}, {0}, {0}, {0}, {2, 3}, {2, 4}, {3, 4}, {3, 5} }; int main() { for (int nr = N_min, pnr = N_min - 1, n = nr + pnr; n <= N_max; pnr = nr++) { #ifdef DEBUG printf("%d\n", nr); #endif for (int i = 0; i < nr && n <= N_max; i++, n++) { if (!i) { memcpy(sizes[n], sizes[n - pnr], nr_sizes[n - pnr] * sizeof(int)); sizes[n][nr_sizes[n - pnr]] = pnr; nr_sizes[n] = nr_sizes[n - pnr] + 1; } else if (i == nr - 1) { memcpy(sizes[n], sizes[n - pnr - 2], nr_sizes[n - pnr - 2] * sizeof(int)); sizes[n][nr_sizes[n - pnr - 2]] = nr + 1; nr_sizes[n] = nr_sizes[n - pnr - 2] + 1; } else { memcpy(sizes[n], sizes[n - pnr - 1], nr_sizes[n - pnr - 1] * sizeof(int)); sizes[n][nr_sizes[n - pnr - 1]] = nr; nr_sizes[n] = nr_sizes[n - pnr - 1] + 1; } #ifdef DEBUG printf("%4d: ", n); for (int j = 0; j < nr_sizes[n]; j++) printf("%d%c", sizes[n][j], ((j < nr_sizes[n] - 1) ? ' ' : '\n')); #endif } } int M; scanf("%d", &M); while (M--) { int N; scanf("%d", &N); for (int j = 0; j < nr_sizes[N]; j++) printf("%d%c", sizes[N][j], ((j < nr_sizes[N] - 1) ? ' ' : '\n')); if (M) putchar('\n'); } return 0; }
[ "keisuke.kanao.154@gmail.com" ]
keisuke.kanao.154@gmail.com
840040b0ab1d4396eaf0cae1d91098efe13dba65
3e18efe218fb261285d90e9e0ad549281ace66e8
/Project File/group.h
9f8159f4903c0323a5553d56db9f091aca43e5d8
[]
no_license
deep-essence347/Project-DAS
68177f1ca9caf89224bd9719d048069b2ef86802
cbc7c127cd03f5c3f45476516d59daf470eb7170
refs/heads/master
2021-06-25T07:04:50.816783
2021-01-24T18:12:00
2021-01-24T18:12:00
198,627,700
1
0
null
null
null
null
UTF-8
C++
false
false
668
h
#ifndef GROUP_H #define GROUP_H #include <QDialog> #include "addgroup.h" #include "history.h" #include "teacher.h" namespace Ui { class group; } class group : public QDialog { Q_OBJECT public: explicit group(QWidget *parent = nullptr,QString idname=""); ~group(); private slots: void on_AddG_clicked(); void on_RemoveG_clicked(); void on_refresh_clicked(); void on_select_clicked(); void on_Export_clicked(); bool queryToCsv(); void on_PHistory_clicked(); void on_SignOut_clicked(); private: Ui::group *ui; addgroup *add; QString id; Teacher *teacher; history *History; }; #endif // GROUP_H
[ "51238569+deep-essence347@users.noreply.github.com" ]
51238569+deep-essence347@users.noreply.github.com
b7b616a0d94174af9fdee69952f4b54c10f493df
fbbed14dbbc818f8ae362e28995c0b5a0762baec
/Rescue-Plus-Game-Engine/Engine/LightManager.h
5787c24c7920b3ca38810795f9dc7e56ec0c9224
[]
no_license
MAClavell/Rescue-Plus-Game-Engine
be261cd3ce11273d1d09c142f7e41d29b37ff6d9
38e581a4d67711b67079d79a44d0012610a397e7
refs/heads/master
2022-04-03T19:32:09.959745
2020-02-21T23:17:27
2020-02-21T23:17:27
168,427,899
3
0
null
null
null
null
UTF-8
C++
false
false
7,266
h
#pragma once #include "Lights.h" #include <vector> #define SHADOW_MAP_SIZE 2048 class LightManager { private: // -------------------------------------------------------- // Singleton Constructor - Set up the singleton instance of the LightManager // -------------------------------------------------------- LightManager() { Init(); } ~LightManager() { }; // -------------------------------------------------------- // Initialize values in the LightManager // -------------------------------------------------------- void Init(); //Lighting containers AmbientLightStruct* ambientLight; std::vector<Light*> lightList; std::vector<Light*> shadowLightList; //Light struct array helpers bool listDirty; LightStruct* lightStructArr; //Shadow descs D3D11_TEXTURE2D_DESC shadowTexDesc; D3D11_DEPTH_STENCIL_VIEW_DESC shadowDSDesc; D3D11_SHADER_RESOURCE_VIEW_DESC shadowSRVDesc; // -------------------------------------------------------- //Set the light manager's light list to dirty // THIS FRIEND FUNCTION CAN ONLY BE ACCESSED BY THE LIGHT // IN Lights.cpp // -------------------------------------------------------- friend void SetLightListDirty(LightManager* lightManager); // -------------------------------------------------------- // Rebuild the light struct array and the shadow light list // -------------------------------------------------------- void RebuildLightLists(); // -------------------------------------------------------- // Rebuild the shadow light list // -------------------------------------------------------- void RebuildShadowLightList(); // -------------------------------------------------------- // Rebuild the light struct array from all lights in the lightList // -------------------------------------------------------- void RebuildLightStructArray(); public: // -------------------------------------------------------- // Get the singleton instance of the LightManager // -------------------------------------------------------- static LightManager* GetInstance() { static LightManager instance; return &instance; } // -------------------------------------------------------- // Deinitialize values // -------------------------------------------------------- void Release(); //Delete this LightManager(LightManager const&) = delete; void operator=(LightManager const&) = delete; // -------------------------------------------------------- // Create a new directional light and add it to the light manager // -------------------------------------------------------- DirectionalLight* CreateDirectionalLight(bool castShadows); // -------------------------------------------------------- // Create a new directional light and add it to the light manager // // color - Diffuse color of the light // intensity - how intense the light is // -------------------------------------------------------- DirectionalLight* CreateDirectionalLight(bool castShadows, DirectX::XMFLOAT3 color, float intensity); // -------------------------------------------------------- // Create a new point light and add it to the light manager // -------------------------------------------------------- PointLight* CreatePointLight(bool castShadows); // -------------------------------------------------------- // Create a new point light and add it to the light manager // // radius - radius of the point light's sphere // color - Diffuse color of the light // intensity - how intense the light is // -------------------------------------------------------- PointLight* CreatePointLight(bool castShadows, float radius, DirectX::XMFLOAT3 color, float intensity); // -------------------------------------------------------- // Create a new spot light and add it to the light manager // -------------------------------------------------------- SpotLight* CreateSpotLight(bool castShadows); // -------------------------------------------------------- // Create a new spot light and add it to the light manager // // range - the range of this spotlight // spotFallOff - the falloff for this spotlight // color - Diffuse color of the light // intensity - how intense the light is // -------------------------------------------------------- SpotLight* CreateSpotLight(bool castShadows, float range, float spotFalloff, DirectX::XMFLOAT3 color, float intensity); // -------------------------------------------------------- // Add a light to the light manager // -------------------------------------------------------- void AddLight(Light* light); // -------------------------------------------------------- // Remomve a light from the light manager // // deleteLight - whether to delete the light reference when removing // -------------------------------------------------------- void RemoveLight(Light* light, bool deleteLight = true); // -------------------------------------------------------- // Check if the light already exists in the light list // -------------------------------------------------------- bool IsInLightList(Light* light); // -------------------------------------------------------- // Set the color of the ambient light // -------------------------------------------------------- void SetAmbientColor(DirectX::XMFLOAT3 color); // -------------------------------------------------------- // Set the color of the ambient light // // r - red // g - green // b - blue // -------------------------------------------------------- void SetAmbientColor(float r, float g, float b); // -------------------------------------------------------- // Set the intensity of the ambient light // -------------------------------------------------------- void SetAmbientIntensity(float intensity); // -------------------------------------------------------- // Get the ambient light // -------------------------------------------------------- AmbientLightStruct* GetAmbientLight(); // -------------------------------------------------------- // Get the amount of lights in the manager // -------------------------------------------------------- int GetLightAmnt(); // -------------------------------------------------------- // Get the array of light structs for sending to a shader // -------------------------------------------------------- LightStruct* GetLightStructArray(); // -------------------------------------------------------- // Get all lights that cast shadows // -------------------------------------------------------- std::vector<Light*> GetShadowCastingLights(); // -------------------------------------------------------- // Get the shadow texture description for creating shadowTexs // -------------------------------------------------------- D3D11_TEXTURE2D_DESC* GetShadowTexDesc(); // -------------------------------------------------------- // Get the shadow depth/stencil description for creating shadowDSs // -------------------------------------------------------- D3D11_DEPTH_STENCIL_VIEW_DESC* GetShadowDSDesc(); // -------------------------------------------------------- // Get the shadow resource view description for creating shadowSRVs // -------------------------------------------------------- D3D11_SHADER_RESOURCE_VIEW_DESC* GetShadowSRVDesc(); };
[ "michaelclavell11@gmail.com" ]
michaelclavell11@gmail.com
ebe57f4c4bfd62d0598ec8095c76b97545053a94
ea401c3e792a50364fe11f7cea0f35f99e8f4bde
/released_plugins/v3d_plugins/neurontracing_neutube/src_neutube/neurolabi/gui/zhdf5writer.h
de4fd83ea66a0b38853a4fc61c47e0f742bb36d3
[ "BSD-2-Clause", "MIT", "GPL-1.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only" ]
permissive
Vaa3D/vaa3d_tools
edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9
e6974d5223ae70474efaa85e1253f5df1814fae8
refs/heads/master
2023-08-03T06:12:01.013752
2023-08-02T07:26:01
2023-08-02T07:26:01
50,527,925
107
86
MIT
2023-05-22T23:43:48
2016-01-27T18:19:17
C++
UTF-8
C++
false
false
1,056
h
#ifndef ZHDF5WRITER_H #define ZHDF5WRITER_H #include <string> #include <vector> #include "zhdf5_header.h" #include "mylib/array.h" /** * @brief The class for writing hdf5 files * * Usage: * ZHdfWriter writer; * if (writer.open("test.h5")) { * ZHdfReader reader; * reader.open("read.h5"); * mylib::Array *array = reader.readArray("/test/test_array"); * writer.createGroup("/test"); * writer.writeArray("/test/test_array", array); * } else { * cout << "Cannot open the file." << endl; * } */ class ZHdf5Writer { public: ZHdf5Writer(); ZHdf5Writer(const std::string &filePath); ~ZHdf5Writer(); public: bool open(const std::string &filePath); bool open(const std::string &filePath, unsigned flags); void close(); void createGroup(const std::string &group); void writeArray(const std::string &path, const mylib::Array *array); void writeDoubleArray(const std::string &path, const std::vector<std::vector<double> > &feature); private: hid_t m_file; }; #endif // ZHDF5WRITER_H
[ "hanchuan.peng@gmail.com" ]
hanchuan.peng@gmail.com
5c3d62f94847a2e3a9ebfeb73173421af200ba36
0d0e78c6262417fb1dff53901c6087b29fe260a0
/gaap/include/tencentcloud/gaap/v20180529/model/CreateDomainErrorPageInfoResponse.h
451e52b3a2b017b3e90e8ff2836497349096f0a4
[ "Apache-2.0" ]
permissive
li5ch/tencentcloud-sdk-cpp
ae35ffb0c36773fd28e1b1a58d11755682ade2ee
12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4
refs/heads/master
2022-12-04T15:33:08.729850
2020-07-20T00:52:24
2020-07-20T00:52:24
281,135,686
1
0
Apache-2.0
2020-07-20T14:14:47
2020-07-20T14:14:46
null
UTF-8
C++
false
false
2,293
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TENCENTCLOUD_GAAP_V20180529_MODEL_CREATEDOMAINERRORPAGEINFORESPONSE_H_ #define TENCENTCLOUD_GAAP_V20180529_MODEL_CREATEDOMAINERRORPAGEINFORESPONSE_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/AbstractModel.h> namespace TencentCloud { namespace Gaap { namespace V20180529 { namespace Model { /** * CreateDomainErrorPageInfo返回参数结构体 */ class CreateDomainErrorPageInfoResponse : public AbstractModel { public: CreateDomainErrorPageInfoResponse(); ~CreateDomainErrorPageInfoResponse() = default; CoreInternalOutcome Deserialize(const std::string &payload); /** * 获取错误定制响应的配置ID * @return ErrorPageId 错误定制响应的配置ID */ std::string GetErrorPageId() const; /** * 判断参数 ErrorPageId 是否已赋值 * @return ErrorPageId 是否已赋值 */ bool ErrorPageIdHasBeenSet() const; private: /** * 错误定制响应的配置ID */ std::string m_errorPageId; bool m_errorPageIdHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_GAAP_V20180529_MODEL_CREATEDOMAINERRORPAGEINFORESPONSE_H_
[ "zhiqiangfan@tencent.com" ]
zhiqiangfan@tencent.com
7a1b722d78dec51ac9a89c92f059229484baebd0
f0b7ddd4bcdf99f027a75e283b22a0264ffa05ba
/ShooterStarter/.history/Source/ShooterStarter/BTTask_Shoot_20200827111055.cpp
fa97f28a3b70755a065d02604f5504417c8fd0fa
[]
no_license
Onygox/UnrealProjects
cd1d8c29f228a7f8e0e2b84bf3c0102761fd07ef
e079c9593a5d9b794d17a409ff4f5175fbffaa0a
refs/heads/master
2022-12-12T21:19:24.416300
2020-09-11T16:38:08
2020-09-11T16:38:08
277,343,579
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
// Copyright Lionel Miele-Herndon 2020 #include "BTTask_Shoot.h" UBTTask_Shoot::UBTTask_Shoot() { NodeName = TEXT("Shoot"); } EBTNodeResult::Type UBTTask_Shoot::ExecuteTask(UBehaviorTreeComponent &OwnerComp, uint8* NodeMemory) { Super::ExecuteTask(OwnerComp, NodeMemory); return }
[ "miell534@newschool.edu" ]
miell534@newschool.edu
e1f30fc3ed7ddf0bed8dace28b732394e2dd9832
382c36a029318c9f8f6945925828bef52507af40
/LiveArchive/4872.cpp
2e5999d6d243eaf3ba70318e4d6b0cd8ca5b23d4
[]
no_license
AhmedEzzatG/competitiveProgramming
1aeba7f0d40497fd89a0b53354ada4c2b7c65df1
fe29b82f97e6844d62b149fa9ab73e7d71673c66
refs/heads/master
2022-01-26T06:19:34.122324
2022-01-23T15:40:02
2022-01-23T15:40:02
208,876,628
18
13
null
null
null
null
UTF-8
C++
false
false
2,185
cpp
#include<bits/stdc++.h> #include<unordered_map> using namespace std; #define ll long long #define endl '\n' #define RT(v) return cout<<v,0 #define sz(v) (int)(v.size()) #define all(v) v.begin(),v.end() #define clr(v,val) memset(v,val,sizeof(v)) #define watch(x) cout<<(#x)<<" = "<<x<<endl const int oo = 0x3f3f3f3f, mod = 1e9 + 7; const double PI = acos(-1), EPS = 1e-8; int dr[]{ -1, -1, 0, 1, 1, 1, 0, -1 }; int dc[]{ 0, 1, 1, 1, 0, -1, -1, -1 }; void run() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); #ifndef ONLINE_JUDGE freopen("input.in", "r", stdin); //freopen("output.out", "w", stdout); #else #endif } struct edge { int from, to; double weight; edge() {} edge(int from, int to, double weight) :from(from), to(to), weight(weight) {} bool operator <(const edge& other) const { return weight < other.weight; } }; vector<edge> edgeList; double dis(pair<int, int> a, pair<int, int> b) { return hypot(abs(a.first - b.first), abs(a.second - b.second)); } struct DSU { vector<int> rank, parent; int forsets; DSU(int n) { rank = parent = vector<int>(n + 1); forsets = n; for (int i = 0; i <= n; i++) rank[i] = 1, parent[i] = i; } int find_set(int x) { if (x == parent[x])return x; return parent[x] = find_set(parent[x]); } void link(int x, int y) { parent[x] = y; if (rank[x] == rank[y])rank[y]++; } bool union_sets(int x, int y) { x = find_set(x), y = find_set(y); if (x != y) { if (rank[x] > rank[y])swap(x, y); link(x, y); forsets--; } return x != y; } bool same_set(int x, int y) { return find_set(x) != find_set(y); } }; double MST_Kruskal(int n) { DSU uf(n); double mstCost = 0; sort(edgeList.begin(), edgeList.end()); for (auto e : edgeList) if (uf.union_sets(e.from, e.to)) mstCost += e.weight; return mstCost; } int main() { run(); int n; while (cin >> n, n) { edgeList = vector<edge>(); vector<pair<int, int>> v(n); for (int i = 0; i < n; i++) cin >> v[i].first >> v[i].second; for (int i = 0; i < n; i++) for (int j = i + 1; j < n; j++) edgeList.push_back(edge(i + 1, j + 1, dis(v[i], v[j]))); cout << fixed << setprecision(2) << MST_Kruskal(n) << endl; } }
[ "ahmed,ezzat.ga@gmail.com" ]
ahmed,ezzat.ga@gmail.com
c28ae3a9f0b7ea2d9edb713a899ea4f99096deb3
9e3f90cc397b3c17ce693faa67230ece98af923b
/src/http_service/default_handler.h
ce8e6ea6ae7d7c5c0487538fcd7d83b8004af98d
[]
no_license
theidexisted/w-server
59c2c6bcb0adaa533206fefe12c0b77e4b645b3a
844f5b1f87b161f9c402074a6bb0d41bb9839e2e
refs/heads/master
2022-04-05T23:25:36.692131
2020-03-04T05:59:15
2020-03-04T05:59:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
757
h
#pragma once #include <folly/Memory.h> #include <proxygen/httpserver/RequestHandler.h> namespace w { class DefaultHandler : public proxygen::RequestHandler { public: virtual void onRequest(std::unique_ptr<proxygen::HTTPMessage> headers) noexcept override; virtual void onBody(std::unique_ptr<folly::IOBuf> body) noexcept override; virtual void onEOM() noexcept override; virtual void onUpgrade(proxygen::UpgradeProtocol proto) noexcept override {} virtual void requestComplete() noexcept override { delete this; } virtual void onError(proxygen::ProxygenError err) noexcept override { delete this; } protected: std::unique_ptr<proxygen::HTTPMessage> req_headers_; std::unique_ptr<folly::IOBuf> req_body_; }; } // namespace w
[ "invalid_ms_user@live.com" ]
invalid_ms_user@live.com
49dbb08bf06d3e087b2cd2518ebb58e372e7a256
0f6ae94ae0221ae945ce6122f866194da2eb5283
/lib/IR/LLVMContext.cpp
803d24bcb76d464f188495f17215149b6fea1de9
[ "NCSA" ]
permissive
peterdfinn/safecode-mainline
2a1621ef839a30664477bbd300123eb16bd204d1
a5587ccd5dfb261ca39b88855879563230f38ce0
refs/heads/master
2021-01-18T15:23:26.296177
2015-09-03T04:23:34
2015-09-03T04:23:34
38,640,903
1
0
null
null
null
null
UTF-8
C++
false
false
9,349
cpp
//===-- LLVMContext.cpp - Implement LLVMContext ---------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file implements LLVMContext, as a wrapper around the opaque // class LLVMContextImpl. // //===----------------------------------------------------------------------===// #include "llvm/IR/LLVMContext.h" #include "LLVMContextImpl.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DebugLoc.h" #include "llvm/IR/DiagnosticInfo.h" #include "llvm/IR/DiagnosticPrinter.h" #include "llvm/IR/Instruction.h" #include "llvm/IR/Metadata.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/SourceMgr.h" #include <cctype> using namespace llvm; static ManagedStatic<LLVMContext> GlobalContext; LLVMContext& llvm::getGlobalContext() { return *GlobalContext; } LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) { // Create the fixed metadata kinds. This is done in the same order as the // MD_* enum values so that they correspond. // Create the 'dbg' metadata kind. unsigned DbgID = getMDKindID("dbg"); assert(DbgID == MD_dbg && "dbg kind id drifted"); (void)DbgID; // Create the 'tbaa' metadata kind. unsigned TBAAID = getMDKindID("tbaa"); assert(TBAAID == MD_tbaa && "tbaa kind id drifted"); (void)TBAAID; // Create the 'prof' metadata kind. unsigned ProfID = getMDKindID("prof"); assert(ProfID == MD_prof && "prof kind id drifted"); (void)ProfID; // Create the 'fpmath' metadata kind. unsigned FPAccuracyID = getMDKindID("fpmath"); assert(FPAccuracyID == MD_fpmath && "fpmath kind id drifted"); (void)FPAccuracyID; // Create the 'range' metadata kind. unsigned RangeID = getMDKindID("range"); assert(RangeID == MD_range && "range kind id drifted"); (void)RangeID; // Create the 'tbaa.struct' metadata kind. unsigned TBAAStructID = getMDKindID("tbaa.struct"); assert(TBAAStructID == MD_tbaa_struct && "tbaa.struct kind id drifted"); (void)TBAAStructID; // Create the 'invariant.load' metadata kind. unsigned InvariantLdId = getMDKindID("invariant.load"); assert(InvariantLdId == MD_invariant_load && "invariant.load kind id drifted"); (void)InvariantLdId; // Create the 'alias.scope' metadata kind. unsigned AliasScopeID = getMDKindID("alias.scope"); assert(AliasScopeID == MD_alias_scope && "alias.scope kind id drifted"); (void)AliasScopeID; // Create the 'noalias' metadata kind. unsigned NoAliasID = getMDKindID("noalias"); assert(NoAliasID == MD_noalias && "noalias kind id drifted"); (void)NoAliasID; // Create the 'nontemporal' metadata kind. unsigned NonTemporalID = getMDKindID("nontemporal"); assert(NonTemporalID == MD_nontemporal && "nontemporal kind id drifted"); (void)NonTemporalID; // Create the 'llvm.mem.parallel_loop_access' metadata kind. unsigned MemParallelLoopAccessID = getMDKindID("llvm.mem.parallel_loop_access"); assert(MemParallelLoopAccessID == MD_mem_parallel_loop_access && "mem_parallel_loop_access kind id drifted"); (void)MemParallelLoopAccessID; // Create the 'nonnull' metadata kind. unsigned NonNullID = getMDKindID("nonnull"); assert(NonNullID == MD_nonnull && "nonnull kind id drifted"); (void)NonNullID; // Create the 'dereferenceable' metadata kind. unsigned DereferenceableID = getMDKindID("dereferenceable"); assert(DereferenceableID == MD_dereferenceable && "dereferenceable kind id drifted"); (void)DereferenceableID; // Create the 'dereferenceable_or_null' metadata kind. unsigned DereferenceableOrNullID = getMDKindID("dereferenceable_or_null"); assert(DereferenceableOrNullID == MD_dereferenceable_or_null && "dereferenceable_or_null kind id drifted"); (void)DereferenceableOrNullID; // Create the 'make.implicit' metadata kind. unsigned MakeImplicitID = getMDKindID("make.implicit"); assert(MakeImplicitID == MD_make_implicit && "make.implicit kind id drifted"); (void)MakeImplicitID; } LLVMContext::~LLVMContext() { delete pImpl; } void LLVMContext::addModule(Module *M) { pImpl->OwnedModules.insert(M); } void LLVMContext::removeModule(Module *M) { pImpl->OwnedModules.erase(M); } //===----------------------------------------------------------------------===// // Recoverable Backend Errors //===----------------------------------------------------------------------===// void LLVMContext:: setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler, void *DiagContext) { pImpl->InlineAsmDiagHandler = DiagHandler; pImpl->InlineAsmDiagContext = DiagContext; } /// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by /// setInlineAsmDiagnosticHandler. LLVMContext::InlineAsmDiagHandlerTy LLVMContext::getInlineAsmDiagnosticHandler() const { return pImpl->InlineAsmDiagHandler; } /// getInlineAsmDiagnosticContext - Return the diagnostic context set by /// setInlineAsmDiagnosticHandler. void *LLVMContext::getInlineAsmDiagnosticContext() const { return pImpl->InlineAsmDiagContext; } void LLVMContext::setDiagnosticHandler(DiagnosticHandlerTy DiagnosticHandler, void *DiagnosticContext, bool RespectFilters) { pImpl->DiagnosticHandler = DiagnosticHandler; pImpl->DiagnosticContext = DiagnosticContext; pImpl->RespectDiagnosticFilters = RespectFilters; } LLVMContext::DiagnosticHandlerTy LLVMContext::getDiagnosticHandler() const { return pImpl->DiagnosticHandler; } void *LLVMContext::getDiagnosticContext() const { return pImpl->DiagnosticContext; } void LLVMContext::setYieldCallback(YieldCallbackTy Callback, void *OpaqueHandle) { pImpl->YieldCallback = Callback; pImpl->YieldOpaqueHandle = OpaqueHandle; } void LLVMContext::yield() { if (pImpl->YieldCallback) pImpl->YieldCallback(this, pImpl->YieldOpaqueHandle); } void LLVMContext::emitError(const Twine &ErrorStr) { diagnose(DiagnosticInfoInlineAsm(ErrorStr)); } void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) { assert (I && "Invalid instruction"); diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr)); } static bool isDiagnosticEnabled(const DiagnosticInfo &DI) { // Optimization remarks are selective. They need to check whether the regexp // pattern, passed via one of the -pass-remarks* flags, matches the name of // the pass that is emitting the diagnostic. If there is no match, ignore the // diagnostic and return. switch (DI.getKind()) { case llvm::DK_OptimizationRemark: if (!cast<DiagnosticInfoOptimizationRemark>(DI).isEnabled()) return false; break; case llvm::DK_OptimizationRemarkMissed: if (!cast<DiagnosticInfoOptimizationRemarkMissed>(DI).isEnabled()) return false; break; case llvm::DK_OptimizationRemarkAnalysis: if (!cast<DiagnosticInfoOptimizationRemarkAnalysis>(DI).isEnabled()) return false; break; case llvm::DK_OptimizationRemarkAnalysisFPCommute: if (!cast<DiagnosticInfoOptimizationRemarkAnalysisFPCommute>(DI) .isEnabled()) return false; break; default: break; } return true; } static const char *getDiagnosticMessagePrefix(DiagnosticSeverity Severity) { switch (Severity) { case DS_Error: return "error"; case DS_Warning: return "warning"; case DS_Remark: return "remark"; case DS_Note: return "note"; } llvm_unreachable("Unknown DiagnosticSeverity"); } void LLVMContext::diagnose(const DiagnosticInfo &DI) { // If there is a report handler, use it. if (pImpl->DiagnosticHandler) { if (!pImpl->RespectDiagnosticFilters || isDiagnosticEnabled(DI)) pImpl->DiagnosticHandler(DI, pImpl->DiagnosticContext); return; } if (!isDiagnosticEnabled(DI)) return; // Otherwise, print the message with a prefix based on the severity. DiagnosticPrinterRawOStream DP(errs()); errs() << getDiagnosticMessagePrefix(DI.getSeverity()) << ": "; DI.print(DP); errs() << "\n"; if (DI.getSeverity() == DS_Error) exit(1); } void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) { diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr)); } //===----------------------------------------------------------------------===// // Metadata Kind Uniquing //===----------------------------------------------------------------------===// /// Return a unique non-zero ID for the specified metadata kind. unsigned LLVMContext::getMDKindID(StringRef Name) const { // If this is new, assign it its ID. return pImpl->CustomMDKindNames.insert( std::make_pair( Name, pImpl->CustomMDKindNames.size())) .first->second; } /// getHandlerNames - Populate client supplied smallvector using custome /// metadata name and ID. void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const { Names.resize(pImpl->CustomMDKindNames.size()); for (StringMap<unsigned>::const_iterator I = pImpl->CustomMDKindNames.begin(), E = pImpl->CustomMDKindNames.end(); I != E; ++I) Names[I->second] = I->first(); }
[ "peterdfinn@icloud.com" ]
peterdfinn@icloud.com
cea6acc31ff0cb598557f1afea1370d48ea45e6b
79df194df80c72c9d5970131093aed07c41a2304
/C++lff/数据结构实验一:准备/1-1/employee1/employee_test.cpp
037a6cba6b6eb4c5ff6935185179891de26c81bd
[]
no_license
JinMinghan18/CppSpace
000ebf3efaa2144d4d3ab2d32d14a058b8d49db7
09cea33827fc158c5a08720bde49dadc3faaf1eb
refs/heads/master
2023-01-30T18:33:45.401555
2020-12-13T09:56:48
2020-12-13T09:56:48
243,592,202
0
0
null
null
null
null
GB18030
C++
false
false
740
cpp
#include"employee.cpp" #include<iostream> using namespace std; int main() { employee emp[4]; mystring namestr; //输入雇员姓名时首先临时存放在namestr中 float pa; int grade, i; for (i=0; i<4; i++) { cout<<"请输下一个雇员的姓名:"; cin>>namestr; emp[i].SetName(namestr); //设置雇员emp[i]的姓名 cout<<"请输入雇员的月薪:"; cin>> pa; emp[i]. SetaccumPay (pa); //设置emp[i]的月薪 cout<<"请输入雇员的提升级别:"; cin>>grade; emp[i].promote(grade); // emp[i]升级 } //显示信息 for (i=0; i<4; i++) { cout<< emp[i].GetName()<<"编号"<< emp[i].GetindividualEmpNo() <<"级别为"<< emp[i].Getgrade()<<"级,本月工资"<< emp[i].GetaccumPay()<<endl; } }
[ "1099461301@qq.com" ]
1099461301@qq.com
3cf61b35e736b3882ee7697ef858eaaa743d126e
8291fc32d222d7cd8f4ff8cd3179ce63181cafdc
/cpp_module_01/ex03/ZombieHorde.hpp
0c1b272f5bb046422ecc1ba9d21998bce1027b27
[]
no_license
FrenkenFlores/CPP_Module
d09d5b15ee79053c2d817492e9b9102fb0b56078
8d9458cb02bd2c4e67febe9df46d502772e6d627
refs/heads/main
2023-04-10T08:11:56.738638
2021-04-14T22:22:41
2021-04-14T22:22:41
344,802,483
0
0
null
null
null
null
UTF-8
C++
false
false
1,180
hpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ZombieHorde.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fflores <fflores@student.21-school.ru> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/03/16 09:00:31 by fflores #+# #+# */ /* Updated: 2021/03/16 15:33:27 by fflores ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HORDE_HPP #define ZOMBIE_HORDE_HPP #include <string> #include "Zombie.hpp" class ZombieHorde { public: ZombieHorde( int N ); ~ZombieHorde(); void announce(); int getNumber(); Zombie *getZombies(); private: Zombie *_zombies; int _number; }; #endif
[ "saifualdin.evloev@gmail.com" ]
saifualdin.evloev@gmail.com
6e797c4b35b3daff3707e892225db0e400df83c2
77fd7d002253b3911bfa2ae706210d2b4760b0fd
/Source/TheCreatorsMind/Mirroring/ChildCapture.cpp
d0f6c1c45fa9cf2402613c0204b015d4863b87c4
[]
no_license
DarkXieon/TheCreatorsMind
75eec5e5ef52e86c10a6f53255c8528be3b5b2f3
fc46c219a19c1b23b055c9f55fcca39324cf944a
refs/heads/master
2020-06-04T19:09:13.311254
2019-06-16T06:53:03
2019-06-16T06:53:03
192,157,746
0
0
null
null
null
null
UTF-8
C++
false
false
1,701
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "ChildCapture.h" #include "Engine/SceneCapture2D.h" #include "Components/SceneCaptureComponent2D.h" // Sets default values for this component's properties UChildCapture::UChildCapture() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to improve performance if you don't need them. PrimaryComponentTick.bCanEverTick = false; SetChildActorClass(ASceneCapture2D::StaticClass()); bEditableWhenInherited = true; bAllowReregistration = false; bReplicates = false; // ... } // Called when the game starts void UChildCapture::BeginPlay() { Super::BeginPlay(); // ... } void UChildCapture::OnRegister() { Super::OnRegister(); FVector Location(0.0f, 0.0f, 0.5f); FRotator Rotation(90.0f, 0.0f, -90.0f); FVector Scale(0.2f, 0.2f, 1.0f); FTransform Transform(Rotation, Location, Scale); SetRelativeTransform(Transform); //CaptureComponent2D = ((ASceneCapture2D*)GetChildActor())->GetCaptureComponent2D(); if (RenderTexture) { ASceneCapture2D* CaptureActor2D = (ASceneCapture2D*)GetChildActor(); USceneCaptureComponent2D* CaptureComponent2D = CaptureActor2D->GetCaptureComponent2D(); CaptureComponent2D->TextureTarget = RenderTexture; CaptureComponent2D->bCaptureEveryFrame = true; CaptureComponent2D->bCaptureOnMovement = true; } UE_LOG(LogTemp, Warning, TEXT("Registered")); } // Called every frame void UChildCapture::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) { Super::TickComponent(DeltaTime, TickType, ThisTickFunction); // ... }
[ "andrewkausy@gmail.com" ]
andrewkausy@gmail.com
0e2593a624caa3af5432c2486031f8ef2e0a8d67
01e013db1632e0302ae9f4ba3b5cee5e6782b1ac
/Actuator/actuator_seeed_quadruple/actuator_seeed_quadruple.ino
a205b16ed9de1e161aceb3fc4fac93d6390f79c6
[]
no_license
seihan/feetback
8c9e2fed2bf5b2b812370a2870428f5be4dc90cf
f077655bf3d8c1d7e88cf85f50a4c7dc81725845
refs/heads/master
2022-10-14T01:54:33.071320
2021-10-12T16:17:28
2021-10-12T16:31:28
96,529,175
1
1
null
null
null
null
UTF-8
C++
false
false
10,780
ino
/********************************************************************* This is an example for our nRF52 based Bluefruit LE modules Pick one up today in the adafruit shop! Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! MIT license, check LICENSE for more information All text above, and the splash screen below must be included in any redistribution *********************************************************************/ /* This sketch demonstrates the central API() that allows you to connect to multiple peripherals boards (Bluefruit nRF52 in peripheral mode, or any Bluefruit nRF51 boards). One or more Bluefruit boards, configured as a peripheral with the bleuart service running are required for this demo. This sketch will: - Read data from the HW serial port (normally USB serial, accessible via the Serial Monitor for example), and send any incoming data to all other peripherals connected to the central device. - Forward any incoming bleuart messages from a peripheral to all of the other connected devices. It is recommended to give each peripheral board a distinct name in order to more easily distinguish the individual devices. Connection Handle Explanation ----------------------------- The total number of connections is BLE_MAX_CONN = BLE_PRPH_MAX_CONN + BLE_CENTRAL_MAX_CONN. The 'connection handle' is an integer number assigned by the SoftDevice (Nordic's proprietary BLE stack). Each connection will receive it's own numeric 'handle' starting from 0 to BLE_MAX_CONN-1, depending on the order of connection(s). - E.g If our Central board connects to a mobile phone first (running as a peripheral), then afterwards connects to another Bluefruit board running in peripheral mode, then the connection handle of mobile phone is 0, and the handle for the Bluefruit board is 1, and so on. */ /* LED PATTERNS ------------ LED_RED - Blinks pattern changes based on the number of connections. LED_BLUE - Blinks constantly when scanning */ #include <bluefruit.h> // Struct containing peripheral info typedef struct { char name[32]; uint16_t conn_handle; // Each prph need its own bleuart client service BLEClientUart bleuart; } prph_info_t; /* Peripheral info array (one per peripheral device) There are 'BLE_CENTRAL_MAX_CONN' central connections, but the the connection handle can be numerically larger (for example if the peripheral role is also used, such as connecting to a mobile device). As such, we need to convert connection handles <-> the array index where appropriate to prevent out of array accesses. Note: One can simply declares the array with BLE_MAX_CONN and use connection handle as index directly with the expense of SRAM. */ prph_info_t prphs[BLE_CENTRAL_MAX_CONN]; //BLEClientUart bleuart; char sender[1] = {}; char buf[22 + 1] = { 0 }; // Software Timer for blinking the RED LED SoftwareTimer blinkTimer; uint8_t connection_num = 0; // for blink pattern int outputpins[ 4 ] = { 2, 3, 4, 5 }; void setup() { Serial.begin(115200); // while ( !Serial ) delay(10); // for nrf52840 with native usb // Initialize blinkTimer for 100 ms and start it blinkTimer.begin(100, blink_timer_callback); blinkTimer.start(); Serial.println("Bluefruit52 Central Multi BLEUART Example"); Serial.println("-----------------------------------------\n"); // Initialize Bluefruit with max concurrent connections as Peripheral = 1, Central = 1 // SRAM usage required by SoftDevice will increase with number of connections Bluefruit.begin(0, 2); // Set Name Bluefruit.setName("Bluefruit52 Central"); // Init peripheral pool for (uint8_t idx = 0; idx < BLE_CENTRAL_MAX_CONN; idx++) { // Invalid all connection handle prphs[idx].conn_handle = BLE_CONN_HANDLE_INVALID; // All of BLE Central Uart Serivce prphs[idx].bleuart.begin(); prphs[idx].bleuart.setRxCallback(bleuart_rx_callback); } // Callbacks for Central Bluefruit.Central.setConnectCallback(connect_callback); Bluefruit.Central.setDisconnectCallback(disconnect_callback); /* Start Central Scanning - Enable auto scan if disconnected - Interval = 100 ms, window = 80 ms - Filter only accept bleuart service in advertising - Don't use active scan (used to retrieve the optional scan response adv packet) - Start(0) = will scan forever since no timeout is given */ Bluefruit.Scanner.setRxCallback(scan_callback); Bluefruit.Scanner.restartOnDisconnect(true); Bluefruit.Scanner.setInterval(160, 80); // in units of 0.625 ms Bluefruit.Scanner.filterUuid(BLEUART_UUID_SERVICE); Bluefruit.Scanner.useActiveScan(false); // Don't request scan response data Bluefruit.Scanner.start(0); // 0 = Don't stop scanning after n seconds } /** Callback invoked when scanner picks up an advertising packet @param report Structural advertising data */ void scan_callback(ble_gap_evt_adv_report_t* report) { // Since we configure the scanner with filterUuid() // Scan callback only invoked for device with bleuart service advertised // Connect to the device with bleuart service in advertising packet Bluefruit.Central.connect(report); } /** Callback invoked when an connection is established @param conn_handle */ void connect_callback(uint16_t conn_handle) { // Find an available ID to use int id = findConnHandle(BLE_CONN_HANDLE_INVALID); // Eeek: Exceeded the number of connections !!! if ( id < 0 ) return; prph_info_t* peer = &prphs[id]; peer->conn_handle = conn_handle; Bluefruit.Gap.getPeerName(conn_handle, peer->name, 32); Serial.print("Connected to "); Serial.println(peer->name); Serial.print("Discovering BLE UART service ... "); if ( peer->bleuart.discover(conn_handle) ) { Serial.println("Found it"); Serial.println("Enabling TXD characteristic's CCCD notify bit"); peer->bleuart.enableTXD(); Serial.println("Continue scanning for more peripherals"); Bluefruit.Scanner.start(0); Serial.println("Enter some text in the Serial Monitor to send it to all connected peripherals:"); } else { Serial.println("Found ... NOTHING!"); // disconect since we couldn't find bleuart service Bluefruit.Central.disconnect(conn_handle); } connection_num++; } /** Callback invoked when a connection is dropped @param conn_handle @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h */ void disconnect_callback(uint16_t conn_handle, uint8_t reason) { (void) conn_handle; (void) reason; connection_num--; // Mark the ID as invalid int id = findConnHandle(conn_handle); // Non-existant connection, something went wrong, DBG !!! if ( id < 0 ) return; // Mark conn handle as invalid prphs[id].conn_handle = BLE_CONN_HANDLE_INVALID; Serial.print(prphs[id].name); Serial.println(" disconnected!"); } /** Callback invoked when BLE UART data is received @param uart_svc Reference object to the service where the data arrived. */ void bleuart_rx_callback(BLEClientUart& bleuart) { // uart_svc is prphs[conn_handle].bleuart uint16_t conn_handle = bleuart.connHandle(); int id = findConnHandle(conn_handle); prph_info_t* peer = &prphs[id]; // Print sender's name // Serial.printf("[From %s]: ", peer->name); // Read then forward to all peripherals while ( bleuart.available() ) { //int bytesread = 0; sender[ 0 ] = peer->name[ 0 ]; if ( bleuart.read(buf, sizeof(buf) - 1) ) {} // Serial.println(buf); } } /** Helper function to send a string to all connected peripherals */ void sendAll(const char* str) { Serial.print("[Send to All]: "); Serial.println(str); for (uint8_t id = 0; id < BLE_CENTRAL_MAX_CONN; id++) { prph_info_t* peer = &prphs[id]; if ( peer->bleuart.discovered() ) { peer->bleuart.print(str); } } } void loop() { // First check if we are connected to any peripherals if ( Bluefruit.Central.connected() ) { int values[ 2 ] = {0, 0}; values[ 0 ] = atoi(strtok(buf, ";:,")); values[ 1 ] = atoi(strtok(NULL, ";:,")); switch ( sender[ 0 ] ) { case 'L' : if ( (values[ 0 ] > 0) && (values[ 1 ] > 0) ) { Serial.println("From Left: " + String(values[ 0 ]) + "\t" + String(values[ 1 ])); } if ( (values[ 0 ] > 0) { analogWrite(outputpins[ 0 ], map(values[ 0 ], 0, 4095, 0, 255)); } if ( (values[ 1 ] > 0) { analogWrite(outputpins[ 1 ], map(values[ 0 ], 0, 4095, 0, 255)); } break; case 'R' : if ( (values[ 0 ] > 0) && (values[ 1 ] > 0) ) { Serial.println("From Right: " + String(values[ 0 ]) + "\t" + String(values[ 1 ])); } if ( (values[ 0 ] > 0) { analogWrite(outputpins[ 2 ], map(values[ 0 ], 0, 4095, 0, 255)); } if ( (values[ 1 ] > 0) { analogWrite(outputpins[ 3 ], map(values[ 0 ], 0, 4095, 0, 255)); } break; default : break; } // Serial.println(buf); // Serial.println(String(values[ 0 ]) + "\t" + String(values[ 1 ])); //sendAll(buf); // Read from HW Serial (normally USB Serial) and send to all peripherals //if ( Serial.readBytes(buf, sizeof(buf) - 1) ) //{ // sendAll(buf); // } } } /** Find the connection handle in the peripheral array @param conn_handle Connection handle @return array index if found, otherwise -1 */ int findConnHandle(uint16_t conn_handle) { for (int id = 0; id < BLE_CENTRAL_MAX_CONN; id++) { if (conn_handle == prphs[id].conn_handle) { return id; } } return -1; } /** Software Timer callback is invoked via a built-in FreeRTOS thread with minimal stack size. Therefore it should be as simple as possible. If a periodically heavy task is needed, please use Scheduler.startLoop() to create a dedicated task for it. More information http://www.freertos.org/RTOS-software-timer.html */ void blink_timer_callback(TimerHandle_t xTimerID) { (void) xTimerID; // Period of sequence is 10 times (1 second). // RED LED will toggle first 2*n times (on/off) and remain off for the rest of period // Where n = number of connection static uint8_t count = 0; if ( count < 2 * connection_num ) digitalToggle(LED_RED); if ( count % 2 && digitalRead(LED_RED)) digitalWrite(LED_RED, LOW); // issue #98 count++; if (count >= 10) count = 0; }
[ "greenredact@gmail.com" ]
greenredact@gmail.com
00ff40f01a5c3f4c415d21375fa2d320c2c27ab3
09a4962b93c196f2f8a70c2384757142793612fd
/Dripdoctors/build/Android/Debug/Dripdoctors/app/src/main/jni/Fuse.Motion.g.cpp
e86ce65ce53d3c87f5c4ef5c0857a492fa1a97c0
[]
no_license
JimmyRodriguez/apps-fuse
169779ff2827a6e35be91d9ff17e0c444ba7f8cd
14114328c3cea08c1fd766bf085bbf5a67f698ae
refs/heads/master
2020-12-03T09:25:26.566750
2016-09-24T14:24:49
2016-09-24T14:24:49
65,154,944
0
0
null
null
null
null
UTF-8
C++
false
false
22,426
cpp
// This file was generated based on '(multiple files)'. // WARNING: Changes might be lost if you edit this file directly. #include <Fuse.Animations.Easing.h> #include <Fuse.Diagnostics.h> #include <Fuse.Motion.DestinationMotion-1.h> #include <Fuse.Motion.MotionConfig.h> #include <Fuse.Motion.MotionDestinationType.h> #include <Fuse.Motion.MotionUnit.h> #include <Fuse.Motion.NavigationMotion.h> #include <Fuse.Motion.OverflowType.h> #include <Fuse.Motion.ScrollViewMotion.h> #include <Fuse.Motion.Simulation.AdapterMultiplier-1.h> #include <Fuse.Motion.Simulation.AngularAdapter-1.h> #include <Fuse.Motion.Simulation.BasicBoundedRegion2D.h> #include <Fuse.Motion.Simulation.BoundedRegion2D.h> #include <Fuse.Motion.Simulation.DestinationSimulation-1.h> #include <Fuse.Motion.Simulation.EasingMotion-1.h> #include <Fuse.Motion.Simulation.ElasticForce-1.h> #include <Fuse.Motion.Simulation.Friction-1.h> #include <Fuse.Motion.Simulation.MotionSimulation-1.h> #include <Fuse.Motion.Simulation.SmoothSnap-1.h> #include <Uno.Bool.h> #include <Uno.Double.h> #include <Uno.Float.h> #include <Uno.Float2.h> #include <Uno.Int.h> #include <Uno.Math.h> #include <Uno.String.h> static uString* STRINGS[3]; static uType* TYPES[12]; namespace g{ namespace Fuse{ namespace Motion{ // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public sealed class DestinationMotion<T> :243 // { static void DestinationMotion_build(uType* type) { ::STRINGS[0] = uString::Const("Invalidate simulation type: "); ::STRINGS[1] = uString::Const("C:\\ProgramData\\Uno\\Packages\\Fuse.Motion\\0.32.14\\$.uno"); ::STRINGS[2] = uString::Const("Create"); ::TYPES[0] = ::g::Uno::Int_typeof(); ::TYPES[1] = ::g::Fuse::Motion::Simulation::EasingMotion_typeof(); ::TYPES[2] = ::g::Fuse::Motion::Simulation::DestinationSimulation_typeof(); ::TYPES[3] = ::g::Fuse::Motion::Simulation::ElasticForce_typeof(); ::TYPES[4] = ::g::Fuse::Motion::Simulation::SmoothSnap_typeof(); ::TYPES[5] = uObject_typeof(); ::TYPES[6] = ::g::Fuse::Motion::Simulation::AngularAdapter_typeof(); ::TYPES[7] = ::g::Fuse::Motion::Simulation::AdapterMultiplier_typeof(); type->SetPrecalc( ::g::Fuse::Motion::Simulation::EasingMotion_typeof()->MakeType(type->T(0)), ::g::Fuse::Motion::Simulation::DestinationSimulation_typeof()->MakeType(type->T(0)), ::g::Fuse::Motion::Simulation::ElasticForce_typeof()->MakeType(type->T(0)), ::g::Fuse::Motion::Simulation::SmoothSnap_typeof()->MakeType(type->T(0)), ::g::Fuse::Motion::Simulation::AngularAdapter_typeof()->MakeType(type->T(0)), ::g::Fuse::Motion::Simulation::AdapterMultiplier_typeof()->MakeType(type->T(0))); type->SetFields(0, ::g::Uno::Float_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _distance), 0, ::g::Uno::Float_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _duration), 0, ::g::Uno::Float_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _durationExp), 0, ::g::Fuse::Animations::Easing_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _easing), 0, ::g::Uno::Bool_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _explicitType), 0, ::g::Uno::Bool_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _hasDistance), 0, ::g::Uno::Bool_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _hasDuration), 0, ::g::Fuse::Motion::MotionDestinationType_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _type), 0, ::g::Fuse::Motion::MotionUnit_typeof(), offsetof(::g::Fuse::Motion::DestinationMotion, _unit), 0); } uType* DestinationMotion_typeof() { static uSStrong<uType*> type; if (type != NULL) return type; uTypeOptions options; options.FieldCount = 9; options.GenericCount = 1; options.PrecalcCount = 6; options.ObjectSize = sizeof(DestinationMotion); options.TypeSize = sizeof(uType); type = uClassType::New("Fuse.Motion.DestinationMotion`1", options); type->fp_build_ = DestinationMotion_build; type->fp_ctor_ = (void*)DestinationMotion__New1_fn; return type; } // public generated DestinationMotion() :243 void DestinationMotion__ctor__fn(DestinationMotion* __this) { __this->ctor_(); } // internal Fuse.Motion.Simulation.DestinationSimulation<T> Create() :350 void DestinationMotion__Create_fn(DestinationMotion* __this, uObject** __retval) { *__retval = __this->Create(); } // public float get_Distance() :342 void DestinationMotion__get_Distance_fn(DestinationMotion* __this, float* __retval) { *__retval = __this->Distance(); } // public void set_Distance(float value) :343 void DestinationMotion__set_Distance_fn(DestinationMotion* __this, float* value) { __this->Distance(*value); } // public float get_Duration() :292 void DestinationMotion__get_Duration_fn(DestinationMotion* __this, float* __retval) { *__retval = __this->Duration(); } // public void set_Duration(float value) :293 void DestinationMotion__set_Duration_fn(DestinationMotion* __this, float* value) { __this->Duration(*value); } // public float get_DurationExp() :309 void DestinationMotion__get_DurationExp_fn(DestinationMotion* __this, float* __retval) { *__retval = __this->DurationExp(); } // public void set_DurationExp(float value) :310 void DestinationMotion__set_DurationExp_fn(DestinationMotion* __this, float* value) { __this->DurationExp(*value); } // public Fuse.Animations.Easing get_Easing() :271 void DestinationMotion__get_Easing_fn(DestinationMotion* __this, int* __retval) { *__retval = __this->Easing(); } // public void set_Easing(Fuse.Animations.Easing value) :272 void DestinationMotion__set_Easing_fn(DestinationMotion* __this, int* value) { __this->Easing(*value); } // public generated DestinationMotion New() :243 void DestinationMotion__New1_fn(uType* __type, DestinationMotion** __retval) { *__retval = DestinationMotion::New1(__type); } // public Fuse.Motion.MotionDestinationType get_Type() :254 void DestinationMotion__get_Type_fn(DestinationMotion* __this, int* __retval) { *__retval = __this->Type(); } // public void set_Type(Fuse.Motion.MotionDestinationType value) :255 void DestinationMotion__set_Type_fn(DestinationMotion* __this, int* value) { __this->Type(*value); } // public Fuse.Motion.MotionUnit get_Unit() :325 void DestinationMotion__get_Unit_fn(DestinationMotion* __this, int* __retval) { *__retval = __this->Unit(); } // public void set_Unit(Fuse.Motion.MotionUnit value) :326 void DestinationMotion__set_Unit_fn(DestinationMotion* __this, int* value) { __this->Unit(*value); } // public generated DestinationMotion() [instance] :243 void DestinationMotion::ctor_() { _type = 1; _easing = 15; _duration = 0.5f; _durationExp = 0.5f; _distance = 1000.0f; } // internal Fuse.Motion.Simulation.DestinationSimulation<T> Create() [instance] :350 uObject* DestinationMotion::Create() { uType* __types[] = { __type->Precalced(0/*Fuse.Motion.Simulation.EasingMotion<T>*/), __type->T(0), __type->Precalced(1/*Fuse.Motion.Simulation.DestinationSimulation<T>*/), __type->Precalced(2/*Fuse.Motion.Simulation.ElasticForce<T>*/), __type->Precalced(3/*Fuse.Motion.Simulation.SmoothSnap<T>*/), __type->Precalced(4/*Fuse.Motion.Simulation.AngularAdapter<T>*/), __type->Precalced(5/*Fuse.Motion.Simulation.AdapterMultiplier<T>*/), }; int effectiveUnit = Unit(); float multiplier = 1.0f; if (effectiveUnit == 3) { effectiveUnit = 2; multiplier = ::g::Uno::Math::DegreesToRadians1(1.0f); } uObject* dest; switch (Type()) { case 0: { ::g::Fuse::Motion::Simulation::EasingMotion* q = (::g::Fuse::Motion::Simulation::EasingMotion*)::g::Fuse::Motion::Simulation::EasingMotion::CreateUnit(__types[0], effectiveUnit); uPtr(q)->Easing(Easing()); q->DurationExp(DurationExp()); if (_hasDuration) uPtr(q)->Duration(Duration()); if (_hasDistance) uPtr(q)->NominalDistance(Distance() * multiplier); dest = (uObject*)q; break; } case 1: { ::g::Fuse::Motion::Simulation::ElasticForce* q1 = (::g::Fuse::Motion::Simulation::ElasticForce*)::g::Fuse::Motion::Simulation::ElasticForce::CreateUnit(__types[3], effectiveUnit); dest = (uObject*)q1; break; } case 2: { ::g::Fuse::Motion::Simulation::SmoothSnap* q2 = (::g::Fuse::Motion::Simulation::SmoothSnap*)::g::Fuse::Motion::Simulation::SmoothSnap::CreateUnit(__types[4], effectiveUnit); if (_hasDistance) uPtr(q2)->SpeedDropoutDistance(Distance() * multiplier); if (_hasDuration) uPtr(q2)->SetDuration(Duration()); dest = (uObject*)q2; break; } default: { ::g::Fuse::Diagnostics::UserError(::g::Uno::String::op_Addition1(::STRINGS[0/*"Invalidate ...*/], uBox<int>(::g::Fuse::Motion::MotionDestinationType_typeof(), Type())), this, ::STRINGS[1/*"C:\\Program...*/], 397, ::STRINGS[2/*"Create"*/]); dest = (uObject*)((::g::Fuse::Motion::Simulation::ElasticForce*)::g::Fuse::Motion::Simulation::ElasticForce::CreateNormalized(__types[3])); break; } } if ((Unit() == 2) || (Unit() == 3)) dest = (uObject*)((::g::Fuse::Motion::Simulation::AngularAdapter*)::g::Fuse::Motion::Simulation::AngularAdapter::New1(__types[5], dest)); if (multiplier != 1.0f) dest = (uObject*)((::g::Fuse::Motion::Simulation::AdapterMultiplier*)::g::Fuse::Motion::Simulation::AdapterMultiplier::New1(__types[6], dest, (double)multiplier)); return dest; } // public float get_Distance() [instance] :342 float DestinationMotion::Distance() { return _distance; } // public void set_Distance(float value) [instance] :343 void DestinationMotion::Distance(float value) { _distance = value; _hasDistance = true; } // public float get_Duration() [instance] :292 float DestinationMotion::Duration() { return _duration; } // public void set_Duration(float value) [instance] :293 void DestinationMotion::Duration(float value) { _duration = value; _hasDuration = true; } // public float get_DurationExp() [instance] :309 float DestinationMotion::DurationExp() { return _durationExp; } // public void set_DurationExp(float value) [instance] :310 void DestinationMotion::DurationExp(float value) { _durationExp = value; } // public Fuse.Animations.Easing get_Easing() [instance] :271 int DestinationMotion::Easing() { return _easing; } // public void set_Easing(Fuse.Animations.Easing value) [instance] :272 void DestinationMotion::Easing(int value) { _easing = value; if (!_explicitType) _type = 0; } // public Fuse.Motion.MotionDestinationType get_Type() [instance] :254 int DestinationMotion::Type() { return _type; } // public void set_Type(Fuse.Motion.MotionDestinationType value) [instance] :255 void DestinationMotion::Type(int value) { if ((_type == value) && !_explicitType) return; _type = value; _explicitType = true; } // public Fuse.Motion.MotionUnit get_Unit() [instance] :325 int DestinationMotion::Unit() { return _unit; } // public void set_Unit(Fuse.Motion.MotionUnit value) [instance] :326 void DestinationMotion::Unit(int value) { _unit = value; } // public generated DestinationMotion New() [static] :243 DestinationMotion* DestinationMotion::New1(uType* __type) { DestinationMotion* obj1 = (DestinationMotion*)uNew(__type); obj1->ctor_(); return obj1; } // } // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public class MotionConfig :15 // { static void MotionConfig_build(uType* type) { ::TYPES[8] = ::g::Fuse::Motion::DestinationMotion_typeof()->MakeType(::g::Uno::Float2_typeof()); ::TYPES[9] = ::g::Fuse::Motion::Simulation::BoundedRegion2D_typeof(); ::TYPES[10] = ::g::Fuse::Motion::Simulation::MotionSimulation_typeof()->MakeType(::g::Uno::Float2_typeof()); ::TYPES[11] = ::g::Fuse::Motion::Simulation::Friction_typeof()->MakeType(::g::Uno::Float2_typeof()); type->SetFields(0, ::g::Fuse::Motion::DestinationMotion_typeof()->MakeType(::g::Uno::Float2_typeof()), offsetof(::g::Fuse::Motion::MotionConfig, _goto), 0, ::g::Fuse::Motion::Simulation::BasicBoundedRegion2D_typeof(), offsetof(::g::Fuse::Motion::MotionConfig, _impl), 0, ::g::Fuse::Motion::OverflowType_typeof(), offsetof(::g::Fuse::Motion::MotionConfig, _overflow), 0, ::g::Uno::Float2_typeof(), offsetof(::g::Fuse::Motion::MotionConfig, _overflowExtent), 0, ::g::Fuse::Motion::DestinationMotion_typeof()->MakeType(::g::Uno::Float2_typeof()), offsetof(::g::Fuse::Motion::MotionConfig, _snap), 0); } uType* MotionConfig_typeof() { static uSStrong<uType*> type; if (type != NULL) return type; uTypeOptions options; options.FieldCount = 5; options.ObjectSize = sizeof(MotionConfig); options.TypeSize = sizeof(uType); type = uClassType::New("Fuse.Motion.MotionConfig", options); type->fp_build_ = MotionConfig_build; return type; } // protected MotionConfig() :19 void MotionConfig__ctor__fn(MotionConfig* __this) { __this->ctor_(); } // internal Fuse.Motion.Simulation.BoundedRegion2D AcquireSimulation() :26 void MotionConfig__AcquireSimulation_fn(MotionConfig* __this, uObject** __retval) { *__retval = __this->AcquireSimulation(); } // private void CreateImpl() :176 void MotionConfig__CreateImpl_fn(MotionConfig* __this) { __this->CreateImpl(); } // public Fuse.Motion.DestinationMotion<float2> get_Goto() :46 void MotionConfig__get_Goto_fn(MotionConfig* __this, ::g::Fuse::Motion::DestinationMotion** __retval) { *__retval = __this->Goto(); } // public Fuse.Motion.OverflowType get_Overflow() :139 void MotionConfig__get_Overflow_fn(MotionConfig* __this, int* __retval) { *__retval = __this->Overflow(); } // public void set_Overflow(Fuse.Motion.OverflowType value) :140 void MotionConfig__set_Overflow_fn(MotionConfig* __this, int* value) { __this->Overflow(*value); } // public float2 get_OverflowExtent() :154 void MotionConfig__get_OverflowExtent_fn(MotionConfig* __this, ::g::Uno::Float2* __retval) { *__retval = __this->OverflowExtent(); } // public void set_OverflowExtent(float2 value) :155 void MotionConfig__set_OverflowExtent_fn(MotionConfig* __this, ::g::Uno::Float2* value) { __this->OverflowExtent(*value); } // internal void ReleaseSimulation() :35 void MotionConfig__ReleaseSimulation_fn(MotionConfig* __this) { __this->ReleaseSimulation(); } // public Fuse.Motion.DestinationMotion<float2> get_Snap() :90 void MotionConfig__get_Snap_fn(MotionConfig* __this, ::g::Fuse::Motion::DestinationMotion** __retval) { *__retval = __this->Snap(); } // public Fuse.Motion.MotionUnit get_Unit() :168 void MotionConfig__get_Unit_fn(MotionConfig* __this, int* __retval) { *__retval = __this->Unit(); } // public void set_Unit(Fuse.Motion.MotionUnit value) :169 void MotionConfig__set_Unit_fn(MotionConfig* __this, int* value) { __this->Unit(*value); } // protected MotionConfig() [instance] :19 void MotionConfig::ctor_() { _goto = ((::g::Fuse::Motion::DestinationMotion*)::g::Fuse::Motion::DestinationMotion::New1(::TYPES[8/*Fuse.Motion.DestinationMotion<float2>*/])); _snap = ((::g::Fuse::Motion::DestinationMotion*)::g::Fuse::Motion::DestinationMotion::New1(::TYPES[8/*Fuse.Motion.DestinationMotion<float2>*/])); _overflowExtent = ::g::Uno::Float2__New1(150.0f); } // internal Fuse.Motion.Simulation.BoundedRegion2D AcquireSimulation() [instance] :26 uObject* MotionConfig::AcquireSimulation() { CreateImpl(); return (uObject*)_impl; } // private void CreateImpl() [instance] :176 void MotionConfig::CreateImpl() { _impl = ::g::Fuse::Motion::Simulation::BasicBoundedRegion2D::New1(); uPtr(_impl)->DestinationSimulation((uObject*)uPtr(_goto)->Create()); uPtr(_impl)->SnapSimulation((uObject*)uPtr(_snap)->Create()); uPtr(_impl)->OverflowExtent(OverflowExtent()); uPtr(_impl)->Overflow(Overflow()); uPtr(_impl)->FrictionSimulation((uObject*)((::g::Fuse::Motion::Simulation::Friction*)::g::Fuse::Motion::Simulation::Friction::CreateUnit(::TYPES[11/*Fuse.Motion.Simulation.Friction<float2>*/], Unit()))); } // public Fuse.Motion.DestinationMotion<float2> get_Goto() [instance] :46 ::g::Fuse::Motion::DestinationMotion* MotionConfig::Goto() { return _goto; } // public Fuse.Motion.OverflowType get_Overflow() [instance] :139 int MotionConfig::Overflow() { return _overflow; } // public void set_Overflow(Fuse.Motion.OverflowType value) [instance] :140 void MotionConfig::Overflow(int value) { _overflow = value; if (_impl != NULL) uPtr(_impl)->Overflow(_overflow); } // public float2 get_OverflowExtent() [instance] :154 ::g::Uno::Float2 MotionConfig::OverflowExtent() { return _overflowExtent; } // public void set_OverflowExtent(float2 value) [instance] :155 void MotionConfig::OverflowExtent(::g::Uno::Float2 value) { _overflowExtent = value; if (_impl != NULL) uPtr(_impl)->OverflowExtent(_overflowExtent); } // internal void ReleaseSimulation() [instance] :35 void MotionConfig::ReleaseSimulation() { _impl = NULL; } // public Fuse.Motion.DestinationMotion<float2> get_Snap() [instance] :90 ::g::Fuse::Motion::DestinationMotion* MotionConfig::Snap() { return _snap; } // public Fuse.Motion.MotionUnit get_Unit() [instance] :168 int MotionConfig::Unit() { return uPtr(_goto)->Unit(); } // public void set_Unit(Fuse.Motion.MotionUnit value) [instance] :169 void MotionConfig::Unit(int value) { uPtr(_goto)->Unit(value); uPtr(_snap)->Unit(value); } // } // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public enum MotionDestinationType :438 uEnumType* MotionDestinationType_typeof() { static uSStrong<uEnumType*> type; if (type != NULL) return type; type = uEnumType::New("Fuse.Motion.MotionDestinationType", ::g::Uno::Int_typeof(), 3); type->SetLiterals( "Easing", 0LL, "Elastic", 1LL, "SmoothSnap", 2LL); return type; } // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public enum MotionUnit :451 uEnumType* MotionUnit_typeof() { static uSStrong<uEnumType*> type; if (type != NULL) return type; type = uEnumType::New("Fuse.Motion.MotionUnit", ::g::Uno::Int_typeof(), 4); type->SetLiterals( "Points", 0LL, "Normalized", 1LL, "Radians", 2LL, "Degrees", 3LL); return type; } // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public sealed class NavigationMotion :191 // { static void NavigationMotion_build(uType* type) { type->SetFields(5); } uType* NavigationMotion_typeof() { static uSStrong<uType*> type; if (type != NULL) return type; uTypeOptions options; options.FieldCount = 5; options.ObjectSize = sizeof(NavigationMotion); options.TypeSize = sizeof(uType); type = uClassType::New("Fuse.Motion.NavigationMotion", options); type->SetBase(::g::Fuse::Motion::MotionConfig_typeof()); type->fp_build_ = NavigationMotion_build; type->fp_ctor_ = (void*)NavigationMotion__New2_fn; return type; } // public NavigationMotion() :193 void NavigationMotion__ctor_1_fn(NavigationMotion* __this) { __this->ctor_1(); } // public NavigationMotion New() :193 void NavigationMotion__New2_fn(NavigationMotion** __retval) { *__retval = NavigationMotion::New2(); } // public NavigationMotion() [instance] :193 void NavigationMotion::ctor_1() { ctor_(); Unit(1); uPtr(Goto())->_type = 0; uPtr(Goto())->_easing = 15; Overflow(1); OverflowExtent(::g::Uno::Float2__New1(0.25f)); } // public NavigationMotion New() [static] :193 NavigationMotion* NavigationMotion::New2() { NavigationMotion* obj1 = (NavigationMotion*)uNew(NavigationMotion_typeof()); obj1->ctor_1(); return obj1; } // } // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public enum OverflowType :425 uEnumType* OverflowType_typeof() { static uSStrong<uEnumType*> type; if (type != NULL) return type; type = uEnumType::New("Fuse.Motion.OverflowType", ::g::Uno::Int_typeof(), 3); type->SetLiterals( "Open", 0LL, "Clamp", 1LL, "Elastic", 2LL); return type; } // C:\ProgramData\Uno\Packages\Fuse.Motion\0.32.14\$.uno // ----------------------------------------------------- // public sealed class ScrollViewMotion :210 // { static void ScrollViewMotion_build(uType* type) { type->SetFields(5); } uType* ScrollViewMotion_typeof() { static uSStrong<uType*> type; if (type != NULL) return type; uTypeOptions options; options.FieldCount = 5; options.ObjectSize = sizeof(ScrollViewMotion); options.TypeSize = sizeof(uType); type = uClassType::New("Fuse.Motion.ScrollViewMotion", options); type->SetBase(::g::Fuse::Motion::MotionConfig_typeof()); type->fp_build_ = ScrollViewMotion_build; type->fp_ctor_ = (void*)ScrollViewMotion__New2_fn; return type; } // public ScrollViewMotion() :212 void ScrollViewMotion__ctor_1_fn(ScrollViewMotion* __this) { __this->ctor_1(); } // public ScrollViewMotion New() :212 void ScrollViewMotion__New2_fn(ScrollViewMotion** __retval) { *__retval = ScrollViewMotion::New2(); } // public ScrollViewMotion() [instance] :212 void ScrollViewMotion::ctor_1() { ctor_(); Unit(0); uPtr(Goto())->_type = 1; uPtr(Snap())->_type = 2; Overflow(2); OverflowExtent(::g::Uno::Float2__New1(150.0f)); } // public ScrollViewMotion New() [static] :212 ScrollViewMotion* ScrollViewMotion::New2() { ScrollViewMotion* obj1 = (ScrollViewMotion*)uNew(ScrollViewMotion_typeof()); obj1->ctor_1(); return obj1; } // } }}} // ::g::Fuse::Motion
[ "jimmy_sidney@hotmail.es" ]
jimmy_sidney@hotmail.es
ad1394d207ddadddbfdc27f8fbea86eceee3cc6e
cc101430055a9b2776c88df499651ee0148852b8
/src/text_shaper/directwrite_shaper.cpp
b787eaba44f175e059bb083d06ef03eeb9e7bffe
[ "Apache-2.0" ]
permissive
GoldsteinE/contour
76feefbc723dfa91c3bde4f6f6df78205f6fc4d5
a828b50b4024c692b3ff60dc38e0bdae36aac300
refs/heads/master
2023-06-04T01:58:18.946822
2021-06-28T17:36:30
2021-06-28T17:36:30
381,095,209
0
0
Apache-2.0
2021-06-28T16:25:28
2021-06-28T16:25:27
null
UTF-8
C++
false
false
11,828
cpp
#include <text_shaper/directwrite_shaper.h> #include <crispy/debuglog.h> #include <algorithm> #include <string> // {{{ TODO: replace with libunicode #include <codecvt> #include <locale> // }}} #include <wrl/client.h> #include <dwrite.h> #include <dwrite_3.h> #include <iostream> // DEBUGGING ONLY using Microsoft::WRL::ComPtr; using std::max; using std::make_unique; using std::move; using std::nullopt; using std::optional; using std::pair; using std::wstring; namespace text { namespace { font_weight dwFontWeight(int _weight) { switch (_weight) { case DWRITE_FONT_WEIGHT_THIN: return font_weight::thin; case DWRITE_FONT_WEIGHT_EXTRA_LIGHT: return font_weight::extra_light; case DWRITE_FONT_WEIGHT_LIGHT: return font_weight::light; case DWRITE_FONT_WEIGHT_SEMI_LIGHT: return font_weight::demilight; case DWRITE_FONT_WEIGHT_REGULAR: return font_weight::normal; // XXX What about font_weight::book (which does exist via fontconfig)? case DWRITE_FONT_WEIGHT_MEDIUM: return font_weight::medium; case DWRITE_FONT_WEIGHT_DEMI_BOLD: return font_weight::demibold; case DWRITE_FONT_WEIGHT_BOLD: return font_weight::bold; case DWRITE_FONT_WEIGHT_EXTRA_BOLD: return font_weight::extra_bold; case DWRITE_FONT_WEIGHT_BLACK: return font_weight::black; case DWRITE_FONT_WEIGHT_EXTRA_BLACK: return font_weight::extra_black; default: // TODO: the others break; } return font_weight::normal; // TODO: rename normal to regular } font_slant dwFontSlant(int _style) { switch (_style) { case DWRITE_FONT_STYLE_NORMAL: return font_slant::normal; case DWRITE_FONT_STYLE_ITALIC: return font_slant::italic; case DWRITE_FONT_STYLE_OBLIQUE: return font_slant::oblique; } return font_slant::normal; } } struct FontInfo { font_description description; font_size size; font_metrics metrics; int fontUnitsPerEm; ComPtr<IDWriteFont3> font; ComPtr<IDWriteFontFace5> fontFace; }; struct directwrite_shaper::Private { ComPtr<IDWriteFactory7> factory; crispy::Point dpi_; std::wstring userLocale; std::unordered_map<font_key, FontInfo> fonts; font_key nextFontKey; Private(crispy::Point _dpi) : dpi_{ _dpi } { auto hr = DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory7), reinterpret_cast<IUnknown**>(factory.GetAddressOf())); wchar_t locale[LOCALE_NAME_MAX_LENGTH]; GetUserDefaultLocaleName(locale, sizeof(locale)); userLocale = locale; } font_key create_font_key() { auto result = nextFontKey; nextFontKey.value++; return result; } int computeAverageAdvance(IDWriteFontFace* _fontFace) { auto constexpr firstCharIndex = UINT16{32}; auto constexpr lastCharIndex = UINT16{127}; auto constexpr charCount = lastCharIndex - firstCharIndex + 1; UINT32 codePoints[charCount]{}; for (UINT16 i = 0; i < charCount; i++) codePoints[i] = firstCharIndex + i; UINT16 glyphIndices[charCount]{}; _fontFace->GetGlyphIndicesA(codePoints, charCount, glyphIndices); DWRITE_GLYPH_METRICS dwGlyphMetrics[charCount]{}; _fontFace->GetDesignGlyphMetrics(glyphIndices, charCount, dwGlyphMetrics); UINT32 maxAdvance = 0; for (int i = 0; i < charCount; i++) maxAdvance = max(maxAdvance, dwGlyphMetrics[i].advanceWidth); return int(maxAdvance); } }; directwrite_shaper::directwrite_shaper(crispy::Point _dpi) : d(new Private(_dpi), [](Private* p) { delete p; }) { } optional<font_key> directwrite_shaper::load_font(font_description const& _description, font_size _size) { debuglog(FontFallbackTag).write("Loading font chain for: {}", _description); IDWriteFontCollection* fontCollection{}; d->factory->GetSystemFontCollection(&fontCollection); // TODO: use libunicode for that (TODO: create wchar_t/char16_t converters in libunicode) std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> wStringConverter; std::wstring familyName = wStringConverter.from_bytes(_description.familyName); for (UINT32 i = 0, e = fontCollection->GetFontFamilyCount(); i < e; ++i) { IDWriteFontFamily* family{}; fontCollection->GetFontFamily(i, &family); IDWriteLocalizedStrings* names; family->GetFamilyNames(&names); BOOL exists = FALSE; unsigned index{}; names->FindLocaleName(d->userLocale.c_str(), &index, &exists); wchar_t name[64]; if (exists) names->GetString(index, name, _countof(name)); else // TODO: there was a different way of fallback that I have a tab open on // one of my smartphones. Please find me. names->GetString(i, name, sizeof(name)); if (familyName != name) continue; for (UINT32 k = 0, ke = family->GetFontCount(); k < ke; ++k) { ComPtr<IDWriteFont> font; family->GetFont(k, font.GetAddressOf()); font_weight weight = dwFontWeight(font->GetWeight()); if (weight != _description.weight) continue; font_slant slant = dwFontSlant(font->GetStyle()); if (weight != _description.weight) continue; ComPtr<IDWriteFontFace> fontFace; font->CreateFontFace(fontFace.GetAddressOf()); auto dwMetrics = DWRITE_FONT_METRICS{}; font->GetMetrics(&dwMetrics); auto const dipScalar = _size.pt / dwMetrics.designUnitsPerEm; auto const lineHeight = dwMetrics.ascent + dwMetrics.descent + dwMetrics.lineGap; auto fontInfo = FontInfo{}; fontInfo.description = _description; fontInfo.size = _size; fontInfo.metrics.line_height = int(ceil(lineHeight * dipScalar)); fontInfo.metrics.ascender = int(ceil(dwMetrics.ascent * dipScalar)); fontInfo.metrics.descender = int(ceil(dwMetrics.descent * dipScalar)); fontInfo.metrics.underline_position = int(ceil(dwMetrics.underlinePosition * dipScalar)); fontInfo.metrics.underline_thickness = int(ceil(dwMetrics.underlineThickness * dipScalar)); fontInfo.metrics.advance = int(ceil(d->computeAverageAdvance(fontFace.Get()) * dipScalar)); font.As(&fontInfo.font); fontFace.As(&fontInfo.fontFace); auto key = d->create_font_key(); d->fonts.emplace(pair{key, move(fontInfo)}); return key; } } debuglog(FontFallbackTag).write("Font not found."); return nullopt; #if 0 IDWriteFontFallbackBuilder* ffb{}; d->factory->CreateFontFallbackBuilder(&ffb); IDWriteFontFallback* ff; ffb->CreateFontFallback(&ff); IDWriteTextAnalyzer* textAnalyzer{}; d->factory->CreateTextAnalyzer(&textAnalyzer);//? textAnalyzer->Release(); IDWriteTextAnalysisSource *analysisSource; UINT32 textPosition; UINT32 textLength; IDWriteFontCollection *baseFontCollection; const wchar_t *baseFamilyName; DWRITE_FONT_WEIGHT baseWeight; DWRITE_FONT_STYLE baseStyle; DWRITE_FONT_STRETCH baseStretch; UINT32 mappedLength; IDWriteFont *mappedFont; FLOAT scale; ff->MapCharacters(analysisSource, textPosition, textLength, baseFontCollection, baseFamilyName, baseWeight, baseStyle, baseStretch, &mappedLength, &mappedFont, &scale); // DWRITE_FONT_FACE_TYPE fontFaceType = DWRITE_FONT_FACE_TYPE_UNKNOWN; // UINT32 numberOfFiles = 1; // IDWriteFontFile *const *fontFiles; // UINT32 faceIndex = 0; // DWRITE_FONT_SIMULATIONS fontFaceSimulationFlags; // IDWriteFontFace *fontFace{}; // d->factory->CreateFontFace(); // DWRITE_FONT_FACE_TYPE fontFaceType; // UINT32 numberOfFiles; // IDWriteFontFile *const *fontFiles; // UINT32 faceIndex; // DWRITE_FONT_SIMULATIONS fontFaceSimulationFlags; // IDWriteFontFace **fontFace = nullptr; // d->factory->CreateFontFace(fontFaceType, numberOfFiles, fontFiles, faceIndex, fontFaceSimulationFlags, fontFace); printf("done\n"); return nullopt; #endif } font_metrics directwrite_shaper::metrics(font_key _key) const { FontInfo const& fontInfo = d->fonts.at(_key); return fontInfo.metrics; } void directwrite_shaper::shape(font_key _font, std::u32string_view _text, crispy::span<int> _clusters, unicode::Script _script, shape_result& _result) { ComPtr<IDWriteTextAnalyzer> analyzer; d->factory->CreateTextAnalyzer(analyzer.GetAddressOf()); // WCHAR const *textString = L""; // TODO // UINT32 textLength; // TODO // IDWriteFontFace *fontFace; // TODO: get from hashmap.at(key) // BOOL isSideways = FALSE; // BOOL isRightToLeft = FALSE; // DWRITE_SCRIPT_ANALYSIS const* scriptAnalysis; // TODO: call to AnalyzeScript(...) // WCHAR const* localeName; // TODO: current user locale // IDWriteNumberSubstitution* numberSubstitution = NULL; // auto EnableStdLigatures = DWRITE_FONT_FEATURE{ DWRITE_FONT_FEATURE_TAG_STANDARD_LIGATURES, TRUE }; // auto feature1 = DWRITE_TYPOGRAPHIC_FEATURES{ // { &EnableStdLigatures }, // 1 // count // }; // DWRITE_TYPOGRAPHIC_FEATURES* features[] = { &feature1 }; // UINT32 const featureRangeLengths[] = { textLength }; // The length of each feature range, in characters. The sum of all lengths should be equal to textLength. // UINT32 featureRanges = 1; // the number of feature ranges // auto maxGlyphCount = UINT32{256}; // auto clusterMap = new UINT16[maxGlyphCount]; // auto textProps = new DWRITE_SHAPING_TEXT_PROPERTIES[maxGlyphCount]; // needs allocation // auto glyphIndices = new UINT16[maxGlyphCount]; // auto glyphProps = new DWRITE_SHAPING_GLYPH_PROPERTIES[maxGlyphCount]; // auto actualGlyphCount = UINT32{0}; // analyzer->GetGlyphs(textString, // textLength, // fontFace, // isSideways, // isRightToLeft, // scriptAnalysis, // localeName, numberSubstitution, // &features/*FIXME: is this right?*/, // featureRangeLengths, // featureRanges, // maxGlyphCount, // clusterMap, // textProps, // glyphIndices, // glyphProps, // &actualGlyphCount); } std::optional<rasterized_glyph> directwrite_shaper::rasterize(glyph_key _glyph, render_mode _mode) { // TODO: specialize IDWriteTextRenderer to render to bitmap IDWriteBitmapRenderTarget* renderTarget{}; // TODO return nullopt; } bool directwrite_shaper::has_color(font_key _font) const { // TODO: use internal hash map to font info return false; } void directwrite_shaper::set_dpi(crispy::Point _dpi) { d->dpi_ = _dpi; clear_cache(); } void directwrite_shaper::clear_cache() { // TODO: clear the cache } optional<glyph_position> directwrite_shaper::shape(font_key _font, char32_t _codepoint) { return nullopt; // TODO } } // end namespace
[ "christian@parpart.family" ]
christian@parpart.family
5531f2ca04d098020b421599654e7f174f6ca46e
c702848485215763b30dbff11dda103ba042b903
/examples/CompHotspot/CompHotspot.ino
5fedb130c4be38cca767324db3de91e55664bfe8
[ "MIT" ]
permissive
NulllStack/ITEADLIB_Arduino_Nextion
c9f3ce83e0d1834bfd1444a04e13c19e5d894f00
28f516eab1bbc58adf3afb79cedb73787f86a339
refs/heads/master
2022-12-06T01:29:10.154592
2020-08-20T06:36:24
2020-08-20T06:36:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,818
ino
/** * @example CompHotspot.ino * * @par How to Use * This example shows that ,when the hot component on the Nextion screen is pressed or released, * the debug serial will output the debug information every time. * * @author Wu Pengfei (email:<pengfei.wu@itead.cc>) * @date 2015/7/10 * @updated 2016/12/25 bring HMI up to v0.32 to avoid too old issues * @convert by Patrick Martin, no other changes made * @copyright * Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. */ #include "Nextion.h" NexHotspot hot0 = NexHotspot(0, 1, "hot0"); NexHotspot hot1 = NexHotspot(0, 2, "hot1"); NexTouch *nex_listen_list[] = { &hot0, &hot1, NULL }; void hot0PushCallback(void *ptr) { dbSerialPrintln("hot0PushCallback"); dbSerialPrint("ptr="); dbSerialPrintln((uint32_t)ptr); } void hot1PushCallback(void *ptr) { dbSerialPrintln("hot1PushCallback"); dbSerialPrint("ptr="); dbSerialPrintln((uint32_t)ptr); } void hot0PopCallback(void *ptr) { dbSerialPrintln("hot0PopCallback"); dbSerialPrint("ptr="); dbSerialPrintln((uint32_t)ptr); } void hot1PopCallback(void *ptr) { dbSerialPrintln("hot1PopCallback"); dbSerialPrint("ptr="); dbSerialPrintln((uint32_t)ptr); } void setup(void) { nexInit(Serial1); hot0.attachPush(hot0PushCallback, &hot0); hot0.attachPop(hot0PopCallback, &hot0); hot1.attachPush(hot1PushCallback, &hot1); hot1.attachPop(hot1PopCallback, &hot1); dbSerialPrintln("setup done"); } void loop(void) { nexLoop(nex_listen_list); }
[ "964117532@qq.com" ]
964117532@qq.com
eb8b1ffe7aa49693a477c9f37bc7856bd84086ac
037d518773420f21d74079ee492827212ba6e434
/blazetest/src/mathtest/dmatdmatsub/M3x3aM3x3a.cpp
70d15cc01c1ed1620e3ea83f3e4d71514753a594
[ "BSD-3-Clause" ]
permissive
chkob/forked-blaze
8d228f3e8d1f305a9cf43ceaba9d5fcd603ecca8
b0ce91c821608e498b3c861e956951afc55c31eb
refs/heads/master
2021-09-05T11:52:03.715469
2018-01-27T02:31:51
2018-01-27T02:31:51
112,014,398
0
0
null
null
null
null
UTF-8
C++
false
false
3,555
cpp
//================================================================================================= /*! // \file src/mathtest/dmatdmatsub/M3x3aM3x3a.cpp // \brief Source file for the M3x3aM3x3a dense matrix/dense matrix subtraction math test // // Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. Redistribution and use in source and binary // forms, with or without modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // 3. Neither the names of the Blaze development group 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 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= //************************************************************************************************* // Includes //************************************************************************************************* #include <cstdlib> #include <iostream> #include <blaze/math/StaticMatrix.h> #include <blazetest/mathtest/Creator.h> #include <blazetest/mathtest/dmatdmatsub/OperationTest.h> #include <blazetest/system/MathTest.h> //================================================================================================= // // MAIN FUNCTION // //================================================================================================= //************************************************************************************************* int main() { std::cout << " Running 'M3x3aM3x3a'..." << std::endl; using blazetest::mathtest::TypeA; try { // Matrix type definitions typedef blaze::StaticMatrix<TypeA,3UL,3UL> M3x3a; // Creator type definitions typedef blazetest::Creator<M3x3a> CM3x3a; // Running the tests RUN_DMATDMATSUB_OPERATION_TEST( CM3x3a(), CM3x3a() ); } catch( std::exception& ex ) { std::cerr << "\n\n ERROR DETECTED during dense matrix/dense matrix subtraction:\n" << ex.what() << "\n"; return EXIT_FAILURE; } return EXIT_SUCCESS; } //*************************************************************************************************
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
55dab02db204fc4eb5bd5dd9159627b3f527a0b7
fd21c314ad0bae7af44aa27c09407eb6a6007630
/src/Parsers.h
d2813fb2b1208d89abbd303c3a0e1a9f7cc65228
[ "MIT" ]
permissive
lriki/LNSL
df2ca38d7b2dfe6f870155b753124b038ecb176c
c27527a1c33ac16f977fffd415ef10059978e7db
refs/heads/master
2016-09-12T18:03:42.174494
2016-04-25T12:22:04
2016-04-25T12:22:04
56,225,217
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,285
h
#pragma once #include "Symbols.h" // サンプラ変数とテクスチャ変数の結びつけを行うクラス。 class SamplerLinker { public: //struct SamplerPair //{ // std::string SamplerVarName; // std::string TextureVarName; // bool operator == ( const SamplerPair& val ) { return SamplerVarName == val.SamplerVarName; } //}; ///// テクスチャ型変数とその値 //struct TextureVar //{ // std::string Name; // IDirect3DBaseTexture9* Texture; //}; //typedef std::vector<SamplerPair> SamplerPairArray; //typedef std::vector<TextureVar> TextureVarArray; //SamplerPairArray mSamplerPairArray; // output public: SamplerLinker(Effect* effect); ~SamplerLinker(); void analyze( IDirect3DDevice9* device, ID3DXEffect* effect ); String Parse(ln::parser::TokenListPtr& tokenList); String GetTextureNameBySampler(const String& name) { return m_samplerTextureMap[name]; } private: void analyzeSampler( D3DXHANDLE handle, const char* name ); //TextureVar* findTextureVar( IDirect3DBaseTexture9* texture ); //void addSamplerPair( const SamplerPair& var ); private: Effect* m_effect; std::map<String, String> m_samplerTextureMap; //IDirect3DDevice9* mDxDevice; //ID3DXEffect* mDxEffect; //TextureVarArray mTextureVarArray; };
[ "lriki.net@gmail.com" ]
lriki.net@gmail.com
92ce807efc519a854b27865fc83fe723d187e982
0539f0607a5512990042f4d96bab80cf5532edae
/Assignment1/main.cpp
be267d0fd3b9f73425c44018713633171ef46357
[]
no_license
hasanriaz121/50.017-Graphics-and-Visualization
40710a0bc9250d4f39536250ace9f5c56c5e5d5e
66ee2341e1d4d23f626f361f430bba1db47f4efa
refs/heads/master
2022-02-19T11:44:24.818778
2019-08-15T10:48:58
2019-08-15T10:48:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,839
cpp
#ifdef WIN32 #include <windows.h> #endif #include <cmath> #include <iostream> #include <cstdlib> #include <fstream> #include <vector> #ifdef _WIN32 #include <GL/freeglut.h> #else #include <GL/glut.h> #endif #include <vecmath.h> #include "parse.h" #include "curve.h" #include "surf.h" #include "extra.h" #include "camera.h" #include <time.h> using namespace std; // If you're really interested in what "namespace" means, see // Stroustup. But basically, the functionality of putting all the // globals in an "unnamed namespace" is to ensure that everything in // here is only accessible to code in this file. namespace { // Global variables here. // This is the camera Camera camera; // These are state variables for the UI bool surf_norms = false; // boolean variable to display surface normals bool gMousePressed = false; int gCurveMode = 1; int gSurfaceMode = 1; int gPointMode = 1; // This detemines how big to draw the normals const float gLineLen = 0.1f; // These are arrays for display lists for each drawing mode. The // convention is that drawmode 0 is "blank", and other drawmodes // just call the appropriate display lists. GLuint gCurveLists[3]; GLuint gSurfaceLists[4]; GLuint gAxisList; GLuint gPointList; // These STL Vectors store the control points, curves, and // surfaces that will end up being drawn. In addition, parallel // STL vectors store the names for the curves and surfaces (as // given by the files). vector<vector<Vector3f> > gCtrlPoints; vector<Curve> gCurves; vector<string> gCurveNames; vector<Surface> gSurfaces; vector<string> gSurfaceNames; // Declarations of functions whose implementations occur later. void keyboardFunc( unsigned char key, int x, int y); void specialFunc( int key, int x, int y ); void mouseFunc(int button, int state, int x, int y); void motionFunc(int x, int y); void reshapeFunc(int w, int h); void drawScene(void); void initRendering(); void loadObjects(int argc, char *argv[]); void makeDisplayLists(); // This function is called whenever a "Normal" key press is // received. void keyboardFunc( unsigned char key, int x, int y ) { switch ( key ) { case 27: // Escape key exit(0); break; case ' ': { Matrix4f eye = Matrix4f::identity(); camera.SetRotation(eye); camera.SetCenter(Vector3f(0,0,0)); break; } case 'c': case 'C': gCurveMode = (gCurveMode+1) % 3; break; case 's': case 'S': gSurfaceMode = (gSurfaceMode+1) % 4; break; case 'p': case 'P': gPointMode = (gPointMode+1)%2; break; default: cout << "Unhandled key press " << key << "." << endl; } glutPostRedisplay(); } // This function is called whenever a "Special" key press is // received. Right now, it does nothing. void specialFunc( int key, int x, int y ) { /* switch ( key ) { default: break; } */ //glutPostRedisplay(); } // Called when mouse button is pressed. void mouseFunc(int button, int state, int x, int y) { if (state == GLUT_DOWN) { gMousePressed = true; switch (button) { case GLUT_LEFT_BUTTON: camera.MouseClick(Camera::LEFT, x, y); break; case GLUT_MIDDLE_BUTTON: camera.MouseClick(Camera::MIDDLE, x, y); break; case GLUT_RIGHT_BUTTON: camera.MouseClick(Camera::RIGHT, x,y); default: break; } } else { camera.MouseRelease(x,y); gMousePressed = false; } glutPostRedisplay(); } // Called when mouse is moved while button pressed. void motionFunc(int x, int y) { camera.MouseDrag(x,y); glutPostRedisplay(); } // Called when the window is resized // w, h - width and height of the window in pixels. void reshapeFunc(int w, int h) { camera.SetDimensions(w,h); camera.SetViewport(0,0,w,h); camera.ApplyViewport(); // Set up a perspective view, with square aspect ratio glMatrixMode(GL_PROJECTION); glLoadIdentity(); camera.SetPerspective(50); camera.ApplyPerspective(); } // This function is responsible for displaying the object. void drawScene(void) { // Clear the rendering window glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glMatrixMode( GL_MODELVIEW ); glLoadIdentity(); // Light color (RGBA) GLfloat Lt0diff[] = {1.0,1.0,1.0,1.0}; GLfloat Lt0pos[] = {3.0,3.0,5.0,1.0}; glLightfv(GL_LIGHT0, GL_DIFFUSE, Lt0diff); glLightfv(GL_LIGHT0, GL_POSITION, Lt0pos); camera.ApplyModelview(); // Call the relevant display lists. if (gSurfaceMode) glCallList(gSurfaceLists[gSurfaceMode]); if (gCurveMode) glCallList(gCurveLists[gCurveMode]); // This draws the coordinate axes when you're rotating, to // keep yourself oriented. if (gMousePressed) { glPushMatrix(); glTranslated(camera.GetCenter()[0], camera.GetCenter()[1], camera.GetCenter()[2]); glCallList(gAxisList); glPopMatrix(); } if (gPointMode) glCallList(gPointList); // Dump the image to the screen. glutSwapBuffers(); } // Initialize OpenGL's rendering modes void initRendering() { glEnable(GL_DEPTH_TEST); // Depth testing must be turned on glEnable(GL_LIGHTING); // Enable lighting calculations glEnable(GL_LIGHT0); // Turn on light #0. // Setup polygon drawing glShadeModel(GL_SMOOTH); glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); // Antialiasing // This looks like crap /* glEnable(GL_BLEND); glEnable(GL_POINT_SMOOTH); glEnable(GL_LINE_SMOOTH); glHint(GL_POINT_SMOOTH_HINT, GL_NICEST); glHint(GL_LINE_SMOOTH_HINT, GL_NICEST); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); */ // Clear to black glClearColor(0,0,0,1); // Base material colors (they don't change) GLfloat diffColor[] = {0.4, 0.4, 0.4, 1}; GLfloat specColor[] = {0.9, 0.9, 0.9, 1}; GLfloat shininess[] = {50.0}; //const GLfloat g_color_buffer_data[] = Surface.VN; // making the normal vectors the colors glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, diffColor); glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, specColor); glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, shininess); } // Load in objects from standard input into the global variables: // gCtrlPoints, gCurves, gCurveNames, gSurfaces, gSurfaceNames. If // loading fails, this will exit the program. void loadObjects(int argc, char *argv[]) { if (argc < 2) { cerr<< "usage: " << argv[0] << " SWPFILE [OBJPREFIX] " << endl; exit(0); } ifstream in(argv[1]); if (!in) { cerr<< argv[1] << " not found\a" << endl; exit(0); } cerr << endl << "*** loading and constructing curves and surfaces ***" << endl; if (!parseFile(in, gCtrlPoints, gCurves, gCurveNames, gSurfaces, gSurfaceNames)) { cerr << "\aerror in file format\a" << endl; in.close(); exit(-1); } in.close(); // This does OBJ file output if (argc > 2) { cerr << endl << "*** writing obj files ***" << endl; string prefix(argv[2]); for (unsigned i=0; i<gSurfaceNames.size(); i++) { if (gSurfaceNames[i] != ".") { string filename = prefix + string("_") + gSurfaceNames[i] + string(".obj"); ofstream out(filename.c_str()); if (!out) { cerr << "\acould not open file " << filename << ", skipping"<< endl; out.close(); continue; } else { outputObjFile(out, gSurfaces[i]); cerr << "wrote " << filename << endl; } } } } cerr << endl << "*** done ***" << endl; } void makeDisplayLists() { gCurveLists[1] = glGenLists(1); gCurveLists[2] = glGenLists(1); gSurfaceLists[1] = glGenLists(1); gSurfaceLists[2] = glGenLists(1); gSurfaceLists[3] = glGenLists(1); gAxisList = glGenLists(1); gPointList = glGenLists(1); // Compile the display lists glNewList(gCurveLists[1], GL_COMPILE); { for (unsigned i=0; i<gCurves.size(); i++) drawCurve(gCurves[i], 0.0); } glEndList(); glNewList(gCurveLists[2], GL_COMPILE); { for (unsigned i=0; i<gCurves.size(); i++) drawCurve(gCurves[i], gLineLen); } glEndList(); glNewList(gSurfaceLists[1], GL_COMPILE); { for (unsigned i=0; i<gSurfaces.size(); i++) drawSurface(gSurfaces[i], true); } glEndList(); glNewList(gSurfaceLists[2], GL_COMPILE); // additional list to view just the normals { for (unsigned i=0; i<gSurfaces.size(); i++) { drawSurface(gSurfaces[i], false); drawNormals(gSurfaces[i], gLineLen); } } glEndList(); glNewList(gSurfaceLists[3], GL_COMPILE); { for (unsigned i = 0; i < gSurfaces.size(); i++) { drawNormals(gSurfaces[i], gLineLen); } } glEndList(); glNewList(gAxisList, GL_COMPILE); { // Save current state of OpenGL glPushAttrib(GL_ALL_ATTRIB_BITS); // This is to draw the axes when the mouse button is down glDisable(GL_LIGHTING); glLineWidth(3); glPushMatrix(); glScaled(5.0,5.0,5.0); glBegin(GL_LINES); glColor4f(1,0.5,0.5,1); glVertex3d(0,0,0); glVertex3d(1,0,0); glColor4f(0.5,1,0.5,1); glVertex3d(0,0,0); glVertex3d(0,1,0); glColor4f(0.5,0.5,1,1); glVertex3d(0,0,0); glVertex3d(0,0,1); glColor4f(0.5,0.5,0.5,1); glVertex3d(0,0,0); glVertex3d(-1,0,0); glVertex3d(0,0,0); glVertex3d(0,-1,0); glVertex3d(0,0,0); glVertex3d(0,0,-1); glEnd(); glPopMatrix(); glPopAttrib(); } glEndList(); glNewList(gPointList, GL_COMPILE); { // Save current state of OpenGL glPushAttrib(GL_ALL_ATTRIB_BITS); // Setup for point drawing glDisable(GL_LIGHTING); glColor4f(1,1,0.0,1); glPointSize(4); glLineWidth(1); for (unsigned i=0; i<gCtrlPoints.size(); i++) { glBegin(GL_POINTS); for (unsigned j=0; j<gCtrlPoints[i].size(); j++) glVertex(gCtrlPoints[i][j]); glEnd(); glBegin(GL_LINE_STRIP); for (unsigned j=0; j<gCtrlPoints[i].size(); j++) glVertex(gCtrlPoints[i][j]); glEnd(); } glPopAttrib(); } glEndList(); } } // Main routine. // Set up OpenGL, define the callbacks and start the main loop int main( int argc, char* argv[] ) { srand(time(NULL)); // Initialize random number generator. // Load in from standard input loadObjects(argc, argv); glutInit(&argc,argv); // We're going to animate it, so double buffer glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH ); // Initial parameters for window position and size glutInitWindowPosition( 60, 60 ); glutInitWindowSize( 600, 600 ); camera.SetDimensions(600, 600); camera.SetDistance(10); camera.SetCenter(Vector3f(0,0,0)); glutCreateWindow("Assignment 1"); // Initialize OpenGL parameters. initRendering(); // Set up callback functions for key presses glutKeyboardFunc(keyboardFunc); // Handles "normal" ascii symbols glutSpecialFunc(specialFunc); // Handles "special" keyboard keys // Set up callback functions for mouse glutMouseFunc(mouseFunc); glutMotionFunc(motionFunc); // Set up the callback function for resizing windows glutReshapeFunc( reshapeFunc ); // Call this whenever window needs redrawing glutDisplayFunc( drawScene ); // Trigger timerFunc every 20 msec // glutTimerFunc(20, timerFunc, 0); makeDisplayLists(); // Start the main loop. glutMainLoop never returns. glutMainLoop(); return 0; // This line is never reached. }
[ "reuben_wang@mymail.sutd.edu.sg" ]
reuben_wang@mymail.sutd.edu.sg
f9c51ca42871a90820359c28e915778589321be0
2e2588722e89b8d89fd9e4a47518d10b0d37f8d9
/HWATest/HWATest/SetEVADlg.h
9ffb68e64e0fb3d61a4ace1112fdf7e886c27067
[]
no_license
grandrandpa/BD3
2c3dcad2bd898e43cb1b2ce14e80cae0b84c716e
4f7473450cd8dcc110c3df79a4787d95f3470853
refs/heads/master
2023-02-13T10:58:20.722713
2020-12-31T02:32:22
2020-12-31T02:32:22
324,972,088
0
0
null
null
null
null
UTF-8
C++
false
false
401
h
#pragma once // CSetEVADlg dialog class CSetEVADlg : public CBCGPDialog { DECLARE_DYNAMIC(CSetEVADlg) public: CSetEVADlg(CWnd* pParent = NULL); // standard constructor virtual ~CSetEVADlg(); // Dialog Data enum { IDD = IDD_SET_EVA_DIALOG }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support DECLARE_MESSAGE_MAP() public: virtual BOOL OnInitDialog(); };
[ "luobo@hwacreate.com.cn" ]
luobo@hwacreate.com.cn
beed247ce23aa54262bb35b6a30312350430189b
83bc7e86f6fdb946b277f117271deceb2fce0b93
/Qt/build-ChessSys-Desktop_Qt_5_6_2_MinGW_32bit-Debug/debug/moc_commodityanalyform.cpp
18900ecdaed2b2395fc3dae62331fc2d4cb2b93e
[ "MIT" ]
permissive
isoundy000/ChessSys
22ec3dfa439db60f392e388aa9fce9df6ea3e7aa
e18a2a301d77e2853c94c39ce309eea9f4566316
refs/heads/master
2020-05-20T07:20:59.626385
2019-03-24T08:12:04
2019-03-24T08:26:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,781
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'commodityanalyform.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.6.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../ChessSys/ui/commodityanalyform.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'commodityanalyform.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.6.2. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_CommodityAnalyForm_t { QByteArrayData data[1]; char stringdata0[19]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_CommodityAnalyForm_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_CommodityAnalyForm_t qt_meta_stringdata_CommodityAnalyForm = { { QT_MOC_LITERAL(0, 0, 18) // "CommodityAnalyForm" }, "CommodityAnalyForm" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_CommodityAnalyForm[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; void CommodityAnalyForm::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } const QMetaObject CommodityAnalyForm::staticMetaObject = { { &QWidget::staticMetaObject, qt_meta_stringdata_CommodityAnalyForm.data, qt_meta_data_CommodityAnalyForm, qt_static_metacall, Q_NULLPTR, Q_NULLPTR} }; const QMetaObject *CommodityAnalyForm::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *CommodityAnalyForm::qt_metacast(const char *_clname) { if (!_clname) return Q_NULLPTR; if (!strcmp(_clname, qt_meta_stringdata_CommodityAnalyForm.stringdata0)) return static_cast<void*>(const_cast< CommodityAnalyForm*>(this)); return QWidget::qt_metacast(_clname); } int CommodityAnalyForm::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QWidget::qt_metacall(_c, _id, _a); if (_id < 0) return _id; return _id; } QT_END_MOC_NAMESPACE
[ "376098946@qq.com" ]
376098946@qq.com
8491e44398481b291de7bd52ac9add3efc91f900
b268c986b8c3ad58cef649b123844f4cc9a904bc
/GTRACT/Cmdline/gtractImageConformity.cxx
badca70a2e72600e8926a2bdcc5880fb69d88202
[]
no_license
Slicer/BRAINSTools
c0848684e68bd0b85d1b33e9a5caeb749ec81262
c658c752a053ab2006929489d5f0e9297857ba18
refs/heads/slicer-2015-08-21-v4.5.0
2021-01-18T07:32:41.051518
2015-10-06T21:10:16
2015-11-03T16:30:19
21,228,900
5
5
null
2017-12-05T23:04:13
2014-06-26T05:19:24
C++
UTF-8
C++
false
false
4,930
cxx
/*========================================================================= * * Copyright SINAPSE: Scalable Informatics for Neuroscience, Processing and Software Engineering * The University of Iowa * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ /*========================================================================= Program: GTRACT (Guided Tensor Restore Anatomical Connectivity Tractography) Module: $RCSfile: $ Language: C++ Date: $Date: 2006/03/29 14:53:40 $ Version: $Revision: 1.9 $ Copyright (c) University of Iowa Department of Radiology. All rights reserved. See GTRACT-Copyright.txt or http://mri.radiology.uiowa.edu/copyright/GTRACT-Copyright.txt for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include <iostream> #include <fstream> #include <itkImage.h> #include <itkOrientImageFilter.h> #include "itkGtractImageIO.h" #include "gtractImageConformityCLP.h" #include "GenericTransformImage.h" #include "BRAINSThreadControl.h" int main(int argc, char *argv[]) { PARSE_ARGS; BRAINSRegisterAlternateIO(); const BRAINSUtils::StackPushITKDefaultNumberOfThreads TempDefaultNumberOfThreadsHolder(numberOfThreads); bool debug = true; if( debug ) { std::cout << "Input Image: " << inputVolume << std::endl; std::cout << "Output Image: " << outputVolume << std::endl; std::cout << "Reference Image: " << inputReferenceVolume << std::endl; } bool violated = false; if( inputVolume.size() == 0 ) { violated = true; std::cout << " --inputVolume Required! " << std::endl; } if( inputReferenceVolume.size() == 0 ) { violated = true; std::cout << " --inputReferenceVolume Required! " << std::endl; } if( outputVolume.size() == 0 ) { violated = true; std::cout << " --outputVolume Required! " << std::endl; } if( violated ) { return EXIT_FAILURE; } typedef signed short PixelType; typedef itk::Image<PixelType, 3> SpecimenImageType; typedef itk::ImageFileReader<SpecimenImageType> SpecimenImageReaderType; SpecimenImageReaderType::Pointer specimenImageReader = SpecimenImageReaderType::New(); specimenImageReader->SetFileName( inputVolume ); try { specimenImageReader->Update(); } catch( itk::ExceptionObject & ex ) { std::cout << ex << std::endl; throw; } typedef itk::Image<PixelType, 3> ReferenceImageType; typedef itk::ImageFileReader<ReferenceImageType> ReferenceImageReaderType; ReferenceImageReaderType::Pointer referenceImageReader = ReferenceImageReaderType::New(); referenceImageReader->SetFileName( inputReferenceVolume ); try { referenceImageReader->Update(); } catch( itk::ExceptionObject & ex ) { std::cout << ex << std::endl; throw; } typedef itk::OrientImageFilter<SpecimenImageType, ReferenceImageType> OrientFilterType; OrientFilterType::Pointer orientImageFilter = OrientFilterType::New(); orientImageFilter->SetInput( specimenImageReader->GetOutput() ); orientImageFilter->SetDesiredCoordinateDirection( referenceImageReader->GetOutput()->GetDirection() ); orientImageFilter->UseImageDirectionOn(); try { orientImageFilter->Update(); } catch( itk::ExceptionObject & e ) { std::cout << e << std::endl; throw; } ReferenceImageType::Pointer reorientedImage = orientImageFilter->GetOutput(); reorientedImage->SetOrigin( referenceImageReader->GetOutput()->GetOrigin() ); reorientedImage->SetMetaDataDictionary( specimenImageReader->GetOutput()->GetMetaDataDictionary() ); typedef itk::ImageFileWriter<ReferenceImageType> ImageFileWriterType; ImageFileWriterType::Pointer ImageWriter = ImageFileWriterType::New(); ImageWriter->UseCompressionOn(); ImageWriter->SetFileName( outputVolume ); ImageWriter->SetInput( reorientedImage ); try { ImageWriter->Update(); } catch( itk::ExceptionObject & ex ) { std::cout << ex << std::endl; throw; } return EXIT_SUCCESS; }
[ "hans-johnson@uiowa.edu" ]
hans-johnson@uiowa.edu
9f81abcb015d965bd79234b565ac94817f402c3c
868e8628acaa0bf276134f9cc3ced379679eab10
/firstCrude2D/we123/h2/0.197/phiAlpha
d7df97926e7f23ca69e48ef5758a19d37e88c365
[]
no_license
stigmn/droplet
921af6851f88c0acf8b1cd84f5e2903f1d0cb87a
1649ceb0a9ce5abb243fb77569211558c2f0dc96
refs/heads/master
2020-04-04T20:08:37.912624
2015-11-25T11:20:32
2015-11-25T11:20:32
45,102,907
0
0
null
2015-10-28T09:46:30
2015-10-28T09:46:29
null
UTF-8
C++
false
false
161,859
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "0.197"; object phiAlpha; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 12835 ( -2.50444e-07 2.61334e-07 -4.14802e-07 1.76259e-07 -3.56394e-07 -6.20503e-08 -1.54697e-08 -3.52528e-07 -6.01236e-08 4.92249e-08 -7.56843e-08 1.85427e-08 2.23801e-07 -3.47143e-07 2.92911e-07 -1.19877e-07 -1.91814e-09 3.2185e-07 -9.49057e-08 1.49437e-07 -6.05775e-08 -4.24999e-08 1.20437e-08 -3.11034e-08 2.72932e-09 -2.7145e-10 9.51198e-10 1.16609e-09 2.46492e-10 5.53028e-09 6.01773e-11 3.84895e-10 2.53418e-09 -3.37998e-10 2.66517e-09 5.30674e-11 2.79147e-09 1.36884e-10 1.0305e-09 1.0207e-08 8.36245e-10 3.86908e-09 1.95784e-09 -8.72935e-10 5.70023e-09 -2.09438e-09 -8.9473e-11 1.07459e-08 -5.27529e-12 8.50061e-10 -6.65233e-15 -5.26864e-12 -4.4997e-15 -1.46662e-13 -4.04257e-15 1.08818e-14 1.02987e-15 2.71654e-15 5.28434e-13 -5.27405e-13 1.8811e-08 -5.58058e-11 1.75797e-08 5.53731e-09 7.95168e-09 1.39494e-08 1.91771e-11 6.69269e-10 -4.73631e-12 2.39134e-11 2.55951e-11 2.5676e-11 5.53181e-11 8.37899e-13 3.88927e-11 2.35253e-11 2.31933e-11 2.71722e-11 3.19246e-12 3.97015e-11 -6.30403e-12 1.12942e-11 4.16934e-12 -3.70506e-13 5.81256e-11 6.44289e-12 4.0127e-11 2.70384e-11 -2.52885e-12 6.55762e-11 -1.23077e-12 6.05297e-12 3.6964e-14 -1.26771e-12 9.3868e-12 -3.41587e-11 2.51764e-11 -6.11435e-11 -6.28975e-11 7.26035e-11 -3.21528e-07 5.84222e-07 -4.3646e-07 2.86688e-07 -3.42834e-07 -1.55559e-07 -4.53098e-08 -6.49962e-07 -1.26293e-07 1.30246e-07 -1.9035e-07 8.26108e-08 1.2073e-07 -6.58189e-07 1.50296e-07 -4.2333e-07 1.55349e-08 3.76199e-07 -1.4308e-07 8.82897e-07 -5.84569e-08 -2.72117e-08 -1.08913e-09 -1.20579e-08 1.04273e-08 -8.53966e-08 1.29219e-09 5.96188e-09 5.59912e-10 1.11084e-08 -1.18657e-09 4.5903e-09 1.79483e-09 1.28484e-09 6.48446e-09 2.87539e-09 7.33484e-09 9.54839e-10 1.10876e-08 9.14765e-09 7.05429e-09 1.0436e-08 1.16305e-08 -6.86924e-09 1.01346e-08 -1.29537e-09 5.66651e-09 1.57062e-08 5.48603e-12 5.19471e-09 -4.10712e-13 6.5803e-13 -6.24227e-13 1.34723e-12 -1.29884e-14 2.00517e-12 3.2488e-14 -1.65326e-14 3.7035e-12 -5.73419e-12 6.87922e-10 -7.42676e-10 1.30993e-08 9.01456e-10 6.61063e-09 1.14058e-08 9.07697e-10 3.49237e-09 4.02518e-11 8.39827e-10 2.50036e-10 -1.27672e-10 1.2496e-10 3.36375e-10 1.07066e-10 5.33701e-11 8.13573e-11 4.32133e-11 3.64179e-11 8.89373e-11 5.57985e-11 2.44686e-11 8.60474e-11 -1.65397e-11 4.90789e-10 5.69703e-10 3.9334e-10 2.48807e-11 8.60521e-11 1.71102e-10 6.74815e-11 3.08855e-11 1.82313e-10 -3.45005e-11 5.04312e-10 -1.53272e-10 5.85264e-10 -2.41371e-10 -1.87188e-10 7.15939e-10 -3.13431e-07 8.96373e-07 -4.01458e-07 3.73362e-07 -3.17365e-07 -2.38256e-07 -5.059e-08 -9.07387e-07 -1.38037e-07 2.17505e-07 -2.09371e-07 1.53956e-07 -7.81547e-08 -7.90755e-07 2.18391e-07 -1.05323e-06 7.37096e-08 5.58582e-07 -1.54543e-07 3.86415e-07 -2.25704e-09 -3.54625e-08 -2.95597e-10 -1.4055e-08 3.35524e-08 -9.85377e-08 6.81017e-09 2.34211e-08 -2.07565e-09 2.4455e-08 -4.56592e-09 1.60728e-09 1.52408e-09 -1.87434e-08 1.16373e-08 -7.23497e-08 9.88597e-09 2.77368e-09 1.16439e-08 3.9281e-09 9.64932e-09 4.01546e-09 6.96307e-09 -4.0801e-09 5.55807e-09 3.41375e-10 5.03877e-09 1.63624e-08 1.2514e-10 8.56324e-09 2.64071e-12 5.89655e-11 5.95998e-13 2.8359e-12 -8.46077e-15 4.18808e-12 -6.40763e-14 -5.21963e-15 -1.25588e-10 1.87542e-11 -3.17882e-10 -6.16953e-10 9.96253e-10 -1.81966e-09 1.96491e-09 1.21051e-08 8.88165e-09 3.1581e-08 2.9404e-08 -2.26231e-09 2.80706e-08 -4.07285e-08 9.53e-10 -1.45307e-09 1.61519e-10 3.33585e-10 7.25928e-11 1.26702e-10 4.84154e-11 1.04544e-10 9.05618e-11 -2.70807e-12 5.29367e-10 -8.45661e-10 2.32333e-09 -2.39685e-09 9.67489e-10 3.24256e-10 1.64394e-10 8.07225e-10 1.96375e-10 1.45567e-10 3.23905e-10 -3.78411e-11 4.27624e-10 -1.08183e-10 5.65716e-10 -1.23895e-10 -1.09834e-10 5.02677e-10 -2.93679e-07 1.1905e-06 -3.66003e-07 4.47551e-07 -2.99452e-07 -2.99516e-07 -5.18259e-08 -1.16021e-06 -1.11927e-07 2.77617e-07 -1.47772e-07 1.89813e-07 -1.51443e-07 -7.88344e-07 -2.91346e-08 -1.20662e-06 -2.81011e-08 6.84588e-07 -1.01928e-07 2.47144e-08 -1.66913e-09 -2.41274e-08 6.44564e-10 -1.63695e-08 1.9694e-08 -9.46535e-08 3.87123e-09 3.72583e-08 6.7615e-10 2.33858e-08 -5.42175e-09 3.0399e-09 8.06316e-08 -1.52053e-07 1.0287e-07 -2.7598e-07 1.4356e-08 -3.30167e-09 6.91504e-09 1.12187e-08 7.35384e-09 3.67715e-09 6.98573e-09 -3.62484e-09 4.53952e-09 2.84414e-09 3.94545e-09 1.70995e-08 8.01224e-10 8.6941e-09 6.45905e-11 2.78602e-10 1.79554e-12 4.69582e-11 4.85332e-14 7.69184e-12 -6.03889e-14 -1.21442e-13 1.51099e-10 -1.32273e-10 6.67259e-09 -6.8891e-08 1.17035e-08 -2.39856e-08 3.58447e-08 4.93708e-08 8.56993e-08 5.30914e-08 8.89603e-08 -5.52983e-09 8.28424e-08 -3.4666e-08 9.66696e-09 4.56356e-09 2.62855e-10 6.12037e-10 1.04924e-10 2.83007e-10 9.91831e-11 1.04834e-10 1.73242e-10 -6.81913e-11 3.50391e-08 -9.64934e-09 5.11783e-08 -6.55572e-08 4.56486e-09 1.53781e-09 -8.98355e-10 8.80436e-09 1.13723e-10 1.00189e-10 1.32813e-10 -7.77608e-11 1.51087e-10 -1.53559e-10 1.43956e-10 -1.29149e-10 -1.18987e-10 1.46677e-10 -2.71974e-07 1.46289e-06 -3.35699e-07 5.11577e-07 -2.89706e-07 -3.49672e-07 -4.83298e-08 -1.41318e-06 -8.04538e-08 3.06707e-07 -7.31775e-08 1.82546e-07 -1.0195e-07 -7.59561e-07 9.59506e-09 -1.4017e-06 3.28315e-09 5.77926e-07 -1.35634e-08 2.13326e-08 -5.04264e-09 -4.09872e-09 -4.9188e-10 -2.09744e-08 1.30004e-08 -1.85363e-08 3.85066e-09 4.60695e-08 -1.77371e-11 1.58306e-08 4.04963e-09 -1.41204e-09 1.08537e-07 -2.36466e-07 1.23331e-07 -2.72379e-07 4.34116e-08 -3.45595e-08 1.18445e-08 1.83877e-08 7.22767e-09 8.35864e-09 5.25577e-09 -1.59746e-09 3.25669e-09 4.88145e-09 4.31116e-09 1.84376e-08 2.49768e-09 1.16236e-08 3.12885e-09 6.2255e-10 5.68025e-10 2.28548e-10 2.26882e-12 5.75679e-10 2.12057e-11 -6.52745e-11 7.24747e-09 -2.92406e-08 3.05026e-08 -1.56586e-07 4.32221e-08 -9.29318e-08 7.3979e-08 2.2321e-08 8.57111e-08 4.14303e-08 8.46897e-08 -4.55096e-09 7.50715e-08 -2.50895e-08 3.4921e-08 -5.12201e-09 9.39827e-10 1.24594e-09 2.25828e-10 9.29011e-10 1.65524e-10 1.63046e-10 2.35688e-10 -1.31234e-10 4.02118e-08 -1.31399e-08 1.07419e-07 -2.79993e-08 1.27477e-08 5.39419e-08 3.88928e-10 1.79625e-08 3.11228e-10 -1.44054e-10 3.9135e-10 -1.48351e-10 2.48062e-10 -3.52451e-11 1.59372e-10 -7.71605e-11 -1.24597e-10 1.44223e-10 -2.51166e-07 1.71444e-06 -3.21276e-07 5.90073e-07 -2.91288e-07 -3.86481e-07 -5.36346e-08 -1.6507e-06 -6.46165e-08 3.16807e-07 1.05137e-08 1.06351e-07 1.12642e-09 -7.50191e-07 3.50956e-08 -1.45525e-06 1.51443e-07 2.1883e-07 -1.20033e-08 1.77321e-07 -4.66044e-09 -1.20921e-08 1.44061e-09 -2.70707e-08 2.522e-09 -2.02091e-08 1.31174e-08 5.84768e-08 6.68578e-11 2.82993e-08 2.47051e-09 -4.13792e-09 6.40619e-08 -3.59383e-08 9.20528e-08 -2.8347e-07 7.52042e-08 -8.94739e-08 9.60131e-09 1.51018e-08 6.38296e-09 1.15862e-08 2.3869e-09 2.43446e-09 2.57656e-10 7.02695e-09 2.1291e-09 1.8788e-08 4.69852e-09 1.23873e-08 2.17383e-08 -7.56916e-09 1.29471e-08 -3.35703e-09 3.61814e-10 1.17006e-08 -3.08502e-10 2.00574e-10 2.92621e-08 -1.22126e-07 3.20978e-08 -1.64866e-07 3.46898e-08 -1.01273e-07 5.38236e-08 -2.7477e-10 7.29634e-08 2.11965e-08 8.12313e-08 -1.28482e-08 6.79551e-08 -1.19105e-08 2.76903e-08 -8.81418e-09 -1.96374e-10 5.66626e-09 1.71965e-10 5.16757e-10 1.7859e-10 1.53359e-10 2.60581e-10 -2.12013e-10 9.55498e-08 -2.05762e-10 1.29334e-07 5.88868e-09 7.0175e-08 1.52869e-07 9.95574e-09 5.52046e-08 3.60191e-09 4.98264e-09 1.5327e-09 1.77197e-09 3.67888e-10 1.07319e-09 1.80212e-10 -1.64055e-10 -1.4999e-10 1.77701e-10 -2.35463e-07 1.95171e-06 -3.15916e-07 6.70368e-07 -2.93698e-07 -4.08579e-07 -5.99484e-08 -1.88434e-06 -5.22641e-08 3.10398e-07 4.74515e-08 6.86051e-09 1.49498e-08 -4.39066e-07 -1.79877e-07 -1.25113e-06 5.23939e-08 -7.77846e-08 -2.84247e-08 2.65906e-07 -3.70402e-09 -5.52244e-08 2.62843e-09 -3.37077e-08 3.17044e-09 -2.13864e-08 2.41044e-08 8.87368e-08 2.24749e-09 4.94932e-08 5.34822e-09 -1.7787e-08 7.86295e-09 -5.29565e-08 4.45269e-08 -1.55436e-08 4.1939e-08 -1.45991e-07 1.33566e-08 -2.12974e-09 4.02189e-09 1.99611e-08 1.66134e-09 3.71774e-08 -1.69676e-09 1.03995e-08 -2.94224e-10 3.12917e-08 1.31795e-08 1.87914e-08 5.17526e-08 -4.7498e-08 4.6881e-08 -2.41284e-08 2.95289e-09 5.07834e-08 8.33969e-10 2.54994e-09 9.99131e-09 -3.80309e-08 1.1734e-08 -9.69934e-08 2.33275e-08 -1.15424e-07 3.49072e-08 -1.42225e-08 6.05003e-08 -6.61951e-09 8.16552e-08 -3.37103e-08 6.79584e-08 1.73873e-09 6.27421e-08 -3.60188e-09 7.50913e-09 2.02433e-08 4.37819e-10 1.70774e-09 1.97112e-10 3.5525e-10 1.89678e-10 -2.06994e-10 2.46542e-10 -2.40721e-10 2.05152e-07 1.08577e-09 1.45533e-07 2.1831e-07 4.60426e-08 1.1304e-07 2.03583e-08 -3.13667e-08 8.11503e-09 -4.92331e-08 5.91757e-10 3.08528e-09 1.59445e-10 -8.26789e-10 -4.18352e-10 3.51186e-10 -2.22202e-07 2.17417e-06 -3.06386e-07 7.49933e-07 -2.93206e-07 -4.20262e-07 -5.70666e-08 -2.10775e-06 -3.5025e-08 2.89485e-07 -2.54878e-09 -1.90415e-08 -1.50754e-08 -1.52576e-07 -3.29601e-07 -8.64548e-07 -9.92511e-08 9.18493e-08 -7.20677e-08 2.4444e-07 -3.37647e-09 -7.54032e-08 3.59215e-09 -1.29628e-07 1.51931e-08 -1.29481e-08 3.4112e-08 8.4903e-08 4.10405e-09 7.9273e-08 4.64491e-08 -8.79633e-08 1.06543e-08 -9.0591e-08 2.45314e-09 -1.02264e-08 4.5564e-08 -1.23549e-07 1.86626e-08 -7.86039e-10 4.29683e-09 3.25289e-08 -1.25652e-10 9.20505e-08 -4.18779e-09 1.4652e-08 4.91994e-09 1.24174e-07 3.47344e-08 -1.07008e-09 4.54423e-08 -6.60247e-08 5.70524e-08 -4.31553e-08 8.39437e-10 1.01216e-07 -7.61501e-10 1.93916e-08 -4.25847e-09 -1.928e-08 -4.96501e-09 -2.83901e-08 1.91069e-08 -1.08725e-07 3.78541e-08 -3.2812e-08 6.17855e-08 -3.0621e-08 7.62449e-08 -4.82028e-08 5.92275e-08 1.87519e-08 3.74156e-08 1.79745e-08 5.06947e-09 -9.92218e-09 8.74142e-10 4.2831e-09 2.76913e-10 9.05244e-10 3.88116e-10 -3.20684e-10 5.20942e-10 -3.36395e-10 1.57111e-07 -6.5645e-09 2.50973e-07 1.88592e-07 1.5807e-07 1.36591e-07 9.54866e-08 -3.91369e-08 4.24958e-08 -1.28711e-07 -3.52344e-10 -4.06165e-08 -1.9142e-11 -2.83546e-09 -1.13679e-09 5.75915e-10 -2.07269e-07 2.38167e-06 -2.91902e-07 8.34566e-07 -2.78719e-07 -4.15138e-07 -5.26593e-08 -2.35612e-06 5.03571e-08 1.768e-07 5.55861e-08 -2.59335e-08 3.09128e-09 -1.7948e-07 -1.47564e-07 -6.63013e-07 -6.52137e-08 2.4261e-07 -8.32993e-08 1.98466e-07 -1.54024e-09 -1.1176e-07 9.5219e-10 -3.77686e-08 2.9223e-10 -8.56981e-09 3.04244e-08 6.84558e-08 1.3451e-08 3.54739e-07 2.96049e-08 -6.23812e-08 5.12301e-09 -2.82757e-07 1.86718e-09 -8.16565e-09 4.35784e-08 -1.1553e-07 3.55339e-08 -3.76168e-08 9.925e-09 1.40547e-07 3.82551e-09 6.63786e-08 9.56266e-09 1.50957e-07 5.45769e-08 1.14116e-07 4.40667e-08 1.73987e-09 3.77152e-08 -6.70622e-08 5.06319e-08 -6.29079e-08 2.06143e-09 1.53639e-07 -6.45764e-10 3.41943e-08 -2.01318e-09 -2.28385e-09 -6.55838e-10 -1.41076e-08 7.75703e-09 -3.26152e-08 3.60676e-08 -5.70006e-08 3.64086e-08 -3.09528e-08 2.55298e-08 -1.55636e-08 5.18657e-08 2.46167e-09 6.54612e-08 3.99481e-09 4.14405e-08 -3.98016e-09 7.88092e-10 2.8492e-08 1.02346e-09 3.5913e-09 1.86727e-09 -1.30716e-09 2.20559e-09 -5.58497e-10 1.52219e-07 2.59352e-09 1.96236e-07 1.68533e-07 1.58631e-07 1.72323e-07 1.2416e-07 -6.51568e-09 8.48151e-08 -9.58333e-08 3.44485e-09 -3.96987e-08 -1.32492e-12 -4.40124e-09 -4.72306e-09 -1.74568e-09 -1.81626e-07 2.56603e-06 -2.67255e-07 9.09333e-07 -2.51377e-07 -4.41234e-07 -6.37244e-08 -2.57138e-06 1.30015e-07 -1.65459e-08 1.52248e-07 -1.00342e-07 9.42562e-09 -1.14776e-07 4.30628e-08 -6.82703e-07 9.6352e-08 1.04372e-07 -7.47368e-09 1.12592e-07 1.76142e-09 -7.747e-09 1.99141e-10 -8.23086e-09 -1.26095e-09 -3.58695e-09 3.22646e-08 3.99168e-09 2.74185e-08 3.72867e-07 2.80421e-08 -6.96762e-08 3.38257e-09 -3.13734e-08 2.71369e-09 -4.07235e-09 2.98248e-08 -3.43578e-08 4.7301e-08 -2.1381e-08 2.30121e-08 2.045e-07 1.39739e-09 5.54328e-08 1.47377e-08 4.24763e-08 3.43718e-08 8.5138e-08 2.83362e-08 1.73576e-09 1.96498e-08 -6.50684e-08 4.22764e-08 -9.20861e-08 1.0163e-08 1.75665e-07 1.723e-10 1.21935e-07 -8.38286e-10 -6.81722e-09 1.61737e-09 -5.93694e-10 2.93833e-09 -2.76842e-08 1.07139e-08 -1.78021e-08 -1.5842e-09 -2.07689e-10 -1.71758e-08 2.42104e-10 -4.56231e-10 -2.44036e-08 4.21629e-08 -3.8347e-08 5.35612e-08 -9.94033e-08 1.40121e-08 9.13778e-08 1.49124e-09 -5.08563e-09 2.75946e-09 -2.84705e-09 2.70755e-09 -4.19107e-10 1.17138e-07 9.97396e-09 1.67089e-07 1.66268e-07 1.38078e-07 1.98408e-07 1.10298e-07 1.56355e-08 6.81185e-08 -6.33564e-08 6.92203e-09 -2.21278e-08 -3.54072e-10 -4.44004e-09 -1.06737e-08 -4.74989e-09 -1.77946e-07 2.75145e-06 -2.61028e-07 1.00953e-06 -2.36188e-07 -4.66157e-07 -7.0775e-08 -2.70172e-06 3.16375e-08 -1.13673e-07 7.38347e-09 -6.44769e-08 1.64043e-08 -1.30787e-07 2.36169e-08 -6.33727e-07 3.19803e-07 -2.60057e-07 -7.99484e-10 3.32943e-07 3.82803e-10 -9.54309e-09 2.83488e-10 -8.70678e-09 -5.91758e-10 2.17795e-10 5.06464e-09 -4.4419e-10 2.66427e-08 3.65147e-07 1.36466e-08 -4.60679e-08 4.45789e-10 -1.51423e-08 6.61531e-10 -1.49653e-09 1.08071e-08 -2.36337e-10 4.28701e-08 -2.346e-08 2.16697e-08 1.06738e-07 -2.05212e-09 4.04875e-10 -2.72245e-09 1.93122e-09 2.80788e-09 -1.76465e-09 1.43472e-08 -7.38483e-11 8.54356e-09 -6.56632e-08 2.67314e-08 -1.16738e-07 2.39096e-08 1.72826e-07 6.69538e-09 1.85202e-07 2.31747e-09 -3.25369e-08 2.76386e-09 -2.65289e-08 2.05381e-09 -2.00322e-08 2.4847e-09 -1.35515e-08 -3.43614e-10 1.1332e-09 -4.70114e-09 5.40432e-09 -6.58577e-09 -4.32076e-09 5.69585e-08 -1.36952e-07 9.02029e-08 -1.39785e-07 1.86865e-08 -6.46032e-09 3.07525e-09 -6.55801e-09 2.71081e-09 -3.20274e-09 2.68332e-09 -6.29027e-10 9.8358e-09 2.0101e-09 1.85962e-07 1.5463e-07 1.32209e-07 2.42869e-07 1.02315e-07 3.61895e-08 6.10412e-08 -3.04907e-08 3.48826e-08 -4.39877e-08 -1.09859e-09 -3.29748e-09 -9.04735e-09 1.1953e-10 -1.74356e-07 2.9265e-06 -2.55599e-07 1.09606e-06 -2.23301e-07 -4.86536e-07 -2.23226e-08 -2.816e-06 1.19929e-07 -2.46886e-07 3.42127e-08 -7.30559e-08 2.16239e-08 -1.11867e-07 2.53776e-08 -4.76924e-07 2.39208e-08 -3.0643e-07 1.37766e-10 1.23612e-06 1.32952e-09 -3.41226e-09 3.59156e-10 -8.36538e-09 -1.00674e-10 -1.65497e-09 -3.44843e-09 -7.14648e-10 3.82225e-08 3.35398e-07 3.33353e-09 -2.60793e-08 9.1979e-10 -3.05351e-09 2.3336e-10 -9.43867e-10 1.06065e-10 -2.3452e-10 4.00989e-08 -3.92489e-08 9.23471e-09 -1.86089e-09 -6.69654e-10 6.32362e-09 -9.10408e-10 1.69042e-09 8.15823e-09 -6.45702e-10 1.27386e-08 3.8353e-10 2.49091e-09 -1.65622e-08 1.63846e-08 -1.35895e-07 2.61024e-08 1.80543e-07 3.52048e-08 1.69485e-07 7.18395e-09 -2.44413e-08 7.24183e-09 -8.99262e-08 4.86225e-10 -6.53276e-09 1.03545e-09 -1.1756e-08 4.12771e-09 2.45374e-11 2.9124e-09 7.46861e-09 2.12205e-08 -3.14773e-08 4.50291e-08 -1.62815e-07 8.66986e-08 -1.80134e-07 1.35319e-08 -4.46163e-08 -1.09631e-09 -5.47647e-09 8.67173e-10 -3.21246e-09 1.97185e-09 -2.56497e-09 2.38449e-09 1.52963e-09 1.62045e-07 1.62529e-07 1.42589e-07 2.53179e-07 1.23465e-07 4.61201e-08 9.42663e-08 -6.25735e-09 6.25354e-08 -4.18104e-08 1.23587e-09 -2.79507e-08 -1.46228e-08 3.80036e-10 -1.64395e-07 3.09154e-06 -2.31956e-07 1.16422e-06 -2.17809e-07 -4.85729e-07 -6.64173e-08 -3.04325e-06 1.81752e-07 -6.6647e-07 8.95387e-08 -9.52684e-08 1.16705e-08 -4.33254e-08 2.7311e-08 -2.28265e-07 -6.94939e-08 -2.17441e-07 -9.35986e-09 2.18134e-06 -2.46697e-10 -2.27939e-08 5.93619e-10 -1.01997e-08 -1.79598e-10 -7.97724e-09 -3.53287e-09 2.50662e-11 1.42394e-08 2.66073e-08 2.54272e-08 -1.45412e-07 2.02628e-09 -3.5468e-08 3.10625e-10 -9.20815e-10 9.46806e-11 -1.50436e-10 3.80133e-08 -5.61525e-08 4.16047e-09 5.20298e-10 -2.82004e-10 9.60599e-09 -2.04767e-09 3.02879e-09 -2.23343e-09 1.12736e-09 9.19309e-09 -6.06922e-09 -3.33362e-10 -9.55844e-09 1.5916e-09 -3.36482e-08 2.04371e-08 1.09469e-07 2.47732e-08 3.38706e-08 9.74948e-09 -1.15051e-08 -7.93888e-10 -6.78048e-08 -3.57738e-09 -4.99285e-08 -1.49755e-09 -1.67315e-08 -1.4078e-12 1.42836e-10 1.23124e-09 8.64306e-09 5.05942e-08 -1.12082e-07 4.96151e-08 -1.66653e-07 6.16435e-08 -1.95618e-07 2.07191e-08 -1.75771e-07 -2.69804e-09 -9.70468e-09 4.54439e-10 -3.91947e-09 2.42332e-11 -1.93216e-10 1.48775e-09 1.04549e-08 7.77767e-08 2.24467e-07 1.32089e-07 1.98617e-07 1.43934e-07 2.8217e-08 1.44109e-07 -1.38133e-08 1.16145e-07 -2.06152e-08 2.47366e-08 -3.6482e-08 -2.37962e-08 -5.71301e-10 -1.51477e-07 3.24387e-06 -1.98454e-07 1.21093e-06 -1.9639e-07 -4.85794e-07 -2.12074e-07 -3.03925e-06 2.78936e-08 -9.16186e-07 6.5731e-08 -1.93321e-07 -2.99545e-08 4.30692e-08 -9.93987e-08 -1.41722e-07 -3.07581e-08 -2.71604e-07 8.1789e-08 7.97901e-07 2.91399e-09 2.28904e-09 4.25921e-10 -8.31261e-09 6.8009e-10 -3.02404e-10 -2.73946e-10 1.07014e-09 3.10272e-10 2.71989e-08 1.64972e-08 -1.5687e-07 2.19924e-09 -8.84068e-08 3.65535e-10 -7.57894e-10 2.95441e-10 -1.21213e-10 2.97091e-08 -5.13424e-08 2.44601e-09 2.35236e-08 -8.91782e-11 1.17241e-08 -8.93585e-10 3.40451e-09 -1.0863e-09 -7.38659e-10 9.34035e-09 -1.65729e-08 -1.28862e-09 -1.35281e-09 -5.79881e-10 -3.54685e-08 3.77602e-08 8.2602e-08 1.91566e-08 5.04354e-08 9.90999e-09 -4.1596e-09 -4.93212e-09 -5.19958e-08 -7.20834e-09 -8.66697e-08 -3.15964e-09 -9.46217e-09 3.58608e-09 -1.34643e-09 1.87861e-08 1.6431e-08 7.15217e-08 -1.78099e-07 5.4246e-08 -1.50334e-07 2.98708e-08 -1.77854e-07 -5.71814e-09 -1.09456e-07 -4.81338e-10 -1.08786e-08 7.07653e-10 -6.86606e-09 2.18372e-09 -3.66938e-10 -1.57866e-09 2.18333e-08 9.51698e-08 2.51374e-07 1.39168e-07 1.51812e-07 1.61511e-07 2.01099e-09 1.72366e-07 -3.23958e-08 1.51705e-07 -5.6322e-09 3.89317e-08 -5.28164e-09 -3.10955e-08 -2.08724e-09 -1.3822e-07 3.38363e-06 -1.76585e-07 1.24375e-06 -1.3906e-07 -5.3523e-07 -1.46012e-07 -3.04351e-06 1.61398e-08 -1.01632e-06 -3.5734e-09 -7.52961e-08 -5.8536e-08 8.90187e-08 -1.9622e-07 -1.21566e-08 -1.18404e-08 -4.50601e-07 2.77345e-09 3.72045e-07 1.38357e-09 -2.65777e-08 3.50429e-10 -9.12242e-09 1.30612e-10 -2.15784e-10 3.79856e-09 4.00169e-09 9.25458e-10 3.15531e-08 2.50095e-08 -1.76063e-07 3.19955e-10 -4.81583e-08 2.28099e-10 -6.96475e-10 1.30394e-10 -8.09184e-11 4.58006e-09 -4.53236e-10 5.56993e-09 1.27787e-07 -6.90367e-11 1.69446e-08 -5.86465e-10 3.5283e-09 -1.77544e-09 -9.34886e-10 -2.35845e-09 -7.08671e-09 -4.6722e-09 2.20611e-11 -3.3947e-09 -3.87935e-08 2.37416e-08 5.68019e-08 1.63845e-08 5.60231e-08 8.76812e-09 1.72209e-09 1.34041e-09 -3.90844e-08 -3.62577e-09 -8.45373e-08 1.27792e-10 -6.27656e-09 2.07491e-09 -3.3909e-09 1.08834e-07 3.97103e-10 9.28549e-08 -1.64933e-07 5.12759e-08 -1.229e-07 2.68512e-08 -1.50307e-07 1.79131e-09 -5.15438e-08 1.3784e-09 -7.82671e-09 5.22504e-11 -4.51168e-09 -5.01717e-11 4.57184e-10 5.60086e-08 5.13614e-08 1.79102e-07 1.19619e-07 1.75748e-07 1.41581e-07 1.79105e-07 -2.68195e-09 1.82535e-07 -3.77338e-08 1.6627e-07 3.08041e-09 5.65431e-08 1.42971e-08 -2.50395e-08 2.74222e-09 -1.25244e-07 3.50889e-06 -1.51826e-07 1.27835e-06 -8.97294e-08 -5.99563e-07 -2.01519e-08 -3.12295e-06 1.09921e-07 -4.73095e-07 1.69916e-08 -5.48511e-08 -2.27058e-08 3.23918e-08 -4.38287e-08 -8.96215e-08 9.86492e-08 -4.23686e-07 1.6911e-09 2.38737e-07 4.38894e-09 -1.04994e-07 3.68287e-10 -4.81815e-09 2.15202e-10 -2.21599e-10 1.09099e-08 6.96469e-09 2.72564e-09 1.97506e-07 3.61235e-08 -2.06072e-07 2.25663e-11 -9.1006e-09 -5.13798e-11 -5.1687e-10 7.09904e-11 1.42999e-12 9.42815e-11 -8.94691e-11 1.18051e-08 1.83892e-07 -1.96239e-10 2.03721e-07 -1.92792e-10 3.59051e-09 -6.64922e-10 -6.31322e-10 -3.262e-09 6.86567e-12 -3.79556e-09 1.06679e-09 -1.76119e-08 -1.84119e-08 1.99301e-08 2.04157e-08 1.98244e-08 5.13386e-08 1.63725e-08 2.21563e-08 6.91639e-09 -3.16182e-08 9.00946e-09 -8.93158e-08 5.82462e-10 -1.05616e-09 1.55662e-09 -4.44959e-09 3.60259e-08 -1.41481e-09 6.28515e-08 -1.82007e-07 5.49358e-08 -1.14555e-07 3.90371e-08 -1.41187e-07 5.91338e-09 -4.52511e-08 3.58492e-10 -4.27786e-09 -2.40343e-10 2.49376e-10 -9.02469e-09 -1.81876e-09 8.78666e-08 2.96447e-08 1.43794e-07 6.84241e-08 1.60939e-07 1.12167e-07 1.50087e-07 1.49989e-09 1.49938e-07 -3.91467e-08 1.24701e-07 2.68066e-08 3.65279e-08 4.91096e-09 -2.55606e-08 7.5627e-09 -1.15438e-07 3.62435e-06 -1.33619e-07 1.29955e-06 -5.50693e-08 -6.62388e-07 1.00206e-07 -3.07547e-06 -4.12839e-09 -4.39403e-07 -2.06433e-08 -2.40742e-08 1.64393e-08 5.32396e-08 6.16482e-08 -9.79344e-08 3.96613e-08 -2.53258e-07 1.10121e-09 2.57422e-07 2.39033e-09 -1.01734e-07 3.0308e-10 -2.38168e-09 1.87797e-10 -1.60455e-10 4.78446e-09 -3.45648e-10 1.36048e-08 2.2575e-07 2.91975e-08 -2.23514e-07 -2.84645e-10 3.5417e-09 1.08429e-11 -6.84755e-10 1.19455e-10 -2.65005e-11 6.22525e-11 -7.57681e-11 1.16107e-08 1.85664e-07 2.11576e-09 7.27728e-08 -1.45221e-11 3.3419e-09 -1.03078e-09 -3.99189e-10 -1.41139e-09 4.54777e-09 -9.94622e-10 -1.69674e-10 -9.07048e-09 -6.9716e-09 2.97674e-09 -7.13953e-09 3.39258e-08 3.89658e-08 2.50725e-08 5.03699e-08 1.53622e-08 -2.27819e-08 8.07061e-09 -8.23888e-08 1.50582e-10 -7.77019e-10 1.28708e-10 -4.49077e-09 1.58977e-09 -2.99774e-09 4.13014e-08 -2.12961e-07 4.70243e-08 -1.20286e-07 2.48519e-08 -1.25807e-07 4.64917e-09 -2.93349e-08 6.17639e-10 -2.02048e-09 -8.72191e-10 1.55732e-09 -2.78615e-08 1.87648e-08 -8.78825e-10 -1.93098e-09 -8.81065e-10 6.00852e-08 8.54767e-08 6.15938e-08 1.11406e-07 -2.34999e-08 1.31272e-07 -5.96398e-08 1.21973e-07 3.27878e-08 3.95996e-08 -3.54057e-09 -2.43861e-08 1.27863e-08 -1.06799e-07 3.73116e-06 -1.20309e-07 1.31307e-06 -4.50393e-08 -6.80027e-07 1.50618e-07 -3.53338e-06 -3.11316e-08 -3.23874e-07 -2.75676e-08 1.90831e-08 3.77304e-09 5.70495e-09 1.12217e-07 -1.63545e-07 3.24382e-08 -2.31848e-08 4.68476e-09 2.25415e-07 2.1935e-09 -9.31421e-08 1.74813e-10 -2.26369e-08 -7.32362e-12 -9.14931e-11 -5.59591e-10 6.08153e-10 1.20927e-08 2.17884e-07 6.89919e-09 -1.93432e-07 1.26535e-09 -2.83816e-08 -1.22851e-13 -4.27233e-10 2.49883e-10 -5.40318e-11 1.56835e-10 -5.74574e-11 2.45163e-08 1.88486e-07 1.77091e-09 4.40452e-08 2.76866e-10 4.43194e-09 -3.6244e-10 -1.20007e-10 -1.56513e-09 1.50382e-10 -6.67735e-10 1.36123e-10 -7.26904e-10 -3.38393e-09 -1.47299e-08 -3.12922e-09 3.13707e-08 6.9701e-10 2.64723e-08 5.70457e-08 1.94712e-08 -1.72019e-08 5.48202e-09 -7.17244e-08 7.20865e-10 -1.24339e-08 -6.67822e-11 -3.93225e-09 3.16326e-10 -1.39565e-09 2.64528e-08 -7.80746e-08 3.77632e-08 -1.36341e-07 1.73484e-08 -1.10503e-07 6.82918e-10 -2.38879e-08 3.23716e-10 -2.0329e-09 1.92964e-09 3.32232e-10 1.26091e-08 3.07549e-08 8.86003e-10 2.27571e-08 5.89096e-09 7.15652e-08 8.58371e-08 1.80178e-08 1.01714e-07 -4.32035e-08 1.04533e-07 -6.91284e-08 9.38306e-08 -2.30967e-08 2.39403e-08 -1.20569e-08 -2.50672e-08 1.6926e-08 -9.7583e-08 3.82876e-06 -1.02843e-07 1.31834e-06 -6.7252e-08 -7.83413e-07 5.91603e-08 -3.63198e-06 -5.65492e-08 -1.9639e-07 6.25917e-09 -2.68916e-08 1.87337e-08 -5.55579e-09 2.9943e-08 -1.04681e-07 5.57184e-08 -1.87718e-07 6.72279e-09 2.41044e-07 3.37293e-09 -4.83179e-08 5.46167e-10 -3.27766e-08 -2.55377e-11 -1.61949e-10 8.9907e-11 9.49967e-10 9.80833e-09 2.12232e-07 2.73398e-09 -1.82225e-07 3.50539e-10 -9.73892e-08 5.53142e-11 -2.85366e-10 5.69587e-11 -5.75315e-11 1.08738e-10 -1.11749e-10 1.04379e-08 2.17207e-07 1.82974e-09 5.20797e-08 3.66416e-10 5.55475e-09 -2.43217e-10 1.69298e-10 -9.95098e-10 -8.74728e-11 -3.25844e-10 3.12946e-10 -6.94873e-10 -1.70877e-09 -1.83373e-09 -6.87894e-10 1.14428e-08 -1.27527e-08 2.63785e-08 3.8265e-08 2.15105e-08 -1.56218e-08 5.72983e-09 -6.54768e-08 3.43858e-10 -4.09841e-08 4.55971e-10 -4.07407e-09 1.09887e-09 -2.03225e-09 1.51978e-08 -3.48673e-08 4.24534e-08 -1.67204e-07 2.8085e-08 -1.10362e-07 4.63289e-10 -1.22317e-08 7.45667e-10 -1.98137e-09 2.35233e-09 -5.13186e-10 9.36046e-08 4.03623e-08 9.49947e-08 7.58364e-08 6.74964e-08 1.58377e-07 8.05887e-08 1.83633e-08 8.95309e-08 -6.12164e-08 6.51395e-08 -4.98429e-08 6.20644e-08 -5.25568e-08 2.20061e-08 -3.44807e-08 -2.04285e-08 1.44459e-08 -8.7439e-08 3.91621e-06 -9.38599e-08 1.3196e-06 -6.71341e-08 -8.09071e-07 -1.45883e-08 -3.64566e-06 -4.37509e-08 -1.05222e-07 1.98636e-09 -5.89552e-08 5.1586e-10 -2.73982e-09 1.82204e-08 -5.15412e-08 6.41621e-08 -2.59929e-07 7.29021e-09 2.54924e-07 2.48711e-09 -7.18592e-08 2.16422e-11 -3.55734e-08 9.21419e-11 -1.84457e-10 5.85885e-10 1.49741e-09 9.02122e-09 2.07687e-07 -3.56559e-11 -1.69653e-07 1.17849e-10 -2.45375e-08 3.12956e-11 -1.97753e-10 3.80593e-11 -6.61242e-11 2.90118e-11 -1.03607e-10 1.35614e-08 2.32481e-07 2.29695e-09 1.05163e-07 2.53266e-10 7.82721e-09 1.3348e-10 7.40613e-10 -4.12845e-10 3.97048e-10 -4.82693e-11 1.18523e-10 -1.24058e-09 -6.11107e-10 -4.25861e-09 -6.48516e-10 3.95803e-09 -5.20012e-08 2.13822e-08 2.07448e-08 2.04085e-08 -1.46385e-08 1.49168e-08 -8.31033e-08 1.52349e-09 -3.1426e-08 1.3816e-09 -3.86553e-09 1.0786e-09 -1.71921e-09 2.04671e-08 -1.98024e-08 3.02304e-08 -1.78438e-07 1.16793e-08 -1.20243e-07 6.58103e-10 -9.34827e-09 2.59423e-10 -1.40994e-09 3.2248e-09 -3.51533e-10 7.62562e-08 3.10458e-09 1.18964e-07 4.29172e-08 9.60488e-08 1.77721e-07 6.96687e-08 3.71022e-08 6.98982e-08 -6.82726e-08 6.23684e-08 -4.52943e-08 4.79044e-08 -6.14103e-08 9.70383e-09 -3.74688e-08 8.67924e-09 -1.89679e-08 1.62295e-09 -9.13528e-11 4.33456e-09 -1.34915e-10 4.94178e-09 -1.04583e-10 5.50829e-09 -3.15292e-11 2.9646e-09 3.16343e-10 2.96405e-11 4.41099e-10 3.77784e-13 2.9265e-11 -1.31488e-13 6.50698e-13 4.59638e-14 1.55092e-13 9.96269e-15 4.13712e-15 -3.27004e-13 3.37125e-13 -2.20434e-11 2.17164e-11 -5.35079e-09 -9.43921e-09 -7.67411e-10 -3.65061e-09 5.37014e-09 -6.22439e-09 3.14836e-08 -2.42614e-08 6.20583e-08 -5.67951e-08 -3.75841e-09 1.21034e-07 -6.96971e-11 1.10868e-10 1.12192e-10 -1.02021e-09 2.23814e-09 -1.81825e-09 3.22783e-09 4.04622e-09 -4.84406e-11 4.42628e-09 -4.67805e-15 4.55507e-10 -3.55489e-15 -1.12316e-15 9.98486e-15 -9.07526e-14 1.65802e-10 8.94145e-12 1.79853e-12 1.64004e-10 -2.24727e-11 6.03839e-09 -4.48565e-11 7.77782e-11 2.60971e-11 -7.45773e-11 -3.32294e-09 5.90023e-09 -5.7705e-09 -1.04501e-08 9.75264e-09 -3.12612e-08 1.28189e-08 3.90231e-11 8.77843e-09 1.31022e-09 6.80847e-09 -1.20367e-10 4.51113e-11 6.76336e-09 -4.62591e-08 4.80992e-08 -1.22874e-08 -1.55675e-08 2.41233e-08 -2.8359e-08 6.10104e-08 -2.83661e-08 -1.08965e-09 1.19926e-07 -1.94197e-07 1.05267e-07 4.7664e-08 -2.86574e-08 3.79239e-07 2.94499e-08 1.35929e-07 3.24768e-07 2.24554e-07 -8.4747e-08 2.63925e-07 -3.91937e-08 2.63974e-07 8.20601e-10 -1.45802e-10 3.99452e-10 -1.16269e-10 3.0117e-10 -4.35398e-11 2.34277e-09 -1.90243e-11 2.35024e-09 1.7292e-10 5.63083e-11 8.12201e-10 3.12233e-12 7.60187e-11 -8.38991e-13 4.719e-12 -2.76236e-14 2.03788e-13 2.34597e-13 2.49706e-14 -3.35056e-13 9.07018e-13 -2.11602e-09 2.99501e-10 5.01229e-08 -9.35864e-08 1.47543e-07 -6.91667e-08 -1.22912e-07 2.72742e-07 -1.39803e-07 -1.60896e-08 -8.88692e-09 -2.24115e-07 -4.49246e-10 1.43667e-07 -2.63908e-09 5.99642e-09 -1.05274e-08 -1.17047e-10 -1.51868e-08 -1.65689e-10 -1.97715e-08 1.75603e-08 -4.5611e-10 1.48847e-09 -4.10735e-13 -1.7232e-13 -7.24138e-14 -3.39289e-13 3.05953e-13 -4.46879e-13 4.1143e-10 -4.01066e-10 9.64648e-09 6.50814e-09 6.11264e-09 1.11464e-08 -6.46045e-11 3.15427e-09 -1.95384e-10 5.96526e-11 -1.98796e-08 1.90296e-08 2.03538e-08 -4.89073e-08 2.39163e-08 -3.28203e-08 -6.94798e-10 2.64603e-08 -7.31641e-09 1.89415e-09 -4.59759e-09 -1.63849e-08 -1.12463e-08 2.44441e-07 -5.45867e-08 1.88905e-07 -2.3475e-08 -4.51159e-08 1.64329e-08 -7.99512e-08 9.41165e-08 -8.68942e-08 4.62789e-08 2.08652e-07 -2.42244e-08 2.03051e-07 1.1716e-07 -1.90685e-07 3.22725e-07 -3.32793e-07 5.14309e-07 6.90036e-07 2.8023e-07 3.15596e-07 2.76392e-07 -3.70799e-08 5.40301e-07 3.59814e-10 -7.27492e-11 2.28071e-10 -3.04411e-11 1.89543e-10 -5.47841e-12 3.01254e-10 7.8337e-12 8.27042e-10 3.76097e-10 1.29779e-10 9.90244e-10 5.27521e-12 1.96344e-10 1.42445e-13 9.69895e-12 3.76421e-14 2.95986e-13 3.05615e-14 3.59125e-14 8.92924e-13 2.75188e-14 2.98137e-10 2.22124e-12 -2.60013e-08 -2.87737e-08 -3.20651e-08 -7.81599e-08 -6.26728e-08 3.0335e-07 -1.16399e-07 3.76359e-08 -1.17041e-07 -2.23474e-07 2.87804e-08 -3.78024e-08 3.95317e-09 1.06425e-08 -4.14805e-09 1.6401e-09 -7.01889e-09 5.94771e-09 -1.13838e-08 2.19082e-08 -6.04898e-12 1.0238e-09 -4.64439e-13 -1.08238e-12 -1.28117e-12 4.9663e-13 5.02691e-11 2.49097e-12 1.67119e-09 1.0878e-09 9.54405e-09 -1.21083e-09 2.77283e-09 1.9364e-08 3.19484e-10 1.02948e-08 7.29189e-10 -4.59355e-10 3.79335e-09 4.40922e-09 1.22375e-08 -7.40024e-09 7.22345e-10 -1.95817e-08 -3.3572e-08 1.17937e-07 -8.8773e-08 -4.46564e-09 -1.23219e-07 -3.27847e-08 -1.65867e-07 2.67411e-07 -4.21992e-08 1.08861e-07 -2.46265e-08 -7.07189e-08 -3.33052e-08 -7.98089e-08 5.61812e-09 -1.89333e-07 5.56342e-08 1.61323e-07 2.37017e-08 3.42583e-07 -3.13085e-09 -1.12778e-07 -1.82422e-07 -8.74118e-08 1.16987e-07 7.11221e-07 2.11112e-07 2.30667e-07 2.7943e-07 -1.05749e-07 8.19742e-07 1.49539e-10 -7.72627e-11 1.45039e-10 -2.72735e-11 1.35006e-10 1.26964e-11 1.0416e-09 1.05244e-10 2.15318e-09 8.46075e-10 1.57955e-09 1.69525e-09 2.52681e-11 1.044e-09 1.19127e-12 3.2488e-11 8.12614e-14 1.35453e-12 2.51908e-14 7.71741e-14 1.9583e-14 1.74534e-14 5.21099e-09 1.7926e-09 9.67068e-08 -9.68416e-08 1.76415e-08 9.05889e-10 6.71531e-09 3.14276e-07 -6.59216e-09 5.09429e-08 -7.62612e-08 -1.53805e-07 5.32673e-08 -2.02492e-07 -1.93345e-09 1.40153e-08 -9.16205e-09 4.32396e-09 -8.4468e-09 7.43859e-09 -1.48196e-09 1.44789e-08 -4.69036e-11 3.16726e-09 -1.03002e-11 -2.91891e-11 -6.0571e-11 5.51319e-11 -3.27484e-10 3.02246e-11 1.30101e-09 -5.77891e-09 1.26887e-09 -1.04294e-09 2.44231e-09 1.95194e-08 -1.36719e-09 2.42232e-08 -1.01351e-08 1.50723e-09 4.6676e-09 -9.96466e-10 9.40623e-10 -3.89076e-09 -1.24451e-08 4.81072e-09 -4.07698e-08 4.79262e-08 -9.43707e-08 -9.07507e-08 -1.40818e-07 -6.97847e-09 -1.03861e-07 2.0461e-07 -4.63738e-08 9.87377e-08 -1.70051e-08 -1.07466e-07 6.0189e-09 -1.1129e-07 -1.90145e-08 -1.21128e-07 4.50847e-08 1.09962e-07 1.13093e-07 2.81234e-07 6.91386e-08 -8.4089e-08 5.50437e-08 1.51789e-08 -1.05931e-07 8.965e-07 1.76535e-07 -5.5019e-08 2.63556e-07 -1.9082e-07 1.08341e-06 1.44085e-10 -8.23535e-11 1.37974e-10 -2.4063e-11 1.29073e-10 2.07466e-11 2.09682e-09 5.72615e-10 1.69925e-09 1.35698e-09 1.45348e-09 2.05883e-09 7.25312e-12 1.007e-09 2.96211e-12 3.5318e-11 5.43524e-13 3.71821e-12 2.50874e-14 5.82024e-13 5.17282e-15 2.29179e-14 9.11386e-09 9.3006e-09 3.37881e-08 -1.02946e-07 -3.68818e-09 3.83818e-08 2.44307e-08 2.86157e-07 8.03287e-08 -4.95539e-09 7.61521e-08 -1.49629e-07 3.0489e-08 -1.90051e-07 7.59573e-10 5.89751e-09 -3.89851e-09 5.362e-09 -4.90858e-09 8.73323e-09 -4.41414e-10 9.92611e-09 -2.4065e-10 1.98424e-09 -9.36009e-11 8.15415e-12 3.03224e-11 -3.1595e-10 -1.7551e-09 -3.64375e-10 2.34502e-09 -4.16894e-08 -1.33232e-10 3.43983e-13 -1.7382e-09 8.19019e-09 -6.20647e-09 2.32636e-08 -1.42793e-08 3.35376e-09 3.53037e-09 -3.80693e-08 5.78611e-10 -1.23123e-09 -3.68996e-09 1.08608e-09 1.44441e-09 4.66995e-08 -2.52445e-08 -8.45758e-08 -4.43732e-08 -3.94714e-10 -3.56388e-08 1.62547e-07 -7.31935e-08 9.46672e-08 -1.79655e-08 -1.08882e-06 2.8794e-09 -1.02485e-07 -6.71671e-09 -5.27905e-08 2.07015e-08 5.87064e-09 3.51636e-08 2.46996e-07 1.89489e-08 -8.17871e-08 1.15296e-08 2.1184e-07 -1.23512e-07 1.0361e-06 1.48472e-07 -3.30751e-07 2.40483e-07 -2.82583e-07 1.32449e-06 1.82156e-10 -9.86086e-11 1.71741e-10 -2.27756e-11 1.63682e-10 2.74273e-11 1.51524e-09 5.03437e-10 1.33095e-09 1.64302e-09 1.2106e-09 2.29014e-09 -8.7752e-12 6.6201e-10 -4.24489e-12 4.59456e-11 1.35414e-12 2.9577e-11 2.57143e-12 1.59564e-11 -1.02978e-11 1.29054e-11 1.02443e-08 9.1551e-09 4.8787e-09 -8.70089e-08 -1.70895e-08 6.02945e-08 2.44495e-08 2.44609e-07 7.81234e-08 -5.86312e-08 8.67701e-08 -1.58276e-07 6.58691e-08 -1.6915e-07 -1.33249e-09 1.48072e-08 -1.69848e-10 5.64894e-09 2.3854e-09 6.27605e-09 1.00098e-08 2.49368e-09 -2.13233e-10 5.27738e-09 -2.43597e-10 1.84266e-10 -2.51082e-10 -3.32766e-10 -5.44865e-09 6.37412e-10 1.33129e-09 -4.76414e-08 8.72281e-10 -1.53478e-09 7.85097e-10 1.54864e-09 -1.1628e-09 3.4135e-08 -2.08664e-08 1.30365e-08 -1.87034e-09 -4.66156e-08 -6.46953e-10 -2.50486e-09 1.18025e-09 -3.83345e-10 2.02264e-08 -3.04823e-09 4.1904e-08 -6.51169e-08 -1.23656e-08 9.779e-08 -2.22476e-08 1.49588e-07 -1.88192e-07 1.6316e-07 -6.90484e-09 -1.2173e-06 -7.79083e-09 -1.3488e-07 -3.84289e-09 -1.95626e-08 1.97539e-08 -3.13044e-08 1.33978e-08 5.49675e-07 1.23659e-08 -9.36284e-08 -9.30873e-08 4.43327e-07 -1.18047e-07 1.06521e-06 1.3366e-07 -5.64237e-07 2.20353e-07 -3.64952e-07 1.54466e-06 2.64814e-10 -6.38755e-11 1.67198e-10 3.33487e-11 1.55026e-10 3.73678e-11 9.76278e-10 2.92412e-10 1.2632e-09 1.34318e-09 8.91961e-10 2.18028e-09 -1.02536e-11 2.03294e-10 -8.34084e-13 8.28339e-11 7.10321e-12 1.01692e-10 1.48708e-11 4.19629e-11 -2.06958e-10 1.98498e-10 1.5824e-09 1.38796e-08 3.60783e-10 -7.96932e-08 -8.73756e-09 6.93925e-08 3.59064e-08 1.99936e-07 7.86912e-08 -1.01413e-07 8.40333e-08 -1.63618e-07 4.63543e-08 -1.49674e-07 -3.34983e-09 3.50678e-08 -2.44587e-10 2.31281e-09 9.63351e-09 -3.0285e-09 1.43923e-08 -4.07398e-08 6.75393e-10 5.41519e-09 2.35229e-10 7.4348e-10 -1.10067e-09 3.24279e-10 -3.95809e-09 -8.08476e-09 -2.73583e-09 -4.81163e-08 4.31625e-09 -9.94482e-09 7.31333e-10 4.95259e-09 -2.96849e-09 3.54018e-08 -1.68568e-08 1.79416e-08 -1.26794e-08 -4.11921e-08 -8.03674e-10 -2.06408e-08 -1.8426e-10 -8.2394e-10 4.83954e-10 1.36011e-09 1.6288e-08 -4.69877e-08 -1.7769e-08 1.33065e-07 -1.19183e-08 8.50559e-07 -9.98523e-08 1.70429e-07 -1.29134e-08 -1.25111e-06 -5.44414e-09 -1.90459e-07 -3.63127e-08 -2.33691e-08 2.5311e-08 -1.08153e-07 -1.53545e-08 6.80537e-07 5.40301e-09 -1.27866e-07 -1.44369e-07 6.17642e-07 -8.70551e-08 1.01162e-06 1.32694e-07 -7.85366e-07 2.00903e-07 -4.2713e-07 1.74507e-06 1.11449e-09 -4.25869e-09 1.7059e-10 -2.38172e-10 1.20441e-10 7.62219e-11 1.93055e-10 1.57986e-10 6.34456e-10 3.83208e-10 2.48756e-10 8.72445e-11 -1.08723e-12 2.53883e-11 6.52422e-12 4.44964e-11 1.31889e-11 9.60465e-11 8.95738e-12 2.38261e-11 7.69392e-11 8.6316e-11 1.47314e-09 1.30564e-08 -9.78173e-09 -6.97172e-08 -2.70932e-10 5.98817e-08 5.55026e-08 1.44189e-07 8.3558e-08 -1.29469e-07 7.54601e-08 -1.55521e-07 4.9948e-08 -1.39673e-07 -5.25553e-10 6.35376e-08 -2.17209e-10 1.78042e-09 6.57081e-09 -2.52073e-09 8.57551e-09 -6.09251e-08 1.34317e-09 8.56802e-09 5.47424e-10 1.42316e-09 -4.02309e-09 2.80437e-09 -4.35897e-09 -1.77594e-08 -9.03872e-09 -4.11067e-08 -3.18517e-10 -1.70351e-08 -5.97481e-11 4.89894e-09 -5.16154e-09 1.85753e-08 -1.31961e-08 5.32891e-08 -1.09558e-08 -3.46113e-08 -1.67908e-09 -1.32437e-08 -1.19095e-09 -1.24676e-09 -1.01187e-09 2.23983e-09 -1.2876e-08 -5.70732e-08 -3.5355e-08 1.56408e-07 -1.10797e-08 8.47334e-07 -5.34015e-08 1.30172e-07 -3.59673e-08 -1.19462e-06 3.14449e-08 -3.74454e-08 5.93865e-08 -8.31351e-08 1.62531e-07 1.17401e-08 7.88073e-08 8.53332e-07 9.25547e-08 -1.89522e-07 -5.86323e-08 1.04677e-06 -5.14293e-08 1.00206e-06 1.39446e-07 -9.77515e-07 1.85242e-07 -4.66145e-07 1.93053e-06 8.04586e-10 -1.13555e-08 6.96064e-10 -2.9232e-09 1.40809e-10 5.77735e-10 8.14372e-11 1.27614e-10 1.40159e-10 1.75891e-10 4.77233e-11 1.18944e-10 1.58979e-11 4.58523e-11 1.92789e-11 1.67142e-11 1.38001e-11 3.90135e-11 5.56665e-12 1.14819e-11 1.33936e-12 7.97604e-11 -1.27809e-09 1.24135e-08 -2.00129e-08 -5.40505e-08 8.15742e-09 3.17113e-08 7.49287e-08 7.74176e-08 9.26688e-08 -1.4721e-07 6.62515e-08 -1.29104e-07 2.13872e-08 -1.08441e-07 -1.42077e-09 7.83898e-08 -2.00615e-09 2.1769e-09 1.27271e-09 -5.83749e-09 1.34875e-09 -4.46869e-08 8.71508e-10 6.50419e-09 4.13026e-10 1.51679e-09 -2.00939e-09 5.77821e-09 -2.08382e-09 -2.72397e-08 -3.7338e-09 -3.13476e-09 -4.34431e-10 -8.04055e-09 -6.12771e-10 8.4326e-09 -4.44873e-09 3.85645e-09 -8.3059e-09 4.10362e-08 7.11829e-09 -4.69094e-09 4.97187e-11 -6.11831e-09 -1.02405e-09 -1.50061e-10 -4.2697e-09 1.7232e-09 -4.85117e-08 -4.57112e-08 -3.47945e-08 1.15655e-07 -1.55732e-08 7.29776e-07 -6.88414e-08 1.30758e-07 -2.92942e-09 -1.34068e-06 -7.84622e-09 -4.20795e-08 5.1389e-08 -1.48899e-07 1.79458e-07 -1.84146e-08 1.70753e-07 6.00469e-07 3.89781e-08 -1.79274e-07 2.30502e-08 1.74781e-06 -1.14429e-08 1.0372e-06 1.44987e-07 -1.18194e-06 1.68408e-07 -4.75822e-07 2.10094e-06 1.07713e-10 -9.04825e-09 3.61332e-09 -3.49698e-09 1.34463e-09 3.26654e-09 2.96518e-10 2.69501e-09 7.2667e-11 3.79663e-10 2.27443e-11 1.57476e-10 9.1736e-12 5.79838e-11 5.97899e-12 1.74604e-11 9.14937e-12 1.37238e-11 6.46598e-12 1.43819e-11 -1.58648e-10 2.43575e-10 -8.28912e-10 8.8322e-09 -1.87996e-08 -4.1941e-08 1.24878e-08 4.2377e-10 8.92296e-08 6.7571e-10 1.03752e-07 -1.61733e-07 6.37623e-08 -8.91143e-08 1.81374e-08 -7.10984e-08 -4.01866e-09 9.22155e-08 -4.48476e-09 2.45388e-09 2.55936e-09 -2.39671e-08 -4.23148e-09 -2.847e-08 -1.30137e-10 2.7107e-09 3.20608e-12 1.12251e-09 -3.32328e-09 7.05343e-09 -5.27308e-10 -1.31506e-08 -6.16623e-10 -3.16026e-09 -3.5815e-10 -5.43388e-09 -4.58838e-11 1.24683e-08 -5.81692e-10 1.16466e-08 -2.93099e-09 2.5864e-08 3.7974e-09 -1.49918e-08 -1.70268e-10 -2.09393e-09 -1.14263e-09 8.23244e-10 -1.85698e-09 2.45955e-09 -4.23432e-08 -1.35668e-08 -5.32215e-08 6.40578e-08 -1.55524e-08 4.79673e-07 -5.9981e-08 1.2455e-07 -1.8032e-09 -1.5295e-06 -1.96688e-08 -3.33039e-08 -1.99798e-07 -5.3261e-08 1.04144e-08 -2.71925e-07 8.19032e-08 5.80438e-07 1.95943e-08 -2.26756e-07 4.60533e-08 2.26428e-06 8.4044e-09 1.07496e-06 1.46099e-07 -1.31946e-06 1.5348e-07 -4.8726e-07 2.25591e-06 4.92332e-10 -9.50549e-09 1.82838e-09 -5.04213e-09 3.88449e-09 3.85698e-09 4.68809e-09 8.53736e-09 3.58352e-10 5.23716e-09 3.45695e-11 4.86084e-10 7.50798e-12 8.36322e-11 3.538e-12 2.04248e-11 3.48819e-12 1.43802e-11 3.89889e-12 1.44782e-11 1.60764e-11 2.31519e-10 -2.60544e-09 5.12013e-09 -2.47857e-09 -4.5807e-08 2.73495e-08 -2.94043e-08 1.03705e-07 -7.56802e-08 1.13694e-07 -1.71722e-07 5.91745e-08 -3.45952e-08 -1.25946e-08 1.27953e-08 -5.7021e-09 7.74196e-08 -5.45331e-09 1.9603e-09 5.21994e-09 -3.98378e-08 -5.85501e-09 -2.48428e-08 -6.69686e-10 1.79153e-09 -7.48992e-10 9.77916e-10 -8.67052e-10 8.3274e-09 -5.72998e-10 -7.64049e-10 -1.09524e-09 -2.7105e-09 -1.8686e-09 -2.62379e-09 -6.39246e-11 9.29356e-09 -3.35597e-09 7.574e-09 -5.50512e-09 1.1759e-08 -9.10117e-10 -4.37269e-09 -1.08465e-09 -9.12274e-10 -9.606e-10 6.97432e-10 -1.42071e-09 2.92057e-09 -1.39675e-09 -4.44624e-09 -3.27465e-08 -4.33163e-09 -6.16673e-08 2.79835e-07 -4.46527e-08 6.01958e-07 -8.25677e-10 -1.37054e-07 -8.0962e-09 -3.39835e-08 -5.98388e-08 -1.86042e-08 -1.66861e-07 -1.16043e-06 3.34816e-07 5.24755e-07 1.06677e-07 -3.21393e-08 4.98271e-08 2.55341e-06 -1.45916e-09 1.09426e-06 1.35931e-07 -1.45669e-06 1.34539e-07 -4.89597e-07 2.39182e-06 6.60603e-10 -1.00297e-08 1.68169e-09 -6.20558e-09 1.10234e-08 3.08449e-09 1.01942e-08 1.25199e-08 1.16474e-09 2.26745e-08 1.70172e-10 2.4842e-09 9.47228e-12 2.47061e-10 2.67569e-12 2.72261e-11 1.92468e-12 1.48862e-11 1.85444e-12 1.49064e-11 7.2456e-11 1.30011e-10 -3.0174e-09 4.58286e-09 1.17204e-09 -5.86756e-08 6.04917e-08 -8.82698e-08 1.21005e-07 -1.36193e-07 1.15678e-07 -1.66396e-07 5.54237e-08 2.56593e-08 -1.79878e-08 1.00191e-07 -3.92798e-09 5.64841e-08 -4.14359e-09 1.94721e-09 -8.12868e-10 -1.11761e-08 -3.91111e-09 -1.6587e-08 -1.34904e-10 6.99745e-09 -2.12065e-10 8.68607e-10 -3.23813e-10 9.25283e-09 -7.66364e-10 -4.20051e-10 -1.41142e-09 -2.17045e-09 -2.61837e-09 -7.13842e-09 -1.29441e-09 6.65074e-09 -1.92775e-09 4.79407e-09 -5.8672e-09 -1.0928e-09 -1.00949e-09 -4.46922e-08 -1.49253e-09 -4.2476e-10 -7.1026e-10 -8.49448e-11 -8.53899e-10 3.06214e-09 -1.63398e-09 -3.66363e-09 -9.14866e-09 4.07267e-09 -7.22893e-08 1.71332e-07 -1.76945e-09 5.53239e-07 -1.2837e-09 -9.31651e-08 -2.24332e-09 -9.57079e-08 -3.82052e-08 -1.48874e-08 1.30278e-07 -1.04286e-06 7.58343e-08 6.20722e-07 5.72638e-09 -2.77997e-07 -3.18389e-08 2.63233e-06 -8.74329e-09 1.0677e-06 1.30206e-07 -1.59548e-06 1.22469e-07 -4.95053e-07 2.52332e-06 6.17668e-10 -1.169e-08 7.734e-10 -6.62866e-09 7.57875e-09 7.05647e-10 4.63898e-09 1.52385e-08 1.93466e-09 3.57146e-08 -7.47665e-11 3.46572e-09 2.15213e-12 1.70838e-10 3.1791e-12 2.452e-11 1.33705e-12 1.61892e-11 6.72478e-13 1.53961e-11 9.86122e-11 3.30016e-11 -2.03134e-09 3.44288e-09 2.23283e-09 -6.78477e-08 7.3257e-08 -1.5784e-07 1.11395e-07 -1.7433e-07 9.7338e-08 -1.5234e-07 4.22193e-08 8.07778e-08 -2.65297e-08 1.81551e-07 -1.07882e-09 2.44444e-08 -1.47168e-09 2.21872e-09 -3.3108e-09 -9.30324e-09 -4.18672e-09 -8.98802e-09 -7.08603e-10 6.86111e-09 -6.52276e-10 6.62669e-10 -1.94736e-10 9.60878e-09 -9.40794e-10 1.89128e-10 -5.25723e-10 -2.79352e-09 -3.68843e-09 -3.49021e-09 -1.07253e-09 2.13898e-09 -1.72455e-09 5.39373e-09 -1.56661e-08 7.30131e-09 -9.48973e-10 -8.2838e-08 -1.69172e-09 3.22088e-10 -1.33624e-09 -4.36239e-10 -9.38334e-10 5.85695e-09 -1.4816e-09 2.61541e-11 -7.16189e-09 2.14093e-08 -7.92908e-08 4.08167e-07 -2.00589e-10 5.00221e-07 -1.76947e-09 -5.24494e-08 -3.18318e-09 -7.89767e-08 -1.16533e-08 -8.86287e-09 1.04417e-09 -2.77576e-07 1.66159e-08 6.49365e-07 -1.28404e-08 -5.39109e-07 1.45007e-08 8.70429e-07 5.59446e-08 1.05396e-06 1.19993e-07 -1.57505e-06 1.20929e-07 -4.91324e-07 2.65098e-06 1.02003e-09 -1.55392e-08 -4.18391e-10 -5.72711e-09 -1.97078e-09 1.17728e-09 -1.68653e-09 2.23662e-08 -3.72723e-09 1.83729e-08 -1.33554e-12 4.49145e-10 2.62418e-12 7.73024e-11 2.28915e-12 2.12462e-11 1.05686e-12 1.7264e-11 5.08674e-13 1.60833e-11 -4.32652e-11 7.70693e-11 -1.06536e-09 2.03847e-09 -2.9031e-11 -7.09127e-08 3.94691e-08 -1.95145e-07 6.39976e-08 -1.98852e-07 5.85418e-08 -1.47088e-07 2.23925e-08 1.16927e-07 -1.26574e-08 2.21005e-07 -1.35113e-09 1.26242e-08 -1.73896e-09 2.24917e-09 -2.18506e-09 -1.24057e-08 -2.29303e-09 -1.04278e-08 -3.1444e-10 2.22004e-09 -3.89095e-10 6.29258e-10 -1.95508e-10 9.96851e-09 -1.6139e-09 1.60681e-09 -8.87989e-10 -3.69176e-09 -1.99719e-09 -2.23312e-09 -1.06067e-09 1.98249e-09 -3.2391e-09 7.32693e-09 -9.26011e-09 9.97078e-09 -6.72814e-10 -9.21594e-08 -1.48007e-09 1.208e-09 -1.25606e-09 -4.76432e-10 -2.17454e-10 1.12545e-08 -4.94888e-12 6.80054e-10 -5.53018e-08 8.11622e-08 -3.97379e-08 7.67445e-07 -1.0199e-10 -1.44757e-08 -4.71248e-11 -1.93499e-08 -6.12819e-09 -5.91727e-08 -1.72318e-08 1.14129e-09 -1.6919e-07 -4.92981e-08 2.2041e-08 2.04972e-08 -9.74787e-10 -1.35847e-07 1.27614e-08 -5.252e-08 8.16876e-08 1.03343e-06 1.06996e-07 -1.60656e-06 1.12885e-07 -4.93304e-07 2.76724e-06 1.68211e-09 -1.59248e-08 -1.90405e-11 -4.84996e-09 -2.51688e-09 5.71782e-09 1.70506e-09 1.87722e-08 1.27091e-11 9.4298e-09 -1.55311e-12 4.66607e-10 1.51086e-12 5.52477e-11 1.55143e-12 2.10476e-11 7.55834e-13 1.85499e-11 1.22969e-13 1.66341e-11 3.70426e-12 7.37366e-11 -1.07448e-09 1.54269e-09 -2.07912e-09 -7.30711e-08 -4.8634e-09 -1.91788e-07 1.40838e-08 -2.17222e-07 1.46386e-08 -1.47649e-07 -1.60233e-08 1.47661e-07 -8.6158e-09 2.046e-07 -2.59553e-09 6.3632e-09 -2.14135e-09 4.52318e-09 -7.48112e-10 -6.53843e-08 2.07509e-10 -1.13287e-08 6.21971e-10 7.93372e-09 6.14218e-11 1.09053e-09 -4.49411e-11 2.42919e-09 -6.29189e-09 6.09991e-09 -8.60999e-10 -2.38805e-08 -1.4727e-09 -1.5425e-09 -1.05711e-09 1.51566e-09 -5.21483e-09 1.12774e-08 -5.50145e-09 1.01552e-08 -1.54118e-09 -9.51945e-08 -1.21671e-09 2.93078e-09 -5.76812e-10 -2.5273e-10 -7.00017e-10 2.17375e-08 -7.13895e-10 -1.11606e-08 -2.68815e-08 1.45815e-07 3.18985e-08 7.88382e-07 1.14976e-09 1.77584e-08 1.8241e-11 -1.98399e-08 -6.33411e-09 -3.96828e-08 -1.7548e-08 1.13893e-08 -6.32898e-09 -6.14591e-08 4.14991e-10 -2.14966e-09 -1.69206e-09 3.79338e-08 -1.43594e-07 8.27141e-08 6.05362e-08 7.56912e-07 9.88207e-08 -1.65053e-06 1.00069e-07 -4.96849e-07 2.86736e-06 3.96717e-09 -1.51178e-08 8.98443e-10 -3.18959e-09 -6.97792e-09 2.05481e-08 -4.77004e-09 1.68756e-08 4.70303e-10 4.10886e-09 2.80395e-11 9.14032e-10 2.7276e-12 8.22678e-11 6.13513e-13 2.31968e-11 4.97511e-13 1.91099e-11 7.41199e-14 2.25182e-11 5.79352e-11 4.00381e-11 3.30923e-11 5.46269e-10 -7.03619e-09 -6.53855e-08 -2.70785e-08 -1.71413e-07 -1.23043e-08 -2.31499e-07 -1.4606e-08 -1.45055e-07 -4.83685e-08 1.83006e-07 -6.05262e-09 1.61392e-07 -4.33954e-09 4.54293e-09 -1.29416e-09 6.95213e-10 4.32781e-10 -1.05944e-08 8.49629e-10 -1.17234e-08 7.06256e-10 8.90057e-09 9.28714e-11 1.27601e-09 -8.14366e-10 2.88663e-09 -1.07021e-08 1.4015e-08 -1.56875e-09 -4.15351e-08 -1.53398e-09 -1.35907e-09 -1.37225e-09 4.03928e-09 -5.43963e-09 7.18112e-08 -3.02565e-09 7.76154e-09 -1.27561e-08 -8.5703e-08 -1.9683e-09 6.28259e-09 -1.73481e-09 1.13242e-09 -9.71178e-09 6.0471e-08 3.83651e-09 -1.22932e-07 1.77655e-08 5.08506e-08 -1.45588e-09 8.90441e-07 -5.21621e-10 1.52916e-08 -1.65307e-09 -2.27522e-08 -5.53042e-09 -1.81354e-08 -1.83507e-08 2.33046e-08 -1.8232e-09 -7.94319e-08 8.43856e-10 -6.12119e-09 -2.49014e-08 -3.66889e-08 -3.94255e-07 4.10297e-07 3.75322e-08 2.20588e-07 1.06901e-07 -1.79193e-06 9.80152e-08 -4.87915e-07 2.96542e-06 7.32198e-09 -1.51349e-08 3.28258e-09 -7.46553e-09 -6.03695e-09 3.01274e-08 -2.67354e-10 1.14611e-08 -2.88933e-10 3.93761e-09 4.02392e-11 5.84687e-10 2.60208e-12 1.19781e-10 9.6129e-13 2.47316e-11 3.14534e-13 1.97939e-11 -1.01568e-14 8.39625e-11 1.44362e-11 4.66977e-11 2.00506e-10 3.65805e-10 -1.18572e-08 -5.86536e-08 -1.37021e-08 -1.7264e-07 -1.99265e-08 -2.24449e-07 -3.19281e-08 -1.33438e-07 -6.18453e-08 2.16699e-07 -3.54786e-09 1.10794e-07 -2.46361e-09 3.33226e-09 -4.52132e-10 -2.23483e-10 -3.37325e-10 -8.4957e-09 1.11084e-09 -1.31056e-08 5.25263e-10 9.68888e-09 9.327e-11 1.12833e-09 -4.70693e-10 3.00423e-09 -6.38086e-09 2.86844e-08 -6.26633e-09 -5.80682e-08 -3.97702e-09 -1.62731e-09 -2.78075e-09 6.27242e-09 -8.56645e-10 2.25781e-08 -1.55325e-09 8.48154e-09 -1.7252e-09 -8.55153e-08 -2.991e-09 3.87216e-09 -5.28057e-09 -9.39846e-09 -1.00785e-08 7.54242e-08 1.31041e-09 -1.23593e-07 5.54123e-09 -9.90688e-10 -8.84012e-09 9.75385e-07 -9.34929e-10 2.84708e-07 1.035e-10 -1.88036e-08 -4.45722e-09 -7.70097e-11 -2.14828e-08 4.21725e-08 -1.50792e-09 -9.46058e-08 3.64552e-09 -1.51072e-08 -2.38206e-08 -7.35544e-07 -2.16773e-07 5.26095e-07 8.61914e-08 -9.86688e-08 1.0262e-07 -1.82173e-06 8.84558e-08 -4.7371e-07 3.05393e-06 5.5648e-09 -1.15566e-08 -1.83152e-09 -2.40301e-09 -3.20481e-09 3.17122e-08 -3.05263e-09 1.17308e-08 -1.49733e-10 1.52606e-09 -4.48144e-12 3.66214e-10 -6.6777e-13 1.17919e-10 6.54136e-13 2.63547e-11 1.6416e-13 2.09069e-11 2.89632e-14 1.04451e-10 1.53197e-11 3.06076e-11 -1.02025e-11 3.86912e-10 -7.89771e-09 -5.06174e-08 1.49653e-08 -2.02072e-07 -2.79013e-08 -1.81746e-07 -7.28732e-08 -8.8802e-08 -6.9969e-08 2.25762e-07 -1.66659e-09 6.03806e-08 -1.19405e-09 2.62423e-09 -1.36679e-10 -7.95361e-10 -1.91275e-09 -6.02177e-09 1.71347e-10 -1.50169e-08 -1.79235e-10 1.01238e-08 1.0823e-11 8.06515e-10 6.20243e-10 1.63492e-08 -6.92066e-10 1.01125e-08 -8.47386e-09 -5.38151e-08 -7.55123e-09 -1.45357e-10 -1.81265e-09 2.53904e-09 -3.04016e-09 2.02811e-08 -3.09633e-09 8.54923e-09 -1.4232e-09 -8.72518e-08 -6.60126e-09 5.66717e-09 -1.12829e-08 -2.31496e-08 -1.68812e-08 2.05669e-08 -6.44991e-09 -8.89235e-08 -2.73984e-08 8.0495e-09 -1.67201e-08 9.62162e-07 -6.16009e-10 4.20891e-07 4.25994e-11 -1.20837e-08 -6.53709e-09 -8.78997e-11 -1.70003e-08 2.07968e-08 -8.37443e-10 -2.92426e-07 3.30442e-08 -7.59387e-08 -2.309e-08 -8.4193e-07 -7.12306e-08 1.50743e-06 1.05712e-07 -2.87417e-07 8.83732e-08 -1.81669e-06 7.69269e-08 -4.62312e-07 3.13089e-06 4.39924e-09 -8.7161e-09 -3.46483e-09 4.14215e-09 -2.74741e-09 3.11982e-08 -3.58691e-09 1.2777e-08 -1.26625e-10 9.22268e-10 -3.39078e-12 3.4023e-11 3.92111e-12 1.83822e-10 3.56303e-13 2.86649e-11 1.01781e-13 1.53923e-10 -6.4921e-14 1.04465e-10 3.2405e-12 2.44992e-11 2.74209e-10 8.52368e-11 -2.37282e-08 -2.40445e-08 -1.58504e-08 -2.12144e-07 -4.70538e-08 -1.50654e-07 -7.76814e-08 -5.50979e-08 -5.86316e-08 2.27091e-07 -2.51206e-09 4.07151e-08 -2.34505e-09 2.16317e-09 -2.04156e-10 -5.13474e-10 -4.5571e-10 -5.41129e-09 -3.48048e-10 -1.41086e-08 -3.33432e-10 1.01944e-08 -5.25494e-10 8.71909e-10 1.15425e-09 7.88586e-09 -2.38513e-09 1.15244e-09 -8.61292e-09 -4.42123e-08 -5.51208e-09 -1.47905e-09 -1.08221e-09 3.67715e-12 -4.00844e-09 2.01829e-08 -2.2724e-09 6.81771e-09 -5.94904e-09 -8.35855e-08 -9.04589e-09 1.86962e-09 -4.76735e-09 -3.58538e-08 -5.62948e-09 1.64224e-08 -5.81097e-09 -3.31408e-08 -4.07546e-08 9.4478e-08 -1.63625e-08 1.06102e-06 2.75947e-09 3.6098e-07 -1.98952e-11 -4.2663e-09 -7.2181e-10 1.58374e-11 -2.0017e-08 4.82208e-09 9.57728e-09 -4.99131e-07 1.99085e-08 -1.89393e-07 -1.76473e-08 -5.08659e-07 -2.32554e-08 3.03963e-06 9.10045e-08 -4.05416e-07 7.53126e-08 -1.80161e-06 6.64194e-08 -4.45735e-07 3.1976e-06 6.83552e-09 -1.01497e-09 -5.17072e-09 1.85392e-08 -4.05852e-09 3.02729e-08 -8.35872e-10 9.4483e-09 -2.52988e-11 1.054e-10 4.60095e-13 -2.92083e-12 2.68632e-12 1.90569e-10 1.0633e-13 3.44747e-11 -4.18726e-13 1.67068e-10 -2.70155e-13 3.31605e-11 -4.24757e-12 2.4006e-11 -6.90353e-12 8.51827e-11 -1.7059e-08 -5.90017e-09 -5.37851e-08 -1.64484e-07 -6.15987e-08 -1.41485e-07 -7.98554e-08 -2.46271e-08 -2.3103e-08 1.87611e-07 -1.15683e-09 1.85954e-08 -1.19522e-09 2.00902e-09 -1.12275e-10 -1.3482e-09 -4.49194e-10 -9.6302e-09 -7.29759e-10 -1.78816e-08 -5.40683e-10 1.02853e-08 -3.145e-10 1.08968e-09 4.47447e-11 3.66126e-09 -5.3439e-10 -4.08281e-10 -7.8944e-09 -3.55355e-08 -5.41936e-09 -2.43012e-09 -2.01095e-09 -1.89666e-10 -1.88849e-09 1.73054e-08 -8.80526e-10 5.84142e-09 -2.10606e-09 -7.16988e-08 -4.92621e-09 3.43574e-09 -4.2587e-09 -3.68919e-08 -6.63955e-09 1.60619e-08 -6.73122e-09 -3.79762e-08 -6.76216e-08 1.55059e-07 -1.80667e-08 1.01968e-06 6.60868e-09 3.88683e-07 -1.53821e-11 1.98445e-09 -8.08434e-11 1.80669e-11 -1.73975e-08 -1.54733e-09 5.86601e-08 -1.44803e-07 2.04579e-08 -3.58743e-07 1.46786e-08 -1.96613e-07 2.02188e-08 2.97566e-06 7.3317e-08 -4.55664e-07 6.76813e-08 -1.79276e-06 5.75113e-08 -4.37051e-07 3.25542e-06 -3.26311e-07 3.981e-06 -3.41402e-07 1.31628e-06 -2.44093e-07 -9.02165e-07 -8.2981e-08 -3.49559e-06 -2.23661e-08 -5.57116e-08 -2.80619e-10 -3.56547e-09 -7.7711e-09 -2.07279e-10 2.14157e-08 -3.58415e-08 9.3595e-08 -4.24621e-07 2.54048e-08 5.50668e-07 3.16021e-09 -4.69511e-08 -2.46323e-10 -3.49387e-08 6.17025e-10 -7.97428e-10 2.54694e-08 -8.92791e-10 4.77547e-08 -4.03674e-10 9.82878e-09 -1.32775e-07 2.30852e-11 -7.38017e-09 9.48846e-11 -2.82258e-10 1.24562e-10 -9.93484e-11 9.0811e-11 -7.5248e-11 1.79646e-08 -1.36456e-08 1.57916e-08 1.93091e-07 9.47609e-12 7.8711e-09 2.52728e-09 7.05021e-10 1.52103e-09 -8.38197e-10 5.88268e-10 1.10191e-10 6.02208e-10 -6.69655e-10 6.39674e-08 -1.0033e-08 5.22431e-08 -4.35936e-08 6.42328e-08 8.88542e-09 5.57754e-08 -6.12729e-09 3.66109e-08 -5.80808e-08 4.11909e-09 -8.61151e-09 3.65377e-09 -3.37548e-09 4.65411e-09 -2.70226e-09 6.73587e-08 -1.21327e-08 1.21213e-07 -1.31807e-07 4.42938e-08 -1.4153e-07 1.35044e-09 -3.48412e-09 -1.25981e-11 -7.01128e-11 1.35883e-10 -1.19707e-11 -7.0704e-09 6.19223e-09 7.87653e-08 -5.83709e-08 1.62419e-07 7.78351e-08 1.5083e-07 2.74542e-08 1.38252e-07 -8.65498e-08 1.85388e-07 -1.04378e-07 5.22469e-08 -1.374e-07 2.95398e-08 -2.1889e-08 -1.33047e-08 5.35728e-09 -3.35367e-07 4.02129e-06 -3.20202e-07 1.32142e-06 -2.35005e-07 -9.85248e-07 -3.81031e-08 -3.64457e-06 3.85327e-09 -1.67989e-07 3.23537e-10 -2.20419e-10 5.93445e-11 -1.08933e-10 3.16387e-09 -5.38135e-11 1.10547e-08 -1.59351e-07 1.63144e-08 7.93703e-07 3.34258e-09 -2.01369e-07 1.11791e-10 -3.14398e-08 8.62188e-10 -1.32801e-09 4.6911e-08 -2.07894e-08 3.88416e-08 1.51995e-09 2.06933e-09 -4.95378e-08 8.31601e-11 -3.57686e-10 7.44335e-10 -1.10291e-08 1.37835e-10 -2.02801e-10 1.15209e-10 -5.75529e-11 2.59898e-09 3.97188e-08 3.12738e-09 3.20359e-08 -1.09582e-10 5.093e-09 2.70324e-09 -1.57838e-09 9.08226e-10 2.9555e-11 9.97863e-10 -2.94274e-11 1.05242e-09 -7.74967e-10 8.96212e-08 -4.67979e-09 7.05504e-08 -2.46729e-08 5.26803e-08 2.65726e-08 4.58912e-08 7.92869e-10 6.55255e-09 -1.44114e-08 3.4976e-09 -5.53274e-09 3.74261e-09 -3.59761e-09 4.93957e-09 -3.86053e-09 2.63714e-08 -2.89652e-09 5.30681e-08 -2.19644e-08 9.06673e-09 -1.06912e-08 6.67966e-11 -6.86024e-10 5.8595e-12 -1.42448e-12 -5.59957e-12 1.58737e-12 5.78874e-09 3.58446e-10 6.51621e-08 -5.73956e-08 7.71635e-08 5.02726e-08 4.45791e-08 1.2189e-08 1.90483e-08 -4.25591e-08 -2.92893e-09 -4.23145e-08 6.02485e-09 -6.867e-08 2.00799e-08 -2.50353e-08 4.71045e-09 -1.03044e-08 -3.40407e-07 4.03111e-06 -3.06011e-07 1.28672e-06 -2.54036e-07 -1.03751e-06 -3.57418e-08 -3.92225e-06 9.82149e-10 -6.94137e-08 3.5472e-10 2.78097e-10 5.9883e-11 5.07048e-11 2.71573e-10 -2.72454e-10 -1.15071e-09 -1.24019e-07 8.29538e-09 2.79194e-07 1.83772e-08 -1.89487e-07 -8.99831e-11 -1.9878e-08 -6.81347e-10 -5.50205e-10 1.14418e-08 -9.34755e-12 2.87983e-08 2.26251e-08 5.70068e-10 -1.06517e-08 2.38898e-10 8.55664e-10 2.70603e-09 -2.73434e-08 1.03251e-09 -5.65128e-10 3.37701e-09 -8.39221e-10 4.33858e-09 1.19425e-07 1.14581e-09 2.73474e-08 1.57594e-09 2.04991e-08 1.77131e-09 -1.2159e-09 7.9572e-10 -4.38849e-10 9.80841e-10 -2.51733e-10 8.33139e-10 -6.80747e-10 9.34523e-08 -4.37693e-09 6.84574e-08 3.18874e-09 5.22979e-08 4.24571e-08 1.75104e-08 -1.11435e-08 6.38264e-09 -8.19561e-09 5.54946e-09 -4.67499e-09 5.53067e-09 -3.53506e-09 7.33516e-09 -5.60343e-09 1.32788e-08 -1.40255e-09 9.78201e-09 -1.3454e-08 2.62178e-10 -8.65486e-10 8.99824e-12 -1.66292e-11 3.36079e-12 8.05805e-13 7.16351e-12 2.40332e-13 3.51225e-10 1.22252e-11 7.3351e-08 5.63868e-12 7.40519e-08 3.34846e-08 5.8034e-08 -3.21499e-09 2.03848e-08 -1.23301e-08 1.04864e-08 -3.03212e-11 7.17802e-09 -1.3041e-10 1.31532e-08 -1.122e-08 -3.46688e-09 1.34221e-08 -3.33289e-07 3.99189e-06 -2.8727e-07 1.23897e-06 -2.69387e-07 -1.05084e-06 4.30687e-08 -3.1667e-06 -7.32032e-12 -2.59076e-08 4.88151e-10 1.7826e-10 4.46113e-10 9.45349e-11 -4.12176e-08 9.95125e-11 -8.71676e-10 -1.1937e-08 1.57498e-08 3.56301e-07 1.8585e-08 -1.0024e-07 -1.42274e-11 -1.6142e-09 -1.69546e-12 -1.01829e-11 1.51701e-13 -2.63752e-11 8.66753e-09 2.53892e-10 2.80431e-10 -2.29268e-10 4.40957e-10 -1.19369e-08 2.64323e-09 -3.03793e-08 2.15076e-09 5.15351e-10 5.75089e-09 -8.40076e-10 1.76698e-09 1.40584e-07 -9.26258e-11 2.64972e-08 4.14397e-09 1.63697e-08 3.67081e-09 -1.74139e-09 8.47579e-10 -5.23276e-10 8.78596e-10 -3.04723e-10 8.96199e-10 -7.35192e-10 5.36818e-08 -1.23402e-09 4.95729e-08 1.09972e-08 4.32066e-08 4.1098e-09 1.35944e-08 -1.10553e-08 8.90247e-09 -3.79559e-09 9.15857e-09 -4.98715e-09 9.21826e-09 -3.56656e-09 5.11874e-08 -2.58248e-08 4.84997e-08 -2.91563e-08 1.14988e-09 -9.40758e-09 6.26579e-11 -2.05649e-12 1.58963e-12 3.00353e-11 1.1037e-12 1.3121e-12 1.23094e-12 1.3862e-13 1.29866e-11 4.28932e-13 4.87574e-09 2.63094e-11 2.12319e-08 1.35171e-09 1.23582e-08 -1.02323e-09 1.68226e-10 -8.27629e-11 1.41469e-10 -3.78294e-12 1.09976e-11 -1.27818e-13 2.18626e-09 1.641e-11 4.03287e-12 3.40972e-09 -3.2801e-07 3.91042e-06 -2.66291e-07 1.17211e-06 -1.11228e-07 -1.10867e-06 1.78304e-08 -8.90366e-07 -1.36795e-10 -1.52725e-09 -8.3471e-12 4.24598e-11 7.1187e-11 2.106e-11 5.55035e-10 -3.82559e-10 -4.32721e-09 2.37551e-08 1.24589e-08 9.88622e-07 8.50602e-09 -1.4222e-08 -3.4459e-12 8.78636e-10 -5.32166e-12 -2.29826e-12 -1.03894e-10 -3.49115e-12 1.62589e-11 7.25263e-11 3.96454e-11 -1.57276e-10 3.41157e-09 -2.34989e-08 2.66378e-09 -3.00954e-08 7.21712e-10 -1.83744e-09 2.17736e-10 -1.00728e-09 2.25287e-10 1.50941e-07 -7.51489e-11 2.41387e-08 6.29183e-09 1.12827e-08 1.07469e-09 -1.18661e-09 5.95683e-10 -6.88867e-11 3.85534e-10 -1.1563e-10 3.66516e-09 -4.03657e-09 4.21424e-08 4.19673e-09 8.37032e-08 -2.35891e-08 1.55056e-08 -1.44576e-08 1.38087e-08 -2.51084e-08 1.18022e-08 -4.5535e-09 1.11795e-08 -4.65699e-09 3.95611e-08 -1.40551e-08 6.93335e-08 -2.78203e-08 1.97528e-08 -3.26925e-08 -2.51475e-11 -1.29967e-09 -3.02606e-11 -1.78634e-11 -1.23695e-12 4.48092e-13 1.76339e-13 4.94258e-14 2.58032e-13 6.24273e-14 6.15201e-13 6.25282e-14 2.57856e-11 9.64122e-13 1.55208e-09 4.62973e-11 8.43204e-11 -3.14329e-12 4.5501e-12 -2.55696e-12 8.1964e-13 -2.64594e-13 5.6448e-13 -7.61885e-14 1.7364e-11 -5.77261e-13 -2.19015e-12 6.04957e-11 -3.36083e-07 3.79462e-06 -2.39489e-07 1.07559e-06 1.06618e-07 -1.45987e-06 -1.07036e-09 -5.21583e-07 -8.13892e-13 -3.0027e-09 -7.07736e-12 3.01536e-11 -4.43511e-11 5.10459e-11 1.264e-10 -1.8111e-09 -9.21088e-08 2.49777e-08 -3.64973e-08 1.2498e-06 -1.25107e-08 -9.37952e-08 -3.73022e-11 -5.21615e-08 -3.03565e-11 -2.96171e-12 -2.29345e-11 -3.48945e-11 -2.01563e-12 4.28326e-11 7.41117e-10 -5.52339e-10 7.86686e-09 -3.11475e-08 4.29146e-09 -2.86882e-08 9.57607e-10 -2.24807e-08 -3.48508e-09 -3.55785e-10 7.4029e-09 2.42263e-08 -9.11446e-10 1.57143e-08 4.91542e-10 6.56135e-09 9.13095e-10 -3.99221e-10 3.95571e-10 4.25051e-10 7.10226e-11 1.86782e-10 8.47457e-10 -5.21114e-09 4.29111e-08 -3.84203e-09 6.46937e-08 -5.31206e-08 7.40767e-08 -1.06085e-07 5.04013e-08 -1.26395e-07 3.85596e-08 -1.03763e-07 5.27282e-08 -7.24922e-08 7.98444e-08 -2.91032e-08 5.41081e-08 -1.31375e-08 2.59091e-10 -1.44517e-08 -3.80006e-12 -1.06012e-09 -3.73611e-13 -2.19364e-11 4.69969e-14 4.90003e-14 1.14306e-13 5.31909e-14 1.2811e-13 4.05579e-14 1.39914e-13 4.88943e-14 9.71373e-13 1.27425e-13 5.1432e-11 2.89508e-12 1.18584e-11 -6.3519e-13 1.46693e-12 -4.37432e-13 1.10519e-12 -1.3109e-13 8.19426e-13 -3.183e-15 2.96049e-11 6.13732e-13 2.29044e-11 5.27386e-11 -3.56553e-07 3.64769e-06 -2.336e-07 9.42053e-07 1.13687e-07 -1.85066e-06 2.23639e-09 -4.10445e-07 3.72045e-11 -7.94116e-10 -5.63431e-12 1.01625e-10 -1.6623e-10 2.1798e-10 -1.77662e-09 -4.77833e-09 -1.33428e-07 1.01746e-08 -5.28521e-08 1.23118e-06 -2.6418e-08 -2.40659e-07 -5.60687e-11 -9.831e-08 -5.07638e-11 -2.22618e-12 1.53635e-11 -2.77942e-11 -1.86778e-11 -6.28893e-11 4.20721e-09 -1.97135e-08 9.41758e-09 -3.57353e-08 3.52298e-09 -2.54146e-08 1.82744e-09 -2.32627e-08 2.29307e-10 -4.3424e-10 4.05229e-09 -1.12727e-09 6.32755e-09 8.3871e-09 2.99982e-09 1.31412e-08 1.11403e-09 1.94079e-09 4.84907e-10 1.4337e-09 2.56405e-09 7.03944e-09 2.3289e-09 -5.27398e-08 1.76384e-08 -5.38431e-08 6.50542e-08 -1.00442e-07 8.11538e-08 -1.21628e-07 8.30383e-08 -1.28505e-07 8.41275e-08 -1.05018e-07 8.12571e-08 -6.97414e-08 8.42408e-08 -3.20692e-08 1.01328e-07 -3.02082e-08 8.11635e-10 -8.65108e-09 2.02832e-11 -3.85731e-10 3.80644e-13 -7.13776e-12 1.23291e-13 8.31105e-14 9.5441e-14 7.23157e-14 8.87407e-14 4.58524e-14 9.32368e-14 4.41139e-14 1.70653e-13 5.10553e-14 3.39424e-12 -6.22457e-14 7.24963e-12 6.96618e-14 6.86543e-12 8.84754e-13 4.63463e-12 4.11834e-13 1.46902e-12 2.90558e-13 3.18548e-11 1.33185e-11 1.43533e-11 6.8755e-12 -3.81436e-07 3.46545e-06 -2.61765e-07 8.12356e-07 -6.8839e-08 -1.88066e-06 5.89635e-10 -1.60659e-07 3.19348e-12 -2.00384e-10 -5.89978e-12 1.40313e-10 7.43357e-10 1.54778e-09 -3.3435e-10 -6.72027e-09 -1.68233e-07 3.11065e-09 -9.69868e-09 1.14068e-06 5.00786e-10 -1.82387e-07 -1.2732e-11 -1.31134e-08 -6.8978e-12 -1.26597e-12 -2.28573e-11 -5.84709e-12 3.84997e-10 -3.70854e-11 1.29246e-08 -5.33447e-08 6.10527e-09 -3.30333e-08 2.55821e-09 -2.39941e-08 8.12293e-10 -2.47801e-08 -2.46482e-10 -2.09353e-10 4.28176e-09 6.5049e-10 4.37802e-09 1.14391e-08 3.70282e-09 1.94272e-08 5.67538e-12 4.06123e-09 1.18951e-09 1.54685e-09 1.15251e-08 -8.48549e-10 5.28566e-08 -8.83134e-08 8.12908e-08 -7.90631e-08 9.51498e-08 -1.14332e-07 1.0414e-07 -1.3101e-07 1.01693e-07 -1.26256e-07 9.69043e-08 -1.00231e-07 9.16369e-08 -6.46001e-08 9.48248e-08 -3.54408e-08 2.57702e-08 -2.23057e-08 3.73709e-10 -1.28706e-09 7.074e-12 -3.52875e-11 -7.66e-15 -4.72442e-13 3.24824e-14 2.73552e-14 7.03451e-14 3.33824e-14 7.74717e-14 3.85377e-14 8.25776e-14 3.88373e-14 9.48674e-14 3.87761e-14 6.96945e-12 2.51117e-12 6.30579e-12 1.77379e-12 6.34419e-12 1.85628e-12 2.75261e-12 6.50936e-13 1.33282e-12 2.2652e-13 1.47071e-11 2.95461e-11 1.64603e-12 -1.07825e-12 -4.33018e-07 3.25272e-06 -3.21702e-07 7.05195e-07 -6.39194e-08 -1.84291e-06 -3.65609e-12 -4.4538e-08 2.39011e-12 -2.11452e-10 -6.55242e-11 2.18413e-10 -1.77082e-10 2.47926e-09 4.30741e-10 -3.15244e-09 -1.12733e-07 -2.38421e-09 -9.50723e-09 2.30714e-07 2.55636e-09 -1.22813e-07 -8.34665e-12 -1.05411e-08 -1.80699e-12 -8.07232e-14 1.74357e-12 -1.52901e-10 8.27435e-10 -4.12086e-09 6.71944e-09 -4.9061e-09 4.2259e-09 -3.36413e-08 1.49588e-09 -2.1538e-08 -5.26296e-10 -2.54173e-08 8.70077e-12 -2.59031e-09 2.84405e-09 2.46079e-09 2.25621e-09 1.63372e-08 2.40667e-09 2.12114e-08 9.20771e-10 2.02583e-09 2.32532e-09 3.37866e-10 1.74386e-08 -1.85275e-09 3.71091e-08 -6.75022e-09 9.19199e-08 -1.38821e-09 1.15481e-07 -4.99805e-11 1.13908e-07 -1.28423e-07 1.11136e-07 -1.23324e-07 1.07138e-07 -9.63495e-08 9.84167e-08 -5.72407e-08 5.22957e-08 -2.4417e-08 1.25096e-09 -1.3246e-09 3.38516e-11 -7.44976e-11 4.77526e-13 -2.05968e-12 3.19885e-14 -3.66513e-14 5.03882e-14 8.55533e-15 6.01529e-14 2.34742e-14 6.72275e-14 3.13478e-14 7.17777e-14 3.41105e-14 7.62606e-12 3.63744e-12 7.44235e-12 3.03923e-12 6.30554e-12 2.75177e-12 7.41453e-13 5.23244e-13 6.50587e-13 3.34324e-13 4.05895e-13 3.64143e-13 2.7465e-13 4.08102e-12 3.13996e-12 -9.98427e-13 -4.45452e-07 2.96117e-06 -2.49457e-07 5.177e-07 -2.88866e-08 -7.49383e-07 -7.28129e-11 -7.40769e-11 -2.55142e-11 -2.56779e-10 -2.37744e-10 4.06951e-10 -3.39017e-10 4.0269e-09 -5.20992e-10 -5.13055e-09 -4.53024e-09 -4.32733e-10 3.82901e-10 6.47245e-09 6.33063e-09 -3.73621e-09 4.40354e-12 -7.37909e-09 4.32072e-12 -2.79636e-16 2.09985e-10 -9.63578e-10 1.90433e-09 -4.38405e-09 4.51761e-10 -3.70039e-09 2.93255e-09 -3.55756e-08 2.22066e-09 -2.17761e-08 4.37956e-10 -7.56886e-09 -6.18869e-10 -5.44316e-09 7.7286e-11 1.4378e-09 3.59634e-09 4.31656e-08 6.15939e-09 2.07457e-08 9.38882e-10 8.28969e-10 5.29038e-10 2.14075e-10 4.8136e-09 -6.79401e-10 2.47394e-10 -7.46472e-10 6.11068e-11 -1.52551e-10 1.3049e-11 -1.01419e-11 9.47963e-08 -9.55686e-12 1.08754e-07 -6.53278e-08 7.47369e-08 -5.49545e-08 3.31549e-08 -4.04687e-09 1.38252e-09 -9.56617e-11 7.32516e-11 -1.48943e-11 1.83576e-12 -3.21259e-12 2.49999e-14 -2.49811e-13 4.4151e-14 -5.86936e-14 4.55441e-14 7.00221e-15 5.11257e-14 1.77646e-14 5.64495e-14 2.59031e-14 5.35508e-12 1.71213e-12 5.89365e-12 3.4848e-12 5.92703e-12 3.369e-12 4.16965e-13 3.90709e-13 3.75281e-13 3.25564e-13 3.10166e-13 3.97542e-13 1.34922e-13 5.37439e-13 -4.74279e-14 4.26056e-12 3.34568e-12 -4.70377e-13 -4.36646e-07 2.60631e-06 -5.78073e-08 2.18447e-07 -5.36173e-11 -7.03533e-12 -5.66074e-11 -7.26587e-11 -1.53873e-11 -4.09295e-10 -9.13769e-10 2.36217e-09 -6.75628e-10 2.38246e-09 -8.44323e-10 -4.54267e-09 -6.73677e-10 1.095e-09 -5.181e-10 8.00932e-09 -1.07424e-09 -1.37061e-07 -6.38476e-15 -1.45074e-08 1.03949e-14 -1.95537e-14 5.90041e-10 -5.87687e-10 1.9884e-09 -3.87812e-09 1.61157e-10 -2.16323e-09 2.19539e-09 -2.39768e-08 2.61924e-09 -1.3338e-08 -3.3611e-11 -7.28564e-11 7.8597e-11 -1.58132e-09 -1.21542e-09 2.45567e-09 5.59984e-09 3.63467e-08 4.21116e-09 1.65829e-08 1.03395e-09 7.39362e-10 4.18276e-10 2.82216e-10 6.36641e-10 3.57197e-10 2.70548e-10 -4.06665e-10 6.55949e-11 -6.44989e-10 1.01103e-11 -9.64922e-12 1.1699e-12 -1.52278e-12 4.62066e-09 -4.95139e-12 4.14362e-09 -1.71385e-12 9.70769e-11 -3.2784e-13 1.50327e-12 -8.92308e-14 3.08201e-12 -1.81133e-11 1.64442e-12 -3.66326e-12 8.53341e-13 -1.91526e-12 4.12116e-14 -1.19088e-14 4.33584e-14 4.58302e-15 4.75025e-14 1.348e-14 5.08615e-14 2.24146e-14 3.49167e-12 1.5783e-12 4.41467e-12 2.92052e-12 4.02834e-13 3.26929e-13 3.40187e-13 3.64625e-13 2.83791e-13 3.79839e-13 1.96082e-13 4.83334e-13 9.50148e-14 6.35383e-13 -4.43043e-12 1.06914e-10 6.5727e-11 -2.07578e-12 -2.01416e-07 1.84621e-06 -6.79589e-13 -2.42966e-11 5.99049e-13 -9.75673e-12 -1.72568e-11 -5.60883e-11 -4.78213e-10 -2.18253e-10 -1.69297e-10 4.84641e-09 -4.40022e-10 1.85275e-09 7.90976e-11 -4.62583e-09 3.03787e-11 -1.0073e-10 3.30928e-09 2.45671e-08 -3.62218e-09 -9.24676e-08 -1.7232e-12 -1.59481e-08 -8.14906e-13 -9.34257e-13 1.35937e-10 -2.52779e-13 7.88091e-10 -1.44892e-14 5.17063e-11 -8.8801e-10 3.8062e-10 -2.39187e-12 9.51513e-11 -2.36263e-14 2.76688e-11 -1.33265e-14 2.00027e-11 -8.92142e-10 2.90986e-10 1.88872e-09 8.243e-09 2.8458e-08 3.72383e-09 1.38288e-08 9.00011e-10 2.25466e-09 2.56321e-10 3.48961e-10 2.68146e-09 -8.04499e-09 2.38686e-09 -4.56898e-09 1.2113e-11 -2.56602e-10 3.51723e-12 -2.31778e-12 2.0836e-12 -2.40121e-13 5.88096e-13 -3.49401e-12 3.82079e-13 -1.51066e-12 2.97393e-13 -2.44311e-13 2.57879e-13 -5.09071e-14 9.50181e-11 -7.77194e-12 4.35615e-11 -2.37865e-12 2.70912e-14 -1.15945e-12 3.24949e-14 -2.23394e-14 3.66548e-14 2.46107e-16 4.02812e-14 9.73347e-15 4.20007e-14 2.20171e-14 2.47169e-12 1.85778e-12 1.26496e-12 3.18364e-13 3.47969e-13 7.02673e-13 2.29975e-13 4.82745e-13 1.47738e-13 4.64376e-13 7.17921e-14 5.59024e-13 -3.42865e-12 2.4098e-11 -1.99666e-11 1.30208e-10 1.58862e-10 -2.7178e-12 -2.09096e-11 1.45339e-07 2.78629e-13 -4.74281e-11 8.61388e-13 -1.17793e-11 -1.23421e-13 -6.14332e-11 -1.12894e-10 -9.56691e-11 -5.00243e-10 6.81456e-10 -1.38872e-10 1.46652e-09 4.29113e-10 -4.91458e-09 9.54332e-11 4.21922e-11 2.21326e-09 7.67981e-09 -2.3875e-09 -4.81812e-08 -4.53145e-11 -8.81671e-09 1.33947e-13 -4.63881e-11 3.64243e-15 -1.22617e-13 2.09993e-15 -1.30046e-14 2.37007e-12 -3.13938e-14 8.92265e-15 -3.07803e-14 3.38294e-15 -1.81079e-14 1.40482e-14 -2.18004e-14 1.81677e-09 -4.96892e-15 4.11361e-09 1.9137e-08 8.63206e-09 2.4027e-08 8.6885e-09 1.38168e-08 1.0548e-09 6.81203e-09 3.05585e-10 4.90237e-10 2.71161e-09 -1.08502e-08 1.89383e-10 -5.46598e-09 3.91347e-12 -1.81568e-10 2.54116e-12 -5.85909e-12 2.90768e-12 -4.2548e-12 5.07902e-12 -1.36314e-11 6.08266e-13 -3.94423e-13 4.71525e-13 -1.09893e-13 4.30406e-13 -1.10411e-14 1.76355e-10 6.83206e-11 4.57863e-11 5.09513e-11 -2.62376e-15 -9.882e-13 6.58634e-15 -4.53485e-14 3.92968e-17 -1.31083e-15 7.35873e-14 1.03834e-14 7.46265e-14 2.23894e-14 1.32677e-12 2.94097e-13 1.0647e-12 9.09813e-13 2.43215e-13 1.53257e-12 6.55438e-14 6.6756e-13 -1.38288e-13 6.68345e-13 -1.06327e-12 1.48592e-12 -2.96966e-11 5.76627e-11 -3.84016e-11 1.46031e-10 1.34964e-10 -5.48045e-12 -5.58013e-11 -3.84816e-11 -1.82667e-12 -2.09036e-10 1.55467e-12 -4.53196e-11 -1.54979e-12 -2.35312e-10 1.69471e-11 -8.07152e-11 -5.67704e-10 -2.97913e-11 4.88593e-10 -2.64949e-10 -9.09103e-11 -1.95793e-09 -6.24497e-11 1.24671e-11 6.5941e-10 1.08978e-09 -1.80279e-09 -3.90126e-09 -3.40005e-10 -8.12363e-09 9.42964e-14 -3.86499e-10 3.91262e-15 -3.22525e-14 1.84392e-15 -1.10396e-14 2.10661e-15 -3.17357e-14 3.3936e-15 -3.21042e-14 5.34078e-15 -2.00774e-14 1.64931e-14 -3.29742e-14 4.61219e-14 -2.543e-14 1.35171e-08 1.1593e-08 1.39713e-08 2.36243e-08 1.26182e-08 1.52192e-08 1.28179e-09 1.73973e-08 1.3041e-09 7.15645e-09 1.91835e-09 -1.03838e-08 1.87134e-10 -3.69786e-09 2.81601e-11 -1.3228e-10 1.17856e-10 -5.93544e-10 4.01817e-11 -1.55639e-10 6.44519e-13 -2.45514e-12 4.34085e-13 -1.94481e-13 4.03941e-13 -8.23684e-14 3.75167e-13 1.54481e-14 2.0934e-10 1.82909e-10 6.63085e-11 1.21883e-10 5.51167e-14 2.24408e-12 3.304e-14 -3.20442e-14 2.962e-14 4.00909e-16 2.65542e-14 1.17301e-14 1.21536e-13 3.19239e-14 5.33377e-13 -2.37762e-14 2.78418e-12 2.77282e-13 4.64207e-11 1.07589e-10 -2.23981e-10 2.93924e-09 -2.03412e-11 2.49926e-09 -2.39903e-11 5.55041e-12 -5.63567e-11 2.8747e-11 -4.99841e-11 1.4716e-10 6.67265e-11 -1.65658e-11 -4.75406e-11 -1.55774e-13 1.68434e-11 -3.28289e-10 3.14903e-12 -1.92053e-10 -1.42867e-11 -2.04633e-10 -1.00045e-11 -4.85485e-11 -5.77065e-11 -1.89224e-11 -4.76363e-10 -4.84015e-10 -9.29906e-12 1.03795e-10 9.43802e-12 -7.6024e-12 1.01746e-09 8.05085e-11 -4.46648e-09 6.49775e-08 -1.35286e-09 -1.43837e-08 -1.58578e-13 -4.51844e-09 2.96118e-16 -1.91175e-13 1.47176e-15 -1.2261e-14 2.40097e-15 -3.27757e-14 4.30086e-15 -3.40976e-14 6.10036e-15 -2.19597e-14 3.07225e-13 -3.34144e-13 2.54411e-12 -2.25274e-12 1.11864e-08 2.49925e-09 1.36128e-08 2.12507e-08 8.60641e-09 2.02772e-08 2.51103e-09 7.21241e-09 2.7118e-09 6.11075e-09 4.24795e-09 -1.08226e-08 2.62552e-11 -4.52814e-09 2.9612e-11 -2.67394e-10 1.81102e-10 -1.44537e-09 1.77909e-12 -1.07653e-10 3.69017e-13 -1.05797e-12 3.75295e-13 -2.06681e-13 3.73378e-13 -8.52993e-14 1.82137e-10 3.64378e-12 1.73279e-10 2.30465e-10 5.653e-11 1.81606e-10 8.38285e-14 7.24618e-12 3.319e-14 1.06337e-14 2.0379e-14 1.12637e-14 1.33813e-14 1.68991e-14 2.44713e-14 5.87569e-14 5.05965e-14 1.19767e-13 -2.70698e-12 3.0204e-12 -4.75344e-10 4.01631e-10 -1.3137e-09 3.21611e-09 -6.86933e-10 3.26071e-09 -5.00986e-11 7.2349e-10 -4.32423e-11 3.42147e-11 -2.56816e-11 6.42875e-11 1.95473e-11 3.31864e-13 -1.20681e-12 -6.17104e-14 5.3238e-12 -4.34126e-11 2.45579e-11 -1.84255e-10 -1.38873e-12 -1.34494e-10 1.08819e-12 -9.87742e-12 -3.80237e-11 4.04362e-11 -7.09238e-10 -4.44984e-10 5.12728e-11 -4.07357e-11 7.16828e-11 -3.02155e-11 5.00327e-09 3.20268e-09 -2.85056e-10 7.80278e-08 -3.45132e-09 -1.33724e-08 -6.50371e-12 -1.17321e-08 -2.53337e-15 -6.69246e-12 8.96851e-16 -1.57408e-14 2.95761e-15 -3.49717e-14 8.37219e-15 -3.97135e-14 1.3835e-14 -2.74943e-14 1.27569e-11 -5.532e-11 4.63099e-11 -4.96219e-11 3.03395e-09 1.81719e-10 1.43372e-08 1.00002e-08 8.02929e-09 2.66325e-08 1.89156e-09 1.56132e-09 5.92099e-09 3.24413e-09 7.61232e-09 -1.14057e-08 -1.28933e-10 -3.20814e-09 9.22052e-11 -6.12332e-10 1.84126e-10 -1.50065e-09 -3.88839e-13 -9.16409e-11 1.94182e-13 -1.6691e-12 2.43394e-13 -2.62881e-13 2.60965e-13 -1.08754e-13 1.2132e-10 8.30887e-12 1.19926e-10 2.54273e-10 6.07773e-11 2.21802e-10 2.13267e-13 1.22274e-11 -1.09303e-14 3.46436e-14 1.17109e-14 5.3029e-14 -1.47478e-14 3.42208e-13 -8.09777e-15 7.8205e-14 4.15379e-15 1.32934e-13 -3.09379e-12 5.98973e-12 -1.68039e-09 2.74246e-10 -1.46787e-09 3.04591e-09 -1.39359e-09 3.13533e-09 -1.59473e-11 2.67422e-09 -8.94258e-12 2.21377e-11 -4.42295e-12 5.69497e-11 1.54317e-11 -2.11121e-12 -1.41076e-14 -5.49583e-14 4.77541e-13 -4.44873e-11 2.92082e-11 -1.84502e-10 -1.57134e-12 -1.33854e-10 -1.24062e-11 -5.47094e-12 -2.03955e-10 3.28877e-10 -3.32992e-10 -2.05469e-10 7.93265e-11 -9.04823e-11 1.01177e-10 -3.59889e-11 -2.47479e-09 -3.65619e-10 -4.86826e-10 8.66917e-08 -1.97249e-09 -1.32197e-08 -8.72319e-11 -1.28791e-10 -6.45393e-14 -9.3863e-11 -2.1937e-15 -7.81916e-14 2.61043e-14 -7.25936e-13 8.89629e-14 -2.99659e-12 1.97226e-13 -1.35929e-13 5.90202e-11 -1.63051e-10 1.1552e-10 -1.21668e-10 2.65581e-10 1.42709e-11 6.09678e-09 2.7219e-10 1.0283e-08 2.24937e-08 1.85318e-09 6.82517e-09 6.01489e-09 2.04922e-10 2.39068e-09 -1.55362e-08 1.43556e-11 -5.2549e-09 -4.436e-12 -1.07083e-09 2.35517e-10 -1.70472e-09 -9.06558e-12 -5.26329e-10 -1.7458e-13 -1.231e-11 1.87577e-13 -2.11854e-12 2.51572e-13 -1.79669e-13 8.34588e-12 1.75553e-13 5.3246e-13 2.85259e-10 4.55111e-11 2.0013e-10 -7.04137e-14 6.37834e-12 -2.68674e-13 5.31518e-14 -2.34614e-13 3.34895e-13 -7.13743e-14 1.01671e-12 -7.54982e-14 1.10703e-13 -1.72314e-13 2.49247e-13 4.9271e-12 7.62208e-13 -9.7695e-11 2.54625e-11 -2.18273e-09 5.79896e-10 -1.72239e-09 2.96107e-09 -1.78752e-09 2.95787e-09 -7.37758e-10 2.61845e-09 -4.52652e-12 1.28637e-09 2.16963e-11 -1.35842e-11 -2.50528e-14 -3.98225e-14 9.3006e-13 -1.07836e-11 2.93528e-11 -1.8293e-10 -2.56261e-12 -5.14414e-11 -1.00448e-11 -4.52682e-12 -1.26015e-10 1.42786e-10 -1.37469e-10 2.21216e-12 -2.41739e-11 -4.03612e-11 1.41542e-10 -2.13983e-10 -3.46358e-09 -2.08032e-09 6.20565e-10 -2.38765e-09 -3.94938e-12 -8.34034e-09 -2.55138e-11 -1.43635e-10 -1.50308e-12 -5.15398e-10 -2.04275e-15 -1.58003e-12 5.3748e-14 -9.26081e-13 4.22796e-13 -8.5248e-12 2.3128e-12 -2.02786e-12 1.34584e-11 -3.34797e-11 3.63181e-11 -1.23868e-10 2.54583e-11 7.18328e-12 2.86354e-10 1.86173e-12 2.23453e-09 -1.18015e-10 1.21974e-09 4.51694e-09 8.72611e-09 -3.39375e-09 8.19669e-09 -1.40444e-08 -1.28512e-10 -6.02511e-09 6.49289e-11 -1.1799e-10 2.34091e-10 -1.32154e-09 6.4261e-11 -1.18875e-09 -1.09969e-12 -3.11811e-11 1.09324e-12 -3.18431e-12 2.51684e-12 -5.72116e-12 1.35224e-12 2.8164e-11 -6.6847e-12 3.10759e-10 -6.25844e-12 1.70535e-10 -5.16785e-14 1.38348e-13 -7.56981e-14 3.73779e-14 -9.90489e-13 1.69161e-13 -6.83521e-13 3.1171e-12 -1.86046e-13 2.22394e-11 -7.62957e-13 3.44806e-12 4.38045e-12 2.10616e-12 2.53535e-11 8.63389e-12 -5.91099e-10 5.75085e-11 -2.70192e-09 1.21243e-09 -2.17999e-09 2.61957e-09 -2.10922e-09 2.65721e-09 -1.90407e-09 3.18011e-09 2.05975e-09 -4.69034e-10 3.52872e-15 -5.20503e-14 2.26817e-13 -1.16526e-12 3.00306e-11 -4.07882e-12 -3.00863e-13 -1.7538e-12 -9.10031e-12 -2.64455e-12 -1.92912e-11 1.85614e-12 -4.62021e-13 -4.30989e-12 5.63213e-11 9.76857e-12 -1.26166e-09 -2.02217e-10 -1.32885e-09 -3.54639e-09 1.96586e-10 -1.55515e-10 8.61629e-11 -9.9984e-10 -4.08769e-12 -9.2056e-11 -4.21375e-13 -4.88974e-10 -2.01667e-14 -1.45901e-11 4.95347e-18 -3.86493e-13 -4.43595e-15 -5.60452e-12 7.45155e-14 -6.44631e-12 -9.91115e-12 -2.77193e-11 -5.03606e-12 -1.06973e-10 -1.1947e-12 3.59108e-12 -1.09117e-11 3.04341e-12 -9.81607e-11 -4.0115e-11 4.82578e-09 1.40639e-08 9.11724e-09 -7.09589e-09 7.31444e-09 -1.1627e-08 -1.46003e-10 -1.556e-09 2.75716e-10 1.03228e-11 5.17885e-10 -1.03113e-09 1.28539e-10 -1.50494e-09 -7.33864e-13 -1.17396e-11 7.31623e-13 -1.48522e-12 4.31463e-12 -6.32884e-12 -1.21451e-10 8.49511e-11 -1.13542e-10 3.21252e-10 -1.44113e-13 8.33023e-11 -1.01992e-13 6.17025e-14 -1.60876e-13 6.33351e-14 -4.05649e-13 3.78584e-13 -3.6993e-11 1.19266e-11 -8.67241e-11 4.67903e-11 -4.01723e-12 3.26052e-11 -3.51658e-12 6.53087e-12 -9.19865e-12 1.65494e-11 2.36645e-11 2.00314e-11 -1.25265e-09 9.68083e-11 -3.08312e-09 1.73547e-09 -2.73562e-09 2.42512e-09 -2.40579e-09 2.95885e-09 2.14214e-09 -2.44034e-10 -8.66736e-15 -5.02901e-14 -1.03568e-15 -1.44017e-12 8.84542e-15 -4.33326e-12 -7.83892e-14 -3.05025e-12 -3.81164e-13 -5.059e-12 -9.76943e-13 -1.14962e-13 -9.675e-13 1.40134e-12 1.86236e-13 1.34953e-11 -7.80842e-11 -8.84472e-11 -4.86331e-10 -1.12495e-09 6.0808e-10 1.34365e-09 5.60493e-12 -4.4878e-10 5.55006e-12 -1.33438e-10 1.39187e-12 -4.52825e-10 -2.09688e-15 -3.75438e-11 -1.20969e-13 -3.97983e-13 4.80114e-14 -9.45656e-13 3.60652e-13 -1.89945e-11 -2.68685e-11 -1.50629e-11 -1.65969e-12 -4.20987e-11 -2.88807e-12 1.34165e-12 -5.92695e-12 3.03504e-12 -6.84894e-10 7.11787e-11 9.61221e-09 3.13727e-10 1.21363e-08 -8.98217e-09 2.82557e-09 -9.9718e-09 -3.30268e-11 -8.16029e-11 2.69913e-10 3.60883e-11 6.22819e-10 -8.45652e-10 1.58932e-11 -6.58311e-10 -6.94028e-14 -3.18535e-12 1.77728e-12 -4.13172e-13 4.60054e-12 4.68093e-12 -1.19495e-10 9.43144e-11 -8.03437e-11 3.09863e-10 -7.2961e-14 2.99545e-12 -1.32016e-13 8.35098e-14 -2.38602e-13 1.34142e-13 -6.6982e-13 7.18277e-13 -1.06887e-10 8.85842e-12 -1.0307e-10 5.63769e-11 -1.15338e-10 5.75731e-11 -1.50242e-10 5.61444e-11 -4.10855e-11 3.26685e-11 -6.20648e-11 2.70338e-11 -2.98624e-11 4.13413e-11 -3.02214e-09 2.60902e-10 -2.8074e-09 2.332e-09 -2.10338e-09 7.24304e-10 1.18577e-10 -2.50031e-11 -4.15236e-15 -5.6771e-14 -1.87866e-13 -3.66615e-13 3.28898e-13 -5.27744e-13 -3.79905e-13 -3.70065e-13 -3.93991e-13 -4.00383e-12 1.03505e-12 4.3043e-11 -5.89553e-11 1.55918e-11 3.39651e-12 2.43415e-10 -2.68091e-11 -2.35625e-11 -6.07681e-10 -7.94837e-11 6.49044e-10 8.71791e-11 9.34559e-13 -3.31292e-10 8.67225e-12 -6.43469e-10 6.53289e-12 -1.52322e-10 -3.16265e-15 -6.70394e-11 -7.57412e-15 -5.40739e-13 -7.29948e-13 -1.37709e-13 -5.58579e-13 -6.22228e-12 -1.03808e-11 -7.44056e-12 -1.53822e-11 -4.40862e-12 2.97813e-12 7.90447e-12 8.7644e-13 2.1277e-12 2.65333e-09 2.93424e-10 1.20931e-08 -6.4523e-09 1.22444e-08 -8.46275e-09 1.44212e-10 -2.64764e-09 2.74409e-11 -3.32306e-12 4.97522e-11 7.62918e-12 3.27085e-10 -4.04039e-10 2.3438e-11 -2.34913e-10 -6.9785e-16 -1.54163e-12 -6.71065e-13 -3.86657e-14 -1.96611e-10 1.92116e-11 -2.65496e-10 2.75122e-10 -3.0259e-12 3.22301e-10 -2.1113e-13 2.93059e-13 -1.0495e-13 2.11155e-13 -2.19321e-13 2.46007e-13 -1.93706e-12 2.46957e-12 -2.32011e-12 1.5464e-12 -4.98099e-11 1.88909e-11 -9.52071e-11 4.62783e-11 -3.03494e-11 3.24545e-11 1.36708e-11 2.15112e-11 -1.15925e-11 8.9398e-11 -1.20171e-10 2.10463e-10 -6.0925e-10 1.45742e-10 -4.64182e-10 2.28486e-10 -8.55102e-11 1.51281e-10 3.8928e-11 -6.5204e-12 -4.05115e-15 -6.21905e-14 -4.42298e-14 -1.86898e-13 2.5894e-14 -3.89843e-13 -2.20585e-13 -1.46492e-13 -4.47717e-12 -2.99048e-12 1.31509e-14 2.92855e-11 -3.07217e-11 7.54376e-12 -2.11811e-12 2.25921e-10 1.27283e-13 -1.68258e-11 -7.93694e-11 -1.15887e-13 3.55172e-10 -3.47093e-10 1.6409e-12 -1.91683e-10 1.10017e-10 -7.7878e-09 -1.69885e-13 -7.39716e-11 8.72958e-15 -5.20081e-11 -2.27441e-14 -1.3398e-13 -4.59781e-15 -6.91131e-14 -3.56347e-14 -1.46836e-12 -1.21003e-12 -5.73983e-12 -1.36347e-11 6.09142e-13 4.69812e-12 1.03732e-11 3.19219e-12 4.483e-13 6.30328e-09 -1.0296e-09 9.32493e-09 -7.9849e-09 4.942e-09 -8.71163e-09 2.79181e-11 -3.52035e-10 1.39498e-11 3.75489e-12 9.28895e-12 5.80831e-12 1.01137e-10 -1.62985e-10 2.89024e-11 -1.44109e-10 -2.97062e-15 9.22889e-13 -3.38151e-13 2.10006e-13 -9.34287e-11 8.53003e-12 -2.93535e-10 1.68446e-10 -1.17177e-10 3.82621e-10 -1.00888e-11 1.49357e-10 -1.19972e-11 2.37384e-12 -2.81294e-11 2.01735e-11 -5.49594e-13 8.98615e-11 -1.55524e-12 4.59727e-13 -3.40043e-12 1.91882e-11 -4.39796e-12 4.61014e-11 -5.43112e-12 3.31521e-11 -1.00282e-11 2.79193e-11 -1.76316e-11 1.02397e-10 -2.49207e-11 2.26824e-10 -4.87647e-11 1.77938e-10 -4.82128e-11 2.1747e-10 -6.01996e-11 1.08503e-10 4.98564e-10 -5.50375e-12 -6.79826e-15 -2.23647e-14 -5.21765e-15 -1.93563e-13 7.31481e-17 -4.26433e-13 -7.1372e-14 -9.88319e-14 -1.50743e-12 -2.82931e-13 -8.03791e-14 -2.81927e-13 -1.71075e-11 1.12302e-12 1.39155e-11 2.07041e-10 2.13997e-12 -9.98043e-12 6.91983e-15 -1.17225e-13 8.60693e-10 -1.20533e-09 9.87832e-12 -5.02107e-11 -1.48073e-11 -8.10547e-09 -2.04977e-13 -5.05151e-14 -4.28183e-14 -2.65384e-15 -1.03215e-14 -7.26182e-14 -1.956e-15 -6.04082e-14 -1.45113e-12 -7.04999e-13 -2.46979e-13 -2.98103e-12 -9.04727e-13 2.30224e-14 2.91155e-12 1.6981e-13 1.10914e-09 -1.10913e-09 1.02411e-08 -6.747e-09 9.83194e-09 -5.99766e-09 1.37765e-09 -3.2046e-09 4.09216e-11 -6.35554e-12 3.02848e-11 6.20647e-12 2.83513e-10 1.14434e-10 2.81952e-10 -2.49736e-11 2.68515e-11 3.87795e-12 -2.21969e-13 4.09307e-12 -4.39453e-13 3.69837e-13 -6.46636e-12 2.41579e-13 -1.0284e-10 -2.49838e-13 -2.08554e-10 3.40877e-11 -7.80243e-11 1.40716e-10 -1.72368e-11 3.29974e-11 -1.31628e-11 2.05459e-11 4.54317e-12 1.03863e-10 -1.35142e-10 2.26574e-10 -2.78219e-10 4.58042e-10 -1.67845e-10 7.62331e-10 -2.34788e-10 1.17193e-09 -4.01244e-10 1.87081e-09 -4.60869e-10 1.68034e-09 -4.8089e-10 1.55364e-09 -8.57096e-10 1.30523e-09 -1.00048e-09 1.44795e-09 -4.89078e-10 1.30158e-09 1.18361e-09 -1.43796e-10 -8.03404e-15 -1.61573e-16 -2.50622e-14 -5.3875e-14 -1.2337e-15 -3.35655e-13 -1.04129e-14 -1.14731e-13 -2.913e-14 -2.87794e-13 2.88417e-15 -3.36367e-13 -9.10253e-13 5.31316e-14 9.84426e-12 -3.56895e-12 3.09896e-12 -8.23982e-12 8.55296e-13 -1.22625e-13 1.06173e-09 -8.28295e-10 1.98179e-11 2.81594e-11 -2.21801e-12 -8.42029e-09 -2.85535e-17 -2.26856e-12 -1.86505e-15 -8.20853e-16 -9.19559e-16 -6.81083e-14 2.95515e-14 -6.84433e-14 -1.02302e-12 -3.49074e-14 -1.63137e-13 -7.19396e-13 1.32648e-12 -2.77729e-12 1.96447e-10 -1.96838e-10 9.75677e-09 -6.42024e-09 1.07719e-08 -5.83154e-09 8.10736e-09 -1.60312e-09 3.69145e-11 -6.66841e-11 1.63079e-11 4.03024e-12 7.631e-12 5.26866e-12 3.75126e-10 4.29673e-11 3.33016e-10 1.60442e-10 7.97405e-13 3.60297e-11 -6.82672e-14 7.80007e-13 -2.18334e-13 4.60705e-13 -2.39718e-13 -3.92737e-14 -8.77966e-13 3.379e-13 -1.39177e-11 2.73181e-13 -1.72443e-11 1.59369e-12 -3.86963e-12 8.22212e-11 6.94302e-13 1.86595e-11 1.93721e-12 4.92277e-11 6.09363e-12 1.06996e-10 1.89811e-12 3.68462e-10 5.7058e-11 1.13943e-09 1.28172e-10 1.90222e-09 2.36112e-10 1.94709e-09 3.55695e-10 1.56761e-09 5.55562e-10 1.36398e-09 9.04192e-10 9.6767e-10 1.3716e-09 9.91585e-10 1.86157e-09 8.22184e-10 1.25135e-09 1.8043e-09 -1.62223e-17 -1.13329e-16 -2.92993e-14 -2.45526e-14 -2.67748e-15 -1.86896e-13 -1.13174e-14 -1.1542e-13 -9.44041e-14 -3.60048e-13 -4.15948e-14 3.07554e-12 4.97137e-14 5.70333e-13 2.45566e-13 -3.20913e-12 3.04976e-12 -1.16991e-11 7.7314e-13 -1.87406e-13 4.14698e-10 -3.92642e-10 2.24675e-10 -2.21496e-09 -2.27307e-11 -8.51177e-09 -2.0325e-15 -2.49973e-11 -2.09956e-15 -7.59969e-16 -5.24991e-15 -5.05134e-15 -1.03949e-14 -7.89541e-14 4.87355e-14 -1.09582e-13 -1.1165e-11 -8.70102e-13 1.85335e-10 -5.9337e-10 5.8863e-09 -2.97487e-09 1.22126e-08 -6.76426e-09 8.57336e-09 -1.63088e-10 8.88979e-10 9.15936e-11 2.91686e-11 3.4377e-13 1.63845e-11 2.8689e-12 6.8193e-11 2.71557e-11 2.30564e-10 1.35107e-10 1.32067e-11 9.73465e-13 -2.10225e-13 -1.1231e-12 -4.11959e-13 9.72735e-13 -1.95925e-13 1.10939e-12 -1.38328e-13 5.47003e-13 -6.83936e-14 2.4789e-13 -1.97906e-14 1.74554e-13 1.12835e-12 4.83392e-13 6.19108e-12 5.21252e-12 1.34035e-12 1.1869e-11 6.31909e-12 1.0146e-11 3.43297e-11 1.4521e-11 2.30552e-10 1.17348e-11 1.09015e-09 1.13758e-10 1.21265e-09 5.39819e-10 1.49467e-09 1.67254e-09 1.94941e-09 1.12405e-09 2.32421e-09 1.00159e-09 2.29539e-09 1.00885e-09 2.34128e-09 9.57467e-10 2.43103e-09 7.44089e-10 1.08109e-09 2.61215e-09 3.32311e-17 -1.10128e-16 -9.87009e-15 -8.09779e-16 -5.1356e-15 -4.01589e-14 5.30467e-15 -1.87295e-13 -6.53678e-13 -5.34578e-14 -6.19208e-14 3.21775e-12 6.55277e-13 6.18172e-13 4.01899e-12 4.50596e-12 5.22177e-12 -4.65011e-12 3.71669e-12 -2.91172e-15 -3.44259e-11 -1.37409e-10 -4.33161e-11 -5.30705e-09 -7.65796e-11 -8.45101e-09 -1.04613e-16 -6.73242e-10 -1.58107e-16 -7.22926e-16 -4.29652e-15 -9.36606e-16 -2.80403e-13 -2.01718e-14 3.63317e-13 -5.61637e-12 1.6324e-11 -2.81027e-11 2.13808e-12 -1.73252e-11 -1.64412e-11 -2.91744e-11 -3.27605e-10 -1.92644e-10 -3.2976e-11 -9.77862e-11 -9.64971e-12 -4.85986e-13 -9.38905e-13 -7.99838e-14 -4.06411e-12 3.08882e-12 -6.84831e-12 7.46678e-12 -1.61542e-12 -1.62307e-12 -1.02808e-12 -1.83274e-13 -1.15854e-12 -3.63234e-13 -9.93464e-13 1.49262e-12 -3.12116e-13 4.89291e-13 -4.77767e-14 1.24271e-13 -1.35853e-14 1.92537e-13 7.36984e-14 2.60314e-13 1.70214e-13 5.54242e-13 8.41037e-13 -3.83013e-13 1.89287e-12 2.48105e-12 1.86722e-12 2.30622e-12 5.17842e-12 3.81596e-12 3.29884e-11 3.24501e-12 7.61636e-11 -8.89485e-12 3.57531e-10 -2.20556e-12 1.42962e-09 4.78736e-12 1.29148e-09 4.5903e-11 6.45205e-10 3.48543e-11 4.27258e-10 -2.94619e-12 5.67255e-10 -2.03122e-12 2.61386e-10 -4.07483e-12 2.61755e-12 9.67109e-11 -4.56491e-18 -6.188e-17 -1.15711e-17 -7.6266e-16 -1.09061e-14 -2.92299e-14 9.08473e-15 -2.71901e-13 -2.36879e-14 -1.29594e-14 3.31627e-13 7.52861e-14 3.21469e-12 -1.41415e-12 6.17414e-12 2.44668e-12 1.36595e-12 -9.01404e-13 1.36316e-12 -3.58229e-18 1.70539e-11 -2.41915e-10 -2.33257e-10 -5.02182e-09 -8.80947e-10 -7.77185e-09 -2.67643e-16 -4.87063e-09 -2.41243e-16 -7.66659e-16 -2.32838e-16 -9.55774e-16 -1.91962e-14 -1.28918e-15 -1.08386e-11 -9.6666e-15 -9.68965e-14 -2.05337e-14 -1.72984e-11 -3.30192e-13 -1.68623e-11 -4.76329e-11 -6.51817e-11 -1.61006e-10 -7.14415e-11 -7.39362e-11 -8.02869e-12 -9.29095e-12 -4.15673e-12 3.96917e-13 -8.64719e-13 2.08887e-13 -2.35155e-13 5.21723e-14 -1.68264e-12 -2.56693e-14 -1.46118e-12 1.46754e-12 -6.7128e-13 1.05475e-12 -2.4271e-13 4.67348e-13 -5.52082e-14 3.79806e-13 -1.01425e-13 2.50954e-13 -2.84821e-13 4.53531e-13 9.79831e-13 1.84712e-12 1.91129e-12 2.30601e-12 1.93677e-12 1.07997e-12 1.13398e-12 1.16022e-12 2.08214e-11 1.06344e-11 3.26471e-11 2.30908e-11 7.88576e-12 2.28113e-11 4.78441e-12 5.14572e-12 2.37829e-12 -4.55123e-14 6.56292e-12 3.60101e-13 7.42735e-12 3.87676e-13 6.13662e-12 4.7137e-13 2.54058e-12 4.33843e-13 -4.25798e-13 2.86633e-13 -5.66474e-12 1.27642e-13 1.42602e-12 -5.97682e-12 -1.54832e-17 -6.36374e-17 2.77814e-17 -1.37437e-15 -4.37117e-15 -1.86334e-14 -1.39719e-15 -4.93475e-16 -8.10744e-16 -5.38516e-15 3.44963e-15 -5.04663e-16 4.3019e-13 -5.25549e-15 9.02089e-13 -1.94201e-16 8.5247e-16 -1.72109e-16 8.50092e-16 -1.66424e-18 2.19583e-10 -5.00583e-10 -4.91264e-10 -4.27566e-09 -1.70146e-09 -6.52843e-09 -4.1302e-16 -6.53293e-09 -3.29697e-16 -8.68247e-16 -3.01288e-16 -9.72971e-16 -3.5712e-16 -1.23259e-15 -8.75191e-15 -1.27583e-15 -7.29956e-14 -1.20853e-14 -1.97041e-13 -2.34765e-13 -4.56977e-11 -5.46395e-11 -1.23908e-10 -9.65801e-11 -1.18356e-10 -3.04669e-11 -6.14353e-11 -1.11269e-14 -3.66016e-13 2.98642e-13 -2.50357e-13 2.18086e-14 -2.90364e-13 2.52635e-14 -3.01311e-13 1.48178e-13 -2.83918e-13 1.59875e-12 -2.59796e-13 1.16397e-12 -2.57893e-13 5.86858e-13 -2.42282e-13 4.6971e-13 -2.62369e-13 3.61995e-13 -1.21971e-13 5.57365e-14 -2.04083e-14 8.55921e-14 6.25178e-13 1.50344e-13 1.71859e-12 9.15261e-13 8.03447e-12 2.64549e-12 1.13372e-11 1.45693e-11 1.26556e-11 2.39477e-11 1.16667e-11 2.62039e-11 3.41834e-13 4.22568e-12 2.28123e-14 2.00949e-13 6.26405e-14 2.34775e-13 -3.62759e-14 3.82919e-13 -1.65461e-13 4.87525e-13 -2.06375e-13 5.1467e-13 -4.24599e-13 8.56546e-14 -5.96677e-13 -5.26698e-13 6.21407e-13 -9.16287e-13 -2.21274e-17 -3.16249e-17 -7.00975e-16 -3.75679e-16 -2.65597e-17 -7.30052e-16 -3.80735e-16 -5.9374e-16 -2.34474e-15 -2.19926e-15 7.61439e-16 4.68807e-15 2.97692e-18 -4.4922e-15 1.89307e-18 -1.94291e-16 1.64059e-18 -1.72129e-16 1.22104e-18 -1.72955e-18 4.65043e-10 -7.0902e-10 -4.09226e-10 -3.36303e-09 -9.65029e-10 -5.938e-09 -3.79167e-16 -1.34325e-10 -3.13946e-16 -9.52468e-16 -3.8332e-16 -9.22618e-16 -4.0306e-16 -1.38204e-15 -9.59195e-16 -1.04707e-15 -4.38676e-15 -8.97751e-15 2.48407e-12 -2.72531e-12 -7.97716e-11 -2.46712e-11 -1.5853e-10 -3.21901e-11 -2.94524e-13 -9.76441e-12 -3.46554e-13 -1.57778e-14 -2.58649e-13 1.46177e-13 -3.13335e-13 8.18695e-15 -2.93518e-13 -6.53429e-14 -3.49999e-13 8.56345e-14 -8.00156e-10 1.1412e-10 -1.95987e-09 4.14366e-10 -2.70711e-09 7.64578e-10 -1.1491e-09 6.38823e-10 -1.19389e-13 1.72105e-10 -1.13676e-13 2.52318e-15 -7.64866e-14 4.10753e-15 -3.64869e-14 6.54576e-14 1.05302e-13 2.16902e-13 -1.92896e-13 8.67328e-13 -2.85156e-12 2.98755e-13 -5.37719e-12 1.09238e-14 -1.70551e-12 -6.46179e-14 -9.74263e-14 9.30127e-14 -8.34284e-14 1.23794e-13 -8.78939e-14 1.66781e-13 -1.18122e-13 3.28419e-13 -2.46698e-13 5.13318e-13 -2.821e-12 2.9769e-12 -2.58934e-12 2.69465e-12 -2.7661e-12 2.28402e-12 5.15744e-13 -1.78062e-12 -4.69934e-18 -1.17394e-17 -1.7737e-17 -2.34926e-16 -3.65721e-17 -5.91738e-16 -1.97731e-16 -1.04414e-15 -2.39635e-15 -1.48111e-15 9.55919e-16 2.25706e-15 5.0093e-16 -6.96865e-16 3.58334e-16 -4.17649e-17 9.12716e-17 -1.29582e-17 9.02933e-17 -1.26208e-18 3.73463e-10 -4.0459e-10 -7.83663e-11 -2.32657e-09 -1.80787e-11 -2.84185e-09 -3.92434e-15 -1.524e-10 -2.21716e-15 -2.68068e-15 -7.98223e-15 4.78588e-15 -4.74668e-16 -9.40629e-15 1.01686e-15 -2.77044e-15 1.16111e-13 -1.92057e-13 -4.11016e-12 -1.51785e-12 -7.95844e-12 -6.55216e-13 -7.95639e-12 -1.67299e-13 -2.32793e-12 -8.56704e-14 -4.04477e-12 1.03131e-13 -2.41804e-11 -5.36013e-12 -4.04859e-12 -3.06071e-11 7.50804e-11 -2.06372e-11 -7.164e-10 -9.49033e-12 -2.51742e-09 6.00949e-11 -2.31947e-09 2.26454e-10 -1.80016e-09 2.54704e-10 -1.44897e-09 2.96513e-10 -1.37118e-09 3.54627e-10 -1.9775e-13 8.30367e-11 -2.81325e-13 3.74135e-14 -3.30732e-12 3.04308e-12 -1.60246e-12 1.64673e-12 -6.05078e-13 1.45508e-13 -3.25899e-13 4.9913e-15 -2.13722e-13 -6.89975e-14 -1.5563e-13 -3.45765e-14 -1.12371e-13 4.81201e-14 -2.01527e-13 1.52159e-13 -2.48243e-12 2.38455e-12 -4.88575e-11 4.23017e-11 -8.83924e-11 1.0625e-10 -5.91712e-12 6.50494e-11 -3.37506e-12 2.65966e-13 -1.83804e-12 2.10536e-13 6.38443e-14 -1.04765e-12 -1.87749e-18 -7.25826e-18 -3.47291e-17 -2.13082e-16 -7.10745e-17 -7.19735e-16 -1.47024e-16 -1.25162e-15 -8.63557e-16 -1.36855e-15 4.39428e-16 -3.69275e-18 4.9465e-17 -2.71438e-17 4.01416e-17 -6.32954e-18 1.05994e-17 -2.07995e-18 1.78195e-16 -1.70923e-16 4.60221e-10 -1.19259e-10 1.47453e-10 -1.12941e-09 -2.48198e-11 -1.01974e-09 -2.28929e-13 5.33835e-11 -1.64567e-13 -6.71068e-14 -7.9467e-13 -1.39299e-12 -1.14063e-13 -9.50836e-12 -9.92442e-14 -5.31214e-16 -4.65662e-13 -1.7762e-14 -3.86353e-13 -4.59452e-13 -4.64937e-13 -9.17651e-13 -6.89726e-13 -2.58523e-13 -1.09131e-12 1.51532e-14 -7.13612e-11 -3.01597e-14 -2.30766e-10 -2.0056e-11 -2.00078e-10 -2.20365e-11 -1.69719e-10 -1.4065e-11 -4.57986e-13 -4.5877e-13 4.33815e-11 -1.22174e-14 -3.06998e-09 9.28591e-13 -2.80117e-09 -4.16578e-12 -2.64546e-09 1.51956e-10 -1.50205e-10 2.56993e-11 -4.85303e-11 4.47979e-12 -6.31387e-11 3.63622e-11 -1.80932e-12 3.55891e-11 -1.76803e-13 2.06802e-14 -2.17488e-14 4.02668e-15 -3.45044e-14 3.51394e-15 -1.67147e-14 4.11406e-15 1.56258e-14 2.70881e-14 6.50054e-14 9.79851e-14 -1.02127e-12 1.29118e-12 -1.0549e-10 6.04611e-11 -2.3664e-10 1.50663e-10 -2.80336e-10 1.56329e-10 -6.55703e-13 1.31533e-10 -3.94416e-13 1.17024e-13 -2.02568e-13 1.14967e-13 5.87436e-14 -1.61599e-13 -6.69942e-19 -4.5468e-18 -4.05445e-17 -1.64643e-16 -8.99408e-17 -6.357e-16 -1.22931e-16 -1.20364e-15 -7.98009e-18 -1.44349e-15 4.74808e-18 -5.15759e-17 6.84422e-18 -3.08078e-17 4.12101e-18 -4.16249e-18 2.60575e-18 -3.64213e-18 1.9097e-13 -1.91141e-13 1.26767e-09 -2.79077e-10 5.74779e-11 -3.20427e-10 -7.37788e-11 -2.89061e-10 -7.05171e-12 1.37744e-10 -9.96962e-13 -6.12411e-12 -3.00442e-12 -2.48523e-12 -7.48554e-16 -7.61477e-12 -8.67321e-16 -4.50904e-16 -1.82512e-14 -4.22743e-16 -1.24747e-12 -2.78223e-14 -1.36909e-12 -2.26774e-13 -4.18874e-14 -4.53751e-14 -1.23795e-12 6.17948e-14 -1.60041e-11 3.64703e-15 -7.52818e-11 -3.24236e-12 -7.33945e-11 -3.45184e-11 -3.39202e-12 -3.09232e-11 -4.39901e-12 -5.50509e-13 -5.11135e-12 -2.3289e-13 -3.58542e-10 -1.07614e-12 -6.01941e-10 -4.28191e-12 -3.19468e-10 -3.24127e-12 -9.13199e-11 -6.32201e-12 -1.37995e-10 2.03389e-11 -3.25029e-10 6.23081e-11 -4.75062e-14 5.58783e-11 -2.04257e-14 4.10101e-15 -9.1148e-15 4.14046e-15 -3.24302e-14 5.70981e-15 1.31969e-14 2.75306e-14 1.52227e-13 2.91239e-14 7.40804e-14 2.55772e-13 -7.1053e-11 8.61434e-12 -3.25156e-10 1.04469e-10 -3.01187e-10 1.33843e-10 -2.64918e-10 1.26292e-10 -2.39403e-10 1.15742e-10 -3.04604e-13 2.78849e-11 -1.6358e-13 6.87231e-14 5.64042e-14 -7.30489e-14 7.20304e-21 -2.56057e-18 -3.38977e-17 -1.08708e-16 -8.74187e-17 -4.65332e-16 -1.14951e-16 -9.65665e-16 -3.90078e-17 -1.29582e-15 1.32064e-17 -9.69601e-17 5.72472e-18 -2.46019e-17 1.86421e-18 -2.43868e-18 4.6759e-17 -5.17738e-17 9.32023e-11 -9.33934e-11 3.37765e-10 2.12725e-10 -2.00025e-10 2.06884e-10 -4.29691e-10 -4.54442e-10 -9.06471e-11 -3.45929e-09 -3.20427e-12 -9.36612e-11 -4.88939e-12 -4.44973e-12 -2.35726e-16 -7.35059e-12 -3.57101e-16 -3.70045e-16 -5.07066e-16 -3.0642e-16 -1.2403e-13 -7.3082e-16 -1.35721e-12 -7.67961e-14 -7.87197e-13 1.91687e-14 -4.20139e-13 7.93094e-14 -2.82979e-13 2.23653e-15 -3.63163e-12 -1.69126e-13 -9.83272e-11 -1.72214e-11 -1.62274e-11 -2.59929e-11 -6.28711e-12 -1.15358e-11 -7.4297e-12 -7.29842e-14 -6.82992e-12 -1.74668e-13 -9.19026e-12 -8.62979e-14 -9.06924e-12 -3.57953e-13 -2.40962e-11 2.21143e-12 -2.8693e-10 4.48809e-11 -2.97473e-10 7.56808e-11 -2.2351e-10 7.09089e-11 -3.00804e-14 2.88419e-11 -1.82844e-14 3.96571e-15 -4.80856e-15 3.6455e-15 -1.03534e-14 1.40039e-15 2.45565e-14 8.27414e-15 2.84337e-13 1.69894e-14 8.30909e-12 4.34102e-13 -5.83195e-11 7.73885e-12 -2.52088e-10 5.94277e-11 -2.13679e-10 9.46041e-11 -1.52723e-10 7.47381e-11 -2.42796e-13 6.64196e-12 -1.34569e-13 5.07835e-14 4.63825e-14 -3.25181e-14 2.36818e-20 -1.34306e-18 -2.24313e-17 -6.12675e-17 -6.70857e-17 -2.87296e-16 -7.42644e-17 -6.56596e-16 -2.08375e-17 -7.15718e-16 1.15092e-17 -1.25061e-16 2.36311e-18 -1.76699e-17 5.52186e-19 -1.9192e-18 1.47969e-14 -1.48492e-14 8.28351e-12 -7.36419e-11 2.41836e-11 9.6845e-10 -8.4927e-11 6.13209e-12 -1.01056e-09 -2.38759e-10 -7.06467e-10 -3.63459e-09 -7.45548e-11 -3.44547e-09 -4.46859e-12 -7.83971e-11 -8.35903e-16 -3.91285e-13 -2.9828e-16 -9.50368e-16 -5.80468e-16 -1.01738e-16 -1.17244e-15 -2.40253e-16 -3.52042e-13 -2.37842e-15 -6.33139e-13 5.91625e-16 1.4732e-13 3.13717e-14 3.87081e-13 1.68522e-14 -1.36762e-11 4.94206e-14 -1.12825e-10 -4.48936e-12 -1.23256e-10 -1.31936e-11 -5.15728e-12 -6.45785e-12 -4.1699e-12 8.77592e-15 -3.63683e-12 1.93435e-13 -2.64075e-12 8.55391e-13 3.51263e-13 1.58508e-12 1.47711e-12 5.53919e-12 -2.76804e-10 2.37996e-11 -2.74385e-10 7.68029e-11 -2.71623e-10 7.09521e-11 -2.09256e-10 5.44362e-11 -2.57182e-14 1.78816e-11 -1.42666e-14 3.77592e-15 -4.13111e-15 2.1855e-15 4.21546e-15 2.84565e-15 1.39153e-14 1.09148e-14 2.73421e-13 1.69135e-13 -4.05053e-12 8.49165e-12 -4.54814e-11 1.20269e-11 -1.03177e-10 1.04538e-11 -1.66562e-11 9.00885e-12 -2.31267e-13 3.39954e-13 -1.39028e-13 5.21633e-14 3.34047e-14 -2.99268e-14 2.86248e-20 -7.2628e-19 -1.13992e-17 -2.90593e-17 -4.0542e-17 -1.47088e-16 -4.12371e-17 -3.67383e-16 -1.71597e-17 -4.50169e-16 7.48228e-18 -1.28084e-16 8.45296e-19 -1.0817e-17 1.98775e-19 -7.84049e-19 -1.48275e-14 -2.10042e-17 -1.67971e-10 -1.81378e-13 -2.66022e-12 1.78566e-13 3.6357e-12 -1.67551e-14 -4.52816e-10 -1.31323e-10 -1.18476e-09 -2.76918e-09 -3.28697e-10 -4.17572e-09 -1.90056e-11 -1.34107e-09 -1.52244e-14 -1.22968e-15 -7.68652e-16 -1.55336e-14 -7.34426e-16 -2.0952e-16 -3.51195e-16 -1.21653e-14 -2.88525e-15 -4.31055e-19 -2.0553e-13 -1.4924e-15 -2.0304e-13 -3.43484e-15 7.19387e-14 1.44937e-14 1.04917e-13 1.16918e-14 -1.32512e-10 8.76269e-13 -1.49338e-10 6.16855e-12 -1.54558e-10 5.32453e-12 -2.62325e-13 7.28297e-12 -1.30992e-13 5.75548e-15 6.85538e-13 7.00548e-15 -8.0992e-13 5.0601e-13 2.89833e-12 2.2965e-11 -3.98832e-11 3.3264e-11 -1.52217e-10 2.67417e-11 -1.22554e-10 4.30408e-12 -1.55778e-10 1.84482e-12 -1.26131e-10 1.00891e-11 -9.23319e-15 1.05708e-11 -1.22204e-14 1.66413e-15 -2.32957e-14 3.66401e-15 -1.12736e-13 8.69005e-14 -2.41577e-11 3.03263e-12 -5.90231e-11 2.28845e-11 -6.32601e-11 1.94097e-11 -8.12011e-12 1.2664e-11 -1.59235e-13 1.22993e-12 -9.73232e-14 3.80475e-13 -7.3298e-14 1.10718e-13 2.75499e-14 4.18664e-14 3.0195e-20 -5.11352e-19 -3.96958e-18 -1.17524e-17 -1.82016e-17 -6.1057e-17 -2.06097e-17 -1.6476e-16 -1.21648e-17 -2.3597e-16 3.71237e-18 -9.83528e-17 2.03897e-19 -5.17519e-18 -8.62358e-20 -3.30774e-19 -7.59508e-17 -2.56628e-18 -1.81487e-13 -2.15321e-17 -3.10182e-15 8.40556e-17 -3.81286e-14 1.85477e-14 -6.4349e-11 -3.50461e-11 -6.78589e-10 -1.13883e-09 -1.03881e-09 -3.68044e-09 -1.4045e-10 -3.59742e-09 -3.37105e-13 -1.19901e-10 -3.21997e-13 -1.3122e-13 -1.20397e-13 -2.62999e-13 -1.40516e-16 -2.89657e-15 -1.43417e-16 3.46592e-19 -1.72316e-15 1.89964e-17 -2.65205e-14 -5.67828e-20 4.7065e-15 -1.48972e-16 1.82246e-14 -7.37337e-17 8.81299e-13 7.67075e-15 -1.24851e-10 7.39111e-13 -1.32609e-10 1.77756e-11 -6.09109e-11 1.75643e-11 -2.19866e-13 2.96845e-13 -2.17462e-13 7.27038e-15 -4.78826e-12 2.11961e-13 -1.17006e-10 1.82929e-11 -1.12785e-10 3.68887e-11 -1.00984e-10 2.35448e-11 -9.41962e-12 6.51742e-12 -7.98051e-12 3.4466e-13 -4.68079e-11 1.34462e-12 -2.98703e-11 1.38999e-11 -3.61298e-14 8.76302e-12 -4.24493e-14 1.55924e-15 2.86273e-14 1.28161e-14 -4.90119e-12 1.53197e-13 -6.40568e-11 7.63347e-12 -6.07142e-11 1.96436e-11 -6.24781e-11 1.75818e-11 -7.43412e-11 1.62518e-11 -2.96327e-11 1.15236e-11 -1.43443e-14 2.95983e-12 3.82443e-15 -3.24144e-14 3.71542e-20 -5.2425e-19 -6.29813e-19 -4.73189e-18 -5.56089e-18 -2.01445e-17 -7.93531e-18 -5.62213e-17 -6.63169e-18 -9.28911e-17 1.16963e-18 -5.55616e-17 1.3719e-20 -1.92676e-18 -7.2953e-20 -1.4744e-19 -3.36639e-18 -9.4869e-19 -5.73007e-17 -9.21199e-18 -1.11989e-17 -1.2545e-18 1.8646e-14 1.73299e-17 1.70315e-11 -1.0952e-16 -5.037e-11 -7.54183e-11 -1.064e-09 -2.52462e-09 -3.36759e-10 -4.1909e-09 -2.76896e-11 -1.29021e-09 -7.71434e-12 3.04372e-13 -2.53746e-12 2.78975e-12 -3.30903e-17 7.56851e-15 -3.60021e-17 1.03746e-18 -4.55659e-17 7.72216e-18 -8.64558e-17 1.13517e-17 -2.96843e-16 2.36545e-17 1.68175e-15 7.65282e-17 9.20653e-15 9.04362e-17 -3.56168e-12 -1.71017e-14 -6.74378e-11 -3.44309e-13 -5.95167e-11 7.76571e-12 -1.00018e-13 2.04527e-12 -9.09505e-14 1.57131e-15 1.10111e-13 1.04481e-14 -2.95034e-12 -2.69948e-15 -7.36365e-11 5.57748e-12 -6.343e-11 2.22577e-11 -1.64181e-12 7.19146e-12 -1.30057e-12 4.15212e-14 -1.0281e-11 1.42865e-13 -3.26172e-11 5.03559e-12 -1.21429e-11 9.82068e-12 -5.40609e-14 3.68052e-12 -4.18501e-14 4.50087e-16 1.10372e-13 -1.5626e-16 3.45314e-13 -2.42577e-14 2.08965e-12 4.76237e-14 -4.88889e-11 1.87201e-12 -4.74832e-11 1.26777e-11 -4.97673e-11 1.04472e-11 -2.37746e-11 9.44897e-12 3.30696e-13 -5.11453e-15 6.06246e-20 -6.35172e-19 5.23995e-20 -2.47787e-18 -8.83693e-19 -5.36213e-18 -2.00996e-18 -1.32744e-17 -2.63974e-18 -2.41731e-17 1.26387e-19 -2.20172e-17 -1.30649e-21 -5.62091e-19 -3.72459e-20 -6.25369e-20 -1.21785e-18 -7.72206e-20 -1.11779e-17 -3.6515e-19 -4.30128e-18 -4.68815e-19 1.32358e-16 -1.11173e-18 2.53677e-17 -1.57646e-18 -2.57187e-10 -3.37882e-16 -1.00301e-09 -1.11366e-09 -1.25932e-09 -3.7947e-09 -3.33458e-11 -2.87437e-09 -1.22326e-11 4.74709e-13 -3.38523e-12 4.56734e-12 -1.35459e-17 7.71129e-13 -1.63628e-17 1.61124e-18 -3.27252e-17 4.71756e-18 -6.29703e-17 1.01329e-17 -1.18197e-16 2.06538e-17 -1.27895e-16 3.99527e-17 -6.57086e-17 4.33025e-17 -1.68622e-14 -3.0801e-16 -2.46903e-12 -4.50048e-15 -3.8268e-12 -6.08292e-15 -7.42955e-15 2.15857e-13 -6.43992e-15 1.167e-15 1.47558e-17 1.68595e-15 -8.89306e-16 -1.485e-15 -1.32217e-11 -5.93258e-14 -1.99643e-11 -5.10718e-14 -2.5921e-13 9.57474e-13 -1.98998e-13 2.79596e-14 -5.50874e-14 3.6718e-14 -1.14335e-11 6.02857e-14 -3.14583e-11 2.18883e-12 -1.06983e-15 2.15695e-12 -8.32063e-16 1.13478e-16 -1.23402e-15 2.15114e-16 -2.47813e-14 -5.36394e-16 2.19777e-14 4.77525e-16 1.75444e-12 -6.9981e-15 -1.36767e-11 -3.17718e-14 -4.40469e-11 3.60942e-13 -3.29588e-13 4.62227e-13 1.30989e-15 -2.3518e-16 1.06873e-19 -7.72257e-19 9.23275e-20 -1.77571e-18 1.21489e-20 -1.38548e-18 -2.53705e-19 -1.99505e-18 -7.10142e-19 -3.93243e-18 -6.62121e-22 -5.51423e-18 -8.05916e-22 -1.35497e-19 -2.84281e-21 -2.9287e-20 -3.32969e-20 -1.88703e-20 -2.02724e-19 -3.93349e-20 1.58377e-19 -1.0653e-19 1.08776e-18 -3.78199e-19 8.67914e-19 -3.52037e-19 2.76258e-15 -3.09865e-15 -1.31663e-10 -2.00546e-13 -1.0359e-09 -2.76632e-10 -1.5677e-12 -1.87453e-09 -1.94632e-11 5.0147e-13 -9.15952e-12 8.81781e-12 -5.51098e-18 5.65594e-12 -8.11317e-18 2.08137e-18 -1.36214e-17 2.9736e-18 -2.63669e-17 5.24304e-18 -5.25091e-17 1.05105e-17 -9.10733e-17 2.11484e-17 -1.35835e-16 3.66225e-17 -7.19981e-16 5.40631e-17 -5.72513e-15 2.82194e-16 -1.20041e-14 4.83543e-17 -9.68476e-14 -2.24614e-15 -2.87344e-15 3.84677e-14 -4.76831e-15 1.14992e-15 -5.20212e-15 1.06523e-15 -5.91205e-14 -3.89041e-15 -1.11109e-13 5.20456e-16 -7.34993e-14 -5.29748e-15 -1.24068e-14 2.2667e-14 -8.47314e-15 4.29594e-14 -3.46264e-13 -1.73485e-14 -3.09807e-12 -7.48018e-15 -1.86815e-12 -1.10479e-13 -5.68614e-16 3.41706e-14 -4.8921e-16 9.24637e-17 -9.50345e-16 1.08865e-16 -5.18766e-16 1.95039e-16 -1.25954e-14 3.96095e-16 -3.03777e-13 1.81464e-15 -3.20351e-13 1.66085e-14 -3.11667e-16 2.36619e-13 1.23405e-15 -2.76187e-16 1.73919e-19 -9.02144e-19 1.11628e-19 -1.40796e-18 2.01447e-20 -5.50857e-19 -4.91938e-21 -2.17407e-19 -1.12388e-19 -3.64077e-19 -2.2395e-22 -7.84489e-19 -3.35683e-22 -3.60117e-20 -4.80131e-22 -1.30967e-20 -1.62796e-21 -6.03048e-21 -6.44459e-21 -7.98078e-21 2.83823e-20 -3.03734e-20 2.98157e-19 -3.37326e-19 2.38264e-19 -4.21935e-19 2.1191e-15 -1.51622e-14 2.48733e-16 -9.81003e-15 -2.76633e-10 -1.87384e-16 -1.83344e-12 -1.06126e-09 -1.71092e-11 4.84254e-13 -1.53897e-11 5.90555e-12 -7.40789e-12 2.74218e-12 -5.83063e-18 1.01261e-12 -6.73634e-18 2.22868e-18 -9.72896e-18 2.82092e-18 -1.89035e-17 4.48947e-18 -3.79829e-17 9.01959e-18 -6.83249e-17 1.81145e-17 -1.16131e-16 3.22208e-17 -1.27491e-16 5.40207e-17 -2.27241e-16 5.84792e-17 -4.54095e-15 1.0089e-16 -4.50026e-15 -4.8731e-16 -3.51423e-15 1.64318e-15 -1.32277e-15 9.90035e-16 -9.36441e-16 5.19227e-16 -8.13763e-16 3.93689e-16 -6.11149e-15 -2.52954e-17 -5.37427e-14 2.44141e-15 -4.7334e-14 1.46743e-15 -6.27743e-15 1.04766e-16 -1.38988e-14 3.19028e-17 -1.32411e-13 1.09388e-16 -5.47044e-16 1.46338e-14 -6.31441e-16 1.31987e-16 -9.02673e-16 1.39833e-16 -1.0151e-15 1.82695e-16 -1.95964e-15 7.44264e-16 -3.02855e-14 1.3352e-14 -9.29683e-13 6.0339e-13 -6.20664e-12 5.38583e-12 1.41223e-10 -2.59065e-09 2.48854e-19 -9.67368e-19 1.17904e-19 -1.03192e-18 1.39058e-20 -3.09638e-19 1.65576e-21 -6.43946e-20 -8.79916e-21 -3.63998e-20 -3.95127e-23 -2.01403e-20 -1.01926e-22 -1.22481e-20 -8.31761e-23 -5.25471e-21 -8.01029e-23 -1.77202e-21 1.13658e-22 -1.27695e-21 6.13406e-21 -4.60107e-21 1.48869e-19 -6.34561e-20 2.33051e-19 -5.72562e-18 1.04873e-14 -1.78265e-14 3.53294e-15 -9.45861e-15 1.38573e-14 -1.1182e-14 -8.99314e-11 -1.18231e-10 -1.73803e-11 2.30064e-11 -1.4449e-11 7.92866e-12 -1.38909e-11 6.81914e-12 -7.13935e-12 4.54352e-12 -5.40045e-18 6.26281e-13 -2.91774e-18 3.26397e-19 -5.47297e-18 1.95356e-18 -1.20836e-17 3.39406e-18 -2.50364e-17 6.93059e-18 -4.85598e-17 1.40164e-17 -8.53451e-17 2.68523e-17 -1.50998e-16 4.66873e-17 -2.87341e-16 8.17309e-17 -7.63048e-16 1.53902e-16 -9.8277e-16 4.04563e-16 -8.3437e-16 5.15515e-16 -5.08203e-16 4.31758e-16 -3.35201e-16 2.58038e-16 -5.37709e-16 1.65853e-16 -5.91969e-16 2.5739e-16 -2.85629e-16 2.72282e-16 -3.62802e-16 1.25446e-16 -5.21297e-16 1.51259e-16 -7.92659e-16 2.05364e-16 -2.91772e-15 -9.32148e-17 -7.72018e-16 1.02662e-15 -1.19709e-15 1.76209e-16 -1.70147e-15 4.26351e-16 -7.51888e-15 4.68646e-15 -1.61651e-13 1.228e-13 -3.40747e-12 2.78911e-12 -2.10794e-09 8.12334e-11 7.83093e-10 -9.10713e-09 2.9435e-19 -8.7115e-19 9.91398e-20 -6.15374e-19 1.00545e-20 -1.36706e-19 8.37263e-22 -2.27292e-20 -9.08705e-23 -1.28332e-20 -1.5894e-24 -7.12565e-21 -1.85662e-23 -4.27538e-21 -7.08487e-24 -1.74671e-21 1.67608e-23 -4.65293e-22 4.65739e-23 -2.28544e-22 6.79428e-22 -8.66212e-22 1.66436e-20 -2.57485e-20 1.08593e-15 -6.54842e-19 5.1747e-15 -6.66556e-18 4.22317e-15 -3.00132e-16 -6.61159e-15 -5.07878e-17 -1.14428e-10 -8.565e-13 -1.26362e-11 1.34567e-10 -6.0912e-13 9.83611e-11 -4.94292e-13 6.95274e-12 -4.58624e-13 4.73961e-12 -4.06585e-19 3.85319e-13 -4.46429e-19 3.53863e-19 -5.5991e-19 2.0554e-18 -6.67701e-19 3.48529e-18 -6.73951e-18 1.29607e-17 -1.39305e-17 4.36454e-18 -2.71671e-17 9.04551e-18 -4.95721e-17 1.77357e-17 -8.94385e-17 3.25955e-17 -1.66123e-16 5.93583e-17 -2.54747e-16 1.11617e-16 -2.51805e-16 1.74045e-16 -1.84801e-16 1.75955e-16 -1.11911e-16 1.33083e-16 -8.98261e-17 8.3818e-17 -9.62229e-17 7.07419e-17 -9.20637e-17 8.08005e-17 -1.07381e-16 8.39796e-17 -1.13954e-16 1.09193e-16 -6.72319e-17 1.34158e-16 -9.39488e-17 9.72568e-17 -3.9113e-17 1.86215e-16 -3.16879e-18 1.37579e-16 3.02171e-17 1.16525e-16 1.64941e-15 2.93574e-16 5.77299e-14 1.81306e-15 1.28309e-12 4.10186e-14 3.49397e-11 1.36931e-13 1.84358e-12 1.938e-10 2.55113e-19 -5.13757e-19 5.88707e-20 -2.38298e-19 4.63197e-21 -3.75669e-20 3.31952e-22 -5.50771e-21 4.54913e-26 -2.9742e-21 8.83592e-24 -1.68631e-21 3.6103e-25 -1.04126e-21 4.12476e-24 -4.17186e-22 8.18361e-24 -9.20818e-23 9.27886e-24 -3.50006e-23 8.87795e-23 -2.80279e-22 3.96104e-21 -1.28831e-20 9.80741e-20 -3.68219e-19 7.92037e-20 -3.73279e-18 -1.21206e-18 -1.99115e-17 5.78276e-16 -6.30345e-17 -4.38625e-12 1.0154e-15 4.54159e-12 8.93411e-12 -8.08264e-11 1.52589e-10 -4.24885e-10 4.47557e-10 -5.65286e-12 1.47213e-10 -5.76497e-12 7.27166e-13 -3.53917e-11 7.21433e-11 -1.04527e-10 2.21952e-10 -5.95699e-11 1.4263e-10 -6.81679e-18 4.4646e-12 -2.74413e-18 2.66473e-19 -5.51605e-18 2.27142e-18 -1.03453e-17 4.53557e-18 -1.80417e-17 8.56613e-18 -3.04255e-17 1.52489e-17 -4.61421e-17 2.66196e-17 -5.0103e-17 4.24717e-17 -4.13553e-17 4.95316e-17 -2.57655e-17 4.51647e-17 -1.5712e-17 3.23957e-17 -1.05584e-17 2.43006e-17 -6.17821e-18 2.27158e-17 4.73295e-19 2.52432e-17 1.05981e-17 3.32084e-17 3.21406e-17 4.7692e-17 4.07479e-17 3.73239e-17 5.64321e-17 3.56469e-17 8.41427e-17 3.89584e-17 9.78958e-17 3.45458e-17 1.52339e-16 3.63202e-17 1.19904e-15 4.13077e-17 2.76667e-14 -2.07149e-16 1.63919e-13 1.28497e-16 3.20498e-15 1.99826e-12 1.22057e-19 -1.43032e-19 1.81376e-20 -3.37621e-20 1.00632e-21 -3.65307e-21 6.5611e-23 -6.89461e-22 3.32878e-24 -3.6849e-22 2.75579e-24 -2.12514e-22 1.77665e-24 -1.32419e-22 1.98933e-24 -5.25684e-23 1.61296e-24 -9.02947e-24 1.19701e-24 -1.7549e-24 1.91748e-23 -2.38294e-25 1.2022e-21 -6.56665e-26 2.96113e-20 -3.46358e-23 1.56653e-19 -9.22822e-21 -4.93482e-18 -1.39774e-19 -3.04766e-18 -5.91142e-18 1.05089e-15 -6.16932e-18 8.3368e-13 1.51361e-15 1.28418e-10 1.0815e-12 2.87842e-10 2.56967e-10 3.40991e-10 3.07295e-10 -2.71502e-10 8.36854e-10 -3.5167e-10 2.2309e-10 -2.26841e-10 1.63609e-10 -4.45481e-12 9.31994e-11 -5.3875e-19 9.79765e-15 -5.44137e-19 2.47373e-19 -8.86589e-19 5.89738e-19 -1.61016e-18 9.50574e-19 -2.81818e-18 1.72772e-18 -4.58303e-18 3.07471e-18 -6.82227e-18 5.17794e-18 -8.00703e-18 8.15878e-18 -7.32045e-18 1.04284e-17 -5.0273e-18 1.08084e-17 -2.86819e-18 8.95686e-18 -1.34845e-18 6.89825e-18 -9.61558e-20 5.70962e-18 1.30454e-18 5.6388e-18 3.55419e-18 6.74561e-18 8.45505e-18 9.62154e-18 1.11892e-17 8.62988e-18 1.32172e-17 7.37648e-18 1.71856e-17 7.22532e-18 2.00474e-17 6.52224e-18 2.33038e-17 5.97976e-18 2.89955e-17 5.95411e-18 3.63821e-17 6.05201e-18 1.3201e-16 1.79894e-17 1.94371e-16 3.0447e-15 1.47529e-20 1.09527e-21 3.79972e-23 3.49587e-24 2.36754e-25 1.63526e-25 1.28959e-25 1.30389e-25 7.51441e-26 2.82012e-26 7.65921e-27 3.05029e-27 2.08356e-24 6.67975e-22 1.45708e-20 8.16048e-19 2.68087e-17 1.57043e-15 1.0788e-12 1.45917e-10 3.23441e-10 -1.81354e-10 -1.49714e-10 -7.41619e-11 -9.78067e-15 -2.66083e-19 -2.60105e-19 -2.02601e-19 -2.5898e-19 -4.41523e-19 -6.92233e-19 -1.0076e-18 -1.25936e-18 -1.30338e-18 -1.08587e-18 -7.67539e-19 -4.95952e-19 -3.11745e-19 -1.72176e-19 3.98332e-21 2.50388e-19 5.3362e-19 7.45196e-19 9.70237e-19 1.15779e-18 1.34589e-18 1.5484e-18 1.8291e-18 2.51386e-18 1.37927e-17 -1.99052e-08 1.24589e-08 -3.70281e-08 3.7386e-08 -2.22727e-08 1.62626e-08 -1.09795e-10 6.37651e-09 -1.64501e-11 4.42128e-12 -3.0968e-11 3.53065e-12 -6.4179e-12 2.01578e-10 -1.4124e-11 2.08372e-10 -2.34562e-12 2.05302e-10 -3.24281e-12 2.49521e-11 -2.82731e-11 3.3955e-11 1.17237e-11 2.63539e-11 -3.60309e-09 -5.52815e-10 -1.41387e-07 -9.00596e-09 -2.62331e-07 3.29019e-09 -2.53585e-07 2.18497e-08 -1.72331e-08 3.80037e-09 -1.18638e-09 1.9669e-09 -1.45317e-09 1.17141e-09 -6.04718e-10 -9.29043e-09 2.45574e-09 -3.05129e-08 -4.61597e-09 -7.18536e-09 -1.21099e-08 2.48052e-09 -2.31817e-09 3.34881e-09 -3.57185e-09 3.00953e-09 -1.07492e-08 5.74668e-09 -1.22338e-08 -2.74053e-08 -2.57918e-08 -4.64155e-09 -1.74548e-08 -1.53395e-08 -6.27912e-09 4.42279e-08 -4.96902e-09 6.64766e-09 -1.19998e-09 -4.06099e-08 -7.02179e-09 7.8409e-09 -1.6356e-08 -6.33644e-09 -2.5767e-08 2.40862e-08 -4.00633e-08 -2.19249e-07 -6.21346e-08 3.69269e-07 6.00521e-09 9.76239e-07 3.68667e-08 4.75537e-07 -1.27116e-10 -4.46213e-10 -2.44906e-10 1.24742e-10 -4.33796e-10 -1.02579e-09 -1.39127e-07 -5.31384e-09 -1.21401e-07 -1.02514e-07 -6.555e-08 -5.32693e-07 3.00846e-07 2.04017e-06 3.23135e-07 -4.71985e-07 2.55855e-07 -1.70276e-06 1.96698e-07 -3.83766e-07 3.22034e-06 -3.25144e-08 2.66777e-08 -2.78739e-08 3.48089e-08 -1.7538e-08 2.8279e-09 -7.44767e-12 -4.08771e-11 -1.19479e-11 8.18398e-13 -3.17591e-11 5.55395e-12 -2.74515e-11 7.04616e-11 -4.21101e-11 1.27295e-10 -6.94602e-12 1.63885e-10 -1.30456e-11 2.40626e-11 -1.66125e-10 1.87612e-10 4.16148e-10 -5.20745e-10 4.61796e-10 -4.40592e-10 -2.47373e-08 -9.0396e-10 -4.87112e-08 -2.77401e-10 -5.49058e-09 9.86118e-10 -1.46788e-09 1.12433e-10 -1.18494e-10 3.90836e-10 -1.08905e-09 9.34434e-10 9.82589e-10 -2.60738e-08 -3.21846e-09 -1.29544e-08 -6.80125e-09 1.87098e-10 -3.39372e-09 3.9353e-09 -1.14464e-09 1.16487e-10 -1.99293e-09 2.30664e-09 -6.55671e-10 1.24474e-09 -1.10501e-08 -1.50717e-08 -3.22298e-08 -3.18095e-08 -2.63779e-08 -1.77153e-08 -1.37388e-08 3.69256e-08 -1.52358e-08 1.45816e-08 7.27361e-10 -6.13955e-08 -4.76164e-10 7.37706e-09 -1.13241e-08 2.14516e-09 -4.98852e-08 -3.69871e-09 -3.90695e-08 -2.20531e-07 -4.7904e-09 3.05482e-07 1.18565e-08 9.89069e-07 -4.02809e-08 5.57904e-07 -9.09869e-11 -2.42876e-07 -4.66507e-12 3.87565e-11 -3.78128e-11 1.47181e-10 -3.62493e-09 -1.16913e-09 -9.01681e-08 -1.89945e-08 -1.74496e-07 -1.09163e-06 3.54361e-07 1.37829e-06 4.08079e-07 -5.26406e-07 2.48613e-07 -1.54074e-06 1.94369e-07 -3.38093e-07 3.11682e-06 1.45296e-09 9.99302e-09 3.93384e-09 1.10394e-08 1.20129e-11 2.97284e-10 -5.44551e-11 5.5961e-11 -9.06034e-12 1.31433e-11 -1.01538e-11 4.46946e-12 -4.17725e-11 -5.3494e-13 -2.39685e-11 7.76232e-11 1.28542e-14 9.98917e-12 -3.1157e-12 2.06398e-11 2.60779e-11 3.14452e-10 1.25097e-10 -4.71389e-10 -1.12709e-10 -3.96932e-11 -1.0149e-09 2.00949e-12 -1.30542e-09 5.11636e-12 -2.97568e-10 2.59446e-11 -1.97691e-10 3.28034e-11 -1.76511e-11 1.99816e-10 2.37102e-10 8.16656e-10 5.01552e-10 -2.28121e-08 -5.15165e-09 -8.35401e-09 -6.73861e-09 5.88578e-09 -1.24118e-09 3.09542e-09 -1.61857e-09 3.26162e-10 1.54023e-11 8.48204e-09 -1.07694e-09 2.22296e-09 -1.60502e-08 -4.26769e-09 -2.19043e-08 -2.37767e-08 -1.60248e-08 -2.80374e-08 -1.6541e-08 1.70519e-09 -2.72413e-08 2.54878e-08 -1.85249e-08 -6.95939e-08 -1.6219e-09 3.01126e-08 1.47057e-09 -1.03878e-09 4.63891e-08 -2.743e-08 -3.92677e-08 -1.21912e-07 -3.71223e-08 1.40368e-07 -4.46217e-08 -2.46616e-08 -4.54293e-08 5.83895e-07 -4.22656e-11 -5.1444e-07 -1.64264e-11 1.4415e-11 5.79299e-11 7.42888e-11 -9.13696e-10 -1.96181e-10 -1.05203e-07 -1.32377e-11 4.40269e-08 -1.12351e-06 3.27883e-07 1.35686e-06 3.99541e-07 -5.89604e-07 2.59773e-07 -1.39999e-06 2.21893e-07 -2.99366e-07 3.03464e-06 9.23225e-09 1.16574e-10 1.30188e-09 -7.3604e-10 -4.66714e-11 4.29899e-11 -4.58185e-12 1.44183e-11 -2.42564e-12 -4.80819e-13 -3.68452e-12 6.43771e-12 -1.08242e-11 6.28153e-12 -2.85558e-12 8.22094e-12 -9.1706e-13 6.25534e-12 4.33194e-12 1.21915e-11 2.7361e-11 2.32269e-10 -7.11759e-11 -2.16505e-10 -2.81027e-11 1.39229e-11 -3.48581e-11 1.08292e-11 -3.90482e-11 1.08062e-11 -2.3448e-11 1.38216e-11 -4.07069e-12 1.71634e-11 -4.9766e-13 1.12753e-10 3.74608e-09 -5.69094e-10 1.61162e-09 -1.69411e-08 -2.43786e-09 -5.32978e-09 -3.58301e-09 1.14691e-08 -4.20835e-10 1.99179e-10 -4.50041e-10 3.74623e-10 6.15071e-10 6.60056e-09 3.50631e-10 2.34578e-09 -4.66864e-09 -2.25394e-10 -7.10983e-09 -2.80052e-09 -2.60669e-09 -4.44883e-09 -7.11918e-09 1.67259e-09 -2.77851e-08 4.19922e-09 -4.29529e-08 -5.40853e-08 -1.92291e-09 -4.35419e-10 2.44147e-11 -3.08249e-09 -4.2072e-08 -4.27987e-09 -9.39274e-08 -4.44516e-08 -3.72081e-08 2.52207e-07 -1.26736e-07 -2.21122e-08 -3.11507e-08 2.66885e-07 -3.39061e-11 -1.05014e-07 -1.38066e-11 -4.98784e-12 2.50752e-11 3.69206e-11 4.1837e-11 -2.0929e-10 3.68953e-10 -3.34974e-10 3.00661e-07 6.40489e-07 3.80386e-07 1.43973e-06 3.69106e-07 -5.9779e-07 2.88226e-07 -1.30351e-06 2.56595e-07 -2.66845e-07 2.98192e-06 2.63743e-10 -5.31494e-11 4.03901e-11 -4.64273e-11 -1.18352e-11 3.44244e-11 -1.26899e-12 4.26267e-12 -2.38956e-12 1.06322e-13 -3.27413e-12 8.08347e-12 -2.87745e-12 7.21879e-12 -1.79547e-12 5.59473e-12 -1.62184e-12 4.47326e-12 9.74503e-13 7.59512e-12 5.39049e-12 1.3765e-10 -1.91127e-11 6.54923e-12 -9.01407e-12 5.89025e-12 -8.5857e-12 1.28823e-11 -1.1926e-11 1.63809e-11 -1.21008e-11 1.58647e-11 -7.40447e-12 1.64598e-11 3.82305e-11 5.35552e-11 1.98396e-09 -1.98044e-09 2.10643e-09 -1.32791e-08 -1.1493e-09 -3.23026e-09 -3.7186e-10 1.60291e-08 -2.26629e-10 4.81646e-11 -7.71705e-10 3.40832e-10 6.72564e-10 1.62386e-09 6.41557e-10 2.23515e-09 -2.77436e-09 2.24389e-09 -3.91763e-09 -1.78179e-09 -4.33754e-09 -4.15187e-09 -9.19256e-09 6.38687e-09 -4.41134e-08 1.46574e-08 -4.8423e-08 -4.97084e-08 -8.43954e-09 -1.02405e-08 -2.90842e-09 -8.71517e-09 -2.96406e-08 -2.38969e-09 -1.13642e-07 -1.1208e-08 -5.24735e-09 2.42739e-07 -1.83168e-08 2.74283e-09 -2.07709e-09 -1.99027e-09 -8.20688e-12 -2.94654e-08 -1.3945e-12 -1.14052e-11 1.9392e-11 1.59715e-11 1.08288e-11 -2.00925e-10 1.30355e-08 -1.33564e-08 3.20602e-07 9.33601e-07 4.50714e-07 1.48171e-06 4.38752e-07 -5.22819e-07 3.41915e-07 -1.17729e-06 2.95166e-07 -2.23333e-07 2.87776e-06 9.51788e-12 -4.58462e-12 -3.13194e-12 -1.49066e-11 -2.76714e-12 5.10261e-12 -1.26078e-12 2.1567e-12 -3.28965e-12 1.58235e-12 -4.04151e-12 9.55314e-12 -2.43585e-12 7.84401e-12 -1.64435e-12 3.30653e-12 -2.80379e-12 3.90641e-12 -4.46323e-11 4.76353e-11 -3.28126e-11 1.27646e-10 -1.74139e-11 1.99051e-10 -9.57526e-12 7.03545e-11 -8.08013e-12 1.4307e-11 -8.71939e-12 1.98463e-11 -1.15033e-11 2.11729e-11 -9.83863e-12 1.68978e-11 -6.32512e-10 1.37394e-11 3.72062e-11 -5.24218e-09 -6.10787e-11 -4.2872e-09 -3.55064e-09 -3.2279e-10 -1.34557e-10 1.96181e-09 -1.23271e-10 3.14855e-11 -1.12296e-09 2.8636e-10 7.71951e-10 6.47919e-10 9.91961e-11 2.75302e-09 -2.73668e-09 4.01969e-09 -4.65033e-09 1.07284e-10 -3.45796e-09 -5.42721e-09 -4.86218e-09 1.21834e-08 -3.04665e-08 2.04897e-08 -3.70461e-08 -4.3065e-08 -3.33458e-08 -1.38653e-08 -1.59261e-09 -1.06875e-08 -6.75758e-09 -2.93063e-10 -5.53092e-08 9.99726e-10 5.74831e-09 2.38478e-08 9.95613e-10 7.41427e-09 -1.85975e-09 1.31852e-09 -1.37994e-11 -1.2989e-07 9.88173e-13 -2.61752e-11 1.2555e-11 4.43001e-12 4.22581e-12 -1.92252e-10 1.11528e-08 -8.20495e-09 2.29493e-07 6.24035e-07 3.83734e-07 1.09723e-06 5.71538e-07 -6.41267e-07 3.89899e-07 -9.97265e-07 3.31512e-07 -1.66678e-07 2.74343e-06 -2.10461e-12 2.76388e-12 -7.24577e-12 -5.52558e-12 -5.11496e-12 -1.91924e-12 -1.72244e-12 3.83709e-12 -3.96321e-12 8.07767e-13 -4.22122e-12 1.05702e-11 -2.40779e-12 4.22616e-12 -3.67873e-12 2.78512e-12 -1.39854e-11 1.2541e-11 -3.18956e-10 3.38145e-10 -3.09534e-10 2.99526e-10 -6.94673e-11 2.50133e-10 -1.02774e-11 1.11267e-11 -8.33412e-12 1.40187e-11 -7.49805e-12 4.76767e-11 -8.25472e-12 2.40266e-11 -4.95932e-12 1.53929e-11 2.97159e-10 -4.32598e-10 -4.79524e-10 -3.8829e-09 -1.27926e-10 -1.67369e-09 -4.10851e-10 -4.28115e-11 -8.38148e-12 6.25317e-11 -1.01339e-12 1.84337e-11 2.59298e-10 2.00068e-11 1.03287e-09 2.9731e-10 2.08354e-10 9.60088e-09 -3.97025e-10 -4.21549e-10 -2.1224e-09 2.71559e-10 -2.00252e-10 -5.29659e-09 -6.56919e-09 1.24933e-08 -1.36743e-08 2.72269e-08 -2.15458e-08 -3.51262e-08 -2.36088e-09 -3.29787e-08 4.60549e-10 -9.8245e-09 3.14933e-10 -3.36988e-10 7.08425e-09 -3.63115e-10 5.49542e-09 -1.59149e-09 9.58115e-10 2.83363e-09 4.53293e-10 2.19484e-09 -2.79813e-10 -7.72831e-08 -1.64331e-11 -7.82861e-11 9.84046e-12 -2.18239e-11 -1.38617e-11 -1.67902e-10 -7.88133e-09 -7.07147e-11 4.35217e-07 1.82096e-07 5.55774e-07 1.17563e-06 6.86937e-07 -7.45214e-07 4.1416e-07 -7.33117e-07 3.58972e-07 -1.11971e-07 2.56808e-06 -1.57414e-12 2.80434e-12 -6.29149e-12 1.28374e-13 -6.53917e-12 1.58047e-12 -1.53681e-12 3.96103e-12 -2.01873e-12 9.34052e-13 -1.13643e-12 1.35225e-12 -6.90446e-13 1.00813e-12 -2.60845e-12 3.0555e-12 -7.42275e-12 1.53492e-11 -3.19358e-10 4.53766e-10 -4.07682e-10 5.78892e-10 -1.63939e-11 2.8294e-10 -1.48478e-11 9.48672e-12 -1.38788e-11 1.29966e-11 -2.77662e-11 4.4689e-11 4.00928e-12 1.57841e-10 2.00552e-11 5.93425e-12 1.36832e-09 -1.301e-09 -6.32535e-10 -1.26078e-09 -3.71254e-11 -8.27171e-10 -5.31733e-11 -2.92061e-11 -1.38079e-11 1.98845e-11 3.65502e-12 8.23492e-12 9.65269e-12 8.41349e-12 7.57196e-10 1.49852e-09 5.55441e-10 1.12469e-08 2.97857e-11 1.11401e-10 3.03747e-10 5.64046e-13 6.39498e-10 -3.31412e-09 1.0197e-10 9.74072e-09 -9.48047e-09 7.40102e-09 -2.09736e-08 -2.35622e-08 5.77927e-09 -5.96534e-08 4.0256e-10 -3.20304e-09 -5.6693e-11 -7.95661e-11 -1.7238e-08 -5.38029e-10 -1.23955e-10 4.32029e-08 4.34852e-11 1.82521e-09 4.21552e-10 2.41301e-09 -5.97227e-11 -2.17995e-08 -9.09921e-12 -2.08181e-10 5.10329e-12 -3.57628e-11 1.34029e-11 -1.76331e-10 7.72823e-11 -1.334e-10 4.71133e-07 1.09075e-07 8.09176e-07 1.03149e-06 7.61514e-07 -6.67755e-07 3.99244e-07 -3.9447e-07 3.84583e-07 -7.42111e-08 2.33141e-06 -6.52815e-13 1.55768e-12 -2.14647e-12 -5.07014e-14 -2.62022e-12 7.39928e-13 -8.17571e-13 1.90834e-12 -8.01028e-13 8.98657e-13 -4.37217e-13 1.0364e-12 -7.42245e-13 1.11331e-12 -3.38367e-12 5.18618e-12 -1.30981e-10 9.477e-11 -4.28554e-10 5.8986e-10 -3.88824e-10 7.40467e-10 -1.09138e-11 1.98679e-10 -1.09683e-11 9.53845e-12 -8.30858e-12 1.02363e-11 1.07328e-11 1.14442e-11 4.79612e-13 1.0415e-10 8.42589e-10 1.37544e-11 1.46371e-09 -1.38431e-09 -1.10497e-09 1.96698e-09 -1.89364e-11 -1.86467e-10 -2.74797e-11 -2.332e-11 -1.6983e-11 6.65188e-12 8.61183e-12 -4.07224e-12 -2.3997e-11 1.53651e-11 -1.21157e-09 9.13368e-10 -3.20168e-10 1.19304e-08 1.81956e-12 7.43436e-12 5.07561e-12 -9.26806e-13 3.81693e-11 4.3189e-10 -1.66846e-09 3.4792e-09 -1.49142e-08 1.7853e-09 -1.1663e-08 -2.67359e-08 1.30111e-09 -8.66334e-10 4.20883e-10 -5.61929e-09 2.37645e-10 -1.37268e-10 2.97215e-09 4.07982e-09 -1.79581e-08 1.54708e-07 -1.01267e-09 2.25598e-09 6.3184e-10 8.76376e-10 5.40686e-10 -3.45068e-10 -7.44827e-13 -7.43004e-11 4.40086e-12 -4.57705e-11 1.19004e-11 -1.92289e-10 2.34203e-09 -2.46352e-09 1.78443e-07 2.84404e-09 9.21294e-07 6.92512e-07 7.31945e-07 -4.47044e-07 3.87038e-07 -1.14666e-07 4.41218e-07 -8.60356e-08 2.08423e-06 -6.66029e-13 2.17026e-12 -5.22206e-13 6.84533e-13 -5.10694e-13 1.19111e-12 -3.94638e-13 1.76052e-12 -4.05984e-13 9.1559e-13 -3.80756e-13 9.95145e-13 -4.73582e-13 1.18112e-12 -2.01619e-12 6.51847e-12 -1.64256e-10 1.39044e-10 -3.12856e-10 3.69978e-10 -1.50342e-10 7.82512e-10 -8.1229e-12 2.6619e-11 -8.53097e-12 9.97171e-12 -7.6588e-12 9.33462e-12 -6.2062e-12 9.95266e-12 -1.3487e-10 8.67983e-11 2.45743e-10 -1.20638e-10 -5.18134e-12 -4.87284e-10 -1.66834e-09 4.32109e-09 -6.0947e-11 6.49275e-10 -6.30561e-11 -2.39228e-11 -2.23333e-11 2.53531e-12 4.1413e-12 -6.71112e-12 -1.56565e-10 -1.17354e-14 -2.94642e-09 1.37091e-10 -3.13113e-11 1.06369e-08 4.1495e-11 3.00954e-12 4.17486e-11 -1.1939e-12 1.81906e-09 2.57392e-09 -1.09372e-10 8.97303e-11 -5.14246e-09 9.49546e-10 -7.87738e-11 -3.54475e-08 -4.54085e-11 -2.78381e-09 5.84183e-10 -9.13628e-09 5.58883e-10 -4.37793e-10 1.47178e-08 1.13012e-09 -1.05816e-08 2.16831e-07 -5.92299e-10 1.5319e-09 4.8436e-11 2.2677e-10 5.34884e-12 -3.14887e-10 4.12995e-12 -8.48955e-11 1.54088e-11 -1.29622e-10 8.4818e-11 -2.16065e-10 -1.64361e-09 -7.33404e-10 2.78146e-08 -6.37065e-08 8.11242e-07 1.53753e-07 6.75002e-07 -2.76676e-07 3.14423e-07 6.65756e-08 4.76958e-07 -1.51472e-07 1.80411e-06 -5.29394e-13 1.76401e-12 -2.95691e-13 2.4463e-12 -2.84346e-13 1.18255e-12 -3.20616e-13 1.7985e-12 -3.31844e-13 9.27675e-13 -3.06999e-13 9.69845e-13 -1.96022e-13 1.05954e-12 3.61884e-12 2.64634e-12 -7.78864e-11 9.47901e-11 -2.31812e-10 1.03874e-10 -1.89192e-11 8.94613e-11 -5.29873e-12 1.3011e-11 -6.03292e-12 1.07496e-11 -6.75455e-12 1.00541e-11 -4.83449e-12 8.32199e-12 -6.59619e-11 2.83587e-11 1.81814e-10 -6.00641e-10 -1.16583e-10 -2.5767e-10 -7.96551e-10 1.18042e-10 -1.20441e-10 3.39888e-10 -9.28373e-11 -5.40666e-11 -5.40791e-11 6.80722e-12 9.86935e-12 -9.38641e-12 1.07075e-11 -3.16549e-13 -1.71676e-09 -2.25212e-11 -3.38428e-12 4.44221e-11 1.15126e-12 -7.33027e-13 3.94931e-12 -3.80135e-12 2.16459e-09 9.6742e-10 -2.08277e-12 2.86056e-11 -8.58348e-09 3.28711e-09 6.21607e-09 -3.31855e-08 -3.88911e-10 -8.48301e-10 -1.06391e-10 -6.67936e-09 -3.91006e-10 -4.96907e-10 6.87441e-11 1.10774e-09 4.18328e-09 2.53384e-07 2.11901e-10 7.39765e-10 2.5096e-12 3.88178e-10 5.54794e-11 -2.31161e-11 7.14893e-13 -5.28123e-11 2.01492e-11 -1.12342e-10 2.18312e-11 -1.80232e-10 -4.28317e-10 -2.24836e-10 1.03325e-07 -6.76927e-08 5.80827e-07 -7.08474e-08 4.44679e-07 -9.08497e-08 1.40183e-07 2.25429e-08 2.3433e-07 -1.05439e-09 1.3109e-06 -6.6682e-13 1.80555e-12 -2.04742e-13 3.82597e-12 -1.65983e-11 1.81067e-11 -3.07272e-13 2.05875e-10 -3.00824e-13 9.21593e-13 -2.41228e-13 9.10791e-13 -1.30885e-13 9.51569e-13 3.70854e-12 1.54977e-11 -3.62438e-11 3.6004e-11 -7.17236e-11 1.43746e-11 -6.37728e-12 2.42607e-11 -6.87745e-12 1.3643e-11 -3.13837e-12 1.1903e-11 -3.83886e-12 1.07526e-11 7.14784e-12 6.08359e-12 6.87002e-12 -4.16196e-11 2.76401e-11 -6.20003e-10 -7.00485e-12 -6.60613e-11 -7.38398e-12 3.46574e-11 -1.02779e-11 -2.38095e-12 -8.75797e-11 -3.64547e-11 -4.77041e-11 1.17184e-11 -6.0214e-12 -3.04441e-12 -3.82898e-12 -4.19024e-13 -2.21109e-11 -4.21132e-14 -4.32609e-13 -2.87383e-13 1.39241e-13 -5.30067e-13 4.05043e-13 -3.21171e-13 6.31634e-11 2.01198e-13 9.00608e-11 9.78462e-13 8.77659e-10 1.32476e-11 3.56498e-11 -1.40842e-11 -8.54042e-12 -5.16865e-14 -3.13985e-10 -3.77984e-09 -2.52415e-10 -9.20887e-10 -8.90777e-09 6.79246e-11 4.58189e-09 1.98838e-09 -2.12698e-11 2.73635e-10 -2.26248e-11 5.80749e-10 2.88353e-12 -4.73429e-11 7.4966e-12 -3.10217e-11 1.57884e-11 -3.38997e-11 4.61287e-12 -7.71719e-11 8.49947e-10 -9.78537e-10 -7.91354e-08 -3.90982e-08 3.37827e-07 -3.06951e-07 5.93497e-08 -2.55814e-08 -1.47255e-10 -4.76863e-10 4.85646e-10 -9.72283e-09 3.13205e-07 -3.85159e-12 2.54182e-12 -1.13119e-11 3.6907e-11 -5.58516e-11 2.2306e-10 -6.01375e-11 2.4003e-10 -5.90864e-13 1.14904e-10 -5.27042e-13 8.50381e-13 -1.46838e-12 1.75209e-12 4.47388e-14 2.46598e-11 -2.49803e-11 7.0759e-11 -1.45145e-11 2.21332e-10 -2.7908e-12 1.26694e-11 -2.26846e-12 1.33003e-11 -8.87193e-13 1.14765e-11 9.26648e-14 1.33506e-11 -6.67715e-12 8.42638e-12 -8.28784e-11 -6.6753e-11 -2.24105e-10 -4.086e-10 -3.34089e-11 4.17581e-12 -5.16233e-13 1.70812e-12 -2.94159e-12 3.29686e-14 -3.4342e-11 -2.5153e-14 -1.97011e-11 6.76487e-12 -7.84291e-12 -1.17691e-14 -5.0797e-12 -5.8989e-13 -1.00277e-12 -4.62139e-14 -1.43663e-13 3.42091e-14 -4.04072e-14 -6.97278e-15 -4.2688e-13 -1.12295e-13 -1.90493e-13 5.49318e-15 7.58331e-13 1.45773e-14 1.41036e-11 7.40339e-14 4.8568e-14 -2.7814e-14 3.0186e-15 -6.19567e-15 -6.23103e-10 -3.24966e-10 -6.28016e-10 -6.25372e-11 -7.3865e-10 8.93869e-11 -5.4601e-11 1.20188e-09 1.48286e-10 3.38618e-10 -1.29798e-11 2.19915e-10 9.00755e-13 1.63916e-13 1.00515e-11 3.28805e-11 2.41216e-11 2.47489e-11 8.39367e-11 -6.98798e-11 1.61208e-10 1.80488e-10 4.4314e-09 -3.88344e-08 4.48547e-08 -5.55459e-08 -2.38211e-11 -1.10976e-09 -4.96491e-10 -6.19498e-12 -1.9264e-08 -4.23246e-11 -4.46407e-12 -1.7007e-11 6.03649e-12 -7.25802e-11 1.38817e-10 -9.47374e-11 2.49337e-10 -8.70902e-11 2.37486e-10 -5.86193e-13 2.10707e-10 -4.95942e-13 7.63767e-13 1.95936e-12 1.24249e-12 -2.98579e-12 2.3562e-11 -1.096e-10 4.73412e-10 -1.04746e-10 4.47235e-10 -4.57689e-12 3.38584e-11 -3.2938e-12 1.2114e-11 -2.08454e-12 1.07377e-11 1.59858e-12 9.39666e-12 -3.1544e-11 1.66119e-11 -1.84563e-10 -5.83826e-12 -2.71946e-10 -2.44174e-10 -1.74079e-12 7.06977e-12 -1.78793e-13 1.47498e-13 -2.84392e-13 1.41875e-13 -2.75063e-12 3.67087e-14 -2.13922e-12 -6.42755e-13 -4.19549e-12 9.29223e-15 -4.19897e-12 -5.23947e-13 -3.34121e-12 -4.58865e-13 -1.52453e-14 5.81921e-14 -1.8607e-14 -3.7808e-15 -5.97668e-15 -2.48537e-14 -4.99118e-15 4.07905e-15 6.49683e-15 2.80825e-15 8.52714e-14 3.43859e-15 1.26653e-14 -1.11232e-15 1.19911e-14 -5.5222e-15 -4.32233e-10 -1.81238e-16 -4.75985e-10 3.36979e-09 -5.81034e-10 1.34738e-10 -5.13847e-10 1.07878e-09 -1.20238e-11 3.22862e-10 -1.36323e-11 7.23182e-11 3.86873e-12 -6.74464e-11 4.56014e-11 6.69214e-11 2.0204e-11 -1.48009e-10 8.46795e-11 -6.51296e-11 4.0371e-09 5.22534e-10 1.93581e-08 -4.49917e-08 2.17912e-10 -1.0936e-12 -1.44669e-13 -8.0473e-12 -2.78466e-13 -4.67547e-12 7.05798e-13 -4.19429e-11 -3.83018e-12 -3.60273e-12 1.19833e-11 -9.96919e-11 1.31076e-10 -9.76848e-11 2.51255e-10 -8.14029e-11 2.25819e-10 -5.75763e-13 1.33458e-10 -4.69783e-13 6.81498e-13 1.38529e-12 1.27843e-12 -5.90464e-12 1.56612e-11 -8.29235e-11 3.32875e-10 -1.50354e-10 4.99011e-10 -5.61155e-12 8.97449e-11 -3.98504e-12 1.08862e-11 -5.96429e-13 8.72361e-12 -1.02862e-12 1.03137e-11 -5.7645e-11 3.71621e-11 -1.26164e-10 9.27938e-11 -7.2271e-12 1.29235e-11 -2.01396e-13 4.47681e-14 -1.48032e-13 9.64441e-14 -1.15925e-13 1.13498e-13 -1.05344e-13 3.00581e-14 -7.08412e-13 -6.92816e-14 -2.32328e-12 1.99794e-13 -2.26787e-12 -5.13543e-13 -6.11461e-14 -5.45896e-16 -2.74691e-15 -5.62988e-16 -3.81768e-15 -2.86197e-15 -1.66892e-15 -1.65327e-14 -7.81234e-16 2.18682e-15 5.1698e-16 1.38924e-15 2.35361e-15 1.56503e-15 1.68632e-15 -6.33987e-16 1.29533e-15 -5.12683e-15 3.34985e-16 7.78729e-16 -1.0192e-09 3.85923e-09 -1.69763e-09 3.06309e-09 -9.75596e-10 7.86058e-09 -7.03017e-11 1.18181e-10 -4.84523e-11 5.22429e-11 4.39401e-11 -8.89067e-10 2.27723e-09 -4.26924e-08 7.07844e-10 -4.90539e-09 7.20477e-10 -5.33311e-11 2.15753e-08 -4.9709e-09 -2.19081e-12 -1.82208e-08 -1.66861e-11 -1.26902e-12 1.6667e-12 -7.35392e-12 2.71254e-12 3.71516e-11 6.9355e-13 -6.91054e-12 -2.54905e-12 -8.99746e-12 2.05314e-11 -6.86563e-11 7.49718e-11 -6.54677e-11 2.5259e-10 -3.44763e-11 1.99144e-10 -2.40326e-12 9.57697e-12 -2.91885e-13 7.48371e-13 8.41525e-14 2.10807e-12 2.84366e-12 4.37331e-12 1.07452e-11 6.05193e-11 1.00875e-11 1.08629e-10 6.95016e-13 7.75361e-11 4.87926e-15 1.23631e-11 -4.0067e-13 1.04242e-11 -1.1255e-12 1.26835e-11 -3.57838e-10 1.19891e-10 -5.04913e-10 3.48681e-10 -1.9575e-13 4.74256e-11 -1.79081e-13 2.91698e-14 -1.51709e-13 7.26663e-14 -1.26943e-13 9.27093e-14 -1.87621e-13 9.53234e-14 -1.11277e-12 3.38686e-13 -2.11453e-12 1.67665e-13 -2.01664e-15 -9.10332e-14 -1.90661e-15 -1.00251e-15 -1.61915e-15 -1.21553e-15 -4.41332e-15 -2.65817e-15 -9.59633e-15 -1.42738e-14 -4.5472e-16 2.16431e-15 3.20139e-16 4.87702e-16 1.01871e-15 7.34823e-16 1.42312e-15 -2.52401e-15 7.7347e-16 -4.62921e-15 5.83309e-16 9.68773e-16 -7.85637e-10 4.09892e-09 -3.60755e-09 1.65456e-08 -5.09863e-10 1.90064e-08 -6.75387e-11 1.81789e-10 -6.74723e-11 5.16116e-11 8.8423e-11 -1.21551e-09 4.27446e-09 -4.32715e-08 1.21331e-09 -6.5667e-09 1.22891e-09 -2.87984e-11 3.2726e-08 -8.34795e-09 -5.37014e-13 1.99388e-08 -2.23604e-11 9.58052e-13 2.58418e-13 -2.10482e-11 6.81772e-12 6.32438e-11 6.94722e-14 -1.4789e-12 -2.0568e-13 -4.42343e-12 1.08459e-10 -1.83431e-11 8.84392e-11 -4.02309e-11 4.37952e-11 -7.30087e-12 2.14433e-11 -3.65803e-13 6.99395e-12 -7.74823e-14 6.79795e-12 2.42028e-13 9.1017e-12 4.90262e-13 1.06839e-11 7.39933e-13 6.41922e-11 1.52638e-12 1.04075e-10 1.6492e-12 6.43637e-11 2.68287e-12 1.91451e-11 6.74007e-15 1.45221e-11 1.0335e-12 1.34994e-11 -1.23015e-10 5.26709e-11 -4.00674e-10 1.01181e-10 -1.60261e-13 3.24868e-11 -1.56822e-13 2.93521e-14 -1.36974e-13 5.6774e-14 -1.12908e-13 6.44549e-14 -1.19982e-13 1.02396e-13 -2.9694e-13 -1.2315e-14 -3.16205e-14 9.99981e-15 -1.76286e-15 -2.27497e-15 -1.41107e-15 -1.72003e-15 -1.05574e-15 -3.02863e-15 -2.7061e-15 -2.56196e-15 -1.21831e-14 3.00142e-15 -1.35803e-15 -1.42552e-15 1.53713e-15 -4.72897e-16 1.4651e-14 -5.19347e-15 1.7671e-15 5.99015e-16 2.83805e-16 -3.06997e-15 6.89898e-16 5.62266e-16 2.09066e-09 1.35067e-11 -2.43612e-09 2.06085e-08 1.54482e-09 2.0331e-08 -1.84175e-11 1.62768e-10 -2.05256e-11 5.04254e-11 3.3644e-10 -1.73009e-10 3.73566e-09 -4.28083e-08 4.05863e-11 -2.92696e-10 8.94564e-11 -2.60497e-11 1.40078e-08 -9.26049e-09 -1.03883e-11 3.98108e-08 -9.40857e-12 7.92138e-15 -1.7348e-12 -5.46359e-14 2.64012e-12 1.7387e-14 5.6818e-14 -2.6787e-13 -1.55347e-13 -7.1227e-11 2.53799e-10 -2.49514e-11 2.25925e-11 -8.78756e-12 7.30566e-12 -4.79906e-12 1.36447e-11 -2.29138e-11 2.76937e-11 -1.28589e-09 1.27702e-09 -3.35038e-09 3.19223e-09 -5.08459e-09 5.38817e-09 -3.94785e-09 8.19904e-09 -3.95922e-10 8.91902e-09 -5.0899e-13 5.56325e-09 -1.93798e-12 2.90262e-11 7.32747e-15 1.48379e-11 -3.18744e-12 1.66946e-11 -1.13216e-11 2.69925e-11 -1.74507e-11 1.07048e-11 -3.63325e-11 5.93002e-11 -6.08099e-12 7.1225e-11 -2.58389e-12 5.55245e-12 -3.60383e-13 1.45362e-12 -1.90697e-13 2.43055e-13 -8.40995e-15 6.1591e-14 -2.37088e-15 -1.59886e-15 -2.1521e-15 -8.21467e-15 -1.59523e-15 -8.41753e-15 -4.58824e-16 -5.93846e-15 -1.25949e-15 -3.413e-15 -8.97376e-15 1.33173e-15 2.30508e-15 -5.7464e-15 3.85223e-15 -7.18759e-17 5.44574e-14 -1.79869e-14 1.31139e-15 5.39137e-14 -6.94969e-17 -1.70173e-15 -1.92249e-14 2.00186e-14 -2.09727e-11 3.44803e-11 -1.23714e-08 1.16037e-08 -1.04106e-09 3.55635e-08 -1.68326e-11 1.52752e-09 -4.0284e-12 3.415e-11 2.44799e-09 1.98851e-11 2.2492e-09 -3.91951e-08 -1.34057e-11 8.49102e-10 -3.12355e-11 -1.11834e-11 -3.32587e-09 -1.39021e-09 -4.01333e-14 4.29974e-08 -1.89063e-15 9.04253e-16 -1.63897e-14 -6.76695e-15 4.97022e-15 -2.18718e-14 1.12405e-14 -1.79399e-13 -1.4477e-13 -1.52847e-11 2.64122e-11 -3.48997e-12 9.63685e-12 -1.16556e-11 1.14395e-11 -8.86828e-11 7.83196e-11 -2.42341e-09 8.3915e-10 -1.10608e-08 6.77777e-09 -1.30661e-08 5.19648e-09 -1.16215e-08 3.94671e-09 -8.18765e-09 4.76914e-09 -6.31113e-09 6.94666e-09 -3.02471e-09 1.13032e-08 -6.88199e-12 1.80038e-09 -4.71464e-12 1.45455e-11 -4.02804e-12 1.64333e-11 -3.24699e-11 5.54961e-11 -1.50812e-10 2.44542e-10 -2.33566e-10 1.43352e-10 -1.14983e-10 6.27201e-11 -1.80244e-12 2.13731e-11 -1.36904e-13 1.35326e-13 4.87398e-14 5.54857e-13 3.57788e-14 1.80778e-13 -7.81099e-16 1.01983e-14 2.22612e-14 8.17003e-16 2.10725e-14 1.70578e-15 1.9398e-14 -6.12813e-15 1.51048e-13 -6.09636e-13 4.66432e-14 -2.19491e-12 5.265e-15 -8.11251e-14 5.66856e-15 -4.59713e-16 7.95479e-14 -3.45741e-17 4.10123e-13 -3.83915e-12 -6.66649e-15 4.15215e-13 -2.86437e-14 7.15656e-14 2.42106e-11 1.01595e-11 -4.72792e-09 7.27644e-09 -2.23799e-08 5.67064e-08 -7.61232e-11 3.47151e-08 -7.52174e-11 2.95864e-11 1.7409e-09 -2.59423e-09 1.54495e-09 -3.54296e-08 -1.83346e-10 -1.53152e-08 -1.86563e-10 -3.77427e-12 -5.32417e-09 -1.69606e-10 -6.71048e-11 6.48373e-11 -3.41512e-14 2.83933e-12 -4.59474e-16 -8.37262e-15 3.91233e-16 3.02178e-16 3.98015e-15 -4.82502e-16 -9.10653e-14 -7.28913e-12 7.96652e-12 -6.99052e-12 8.36015e-12 -6.71341e-12 9.83522e-12 1.87132e-11 4.84026e-11 -1.70984e-09 3.22432e-10 -1.13659e-08 3.47736e-09 -1.13587e-08 5.19898e-09 -1.22757e-08 4.87681e-09 -1.06456e-08 3.14658e-09 -6.49135e-09 2.79797e-09 -4.77288e-09 5.97024e-09 -1.43113e-11 2.27485e-09 -1.39514e-11 1.46074e-11 -2.60863e-11 4.88173e-11 -1.43557e-10 4.03981e-10 -2.66476e-10 3.68749e-10 -3.39384e-10 2.17629e-10 -3.51449e-10 7.62396e-11 -1.24998e-10 -1.00266e-12 -2.85103e-12 -7.93431e-12 5.82025e-12 -3.13535e-11 2.60537e-13 -1.69953e-11 3.5942e-14 2.09522e-13 8.88661e-14 6.62579e-15 7.02226e-14 8.36767e-14 7.00257e-14 -7.82746e-15 1.06708e-12 -4.89426e-13 8.69304e-13 -1.68075e-12 -3.48923e-16 -4.20364e-13 4.7381e-16 -1.28129e-15 4.8274e-16 -4.07318e-17 1.86967e-11 -1.01335e-11 -1.45038e-13 -2.91522e-11 -1.94173e-13 2.12457e-13 8.53586e-12 1.56117e-12 3.0889e-10 4.00165e-09 -2.95217e-08 9.02154e-08 -1.32003e-08 4.23187e-08 -2.43534e-10 -5.59795e-09 1.7917e-09 -6.96937e-09 -2.82394e-09 -2.70527e-08 -8.80004e-12 -3.23822e-08 -5.17068e-12 -3.52418e-12 -6.34957e-11 -5.95473e-12 -7.43755e-13 5.17484e-13 -1.0625e-13 3.34632e-13 -3.27371e-16 -5.6239e-16 6.51064e-17 3.42106e-16 2.38588e-17 -4.5707e-16 -6.39971e-17 -5.2919e-12 5.7664e-12 -4.3344e-12 6.55091e-12 -4.23383e-12 8.51597e-12 -1.53529e-11 5.80542e-11 -3.12905e-11 1.35769e-10 -3.59263e-10 2.64861e-10 -1.68029e-09 5.32338e-11 -3.6783e-09 2.20379e-11 -6.62987e-09 8.60561e-11 -7.20423e-09 -5.56212e-11 -1.75782e-09 6.84499e-10 -1.19982e-10 7.48315e-10 -1.11013e-10 1.70702e-11 -2.4061e-10 1.95075e-10 -2.40104e-10 4.04688e-10 -2.23326e-10 3.53294e-10 -2.59568e-10 2.55313e-10 -4.12524e-12 3.23669e-11 -5.51388e-12 -1.49597e-12 1.51184e-11 -2.25804e-12 6.45423e-11 -2.70605e-12 1.16659e-10 -4.18561e-12 -2.45836e-13 -9.4245e-12 -3.02334e-14 -5.64771e-12 5.6886e-13 -2.61097e-12 7.93936e-13 -2.3476e-13 2.1843e-12 -2.29077e-13 1.58461e-12 -7.47778e-13 2.68673e-15 -1.23157e-13 1.51105e-15 -9.69361e-17 1.51151e-15 -3.80172e-17 4.52314e-11 -2.1062e-11 2.04254e-12 -4.19007e-11 3.10148e-13 8.29448e-12 -5.91052e-14 1.64209e-12 6.7309e-11 3.23436e-10 3.78458e-09 9.03741e-08 -1.4428e-08 6.44126e-08 -7.82805e-09 -1.33832e-08 -7.5473e-11 -1.58993e-08 -1.7913e-09 -2.13735e-08 -5.44893e-12 -2.44224e-10 -1.51058e-12 -3.71461e-12 -6.82842e-13 -3.0437e-12 -7.36158e-15 -4.52498e-13 -1.90777e-17 -7.44583e-15 -1.70533e-16 -5.46133e-16 6.15601e-17 2.13112e-16 1.70336e-17 -4.29179e-16 -5.03861e-17 -3.85036e-11 3.79759e-11 -1.73188e-12 6.65567e-10 -3.8339e-11 9.41161e-11 6.39912e-12 1.61505e-09 1.59723e-11 1.29073e-09 -2.99048e-12 1.84911e-10 -1.02832e-11 9.33498e-12 -1.84584e-11 1.73069e-11 -8.17024e-10 7.36906e-12 -2.94851e-09 1.01884e-10 -7.61656e-10 3.47828e-10 -2.89886e-11 4.7898e-11 8.4622e-12 1.53619e-11 -4.86291e-11 7.4315e-11 -8.21614e-11 7.10353e-11 -1.97905e-10 8.89937e-11 -9.41232e-11 6.62441e-11 -3.40776e-12 1.81606e-12 -4.27043e-13 -6.4699e-12 1.56039e-12 -6.37394e-12 2.48487e-12 -5.88299e-12 2.13359e-11 -2.78681e-12 3.52866e-11 3.54979e-12 4.07574e-11 3.23795e-12 2.32331e-13 1.21016e-12 -1.28695e-12 4.93203e-14 1.06749e-12 3.27586e-13 1.95537e-13 -3.35565e-13 1.89355e-16 -3.37761e-15 1.47664e-16 -5.1212e-17 1.36366e-16 -2.23763e-17 3.05547e-11 -6.01618e-12 5.98829e-12 -9.75899e-12 -3.87432e-13 2.66822e-11 2.06701e-13 4.29021e-13 3.23656e-10 2.03911e-13 1.69032e-08 2.95141e-09 2.32464e-08 6.2096e-08 -4.76983e-11 -2.77084e-09 -8.74092e-09 -7.68384e-09 -5.8376e-11 -2.58716e-08 -9.6152e-13 -3.00847e-10 -7.63949e-13 -3.07211e-12 -8.831e-13 -3.07694e-12 -1.1647e-13 2.24588e-13 -1.39903e-16 -1.12536e-14 -2.73264e-16 -5.54889e-16 6.90169e-17 -6.90974e-17 1.02964e-17 -3.00143e-16 -4.25565e-17 -7.64444e-11 1.74988e-09 4.51865e-10 1.78264e-09 8.17774e-10 2.08212e-09 9.67951e-10 1.75891e-09 8.16996e-10 1.48531e-09 9.93287e-11 1.42235e-09 6.02865e-12 7.35715e-11 3.86749e-12 6.43288e-12 5.19116e-13 7.32098e-12 -6.7197e-10 1.78023e-11 -2.44794e-09 8.75807e-10 -5.05242e-12 6.44841e-10 -3.55558e-12 8.54244e-12 6.36394e-13 1.04231e-11 1.67448e-12 1.13433e-11 2.0672e-12 1.45715e-11 -1.9243e-13 1.73775e-11 -1.99118e-12 2.48605e-12 7.94934e-13 -1.13445e-11 2.77672e-12 -1.05884e-11 3.21366e-12 -8.69343e-12 6.34201e-12 -1.49105e-11 9.56606e-12 -1.14775e-11 1.24959e-11 -1.74507e-12 4.92898e-12 8.04463e-12 1.7405e-12 2.20148e-12 4.82868e-12 1.31149e-12 3.57317e-15 8.11926e-14 1.76885e-16 -4.83624e-17 1.33188e-16 -3.74956e-18 1.03312e-16 1.20495e-17 2.02155e-11 3.29918e-12 4.32036e-12 1.41314e-11 -3.66513e-13 3.98314e-11 2.91956e-14 1.1895e-13 7.83701e-13 -2.79382e-13 2.93902e-09 1.3417e-11 2.97101e-08 1.09e-08 7.26527e-12 9.23286e-10 -6.70132e-09 -1.46344e-09 2.17229e-09 -2.82448e-08 -1.77954e-12 -5.96069e-10 -2.59758e-12 -1.30251e-12 -3.39784e-13 -3.12516e-12 -1.05158e-13 2.1659e-14 -2.94747e-15 -5.12919e-16 -2.68483e-16 -3.3661e-15 3.60584e-17 -1.69873e-16 3.4191e-18 -1.69135e-16 -2.56898e-17 1.95352e-09 1.62904e-09 1.41482e-09 8.62559e-10 1.36189e-09 2.17968e-09 1.70314e-09 1.46355e-09 2.0887e-09 1.14856e-09 5.61783e-10 1.15759e-09 8.02178e-12 1.27007e-10 2.61631e-12 6.50083e-12 1.18028e-12 4.6236e-12 9.09035e-13 1.42692e-11 -3.78913e-11 2.03346e-10 -9.74074e-13 6.99803e-10 1.11931e-11 2.44636e-11 2.64719e-12 1.68716e-11 2.40919e-12 9.87276e-12 2.15859e-12 1.36057e-11 1.43593e-12 1.71108e-11 1.00276e-12 1.87961e-12 2.22363e-10 -5.99105e-10 1.81219e-11 1.58279e-10 5.72448e-11 -8.32037e-10 1.56973e-10 -1.04617e-09 6.56035e-10 -7.95001e-10 1.28131e-09 -1.71909e-09 8.69229e-10 -7.15387e-10 6.40865e-11 -3.1068e-11 -6.47489e-14 1.78923e-12 -1.0903e-15 1.58611e-14 -6.63854e-16 3.49011e-16 1.71186e-16 7.60569e-17 1.26059e-16 5.94815e-17 1.21118e-11 4.58741e-12 -1.02333e-12 3.55818e-11 -6.01824e-13 2.77216e-11 -4.76742e-13 7.40669e-14 2.18529e-12 -3.18512e-13 1.64552e-11 2.76047e-12 1.88029e-09 8.48977e-12 1.51519e-10 1.54605e-10 -9.5803e-10 -9.29219e-10 1.44331e-09 -1.77209e-08 -1.5342e-12 -1.17275e-13 -2.31099e-12 -4.79599e-13 -4.78483e-13 -2.63973e-12 -4.42515e-16 -1.78504e-15 -1.68322e-16 -8.11493e-16 -1.93039e-16 -2.60278e-15 -3.45012e-21 -2.28817e-16 -1.31758e-20 -1.09103e-16 -1.21332e-17 4.36933e-10 7.68975e-10 1.93926e-10 1.30192e-11 1.7223e-09 2.1923e-11 1.08653e-09 2.61287e-10 1.99332e-10 1.38177e-10 3.44684e-12 1.67192e-11 -1.04744e-13 6.87588e-12 -1.91648e-12 3.88836e-12 7.79652e-12 2.58662e-11 2.30363e-12 1.6987e-11 4.86124e-12 1.99148e-10 3.39408e-12 6.92864e-10 2.84859e-11 1.09375e-09 2.92677e-10 2.9547e-09 9.61392e-10 4.33991e-09 1.32037e-09 6.23518e-09 1.3569e-09 6.48314e-09 3.92496e-09 5.60646e-10 2.28305e-09 2.31773e-10 4.31882e-10 -7.89748e-09 -3.87566e-10 -5.85121e-09 -1.62505e-10 -6.94083e-09 8.51747e-11 -5.56972e-09 3.36218e-10 -3.62754e-09 4.814e-10 -2.86084e-09 -1.91247e-12 -1.67191e-10 -1.25452e-14 -4.97358e-14 -7.50551e-16 6.81017e-15 -1.49088e-16 3.09793e-16 2.67439e-16 2.36499e-16 2.14237e-16 1.13441e-16 9.64341e-12 1.35593e-11 1.72229e-12 5.23169e-11 -5.00658e-13 1.85828e-11 -4.34215e-13 4.02088e-14 1.92386e-12 1.98091e-14 4.82048e-12 6.26614e-12 1.26998e-11 -8.2771e-12 1.66777e-10 5.13674e-13 3.21486e-09 -3.29984e-09 -4.65297e-12 -8.50856e-09 -1.18805e-13 -4.66944e-12 -5.47919e-13 -1.44572e-16 -2.38e-15 -2.53452e-14 -4.27188e-16 -4.02735e-15 -1.22473e-16 -1.42385e-15 -9.89824e-17 -1.46222e-15 -6.20642e-19 -2.59515e-16 -5.62271e-19 -7.54931e-17 -4.23313e-18 -2.72221e-12 9.50383e-13 9.08132e-13 5.56427e-12 9.38013e-12 -4.62466e-12 8.66408e-12 -2.29317e-11 -2.61505e-12 -6.98153e-15 -1.66248e-12 -2.01946e-12 -9.98361e-13 4.24575e-13 -6.77892e-12 4.14039e-12 -1.86878e-11 3.29065e-11 -3.63964e-10 2.89559e-09 7.96969e-10 4.00138e-09 3.67778e-09 3.62264e-09 2.02508e-09 4.8021e-09 9.79923e-10 4.32212e-09 1.54193e-09 4.08983e-09 1.1307e-09 7.01059e-09 1.16029e-09 6.91059e-09 7.61008e-10 -1.1101e-10 2.62877e-11 -5.13274e-09 -2.8188e-09 -5.16818e-09 -2.26569e-09 -6.44914e-09 -2.39052e-09 -6.8805e-09 -2.84794e-09 -5.17244e-09 -2.30751e-09 -4.22219e-09 -4.05194e-10 -1.62524e-16 3.43998e-14 -1.23841e-13 -6.10367e-15 -6.89441e-15 4.6882e-16 1.38086e-17 3.15889e-16 2.04504e-16 2.45482e-16 3.02982e-16 2.09565e-16 1.49601e-16 2.07859e-11 3.42827e-11 1.14332e-11 3.67028e-12 -1.23149e-14 8.31578e-12 1.39578e-15 1.50668e-14 6.45883e-16 5.17682e-16 2.61016e-12 7.002e-12 1.67188e-12 1.07712e-12 2.18565e-12 -1.14274e-16 5.87345e-09 -6.62541e-09 -1.14364e-09 6.8497e-10 -3.00462e-17 -1.14831e-09 -5.07956e-17 -1.15242e-16 -4.27938e-15 -2.11072e-14 -5.60066e-16 -1.13601e-14 -9.26688e-17 -3.61633e-15 -8.10384e-17 -1.18649e-15 -8.74846e-19 -3.10269e-16 -4.0021e-19 -5.78909e-17 -1.1017e-18 -3.69032e-12 -1.89006e-12 -3.25979e-12 1.83491e-12 -2.99335e-12 8.29017e-13 -1.0532e-12 -1.70711e-12 -1.26534e-12 3.86454e-13 -4.3782e-13 1.15152e-15 -4.99889e-13 1.7084e-12 -1.25474e-11 1.72345e-11 -1.71651e-10 3.20409e-10 -4.93219e-11 1.30533e-09 7.90075e-10 6.95358e-10 8.75463e-11 6.47659e-10 -5.37222e-10 1.30628e-09 -3.11461e-09 3.25763e-09 -4.52182e-09 5.82573e-09 -4.03884e-09 5.19718e-10 -2.51723e-09 3.02762e-09 -3.938e-09 -1.21736e-09 -4.75645e-09 -4.42752e-09 -3.98866e-09 -5.95949e-09 -3.73709e-09 -6.76111e-09 -3.92764e-09 -6.75902e-09 -3.1804e-09 -5.99053e-09 -5.9929e-17 -2.35844e-09 -9.5115e-17 -3.46527e-16 -5.95557e-16 -1.23574e-13 1.86158e-16 -8.69414e-15 3.19375e-16 -3.31694e-16 1.68534e-16 1.29641e-16 1.70976e-16 2.54576e-16 1.64914e-16 1.55608e-16 6.59505e-12 9.65245e-11 3.28915e-12 1.02787e-11 -1.17591e-14 -1.82359e-13 1.82546e-15 1.42449e-15 2.23338e-15 7.02995e-17 2.1252e-12 1.74032e-12 1.50619e-12 7.28018e-13 1.50531e-12 -4.01972e-18 5.26068e-10 -5.03461e-09 1.15793e-10 3.37331e-09 -4.38513e-15 -7.58784e-10 -4.43229e-15 -6.42086e-17 -6.5968e-15 -9.77901e-15 -1.54814e-15 -1.30572e-14 -1.77887e-16 -5.89794e-15 -7.67942e-17 -1.12734e-15 -1.02728e-18 -3.66013e-16 -1.61826e-19 -4.78866e-17 -2.32393e-19 -1.7497e-12 1.51346e-12 -8.22959e-12 2.41748e-12 -4.15878e-12 2.24345e-12 -8.90936e-13 4.93822e-13 -5.1938e-13 2.52775e-13 1.93506e-12 6.99673e-13 6.31919e-13 6.31554e-12 -7.38333e-11 1.34167e-10 -3.70139e-10 1.55318e-10 -1.77004e-10 1.92895e-11 -1.80885e-10 4.18411e-13 -3.55073e-10 1.43897e-12 -6.55119e-10 1.2153e-11 -5.82325e-11 3.74892e-10 -3.52154e-09 1.34829e-09 -1.14792e-08 1.89236e-09 -8.46584e-09 -1.93032e-10 -5.69656e-09 -4.14527e-09 -5.14994e-09 -5.10071e-09 -5.16363e-09 -6.0566e-09 -5.15253e-09 -6.86166e-09 -5.24284e-09 -6.7652e-09 -1.33432e-09 -2.27035e-09 -3.14654e-14 -1.78005e-16 -3.17543e-14 -2.1949e-16 -3.2943e-13 -1.04801e-14 -2.98295e-13 -2.0837e-12 -2.74829e-17 -1.66871e-12 2.13561e-17 1.6891e-17 6.16933e-17 1.13228e-16 7.44489e-17 1.42796e-16 2.64486e-11 8.81594e-11 1.97714e-13 4.9429e-11 -1.03458e-15 1.64739e-14 1.2159e-16 2.29777e-16 7.04542e-17 8.005e-17 1.22991e-13 -1.83523e-15 4.76082e-14 -2.47615e-16 4.75266e-14 6.88701e-17 -2.69555e-09 -2.15941e-09 1.37059e-09 -5.06127e-09 -1.31459e-15 -2.18882e-10 -1.33656e-15 -4.31501e-17 -4.82444e-15 -3.02413e-16 -2.3957e-15 -5.92349e-15 -1.8065e-16 -2.84799e-15 -7.56075e-17 -1.12771e-15 -1.14482e-18 -4.06753e-16 -4.75857e-20 -4.02571e-17 -4.14009e-20 -5.77949e-12 1.88478e-12 -4.3562e-12 9.31983e-13 -7.61674e-13 1.68714e-13 -3.34785e-13 1.41292e-13 -1.04615e-13 2.95963e-13 -8.99634e-13 1.7429e-12 -1.59663e-10 4.28088e-11 -9.88058e-11 1.08067e-10 -2.45076e-11 5.28744e-12 -5.44926e-12 3.68672e-13 -5.49566e-12 3.65527e-13 -5.26502e-12 7.1444e-13 -6.55965e-12 8.32548e-12 -4.43464e-09 5.82589e-10 -1.20955e-08 1.96294e-09 -9.96422e-09 -3.15923e-10 -6.0991e-09 -4.22681e-09 -4.57326e-09 -5.85872e-09 -5.78897e-09 -1.26307e-15 -6.18458e-09 -1.12656e-16 -4.25034e-09 -1.88616e-16 -5.76451e-10 -1.98937e-16 -1.49791e-16 -2.05913e-16 -2.49016e-16 -1.70802e-16 -3.16211e-16 -2.3253e-16 5.25037e-15 -1.62339e-14 -4.27442e-12 -3.14391e-12 -5.40677e-12 -7.23797e-12 -3.88916e-17 -2.67872e-12 1.71791e-17 5.71012e-17 4.31198e-17 1.16796e-16 1.87853e-11 7.87971e-11 1.92192e-12 3.66434e-11 7.62239e-15 2.3298e-13 2.5812e-16 7.68991e-15 1.15255e-16 1.32327e-14 3.79797e-16 -3.13662e-15 7.23458e-17 5.21712e-17 1.19359e-16 1.72094e-17 -2.41423e-09 -2.63268e-10 4.03996e-10 -6.99811e-09 -8.17855e-19 -7.76862e-18 -7.92008e-18 -3.70136e-17 -2.692e-16 -3.84765e-17 -2.73435e-16 -9.03585e-17 -8.70051e-17 -7.57721e-16 -7.2422e-17 -9.77613e-16 -1.20841e-18 -4.2153e-16 -1.11472e-20 -3.34915e-17 -1.00189e-20 -7.0089e-13 -5.68739e-14 -3.92367e-13 7.3682e-14 -2.61321e-13 9.81731e-14 -2.12567e-13 1.78329e-13 -2.89273e-13 4.55853e-13 -2.01842e-11 9.43724e-12 -4.36195e-11 1.25862e-11 -6.23645e-12 1.16655e-12 -8.94839e-13 6.97538e-14 -3.46232e-13 1.18027e-13 -2.50726e-13 2.8254e-13 -2.45877e-13 5.15632e-13 6.4178e-12 1.10339e-12 1.1535e-10 1.38773e-11 -7.68314e-10 -4.42041e-11 -3.34535e-09 -1.11838e-10 -3.48048e-09 -1.57203e-15 -3.68441e-16 -3.2765e-13 -1.07874e-16 -1.26363e-15 -1.22717e-16 -1.2212e-16 -1.52599e-16 -1.84572e-16 -1.73992e-16 -2.04689e-16 -2.01245e-16 -2.07146e-16 -2.68522e-16 -1.78895e-16 -3.69981e-16 -1.72976e-16 -1.63728e-14 -2.92042e-16 -5.65029e-12 -2.14741e-14 -8.78351e-12 -2.96247e-12 -1.5531e-12 -4.98726e-12 1.24008e-13 1.75753e-13 3.77486e-14 2.50583e-12 9.25628e-12 7.94832e-11 2.59583e-13 1.07304e-11 -7.00452e-15 5.55206e-14 1.72056e-14 1.1464e-13 2.30538e-14 7.60897e-14 -1.07254e-17 6.64345e-15 1.99944e-17 1.13439e-17 9.89644e-18 2.24195e-17 -7.15543e-10 2.82197e-11 -4.46619e-19 -7.08084e-09 -2.5081e-18 -5.7246e-18 -8.19298e-18 -3.4423e-17 -2.25815e-17 -4.80944e-17 -1.53911e-16 -1.53381e-16 -7.64911e-17 -8.35573e-16 -6.61495e-17 -8.16535e-16 -1.21007e-18 -4.071e-16 -3.42958e-21 -2.70383e-17 -6.28211e-21 -1.32327e-13 2.33686e-14 -7.70404e-14 1.01079e-13 -6.5304e-14 1.45419e-13 -3.82675e-14 2.20505e-13 -3.1995e-12 1.99647e-12 -7.51288e-12 2.49495e-12 -1.41077e-12 2.15466e-13 -2.27858e-13 9.8452e-14 -1.1186e-13 8.63333e-14 -4.31508e-16 2.95611e-13 2.61732e-14 5.03923e-13 1.51406e-13 6.72586e-13 1.85708e-12 2.85183e-12 1.13127e-11 1.24341e-11 8.92996e-12 -1.02227e-11 -3.37635e-16 -7.28107e-12 -3.12887e-15 -1.75192e-15 -3.83184e-15 -3.27655e-13 -2.2834e-16 -3.65889e-15 -2.08308e-16 -1.78814e-16 -2.17e-16 -2.40083e-16 -2.22691e-16 -3.01406e-16 -1.79235e-16 -3.5456e-16 -1.50308e-16 -2.59602e-16 -1.41845e-16 -2.25667e-16 -2.23609e-16 -2.88635e-16 -2.1471e-14 -3.10357e-16 -2.98225e-12 -2.20071e-15 -2.47508e-12 -1.55755e-16 1.1677e-13 -1.95408e-13 2.90151e-12 6.2599e-12 9.98605e-12 1.07513e-11 3.17145e-13 -2.01768e-13 -1.10253e-14 6.11232e-14 5.46802e-14 9.3792e-14 1.53443e-14 4.72753e-14 1.73572e-17 1.53874e-15 1.60517e-17 8.17162e-18 1.31171e-17 2.02035e-17 2.81645e-11 5.51544e-14 -2.61958e-18 2.35066e-10 -5.88887e-18 -2.47369e-18 -9.09042e-18 -4.34818e-17 -3.28349e-17 -4.22015e-17 -1.4668e-16 -1.0694e-16 -6.89915e-17 -7.62423e-16 -5.72992e-17 -6.47323e-16 -1.14672e-18 -3.65578e-16 -2.6831e-21 -2.07972e-17 -7.29438e-21 -1.00669e-14 6.52938e-14 5.81238e-14 1.22693e-13 -2.45474e-14 5.95326e-13 -4.6953e-13 1.02072e-12 -1.04161e-12 7.80899e-13 -2.6514e-13 -1.02062e-13 -5.00916e-14 1.15505e-13 -2.27828e-14 1.95147e-13 -3.20713e-15 2.06111e-13 1.5045e-14 4.04462e-13 2.68611e-13 1.0259e-12 1.04066e-12 1.2692e-12 1.40955e-12 1.47677e-12 1.82061e-11 1.41145e-11 6.41483e-12 7.50841e-12 2.88333e-13 -1.15022e-12 2.13398e-15 2.81317e-13 -3.30608e-14 -3.14323e-12 -5.52606e-15 -2.22109e-12 -5.68766e-16 -5.29127e-15 -1.28408e-16 -4.66973e-16 -1.77381e-16 -2.89148e-16 -1.29036e-16 -5.0655e-16 -9.82667e-17 -3.64046e-16 -1.03549e-16 -3.09921e-16 -1.00841e-16 1.3577e-16 -8.28613e-17 -9.16449e-16 -6.2115e-17 -3.08702e-15 -1.64114e-16 -1.14477e-15 -1.96651e-13 -8.25372e-17 6.44258e-13 2.21663e-15 1.85761e-13 1.05279e-15 2.62742e-15 -6.03882e-15 6.30896e-14 4.00729e-14 8.71322e-14 8.8853e-14 1.0229e-14 1.96122e-14 -3.74335e-16 2.88302e-16 2.44645e-17 1.10002e-17 2.48028e-17 1.02019e-17 5.49417e-14 1.25936e-16 -9.5797e-18 6.37073e-09 -1.29599e-17 8.84594e-19 -6.95695e-18 -1.6227e-16 -1.9503e-17 -4.25479e-17 -1.02968e-16 -6.7289e-17 -4.80826e-17 -5.79531e-16 -4.6866e-17 -4.6379e-16 -1.02161e-18 -3.02664e-16 -3.85221e-21 -1.49385e-17 -8.65952e-21 5.54278e-14 6.14557e-14 -4.18998e-13 4.89303e-13 -5.7776e-13 9.081e-13 -3.30179e-13 9.36863e-13 -1.04788e-13 3.54797e-13 -5.52663e-15 5.83465e-14 7.78186e-15 2.21641e-13 1.88393e-14 3.13011e-13 3.14222e-14 3.32419e-13 2.32613e-13 7.5477e-12 3.31877e-13 6.6928e-12 7.60525e-13 3.74084e-12 2.38917e-12 2.9387e-12 8.11341e-12 1.93301e-12 5.62965e-12 1.92033e-12 1.68105e-11 4.83642e-12 2.04181e-11 3.10215e-12 1.96938e-11 -2.12725e-12 2.35578e-12 -6.53267e-12 -2.35577e-14 -2.90706e-12 -1.28956e-16 -2.37414e-14 8.13292e-17 -3.99345e-16 6.37789e-17 -4.13602e-16 3.01479e-17 -4.59796e-16 3.15485e-17 -4.01736e-16 1.53603e-16 -1.02938e-15 9.24808e-16 -2.43316e-15 1.25998e-15 -4.47521e-15 2.71474e-16 -1.30484e-15 7.34585e-17 -1.07439e-15 1.13524e-15 3.98838e-16 7.11899e-16 7.77952e-16 7.52235e-15 6.09859e-16 4.03969e-14 1.48852e-17 4.25189e-14 3.51929e-15 1.2709e-15 -7.20061e-17 1.2723e-16 5.72892e-17 9.82669e-18 4.20826e-18 3.01141e-17 -6.38842e-19 3.25441e-15 1.68414e-17 -1.34027e-09 4.15605e-08 -2.05689e-14 1.24185e-10 -5.4089e-18 -2.07222e-14 -9.53877e-18 -4.17847e-17 -7.23886e-17 -3.32242e-17 -3.19178e-17 -4.02546e-16 -3.58487e-17 -2.98023e-16 -8.45425e-19 -2.28625e-16 -5.63846e-21 -9.87185e-18 -1.04353e-20 -1.97487e-13 8.62743e-14 -8.89809e-13 4.86032e-13 -5.31324e-13 6.98292e-13 -2.38804e-13 1.53635e-13 5.82527e-16 1.9322e-14 -1.0852e-13 7.3306e-14 -3.05176e-14 2.47321e-12 1.79347e-13 8.35633e-12 4.18912e-12 1.02045e-11 5.17374e-12 1.21035e-11 2.77461e-12 1.13224e-11 2.02346e-12 7.88069e-12 4.24309e-12 7.02214e-12 1.22857e-11 5.04332e-12 2.02132e-11 1.19588e-12 2.12925e-11 3.98831e-12 2.28114e-11 1.82906e-12 2.17976e-11 -8.52268e-13 1.67855e-11 -1.23662e-12 2.29863e-14 -1.79184e-13 -1.22641e-16 -4.25782e-16 3.90718e-16 -5.15623e-16 2.79428e-16 4.56218e-16 3.51908e-16 -6.54111e-16 7.25781e-15 -7.53326e-15 5.47269e-14 -5.13694e-14 6.04903e-13 -5.71109e-13 7.55201e-13 -1.70173e-13 1.72323e-13 5.76282e-13 1.65246e-15 1.68843e-13 1.2516e-16 1.2296e-15 9.90429e-17 9.62705e-17 2.03997e-16 1.54795e-16 8.44529e-17 9.42602e-17 1.7889e-16 1.64021e-16 2.26799e-17 1.74222e-17 6.32538e-18 1.11232e-18 1.19122e-18 2.68296e-19 6.5129e-16 -7.13218e-16 2.74126e-09 9.82996e-12 -3.8386e-09 5.86109e-08 -3.19229e-12 4.41954e-10 -2.47776e-16 -3.21276e-12 -2.97828e-18 -2.98922e-16 -3.76276e-17 -1.58341e-17 -1.81586e-17 -2.6663e-16 -2.53645e-17 -1.70049e-16 -6.43228e-19 -1.55498e-16 -8.37941e-21 -6.02574e-18 -1.28068e-20 -2.67674e-13 7.84273e-14 -7.44821e-13 4.46762e-14 -1.13095e-13 1.55316e-15 3.16957e-15 1.81329e-15 -5.76388e-15 7.96944e-15 -1.2012e-12 7.36188e-13 -2.61632e-12 6.75016e-12 -2.33102e-12 8.6939e-12 2.60373e-13 8.2354e-12 3.5762e-12 9.44919e-12 6.73593e-12 8.86587e-12 8.40576e-12 6.94229e-12 9.84646e-12 6.33408e-12 4.48773e-12 4.87169e-12 3.77083e-13 3.13626e-13 4.73938e-12 3.7517e-15 7.48247e-12 3.75322e-16 3.82388e-12 -1.72935e-15 1.80501e-13 -3.02476e-17 2.08186e-15 -1.07403e-15 5.67057e-16 -3.02783e-16 5.60317e-16 -2.73534e-16 3.63017e-15 -1.83373e-15 2.66639e-14 -2.39472e-14 5.24067e-13 -5.23242e-13 7.89768e-12 -9.77395e-11 8.21665e-11 -1.01211e-09 1.12706e-10 -1.19457e-09 4.17342e-11 -6.68454e-10 5.05887e-13 -1.69794e-11 6.11804e-16 5.06016e-13 1.46614e-16 4.44596e-16 7.59076e-17 9.64127e-17 5.52645e-17 7.23257e-17 7.26911e-17 7.95786e-17 3.21088e-17 2.93206e-17 8.40175e-18 1.11254e-18 7.08885e-19 1.64485e-19 2.61179e-13 -2.619e-13 3.83379e-10 3.25059e-10 7.91044e-10 6.65289e-08 -2.16909e-12 1.05253e-10 -1.97898e-15 -5.37748e-12 -4.09703e-19 -2.29337e-15 -1.56396e-17 -1.20151e-17 -8.6713e-18 -1.47849e-16 -1.63789e-17 -8.38508e-17 -4.52319e-19 -9.35138e-17 -1.26736e-20 -3.55692e-18 -1.61093e-20 -1.61351e-14 4.94212e-15 -2.17723e-15 1.20708e-16 -1.9569e-15 1.70997e-16 -2.52032e-15 8.68526e-16 6.8688e-17 3.5402e-15 -5.45788e-13 3.84249e-13 -1.38165e-12 2.41181e-12 -4.10477e-12 2.43807e-12 -1.81964e-12 1.86772e-12 1.19118e-13 6.16468e-13 8.47685e-13 6.24113e-14 1.57848e-12 4.8805e-15 1.51753e-12 6.28196e-15 1.97106e-13 1.02799e-15 -1.9756e-15 8.59585e-17 1.73806e-15 2.40342e-17 1.94843e-15 1.09855e-16 7.98718e-17 -7.59325e-18 6.79408e-17 -1.74503e-16 1.64516e-16 -1.33533e-15 1.64651e-15 -2.26741e-15 2.79574e-14 -2.76106e-14 1.71895e-13 -1.50711e-13 5.22244e-13 -3.94646e-13 -5.97335e-11 -8.62604e-10 -2.75257e-10 -3.05294e-09 -4.95432e-10 -3.66723e-09 -4.70142e-10 -3.74634e-09 8.31332e-11 -3.183e-09 -3.84127e-12 -1.4246e-09 3.423e-14 2.81997e-12 2.40003e-16 3.45019e-14 1.1523e-16 1.97874e-16 5.46308e-17 1.07893e-16 4.27762e-17 6.47214e-17 7.18826e-17 8.84315e-17 1.26336e-17 4.48589e-18 7.98973e-18 1.97993e-19 -2.52837e-13 -9.05971e-15 -1.63088e-09 9.22862e-11 5.41098e-09 1.44766e-08 5.22013e-12 -6.48454e-11 2.30614e-15 -1.6312e-13 4.79663e-17 -5.38524e-17 -3.72773e-18 -1.27022e-18 -3.35859e-18 -6.41594e-17 -9.48145e-18 -3.45153e-17 -3.0721e-19 -4.84481e-17 -1.95077e-20 -2.24146e-18 -2.0963e-20 -2.7046e-16 5.80671e-17 -2.93933e-16 6.94319e-17 -4.68866e-16 8.21011e-17 -3.48852e-16 4.65318e-16 -3.26398e-14 4.86173e-14 -4.5749e-13 1.74569e-13 -5.39724e-13 2.56376e-13 -3.87347e-13 1.48656e-13 -1.12503e-13 1.52427e-13 -1.62623e-14 4.07297e-14 -1.87409e-15 2.05424e-14 -2.32639e-15 5.24944e-15 -1.00636e-15 4.91393e-15 -2.82053e-17 2.8366e-17 -4.11897e-18 5.29388e-17 -8.41576e-18 1.0961e-17 -6.66938e-18 7.26459e-18 -1.72737e-18 -4.53277e-17 6.93944e-17 -4.07259e-16 -1.414e-14 1.25276e-14 -2.03042e-13 1.84999e-13 -3.53179e-12 -1.26719e-10 2.96489e-12 -6.26527e-10 -3.38282e-10 -1.15923e-09 -1.51959e-09 -2.09108e-09 -1.72056e-09 -2.84343e-09 -1.76157e-09 -3.61715e-09 -1.76434e-09 -3.73393e-09 -1.58038e-09 -3.35385e-09 -2.25875e-10 -2.06747e-09 1.95109e-13 -1.12075e-10 -6.23111e-16 2.31243e-13 -8.74435e-16 6.01838e-16 5.64388e-15 1.53707e-14 1.81116e-15 8.86403e-15 1.21124e-16 2.18973e-16 5.07922e-18 5.29499e-18 1.77183e-19 2.44046e-19 -9.06011e-15 -2.48077e-18 -1.19678e-10 -2.96734e-16 5.91551e-10 3.02483e-12 1.59907e-13 -2.97855e-12 5.89458e-17 -3.42363e-15 4.77063e-18 -2.59421e-18 3.98284e-21 -4.85031e-19 -1.01869e-18 -2.0038e-17 -4.79163e-18 -1.13708e-17 -2.21487e-19 -2.07667e-17 -3.04571e-20 -1.67429e-18 -2.84859e-20 -2.50127e-16 3.18651e-17 -2.67011e-16 5.30035e-17 -5.21534e-15 9.86379e-16 -2.4642e-14 9.54884e-15 -1.53476e-14 6.29895e-14 -1.27751e-14 1.5048e-13 -1.84097e-14 2.47618e-13 -2.55975e-15 1.28379e-13 -1.21934e-15 1.48324e-13 -3.39681e-14 7.19639e-14 -4.18691e-17 -1.34612e-14 -2.7781e-17 5.18938e-15 -2.09737e-17 4.8871e-15 -1.84807e-17 1.85674e-17 -2.45043e-17 3.15323e-17 -5.54903e-17 2.29573e-17 -1.27079e-15 1.20179e-15 -7.93662e-15 6.5483e-15 1.01577e-11 -1.01673e-11 -6.53336e-11 -1.65432e-10 -1.29579e-10 -4.69378e-10 -5.97218e-11 -8.87334e-10 -1.81047e-10 -1.18935e-09 -4.0557e-10 -2.45092e-09 -3.91737e-10 -2.09063e-09 -5.19714e-10 -2.70646e-09 -1.1427e-09 -2.9846e-09 -1.83692e-09 -1.93512e-09 -1.15216e-09 -6.61705e-14 -4.36859e-10 -6.55434e-11 -2.31331e-13 -1.67233e-10 -6.84845e-17 5.66591e-16 -9.03484e-16 6.03147e-16 2.15189e-15 3.33098e-14 1.80026e-17 6.6984e-15 3.45137e-18 1.08148e-17 3.6615e-19 8.39389e-19 2.75818e-20 4.7335e-20 1.10455e-16 -1.77909e-22 5.0686e-16 -3.79384e-16 2.92931e-12 3.71782e-15 3.45297e-15 -1.34171e-15 3.61065e-18 -1.02738e-18 3.5333e-19 -7.94127e-20 8.99696e-21 -1.99552e-19 -2.31778e-19 -4.0684e-18 -2.02628e-18 -2.89056e-18 -1.87052e-19 -6.91726e-18 -4.78757e-20 -1.42351e-18 -4.05348e-20 -3.23882e-16 3.91155e-17 -1.53314e-15 1.21926e-15 -3.76497e-14 3.70054e-14 -1.13897e-12 1.10917e-12 -2.21217e-11 2.09955e-11 -1.50597e-10 2.13496e-12 -1.45052e-10 -3.07618e-10 -1.69608e-10 -1.47029e-10 -2.84023e-10 5.13985e-13 -2.4004e-10 -1.35479e-10 -1.12855e-10 -1.28876e-10 -7.1923e-11 6.55686e-11 -6.39803e-17 1.27579e-10 -7.65851e-17 2.33657e-17 -6.08251e-16 5.49635e-16 -5.47738e-14 5.41685e-14 -4.99081e-12 4.93716e-12 8.62562e-11 -9.12513e-11 -9.33829e-10 -6.63949e-11 -2.77666e-09 -1.27434e-10 -2.04203e-09 -9.99506e-11 -1.06315e-09 -6.77658e-10 -4.03755e-10 -7.79459e-17 -1.8717e-10 -6.50107e-17 -3.02687e-10 -1.33027e-17 -5.22865e-10 -5.17912e-18 -2.4232e-10 -4.84018e-17 -5.28331e-15 -9.57957e-15 -1.36303e-13 -1.96712e-14 -6.53712e-11 -3.97117e-13 -1.79888e-15 -2.5092e-11 -2.18853e-15 1.64313e-16 -1.00421e-14 2.03367e-15 -1.76898e-15 4.74113e-15 -7.45887e-19 8.22838e-16 1.00077e-19 2.83065e-18 1.47139e-20 9.68801e-20 1.45692e-21 2.73099e-21 -1.30371e-19 5.10491e-22 1.76941e-18 1.3694e-19 3.86231e-15 1.92125e-17 2.98858e-17 -4.0384e-19 2.67657e-19 -3.45648e-20 1.35728e-20 -3.11916e-20 6.33038e-21 -7.44552e-20 -3.79199e-20 -5.18284e-19 -6.691e-19 -5.98174e-19 -1.76452e-19 -1.716e-18 -7.48088e-20 -1.2252e-18 -5.96766e-20 -8.93872e-09 4.80279e-10 -9.39236e-09 4.5692e-10 -9.68328e-09 2.94692e-10 -9.71101e-09 2.51343e-11 -8.30756e-09 -1.67839e-10 -7.98857e-09 -3.11808e-10 -7.79135e-09 -5.04518e-10 -7.6319e-09 -3.88892e-10 -7.12697e-09 -4.90703e-10 -6.64171e-09 -6.02557e-10 -6.08298e-09 -4.8681e-10 -5.77565e-09 -1.94004e-10 -5.76334e-09 1.68682e-10 -6.69341e-09 5.18544e-10 -5.43651e-09 5.21964e-10 -3.86919e-09 3.04734e-10 -3.74794e-09 1.03666e-10 -2.38463e-09 -5.92218e-11 -5.69578e-10 -6.40635e-11 -2.16958e-10 -2.81377e-11 -1.58944e-10 -1.6752e-16 -8.54654e-18 -2.05949e-15 -7.6163e-18 -8.45709e-17 -6.56776e-18 -7.17226e-17 -5.75583e-18 -2.00845e-17 -5.65047e-18 -1.16308e-17 -4.03282e-17 -2.04705e-17 -9.59819e-15 -2.95015e-17 -1.14099e-13 -3.66946e-15 -1.60942e-13 -1.53159e-12 -4.90058e-12 -2.16094e-11 -2.45432e-15 -1.79966e-12 -4.51639e-16 6.67819e-18 -7.31366e-17 2.17286e-16 -5.57365e-19 4.96976e-17 -3.56214e-21 5.45953e-19 -2.16396e-23 5.8433e-21 4.99776e-23 8.52221e-23 2.28899e-23 4.5009e-23 5.61638e-22 -1.86842e-23 1.06828e-17 9.11485e-18 4.35167e-19 -4.90458e-21 1.13082e-20 -4.36265e-21 5.94813e-21 -1.27878e-20 3.09344e-21 -2.77804e-20 -4.7014e-21 -5.31626e-20 -1.63837e-19 -1.53161e-19 -1.64042e-19 -4.7568e-19 -1.1377e-19 -1.00951e-18 -8.77977e-20 -9.24997e-09 6.24947e-10 -9.02e-09 2.28865e-10 -8.85454e-09 1.31264e-10 -8.85048e-09 2.32442e-11 -8.97359e-09 -4.24062e-11 -9.16337e-09 -1.18307e-10 -9.43041e-09 -2.31916e-10 -9.48033e-09 -3.31283e-10 -9.44631e-09 -5.07028e-10 -9.4711e-09 -5.57417e-10 -9.74368e-09 -1.91494e-10 -9.89637e-09 -3.86033e-17 -2.08702e-09 -3.56574e-16 -2.54046e-10 -2.5317e-14 -2.10949e-10 -4.07951e-14 -2.52018e-10 6.6413e-14 -2.58063e-10 -2.99689e-18 -2.28211e-10 -1.68388e-17 -1.07802e-10 -4.6434e-17 -1.098e-16 -4.83716e-16 -9.02822e-17 -5.46525e-16 -1.07111e-16 -2.42369e-15 -1.03296e-16 -4.8948e-16 -2.64183e-17 -3.51028e-16 -1.30949e-17 -7.13184e-17 -2.13197e-17 -1.5474e-17 -3.07016e-17 -1.0704e-17 -5.31854e-17 -6.63403e-18 -9.96763e-16 -2.7866e-15 -9.57055e-12 -9.51411e-13 -3.05527e-11 -5.89404e-12 -1.60147e-17 -8.10412e-13 -3.49142e-17 -1.18011e-20 -2.36448e-17 2.64745e-18 -3.18002e-19 3.33131e-18 -7.56637e-22 6.90625e-20 -5.61788e-24 2.10212e-22 1.97386e-24 1.23087e-25 9.70135e-24 3.84038e-24 5.05277e-23 -1.05143e-23 2.30052e-19 9.88548e-20 5.47265e-21 -2.80183e-22 1.48826e-21 -1.35037e-21 2.47416e-21 -4.48865e-21 1.30255e-21 -9.9424e-21 -6.88506e-22 -2.08673e-20 -4.40283e-20 -6.72723e-20 -1.40563e-19 -2.62379e-19 -1.62228e-19 -7.60204e-19 -1.20836e-19 2.80285e-10 1.5579e-12 1.76074e-10 2.36234e-13 4.1345e-11 -3.09933e-13 -6.8213e-11 -6.20062e-13 -1.9405e-10 -6.70097e-13 -3.25419e-10 -5.96473e-13 -5.15267e-10 -7.3586e-13 -7.44322e-10 -5.46493e-13 -6.41949e-10 -3.12564e-13 -2.96003e-10 -5.46695e-15 -1.51725e-16 -1.06462e-16 -1.70302e-16 -3.42647e-17 -5.06473e-16 -3.55408e-17 -2.58367e-14 -3.43943e-17 -6.65944e-14 -5.49323e-17 -1.06782e-16 -8.61042e-17 -8.70045e-17 -3.44736e-17 -7.23228e-17 -4.39577e-17 -6.19209e-17 -7.00477e-17 -5.03832e-16 -5.58256e-17 -1.37267e-15 -1.44019e-15 -1.14152e-15 -4.45827e-15 -5.01798e-16 -5.95963e-15 -4.24483e-17 -8.98085e-16 -9.89948e-18 -1.8307e-16 -6.02534e-18 -2.79302e-17 -5.09669e-18 -2.15096e-18 -1.1769e-17 -1.25214e-20 -2.81233e-15 -4.14805e-22 -8.50088e-13 -2.11237e-21 -2.38855e-12 -7.76836e-21 -7.26141e-18 -3.38323e-19 -7.01353e-18 -1.38149e-19 -5.56382e-18 -9.88098e-20 -9.6362e-20 -2.25949e-20 -1.59546e-22 -4.89506e-22 -8.84618e-25 -1.72707e-24 1.55274e-26 -7.2099e-26 1.93167e-24 -1.61345e-25 1.13835e-23 -2.74663e-24 1.11996e-21 -9.78069e-25 2.22559e-22 -6.782e-23 4.30649e-22 -3.52556e-22 8.02679e-22 -1.25605e-21 4.64755e-22 -2.79589e-21 -1.78418e-22 -6.27817e-21 -2.26105e-20 -2.20279e-20 -1.03945e-19 -1.12336e-19 -2.0275e-19 -4.76756e-19 -1.39434e-19 3.55004e-12 2.6871e-15 3.78572e-12 9.58924e-16 3.47719e-12 -2.92758e-16 2.85942e-12 -9.18816e-16 2.19195e-12 -1.34507e-15 1.59769e-12 -1.12456e-15 8.63113e-13 -2.89016e-16 3.18223e-13 -8.80256e-16 5.75282e-15 -1.09745e-16 2.87807e-16 5.98181e-18 1.90277e-16 -5.51079e-19 1.62677e-16 -6.67959e-18 1.44884e-16 -1.29442e-17 1.3264e-16 -1.96742e-17 1.26679e-16 -2.67465e-17 1.2678e-16 -3.23405e-17 1.30233e-16 -3.69721e-17 1.49275e-16 -4.21727e-17 1.7283e-16 -5.38417e-17 1.00725e-16 -7.39369e-17 4.52603e-15 -1.58474e-16 4.22235e-15 -3.99037e-15 2.87777e-15 -4.5225e-15 4.79194e-17 -2.57173e-15 -4.20222e-19 -2.36507e-16 -4.08517e-19 -5.18836e-17 -4.36124e-21 -4.82934e-18 -2.05403e-22 -2.35341e-20 -2.51243e-22 -4.4609e-22 -2.99132e-22 -2.14642e-21 -8.36349e-22 -7.31732e-21 -3.21936e-19 -1.73099e-20 -3.04059e-19 -2.78729e-20 -7.87534e-20 -2.74157e-20 -1.75378e-21 -1.26241e-21 -4.78897e-24 -5.85204e-24 -6.93011e-26 -1.28227e-26 -3.79373e-26 -6.17695e-27 2.21465e-25 -3.11535e-26 1.59748e-24 -3.47456e-25 1.30311e-23 -1.10113e-24 3.61977e-23 -1.13367e-23 9.16634e-23 -6.66336e-23 1.84741e-22 -2.51526e-22 1.13137e-22 -5.57143e-22 -3.80355e-23 -1.30373e-21 -8.30155e-21 -4.48987e-21 -5.8095e-20 -3.01299e-20 -1.97024e-19 -2.02164e-19 -1.12624e-19 5.3775e-15 1.95945e-16 5.98089e-15 1.9523e-16 5.37906e-15 1.7289e-16 4.24741e-15 1.22021e-16 2.80427e-15 5.52187e-17 1.67093e-15 1.25975e-17 1.30233e-15 6.20133e-17 3.86335e-16 2.09488e-17 2.18913e-16 9.033e-18 2.33783e-16 6.3306e-18 2.32505e-16 2.18305e-18 2.33954e-16 -1.92245e-18 2.36399e-16 -6.27197e-18 2.40621e-16 -1.04712e-17 2.3857e-16 -1.66505e-17 2.2733e-16 -1.74454e-17 2.1485e-16 -2.17342e-17 2.05901e-16 -2.67515e-17 2.15808e-16 -4.77133e-17 2.3301e-16 -1.01482e-16 1.89936e-15 -6.32028e-17 7.96799e-15 -2.27484e-16 4.25489e-15 -1.18704e-17 6.89967e-16 -1.38491e-16 1.0388e-16 -2.92583e-17 8.86907e-18 -8.64411e-18 -7.00532e-22 -1.0019e-18 -8.58877e-23 -2.9509e-20 -7.11936e-22 -8.53637e-25 -3.45304e-21 -3.51278e-24 -1.1218e-20 -4.37928e-23 -2.38625e-20 -3.1136e-22 -2.71837e-20 -1.07595e-21 -1.32472e-21 -1.16039e-22 -5.85471e-24 -2.39131e-24 -1.02293e-26 -6.2293e-27 -2.38709e-27 -3.14273e-30 -3.23945e-27 -3.90914e-29 1.03702e-26 -5.03905e-28 1.0403e-25 -9.63414e-27 9.77791e-25 -7.81482e-26 3.53444e-24 -9.15589e-25 1.14372e-23 -6.78223e-24 2.49578e-23 -2.74141e-23 1.56377e-23 -6.02603e-23 -4.36707e-24 -1.42348e-22 -1.59515e-21 -3.81817e-22 -1.80346e-20 -2.69713e-21 -1.13494e-19 -3.29444e-20 -3.97751e-20 2.1162e-17 2.87547e-17 3.62161e-17 4.35077e-17 5.09644e-17 5.87398e-17 7.1656e-17 6.70121e-17 6.27114e-17 5.74966e-17 5.75423e-17 6.62494e-17 7.12098e-17 6.74878e-17 6.07278e-17 5.37885e-17 5.05755e-17 4.84563e-17 8.77046e-17 1.16191e-16 5.93816e-17 4.64964e-18 3.86386e-20 6.69889e-18 6.14756e-18 7.40765e-19 -7.63648e-23 -5.61653e-26 -4.11422e-25 -7.23217e-24 -6.69142e-23 -2.80848e-22 -3.30991e-23 -6.93751e-25 -1.67929e-27 -6.7344e-31 -4.44878e-30 -1.63013e-29 4.09469e-29 9.04884e-28 1.55687e-26 9.4627e-26 4.12859e-25 1.00185e-24 6.16755e-25 -2.34175e-26 -5.66975e-23 -1.14325e-21 -1.85922e-20 ) ; boundaryField { leftWall { type calculated; value uniform 0; } rightWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } atmosphere { type calculated; value nonuniform List<scalar> 190 ( 2.61545e-07 2.98e-07 3.35743e-07 3.73148e-07 4.09554e-07 4.51957e-07 5.03558e-07 5.63747e-07 6.33069e-07 7.0981e-07 7.83896e-07 9.53601e-07 6.66189e-07 1.19564e-08 1.1792e-11 3.62354e-12 1.78994e-14 1.7724e-14 1.49577e-14 1.34864e-14 8.86065e-15 7.60807e-15 3.5494e-15 6.94809e-16 8.818e-18 6.2148e-18 3.64174e-18 8.69762e-19 0 0 0 0 0 0 0 0 0 0 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.02673e-19 9.0736e-16 2.4597e-11 5.98266e-11 1.57776e-09 1.16763e-10 6.57441e-11 1.90217e-11 1.72371e-17 2.18871e-19 2.41227e-19 2.04297e-19 2.79574e-19 5.0713e-19 8.45462e-19 1.31413e-18 1.77035e-18 2.00589e-18 1.8745e-18 1.54369e-18 1.23734e-18 1.08535e-18 1.12231e-18 1.4524e-18 1.44924e-18 1.253e-18 1.13322e-18 1.00033e-18 8.94818e-19 8.13684e-19 7.74427e-19 8.69872e-19 3.94417e-18 5.33446e-18 6.76083e-18 7.89209e-18 8.7219e-18 9.30604e-18 9.63299e-18 1.03369e-17 8.23216e-18 6.20602e-18 4.10757e-18 2.10979e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.33202e-07 2.63466e-07 2.99189e-07 3.45423e-07 4.0181e-07 4.68453e-07 5.37079e-07 5.99624e-07 6.60583e-07 7.47314e-07 8.50591e-07 9.68406e-07 2.55808e-07 1.53999e-12 9.75997e-13 2.55065e-13 1.69353e-14 1.16276e-14 1.39167e-14 5.07454e-15 1.07993e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } defaultFaces { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "stig.m.nilsen@gmail.com" ]
stig.m.nilsen@gmail.com
ad010c0b6719b76387789718f238de7b5bcd1720
fa62dc347420da6b1c9daa193a12c505d3072168
/Lab4/tests_matriz3x3_iguais.cpp
6efd6a9397897d919dd60a1fa85139ae4284b8da
[]
no_license
2ELE051-UEL-2018/Lab4
8ffcca7574c1cf803392af893da782e31af51700
49a5aa856c59633cb0a85c737ea43905260fba0d
refs/heads/master
2020-03-15T01:23:56.736613
2018-05-02T18:46:56
2018-05-02T18:46:56
131,892,756
0
0
null
null
null
null
UTF-8
C++
false
false
1,441
cpp
#include "gtest/gtest.h" extern "C" { int matriz3x3_iguais(double A[][3], double B[][3]); } TEST(tests_matriz3x3_iguais, TesteIdentidadeIdentidade) { double identidade[3][3] = { { 1.0, 0.0, 0.0 }, { 0.0, 1.0, 0.0 }, { 0.0, 0.0, 1.0 } }; double identidade2[3][3] = { { 1.0, 0.0, 0.0 }, { 0.0, 1.0, 0.0 }, { 0.0, 0.0, 1.0 } }; ASSERT_EQ(1, matriz3x3_iguais(identidade, identidade2)); } TEST(tests_matriz3x3_iguais, TesteIdentidadeNula) { double identidade[3][3] = { { 1.0, 0.0, 0.0 }, { 0.0, 1.0, 0.0 }, { 0.0, 0.0, 1.0 } }; double nula[3][3] = { { 0.0, 0.0, 0.0 }, { 0.0, 0.0, 0.0 }, { 0.0, 0.0, 0.0 } }; ASSERT_EQ(0, matriz3x3_iguais(identidade, nula)); } TEST(tests_matriz3x3_iguais, TesteTotalmenteDiferente) { double A[3][3] = { { 1.0, 2.0, 3.0 }, { 4.0, 5.0, 6.0 }, { 7.0, 8.0, 9.0 } }; double B[3][3] = { { 10.0, 11.0, 12.0 }, { 13.0, 14.0, 15.0 }, { 16.0, 17.0, 18.0 } }; ASSERT_EQ(0, matriz3x3_iguais(A, B)); } TEST(tests_matriz3x3_iguais, TesteIgualDepoisUmElementoDiferente) { double A[3][3] = { { 1.0, 2.0, 3.0 }, { 4.0, 5.0, 6.0 }, { 7.0, 8.0, 9.0 } }; double B[3][3]; int i, j, k, l; for (i = 0; i < 3; i++) for (j = 0; j < 3; j++) { for (k = 0; k < 3; k++) for (l = 0; l < 3; l++) { B[k][l] = A[k][l]; } ASSERT_EQ(1, matriz3x3_iguais(A, B)); B[i][j] = 0.0; ASSERT_EQ(0, matriz3x3_iguais(A, B)); } }
[ "decio@decpp.net" ]
decio@decpp.net
f8282bc2971966d97b93d12c5bb18843a05bca3b
39696db57c58c4fb48747835eb0f95d7a9277018
/0344-Reverse-String/cpp-0344/main.cpp
388d7ce0e8b518c052e8f8df591a19dc5a8259c7
[]
no_license
jerryfan86/LeetCodeAnimation
0a6ded60f987196b4b5ed1e1ef604df6c62c07e5
a57bb787f523ed9c0760c6b7599f9dc71b94ce14
refs/heads/master
2022-10-18T09:18:19.450990
2022-09-28T10:47:13
2022-09-28T10:47:13
173,018,876
1
1
null
2019-02-28T01:32:03
2019-02-28T01:32:03
null
UTF-8
C++
false
false
628
cpp
/// Source : https://leetcode.com/problems/reverse-string/description/ /// Author : liuyubobobo /// Time : 2018-06-04 #include <iostream> using namespace std; // 344. Reverse String // https://leetcode.com/problems/reverse-string/description/ // Two Pointers // 时间复杂度: O(n) // 空间复杂度: O(1) class Solution { public: string reverseString(string s) { int i = 0, j = s.size() - 1; while(i < j){ swap(s[i], s[j]); i ++; j --; } return s; } }; int main() { cout << Solution().reverseString("hello") << endl; return 0; }
[ "278166530@qq.com" ]
278166530@qq.com
b8291758e735486fef2d38226dead1f8a037a8e4
cbca6ca1a06d07f67911ac1144c6a35e8015b901
/SQF/dayz_communityweapons/configs/mosin.hpp
43a64131a364b41e1b500ac66e826985817e8e25
[]
no_license
conan513/DayZ
9660bad5f319d464804de68c4bbc572b7a33fa7d
21bfcfd88bb9c60284ea77a126de0089557a3310
refs/heads/Development
2021-01-22T20:54:34.482729
2015-05-02T17:32:09
2015-05-02T17:32:09
34,963,609
0
1
null
2015-05-02T21:16:11
2015-05-02T21:16:11
null
UTF-8
C++
false
false
24,796
hpp
class Mosin_Nagant_broken: Rifle { handAnim[] = {"OFP2_ManSkeleton","\Ca\weapons\data\Anim\M24.rtm"}; // Hand positions type = "1"; scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_animated"; displayName = "Mosin Nagant (BROKEN)"; descriptionShort="This weapon is broken<br />Attachments:<br />Ammo:"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891.paa"; drySound[] = {""}; }; class Mosin_Nagant_Base: Rifle { handAnim[] = {"OFP2_ManSkeleton","\Ca\weapons\data\Anim\M24.rtm"}; // Hand positions type = "1"; // Prevents it from using backpack slot scope = 1; // value = 0; magazineReloadTime = 7.5; showaimcursorinternal = 0; cursoraim = "\ca\Weapons\Data\clear_empty"; cursoraimon = "\ca\Weapons\Data\clear_empty"; ballisticsComputer = 0; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: <br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891.paa"; drySound[] = {"Ca\sounds\Weapons\rifles\dry",0.01,1,10}; modelOptics = "-"; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload.ogg, 0.010000, 1}; magazines[] = {"Mosin_Nagant_Ammo"}; modes[] = {"Single"}; dexterity = 1.57; weaponInfoType = "RscWeaponZeroing"; discreteDistance[] = {100,200,300,400,500,600,700,800}; discreteDistanceInitIndex = 2; opticsZoomInit = 0.3; opticsZoomMin = 0.3; opticsZoomMax = 0.2; distanceZoomMin = 300; distanceZoomMax = 100; canLock = 0; class Single: Mode_SemiAuto { sound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\Mosin.ogg,1.778279,1,1000}; recoil = "Mosin_NagantRecoil"; recoilProne = "Mosin_NagantRecoilProne"; dispersion = 0.0009100; reloadTime = 1.4; minRange=0.5; minRangeProbab=0.800000; midRange=100; midRangeProbab=0.60000; maxRange=200; maxRangeProbab=0.080000; }; }; class Mosin_Nagant: Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: <br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891.paa"; class Attachments { attachments[] = {"Attachment_FL","Attachment_SCOPED","Attachment_BELT"}; Attachment_FL = "Mosin_Nagant_FL"; Attachment_SCOPED = "Mosin_Nagant_Scoped"; Attachment_BELT = "Mosin_Nagant_Belt"; }; }; // -------------------------------- Mosin 1891 Variants --------------------------------------// class Mosin_Nagant_FL : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_FL_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891_FL.paa"; dexterity = 1.6; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class Attachments { attachments[] = {"Attachment_SCOPED","Attachment_BELT"}; Attachment_SCOPED = "Mosin_Nagant_Scoped_FL"; Attachment_BELT = "Mosin_Nagant_Belt_FL"; }; class ItemActions { /* class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt','Mosin_Nagant'] spawn player_removeAttachment;"; }; */ class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_FL','Mosin_Nagant'] spawn player_removeAttachment;"; }; /* class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Scoped','Mosin_Nagant'] spawn player_removeAttachment;"; }; */ }; }; class Mosin_Nagant_Scoped : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_scoped_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891S.paa"; dexterity = 1.6; opticsPPEffects[] = {"OpticsCHAbera2","OpticsBlur2"}; opticsZoomInit = 0.083; opticsZoomMin = 0.071945; opticsZoomMax = 0.071945; distanceZoomMin = 110; distanceZoomMax = 110; class Attachments { attachments[] = {"Attachment_FL","Attachment_BELT"}; Attachment_FL = "Mosin_Nagant_Scoped_FL"; Attachment_BELT = "Mosin_Nagant_Belt_Scoped"; }; class ItemActions { /* class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt','Mosin_Nagant'] spawn player_removeAttachment;"; }; class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_Scoped_FL','Mosin_Nagant_FL'] spawn player_removeAttachment;"; }; */ class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Scoped','Mosin_Nagant'] spawn player_removeAttachment;"; }; }; }; class Mosin_Nagant_Scoped_FL : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_scoped_FL_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope and Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891S_FL.paa"; dexterity = 1.6; opticsPPEffects[] = {"OpticsCHAbera2","OpticsBlur2"}; opticsZoomInit = 0.083; opticsZoomMin = 0.071945; opticsZoomMax = 0.071945; distanceZoomMin = 110; distanceZoomMax = 110; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class Attachments { attachments[] = {"Attachment_BELT"}; Attachment_BELT = "Mosin_Nagant_Belt_Scoped_FL"; }; class ItemActions { /* class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt','Mosin_Nagant'] spawn player_removeAttachment;"; }; */ class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_Scoped_FL','Mosin_Nagant_Scoped'] spawn player_removeAttachment;"; }; class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Scoped_FL','Mosin_Nagant_FL'] spawn player_removeAttachment;"; }; }; }; class Mosin_Nagant_Belt : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_belt_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Ammo Belt<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891B.paa"; dexterity = 1.6; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class Attachments { attachments[] = {"Attachment_FL","Attachment_SCOPED"}; Attachment_FL = "Mosin_Nagant_Belt_FL"; Attachment_SCOPED = "Mosin_Nagant_Belt_Scoped"; }; class ItemActions { class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt','Mosin_Nagant'] spawn player_removeAttachment;"; }; /* class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_Belt_FL','Mosin_Nagant_Belt'] spawn player_removeAttachment;"; }; class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Belt_Scoped','Mosin_Nagant_Scoped'] spawn player_removeAttachment;"; }; */ }; }; class Mosin_Nagant_Belt_FL : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_belt_FL_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Ammo Belt and Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891B_FL.paa"; dexterity = 1.6; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class Attachments { attachments[] = {"Attachment_SCOPED"}; Attachment_SCOPED = "Mosin_Nagant_Belt_Scoped_FL"; }; class ItemActions { class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt_FL','Mosin_Nagant_FL'] spawn player_removeAttachment;"; }; class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_Belt_FL','Mosin_Nagant_Belt'] spawn player_removeAttachment;"; }; /* class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Belt_Scoped','Mosin_Nagant_Scoped'] spawn player_removeAttachment;"; }; */ }; }; class Mosin_Nagant_Belt_Scoped : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_belt_scoped_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope and Ammo Belt<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891SB.paa"; dexterity = 1.6; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class Attachments { attachments[] = {"Attachment_FL"}; Attachment_FL = "Mosin_Nagant_Belt_Scoped_FL"; }; class ItemActions { class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt_Scoped','Mosin_Nagant_Scoped'] spawn player_removeAttachment;"; }; /* class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_Belt_Scoped','Mosin_Nagant_Belt_Scoped'] spawn player_removeAttachment;"; }; */ class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Belt_Scoped','Mosin_Nagant_Belt'] spawn player_removeAttachment;"; }; }; }; class Mosin_Nagant_Belt_Scoped_FL : Mosin_Nagant_Base { scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_belt_scoped_FL_animated"; displayName = "Mosin Nagant (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope, Ammo Belt and Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891SB_FL.paa"; dexterity = 1.6; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class ItemActions { class removeBelt { text = "Remove Belt"; script = "; ['Attachment_BELT','Mosin_Nagant_Belt_Scoped_FL','Mosin_Nagant_Scoped_FL'] spawn player_removeAttachment;"; }; class removeFL { text = "Remove FlashLight"; script = "; ['Attachment_FL','Mosin_Nagant_Belt_Scoped_FL','Mosin_Nagant_Belt_Scoped'] spawn player_removeAttachment;"; }; class removeScope { text = "Remove Scope"; script = "; ['Attachment_SCOPED','Mosin_Nagant_Belt_Scoped_FL','Mosin_Nagant_Belt_FL'] spawn player_removeAttachment;"; }; }; }; /* // -------------------------------------------- Carbin Variants ------------------------------------------------------- // class Mosin_Nagant_Carbine_broken: Rifle { handAnim[] = {"OFP2_ManSkeleton","\Ca\weapons\data\Anim\M24.rtm"}; // Hand positions type = "1"; scope = 2; model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_1891_animated"; displayName = "Mosin Carbine (BROKEN)"; descriptionShort="This weapon is broken, find a weapon repair kit to fix it<br />Attachments:<br />Ammo:"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\1891.paa"; drySound[] = {""}; class ItemActions { class CraftFixWeapon { text = "Fix Weapon"; script = "spawn player_weaponatt_fixweapon;"; woutput = "Mosin_Nagant"; input[] = {{"ItemWeaponRepairKit",1}}; ioutput[] = {}; }; }; }; class Mosin_Nagant_Carbine : Mosin_Nagant { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_animated"; magazines[] = {"Mosin_Nagant_Ammo"}; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: <br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbine.paa"; dexterity = 2; class Single: Mode_SemiAuto { sound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\Carbine.ogg,1.778279,1,1000}; recoil = "Mosin_NagantRecoil"; recoilProne = "Mosin_Nagant_CarbineRecoilProne"; dispersion = 0.0010000; reloadTime = 1.4; minRange=0.5; minRangeProbab=0.800000; midRange=100; midRangeProbab=0.60000; maxRange=200; maxRangeProbab=0.080000; }; class ItemActions { class CraftHuntingScope { text = "Add Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {{"mosin_scope_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Scoped"; ioutput[] = {}; }; class CraftAmmoBelt { text = "Add Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {{"mosin_belt_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt"; ioutput[] = {}; }; class CraftFlashlight { text = "Add Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {{"GUNFLASHLIGHT_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_FL"; ioutput[] = {}; }; class CraftMozbow { text = "Turn into Mozbow Stock"; script = "spawn player_weaponatt_mozbow;"; tool[] = {}; input[] = {}; woutput = "Crossbow_Stock"; ioutput[] = {}; }; }; }; class Mosin_Nagant_Carbine_FL : Mosin_Nagant_Carbine { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_FL_animated"; magazines[] = {"Mosin_Nagant_Ammo"}; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbine_FL.paa"; dexterity = 2; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class ItemActions { class CraftHuntingScope { text = "Add Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {{"mosin_scope_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Scoped_FL"; ioutput[] = {}; }; class CraftAmmoBelt { text = "Add Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {{"mosin_belt_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_FL"; ioutput[] = {}; }; class CraftFlashlight { text = "Remove Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine"; ioutput[] = {{"GUNFLASHLIGHT_DZAM",1}}; }; }; }; class Mosin_Nagant_Carbine_Belt : Mosin_Nagant_Carbine { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_belt_animated"; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Ammo Belt<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbineB.paa"; dexterity = 2; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class ItemActions { class CraftHuntingScope { text = "Add Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {{"mosin_scope_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_Scoped"; ioutput[] = {}; }; class CraftAmmoBelt { text = "Remove Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine"; ioutput[] = {{"mosin_belt_DZAM",1}}; }; class CraftFlashlight { text = "Add Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {{"GUNFLASHLIGHT_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_FL"; ioutput[] = {}; }; }; }; class Mosin_Nagant_Carbine_Belt_FL : Mosin_Nagant_Carbine { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_belt_FL_animated"; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Ammo Belt and Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbineB_FL.paa"; dexterity = 2; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class ItemActions { class CraftHuntingScope { text = "Add Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {{"mosin_scope_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_Scoped_FL"; ioutput[] = {}; }; class CraftAmmoBelt { text = "Remove Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_FL"; ioutput[] = {{"mosin_belt_DZAM",1}}; }; class CraftFlashlight { text = "Remove Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Belt"; ioutput[] = {{"GUNFLASHLIGHT_DZAM",1}}; }; }; }; class Mosin_Nagant_Carbine_Scoped : Mosin_Nagant_Carbine { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_scoped_animated"; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbineS.paa"; dexterity = 1.6; //modelOptics = "\ca\weapons\2Dscope_Hunter_12"; opticsPPEffects[] = {"OpticsCHAbera2","OpticsBlur2"}; opticsZoomInit = 0.083; opticsZoomMin = 0.071945; opticsZoomMax = 0.071945; distanceZoomMin = 110; distanceZoomMax = 110; //opticsZoomInit = 0.015; //opticsZoomMin = 0.015; //opticsZoomMax = 0.015; //distanceZoomMin = 300; //distanceZoomMax = 100; canLock = 0; class ItemActions { class CraftHuntingScope { text = "Remove Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine"; ioutput[] = {{"mosin_scope_DZAM",1}}; }; class CraftAmmoBelt { text = "Add Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {{"mosin_belt_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_Scoped"; ioutput[] = {}; }; class CraftFlashlight { text = "Add Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {{"GUNFLASHLIGHT_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Scoped_FL"; ioutput[] = {}; }; }; }; class Mosin_Nagant_Carbine_Scoped_FL : Mosin_Nagant_Carbine { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_scoped_FL_animated"; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope and Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbineS_FL.paa"; dexterity = 1.6; //modelOptics = "\ca\weapons\2Dscope_Hunter_12"; opticsPPEffects[] = {"OpticsCHAbera2","OpticsBlur2"}; opticsZoomInit = 0.083; opticsZoomMin = 0.071945; opticsZoomMax = 0.071945; distanceZoomMin = 110; distanceZoomMax = 110; canLock = 0; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class ItemActions { class CraftHuntingScope { text = "Remove Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_FL"; ioutput[] = {{"mosin_scope_DZAM",1}}; }; class CraftAmmoBelt { text = "Add Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {{"mosin_belt_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_Scoped_FL"; ioutput[] = {}; }; class CraftFlashlight { text = "Remove Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Scoped"; ioutput[] = {{"GUNFLASHLIGHT_DZAM",1}}; }; }; }; class Mosin_Nagant_Carbine_Belt_Scoped : Mosin_Nagant_Carbine_Scoped { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_belt_scoped_animated"; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope and Ammo Belt<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbineSB.paa"; dexterity = 2; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class ItemActions { class CraftHuntingScope { text = "Remove Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Belt"; ioutput[] = {{"mosin_scope_DZAM",1}}; }; class CraftAmmoBelt { text = "Remove Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Scoped"; ioutput[] = {{"mosin_belt_DZAM",1}}; }; class CraftFlashlight { text = "Add Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {{"GUNFLASHLIGHT_DZAM",1}}; woutput = "Mosin_Nagant_Carbine_Belt_Scoped_FL"; ioutput[] = {}; }; }; }; class Mosin_Nagant_Carbine_Belt_Scoped_FL : Mosin_Nagant_Carbine_Scoped { model = "z\addons\dayz_communityweapons\models\mosin_nagant\mosin_m44_belt_scoped_FL_animated"; displayName = "Mosin Carbine (CUSTOM)"; descriptionShort="<br />Attachments: Hunting Scope, Ammo Belt and Flashlight<br />Ammo: Mosin Nagant Ammo"; picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\carbineSB_FL.paa"; dexterity = 2; magazineReloadTime = 4.7; reloadMagazineSound[] = {z\addons\dayz_communityweapons\models\mosin_nagant\sound\reload-s.ogg, 0.010000, 1}; class FlashLight { color[] = {0.9, 0.9, 0.7, 0.9}; ambient[] = {0.1, 0.1, 0.1, 1.0}; position = "fl_start"; direction = "fl_dir"; angle = 40; scale[] = {1, 1, 0.5}; brightness = 0.1; }; class ItemActions { class CraftHuntingScope { text = "Remove Hunting Scope"; script = "spawn player_weaponatt_huntingscope;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Belt_FL"; ioutput[] = {{"mosin_scope_DZAM",1}}; }; class CraftAmmoBelt { text = "Remove Ammo Belt"; script = "spawn player_weaponatt_ammobelt;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Scoped_FL"; ioutput[] = {{"mosin_belt_DZAM",1}}; }; class CraftFlashlight { text = "Remove Flashlight"; script = "spawn player_weaponatt_flashlight;"; tool[] = {}; input[] = {}; woutput = "Mosin_Nagant_Carbine_Belt_Scoped"; ioutput[] = {{"GUNFLASHLIGHT_DZAM",1}}; }; }; }; */
[ "r4z0r49@gmail.com" ]
r4z0r49@gmail.com
5aac11759db93946b31e4872c6b2016f294015f5
68d34285e0fe03e7e16d25f0894d13c331fb2f2e
/Course1/4.cpp
133608620b82fc24b4f46c4926a523913c883f6e
[]
no_license
Awesomemix/algorithms
de5a61ad519bbe6770d4cbcf5449c7b235d4a228
7dce8b5c1b0e0d4ce8e2531e4512bf8aae1a8ac5
refs/heads/master
2022-05-07T05:47:36.023459
2022-04-01T07:00:34
2022-04-01T07:00:34
99,310,676
0
0
null
null
null
null
UTF-8
C++
false
false
2,656
cpp
//미완 #include <iostream> #include <algorithm> using namespace std; const int MAX = 21; int b[MAX][MAX]; int c,r; void color(int i, int j){ for(int k = j; k < j+4; k++){ if(b[k][i] == 0) b[k][i] = -1; } } void decolor(int i, int j){ for(int k = j; k < j+4; k++){ if(b[k][i] == -1) b[k][i] = 0; } } int count(int i, int j){ //c,r int cnt = 0; int ret = 0; for(int k = 0; k < c; k++){ for(int l = 0; l < r; l++){ if(b[k][l] == 1 || b[k][l] == -1) cnt++; } if(cnt == r) ret++; cnt = 0; } return ret; } int main(){ cin >> r >> c; // 가로 세로 for(int i = 0; i < c; i++){ //각 행 마다 for(int j = 0; j < r; j++){ // 모든 열들에 cin >> b[i][j]; } } int cnt = 0; // 0 count int temp = 0; // for answer swapping int ans = 0; // tatal column int ans_x; // hightest score X for(int i = 0; i < r; i++){ //각 열에 대해 for(int j = c-1; j >= 0; j--){ //행 하나씩 올라가면서 if(b[j][i] == 0) { cnt++; //빈칸 카운트 } if(cnt >= 4) { color(i,j); //cover temp = count(i,j); if(ans < temp){ ans = temp; ans_x = i; } decolor(i,j); //open break; } } cnt = 0; } if(ans == 0) cout << "0" << " " << "0" << endl; else cout << ans_x+1 << " " << ans << endl; system("pause"); return 0; } /************ < 날짜 > : 2018-07-19 < 주소 > : http://www.algorithmlabs.net/company/swtest/index.php/problems/128/4 ************* < 문제명 > : 테트리미노 (tetris.cpp) < 문제 > : 이때 가로가 1칸이고 세로가 4칸인 1×4 직사가형 작대기 모양의 테트리미노(테트리미노는 항상 1×4)를 왼쪽에서 5번째 칸에 둘 경우 총 세줄의 수평선을 메울 수 있다. 테트리스는 한번에 여러 수평선을 메울수록 큰 점수를 얻는 게임이므로, 위 경우에서는 이 방법이 가장 높은 점수를 얻을 수 있는 방법이다. 윤성이를 도와 작대기 모양 테트리미노를 어디에 두었을 때 가장 높은 점수를 얻을 수 있는지 알려주자. (윤성이는 작대기 모양 테트리미노가 나왔을때 게임오버를 당할지언정 가로가 더 길도록 눕혀서 두지 않는다는 나름의 테트리스 철학이 있다.) < 해결방안 > : ************* < 오답노트 > : *************/
[ "awesomemix1207@gmail.com" ]
awesomemix1207@gmail.com
e95d5024d8681bc230a17a4c0d11e93b4d84b671
a1f9a9f70eb77890b36bb694afb6b73ab36d7d02
/maxSubArray.cpp
38040af783d7d6d17fdeb77df1ad607b29171883
[]
no_license
csqiangguo/leetcode
7beaa4ed7f0c7005ecee430779da3706f1a97196
add1cdb5692b57883d991a608cefe54e6e0aff08
refs/heads/master
2021-01-17T06:27:54.172639
2014-12-15T10:09:06
2014-12-15T10:09:06
19,701,225
1
0
null
null
null
null
UTF-8
C++
false
false
653
cpp
/* Problem: Maximum Subarray Method: dynamic programming Author: 'gq' */ #include<iostream> #include<cstdlib> #include<string> #include<algorithm> using namespace std; class Solution { public: int maxSubArray(int A[], int n) { if(n<=0) return 0; int max=A[0]; int pre=A[0]; for(int i=1;i<n;i++) { if(pre+A[i]>A[i]) { pre=pre+A[i]; } else pre=A[i]; if(pre>max) max=pre; } return max; } }; int main() { int A[9]={-2,1,-3,4,-1,2,1,-5,4}; Solution s; cout<<s.maxSubArray(A,9)<<endl; cin.get(); return 0; }
[ "csqiangguo@gmail.com" ]
csqiangguo@gmail.com
8f4be80480830579d19e537d74d0d9a1473dfd47
63058e912a7249b36d87e5a639181970dcefe235
/Filelesenmitkomma/Connection.h
e8df4651f8675307e1ebc8f0302056f929778aec
[]
no_license
amendy/Filelesenmitkomma
8669679208f08d1c7ed25a80e6f1a5cfcc7bfa18
f8ff0512dc7f8c7031a1bfba3982bd10842f37d2
refs/heads/master
2020-07-30T17:08:19.261287
2019-09-23T09:01:48
2019-09-23T09:01:48
210,298,415
0
0
null
null
null
null
UTF-8
C++
false
false
518
h
#pragma once #include "Graph.h" #include "Edge.h" #include <iostream> #include <string> using namespace std; class Connection : public Edge { public: Connection( Node& rSrc, Node& rDst, double distance, string name): Edge(rSrc, rDst), m_distance(distance), m_name(name) { m_geschwindigkeit = 45; } /*virtual double getWeight() { }*/ string getname() { return m_name; } double getdistance() { return m_distance; } private: double m_distance; string m_name; double m_geschwindigkeit; };
[ "a.mendy@stud.uni-goettingen.de" ]
a.mendy@stud.uni-goettingen.de
902168261a58f63ddd07971bea4841078ef054bf
8da27fe685faed90c457afbd2435163944fdd900
/ADS-SE-2018/expression_tree/expressionConvertor.cpp
0a55c7ae69f2e53bfee55fabb7cb4657effbfa5c
[]
no_license
official-akshayjadhav/data-structures
83a92959984426f6ffe2e0b2f9bd832fc9adf08c
0eef83c178ab625e260db2b8e5543983bc38bd50
refs/heads/master
2022-02-24T19:08:17.864788
2019-09-12T13:35:34
2019-09-12T13:35:34
104,639,209
1
0
null
null
null
null
UTF-8
C++
false
false
2,119
cpp
#include<iostream> #include<vector> #include<string.h> #include"stack.h" using namespace std; //method to reverse string void reverse(string &str){ int i=0, j = str.size()-1; char ch; while(i<j){ ch = str[i]; str[i] = str[j]; str[j] = ch; if(str[i] == ')') str[i] = '('; else if(str[i] == '(') str[i] = ')'; if(str[j] == ')') str[j] = '('; else if(str[j] == '(') str[j] = ')'; i++; j--; } cout<<"rev : "<<str<<endl; } bool isOperator(char ch){ if(!(ch >= 'a' && ch <='z')) if(!(ch >= 'A' && ch <= 'Z')) if(!(ch >= '0' && ch <= '9')) return true; //if char is not operator return false; } bool isAlphaDig(char ch){ if((ch >= 'a' && ch <='z')) return true; else if((ch >= 'A' && ch <= 'Z')) return true; else if((ch >= '0' && ch <= '9')) return true; return false; } //method to return preedence int precedence(char ch){ switch(ch){ case '+': case '-': return 1; case '*': case '/': case '%': return 2; case '^': return 3; case '(': return 4; } return -1; //invalid operator } static string makePrefix(string str){ char token; int i = 0; string postStr = ""; stack <char> stk; reverse(str); while(str[i] != '\0'){ token = str[i]; if(isAlphaDig(token)){ postStr = postStr + token ; } else if(isOperator(token)){ if(token == ')'){ while(stk.top() != '('){ postStr = postStr + stk.top(); stk.pop(); } stk.pop(); } else if((!stk.isEmpty() && stk.top()!= '(') && precedence(stk.top()) >= precedence(token)){ while(!stk.isEmpty() && (stk.top()!= '(') && precedence(stk.top()) >= precedence(token)){ postStr = postStr + stk.top(); stk.pop(); } stk.push(token); } else{ stk.push(token); } } else{ cout<<"\nerror : expression mismatch !"; } i++; } while(!stk.isEmpty()){ postStr = postStr + stk.top(); stk.pop(); } reverse(postStr); return postStr; } //for checkin purpose int main(){ string str = "(a*b)+c/d-(e*f)"; str = expressionConvertor.makePrefix(str); cout<<"\npre : "<<str<<endl; return 0; }
[ "official.akshayjadhav@gmail.com" ]
official.akshayjadhav@gmail.com
9ab1bee299acd7711bb0a1e49c16e9d6acb481ea
0a74826b78e09fd6874c70667e20639912b53fda
/lightmeter.ino
c2324feee506f3bc6c54eb4a7b167809c164a145
[]
no_license
smdll/lightmeter
31b7e508044a339bdd2430a367b5c4819958454f
348e836a47a618fcee0f9e9cbac82e7f727320ee
refs/heads/master
2021-07-04T08:16:53.629062
2017-09-21T17:11:34
2017-09-21T17:11:34
104,964,970
0
0
null
null
null
null
UTF-8
C++
false
false
2,185
ino
#include <Wire.h> #include <Adafruit_ssd1306syp.h> #include<math.h> #define ADDRESS 0x23 #define SDA_PIN 8 #define SCL_PIN 7 Adafruit_ssd1306syp display(SDA_PIN, SCL_PIN); byte index[2] = {2, 4}; double shut; float tab[2][9] = { {25, 50, 100, 200, 400, 800, 1600, 3200, 6400},//ISO {1.4, 2.0, 2.8, 5.6, 8.0, 11, 16, 22, 32},//Aperture }; int UV_Read() { return analogRead(A0); } unsigned int Lx_Read() // { int i = 0; unsigned int val = 0; byte buff[2]; Wire.beginTransmission(ADDRESS); Wire.write(0x10);//1lx reolution 120ms Wire.endTransmission(); delay(200); Wire.beginTransmission(ADDRESS); Wire.requestFrom(ADDRESS, 2); while (Wire.available()) // { buff[i] = Wire.read(); // receive one byte i++; } Wire.endTransmission(); if (i == 2) val = ((buff[0] << 8) | buff[1]) / 1.2; return val; } void Display(unsigned int lx, double ev, int uv) { display.clear(); display.setCursor(0, 0); display.print("ISO:"); display.println(tab[0][index[0]]); display.setCursor(0, 10); display.print("Aperture:f"); display.println(tab[1][index[1]]); display.setCursor(0, 20); if(shut > 1) { display.print("Shutter:1/"); display.println(shut); } else { display.print("Shutter:"); display.println(1/shut); } display.setCursor(0, 30); display.print("EV:"); display.println(ev); display.setCursor(0, 40); display.print("UV:"); display.println(uv); display.setCursor(0, 50); display.print("lx:"); display.println(lx); display.update(); } void IncISO() { index[0]++; if(index[0] >= 9) index[0] = 0; } void IncAper() { index[1]++; if(index[1] >= 9) index[1] = 0; } double Lx2ev(unsigned int lx) { if(lx == 0) return 0; double ev = log(lx) / log(2) - 1.3; return ev; } void cal(double ev) { double currEv = pow(2, ev + index[0] - 3); double fv = pow(tab[1][index[1]], 2); shut = currEv / fv; } void setup() { Wire.begin(); display.initialize(); attachInterrupt(0, IncISO, RISING); attachInterrupt(1, IncAper, RISING); } void loop() { unsigned lx = Lx_Read(); double ev = Lx2ev(lx); cal(ev); int uv = UV_Read(); Display(lx, ev, uv); }
[ "songmingda1234@hotmail.com" ]
songmingda1234@hotmail.com
8dfb6bd06252ab1f7cb8960451c6757c9a8f80b8
86c11a70213da6fbac05cc09bfcd032c488d4584
/ecna19F.cpp
d5d5bc53d03ae13ae4ef7a025c8633ddd663e356
[]
no_license
R-penguins/Kattis-Solutions
3803449c665ca89585c8827e8564b0f4ab7d00ea
ca16ac19d3f0f4d8706b4c90268d6340fdeb7dd7
refs/heads/master
2023-04-10T09:56:49.273281
2021-04-22T13:45:50
2021-04-22T13:45:50
336,283,787
0
0
null
null
null
null
UTF-8
C++
false
false
639
cpp
#include <bits/stdc++.h> using namespace std; int main(int argc, char const *argv[]) { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; list<pair<int, int>> k; for (int i = 0; i < n; ++i) { int x; cin >> x; k.push_back({i, x}); } int prev = 0; for (int i = 0; i < n - 1; ++i) { auto iter = k.begin(); advance(iter, prev % k.size()); int step = ((iter->second + prev) % k.size() + k.size() - 1) % k.size(); auto iter2 = k.begin(); advance(iter2, step); prev = distance(k.begin(), iter2); k.erase(iter2); } cout << k.front().first + 1 << "\n"; return 0; }
[ "harryhourui@outlook.com" ]
harryhourui@outlook.com