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
576d852439d858473fa6ac14d02d4fe1c2e85add
dd5081784f0cd4280e9e0ad1a16334944c58cea6
/src/Support_functions.ino
770edab4ebc17cff7f3055e41f7e396f99e84bb1
[ "MIT" ]
permissive
ffcadenas/freeds
ec587b7ac426b715027efc14beebbc66c1320190
13bcec2f0540944d9b80a4fec2c7ea04c55c33c4
refs/heads/master
2021-03-02T15:38:13.805831
2020-03-01T16:44:05
2020-03-01T16:44:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,706
ino
char *dtostrfd(double number, unsigned char prec, char *s) { if ((isnan(number)) || (isinf(number))) { // Fix for JSON output (https://stackoverflow.com/questions/1423081/json-left-out-infinity-and-nan-json-status-in-ecmascript) strcpy(s, "null"); return s; } else { return dtostrf(number, 1, prec, s); } } void changeScreen(void) { if (digitalRead(0) == LOW) { if (ButtonState == false && (millis() - lastDebounceTime) > debounceDelay) { ButtonState = true; lastDebounceTime = millis(); } if (((millis() - lastDebounceTime) > 2000) && ButtonLongPress == false) { ButtonLongPress = true; workingMode++; if (workingMode > 2) { workingMode = 0; } switch (workingMode) { case 0: // AUTO config.P01_on = true; config.pwm_man = false; break; case 1: // MANUAL config.P01_on = true; config.pwm_man = true; break; case 2: // OFF config.P01_on = false; config.pwm_man = false; break; } saveEEPROM(); } if ((millis() - lastDebounceTime) > 10000) { defaultValues(); restartFunction(); } } else { if (ButtonState == true) { if (ButtonLongPress == true) { ButtonLongPress = false; ButtonState = false; } else { ButtonState = false; temporizadorOledAutoOff = millis(); if (config.oledAutoOff && !config.oledPower) { config.oledPower = true; turnOffOled(); } else { screen++; if (screen > MAX_SCREENS) { screen = 0; } } } } } } void turnOffOled(void) { display.clear(); config.oledPower ? display.displayOn() : display.displayOff(); } void restartFunction(void) { saveEEPROM(); if (!firstInit) { down_pwm(false); } INFOLN("RESTARTING IN 3 SEC !!!!"); uint8_t tcont = 4; while (tcont-- > 0) { INFO(".." + (String)tcont); delay(1000); } ESP.restart(); } void saveEEPROM(void) { EEPROM.put(0, config); EEPROM.commit(); INFOLN("DATA SAVED!!!!"); } void remote_api() { DEBUGLN("\r\nremote_api()"); if ((String)config.remote_api != "" && config.wifi) { String buf = "http://" + (String)config.remote_api; buf.replace("%pv1c%", String(inverter.pv1c)); buf.replace("%pv2c%", String(inverter.pv2c)); buf.replace("%pv1v%", String(inverter.pv1v)); buf.replace("%pv2v%", String(inverter.pv2v)); buf.replace("%gridv%", String(inverter.gridv)); buf.replace("%wsolar%", String(inverter.wsolar)); buf.replace("%wtoday%", String(inverter.wtoday)); buf.replace("%wgrid%", String(inverter.wgrid)); buf.replace("%pw1%", String(inverter.pw1)); buf.replace("%pw2%", String(inverter.pw2)); buf.replace("%wtogrid%", String(inverter.wtogrid)); DEBUGLN("REMOTE API REQUEST: " + buf); char bufferdata[buf.length() + 1]; buf.toCharArray(bufferdata, (buf.length() + 1)); http.begin(bufferdata); httpcode = http.GET(); DEBUGLN("HTTPCODE ERROR: " + (String)httpcode); if (httpcode < 0 || httpcode == 404) numeroErrorConexionRemoteApi++; if (httpcode == HTTP_CODE_OK) { numeroErrorConexionRemoteApi = 0; errorRemoteApi = false; } http.end(); } } ///////////////////////// TIME FUNCTIONS from https://hackaday.io/project/7008-fly-wars-a-hackers-solution-to-world-hunger/log/25043-updated-uptime-counter ///////////////// //************************ Uptime Code - Makes a count of the total up time since last start ****************// void calc_uptime() { //** Making Note of an expected rollover *****// if (millis() >= 3000000000) { uptime.HighMillis = 1; } //** Making note of actual rollover **// if (millis() <= 100000 && uptime.HighMillis == 1) { uptime.Rollover++; uptime.HighMillis = 0; } long secsUp = millis() / 1000; uptime.Second = secsUp % 60; uptime.Minute = (secsUp / 60) % 60; uptime.Hour = (secsUp / (60 * 60)) % 24; uptime.Day = (uptime.Rollover * 50) + (secsUp / (60 * 60 * 24)); //First portion takes care of a rollover [around 50 days] }; //******************* Prints the uptime to serial window **********************// String print_Uptime() { return "Uptime: " + String(uptime.Day) + " Días " + String(uptime.Hour) + " Horas " + String(uptime.Minute) + " Minutos " + String(uptime.Second) + " Segundos"; }; String print_Uptime_Oled() { char tmp[33]; sprintf(tmp, "UPTIME: %li días %02d:%02d:%02d", uptime.Day, uptime.Hour, uptime.Minute, uptime.Second); return tmp; };
[ "pablozg@gmail.com" ]
pablozg@gmail.com
12f68af6802a43a6e6c6e8b6c956c01ed9116fbb
61a62af6e831f3003892abf4f73bb1aa4d74d1c7
/15-295/S22/Contest 03/D.cpp
5e43ff8de5ca392ad1b51beedf2d3473f74c78f9
[]
no_license
amsraman/Competitive_Programming
7e420e5d029e8adfbe7edf845db77f96bd1ae80d
6f869a1e1716f56b081769d7f36ffa23ae82e356
refs/heads/master
2023-03-17T00:20:19.866063
2023-03-11T00:24:29
2023-03-11T00:24:29
173,763,104
16
2
null
null
null
null
UTF-8
C++
false
false
1,693
cpp
#include <bits/stdc++.h> #define f first #define s second using namespace std; int n, a[100000], pre[100001][2]; vector<pair<int, int>> ans; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cin >> n; for(int i = 0; i < n; i++) { cin >> a[i]; pre[i + 1][a[i] - 1] = 1; } for(int i = 0; i < n; i++) { pre[i + 1][0] += pre[i][0]; pre[i + 1][1] += pre[i][1]; } for(int i = 1; i <= n; i++) { int wins[2] = {0, 0}, cur = 0; while(cur < n) { if(pre[n][0] < pre[cur][0] + i && pre[n][1] < pre[cur][1] + i) { break; } int lb1 = cur + 1, ub1 = n, lb2 = cur + 1, ub2 = n; while(lb1 < ub1) { int mid = (lb1 + ub1) / 2; if(pre[mid][0] >= pre[cur][0] + i) { ub1 = mid; } else { lb1 = mid + 1; } } while(lb2 < ub2) { int mid = (lb2 + ub2) / 2; if(pre[mid][1] >= pre[cur][1] + i) { ub2 = mid; } else { lb2 = mid + 1; } } if(ub1 <= ub2 && pre[ub1][0] == pre[cur][0] + i) { ++wins[0]; } else { ++wins[1]; } cur = min(ub1, ub2); } int lst = a[n - 1] - 1; if(cur == n && wins[lst] > wins[lst ^ 1]) { ans.push_back({wins[lst], i}); } } sort(ans.begin(), ans.end()); cout << ans.size() << '\n'; for(pair<int, int> a: ans) { cout << a.f << " " << a.s << '\n'; } }
[ "adisundar02@gmail.com" ]
adisundar02@gmail.com
5bb8489528c1f23cfcd3271705ca5da5f3b483ff
71cd34c2c7664ecfca3676346cae0441e5291a1c
/RT/RT/Headers/SmartPtrs.h
fcc2ec9899602f917a4bbedf4b94a917120e45bd
[ "MIT" ]
permissive
heyx3/heyx3RT
3c5cd8f01853367fb23c178ab84171c599330f9e
4dd476a33e658bc19fde239f2c6e22bdcd598e27
refs/heads/master
2020-05-21T23:55:15.785369
2018-01-20T00:18:22
2018-01-20T00:18:22
57,820,694
0
0
null
null
null
null
UTF-8
C++
false
false
1,876
h
#pragma once #include "Main.hpp" #include <utility> #include <memory> #pragma warning(disable: 4251) namespace RT { template<typename T> class RT_API UniquePtr { public: UniquePtr(T* _ptr = nullptr) { ptr.reset(_ptr); } UniquePtr(UniquePtr<T>&& moveFrom) { *this = std::move(moveFrom); } UniquePtr& operator=(UniquePtr&& moveFrom) { ptr.reset(moveFrom.Release()); return *this; } UniquePtr(const UniquePtr<T>& cpy) = delete; UniquePtr<T>& operator=(const UniquePtr<T>& cpy) = delete; T& operator*() { return *ptr; } T* operator->() { return ptr.get(); } const T& operator*() const { return *ptr; } const T* operator->() const { return ptr.get(); } T* Get() { return ptr.get(); } const T* Get() const { return ptr.get(); } T* Release() { return ptr.release(); } void Reset(T* newPtr = nullptr) { ptr.reset(newPtr); } private: std::unique_ptr<T> ptr; }; template<typename T> class RT_API SharedPtr { public: SharedPtr(T* _ptr = nullptr) { ptr.reset(_ptr); } T& operator*() { return *ptr; } T* operator->() { return ptr.get(); } const T& operator*() const { return *ptr; } const T* operator->() const { return ptr.get(); } T* Get() { return ptr.get(); } const T* Get() const { return ptr.get(); } void Reset(T* newPtr = nullptr) { ptr.reset(newPtr); } bool operator==(const SharedPtr<T>& other) const { return ptr.get() == other.ptr.get(); } private: std::shared_ptr<T> ptr; }; #define EXPORT_UNIQUEPTR(ptrType) template class RT_API UniquePtr<ptrType>; #define EXPORT_SHAREDPTR(ptrType) template class RT_API SharedPtr<ptrType>; } #pragma warning(default: 4251)
[ "manning.w@husky.neu.edu" ]
manning.w@husky.neu.edu
df6a849d52a5aa3f9037f9eb937a2397f642c213
eeab0e407e3e015b51fd874991e47adba6564898
/test/fp_util_test.cpp
3e77b3b0527e9b2f299d168dd192d0ca1986ae43
[ "BSD-3-Clause" ]
permissive
SatoshiRobatoFujimoto/mcl
be4d193d56cecca429a8e3d00b1bf3973da04254
6b29693b6423791fb1590c2b7e8f307bcb5de09d
refs/heads/master
2020-03-18T10:55:50.693376
2018-05-23T07:18:49
2018-05-23T07:18:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,850
cpp
#define PUT(x) std::cout << #x "=" << (x) << std::endl #include <cybozu/test.hpp> #include <mcl/conversion.hpp> #include <mcl/gmp_util.hpp> #include <mcl/fp.hpp> CYBOZU_TEST_AUTO(arrayToHex) { const struct { uint32_t x[4]; size_t n; const char *str; } tbl[] = { { { 0, 0, 0, 0 }, 0, "0" }, { { 0x123, 0, 0, 0 }, 1, "123" }, { { 0x12345678, 0xaabbcc, 0, 0 }, 2, "aabbcc12345678" }, { { 0, 0x12, 0x234a, 0 }, 3, "234a0000001200000000" }, { { 1, 2, 0xffffffff, 0x123abc }, 4, "123abcffffffff0000000200000001" }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { char buf[64]; size_t n = mcl::fp::arrayToHex(buf, sizeof(buf), tbl[i].x, tbl[i].n, false); CYBOZU_TEST_ASSERT(n > 0); CYBOZU_TEST_EQUAL_ARRAY(buf + sizeof(buf) - n, tbl[i].str, n); n = mcl::fp::arrayToHex(buf, sizeof(buf), tbl[i].x, tbl[i].n, true); CYBOZU_TEST_ASSERT(n > 0); CYBOZU_TEST_EQUAL_ARRAY(buf + sizeof(buf) - n, (std::string("0x") + tbl[i].str).c_str(), n); } } CYBOZU_TEST_AUTO(arrayToBin) { const struct { uint32_t x[4]; size_t n; const char *str; } tbl[] = { { { 0, 0, 0, 0 }, 0, "0" }, { { 0x123, 0, 0, 0 }, 1, "100100011" }, { { 0x12345678, 0xaabbcc, 0, 0 }, 2, "10101010101110111100110000010010001101000101011001111000" }, { { 0, 0x12, 0x234a, 0 }, 3, "100011010010100000000000000000000000000001001000000000000000000000000000000000" }, { { 1, 2, 0xffffffff, 0x123abc }, 4, "100100011101010111100111111111111111111111111111111110000000000000000000000000000001000000000000000000000000000000001" }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { char buf[512]; size_t n = mcl::fp::arrayToBin(buf, sizeof(buf), tbl[i].x, tbl[i].n, false); CYBOZU_TEST_ASSERT(n > 0); CYBOZU_TEST_EQUAL_ARRAY(buf + sizeof(buf) - n, tbl[i].str, n); n = mcl::fp::arrayToBin(buf, sizeof(buf), tbl[i].x, tbl[i].n, true); CYBOZU_TEST_ASSERT(n > 0); CYBOZU_TEST_EQUAL_ARRAY(buf + sizeof(buf) - n, (std::string("0b") + tbl[i].str).c_str(), n); } } // CYBOZU_TEST_AUTO(verifyStr) // QQQ CYBOZU_TEST_AUTO(hexToArray) { const struct { const char *str; uint64_t x[4]; } tbl[] = { { "0", { 0, 0, 0, 0 } }, { "5", { 5, 0, 0, 0 } }, { "123", { 0x123, 0, 0, 0 } }, { "123456789012345679adbc", { uint64_t(0x789012345679adbcull), 0x123456, 0, 0 } }, { "ffffffff26f2fc170f69466a74defd8d", { uint64_t(0x0f69466a74defd8dull), uint64_t(0xffffffff26f2fc17ull), 0, 0 } }, { "100000000000000000000000000000033", { uint64_t(0x0000000000000033ull), 0, 1, 0 } }, { "11ee12312312940000000000000000000000000002342343", { uint64_t(0x0000000002342343ull), uint64_t(0x0000000000000000ull), uint64_t(0x11ee123123129400ull), 0 } }, { "1234567890abcdefABCDEF123456789aba32134723424242424", { uint64_t(0x2134723424242424ull), uint64_t(0xDEF123456789aba3ull), uint64_t(0x4567890abcdefABCull), 0x123 } }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { const size_t xN = 4; uint64_t x[xN]; size_t n = mcl::fp::hexToArray(x, xN, tbl[i].str, strlen(tbl[i].str)); CYBOZU_TEST_ASSERT(n > 0); CYBOZU_TEST_EQUAL_ARRAY(x, tbl[i].x, n); } } CYBOZU_TEST_AUTO(compareArray) { const struct { uint32_t a[4]; uint32_t b[4]; size_t n; int expect; } tbl[] = { { { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, 0, 0 }, { { 1, 0, 0, 0 }, { 0, 0, 0, 0 }, 1, 1 }, { { 0, 0, 0, 0 }, { 1, 0, 0, 0 }, 1, -1 }, { { 1, 0, 0, 0 }, { 1, 0, 0, 0 }, 1, 0 }, { { 3, 1, 1, 0 }, { 2, 1, 1, 0 }, 4, 1 }, { { 9, 2, 1, 1 }, { 1, 3, 1, 1 }, 4, -1 }, { { 1, 7, 8, 4 }, { 1, 7, 8, 9 }, 3, 0 }, { { 1, 7, 8, 4 }, { 1, 7, 8, 9 }, 4, -1 }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { int e = mcl::fp::compareArray(tbl[i].a, tbl[i].b, tbl[i].n); CYBOZU_TEST_EQUAL(e, tbl[i].expect); } } CYBOZU_TEST_AUTO(isLessArray) { const struct { uint32_t a[4]; uint32_t b[4]; size_t n; bool expect; } tbl[] = { { { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, 0, false }, { { 1, 0, 0, 0 }, { 0, 0, 0, 0 }, 1, false }, { { 0, 0, 0, 0 }, { 1, 0, 0, 0 }, 1, true }, { { 1, 0, 0, 0 }, { 1, 0, 0, 0 }, 1, false }, { { 3, 1, 1, 0 }, { 2, 1, 1, 0 }, 4, false }, { { 3, 1, 2, 0 }, { 2, 2, 2, 0 }, 4, true }, { { 9, 2, 1, 1 }, { 1, 3, 1, 1 }, 4, true }, { { 1, 7, 8, 4 }, { 1, 7, 8, 9 }, 3, false }, { { 1, 7, 8, 4 }, { 1, 7, 8, 9 }, 4, true }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { bool e = mcl::fp::isLessArray(tbl[i].a, tbl[i].b, tbl[i].n); CYBOZU_TEST_EQUAL(e, tbl[i].expect); e = mcl::fp::isGreaterArray(tbl[i].b, tbl[i].a, tbl[i].n); CYBOZU_TEST_EQUAL(e, tbl[i].expect); } } CYBOZU_TEST_AUTO(isLessOrEqualArray) { const struct { uint32_t a[4]; uint32_t b[4]; size_t n; bool expect; } tbl[] = { { { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, 0, true }, { { 1, 0, 0, 0 }, { 0, 0, 0, 0 }, 1, false }, { { 0, 0, 0, 0 }, { 1, 0, 0, 0 }, 1, true }, { { 1, 0, 0, 0 }, { 1, 0, 0, 0 }, 1, true }, { { 3, 1, 1, 0 }, { 2, 1, 1, 0 }, 4, false }, { { 3, 1, 2, 0 }, { 2, 2, 2, 0 }, 4, true }, { { 9, 2, 1, 1 }, { 1, 3, 1, 1 }, 4, true }, { { 1, 7, 8, 4 }, { 1, 7, 8, 9 }, 3, true }, { { 1, 7, 8, 4 }, { 1, 7, 8, 9 }, 4, true }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { bool e = mcl::fp::isLessOrEqualArray(tbl[i].a, tbl[i].b, tbl[i].n); CYBOZU_TEST_EQUAL(e, tbl[i].expect); e = mcl::fp::isGreaterOrEqualArray(tbl[i].b, tbl[i].a, tbl[i].n); CYBOZU_TEST_EQUAL(e, tbl[i].expect); } } struct Rand { std::vector<uint32_t> v; const uint8_t *p; size_t pos; size_t endPos; void read(void *x, size_t n) { if (pos + n > endPos) throw cybozu::Exception("Rand:get:bad n") << pos << n << endPos; uint8_t *dst = (uint8_t*)x; memcpy(dst, p + pos, n); pos += n; } uint32_t operator()() { char buf[4]; read(buf, 4); uint32_t v; memcpy(&v, buf, 4); return v; } Rand(const uint32_t *x, size_t n) : p(0) , pos(0) { for (size_t i = 0; i < n; i++) { v.push_back(x[i]); } p = (uint8_t*)&v[0]; endPos = v.size() * 4; } }; CYBOZU_TEST_AUTO(getRandVal) { const size_t rn = 8; const struct { uint32_t r[rn]; uint32_t mod[2]; size_t bitSize; uint32_t expect[2]; } tbl[] = { { { 1, 2, 3, 4, 5, 6, 7, 8 }, { 5, 6 }, 64, { 1, 2 } }, { { 0xfffffffc, 0x7, 3, 4, 5, 6, 7, 8 }, { 0xfffffffe, 0x3 }, 34, { 0xfffffffc, 0x3 } }, { { 0xfffffffc, 0x7, 3, 4, 5, 6, 7, 8 }, { 0xfffffffb, 0x3 }, 34, { 3, 0 } }, { { 2, 3, 5, 7, 4, 3, 0, 3 }, { 1, 0x3 }, 34, { 0, 3 } }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { Rand rg(tbl[i].r, rn); #if CYBOZU_OS_BIT == 64 uint64_t out[1]; #else uint32_t out[2]; #endif mcl::fp::RandGen wrg(rg); #if CYBOZU_OS_BIT == 64 uint64_t mod = tbl[i].mod[0] | (uint64_t(tbl[i].mod[1]) << 32); mcl::fp::getRandVal(out, wrg, &mod, tbl[i].bitSize); uint64_t expect = tbl[i].expect[0] | (uint64_t(tbl[i].expect[1]) << 32); CYBOZU_TEST_EQUAL(out[0], expect); #else mcl::fp::getRandVal(out, wrg, tbl[i].mod, tbl[i].bitSize); CYBOZU_TEST_EQUAL(out[0], tbl[i].expect[0]); CYBOZU_TEST_EQUAL(out[1], tbl[i].expect[1]); #endif } } CYBOZU_TEST_AUTO(maskArray) { #if 1 const size_t n = 2; uint32_t org[n] = { 0xabce1234, 0xffffef32 }; for (size_t i = 0; i <= sizeof(org) * 8; i++) { uint32_t x[n]; memcpy(x, org, sizeof(org)); mcl::fp::maskArray(x, n, i); mpz_class t; mcl::gmp::setArray(t, org, n); t &= (mpz_class(1) << i) - 1; uint32_t y[n]; mcl::gmp::getArray(y, n, t); CYBOZU_TEST_EQUAL_ARRAY(x, y, n); } #else const size_t n = 4; uint16_t org[n] = { 0x1234, 0xabce, 0xef32, 0xffff }; for (size_t i = 0; i <= sizeof(org) * 8; i++) { uint16_t x[n]; memcpy(x, org, sizeof(org)); mcl::fp::maskArray(x, n, i); mpz_class t; mcl::gmp::setArray(t, org, n); t &= (mpz_class(1) << i) - 1; uint16_t y[n]; mcl::gmp::getArray(y, n, t); CYBOZU_TEST_EQUAL_ARRAY(x, y, n); } #endif } CYBOZU_TEST_AUTO(stream) { const char *nulTbl[] = { "", " ", " \t\t\n\n " }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(nulTbl); i++) { const char *p = nulTbl[i]; cybozu::MemoryInputStream is(p, strlen(p)); std::string w = "abc"; mcl::fp::local::loadWord(w, is); CYBOZU_TEST_ASSERT(w.empty()); } const struct { const char *buf; const char *expect[2]; size_t n; } tbl[] = { { "\t\t \n\rabc\r\r\n def", { "abc", "def" }, 2 }, { "123", { "123" }, 1 }, { "123\n", { "123" }, 1 }, { "123 456", { "123", "456" }, 2 }, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { const char *buf = tbl[i].buf; { cybozu::MemoryInputStream is(buf, strlen(buf)); for (size_t j = 0; j < tbl[i].n; j++) { std::string w; mcl::fp::local::loadWord(w, is); CYBOZU_TEST_EQUAL(w, tbl[i].expect[j]); } } { std::istringstream is(buf); for (size_t j = 0; j < tbl[i].n; j++) { std::string w; mcl::fp::local::loadWord(w, is); CYBOZU_TEST_EQUAL(w, tbl[i].expect[j]); } } } }
[ "herumi@nifty.com" ]
herumi@nifty.com
7b68055d17e01717aff25529cc09470501f6e7b9
114669ad7490bb15dc7a0299a14e526bb28b8c1d
/Maths_Operations_Source_Files/math_utilities.cpp
e0265950f55010be39884f429378efc6665ba9ad
[]
no_license
KennyMacheka/MENG
07705dae11fa97b7dfcbcf69e9d20a4e8c7255e2
9e5ea03f7b65786c105fb92561b059755d9e3e13
refs/heads/master
2020-04-03T17:00:44.229766
2018-10-30T18:03:16
2018-10-30T18:03:16
155,428,105
0
0
null
null
null
null
UTF-8
C++
false
false
2,079
cpp
#include "math_utilities.h" #include <cmath> #include <stdio.h> //Function checks if number is technically an integer bool isInteger (double n){ double roundingError = 0.00001; /**If n is an integer, it will have no fractional part, so floor(n) will be equal to n However, it's generally not a good idea to directly compare doubles,as there may be a rounding error so they are not precisely the same at the machine level. So I subtract the two and see if they are less than the rounding error, which I set as 0.00001. **/ if (std::abs(n - floor(n+0.5)) < roundingError) return true; return false; } //Function computes the highest common factor of two numbers using Euclid's algorithm long long int gcd (long long int m, long long int n){ if (m < 0) m *= -1; if (n < 0) n *= -1; if (m<n){ int temp = n; n = m; m = temp; } if (n == 0) return m; //Recursive return gcd (n, m%n); } double roundNumber (double number, int decimalPlaces){ /** Work out decimal places of the number by increasingly multiplying by 10 Once we have an integer, that's the decimal places If decimal places is less than target decimal place, return that number **/ int i; int decimalPlacesOfNumber = 0; double temp = number; double base = 1.0; long long int rounder; //Keep multiplying the decimal by 10 so the last unit digits becomes the number we check if it should be rounded for (i = 0; i < decimalPlaces+1;i++){ temp *= 10; if (isInteger(temp) && i < decimalPlaces) return number; } rounder = (long long int) (temp) %10; temp = floor( (temp/10.0) ); double divider = 1; for (i = 0; i<decimalPlaces;i++){ divider /= 10; temp /= 10; } if (rounder >= 5) return temp + divider; else return temp; }
[ "knm512@yahoo.co.uk" ]
knm512@yahoo.co.uk
8d824006868b42a472d5d99e81632f2c1ac1b98d
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/inetcore/outlookexpress/inetcomm/mimeole/bytebuff.cpp
a070e26c2cd1057a8d1ac60026fe70594e85e2b3
[]
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
4,196
cpp
// -------------------------------------------------------------------------------- // ByteBuff.cpp // Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved // Steven J. Bailey // -------------------------------------------------------------------------------- #include "pch.hxx" #include "bytebuff.h" // -------------------------------------------------------------------------------- // CByteBuffer::CByteBuffer // -------------------------------------------------------------------------------- CByteBuffer::CByteBuffer(LPBYTE pb /* =NULL */, ULONG cbAlloc /* =0 */, ULONG cb /* =0 */, ULONG i /* =0 */) { m_cRef = 1; m_dwState = 0; m_cbGrow = BYTEBUFF_GROW; m_buffer.pb = pb; m_buffer.pbStatic = pb; m_buffer.cbAlloc = cbAlloc; m_buffer.cb = cb; m_buffer.i = i; } // -------------------------------------------------------------------------------- // CByteBuffer::CByteBuffer // -------------------------------------------------------------------------------- void CByteBuffer::Init(LPBYTE pb, ULONG cbAlloc, ULONG cb, ULONG i) { m_buffer.pb = pb; m_buffer.cb = cb; m_buffer.i = i; m_buffer.cbAlloc = cbAlloc; m_buffer.pbStatic = pb; } // -------------------------------------------------------------------------------- // CByteBuffer::CByteBuffer // -------------------------------------------------------------------------------- CByteBuffer::~CByteBuffer(void) { // Free memory if not equal to static if (m_buffer.pb != m_buffer.pbStatic) g_pMalloc->Free(m_buffer.pb); } // -------------------------------------------------------------------------------- // CByteBuffer::Release // -------------------------------------------------------------------------------- STDMETHODIMP_(ULONG) CByteBuffer::Release(void) { if (0 != --m_cRef) return m_cRef; delete this; return 0; } // -------------------------------------------------------------------------------- // CByteBuffer::_HrRealloc // -------------------------------------------------------------------------------- HRESULT CByteBuffer::_HrRealloc(DWORD cbAlloc) { // Locals HRESULT hr=S_OK; LPBYTE pbAlloc=NULL; // This should have been checked Assert(cbAlloc > m_buffer.cbAlloc); // Currently using static ? if (m_buffer.pb == m_buffer.pbStatic) { // Allocate CHECKALLOC(pbAlloc = (LPBYTE)g_pMalloc->Alloc(cbAlloc)); // Copy Data into pbAlloc CopyMemory(pbAlloc, m_buffer.pb, m_buffer.cb); } // Otherwise, realloc else { // Reallocate CHECKALLOC(pbAlloc = (LPBYTE)g_pMalloc->Realloc(m_buffer.pb, cbAlloc)); } // Save pbAlloc m_buffer.pb = pbAlloc; // Save cbAlloc m_buffer.cbAlloc = cbAlloc; exit: // Done return hr; } // -------------------------------------------------------------------------------- // CByteBuffer::Append // -------------------------------------------------------------------------------- HRESULT CByteBuffer::Append(LPBYTE pbData, ULONG cbData) { // Locals HRESULT hr=S_OK; // Get Bigger and need to allocate if (m_buffer.cb + cbData > m_buffer.cbAlloc) { // Realloc CHECKHR(hr = _HrRealloc(m_buffer.cb + cbData + m_cbGrow)); } // Append the data CopyMemory(m_buffer.pb + m_buffer.cb, pbData, cbData); // Save Size m_buffer.cb += cbData; exit: // Done return hr; } // -------------------------------------------------------------------------------- // CByteBuffer::SetSize // -------------------------------------------------------------------------------- HRESULT CByteBuffer::SetSize(DWORD cb) { // Locals HRESULT hr=S_OK; // Get Bigger and need to allocate if (cb > m_buffer.cb && cb > m_buffer.cbAlloc) { // Realloc CHECKHR(hr = _HrRealloc(cb + m_cbGrow)); } // Save Size m_buffer.cb = cb; // Adjust Index if (m_buffer.i > cb) m_buffer.i = cb; exit: // Done return hr; }
[ "112426112@qq.com" ]
112426112@qq.com
86cef78de3705361ea745c1b70222c421854f53b
beec3a87e80ef1e8e9c3f792f542327456d92781
/13-07-2013/problemC/10511.cpp
f33e233e687276156511c7402178ce371122bfff
[ "MIT" ]
permissive
rprata/alphabet-soup
dd5c6b195b28d75fec3ec813e5eb422b3a0f00a5
e927b6acd076d184db47f1b0709cf13f864554ef
refs/heads/master
2020-05-04T14:20:07.849513
2020-04-21T16:32:45
2020-04-21T16:32:45
6,921,796
2
1
null
2020-04-21T16:32:48
2012-11-29T13:39:54
C++
UTF-8
C++
false
false
444
cpp
#include <cstdlib> #include <cstring> #include <iostream> #include <sstream> #include <string> using namespace std; int T; string s, aux; stringstream ss; int main (void) { cin >> T; for (int i = 0; i < T; i++) { getline(cin, s); //limpa o caracter enter while (getline(cin, s)) { //generate MA if (s.empty()) break; ss.clear(); ss.str(s); while (ss >> aux) { } cout << endl; } } return 0; }
[ "renancprata@gmail.com" ]
renancprata@gmail.com
8e27e5f74e16bc14ae5f98f7c359baa9cdcc90c3
419df7453270e916dcc82b32243f65466d6d77cb
/ex1/code/buildings.cpp
1fedb695b7bd9da5f2ab82b952c7c5f7b09845af
[ "MIT", "CC-BY-3.0" ]
permissive
dionyziz/ntua-algo
bf7214c2b25a6545d340c31d430dfd78f4638e9d
ed42637aef153f75a7d080170ff98369be90a5b3
refs/heads/master
2016-09-06T18:37:30.585514
2012-02-27T12:27:10
2012-02-27T12:27:10
2,938,529
1
2
null
null
null
null
UTF-8
C++
false
false
739
cpp
#include<cstdio> #include<stack> const int N = 8; using namespace std; int main() { int A[ N + 1 ] = { 10000, 8, 13, 10, 6, 3, 5, 8, 2 }; int B[ N + 1 ]; stack< int > bullets; int bullet; for ( int i = N; i >= 1; --i ) { B[ i ] = 0; } for ( int i = N; i >= 1; --i ) { while ( !bullets.empty() ) { bullet = bullets.top(); if ( A[ bullet ] < A[ i ] ) { B[ bullet ] = i; bullets.pop(); } else { break; } } bullets.push( i ); } printf( "Array B: " ); for ( int i = 1; i <= N; ++i ) { printf( "%i ", B[ i ] ); } printf( "\n" ); return 0; }
[ "dionyziz@gmail.com" ]
dionyziz@gmail.com
95f0f3b96521c92315f8abbe755e9ad31c812335
7f3abfeeddec4a552c1d1c61bf433098be8f8fe7
/UserUtils/PlotUtils/src/Pad1D_Plot.cc
e120e031d6788a8a54021498b44c7943c486fa87
[ "MIT" ]
permissive
yihui-lai/HGCalTileSim
a2b81f996faf7713c8f7fa57b974947e3335a3d5
9e4da5837e47d6522391a30461b54dce360f52cc
refs/heads/master
2022-06-08T22:10:00.770306
2021-06-10T21:35:26
2021-06-10T21:35:26
249,848,565
1
1
null
2020-03-25T00:23:42
2020-03-25T00:23:41
null
UTF-8
C++
false
false
27,620
cc
/** * @file Pad1D_Plot.cc * @brief Implementing the data plotting functions. * @author [Yi-Mu "Enoch" Chen](https://github.com/yimuchen) */ #ifdef CMSSW_GIT_HASH #include "UserUtils/Common/interface/Maths.hpp" #include "UserUtils/Common/interface/STLUtils/StringUtils.hpp" #include "UserUtils/MathUtils/interface/Miscellaneous.hpp" #include "UserUtils/PlotUtils/interface/Pad1D.hpp" #else #include "UserUtils/Common/Maths.hpp" #include "UserUtils/Common/STLUtils/StringUtils.hpp" #include "UserUtils/MathUtils/Miscellaneous.hpp" #include "UserUtils/PlotUtils/Pad1D.hpp" #endif #include <limits> #include <random> #include "CmdSetAttr.hpp" #include "TDecompChol.h" #include "TFitResult.h" #include "TGraphErrors.h" #include "TList.h" // static variables for new object generation static const std::string genaxisname = "axishist"; namespace usr { namespace plt { /** * Plotting 1D histograms accepts these options: * - PlotType: Defining how the binned data should be represented on the pad, * following types are supported * - plottype::hist (default) - standard square curve/block diagram for * displaying a diagram, equivalent to the `"HIST"` options provided in the * TH1 object. * - plottype::scatter - Plotting points with error bars. Complying to the CMS * plotting convention with the horizontal error bar being suppressed for * fixed bin-width data. * - plottype::histstack - Stacking this histogram into the histogram stack on * the Pad. If the stack doesn't already exist, a new stack is created. Note * that all histograms in the stack will be plotted with the hist style and * cannot be changed. Notice that the stack must be plotted consecutively, * meaning that any non histstack options would cause the stack to be * finalized and plotted onto the Pad. * - plottype::histnewstack - Force the creation of the new histogram stack, * used only if you are plotting two histogram stacks in the same Pad. * - plottype::histerr - Drawing histogram uncertainty as a shaded box region. * - Raw string: The user can use the ROOT style string options to define how * the Histogram options should be plotted. The strings `"SAME"` and `"HIST"` * would be handed by the functions and will be stripped. * * - EntryText: String to add in the legend entry. If this options is not * present, then this object will NOT appear in the generated legend. Notice * that the attributes to display in the legend would be generated from the * PlotType used. * * - TrackY: Whether or not the y-axis range should be adjusted according to the * newly added histogram. By default, only the max values of the histogram * would be used. * * - PlotUnder: Specifying the that plot object be plotted underneath a specific * object. Not that if the object specified in PlotUnder is not found in the * pad, this option will have no effect and will raise no excpetions. * * One side note is that fitted functions will have its DrawOptions cleared from * the histogram! The user should be the one explicitly invoking the plotting * behavior, given more freedom to what the final plot will look like (See the * Pad1D::PlotFunc() method for more details). This design aspect is in stark * contrast with the design of ROOT objects. So beware of unwanted behaviour. */ TH1D& Pad1D::PlotHist( TH1D& obj, const std::vector<RooCmdArg>& arglist ) { // If TProfile is given, send to PlotProfile function instead if( obj.InheritsFrom( TProfile::Class() ) ){ return PlotProfile( dynamic_cast<TProfile&>( obj ), arglist ); } // Getting the flags const RooArgContainer args( arglist, { PlotType( hist ), TrackY( TrackY::max ), FillColor( 0, 0 ) } ); if( !GetAxisObject() ){ // MUST ust a clone, otherwise messes with THStack TH1D& axisobj = MakeObj<TH1D>( obj ); axisobj.Reset(); axisobj.SetStats( 0 ); axisobj.SetTitle( "" ); axisobj.SetName( ( genaxisname+RandomString( 6 ) ).c_str() ); PlotObj( axisobj, "AXIS" ); this->SetAxisFont(); } // Forcing no statistics. and wiping title obj.SetStats( 0 ); obj.SetTitle( "" ); // Removing the poly marker from TSpectrum search function TObject* polymarker = obj.GetListOfFunctions()->FindObject( "TPolyMarker" ); obj.GetListOfFunctions()->RecursiveRemove( polymarker ); // Forcing fit functions to not be drawn for( const auto&& func : *( obj.GetListOfFunctions() ) ){ func->SetBit( TF1::kNotDraw, true ); } // Running the draw commands. const int pt = args.Get<PlotType>(); // Flushing the _working stack if hist is no longer used if( pt != histstack && _workingstack ){ PlotObj( _workingstack, "HIST SAME NOCLEAR" ); _workingstack = nullptr; } // Plot case for different plot types switch( pt ){ case plottype::hist: PlotObj( obj, "HIST SAME" ); break; case plottype::scatter: obj.GetXaxis()->IsVariableBinSize() ? PlotObj( obj, "P L E SAME" ) : PlotObj( obj, "P E X0 SAME" ); break; case plottype::histerr: PlotObj( obj, "E2 SAME" ); break; case plottype::histstack: if( _workingstack == 0 ){ _workingstack = &MakeObj<THStack>( ( "stack" + RandomString( 12 ) ).c_str(), "" ); } _workingstack->Add( &obj, "HIST" ); break; case plottype::histnewstack: _workingstack = &MakeObj<THStack>( ( "stack" + RandomString( 12 ) ).c_str(), "" ); _workingstack->Add( &obj, "HIST" ); break; case plottype::plottype_dummy: PlotObj( obj, ( args.Get<PlotType>().str()+" SAME" ).c_str() ); break; default: std::cerr << "Skipping over invalid value ("<< pt <<")" << std::endl; } if( _workingstack ){ TrackObjectY( *_workingstack, args.Get<TrackY>() ); } else { TrackObjectY( obj, args.Get<TrackY>() ); } // Adding legend if( args.Has<EntryText>() ){ AddLegendEntry( obj, args.Get<EntryText>(), args.Get<PlotType>() ); } // Moving to under something if( args.Has<PlotUnder>() ){ if( _workingstack ){ PadBase::MoveTargetToBefore( *_workingstack, args.Get<PlotUnder>() ); } else { PadBase::MoveTargetToBefore( obj, args.Get<PlotUnder>() ); } } SetLineAttr( obj, args ); SetFillAttr( obj, args ); SetMarkAttr( obj, args ); return obj; } /** * @brief Plotting a TProfile object * * Due to inheritance between TProfile and the TH1D, the original PlotHist * doesn't work with TProfile. Instead, this functions generates a new TH1D from * the TProfile using the ProjectionX function. The return value would then be * the newly generated histogram. So beware of unexpected behaviour. */ TH1D& Pad1D::PlotProfile( TProfile& obj, const std::vector<RooCmdArg>& args ) { // Generating new profile objects TH1D* _newhist = obj.ProjectionX( usr::RandomString( 6 ).c_str(), "E" ); ClaimObject( _newhist ); return PlotHist( _newhist, args ); } /** * Plotting of the TGraph object has the following supporting options: * * - `PlotType`: Defining how the data should be represented on the Pad. The * supported types are: * - `plottype::simplefunc`(default): single polyline joining the data points. * This is used if the graph represents a function sample. * - `plottype::fittedfunc`: a polyline joining the data points with the Y * error represented with a shaded region. This is used if the graph * represents a function sample with additional sampling for fitting * uncertainties * - `plottype::scatter`: plotting the data as data points with error bars. * Unlike the histograms, this would not attempt to adjust the x error bars. * * - EntryText: String to add in the legend entry. If this options is not * present, then this object will NOT appear in the generated legend. Notice * that the attributes to display in the legend would be generated from the * PlotType used. * * - TrackY: Whether or not the y-axis range should be adjusted according to the * newly added graph. By default, both the maximum and minimum will be tracked * if this graph is the first thing to be plotted on the pad (excluding the * histogram used for handling the axis), otherwise, nothing will be tracked. * * - PlotUnder: Specifying the that plot object be plotted underneath a specific * object. Not that if the object specified in PlotUnder is not found in the * pad, this option will have no effect and will raise no excpetions. * * One side note is that fitted functions will have its DrawOptions cleared from * the histogram! The user should be the one explicitly invoking the plotting */ TGraph& Pad1D::PlotGraph( TGraph& obj, const std::vector<RooCmdArg>& arglist ) { // Early Exit for Graphs without any data points if( obj.GetN() <= 0 ){ std::cerr << "Cannot plot TGraphs with no data points!" << std::endl; return obj; } // Getting the flags const RooArgContainer args( arglist, { PlotType( simplefunc ), !GetAxisObject() ? TrackY( TrackY::both ) : TrackY( TrackY::none ), FillColor( 0, 0 ) } ); // If no axis are available. Generating a TH1 object for axis: if( !GetAxisObject() ){ auto& axishist = MakeObj<TH1D>( ( genaxisname + RandomString( 6 ) ).c_str(), "", 10, GetXmin( obj ), GetXmax( obj ) ); axishist.SetStats( 0 ); PadBase::PlotObj( axishist, "AXIS" ); SetAxisFont(); } // Object fixing obj.SetTitle( "" );// Forcing clear title. This should be handled by Canvas. // Forcing fit functions to not be drawn for( const auto&& func : *( obj.GetListOfFunctions() ) ){ func->SetBit( TF1::kNotDraw, true ); } const int pt = args.Get<PlotType>(); switch( pt ){ case simplefunc: PadBase::PlotObj( obj, "LX" ); break; case fittedfunc: PadBase::PlotObj( obj, "3" );// Draw Error with fill region and then PadBase::PlotObj( obj, "LX" );// Draw the central line. All errors disabled. break; case scatter: // Points, no error bar end ticks, show error bar for points outside range. PadBase::PlotObj( obj, "PZ0" ); break; case plottype_dummy: PlotObj( obj, args.Get<PlotType>().c_str() ); break; default: std::cerr << "Skipping over invalid value" << std::endl; break; } TrackObjectY( obj, args.Get<TrackY>() ); // Adding legend if( args.Has<EntryText>() ){ AddLegendEntry( obj, args.Get<EntryText>(), args.Get<PlotType>() ); } // Moving to under something if( args.Has<PlotUnder>() ){ PadBase::MoveTargetToBefore( obj, args.Get<PlotUnder>() ); } // Setting styling attributes SetLineAttr( obj, args ); SetFillAttr( obj, args ); SetMarkAttr( obj, args ); return obj; } /** * Plotting a TF1 object is done by generating a TGraph with 300 samples points * across the x axis, and plotting the TGraph instead. All TGraph plotting * options will be available for the TF1 plotting. There is a new plotting * options VisualizeError, which generates a TGraphErrors graph by randomly * sampling the parameter space according to the correlation matrix given by a * @ROOT{TFitResult}. */ TGraph& Pad1D::PlotFunc( TF1& func, const std::vector<RooCmdArg>& arglist ) { const RooArgContainer args( arglist, { PlotType(// Inserting default plotting style RooArgContainer::CheckList( arglist, VisualizeError::CmdName ) ? fittedfunc : simplefunc ), RooFit::Precision( 1e-3 ) } ); // If no axis are available. Generating a TH1 object for axis: if( !GetAxisObject() ){ auto& axishist = MakeObj<TH1D>( ( genaxisname + RandomString( 10 ) ).c_str(), "", 10, func.GetXmin(), func.GetXmax() ); axishist.SetStats( 0 ); PadBase::PlotObj( axishist, "AXIS" ); SetAxisFont(); } return PlotGraph( MakeTF1Graph( func, args ), args ); } /** * @brief Generating a graph representation of the TF1 object. */ TGraph& Pad1D::MakeTF1Graph( TF1& func, const RooArgContainer& args ) { static const unsigned psample = 300; const std::string graphname = func.GetName() + std::string( "_gengraph" ) + RandomString( 6 ); const double xmax = func.GetXmax(); const double xmin = func.GetXmin(); const double xspace = args.Get( "Precision" ).getDouble( 0 ); const unsigned xsample = 1 / ( xspace ) + 1; std::vector<double> x( xsample ); std::vector<double> y( xsample ); std::vector<double> yerrhi( xsample ); std::vector<double> yerrlo( xsample ); std::vector<double> zero( xsample ); // Getting common elements for graph generation for( unsigned i = 0; i < xsample; ++i ){ const double xval = xmin + i * ( xmax-xmin ) * xspace; const double yval = func.Eval( xval ); x[i] = xval; y[i] = yval; yerrlo[i] = 0; yerrhi[i] = 0; zero[i] = 0; } if( !args.Has<VisualizeError>() ){ TGraph& graph = MakeObj<TGraph>( x.size(), x.data(), y.data() ); graph.SetName( graphname.c_str() ); return graph; } else { const auto cmd = args.Get<VisualizeError>(); const auto& fit = cmd.GetTFitResult(); const double zval = cmd.getDouble( 0 ); const std::vector<double> bestfit_param = fit.Parameters(); // Getting matrix for random parameter generation const TMatrixDSym cormatrix = fit.GetCovarianceMatrix(); const TMatrixD tmatrix = usr::DecompCorvariance( cormatrix ); TVectorD vec( tmatrix.GetNrows() ); std::mt19937 gen; std::normal_distribution pdf( 0.0, 1.0 ); // Random sample for parameter space for( unsigned i = 0; i < psample; ++i ){ // Generating random variation using gaussian for( int j = 0; j < vec.GetNrows(); ++j ){ vec[j] = pdf( gen ); } // Forcing the vector onto unit sphere, then transforming according to // the covariance matrix vec = ( zval /sqrt( vec.Norm2Sqr() ) ) * vec; vec = tmatrix * vec; // Shifting to central value of function. for( int j = 0; j < vec.GetNrows(); ++j ){ func.SetParameter( j, vec[j] + bestfit_param[j] ); } // Finding evelope of randomly generated parameter values for( unsigned j = 0; j < xsample; ++j ){ const double xval = x.at( j ); const double yerr = func.Eval( xval ) - y.at( j ); yerrhi[j] = std::max( yerr, yerrhi.at( j ) ); yerrlo[j] = std::max( -yerr, yerrlo.at( j ) ); } } // Reseting the function parameters to best value func.SetParameters( bestfit_param.data() ); TGraphAsymmErrors& graph = MakeObj<TGraphAsymmErrors>( x.size(), x.data(), y.data(), zero.data(), zero.data(), yerrlo.data(), yerrhi.data() ); graph.SetName( graphname.c_str() ); return graph; } } /** * Function for plotting all of the RooAbsData objects, the supported options * allowed include: * - *Any* RooCmdArg supported by the RooAbsData::plotOn function. These will * take precedence to custom defined options. With the excpetion of * RooFit::DrawOptions. * * - PlotType: Specifying the representation for the data object on the Pad. Any * of the types valid for the PlotGraph functions would be valid. By default, * the scatter plot method would be used. * * - EntryText: String to add in the legend entry. If this options is not * present, then this object will NOT appear in the generated legend. Notice * that the attributes to display in the legend would be generated from the * PlotType used. Notice that this method is overwritten by the * RooFit::Invisible option, which forces the object to be hidden. * * - TrackY: Whether or not the y-axis range should be adjusted according to the * newly added graph. By default, only the maximum value would be used. * * Additional automation of options include suppressing the X error bars of the * generated graph if an equal binning is used for the data set and the * RooFit::XErrorSize is not specified. This is to align the plotting style * conventions within the CMS collaboration. Another change to the graphs is that * the y uncertainties in the zero bins are suppressed, again, to align with the * plotting style conventions. * * The function returns a reference to the generated TGraph object by the * underlying RooPlot object, The object would be owned by the RooPlot and be * destroyed when the Pad1D goes out of scope. */ TGraphAsymmErrors& Pad1D::PlotData( RooAbsData& data, const std::vector<RooCmdArg>& arglist ) { const RooArgContainer args( arglist, { PlotType( scatter ), TrackY( TrackY::max ) } ); TGraphAsymmErrors& ans = MakeDataGraph( data, args ); if( !args.Has( "Invisible" ) ){ if( _prevrangetype == rangetype::aut ){ // Forcing the range type to be histogram like. _prevrangetype = rangetype::hist; } PlotGraph( ans, args ); } return ans; } /** * @brief Helper method for generating the a TGraph representing a RooAbsData * plot. * * This will detect the binning method specified by the various options (using * the present binning of the RooFrame variable otherwise), and in the case of * uniform binning, suppress the x axis error bars, as specified by the CMS * publication conventions. Additionally, Bins with zero entires would have their * y error bars suppressed. */ TGraphAsymmErrors& Pad1D::MakeDataGraph( RooAbsData& data, const RooArgContainer& args ) { // RooCmdArg for suppressing the X errors in the final graph static const RooCmdArg suppressxerror = RooFit::XErrorSize( 0 ); // Generating the requirements for actual RooFit PlotOn calls RooLinkedList oplist = args.MakeRooList(); auto IsUniform = [this]( const RooCmdArg& cmd ) -> bool { // Double assignment will always be uniform if( cmd.getDouble( 0 ) != cmd.getDouble( 1 ) ){ return true;} // Getting plot variable bining scheme if( cmd.getString( 0 ) ){ const auto binname = cmd.getString( 0 ); const auto plotvar = this->_frame.getPlotVar(); if( plotvar->hasBinning( binname ) ){ return plotvar->getBinning( binname ).isUniform(); } } else if( cmd.getObject( 0 ) ){ auto binobj = dynamic_cast<const RooAbsBinning*>( cmd.getObject( 0 ) ); if( binobj ){ return binobj->isUniform(); } } return true;// Returning true by default }; // Option for suppressing x error bars if( !args.Has( "Binning" ) ){ if( _frame.getPlotVar()->getBinning().isUniform() ){ oplist.Add( suppressxerror.Clone() ); } } else if( IsUniform( args.Get( "Binning" ) ) ){ oplist.Add( suppressxerror.Clone() ); } // Generating the object via RooFit TGraphAsymmErrors& ans = GenGraph( data, oplist ); // Additional Fixes for RooFit generated objects for( int i = 0; i < ans.GetN(); ++i ){ if( ans.GetY()[i] == 0 ){// Suppressing errors in zero bins ans.SetPointError( i, 0, 0, 0, 0 ); } } return ans; } /** * Plotting of RooAbsPdf objects by generating the TGraphs using a RooPlot object * and plotting the graphs onto the TPad. The supported options are: * * - *Any* RooCmdArg supported by the RooAbsData::plotOn function. These will * take precedence to custom defined options, with the excpetion of the * RooFit::DrawOptions method. * * - PlotType: Specifying the representation for the data object on the Pad. Any * of the types valid for the PlotGraph functions would be valid. If not * specified, the simplefunc or fittedfunc methods will be used, depending on * if the RooFit::VisualizeError is used. * * - EntryText: String to add in the legend entry. If this options is not * present, then this object will NOT appear in the generated legend. Notice * that the attributes to display in the legend would be generated from the * PlotType used. * * - TrackY: Whether or not the y-axis range should be adjusted according to the * newly added graph. By default, RooPdf objects would not be used to adjust * the axis range. * * Additional automation of options include additional generation for * RooFit::VisualizeError. The stock RooPlot generates are contour line for the * uncertainty range rather than a line with error, making styling of a PDF with * uncertainty rather tedious. This functions takes the generated TGraphs by the * RooPlot and recalculated a TGraph with uncertainty. The newly calculated graph * will be placed under the ownership of the Pad. */ TGraph& Pad1D::PlotPdf( RooAbsPdf& pdf, const std::vector<RooCmdArg>& arglist ) { const RooArgContainer args( arglist, {// Defining default arguments TrackY( TrackY::max ),// Default track y: only top RooArgContainer::CheckList( arglist, VisualizeError::CmdName ) ? PlotType( fittedfunc ) : PlotType( simplefunc )// default plot style. } ); TGraph& ans = MakePdfGraph( pdf, arglist ); if( !args.Has( "Invisible" ) ){// Allow for invisible stuff to exist if( _prevrangetype == rangetype::aut ){ // Forcing the range type to be histogram like. _prevrangetype = rangetype::hist; } PlotGraph( ans, args ); } return ans; } /** * @brief Helper function for generating a TGraph representation of a RooAbsPdf * plot * * In the case the RooFit::Visualization is used, this function generates two * graphs via the in-built RooFit methods , one for the central plot, and the * other the contor of the uncertainty. This function then recalculates the two * graphs into a single TGraph with uncertainty, which is makes manipulating the * the plot results of a single RooAbsPdf instance more intuitive (changing the * plot style of a single object, rather than two). */ TGraph& Pad1D::MakePdfGraph( RooAbsPdf& pdf, const RooArgContainer& args ) { // Augmenting the Visualize Error command. We have to manually insert a // RooArgSet containing all the floating variables directly in the // VisualizeError instance. Otherwise the generation of the error band might // fail. auto CorrectVisError = [this]( const RooAbsPdf& pdf, const usr::RooArgContainer& args ) -> RooCmdArg { if( args.Has<VisualizeError>() ){ auto& cmd = args.Get<VisualizeError>(); if( cmd.has_set() ){ // If Visualized Parameter set is already specified, then simply // return the original parameter return cmd; } else { RooCmdArg ans( cmd ); const auto& fit = cmd.GetRooFitResult(); // Memory leak?? RooArgSet* cloneParams = pdf.getObservables( fit.floatParsFinal() ); ans.setSet( 0, *cloneParams ); this->ClaimObject( cloneParams ); return ans; } } else { return RooCmdArg::none(); } }; const RooCmdArg viscmd = CorrectVisError( pdf, args ); RooLinkedList roolist = args.MakeRooList( {VisualizeError::CmdName} ); if( !args.Has<VisualizeError>() ){ // Nothing special needs to be done for simple plotting. return GenGraph( pdf, roolist ); } else { TGraph& centralgraph = GenGraph( pdf, roolist ); roolist.Add( viscmd.Clone() ); TGraph& errorgraph = GenGraph( pdf, roolist ); // Map for storing uncertainty std::map<double, std::pair<double, double> > fiterr; for( int i = 0; i < errorgraph.GetN(); ++i ){ const double x = errorgraph.GetX()[i]; const double y = errorgraph.GetY()[i]; if( !fiterr.count( x ) ){ fiterr[x] = std::make_pair( 1e10, -1e10 ); } fiterr.at( x ).first = std::min( fiterr.at( x ).first, y ); fiterr.at( x ).second = std::max( fiterr.at( x ).second, y ); } // The new TGraphAsymmErrors to store the results. TGraphAsymmErrors& ans = MakeObj<TGraphAsymmErrors>( fiterr.size() ); unsigned i = 0;// index for looping for( const auto& fiterrval : fiterr ){ const double x = fiterrval.first; const double y = centralgraph.Eval( x ); const double ylo = fiterrval.second.first; const double yhi = fiterrval.second.second; ans.SetPoint( i, x, y ); ans.SetPointError( i, 0, 0, y-ylo, yhi-y ); ++i; } return ans; } } // ------------------------------------------------------------------------------ // Private Helper functions // ------------------------------------------------------------------------------ /** * @brief Helper function for generating RooAbsPdf plots onto a Pad. * * Throws and invalid_argument exception when the plotting call fails. */ TGraph& Pad1D::GenGraph( RooAbsPdf& pdf, RooLinkedList& arglist ) { // Suppressing plotting messages RooMsgService::instance().setGlobalKillBelow( RooFit::WARNING ); RooPlot* test = pdf.plotOn( &_frame, arglist ); if( !test ){ throw std::invalid_argument( "Bad argument list or object, plotting failed" ); } auto& graph = _frame.LastPlot<TGraph>(); graph.SetName( ( pdf.GetName() + RandomString( 6 ) ).c_str() ); // Since this is a PDF and there is no weighting issue, we // enforce the fact that the graph should be positive definite. for( int i = 0; i < graph.GetN(); ++i ){ const double x = graph.GetX()[i]; const double y = graph.GetY()[i]; if( y <= 0.0 ){ graph.SetPoint( i, x, 1e-50 ); } } return graph; } /** * @brief Helper function for generating RooAbsData plots onto a Pad. * * Throws an invalid_argument exception when the plotting call fails. */ TGraphAsymmErrors& Pad1D::GenGraph( RooAbsData& data, RooLinkedList& arglist ) { // Suppressing plotting messages RooMsgService::instance().setGlobalKillBelow( RooFit::WARNING ); // Generating plotting information RooPlot* test = data.plotOn( &_frame, arglist ); if( !test ){ throw std::invalid_argument( "Bad argument list or object, plotting failed" ); } return _frame.LastPlot<TGraphAsymmErrors>(); } /** * @brief Changing the stored _datamin, and _datamax variable according to object * * Moving to a private helper function to reduce verbosity in main implementation * function */ void Pad1D::TrackObjectY( const TObject& obj, const int tracky ) { // Perfroming the axis range setting if( tracky == TrackY::min || tracky == TrackY::both ){ if( obj.InheritsFrom( TH1D::Class() ) ){ _datamin = std::min( _datamin, GetYmin( &dynamic_cast<const TH1D&>( obj ) ) ); } if( obj.InheritsFrom( TGraph::Class() ) ){ _datamin = std::min( _datamin, GetYmin( &dynamic_cast<const TGraph&>( obj ) ) ); } if( obj.InheritsFrom( THStack::Class() ) ){ _datamin = std::min( _datamin, GetYmin( &dynamic_cast<const THStack&>( obj ) ) ); } } if( tracky == TrackY::max || tracky == TrackY::both ){ if( obj.InheritsFrom( TH1D::Class() ) ){ _datamax = std::max( _datamax, GetYmax( &dynamic_cast<const TH1D&>( obj ) ) ); } if( obj.InheritsFrom( TGraph::Class() ) ){ _datamax = std::max( _datamax, GetYmax( &dynamic_cast<const TGraph&>( obj ) ) ); } if( obj.InheritsFrom( THStack::Class() ) ){ _datamax = std::max( _datamax, GetYmax( &dynamic_cast<const THStack&>( obj ) ) ); } } AutoSetYRange(); } }/* plt */ }/* usr */
[ "yihui.lai@cern.ch" ]
yihui.lai@cern.ch
4c714454474c71fe937d228d68bcb5ae6263726e
d4ab7a4da5bb2843ea4737fcc1e1e7f638bad3b3
/CodenameSideway/Source/Buffers/VertexBufferObject.cpp
cef01405243abc49ba690ababe45f28d00bff827
[]
no_license
SudsyCoxx/CodenameSideway
c96d3b00f434f93b5bd8c9a3a3514a93d649d12f
8144a34c6c444aa6e5c51b88dba0d4a8f84f084f
refs/heads/master
2021-01-19T07:54:17.879576
2017-08-17T03:07:18
2017-08-17T03:07:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
799
cpp
#include "VertexBufferObject.hpp" #include <gl/glew.h> using namespace Buffers; VertexBufferObject::VertexBufferObject(unsigned int BufferType) : m_buffer(0), m_type(BufferType), m_enabled(0) { genBuffer(); } VertexBufferObject::~VertexBufferObject() { glDeleteBuffers(1, &m_buffer); } void VertexBufferObject::bind() { //if (!m_enabled) { glBindBuffer(m_type, m_buffer); m_enabled != m_enabled; //} } void VertexBufferObject::unbind() { //if (m_enabled) { glBindBuffer(m_type, m_buffer); m_enabled != m_enabled; //} } void VertexBufferObject::bufferData(int Count, int SizeOfElement, void* Elements, GLuint DrawType) { bind(); glBufferData(m_type, Count*SizeOfElement, Elements, DrawType); unbind(); } void VertexBufferObject::genBuffer() { glGenBuffers(1, &m_buffer); }
[ "30988894+markclifton@users.noreply.github.com" ]
30988894+markclifton@users.noreply.github.com
f0b890e880070b7cc13f19d1abf7143d7b6ea47f
1d5d650014ac3dd142965906cf2b4fdbe34afb63
/abc132/abc132_d.cpp
243825a901a0014afbaab0bec2986fe8af82241d
[]
no_license
tks3210/Atcoder
c1b88654762273693bd41db417811169780c0161
593dda88e13f703bdb3b4c3e6d795bc425e29416
refs/heads/master
2021-07-02T17:46:00.099867
2020-12-19T07:57:14
2020-12-19T07:57:14
146,293,715
0
0
null
null
null
null
UTF-8
C++
false
false
1,203
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll calcComb(int a, int b); ll mod = 1000000007; ll modpow(ll a, int p); int main(){ int N, K; cin >> N >> K; ll ans; for (int i = 1; i <= K ; i++) { ans = calcComb(N-K+1, i); ans %= mod; ans *= calcComb(K-1, i-1); ans %= mod; if (N - K + 1 < i) ans = 0; cout << ans << endl; } } //aCb ll calcComb(int a, int b){ if (b > a-b) return calcComb(a,a-b); ll ansMul =1; ll ansDiv =1; for(int i = 0; i < b; i++) { /* code */ ansMul *= (a-i); ansDiv *= (i+1); ansMul %= mod; ansDiv %= mod; } //ansDivの逆元を使う。 ll ans = ansMul * modpow(ansDiv, mod -2) % mod; return ans; } //aのp乗を求めるアルゴリズム //p=62>31>30>15>14>7>6>3>2>1>0 //計算量はO(logp)になる。 ll modpow(ll a, int p){ if (p == 0) return 1; if (p%2 == 0){ //p even int halfP = p/2; ll half = modpow(a, halfP); //a^(p/2)をhalfとしてhalf*halfを計算 return half * half % mod; } else { return a * modpow(a, p-1) % mod; } }
[ "fujinaga.3210.takashi@gmail.com" ]
fujinaga.3210.takashi@gmail.com
b2dbd1858f3f7791e6240b8de361c1df147791ea
d2fe987156fbe19832e1e6c24d8fcf4aa9472907
/TurbulentMapleBlankBlade/processor1/2.2/vorticity
d1f5baae6cdd63ce044ee6a4449af2f1556a6120
[]
no_license
harinik05/BASEF-2021
d18ae164bc116d51b9b68c351b8159c2809ca63f
a83dee5d369caccbb513dad8df5023926689a71a
refs/heads/main
2023-07-24T14:12:16.730306
2021-02-03T00:33:51
2021-02-03T00:33:51
323,745,817
0
0
null
null
null
null
UTF-8
C++
false
false
1,393,522
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1906 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "2.2"; object vorticity; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField nonuniform List<vector> 19631 ( (0.03629959304788846 0.00348250925317013 0.02227482951842667) (-14.16418853753997 25.48912104194144 3.893069823109253) (-3.127127822051764 -0.8352071567713391 -3.795870519634583) (0.6593615082894771 -12.44010237652431 2.106680931749698) (0.07323639290294721 -0.05522130291044942 -0.02291681736556311) (-0.02891696338806232 0.07353587001876823 0.1805384158388238) (-0.005805519023500599 0.005401055629845082 -0.005693496330734927) (-0.9000528952475333 -1.245337620780687 -6.110487715113177) (-0.02227356005879405 -0.01083850310519432 0.05448745670068756) (-0.1477096463104405 0.04176181818035331 0.01051614810167551) (0.2213341846326507 0.1094858381413387 -0.2011933176050447) (-0.2354490191597718 -0.03281700823577397 -0.05007776339601037) (6.134852235406595 13.60752396744627 3.431849306749418) (-0.01529481546666744 -0.0004985283174130384 0.1128879438571861) (-0.03056722968916754 0.005326115894815546 -0.004406127339807516) (-0.132666507550253 0.1067651047229885 -0.07438909037921564) (3.807424233335847 2.432719669966564 -0.1328456293550172) (0.003569706745732795 -0.004863459669380362 -0.001228862516922489) (-0.05850853763437062 0.1191243479511604 0.09074829169492815) (-5.185816430358025 7.454055687458734 -1.852695246916475) (0.07747370974626436 -0.106009923950813 0.1080014915973962) (-2.90742305944361 6.694279128637841 3.746564866358732) (-0.02620278136291754 0.09773037597691886 -0.01626375214587011) (0.5009004411640664 0.5606723068187961 0.7401700289458318) (-0.03929831552333461 0.09504400276620573 -0.0622466615952496) (-0.01772549787833153 -0.01205860345209534 0.06722305876976248) (-0.06123237904475858 0.06390298435976362 -0.06465695085195912) (0.4938989531373612 -1.390594768657752 -9.062878794454591) (0.5520417744155908 7.349221655675197 -8.720129487680577) (0.2582453181669346 -0.02501215275399178 -0.1430821379114114) (0.04233331582314502 0.02139871746636513 -0.01949328664322593) (0.1893616192255845 -0.7695856177378592 -0.7036111951589559) (-2.126880333678493 0.5909664751366849 -2.208690682469919) (-0.06205763618955319 -0.04192397800645882 -0.00443853739599274) (0.1205118614682702 -2.58096792840264 0.09043601954436345) (0.06368681901558385 -0.02894038683327033 0.01508024637905053) (0.1474701454791096 0.06266360854525482 -0.09726474151790651) (0.3862904794429057 0.2459091317319694 0.06952190788067557) (0.09104047888403945 -0.04567850639702725 -0.03866426059212143) (-0.2672492893136003 0.5496963781434198 -0.9429277302112549) (2.826539951999025 0.3497816238747018 1.032323204129858) (-2.916605197884197 8.759702367601015 1.15722463681184) (-0.01989455715538786 -0.02452754237201592 0.08104771300699921) (-0.2814298550280858 1.301101240631745 -6.302066567487855) (0.3104182826369212 -0.3672424930017052 -1.030587812291079) (-0.2352423741879952 1.083924470526904 2.728332216929395) (-1.546675161463223 -5.906657289049752 0.7114568964498176) (-10.37110818112075 1.133328626449548 1.146436148774396) (-0.05270070197045927 -0.01556434877497831 -0.009298504246725054) (-0.05949907149369481 -0.006611332505798565 -0.00321091696405326) (-0.0125667073673116 0.02072935119032111 -0.09209717968786134) (0.07053861329293057 -0.0099886694845931 0.08069781626913397) (-2.113960992694926 2.950493268609384 -1.093446733940515) (-0.1333793619652582 -0.01418477361189158 0.0127006877045332) (-0.08532176389761328 -0.5412877240693552 0.1306319462809643) (-0.5279163434308883 0.9620228691628258 -1.119445737289633) (0.3916850138093665 1.386737306369606 -0.2896722324639695) (0.0008641490991084642 -0.007057051726485205 0.01830988726389661) (-0.9040818256426197 -0.1071280411222978 -0.03367769783758657) (-1.552163968505605 -5.01613074000767 1.35178319021135) (-9.452372041260109 12.18828531436705 8.330927331663441) (0.4221306013097852 0.3338602362969644 0.07669723029362852) (-0.4165457127833211 -4.491892867734649 -0.4457877582566392) (-0.1123224079472159 -0.004773791270019312 0.009047546576190771) (-0.1875582549291575 5.094217861301603 -5.951246184347637) (-2.702260779908988 -5.47939935571927 -1.389121086457398) (0.0774234079747729 0.02208894963251445 -0.0554942552771126) (-0.122785838957177 0.3754330362579108 -4.588017749369179) (-1.531266130904925 -3.313016900728893 3.483389794906794) (0.01599749818874476 0.001350707799989873 0.03238701677169208) (2.890808238752079 11.51059330934829 0.1972358105465136) (0.1319695121620678 0.06933739980425603 0.005505582454219917) (0.06335083877338099 -0.1508374113451527 0.01051650737308142) (-0.8628856819219026 8.31968494708244 0.3740047586663993) (-0.3481437189838941 0.05728992795181691 0.09230729554586951) (-1.075210411500235 1.087589513770554 -1.429173537881474) (0.1452515589257507 -0.120116098591323 0.04205426125384758) (-0.3107832803126833 -1.804630077196516 0.8720695602009173) (2.053109435177937 -12.73035005843004 -0.4888760858587298) (0.0362686089760567 -0.009667053364598104 -0.005228164355820603) (-5.901919053207719 -27.20549378648956 -2.062651783530665) (-2.05189363659885 -0.5416387895289652 0.6848789581106223) (-1.277571688778141 10.360052608454 -3.270593228211826) (3.981960149532731 -0.6861421527802904 3.899503988003767) (0.03366955446138618 -0.2963666531337731 -0.2603992354118427) (-0.3572019934616205 -0.2902270896421725 0.3081557330173169) (-0.1225751150823136 0.3772575260266077 -0.3511759333806247) (-1.258977007621909 -0.453935716929954 3.353132067686275) (0.6595196489249374 -5.365701996041103 0.6046200167532978) (-1.893949503482201 -1.030470108706208 -8.664516273136009) (-0.482673349970522 0.7908761261967926 -0.3402504997922657) (-1.205893128820233 5.162200410724697 0.2402205643112597) (0.01597834053456604 -0.4901417718494564 0.9915870215161685) (-0.7990303860572868 -0.7568530746294569 -1.194401188800646) (1.222104311523839 -0.05767416750575824 -0.4095214294755289) (0.6538815843039285 0.4954452670861459 -0.1620066861870339) (-0.2407171720329162 -4.275041571470886 -4.079088515046191) (0.6152906845953228 0.2359252394867474 -0.4903448317810795) (-0.62618616902737 -0.2178966344261934 -0.8749480896651479) (-0.04833257707844117 0.03465197787228694 -0.04328915236890893) (0.09181223568882808 0.01612674147589301 -0.05628960298486647) (-1.97916084060595 59.93264235496412 8.587919554685763) (-0.06217694280334145 0.07930854760485341 -0.01097419833204494) (2.017855039611277 36.64380959277312 -7.969509176473446) (-2.712497070000257 0.1481745195670028 0.7857443177030546) (-1.434423925773409 1.367109936169885 0.07547306521300023) (0.02853278620808204 0.01937240464142213 0.01524554585461882) (-1.09883441954886 -7.761328358579024 2.725265596703279) (-0.1840579452124961 -0.04029493650207461 0.03683392267175902) (0.1312431085079194 -0.06944701562606859 -4.529908501232488) (0.1777172852499972 0.3585063854423362 -0.3890303997492526) (0.7435886171545012 10.37616853330382 2.128153538040103) (0.2497928425935835 0.04089603319338382 0.05679375780514718) (-0.2612534038454559 28.65901864932682 2.194140731777304) (-0.2195893274077318 4.581113320317759 0.9121181310132062) (0.60682818593883 0.8813594470437209 0.3560816283657833) (-0.4571374030742646 3.484899918092613 -1.696729846592126) (0.03320260835267667 0.1937369015320864 -0.2365396005337143) (-1.450808644662371 9.519583506032317 -4.373220612516769) (-0.01415182569615995 -0.0202214367646572 -0.03077993455777006) (0.364482139256112 -0.3721704061438765 -0.3582669768461865) (-0.03533752297679637 -0.007469992313483944 -0.02536964882739117) (0.02764903510766731 -0.009395801830988112 -0.02046064345226362) (0.4992798848698564 0.4768811556141535 -0.644779290957337) (-0.2142964972950443 7.119524367911575 -8.87560712015571) (0.03996199491569478 -0.05290405416966381 0.01119297380744783) (0.285667596013126 -0.05096848626985839 -5.182996875670065) (0.0205532795987081 -0.01219303743436711 0.01240875167025296) (-0.1106799299937737 0.00718334361169109 -0.02416721923958013) (0.01407732874667011 -0.007324047996626649 0.01239390834076283) (-0.4147228863396492 0.03901185179659358 -0.07209438708419939) (-1.752791280897517 2.636179409842543 0.2778539047297069) (-0.1072526514985241 -29.03926457890385 3.243319228020914) (-1.887693136786644 -3.86458812937825 5.299574139532554) (-0.01766868225416455 -0.009677759721282313 -0.0002203631301213134) (0.04801548613198124 -0.00215616500643204 -0.01216762085355769) (-0.03669982799541735 0.1079791640410408 0.04067831105466946) (-0.18288499812871 -0.7341397045534067 0.1813301841496681) (-0.3348998239027495 -0.01729002552089073 0.2472143265169897) (0.01696379133656297 0.03750199054043508 -0.1590733260158388) (-0.02755839787779307 -0.5267610385369204 -0.5250882897006194) (9.630338196934435 0.5725971560434195 -23.15123087923273) (-0.2638047585025962 -0.06974101876807703 -0.3242348716440601) (-0.1776845773616005 0.4897048472476737 0.382986518717768) (-0.2307658984850371 0.009106584913826422 0.03113849251773243) (-0.0534158552328377 0.007340770631546797 0.02554440377408845) (-0.03803710815613285 -0.1184160484720845 -0.07705858023142843) (0.1322461156795826 0.05447152214380302 -0.07329751379751778) (-0.6943662820134753 1.260555048988626 0.9035283650965802) (-1.150524712512293 -5.581321198356845 1.221715236777174) (-0.00366054794736674 -0.008060773493214147 -0.001936921635672195) (-0.0220831660289489 0.1007421327338536 -0.233446622086698) (0.1692752697573962 0.0653482735435241 0.03403662861521971) (0.0446932018989472 0.05581339517521371 -0.02314457325366661) (0.03322480241788398 0.03087407918906069 -0.04457274774807427) (-0.1750515659042581 0.04234061306212539 -0.1099079883096233) (2.856743193246955 -0.129572951243173 -26.51581999990199) (-0.1361113441477713 0.3013870361934429 0.2246985524172063) (-0.03086343800369275 -0.1028273142924833 -0.06886379374621411) (0.003731912423594032 -0.0251025104813961 -0.03765638101163028) (0.04677649145034786 -0.04035911801012042 0.007930345907779277) (-0.07270596659339797 -0.06590831470264673 -0.08775248528653595) (-3.777628486874398 7.272484843303646 0.8436204377096939) (0.9749841879890689 -1.645407563659641 0.5365443985574232) (-0.06143788891170734 0.03050022723677934 -0.07363641274756096) (0.02248905453780347 0.01209213677536237 -0.0004550409400513209) (-0.03146467596458249 0.007165783793012744 -0.02234192145282812) (0.01269193583317628 -0.0099790299456811 0.003945454318097985) (0.1251018360793633 -0.351885242890347 -4.159478031338515) (-2.592130599756167 -2.892164927518967 4.564338358178047) (0.1510247399342271 -0.07338676352350215 -0.5043677742934218) (-0.8069886965621587 0.1697133835729034 -0.656884698591267) (-0.04613024868783078 0.245913851604037 -0.09601789168633212) (-1.605753739314382 -4.283524329672794 4.736785259911082) (-0.1431979248578377 0.1032818966158272 0.1630675461897459) (0.250462547723156 0.2158694148564708 -12.37034400916963) (0.01961033579613848 -0.1165794013076551 -0.08685353230293384) (3.634775204403089 -4.496472661599197 -7.10529726388703) (0.01021661520173382 0.0479308434448454 -0.1017469077208183) (1.226266823954085 3.466123554816678 -1.190375424746492) (-0.1825514066832084 1.580086451563554 -0.7039354836976592) (0.00758061392910812 -0.04764935600760293 0.008253963914768125) (-0.09141683038033152 -0.909685972437245 0.02999227220860195) (-0.164873375299638 0.4041083235079 -0.03604353506992302) (-0.699053303732736 -33.35053967164044 0.3614753731651673) (-0.1190760014213104 -21.77864874153954 2.601158440885247) (1.816482578217661 2.179005386680456 4.01961962381233) (-0.07161766583321727 -0.08074812035457864 -0.01218870463647521) (-0.5675763074490662 -2.539338243755846 1.574796976930076) (-0.02783473217439964 -0.01341730248566721 0.003869611879391412) (0.2512435828327954 -21.09233021416203 -5.639355452736035) (-1.520418694356314 -0.4816249578830886 -0.8169153857313798) (-0.1450752596794195 0.2691342626316749 -0.1124522591185673) (0.6235288669096282 0.1761950911102275 -0.1788214061009231) (-2.697875661009752 -10.16272565710797 -3.858462650217423) (0.06447949852652146 0.3211394499677706 -0.1424975488784198) (0.04672729650550451 0.001088479491778836 -0.02371004328901757) (0.06339758909483777 -1.836224124382274 -0.5968205162479517) (-1.575314219229349 24.75859521883598 0.3557754831233418) (3.240257383027225 4.4498808380692 0.212290059386816) (5.60854127042584 -0.6742477762684054 4.789563104141885) (-0.6342368061107247 0.7419666215917555 0.02511504069553456) (-0.2122720980256432 48.30010786255066 1.025386295118256) (-3.864878807890138 7.120717945964378 -0.3786751079896876) (-0.09955057252465149 -0.02595947145449413 0.1469018147403211) (-0.03228237958503314 0.02051974534934966 0.002909594760027862) (0.00275787595326775 -0.03104378337032263 -0.01413793904149094) (3.828155957323852 8.064036387345711 0.6273313272473864) (2.030310574513801 0.1787826411744289 2.388603202286044) (-0.01178501974898619 -0.005929878644297823 -0.5869883065149755) (0.156596407371368 -0.01360084036144476 0.004923332400258131) (-0.4286760204031721 -0.0467895056801646 0.09038975133346311) (-0.05483513322835947 -0.741041570227214 -0.5535228924296784) (-0.05762184344959735 0.207415397609025 -0.1248024178732044) (-0.1094857929041068 -0.1130286962863411 0.08186059898215972) (5.891734450835756 -62.44782696074438 -5.665584757665364) (1.149459424966874 4.197009175527744 0.6237627524038438) (-1.667294846578787 -3.863880925896963 -0.1486854089298908) (-1.389843838759411 0.9420348176065864 0.2924419640348962) (2.469840727725003 -0.8783225711919082 -0.7743452664145383) (-0.008895308644872814 0.01307193743178885 0.008326121448974648) (0.5598127391383008 -1.377286444205293 1.715282068038785) (0.8765394259750607 0.1753409348091728 0.03908955519454431) (-1.586872247259022 0.1880250396975253 -0.6081208324182923) (1.923473299154062 -1.070275235464654 -4.781872468667187) (1.54877683580158 4.459815457770715 11.81710153003397) (-0.1153352249700414 0.007955421511412063 -0.02176732531912696) (-0.1351604902839282 0.1411210347551177 -0.002642571608469558) (-1.274784513733954 5.737397946917097 -1.807032504057064) (1.573956168002071 1.847766051754533 -0.1610747856794631) (1.138125570685241 -4.132412180330678 -1.253799795988149) (0.8819601223115907 -2.023642284289477 0.422991009160341) (-0.1055111750993902 -26.38578012131886 -1.472109998611157) (2.359696770087174 47.010478166749 1.762033143569533) (0.03749483346120388 0.07919569587393439 -5.822390981590768) (-0.03089355569210236 0.05102930349633043 -0.07558942785278806) (0.5659105134559158 -0.07694103727160594 -0.1380365040700736) (0.02181874436696608 -0.02846306411397806 -0.06103778698433748) (0.6124972877346062 -0.6573090715214134 -4.19552347458189) (-0.04283624867294566 -0.024476298189138 0.073353402399132) (0.1637949855572543 -0.0320682547207316 0.3120023015053812) (-0.3053123544769892 -0.02072075689568965 -0.2186863145811864) (-0.3212401110227527 -0.8255275629079348 0.3274737457380521) (-0.03082521374735459 -0.01019905694611603 -0.005444670142420869) (1.291445291736543 31.37576711583517 0.2285083953355451) (-0.639646111241448 6.535334191501607 1.191329305331563) (0.04568834033321451 -0.01886809995037452 -0.002483842079691115) (-0.01614489845933428 -0.02958570924473151 -0.1562130083119395) (-0.09190294888351014 -9.12008484970036 0.4170370545475903) (6.177773314878622 17.67505829787321 -2.712450934816528) (3.393863446772565 12.34750290761964 -1.947276596246085) (1.944904525260979 -34.09041342315044 -4.378675295951655) (0.9638439851692268 1.077967973427458 0.2007256320691384) (0.2415347227047722 -1.995393447279196 -0.1684240711855103) (-2.143910392606932 29.76929566375827 3.525262311045115) (0.008678381481331598 2.504636261243055 -0.6243629981714817) (0.01318057162916929 0.03365395553325058 -0.005524774861241652) (-0.4302055932900111 -8.911633885097819 -1.374969267725616) (-0.3925474867979763 0.1421399667300243 -0.1496574694779094) (2.057006144620747 -0.04735539622928331 -2.726566210958977) (0.5028794351722413 2.559708685906756 -0.289907190391298) (-6.363685893900687 1.777159392492011 -2.508725024280127) (-0.1380823820763834 -0.06396428799448139 0.09098853209973949) (-1.499275122253373 0.2349916815133027 0.1455510119951211) (-0.03102303650260174 -0.5285447147085096 -0.005641497446480848) (-3.347411854158084 -2.437782508483771 -3.050051842949777) (1.789556549227085 -4.599113304578588 -0.7728742400685727) (1.618419847761601 -9.524486047003059 1.117960283786943) (-0.523135909452873 16.2282478633526 -3.751910391695795) (0.810752072212349 1.24496675621206 0.6183843516502316) (-2.069292370936974 2.160822549739398 -1.313211418085757) (0.1089997983100531 0.1830760915796846 -0.2259704919022499) (0.2038033495141931 -4.858750447174192 0.3807107417134334) (-1.182460823963073 1.213612974412169 0.1521935785041642) (0.1899778664955666 0.09116549407087189 0.03902725313698212) (-0.077988689097237 0.2702987737998839 0.7138587145861401) (1.304604260109734 -5.188490507820941 -0.2477154558179312) (-0.9297345650545047 -12.1234525497093 2.525695232162974) (0.1175900577204615 -0.001037912765964984 -0.07569437249558231) (0.07798083856912567 -0.682345556882996 0.1410105149082971) (30.62618867223984 -42.6856878526987 43.70143660532398) (-1.0930675749116 -8.323634950442026 7.359432652450344) (-0.1366142419614666 -0.2044907058038704 -0.2004555031954411) (1.140350732283567 -0.07198517124826151 0.1066743582539547) (-1.178579185508072 -3.727593913770987 -4.161912012534099) (-0.03509468526137899 -0.1889999050599281 -0.4361469825797606) (-0.001540585712323055 0.02224824637528303 -0.0108573910349084) (-1.208614447607405 -0.3865578236542972 -0.1908284021080837) (-0.7464720144330551 -0.2141610497931532 -1.202443223680885) (0.04869419077358612 -0.1080669970967766 -0.131759990545913) (2.187358886257787 -0.3375735909517181 2.467185325767405) (-1.587263837039221 6.389119915377359 -1.759722231305088) (-0.1583734945376217 -0.1334975155973711 0.01963577908816589) (-0.006222903013825205 0.01532500502239838 -0.01564093603009312) (0.001305022155494573 -0.005414371709996337 -0.01034865161474554) (5.045962295809884 5.835704292779985 -6.886684353156176) (0.4435195499436803 -3.022243502306595 0.03387419741020309) (-3.272188474614743 -0.09347844172204456 -0.7004501801388145) (0.5022339146251453 -0.4574674267041003 -0.2313610187421618) (1.01116889385047 7.976498805167124 6.159669222126235) (0.490056387382692 10.30819343110504 1.033197258323027) (-1.597106706703125 -0.2839454105482235 -0.1067361045840637) (-0.03922154600750044 0.07390610665367237 0.03648784537994548) (0.5975179299771007 3.071472712348919 -0.05670364531101615) (-0.9928005803686761 4.101639185775751 1.66240483499007) (-0.03937814144958004 0.07505776741198458 0.02687444645316919) (0.574688336167849 38.64450387155075 0.4390478085803479) (-0.01507575196302764 -0.06633553541058636 -0.08971810769887571) (-0.09919057400455158 -0.02890464805085506 -0.05212064263196189) (0.01123921630402878 0.09693168016406399 0.09143695297029611) (0.03553672798692017 -0.152276833082687 -0.009124783373055037) (1.155162384863047 29.05515760783565 0.8607096104511252) (0.03705535229648116 3.263400810957291 -1.113787870106187) (-0.05586977933304645 -0.06653077416641474 -0.01976292652515935) (-0.04722808233064632 -0.009767365268547934 0.0307996223127538) (0.01080862533075698 0.2380044377778712 -0.01450244699708062) (0.04139070032229013 0.108613357332358 -0.09287083680830864) (0.01976535369866246 -0.0629566130456093 -0.03548781384994294) (-1.224471863180838 -2.385710710290467 -1.674803403895589) (-0.0002455321628997264 0.01005674082650293 0.002276505218703127) (-0.6075698790744988 0.03467979707119784 -0.2673354199795537) (4.364878538066161 32.55994117056952 -0.1778010973862368) (-0.6470416945419551 0.8360838574190923 -0.6624152243288596) (-0.2130414949963047 0.7006487341825707 0.5472197876242139) (-0.1606085005960593 1.097970240221331 -5.63887109354493) (0.04600492182517975 -1.252096384726777 0.3928402542490292) (-0.2233346135833736 0.4971755956802253 0.1141840755339402) (-10.61021057158486 -2.154426497617868 10.39366489230356) (-0.6591355406145328 0.09804142247398462 -0.271081732088377) (-0.2664972601386481 -0.6724446512451282 1.972010289300934) (-0.2659536084419788 0.1099764481788255 0.1397448740386311) (0.3039098603745153 0.05115924868890742 -0.1308498990041619) (-0.004736751476161608 -0.0569616412296437 0.05143985347484231) (-0.2182621847848049 -0.01902120912553522 -0.0267729076626856) (-1.628711046032759 -42.69698984137657 4.390550687386493) (-0.01092839423204259 -0.03255029633042803 0.09073217871185638) (1.10448957041682 -44.51042975847835 -0.3904642566914175) (0.9770644044027044 4.068747426015441 2.272230922617435) (0.3360358645659813 0.2272249739552778 0.3443204455176845) (0.00837652825013209 -0.01174137876803741 0.01742281184670268) (-0.009049648908506206 -0.0173967286961889 0.005585692709024434) (0.9806402547592337 4.237058442134696 -1.674479585418448) (0.03096236371938191 -0.01924650236145366 -0.02240356505171948) (5.064398450023049 14.89957440411707 3.36768104347647) (-1.767345884328643 -5.761318175457732 -1.869549077558547) (0.1279011737477611 -4.803096947449252 -5.376543325041591) (0.04648733354913215 0.07570785568295661 0.04164496563081044) (-1.337176256653357 0.1237649509470703 -0.1533273455462995) (0.02870738612239297 -0.01170234563675237 0.005926365231305849) (-0.6053107494260924 -0.1980732128152327 0.7190885708193244) (0.1055982696547811 0.08406639994479907 0.0680234034164959) (-32.02547212940731 -30.17516889755536 -21.20812485766175) (-0.1700021953678357 2.05738348248851 -5.363676352712916) (-3.307687987894802 14.13297284325491 -1.831361735312882) (-0.01363188431338952 0.01921852097891038 -0.009879241777083526) (-1.156454788645374 7.682141519735455 0.3914442884237658) (-0.1209761373759862 -0.06973707527151539 -0.002140092866864791) (1.109657273511221 33.38536797777784 1.490487660746064) (1.35169174524692 -0.416207075034451 0.7736874768757842) (-1.185313067040727 0.5391370539735236 -2.856916890918728) (-0.080691765258564 0.08145963922300231 0.04896998249611809) (4.037123937792594 9.722765893669031 0.4771188364561836) (-1.030369193708322 0.1717996350574038 0.1361481894750414) (0.1512620355721012 -0.9593685935832206 0.7579872543116329) (-1.778539737704064 -0.1880616644599961 -0.515550745870717) (-0.006313137881097546 0.004163430351202563 -0.008252237316664723) (-3.024220037073478 -8.305161957056395 -3.131852029619585) (0.985430561615885 2.048367439522864 1.063358772566778) (-0.00658846663597417 -0.1004020444437288 0.08859512028901297) (2.629157697837734 -0.7703398549273635 -4.81599540269654) (-0.3526612876235526 -0.02347891995071327 -0.3750183478438182) (1.411190560144056 1.113629640741838 0.1288000249616183) (-0.1921152421503432 -0.05489349423867784 -0.1669157818741995) (-0.294653076885744 -0.02780028748690484 -0.07418713348058109) (0.3638674719986743 0.2362293074376481 0.06651069322072808) (-0.002947611059791368 0.007262962571468754 0.03143913271247836) (1.353050749744751 -1.289265663213255 -0.5727896487535886) (-0.04668055565879566 0.0291606007810765 0.01328509037193842) (0.2589474136319593 -0.01460607137225986 -0.0123255225276527) (0.02780828460368167 -0.003582465841453737 -0.008199424347302725) (1.302151869680065 10.4761665486031 -0.9734758441458982) (0.0175921050258484 0.0328761767436092 -0.005345567486100319) (0.01758410198314152 -0.03530689497202051 -0.05429218492283212) (0.03049221464120916 0.03270568949405959 -0.01125221227891896) (-0.9774214147063591 -2.243138325821517 0.0389704089149141) (0.9314737829461619 0.009890161017814258 3.937602902428892) (0.03955785217255806 -0.2523011509219611 0.03441698117957577) (0.2132010529316499 0.2506669634553212 -6.416090009088263) (0.2431609479945543 0.3349677332904351 0.00973081383596628) (-0.7627944987482498 -8.286519267876365 -0.04094719135954183) (-1.907617536007797 4.714949925558043 -1.657401517500702) (0.08962586825499411 0.008833535206058639 0.05126465470274896) (0.2214436065219414 -6.003935494957175 -7.985500237539158) (-2.482429215452297 -28.79595622238742 -0.4345676528322066) (0.02836506858641811 0.4211752661105508 0.1406017321813794) (0.06588945755560432 -0.04863646410800233 0.00588471802298491) (0.01028877892642302 0.01275905278733933 -0.009381705213108367) (0.3177324180798359 -2.537000793436536 -1.103372137401138) (2.591881381345154 0.684482375603115 -4.541583505264056) (-0.5645521479419011 0.6263251248647522 0.5281442518937853) (-0.9098323560177067 -43.09589346032725 -11.28289965555274) (1.059079572807137 1.760548253621409 1.308038015653134) (-0.742273940142772 -0.5928026894076944 -0.317831927060611) (1.407234843549703 -13.06515439600355 0.7615729687407639) (-4.677249504831776 -2.286722520545799 -7.54538825954543) (-0.7760598675303567 -39.66892081206631 -0.5860072554587762) (-2.341179514201656 -0.5577819609548726 -1.169802988510314) (2.654023019818009 1.411383585249183 -2.249328394096842) (-1.581763671322974 -42.63448012082873 -4.67820601811307) (0.6242410331811359 0.919105000460452 0.7902458876468372) (5.406751134408799 -31.02587749245529 -2.600817099544753) (-3.006870657000432 -3.215336388371124 2.551142529182103) (0.008796210515544479 -0.3677038150172721 0.1659571564800326) (-0.5814148274577985 0.09319174610050929 -0.6611152093012048) (0.004893465862935931 0.04826865905689906 -0.2084521320045341) (-0.3322529885908583 0.2677846582421654 -0.002663739427233761) (0.5759356940093998 8.890983976897703 5.438140917473895) (-0.1259710762581457 -0.005917140573661727 -0.01975470467614097) (4.995477486041731 -57.85684207744742 8.013272118239209) (-0.08930440638891823 2.656844938172206 -1.273377287619597) (0.2931967830516308 0.1419278963700916 0.1909342397763311) (0.01118571365491003 -0.008654465638512366 0.004145854141719104) (2.567317153997534 0.3492942517736413 -0.04222158619644339) (8.697153191069914 95.05942005716925 -3.395306226173399) (0.2810992591700612 0.220086146179221 0.01671052200933035) (0.01211138035641068 0.01725756173751201 -0.05763985737869189) (0.06907894415243487 0.07971979131966708 0.08117325222491556) (0.3340192948719243 1.473606183370638 2.000077480181838) (-0.07403309906183081 0.04988943806474355 -0.2352103777434692) (0.1056438584526056 0.01404267873235465 0.06098454088356491) (-0.01643900065523211 -0.6260629479726917 0.299741675155843) (4.375541040104172 81.78413734853108 -3.155234606946419) (-0.3723987009214554 -2.290404177982645 -1.736394126957776) (-0.007892827425614375 0.06410099604968252 0.2547304470102585) (-3.005631702169622 -1.943034052346427 0.1976228140282895) (0.5102795318501163 9.330721302883918 0.5655445099307592) (-0.01494161422672438 -0.009770811528365647 -0.01369093453715391) (-4.145255137433031 -14.6585352434807 -1.986833498135505) (-1.012414939438841 -4.339791382916516 -0.4788688508343484) (0.6137203356260923 2.012371484581529 -6.602567790956961) (-0.007265580743852052 -0.006268634461687195 -0.01684868861751515) (-0.2397502367900599 -0.1742610996650425 0.219808103673231) (-4.484368602812084 -5.499342153598807 -0.7439295321545227) (-0.8877085950331004 0.2687232919250012 -0.8663912078639078) (-0.009641759043892511 0.003893984768596586 0.01113570178469798) (0.4535695708255252 -7.063479701530745 1.148821032893501) (-0.03823484134274285 -0.002830424038496662 0.003447160279811802) (4.779354548625912 2.224111174672237 4.191608181392938) (-0.8617565478012941 2.384156636250091 -27.8209028036694) (0.003931176339200421 0.06185525229449522 -0.003750939923132147) (0.1313751544627335 -0.6651258583059299 -0.1214806184516829) (0.8503556077179468 -1.300287974733568 -0.3901553581371913) (6.168126227878092 10.33639907571894 0.6143423985565452) (2.143093477858506 -5.865153789680733 0.4063574753527287) (-0.008489801072566236 -0.009626980836344928 0.009869976533964497) (0.005346316511059043 -0.01008830349679579 -0.007840206141682867) (0.02770188432127357 0.01282325405754447 -0.02104308539050979) (0.7526844451827566 1.655446267182255 1.222100323216025) (-0.02683302284970529 0.2890643378890607 0.2157899737610841) (2.387473623233153 -4.282803419243758 -4.480856495285248) (-0.1265188089816517 -1.011806047472565 -0.03387048454069398) (0.02233326422022433 -0.08014351388475502 -0.07208812780758697) (-1.698469835157669 -1.078648447707053 -0.6673346235473734) (0.03324338108065723 -0.002197770683319221 -0.07852031040476287) (-2.547714092490467 3.676068195164633 1.55442529799605) (0.1046731830854935 -0.02143853443964526 -0.03113955808733123) (3.864211594405949 2.670388999913994 -4.185815557610678) (-0.4440437720269179 -4.967052797884583 -1.803020564568733) (-0.2000920648758114 -0.1038352313629974 -5.813830278996829) (-0.7020804547768081 -2.428093978188282 -0.3429503984809359) (-3.767409057912624 56.85040342527164 2.689811180412805) (-0.6138167573159784 2.590992846953628 -0.5693462140159087) (-0.02733626842010191 0.006296106900828593 -0.02073894064056582) (0.002579793649742708 0.005671361259409481 0.01291034251561998) (1.852295247882032 -51.76778130208981 8.902574110962778) (0.1717812868580169 -0.3536379804321649 0.06346039452067913) (0.0006343442709754801 0.03969202611462444 -0.3339500830008189) (-2.321050126692008 12.92688586159051 -1.367379198812921) (0.9242718442040523 4.62947817876035 -2.966892296965572) (-1.675108160703523 0.9879634495434789 -1.322046650831007) (-0.2736429888748241 0.163423123098573 0.6968336272256173) (2.422737106786212 -2.693861895596544 -4.343304093544527) (-0.0254470243321708 -0.006317808199079862 -0.0251780492298381) (3.284907877978292 9.539271501628805 -7.318446554904801) (0.4575534304430042 10.75865278656797 -2.010305427829182) (0.1795793205572326 0.08835648099320073 -0.5671226967932218) (-1.029614513648298 -0.8998537811461329 -1.669575386153009) (-0.1948597086947962 0.05832949373014742 0.02887073073677769) (-4.920886983094322 0.6428612597860799 0.09608431815025062) (3.051950650774387 2.812317522963869 0.1617705556492802) (-9.322619826432973 9.216461393016258 3.435338783849189) (-0.2928939068869102 -57.38037633367212 -1.490160630049198) (-0.006208147591707323 0.003217632361381844 -0.002034621551464897) (-0.02731659963155084 -0.03964610818989586 -4.297773033328947) (-0.9578055471638605 -2.415010777510859 -1.847518314583005) (-0.0299198925364794 0.02239664819145615 -0.03412429480578273) (-1.363482621986617 6.17381840619635 2.469157842056612) (6.476882290732075 7.627663463694203 -0.147307259883153) (1.175159347312427 -1.808733335754444 -0.4359998253255859) (-0.01975889388344348 -0.2596883298026757 -0.7722606265248453) (0.009654096523547553 0.5393778916848566 -0.2198098307009211) (-0.128009613852816 -0.3977181009162375 -0.02567847090599172) (-5.815587801821428 -0.9109613912011948 3.105689015310544) (-0.0137462679472043 0.01704011743702459 -0.03324287674019943) (1.272416378195564 -0.2933990923866852 0.4511840405015354) (-1.795406004874213 -0.5602003300934006 -1.2035731499571) (0.3455983087911458 0.1761994500445088 0.5350082069080426) (0.01177861357598184 0.02540763857310653 -0.05184186439996221) (0.003350979810117324 -0.03083507864294132 -0.07205438666896224) (-0.003031389502066791 -0.003552987790159006 0.005176513970252132) (-0.8301730442731236 1.854954654691768 -0.8756394652384005) (0.3463361428385379 -0.2244547171791262 -0.1626701975148794) (-0.1516265407793577 0.5302312682153592 1.230999618835108) (-0.04118606862888928 0.00342548345794956 -0.0007439666479717236) (-0.004765667935710914 0.009787485687315262 -0.002127329188466592) (-0.005945653880201567 -0.002896362112041388 0.01316204981403622) (-0.2132078446063252 -0.175572062597346 0.6185156480972366) (-0.06585719974962265 0.03041220494675858 -0.02031001567464603) (-6.563298064677935 1.138453339898347 1.953398169592837) (0.3389832542144553 7.653821582833429 -2.207330110687766) (11.25425643020453 9.70269600486599 9.668786537950236) (0.2836432527700443 6.689142752235178 2.342763453646392) (0.6953809701644003 7.314557831586157 -1.099187582986624) (-0.04924727135463573 -0.05721470103628353 -0.03884599537939461) (-0.4152263791231068 -0.1087851763379944 0.02014019896073746) (0.1800919545172819 -0.104350563800558 0.02492801117086332) (0.6914226204473007 0.04128575293673703 -2.038264450277271) (-1.15588471526031 3.006379126517356 -2.215400740221208) (-1.742628869766096 0.4526089443757561 -15.51400499535228) (-0.00486815389675605 0.003631429879361871 -0.005755822320449112) (-0.02185503063090578 0.04719319411070649 -0.04742930129863052) (-0.003245145799184352 -0.02550160921687535 -0.02455762557436884) (0.04819499174993012 0.007800046815977718 0.0786785216437584) (0.01949362783095991 -0.01259884899175545 0.01339044905317736) (-0.2523086787088422 -0.002842442053266414 -0.1769190654954194) (-0.03611074047302212 -0.06403708092662919 -0.0620579021740105) (0.06120655953151251 0.0704846062438191 -0.195477322491393) (-1.246366247070364 -1.059267984520441 -5.543765732961636) (6.315013712022038 -4.616166650970126 1.384998713889862) (0.3276118267742185 -2.755700450517334 -0.7067340034917476) (-1.702073756059824 -0.6984734114200983 -6.247646983673095) (0.1411453518647993 0.02143022549914601 -0.01085065921712786) (0.08956103944294513 -0.148099662895151 -0.1638612529787729) (-1.45309673521486 0.8543379709267386 -3.474566276343037) (-0.03252626931760029 0.07641165772273825 -0.03387333977702112) (0.4172012236962216 3.821876131460088 -8.001939847416875) (-0.01842580195730191 0.0804096492111139 0.05958834665742438) (-6.274612481302317 -20.38778168571987 0.3391917311392616) (-0.980953450405942 3.419289562926219 0.9167969317004427) (0.03105129458379515 0.01989168730397886 0.03118059905931247) (0.05953571699637651 0.3353460194422089 -0.7481159849336092) (-0.1963715495995549 -0.2253356570218043 0.1747065518368949) (-1.754889108637912 -24.78791930110395 -5.92618135669526) (-0.4657975102283382 -1.869854519032011 -0.1672435712362879) (1.507380903938029 2.403513916308734 -1.883319379866476) (-0.0008672034447329661 -0.002967224577635869 -0.007706752142088572) (-1.824176600809641 15.69931610905383 4.130080271283462) (3.381469712088639 32.06252272530712 -6.900610258623206) (0.1543405623355626 0.06238000020830784 -0.02891999579983361) (1.315383298991669 1.505093480456121 2.786187835066097) (0.8546107327805872 29.52485692796226 4.84324879205408) (0.01398252894888219 0.003524387275558677 -0.01091939888175577) (-1.926905763729316 0.4997617335796244 -26.83158330380491) (-1.288429119060065 -1.262916690037605 0.2116689633603682) (-1.873256612165911 2.351673762081312 -1.281524670917965) (3.096710738322086 -22.58444971567584 1.446820846434825) (-0.3395810341620231 26.95418936078168 1.22097564273334) (8.852035072409668 1.907445463732126 -4.440966075750126) (-0.01618235475224246 -0.2099335049623843 -0.2756252142412888) (-1.087806498148591 -1.873559786033858 -1.55006403422704) (1.011086000166576 0.7971927315146659 -1.720306941252816) (0.4079212272376801 0.3833431082690931 -0.9114742302822106) (0.07287440638418854 0.01884071897365204 -0.01122510868110636) (-3.655570953863563 -42.92600853841122 1.766865115818467) (2.921457460857392 1.233953842050995 1.275609961914681) (0.7754680413233754 -2.445600806968572 -1.488117132170704) (-0.1354678377402077 5.144241864036313 3.216151994932011) (0.3036460434494768 0.6942218345060415 0.2976294877665644) (2.021898298191477 -1.431216498998753 -3.428533837665961) (0.2803653189441996 0.9520104881517936 0.4597570228403813) (0.2992155829045144 -0.3195876270984471 -0.09933440801441423) (1.383802902591915 14.65250104771738 -0.1917559582812347) (-0.9745388870145537 -0.7191961022941559 1.337120625658825) (-2.383256651921 7.192246202256625 1.055349849932143) (0.2424399533623261 0.4376012501291781 -0.5416202724972017) (0.2821082337714801 -0.1551930670323521 0.1753870534915373) (0.5262900204565341 2.725858369700755 -0.7824756321376222) (-0.1550517136607996 -5.585409644253104 5.23576987693922) (1.601861849634191 -14.38972087662772 4.663893099978523) (0.1639458589194502 0.2479421045887124 -0.0853573950656418) (-0.02162566739220823 -0.0310623851211116 -0.07397821701236169) (-0.01089098576012066 0.001621172858321328 0.01826603328117951) (-0.1402902033214088 -3.802246371627811 -3.809468893422497) (0.1393948012076472 -5.326642516190758 0.4432218366677644) (-0.6144556663486413 -1.977041557791467 -0.8700288166409361) (-0.04689972164492395 0.1723614146834261 0.05495802351066104) (0.08281788312362517 0.09085200597313232 -0.3458737821211155) (0.5864939179805613 2.936370412109183 -5.236706548649953) (0.003250426717433343 -0.1345815926332882 0.1008110410487943) (-6.702536914789078 -22.83854274891291 -19.80043844137909) (-0.4664312723942476 -0.1025150818834015 -24.57339806199351) (0.1661242729636598 -0.003066147332880159 -0.08509305006634632) (0.110450558203061 -11.64895054811705 4.437495393118837) (0.671696872516081 -3.609863165568198 2.158333138030589) (0.8469414565401527 2.163449405296566 0.888539282983967) (-0.1175734702078552 -0.245112233700198 -0.2842413088691529) (-2.110754834653091 -2.066020791312638 -4.492898041021843) (0.5700090410498221 1.556593818768227 0.3258805618113956) (0.1127350289119504 0.008412818370620204 -0.02310544871911838) (4.858295993630746 0.7522948834118901 -4.74435618133638) (-0.9701367618949305 3.02944088117617 -2.734981587314248) (5.156912907432194 0.2325858517941193 1.114822019228099) (-1.582914490646668 -0.6902200445587822 1.06492560027667) (-8.348829549521565 7.030428479264561 0.5252957517196746) (6.048300202363444 -9.242250558889445 -8.017806256293881) (1.176646048179474 0.4080574431143117 -0.8407703495586689) (-0.3015829728198568 -0.1281982934378625 -0.1564900145697256) (-0.07813944407933285 0.09309436008704744 -0.09620620643165395) (1.906844757956715 -0.8194382166632016 -1.502820386484731) (0.06623763585244591 4.817711131726025 0.1993777520132111) (0.8097999257824916 -5.847298372921756 -1.59483478430464) (-4.276416686710888 -2.8929681901167 0.5565291488071455) (2.939351791200193 7.205833287142307 1.990648532571763) (0.001978587753173931 -0.01930622920991208 0.02535527408494468) (1.103917051575778 23.36475453072699 9.050638543526105) (0.2069049677058237 5.597102332384448 -0.8376932516023707) (-8.684100276981262 -12.97537210319298 2.987034653780465) (0.1395053292341249 -0.06629498834348194 -0.001203856312441045) (-1.022318940118898 1.030152377805635 -0.2604602086471666) (0.4587856863736878 -0.1183498322656344 -10.87845011071512) (-0.4906281705116822 0.2852593872574818 0.1145904840878418) (-2.156870235568965 -10.1318923847927 3.229106493722868) (0.1095467875250648 0.2837707654414605 -0.0365095371706434) (-4.417407816572114 -6.478930336569011 -1.348135377902335) (-0.05368151123847847 -0.1139975759169509 0.06433421693950325) (-4.585555012931066 -5.234906656889383 2.181917022977206) (-5.204333666007996 -62.54952748858346 -2.036088687740189) (-0.2947437698237477 0.1464116300918552 -0.1749586949883029) (0.08839934956012584 0.04401120625122409 0.02511349862853096) (-0.4317979637409872 -0.2585729120055357 -0.2146034902737842) (-0.06046053052001209 -0.004133750648714525 0.1869474843951396) (-0.3404629793955981 -22.36045135872525 -3.043747636979568) (2.350680399851814 4.042196534890018 8.409407728071121) (2.800423959197513 -2.906311813507478 4.32659249922931) (1.955478357742857 -63.75674898882782 -7.194793477477263) (-22.04824461219835 -10.98772178366117 -9.265425527576916) (0.08238631912714789 2.737077559575922 0.9456152611002805) (-0.1286360311122877 2.551010987391049 -4.679730486950841) (-0.3532690038683815 3.731003593967594 0.4619195011655909) (-0.280659986417596 -1.55798068113491 -3.873949957319378) (-0.5173599521102776 6.710978918405807 -0.2857560000463937) (0.1314448520075424 0.7175995451810158 0.6714035800830371) (-1.583042823190882 -7.720975323884828 -10.87752139910121) (0.1275776119716717 -1.441743922545957 -3.016959917904901) (1.91270407538182 -0.6556540151948402 0.6296078509622015) (-0.5161096480811432 1.481509244004243 0.3804899193976886) (-0.7342093471185306 -0.09106772669835089 -2.549943684115293) (0.2114792295670256 0.6132566085978699 -0.004585696876691629) (0.5347111961908169 8.960055806857374 -3.246645445284504) (-0.1785763191352104 0.137125455235038 -0.1096455653448422) (-0.0257957452240407 -0.01047146947118665 0.02743149930742836) (-0.01288139116357131 -0.01670991331700964 -0.03255790060329644) (0.3970725515140324 -1.317474441107179 -0.3453190439410139) (0.2586812418663765 -1.060890037223499 1.861893695610785) (0.6625023142846077 -0.6373462625325459 -0.4446210374837638) (-2.43273723664348 1.178443977696365 -0.1998619641166104) (0.1971318252970902 -3.798238935266608 -5.546313595747511) (-0.6360261297569598 -5.976739523098406 -0.748484974023127) (0.03585621449158194 -0.01423363292543843 0.01769595560948886) (3.910406887246342 7.532479342186356 -5.499060827015607) (0.03489473960488188 0.02047139267580894 -0.01988425932805511) (1.051281320293562 7.202326279750766 -3.336492780570641) (1.509239677029008 40.15672607458003 4.840065763616234) (-3.309917126543641 -1.125785038568957 -18.92312897519279) (-0.03613285754876356 0.0239775309648738 -0.08730497077320491) (-0.3224817241596329 0.1079231189826498 -0.5629192197646693) (0.588730251348712 5.7656757694717 0.3031952653000482) (2.551421283211843 2.666236518185602 3.278157163739244) (-1.512321783945662 5.062960811297625 1.710288497132848) (0.607836157201102 4.725813869398328 0.0191640131910068) (-2.045816073541395 -2.592619264325497 -0.8863286087132278) (-1.697534078613611 2.260037994902053 3.10507112411196) (4.486388018062229 -8.745141316246324 -6.868911976220086) (-2.318245388544232 1.042548543993231 -0.5755709502166044) (0.3747505580221889 9.340399354946747 0.7550889547118426) (-0.01865271133348573 -2.561350253170752 1.301708194591434) (0.1119577400579333 -0.03756672025428409 0.03026077386722784) (0.3308653840932437 7.349863486224762 5.301319451001063) (1.311034031630724 2.399214990362541 -3.15670937442442) (1.357597737790343 2.861257260448453 0.4248305142818043) (0.3135090015134055 2.259724672431651 -0.1936942307034459) (-1.067493170898588 9.043697247442887 2.605217072416193) (1.179335058791294 4.275191700945633 -1.679956664480641) (-3.550542222853016 4.861317272959065 1.084974324845868) (2.995866566943025 0.5040422924539554 -2.985449453689359) (-1.512255693190425 -1.749642767254345 -0.4073729073382614) (3.680755556623436 0.3300512649913376 0.05548036433319246) (0.8899830924990066 2.192445400256674 1.71008433600295) (2.060786509357976 -4.594772432263394 -5.503323875589693) (3.907626078647627 0.2486947751353384 0.1369366575988558) (-1.28376763934366 -6.261328847866518 -0.290577008953211) (-0.5307658154160849 0.3401574821833704 0.07470715298199507) (0.3194016510638785 0.164379148458577 0.1308001121978964) (-0.6435930853376934 -14.26261856788676 1.407622763088738) (-0.7185492363330046 0.3849741190240485 2.065038438846612) (-1.123935027997066 1.692007350551848 -8.142624571048405) (2.018156083600581 2.86263909440353 2.703888704123524) (0.001505995647325675 1.760474556662118 0.3767195106993309) (-1.187283954700811 0.07987959453778037 0.9382636345487593) (0.135448324209255 -0.210707724836994 -0.1043907292465561) (1.049073100812237 3.33481807660546 2.330826629737187) (2.113467000108495 1.033533154773816 -0.6930230694544133) (1.076564766399233 0.7753839535072009 -2.028156690742819) (-1.001090158822496 -0.6911771279195744 -0.4708164689104555) (2.625081232029596 5.596208999418212 0.353050930460284) (0.6862726788438152 4.807565384078631 -7.880192018317758) (5.841902051870708 -2.851342046962985 -2.174647785709166) (-1.630817372498718 5.232662769107839 -1.523080566369045) (-0.1463578951452595 0.008275883125717106 0.2158299819824653) (-8.238439957902807 10.4888893868489 -13.5708375269989) (-3.335899121015333 2.815830802274337 1.113587923766267) (-0.2750431080706492 0.03139933117431275 -0.05708986274229651) (1.643226501076358 -3.713389432114999 -3.106451647180159) (-1.266454931808795 39.45731253292029 -1.146017619173409) (-0.3115801129492143 -8.201829671202113 1.303463332516738) (1.422077649920617 5.458131632090934 -1.920845699709033) (0.34880914478174 3.666339813296645 -5.113343393444445) (-4.940379874529048 -37.95987181170055 -5.562410416153482) (0.1244861241761847 -7.7839772710761 2.130252670964862) (-0.1136809562703974 -0.03151952494718314 0.09905761949795086) (-0.3028764804084478 -0.0368723856620411 -0.3887745770745283) (-0.2402276671819057 -0.2339454782065968 -0.4357973680305855) (0.1476534221770098 0.0849295985288034 0.1469750069777335) (0.2459048203620332 2.472982371710446 1.852381953232819) (0.1254688400794464 0.1536272873758241 -0.1650033994276426) (0.1972825374146692 2.496049135913653 -0.9930272439656248) (-2.803310849681375 -3.686776009826919 -3.385682655901218) (0.2703377528385598 -0.01554265994457463 -0.0689882066045614) (0.2447808878267655 -0.2220309825424389 -0.9627054778647524) (1.772449042658508 0.05598663815134741 -1.615541296535212) (0.039621669695747 -0.01849360839644198 0.02254114008201211) (-17.48269241810048 -5.17883706839481 -5.769170041009596) (-0.2872791321233741 10.08083065268482 -5.833033540878766) (-0.039171249998254 -0.1421019965924925 0.0753150283698012) (0.01604403451824542 0.05908655732967075 -0.03274536877606055) (-0.4143006632031924 2.171569080285552 0.205333564730318) (-0.1511369880439511 -0.07178447615625658 -0.03220238585165014) (-0.9668146117562394 6.776874621568809 1.534987466194581) (-0.3451953235641061 2.373773635278958 0.07617052834022953) (-1.665894413014884 0.2739092520103094 -1.409668755357258) (4.42259275027171 9.004355786557319 3.353982527240469) (-0.8689414362157796 11.61117657095681 2.124472962427812) (1.284295644197302 31.08615884752095 -3.062545995578664) (-0.01239313686153579 0.06753862330368958 0.07968452572604962) (0.1288477296014414 2.984180367712449 0.2395627750257174) (0.9210048182795428 1.278360907416351 0.01840380967597233) (0.3165466511725922 0.3215211829513111 -1.465897559348577) (-2.824994733890608 0.06273004431413262 1.447214390634881) (9.843835587051327 2.540392693411106 -0.9556540357515355) (0.02167728133087234 -0.1712562620398552 -0.1486872207334145) (0.2456488193869064 0.9365454437111966 1.256810308008876) (0.5830913209504017 -5.545179162529086 32.81109596771221) (-0.8258271078915743 6.740058871789079 -0.9548345663923107) (0.1066645489911028 -0.1416300485204509 0.002102032343308163) (7.156629943805937 -39.08438825086001 -0.162559957982143) (0.04383098317915588 0.06316406893804005 -0.01818264148855164) (-1.986130869212107 1.968659522625829 4.654245416666717) (-8.257328801733086 1.62690767549893 -4.876189202051301) (4.144716166642013 0.4172165122499418 -1.874728421629869) (-0.02637057371688902 -0.04823000827914796 -0.04907392139567783) (1.946318672824471 5.690056998829466 -0.6993344564292145) (-5.348478936040257 -0.3435419378209912 7.014959398837281) (-0.008982089470695937 -0.1547010695475761 -0.003668937970977487) (2.003705835768124 5.803892698379085 4.806321176082331) (-1.912127862527998 3.181295706450723 2.269463993788126) (-0.07325697710402525 0.08315039489482202 0.0022203459653701) (0.001767494570899197 -16.99563130109892 -6.550069775874617) (-0.06528725583667699 0.04780887615826641 0.07513227229570402) (0.2772977200945318 6.561852604888337 5.061173229690893) (0.01816937248679503 0.001883646219784577 0.0001625438235222407) (0.8251454581736409 26.72575187427333 -2.423162980691103) (0.4091785610533551 -22.56945183089352 0.07276363535461788) (-0.1048891426114194 -33.20527024487851 -6.665871955895399) (7.580443362011897 15.05288183186338 17.89685697983251) (5.470975101421596 9.020932656634967 -0.9757035439138257) (0.1183704698369921 -0.02691621584426646 0.0483527708072793) (-61.68830433603456 -86.12606399834665 -14.24138384343127) (0.5289666664265238 -64.62237873592079 -10.6807626490112) (-0.01828532020499419 -0.07669363078680733 -0.04024778814270998) (-1.341618101666183 -7.175819881400725 -3.158792890165874) (-0.0729855508709011 -0.02658975909934592 0.0004879499350630635) (0.09815429910873938 -0.1430879692429281 -0.3676842140207949) (-0.8811274742317718 0.9847629491233258 0.4047144844569442) (-0.3485877420886936 -0.2430186250707657 -0.006601723411724839) (4.690130576708487 -11.12379723134401 -3.141936913003127) (1.991369639578733 1.038101076141839 1.671447800434088) (0.9801814166610796 5.00846301452513 -2.40260479066149) (0.4479379129537084 0.7549074370961409 -1.013343723184161) (-0.003775169760446657 0.006615229881731466 -0.007094184051533134) (-1.168932086759078 -2.287220323599847 1.14509646572634) (0.1807468757868175 -0.3003302382866415 0.09957423854731885) (-0.72438746917887 -3.161617229016388 -17.00620506173768) (-2.69081754435536 9.294608359952342 6.263213887490914) (-2.299134383346784 -8.088025663436616 15.89903767816828) (-0.2346812266682672 6.404891715163887 -1.612571206153297) (-0.3591122757456258 -2.125386058938945 0.4243405773344758) (0.02792437560454464 3.499807921169662 0.3676399141747559) (1.942053933083176 -0.7602424661334052 -1.795666590779252) (-1.180882463221039 5.262075353077393 -0.7855892391817363) (-3.682982240378009 10.39674607733379 1.670455198657873) (0.2210915892633474 -1.670106855863679 -0.6241090471600149) (-0.08453133360536849 0.2184757712464543 0.2332592082475672) (-0.9744547954867924 0.2780839877572646 1.011217463647105) (0.01014257514985322 -0.01079301592665425 0.02002923058507313) (2.307659508993184 0.5411074661274313 -1.237029374419478) (0.4836295153963648 0.8688937087903891 0.6811332262233303) (0.08024988988312029 11.19562541932938 -3.737407420457159) (0.4871829615788903 0.9459375949140013 0.008026088341808679) (-0.08851167883631693 0.04326723237823984 0.04327838976142395) (-0.6846021697707296 0.01128563987159215 0.2037176552321133) (-0.2701303518211071 -0.1138066165881292 -0.161812203522083) (-0.9607841001069708 2.155746683176922 0.2416407922576451) (-0.784060935336006 2.987779315263587 0.2207068164443107) (3.766766389644071 1.367971810704143 2.006598278752332) (-0.5832236509367225 -1.796640635284345 5.881755382780332) (1.946430742491594 12.02380870821493 -4.18579964962157) (-3.488549820987955 -7.608755095692691 -0.9314141258266029) (-0.1041223554725182 0.1967361391086446 -0.1222799910953711) (26.1215431324142 1.812087699486582 4.484243413853898) (-2.191980191594979 -11.7965367744193 4.694266291676747) (-0.4203419348527363 0.7472798968993569 7.470090688777063) (-0.04395149149842949 -0.292329821904544 0.1440285241736116) (-0.8714676074248877 -0.273064817248367 0.08209530789822583) (-0.2652319104342353 5.421385819159272 -1.170686434683532) (-0.7691693082526039 1.866760307635583 -0.1179915752575198) (-0.03894041322327757 0.7530501569481819 -0.7795838690539593) (-0.3876297573140235 -0.005903046348974539 -0.1126555200958931) (0.421033267413833 -9.540512275733532 4.787890276815546) (0.03207765422610514 0.03004769708625524 0.01727787801805945) (-0.1708325800516249 -2.538687694534029 0.1126129839824016) (0.1429477451612303 1.137166502628283 0.07608847652079953) (29.30819739391249 -1.477570569734632 1.640876612049981) (1.057362348656254 0.5644974226676521 -0.1646353593855292) (-0.09329425075617832 -0.01943365141569257 -0.08425045102759267) (-0.06917065494500953 -1.488691495450672 1.240032291361367) (0.0008959221126665293 -0.09375469751046482 0.134029321778056) (-4.711705832625764 -54.23770447550108 6.945851152579546) (0.146975401954302 -0.1631144304860969 0.4126455664757003) (-0.02587914102122599 0.01321998048243182 0.0287357991933478) (-0.01225247856735965 0.02703083233960589 0.02106952811625748) (-1.703631785033476 0.3953873924126969 -3.518783138727216) (0.9288716764362805 -7.869211631790145 0.4128351404989123) (-2.483570320989688 -39.37379519240348 2.398946262307958) (-0.1558396009264473 6.015774700853442 4.449249924630607) (1.160610846500271 -3.474801528308723 0.8552261702418815) (-0.08363165090715328 -0.1980179463985177 -5.510065109225377) (-0.02140925921330107 -0.03061336423996533 0.004761629449002331) (0.2497905440302634 -0.2898520576242631 0.09646604165472901) (0.09320858845782946 0.2015493205971557 0.0670383310618186) (-0.7039773737058439 56.26688963237708 -0.3246036798130982) (4.867325181803284 -7.754365833537635 -0.001644379259250872) (0.09480612413307014 0.1145174028655939 -0.1887910234194445) (-0.7760507835977302 -5.263894667169716 -1.559378439109234) (-0.09458626626940543 0.08340763247277327 0.001381325155927267) (0.2732854197874789 1.194871574186091 -0.4964571589336067) (0.3085887423426704 0.2051424005953348 0.1895243619405918) (-0.7529769508545253 7.003359826703451 -0.597586875927724) (0.6260657910674569 -4.671138342472308 -1.022846177975248) (-1.062132902166894 -6.952294705716752 2.66365217290695) (-0.7026280608251843 2.705607570013775 -0.9367623903526283) (1.083583766141309 1.608246591259576 -0.6901064507464507) (-0.5097220854525272 0.05622000795603331 -0.1274191095879513) (2.724340040512482 -9.103643886467522 1.678182985081134) (0.2206337404275655 0.06165927279416924 -0.1074734209705529) (-0.003371017504574469 -0.0115653441555913 0.1333964032785785) (0.0380194453370537 5.814043543100224 -0.748035576677025) (0.05127307065108726 0.04499573357180131 -7.062395380322118) (1.911634159648459 2.624612061378487 -0.2189287406037742) (-0.006381736849261244 -5.127155304910472 1.992449592004958) (0.2614434279033842 -1.186499074835076 0.000253477415765313) (0.2079031249271927 -0.1994340507252723 -0.2321408784344214) (0.9399605599914098 5.465894137192087 -5.846104644815805) (-0.01699977218763258 0.001128732032082698 -0.00936233813996714) (0.3403284395069975 -2.344473437577169 -0.57895461903443) (0.05283071449153164 -0.1127219317868236 -0.1245768827857006) (-0.06724398765405779 3.578060190833689 4.179878905085371) (-1.368104397064039 -1.609144243999534 -1.921054124861352) (0.1362002839623267 -0.06803292351891067 -0.0683351192833241) (-4.018779729168523 -1.174892706704647 -1.127881131951054) (0.04275044876190748 0.3624090805216528 -0.3218860595477143) (12.61610576695694 0.5977350611549666 20.5536402364007) (0.3439328583909836 0.2684423205897055 -0.2184668352872232) (0.3999433317159456 0.5054215846167521 -0.3918755535383631) (0.02066810885290758 -0.01604187555218643 -0.01775543196876217) (-1.294244637342397 -6.977525538066903 -9.730746890645264) (-1.082403730333886 6.533365430343872 1.990045472107843) (-4.383276690999849 -7.97752846116038 6.215935050897968) (0.0257679202131573 -0.05348333098437817 0.01029143871433002) (6.324132759672423 15.4869258340702 9.501997304281698) (-1.015679450747939 5.907992569444555 -0.2198019055456468) (-1.200632399333846 -11.26447816370029 1.44960729071269) (0.4934363839732666 3.031298266878044 -0.1545916574070472) (16.92268136314566 -1.424130677950632 2.518166164405065) (3.161171443206123 9.942839889511546 1.490288463553133) (-0.8978540052026142 -2.114127378971242 -1.842450737707576) (0.1158257316003948 -1.998486068799116 0.9557992199912317) (0.6931410063299019 -0.7158797634019172 -1.13116389561752) (-1.822359376034906 2.501139910580593 -2.553899037398621) (-0.4175319113025733 -0.2448930848492166 -3.369578054053479) (0.09455563703350731 0.6182380558626072 0.4489003815745193) (0.8010948969722236 -0.8015208277267395 -0.7084733501344279) (1.334081557015139 1.559852254191834 1.346931254361175) (-0.8805844952485421 0.2051507905246228 3.849944735141305) (0.1499465196094407 4.733349120960989 -0.6492161267815567) (0.7380118802659676 0.5765891745400188 -0.2126635711266836) (1.862394665885205 2.046569542841294 -0.9187962362654979) (0.9997006701362943 26.46336132619362 2.222441721919242) (-0.828824276816836 -2.749970554571579 2.43282329319431) (1.171547971459287 -0.1973964955920995 0.3019479740798721) (1.363975092550305 0.1567846963331513 -0.2100190657671366) (0.3035033695865194 2.595323416571913 1.229784804519125) (0.2906991752369711 -1.551314652124562 0.5636504725435524) (-0.01004021428289413 0.01160454748443887 0.06566648899384543) (1.531025411312837 2.547383771728856 -0.3661902227781851) (3.27447188199002 34.19604854080871 -6.929693541741341) (0.706621439532833 -4.347741342702115 -0.2686383821069889) (-0.02084557391510896 -0.001745986552707999 0.03875032206947616) (1.423880260303544 -1.624116060865533 0.777783948147037) (-0.2118656903924913 -1.060904333863028 -0.7997808513166453) (4.550201705905256 -7.124136010967828 6.471903461687426) (-0.09074287317488854 -0.1641634141458655 -0.2793556615127967) (1.149910340165452 0.76146455678307 -0.7048675015029495) (2.119922506923329 28.70442223336129 5.196005684982856) (0.0401690635074578 -1.423521343511879 -0.6096071109724432) (-0.8244719562298863 -1.452480357671161 -3.642928153326179) (-0.6615027515300286 3.49182953038252 0.9328567209373351) (-0.3073589436999473 -0.3630810474300692 0.303874544042438) (0.09371952055038135 -0.2341684703173874 -0.1705532052734635) (-1.674633003831994 -1.972115889457546 0.3727296015527477) (-4.8073995106563 -4.726818706015539 -0.9834501640969813) (0.3515341974455038 1.394208718604869 0.6181450361184588) (1.487304749429066 4.415833214048422 -21.48749918011429) (-9.009586027562989 -40.02847795945721 0.9228520189851929) (-3.806266830547165 8.090101007930448 1.32212933435949) (-1.35226101528922 1.682840874353013 -0.862666363427075) (0.1082727982180148 -0.2211762626575887 -0.02656026345124243) (-0.03005387270873167 -2.956388296408897 0.2095191469921209) (-0.2560268184181249 -0.2043576251349679 -0.02731811914745084) (0.9725986845757562 0.3851028881210187 0.534561248041499) (-0.04538138102363032 32.62229955148332 0.07312167252028903) (-0.1231614047755218 -0.02201182440253979 0.01416065765098847) (-0.02909641160421166 0.009413401661304265 0.05391267315215988) (0.06767513341041814 0.002354548389194692 -0.0006557839194790589) (0.4200582535112102 0.05928477948421469 -0.2076741786919199) (-0.01286094381593151 -0.0156862088266577 0.03161205337957636) (-0.1645311739489113 -0.01604916698172903 -0.01407652405986023) (-1.140517428387258 7.523414815246523 -1.124758386129684) (0.1992455790014148 -6.696786212410911 1.848405561713754) (-1.848989455694186 3.548043737573827 -2.425225413549198) (-0.9377907172884448 -0.3149746494375467 -1.410049764094782) (-3.563788340304332 -0.3677725105364202 -8.012255009984177) (0.1847215693241364 -0.08451202828319634 0.1360515315242912) (-0.4283598390762227 0.7128498029569843 -0.08882235872694448) (14.31843350378693 1.519637066518262 6.646767819793526) (0.6192497837685885 2.232662726903492 0.3726083736915268) (3.98928148262322 2.938386341486943 -1.624261095243594) (0.2208318082334249 0.04884390921961236 -0.7118414702390754) (-0.1135369179188856 -0.1072470057838586 -0.1519724262887712) (0.7730682865709513 1.036124882758347 -0.8439086758602226) (-0.2128362757109989 10.8467956738394 -0.09393277227946463) (-0.4356204860353433 -8.136180251859503 2.939631447248467) (3.143603664902663 39.01057293286167 -5.12150744555744) (-0.6498339206225904 0.04269109814961028 -0.8273430096534506) (-1.324262015031292 1.539857527971618 -3.850157027150215) (-8.121096598883794 -15.14652342033965 -6.084361306010703) (-5.427493900196085 -10.97382631543785 1.431841979880117) (-0.2047947341819308 0.04148132920874514 -0.0458015971707216) (-6.248568740363416 -4.006642360947567 -1.974951132371012) (0.7046057673505367 39.57681093100611 -0.803030384259009) (0.2043312723643869 -0.3961829329491169 -0.3181894223900318) (0.095674661535651 -0.1792475663237685 0.05448271059231866) (0.08577626657283738 0.05256633361733558 0.01068894273116403) (0.8974146508772567 5.66363941422277 -4.673912138436622) (-3.09275816854671 -2.098888003551616 12.17222393847547) (-5.178053960983089 -0.1653142104775709 -16.53408187834198) (-0.3092953211347637 -0.9658556000646816 -0.8494005785834481) (-3.22909354246017 2.473562924394436 -0.958916375449401) (0.1557104333329327 -0.2048321740932042 -0.1866543190246972) (-3.63245030596069 6.089421725585936 1.224585604740652) (0.6772663150207848 0.1417259156821635 -0.4959945013331075) (1.401048028831756 3.221354486923221 0.2604139304805274) (0.04700044923461147 0.0006328255289814646 0.006095608668270787) (0.7635704613596572 -8.748233941739942 1.50626684951916) (-0.02253040090835037 -0.3242632158003922 0.2379193061569129) (-4.487615101440364 1.599304243679931 0.1277455973285352) (0.7783693096946521 -1.566290850183207 2.978015371321193) (0.008513685346975039 -0.03217189307421599 0.1586473375744927) (-2.958896500943352 -42.1099496194399 0.3839945014592407) (0.1819312005882169 0.09234798925073646 -0.07072128289705271) (14.48051312566749 9.114464965459483 18.34874055557096) (-1.527149756470014 -2.516290021872915 -12.37281366157876) (0.1956136282523794 -4.992851198715945 -0.853523485045436) (0.5433976217105649 -0.1154470702420574 0.07058135840866743) (2.106945889588078 0.3732661519606483 -2.514382066580836) (-0.3193505043494698 2.806850919863484 1.444318763524004) (-0.120638559027922 0.1170402112782288 -0.3529349707905886) (-0.03167119670627616 0.08613658082529828 0.01517976874701618) (-0.02609643398126663 -0.03441799860458792 -0.04566180708118383) (-0.4508616453411236 5.933338301556472 -10.67862671241576) (-0.05844521841757142 0.07030261971884463 -0.150825051988582) (0.4102641339576592 -0.05781929073989703 -4.776404036114277) (-0.001467136106169167 0.01654028487650177 0.06632661487329077) (-0.02087487397977572 -0.02003498725163954 -0.01149543085407723) (0.03075877255188829 0.01641159446925207 0.001010440261632573) (-1.912079184293702 1.73123188688286 -1.014657140549241) (0.03879437188236054 -0.04685591246549612 -0.005833552011043906) (0.02062451545148847 -0.0232214545212748 0.02153314282035613) (1.29795405803629 -0.5292487939749962 0.294947560907227) (-0.06304085398267104 -0.08281862819576047 -0.08494252727006407) (-0.01998172365889715 0.1557244830299283 0.0230041440129982) (1.048536957763716 0.09319504705240567 -0.6152160351192972) (-0.02538314431741626 -0.002578994861192388 0.04012634109545372) (1.349908891530099 3.455489518601131 -2.231704084281694) (0.3612589275584155 3.730854841148301 2.338735077346304) (-1.015337698919464 0.1718231211046444 0.0667371752974433) (-0.8388206971660459 -0.1900872553965565 0.1156212747707523) (1.36491639511995 9.21306498047227 -6.959848051650464) (2.384743308946522 4.745316557155801 -1.667803103824365) (0.1253901783628622 0.02524964649199722 -0.04460412763861884) (-0.034445191700123 -0.0001963057429408498 -0.0494948095907939) (-1.047573057852052 -3.560273336870624 0.1703387117391315) (0.009408181552499006 2.023987124093643 1.360999146012435) (0.1025014337715114 0.01443616570511527 -4.078962930798888) (-0.0006770399729599253 0.002078420633985749 -0.003591787030551211) (-0.06149476122651138 -0.02603543488706071 -0.1933866741645398) (-0.02387489972683273 -0.000548978632524004 -0.00634680036757331) (-0.06556194999358325 0.1350082630290471 0.04819737321379577) (-0.001229472162070215 0.02440764811180399 -0.01663719310798807) (1.064281172683355 40.42754374300502 -0.2101705466581023) (3.731664548858933 0.962462431373786 3.956069816145248) (2.231415676670594 -0.1344539239155005 0.1247915145181926) (-0.4278924707022105 3.841901752705561 -0.3742997593481499) (-0.1667739172903309 0.02525856027954519 -0.194555576396203) (0.09332243038008053 0.0655624171499425 0.103571205687486) (-0.250397137618363 -1.302674054717554 0.2681382785578146) (-0.07503661966022472 0.110653400250448 -0.01882993465029671) (-0.09713989197492374 0.077833113948722 0.07011848762578346) (-0.04247246898607897 0.02206926563388237 0.07353555884172365) (14.85892305477254 -3.898098299988244 -3.554932822935812) (-0.9671536361177926 -2.910158073004251 -2.070049099337248) (3.404007994702388 4.632655876255904 1.411524553319736) (1.9176116280192 -6.057495519200306 0.2671549110190644) (3.492881118643322 -8.011764706438923 1.240280063003809) (2.991417850999053 -1.844691502339449 -3.814132929914731) (0.01754546713105383 0.00732509892924682 0.03909051066799612) (0.2921921875315333 0.6668668616190887 1.31637452195666) (-0.01026123785435025 0.3461149586286656 -0.6351023924311798) (2.680137492657992 1.533316351678051 0.6727844378997528) (-1.256961138856094 0.2920037965604059 -0.9775247739777004) (-0.05521668641622403 0.06762302863036759 0.01348573551184799) (-0.05804857921733384 0.02623949634692461 0.02919968004408305) (0.08452935755509761 0.2727549631352034 -1.803390933433184) (0.02351303853898645 0.07961345371055267 -0.01876670183592635) (-5.1209865050677 3.291656653665893 3.161305732066022) (-5.348328535046675 -7.361200169499048 -2.492908830505836) (-0.1008333613732166 0.316937765564247 -0.3934578588997007) (-0.1446851010701271 0.04269383088222713 0.1212921142073849) (-0.09290321910583464 -0.0986912698510322 0.2663592175579613) (0.3135818708490792 -1.217463818144627 0.05288828484735941) (1.546453026202899 -3.822556087478362 3.967904986550248) (3.107759356826644 -28.14928191859375 0.7736590740972651) (2.993522609761437 -1.565254722174163 -2.507438764865618) (-2.887352915022702 -29.66308847132788 -0.03609347345525948) (1.178686115111148 -3.931293673059099 -1.984012403217499) (0.1286978447015497 -0.02698440091706067 -0.01763686636430359) (-2.698148083727568 -6.524629992929944 -4.400910619532102) (0.01282890859944635 -0.9217688296594401 -0.5989352853421154) (2.01189414430503 5.952560090313523 -8.621246412206485) (-3.896201280536791 3.984010393380021 7.6757575000528) (3.003851344351993e-05 1.090791957922859 -1.362614233069795) (-4.50688705560423 -9.317654962574661 2.842830875622262) (3.39780695634574 15.63866031554269 -4.525864107392464) (0.1597840208253679 -0.004414955944546974 -0.04437194490536075) (7.558961146363345 5.293505310360172 3.263844723495197) (0.8340361977937427 6.303547216017516 -1.710251098267904) (0.7684793194244501 -0.597580688203866 -0.3005434146242415) (-0.6389565711940604 -0.09864355578722994 -0.05458954474177835) (2.957622753964273 3.502727109560103 -0.1984827511704221) (0.522654577688445 3.689652697725727 -0.3919190231949042) (1.939804922089828 3.710996801360952 -3.834853609749983) (3.742771044251196 -5.301488833732913 -2.188904682143886) (0.03531783744585086 -0.01969907336423343 0.0350084602779334) (-0.02408833485045797 -0.003862404310962392 0.006986808966570382) (0.4340436508961119 -0.121735414584521 0.002150501306311024) (0.7716340028260377 2.324801226140412 2.381507292953711) (0.3313601069572735 0.08024162613748641 0.1233562771991622) (-0.1477276033004308 0.1596304598569712 -1.816940892756815) (2.960681580521961 3.8406251334799 0.249384139872567) (0.1342107702372984 -0.1840564448357634 0.337971217017436) (0.3481627615456361 2.127293511759952 1.505295535379657) (0.6366208662822447 3.514943425790193 -1.324419009484085) (0.8440266384792485 -1.395524004615128 0.4994509941719686) (3.674219273057845 0.1363335647242376 -0.6914842300774715) (-2.254179326046081 6.040846805884262 6.390955244162836) (-0.01040120985856895 -0.03069536310794722 -0.02384783721674497) (-4.303247400229347 1.394677977004379 -3.665407070736237) (0.5692432405602134 -6.931074649692619 0.0512799385935927) (-3.555227194755447 12.69889149827989 5.603921027869275) (-0.1471123035612854 9.478589736226862 6.126029478415915) (-0.003030488985889406 0.01051927250910702 -0.00532577063578729) (0.2923596252265975 -0.01982949491467835 -0.04754737419671837) (0.005465075442946108 -0.01940627724955582 0.03557508210689326) (0.8462288944822027 -4.139068415713548 -2.471808295766925) (-0.6729392602744922 -0.2586885640072206 -0.04196841474690363) (1.353272136739538 -1.439919753730683 -2.439828197334165) (-0.007182918341168278 0.0119199399683159 -0.01649963800076304) (0.3668429782155658 2.351103107260635 1.733581982692682) (0.1865935783074733 -4.580006231533187 1.113051385641564) (-0.008109915088012828 -0.0572900691542185 -0.01914631311456038) (3.008127142927128 10.40189748789668 1.467329651960641) (0.2415901026095589 0.8469883702135553 -1.206827934420753) (-1.319015413336283 -3.595402639374435 1.07325603719522) (11.77472356496975 6.809091793590484 -1.778361950845037) (1.107982333195148 0.7365636593219482 -2.006397479860027) (1.764312421025365 -4.860597486239107 2.750754207377187) (-0.08225585369436361 7.958913293011304 1.298374695724331) (-0.2851700713180484 0.9107000772809482 0.02142747706964926) (-0.5170843717005569 0.09104456741176278 -0.102283605914214) (1.001929050405197 10.78049415143682 0.5467741930721641) (0.02853928538267789 -0.006506494202976796 0.0143383815348562) (-3.62494656774135 -4.133798069721523 -3.283747256420752) (4.426417478118768 14.90105654436399 2.195089649173245) (0.01987174143283065 -0.09479591295087458 0.03026131826802657) (9.075641965190236 -10.13300856642444 -10.16506654680974) (1.335635591391447 5.950080933460801 -0.8464418115151042) (5.467248358785751 -3.975054247466037 4.285174703436058) (-0.0425827863577554 -1.661123629526306 0.6680303542585604) (-0.2038569132027582 0.5995897719131529 0.438842923533661) (-0.9013047452344184 -7.164305893096631 0.5254459879841273) (-1.408153105640471 -3.322048061855216 1.777057159369905) (-1.713185713966193 -4.735297443039657 -0.1449300096615304) (0.1242776702954857 2.347946927111002 2.161630430514724) (2.407212258270323 40.30807560828305 10.77132384976072) (0.8007620314270788 1.095115524428667 -2.655245085384157) (7.697168230448468 12.68696898793463 -6.04390990035866) (-0.04128096344027266 0.7748152882589253 -0.8496748436489745) (-0.06345163027029549 -10.03813041316467 -0.04161770243248469) (1.176147079385987 -3.039731611071417 -0.04223811443348635) (0.04660550372678909 -0.1589523604270314 0.146711205040133) (0.189711999258843 0.2054474940133296 -1.86593510058869) (0.05221835479831759 0.05561686382162573 -0.0791704462848262) (1.289083891195752 0.9047865645658085 -1.941621812097445) (-0.7717822602854877 0.1115638173850353 -0.3546176736091243) (-0.7115381042115787 5.937094346037568 -0.98392168579169) (-0.06587485293138216 -0.006516303025629874 0.04738476486345684) (0.02990604375884644 0.005375209977047752 -6.037379991085547) (0.0325614186983589 0.0003084379826070459 0.03271987552278192) (0.005053066190426318 -0.005117627774154265 0.005202744878559375) (2.660543565496914 34.32530364816985 2.241196413026542) (0.288497005616315 0.05993659153723506 0.0542007805894192) (0.6524107278734003 -0.5283209634772984 -1.015246184863805) (-0.8357612987920827 3.83835093693929 -0.8332374951856203) (-1.919456185960378 0.9181457796214648 0.8684349911860568) (0.5863844916888252 9.420628376309171 -3.808224070001902) (1.234664994903387 -5.248938164776844 -0.4676052715208455) (-1.069144723775841 -4.633100631053576 0.4730840880357514) (0.02956953352879779 -0.02386887229549007 -0.06367885133935022) (0.01088506593277922 0.01559669233691637 -0.08712704839063669) (0.0131396986828672 0.009072699872528924 0.008707211640273684) (-3.93226477855742 -8.904264594588206 3.69523099534254) (0.01442475228569853 -0.005444578148361464 -0.009306151070541634) (0.1554173610640748 5.732628844810295 5.969097180687902) (-0.4016874746405905 -6.065960713805625 6.604734492222232) (0.1640220785255967 -0.09397267272796672 -0.03461239516470704) (0.01841927185956868 0.001887052122595372 0.009548234479705108) (-0.02193649552858625 0.01519277619548113 -0.02499784450274763) (-0.7276304755143916 0.38668779860071 -2.266189595191697) (-0.1370246046235312 -0.01529007684384409 -0.003659194065355934) (0.2824674929262543 -0.2365763692250035 -0.1906316873738901) (0.1126018069325221 0.387573636592129 0.3083474233456776) (-2.02229862500771 1.208582244124604 -2.364648476478755) (0.7516683426180399 1.183353093764065 -2.267216298471404) (1.081174849576048 -0.03380076023453694 0.2584739241897274) (1.113249498084655 2.930466044051033 -0.04200259539210105) (1.261591583793463 -1.654803199250964 1.127937660170453) (0.02213458613984276 0.02773595585905636 0.003761544956999202) (-3.33416263393054 6.85225982288188 9.495089946316167) (-1.121688564890004 -4.159515190550062 1.752531412408988) (-0.0791159332380324 0.1644353244291192 -0.03318056915774206) (-0.01274232778827167 -4.909333717866914 -0.6498624689218484) (1.320986377732802 4.336461128856781 0.02804901915396335) (2.670397557165869 -7.827197884309225 2.650745977304852) (-5.436525059623921 -5.92253012802074 1.488502828570224) (-11.13403984981016 -11.76390355797168 5.227491882783456) (4.653247848412673 -59.8897879955331 6.885383769111369) (-0.009389232741380009 -0.01374592437566145 -0.07823004637129878) (-0.01776416573483926 0.2299477982544715 -0.1485224485320792) (-0.3086080998050917 2.694281316163112 -3.592505321817161) (-0.02563388209162043 -1.20359175847971 0.223155815210069) (0.2420261251897003 0.1681483150848628 0.05738884863157376) (-0.1456338553684278 -0.7446471989663576 0.2392720420660768) (0.2110767287395095 -3.076219788223026 2.11206540303795) (0.07549018603251152 0.004286178661379477 0.02056303371913892) (0.02903559000840252 -0.01801736741822986 0.02036621822462245) (-2.215341308457925 -2.985175591248989 -0.1649718457506452) (-0.225612102065925 -0.6733976586193577 -0.07047380420418231) (-9.793463536472942 -5.960447227904469 2.990466953567035) (4.315977098434295 -2.470757152593138 -3.403008141824413) (-0.9345704458814633 -0.1355998386783578 -0.2357224810720358) (-0.2833586752077036 -0.8619725914966354 0.4471145634546066) (0.01600008615958364 -0.003675346844751185 -0.001275282632263743) (0.2426941201631064 -1.218635072727787 -3.014223717866301) (0.07249623054555307 0.02230001043249805 -0.4596259887375561) (-0.06818163704100291 0.03911287518219089 -0.02225713519964282) (-5.59996283920807 -2.601824046491894 9.073755370656821) (0.5678687919973405 -1.291232721301505 0.4428631239461171) (1.252679796821297 -10.55558991276665 1.875927242705948) (-0.08233738685964131 -0.2838624660023413 0.04429831015808169) (56.64327359494622 -73.57205686012355 13.53007751218878) (-1.163126910915268 -0.5607054175334177 1.324542665139429) (-1.029203856411852 9.150530573277665 5.069291798369168) (-0.07982012078009069 0.2071166694612327 0.06110977549395812) (-1.70595308102758 -4.519765271635846 -0.6775420071287147) (-1.732572943810104 4.554013475991492 -1.066490179916585) (-0.06898422744158719 0.5265136404064306 0.5354619627513107) (18.60604128517721 0.8574559946280427 -1.250090694011403) (-0.2022115235829757 -0.2467208718015222 -0.01901886740012909) (0.01437889385352321 5.747550633668219e-05 0.006037628678235079) (-0.1245580767075459 0.09266578726486527 0.06747291272017718) (0.1905584921459054 0.08348820383937003 -0.1413337331119433) (-4.796833442519374 3.566910925270192 -0.2565617200939953) (-0.1024835199978488 -0.9009108225724434 0.1812298575976967) (-8.864186976520971 -8.825987986880779 6.306372869536723) (0.07070390880700499 -0.4848500258755809 -0.2274863418728022) (-0.7823613576018699 -2.214352113844939 -1.097603424755403) (-0.2874202378493564 -3.709666080936488 -0.9430424299937721) (0.3549548885659519 1.013700155551067 0.150358877223119) (-0.6173831971498991 0.3477964125157448 -0.3055480084579397) (2.432240949608722 -0.3480316791923146 -25.70977855151811) (-0.004798393287557438 -0.07664271502003472 0.04090920981321976) (0.5940600116215448 0.2012137969053622 -0.2811653026993619) (-0.2847019734158326 -4.914495899980484 -0.9747859716943117) (-4.864030807668813 -14.43895849673147 13.40293692318173) (-1.423148063900616 0.4111892467288574 -1.482598756347908) (-0.1698619847947118 -0.1178997819424427 0.3129536991939136) (0.5567731954684509 2.31933525755779 -0.6356474957350652) (-0.1674055770529333 0.6045309848883953 -0.5784187672651885) (-0.3050642262622524 1.178847996942071 0.8801007171611932) (0.04261098994604907 -0.159384529362839 0.1872971461465817) (0.0862575574177317 1.936680244353991 0.3800750736291771) (0.0580152815295894 -0.06116748493844027 -0.02492980711525988) (3.105396879859508 -0.4392578914446766 -1.753020164871634) (-0.6811328970519812 1.327559728402382 0.105826484680436) (-2.502487841381126 0.03885713834788029 1.122410442199437) (-0.6487068152706839 0.2685633809001161 -0.4470607612931467) (-1.172273693142634 3.663357268348831 1.684307309373104) (-35.71509253390865 5.02168222987162 9.751953177637958) (-9.909174334867645 -10.86237443089504 -2.00114174003738) (3.216402335690233 -39.20670223385751 -0.5500547115725227) (-1.043836007216511 -1.330623638105692 0.163734537221599) (0.1890865381226478 -0.1550295959160522 0.01437058642437033) (0.5440079486030479 0.9747881436998888 4.635182566839843) (-0.2069106664363076 -0.0508876981111663 -0.04680386845854764) (6.17680653733419 -3.156720700404953 3.125672043636517) (1.982910838915646 1.92749589003231 -0.2008035713418745) (0.07521566816891467 1.60746370006473 0.4660351193905402) (-0.2562530551057101 1.30466223163814 -0.6033541389772984) (-0.1803639274127514 0.832019110093432 -3.721485383036332) (1.960469939433964 9.041065319846098 0.3855543067169989) (0.05627657927390838 -0.006961241304405022 -0.2749102145124101) (-1.121797619444595 7.009999432999747 1.499053286778608) (-0.1486470501163351 0.01449708476281562 -0.05685728531495135) (-0.00771275385960069 -0.02191792512406945 0.0424699995203795) (3.49443841756896 -1.798306686750371 4.147187114818601) (2.053081575560282 4.904081390834609 -3.054596001078131) (-2.983904341654032 12.68186532283262 -1.885229789235772) (2.328840805454155 -2.603226981540559 -0.5923892547397411) (3.637454084680164 -1.253853843661487 -0.7422246636419199) (-4.787156635495774 1.034132500220831 -3.607407067365998) (6.603692010599627 6.702922822129683 -3.426879732335693) (-2.959144030619649 -7.979721709141353 1.022546542783417) (-13.18601322972347 -16.47094256636208 -68.09114294952263) (0.2751138160296344 0.01249461318817974 -0.07719851959911672) (-1.361366415635393 1.538267519464416 -2.044672887252076) (0.4459423317652572 -0.05470061308948876 -0.08335689449058277) (-3.220449362936516 1.415090966230265 -0.6812158138211334) (0.08320200561703671 -0.02476165699897583 0.05404686005840233) (0.1966377909402419 -0.05637789554972861 0.009113431241301102) (0.05258028329678533 0.01011206269019086 0.06067219353425708) (0.3000064967456458 -0.1295693387146962 -0.08618648782425115) (0.1808810541195407 -0.9248503304524271 -0.5089186455346444) (-14.44420299161392 -3.018412543159894 5.668750324379698) (-1.258702664739212 -1.348546353326465 0.8689194685845031) (0.4531083697249595 -0.1711012099020041 0.2524173150556437) (-2.922904118802835 -6.729614025208646 1.078977881253039) (-1.091642859792981 2.551265660484664 -0.7114460340452172) (-32.88905452277735 38.31170434655491 -3.04261999145635) (0.04234211859259978 0.04655646656808338 -0.01477481830213005) (0.0278262732175755 0.0318696524554028 0.05248431168323513) (-1.89753025052472 -7.849312236933729 5.729886167889825) (-2.831756171525369 -1.941495066583659 0.07795084523756568) (2.071837160770341 5.10548362292425 5.488447880155126) (-0.02785709027106143 0.2386982508721402 0.007872294774806722) (4.265765429295183 6.990349019023349 2.195630052180829) (-0.8632225482078266 1.96435824721379 1.220176908499481) (-2.481057526228635 4.365395030403508 0.1060937870087012) (0.7233663301618438 2.817850414690974 1.555619717182225) (1.272328490039313 -0.3029263205052484 -1.661589687260881) (3.720056847507491 41.14463549213858 -0.6807943333680695) (-0.05080718145325587 0.0009009462695372221 0.02153776367513593) (10.12365525268967 11.09307449449224 -0.02458007755774327) (0.02182582296247721 -0.08221500137950237 0.03873787566525152) (-0.828822954490257 -1.542744387303682 1.62674831152623) (-2.445423180932956 -5.230857573669569 0.1359893355076046) (0.9687015881854456 0.543814063205629 -1.156902329699608) (-0.8823014949150334 6.073402541368582 -2.874667942057261) (0.7338629845236848 -0.2478321500522273 0.08460621773048192) (0.6710900412691599 6.642282571319276 -0.2184914082040166) (-0.2210621972815729 -0.02489372777978143 0.006367490885150227) (-0.01036070150176213 0.00286196978067621 -0.1247911979188001) (0.9898620762603295 4.348171439728726 0.6895759879660645) (-0.5434021914984206 0.1533948329694493 -14.62550258493529) (-0.6170636719849828 -1.40954388637459 -0.9809330169884947) (-0.6529617414226123 4.876370516471901 -0.3776666617521767) (1.038917883635429 -4.181613382137339 -0.3630206130583534) (-1.403225644825184 -6.403295852337914 -9.457254169209785) (-0.03285785949013027 0.005713111933656579 -0.02968737227987527) (-3.103711901541746 -5.479861274604371 -1.75633271382724) (-7.473214708666249 -20.34915004655439 4.743196786581612) (0.02571032349405462 -0.007905763375803954 0.02065921203120562) (-0.1528358114365425 2.679356685367653 8.456700746202239) (-0.460774160792346 -0.0378368015613869 -0.4222731207087548) (-0.1681839889252803 0.1214588137602631 0.08802362771162339) (-0.2759633657343196 1.800224746617541 -1.17870012305473) (-1.159406284500771 10.39820638630898 7.402230523374576) (1.228616399250182 8.672938881914462 1.394137510740583) (-1.065476664200023 -0.7326675641877555 -1.407189283412312) (0.6885113725948274 -1.746467432260145 0.6323952418128185) (0.03457535249964915 0.07866863779601958 0.00736446307025046) (-0.05565374653183212 -0.0650419761959647 0.08916286367608853) (7.943219623274119 1.000462304869616 15.03305833561663) (0.3156453438100962 1.413086516595567 -1.185012056564364) (0.1136784623535156 0.06091645294286004 -0.02275551985845274) (0.9239863718683823 1.848925842784882 -2.052475898987999) (3.790023705558955 4.046623892038017 1.484483876906916) (3.068577379560546 32.81641165450904 -2.505283936042614) (-0.5445747191096084 -2.09245837504749 0.3635917715535921) (-6.295728188135998 -27.58477687896076 -18.55893089875352) (0.2737536622132564 11.05700099553583 -3.067305012330601) (-5.776020178190221 11.27238656608356 -6.284060077121774) (0.3996883876272777 -1.017151650107728 -0.4827211277420073) (1.458269447062831 -4.301274823621912 0.656780923916362) (-0.4574612454742858 -0.4369631223040695 -0.06927145986806757) (-0.4362669360522168 -0.5288266248042632 1.121638591131894) (1.050426117732908 -3.197123279806172 -0.7377705401461834) (-1.933325261527317 -2.563395611999496 1.264240184763543) (-2.053080874584628 3.827620993109735 1.075176064758692) (0.4295762884289788 -0.1417520013696482 -0.1078116435416014) (-0.5606689323963283 -39.72612852736165 -6.292265628208899) (3.345027412956534 -0.8682053861692376 -10.50102874606582) (-1.091047229777544 5.869079485273147 0.9444008148399408) (2.671474184272691 7.264136544108766 -0.1807042997774114) (-0.05911851220074285 0.002780092931311276 -0.003319392297845301) (-1.191275254486149 -0.2092690195739919 -4.754473864405045) (5.340756748687769 0.5952897188418482 3.191762912939637) (0.1022955031167817 0.2621260937502837 0.04937288867415598) (-2.684913339289404 4.121774746414268 1.427511588778483) (11.38030720519405 67.19972040651915 -6.080135192248225) (0.04904006882953551 0.3072716027987031 -0.04432415048663541) (-0.5067611548096576 -1.277703593268589 -0.3757780165374229) (0.1024612613630961 0.1856996025378804 0.1611347795626038) (0.5706814054237557 1.041133843541173 -0.3568039276912569) (0.03697104080450747 51.4075923139022 -0.5273917303634129) (-0.3400214018042581 -3.462162762340705 1.251904275609899) (-0.2820719688432157 0.4638398731334927 0.005210489171774968) (-2.431108133341477 -3.990039587025787 -1.593463982488539) (2.14842932326101 -1.342225110012683 -3.333489480064078) (0.5790923175237565 1.469560908682972 2.308326853114083) (3.598482640794258 3.066991609111081 -1.228378493712025) (3.309168348010816 -0.8688779508349458 -0.4626748334215971) (0.01802685595032738 0.002814365287194538 0.01090384598614764) (-0.04983858248053635 -0.05096616901559314 0.01494417004726942) (0.07029379863097431 0.03643682533952387 0.00186475637506356) (0.01443823809706116 -0.01105278834204592 0.004714591324778163) (-4.306314883768033 0.5520052011578382 0.3450953534450776) (0.09077395246326796 0.2376260596902754 0.03201345686327457) (-14.31562540732725 -7.004690108889021 7.386510306927623) (-0.06377761066662835 -0.02723736449544188 -0.009906446495246343) (-0.3306733866918736 -1.570909890928077 1.0996463469039) (-0.0902391882230274 2.08503459959878 0.32603650713347) (0.3868716076177481 -1.099140921725366 0.3308265629226161) (-4.134956024667388 2.370997866393025 -0.3729904951800476) (-0.4143714559082893 10.6044170697246 0.542636023959324) (0.7238903854971181 -0.4268536514616708 -2.551273532364061) (7.927851682023766 -4.217352768327617 5.026465840298546) (-0.9710837695677118 0.03940886059928836 -0.001304038050197145) (-0.3284022760580991 0.5779703717624611 0.8395882578961242) (-0.2794086212306551 -5.869549616774759 -2.027283482610016) (0.0268039383235789 0.009820622082288857 0.02289893085449796) (-0.4245127880993553 0.09826387107233858 -3.310481642072181) (-6.334709641201362 -36.9104551559212 -3.498897496443704) (-4.799824728545199 15.8298515641382 9.398294834088166) (-0.05363748601008046 -0.01465855437181511 0.03188650580872761) (-0.5564437706111047 -0.3937156842400665 -0.09951062801130472) (-0.1700610468158959 -0.02821634374893999 -0.07835722000429339) (0.003056566149821926 -0.02382282305792755 0.005212916671561938) (-3.262654985843755 0.5291797929627432 2.104747529588362) (-0.5262768136548389 -0.2811099291570006 -0.5176049376936404) (0.007990018709353484 -0.008222992312882007 0.005909814559087004) (-1.858062479858952 34.18823600656521 10.4268330437532) (0.106587689188886 10.41916758846446 1.415465026723685) (-2.525371131408671 -3.277815112738227 0.3685980632689118) (0.4005090516383783 4.247029518384121 -0.002814215865467595) (-2.641447231482116 3.85740698009366 -0.7779144033348259) (-1.835490971669231 -0.7176830614474163 4.729263325016133) (-0.8718041544706209 -0.2416109273530217 0.2266180565468606) (1.717530936084011 -0.2429962569501272 -1.659064801424195) (8.605177635212442 -30.32616022029606 -1.101881910507973) (-5.003050905773896 2.54146541768158 4.805664521274622) (-0.7386816122234894 -3.082446456197315 -0.03859023448105747) (-0.1146592334014657 -1.576699532320797 0.1019013037038562) (-0.4633962751119788 5.320054796420799 -2.157686249820779) (-0.4416692255767993 0.02720447173620745 -0.0402444344686438) (-0.5523991577790359 -5.004665925395554 3.748524204583258) (0.5982517411137436 6.307558927998465 -0.5760707952461054) (-2.213963937245425 0.1681936897929264 1.102156438061186) (0.1487986706122996 0.09539559479804575 0.07367667282232496) (-0.04337393381617645 0.005297634339711428 0.01034494955431299) (-0.4459949142427637 -2.710305612892236 -0.7312956971353534) (-2.234322251746034 -5.540629981853003 -0.2371405592080394) (-0.9825692147914027 29.06128281086088 10.3181592162653) (3.530571395200204 40.06661554458171 -1.244034057268075) (-1.054720134367778 -5.696855966602321 1.234147798921783) (-3.707691950741828 6.331699977503657 -8.839213140020677) (-8.564079203095993 -15.54790849733258 14.2874516194971) (2.233218631381769 3.670731574678935 4.218213784292025) (0.03198327675256243 0.02794627142114231 -0.01241103095883998) (-4.095214742831224 0.4494077051518677 -2.830876300292887) (-1.583119698400136 -2.685510736170734 -4.225375085660249) (-2.393341555352716 -8.978711154649215 4.237511188130176) (3.777285759869916 8.029955018240637 -6.099931401021308) (1.265689111090972 -7.113080547000221 -2.661335938710065) (-0.7438908432803093 3.374500436500467 -3.327060894162638) (-0.01551608269631943 -0.9808510443049505 -0.2627522855689001) (6.969448470985715 1.36083015460129 -1.692737179307967) (0.4309941603465494 16.77301466783003 13.00803036376212) (4.906327582723504 8.706146430238009 2.996817154122458) (-1.356666068843444 0.9436715804265943 1.375273300727342) (-0.4918047169769397 1.908437017931728 -0.2687022295598089) (-2.606474084598204 -11.51012368799358 -0.5320456440994528) (0.09840766870934886 -1.169765237273797 -0.4044067663491536) (-0.3295739615332368 -1.20038004501435 -0.7584380970649088) (0.07362847762550614 0.03114208686784539 -0.05278761140124499) (-0.3802848603968774 -0.09296361607316686 -0.04258371274832448) (-1.677540797950645 -3.86982216155563 -1.451752009341837) (-0.4431139888331158 0.1993724931610729 -1.26130087315226) (-8.665196586835359 -6.184611135014672 -45.5237801534501) (0.6250752748776984 -0.07971580189777464 -0.1626649391542357) (0.408908943934493 -0.08348267411354576 -0.07190381333818184) (-5.713246314168596 -6.6437417217874 -0.4989085293274623) (-0.2957122009288821 -3.809628542424579 -2.583982668472249) (11.34392438097204 11.76931152769094 -4.611515846356443) (0.573555452560345 6.461848127233644 -3.347042784795849) (-0.09847461265423101 -0.06764775573305451 0.2093481295635976) (0.2603435468583248 0.5644806272780738 -1.366914814243004) (2.193521119577232 -9.473276128456858 4.850321636693128) (1.058175256377319 0.2622341143727019 -1.259998456939942) (-3.333236610503277 4.252647908676193 -0.5839873765777345) (-1.148467281297052 -3.148125662426108 0.08398917221849518) (-0.09237952328719537 -3.89012446849509 0.2859284924016356) (-11.48714502076636 -15.30576145356925 -15.53338313694429) (-0.2386536903288552 -1.390209328169636 -0.04839201677795724) (2.235222861023732 -9.310635092794698 5.121916472492885) (0.8366295164888219 0.1492342587432325 0.1677116738775725) (0.06249325945128435 0.06977515054914156 -0.004966470568012398) (-0.8986194196819584 0.791959485303964 0.2735473132392555) (5.753657246682636 17.70654725216948 1.295101389763018) (-7.75295973594864 66.98474791391274 -3.715058251542478) (0.4974968214612845 3.33852550381006 -2.283482030194966) (0.12442846171563 0.045268641066182 0.1892080015798238) (8.77338504090395 11.38854525479872 -0.4142412133227982) (0.4409710097926866 -0.05562776761774052 0.1719238120119022) (0.4866851734359504 -0.0966860200952218 0.3295230840795963) (-0.9420024241254144 1.616187921875222 -1.490028987823473) (-0.7407795103384148 1.322013603145415 -1.116639354814175) (-0.2612531642141829 -0.009206581342390711 0.01876558989001504) (0.02816685158669403 0.01507933760571981 0.008070290659535632) (0.2603390063235027 -0.1317227261130053 0.14509660248204) (-1.420447210671873 -1.983632097572873 0.1683260855917009) (-0.02573921713901298 -0.008943852289549657 -0.0008772983963740433) (0.02568682928888934 -0.01345888310065656 -0.02019366299414922) (-0.0350429236637132 -4.984430159288785 1.605323796193799) (-0.1163501285412367 -0.0003621300693462844 0.02776964882277459) (-0.01261364740660014 -0.02486577215003057 -0.02018240713192759) (-1.119412866488757 44.33504128416255 -3.159339144677241) (-0.03067359910593646 0.006525022877240262 0.007880239665495099) (-0.05104134907480935 -0.06005024410042312 0.0708807583958509) (-0.006100464668134189 0.0007819425749396782 0.02679210458109353) (-0.04700494835028245 0.08722958258810203 -0.006383342497699144) (1.312495884735468 -46.75828552071557 -8.20626034001025) (2.145334120327245 -15.44026144092327 3.482240185250813) (22.60979190739592 -3.187824358177194 -6.780055621090334) (2.775788416299891 20.5730564880489 3.690349134076546) (-0.9889375750443163 -4.747838745719391 -3.04423553862297) (0.2135171104611014 -0.02491455200365313 0.1076071504455689) (-0.6627431864132155 -6.839230490704386 -0.8799716915220495) (0.06019420429887 -0.07130492352809829 -0.01873765123425311) (0.04110990537208342 -0.06307063844064816 -0.1282409650190394) (-0.07894393314391313 -0.05659687228075548 0.08651265328222722) (-1.834441033446956 -2.629126489787943 0.168594022120873) (-1.646596814937186 -17.51876046213657 11.79964934421412) (-0.493386540792085 -0.002392798349373976 -0.621025424075492) (3.973602983645443 9.484923841007205 7.314974822893744) (1.316204949306064 -0.857999612043383 1.592461472865141) (-1.189182092815503 -3.462577107056954 -0.223389822399816) (0.7535590692744487 6.093965813947007 1.522970053360037) (-0.7109729770375537 2.753479821319812 1.35191426059165) (0.111411524435782 1.190817690298203 1.351795651672602) (-2.783551286123692 -4.023738652191601 3.657197763324645) (1.785762993318843 3.835588072374065 0.184145189770766) (-0.02174204430280528 0.02235785208630503 -0.01322368164524977) (0.2243570919620878 0.001589875308364991 0.06840923356729742) (-0.04583578649109635 -0.01099791087077256 -0.01449382263499424) (-0.6686146040350294 0.7486629938135183 0.8550827866813311) (-0.6559748405812561 0.08837696033760664 -0.6586472080415798) (-1.361032048428366 2.118046565994272 -2.362840948038641) (0.773744775312381 0.2996282435760906 0.0864379737633626) (0.3103723330397196 0.6872441068004411 0.08217518661016493) (0.02831793626116046 0.02416371374906343 0.009773854578448246) (0.002622549580614033 0.05244552593926614 0.000640550273915682) (0.03481941212688022 -0.04493270373081484 -0.01678097356767625) (2.250262276497288 4.096854994168007 -2.990720930235228) (-0.7850194157363473 -3.91855531791904 -0.1349817652536098) (0.1016193190076305 -0.05549364735100054 0.07038607943018987) (-0.08676508316138506 -0.002439243846272135 0.01326444522038456) (-1.923717882895175 -5.228791516445515 0.9558777893432153) (6.097256289118852 8.566365968382392 4.549414176634698) (-0.05701985995265957 -0.7124166160910752 0.3897106098271035) (-0.003154214101387706 -0.02094361750915406 0.3646257715484916) (1.820115619033538 6.210053211912174 -0.09331991756702851) (0.6082707867555548 10.07509627624575 1.193411525011433) (0.9240142190404996 4.177441005862882 4.107046900494504) (4.414770509199164 27.64465797087889 -6.318993195517851) (-4.551342065567773 2.549700599774605 0.9080578116262974) (-0.2161671003680366 -0.8234328981698901 -1.66335275255758) (-0.03970910073016777 -0.01075046878925554 -0.03376850654162088) (0.08093434592807033 -0.02987571934908678 -0.0231634320200861) (1.166019751081796 -4.076147370931791 1.438377929509134) (1.546548839427573 7.968953931498594 -0.8883501826349484) (-1.414210197632479 -5.979890893270211 -4.656928836435994) (-1.615012312670047 0.124724174623132 0.08924380625795741) (4.121084764084618 8.350444601424501 5.023235114932774) (0.3682590072720915 10.7041445287211 4.237609315029664) (3.02380561192714 -1.762334187731873 -1.441252659726491) (0.4541072788648508 -0.6342887112150408 -0.3730523557787481) (-0.3127877172565194 0.1049581842618742 -0.04242745631494003) (-2.626791484382028 -0.7259028079506865 0.3455251420199017) (-0.09919478819523825 -0.01090166251367613 0.006707880688917654) (0.034281369852504 0.08007524723416708 0.008252392624372835) (-0.1283863444272037 0.08153633495979398 -0.01040584273054963) (0.002330296789140068 0.02810078364752844 0.009009877105498387) (-0.2143635978705863 -12.40003486004673 1.763131319275901) (13.33031973308668 6.877497400703405 -0.7508056762150703) (0.4236381321463119 -0.09852785927115741 1.265249094395028) (-0.1019017730086964 -0.01322749520095623 0.03020626233594218) (-0.6703006981357603 0.2802681925371415 -4.421898821918409) (-2.5339799612767 -0.06601871600790504 1.18640842224921) (-0.565879421131352 1.435158154725214 0.7382830545658466) (0.2506032337661662 -2.269190809525647 -3.70927189189699) (0.07153649967380794 -0.002214730124785097 -0.0347031014830568) (1.677690643143913 -10.39262660255142 0.1149153471266469) (-0.3080799951956467 1.751178765548789 1.19970399181681) (-0.1213280137468987 -0.4021513520507535 0.0398517614634504) (-0.3107328959946157 -2.244859337332273 1.883888159412608) (3.034836802633666 1.079823011698256 1.091784266681322) (0.009144032026397145 0.1164042125531629 -0.1565513790676969) (0.03709338695533977 0.0411666379887962 -0.01358085579722257) (0.0296572619420031 -0.1516756058127522 0.2062122343930058) (0.8906035878309064 -0.08883391993101858 -0.4894125901331814) (-2.379945851584675 -1.04756216864694 -2.66151142864958) (-45.76166353543891 9.496654749230087 -17.41316053319656) (0.006948745948695798 -0.00110237677731792 0.03058041333779691) (3.724755319023306 8.587775453286351 3.294540132283791) (-0.1151020061221525 0.1255871277124632 0.1676144740142322) (0.07114538283182179 -0.03431270463631532 0.006098377539482981) (0.005366826201677539 -0.0008469917159943507 -0.006882530672203523) (-4.5632945834293 -2.188018732191286 1.970484555019426) (-3.305471741034608 19.82309212323264 -0.3468408098811129) (0.0358345550450197 -0.1251192209869466 -0.1475213868169968) (-1.864955006170793 2.596400940442388 -1.098215407613209) (3.867097149936505 -2.976730465993443 0.8156401547199814) (0.3563184990279039 -0.2434492448570399 -0.5042744098678585) (3.594360366706638 -5.495822828742289 -0.02191747458441984) (-0.5924901695558071 -3.738509760715457 0.7745179992143115) (0.1992056694843409 -0.3935968030963047 -0.2382470218390148) (-5.318711694569734 67.21985674069664 -18.74559423280345) (0.1714356579141947 -0.0437337194123182 -0.0189824604285222) (0.1712782792238721 2.407174367818959 -6.625723428086606) (-0.2890411647185826 -0.2963659425650601 -0.05091979078768835) (-0.5501441330839941 -1.041506042671719 0.1972402382012464) (1.068895968270884 0.6271868734014822 1.046170799105473) (-0.03999450359251464 -0.01278767119924682 -0.03427108195016801) (-0.001571662323961148 -0.03921468058306476 -0.03228736898529903) (0.2385931929826858 -0.3541832520348326 0.04969546810983178) (-0.212603401328024 0.03892520355902157 -0.07155391484770519) (-0.304924051281218 -0.02382813463100137 -0.5477000810800436) (0.06057027593610156 -0.02390651713036435 -0.08883542398325928) (-2.103746589694889 0.9961789780642865 0.8191918283435426) (0.2765093993569248 -0.09266358598887026 -0.4810335545142498) (-3.138925430824939 1.251494754437007 0.819672827279403) (8.294925366015393 6.858352138430892 9.032567551478806) (-10.82734078985306 3.518408557566657 2.593126678445993) (-0.1352118640446898 -0.1243698292127464 -0.01734655851871111) (-0.2255314349703697 -0.01173723796131909 0.05848402083670992) (-3.767441832527712 -50.38908946347312 0.4196054919050953) (-4.794345215306199 -42.58863917039058 -3.632425758225259) (0.2820090001285787 10.32108336861659 2.063223251238665) (-0.398141003723997 4.841378574925108 -7.134013925811561) (0.05865788163812773 -0.03178402615642462 -0.01365319822026057) (-0.2346957075293025 -3.072401407777314 -0.8589632043208131) (0.9369449862609773 -0.3921137726708155 -1.400829508572012) (0.3994242760035477 -0.03805561345776609 -0.0114542375218014) (-0.05981532054400521 0.3335046242872806 0.01447803906473555) (-30.38007634628226 -1.917154665237675 18.60225191758998) (0.037001380553136 -0.01442019038509233 0.01978749912484431) (1.525924047140899 2.567588470383155 0.7475270530071777) (0.009296888481134746 4.268581963379748 0.1447745391964363) (-3.009784536096687 3.541906543403911 4.261878633505559) (-0.04219159361129492 -0.06810825033825389 0.08812739014502098) (-0.7689242292062354 0.4551144299084904 -0.8000721383448046) (-0.2566831572016063 -0.3670875388365022 -0.04633404902800622) (0.666650688647959 -0.3294062503649718 0.7438899021150371) (0.1819012579594368 0.1334526976964971 0.03604267710873819) (-5.179384592019353 -0.7908236727118307 1.334229390926279) (0.4450650759567447 1.250464066177681 -0.9503636637698351) (-3.361654935273474 6.201003564718586 -3.798773717478674) (0.09861720927146166 0.02871907959323595 -0.3228791075050909) (0.0733183891860415 0.07277409573774621 -0.03638412768983311) (-0.1619077445003382 6.144954970754054 2.104569574926182) (0.06501599207828132 -0.03584086605875492 -0.1192480658434828) (6.197535155010302 2.343213792715487 -1.240416560891014) (-0.1032814330206065 0.03598990676497307 -0.0379596917353716) (-2.750348842467116 -2.47703670252058 0.1556821484533799) (0.06110357039551273 4.865009880188979 -0.8986987074582462) (0.1640695535297761 0.02710939618407962 0.04823870590451285) (0.02065246710142743 50.90327925224766 -4.572358278378135) (0.3686262437622424 0.5910191962170307 -0.130510357851178) (-1.597355160407176 0.1793955339604087 -2.756550853497224) (-0.15013243010414 5.014183460850292 -1.528543748059027) (-0.1966807305361731 0.2141707601010684 -0.02447759813979336) (0.04918601699589062 -0.04137304165838614 0.02494630241263449) (1.152071520233883 8.740757962717016 -4.759059861116457) (3.408914416849525 7.083059431614553 -7.24318750457127) (10.50257972825462 71.72647895279782 10.38459389615839) (0.2386357372107348 -0.6938506775720104 -0.190506835118032) (-1.086487811326574 42.12183797193428 -1.99803107098352) (-0.5924833465184118 -1.824370011451744 -0.7431111678620267) (0.8139636988591746 8.639548640161022 -2.274147284417171) (-0.03698046663939453 -0.01552760410478798 -0.1677303020018134) (-1.524737817257238 0.6621994498776157 0.4968722629251033) (-0.2431964787241579 0.328315393927637 0.209151961354064) (0.3860436158623844 0.1485285610562408 0.4041156325498876) (0.4156945612804633 0.196772813832311 -0.2108146373039655) (0.08162357718418463 -0.06376461445030703 -0.07231932758707284) (-5.094567044730817 40.54955484451354 7.457217155329378) (-0.02166753573693797 -0.234291185339077 -0.1177897972353301) (-1.957740710023896 -2.503958025500499 -4.05911389615686) (-5.833779367529786 -0.6091921926926078 -3.164092633773732) (0.04170766869868821 -0.1993560078427801 0.1141143361967479) (-0.08635407359301558 -0.05848137403737554 0.128621108655138) (-0.05642200548478306 -0.03481045559380529 0.01613906809327609) (-0.5483382785125133 -4.652222132692017 4.841947970965403) (0.1708133557471316 -1.091083885431501 -0.332381393344662) (-1.994554839483754 0.3018933341330363 -0.6201135843993277) (1.773976092023326 -7.550028586940168 -0.6054574250303614) (4.413604753844488 7.48413359119195 -2.225865016093419) (-0.4125767811089094 2.354111527355736 -1.793177739955191) (-0.2066922504948484 -0.07689979794969193 0.03538409840282525) (0.0889312027953949 -0.05807199988418874 0.07811662701128441) (-0.02789913793656669 0.04042554068376987 -0.06409109233583643) (0.1123865609851395 0.7106086335997823 -0.4791012094860189) (-0.2382087108319818 -0.1631068559516417 -0.03777449656950417) (-1.134807310808487 0.5095925601373594 1.200520709623441) (2.667501641416858 -8.715451567055524 -2.80180234648325) (-0.9225785914133223 0.2383117062875474 -0.05997635952173302) (-0.001838377230396648 1.181764972054912 0.6459028254332109) (0.04923517968803971 0.01032106117532055 0.01285624390537275) (-0.1894821108102295 -0.2116651491842095 -0.3719031419936153) (-1.472368076477336 -1.702461454857993 -2.703050338302775) (-7.211517755117694 -16.98916783196283 -15.42575427720727) (-0.238372547355909 -12.78189168000336 1.295981772347725) (-0.5646306691354611 0.4035518665457342 0.03196776670523489) (14.27037599346405 -4.423134783317697 -30.99486288700125) (1.199997088582059 54.69920567217989 2.458851661151023) (-0.2188603955033266 0.09782510900428254 0.08196536238273835) (2.472474561015791 10.15651577196319 -2.251581130849778) (-0.08451599858588332 0.08715436532613977 -4.537463023553698) (-0.2929312952094554 -0.1510965243778933 -0.05114811951276187) (-0.08407254140175581 0.02960173135303731 0.003524044075406947) (0.2527940038662796 -0.07543468261641226 0.3855279077009233) (-3.616345200540581 -6.182961401580402 -5.462629936004159) (-0.9668983917778846 -0.4056725415113587 0.1362434189920268) (-0.1918357709805367 0.05133593878910943 0.09489057929681448) (-0.08805107809772722 -0.1098598366110788 0.05686764799972817) (0.1389283549825052 -0.006749081331055256 0.02836657134278803) (-0.1125548515624734 -0.01245167335753688 -0.0006997044625537963) (0.01502401648208409 0.002359523796856425 -0.03059183484268006) (0.02400837563064021 -0.01756555364137197 0.02193974046197656) (0.01834150988154593 -0.02354836857423414 -0.02300619555908278) (-0.07046671571798283 -0.009178599721560156 0.01169309187332024) (3.739000577616899 35.4025616609853 -0.01792459291402815) (-0.05903055731850544 -0.005306485566049821 0.001874144392408475) (-0.1138670994616497 -0.01314842031078213 0.03991928854236221) (0.252992600558415 0.6183244037603233 0.1450428622316801) (0.5856887591790142 0.01730183791691726 0.1436978070288612) (0.02581842309088497 -0.06645924901741082 -0.1629303094028537) (-0.02112312420935875 -0.1498765871574325 0.8365239446265713) (1.39657608317098 1.341869667828768 -0.2905572821145157) (0.04649794112984537 0.01825187476845894 -0.1015722762554563) (0.02978532541854853 0.07393278973460629 -0.00468768881074343) (-0.1667919660052994 -0.0565248752738763 0.1214897598036042) (-0.8993528459928358 0.5943670277499286 0.7144603253406163) (0.3085714369036953 0.04011995153428081 -0.4651276665567145) (2.912179214389051 4.753246638442601 -1.286629059143533) (-1.999188464310729 1.065922479243673 3.346830661144995) (0.08176381908117997 0.1236804314327207 -0.3696684643342573) (3.453660262556802 -3.698216519501552 1.247931812942019) (-0.5409518243180544 -0.2791750894813839 0.4461246223280118) (0.05804708331868474 -0.002230873491617113 0.03717859979892704) (-4.094377183851345 3.846924462787984 -1.005808388125591) (0.105259486757886 0.2721871154146012 -0.2303979257487008) (-2.048232960369809 -7.474694001608583 -9.509873457385593) (-0.03930035869192999 -0.01240420603435504 -0.01340555218916609) (-5.235167599465691 65.07812718897002 -1.796266770346717) (-0.5489767261836862 -4.058918135974846 -4.86250826900307) (0.1945949157078533 0.360701666275729 -0.2252444175031941) (-0.7022568071080149 0.7927889915356837 1.114321784767762) (-0.2206377278686936 -0.1412062579858249 0.04405118044813385) (-0.04212405671020295 -0.0362922198106275 -0.3629551168121827) (0.07913996832647746 0.4520736414796526 1.212743881964058) (0.5239783572602118 0.5401339624330508 -1.119126722567166) (1.002241356416476 0.1111364144084543 -1.637221254184202) (-0.8292027520027839 1.173913609312154 0.3555866055997623) (0.9763854238470385 0.5820754028913244 0.06002198239365755) (-0.03791295524096063 0.02187744128528223 -0.08125599038535269) (-1.016251512996003 -0.2811478230332107 0.2742737513258164) (-0.2957879341317003 0.3291360209587826 0.03061516957624237) (0.2244638747135636 -0.540180588491554 0.08005115497944665) (-2.363712217576698 -5.348213599626202 -3.719440564092312) (0.1175225234269102 0.003209709168993144 -0.1369695311717217) (-2.956923372092179 -3.902888759987968 -1.099737232396016) (-0.03731137460164322 0.1574677067049242 0.02243504503846993) (0.4050009414187662 0.01751312667935553 -0.2403485400192566) (0.2811168319837213 0.0294240128332986 -0.2715784058904989) (0.3919923247550515 -0.7154754201641066 -0.6588273279866237) (0.005660019411735995 -0.6684859763646293 0.7086667936274211) (0.7903761331655595 0.6373852795107402 0.1195824871031265) (0.2451238374615672 0.06624527585451029 0.1908641422274184) (0.2927281289539357 0.03244044068984826 -0.02765435467154737) (1.218785033377819 5.873822380551912 -4.328336223211547) (-0.4649724481136211 -0.08721442362677945 0.02943060461154665) (3.276248580629298 -0.8492230163683675 0.7938992617360636) (-0.0344622432429731 -0.1988325222719954 0.09325924487026603) (-0.5869311188036824 0.03945122066030677 -0.1304102395940359) (0.04705544551000559 0.02071788233647778 -0.009086617872261678) (-0.4497972977349167 0.07492599518508106 -0.008056893186473315) (-0.03884128526388977 0.0172651859956141 -0.006287027541178686) (-0.2700026467862928 0.3269289293963838 -0.1936662705182232) (2.397352723461814 24.55421751747147 2.813861270142159) (-0.1492117894039309 0.2986592803579694 0.7566577708911524) (0.3293058151496832 -0.5359334488809675 0.137121055947396) (-0.8048543690484125 1.284577111057885 0.05936200637851799) (2.141348734432904 -9.880385420082687 -4.587163437526506) (-0.4027998423642424 1.784355703615935 1.657721082660275) (-3.797139905437152 -0.005827013689189253 -0.7913507517312846) (-0.3363935385864604 -0.2130628529700214 -0.3389249026350899) (-3.673269075096432 -63.61595758527949 -2.967846932796993) (0.02728356813859324 -0.1525919915807717 0.01682565393194118) (-5.64252727703884 4.539917990517562 -1.164665733605538) (-0.4020946657200195 -0.7203369027177541 0.525413903915134) (-0.008468255589343877 0.02814452587999333 -0.05861722908850268) (0.3085516086868073 5.305454632901921 -0.5589001574993449) (0.04108884654609364 -0.00107622608333276 0.02148009509693851) (2.77554522555879 -0.2039988438186246 5.755621285605464) (-0.6314214954527043 -0.05232658803139888 -0.3550566726904633) (-0.1120450877592592 0.05574860341271441 0.04349441327099648) (2.435682593909593 6.10209386211752 -3.54227215650702) (2.072928376277772 8.13926804441542 3.579417217263243) (0.1852063554943881 0.1108298992312639 0.02806378004114189) (0.004437145690542391 0.03334801858462012 -0.04127079894732467) (-0.01191994816990805 -1.473089254984856 0.1145606868082925) (0.880410721868343 -0.3453297026930965 -0.1473602130025019) (1.446330461517802 0.4383488119087201 0.4545910688909975) (-0.002473394907885 0.01537342136713818 0.00925947918681806) (-0.03512819311996851 0.1529924175883427 0.01137188085824939) (2.103748961312383 12.96609334039285 -3.027453557767087) (0.2944543657427831 0.04570492923438465 -0.1520858836750661) (0.0872306907039806 -1.434192816204532 0.3791071221760133) (-6.168886581615856 3.116175650598663 2.161130479066791) (-0.2690340884774887 -7.853960171117769 -3.972817707661632) (0.04874111046547602 0.01875712779844274 0.2860532511863568) (1.278790316029136 0.2823249066892797 2.221571067144706) (0.5593092647347041 0.5287936974632896 1.026550101667338) (-0.1273762807802205 0.05413106078742131 -0.2645875050928653) (0.03578045205522028 0.02525327622380514 0.006394554553326243) (-10.86277942190134 -10.84479653211758 -7.934402598470056) (-1.676501867344173 7.269283392032594 -1.0760702206829) (0.03369374922078799 0.09053705860203552 0.03501597454216469) (-0.6699770826799851 0.09130026143104833 0.125069595766495) (2.413812077507305 -2.803940779120864 -6.797528594055565) (-1.580902124328487 0.3008635685828323 -2.12970238964111) (0.1516650760351701 -0.120494450923096 -0.02657149045363194) (0.04387924135758393 0.01294131102277338 0.0250804003344292) (0.006252629521562213 0.001337676384283519 -5.662955006858874) (0.02768164574661194 0.009842987776991032 0.0207307857014303) (-0.06089852535697324 -0.04909189387879813 -0.02047736569087942) (-0.02496273742868003 0.01452919498723319 0.04473327418751637) (-0.0257203266380741 0.008792939024234767 0.005341829807482059) (1.032466246986604 -9.68484612318062 0.5224954532177708) (0.1226003267211926 -0.02940751619273838 0.04796311434504825) (1.875374514974138 19.12240101816957 -0.7474944601063123) (3.784112867472643 0.5627898578148556 -0.8113838069985688) (-0.0706612206661829 -0.008825279913492363 0.04314399192295274) (-0.002866905742016507 0.06273921583563263 -0.03309699457596516) (-0.6270296974943443 -0.231263162147484 -0.1262017998469326) (0.06197733187553781 -0.3767023714637927 -0.04484538018955408) (0.07591809361513277 -0.2674305911269933 0.5829730654125791) (1.372623289106726 1.01384673924531 -3.685711421032198) (-0.2435016009646572 0.0002859667760651244 0.06528744384815742) (0.04445794257072763 -0.1922228692431941 -0.1299239086769153) (-1.435959633173221 -0.04224410916131105 -0.2808546512274191) (0.8315492112576587 -0.2130885513646079 -0.5703176867419024) (-0.3675029858647932 -0.07170287337020126 0.0440599428943774) (-6.528383233949222 -9.723898996762356 -48.03438887789127) (1.586504546676154 7.04881156158244 -5.153260731903064) (5.811165292797887 10.84794253769299 -2.701080305684403) (0.7819969684962751 5.935943765963757 2.55752107863321) (2.651320724210993 8.172913269367422 -1.294567268341621) (-0.4716836938739957 -4.589871162716544 1.816008348143161) (1.189387650269393 8.266007904884949 19.46328574974394) (-0.7490337677857329 -5.509327899414833 -0.2087663762313507) (0.0002483698089277286 -0.2309933685012636 0.1707885214118401) (0.3319835753484126 0.5215697489811939 0.2906921372346241) (-0.1403651380846348 2.24320758927455 -0.3269707159985061) (0.006375532951451313 -0.01172740023851173 -0.00989984212015985) (0.7138712443551591 38.43291578384078 5.136117179248464) (1.652729511801547 -5.328089729382681 -0.1541584003845402) (0.4020723301329535 0.01591775253368743 0.03946806956143416) (-0.1791742178807887 0.1063212449752739 -0.1783068957457535) (-2.771604742692592 -9.407263564773922 1.702603262524291) (-0.967216184773519 -0.4280560752547607 -0.3543719875333217) (0.02315660315837068 -0.001318634610288992 -0.02932438540782683) (-2.339281973638522 -11.24026244380073 1.572688748258091) (0.0589881327467055 -0.1472520748841059 -0.1153193634635935) (-1.741186227341131 -5.358161279911029 0.08930073590587383) (6.403649882840345 79.49136901084414 -6.545645007294926) (-3.383339473358035 41.34313636903616 -1.543998723405495) (-0.7916764525766267 -7.95215528661368 -3.78009434039646) (-0.9348177209473343 9.736049961351821 -4.610234203089033) (-0.007115760871271408 0.01937630061921205 -0.09565517290215056) (0.3695045823908927 -0.008449764477788071 -0.01947094406530024) (1.747136616657703 6.953629557717423 0.9581057333818215) (2.78074842521925 0.5063706592647526 -0.9289863494786106) (0.6471892915244205 -0.01572419927822881 -0.7042165198078255) (0.01256049023136591 0.0549206329816664 -0.208690284199144) (0.1474839134790002 -0.1120028190423978 0.03444060471870077) (0.00576918443909898 0.01511788949353415 0.009510627108197561) (-0.1449796847236853 -0.6823389378083835 0.8200538321678219) (-0.2598072501747553 0.06502684739074571 -0.1418021542962772) (0.4256677921394246 -0.1490228849225124 -0.2562410346411202) (-0.02291070864174644 -0.05897686680074151 -0.006095845559333776) (-0.1219687122610789 0.1225414421046981 0.1877520274529098) (-1.252324101263874 -7.367782982102464 3.609611098564192) (0.261207617756969 -0.3727027594313785 0.204741535953702) (-0.7058934737481426 1.135721585809634 0.365014804555877) (1.613182569285264 4.057676230528259 -1.131539382089774) (0.04762237390582579 -0.01092096602579563 0.05817542201966069) (0.738170516409576 -0.2537173440797187 -0.1243428917120347) (0.3711961297739126 -2.030946810267073 0.4487062411551961) (-0.1500728630193338 -0.1013954750598772 0.291741197559141) (-0.005938500349649614 0.01832688456516244 0.01427304658406812) (0.4701118662510608 -0.0008991696123370474 -0.08265601403685352) (0.05229726378889059 -0.06705352148372329 -0.0267636830404659) (0.04751296303659661 -0.6282154535059759 -0.9697707679475223) (-0.06146798519756135 -0.05314683812223285 -0.2099849866771065) (-0.6636420954414503 0.2426608374247711 0.842923915756159) (-0.1267092995203231 0.2386629967707628 -1.149074688154117) (-0.09661544232837416 -0.06943361670120517 0.1290024308498699) (0.05799014506816982 0.1086069260219368 -0.07519934843140802) (0.03838054558441763 0.008390142400699008 -0.04807215717996084) (-0.07190981157911923 -0.04431574411229727 0.004497389867202475) (0.508982623890096 -0.8518872843767937 0.1273057271285256) (0.146318899849482 0.001155326849127513 -0.03953804685859166) (0.2098013401357043 -0.4094412875589611 0.4742520727905605) (-0.2333012909260547 0.3231525822948114 0.2782991364863883) (0.05391013678763065 0.03772212889203214 -0.007143219107406944) (-1.548635970665219 0.2571390814740001 0.05222304511820708) (-0.4822609464149715 -0.3333596176309269 0.4115895903862167) (-0.05908636624978847 0.009709759867433054 -0.0707946738181876) (-0.1191756328967586 -0.06339202075909781 0.02033685525899855) (9.771108210498742 -8.776049356422476 0.4203944633549264) (0.4745132311114645 -0.3557249339696073 1.467216858625453) (0.2704371991801142 -0.03259138918842913 0.003876696407704813) (-0.03687673584659937 0.05993487084049323 0.4542119841081055) (4.355051066650933 0.6094243488582349 -0.09559724352380455) (0.8051443153655743 0.7460148998391229 -0.05185047993930773) (-0.1939534980749371 0.3724484062462358 0.4861847678967489) (0.4627219125223171 -0.01954095068353281 0.03923637016478981) (-0.06767881422460945 -0.4507253912443965 0.501306001287205) (0.112580967446389 0.1463115340127205 -0.1388902853148769) (5.065635614495837 3.675960435733677 -13.17023789763116) (-0.06245640914831142 -0.07335800651072652 -0.1345432933368033) (-0.9763664250379233 9.799366502485793 0.534961902192986) (-0.216871953772279 0.03881146891329014 0.07960140179490396) (0.7928173894845353 0.1158610233679729 -0.03018823911158612) (-2.805071059646711 -3.553248399078311 -0.9952444596299856) (-0.05407408133760802 0.02929718899594082 -0.01144058711739684) (2.804910780575407 0.634401615631544 1.077276695696426) (-0.009255546371151339 -0.003282471252051345 -0.01574977735512174) (0.07301342577370008 0.02520898675839404 -0.02710634989792619) (0.2248247974640975 0.1917132634657865 -0.141837805424561) (-1.154819889376551 0.5937982065859339 -0.2859653930640725) (-0.8528385454481706 50.3981405528891 -5.925536920149305) (-0.2546963247187042 0.1445854092955592 -0.1049729471305776) (3.20472694006502 5.894598965569729 -2.223081506436138) (-0.4237066736872225 -0.3098907117997218 -0.6035236871774805) (0.114326986194793 0.01468719525272941 0.261369151163624) (1.330751966412533 -0.9418670568458947 0.1110911958165241) (0.1696308829794283 0.2510297867518855 -0.9161506189544171) (0.1417131878978534 0.2819930827794075 -0.08233942561290987) (-0.07370336881249219 0.004667612695348104 0.01266613424144582) (0.5142292308964862 -76.6341763253966 6.745030121396942) (1.661057979841097 4.37774190630526 -0.6420373819728366) (0.4332463076428212 -0.2698134775186657 -0.1439954041450715) (0.2860935841335802 0.4554369909356339 -0.763276080228428) (-0.4546717908017713 0.1035302542975945 -0.1238767438988549) (0.1521906281543545 -0.06682473338413708 0.009107996832118007) (-0.5742871558671676 0.01687522278081249 0.009424833439250367) (-0.4275908117751924 2.638804795175066e-05 0.2851337184693423) (0.05777948322194876 0.0550096919173878 0.007299134969492263) (-3.164777208517725 -18.66863076284814 -2.477165896177942) (0.02418799464840544 0.009651041961547729 0.01506488323397373) (-0.01407569592280869 -0.0002224328384357217 -0.002340735740912253) (0.006121733583155761 0.001456408776071493 0.01134704401003701) (-0.2816635166313772 -5.389482244977843 1.322247278482972) (0.0911004333104757 0.05671312372698084 -0.6029070370277121) (0.2073554222924536 0.2285796171861483 -0.002553841193197293) (0.006371198064393225 -0.02734325231382661 -0.03172402356392103) (-0.05869435708020389 0.007431061670843867 -0.005722225517716547) (0.0267827429937311 0.5406731685104095 0.2265347877629664) (-0.04140414023722852 0.05776769724475314 0.0103946474945015) (-0.4383844866996918 -0.4372398767168564 -0.3979582100947713) (-0.407326296259876 0.3017648771882311 -0.1727014509268607) (-7.792777603353067 -13.42227869377474 -3.921619145248087) (0.5572633001257191 -0.05507351385416977 -0.09611891969785144) (-0.1394630246768722 0.7722346941739968 0.06003965024529076) (1.361895277799559 32.44786526482632 -6.204731746583643) (2.529212642088426 -14.11474610325799 -10.14100849568959) (1.085181795328045 0.7605475484305996 -1.629670132108457) (0.04439589452665366 -0.04752118237471138 -0.04315575349632296) (2.067862889428006 -0.3228831852053335 -0.9591223113887983) (-0.02077341062242236 -0.008695323958657944 -0.02575370205235164) (-2.273322747994067 -1.650602213102676 -1.712197685506032) (0.222247367725484 0.04546784517199974 -0.136712516114669) (-2.405041717065506 0.03582786266133914 -0.8027520398678083) (-0.05490817401872401 -0.01551598603462953 0.05291936424175368) (-0.01785151642967285 0.00237444240293592 -0.05923167703130848) (-0.06038562013471339 -0.09433090168641954 0.2881307601496889) (-2.558214063241863 -5.842488359786806 -2.798397140800597) (-0.2466437875843416 -0.4853281671376331 0.2669147977646323) (0.2930955724114198 0.2189238263108507 0.01529582373020578) (9.771883212698443 3.622736051001358 0.4609356928393442) (0.03429840403272658 -0.454887942805986 -0.1236018037578182) (3.4688658640214 4.539256689861466 -0.932585641413223) (-3.942833091245319 -1.564654278549292 -3.876337691932035) (-0.2399844875001559 0.5591082650779198 -0.1823381802569393) (0.5630040261599288 0.4711569974401921 -0.6882987343836717) (-1.499300580355296 5.167222990855362 -7.025629598618607) (13.98867755782877 7.01845230309269 -57.26911407081586) (0.02005629725878995 0.04491901502235451 -0.05203527044529162) (0.9681679505210885 -1.179145884489136 0.8702420308861731) (-3.810627596992039 -10.81013569980085 -66.1171559984505) (-0.006315362752003425 0.01877250678026697 -0.01744140771200772) (-0.2361628322229731 0.05460014996786161 -0.02324292964852007) (0.1336163083878698 2.437144213770339 -1.952286897534432) (-0.157633789789094 0.1285745329658814 0.1060922751841032) (-0.2944086402988761 0.2973385029838185 -0.177989125058477) (10.92168179880812 14.90282301190268 4.38402639135297) (-0.04176307481641593 0.01464128667347287 0.02969188788472608) (-0.2657926928671518 -1.050945890887803 0.8233016315755436) (0.02281488260206344 -0.0898355822054462 0.04215752045162883) (0.002519482311973409 0.2208998912225708 -0.2357889634996101) (-1.04870132367733 -1.565162484004399 1.998620156621684) (0.4677670632760139 -0.4820540266011204 -0.102182032150929) (-2.993571538356599 -1.461680435874878 -2.382783783308267) (-0.5077670965103913 0.3776272544941282 -0.04174665017759967) (0.03224864280643003 0.02329801851190163 0.007745568937921497) (-0.01601001454893881 0.008169027615402306 0.01194522257265388) (-14.18771719748138 -7.813100463159079 -13.16927651093118) (-0.8008289904778647 -4.513801802314774 -4.091788626230843) (16.35146711932406 11.40581120373053 -65.38837222556762) (2.42889732118168 14.12884669657477 -0.9013620274817402) (-3.408322694178701 62.94077926255324 -6.695010681109238) (2.103682620760787 -47.01557925085805 4.872617584333808) (1.979930109302179 -3.425828985412532 -0.9860330566724609) (0.2755657383261706 -1.103319087787112 -1.782651687164217) (1.923042644896642 -2.811486169758419 18.56382899229335) (-0.05998592508956313 -0.04933348333215699 0.02986883752971684) (-1.358901042459554 -2.908778321050112 -3.20280401360957) (2.408081886252257 -7.691467073821302 24.49388866740249) (7.497070047038674 14.25195766244383 18.06719170813928) (2.995230584065222 5.834209537500019 -1.105926737596196) (0.05567271088573445 -0.06055543887875917 0.03296020488489639) (-0.1943811765557809 0.4835729403708554 0.7962481744020208) (-0.232312433115504 -4.575753651018396 2.800534941120452) (0.1603440963022965 -7.766193039349425 1.989520637346078) (2.195063998662615 -1.347738375720136 -4.817824951071612) (-0.1558131960144594 -0.1115247768833433 -1.336721829656446) (-0.2390731082988453 0.09332907864185871 -5.177718036799611) (2.226201631681874 -6.798943097786561 3.055975221452937) (-1.259521022639686 -0.4678730517477703 4.486229152925704) (0.197996364974681 0.2083737342402154 -0.06601023089147463) (1.702008374534022 -11.35439557629609 -3.101212515958484) (0.02695661284316354 -0.02259055347196116 -0.2494994426994333) (-3.892712339232923 -6.056149125087386 -13.26131449382675) (3.021954242396861 -15.89513289892305 -7.551259602463321) (-10.9930364415197 0.8938906725054339 1.990237912603674) (3.46798561353806 0.1531478806628679 0.5798780116592497) (-20.32381430127094 -19.37634795540815 -5.516457579522488) (9.488746612503556 16.53350208051889 -2.021069928956421) (-3.401644585217604 -12.79711005383331 1.435238937480385) (2.859051194896951 -10.02991914025049 -0.7601291875409053) (-2.148919222644613 -11.65205552764815 0.3296156050468282) (0.3540011478644192 0.003119490806318348 -0.1108719282417655) (-0.6705782858662089 9.01811042925074 -2.254217565466301) (-1.426655302895939 4.932253633885666 -10.1454846950542) (4.452671406422823 25.43567891679657 2.619629710683822) (-1.636540647551969 11.43181314028136 -2.12989341974435) (0.482338069539549 1.990688205664999 0.7180328488479064) (3.34910392263338 3.407157560155321 9.36347665554432) (-1.881479694431951 -3.470454149674345 0.06220477862765739) (1.287438112647545 -26.50973959652413 12.98535805467266) (-1.427182411018239 -35.52697791882567 -3.787203846886158) (1.564772124559821 5.172461426885538 -0.9605912260860976) (0.06289640028236952 0.03647321540998803 0.03341069700096464) (-2.541354980394762 3.764256377300542 -5.139234359228671) (-0.005431736597998793 -0.043628646964384 -0.03558688679592457) (10.51007605362402 9.744572267694648 -41.72233533569602) (0.03126222384130679 0.003340265232814551 0.01043826027974539) (-2.333194681985749 -8.522302173502066 -52.22731616807097) (-0.1748493895677817 0.09286861417046025 -0.4852965088794031) (10.56813367474367 5.643768033860402 -7.831266329435813) (0.4695634741370283 4.37933707381499 -7.700208833282999) (0.2326796678492963 -0.2196284123133458 0.0208014072719049) (-0.7276326690892844 2.320725497683511 -0.04146569424632457) (1.484595851181574 0.5214060939530458 0.3315522706906316) (0.1609408720421632 -0.196394441670829 -3.233670177390117) (-1.498706440395427 6.257526518538624 -5.743015155214907) (6.212430355561202 6.075243523472929 3.442669360744577) (0.2035210589331478 1.353857347579666 -0.6731257711273674) (-0.2241285537920057 -1.401731133910316 -0.5529258095566459) (-1.419869029281742 -3.608981245834674 -5.691321694958598) (0.04132905887863475 -0.1419984754565107 0.02358522788639432) (0.5943807315873629 0.6103936959063446 -0.07645136311196965) (0.04916350345350345 -0.1359165756547 0.3992795591074089) (-2.016659203149887 2.338529080420607 -0.93547775235857) (-0.4630399631327037 0.7163334393978558 0.6082674375485631) (0.6891747367145978 4.86179339070446 -4.884565998358859) (-0.9475081704887807 -0.04471154997107165 -0.03552912035736389) (-0.0899739682864375 0.5250805855613141 0.04516506375474316) (-2.425530470869201 -0.8605686559655927 -0.8962416822520944) (0.12974689772085 5.119972940950594 2.911854911742075) (-0.1243906222672365 -0.08873306186021199 0.242546564822394) (-0.1470264930091809 12.97183741919825 -8.56355774496644) (-0.4809754466245044 0.3973479012299228 -0.7363206914633678) (0.9763158169198052 -7.878082775946191 -9.382567575049789) (0.01575088247773712 0.003344036313631523 -0.04052197382938783) (-0.26018560459319 -0.05674998160951371 0.5092803956942478) (0.3509594926973829 3.763452652342769 0.3181868144557645) (-1.507192886824745 0.9519363684789259 -0.06485984040807791) (0.08030451310297231 -0.1717163692023299 0.05889735215753931) (0.9817561781790183 1.563527022879001 2.627366927448294) (-0.05327384795655332 -0.7849134343587202 -0.07457737353529204) (-0.2065765444584862 0.3489838506752881 -2.784784255782151) (3.986006987272275 8.727860064905849 -0.7086552948419658) (1.124162827277388 0.8421706217246685 0.3060799370923266) (-0.1778849669192521 -0.3437485659237304 0.01765651523603966) (-0.0219600335064489 -0.03638709721890172 -0.06100687826598412) (-0.009358676450308911 9.211259750008473 -1.67726915523167) (-0.2481810259331319 -0.1192507746885672 -6.834837837799537) (-1.675773268456559 36.70222047652919 2.931368098375705) (-0.966088811186352 -7.923490267451865 -3.453816535230927) (0.7959737496355594 8.663041025721121 -3.184415807215266) (0.5469978376207324 -0.0803463744369618 -0.4135812166391962) (1.477418423533211 6.468493036911867 0.2103680057065411) (4.294558977668292 15.61250502673897 4.113062023334817) (-2.07647786812444 -17.04998088092527 2.172514291836649) (-0.3865848513663 -0.003937418696516648 -1.522221672040615) (-0.149878785107682 0.7107073711818933 -0.5944484717928056) (-4.314924213662854 9.312579952586203 0.6112152628560188) (-0.0782413935389973 -0.008833626380949474 0.05251160054247635) (1.159440216760475 -0.00261258111780388 -0.1764977272207174) (-0.01390909900012353 0.03616026373385149 -0.03078972276892717) (1.829331517576418 -0.0537947991869368 -0.63747349332736) (-0.09312054529562461 -0.0430077337180208 0.5660073306885854) (-0.1278627346799543 -0.2026663609514568 0.05224716418921781) (5.706711238307056 4.301900480022248 1.30868384452769) (0.178879812344228 0.02709093966663472 -0.1138044135464565) (0.7690697791715526 -2.273286238557056 -0.3919994755278192) (-3.273960622065399 4.081367565309192 -2.278708712334259) (0.3230150834129735 0.01214769619380567 0.5921110724942589) (-0.01526035760688056 -0.1454963407351892 0.04114070808031334) (2.023458019676969 3.194378747439378 -1.836268303287399) (-0.9208679970461648 15.54116155463722 2.60409495916626) (3.70188178157177 6.823114042563687 0.8260076718509111) (-0.2048376379200783 -0.8686503534840631 0.582594767258645) (1.300943957921195 7.044730431902058 8.333177236157912) (0.006228008077520636 0.05551789833015451 -6.557941533679626) (-0.1744541805933795 -0.1472803042686441 -0.2045560340086049) (-2.980069722254477 40.44587711797174 -3.801462976916608) (-0.2618143035324016 -0.3159082959842923 -7.135770394223482) (-0.04550881712292956 0.04875824755124564 0.04412266354109046) (0.4713614575264251 -0.2431245366694376 -10.7779841403111) (-0.1717070877720101 0.3720177549140224 0.0933414198525347) (1.284477137039812 1.755250721177778 0.3699286604448455) (0.2553925406543135 -0.0208133742195645 -0.4066896075375671) (0.7017804932470098 -0.04046844465326271 0.1437497032645629) (1.014784039479353 -0.1843618476798826 0.1269634913442561) (0.9274243576477419 7.021949833786056 -4.906011742115042) (3.482402100947307 2.502589882314587 1.262425381682332) (3.110023769170173 33.41636428533719 -0.7216587962957234) (0.1341521356190155 -0.1478413793344957 0.1382623916108946) (-0.3816144728237042 7.103874462131606 -1.757391419833281) (1.967557514412666 2.29080056598812 2.153880863464677) (1.041312407994287 3.447467907759772 -0.08288876338638718) (2.488690032291029 11.82686584228702 -1.126206272035463) (-0.1944527072842351 -0.2218751016817638 0.05278055822464107) (0.7601191471848414 0.5396349688480411 -0.1323192854260312) (-0.2267365909025638 0.7900038820055619 -0.4976783307956238) (-1.009074212956251 -7.501975336557545 4.996045353402085) (-4.576435734374468 -6.862894252415875 6.911192115531268) (0.952988114400291 0.4109681775570804 0.5268567391359036) (-1.25973288951939 0.7314027999679665 -0.9629962515179719) (0.2817862014297994 9.684832361459797 6.197135786824879) (-0.02320565575148602 -0.5455195743529714 -0.07004226256530424) (1.124189468384919 -3.644039611635414 -5.601095218304459) (1.122134540900646 0.9334459167170955 0.564028038378945) (-1.784579877259225 -1.138673595834639 -3.03037420169529) (0.8352072068250807 1.86150989141329 0.9428451619179966) (0.08645392230584009 -7.409015830723684 1.179082365152431) (0.1578789153517791 0.07235471965278284 -0.8445865276134773) (-1.213693036015975 -2.075631299534458 3.217460326695025) (-1.311155307635024 -1.126221251622059 -1.126521363342602) (1.635998912645393 5.849758892945328 0.06823720976744116) (1.486135613794737 -3.565834452963484 -1.675123611408706) (-1.523609660854202 -1.158334984678405 -0.2732005894913151) (0.008618054326981268 0.4872667278053653 -0.428330356084961) (-17.40704384074225 -9.479430354070129 -1.914362951810775) (0.6418088186541746 0.2089309264069164 0.3342794612566365) (0.6525525735045712 -2.556610730678103 -4.401645057714493) (-0.02833901494820042 0.003007161490624624 -0.05061187357693871) (-0.07013554530831848 0.249635958159799 -0.09649975656426499) (0.07676872068549837 0.08668928485535571 -0.5942015534527795) (-0.07297660748216228 -0.02905284037219847 0.03917180676341994) (0.631235181960453 -1.154322929483213 -0.4543091105861856) (-0.0742895801426679 -0.1934907743109561 0.0237503103893842) (-0.3998867852748319 0.2631358008917911 -0.1467058344217849) (-3.002892856098124 1.104459462287224 -2.470446726390368) (3.249146350840175 -5.355926697344666 6.657322156747934) (-2.226010406167693 5.450206784283801 2.360072337186999) (3.298798357906801 3.201171641133925 1.017064495815873) (0.04648529254684428 -0.02223811992265595 -0.01874813015536372) (-89.58926370137659 3.878067269271502 51.43705341016495) (-3.64962780589221 14.3474991094634 -7.999793682559545) (-12.01656667883986 -8.408031517740611 12.93712927617214) (0.03046507995873712 -0.1429652089062038 0.01526363750942124) (0.6758745697620412 -0.5091700423527096 0.1798072302744043) (0.05503585199103619 0.01236692901598946 0.0008649624652929781) (0.4294014429891302 0.6817607446031746 3.07723146109351) (-2.18831187870403 1.306914827704696 -2.257260907973781) (0.1012174556186396 0.3441811464791893 -0.09883115146288993) (1.043100151114101 -3.056896551321775 -0.8110064019719792) (0.585394587951797 0.8398111032159883 -0.4554839967502219) (-2.005302766041416 5.404933984077767 2.510721345008481) (0.1140268729501576 -0.5010114468777934 -0.1887927273156142) (-0.3506960762101004 -5.629973841032403 2.129788294796282) (-1.053570468175105 8.948785182613163 1.739754648673525) (-0.1085531152431713 -0.8298194078404391 -0.4955102823772124) (-0.231369026784147 -0.174255209957909 0.07829390965956801) (0.09171211444734996 -0.01072973972885579 0.004025985104042741) (-0.1398788807896195 -0.0343453543465306 -0.04605911962712061) (-1.137810177265091 0.8462797140717859 -1.601092603589843) (0.02307692121084277 0.01068969884807911 -0.02375566099831147) (0.2590342864154835 -0.2102674581051019 0.1478608773116468) (-0.2702314625210637 -0.2158950041654193 -0.2649549381225396) (0.1375769134897264 -0.2098290472741264 -0.7763062692912325) (-0.5420612513369867 -0.1051511953505454 0.1633749499744833) (-0.02173439884040507 0.006862921353236975 0.02494206972189453) (-0.1433623451356245 -0.233987103213974 -0.159208580057338) (-0.03752777500112896 0.004197212311051284 0.04978758800593468) (0.03455803102493579 -0.2153129872083686 -0.0994200591319491) (1.279541548274056 57.65375561167933 -10.46895099316062) (-0.02509670801530884 0.01317043128730332 0.01543526381716063) (0.396963131707826 0.1163629021765629 0.1516965444987913) (2.611652965392873 7.285603020624826 -9.505183615948914) (-1.685353012843763 56.66414330840335 6.968386613040338) (2.842720827448332 36.76589279152788 1.673993462559908) (-7.572886964224828 4.833753461881649 -0.627584440461072) (-2.315717890165137 1.637958895458878 -3.003525002682566) (3.119435334824257 4.229979447421025 -4.76619730163603) (0.01991997726672612 5.632812495324594 0.1083613829384023) (2.026129078336045 -10.11606140750352 1.489103082337098) (-1.336213692069577 54.8524869909537 -7.543904285728819) (2.024206426611557 2.644775649160261 1.942596926279323) (-0.5091631163782206 4.443536982117468 -4.411243529917988) (-0.4676885582298305 1.228173652789157 -0.7342853712665328) (-2.746960303989359 45.19499381146939 -1.043567766306557) (2.161802134325037 14.34297432744495 0.7949971678670339) (-0.007474851410835652 0.02821737059560827 -0.07841173463834268) (2.458047863802439 48.2771483356448 7.134594323873815) (-1.606886451920671 4.881994964769913 2.725121809509707) (-0.0001908800510022624 8.695353511947873 -4.391446387413698) (1.185587188067313 42.9507653931193 -8.890061608770296) (-0.06436957755090433 -0.06191182173853656 -5.180557404873028) (0.06333022647674695 -0.05618008579648457 -0.08850359144418939) (0.001630242789084801 -0.1486354729303839 0.1883143317543778) (-2.243507441516183 5.464171081710488 -4.119463261217547) (0.633450365759392 -0.1209495495697519 -0.02096889677709632) (-0.3949795201080704 -60.34264970600239 -6.884359484901376) (0.03189560957439963 0.5282649620594611 -0.3676715622429002) (-0.02075075005426516 -0.4324679012608689 -0.06431470998728697) (-1.154457876261681 -3.594454759525784 -2.441838352234813) (3.929062023562464 -57.68207287029276 4.408849218001722) (-1.647372028157621 -3.14940052957644 0.447546147355219) (1.280897729728027 -2.140778769682995 -9.295190780163471) (0.1152514122487011 -0.09209717639816838 0.2124375656007025) (3.322484028835586 -0.1254787832147742 -1.081816899290646) (2.612930819115905 -10.40570095929691 -1.677003486673598) (-2.84263944005213 -9.797332716604792 0.8094012147169272) (1.607563936428768 1.551017093762931 -5.260803066507473) (0.017769203435024 0.01586963028059946 -0.01285349996635903) (0.01069933426172778 -0.05757876560726147 -0.02606043670114793) (0.951314569688213 0.2031146482402537 -5.349209028574863) (-0.03837926967536863 -0.00358339831370314 0.004334980254228434) (-3.302200708718045 -0.978816753777882 -1.579873513966675) (-0.5025492550079496 -0.622210588009821 0.285967862340498) (-1.426837153046848 -5.72721075502101 1.131397843628899) (-0.0149115307448109 -0.005887286847548621 0.005384607827321915) (-0.02809600663530526 0.1264682352432273 0.02709652480216508) (0.01805873188878693 0.004246889533151318 0.01919821544151679) (-0.00964377523439792 0.02460167561692806 0.01997072292818299) (-0.02610368587036518 0.009637407963343853 0.02581250022251737) (-0.06568702080473213 -0.104432625623023 -6.762314033120241) (0.5017526644507369 -0.9369866479319297 -0.02887500304098699) (0.01897227038253411 0.1433864773242189 -5.720266817609079) (0.3354574279883744 0.1944165932132409 -4.866572337496799) (-0.003967092676595304 -0.2590416088275197 -0.002595709334841732) (1.061252671380921 0.3766145291219382 -4.291511993320581) (0.1104196387778395 -0.01356438115934214 -0.08740065351163) (-0.01799831520262146 -0.004356827680876986 -0.03814974967407477) (-0.2449464179208796 -0.04958192233437922 -0.2174074741601008) (-0.441029637766063 0.3997334290083364 2.175438243657657) (-0.1882426809578168 0.02076683992611677 0.05289636711574142) (0.04634037929763671 -0.04200435597658798 -6.114508753910473) (-0.06349623219330083 0.01275299288315304 0.01481636970874679) (-0.5441115877638593 0.01195875244668931 -0.2418427820634833) (-1.368968062915487 38.63094783125689 -6.277476971419933) (1.044833877163971 8.339954854506004 -2.771908025132616) (-0.04374299155650352 25.41546713428611 0.8842737124386654) (-0.003757698760823186 -0.9334862163120967 0.6729076744924607) (-0.5515144487394539 -0.2444307060989693 -0.05015892952187838) (0.1308688625003376 0.1699294404118297 -0.05124404565972476) (-0.7058553382504048 0.2295608255414959 0.2002586078883436) (0.5696343350044554 29.79940623754443 -1.357500337470054) (3.8406595623916 -1.324044130306808 -4.752807386933913) (-7.902908554305862 -32.77450335169289 -3.003463932794178) (0.4694283289882258 6.905960471339673 2.131856513192923) (1.399610551274159 -12.53636740950373 4.841216050744777) (-28.89917879358762 -48.28478605130881 24.08669808289363) (-12.18067040308867 -36.87071017542512 24.51522973450037) (0.08906051016527949 -0.9120583197449119 0.4061925805278722) (0.2521308974856245 -0.6738228833499863 -0.3590024098148925) (-1.815951541474405 7.515789491373854 3.630483084442448) (1.981478206390315 0.9557871722066116 12.00153835890281) (1.946573025714309 9.499899508617403 -3.524333747309131) (-1.217206548850667 1.575600846439168 -2.965500862914334) (-3.295781808662624 1.64563191398404 -1.079975554517823) (3.164412526185632 0.6469774402701209 -1.059038438054526) (0.01223204051917596 0.01129269760116623 -0.03491099330473356) (-0.7658026533364461 -0.4012652041406884 0.057830578310943) (0.58297685621554 -0.1098204363014498 -0.005224246272946043) (0.009843179930208872 0.004090672608743297 -0.001987572713119307) (-0.2138574073579904 0.3408602118245503 -0.1995223232892148) (-0.03132942852655246 0.1924890931943387 -0.2167358599048132) (-0.06737209200613503 -0.0271187713847708 0.01618893682582335) (-6.860410420219957 -2.585763550943267 1.964650815669527) (-3.194197819543898 -75.35352182172952 10.10412745720606) (-0.0224953925999735 0.1238799288056058 0.2176068154825935) (0.2495818278417987 -0.2709478643930877 -0.06350393375994605) (0.9522233484955889 0.3727134527684212 -0.7482075739370183) (-0.4776894110833162 0.03286703150454306 0.5864954478191442) (0.606583131514054 0.1601991349385974 0.6399940693142875) (0.6481855652243074 0.1948812067200418 -1.009893601715733) (-0.04728700113045194 0.04804132996913324 0.01093625803143375) (-0.2137402705840342 0.2754262053264083 0.07573088588560424) (-0.02738967460580988 -0.7069499235252343 -1.723183841589353) (-0.009700641116603792 0.7644602196549843 -1.146246858797351) (-3.386196911753025 7.164260060776646 -26.72932793810214) (-3.981870038002616 1.004646022742201 -1.104154370077254) (2.222656359335983 -0.6078416531376898 -2.520800014576422) (4.186894192894144 -0.2806693578865981 -5.784198310502794) (2.240938997158539 3.400102675246741 -0.8930118234024553) (0.008086280309832626 0.05720258340072813 0.08142426903686342) (-0.001743203144519118 -0.001241435197301512 -0.004090960699417468) (-0.003113633134473235 0.008077622693875727 -0.001883379249043292) (-0.1151382616091243 0.06454284321151951 -0.03763055833728402) (0.1847221991340287 0.07684236601663608 -0.06882834850897389) (0.02429107654464579 0.01187089763647574 -0.01677832280934756) (-8.187998209482116 -39.49527290798786 2.550993047168053) (-0.01238477148015462 -0.1107401130926906 0.009339597231182942) (-0.01496520851213934 -0.008281070342081892 0.00941778583055804) (-0.6522112031620386 -1.889750476902196 -2.515703146261466) (0.7615919678827612 -36.44642098362505 2.812342652985395) (-0.07595113822332795 -0.01880346469448822 0.007344183750463942) (-0.1131829184431231 -8.677870077627261 3.564219450132486) (-0.6805898660434218 1.627748958240448 1.497283641605025) (-3.39866513452847 -41.76825800985418 -7.521733939874661) (-0.2438180536031165 -13.34382066350323 5.067525506812379) (1.121374135687537 -0.0963198818921602 -5.068244903887392) (2.917445771924791 -6.475422545738087 -2.777402978636147) (0.0008055653208922237 0.01595205177505622 -0.007063940609374975) (0.0162810755727931 -0.01348819873455373 -0.02583668652171449) (0.005394292062953622 0.02083833904930782 -0.009364322830124861) (-0.02248116995006186 0.01589071574711705 -0.0322934041475427) (-0.08202494423976261 -0.07450822738532242 0.1066393628427484) (0.2997901007187121 -24.5786681898477 -6.961726433290983) (-2.040979136637955 8.433838308492914 2.446653793692838) (1.421116864267141 13.36466660812043 -3.10993192352803) (-0.02663532858272456 -0.01640047365604048 -0.1054080576722747) (0.01066315660456727 -0.005834448713483794 0.01147239087493617) (-0.04723641263319678 0.4532717068242704 -0.6749342797907301) (-0.04597856843314252 0.05557810139316512 0.1283538788747561) (-2.400319142397634 -5.353563783204903 -0.9266934227552424) (0.00977726330026979 -0.1210820499017277 -5.718484374554804) (-2.590665467239802 -8.411342617116157 -6.21241420406053) (-0.01237368602417789 -0.009178437982540576 0.001218316513469646) (-0.001070041107491763 0.01989357381278146 -3.640766558565544) (4.444310505632985 -13.59845306030486 9.505306687281806) (-0.003753876237510046 -0.01575269244147809 0.007648930983576789) (2.366646697638922 -47.51928820406134 -0.8158896988213113) (0.1073924255004562 -0.478256640694479 -0.3864360155450886) (0.07998064953411857 0.01039993853977737 0.01132956756738589) (-0.08140230347356264 0.03292779166634859 -5.358400161847781) (0.0241391640328202 0.007075064161841459 -0.08359127376249975) (-6.524914065955789 -12.79016665500888 4.667914405989285) (-0.01524607081892861 0.04633968351248442 -0.01886040411898337) (-0.03051754832985824 -0.05432894652171377 0.04407847800769456) (0.01733782172851308 -0.02203706823094449 -0.02856961299358414) (-0.01218444271540259 -0.0006765991691071657 -0.003936883360181366) (4.762114739534041 -6.662578546267633 -5.953159670707057) (-0.1882435097891855 0.0365503102553516 -0.003856980365491753) (180.393181522243 -69.86072019359612 65.59180769310049) (100.6014099334171 -94.34794460197531 -3.160772003942224) (11.85917654594685 -47.77997587970216 2.505445395387249) (-0.003863157931069183 -0.02609089700961336 -0.0282637492551035) (0.2858817264072331 -3.53145274418799 1.486783252252562) (1.057985190604741 1.183719569143196 1.503756964217459) (0.08904092575323475 0.01802562956655759 -0.02197121013005436) (-0.6966364465480177 -34.45728413203102 -6.443610043142788) (0.03914353836743743 -0.001095537252202669 0.01512569176241254) (-1.038886096315894 -34.89493103099246 4.630778285578649) (0.1483792564564789 -33.87238323370561 -3.21543010627052) (-1.493215136914745 -2.474254791414006 -0.2017748638032646) (-3.087971951377201 -5.342455755409178 -2.500312518224499) (-0.1650494852161973 -15.80661064235569 2.837858552948298) (-2.091548274468104 -7.489251529133767 3.278164054183076) (1.699955207403471 -32.36926719767859 -1.863334580850956) (0.1504930277363794 0.03050288272790622 0.01651231371115715) (0.004639819797457474 -0.003500960220621231 -0.0055874480367114) (0.4276188683659399 -0.4459243027365721 -6.88353449176104) (-0.5588743372436183 -0.03829696172339293 -0.04547786222353037) (1.485471006238926 1.943894057383726 0.3005001161310192) (1.405218866221877 1.429941057406014 0.2515338235484406) (0.5668506058371368 0.262213064823965 -0.1909646551937221) (0.02951905357979569 -0.08681773965533975 0.06937567153828751) (-0.6475654838608166 -0.1019465981845601 0.05202409582381648) (-0.4318866527315925 0.00782259302964973 0.2651609014863597) (-0.4973670807549218 0.5439022456126846 0.02643789545842265) (-0.459978443986382 -0.1971319662688678 -0.2455600813112606) (1.997229240809488 0.007121606434775385 -0.7917919670233695) (0.01577913998463761 0.02361824923194938 -0.0007439679917689949) (-0.4573612316811939 -3.779375588449 0.3563684530519608) (0.2298545520168451 -0.824495810980499 0.261905703698996) (0.08101399807214871 0.3288783711010981 -0.2618490112873129) (0.07555278039649582 0.06065017560103327 -0.02989125227676249) (-0.1064528034949806 -0.2384340577903515 0.2677928766573521) (0.4887951433463651 0.2785868312161794 -0.0661179668464051) (-26.24248064773409 8.945736607446946 -32.25321051626948) (-0.001505396930351527 0.003134856218701383 0.0008945305467583549) (-0.1981556977709846 -0.05403956397679556 -5.323861342188852) (-0.1029997459223636 -0.03324996464495736 0.07607134952737349) (-0.07779881761131058 -0.06492267822502276 0.009834404808621043) (0.9739459770823951 0.3608191055071746 0.3680973208593784) (-0.2996647154546916 -0.3371139022186749 -0.3629030773066205) (-0.304096665076124 0.4332585553870877 0.6246353359142413) (-1.665371241219456 -0.484888265461619 -1.308051707264572) (-0.643248814983336 0.4884907814665876 -0.934096548562913) (0.5658748945880558 -0.3560660218853262 0.5805939606162047) (-2.865374823112461 0.4694288539919602 4.103783262783196) (0.6543302291277417 -2.017904690180379 -1.057696645215309) (-0.3933730875290038 -0.8146257495481044 -1.579983652633597) (-1.043172775632843 1.015020590781197 -0.295153261473669) (3.380086002079497 10.46150368790422 2.640447013179963) (2.874860348053694 4.52068502926149 -0.9406028083508979) (7.729144343229772 4.673762124623936 0.3890984308192215) (-0.3586675490188341 9.970220553177972 -0.5913640738090233) (-3.056181893442997 1.300568602965365 1.775982952662661) (-2.020435499281257 1.050659324951306 0.1457235736562714) (0.2307581180384435 -3.624131589280138 -1.727702690472347) (-1.304912435329842 -0.536805970409202 -0.2810686717983903) (-0.6291131705356505 -0.05973555391286204 0.1668806430861586) (1.583141964937308 6.6981375767695 -1.250472472282481) (-0.1929785107545952 0.09355870389175552 -0.0693891097154674) (1.057699515337231 -0.5998066766923711 -0.5463994764283671) (-0.6487491688528341 2.94288372778055 9.988968555740882) (-2.209537879960715 0.7299651054535852 -3.207468566225629) (-0.8718741311405138 0.2142070298847896 -1.220862515931771) (0.3528486621001771 0.7436861757590627 -0.4751518210642115) (6.317615837793504 9.685436761183357 1.069796781127763) (0.3406702013658006 8.916412275803003 -2.537477239498742) (-4.135142820145179 -7.47575151985542 0.7452993891467554) (-1.290129764892553 1.854391971234734 -1.585021721649451) (-0.1749028938703213 1.581565178098395 -3.230007804250185) (-6.164266342588395 8.906809811823427 10.10677043690758) (-6.487541925608979 12.52858830592967 -10.27301674697966) (-4.263497107425601 -40.46662230297265 -6.057254987187664) (-0.7967344058569057 -5.221603863229351 -2.873249283476271) (1.695131272889091 5.423099785840378 3.33395551291227) (0.4094805145553673 2.099164805692363 2.584979429402175) (2.228801078476466 1.022307186221046 -0.743819936302838) (-0.6557915945829965 13.08703527191856 -4.48665426541286) (-1.79084943538761 18.00512478555828 1.885278898595712) (1.197797270176935 1.671512839649464 0.4046240935743633) (0.5846088474196312 0.7873189919844324 -5.666060116645055) (3.283141266910055 8.775988100518834 -3.213242238029354) (-0.1272415183953511 -0.07298201924476144 -0.1132024738018434) (1.679916727960706 9.105632832298266 -19.80828359812758) (0.6207126265952694 2.861449917281863 -3.535449114865755) (-1.685839302322414 0.5044881466885245 0.3659670407427533) (3.068645280373186 -2.355141312379227 -1.994693953446414) (-1.134002138086693 4.903439956934024 -1.829375920159201) (-0.435963629615189 0.008393987834886985 -1.558455349856882) (-1.895524625328246 29.38217539624294 -2.177277740632654) (0.2355631035023777 0.3605296805322599 -3.636192542162732) (-0.1140385432044352 -2.037040760742057 1.703608924080369) (-0.9823780241232964 9.337954204105555 -1.686999758911712) (-2.433002912853168 -6.392261966469746 2.537857954450131) (0.03506787592878113 -2.995564343124914 0.6163770447492336) (1.255635651461466 3.230698944469115 1.410317563409166) (-0.3381559389491459 0.3506571058531829 0.2053079730635626) (-0.6821139992864031 1.911137736923196 -0.001056500683171535) (0.1639238759502613 -3.754483236493274 1.748162914133558) (0.1160519215329751 0.2917085972645306 -0.05728931340524906) (38.79857194800887 2.865687220934764 -21.12250684244379) (-0.5456176504752328 6.610907158425976 -8.238014435760197) (-1.93019729382853 4.510347421852188 -3.057576913657647) (-1.182409407470399 -8.324465775341872 3.564344822651427) (-2.446104664750366 3.211600326465756 -12.10478941928185) (-2.173565975589784 -10.72943898423797 -6.321568690047448) (-1.027068500865769 6.58875037222264 1.257219232224051) (1.794119336629228 -0.4220778374133513 -3.019046467354841) (-0.445037065199848 -1.224349893142145 -3.653346312279488) (1.052235554560358 -8.143686735567529 -4.109787519482698) (-0.01734054061233725 3.49749010254898 -0.8169220730033457) (-0.9492704352735761 3.084745425043357 -2.618268495940207) (0.07146498766870346 9.499537093240782 -2.338101542543297) (0.9220332784815457 6.215898006152385 -1.381256346944272) (0.6367813139448872 -0.7138265980106704 -0.4586147074408362) (-0.3382419999268542 37.65894346560141 -4.425553055846414) (-2.056030512471729 -10.61102265768444 -8.16785056523792) (0.9944678267533659 -0.4101012474528253 -0.6265556052042108) (-1.328032739092549 8.476309746031758 -1.354961001623531) (4.174307945169081 2.950718591170852 0.9798687405302172) (-1.187747547000469 -8.653874838780768 -0.4368391471822928) (-0.09259864110848481 4.9257620335326 -1.147551307353076) (10.36391633212143 3.481414750235145 5.368912886209545) (1.06418200824783 7.393825648937449 -1.546873879769109) (-0.2844505592702325 -0.5564404557188897 0.001997249178371444) (0.1175582168209397 -1.103875411838135 0.07429261978842613) (0.9276036392230639 55.71269421023088 -5.843338244023579) (4.416948524576282 4.633398653271554 -0.2230973124686206) (4.145611659730033 17.06940909032362 3.875863612662074) (0.04231313347218402 -0.02342003632909134 0.04168521487282954) (-0.06397026432044749 -0.006242507848811071 0.09153394299153514) (0.4670237994656548 0.2922171428868362 -0.734958411467904) (0.1149880378128847 -0.2902011132197429 -6.172140189244263) (-0.6516356059961215 1.268759592089611 -0.6010292702172138) (-2.861980690798641 2.019694394772496 -6.319465238263843) (5.143332268946041 0.9245567575273435 -1.093501699743118) (0.1457281999010092 -0.111056342377313 -1.835674295974991) (-0.00592164601809908 -0.398902206531955 -0.121495233787346) (-0.08401979394157091 0.08449068655254374 0.04343782821166393) (0.4414246317688569 -0.06299150471799105 0.2096776000412995) (0.1997340031829355 -0.001445731132820574 -0.0170271501312249) (0.6594338176755442 0.4059171998365276 -0.6161646486522152) (0.4803054258015985 -0.1810319027807466 0.030165630728272) (-1.707452040864822 -1.396113067345817 0.2882816661819341) (-1.76711023407413 0.343455630384074 1.145520687440493) (-0.08673058251986325 5.142169527923585 0.4492039894725108) (-0.36344250301628 -10.02488250652437 1.193844247455119) (-0.04888744314573126 -0.008213493500277648 0.04795691786409255) (0.460862551912 2.192406518470335 -2.114795178897381) (0.5314078990726939 -4.816254985309082 -7.266258891315209) (4.838554270375666 -36.44092691874295 0.881170298337361) (-0.402074281143612 -15.8045831842605 -3.83547431530157) (-0.07050339113625732 -0.02577935098417839 0.08933666904086095) (0.2097189733572205 4.579668415326957 3.122425511232323) (-1.050702286133724 2.514478523128703 -2.785645927642704) (-0.8826070767960397 -55.39835373391098 -2.142157857915761) (-2.795642552292132 -3.241313225502061 -8.701309608178288) (2.509393028449404 34.07328303603389 4.891388678369743) (-0.3791136017229943 -0.182515865476518 0.01662371312993927) (-1.133443188497409 1.955180196791675 0.2649932225421989) (-0.9667634882717058 10.28150562026504 6.993749709509888) (-0.08775673680422633 0.01409515930756827 0.02452242051335036) (1.507481725963219 -0.5178668529968289 -1.893516391949423) (0.4472846948686481 10.87430697452193 10.18291245739821) (-2.875356677340837 5.570881731779082 0.03332839573746726) (1.386870112975162 7.375650716819877 1.374817979475573) (-6.10752633254088 -32.2798235205581 -2.246655868047002) (7.628229916842914 5.069153269331149 2.553005263570055) (0.1643035739691185 -0.00898365876801123 0.03287412550194385) (-0.4057823688394928 0.1045814461600873 -0.01182983434717207) (0.9643013291153206 5.179672976861427 0.6991538480679003) (-0.1709388359453952 -8.424686549343654 -1.212215511298395) (-0.6810566347018554 0.4146129561165866 -0.1288882582880709) (1.355783232135233 1.006085194189668 0.909836821204826) (-0.3687671950333666 0.8748187983653175 0.6759279465806822) (-3.279902510711294 6.688399057363855 -1.193136005970324) (1.530839990786236 7.728315713424638 0.9394342607653153) (0.4641912225957776 -10.1969691060832 -5.427975388917766) (11.37994287882346 14.59940093381591 4.264607699171578) (-0.6494536256428122 -0.9211537923309381 -3.88952699488296) (-0.1140883206485454 1.257946802636099 0.4038327856949346) (0.1892793051059455 0.06105397837699769 -0.08613607376821612) (0.6124697667988848 1.467216671184094 0.652952329437344) (0.08490626977444898 -0.2552362584803644 0.08869819165593774) (0.2932411970883025 -0.1749738396426357 -0.3667706198989684) (-0.01680535264153023 -0.8413350455777719 0.04117181341346882) (-0.952040501170959 3.554211259138903 -1.438739892037482) (0.3519914634444019 -0.5002082667584569 -0.3566535329843411) (-8.287176605975429 -5.500646598885993 -0.06580943042590803) (-0.3066792089525703 -0.1639030554898197 -0.06416490715894924) (2.815515680408931 -3.248001324356934 -3.7701482762957) (-3.715079763367768 -1.512069253963546 -4.400307878063486) (-0.5245556627943084 0.1073106287977747 -0.004269019622490426) (3.488218737638455 -5.396891427794543 2.992436289339381) (-3.670064092191413 9.514101850866417 -15.33647912638595) (-0.1480777826991229 0.005936071816492847 -0.09897509113071765) (-0.1519384640660483 0.383639445594726 -0.2791950741018367) (-0.7043169464765894 -7.445473238118413 9.975114395458696) (-3.819215909666176 -51.7982222511353 3.573209253286694) (-0.02997435334273435 1.713882724119792 0.1226020004715378) (0.2972081456146349 7.124753593551981 -2.644726505284425) (-2.160130367479202 12.61220208563671 8.850922708694119) (-5.415933163370559 3.863178636118739 -3.398259548120863) (-5.300687269593424 -74.36911270862042 -5.246040769912312) (0.3775778493322607 0.6521275546704813 -0.6346181633012999) (0.06331031086602529 0.08710876323255495 0.1113647783216935) (-1.621972567646403 12.37399501230252 -6.256716641940036) (-21.38822899226608 -24.60082576089306 -3.457545710520855) (3.907763669403931 26.35351262259966 -7.004321988480462) (-2.068830916563772 -31.9781512655183 -8.240034295944799) (-8.605757165401894 -3.855084095368804 8.221166913476649) (-0.8292053457663837 -3.883901142104523 2.367847891338783) (-1.674087359959654 -7.97262074470903 2.084990328306424) (6.169993896564346 11.60691817551956 -1.720199365315623) (-0.3237829237012206 -4.700534184110925 -6.313213452418029) (-1.29611483818368 -0.1794729472566742 -0.141617572823756) (-0.7877385886725923 2.446838614739387 -1.029241081648925) (-1.690245249500055 -1.619630952459986 0.7101025874286206) (-2.104683042105803 -25.3806526790509 2.734973672675269) (-0.7374394840664458 -2.314340946232706 -0.3650659758477666) (1.530391329411484 -0.3456042008358555 0.07555492063729097) (-0.3958467652802367 -1.451121770315585 0.5098259974631145) (-0.5023911049234067 -0.5259215434754351 0.02074972118820992) (9.432172643101566 14.52535492271125 -6.628778477402864) (2.297941237423706 -2.286617249202905 0.1028851259538291) (0.3382848909423826 0.06174921587159102 0.01143590660257993) (1.298516594843523 1.057672586099518 -5.861037655697453) (1.423348839870977 -11.86871521258392 -2.93248386298364) (0.1162790613243363 5.84350279689045 -0.9451500884078454) (4.367853259579544 12.93144557607314 5.517588740355786) (-4.583502511570961 -6.037260052582985 1.175845585341817) (0.1141460560876161 0.0698250661848448 -0.2240248347398156) (-29.6003609631317 -4.448613749552572 58.26479800567115) (-0.5020650077614049 -0.07575491675611923 -0.3725894429814164) (0.5868054551906501 -0.3469082713286267 0.7669443107117676) (0.1995737183130563 7.715791568369986 2.325238326461115) (-0.03157182778166534 0.1071261944720305 0.2006946004808221) (0.2402253404330431 0.2603963580510515 0.07363657132060597) (1.407984512405854 -28.78911005876058 0.74004807264594) (-1.032245859556428 0.0131333479841262 -0.2191343584378061) (-0.7872639832762619 -0.8990433973653652 0.1670404930961662) (-1.452705096590917 0.1322977773589779 1.350981235490408) (-0.8546439040851839 -1.045868512044844 -0.8381745834738442) (-1.068837018152262 -3.059632294637655 -0.8826639740674547) (0.05174625527177074 0.1240874041097177 0.01003568500168843) (0.1528366521641917 -0.01679549394548861 -0.04712397726343289) (5.492855915667221 1.846036546309002 -1.674210904669342) (-0.4632518025562695 -2.60018963068219 -0.2480747398205491) (3.299404821629101 -30.0811320149082 4.205229177228643) (-0.01832562539170701 0.1125302156028875 -3.639756305075283) (-0.2973159519101299 -2.854557660073707 -0.8608738706432062) (0.4310285479768581 -0.3402463936022005 -0.1182517459196159) (4.30818976746994 31.14383528981946 2.990030995079449) (1.601816053458118 7.308524396787007 1.485260577787395) (3.144701680803233 -24.15653584182436 -2.492478817922283) (6.750828175632227 5.355320222026709 3.683424302006146) (-0.1836140973860405 -0.5392090474045421 -0.07308280094658169) (-2.584441972963485 0.05987374709731566 -0.2069592500234801) (-1.029673153783298 4.673351438870552 0.4808820668391489) (0.2954486356331856 0.06925634656733777 0.1325869829112611) (-1.360504193817597 26.18370698110558 3.526452646971557) (2.641462733163129 7.042849506671221 -0.9164986666687023) (-1.10217109132924 6.459089816529993 -2.309821008851088) (0.04223105525672489 -0.0004320370970451221 0.01472149175010734) (-0.03899096617459177 0.03190830512539681 -0.02770651667573865) (-0.1154901645836576 -0.09993561609272053 -0.04646881267082517) (-6.563493766926149 0.897593419127078 -4.713213779146622) (0.3042476897123048 4.937045146189888 2.144087968707272) (0.924225276102758 -0.3370748271355901 -1.539468562397951) (0.09450783900227511 -0.1378176349466599 -0.2308794154157324) (0.5794585275250554 0.1124239357860066 -0.2730958850858052) (-0.6515038253942784 0.6266430837834395 -0.6808852178974849) (0.2864826383807899 0.1152279890563183 -4.361919178820282) (0.004361129243330537 -0.006545507614300975 -0.009807985690546708) (0.02857291582561799 -0.007409605042667465 0.009310607889349468) (0.06478906707657735 -0.1012944195160888 0.007540706874529124) (-0.6189289677861423 0.6200556647616871 0.07253247626387617) (-0.02810278864647214 -0.1826526192210191 -0.07405281650293886) (-0.9217097902353967 -1.092746206830188 -0.9039057735036784) (-0.2265058136793575 -0.2010065160922025 -0.4856614099144534) (0.07291132540951956 -0.1370760054269108 0.1167545907166135) (0.02583242116183454 -0.0112005023079446 -0.005549411792098953) (-0.2753662953485536 -3.845571005817769 -5.393205591223259) (-0.01125806114158968 -0.002243852936834566 0.01272497520410712) (-0.02129072237103911 -0.002581801228385405 0.02770257655559156) (-0.03209281743764422 0.07678721954815844 -4.790909527300144) (0.003589563194099508 -0.02603463802516803 0.01904862067139804) (0.04741947719937877 0.05064544952360242 -4.63262258958077) (1.243415449724665 -0.229511226640361 -1.11379167219947) (0.004308465311340294 0.006554222499266914 0.00469564826506362) (-0.07811996355865362 -0.02827103336792819 -4.888442088272718) (0.8606824951869932 -2.760598364816237 0.4836322312051327) (0.009822921701346283 -0.01704864895373548 -0.01185356869571064) (-0.1470694222929554 0.003054130955865729 -5.458651055395213) (1.147851027376986 1.333954279288939 1.643336087089145) (0.1037960389705643 -0.01783287458424175 -0.08290114650611012) (1.071983980172011 0.3522043140739082 1.596190031132911) (-1.486476440591622 0.0004392851882986555 0.9241179941278321) (0.3450351672955039 -9.725646587207445 -14.09057893746542) (-0.1832500516011958 0.2144056798712643 -0.07264224901960954) (0.654973445222887 -0.7680344671939325 -0.0936790654004504) (-1.602909308136784 -0.8974322177050619 -0.2715269600358279) (2.840963461071286 1.898427857323681 -10.27063678267142) (0.08803810013086621 0.9810490606801596 -0.2811800439757441) (0.152976359936826 -0.1881258395844213 0.3051480081721093) (0.01320890817144235 -0.03151331039818534 -0.02299506936549211) (-0.1970501839718946 0.1311870334385742 -5.515629351629401) (-0.09355761157471768 -0.519998482507219 -0.1048430261876858) (0.0922704085610024 -0.2623274235617492 0.07385638342812409) (-0.0325942758903074 -0.09545422367337816 -0.01068981775441184) (-0.06549576115571004 -1.234711396522078 -1.116763532852629) (-0.01512755104767158 0.01592122830425383 -0.01679967599902815) (0.04046471523099856 0.02727739280444159 0.08049762794588899) (-0.007088973382502816 -0.02620052757536394 0.003222017261364684) (-0.08585043996250732 0.03998785059417343 -5.667288944320419) (-0.5248397001307403 0.344137889695097 0.04977400291997225) (0.2714749324836563 -0.0823580005137817 0.07874174498083533) (-0.01320640444198279 0.01199120567356646 -0.0330714907298169) (-0.0247863717920733 0.0409007787944464 -7.429544479732443) (0.04830730473717548 0.02254939020470906 -0.160033232498462) (-0.516159765134367 0.06887092832030775 0.1263306921414888) (0.03810782994788967 -0.01063594353220789 0.02761236379995384) (0.4418966184573343 -0.5417919605935104 -0.4251361857461445) (-0.09216760431733859 0.02830354305518973 0.2442514262660244) (0.7172093482667823 0.3348515055705944 -0.3967338080175565) (-2.116137987752976 2.159340379195804 -1.123981918876957) (-11.57011275223442 10.12640270080844 -0.129771985924803) (-2.702764158881185 -4.887097613611926 -6.661862608099125) (-1.568250989684228 0.8446580323859079 -24.42139829380822) (-3.043335207877886 -1.469992345939234 0.2222369795465406) (-0.7700805033564327 1.84219869656243 -1.697201157966748) (-0.7429588102505804 -1.826168690080623 -11.54807578990686) (0.08934907664266697 -0.1091002031805694 0.08905023495505074) (-0.2389620229805586 -4.964703854352583 0.1025629355983038) (-1.518634854045989 -2.529376907715772 0.9642212159443946) (0.06390064005457499 0.02663373592043938 0.02494520740711649) (0.00486566916288098 0.00616603538971755 -0.04042216991285071) (0.470807787282807 -0.4099114219609717 -0.3213897549689684) (0.5248596050023081 3.298996185540581 -0.8007156247846896) (-0.7447582515785515 -0.08984478590515571 -0.1940572208441291) (2.527856359384232 -0.6756035338873811 -8.060767160921051) (0.3126114453552324 7.119101143865186 -1.098898589383932) (-0.2441916607572334 -0.5039703556986567 -1.477440001917864) (1.883376655746813 7.96100761214376 1.219161731435965) (-0.7051101930794788 0.002031367878878386 -9.337858664493815) (2.122289310474885 1.646454889380417 1.981400248431923) (-0.2025491562144967 -0.0302013135257474 0.6178636178384338) (9.279799970609822 13.48219209740566 -2.149078766205385) (-0.9040481831260418 -4.719480969967776 -2.579302600149724) (-0.3721451933648192 -0.2604294338146808 0.2451676437250292) (-0.05448378301734263 0.0207841320467187 0.02525509491722701) (-0.7016581074347392 -4.977305399716816 -1.436574547752284) (1.417365564840002 -0.6420280919808189 -1.885839113106602) (3.758654251875515 5.99470824769549 21.06650678945024) (0.2104641054827462 0.7220462283878643 0.02623956862512478) (-0.7739424410371578 7.003558943987286 4.043264273991698) (-0.7188111561214172 -1.478469306011887 -4.321587251719388) (0.002595207537262175 -0.00216375449863355 0.0006945721710484142) (0.2182780209896442 0.9183184045822859 -0.2670080936952158) (-0.02457205002370826 0.003846368801436857 -0.02545107557846484) (0.5810823335926685 0.7276851109585332 -0.6717754856391976) (-0.3433721606491825 0.5191800320936425 2.177329350133001) (-1.234751785309655 -1.527108233458005 -3.65355633504135) (0.05463565674236535 0.004709635384584958 0.2249542449506029) (0.1532350920580325 -0.1825885409576105 0.06712750019357) (0.01970590425353455 0.05312411234348108 -0.06608368109750178) (-0.06191508283710641 -0.04700567657720406 -0.04999906872122517) (0.04729292862227131 -0.06902103936665432 -4.472321736573875) (0.0232891378160826 0.006287907693800582 0.01422715923911174) (-0.6945820359234383 -3.915385958647488 -3.051956102419137) (0.2088286703253497 -0.3726200322035959 0.57136467919286) (0.06275944836277382 0.01980087426094422 -0.01170876670489485) (0.08305652775915491 0.02057260540511073 0.01697295704356358) (-0.02151911949076729 0.02495988152658169 0.01207512483769012) (0.06239227005795612 0.03665973326658887 -0.123086674223933) (0.01311496125761052 0.04631925256629427 -0.02554561826378618) (-0.4128604339418179 0.2220396081817768 -0.8157597033041167) (0.02310873428278271 -0.0173519055576436 0.03082746377365474) (0.4412169845113358 -0.1732777892544434 -0.02240248234492203) (-0.08625527751402229 0.02283505533198849 -5.669376161229245) (-1.045753625028101 -0.02923560052999274 -0.6617417051396637) (-0.1633662433823011 0.108356353496332 -7.211402154192346) (0.0873804130172795 0.1588890748652993 -0.07752628153958645) (-0.001708677631873323 -0.002755238884273327 0.001906279673295785) (-0.02417426868961125 0.01296747549360475 0.02174048068357342) (0.8367489126377634 -0.01839083550220078 -0.001905869740055299) (-0.1953395049417053 0.03024900051164714 -0.01486764013289502) (-0.1006632468062056 -0.0184018689888998 0.06477002556402654) (0.2115741338866878 -0.222713660605452 -0.1243239295664367) (0.04223288826923551 0.06194787200027545 -0.008131380554281187) (-0.002805625240986653 -0.03082460566802253 0.0445306999624099) (0.5479168632161977 0.232715001348179 -0.8369217800646556) (-0.01560778539803776 -0.04545749808741258 0.06637151499998006) (-1.290510800075042 1.278715981877201 0.7426907006128778) (0.007426294801120642 -0.05916569310768328 -0.08108011432872739) (0.01012204390917554 -0.01375901501790525 -0.08683473531561317) (0.3906854334281175 -0.7790476902225919 0.0633656883977977) (-0.0149268049019397 0.04401653457408981 -0.02873423210140096) (-0.03427521955991066 0.007208252997139643 -0.0247335773574075) (0.05558627602072126 -0.03528631644140143 -0.05940480179676966) (-0.08818332404345137 -0.0873287680094359 0.003486009625758128) (0.01432710880614496 -0.006950297968604632 -0.02031067994353136) (-0.1571862534988566 -0.06896980234324487 -0.1190495825094909) (1.049673921928609 7.204843100178663 -2.17625290363357) (1.450900983436965 -2.626642232425823 -2.56372222824173) (0.3668358145830777 -0.1675687054180098 0.0214462989459915) (0.5381328152030307 -0.2839625087418063 -0.8253864852440036) (-0.921952350252377 -1.007316225473826 -2.875389211202128) (0.939143218466528 -1.420420287641638 -22.36603055067967) (-0.03941808118540818 -0.02343921497994875 0.02063147062873911) (0.563032556924058 -0.2468399254455532 -0.07180131239300501) (-0.2991859336592826 0.4225680572036343 -0.7428890348572176) (-0.06180475178661639 0.01983642620976933 0.02023791556961887) (0.1438405214253309 5.528806346351296 -2.574597102042374) (0.02594863610070672 0.02188891614422374 0.009984953989097493) (-0.1502037020896402 -0.0906506857177988 0.07209256223684335) (0.2441576217054966 0.0836947613724574 -0.2994710961367831) (0.4392792607354205 0.07255382654755371 0.1294857971315092) (-0.6826020260754764 -0.4500889680058002 0.1582457649433625) (-0.06345891124546778 0.1187963651234199 -0.9129288807687145) (1.395809563315232 -0.4744268128552207 -0.335937054324641) (1.026799485315287 2.253786070180414 -1.55165049195945) (1.229259773745082 -0.1427469284986564 -0.2733054932429165) (0.4411536038519746 0.1927707106871813 0.818245039875085) (0.122421089764906 24.58243211471666 -0.2652234205587389) (-0.2784560138818434 2.026582524945566 -0.6196316927811482) (-0.08609902083962065 -0.04361874239631811 0.04774762980174656) (-0.05278713432052375 0.08944136437045533 -0.1596425506589276) (-0.0797279865080693 0.04058192568189581 -0.2735356357909202) (0.1769357616554969 0.04388993132382715 -0.2035489405195572) (0.001937897067389543 0.003933530168201782 -0.002264841638566514) (-0.01816550784871699 0.01054369234309589 -0.009432742710269022) (0.8625717755405787 1.170411805455389 -1.012846707930214) (-1.205976976416504 -0.6345206252005046 -2.945707226490685) (0.01591846545205873 0.03947010163690689 0.01243087053394396) (0.007118936780610909 0.0001008703374802407 -0.03975490928281277) (0.1899479232817945 2.807041466006961 0.2870618896969863) (-0.008886514557268183 -0.1762395058833488 -0.04333524081185866) (0.01885259281902172 0.02235387665894806 -0.0401356547712334) (-0.09295318087735319 -0.06511258627796822 0.08986080850882194) (-0.2611877480864448 -1.73735498158015 0.3876420311582678) (-1.126077347392885 -2.944793277703643 -1.681708855076748) (-0.374656311914959 -3.4299207211531 0.04323953418027802) (-0.6553544488919757 0.03233709057554254 0.4753621055019903) (-1.783586974774963 -0.279551872748167 -0.3986706170248507) (-0.003135398097000113 0.002135857399753028 0.003889946555317948) (-0.07670535368578255 -0.1660789070593733 -5.415276206535218) (0.01105529588493016 -0.01167293971866411 -0.05815362516110394) (0.09971231738101917 -0.00351283932679335 -4.06983280157906) (-0.2033013056125774 -0.06814242604093337 0.02494724345879091) (-0.5439678889404113 0.0227852767850899 0.01760520946239391) (-0.08087428993048679 0.02125158331417332 0.02309911006710915) (0.07743194624834004 -5.950553583006941 0.679906149324225) (0.006304487066489667 -0.002786122141101853 -0.004848658494000074) (-0.007718548997343129 -0.007382866302960324 0.008377458720562459) (0.0147598992844848 -0.01200058788761211 -0.01555349899011398) (-2.894976646746978 -3.789113762233081 -1.90049197156482) (-4.014563374139889 1.799696671658773 -5.338028698322825) (-0.8071500660478538 4.132338436296986 -2.880981863682369) (-1.023953761539357 0.7044448099340646 1.089666628205273) (1.502267542921681 -5.283967614521217 0.9280201054653798) (-0.1279715536951688 -0.07732612711583986 -0.05705259952891073) (0.2876295336834384 0.1063523313127313 -0.1311839860298941) (0.2312654089468607 0.3124082367870075 0.04176046784687654) (0.01837560945176013 -0.01059667757843631 0.01031303353023387) (-0.02602285497805921 0.003491111913969717 0.008760453059317743) (0.009973009234945139 -0.02768507949445811 0.02887078517765191) (0.01307037891949219 0.003235174106254969 0.004137092498191707) (-0.01623962055273805 -0.01090655943672621 -0.00211279651262652) (0.6807894594310466 4.853312305876371 -3.734848684157232) (-0.02337432331737878 0.1059157526419318 -0.04041982644116641) (3.331601219257518 8.409645548037444 1.512293315809174) (-0.4660681482355331 0.4940578513214765 -0.1038895670406335) (0.4139963194278149 -0.0627914966045085 -0.4234856882393808) (0.07338040448701663 -0.04082614516829665 0.0439491697278134) (0.1243012284397882 -0.04578863745288134 -0.1369810416873732) (0.08408172014632997 -0.1310839691661321 0.2738816963986846) (0.1794001522353422 0.9374044149675839 -0.575764328815185) (-0.2279834680615342 0.2697724930297737 -0.3244107983179106) (-0.1536919718051419 79.21120443181739 0.6501862757481504) (0.1412774267679857 0.04198155451915696 0.04306755153930351) (0.5991613151151212 -6.232866069726569 -2.213718755183486) (6.097084224231475 1.06328630247869 -0.6907847466004444) (0.5339257004435763 -4.552465464602696 -7.027119404384806) (-2.770063382696146 0.8125576456771988 -3.297032337057188) (-0.1697253824599795 -0.8815761360273441 0.2044112351138981) (0.3705800292355919 0.33572929445087 -0.2042765778975064) (0.01725858194055369 -0.02749276683929158 -0.0230769477425811) (0.01818003001438366 0.029822280903297 -0.06799133609684907) (0.5371489075670074 -2.422817957106358 0.5756760278079711) (0.5573833588708089 -0.1367216073010706 -0.119984959754011) (-0.0208427962529863 0.01585191028235605 -0.003034815516432275) (0.01828471602475736 0.05835253293086806 -0.1765860483494674) (0.5456389892800224 -0.8259523473050059 -3.602128664632303) (-2.929594973854833 -5.928364643849581 -1.24279573566877) (-0.1856387940258698 1.041897894613322 -0.5688718034737084) (0.02947361921961364 0.1021995211750648 0.2041358535084921) (1.865177265905653 2.204623315428682 -1.398006547570738) (-4.154687757439928 6.950946087087694 7.214007663372074) (1.438907002248396 45.69238468409037 1.21104903163448) (-0.3242958087667853 1.92280876137106 -1.030040544434634) (0.003204519587689667 -0.03740195941970032 -6.525658299242742) (-0.2740958566084762 0.1166995091855464 0.1198511267426595) (-0.0107798355299102 -0.001814437692850107 -0.02521630850027041) (-0.7556583536405483 8.649981931760614 -10.85333090857378) (2.959753442847704 8.235850624018633 6.325620962241448) (0.01825840656470622 0.04281597060393123 0.01466021570847245) (-1.062095710103461 0.6330239635598566 0.2380183117331792) (-0.1272495911026197 -0.091527926416461 -0.1377765093586137) (-0.2660373178935468 0.1559444947020844 0.4763696552823495) (2.280861978920006 30.08086013841753 -1.986813417357041) (0.5258225319467108 -0.1407505770096742 -0.08250538684432723) (-0.03990108058394229 0.1359205778942167 -0.04783032873895994) (3.242919452695135 -31.62064225815824 2.99456392370875) (0.05637569978811556 0.008246223467046024 0.05434783005314928) (-0.04191532478417562 0.00867541766778436 0.03320981571447804) (2.123725725226102 4.975651121193786 -1.004133519273515) (0.9593385941653033 11.26111150967293 -1.150264624454801) (0.1506606945343779 0.1142968290011699 0.01378715728747355) (-0.2322704126632132 0.4032504159574911 0.09100281359811735) (-0.08250271260404599 -0.0415649927997053 -0.04168033782619863) (-1.841072947265203 -7.135993535716534 0.1335803278167154) (4.915255307082896 9.439188124217315 -6.528933252928507) (-1.159873842358835 1.036276926004405 -1.497974400291184) (-11.57161889787014 7.559144680991351 -11.7836042593348) (23.46848413917836 -5.14547297673563 -21.6300763691186) (0.2543514797474571 3.891929088807849 -6.887907939478214) (-4.194372711199132 -2.692667212529874 2.646451675579872) (0.5294399254896524 -0.1068212396125461 0.2905887200948886) (4.857910733031455 0.7060512418303881 6.443876086238594) (1.098764297411965 6.664480713439034 2.14047761417511) (5.247074043267128 28.79239410942939 1.353475106387188) (-0.9038592926570905 1.61203445777271 -0.2453155329434945) (1.418408828696825 -3.165007361436921 1.41346233215786) (2.185262989095685 -0.08777283638197592 -1.69024497275579) (0.3122011381713976 1.804731536249383 -2.520823974286277) (-0.1000617404005325 0.1896572896310745 -0.4302802542803971) (-2.418347675265485 -4.370487254414051 -4.033270097640704) (2.550194348684161 36.65180464292548 6.314143287738025) (0.6532698388209757 -39.05083933700296 -5.260102588477551) (-0.912808168399166 7.098414216180078 -2.040176949858355) (-2.769482882400995 -40.5470756000121 0.8849910324622962) (-0.2874361167021784 -1.42186203577699 0.5863372433071873) (0.3192616818824165 -12.23359921958503 2.020319995878687) (-1.416217226257043 -3.390346601193341 -3.134198708753218) (-2.306931070211831 -21.93112199510378 -2.602710830735339) (2.637967189876826 2.253358644726093 -3.292451312609398) (2.067456264205115 -5.397134725967224 -1.955988866111524) (-4.123972882142139 -8.761549220448147 -1.187601060688807) (0.1334274041303281 -0.1136294192272764 -2.12513970072172) (0.06645567528777291 -0.009766718405635089 -0.3944232981954594) (-0.7114073386812079 -1.239086478077886 -3.463530412068086) (-0.07443382032658907 -1.296276831327429 -3.298050104951609) (2.057063025031929 1.001096768216172 -3.7794647115966) (-0.5412742651368934 -7.487630426875038 -6.912741329095468) (0.4851076041715943 0.6257385934546006 -2.001847205567921) (0.2514406387714122 -0.3498034223000429 0.05492907293606013) (0.1669276704892149 -0.08412322148532375 -0.3280008640191066) (1.59573895156027 0.7369039299125562 0.2444479118885883) (1.569416848437868 0.9844386607570446 -2.62167503534008) (6.202084548577263 4.642223858486769 4.699736286106215) (2.230519224796769 2.911725123009396 4.394363587529809) (3.054522578013641 9.889422237518577 1.701797262638115) (-0.2042696258856662 1.244932312312229 -0.06363547767753391) (-2.405557025282556 2.831693371286097 -0.9785084990058203) (-0.4757085531824563 12.18840262867371 -0.6102729204150863) (-0.01713408858992388 -0.2422795785320134 -0.1885675003602018) (0.3642654774069234 0.1241595846828171 -0.3059120971390954) (-1.306559688648493 -2.653021773257762 2.745153217194356) (-1.115029221414838 0.2619122952776392 -0.2783527754848472) (-0.06138819653099314 -1.769981083740072 1.823901741170181) (0.1438149034784895 -0.07456384492712909 0.1297180617141129) (0.1899230570154718 -0.1997800301824697 0.4674498186869881) (11.3545254952964 2.362391743692566 -41.29580463027941) (0.7383650626307163 2.838859360541396 -3.300108570625807) (1.364083956893905 11.71062735911992 2.776271521818598) (-0.1821578174535339 0.8691929602919582 -1.273847120262098) (11.4678589901018 -3.17535927617549 -1.643716631927107) (0.5700157622557941 0.1436197331388148 -0.8342550370168506) (3.020296439657534 11.210659628814 -1.749886378576623) (-0.429761866844131 1.051965322296622 -1.497625683068507) (0.03061213870049989 0.5248690568785221 -1.032237423679058) (-0.003210012239320933 -0.06930033220342553 0.04339038611556106) (-3.395746495562558 4.984898628827181 2.968658546547422) (0.607900454709879 -0.3174163757204218 0.1106311724752183) (1.154541657418291 2.323588006538484 1.403231883473584) (1.218034394378479 -1.923510784856567 -0.9552153105240393) (-1.78011689540318 8.212189152475247 -0.5016662853258831) (-2.468443612939462 5.033796893257882 2.364504948765761) (0.3312215170127456 -0.2484213186089995 0.2838049706072936) (0.5290513498920337 -0.6001172029530969 0.2444705473697704) (-0.3375188131263389 -0.3861701850607536 -0.09193620291756774) (-2.581011701195423 4.339981569753242 0.3574251109242445) (-1.558708598063517 0.1380806425037986 -0.06777886970256533) (-0.03140826309466068 0.01348133197390694 0.01189480176296956) (-0.7464623745387169 -0.4232405329538573 0.06737720815303222) (0.05101166756669451 -0.03093998988831592 0.0808017821608446) (-0.06298381152608103 -0.04217738128678555 0.02730033490354205) (0.2424103410787775 0.1338642464120416 0.06750264236735395) (-0.5542348648896163 0.04111116617614829 -0.2456246875235158) (-2.358234303130438 -6.057820908314337 -0.08346030864795406) (6.555153972874365 10.5611765548571 21.83771691224126) (-1.863024381430049 0.4152140732031295 0.06098744715582044) (1.291087144669238 0.8730080724385744 -2.820910224014515) (0.02742073022356584 -6.524963574011508 0.501206767881446) (0.9968990412752765 6.342071755764594 -0.174244777165014) (2.655863701739351 5.331027566543174 -4.12700760732261) (-2.974281349475579 -4.923383468627375 22.57932922002123) (-0.159972570483024 -0.01514298842286149 0.07667551959761941) (-2.037937483457214 5.137365914985754 -2.75676998754077) (-0.3779943583424863 0.05299110845426066 0.4679962534084389) (-0.3897940908883396 -0.2675940933303975 -0.9793784725915894) (0.9785001734281038 -1.123210744857112 -0.5877862667329997) (1.119750586399975 1.370498508129328 4.065947753189192) (-5.777207563639752e-05 1.11663472142077 -0.5131349470717773) (-0.01281893360354237 0.001369248782472274 0.0003792210935486801) (-0.1741626096771348 0.121473277378194 0.02297959621103612) (-0.7005946695410379 -1.593391626916202 0.4217296817561967) (1.100320158168631 -0.4831210897319201 -0.2675520396716733) (-0.7040367812068153 6.25987073077293 2.423712299078166) (-0.2914702250584756 -7.089164694633049 0.662326392998457) (0.6419597101142366 0.1414870083851012 -0.5000301749472172) (0.2077310715069722 -0.07756103002799269 0.08992034408167526) (0.3799384244352224 -0.5738684091577332 -0.3303883570698686) (1.137137282713474 0.04922197257063372 0.09090555576994443) (-1.547956188169351 11.36712518430529 1.190518998597801) (0.6257569169644648 -4.540555393421915 1.279790144395299) (-1.404358610625594 -0.7790004568091048 -1.701378920900638) (-4.594136520959847 30.08227230715607 -12.98158768456377) (0.2880885358442067 0.1980735054449485 0.01007290174578222) (-0.9567842019297254 -4.57025150760122 1.585809068342721) (0.3533948443407934 -1.145224272213528 0.5699259081954291) (0.02862045530478757 0.1759672087194761 0.6541499081212429) (-0.02943706746747871 -0.1536357740797185 0.02850789561259996) (0.6140276859456801 -0.8732916645156644 -1.567011249290853) (-0.05556134758389009 0.9584899012937929 1.717025693233909) (0.2066780479051577 -0.03260035420749086 -0.4263740194095108) (0.06146859178880542 0.0005627367074426282 -0.01555856946212612) (-0.1408040305823515 0.05684545350662851 -0.4431472513988583) (-0.339334533140634 0.4612369719704659 0.1474984235081871) (0.05075665489496295 -0.002178115654000055 0.04009208372126982) (-0.1952034004349534 0.1843955505151184 -0.00457607026979831) (-0.02374104074107078 -0.3418124847357333 -0.2637033760929966) (2.676311113424581 -62.57621792784229 -4.536489047164528) (-0.1247476460005261 0.2086902613658404 -0.06252047580665429) (-0.01301723491200239 0.01087944924099389 -0.0004206801204709914) (0.132462626783963 -0.07350733286834976 0.1093558156910179) (0.15230025534148 -0.08507556052476847 -0.1234750781361742) (0.6178002762180627 0.8757069784103766 0.1697996442825688) (-0.3266024744752051 0.1715824622970562 -0.7445844692212333) (0.0003311433072978737 -0.1995898459175328 -0.0211306524857921) (0.1284769337606997 -0.1376971225536475 -0.2543560091992868) (-2.214907945951711 -10.53108299897468 -5.609794743299136) (-0.6555782508983505 -23.15681008918511 0.8184762332971812) (-0.5960428126292461 -0.2897578074543153 -1.550542445075047) (0.3843859534592774 6.981857555274171 0.4147063147623516) (-0.002872673957176875 0.05253094819729159 0.06178863779281418) (-0.6342960856267937 -2.708047446054993 -0.86799600954227) (-1.310836296542021 0.5097889262143913 -1.078465999954106) (0.05926822026029793 -0.0191778491888086 0.06776410632699337) (-0.04137369842090712 0.01198793733399487 0.0555255653513318) (-0.2511784971475344 0.1549823177353226 -0.04496290516498169) (2.493900721988222 -4.623108203799115 -8.360337500624723) (0.8700893665558308 -0.3795903220077208 -4.370272532394384) (-1.680823773796442 -5.514939931665088 2.519383804789556) (-0.05570488850285066 -0.2905893858776732 0.1439868153464609) (1.05050853631795 -23.6866660227042 -5.310523445456934) (1.619856942608974 1.431865009059713 -0.06332074403641068) (-0.08797974521802746 -0.2247587164045911 0.000412724947773245) (-0.2405549781278747 0.09503523157405681 0.4601762666665942) (0.3854091369248792 -0.3860973792156269 0.6230544304132528) (0.4914401096718574 0.3199986956158932 -0.3763805364380611) (-0.2851697498634881 -7.932413819021058 -31.14105872471717) (0.4991570776876959 0.1315081160738064 -0.5474802447974314) (-0.5296340979656461 0.418992807089006 0.2446979747927922) (0.6359401277237889 1.104930148256772 -1.313194970388046) (-6.886103974369698 8.774077795376972 -0.08949191117088778) (1.491437403703217 1.395783138632386 -0.4686172796090334) (2.680778296905955 -13.75256421427472 2.033992391528151) (4.705353953738745 33.92535667393318 8.590752298051465) (-2.761093925443605 -3.099133720748436 -8.16110693191516) (-1.065884889886501 -0.5231473490938885 -1.385346996185528) (0.06033504526917143 0.03422036787446459 0.01863478118614062) (0.09845772753352114 0.6912487203978944 0.2479869530315847) (-0.1002414261988469 -7.792164950299665 1.56610199741924) (-1.117945015454911 -0.04813927635481596 -0.5475454937425284) (0.8379771568754429 -0.3809148702912726 -0.2520352372455877) (0.6206804727656394 0.6760708505059028 0.5210406804647831) (-0.4456570925196662 0.8843507320952169 2.182177558093226) (0.9973853659567629 2.463361592485334 2.710067728761641) (1.781638010280465 2.539851272243792 -5.330921670868535) (2.280026332554049 0.6059678035657303 -0.9202945723549215) (-3.816210319946705 -4.82966489284424 -1.389924026712819) (1.559826990853423 4.307173099176214 0.4420697767371313) (-0.089604852637725 0.184553932108131 -3.262658272431068) (-2.667553867781607 -0.7516704204708624 -3.991868111990622) (0.03493741646116135 -0.02426534862238095 -0.01462713368594076) (0.008456564523476488 -0.002890268668629304 0.001253132986010031) (-0.01589393049629568 -0.02604741857189419 0.02579885945923305) (-0.1936606792660491 0.4184601346042429 -0.7882973217507927) (-0.4896330634377029 1.924231993208347e-05 -0.0006192150944654834) (-0.3309367406635432 0.4216319295574031 0.1013993876055468) (0.07926090698835853 1.380797972416505 -0.5831377634231726) (-3.139402858827634 4.872831036730672 -20.70873789146837) (-1.782007733722907 4.490380533336912 2.302499863740834) (0.1651166812476554 -0.04791744608867743 -0.2758645818680906) (-0.5443188076690537 0.2531637125348274 -1.339223793640037) (-0.4545292624040264 -0.03560297304238761 -0.06056928220522852) (0.8421561935942732 4.87991545995617 -7.560919068936032) (0.2130209067021458 -0.2683597012804312 -0.2185660643922044) (-0.6761296673924945 -4.015800269656076 -5.179027385774005) (0.1045652716256236 12.79532040435218 1.973290869073653) (-0.01067654889761825 0.009855112489589575 -0.03278687498777515) (-0.1231044956591982 -0.07902411332831244 0.1925578707120958) (-0.3767282352842255 1.741268574046998 -5.952220244873635) (2.787632806188405 5.713079094499239 1.903927941020178) (0.5992554701981541 12.29305515571366 1.818013745715213) (3.396265563558001 10.90610303424998 -0.7280450994958836) (2.206263756705652 4.569594132365447 1.738193665795569) (6.991137448709649 1.866828148377013 2.329142947837739) (1.187881756626158 12.58771495351904 -3.107429790050022) (0.602201906048788 7.771508484767791 5.450951789515992) (0.1371511629618729 8.007483256274925 -4.870705255368863) (0.4661287762731683 -3.694368475920216 -0.7022457898620138) (-0.4021855410857693 0.06777168100484382 0.1160666481863248) (-0.02976168892100477 -0.08468044048025847 -0.06808786932478206) (0.0335261649327496 0.01390124636630518 0.01310755561598848) (-0.1088179074890571 -0.2569753526535651 0.4181275678384116) (-7.69643921925085 -9.55024997666272 8.443728291152054) (-0.5382440510611742 0.01555558030585516 -0.967172785280166) (0.4591340997262783 3.287654276024584 -1.488651888593427) (-0.4852919488769993 -0.9307712903708178 -0.151504526475211) (1.62163012292095 2.102223059648965 0.6918210841815924) (-3.495459566557864 5.318852198801691 0.3672405098634289) (1.593244832615179 1.059281848828495 -1.877191104409998) (-0.6184444125416859 1.832202630451848 -0.1574662021483744) (0.2112585410293193 0.02512599620080519 0.1089407058486161) (3.382098856554522 30.54112647181907 9.145007123273494) (0.44452537769552 -0.8276085520335119 -0.3609885658442595) (1.173921718435019 6.689047989352665 0.7586773229803185) (-6.624844697363752 1.028229064676762 -24.94198982592966) (0.08074491089639391 0.0509785249871143 0.04074578153740355) (-0.009678446058595067 0.009517547248359655 -0.1224320944216613) (1.464150826831314 1.151819635452603 0.5427490507111681) (0.2500445616813105 0.1073640956792762 0.2394329906421872) (-0.437462922530542 -0.3578224838748322 -0.4924502059016653) (-0.008926451930405629 -0.120274552981237 0.006016837727067481) (4.053053987685718 0.6878877249126256 1.244571272595277) (-2.4188059069478 -4.721436429884811 2.487030459542123) (0.03531181896215019 0.07458291451693161 -1.258726118163137) (1.018701751480183 -7.882751879301899 1.839562922249063) (-0.1363441535842766 1.932606903090266 -2.796828170458733) (-1.034894982835345 -38.58225578486904 6.49824015545249) (-2.340007561143588 9.260045001492077 4.752868035632702) (-0.2041456580565602 -7.731130320941128 -1.818351558126849) (-0.5479196967982665 0.4152018414676008 -0.1883377564262136) (2.715901140341714 -10.10766287121708 1.380388090903264) (-1.179249316577257 -5.17098793495267 2.754750448308842) (0.6332859960118191 3.499021810905628 0.6365732223197302) (-0.01771130203541116 -3.871219329764938 1.068453907104502) (-3.191841611037769 -9.789140872359214 -1.323645790906354) (-1.515369024497971 -26.57828037207522 2.975631975253708) (-0.8716272604136114 -1.706895911381812 1.002180684840912) (-0.7398789126739802 0.4634669091496182 0.02691796970922067) (0.4911741479310752 -0.05751099877650673 -0.02211205876582478) (0.7167957296695393 0.9991026518765391 -0.7741143069965882) (-0.2257812594323131 0.1547923196163878 0.268618694531531) (-0.6652620526983695 -0.8113285071247727 -0.2670541504846342) (5.026146957561411 -0.8662463513836043 -2.684462257374643) (1.284573186412567 -2.116426323883724 -2.06000079433873) (-1.845253329340235 5.552091000852341 -1.30167212868175) (0.5963244622426428 -1.215740146125329 -3.987251408579245) (17.43441140868365 0.2944991183478578 1.513209558874442) (0.1170826380438093 -0.1002926473769859 -0.05287834605245312) (3.065682675037062 28.49723114710761 -6.281970577220856) (38.92816932393379 27.59562610158884 -2.311675479582103) (-1.805710700005375 -33.6466515395252 -3.917862000203772) (40.70427319390872 28.53813962584589 5.375276618493053) (-1.762915881762373 -33.44102925826216 -2.446170548387555) (1.421682990135878 3.019830494761888 -1.44794483821143) (0.3125922813941406 1.608258257744607 1.436996196672672) (-0.5342691161881989 1.175076807885612 1.350181542532302) (-0.9549673227687774 6.381349583600685 1.107475704014565) (0.9300633369348781 -4.054545218148159 -1.590381709221306) (2.411008938313603 -33.47508122869043 -1.445490007362086) (-1.350542738499809 -2.409686592051737 3.312636423082272) (-0.1036611492887514 -0.1246895013398043 -0.03478802599856678) (0.9853827453845375 0.0887870871454081 -0.2881686097489378) (3.05825856210777 -12.01350170802592 -0.4287041007120743) (0.2242134271946843 0.7726843831790342 0.6976552070165041) (7.988519147422464 4.714715559647354 -0.2460090538272542) (-0.05210464347147746 1.139259692670376 -1.367149877281961) (-2.704997895036383 -4.251277911040658 1.627334753646382) (-4.355171088093286 -4.43355264506335 5.09660914178912) (-1.566686232775325 -2.92895305215216 -2.208510062669756) (-4.516209028440827 -5.156972436257684 -2.332155826472082) (0.4914625948948833 0.01605406254054248 -0.5130495411532319) (2.01516434898969 9.759934987317488 2.028873615587532) (4.814797181353367 3.455358708311726 1.075972209021565) (-4.059582896150086 -1.623005722771198 -0.03018930354915689) (-0.691988446780179 4.351512958082206 2.738280060238408) (0.6334594014281461 2.312993065534682 0.6140400171157825) (-0.002735433550269219 -0.003571553496876048 -0.001962555615263487) (0.05165866524583362 -0.06256765983839696 -0.009616000642591244) (-0.7430231870665857 -0.1505922400049321 1.760034212471051) (-0.4348876460591917 0.1938373850541491 -0.2804354906417117) (-1.942958307505881 1.786219485521695 2.285278715016082) (0.2471743365338945 0.2093498097415521 -0.1958010196238775) (0.8355558703437613 0.3885412150402514 0.1020504552111076) (4.38747008669201 -4.104855598970429 1.231670818802316) (-0.7111326976195008 0.0806525105812825 -0.06783712999827157) (-0.1833060736284452 1.560601329205176 -0.2958389477789128) (-0.07011091569465569 0.1170576453083922 0.1371526017596943) (-1.125482078458155 -3.461429377485519 3.596416197554289) (-0.7064414374538728 0.333084288900888 -0.06890392286133008) (-0.08033192903305986 0.1149202730708418 0.3413842784854599) (-4.337095845172408 0.8800727270185789 4.846360012196436) (3.094498041492012 2.724056462537209 0.5564086365294999) (-10.32296030881722 -21.62047864672977 -7.302249880817011) (-1.213621424221626 1.610722696834489 -1.285704265775343) (-0.730614810502246 3.570683292469379 0.3805014384226884) (-8.829861215671553 -19.09944576163299 -8.446886650395289) (-0.003572495125408276 0.1308780230650045 0.1801106553027506) (-4.446067745723599 -8.471940348656283 -37.50921800266685) (0.6825024125949084 8.420963079710422 -1.140617923604636) (-0.1602223150983778 0.05595570205755912 0.4642732677643072) (-2.133873314531585 7.229671556458278 -2.062286153204562) (0.01972545595392612 -0.2955539621634456 -0.008360834904491368) (2.81998522856463 5.061193236160507 -0.02683131496791219) (0.8157402849987085 3.764353498501785 -5.424834952563405) (-0.5976271006012945 0.0864734298802191 0.3105031669899246) (-0.1947675226952797 4.369632682723451 0.6676155582331782) (3.707009397413059 8.541498242530997 -0.1146443142519339) (-0.234304489375694 0.1155704728311396 -0.4361446863407813) (0.1285086928654682 0.09446348589017572 0.1748987289534779) (2.375625328285159 0.991322493296686 0.6618075323156977) (-0.02043802020999797 -0.3314065744090292 -0.7440973190772455) (-0.9418116117461133 0.60769301013312 -0.9153526465915063) (-0.01727697383451274 0.3486661746460453 -0.4208646094425637) (0.01580627252876889 -0.007865575264963526 -0.007098118553186889) (-0.06643261992941567 -0.09395857071356695 0.008210850562792651) (1.373012203291741 1.178211431542558 -1.682152137457245) (0.6878907031145867 11.84376625520385 7.382358381695906) (0.007328150915514801 0.02453105355721477 0.04732777045932385) (-0.1733796245691969 -0.1001388658433442 0.01167562684152017) (0.7580504430406216 0.06742759462232722 -0.4559907012479754) (-0.3948051035059324 0.08406686811300525 0.2951480433958963) (0.291604640314002 -0.3339630970769493 0.1894138053137001) (-0.0561921206676166 -0.03015694687870988 -0.004073215901348798) (-1.061498810089243 0.007979893825419825 -0.4863845905861856) (1.093786593507722 7.39462990680564 -3.027074245044886) (0.005770331330255535 -0.04413968907333212 -0.2735333577031224) (0.03626059456625937 0.005079922604215445 0.02559419961123256) (3.56177615792847 4.678079661844293 6.725958312241191) (-0.801946190023783 0.3780655724318508 -0.02460878014172743) (0.2877592529485455 -0.1682109875278061 -0.09850276453338067) (0.1475547947739117 0.1747714089968968 0.007363968786245283) (-0.1451466550066551 -0.09407422974499069 0.1302192124647985) (0.2441742905853219 -0.3020853946385917 0.09719192632225374) (-0.4673865676245531 0.3971786635751217 -0.1360661289521602) (-0.8389764654144514 -0.03400527514910651 -1.254835191201606) (-0.2252324605074163 -0.6348593659507467 0.2007075927110009) (0.8118981229974618 0.5073870494886878 1.655989079763453) (1.853574195391915 -3.842595443557559 -1.241265391585407) (-0.9774612263654486 -3.126348002751439 -0.1070816279643473) (-1.994473083553667 0.5883402721241848 -19.92101057546137) (-0.4481187369743475 1.181046776771711 0.08524754304329546) (0.06423226072520441 -0.02536706442886442 -0.008058073670324965) (0.3713327906514085 0.1018979303159944 -0.05270431664835139) (-2.953451677314863 -7.940131385478806 -2.219575104034042) (0.1895451781507498 0.1745706228531027 0.03701858951797114) (0.7785957422570855 6.747067864267006 -0.9775044061723405) (-0.03082552321684821 -0.01074213481676378 -0.02141929624391054) (-1.554169348808676 -5.811342247366982 -3.027815487932253) (-0.4144544134252611 0.1913966572773151 -0.2386949341606709) (2.176758972314227 5.687537207751038 -0.6517794288134953) (-0.07615163492516097 0.2959462461877854 -0.05014080112410269) (-0.5372862903407816 0.009236305605734837 0.1908386660608198) (0.1572062661077964 -0.01410956780012015 -0.1761862388340023) (-0.2064635540193206 -0.02616455154559571 0.109436357910379) (-0.06211741799416223 0.02733266407891341 -0.004419461437431892) (0.06035003458473513 0.02964861586670576 -0.2822049186134679) (-0.1858677097082337 -0.02019608669006382 0.01747547762327528) (3.249233565971841 8.936912018949492 -4.566492021323383) (0.07006759356423742 0.02600988481360652 0.07182973538984186) (0.521061983713746 -0.4362557312403584 -1.611056933086164) (-0.01182548379326209 0.2775559434456852 0.249839942212289) (-0.06877109148029575 -0.3511757841985896 0.1477780449891833) (-0.5444721464112696 -0.3139239648311067 0.2073035652017658) (0.009618531501689037 0.3118509784796542 0.5803655565059435) (-7.367734907505583 -0.5160481663468721 0.0671471953053846) (0.01956744718344393 0.06375815788377109 -0.06058604295192715) (0.5778307205860058 0.3464427699330848 -0.1397720675766878) (-0.5527149898623257 -5.408837871268285 -4.547376364771193) (8.938248808634475 4.616092914520545 -10.9136788198397) (5.999669185164806 7.948128139567191 23.44358425846698) (4.361407572158923 5.126889557034259 -2.800832938139721) (-0.8078379703352823 -0.789927633766617 -0.7868387077616925) (0.05178341031522587 -0.01764542525775949 -0.0275691464630732) (-0.03470239013396121 0.1346406537858838 -0.08564046338936399) (-0.2231480557194317 0.2989481199037497 0.5817229418423496) (0.389232495158278 -0.870101571175443 -8.968317037018849) (-0.7590308540796691 6.705891347225098 2.446788353140119) (-1.49832546280719 -7.125667702870411 2.157028883831905) (2.958619623375595 8.341199015132243 3.728498821460293) (0.009157385705438448 -0.8615962003270179 0.4138258129561157) (0.7699122933277179 -2.01171224105947 -2.437748676242086) (-0.04001416365135113 -5.705454238485084 2.038672951621222) (0.04447805421147444 -1.292702680990646 3.062081402791509) (4.318853818092546 -52.88286712005417 -6.773949694882547) (0.004510222452747528 -0.04821845909158209 0.0859407393634478) (0.7972766116056966 0.262189757365601 0.3585003935233068) (-0.007052889797753065 0.003209578913020854 0.04217677406847814) (-3.21993744094453 -13.11843483569662 0.8614149311171917) (0.2521726135942685 -13.12881148061423 -0.7920995621974285) (-3.151173226736585 5.014595796505876 0.2293607441910965) (-0.663906904048333 -7.168710971023755 0.7423637130586161) (-2.040440244479091 11.61941800492727 0.3829088084934051) (-4.373219947756745 -8.584245813381969 0.7591680636795748) (3.328820711905426 -1.900389900006824 1.761258606983185) (-0.6890413955313277 -6.030953008345085 1.281902564275457) (4.560491898575529 22.80817448562704 5.403938670171103) (-1.045782479891419 -1.857357020133689 -0.8206038993204479) (-1.10012151243497 -4.568960484857921 -5.880764126531576) (-0.08688362592053026 -0.07565245024470379 0.1103725409599625) (-0.2573428590164132 -0.2072314873552978 -0.09858584207891162) (2.015126644243641 -6.796269531810892 -3.160426061011802) (2.241049140900284 -47.39752830225498 -4.124556704340049) (3.133693865363455 7.69336033067353 -4.408346953731179) (-0.03023604913932626 -0.4779454138980461 -0.8215077283109168) (-0.6922774755834165 0.4916577660283077 0.004680889562508672) (-0.09080393143722976 0.008925168774173292 0.01763631729657601) (-0.04429616384568134 0.005828733485036394 -0.01011629980058046) (0.5429603611649212 -4.191748520097843 -1.113470115656867) (0.0129519084323802 0.1514042503682545 0.004771607262610857) (4.671414718030151 1.411492832170227 4.020247479557387) (-2.587350628829129 -1.225460188919311 -1.484883966434541) (-2.4876929107799 -2.278157928478337 2.02786204269377) (-1.697004204857802 30.22098072421178 -4.617897387123448) (2.184381340581898 1.419391489857798 2.140559119391301) (0.6636006755437422 5.029499995139886 -2.26949582399881) (3.903519474904635 -4.513671194318679 -1.9616506682573) (0.3235115091973382 -0.7368986840595602 -0.6946268129603145) (-3.014796050565316 6.726847022164992 -9.830824988526194) (-3.573518779676426 -0.9367927088289387 -3.221601058368218) (-2.528611380301003 -4.087661882731604 0.08866275185610809) (-0.5074505678053733 0.01188176852112213 -0.262299924421908) (-0.08677564068119792 1.417867502322334 -0.8160834863706006) (-1.104290876925186 0.5710997573051508 -0.3629638811558163) (-0.73503794423586 -3.487170565065667 -0.1728088027800881) (-2.503728408660999 2.350522471444583 -0.6601175346091505) (0.5183020040864879 0.7040711102291145 -0.1257279174604909) (-5.676503543223383 0.2144114338046317 -2.499040428721846) (1.204419409972268 -0.01204194046951867 -0.6634270496847211) (2.315528023971445 3.164688497727068 -0.4674803115970643) (2.23883346706175 -4.392934078856864 -4.670850603217906) (-4.968142439478502 -9.363433744228612 0.05755954396814067) (0.5624050063075444 0.228473301987582 0.1132402905705126) (1.476058522224193 -13.59704729691891 -2.96924249652196) (-1.090219289420333 0.412981230315827 -1.506862461747788) (0.6179636666042333 -0.3780986793209637 -0.5260988484124184) (1.877722486886334 0.6421136221950012 0.8370133172241749) (6.712977482355853 2.646171527125035 4.20508158618531) (-2.93240213181064 -5.930662139759603 -1.217608982499252) (-0.1724792131343034 -6.503757102011487 -0.5048826055113846) (0.6095939232491115 1.596367044413319 0.8938908080206348) (10.75906282484599 -9.630231554732367 -4.418838640776655) (-0.6996740203692806 0.2127708689905521 -0.6801932776881938) (0.1991106595106146 -4.980578682752546 0.1701582081523947) (-2.028442895809726 1.767066656723219 0.3936294214680219) (3.275484710401904 41.69465323746563 -7.181977877440996) (0.4352394683115804 -0.2348241492012121 0.02705923447108327) (-0.4598144124552014 0.3795932229862924 0.09805887761247076) (-0.01558311626538279 -0.05522331117944183 -0.07827514470896207) (-5.026446891475599 11.39813473045194 0.8809871805840495) (2.658787497347849 -1.953141779847539 -2.248180761888043) (1.229803124377669 2.745721750839252 -0.7705479222513797) (6.29602881205173 9.892034187225109 19.76408818610316) (0.1455397620601293 3.368169190087616 1.790234665975339) (0.2098827952060822 0.1556863464798635 0.2128052712186406) (0.4616452702842613 -2.828868258852268 -0.1082792529460328) (1.390379619133202 -11.72596271526549 -2.845724045364496) (0.4594939000840568 -0.005165026913670601 -0.3841591501294618) (0.6736863188714002 -1.235600330336201 0.09784257057259937) (1.846169463068134 1.12940873640618 -0.9919379600242106) (0.1501426927932878 -1.252128763585911 0.4947437324849009) (-2.82956198002774 1.15473606398315 -12.39711067718001) (-0.2767004442010357 0.3083845686744847 0.3683929067749752) (1.496975753716556 -2.727018765545379 -1.001952844445991) (-2.028808657637378 2.215471190044191 -3.6293008788494) (-1.375067715200329 -0.7469971359138829 -2.60786356249803) (-0.008777407237352538 0.03855172410103183 0.001402356847525717) (0.6126575201458998 0.116583459792057 0.2101132205522132) (1.855982527017713 3.814321958840283 -1.31963743874641) (1.647094063353651 -10.32725656285607 -2.537394115384279) (-0.1124832555546541 0.1096376081931942 -0.1760699041065438) (-0.3380274125331753 0.314839488710618 -4.263339374466969) (10.47548553975821 6.090144995949517 25.82129411096906) (1.666002346311326 3.026075306405275 -1.317773841660057) (0.7652208051179943 5.763128376322975 0.2548898834076747) (-0.1001660923253341 3.429028418457783 0.9197646294280527) (1.689820123116947 -7.949732142689999 -3.049182478496787) (1.316512925700663 -2.43097531168315 -1.146545869959843) (-1.761970488269057 -2.095035476095771 -0.9218492013322097) (6.181186029684634 -0.8326724194145649 -16.0721035577654) (-0.09338748186746199 -0.02264873606738147 0.008183132049855386) (-0.06748733289950437 -1.005413384366085 -1.021568037013482) (-0.5807543083528059 2.434128048803831 -6.096803608063287) (0.02314228493399313 -0.1285950608240003 -0.06134182538045516) (-1.371560436104065 -0.1773429940720361 -1.408259268258018) (0.32419499778087 0.192068040957444 -0.02021533426499875) (3.207048488036524 -0.2848458820735876 -2.624980481583396) (-4.977990956341321 4.8753729880048 -0.5155538844461307) (-0.2647208296068038 1.181753033331635 -0.1536647744476897) (100.7286821566774 -31.45989115762512 -66.61274998027986) (3.390293816045554 3.399301832078901 -10.21828910126739) (-0.1281805512156481 -9.973961549907443 1.336662245071356) (-0.4159248217611562 -0.8545950715786517 0.6715943438389156) (6.542267486733455 15.03895308486858 -2.946114731665424) (-0.07779325017019634 0.001898102553477877 0.0212995951342799) (-6.727505868633778 -15.36565748800759 4.924765118810052) (-1.91843778831183 -7.527689407379225 -0.6830266375567016) (0.2109299473603676 1.149668673782221 0.03534916950069326) (-0.08794301340463445 -0.5875558435802344 0.1175476876396514) (-0.2501996388663552 -2.060480488051143 0.555911977797827) (0.07722115945768418 0.04580311934488515 0.08715485938618175) (-7.736080648249428 -6.963715308734755 -49.91683663836834) (0.8256879257674702 -39.15143360127587 -3.384575743870426) (-3.813939804955974 -31.17839251527274 2.254161867587213) (-0.3799227122759856 -2.489014042941706 0.2150213532263046) (-0.03156275495100895 0.001779598995672899 -0.1266905275192215) (1.852394224914383 -1.540067048465167 -7.785982028958991) (-3.41420496340251 0.106474471596719 -0.4589921506345992) (-26.436549142244 -8.459782204567842 27.49705511224581) (-0.2818840152799005 -0.1416236500028583 0.1524611301171059) (-0.01382864034321648 0.07624875566926045 -0.08582529645103855) (0.008289229037805757 0.07569885336654608 -0.3080628292114949) (0.01592017548365809 -0.1339709673470597 -0.1755785590904933) (-0.05249072919411981 -0.04466676871789993 -0.013240054743182) (0.1576358237110753 0.6932251442844228 -0.6555125311253868) (0.0129293968476476 0.05110880360133494 0.0100664027211292) (-0.1400182095582151 0.03710045693364971 -0.05296379123358457) (0.1058546290007208 -0.01192493402669552 0.4458736307990471) (0.1204973384488116 3.139556745374954 1.101480310436244) (3.050993406327591 -4.316766057014859 2.295236387192062) (0.05013973707918912 0.06468244026130922 -0.0086390680951197) (-1.170234998825511 9.793421324432797 5.502459201499965) (-0.8368308706190479 -30.22947206656293 3.846588243924691) (-2.380235381072721 -6.468147664870337 24.18107375377613) (0.3008740466802154 1.061039214345009 0.4242040212854252) (-1.570032572365355 -4.691491572550746 0.7688068525123258) (-0.2495690702711214 0.01646776122277906 0.1614212422999861) (-0.4310546699172918 0.0426403939304477 -0.09529483852187361) (0.04354364920027882 0.03107564046288286 0.03567572508349665) (0.06100854832746864 -0.004985231241265178 0.02407632441249166) (0.02426405556011551 1.152758672346983 0.03690003549519966) (0.5343781437433537 0.1553453385259167 -0.2181065864015773) (0.02400442531448636 -0.01655701624511586 0.03829490499175714) (-0.3046067276960492 0.445246488680293 -0.6242018061680283) (0.9251703728103974 8.041290384394614 -1.295015790604003) (-0.03353699480311264 0.001404491130746734 0.02671664134433126) (-0.05042813854984384 -0.03918529815370494 -0.009852911728760742) (0.3141588143220936 -0.190818381319739 -0.4900255908444804) (0.08584513048129327 0.08955344648572906 0.01589959572226941) (0.05885043651853543 -0.1764193688026746 0.2057777810437307) (-0.0948279049019147 -0.07694448320420187 -0.2550891237573985) (-0.0003726987441871193 0.03297291715156278 -0.106031837933389) (0.002663878219123523 -0.01992253950143805 -0.02296269970064962) (-0.5629676233257241 -0.2019180705366393 -0.06532487903385426) (0.4722556782845236 -0.8164701518521469 -0.7371731384605434) (0.2292706111852848 0.01875453582993337 -0.1464642458082653) (-0.1050005529612563 0.06131559288293243 0.03430852872777405) (1.027023976223384 0.9544062491908119 -3.261002333057845) (0.06892177241139119 0.01048104749254745 -0.194700434291991) (-0.2779985939212024 0.2782319784628342 -0.08487210909027534) (-0.005915223285827526 0.01605322428214543 -0.06323180024978291) (0.6652573156274503 0.004648208625757322 0.4613905370541068) (0.7263428307853176 0.3308622738009077 0.235498453716846) (1.436475411873836 6.724248085096034 4.768853511766241) (-0.4480324707673313 28.2389972164228 4.837792770743826) (-5.157075276281388 -11.59583292190766 5.355358012760187) (0.3359954014446419 1.568823446385039 0.1900873101649793) (0.2645458633189051 -0.2572191450008691 -0.002622267290362898) (-0.3971548739532577 0.6915497174196815 -1.747212619107962) (0.2985996380813951 0.7872497184280409 -0.4315005137848966) (-1.376442304189198 -0.9289933448499401 0.1394877156953728) (-0.8782529796505465 -6.185529503113209 -0.4985969577056915) (-0.06448118325518515 0.2839710552118638 -0.108800280718643) (0.02975228005977253 -0.02730736585595076 -0.1029845176938117) (5.342849974540676 68.50846480505504 -7.458163760195584) (0.0325303561357013 0.08127565931174972 0.09880979171529103) (0.04584223556052537 -0.06911895315582217 0.07477954841602789) (0.03582774433739094 0.03160820301548462 -0.07922337538618088) (-0.03490679644636727 0.005334592328058973 -0.003867076738559804) (-0.07502878040848911 -0.01484851551049361 0.0195278712426078) (0.02084563754478413 -0.003378189960964569 0.02305227658029631) (0.05805276715510266 0.03083590529689406 0.01170855441556859) (3.453969657686867 2.851646836160615 -4.71474651414902) (0.2059959814998321 0.2744312442983199 0.1404257687634802) (0.2348073596979938 -0.03191926553310695 -0.0002510038834053173) (0.03660291480345126 -0.1948515378226107 0.192427448944551) (0.8854553202478189 -0.4993508078136917 -0.7903603277440001) (-2.513218959388943 -2.271561436591452 1.210469974542701) (-0.05103156162771183 -0.02944975025871986 -0.1271203168158062) (-0.05213706693187012 -5.426198868263614 4.341648594604431) (-3.476095209125813 9.111443119651508 -3.189481972247944) (0.2484274806401139 -0.06821008043621313 0.01179095606744845) (-0.8204103042317646 -1.10441867464088 0.120426817035736) (0.05556766616266595 -1.553735690374473 -0.9157229996535097) (-0.5767723550261844 -5.970675837020512 2.119874923847799) (-0.03177786570099561 -1.576436203402744 1.526417641027167) (-3.647562823811036 -1.394419109248958 -0.9921013734582436) (0.01015869450664681 -0.04164387246735209 0.01410863102293003) (-0.2069225720619141 0.1352660104022216 -0.08544373854889056) (-0.171460759358782 9.529765492956932 -2.583046313330685) (-1.204978515704545 -2.634577007921412 4.259736227480485) (-0.02289536180514634 0.008379759127708313 0.02862478997841175) (3.399512431186642 -6.953563090769257 -2.776906538569495) (-2.539417548100743 -2.359423204690975 -0.6549753949551891) (-1.276569033958596 -1.383980493580862 0.4101669067618527) (0.07254012435465504 -8.643626157158851 -1.630893138250281) (-0.06419767622407388 0.07555873024435923 0.02839859506649422) (0.3262272429979369 -0.568040280015466 3.717610069225139) (-0.5045153380995568 -0.121931610450847 0.30606914423147) (0.2606502570700031 0.1432928677587855 -0.01803078923239106) (-0.5654830585245805 -1.512467717322395 -0.5022203755869878) (0.1702414526779275 0.3396093736407618 -0.02865743578273521) (9.892339896480685 0.6344622600571161 1.756941820732601) (-1.467290829800302 -1.567107256225296 -1.153402122447485) (0.01422528057158804 -0.02414644057946787 -0.01543778541840765) (-0.1993785638225265 0.1110412139869826 -0.511964366333455) (2.10496967129085 -1.113103269892092 -0.6876627721068261) (-3.101586500034699 -5.011680405334273 -6.323581964375538) (0.9347705823308363 0.4358143342499419 0.3509141851609617) (-0.1645819487416175 0.07450839771202306 -0.2325118695758355) (0.2511978562683549 0.1583463864447525 -0.7041201455478409) (-0.2006656995044627 0.07074788459850573 0.2331076349594652) (0.02437515698217831 -0.002280529241133348 -0.004621357549944707) (0.1402221692623939 -0.1671154390325453 -0.3848617494879781) (0.3658231525005708 0.1055010704779899 0.06808083422690538) (-0.1087740236066414 -0.01591933146194776 0.01004025868428257) (-0.5646787025360921 0.3396479308571893 0.1357035740333707) (0.369599090231436 -0.002528914379524697 -0.1325474422782651) (-0.02952477121457017 -0.009795877851061466 0.1366941259233) (-0.5413596382769092 -1.394895143119792 0.2961229828283983) (-0.002758943444730841 -0.007162773391374835 0.0184075178829181) (-0.1330945050846733 -0.701815974083615 0.5266929834655228) (-1.468601479908704 -4.186334411485579 0.3765393850236984) (0.02463436132868362 -0.07513766835990866 0.03426116247015135) (-0.081196885601308 -0.105428419963826 0.005652828828310969) (-0.1062992292553524 -1.101370511612077 0.1212837832374243) (0.4797637597745927 0.1226550125516597 -0.3494233023309566) (-1.149585354332377 0.6849106510329204 -0.3732781147219768) (-0.6606784158503538 0.3153075822337464 -0.1006986912897765) (-0.2240442011706619 -0.07835161960987727 0.2371641878535609) (-0.2123375993903715 0.1597032149944185 -0.5201709463311416) (0.5746840441945154 4.933625542549247 1.097213109533247) (-0.4867437872427844 -0.4019197139568922 -0.7034067232509322) (-0.476198595321619 -2.339663467574749 0.2281407432823636) (0.21090908801471 0.9170555754960368 0.2190083013798088) (-3.950064587438061 1.507338916302302 -5.521450999171009) (2.259358283087065 1.081318653399929 -0.4593853938326899) (-0.1148577858480909 -0.2680075053166582 -0.1400516717735317) (-2.417662278271366 -6.112928716710892 2.448610827100852) (-0.7779333156525012 -3.061808902348018 -0.3447156982845415) (0.2037148497107348 0.2464086170706974 -0.2654422776555249) (0.1097875800281703 0.03550453190585851 -5.907834150679071) (-0.2783568157990602 0.1123296984800613 -0.2846872554896692) (-0.05622364286798021 -0.007102888066629579 -0.024526663500595) (0.07990317393936808 0.05499509506709714 -0.02622803482267868) (-0.8383568891563346 -3.771197911094874 -1.117921956562058) (0.04344581568375168 -0.1463090972786649 -0.009430905294230288) (-0.9261868513542452 -4.112752314957786 1.195761124972624) (0.169391521647624 -0.09844277816553614 -0.01195837448641537) (-3.104714003944914 -4.45237410132108 1.131273230671472) (0.1000283692568525 -0.03724278096283636 -0.01516800456048483) (3.930451772796903 6.366107948163248 1.772610173066671) (0.08342545248278503 -0.008498034233066207 0.02055190613842796) (2.874386852993233 8.758760188851982 -0.9480826017373873) (-0.07072997887856816 -0.01671169611993779 0.06734104032285695) (0.2005997029616377 0.1883866665781302 0.1389871021823492) (-0.9567147758870136 2.294221416586169 1.55500300470861) (-1.313204694766344 -0.3876228588834786 -0.3811480155570471) (-0.6850776803409615 5.356747970595471 -0.5515185954381103) (0.03047726865884214 -0.6355572868975794 -0.3497473761201565) (-0.07082249467452566 0.05507224514511513 0.05510439446980363) (-0.3921267729863313 0.2524215440453979 0.2898948330324629) (3.22301457469826 3.283937177051715 -0.9014610210755011) (-2.264553880040753 0.9574382802794565 1.03786488444488) (0.4426008474520621 1.321592199209807 0.9434630109861107) (0.2503131606360818 0.05608440133540415 0.09968904899147991) (-1.840543936683681 -0.131153386325382 1.622895690681752) (-0.07575127938120982 0.08113407537165171 0.02656622146339224) (-0.4654885613491389 -0.4767718147773795 0.2401688653527373) (3.928602506669149 1.34192612134256 -0.8130062576638832) (-1.616850664340495 -3.828376745474869 2.3695568952359) (1.378345181375426 -0.6576577048022124 -3.221942458367032) (0.8076829565429055 0.7081365385137304 0.821769671725654) (-0.9218734809786856 0.5711880395233936 0.1515256873993319) (0.07204624473839616 -3.564978616560587 -1.593741319461645) (2.210612089500373 0.9971536981441398 -1.463462956652069) (0.04006939887287543 0.07456034894081739 -0.1106903375648486) (-0.1042373537012981 -0.0153290554884414 0.03054753066562195) (0.156285650657862 -0.04602517889855688 0.001975810975522112) (-1.891488584335334 -11.6485974940316 -1.164421942656403) (0.03521451800089678 0.00372395953370596 0.08390318830309906) (2.009759928260805 -7.001877235741565 -3.774347341737543) (-0.2221530509491783 -0.003141741007302739 -0.01636685667273313) (1.387283312219252 1.187643167924431 1.057004756997383) (0.3461512206913367 -0.04703469772234603 -0.08878376687451486) (-0.8400869494408176 -0.3787514949706536 -0.1231495504403209) (-2.179127159121306 -3.749822935390831 2.543935172330289) (-0.4015401184739154 3.615012927475139 0.2304273330536803) (5.322544437829984 3.31721668915128 -1.702397816333553) (0.4299819345206575 2.086205648882649 0.2755516167738838) (-0.1513850457840445 1.146379746308263 -0.2814442282036445) (-0.2093589665065612 0.369012281738333 0.1998962613111782) (0.008331439320247217 0.01413793348072685 0.01567685077946284) (1.028372526087562 1.792899210342098 -1.869000200115029) (-0.01648135937550161 -0.0002238168421372789 -0.002259207066387413) (-0.07626077976624565 0.2680159406329198 -0.3478171758977693) (52.42626530409484 -37.01908076286596 -15.34574396012466) (-0.6151052027553041 10.00208576697243 6.922198935831409) (1.574939014079347 -6.631474584404735 -1.661011492004251) (5.910333380995192 -2.549730779386519 -5.780228470565238) (-0.6048488259050616 -3.077546839055886 -1.242743006482844) (0.1634618479020057 -0.5953865192170764 -0.2806344100573713) (-0.1183772479974704 -0.3471597923450266 -0.3298725570722151) (-2.449499515289759 -3.728801018525486 2.839423971806417) (0.4193363079444595 -0.3306323798097963 0.2081856922670565) (0.02471797196666967 -0.5020546350235462 0.0139125969038581) (1.303053509784925 -0.2502855462535615 -0.06346986852830049) (-1.007333292734643 -0.01563500660153269 -0.2026562648240552) (-2.111649514500737 -39.98555652731999 1.115249747920261) (0.1684756756292506 -3.979521164013478 -0.6513090830376673) (-1.735784426011197 -41.45158419782655 4.315155838205404) (0.005384659896691435 0.001924319988275893 0.002863033629548338) (0.4214172938817853 -1.136777542519227 -1.519211849253317) (0.4980318095229446 0.3455030367492516 0.1812166359640805) (-6.913380759872799 -10.38605461341858 6.534163724659243) (-2.131713478042834 -6.988128874130027 18.3496297074084) (-0.2934246848303974 -0.3019232038741232 0.429375921954451) (0.5726558538580926 -0.06550441282969315 -0.6116104114793129) (-1.211009448265383 0.8159252789167373 2.212042507501943) (0.007811345188175112 -0.5187629790911433 0.9461803957778658) (-0.01209101227768928 -0.05930975149985301 0.03824173877647767) (-3.019016549004263 0.1666581356551428 -0.6586529913774075) (1.408644252545137 -2.854418220250679 -4.388795863246079) (0.6124566177405292 -0.7524552674422506 0.06847247563251135) (-2.757126007795123 3.490409676262809 -1.965466032519711) (-0.1714007404324633 0.2122127381562931 0.1850689616230962) (2.105867306341031 11.08299547543267 2.161805556291307) (-0.1913172865528231 0.03281117062200678 -0.1173475377712272) (0.7052376761544488 1.140942434650262 -0.6554714688022841) (2.02870791719926 1.579450985294231 -0.8213845030720868) (-0.2956550692965226 0.0500535392757564 -0.3643991420685474) (-0.04748921827281402 0.2681085712768692 0.1915409741543493) (-1.742227963126254 1.185430165802767 0.5042650316253486) (0.3764203589476156 -2.304580146813002 -0.9220362035867478) (-0.2192439957170005 -2.312269007593621 0.7105665918156203) (1.53760130245912 -2.487831513522256 -0.6783663774065892) (0.6726224137422798 7.071300615867365 -0.1006464343446075) (0.130495988627829 0.2625204882977034 -0.337285721039188) (5.329441370390551 7.94076000254622 1.99903195275184) (-4.413894800411403 16.45362467601029 -3.438831000165528) (-0.1667994547075615 30.20260500073307 0.3088370294483367) (0.2129452736621358 0.0240211219483519 -0.08144273255728227) (2.784199711213873 -0.1733591670627199 5.699548112662654) (-0.4462747989585988 0.2361079487893326 0.1325452334863317) (-0.4794691033424495 4.805478328019874 -0.6302246548655799) (2.890972244051797 11.17701724684171 -4.293448066157342) (-0.1940728051109691 0.1517120405367685 0.1024216949685155) (1.14962446718923 -2.279422847237063 4.89601431221387) (3.319315586165331 -9.842087406575622 2.731512433143013) (0.5824338383838424 0.5527476863568314 -0.07497793197892326) (-0.09234628897071187 1.70922703667629 -3.136215303408364) (1.993707039315157 -7.750757549290321 -4.266110732255336) (5.543956944603879 10.69853669872396 7.818472783937707) (-0.7276508552435503 2.63967589760415 -0.09992971115759942) (0.1968492183773216 6.251086470900556 -0.7193137581040379) (1.837362120008591 37.11663437336027 7.996143155454029) (-1.108115917588587 36.1984611469323 8.122930396927481) (1.267467116976744 0.8247693418661886 -0.06193562282436658) (0.1514310644793436 0.4543312307048507 -0.3066666454893396) (4.237245517819735 4.210092052133656 4.287627271771997) (-1.358604750081124 -2.539612351086394 0.8875737577003213) (-0.9596449984217708 -2.710018800204427 1.110961551381479) (-0.06894415865148151 -0.01430320037164808 0.07643277077127693) (2.377093850533407 0.1059007700598231 -0.1304973913824161) (-4.188947607828018 9.837043981157354 10.98062014560769) (10.57567472900864 12.4320674012714 16.7259350233489) (-0.09651354427297085 0.05017955237929404 -0.08503780470157499) (-3.855992652030046 2.955457325464167 -26.36752666963499) (5.446234809010832 32.4382657980187 -2.412237366284866) (1.370101181534703 0.5189617874325028 -3.329349006938823) (-0.09051070813016493 -0.1611600730984218 -0.2557857176941829) (0.3016612915012371 -0.2394644597159253 0.1035124082834111) (1.459984435535899 -0.2325993852252555 -0.1460576903193636) (-0.9012518947298482 -0.4316036130116081 -3.585230457719893) (-0.4823802741791979 0.6906805544527778 0.5766382332658476) (-2.892095501339352 1.031253711272208 0.1986842186723914) (-0.5124430472140317 0.06188207836003612 -0.179079710946506) (0.3679500077553017 0.07722537099242004 0.3678082517441239) (-0.188047960022076 -0.2258863180822076 0.103364895266608) (2.653489056387094 6.169145552077547 0.8410311320813095) (-0.6053517477208963 0.150630502439062 0.1607088351617821) (5.965319053516955 3.808156606816862 1.069327618037675) (-0.8623692042806741 2.904317125561417 -0.4884416260127492) (1.975231027676603 -40.63919885816418 -7.507413489047462) (-0.570586276892174 -0.7034104976428148 -0.5111563864524787) (3.168788450087842 6.613999321659479 -2.823139029437057) (0.5008538644427302 0.2200326071010825 0.073416350951684) (-1.497969966123807 0.6862025342096625 -4.083380901775699) (8.548672578882567 8.369750348601524 -9.793383798008742) (0.2760650163010961 0.2145169307013345 -0.1035175589645961) (2.003720369744385 -11.94519729910303 6.548616217857228) (7.950329345520057 7.786917322190167 1.055138032156282) (0.4132902466154826 4.526262034252803 0.3999855872334229) (1.24450753883986 -0.5510236648253354 -0.3977231110530722) (-2.529174815761869 4.259903300813599 3.305390880715649) (0.7511880950444021 4.387168476049593 2.138446473373603) (0.05606641894873476 0.02263461271910837 -0.02107587326256401) (-0.3113265810352542 -3.040927688127273 1.155961961166913) (0.3952344679126101 -4.876207879637354 0.7504785918320169) (-0.09546105438421998 -1.651631758962844 -0.8547225930190977) (-0.2767711807999451 1.404235727298394 -1.214660370353557) (0.3363502717285023 -0.03715072552931035 -0.1034686956986343) (-0.1161466865819671 -1.949253926483504 -3.088309025288931) (3.291120275995224 7.818567263507997 -3.444306104244696) (0.8246336255079039 -8.523877792563205 4.701452847536405) (2.652472913514246 -2.122948403402379 -0.6264734038213968) (-0.01555210422282432 -0.07281315685514347 -0.1092447662178135) (2.559599157420631 -9.837708518369871 -4.012440806171131) (-0.401419938553008 -1.372730541182688 0.02469439673941853) (0.9393769464069592 -0.2110973740226579 -14.326149138075) (-1.143991538547593 0.1831295902124669 1.905929847362246) (-0.6281823124501018 -0.7443350578735514 0.2718975570730374) (-1.164782184007508 -3.668115190131246 1.993568987109607) (4.230747191055092 -3.730544511373302 2.662481514649292) (0.03819933678729731 -0.03582776621376111 -0.09980728924523175) (-2.145382549894426 -0.5898747666901749 1.941254065196164) (1.642832591975187 -2.550732433657556 -0.3945619404568106) (-5.764790913967686 -11.77983361559949 -2.661774167380611) (-0.2776001619830584 -0.02324480279531688 -0.1834575688665064) (-1.236133476254121 -3.524607096081604 1.218186158428706) (6.308324104358459 10.31642025433292 -0.1069647292149567) (0.3681065294368613 -0.150776602130712 -0.151443173371046) (-0.4546931289609218 -0.5625296743656811 -0.008592386488685128) (-0.9609370703530973 4.881571984662315 0.2684282084909694) (-0.8322836684988477 -0.009825044235454244 -0.276372081781656) (0.3019785694450776 -2.582251202774979 -0.2514989017692233) (0.3614623755774213 -0.01991322459421985 0.2553282734616866) (-2.128499978902075 3.014567461674852 -0.8079541919229947) (0.04069647475616989 0.03927469004993738 -0.02034154196605667) (-0.03840304185806701 0.0181402093927114 0.02625049923927939) (-0.01787378403888087 0.0005217097971964204 -0.007485883221571233) (0.05053671296947342 -0.03728733031153555 -0.05376346866811467) (-0.06875280520588582 0.03290645441623028 -0.08860925541119109) (0.2400111331509925 0.2485090041917669 -0.2863783848979853) (0.01708987034965553 0.0741758800675113 -0.03950364174898327) (0.0047578128973421 0.004821763101893787 0.01150254755202404) (-0.0176617537796705 0.05220094669347382 -0.002633353200278354) (1.974855053436798 11.48291159297333 6.578890342675249) (-0.03353985138344397 0.07539394998105371 -0.06871603924672345) (-0.1816892433153528 0.07589526883947686 -0.30479968205941) (0.7948349264524466 0.07467344065188025 0.4764227899649257) (0.5781315628289975 0.008460778172347347 -0.1445931620063415) (-0.08250425689252738 -0.08027169703148129 -5.567902657435405) (0.9573578386879504 2.712387330608379 -1.589860126481044) (-0.009911594380982859 -0.006720565740012029 -0.005329369977929909) (0.3399517406740795 -0.02602193385340665 0.2183404687307325) (-0.5972268631119992 1.179583978599458 0.4711546787967863) (0.02735368694431811 0.1896955562959403 -0.1990609620380047) (2.026848728159964 2.176818196618552 -0.6924241288620963) (-0.4281703961524359 -0.8471999347733743 -0.9762091063146705) (0.3466587088871922 -0.2695685526156333 -0.2361911169040452) (0.0329323255644134 -0.06804513328057051 -0.04946082110804389) (0.3823487631339204 -4.91658292779472 -4.749594099533804) (0.03268860825650824 0.9005383774471127 -0.9635694523699972) (-0.0666280497486692 0.004573258870600085 -0.009415012513322763) (0.1303926746429411 -0.05877896384873994 -0.06126694872508159) (-3.615900581691168 -0.6153152677369742 -0.5322237067484621) (-0.01808237662550569 -0.2999460738877365 0.0935796184067309) (-0.4487408907900465 0.2530683514738685 0.118738862104948) (-0.09851516402398347 -0.0719894355499653 0.01746988637711533) (0.4428274365127246 0.009866761066444511 -0.8307458219302908) (-0.06223543921074481 -0.01077633887505462 -0.07980465363615487) (1.015871401152687 0.5380144376076079 -0.7876441730629768) (-1.099564204122126 3.097350081265367 -0.3121602872051032) (0.3187561618519869 -0.6974905356509398 -1.809851111373795) (0.04737182141725548 0.01398024812281804 0.01347519672087032) (-3.779032675036616 -54.60731654149987 -3.923324511453502) (-0.04443943259309913 -0.04060515967345196 0.0267362245907983) (-0.3767666943537306 -0.2088676392084857 -0.01305363484409224) (0.8662808376671662 2.342867640223883 -0.1797189938573919) (-1.870537614505712 -1.217166194075565 5.314522642922022) (0.1442079184803619 0.1109353281182788 0.03379379546406463) (-3.380752590773931 8.027442447835622 -1.437520125917676) (-0.945340540495059 -0.2491558675990196 -0.07247818039926568) (-0.3681499443686376 -1.684535845018577 -2.456985510031068) (-1.512134096461536 -0.3313817378595133 0.2216625494973732) (-2.069452849623632 0.547321925488444 0.8274533643612418) (-1.088364102684677 -3.870634607599172 -2.235255682000854) (-0.1565490537854169 0.1234598298989262 0.03016300435964755) (-0.3929796204249051 -0.2607548045315397 -0.999780207876994) (0.119814553544699 0.02402450351693523 0.01096682438070815) (-0.01661356759398478 -0.1006897032572365 -0.02456765523253121) (0.6216709517371457 0.1800846364557915 0.08221501983770851) (4.626980859084333 8.369589121197414 -2.379079323057418) (-0.3186277169815462 -6.18242128968469 1.852152830583722) (0.3285700997866461 1.995776074811469 1.144442677599802) (-0.0515272383572557 0.197397997733678 -0.1461849995986171) (-0.1093998872741204 -0.001320625204216736 -0.01513110555334132) (2.182686037848311 6.629595056182955 0.6049278861526645) (-0.9425663008134089 8.304714121474635 -1.591908133697872) (0.1482423295486224 9.856553647389195 -4.868688410204769) (-0.6009938980535938 40.71924954506058 -6.430225588909419) (3.129767518011151 8.052701944107431 0.7258904705136232) (0.5741395174488745 8.553484114035312 1.943697659645488) (0.007166799458411338 -0.03254955062418293 -0.006326031751024122) (-0.05504608357063921 0.03944558983920367 -0.008349099322169505) (-0.0610940307539687 0.01473840748185196 0.00826305696254798) (-0.01989787455964893 0.01755176730053245 -0.01377565079623918) (0.3637992842893085 0.01918740281568182 -0.0256439306413928) (-0.01496882598062723 0.02276825151949891 0.02944772190241104) (0.1393865772019885 12.1314797633812 -2.475540517223625) (0.09011582285585509 -0.1345266879918048 -0.1830519614476392) (-1.66243929434862 13.40439496588143 -3.607628880810837) (0.07469201833956166 0.0006901299110818604 0.01344280529096563) (4.539868634632239 6.006337729080906 2.417198074739814) (1.421185868774933 0.6611675788206413 -2.52006011282125) (1.914194384807497 8.972263285515938 0.1432038643373457) (1.043753569640716 -11.13718805658208 2.451823577470055) (2.741104810561476 10.04987215079183 10.9525100074669) (0.004308330543897673 0.01021436189922215 0.01682502091737988) (0.05853789593127022 0.01591867423387922 -0.001930459772968847) (-0.03991460831816979 0.03916553455934657 -0.04355018365395082) (0.0228533754900644 0.04217230270694596 0.005054443506183646) (-0.4396571020481511 -0.06859102908703328 -7.818331742651526) (0.1539762703165273 -4.787373817237771 0.3122369308893287) (8.749721494222841 8.698128652469462 -10.89736871518764) (0.4227162714719844 -4.850955419428134 1.506660644981586) (0.08412937566601131 -0.1601979258444936 -0.008779620782345357) (-3.380705752516517 42.53565234399322 -3.712787815204988) (-3.054688513719047 -2.862588742314955 -0.04754841354698225) (1.880362839773067 36.84959520851996 -5.499043656613637) (-5.457544838367845 -13.25696024707537 -1.84240704552069) (0.7540822841049608 -3.578143288747214 -1.899256764488481) (11.81059866715238 24.96789141461635 9.408372085653006) (-0.0005052997826188906 0.03840371067131256 0.08437405616816915) (-2.539763735456824 6.853561123859553 2.901373464626497) (-1.307519112856005 -1.760242308282236 0.268751361513367) (4.096692252142886 12.17196264440487 9.552318108710963) (-3.337977994656681 -3.252038019615943 -6.421261447872135) (-0.09272756653190542 -0.1083005310530878 -0.02056819466283457) (-0.04065520838024528 0.0134286459292578 -0.04054219310897562) (0.0166815899988132 0.06706561899675731 -0.05227768128050744) (0.03654745084962055 0.04442942737704497 -0.01447358529185468) (0.6147728801867404 0.554932659011367 -0.0895486293934282) (0.8615552691273771 -0.04514504746593125 0.01920680123954439) (-0.0004907754856024946 1.491560482287736 -0.7318527215082899) (0.4461020073573163 0.3486022001667416 -0.1280930536538454) (0.05270579763105863 0.0461157009157234 -0.02724275629514737) (-0.0176986457413008 0.1358111591306847 -0.07801510060353892) (2.737449819506654 0.3301738548352857 1.611302457957362) (-0.02292725053843733 -0.05621774461870817 -0.007953244498640048) (-2.518049315046351 -5.076033346966923 0.6056506698858538) (0.9461193838230691 -4.93076218357145 4.595570629567888) (-0.1185628913867223 -0.07083693439308193 -0.06353968827500184) (-0.01235877109347612 -0.2229630490755913 -0.0749386912867549) (-0.8041526132564571 -2.31132052951615 2.541126744757693) (-0.08370228766456853 -0.01987804575537391 -0.02255427583269901) (-4.230495119534 -5.015095257575716 2.054190074185696) (-0.7356969822704837 0.1506573774222697 -0.05014593093015693) (0.1360440379022486 -0.4771687925114105 0.3703450637969504) (12.93943812211933 12.76313788760832 -6.957926838308349) (0.008015563580406809 -0.03507571576949553 -0.06713290470889548) (-1.694155907278018 0.8657125456000421 -3.30598628418397) (2.013196904534777 0.0624305004574105 -2.656485138803207) (1.978759969745586 0.7802909270781908 0.0757393794473149) (-0.6598532683310654 0.2266108201957709 0.4219726634575395) (-0.2940732887554217 0.1414134127937153 -0.5156502119269619) (-1.98169495489378 15.0528607942187 2.78146212580162) (-2.144661064266951 5.277245252363647 3.453874602701898) (-0.1267245439406187 1.622917112646947 0.619923666632761) (-3.702975463452607 0.4155437923400456 1.114980702634774) (1.691975278543037 -0.8379286904292025 1.108412499764483) (-12.79289593201803 8.054971927543289 -4.772292162708895) (0.1175056306822136 -0.4320364070804225 -0.6113583617237827) (-1.447379758458658 -0.3085526478374283 0.1954956458878806) (6.108507041771754 2.123128418687343 -9.021851982526089) (0.02072205406380276 -0.01748231109999729 0.01769283167063656) (-0.1868644454984696 0.01363098798239595 -0.06696542042492967) (1.776996949016666 8.547359855745318 3.308306859786825) (-0.03411425233909456 0.01607806857977674 0.04688790127443293) (0.05782525702319556 -0.07743808512490319 0.06405901376544396) (-0.5275650131284928 -0.1351257546307951 -0.6811742544941674) (-0.04802409989991017 -0.03547664350622783 0.06776960486321351) (2.014949736931586 0.7884216897247833 0.6716386718270709) (-4.233271971737544 -2.645519421045399 5.328396809499168) (0.1828208146923829 -0.0669322600633388 0.06321873774464529) (-0.08596197498431324 -0.6244235017696946 1.147780319275839) (-0.7232326817946026 8.985201068983564 0.1658098728586536) (-0.4741103684627958 -0.3309396983096941 0.09284665421286453) (0.1983105169278732 -0.02359436398643067 0.016302546132511) (-0.6719336137816526 5.899340350133666 0.1373676478337998) (-2.582220885645746 -5.965736391915784 1.343751862790384) (-0.6382730549691871 0.368941531224631 -0.347392555343712) (0.4669199516286469 -0.2024022883097492 -0.523035948704225) (-0.981079289543818 0.2009166153129991 -0.3646872513517654) (-1.741432548440206 -0.939927104564514 -0.09216743975909306) (0.4495100715170574 0.6365694476937748 -0.06442699534939211) (1.012656916104876 4.987622998018681 -2.32237360132048) (0.4379299055437618 0.2545689610983926 1.135240237814521) (16.13788241081631 8.563295846746955 14.58851788552549) (-0.2241999080221906 0.3498150535713951 0.07819701130816581) (2.725891281465683 -0.6164808864185927 -0.3800732326209418) (-0.09585687046581481 9.002057622806884 -8.980954519959722) (0.4318417256809053 -4.774904514109959 0.04740232062855565) (0.1303550531784948 0.7745532291181827 -0.2687242766470875) (2.360658977941491 5.663846853159491 6.628356704864681) (0.9958083557445111 -0.7213401515249844 0.5093000056934786) (0.7414307908953227 1.470064213304636 1.310916664750011) (-0.1988805494441102 3.198589362669146 1.217516183919284) (0.09577768131473563 -0.1232306465775075 0.7191379792326696) (0.02441729357194754 -0.01163499821949398 -0.02490123109298371) (-0.01419500969616482 -0.04933550592884042 0.009977216824907849) (0.2990105841883577 -13.08381637757227 -1.388100568506411) (0.03570492857931101 -0.0786954066560081 0.03807278600235273) (-0.107639705171211 0.04981570838947546 0.04799750513406102) (-2.362451016971182 -12.94238693975146 -0.8172762953060497) (0.6882532726847495 0.2633852892961769 -0.3832641683770989) (8.807154590182833 49.40365461797769 -5.250255425647641) (-6.947303753972364 -5.277280131856416 -0.6774906091400541) (-1.156073859369382 4.79976181692205 -1.603736433687273) (1.556836521670276 -4.541275985391704 0.908257020872729) (-2.277253507012525 -10.38694665250107 7.407975067075087) (0.1767483312063747 1.210349378573396 -1.065414970403995) (0.4781317582195912 0.1207063906847947 0.2013518208974501) (0.9983419757393457 0.1484378514463517 -0.867508423773103) (1.828439289665754 0.5425016392769653 0.391275743108572) (-0.514309503859816 1.084957749498427 0.5679527442848401) (-13.6295732173128 -4.452978070171825 -2.815856511350938) (-1.246442569888439 -0.6664699884483795 -0.09679197851560684) (0.338028617981877 0.2499683498273348 -0.2528438465074508) (-0.09060507910537355 -0.3262216030917798 -0.08362357074571761) (-0.3244103128182171 0.003218419457788779 -0.4230178585551433) (-9.214615488408391 -2.79074495634888 -9.302359674046084) (-1.989243349980519 0.482459600113293 -2.575848298180192) (-4.256416035000576 -8.921444764969353 0.2517503195992966) (0.05522618567979046 -0.09983244618175996 0.01463117330972692) (0.04487579367931809 0.116579049006286 0.009853718323824453) (4.254378680770024 6.40561516250664 3.655415249385435) (2.655002582012049 2.845131528189781 1.608859080812032) (-0.03563402695992753 0.02369928168923956 -0.04063072332420052) (2.099166724720448 9.189886824759608 1.592743210966286) (-1.069404005160823 -0.7693488798264554 1.744294186933799) (-5.575962675934507 -12.48237510029623 -1.361128344810844) (-3.315570384695526 -3.37018280627614 3.074298213757314) (-1.306212198219741 -1.384930788014608 0.1880125828267452) (-2.418615940085651 -4.925261320387419 -0.5390639357896843) (-3.165619112855514 -10.09357306770101 -6.687036208776935) (-0.2127453853178246 -0.4701581695250263 -0.2445772691090405) (-1.586848307543172 -0.5195860386291991 1.818821758880821) (4.186642122235074 9.738598778236772 1.04396478076508) (1.766348240641745 -1.614157687133131 -0.09933282093653362) (-0.2498359839813116 -0.8983874187880647 7.165768312170412) (0.1014533367660347 -6.588910593046038 7.762948754578598) (-0.5205376981911497 -0.03268293433534247 0.05735367165628485) (0.02307519915054184 0.005730479721506934 -0.07046780316566587) (-0.2105820373604573 0.03517318453407117 0.07262930996272204) (-1.293525307404406 -0.4544882928246051 -0.6373124527890857) (-0.2404741663291805 -0.5635814589051316 -0.2526682427957472) (0.04323537522845676 -0.04789710467835284 -0.07266215402965863) (0.194622905838195 -0.04919317171074207 0.1186634299126518) (-0.1342630463543031 0.5300647044650167 -0.3536568406025493) (2.116437140762671 -0.2612141768200947 1.923450956719879) (2.146777976688191 -4.486321188901511 1.00237715506844) (0.2994304289339111 -2.791336637642524 0.3813084894298319) (1.835804210104173 -0.1527347514216905 -0.7854458768939332) (-0.02088619239306748 0.01092969341668095 0.04964530076123486) (0.02562878473673737 0.04363374835505997 -0.05263651844962734) (-0.0002761951748075191 0.007213741931986773 -0.00179226603872408) (-0.5724243888611187 0.870562412296874 -0.9055766499812827) (-0.005481818187532321 -0.01138548018233904 0.006182088196875895) (-4.572448869491089 0.7727784931074213 -0.2471951686494087) (-0.3821857031365293 1.045413060344064 0.2251506645310453) (0.03758185094096139 0.05507137093866635 -0.03510918427761939) (-1.472735399117757 -5.339718896199063 1.748930233765999) (-2.694974462038252 6.946017264548285 1.803885878495314) (0.3136933864285307 9.603564804978356 3.285834442429509) (0.5980010929971482 9.621294231455789 0.807352679933694) (0.03092714651973414 -0.01079277145150359 -0.0007646249423061535) (-0.3377203598553866 -6.346863211802094 0.2922191943902449) (-0.3647954621035931 7.477806674953121 6.790127669395483) (7.824186489912767 3.207041724189758 0.4696661608593787) (-0.3462261343333233 1.093702589039828 -0.2761082148128933) (-1.124964108846521 1.218103036920933 -0.3168065380018983) (5.420016169450298 0.4874802615703054 -4.258463151976292) (-3.0854171972047 0.8871097366400558 3.945431267671113) (-1.286419082011344 3.167642332581843 2.075992373147771) (-0.635566334367162 3.280247098294446 -0.1871630799279564) (38.60540901766507 -48.13077100475287 69.09672844022855) (-0.07300778577490502 0.05809634229538373 3.544036109213305e-05) (0.07852706232130439 -0.003755138135260232 0.05351913908705133) (0.7187687083142895 -0.9186053519564368 -2.345565706133693) (-0.4218691161856676 1.094901420074345 -1.094898335363771) (0.05161001102811544 -0.1190307737925425 -0.02872880412530955) (0.006885441572759552 -0.003903727182999103 0.006194980008992196) (1.328456390775315 0.8699815031317291 -1.602450585604238) (-1.452658628493571 -0.8357001550547569 0.02743745098554706) (-0.4839059786122261 -0.5098846530647656 -0.4748523923491829) (-0.4829855057576925 -1.054815199487948 -0.1690048130319173) (-0.2186907238179071 0.08972854961606155 0.0245785968196188) (0.01849396391434538 0.01878676121711299 -0.03037126085259077) (-1.011362363622587 -0.3443794735013831 0.2458284220123364) (0.1568762489934315 -0.06068880291285761 -0.04091089175781437) (0.03745308435536928 -0.0391913151999029 -0.04282540478507667) (0.0113195018500802 -0.07024130600265217 0.01799640127828595) (0.03060664098705392 -0.06307423469268644 0.02993063284920671) (-0.1104925913488955 -2.443017725120609 -0.9188250134906577) (0.01399969191610912 0.03101648615604118 0.0006927937509423224) (0.04263192651367091 -0.05519257256979035 0.003014045360072423) (4.074356342897455 0.6942253894174154 -0.2962549588876471) (-0.7088676417609596 0.04212659213922698 -0.3865969116935327) (0.02822441936865215 0.03009295880574247 -0.0251741343135397) (0.03464646561247629 0.3246820758647926 -0.05196578407674701) (0.9100697726186782 -1.191510272412098 0.04208240431872617) (-2.246012760370238 -0.5947989558121247 0.5298429762016272) (-11.24437784779071 -15.55303842327326 -2.226710716083171) (0.0002862753439721866 1.044149040592318 -0.02047324716669519) (-0.02983655248514999 -0.04431436385441176 -0.09255617489081039) (-0.0004389462215982666 -0.009088315028443686 -0.003941943667224723) (0.07227132963225197 -0.2977297638729282 -0.2821835144887169) (-0.01312211735534458 -0.005385301967879856 0.006457151273918857) (-2.834252410202828 3.742332078404052 -3.049404208906014) (0.02414979556196003 0.009510507194413707 -0.01976266573767598) (0.2379007333001485 0.4979731500480152 -0.8687467544824834) (-2.245604942481749 -2.130906442342019 -0.9228351671888368) (-0.07159010602012385 -0.3482508888496321 0.2360623937634699) (0.004654337693618088 0.08426184074264742 0.1253411056587308) (-0.2310611088677125 -0.4312504675822496 -0.2792464658060537) (-3.472880842545776 -3.403547840825784 6.519929600651171) (6.59045551307879 -4.172868593672082 -6.448875353592591) (-0.06504808487144684 -0.2036527439519559 0.04629015794052937) (-2.054175600047251 -1.786761903924994 1.752877169752497) (-0.1259303511237223 0.1060886552369038 -0.08514617924991913) (-0.2741012485674575 -0.7759119239973366 0.2461315825408019) (0.1134871054433797 -0.585875138418726 -0.03556998266601527) (-0.003803504800774848 -0.1132787899679978 -0.04234915845509383) (2.754801821487017 -0.7335112102161077 -1.068807914627555) (0.2779916305443136 -0.2564957187164438 0.00345070415133495) (-0.0708144524784276 -0.02215805653209192 -0.001602122618414152) (-0.01776670857821532 0.004143696537120614 0.005933373533471453) (0.1963058018403295 -0.5104902141159563 0.2181760547681784) (0.0501636963606954 -0.03068236479824684 0.04627642280287759) (0.6786722010810078 0.01140524917609734 0.1485212434808086) (0.05980754521873471 -0.01302352274005357 0.02483994961119226) (-5.446645249833481 -8.378270980845302 4.461662057237467) (5.707458101677609 -0.1891843529674033 -0.07943224201389709) (0.1532802862315605 0.3460892485192455 0.8849542798568028) (-2.166724574374884 0.08828126725509444 1.515909746694425) (-0.4857837729888541 -2.659764317090657 0.926576852782569) (-0.3415199262539487 0.2098187573765458 -0.3150101832280575) (3.314556323889516 -0.0813303558955949 1.604029652426392) (-4.288266119310633 2.335873696438993 -0.4887067091261564) (0.9928135801810659 -3.176525303799552 -0.2321784571990257) (-0.0124047376917223 0.009810069485926963 0.05558602139487839) (0.8081544643633679 1.877350614000171 0.7039297300341764) (-1.692260129981381 -1.662779041631642 -8.410695156436454) (2.162636679561729 7.666075465766154 2.847711736549033) (-3.76750560581309 -3.86083392190879 5.40794370948173) (1.803299262146007 6.186449271575002 1.047503501117992) (-5.02100516464778 -4.682674650338635 -1.873878640185896) (1.377897326293954 -7.734819261232797 -0.8915546774639932) (0.006013063548526263 0.01953851583757982 0.05239410746466108) (0.005442504047117607 -0.006724335136747277 0.05374868670431082) (-0.1062471985523062 -0.03171453983111745 0.1644112926462724) (0.6530355848681617 0.1623970268632043 0.1796500507435706) (0.1444233091270904 -0.06719182067204577 -0.3146341946792128) (1.99841472915365 0.8667967578090305 2.080848201284057) (0.002526955908143941 0.02129017482984168 0.002294003876326525) (0.2835839994073683 0.117603527382362 0.04810367652886186) (-0.0532277667115551 -0.06421405933426769 -0.03879987904619857) (2.760156284657594 -1.876085410010541 1.844431283269598) (-7.024027475634842 -24.13781336194505 2.426654406372606) (-2.701032249706057 -12.17863994014109 1.662453462898812) (0.1494604760425789 -0.5234872961393634 -0.1068640495290422) (1.896421089574404 -11.00042379993289 1.560056226269145) (0.1482472237575951 0.2509587107595888 -0.1428004012748187) (14.481411676595 -1.913714910659574 3.123114384638544) (-0.3363604104835231 -0.06450101376758885 -0.4568295457350712) (0.0518450461502413 -0.1119296818298767 -0.3741637695307066) (-0.00724996666452429 0.02858329417762476 -0.0001879392060068069) (0.1489858651041689 0.3378721618216332 -0.2703183039573548) (2.000245829682118 -4.124373449461578 -6.308288890932049) (-0.02472191797664149 -0.2639280139123206 -0.02088709257174896) (-0.2088935988368811 5.093415823300926 0.7073430906127829) (0.5906665315636177 1.851799673362343 -0.2397465822117084) (-0.08387828106670769 -0.9541084844501969 -1.915575564423751) (0.8813083260618249 0.2527865578233849 0.1996845683055251) (0.03034668360669116 -0.003222038544784088 -0.01598934747602912) (-0.03282120178239879 -0.00957939009117215 0.01759937249264812) (-0.4135709374948621 0.2909834035697144 0.2431999955230623) (1.234637656414198 2.132710504872621 -2.204197289926202) (5.279479595720464 2.614151690267464 -2.825508512347719) (2.070655169800522 -0.4210462933599725 -1.590015762139241) (1.277262026196271 -0.2103673433597918 -0.2050798515036383) (-0.1706842073444527 0.05769250723090309 -0.1913699307253167) (0.01389652660388285 0.007779075414208761 0.0982104241633585) (-2.140567155969335 8.629071899320394 -4.079434508380221) (1.375032654170011 2.259189491612132 -1.664187633433037) (-1.659258662252556 -0.1030197557319843 -1.390693192068653) (3.271756386177132 1.235084689818453 -3.480876430656822) (-0.7581383318791319 1.18340725438025 -2.171746079603134) (-0.3149735858305254 0.2702819240473775 -0.3375149317509056) (0.05450149619555995 0.07081197368310821 0.08458632002790722) (-0.03784720800977874 -0.1899076379936441 0.06776421443671016) (1.30799472577045 -0.1578414335358123 0.2928957689695785) (-0.03184161705124083 -0.0002284805424920752 -0.008094752686725907) (-0.9792409222082075 -0.200538671478082 -1.153349524132985) (0.05721752176060074 0.017102048127771 0.05177387327850617) (-0.3990603160994596 0.286500909718913 -0.385986987406079) (0.02712099544331989 -0.1356836196631705 0.106497082716506) (-0.03314882531898009 -0.02026764266981924 0.04059663455948908) (0.1116062503513906 0.07326899062475062 -0.02474885573096682) (-0.1112144933418164 -0.05529660225943897 -0.01831921648569339) (-2.761958160977675 -1.117715426421507 0.753469514734484) (-4.484956398824231 -0.005618984804251381 -1.452283606744535) (-0.02721956269981304 -0.0343005085264914 -0.02594460367665722) (-0.02755759698205115 -0.001145116456378073 0.005941839630366054) (-0.02507573389666826 0.05393026652675097 0.0299747709294516) (-0.044080653980323 0.02137705138959168 0.002823734155863431) (-0.008008835450895778 -0.0159187934064401 -0.005295331381164779) (0.2801210230811663 -0.1434602996014681 -0.05517565782143977) (-0.007875864258370649 0.01562116596825834 0.006401964253853917) (-0.03835235303037568 0.01732896227931779 0.04300786527561581) (0.02521494084614269 0.01771229684586052 -0.02537849829354823) (1.254938812299772 -0.7770829732657116 0.8791139359214166) (-0.15823609667987 -0.06160998398608736 0.0424549830394147) (-1.838915698848565 -0.4966589701950074 -1.048137187564711) (-3.831072275303856 -0.09797274956101587 -6.708365486344681) (-0.03545179721377059 0.09918348540568075 0.1041402349065506) (0.01172775467762881 -0.03876247890656953 0.08405693502520437) (-0.007529174369822755 -0.02438502667551452 0.04994493177470214) (0.05898335902768609 0.09552207596462182 -0.01154551909314992) (-1.686565643860602 -10.0586929683119 -3.274030678865107) (10.66710466231876 11.57706802363385 1.56433909892464) (-0.1500088623121392 -0.1572138577259213 -0.1251649656511785) (-0.006402623165394611 0.04418406130983146 -0.06551794440292344) (-0.04010209133896936 2.925352728999991 -1.094069784652019) (-1.791179269952368 5.990808330297265 0.9643589016586355) (0.005840968316847443 0.02651932061759928 0.001668407788687263) (0.1761258425825472 -3.178612659740592 0.1559568774351069) (-0.05531221566133206 -0.03988050278950486 0.02378105092131835) (1.071555908703314 5.562020088542305 3.692180474746384) (-0.03353089678932193 -0.01201729797462458 0.001215394329857171) (0.5994179670050179 -0.08867594689255505 -0.2846818851883536) (-0.7202211796884863 -0.4663476903431308 -1.481662753860294) (0.2423949331891911 0.2405072166263451 -0.09548731545065799) (1.655031456626595 7.296576336206013 2.499765670147541) (0.8803115250021047 0.8961126604396195 -3.132015473143973) (-0.2778428312481085 -14.12983028609518 -4.128646404527592) (4.922023464164866 7.520426020466861 0.7957230067671075) (2.062430232741304 5.882625731295184 -0.3136816157243505) (-0.3147777438259848 0.03424415805582462 1.459627750032429) (-0.06870858749161576 0.1704175355951674 0.01623919626326309) (-0.04369824446158238 -0.03205478825800132 -0.3123921400624988) (-0.6229762553990933 -0.8756151638447858 -0.8766837105413881) (2.10734143116414 -0.7891238807213172 -3.363650494590045) (0.2401793050275378 3.794872373457733 -2.22840780255349) (0.9596856770779394 1.280677725623726 -0.07817686182667072) (0.3353375721270924 0.1158938372231748 0.3818130961872651) (0.4586896542709321 0.833104878075156 0.03395319650398185) (2.285524147569449 2.925908591572127 -1.554525441509447) (0.3507153127106335 -0.09829105839567631 -0.6476870443708559) (1.196103057906445 3.60910674632307 -2.060343920370064) (-0.6238246213224428 0.6038416959118849 -0.5895999684248012) (-0.1103332193982722 0.08391395549567766 -0.1318007151656302) (-0.3256097516549913 -2.991720134664609 0.9222377874011071) (0.02224571707168951 0.03520522651860543 0.005630608138073538) (0.0209471682495514 0.305053341895003 -0.1977970684940514) (-0.02490039530548285 0.01955655116805086 -0.004904322997011853) (-0.01843431872702659 -0.01276867518576359 -0.01681731410495092) (0.04075398821114343 -0.008086907936385647 0.01727598564159526) (-0.04264962160901176 0.08939537031319532 -0.1226335625980406) (-0.06976088186198787 0.04801347803312585 0.05302508564613812) (0.342269998873876 -0.01199630353422643 -0.04789531074278597) (-2.211652310215823 -0.3076556230706679 -0.8594970567254759) (0.08546211737885567 0.03950837033300169 -0.1259467218788008) (0.212723925852783 0.8078923943150541 0.1605970397525047) (0.5058330414894135 30.5437127191859 6.826938614953498) (-1.470331506841206 2.537719393190694 -0.6090557455651686) (0.5385560561990801 -1.567021268702337 0.3521031513435471) (-0.8253710885803438 -0.3783396775127491 -0.7855289477804928) (-0.2179510634618933 0.4603856863355168 0.4397697882641961) (0.005743842687076327 2.432549904205665 -0.8529406858072291) (-2.783959270390906 54.36217466754621 3.898410248826815) (-0.1074017426067997 0.0325218113062255 -0.02939808683125277) (0.01462034722271291 -0.041740419411931 0.04845930039540987) (-0.5325966876828465 -0.01498970889506929 0.04001098966315522) (-0.9578973065928994 0.8863617763443534 -0.3942199787476094) (0.4322022141382412 0.07955241952705543 -0.09846678965553612) (-0.1880966840667042 -0.2973712843387207 0.03878349823391289) (0.5363179514785856 0.78541129628572 0.7443476000609112) (-0.1978641203705876 2.255550068149596 -0.3418862590912781) (3.561070820964912 -4.442490839290469 4.349419211100214) (0.02226697020200386 0.1284641005578262 -0.08429103234844364) (2.861817811616185 -2.357418814003409 -1.202499521799543) (-0.4472700871441629 1.155190028525203 0.03037784872393692) (0.6087198835857943 0.3002155080041768 -0.8075750384294892) (-0.0583703699773144 0.1644451794819317 -3.09960380887638) (0.09843067893204793 0.01638251702867553 0.03562546917953094) (-1.007891657228493 0.129171260846255 -0.09806181908230167) (0.2135119944057345 -0.01670691559134951 0.08011072927013227) (-0.02539778653335766 -0.1149247456848702 0.01294019059519159) (-0.05486887129367364 -0.7927074676284406 -0.3834389320889059) (0.5708566107058064 0.3338682594787017 -0.7839292965225504) (0.07868669405784495 0.0231918871206527 -0.03564147855626254) (0.03338807530897989 -0.2342564328195589 0.2084754742594386) (-0.03012995597657149 0.1240203488776667 0.04145419900428504) (0.008016135652552521 0.01453325594910722 0.01329950237854682) (-0.9266918818048855 0.9369976667725175 1.507927142636074) (-0.1403650020663169 -0.9182425336355043 -0.2602722428984829) (-0.01763402617651959 -0.06964429395037461 -0.07458499945736061) (0.2021201090625347 -0.6430178922028134 -0.5669465235212124) (0.1043198301593162 1.333700485750406 -0.003940630986786361) (-0.004438780293926525 -0.3930154624364794 0.1798047570369481) (-0.7623837155944659 5.318699320683852 1.873858489600547) (1.017349781602695 1.960552830243232 0.3371036098041695) (0.02159470991765738 0.01828155710330728 -0.04341882717451635) (0.0184064556505859 0.02889134351579666 0.04146950842312169) (-0.109244270842294 -0.04501453370142194 0.01744873266507142) (0.07712611048691506 0.0434536886639077 0.01025951482218992) (-0.04086969452727206 0.0006583215438035208 -0.004002337104808126) (0.02608926028104187 -0.01832353492004375 0.00378248409557725) (-0.01598856155995917 -0.01300411184126829 0.07205564862611527) (-0.01506937346972508 0.004715296854909533 0.06022796386249035) (-0.03995703837211263 0.007382145478880296 0.02338893502949994) (-0.06346426586811781 -0.01302878436297839 0.04770201893866905) (0.03378388055490086 -0.01313305945358934 0.03474986989061953) (-0.03161909828484605 0.04004844879145197 -0.002370609603175183) (-0.8325104285591373 -0.4773415604624452 -0.1116700917657484) (1.518012275238796 4.962271576450775 -3.757342207990034) (0.9095257595418684 7.587234392016966 -2.929531788781634) (0.3563327982955632 0.4816809239765365 0.2778715213565285) (0.3374629851485986 -1.012408012364499 -1.193920456487245) (0.5627422147991353 0.2822295212884031 -0.377490103049423) (-0.1768167204037981 9.296225749558781 -1.469150045903082) (-0.01007513656962221 -0.03768917545291352 -0.01244155113197097) (0.007088952202347601 -0.01044163640466659 0.009141409127417604) (-0.3643612801935765 -0.0676177410556299 -0.3086475903129459) (-0.005191520824316252 -0.01160235272955806 -0.03377444572625056) (0.2319350627429427 -0.2707859451784839 -0.2491405180092768) (4.24620173631193 -1.304734124405615 -1.215530210282689) (0.3074996074058008 0.1666461795158567 0.04067707493130229) (-4.917363962878174 -5.35399355910106 0.04764462648091161) (0.3228370494464378 0.4101232322949044 0.2401575603770409) (0.5812871974078502 -3.731791723793646 -1.812494979063644) (-0.0296644062195877 0.03071472092885356 -0.03822839745999806) (-0.09281699730372076 -3.665557753429473 -1.700981463336409) (-0.8343992629392553 -0.717802169044693 0.2932974942989393) (-0.6919645361438166 4.131784945510373 -0.3137984377720455) (-5.933569307440738 10.18999288478669 -2.444320094748455) (2.241582389573884 11.37509487028972 -6.633998503909268) (-0.4254841675193416 2.223518613986983 -2.240611359662179) (-2.744396526018382 0.3356051774566469 -0.2398281817122934) (0.685243029514489 10.07185694780303 2.14562436723825) (0.02793949248780143 0.2953088108637432 -0.1147918171369907) (-0.1343169562763973 -0.1187333890570055 0.09848965228837099) (-0.619370073206623 0.01087914500367014 0.08327234927789059) (-7.069232267659174 -0.8037348661860537 -4.529404889959646) (5.335222535879078 -0.09588161370450438 -1.17441430737609) (-0.8793179591221455 -1.762939652226845 -0.01355107365717312) (-1.337943528597709 -1.94832144463789 -12.02320052639497) (-6.795048491572623 51.78890717940036 -1.127565666690566) (0.02996867505496302 0.005427357074370726 0.0001973431385123986) (0.008954611267623768 -0.001087840655511301 0.02237679111813023) (-3.439198341050768 -3.702911326841614 -1.726874898049688) (0.6961196938203116 4.231192749974534 5.17357183459898) (0.3297009420739755 0.4019399307151734 0.05095564988169853) (-0.0996419327498369 -0.9746070856575244 1.607590251046217) (-2.985185617093522 0.5318182117520032 1.933068103610659) (0.2521248574716474 0.02362216269720112 -0.4406459502168427) (-0.1195774795342646 0.108555815160948 0.03468144206145385) (-0.1624058998615685 -0.07535673549513452 0.2036018253298173) (-0.02316720627552595 0.002432247297704793 0.004374923653875236) (-0.09788277109188318 -0.04168674495583762 -0.008818187015288153) (0.1887575541035627 -0.1132037729473881 0.1289793868710898) (0.8495576715537141 0.2082615479958178 -0.0785805240404478) (0.9323992326616161 3.434774156608373 -0.2429230109542426) (0.701930765601426 0.5411186668352074 0.2995131738487511) (0.1221092471541239 -0.02960649025116588 0.172899267558917) (0.8455019384319599 0.4298065425330935 -0.2397455712799782) (2.879287928951062 -44.61943769966347 0.4657882131186133) (-0.08231933145595946 -59.33887771588267 -8.676407306147789) (-0.06974202667371254 0.09819918719611387 -0.07354291198714964) (0.08855112597042067 -0.272802748000167 0.12143328831162) (0.7124061152951133 0.6565164927131005 -0.7292729856464876) (0.1868478494525265 -1.302129383221728 -1.95990257048755) (0.9202805764722725 -0.0957609762668723 -0.2124429868544114) (1.600642074391517 -0.7131254718344213 -0.6340163884215455) (1.950470348244988 12.58523850495857 2.878780959202379) (0.5897884339814857 -0.8782092423100099 -0.6147952533766966) (0.02137739267861587 0.01507987814440481 0.0005788419775280516) (0.1854022498385124 0.7264161334524767 0.1839621270178617) (-5.187161001951649 -9.470165791022648 -3.734490901600421) (0.06107601392232544 0.007201932975462707 -0.002498990204732563) (0.007335979031682257 -0.04014336463067024 -0.007486242139926696) (0.03215227773528948 0.06681116770789415 -0.01344072699607299) (0.1039959774784023 -0.02537470627662185 -7.536883841687779) (0.02079018762293149 0.002209681216419391 0.0008806099886500118) (0.01919213270671639 0.03715413616574292 0.002771915025982848) (-0.007478309975993358 0.04649657833347175 0.06500485586057703) (-2.95010730800863 -5.607319132620987 6.484679609281942) (0.03351011926099588 0.06051715068975573 0.1404430494035107) (-0.006524509786556541 0.05301587738947582 0.09004289012137699) (0.1103635219122503 -4.772376807600985 -1.722622197159011) (-1.407692825141655 -0.05084218866770532 1.354367786573655) (0.008489745675945584 -0.1516435392783442 -0.04905662281100057) (-0.1890936110394323 0.07754693504933972 0.1468755188494904) (0.04787074204870945 0.1043907010192366 0.03976059710441673) (-0.2991721610447836 -0.007208297589167906 0.1092661334238616) (0.02594939370081183 -0.01393721678558072 -0.02797554840627602) (-0.003521731178049128 0.0396271076832359 0.07435618802071224) (9.965696986090533 4.687157977238847 -42.90047625269904) (-0.127094804056505 2.12973003937648 2.798528025670592) (-0.06138115611758798 -0.4152260748072893 0.4688893698861529) (-0.07137920764553837 -0.2315410885168089 0.4210250852818609) (-7.000975512765726 4.297264073884298 -3.008264253723887) (-1.143555477081235 53.1917495131748 -8.087348104325198) (-0.9190558776398818 -6.39851619237727 0.8569804714951006) (1.327296157209263 4.658640517544073 0.966970453031473) (2.878661240548887 12.28079070341979 7.532530178784662) (0.07874696457023707 -0.04518666259345978 0.1784741761945793) (0.2136812654098969 -0.08834937125745924 0.09621872463733394) (-0.008652528924374812 -0.03550485122404691 -0.002791923792379344) (1.987234689469843 2.042137607409944 1.415365186341317) (1.605443862807769 0.4155359009717156 -0.06867364186237043) (0.04798993842181901 -0.003832184573743028 0.01870633465123226) (-0.02711621672794838 0.02632165449348504 0.01007076065275175) (0.4800182849675002 0.1043892760017848 0.2235534830455916) (15.88299877999832 58.68174923429059 -17.49230884102861) (-3.188910525133959 1.291809616408672 -0.4812761537941573) (-1.633436042588711 -2.676344863937892 2.678934539851363) (2.128735143114135 0.2790190051991203 -0.6342113594021485) (-0.009655338248631799 0.03018986344705245 -0.07895286332613362) (0.01617979159834954 0.1921286806057179 0.01212094063180593) (0.09888093609538456 -1.019509588127062 0.1469305235790133) (0.286015707810834 -0.0855112142612825 -0.0154709197492273) (-0.009495087455817544 -0.05884378110596653 -0.007994584178044647) (0.9970513426480956 -1.228963864966088 -0.7879290021047159) (1.756140214115189 11.52592466194946 -6.711845055396861) (-4.085936202809521 -5.035555250418909 -11.60753841812706) (0.3653993617024108 0.3606590156504573 -0.2025030251285626) (-0.1348034271754775 0.04987750426120901 -0.07361284594015662) (4.931713746509345 66.04795653414772 -1.505522237656291) (0.03287426745218691 0.02585908919980574 -0.03659933915835927) (0.1997793547040301 0.01107092012508874 0.2984794598997402) (-0.3119174341980344 0.4816628200662797 0.1371996567201919) (0.06236518103870213 0.06936461792520464 -0.09247896107955346) (-0.1657939265823627 -4.205668644904612 0.04072442846432411) (0.2585320636928892 -0.8364102932700825 0.2700020692292399) (-3.425687947531113 -1.32819560287061 -0.367295375342365) (2.216735822017402 1.113312181209328 -0.2610445835103561) (-9.67270997192281 -93.23013387377181 14.99192699618748) (-0.2128254262144348 -0.2066941431595501 -0.04586033265679951) (-5.163774950504601 -59.36858725170548 -7.572376842698713) (-1.924359920374672 1.910487688124559 -2.580154434848666) (0.3706468063904162 -0.05954862307046983 0.082695664087926) (0.9092913891709253 10.35194443001789 -2.834305945935871) (0.3992771493503393 -0.2593471743816095 -0.5008668589479801) (-2.441101815177182 56.70403482509018 6.569681493512643) (0.01320814915598853 -0.04224729734737806 -0.5892842602037468) (-11.91480541462004 -72.46219585649385 -6.188356919724123) (-0.01938530465638255 -10.831977021956 -1.679732386828107) (-4.877702253725464 0.4050912699957725 -1.292040087911782) (0.3206791356693564 0.3909619309106632 -0.05048167586043553) (-1.824826464890932 1.937411798334122 2.17255901661627) (0.159907632190102 0.01693511127027231 0.09946463498250477) (-0.4383210597675495 0.675380685781759 0.6668110860155156) (-0.5891892298195769 -1.11021296597977 -0.6667955411413018) (1.873270450417323 2.48912797980212 -3.110120935799582) (0.1459640007316403 -0.06362775403205476 0.016684136639421) (-1.332253664950252 -3.780588364806 -1.505305578591368) (0.457308043900118 0.3224125644203935 -0.3327716245759615) (-0.1655582321487006 -0.07327301093584632 -0.07915335316054389) (0.02080837108747 -0.09507842989167757 -0.1034483631261202) (-8.005276554734237 -7.709685982245059 2.390678082818739) (0.02412486018585699 -0.1896466386790815 -0.05686999406660631) (-0.3056012106077562 -0.1377033025584597 -0.1241778661565143) (-0.3790702273404277 -0.2834538321551681 -1.076884022197002) (-0.448660817845173 -1.680689157722008 0.9004731911412218) (-0.6008384209278428 0.02613568759009405 -0.2890674452122857) (-0.08614905389277427 -0.08940631484081082 0.3295632964839686) (-0.03229367012270214 -0.01454378254065328 -0.05421938844606212) (0.0920491744707794 -0.1249769028515729 -0.1932020751918193) (-4.179129526122438 -5.478214882695806 -23.41806437613424) (0.02323744387993365 -0.031631942277325 0.01326104296659231) (-1.935411222195746 -0.720364450680097 0.1438029984222233) (-0.6600780185837092 0.7539868967091453 -0.6204418644370694) (-5.996499933101639 -6.237764822014134 -3.25990482130041) (-0.004482307436718035 0.02600488596534311 -0.02981036527876431) (0.01136989581738135 0.01848337140807538 0.02627685264098433) (0.02907930823730887 0.3378380436297141 0.4089726699400897) (0.235186742672639 0.09551058063655966 -0.01023010233667401) (0.1453735193098673 0.06425780773995909 0.2542762064381887) (-0.01923219875506083 0.005287638100217813 -0.002468592067018097) (0.2670622302343924 0.2229935350602626 -0.03825788429495426) (0.5366330682911169 -0.2772427410232807 -0.7575979789141301) (-0.4385798444761982 57.76279139116184 1.605144227617349) (-0.02586636260732689 0.06292419811871192 -0.05371952456551035) (0.05226047558562112 0.05765878355919062 -0.1463079393368894) (0.2481032587583466 -0.03690895146941642 0.08721081773241207) (-0.6469004161311287 0.4573750787669036 0.1999422359178546) (-1.570860758952451 0.09409679504834739 1.947129243379282) (2.641368007386479 -0.8570100561313743 -1.65676313050684) (-0.07540172344704078 0.08017994802088836 -0.007389211917509825) (0.3247700762176976 0.3304414642718917 0.134784356155527) (-0.01957516249389411 0.01605342349082986 0.02407238347257111) (0.1216969075478993 -0.1564867240978023 0.03041304661559119) (-0.01949822726810302 -0.02958526881037826 -0.006800595818439757) (0.02881178888169358 0.04079282797117845 -0.00437855546555127) (0.003112635314375729 0.006345013258325274 0.04175694350927331) (-0.9761311660192458 1.669787632737468 -1.404873206385662) (-0.002386068698336043 0.06692148964510398 -0.1393910185652894) (0.06614752716811341 -0.03436725678578892 -0.08057486657204052) (3.687649200906066 4.431142621907456 1.223769591993525) (0.4988521635435151 0.2516090335779482 -0.1713221697461135) (-0.2422282438935113 -51.4076426001676 -5.103544151475868) (-0.06460694412781454 13.37848081109012 -0.7403424067209763) (0.1201339298883502 0.4030575523940153 -0.06359011436268011) (-3.785921751575204 -7.737848031201234 0.2807374257341541) (-0.1988417363338391 -0.6083549883092279 -2.899519143738605) (-0.5045186215285021 -2.752913131280434 0.07503351182499407) (0.8389145844079415 -1.501586082941428 0.7670180310143601) (-6.964828326690625 -84.05133938338631 -1.778178709531677) (0.4407334269106266 -0.03850148565420274 0.2673800160886051) (-0.006816180590783302 -0.03667339259570968 0.06850977459103239) (-0.1291384016263407 0.1914099486712772 -0.2477678417157844) (0.5515031995119403 0.4804117928836157 -0.02992113868256929) (2.614151408999119 -2.495664899844615 -7.813704772125625) (-0.1826402190014034 0.2591789424742207 0.1454419270314024) (-0.5213835096859081 -0.2180010866330065 -0.1160031114613734) (-1.53220484847279 -0.1924975705930334 0.2059049682816003) (-1.115616232873866 -0.5244977547400353 0.2177963116210906) (0.9245728883891247 6.225200478386938 4.513469482148476) (-0.01069976597897193 -0.09450647408051123 0.07606804215824024) (-0.07633050808773265 0.1020687765073056 0.05357335591891108) (0.738995828609419 4.351391087433675 -2.070239476346083) (0.04126252311699899 -0.09788532429335492 0.005241113848182356) (0.004666911576007446 0.1089921872031825 0.04744373875495038) (0.06677586275763046 -0.05887982662568146 0.02558602975254483) (0.1513511991410881 -0.004477589560059057 0.07399981068461635) (0.0397622556736348 -0.006434717487123029 0.06567014073207543) (0.2489977667673055 0.04127057711201539 -0.1501480738687775) (-1.099062782459782 -0.05907816762740187 0.1619193244324697) (-0.728724601663705 6.895535934612185 0.2124180650742703) (-0.298346176018672 0.1467388695337376 -0.0005680236453466797) (-0.02350722966856772 0.1606767035344747 -0.07010971028016255) (-3.155331612375364 4.335000787159919 6.071839982766921) (0.07646680281088447 0.157609212575605 -0.008950348632000539) (-0.04824669013529304 -0.07373756558979375 -0.1194291151849295) (0.02744107267069729 0.06785158548308093 -0.5643175966247025) (0.1955931889881465 0.3820908104378545 -0.4300740054262659) (0.4561893125523295 0.6096151421220952 -1.16605592347139) (-0.169865774218559 1.064000012113548 -0.3004555660823465) (-0.3522808608532764 -0.01255073215426796 0.2146186489619703) (-3.955943734487468 1.171970853382763 -3.343476075447036) (-0.1318608160140676 0.00912527072691921 0.01561854505363895) (-0.185159797523138 0.027892852409603 0.0646094588735486) (0.05155857091466365 -5.647492091594574 4.420437082547127) (0.08544549271889747 0.1219915046642483 0.08656223877765168) (0.1321492991536396 -0.1703883928763764 -0.6136060023140466) (-7.706140073372875 1.495603387629618 1.509329872609417) (-0.1060494379478613 1.554520544571487 -0.02547647899879085) (-1.503118621016868 -0.4257681038158466 0.4026297109051918) (-0.02121888848116835 -0.2816584863699631 -0.07539988640235878) (0.3260284847088681 -0.06060629551581855 -0.08158493522619449) (0.7367543862915785 0.1525998484106157 -0.3262457980991259) (-0.03187928438298478 0.1096553887063691 0.08203909762421401) (-0.5713180786905218 0.1577091027975125 0.269719089638307) (-0.4524321780524755 -0.5367097240395429 -0.1090904639454374) (-0.08656310256265809 0.3952825464298952 0.1102554829201879) (-0.3806238876439499 -0.5345842774790608 -1.159539976674016) (-0.6031732698451456 0.1612348703992895 0.2925620171853193) (-0.05777237702178663 -0.05445467112466266 0.1124033479976264) (-9.200574691142938 -19.08475287505963 -7.996332338970197) (-0.002525719692850356 0.007373082338516558 -0.005334907348389165) (-4.419302220253649 -3.070559472653146 1.329047322938752) (-1.236521442523866 0.6901529608618917 -0.8576344375599775) (6.614126149785648 -5.674544168298695 -55.56563120817442) (-6.906988774889061 -55.26466717514462 -1.156827994140495) (-0.9463143341782911 -35.95395774163509 -0.1967986227769619) (0.3509034661064632 -0.8654432656256833 0.4385771503812789) (0.03075660378622497 -0.02647167875930179 0.09077910161554725) (-2.189726633930752 0.5862436435380379 -0.257375858999701) (-0.1736817317248096 -0.03056470593773042 -0.04727873158697403) (0.05482052585531581 -0.04483309716723975 -0.03009919985546654) (1.573591838227026 8.970488461995856 -2.650282265622037) (-0.1822877655765638 -0.2014130070491192 -0.06661187267079739) (0.0964762126886157 0.01555955317131556 -0.04212281890108809) (0.02372749366296066 -0.01887079330417078 -0.0148860184238272) (0.02024787620525193 0.002974588027411018 -0.01319181412226594) (-0.0002974418582444077 -0.03798488367489124 -0.01258182652712951) (0.05402540262792258 0.01428637496268493 0.006072466136172922) (-0.008786744546787455 0.01889334132794267 0.183724205083448) (-0.004959298057749136 0.03338804445096247 0.04801955069414059) (0.04568809848482283 -0.07720958521395574 0.05017875883946941) (-0.1004315156642897 -0.05525425045765502 -0.2200371506526729) (0.6581454779438038 0.1008655554571265 -0.1646331892317322) (-0.01452752518466697 0.01835286315853142 0.004338563902600142) (-0.0463545593216822 1.759866954568099 -1.130997755129413) (0.1019189945262479 8.634137737615369 -2.81477192010979) (2.461736146017913 5.777559557307433 -16.66675733201359) (-1.067230315901376 -1.035719687989746 0.2749476758174633) (0.01589842839028064 -0.01041768619613303 -0.02236828748497087) (0.433894534335908 0.2781980104052858 0.357360649199154) (-0.2375373793709157 0.2619471479144429 -0.01699025073216774) (-1.483098886834545 57.09035354286662 1.844792345094138) (0.2530462674694449 -0.1837154965030426 -0.203912228113788) (7.310818842018712 5.377258616867466 -8.185962119017145) (-0.3126597934482519 -0.6761519813269159 -0.09066114066578512) (0.234862363422381 -0.4084574522425873 -0.3073745738972985) (0.4126504680723279 -0.4344096261271635 -0.05459830177842124) (-0.05547239071366151 -0.1500799509161931 -0.03071263267746738) (2.50909861426932 -7.57140256970652 -4.74673802608151) (-0.04195244546335756 0.1541426732227306 0.01364086063756603) (0.2781252520175548 0.1066749352449893 -0.8725941081275244) (-3.723693525838838 -10.9960854907599 -2.884075495069246) (-3.034765642682495 -5.226574074006451 4.345703385079437) (0.8462187819166999 -4.843501432738774 2.029590401908744) (0.6066148132668432 5.314180159792917 -2.744471819108079) (-0.03940188689544097 0.4067958805292413 -0.1154193397263233) (0.4690577265035311 0.2143218871285054 -0.1898274567699724) (-0.2763651627212192 -0.04115585722132616 0.213261607025452) (2.227028603693951 0.5943293280921803 0.5549811317600676) (1.19729443313841 -0.3269163109082845 -0.1087080292307817) (0.3493295235629285 6.807263970367426 1.165445643580151) (1.826109492453676 -4.004972386131772 2.237911410055715) (0.9488419372016634 -3.785663486679617 -1.245939617390131) (0.02397461496996123 -0.02632268743997256 -0.003204153380034483) (-0.03992966574923801 0.02060005456992915 0.2206620052772361) (-0.1654135664606197 0.09963473415482543 0.01297888921977772) (0.07647201184047103 0.07849755208760056 0.07201614425440876) (-0.3857564924424953 0.3336748035454605 -0.861953620113957) (0.01553666853185249 0.02166432162395233 -0.01378158200844044) (-1.489693788871199 -6.147661720186477 -1.249685570316994) (-1.09252176994437 -7.927071626811676 1.578129356712016) (-1.427697051481216 -2.291868282782828 -0.6614181118375171) (0.8387560762720278 0.2812386189716388 -0.2780664982590335) (-0.06365684325083357 0.1082925365956713 -0.01814281330361241) (0.05560811288528441 -0.1089552425367921 0.1110619454909039) (-0.6210006082132076 -4.580955084339394 0.114455819320338) (-1.435854750414861 -30.26611054506882 0.9523379458170365) (-0.02169695544220207 -0.01878536009287029 -0.02834711157312171) (0.02786608281657914 0.3467330564583887 -0.3777043307474441) (0.04081287081741969 -0.01406536052753946 0.1479542941461138) (-0.1570579247847349 -0.00490395222279371 -0.05781178447101332) (0.2132286811528351 -0.1943934169548383 0.5847103555434793) (-0.01936796045816931 -0.02409674112584287 -0.05057150574183359) (-0.1968927805953916 0.6968842165591069 0.06244340608251857) (-0.04871908864352704 -0.01843519773896341 0.006317189564790104) (0.1464366465423739 0.0630673543243267 0.1400604999343627) (-0.03123567131645742 0.03765802491398797 -0.07470895325991903) (0.7935721276932184 0.3386373685747712 -0.3137552163903476) (-1.600796447627253 -0.5831816657731577 -0.2995619070091992) (0.1265250278868867 0.053447700321136 0.06023388593658344) (1.151155098091646 2.512995467900849 -1.922798565135666) (-3.473834715433737 2.668601047433646 1.344125539077775) (0.05318245708797445 2.128358966492675 -0.7014380362904433) (-0.02826136406178315 0.004557049013590733 0.05979560305990433) (0.01276704373006523 -0.04693040182740749 -0.071331205600475) (0.008591728079906241 0.3057396664177036 -0.4278176251872888) (-0.9098463488820603 -2.809747954473477 -0.3936480347960982) (-0.2817049864908356 -0.5793288706312144 0.5858638161026505) (-0.01620374772503359 -0.0001423685870292161 -0.003246963347837694) (0.04526516707383832 0.005014601679824102 0.02840032533604765) (-0.0309256919090548 0.03908181097842561 0.06963127826805435) (0.02016591587079909 0.1497576609215629 0.04094020400376188) (0.01904753648009812 0.01129644384879857 0.0484132057042563) (0.02701396407677184 0.3042742722180906 -0.432519747595896) (6.497045337299614 -9.530679792479786 -11.19632955165035) (0.0371476568938384 -0.01820541151325836 0.01213565221807164) (2.887536008085417 -11.97555449549336 1.385676969073149) (0.05304803906302488 -0.04052620183057209 -0.04456913244958677) (-0.02274024418418493 -0.00914485027568869 0.02867004452512265) (0.6509246949511767 1.477461044061189 0.2648331010497256) (1.172460356153148 -0.4023535459579328 0.06492928499331707) (0.1271424677445306 -0.2543762268217187 0.2218000743218083) (-2.792541765776423 -1.490192570822749 -0.42678510627062) (0.5912108397069675 15.38960930963496 -0.2407107184797137) (8.005976239572183 22.67992771208163 -44.50203347752444) (-0.6927599728149193 -5.998404786418561 0.4786272883775239) (-0.01663745195427314 -0.02194501357418652 0.04140182019698673) (1.183515767534014 0.4699451823674176 -1.08706810883186) (-0.08035409800886201 0.049705811165286 0.09681911827105458) (0.02071408298879529 -6.093276474111475 -7.169591616293763) (-0.004719053732709984 -0.004953939780611731 -0.004706194009165391) (0.7010582227713319 -0.2382555959022312 -0.003672717043518514) (-0.07088408697110693 0.4178829015898221 0.1992901157603673) (-0.03007810373068053 -0.002261177283188834 -0.007040397503500159) (-0.15078724985674 0.1084487093099758 0.1166517706497996) (0.08580219076369802 0.02788613791739305 0.01194192979926406) (0.3591033716367826 -0.2027543442696637 0.0387628264717851) (0.4794884230710619 -0.2639820468956637 0.07305026642690562) (-0.02219730947311357 0.0620566621145316 0.05958498631313296) (-0.2602837550518426 -0.03644658860062127 0.2076641664314628) (0.3185080097286022 0.4515360489020964 0.07753248187972328) (2.558010070708097 0.1789916304620009 0.2111133518162076) (-1.195958908299628 0.1121439449144136 -0.4055110258491717) (0.2797404088070679 -0.0210820639845329 -0.220721210664882) (-0.6871186693015677 0.01769313161978075 0.4405598766943023) (-0.8639163689673297 -0.08069489050801049 0.17474991396062) (-0.1520777009056652 -0.5101666173317241 -1.397996002651288) (-0.4888091576865616 0.01494287466266436 0.7276316423598588) (0.04525055846394223 -0.00433154054559242 0.03684090445399967) (0.3575556898173369 0.01379038119749875 -0.1331810374388797) (-1.010947610724202 -0.5004517900193963 -1.459320168160866) (0.1410599057754682 -0.1285990456620951 0.05192573299854279) (0.6232317943973216 -0.4493605247628458 0.4592312567164324) (0.02699407267362666 0.01733606976181347 0.01672703228553379) (1.718286996594709 -72.17170730533608 -1.444085812412557) (0.1228970810451025 -0.00781296621731902 -0.01969676950939539) (0.04673815488642642 -0.2428257502287931 0.1287975110913658) (-0.3975061791462317 -0.1757812624745424 -0.02511238256328421) (-1.035875772027179 -47.76177259208512 -8.466551513930719) (-0.5733885028259762 -4.646663145118803 -5.005440053820737) (-2.114776391677484 46.78232873919512 -4.7060298381462) (2.283068607807595 28.17529696597279 -0.0478201737541103) (-0.07365146646965165 0.5333590506389208 0.2546782660125225) (1.822734198725883 2.067759473630185 -0.4522474539677727) (1.414351653783448 0.732138627204581 0.5599378572296182) (-1.5640596102729 -73.34818807287391 -4.020647723018621) (0.1425245064776566 1.452425504110665 -1.113330730079218) (0.7552441900091388 1.130013869751848 0.2088947912867799) (-0.4810681349360726 -0.2995637307106082 -0.8407988325732076) (6.42675014890468 32.9262836403293 -3.219241946384622) (5.479527811761585 -9.915231729592739 0.1596143152386851) (-2.949289242362414 8.453524458988847 1.554552400699079) (1.158230772707671 7.004884376930017 -2.230946111788812) (0.1070365814495334 0.5623008143598432 0.3291700806339858) (-0.4120438071159409 -1.306832501628201 -0.2063738826714865) (0.7774928423826937 1.02058767758944 -0.501944368207616) (0.1796704982076641 -0.3837124681183426 -0.1102096217039105) (0.04330049163107935 -0.1601486386026718 0.0688520346820084) (-0.1576597618969388 -0.03040599360611602 0.09928051056910911) (0.3990212360556766 8.517162753013006 -0.9795740351079243) (0.00710159836020946 0.1709576944456501 0.2815490217080063) (0.4649079400612041 0.0510944953761014 0.3559199475537571) (-2.6257586959853 7.185937500729283 -1.269987560317031) (-1.043194064797948 0.3536663320650801 -0.9096715363186882) (-0.08626415901870443 -3.989719612024235 -0.712000781566225) (0.04178573546616069 -0.008237981578388655 -0.0009855917102589095) (0.008759484610400839 -0.01410114180260796 -0.08861310888555309) (-0.1161936495922993 0.1311549800679547 0.17360462212404) (-1.551325259316924 0.6317065536049231 -0.4263083309514063) (-0.3635205476717673 -0.09154668095860909 -0.1930392643076171) (3.177293053789095 23.91159995794246 0.4357973631960449) (-0.16586172973504 -0.1016354447356289 -0.121177557691711) (0.2206409165804262 0.05127800512680408 -1.697436559670244) (-0.3340174164627591 -0.2762614850069121 0.1247406784364201) (-0.008297341418153862 0.04275036014005876 -0.02790616148433134) (-0.2810834523532736 -0.2961986710671893 -0.1899606661385132) (-0.009766223871814542 -0.02899484804573415 -0.0008545743690694142) (-1.380807006676435 -0.1935409047098289 0.9410734744663475) (0.5590502304948104 -0.4578388948591141 -0.7942613195217041) (-0.5534994749021139 1.117105536696141 0.8384402382282116) (0.4402624633034548 0.1000264948085737 -0.08387817749143855) (-0.04067283446318819 0.08936246229938377 0.1240471204349927) (-0.7987735786776293 -0.1303943530918868 0.1873184583559594) (0.4707683204032762 -0.3715324872684652 0.6202685994849728) (0.9917001805743993 -0.06461472591177064 -0.8804422078445928) (-1.974834172071905 -4.232791988277493 0.2813863711399153) (-1.184856635579567 -1.760568011995836 1.406498716335805) (-0.005450980317606519 -0.1428558420307091 0.01405616666286082) (0.9541887556174079 -1.0594709673493 -2.050886629176798) (-0.2320594616936828 -0.04968598117209374 -0.2260154835436079) (0.02125709836525359 0.01766112298851458 0.02685469280421906) (-0.03293790150589767 -0.02867950997481688 0.007420341773584423) (0.108752730890718 0.1002720994199824 -0.0142061862683746) (-0.7667761386192745 -1.831284118233254 -2.820149609538688) (-0.4309267428180993 -0.02147839267433249 -0.6951066790968863) (-0.09581683451231035 0.01126705408003877 -0.03524980537656361) (0.181234328611265 -0.5836210332390019 -0.8918796988538904) (-0.03358370517438114 0.8972168052185464 1.322306459438852) (0.005827463366564469 -0.03973710052053025 0.03212271058610517) (-0.2629678919707345 1.434667208053078 -0.4056796906019958) (0.03769615315672276 0.08800751213616616 -0.02530168740527973) (0.1508245569105442 0.07641417260223624 -0.08715642449552172) (-0.4822952154162371 -0.05652769605690564 0.3861045480565311) (-0.001920822617626744 -0.009631893774846124 -0.003679801256213978) (-5.871372636783526 0.7801382012866585 1.044675042709547) (-0.08051436103274649 -0.07302669115299856 0.05077071064406702) (-0.09436954496470767 -0.1045468245584757 0.01630717621401195) (-3.180298114252297 0.5671527647436814 1.453423949575616) (-0.1441696852907325 -0.0124475349428254 -0.04627319130276078) (-0.08984447266777246 -0.01189663706794985 -0.002834125602250577) (-1.971933679273719 -11.33945378966104 -3.692575165392725) (0.247608215530713 0.3035326285314371 -0.5606691234669086) (1.862373645280779 -2.776868616003011 -2.240164051108397) (4.365874314611804 6.423951895238906 -3.247564660701014) (-1.218720866407423 0.8075550627733992 0.09108150715442398) (0.4889085558998137 0.1918984651501678 -0.4800755993899415) (1.812494112044018 3.813832781870286 -1.287733037276684) (0.5662819577833788 2.259685845570541 0.5650540301761947) (-0.6396669252199305 0.347514159860171 -0.1816267308428532) (0.1146299839916677 0.2698286207550719 -0.1340679037335572) (0.1460613369938121 11.06106228930924 -2.788879239903382) (1.889642741540116 -11.5270692770383 4.548827242717645) (0.1484134362048903 -1.537229236389488 -2.18954972531174) (5.03056411139942 19.23035653428143 -10.49394027672414) (1.141828921394249 2.701896256092407 -1.417571259056822) (-0.5980399210021112 -0.5695227920301813 -0.1146690858556352) (-3.373612050448118 4.283952935680521 0.3353290845915475) (-0.8498520181167922 0.3044697905202426 -0.8716704186354829) (0.3701725864605652 1.012343918787286 1.827254098963782) (0.4955847905161887 -1.503174068511675 -0.5193786914963976) (-3.967133793019066 6.572216172718733 -0.8284856060648064) (0.4500432420528526 0.6478748131295033 -0.7315497705294819) (5.974601581879026 2.867132821457025 -3.881123201058929) (-3.220582779181217 12.52116872212301 -3.658958067903336) (10.12862020534524 15.80117561457896 -4.839562985391609) (-4.877785295128106 3.219832803608506 -2.308968717372306) (0.09805576469748134 11.0109492267255 2.049209482050182) (-0.3392478085236293 -0.4394236740270574 -0.1752957000250905) (0.2915929361117004 -0.2961559648325377 0.1015985351044274) (-0.2360550339462555 -0.07451681185451207 -0.1393593740563063) (-0.102535194461712 -0.1404211253896666 -0.05781876770452514) (0.09360991792482401 0.0467462782049287 0.07831817022105385) (-0.007379444420248066 -0.04066475672799635 0.1169099656454815) (1.894135573967543 0.2724071890926547 -0.4215606798205682) (0.7348676273874483 1.574851712582342 0.4481716865467247) (-0.3629885948313801 2.088513130328444 1.653153058119471) (-1.03616774672809 -0.5458340740319969 -0.4613397345551009) (0.1397883171292331 0.01587626237023379 -0.08048608566456197) (-0.06399940652266618 0.02400016342829911 0.02851307267028818) (0.007177244075276708 -0.02057330641296537 -0.03731078446003568) (0.005098797420276163 0.5311839430293519 0.1922095241474478) (1.850825697743543 3.931090383421322 1.033087477680352) (0.2017259712955072 0.05023551674222644 -0.05341682534851978) (0.100295160937062 -0.02321628892837045 -0.1336383935810533) (-0.2200478930405858 -0.1337971785026808 -0.008480467914040973) (0.1834728883582897 -1.249545203569162 0.7876310133955089) (-0.04554933184791517 -0.6522204058719798 0.0880656237930815) (-0.1416794865664453 -0.3363345724421553 -0.02376885431769801) (-0.2143924743668698 0.1970084648735494 -0.1743854605014417) (0.6528886158671789 -0.2601270822184273 0.3727103727179857) (0.7712997393540271 1.577884089263249 0.4906451050836064) (0.5411319327596011 0.6391886421512385 1.634187336013642) (-0.2236905422363659 0.59073756932189 -0.03848283017176687) (3.737133503466834 -0.1315574394662646 2.713736862312958) (1.255876604319717 0.4593269249974037 -0.03072944914658204) (-0.01105093612853587 0.02627753624731829 0.03283447783410278) (-0.2697264074300242 -0.06706891707258145 0.6181962579065581) (0.02903017908999586 -0.1861876297129836 -0.05353776195996578) (-0.6606123846271303 -0.2049399665371247 -0.1797151528986266) (-0.2726234659145481 -2.562202999343461 -0.878294138878786) (0.102479822881168 0.6263121175559236 1.551556989323774) (-0.4685991892726068 -0.8114768895663665 0.08576167635891938) (0.0441804170428379 -5.004950570590905 -1.47968858591185) (0.7583921401375799 -0.1954851688797556 -0.2594566497842933) (-0.9552201037852888 -1.386071864052014 0.8349585827977493) (2.17708598526559 -1.369492473820554 -0.2188959778539066) (1.846748096672798 -5.008726032023608 0.7250634406562425) (-2.404055322040413 -12.18184767755919 -3.122665074295178) (0.06406516310935637 -5.371353401336171 1.63869159843399) (0.730539803658675 -6.733947476165735 -0.9367029595112584) (-0.2722281972645689 -2.368780924215688 0.2471166675407074) (0.1833676357303171 0.617115576457312 0.8423283534234808) (0.7159679562229051 0.1016006653156342 0.478598480792902) (-0.1942396580720511 0.5302719397260429 -0.01948067551726798) (0.2328643708840306 -0.2815780840901212 0.2881593811414912) (0.04192084836019222 0.01564082623029769 0.02414972219036152) (0.02348220931998932 0.006176326790458098 -0.004569460233368782) (-7.168966963054513 -7.165497787553158 2.73742918176482) (-0.1902754987860131 0.2731336222217547 -0.1041104817713747) (0.1149640606981999 -4.555676951505639 1.280354985212183) (-1.943417760425295 -2.668034104819202 2.362750532865762) (-3.065879983350439 -1.70579468467958 -0.3385341950550886) (2.455804064141326 0.8094909300888702 1.351129515059655) (0.005589747472715265 -0.03971993797143315 -0.02278844668085938) (-0.0584408093773766 -0.06479232087516128 0.08258645559162918) (0.2964001145280359 0.3858876290675849 -0.1341811284019008) (-0.08423717189495508 -0.02992909787328427 0.03093485349634307) (0.0805905450187369 -0.0339766863949184 0.0365248424236311) (-0.02360219516331398 0.01589690942789198 0.02428419551857497) (-1.059367644696019 -0.08124488875951524 0.09661635744514528) (0.327799498655378 -0.07394613334719849 -0.002122086111485497) (-0.02465820313972905 -0.4187211223964303 -1.131609933659592) (0.003191732980427592 -0.03663831989931116 -0.009867953377305491) (-1.210270223841359 -12.10517898083697 -8.018906636873073) (0.2502830639366342 0.01208466205689259 -0.09022205499868624) (0.2289090851389027 -0.07917378090114904 -0.08579767420404642) (-0.08417909142859535 -0.1032686725544462 -0.03621406402605171) (-0.02487095651480635 -0.08188897629804065 0.228190395888332) (-3.38685880952029 8.435688398321521 2.025024838192575) (2.290995997027756 4.867287351639763 -2.683381314344345) (-3.729545275370421 18.13343524574471 2.292018573243748) (2.31582682372192 5.746881700195241 3.343661268331894) (2.950808372916221 17.79069597224188 0.8832691788939571) (-3.681674243907823 17.8367139950865 4.074367463220693) (1.513411134364303 8.741699824366552 -5.917747136864745) (0.03709409297848024 -0.03082637963298285 -0.02685868663287814) (-0.505555505296537 42.25669648393156 8.352447922438412) (0.1160197862742752 -0.03425154959010127 0.03259179669827132) (-0.02595831467734014 -0.02406451807011782 0.0168405502635438) (-0.142735412384316 0.01620958929634887 -0.0804225019178773) (-0.282022669184121 -1.072309309265152 0.1608433838858939) (0.03312340170666463 0.07448341672950268 0.2349470457280738) (0.2458293305901406 0.1949860439644238 0.1690398529881181) (5.308450591091649 2.801401720193673 2.581174978230791) (-0.3606948109196651 0.06668711141482295 0.05323813394122107) (0.03589964394115551 0.07216902514248497 -0.05178176558348042) (-0.02205280334913207 -2.141052262262457 -9.821607628634528) (2.739389977115748 2.544935002960878 -13.84146342297186) (-2.512974746037988 -1.26689571453039 -3.822889759113558) (0.05004172856457337 1.62736764715721 0.9000243541924486) (-0.3277973914861582 1.842552240475412 2.343544624952899) (-1.652963625043562 -3.152183378163042 1.161309286471689) (1.510541552341174 -2.515061120678577 -3.470379060076177) (-4.447229445114191 -4.350655581375651 -5.178378990647003) (0.07634208025130355 0.2581929025129001 0.07839652131561918) (0.2328558798272747 0.548749868819613 -0.1425090708661169) (0.7909655852360185 0.6274793084913285 0.9443689358525288) (0.1826918244753793 0.3498195097676227 0.6547164837159816) (-1.595413516032382 1.722665500169735 -2.969142244863729) (1.050506284411949 2.482495921940348 -4.143449775917674) (0.7091609330183166 2.750647411258677 -0.17664557849125) (-3.135397224729305 43.01602723989618 4.154055999649422) (0.832404434423298 1.352760416623501 -0.8302421520521717) (-0.6360412578502175 -0.877109251293652 0.8988546800740027) (-3.342440782529039 -3.466478133309607 -2.624061597613015) (1.280990889314727 5.027818367868908 -0.9113365058913531) (0.8839437437151787 -5.42251903093346 1.394751098317511) (-0.5521294918569356 -0.258555314394371 1.046501800189345) (-0.8546276791055437 -0.6270302514181414 -1.717740337822875) (3.849028115419086 2.581711849449756 2.644405368246117) (4.230710244545763 2.758646830972801 -0.3987895124311385) (0.9464428401800629 2.398835733757668 -6.536942755640206) (1.020277390751891 -0.6178053401678067 -0.9530737667937283) (-0.7706058452239197 0.5239748891663877 0.5491408713660544) (3.177445468066693 1.662144686933717 1.414892528516041) (0.07695952630703562 -0.1570646832724586 -7.388679208462302) (-0.07680119211980958 -0.01494912391809731 -0.2250636968755972) (-1.558500822896909 -37.02457894301014 -2.632876929691591) (0.004102467933720065 -0.09932104948080565 -0.07687495221027769) (2.622940413163296 0.4249349737105952 -0.1977476118016867) (2.478001213832622 4.928950168311292 0.8743831117396061) (0.1855405470435391 -1.420667728710418 3.243963698032684) (-0.3465466306734562 -11.45628680204847 -0.6861925765592858) (0.3283505703983842 5.446471715599315 0.6969547047035746) (-0.1637677250226509 1.524934514710439 -2.502674947497419) (0.1525010298446652 1.14418948672708 -1.462832369589338) (-0.3848263442563419 -0.1004380243083897 -0.0233456799666962) (-0.234872844595264 -0.0971665239980566 -0.4320991894185982) (-0.2928604589985955 0.2276269675958698 -2.673762674535017) (-2.444668252842984 15.60870751945951 -1.177139009701152) (0.09901753485180864 1.61787436444967 -3.178623112228933) (-2.458577816619807 6.950616915988511 5.77924207872468) (1.977836222948502 0.7536261765816553 -1.998226946266439) (-1.146491096369441 -2.277112176975978 -1.063664904321533) (1.335701155296394 26.66934552903702 5.294930337789302) (1.041646767458481 3.712093041399315 -2.237057162631023) (1.203437881812987 0.2035958555267332 5.682742663374276) (1.899000335886906 5.300262015682158 3.250932876968382) (0.8998341333047171 -23.86339151860047 -8.944872074848035) (-0.1600942480161626 0.09118283618831877 -0.2945447739580798) (4.087355188099198 -4.7018537611868 4.786466854991302) (-6.402965189413895 2.074197878789153 0.3882645419357064) (-0.04428032368966074 -0.02261937927324543 -0.03261415824152131) (-0.08366221151713515 -0.5834446650217453 0.3880154132115463) (1.85583627739211 -0.3872832858358267 0.6609405587651926) (-0.1767603785937037 -2.55182186407296 -3.333714993830679) (-3.669306429277066 -4.823355426979009 -2.657675828139463) (0.008831329970943512 -0.01814264983298332 0.001051873969571479) (0.15666614777142 -0.09332758619576798 0.01164931708439579) (3.354796668708813 2.528822033139712 0.4726118017716607) (-0.08026705738747096 -0.0221869717668341 -0.003798445105782792) (1.221876442979095 9.082947757017861 4.866619216644828) (0.009328866456178218 -0.006037309578660833 0.006522126592594744) (-0.07766430749859336 -0.01368807294778161 0.004977896483461169) (0.8650724743402888 0.5383482029625136 -2.047717814770682) (1.150803764129261 -5.663014906075959 -0.4113939258512863) (-0.02030135537094235 -0.007484502492632049 0.01080085573716355) (0.0009172068887452526 0.0187862194826411 -0.006479754698797295) (-0.4205779817033667 1.445073708589408 1.289671126228524) (-0.06115520158075555 -0.1387578161228909 -0.1333215130178682) (0.8007703555580565 2.867952783733137 0.8335917983983485) (0.3638100018344937 1.265011856472934 0.6881308065182528) (-0.07124408007397232 0.03109144634094483 -0.04775937280693225) (-7.023051791494725 -36.69253060685045 6.729556020498372) (1.5738437253627 2.030471000979186 0.1079560921281489) (4.270157415866056 12.62903884756954 -12.85473214359471) (1.010754774282058 0.9692647561302508 0.1216494957788447) (-3.961398490258182 -1.914402065204529 10.73143533779893) (-0.7006784541116001 0.09253477898985904 0.0475958398486787) (1.575472164209747 5.367114043675072 3.828334181620812) (0.552512733771339 -0.1178543376446739 -0.0145541550698397) (0.5077419615485467 5.641569776704869 0.8578074146003043) (-10.1333664055355 1.316138578428254 3.84108850021383) (-0.1389112622548627 0.6487227684246257 -0.1390466862133277) (-0.1378643423959629 -0.1426716958801098 0.04610252617027349) (-0.8453953985176668 -0.2468436223438178 -0.2989646701846611) (-0.07830674705024776 -0.2856501301319029 -0.2269377770409588) (-0.154802540268127 -0.2591803704573643 0.8309654559182116) (-2.078216497038238 -0.01685713180123305 0.7576553992540355) (0.04070056255459131 0.03850880947856496 0.001492567247072422) (0.7901154847914511 0.1802896050277168 -0.617145627679625) (0.007549528268902317 0.1128239787024428 0.03289947971352487) (-0.9055540409594901 -0.2810566243214234 -0.1515351556436664) (-0.4015719406173597 1.789027143936926 0.7537292951545358) (-0.03250639833046111 -0.1125379164836791 -0.0009874119190999009) (0.0008797810478222952 -0.0107940323051264 0.00122769505517612) (-0.03597743760006798 -0.008014498479324478 0.004597057757181116) (0.03904789119639279 0.000622917431695038 0.0007057963121669742) (-0.01397869102010003 0.01474232104462383 -0.005690175241944115) (0.5010412712067946 0.03355590591750106 -0.02365475116085115) (1.681231681723099 -9.851192243468187 -5.291673168034228) (0.3948297385936721 3.605192998293787 -2.399197920268573) (0.2073825698712008 0.03409387915753348 -0.1953243673750897) (-0.7484210896919306 -0.3000186413256231 -0.1571551652230272) (-0.08600214746955791 0.02317377926461352 0.01799533137113311) (0.3137960155842968 -0.0835309081255442 -0.6061461772510242) (-0.5058166381623088 -3.14068716532069 0.04802693274714498) (0.03137102205876137 -0.1448043078806799 -0.03014116464550592) (0.1615987107998345 -0.07580403305781708 -0.03252295352508511) (0.1303820609909348 -0.1083327536415153 0.01818465892703766) (-0.1955911815435463 -0.160980008259049 0.004882342862181158) (-0.0525724713016941 -0.3338878914969036 -0.1494362757697417) (1.630668046143819 2.812805126909632 -0.79927741344554) (-0.2525172139321692 -1.051316199049642 -0.7888206626113958) (0.06462234089438657 -2.110573567079299 1.883065777930875) (0.1335302217379412 0.3569234216004736 -0.6354503729545178) (0.4294948508350439 -2.986722237142667 -0.3929176025011171) (-0.6018703393373859 1.028292148130217 -0.1260016284961701) (-2.412093735608544 3.121878234238415 0.1627376625819608) (0.158693843882618 -5.219885698917196 0.688694735314659) (-0.7279822691587632 -3.014352855019053 0.8024287984767029) (0.3623268062342552 -2.675531013552412 -1.002480747624058) (-1.177118243437462 -3.240691248078416 0.7943888608716742) (-1.800481541515039 -4.625932871153688 -3.089950816686158) (0.006870855695203636 -0.007468136035434907 -0.006443060241101201) (0.003522612894126696 -0.007280357209352436 0.001899476169354948) (-0.001555721608029853 -0.01579091959600534 0.01001100711339633) (-2.609252241437281 -8.248594721753678 -3.395171623313106) (3.211221123184549 1.740781463970526 1.539315119996671) (-0.2875360974238056 -1.152971020129395 -0.9939949759868438) (0.03293218424204987 -0.004446568473861726 -0.01678658332542508) (-0.006743866822031428 -0.007534007882763892 0.002935982731894292) (-0.01217094779449614 -0.03362377958908565 -0.02991147125059778) (-3.616138591686323 -6.128281066018031 1.701551802074048) (-0.01445176685067109 0.02911341956966989 0.02210859943444415) (-0.2949569437438083 -0.9790369464969545 0.7440596944080959) (-1.961575815302101 -2.018427939041306 1.191230056758946) (0.002602729090876595 0.001122494249788549 0.005804128913847434) (1.337776161043807 -3.917615716637079 -0.966151630549698) (-5.192116371946444 -1.94910893338443 -0.2609921479135358) (0.03901367502876145 0.03104129304542692 -0.01903729220826528) (-0.366560125884454 -0.07384012775716198 -2.242425257776835) (-0.4196267214923921 -67.40699779120605 -1.032758077063227) (0.3780628710596836 -0.7816210323198814 -0.2820114421182593) (-2.217902870604723 -2.123386350054706 1.593526502488427) (0.001856123360385799 -0.0955213222514264 -0.06976073840254134) (0.3637226420771266 -2.44206496302259 -1.168170022670408) (-3.320733972587016 -5.149453829966347 -0.3630348786848532) (-0.01542931068944992 -2.37749332522301 0.3198114755128262) (-0.2458317885249099 -4.088573794677257 -0.9006186788625918) (-0.01772764415903258 -0.06675247285101688 0.06646756326142626) (-0.6599934042845089 -4.916003983810052 -2.291642562397766) (-5.085528790763279 -28.95819064211225 41.11686359773036) (-44.4656098106989 14.72976906650607 -14.16494207881851) (-5.560595048933643 -15.83512695965889 -25.27294676968589) (-0.01600700388670389 -0.05607008773674065 0.05085655202129133) (-70.7036589823789 4.538841267052785 17.43975571723856) (0.5723716746429283 5.279339820640502 2.439822878407315) (0.8027677273870377 8.710074893518369 2.627578288561215) (-0.5429057617307085 -8.305859732943965 13.204884270221) (-8.913602343978814 -16.49279393626613 -2.68894898255447) (1.955928971367736 5.753157656242961 -3.629626416435215) (6.732795907194888 18.81880743015837 -1.260027267524362) (-2.014574364382399 5.928732737288652 1.36080567003071) (1.781224766181665 1.222766810734329 -1.925463061311893) (0.02777294475797324 0.01317079207846065 0.0006874881588818625) (-0.4727549282264967 -2.184560504460988 5.311647690755867) (1.0123213800306 1.206407109597666 0.1695247163230427) (-0.7634462804648008 0.04028863553927975 -0.3275630731385727) (-0.4803498758930025 1.46588333315276 0.07521798495246933) (0.463412613234905 -0.2644734794897259 -0.3118101954537497) (-0.1552283690228518 -0.6294544830320752 -0.3737519670331968) (-0.1691535823749971 0.2860691075772701 0.3672965403483644) (-0.7267855374118586 -0.5277659246904808 2.279984121613333) (0.9683861808876707 0.8807841000936862 0.2835423389038506) (-10.44100353984097 -14.17405710360502 4.195806088107713) (0.03048498742100619 0.3461023148255175 0.2953412512211375) (-1.34177693972379 0.2258688250543828 -0.01640698420203002) (0.2629748889513685 -0.07613901968756115 0.0356153783517034) (0.01542195593275348 -0.0623036728622902 -0.008536558484572408) (0.5971852523543492 0.1892129617239963 -0.1311516709908073) (0.2814968031804006 0.1421600144900621 0.1983782009946017) (0.3076660944820362 0.004068801512464942 -0.1339837271665423) (-0.3793070818042568 -9.911370082986101 -0.1364837637548447) (1.369547756041849 -2.433811966702017 4.890101056100514) (2.107354814946488 -3.032334778761995 -4.078774351544734) (34.06177068543318 -26.01755728879952 9.060092191958457) (-6.324864585579953 -12.99604171644312 11.59774168403157) (1.567766801231864 9.93978759322103 -2.717813130397284) (4.687349274486767 7.45595638729067 -0.3207955492678531) (-0.0238294199259073 0.04224005246469949 0.06333972887556914) (-0.1192389218496056 -0.004180487721831926 -0.02428130069566384) (0.05966193883600263 0.09156931836873503 -0.0193859900980093) (-2.966730516090285 10.27512408438172 4.553819271176835) (-0.0889270730460954 -0.10982224162826 0.003767332563786058) (-0.1131729997301397 0.02718291582368832 0.07798727165932087) (0.04002506651854296 -0.0195546765549031 -0.1504801657247895) (-0.0001429223264019716 0.02836368705412729 0.009534781828465413) (-0.04177030353109889 -0.08960523547096164 -0.05029506114125873) (0.144168663512086 0.1410482221589545 -0.2000162088311735) (0.3786588540312658 0.05022972082324628 -0.08577765021090822) (-0.04426371278864513 -0.08318821429229301 -0.2163884007150674) (-0.005099107138608311 0.3166047509416946 -0.07202655533584149) (3.247919780207155 5.069028894701611 -2.885321332022395) (1.091863885191119 -0.05859110263981037 0.6245554488141076) (-2.367105601553397 -5.551777405477701 -1.505324419613741) (3.280686081723305 -1.358701158188151 5.818775417936319) (-2.719666249232438 -7.007719974532341 10.4626662403357) (5.100995842418296 -4.071795452168918 3.105321936825658) (-0.0995483117257908 0.09762733563274953 -0.09736519180831456) (4.702486079104681 7.07315498610744 0.09385011183170744) (1.694588519822189 -0.723719422044331 -3.563625779367184) (2.182759331855582 -0.007251275592062789 -1.821623911033492) (2.081267380069121 -0.2431207484106388 0.635033303473446) (14.66887807295194 6.243195526365647 4.015414170241796) (0.5225625283035739 0.1397829828340753 0.2650576833331977) (0.289409217475497 0.4774895114305124 0.6997408985139939) (4.557020583063411 9.999807509717868 -3.788109602626198) (1.980081586408238 -0.4075306747922172 2.052309044125673) (-1.836132437800356 -0.7063847579067095 -7.651415758763441) (3.491939741492635 -0.2434943140735338 1.910888750625308) (3.818162704649589 1.245133245281811 -1.799627526927641) (5.349356499414921 -4.260368549677131 -1.986915861707413) (-5.397293985181677 -0.0509150632087878 2.146633236666311) (-0.2385946194982904 -0.9910687697443603 0.1551940884162071) (-1.362308732074084 -0.7170965630895814 0.5983425827087961) (-0.7694182234810353 -4.118868287423354 0.05615743352277303) (-0.2238151277149404 -0.2187965556659355 0.011158012247471) (-0.3377321898813036 0.9236164759798003 1.223393964042364) (-5.869753166934331 -17.51454510524206 32.99563912182367) (-54.87117034466155 10.30250385215178 12.60255742894349) (-4.149851524777402 2.496638890229619 -0.08915394553668676) (-3.240556002944835 2.877826172325752 -1.849597751017412) (2.794599945984866 2.250397168706633 0.9240681561142828) (-9.461643467705391 -79.13020156933469 7.93655329750081) (-21.07117999011298 8.584730271187141 -18.7337376251619) (-4.904360329623351 -9.379344272097089 10.73108379241514) (10.23033531405433 -6.345805618806303 -3.913883002950559) (6.610415555085648 -13.19678686840147 -0.699510161732646) (-24.15027478701247 48.61941214735502 -18.20384985527328) (-0.7110116154804281 -8.439317378844835 3.194951869788978) (-0.173753441351616 0.140567632778174 -5.448318697172404) (-5.565861959293446 25.41149360076135 -10.20173684547401) (34.59631582872404 29.30076054977983 -0.8982288904353322) (0.2807843453780843 -0.1062287614540342 -0.104106077465685) (-0.1209035164773599 -0.03645794961875316 0.002933388268666175) (-2.177228546837137 -7.465533496696681 -1.171411929996901) (1.102571095780258 14.05064837459784 -0.06617617306135637) (-5.855175801275716 -10.93322378990295 -1.174524892301633) (-0.2078072339867424 0.06918540046512811 -0.197601073213438) (0.9377326131256627 -2.24906624241515 -3.594672970981281) (-0.3902290428174863 0.1706326388469606 -0.03630045523511352) (0.07830124647217311 -0.1398273442410688 -0.9402977173416169) (-4.989887629565662 -8.255533230851876 -1.881380798869212) (-14.29342929844786 3.496661439473902 6.957121692607204) (-2.362828438179943 -0.01373632704896943 -1.732293811039567) (1.283395296517807 1.991808922281495 -5.27147839881326) (-1.495057594205272 -0.01207725299316648 -1.50068475608774) (-0.8305492672963862 0.884594970347236 0.9456735854475367) (0.3002366362720366 0.7179919950466038 -2.464858418249499) (0.1174714577459756 3.489607264904574 -0.4968531015785793) (-0.7608764138777371 -6.501357132443806 7.426529988171364) (-2.225133024819144 -8.332398440872531 1.201933127535904) (0.9076106928308636 0.419637075070453 -3.347197417584646) (8.558637064875416 2.611689708656797 -2.480671565911557) (0.7711122428657913 3.203504746128607 0.6479102099363372) (0.2031849772470149 -0.004567367586288675 0.01817009852497083) (-1.541972132494724 1.290289699819848 -0.3803239575042818) (-2.017686390583863 4.892230642837075 -0.7668389944249099) (-1.050904156136611 -2.9154940105722 0.08414001089101097) (0.4794261821670535 3.745161363824347 -1.158667209693305) (2.426681969525446 -5.314746007988438 0.9962187398214859) (-0.5081641387191297 -3.418142610645718 0.3700477799342466) (-2.833681501799447 -3.021087545679075 0.3809319248202515) (3.939439178529666 3.554128634927391 -6.76148110486656) (-0.02370586612673678 -1.977268949242603 0.4018406403183912) (0.09972712418755666 -0.7828073500277724 1.661204352394817) (0.02331446936126632 -0.002946926060996627 0.04488860077881005) (0.6036320588671741 6.673008946852006 0.2175120330443273) (-0.3043340694812249 -1.545895379254689 0.8671236011078616) (1.968335596947475 3.704705973966236 0.3587209427628064) (-0.0269907310510823 -0.4099686140144801 0.2387429415809207) (0.04733191706082983 -0.07139642071955347 0.26458522355726) (-0.1149503399566209 0.5163863658153125 0.192228653051726) (0.01300718822876781 -0.01700936429483381 0.003910534615121097) (1.301808138314474 -5.014199974830613 -6.46136923241724) (-3.387610589546706 -0.6221040459680921 -3.833239737709932) (1.73568708301381 -7.652566336615635 2.384640932024919) (-3.691733119160975 -2.847996382673054 9.611660775804548) (0.111456662772438 2.940612593293244 0.6636785366444486) (1.282468195041371 7.628835343078411 0.6332780061273502) (-2.388639437794406 -3.257771960560274 -1.973664900747567) (4.294099301408148 -5.145668587775746 -6.902736561261358) (-0.2449219457431925 -1.843396107516362 -0.1377497206276564) (0.6654331366668521 -3.815482998062843 0.6626134968412531) (-0.07145411667756552 1.584312989000804 1.075275362880511) (0.01048204514883344 -0.8431900496001404 -0.6757230183308619) (-0.401784471831704 -0.1338876809292444 0.2533363737035705) (-0.4056966308486047 7.993961605716603 -10.71846277911239) (0.7480977836741223 0.1490721228702554 0.2673961245301166) (3.35563402085341 -2.814384963821646 -0.8827229152768676) (0.3515009110127637 0.2231307845939377 0.09935617251436753) (3.613785865813924 -2.996102225037964 -4.404244574198837) (-0.1299509151363648 0.1579563197459042 0.09196414724966477) (4.255884394160574 -7.069638344866914 -3.03559206067853) (0.1456613580572867 0.3641950253576691 -0.5140653465475559) (0.4352844082588658 -0.1969303754908359 0.1393721260838725) (1.451361662259123 -1.76970896403878 -1.505788091852369) (-0.5833578566603199 -6.397996704215197 -9.647107424142479) (0.01700900125219117 0.03162608925179183 0.01033112391710484) (-0.5106691045067697 -0.190306228765759 -0.2494984491840734) (1.419935121196781 -5.629194736963592 -1.204436570781132) (-0.005986425733532849 -0.01011957677934124 0.01539713546950566) (0.08659276405838075 -0.0202313091879077 -0.003433798307547327) (0.001558114535667097 -0.01223135922323785 0.01438061807317677) (-1.100537362940007 -4.426107316083735 -1.120098827801563) (-0.001184011234380878 0.00377267730651511 -0.0346061793756934) (-0.5473056531200063 7.865581537352761 1.863214629282324) (2.575690269107414 8.090521144279075 1.347007287173807) (1.583321341777815 -1.848844452291061 -0.07533931526613746) (2.66368334977719 -0.3586275530757616 4.391004822243252) (-0.3314523177017961 1.990127543095125 -11.38055828620111) (5.045682333156359 1.323830131669825 0.06430148346059213) (-1.84317020865299 -0.2284546408805345 0.6302456652200031) (0.5424401690137337 0.1263677158092795 -0.09915193107284004) (0.3200880000652133 0.1787845341703452 0.148420569529626) (2.321166189473328 -0.0618072520144044 -2.531083984852736) (3.248992668364417 10.62541497284673 3.036307255580573) (5.694858968663478 11.19888610385113 1.552421658883095) (-1.024347019900998 2.325441222209186 -0.09639776326146787) (0.5606194562217036 -0.0435902364861202 -3.451122364322143) (-1.424410018676284 -5.43969472318607 1.313728048524099) (0.8620973980103741 -0.1115562580134007 -3.249585194806249) (4.475071239940029 9.86761424254013 -3.24330255382128) (0.05076308503110525 -0.1359957412751307 -0.03083181566766108) (-2.422507419724973 2.797680480506414 -1.821011424272678) (0.1976356715961513 15.33636306870572 -2.873933812159216) (6.442940513855644 7.558970533701345 -2.467863147776123) (2.693469705398541 19.01046276152497 -7.74834613283037) (0.4040803333697363 -5.117300965332266 7.441561574950265) (-4.324865857128384 -3.489362578104213 10.06309955524304) (-7.379135989900594 -13.36296077024342 4.7818688523239) (-5.163113143429893 -13.54551630072948 7.540746175722588) (0.8703185159663137 2.820680746589499 -4.298905483917759) (-6.027981340317041 -4.427081502428031 0.3066633343353088) (0.7680928447245543 -3.79389265556556 -1.950379745417975) (-0.9475383292410837 -6.152888447454005 -1.079703711667723) (-0.03086032502073147 0.007875987068095499 -0.005849079074381276) (-0.2493551606437991 0.7926257457371131 0.1728523312258974) (0.577050108396103 2.421143596294764 -0.3442374593399025) (-0.04916690800542777 0.3870391563133219 0.188337892296473) (-0.04519590196596914 0.6026296966034957 -0.3396198224499241) (-0.165642972878273 -0.5500015617399925 0.2684746396643225) (-0.0943537994413971 -0.8547413924254708 -0.06622884637829293) (-0.05383641882418083 -0.6886700791856021 0.121842318288691) (-0.06090130510896266 -0.2675952038316259 0.1858933246965555) (0.7589002374559058 -2.365630742219843 -1.020720174331089) (-3.65125627510098 -10.69943359353123 -17.13169925189312) (4.452058332488773 -8.803386389313303 -13.81323185834277) (-18.86887680950485 -17.66968149352364 11.22401759733513) (-45.38482316345953 5.259453520795467 -33.98291452704588) (-30.32088057589383 6.373538862544851 -78.90339801819489) (-0.09266680683008557 -0.3705574618211492 0.219172580352938) (-0.002682888794966958 -0.03905505479007677 0.01016316489137897) (0.009930076226989507 0.02175887814245654 -0.01150325226708766) (-0.1594173072776791 -0.1379303296942924 -0.04031232319865921) (0.01803417085370138 0.08484498472981393 0.1506133553602996) (-0.1000841589327426 -0.07368455676286415 0.05232629129796292) (-0.09992007327406216 0.2611083599162715 0.04359512534719531) (0.6564491028020476 -1.349597187857997 -0.3874853822899756) (-1.606106967640146 0.6730120079759079 -0.32684945787636) (-0.07880943670797601 -0.008366284143966653 0.01388698559776196) (-0.04888493647960592 0.02488945073048063 0.01887667333055215) (0.05893004680946998 0.03168636689402121 0.02655454917880335) (0.1035409635353298 0.0620026608385003 0.01266907121746143) (-0.07198518245852191 -0.02155929343863697 0.03365164195139827) (-0.762749818629231 -0.1678570382854108 1.341887486243225) (0.1149059837722093 -0.1721108377710224 0.08239849711982199) (-0.3198637015742329 -0.3574581701647091 0.3704783837408199) (-1.060424758278282 -2.545377512249062 0.227588004435164) (0.1609712314230313 -0.7286066293004658 0.5698225668651836) (-0.6163453932921716 -1.950747054266952 0.1350999473933308) (-0.8156013650266576 -3.282862782972844 -1.386119337092995) (-0.9987290124604115 -2.019433056939706 -0.0632712586258416) (-0.002317805916743109 -0.008243818859692982 0.01524357667931553) (-0.3124467073529744 0.8420992599742592 0.7675596236578758) (-0.5851780742183678 -0.6862433913313025 0.3728863622706616) (0.04688938545800747 -1.310770833503973 -0.69805107886739) (1.539450744976317 -0.1357793419974533 -0.03528061276181715) (0.1989763262468582 0.5455604813838351 -0.9296258656477334) (-3.151080716484284 7.295288314510133 -4.989338374859385) (0.3026965899830568 -0.5209544658496602 -0.05938024133489542) (-3.140490783047103 -0.8411263185847079 -2.95111348795684) (0.1560266969274502 3.773344309365187 5.431339705980753) (1.263659103269337 -3.293688595615078 1.627966041330876) (0.1466376379423013 -0.3489905755291094 -0.4433128176688987) (-0.4981792209902381 0.4574944721958216 2.350695166809335) (-0.3614889257147198 -0.3843304802906571 -1.188228936815123) (-0.9761332161455705 0.3240408845798397 -11.47048214612462) (-0.4183761270088019 -0.3726164238854808 -1.051585708087273) (0.5426713809426317 0.7238988989737229 -0.5182160150101447) (0.2725951963045684 -0.03146516194726277 -0.09755720292431308) (0.01346659697407873 0.01110051225062326 -0.005392973652092834) (0.06114080884024777 -0.02250715067224216 -0.02612687492672222) (0.08155980878853891 -0.07457255676526252 0.06185347315078721) (0.2116485793596426 0.3939760223320972 -7.373390924420532) (1.849453933489669 0.7407528037728633 0.2164564412179104) (0.1821697365161509 -0.1208865403354127 0.2152900555395684) (-0.4264699287761469 0.2145705424160897 0.1310860074647547) (-0.7349346053619599 0.483781543341558 0.2659881860970087) (0.2534797768018212 0.05715768281393502 -0.2049147721904259) (-0.740325890329077 0.444400901502646 -0.1810946387212913) (-2.767301459354242 -58.92677072574124 -3.524267863197762) (-4.357264430469212 5.934911274770196 -4.682068478953384) (0.2363718407587171 1.015233513366133 -0.8020246355084257) (-0.01399117311922521 -0.006912735505259344 0.0009212636811998859) (-0.3500207297316812 -0.03403571606144237 -6.140223134962362) (0.04810173370559173 0.2210867730812124 -0.294100920328004) (-0.04639878926371511 -0.09271547072980102 0.06347360625806009) (-0.0388014517361614 -0.003318644986145262 -0.009084118431087095) (-0.07935776132006461 0.009601362580606301 0.03178190055388993) (1.0813259474992 -7.217213801009875 -1.472099255540589) (-0.2009213929540364 0.05702038280059754 0.2458661783431486) (0.3562114268959969 0.04794414333147626 -0.2171553257909027) (0.002905470978345759 -0.3947452848388562 -0.05430548312802336) (-0.7754692819774804 -2.422889811029908 -2.782879596381215) (-2.822704428619084 -3.305727927436898 -2.460848295546679) (0.05485222093846914 0.0637168409613649 -5.262945280449828) (-0.05631003006929293 -0.1072239609827287 -0.01807044838901895) (8.338570094656014 4.916631675835852 0.1883681541500617) (0.6880118594477794 17.93136184776015 0.9809603376637771) (-0.02177024316501847 -0.02956208511733626 -0.09498175024195338) (-0.3061343837569311 -0.2907307815996091 -3.366177571045731) (-0.1043033062847463 0.2198008651817557 0.2731008082853331) (0.1606692046940253 0.01095991480585276 0.03147363207049053) (0.2928545373288229 -0.6656966514643655 0.6357070839346972) (-1.042938562516027 0.1501664982304959 -0.3225488230908967) (-0.005407562855899183 -0.09483021516568897 0.1107127224099354) (-0.9921622316475454 -1.331921884697931 0.1016986097976033) (-3.278013057952623 -4.546367135379222 -4.032644331806237) (-0.5409679048943977 -11.60733107205101 -0.8412479955593891) (0.1455098158399852 -2.462203950038894 -0.9285398651001391) (2.430924014259132 -1.513671384541105 0.1701472591389106) (1.894484515152214 -5.739639218363827 -0.9866291137981489) (3.399720850404215 -4.509196872832954 -2.750911715727121) (-4.429096354765879 -9.582763753926898 3.002991229974887) (1.162050079078973 0.6597664299166829 0.5293622382787653) (0.2926141252619624 -2.644347750948476 1.832359035389973) (-0.02761298326580426 0.01771037195337615 0.01067522046569733) (-0.1573196706004638 -0.4242184299699808 2.828379550819165) (0.07544702423483787 -0.1569774793682022 -0.141290144727207) (-0.05952797534697315 0.1141780859084301 0.08178368109216497) (-0.01995123408581687 -0.003663949094761504 -0.0007926904674555686) (-28.83217986762564 19.20437418980388 -6.578853146408908) (-0.3831013107481066 -7.967436906838372 -3.840902850492741) (0.9907532522383763 -2.897486277912961 -2.147207153424987) (-1.985996284597878 -3.972807268973582 0.6124819782280564) (0.7593493027291055 -3.077101502740627 -0.7260899902692927) (0.8388541735442745 1.503149248572413 -0.2022407743047487) (3.260235469901569 1.734007347737504 -1.241617019729081) (0.007377141512503735 0.04236542760638302 0.01416383780913645) (0.3414004914856218 -0.0558924698812896 0.1328927678011867) (-0.3273639231711394 -0.06101991443118703 0.3772632294885432) (0.1879914014043274 -0.1197594142938104 -0.1628357910709907) (-3.089794029014397 -3.353800517975419 -15.76619906214939) (-1.566548592453902 0.630853684259186 -5.67184551415826) (0.1711542861396447 -0.1024763301013165 -0.3528591412615222) (0.06222070403578614 0.3197500467781824 -0.07402545114968936) (-0.6079239921055503 -0.2789171600482399 -0.783319588939972) (0.05814222985662204 -0.07731817013280493 -0.01417530953933213) (-0.3185694782935639 -0.1390644671626544 -0.6907071332736484) (0.01542166257068031 2.786725466712741 -23.39834542536081) (-1.307053846555461 4.705472765521925 -3.66741801070442) (0.7841676099960797 -0.09299442685731835 0.04578522721036492) (-0.4129337066531826 5.86383485888339 0.1670146800493306) (0.4649715027750442 12.63042312230509 6.097204332163059) (-2.124564963034073 7.764150849935239 -0.08374688818041753) (2.290483670692344 38.4103709057961 -5.795186171356429) (-0.1781705380292455 -0.2291424626277581 0.5751980260290226) (-1.796238122337838 37.63124313725741 -9.652553399375774) (1.833596582744133 41.620475308498 3.688567351297999) (-1.211506135624218 28.05777861094835 1.160828993571705) (-0.00832841842671328 12.66234830215268 -6.787565964145456) (-1.545060960603463 11.52695065285429 -4.899211762459107) (4.226624026281979 3.759212121842985 -1.555513754522758) (-1.149849661665619 9.658313856473734 0.9286900096113418) (1.386770585294707 5.082223716965624 0.9165860676218709) (0.8372580518424109 0.9323427915130051 -0.4459006354551456) (0.8721282829333734 4.532889931450049 0.6942931197042325) (-2.613069961616493 5.560144891162428 2.130898264963502) (-1.094080910665835 6.532742099030052 -0.5886878316444514) (0.08625611514510104 0.0110716056149137 -0.03216646623866076) (-0.06105777427438885 3.785621116239034 -0.1239306035182548) (2.349065324561865 3.195488854672254 3.593150578495163) (-1.392472842407235 -0.3287474069317935 -0.2420401188467697) (0.01664323973124027 5.675947796002783 1.373097889465798) (0.2800655715952256 9.190475844685263 3.565002868465714) (-0.2451546579765274 0.3501046622349539 0.0525297109576373) (-0.03769588009299862 0.09804894619970016 -0.03121125634100561) (-0.02874052174372801 -0.04155825498523547 -0.1355965995274075) (-0.04736139197983415 -0.05023998372649653 -5.476987983259699) (0.4212295600540382 0.05360874808502279 -0.06936587968894524) (-0.9267734272808367 0.4106367978135172 0.2325409856525593) (-0.2908592141701173 -0.02926865518372737 -0.02432820151946146) (0.1597464207619226 -0.143890619136364 -0.2982088130276208) (1.019122091697063 5.334193713685372 -2.745254438139559) (2.055471665430547 6.54289459986974 -1.016060967028166) (-0.4329147797842343 3.631431048844203 1.686574936924653) (-0.1590978061987694 -0.3115282821447095 1.148400969596808) (0.0755292598973154 -6.134849647222455 -0.6903781434104814) (-0.9897243070846757 -1.852405170070765 -0.8357247745065464) (2.970763175428604 -5.463085782125466 0.6167288467950514) (-0.1166822312288874 -3.223040665334708 0.1038923385459604) (-0.6824694600331453 -10.00795728969562 2.942180290652427) (0.1280857565172815 0.02411704116996114 -0.0426989269517844) (0.05452227685164765 -1.659860363650286 0.1629216880135305) (-5.161385960111398 -7.061497686289631 -4.399256130783264) (-0.6290502604214007 -0.9669671198391436 -0.8391499359554607) (3.814667553753598 0.09395506976104917 -0.5428452923919783) (0.03392194428912024 0.03659059906663643 0.01621824486597648) (-0.02582435498018711 0.0007504382312477301 0.01750707689263798) (0.002206068238575791 0.01083817821929052 -0.01370860445911312) (0.05286298112620526 0.04679601016811417 0.02239725151781807) (2.237944146193813 0.9265081555653625 0.1454856617702211) (0.3119376990835383 -0.06987898586920283 0.0232784594890348) (0.4372242392908026 1.700371757853843 0.6280546805964941) (0.2770490647934151 -0.7370349553659583 -0.5605401495697567) (7.359173686643853 4.448621555702807 3.322992112850374) (-0.73039870036508 -0.03045571892112003 0.106806405803334) (0.4721037802875497 0.2933787088063172 -6.331187276767126) (-2.662482419583453 4.137368032177089 3.758105076047499) (0.01205601260675307 -0.02162987267028574 0.01551498187479818) (1.45768200087568 1.668759927068898 -0.2028964689536339) (-0.2801230093840239 0.05822647283243214 0.005559804014797332) (-0.0308446446780425 -0.006120332057341709 -0.04661342311715149) (-3.290548573495295 5.790838617017116 0.09145231206264803) (-0.0383514417327121 4.980430033799164 -0.578795219928173) (-1.577417174297759 1.23749624145354 0.7463172178017982) (0.9621905826223497 4.454170778827253 3.163023369635089) (0.2199499467945221 0.3790265141787815 0.09376222165564928) (-0.01829196071554467 -0.0130308434511743 -0.03130154229721194) (0.006777837114571188 -0.00609655895415635 -0.003819839459899362) (0.0871480081983384 0.1022753380961082 0.03933442049387376) (-0.03527792262832072 -0.08369052060768861 -0.09856445685831217) (0.3725496574341769 -0.0172982972485977 -0.1054497293477969) (-0.1143256125290805 -0.003177185816839458 -5.401298241916547) (0.05760301174292591 -0.1050835972811176 0.1390510745718846) (-0.04549380973066877 -0.02573120572283465 0.02214733547636305) (-0.02591427870760685 -0.0132192556827259 -0.02255745168234858) (-0.0536103032465924 -0.02687875895988317 -0.004139201628989865) (0.0003047288170568577 0.03702232190019143 0.04954815620247997) (0.03207382152576967 -0.01338900490641126 -0.02427715918521326) (0.006066699748460578 -0.001402299020330547 -0.003308864293745828) (-0.0139739262271737 0.01908182186617206 -0.02081469711220762) (0.005126705558053672 -0.03888278807907367 0.02013190704221587) (0.01663200063270947 0.004655207838719207 0.04118836075450444) (0.7109144712801421 -0.2768826999004036 -13.15803053269905) (0.6153864434964915 1.323946579363283 -0.3554962423522882) (-0.0820650523004067 -0.04548967752588606 0.8784836319325702) (1.692234501762741 1.786030926818342 -1.553293189630113) (0.1884180150999387 -0.05523675965204905 -0.08029038860315188) (-0.03399040592844574 -0.03827451899385529 -0.4435515711697259) (0.01102627215420479 0.03366949252528696 0.2141878527289255) (-0.4919667733437363 0.04717370679643136 0.7814898724417396) (0.4012426630719906 0.1502425095251939 0.5960858052237462) (0.1792208222473279 -2.975228930331508 -4.018048551178466) (-0.7471950577315207 1.148535941897362 0.3848190837076813) (0.4828902720356366 -7.633672357217598 2.323828303931504) (-0.0810326220585223 -3.704394725849722 -1.402829161004169) (-0.01326816258745397 -0.3986357588239738 -0.04037810715433417) (-0.2396104507021185 0.1413343354104324 -0.1703752350153342) (-1.68713664272628 0.4732685970287516 -1.181315469036411) (0.08173569926644979 1.937027597810248 0.02913419080186996) (0.009439649869239329 -0.0261060825902229 0.00985091473869492) (-0.01482739501825564 0.00465714509392783 -0.002318091580232315) (0.030303332647531 0.001332383521419161 0.04222332047742923) (0.239700034582072 -0.1701062325222273 -0.02929526603307727) (-0.1771523225396494 -0.04640199726811847 0.3173564321090191) (0.009364600094814372 0.1018329937221001 -0.07962855226948118) (-2.549675291353723 -6.290015660118588 0.7970748475444799) (0.009001492389956999 -0.2103003559180942 -5.718912149786864) (-0.07831450723475551 0.008909966185582305 0.1439077654071398) (-0.02363649437374582 -0.01411380554799415 -0.04206350417067933) (0.6291069142262776 -0.06535636339667444 0.0376824759814391) (0.05053547923137028 0.06279547527450913 -0.1748205927441068) (-0.06022263108625484 -2.001202834351793 -0.1243795995783627) (-0.2647300753244324 -1.51908556874813 -0.1496150495649991) (0.0994157404874276 -1.176554445436039 -0.1076442994254468) (-1.431579697622304 -2.422328934263787 -0.6002850098125594) (-0.1710638574022504 -1.464595354736614 0.755818068651763) (-0.5236235735304258 0.3895682078881367 -0.1475807757407585) (-0.5333260728535596 -5.779218555142254 -1.74813049696831) (-2.49945580711091 -7.193782502302424 2.443309763468164) (-4.065469945483962 -6.934082290193149 -2.863415400963729) (-0.5386127469116551 -0.8838959740871967 -1.125784879200682) (-1.184249623367325 0.1194697618335904 -0.6486684299622039) (0.3126547181814431 -1.646925152999665 1.048626669250286) (-2.449566605772449 -4.345420933249192 -2.045736922276379) (0.3014633946218199 -2.113593323993673 -0.8210390695553516) (0.09709953258335947 -1.034386983295694 0.2995098947928276) (-3.857848865738786 3.689031042634106 -5.011338914350392) (0.9057473322476715 3.629170394807186 4.014843126102344) (11.16415179616341 5.462121064954486 3.820248365968526) (2.96610893517354 3.61906213415262 1.146629873985881) (-0.07224606708037623 -0.04686619205316214 -5.356669729102923) (0.1426967421894899 -0.935333670835794 -1.224707922907021) (-0.894548332988118 0.8083181612722992 1.436381848886889) (0.4707953880760707 0.03882999334768896 -0.1514828937163122) (-2.348414281471034 -0.1927574277327222 -2.434694889149078) (2.73972730255836 -0.2285316826793322 2.343736469202687) (0.02030650571860787 0.001401308461527189 0.01202579522622695) (0.104870007659992 0.1423983262651556 0.01447632847648259) (0.3605567322851251 -8.186217963975032 2.309877785908819) (0.7016217743177506 -1.940191394762544 0.5782966950308761) (-0.3188283850765595 0.05693631554524033 -0.08378870202572355) (-0.06798159311188466 0.3398149417880837 0.09249523688185927) (-0.15474762415684 0.04911646875639498 -0.1486449184094256) (0.5844030176894542 0.7550490471405105 0.4394948188891705) (0.2823131437940606 0.2883228079763677 -0.04032688189767492) (-0.4023573515940729 0.5871656796679424 -0.3450525700617992) (2.423723215296849 3.525165824185374 0.507550862970418) (0.01146253736913657 -0.03841176749131649 0.05879978292891343) (-0.01984234247045006 -0.01098901182115277 0.006661826681102353) (0.02789202769763072 0.0009677528366120445 0.0005685796108497662) (0.01500060047970361 0.02238848463978026 0.04762023953497568) (0.01108229400056199 0.01372758940171282 -0.01535597133557978) (0.01116519377549569 -0.01311923560667505 0.003531340877426076) (0.008744762704257777 0.005673293427982774 0.01723413824661534) (-0.9449735031773367 24.56203272077985 3.373021918583658) (0.525091909806281 2.297761635274522 0.5946216410351512) (1.072665243793668 6.303385074860407 -3.880627921560015) (-0.04102085424614021 -0.06845752798918944 0.05817745865652369) (-0.07467034812648478 0.4585984591245952 -0.2185968039831692) (0.1010310707100179 0.2238160130596479 -0.004451670265783608) (0.1745494562636209 -0.04919483609404073 0.05866803539230964) (-4.684920987953417 -7.941267585924564 -5.21115549137001) (-0.03305358522480274 -0.1287770253287824 0.006359867888229176) (0.03678186352691144 -0.07424943776163419 -0.07559548091833315) (0.0932185089283892 0.1888956786886038 -0.1917012168061094) (-0.03218953822776669 0.1780094973227451 0.04200424544299736) (-0.02746047555730213 1.176288286900665 -0.4590665003125) (-0.3213076105029845 0.7041935060360806 0.158950662842133) (-0.05278281702808211 0.9733177450119437 0.06244944971887184) (-0.4480698617101949 -0.09356808525479944 0.1120261103594886) (-0.02682262950019668 -0.01081086538152361 -0.04068905493586751) (-0.05013127324185412 -0.07290637122789667 0.03255200204971793) (-0.1799320951056451 -0.1045615281393316 0.1227246822811575) (0.04986679036058029 0.1066821109176059 0.06651754523008724) (0.4730988399208473 0.2992239876934051 0.8539992607080132) (-0.2116478088515704 0.104899436546194 -0.1586633700636914) (0.1337890836337079 -0.2016445628332197 0.03925844913493692) (0.7461084231866251 6.313808957992443 3.192262427632367) (0.2111444747713526 -0.3403450739533844 -11.59050977126619) (0.9385299637656037 2.475331262797721 0.3145743316011749) (-0.4608799618752671 1.620023553284529 -0.212176778269124) (3.193673536669458 -0.6398721950065859 -1.248685313934143) (-0.5711506976966032 2.006961685707775 0.9621236886202812) (-1.967187908828902 5.17543331779341 -1.376411467281411) (-1.600323674532796 -2.610225232171518 -0.502895089798078) (0.7546835141715083 -0.4811527773086315 -12.29015662410022) (0.06790147349225084 -0.6598561358710729 -1.427277632737655) (0.06375657339640008 0.02667391510768694 2.536655198532293) (0.2963253480840295 2.009167217778023 -2.101428120757364) (0.1661924320604578 0.1445349583755087 -0.5424255024180095) (2.242537796045173 -1.538301711939347 -2.724328657940734) (-0.1091833105750775 -0.03626810475076101 -0.001846392855515029) (-0.2531109616031922 0.02295232265430426 -0.0169680301523765) (-0.1645840540799727 -0.07132881785580814 -0.0670943193300286) (-0.2580873764102591 -0.03016303833929779 -0.02918265055713642) (-0.01016745910771649 0.04236281991089724 -0.08178393461371879) (-0.3968536531888394 -0.7064110136735344 -0.7885442929633685) (-3.34474554038431 -5.357256147273165 0.3776624609653478) (0.3084518556821119 -6.936119637477393 1.001481387961502) (0.07668037981181854 -0.02534595167274572 -0.05559739857317041) (-1.463648276161045 -1.60712773154248 -1.31586073504144) (-1.591573188416251 -1.33021810432788 1.294510304751733) (-1.807706289516488 -6.984398606265405 -1.084624032333978) (0.2213547835136408 -0.2277932561585072 -0.6883402206132446) (-0.2146321458410546 -0.5356139063111374 0.2448894465297335) (-0.2745811252961306 -0.03209906860754036 0.268124191488125) (0.2744299504296862 0.06537059868746717 0.01647763917430851) (0.07607765110651893 1.964405519470313 0.01795448560643908) (0.7186755695037093 -0.7086590161718205 -0.3691725115093348) (-0.08054390205565759 -0.005329915362770582 0.09940853374208912) (0.0046455818143692 0.02810352287233448 0.03717587963188137) (0.04705489932315238 -0.1341730137182348 0.1999340408717298) (-0.01139466279378664 -0.03438206169818241 -4.312088709215288) (-0.4229638481931793 0.1171377837032533 0.05179446099132039) (-0.1468179240882165 0.01963084000679911 0.1041552223345558) (0.07708390100299856 5.276627581495756 1.16518068007066) (0.03307496236529989 4.446958279085243 -1.005685022703622) (0.0909754113207691 0.6093023451997812 0.1643992397919403) (0.705900017546089 2.710411037417424 2.230381873033836) (0.2878917447878382 4.596567371644599 -0.09010647913012429) (0.3800157416509544 4.082714684854587 1.818545429520542) (-0.113728105172055 0.6570694446177675 1.05431920919622) (1.69723542043202 2.803114348618297 2.169661460244561) (-0.2216993706116543 -0.04788035777331592 -0.5437167508536651) (-0.0660441495780433 -0.1404310272296304 0.2129060698006147) (0.1124488981593548 -0.02373596398263462 -0.07341409517186026) (-0.6739005099479282 0.7896928563181668 0.5137752456863788) (2.375957881293389 -0.706278820133562 0.5544876626237123) (-1.153857528769175 -1.215937343118023 -0.01446819015739419) (0.07988213799550886 4.71136166814662 0.350287903599638) (-0.1206160920874833 9.436069086180639 1.058594089724673) (-0.116233138031454 5.359950498259654 1.559372004632671) (1.239986723569608 0.1857272130342997 -3.522356126998853) (-0.6594751216723655 -1.181707943328252 -3.24672495932773) (0.1712394612298043 0.129015511995302 0.1722532815356944) (-0.002184790726352512 -0.09303056273034042 0.110076394587202) (-0.08086202124499682 -0.4322586526087318 0.2102747381550759) (-0.05171760169999229 -0.4373915554740177 0.1190668951995611) (0.708179497584988 -1.004474533300205 0.2946863843026962) (-1.628066928113607 -0.02727602558724895 -0.5104580597478715) (-0.01971179250660903 -0.2451460709072628 -0.09627816566818888) (0.3073984591056965 -0.04962154005311722 -5.688744472228644) (-0.5356557590019656 -0.2850317729639301 -0.6111474506836241) (-0.4123766970394744 0.2944279012235865 -0.2875349148487278) (-0.314186085012516 -0.4378281197514678 -0.01240255666228213) (-0.2273245479767897 0.07292453325590464 0.04709686463996764) (0.4348884276801002 4.671009463104126 2.1917555012554) (4.451888718957793 -3.275142738919551 1.814789347563789) (0.2285575416611615 -0.09908818159975286 -0.07375222968118567) (-1.196901634799543 -0.2913268523286321 -0.09447025608036219) (1.217791534112052 -0.8252420660806523 0.6074866790758433) (-0.2497798811706744 0.06440751746246084 -0.2021674752850751) (0.3163324773039832 0.3518260271330469 0.04652680530807274) (0.02177960885077444 0.0846516156998143 0.05094660346032573) (-0.5018412869845382 0.2906265884516669 -0.3321292441005031) (0.006717069145081064 -0.1460267521266126 -0.01459806705191375) (-0.04485931173825842 0.02162178463609537 -0.02433988047825088) (1.561798328616878 9.77906374113509 -4.109485284230162) (1.855950189357976 14.16655376904991 -4.925213076897803) (-1.970555070147139 7.982901236298676 -0.2121522330632439) (-0.6345690578110772 -0.4017850417808456 -0.05084582855608538) (-5.613272685695406 8.853778588120436 -0.2712420829909301) (-0.00762998060023864 -0.01011291597376795 0.002383169600888136) (-0.02888430004120991 0.01131490805835754 -5.334654522118644) (-9.795079309173136 8.587850100698093 -5.296697460447927) (-0.06615294923898267 -1.561698986579172 -0.3611168264978503) (-0.4380808080715435 -2.297098785414307 -0.4503263561431912) (-1.236762466834661 -3.01850784205786 -0.9258345171491376) (0.2776849528550764 3.146377244731633 -1.805549508180846) (0.4042861235324139 -3.644856224961031 2.647755848180089) (0.4772132502396401 -0.2473107050644422 -1.06206795913437) (-1.903783142343836 -6.871841688179744 4.077631597295437) (-1.286873407630382 -4.140129019200164 3.812904827608142) (-1.046842766113055 0.4340801645139538 -0.7572283556192086) (0.03892880043939458 0.02037123008933361 -0.06138039166930892) (0.2779153280559451 0.1414832481330635 -0.5667004276837583) (0.5043376854975962 0.4579822088317458 -0.917935414100352) (-0.03216025424389421 0.001389233220774188 -0.00796517552026486) (-0.5553109934274907 0.9991327179885696 -0.2166346943574303) (-2.803224552972289 2.686307264834652 1.037514011987364) (-0.2988659333545801 -0.03190063346410443 -0.1900756717379982) (-1.526705521148816 5.247811545170041 -1.020672822354114) (0.127945895322364 1.397182412366874 0.0134624175688296) (-0.05446812332919221 -0.1972146490638494 -0.111423982540082) (-0.7824368634079191 0.08535219436405039 0.5337885129531453) (0.1326196876904992 0.1046689888814854 0.1093626586017444) (-1.189250558248849 3.748721993055289 1.26157848465126) (-0.9904053707250509 0.7855492739885996 -7.479578485359601) (0.1102592078398631 -0.08171264602553577 0.03167429426429851) (-0.05604516164903982 0.3147065652891538 0.07341763773458031) (-0.210847934290008 0.3452071846773846 -0.2962924159474446) (0.275621545827209 0.3446870344866074 0.0002653305317748267) (0.05946326026774335 -0.4639939641752386 -0.01170323449599364) (0.07963787067102868 -0.09641545357443503 0.03047735399464011) (-0.2926426414519819 -0.9428113869987742 -4.304172063832476) (0.01616207514276324 -0.06408593372349133 0.06716723202506006) (0.09264131219050165 0.03222846564336261 0.09689121802723442) (-0.9660052103228141 0.0693627529499673 0.3533614694508743) (-1.166453241615591 1.017347741929329 -0.5464534005740244) (0.2577711727687519 0.1137933082811567 -0.1029561342925232) (-2.506969738707096 -1.146821851485157 -0.6119716677432498) (-0.007971056395371656 -6.791567850278801 -6.782694713670587) (0.4434498241124814 -22.74930025563364 -3.295771092106034) (2.671823157112951 -24.65621543617126 5.458883294209913) (-0.2388332696230374 -4.426791683594444 0.2734866234999834) (0.01424069320730953 0.0002897250905053439 0.08001389472271955) (0.1530641382294536 -0.08533391431328863 -0.03795864293907496) (0.03726907649181835 -0.1188253274116251 0.05637542772858024) (0.01581570754238596 0.01049084425973884 -0.0116157472068428) (-0.01275916288890934 0.001408708720172319 0.04750181296989611) (-0.05771181846622656 -0.09909669853455488 0.2123085752421829) (-0.6569020761893957 -0.6956642863712064 -0.4184063114963409) (0.0602490379349376 -0.2905960233171446 -0.3023535096004901) (-0.3545248147637911 0.2448823841391261 -1.277759159229095) (0.4820323874384413 -0.4194718210153256 -0.1682778817790893) (0.9280958755711082 -4.841565173231776 -4.263216620680994) (-0.8182330448075052 2.029519060834061 -0.7885929620676488) (-0.3009980008774806 -0.397562697766796 -2.266160122563587) (-0.7975460404557364 -3.075692025488385 2.903385151927387) (-0.07066626171701774 0.6147501529697263 0.2307516834530295) (-0.2299350132593196 0.2459233757958099 -0.4062429406767061) (0.7380340079978801 -0.5286411282811895 0.1168537788055178) (-4.003503334742186 6.130212973943714 -2.610480476531002) (-0.004355630946016764 2.298296411526806 -2.167191287930245) (-1.839753937298604 3.488042332265416 -3.412377345898817) (0.4313596099217338 7.382918268298329 0.8234070994364501) (-0.3403635694603654 0.5032609358361394 -2.192196092334318) (-0.1084507402227471 0.02682645409765648 -0.02012375367942104) (-0.1836200104539667 0.03397726545088101 0.1628494448985564) (-0.1544089298416896 -0.04311334390258738 0.008005362030388586) (-0.04748530853043606 -0.2078002127082158 -1.777472976891106) (-0.1458225092708758 -1.566827656088572 0.2553080932706426) (-0.1999097143943673 -0.2822540832349283 0.1675005625903669) (-0.1214584537514245 -0.9634825449686324 0.4019147831818353) (-1.105085686685257 1.452712707833499 1.369998029678718) (1.554035162468027 4.630242349508137 -0.2065358237003579) (1.570234829870303 2.588929586035911 -0.481462399265194) (-3.511431142308774 -0.5579262853342338 -1.020314915825849) (0.6226438398466932 5.667819842882364 -4.92000653662625) (1.162906255592461 -0.6432900706507909 -4.669951480713038) (0.3189380145803936 0.0166228274772868 0.1701365641024394) (-1.488348603217831 -0.08594480633336044 -0.3871907267185334) (5.652775532545956 6.48043227972192 -5.691780704043567) (1.589543090254455 19.65065993728242 0.3956114607960575) (0.04180472330580672 -0.02667499939448453 -0.04020945031753226) (-0.08203997480886813 0.003201825273627501 0.07601462478253526) (-0.07210366213116552 -0.06226058997087952 0.08372952654550342) (0.1703388767463647 0.05069451160408165 0.03971417169558565) (0.153107574414718 0.09505751047280979 -0.006065107114924455) (-0.69477485404297 0.2633692767405558 0.3345768824913993) (2.01061155457105 0.1855889453022185 0.7787974430133722) (-0.2359895027839528 0.06372191667977799 0.1902677081806214) (-0.250970057005377 0.1407051124081613 0.07472350942629395) (-0.3825544612178836 0.4097816808692231 0.2211052828586819) (-0.002561316354756073 0.1225889116952412 -0.1212333655121048) (0.3103515334969871 0.5281357672867284 -10.30982458172668) (-0.03641318219351208 0.006143861775383012 -0.008507538841617807) (0.01126327390440346 -0.03741773499438011 -0.01138015599354829) (1.491710239780781 0.8147106261223882 -1.840242002173925) (-0.9844209243732007 -0.1227241356620536 -1.193866125104657) (-0.07184712258030952 -0.07780948717852315 0.07056173485486936) (0.02194989535004466 0.04339696526920901 0.01913416168625406) (-0.02424051868965571 -0.03411109662602484 -0.03885451382101131) (-0.01301666686385724 -0.008688564263398622 -0.005732178619166289) (-0.002666504889652043 -0.001049602794856352 0.02361509432776999) (-0.009568964373156559 -0.005802103641357519 0.01589111458254308) (0.06307055318801479 0.003519849917793369 -0.005548145048781082) (-0.04706071759860232 -0.0932677791430143 -0.09892947878643561) (0.08674848854914594 0.08127683576447127 -0.3030078968852015) (-0.01364288945844993 0.01383708434521433 -0.007927510118511043) (0.07239909650658509 -0.0407372902392791 0.03065017104713922) (0.5564516775106216 2.364805036063092 1.456556547597066) (0.4355975346291874 0.01238280241983768 -0.182950632428518) (0.09939140717878889 -0.2129569267757126 0.02263662258923142) (-0.05905365705325134 -0.03945053407142136 -0.0143087494975082) (-0.03837569703048446 1.16778071375691 -0.4356359397117635) (-0.3241032605605861 1.773771695083981 -0.6305529504807488) (-2.569765713918427 4.486548321951624 -0.9585354955232147) (-1.088074361901785 2.087373023743117 -3.427533180246384) (-0.6178784991755157 0.645728963975311 -3.468051725336285) (1.934365581262879 3.252282239069185 -4.777396359976921) (-1.939586306875062 -1.915962401286293 0.2530474428496075) (1.181930204332671 1.712106167066555 -2.345233723083271) (-0.7155855042635269 5.293487200808855 4.906943886606187) (1.558762154622536 3.175433554581483 1.681801174542008) (-2.666097013778467 14.31641025316349 -1.135533097158795) (-4.194463691247304 6.562843471500974 0.1421134795813291) (-0.7723692485449614 10.68354795583772 2.863704324187309) (-3.836463694751466 4.933678896122739 -1.796572619732444) (-2.015900861493567 -0.9013458306103455 -0.3167237042462179) (-2.724299136811542 4.368226808863003 -2.503650504772466) (0.7431310987728249 12.53237767058435 -1.772517948529337) (-0.5068665019173249 9.152559568704872 2.583151794041144) (-2.063130750025619 11.26260057745304 -1.216535147234633) (0.643246225759398 -1.33057504321885 2.452193294287075) (6.565421287824655 -9.535320471018499 1.792757329212463) (3.909092787589323 0.3539316965853964 -0.582508992392443) (-0.6913476032672392 2.575507706706742 -2.200128551018569) (0.4360846650602563 4.936142807905222 -5.759171858266342) (0.1285418427194016 3.61180463514373 -1.564270056184467) (-0.1222977716475468 -0.8089845565636045 -6.12687595276518) (0.8373577967436326 8.300743343874597 2.080763745864556) (-1.673671397764616 10.41367500440185 -0.3944757307192784) (1.247731560372585 0.4527381320981556 0.4571698739019712) (-40.04379557180008 -34.14213706948674 -7.852625621088707) (-0.1030419173619276 3.404436084551817 -3.568978940548468) (1.701889187837826 -0.3939781705820931 0.5396330679851803) (1.107715043267508 -2.863604943619639 -1.790499135836533) (-1.600554313829042 1.417377106646082 -0.9646916087078878) (-1.309370675028431 -1.565328767298651 -0.3124090891081106) (1.823468802317614 -4.463493148633922 -3.433995397178991) (-1.130735078262095 -2.622121587818785 -2.853154364397387) (-5.491643935526087 1.262519256998271 -5.078457125430201) (1.562392428944853 -2.593997267133234 1.107917407149652) (0.782612933540628 0.8066468637187985 -6.461849082969715) (-2.45039993911104 -32.8511348807524 2.01473027420611) (0.2401463386078818 -11.56981229287825 8.193282706411789) (1.478015320640428 3.771872953089349 -0.6564369499194387) (0.467854282533657 2.524570398520172 -0.7493613310642683) (-0.01836726310412723 -0.3603223044373873 -0.09746949241848962) (5.208800905771674 9.644810451851127 6.977011621660133) (0.02876522912890256 -0.08697408792106628 -0.07745750750698387) (0.6318746879975763 -1.086942357169951 0.03574289891975489) (0.0002492283433391668 0.1902595964144906 -0.4106310334134631) (4.98795965000793 4.831527800717509 9.445580536096237) (-0.6233158275323828 -0.4605329248797533 -1.374896168625408) (-6.150145520449525 0.2041965273640275 -4.027264390514745) (0.5170977169038427 -0.1888350070122886 -5.132847217039612) (-1.475816099307447 -5.03197506274371 1.252074586143613) (-0.1343016871729212 -0.3365198538657992 4.009056878505157) (-5.853272736308876 -8.555552229147972 4.884091588665854) (-0.3628705350624815 -0.1181333103361346 -0.5640080875232808) (-1.565188894302934 -0.6575397147873587 -1.731086146206124) (0.3202493074601272 0.1516751531304985 -0.2374351738235325) (0.6584699378682743 -3.364868102350124 -0.04270555729985626) (-0.1443891251194626 -1.615254670039834 -1.488043188886577) (-1.367611777940326 -5.120061148906133 0.3081079035664869) (-1.322367444718469 4.217332272488381 5.019614780155979) (0.3409436788909923 -3.337036314987873 -0.9979601902567597) (2.358264286501592 0.8533507229966055 -0.3345641167091826) (1.41374804015553 3.305318014084988 -2.92674318354127) (1.10680380162693 -3.13753970910562 0.8414856417399768) (3.971605483219153 4.786909835606265 -0.4529229202191805) (2.327900804298876 2.328810997508227 -0.5227442611187343) (-0.2218070136656079 3.795334432794662 1.085888638075474) (-1.479569886776099 -2.098589042107053 0.9581613742007276) (-1.140487693213883 -4.51339405618756 -2.030562442397154) (-1.629482672137512 -1.645401178071465 2.547850064413702) (0.6677824826126224 1.467296879143223 2.35376722464967) (0.04704584171945736 0.4981624084863636 2.094296167282362) (-0.4132483348316358 4.414733773743919 1.459181653817248) (-0.5217469920097634 2.049487312591552 0.01325540184528851) (0.3088006098809529 1.39461090654706 -0.1447304292993081) (-0.5109806581563332 0.9957389134095199 0.8124654094006848) (-0.3486454603472149 2.221000108367844 -2.087352997750277) (-0.2149621526165913 1.934550943170582 0.01408703569631908) (-0.8839524709677433 3.331371849951468 0.6688642718957862) (0.9117000117670787 -0.4042860948958258 4.479872313468395) (-3.252595277936535 -2.169644035484223 -0.1408266283688047) (-2.67962078839088 -3.580685309702376 -1.62535454888389) (-1.119279014593615 -5.162136697053402 0.03088567918834162) (1.02949008641199 -1.989465187240067 0.5101170197108631) (1.318993408299145 -6.933550356959817 3.094780699998778) (1.351033386543255 -0.1266197481076763 -11.66961342430859) (-1.227501353142117 -3.056854904751757 1.071091008456545) (0.6769340577147027 -1.653327382028143 -0.8652301254996942) (2.877388484476063 -5.13270079731668 1.743755050253798) (-0.03894446978931934 -0.9909677422261632 -0.5375573040264975) (-2.153937312601165 -7.410896235327849 -0.854876341617376) (-1.757096269007525 -5.658962087395901 -0.4292730983899646) (1.150303957809499 -4.267386814365451 -3.16377376685386) (2.62906648214314 -9.353560892337216 3.281339543688574) (-0.2693661763547222 0.2457413816212699 -4.153871744764444) (-1.692675748097817 2.08459412027761 -0.752855653375203) (-0.2905470601375567 -0.1780466534361201 -2.326525966332434) (1.895023951087988 0.9978659472462023 -1.094744436507788) (0.1796289634409663 1.903879648892149 -2.058232887048742) (1.032834775537009 -0.3658744824138299 -0.3621797809664352) (-0.3806291521856928 -1.488222971035122 0.4032649664806223) (-0.6017082145684848 -0.2495710809093417 -0.4617771785435635) (-0.4956682006064424 -0.2858783885880553 -0.215009960254813) (5.309770103382085 5.64372984960816 1.439876713708528) (-2.011978680078752 -0.3530407311117503 1.636824914122814) (1.07617518472188 5.28678119350512 1.925532653608007) (1.011097900352937 4.486353581362593 5.887753492130049) (-1.100219085738908 2.026372727997545 -1.564966541219896) (-0.01758914919873994 4.944321768064226 0.4323741486679075) (-0.2221928777128594 3.819947130330354 -1.346472994184465) (-0.08371516953314523 -1.712692489213182 -1.881431706860463) (3.694424673494758 9.943769702181223 6.838245756140477) (-0.01631056511073174 -0.05637605942770627 -0.7934322131906905) (0.335277232276964 -0.09026586642887696 -0.4544443000765965) (-1.321546410952929 -0.4097414073333675 -1.450146319871044) (0.1927292681393034 0.008725148141328548 -0.008873058421981011) (0.119343048868283 0.01525070454046583 -0.2517905988277221) (0.1377671616267176 0.4986218232966144 -0.4881018557965547) (-0.259762862985617 0.008115574005403803 0.01300665615036661) (-0.2627114933524528 -0.05110287587444363 -0.0511413448678625) (0.1672535821053246 0.07337261145156976 0.06228208280990983) (0.04870965141660868 -0.001226042225272663 0.2098472547020012) (0.6740753730856746 0.5687400321431735 -0.319886709748892) (-0.2218241033607497 0.09601623838360118 -0.08310021962127093) (0.3848401227744196 1.541054363030625 -0.5934687754774364) (0.112910262190352 0.5403256531041241 -1.792259964852815) (-0.5664993279530197 -0.2365139748973856 -0.7332232493367221) (-0.3740996634836993 0.7602729466036838 -4.171211578743391) (-1.409389758600821 3.11076273133865 -0.2533585008729695) (-2.738173938036265 -0.6215260083971856 -24.61146704596216) (2.509375202273746 -1.948234146122565 -0.6166534826567396) (0.171773732187175 -0.4311378686661897 -0.1036285681833463) (0.07954473564911338 -2.082059874866231 -4.15158466276307) (-0.7918559169865071 -3.34818792079663 -2.002379963157501) (-0.5234780002799059 -1.316765730922374 0.7278612970672619) (-0.5118477582611788 -0.07788452186550228 1.00984747269496) (0.3703112756389927 -0.8493201236347711 0.2381661830867298) (-0.4173677995322702 -1.28849452727512 0.04322980431533965) (-1.732929846330284 -0.4798555234987328 -0.1978007605977228) (-1.028994567264359 -2.70287069133503 0.5370882411136608) (1.44993153677195 2.088885940477464 -0.4852151510521778) (0.04405657479679503 -2.59680683122715 -0.6040715697881569) (2.529859943718547 -6.818884973184192 0.9045758482724311) (1.419535424290138 -0.8048543439239548 0.1148123981012482) (-0.2492697757000227 1.570570988114749 -0.2809936944298718) (-1.193451018402009 0.2275257351601045 -0.2342427539624729) (0.3443689974807095 1.39939176320803 1.113443207565696) (1.157231492862407 -0.09830899269623028 0.2307202566177715) (-0.01683159333995224 0.2632159547707613 -0.2649729920141704) (3.357035818287861 0.5662554100609466 1.631211230732263) (-3.246462916730988 0.214133913599457 1.203043608488616) (0.4926398210202775 -0.8102251600660169 0.4212938147833479) (-1.116427366149177 3.81007901332102 -1.260838484769278) (-0.1946896670021048 -0.7030366142500464 -1.083110029652314) (0.03034798249672639 0.01242350219213562 -0.02574196981938931) (0.01637678953503261 0.003468217822678603 0.09198225964034305) (0.04474808379090962 -0.1203763088086584 0.03832829284180029) (-0.4409274110245408 -0.1899101532254229 -1.514262231649893) (-0.02158119890148725 -0.02291110641643473 -0.003289300403144808) (0.01532088006747294 0.0005657212776050062 -0.006288012099483435) (-0.1297161429763046 -0.03348095666658658 -0.08084272370333137) (0.05746695805356435 -0.001994476327807786 -0.03059979685165297) (-0.03736606111232262 0.009902497325708552 0.001572475837693923) (0.02465787031689786 0.01791623469484511 0.01429400928785129) (-0.1362694261613189 -0.02774806779393822 0.07599462322959605) (1.047542096841476 6.853273270209796 -0.3916693305009665) (1.540074395278193 -0.2159632624896522 0.9160809287609768) (0.7659716766067077 -0.4717765752171506 -1.105207416970339) (-0.3213072654994863 0.1705421059863244 -0.09264103405000668) (0.2872431173089655 -0.1484686627776583 -0.3353377953240804) (0.3357957259352835 -2.31822366889545 -0.6509593724271479) (-0.7408382907556765 2.9535491612297 -1.180577308325239) (-1.41013450661046 1.986291269579248 -5.37285372516619) (-0.4069975494170093 0.1087496734437312 -25.89858370858776) (0.7557368646298289 -1.517840758007552 0.1399994997786652) (-0.09731710376195599 0.02735072153325674 -0.04819405291355067) (-0.06890726206459788 -0.07885946988377107 0.04929479348839436) (0.001710973319214742 0.04054997506526847 -0.01908175984756477) (0.01374813467632675 0.01877980536377758 -0.03115396662358495) (0.07793576086191993 0.01878632192009359 0.03821777450761349) (0.009481828589944397 0.06945080388826141 -1.162763640525282) (0.5111008241885309 0.3023003877901214 -0.1334040547741673) (0.05124022122691338 0.01407875817105238 0.02867736531583771) (-4.725565951158659 -2.758930423115543 -31.30972773570881) (1.130776777517301 0.9063256152957415 -1.757562247489786) (0.1080985826359272 -0.785216103485656 -1.781950021857876) (0.9524995262497044 1.773591074456266 -2.403371508665856) (-1.569595807407699 -0.5732900162450585 -0.6471510650643436) (1.97014074608459 -0.8220559374584753 -0.6966441307680701) (-0.02179396019856883 0.01688765336434233 0.03798759892832397) (-0.961670407768667 1.814617697983049 -1.189184447596962) (0.6620752179180189 0.01329461534762622 0.4879598000967232) (-0.03860878708025543 0.02708163609551611 0.06126496464595146) (-0.04267813160964927 -0.05578297315762824 -0.0409458310086689) (-0.06257890721100279 0.00430779097036172 0.1092398471379795) (-3.839331675304078 -1.500633829835022 -1.470443774764004) (0.02921114732358337 0.02349068046702774 0.1015674204134968) (3.380049638313212 -12.91058984710184 -13.06914079133248) (-1.73703203475288 -4.245072721727773 -3.931898595167469) (0.04199690147604065 0.009381383477078176 -0.005747076569209825) (0.09723445372991943 -0.02371827980357041 -0.01626975021934695) (0.0001549866496080507 -0.01541956571882662 0.009088828429910446) (0.4085243708289084 -1.886929724564333 -1.51670564234092) (-1.297722193732739 -5.861875926543412 2.322919703260644) (0.3098520132484731 -5.498158187122319 -1.177585724170377) (1.752541550067393 -1.466937217625035 -4.555380891682061) (0.4995795762355754 -1.186454391574026 -0.8272162115129863) (0.01932507701620273 0.006559824485551508 -0.01659471814169321) (0.355550223984065 0.1594334313909658 -0.1948828610961002) (-2.246452447655229 0.03204748741321324 0.2803598127245306) (-0.9550832049794085 -0.1994004555606482 -2.642854308335951) (0.1693895350813915 -0.2249146837922621 -0.4025549363460613) (0.153871047427709 -0.04413669688121657 0.05794524295996095) (4.199756709982016 0.4196242598532565 -9.860393441372347) (0.09519423028726853 -0.199547745914822 -0.06337841342051043) (0.2844017219936791 -5.161051403868105 3.032714243651553) (1.017004337700267 -0.9027813511753716 -1.305983041594408) (-0.5532362236002479 -22.4734602434923 2.56232612722901) (-0.7210425831411941 2.671643875874006 -7.047447056312616) (-0.5429358411798428 12.15404573529119 0.7750231035338947) (-2.620320254274428 -3.917075939019725 0.1200462376762595) (1.998282019500452 -43.49010441975595 -0.8361893634196254) (0.3380679824074401 0.06806085815955409 1.420091521040228) (-0.5807948933131848 -2.441292111823779 -21.49700062828261) (-0.4037674616669932 -0.52192210273354 0.05562918866734844) (3.72053577810876 -10.74719217961425 1.832127761395309) (1.551746816157712 1.420561552926367 -6.627277612045589) (-0.8278988263060212 1.948340412345811 -2.723730064957925) (-0.6629721483779641 -4.548744412978682 1.79160184462819) (-0.06417339429397292 -0.4116670003968521 -0.4210892970156293) (1.730562498208634 -4.135903362865696 0.9112833353164494) (-0.006244169806636595 -0.2202626964257348 -0.2868932669333305) (0.01306211245215928 -0.003829851081366486 0.006491029163061178) (0.008354071709652744 -0.08500231248774273 -0.08302719228001192) (1.108155465059713 1.205838859461871 -0.4571744534376634) (-0.6038664364756737 -0.9216804922856323 -1.165054188188205) (0.5354547990458758 1.93911496768691 0.04246601530733862) (-1.256763686145068 -10.75631721617028 -1.620087760445613) (-2.852490727955854 3.783482400177991 -0.7826836685285727) (5.067683724752914 37.16036968717765 12.16795270243443) (5.73078276961929 -45.44360149713246 -5.208285711380446) (-0.1408173374135152 0.2702426671280815 0.3798014626553911) (0.4517842746184334 -0.04198590863551847 -5.835063696571652) (0.4237092765949109 -0.7101501614261521 -1.233000285045536) (1.479275378316772 1.355871684806046 -0.09664977207287939) (-0.3151869472140442 0.6498011652668216 -0.6182187665651725) (-1.019931106032815 54.85772563028853 -4.331298432784154) (3.132551741963421 75.64964967404768 2.534316931195398) (1.126919204582148 0.2221109800154936 0.5424741593699326) (1.69174391268756 74.30567646199043 -0.06863103939006931) (-0.453714529005857 2.89220051216043 1.27570565327425) (-0.1401137416314666 1.7554408032802 0.1944427345007218) (-0.2990819951415411 3.609050800275953 1.24804115974705) (0.9946093368442075 -1.504343652214239 -0.6410745629316453) (0.2302319314266694 -2.681063346547309 -1.607291482768076) (-0.9560504667907506 -2.975891411267317 -1.898704051981306) (1.044959991930499 -3.043375150417607 -2.962320372188151) (-1.100657008084731 -3.18745139265157 -1.035111509681365) (-0.5238378561260182 -2.894146621261626 -0.1212183724639789) (4.996984733194099 -3.693252725685274 0.9504431792213411) (0.2138952468296454 -4.451763975371878 -1.943328458550813) (-35.43619137806633 -8.267993317371051 -14.36214685968138) (0.03722134957485071 0.04287259376661071 0.02331750262881581) (-0.008571371314970599 0.03958723148033615 0.02576429006430794) (-0.1776886920530267 -30.30603572232626 7.572399564659427) (-2.673564301996545 -5.433341621911316 2.451500355813342) (-0.7704183506508213 1.539481573407755 -0.4664712873076767) (1.51418629050913 -2.243561860323791 0.6345785585025376) (-0.1123461396065173 -0.7158550790843131 0.1219234738680163) (42.74856348131961 3.054679003607772 20.64138941836516) (4.887095321933734 -6.164768453779402 23.02884748477319) (2.606550867796612 -12.10239963485405 -0.05613651723537294) (0.293722573052398 -0.1480344107107216 0.2506721350971535) (5.813234118703766 -38.65141053255093 21.24036066536761) (-0.7654697920449612 -0.5912303033751409 -0.3142687943869595) (-0.6082032537703013 1.310730406595144 -1.539949076602737) (0.1458934019572213 -0.03834215913169201 -0.03475122321604103) (9.252119630132039 24.11970556442405 -11.3469270613979) (0.02563310433865174 0.01165029885366612 -0.04226520410165271) (-8.552568382831243 -2.068744363182297 -20.0474719107262) (-0.7280171512742161 0.9703915628180961 -0.4977863399155782) (-3.125354915391231 6.871616797146087 0.9679936519258723) (-0.5614481222526533 -3.07130634557119 -0.575642932476795) (1.202767716544156 -12.83886285066936 6.771111349831058) (-0.3979770365406102 -2.436123355267602 -2.139754058941148) (-0.3782871817291337 -1.365341438978076 -2.327025790550243) (-0.9741562153121588 -9.220616904697131 -6.12876649414912) (1.214740082678252 -1.796208995754424 -3.615066992378438) (1.977957082347769 -9.488516757274233 1.184995659784126) (6.722702433421446 -1.113880019954422 3.675130759928798) (0.00686088933027576 -0.03485948485883701 -0.05877072835966022) (11.14647155121696 -1.479300260254528 11.7101231026886) (-0.1533466410047336 -0.7636699029185037 -0.2784364833142219) (11.44577927103257 13.34187269738399 8.825755248662656) (-0.2252752616722338 -0.2133889954745405 -5.408096028356596) (-72.44011336627447 22.84825294056866 78.06069374800182) (1.128969044124776 -0.7264140377859869 -0.1051114414968957) (93.44320009144397 -6.005259593888624 -106.5124271897432) (-1.086523605151918 3.348447236413573 0.9784828837988808) (-0.0777167093047782 -4.940978353458186 -8.907988413802485) (12.13829924077259 1.654040279968636 -8.905365125553786) (0.3169208475601082 -0.3146274107984346 0.0843697550809088) (3.420060767538669 0.4904403554358572 -0.2644110720147448) (-1.914495700420624 3.761920975505261 -1.074250578681752) (-1.949187068617813 -2.247534496373491 -3.938656502228466) (0.4063360748567317 -1.036053195729442 -6.117435951524389) (-2.591994663258514 12.6765498373399 1.1490182643717) (1.149347740586221 4.022523096049066 2.179765346728319) (-3.334481967783875 -4.330366825722628 -2.401837330330542) (-6.793835192406043 -6.740023413135241 3.270913000359617) (-0.2027398773725612 -8.140672080811045 -0.5433447990924773) (-0.02473432730326366 -0.01545311183209819 -0.01516994701941151) (-4.08818159202694 0.7182762111117178 -1.08566099185203) (-4.824259699492193 -62.94126879742107 -7.688209278968063) (0.1017201064038733 -0.07115919258550203 -0.1091212377259122) (-4.267372959566439 -58.94136791293393 6.303409513442025) (-1.101748912109718 -4.031450805682644 0.8196959376202829) (-0.04419525429987889 -0.3401000153675547 -0.1683235800765678) (1.246536943596317 25.67260929854187 -2.554494508664755) (0.6382916088890292 0.130810983523989 -0.5731623974006914) (0.09860646034792597 -2.748415817123025 1.72732124052887) (-0.2193205645942826 0.0004561533267084597 -0.4914758626916779) (3.094796919388362 -1.041256800250577 4.518016401308707) (0.01348000406708946 4.313936669720039 -2.069057599750234) (-1.626890774547335 43.15469217033261 -0.04473055915044558) (0.3092262064070386 -6.903106979976688 2.423491912208589) (2.264710629410442 6.37213271092963 7.006130758722607) (-0.1778137691335411 0.09439857312721053 -0.2113597634321734) (14.57710826467519 0.1854704695193125 2.192028674024668) (0.8813569787025985 -0.1741143572602306 0.5982320681050656) (-0.4307374544321368 -0.1092338053415574 0.6194412113579409) (0.6049288975429246 -0.1225745538434669 0.3584094004848868) (-0.05270582228568148 -0.1897575719520748 -0.09609803156987279) (-0.5636138587757713 -0.4791987779155347 0.02421478797880728) (1.040338798703733 -41.00058423124118 0.185950871387913) (-0.6147297812674879 -1.438477787694121 0.3459424800481097) (-0.3437649118051368 5.682014498503626 -1.34421036542356) (2.148163878339955 9.630572945795423 4.639863807909644) (-1.794931180954559 1.152749442798381 0.4212239917344389) (-1.155056884191284 1.026416644626945 -0.01389086087693807) (0.1540705842275505 4.69891724291524 -2.403171970979647) (0.6846947723619508 -5.657191861468448 -0.7171108997715838) (-0.2402004247879842 -0.5416416565694945 0.2079340805305369) (-0.3299458430833422 0.8466447268735491 -0.003945344819777359) (-77.54633135093766 -0.4805780819021024 69.33551718748701) (1.901641787681154 8.397002843113775 -5.995586496406061) (0.1532728726487263 10.69860060749838 -0.3053172006703414) (0.7832162976570785 42.17162066541611 -0.2739698425657111) (0.03772670051854869 0.03209052954687408 0.02659302111637742) (-0.1044770894522284 0.1975192447029147 -0.07842556990263656) (0.005376915571025866 -0.004850194747919759 -0.002030827390866172) (2.33311657448984 -0.4658903057336841 1.899092237654778) (-6.751503086584099 -54.09630915713716 8.491268298159625) (3.62969212856112 0.2627637238716489 0.8252672696993426) (-1.90055690427019 -1.824057920813448 -4.868546979482197) (-1.835904451041388 8.397906476702785 0.1267525767988762) (-0.2253805993903417 -0.2552615042724337 -1.362745054587455) (1.046988258590728 2.943816738786223 -2.026088759806043) (2.757652239911101 -3.618695588715338 0.4316813262263809) (0.2297609021722611 2.158466391236593 -3.688799834340659) (0.3328705774759904 10.78006682447316 -9.263203854319213) (-0.9212315644854686 0.1062231782865233 -5.057959820632171) (-0.7781887356240131 -0.7488745008699977 -3.326159629261181) (-0.9663046935499622 0.3371841402250489 -22.55721665307136) (0.3159993654209476 6.673863282851165 -1.502251293705258) (-0.004630345635761771 0.05915511867537963 -0.02142920258315626) (-0.3169016519814614 0.7275702998609969 -0.9320648959977644) (0.1053565882930064 -0.006424884859816484 0.1164693762700961) (-0.6509162399165334 -0.09456501011936547 -0.0435848848485977) (-1.723829874855287 0.1087093632769001 -3.202617369017216) (-1.052339165730989 -8.992117598136112 0.8888084042350268) (-13.36385758473407 -2.256634366804898 5.532341112749239) (-0.03287394782006032 0.3202083476024454 0.095910632143426) (-6.46089727331425 -14.56812203549744 -49.14255203668714) (0.1550930800191246 0.5201399115565783 -0.5614091343768327) (-0.004537685248190759 -4.695154944382308 -3.581801706752664) (-3.976439363412869 13.1454541257272 -8.985984991059057) (-3.14725011497479 1.336627754243604 -5.212402552990316) (-11.74165927444459 -8.454506995078905 -10.55684421922359) (-1.334853064692652 2.094921015332372 1.913996736384245) (4.92019186310351 10.61527196370814 -6.086135972120771) (-1.043424422968193 1.196829987909462 0.07718040420570615) (-11.33400659845517 11.71682418455504 -17.88896071450127) (0.00657579250536143 0.1246016252977942 0.1674240089148091) (4.074748633500023 3.119892834908212 -1.189079850392152) (2.46582293232532 1.255874279841732 3.748092227881902) (0.08560933867137291 2.604134552738891 -2.319927313526883) (0.7734626687671133 -1.667603262308376 -0.6734308100151203) (0.1834430976802107 0.02113051919921694 -0.2628881380114603) (1.547757274048878 1.034196499144891 0.1075982581683743) (0.4918742924150177 -1.365676030581491 -0.5124081469538204) (0.2768897182681546 0.29020600318526 1.242825443916174) (-7.235024586390913 -6.146057110439774 8.390249871079238) (-0.863464632951887 -1.559775653689235 -2.543737908728237) (0.01431774217642142 -0.0009858465980678338 -0.02785339233101028) (1.018456994587293 0.0754423446382818 -0.3810337159475909) (0.9936863829692337 -0.5524684416778887 -0.2258672160161556) (1.275770468369432 -0.8980574243994719 -0.04160459954252388) (-0.7066876160801352 -1.652354130498246 -6.439736224452178) (3.658197817151481 8.393592449496582 -0.6838067984564877) (-0.4442342677949445 -46.28735951617136 -1.225270965113488) (0.5319406518051564 5.451858205897051 -1.57725458239465) (-0.1857534170518973 0.2794671965377006 -0.702789425389334) (-1.041168222846401 -6.823991430740696 2.007994055099878) (-5.536246390824805 -53.94140154287096 2.413131560047021) (-1.28021071847495 3.126016567289845 -2.323876859593434) (-0.06397151368622694 -0.2117862445722434 -0.01729675969504626) (0.6028489107070509 -40.67812166659034 -4.185999223167436) (-2.412663696231869 -5.819357268536087 2.258261992871846) (-0.0553270105631248 -1.299742118541436 -0.7013955953973044) (-1.59108261035333 -0.6523577410549379 0.04137966794719616) (-0.09389066786690137 38.70717402358988 -2.417088841757117) (1.656199018164985 10.56994586192805 -0.8281890999738263) (3.424727897559377 5.871132282685869 0.9530753518922037) (2.694469198611406 -1.872281065714725 -0.117312761635665) (0.2449547643153029 1.098300899464816 0.2283446670984192) (3.776083518357659 -2.597132877017014 -1.35273202778342) (-4.87940439508395 5.931913886940772 -3.467993751034564) (-0.04449286697385668 6.184541630817497 0.8615685623124276) (-0.2371134168440698 0.09594958585974644 -0.5053161834588563) (0.4012354360741104 -1.450134147657906 -1.355020377855328) (1.92545935958482 44.56818645791776 2.46255838216368) (0.4327183926115725 6.31867610960532 -0.1264712815539714) (4.146182146291846 0.3730501672543486 -1.394770848668986) (0.6552996338108737 0.3476797276855466 0.01529659499050366) (-1.616256713458694 63.10554239316614 6.419456668125321) (3.383499840454151 -6.12260080202991 0.9544614152007006) (-0.02891899841115209 0.0330111519344265 -0.01693471481208981) (0.0101037982486567 0.004928498036688433 0.006970594064919205) (-0.2930139016580827 -3.587412997108457 -0.3615483582021129) (0.9976458957904676 4.330245532055007 -2.46509828371776) (-0.1285260672974362 -56.85964210420364 -2.612931643792761) (4.036807669425356 -6.695492456435319 -0.8913534703381188) (2.383965019759342 0.892293650774735 -1.688472590809798) (0.351770680169612 0.1210693208953322 -0.6399607642511366) (-1.818452101593277 -3.10100365529099 -0.4731380867097791) (-0.3608247341528041 0.3057267954699875 -0.3674815917040497) (3.623625136020523 -0.5261777278370994 -0.5434926788306704) (-0.0562287794417812 -0.01165474720267934 -0.1076700429699389) (-4.75925838198185 -27.39192241940602 0.7894608551322637) (0.03233419419873112 0.003430873657475859 -0.008225992906051006) (0.9081035475997042 -0.3495093710174528 0.2364938969792658) (-0.1669304955462267 -7.691585614087103 4.829467875680988) (0.1895565502126815 2.823705841299464 1.200965736991026) (-0.5535573416981957 4.437298793582313 -0.01260700427706807) (-0.09654973698653441 0.1076293605687832 -0.2423626348999611) (-0.04270421384970929 -0.009361443192407615 -0.002634385995317179) (1.719277346236921 -1.182884260344209 0.8003086713436486) (-0.006073506143258934 -0.01423847873344374 -0.01633442829307984) (-0.4931177434811738 -6.533883953399682 -0.7960305943017273) (-1.447088115661129 -31.85425346229306 0.4982017794655992) (-3.176874364470364 23.42931521756547 0.3333603116954201) (-1.961720380359364 -7.510533716578269 0.9223426732974483) (2.821303192031506 2.705240434155476 1.15063049708109) (-3.932261921075103 -1.980453312801568 -7.571498858826146) (0.03301943213500245 0.01292252181703835 0.01112691927543356) (-0.009358904781896564 -0.006073930820322972 0.01631364440823876) (1.05375369147246 -0.9216221511855042 0.5043072545324363) (-2.691147412441686 6.064622348102112 -1.755607105857955) (-1.74484830283123 7.373676906140824 -1.46777889303482) (0.003437703738013602 -0.008423433231326138 -0.006909837873597544) (-0.005090968518060429 -0.00147768120418586 0.007093175444937865) (-0.01120225897259822 -0.004966818551438017 -0.002238436442198439) (-0.0282434152273426 0.009563957632255492 -0.008869204449319577) (-0.004256861414606178 -0.01740038328919778 -0.0184408204459167) (-0.1920773927682908 1.160957603737808 0.08662367978961892) (0.0003450174644416746 -0.00638788595557737 -0.00570028566852319) (0.1547545403870569 0.4141858778197295 0.05063865254501848) (0.2197017030129593 0.05145732676739864 -0.1416621517706702) (0.4641416242569679 -1.277933825786569 -1.201037815416029) (0.08966296916037372 0.4347879221823882 0.8326378098405776) (-0.3081971186572213 -0.1436788899366092 0.04489337430516541) (0.1121596525954712 -0.03769848040978357 -0.07070720170459306) (0.4496924123521016 -0.6463523412834784 0.3977529253827437) (0.3246595195291926 0.472177335341062 0.2321747013118153) (-0.02831199472504518 -0.01093142807758698 -0.01318820563362208) (0.7750348909314261 0.0674553922275799 -0.1351327807404576) (0.02469607942283147 -0.3962786267016523 -0.05779377366207725) (0.09820153264546817 -0.1279746080893797 -0.1866457576800165) (-0.8841962036467597 -1.420190876570328 -9.079101481811303) (-1.584767857099453 -2.243051673735734 -4.529786845322526) (0.001506340355417562 -0.0008022430515746441 -0.006892181518011354) (-0.09015459214822744 0.03078368643486397 -0.01553622348584182) (-0.03261101112677756 -0.04609120645288034 -0.162610907212183) (0.05893214874868891 -0.004073085162725892 -0.05445695325163331) (-0.002521877651069416 0.04793743622438877 0.03879413012854863) (-0.003718980376782879 0.04377259051386093 -0.02619911277072136) (-0.1569494114111043 0.08540170246152387 -0.006730699182290592) (-0.05784634301457625 -0.04199714906889082 -5.10426103380566) (-0.1716283496831256 0.3843313980983081 -2.125043528947431) (-0.004037616788511311 -0.0452089423865916 -0.04612149488422966) (0.0556688564265094 0.06732136155059654 0.02844180781450563) (-0.1496322852700246 0.09936381954519427 -6.069714753111094) (-0.1150359000822808 0.1367294330698449 -0.3230763949906489) (3.058420116483491 3.040028715475823 1.51749294383907) (0.02576366767761955 -0.108645175698993 0.01639837602186254) (0.07793819229550059 -0.02604376321754667 -0.05781498236715243) (3.894900409464976 7.045983931647545 -2.747517458999684) (7.781237580225976 5.239559473415627 6.840830177874189) (-0.1027971228386239 0.1567933958736416 0.4634588643364426) (0.1752808894688895 7.227309213787414 -2.067395785765119) (0.2317065112786297 0.8065477132167597 0.3390726491078307) (-0.009956478178270254 -0.02923044101923321 -0.03307166271605911) (-0.6096635404741184 0.7237055584191153 0.1979804784674745) (0.1064158858895312 8.232464345873769 0.3960161228581039) (0.1369697030070831 1.325677447084644 -0.09311072775289805) (0.1514343084898135 0.7950600873603791 -0.3076495978703799) (1.471251758241707 1.936658169095564 0.04778571806885801) (-0.2446470972090172 0.7515868071381893 -0.1643676636958955) (-0.004451246343317544 -0.01175657385316801 0.005412392268169048) (0.01458980317743327 0.01548421416068437 0.0197467627835828) (0.004436905496629029 0.03017198507250133 0.00744826338171782) (0.02490171650457332 -0.01751636708418687 -0.02796175399888919) (0.03062687781680236 -4.435914659659326e-05 -5.969791508046893) (-0.0233956568952519 -0.003895837015531477 -0.01855806879847777) (-0.01253628391571582 -0.1376562241329862 -0.5774752344517382) (0.005634838408499191 -0.01008143251376215 -0.009615125908357452) (-0.00427133189806667 -0.006651096156211566 -0.02121612165680352) (-0.1227774441678155 -0.167957983472925 -0.07747746369690864) (0.02629627123578394 0.03472193250581231 -0.08092971634024169) (2.030624658288835 3.110016558870591 -9.638046314401702) (-3.940099615141073 3.706785605453812 -2.112021094526396) (0.069787668306482 -0.006533496595633913 -5.603363380057712) (0.08973931712723152 -0.04772864787764607 -4.652131873168468) (0.06862899110934731 -0.1434921249312135 0.0218133750851532) (-0.01104085980207736 0.00733920556375872 -0.008376565920027449) (0.005909213189435774 -0.006137870575503411 0.006686999531432174) (0.04803574391453886 0.007551826407227234 0.02571184440586787) (-0.06076881112065355 -0.003961300153153383 -0.006905314192736486) (-0.0232993072201629 0.001558585660965289 0.00951859572617459) (0.09861305392754952 1.718055163289369 -0.01238239385651459) (-0.09758384691816158 -0.3386012875043173 -0.089617202996721) (0.6922956488606915 -0.2565167295975327 0.7704037189744096) (-0.5012850625463265 -0.2504755384881607 -0.4560948707946654) (1.183460205492176 0.7272930872776994 -0.5226508192879971) (-0.08348095711794307 -0.02028072784983999 0.02416983027458384) (0.1063813974488534 0.0307433299203272 -0.1214228536786422) (0.04157045694757089 1.204661750323723 0.6854545539207453) (1.830232363799998 1.084807896258617 -0.2291798642559807) (-0.3167008509678919 0.4321700641248062 -1.559988748702022) (0.6256741630290998 0.8029897771605909 -2.159809406583351) (0.7125280212690478 -0.739947115487916 1.853617854236997) (2.282699188776453 -3.854274161139086 2.566839301610139) (0.2774036716526738 0.1946730720487826 -4.912292537686671) (0.2828142322889208 0.4302096215594005 -0.3587789301815187) (-0.1966082079606911 0.1768765117484808 -5.781639651860916) (-2.338541207194973 -1.052431126665088 -0.7224703152453903) (3.779990888470912 36.408654648102 -4.66989967768219) (4.915007854643089 -1.663332503557615 -0.7943352381309485) (-2.334687979139005 -0.4488091422144924 -1.919053298884021) (4.092565696752771 -0.3130641818293753 -2.960609143070096) (-0.457218247258011 -0.09426694650711757 -0.1918385504452536) (-0.6868188372987464 -0.1740899321602874 -2.018750633321252) (0.2026426020770649 -0.006761827006345901 -0.2328587026656241) (0.01489848359669132 0.03349311667864142 0.01011140358953598) (0.1086103392506896 -4.498758640734322 -0.7953414707791604) (0.5298752955926929 0.6691139307073226 3.870122480281402) (0.04865722028298766 0.001136736611691657 -0.001684358733594613) (-0.0848975593729072 0.1409178186139032 -0.0499640302267172) (3.853398397444877 -3.118299388169807 -0.3899750208625994) (0.2202991402814052 0.3206792208738966 -8.073602680259176) (-0.1330060835302737 -0.6004207091328327 -22.65726170263583) (-0.09353545635829043 0.02577323123745056 -3.993782569848726) (-0.00255721207255998 -0.01047322037133764 -0.005554156753235247) (-0.3868674516291195 11.64234221156978 2.547106197562877) (1.79293447848873 5.370785256982038 2.720946290379975) (0.1422847909442728 3.864178721259037 -0.9934780706064736) (-3.411316618129734 3.89809295114862 -0.8468891892949977) (-0.1039327913678578 0.002210927439943874 -0.5463949956233088) (-4.237056310500018 49.13267379059203 2.455672748693114) (0.07824496339591169 0.01461787385925147 0.1282061574111024) (0.1085171172600685 0.01327618238583007 -0.004899285120999554) (-0.2032077316954329 0.1928525459809487 -0.1181156107558217) (0.04753241897701113 0.2173600618809417 -5.496906244702184) (1.562850608430925 0.8382157350035755 -6.080177348803995) (-0.04827234092086881 0.03091479099007508 -5.163277147210663) (-0.01785253309885718 -0.07104983671343183 -5.803823680230339) (0.09778430152614614 -0.7295818942026517 -1.524056565012277) (0.314864756787872 0.418784570762057 -5.411542340291042) (-0.1324481814332125 -0.04193676147188038 -0.04611432643425403) (0.1922122017800979 0.192241534650907 -0.09288374687964296) (0.1524063190159012 0.6442077379388352 -0.9179667529986983) (-0.7919982854360959 0.4528305960676685 -1.047366111753807) (-0.006580422706951 0.3293790428141616 -0.1678809976755574) (0.01842952579620525 -0.1708209259820341 -5.110690421168856) (-0.01429175058434592 0.03701972602174994 -5.133533897684068) (-0.01193789792062026 0.007946663768926637 -0.03358289041277889) (0.03780159222128897 0.03986552327250591 -4.558063547774371) (-0.03905537465590861 -0.00501895162857322 -0.01283201205097138) (2.112560079190315 0.6004915954218962 -0.1863847700492388) (0.02943417674084833 0.02595476191674885 -4.545042438658551) (-1.615052136460704 0.05168464357880648 -0.8349946010154264) (0.02683739901664353 0.333951544805803 -6.819699106194606) (-0.0253974079041789 0.005555174354412086 0.0006644234549552687) (0.006195843784483354 -0.07723975995129383 -0.0370321950125662) (-0.1183989043422232 0.2353932802483069 -5.597665591937173) (-0.008132525244630989 -0.01755684462406351 -0.05443701893159651) (-0.1329044613300183 0.112201662588471 -0.0288635521373972) (0.02017827474118238 -0.01269119881857435 0.004913280158901233) (2.006302967181816 0.3782315817499575 -10.05765507385094) (-0.01134417012445936 0.006418811427753354 -0.05610513276479561) (0.02477015452092007 0.01582974523699304 -4.26689772826515) (-0.6636571813002914 1.265681522935558 -2.122936126916866) (-0.1514032472208379 1.081318951578613 -12.35370542129599) (0.012830534289001 -0.00737098619449751 0.01260039081565177) (0.007988226369185553 -0.006631478469261438 0.01520367200725592) (0.01085463955835544 -0.02635912925976296 -4.212826500899929) (-0.08344090062405923 0.04956534912384031 -0.09748203958097622) (-0.3438195886612367 1.658705785782373 -0.7037906160166265) (0.002612545950855027 -0.05418776966792388 -5.240522384573502) (0.06276697451171759 0.01324407023159471 -0.1601189414689483) (0.1359149576298523 -0.3852622058866642 -0.3191752089725006) (-2.148296119155835 -22.58353324735746 1.493109242994319) (-0.01700757887531237 -0.01649528798367932 -0.006319102264209304) (0.4334753793044653 -0.007834866137877788 -0.05500748253455325) (-0.09531629112514417 0.6828659077154728 -0.5075105846936457) (-0.01259328492909347 -0.01789854312395388 0.03155579906770803) (1.131136268285371 2.061828484242303 -3.023691425436553) (0.09591749762707119 0.02154363610797599 0.006839731285541252) (-0.01066303500060721 -0.007205611162560118 -0.009550049194879088) (2.871514706841739 1.724498411822876 2.900906856184591) (0.7594590224611522 1.232553628127581 0.322766681087846) (-0.1292761802025578 0.0407955481192469 0.02465640108482898) (3.137861200467492 7.946284142592217 9.568643268656416) (0.004198692935354575 0.02009245593445403 -0.1063661279879187) (3.309359773578747 4.737267724214238 -3.366162247798001) (-1.828005065905394 0.3865952308285574 0.9029803009753306) (2.33613767799209 -1.126713135014795 -5.175594981457746) (0.001054247855101616 0.1698443820775736 0.04956654847432995) (-0.02463907683226896 -0.02243848058235902 0.009130943333447553) (0.3914649255226152 -0.1954754118155833 -0.08268134213538236) (-0.364052610127498 -0.3630546321815444 -14.40001987843272) (-0.4646805846461218 -0.8516210259909957 -2.222844808101661) (0.01503152211549043 -0.02569414549848445 0.0003894550850942792) (0.3392856256077914 -0.2355217867966416 -0.005205617141336216) (-0.3216559214594653 -1.592297367772055 0.400616617022784) (0.423295551448135 -0.3861833696439144 0.07709293389154014) (1.501626761013764 5.094104724943624 -24.2112757833061) (0.1321260703572012 -0.9181940390900647 -0.3699891111403286) (-0.2471245080082631 -0.1825657227171349 0.1303331645690034) (-1.010406581314712 4.847199104146672 7.653404826620468) (0.9226261255496662 3.69240722754335 -1.150314009899449) (-0.5340064026797933 -2.392712771067467 -0.3733192208589404) (-1.10524449842943 4.660021788089785 -1.940763676879621) (-0.09425654964717063 -0.06332587822167862 0.1436601090126645) (-1.345492431046011 -0.8107253140533834 1.712061733830475) (-0.8529939566650169 0.1597121760547927 -0.3465443290670912) (-4.703345444043142 10.61574871348962 -10.04671753809973) (1.256861827846846 -1.428237849533091 -3.387742159756361) (-0.2995383247666492 -0.08657210788342257 0.09732383806935596) (-0.08156262759553937 -0.1166147473995962 0.0621067641902522) (0.1504617583680776 0.07678220681191678 -0.4122776294529865) (-1.614316774063197 9.977265562249647 -4.077797275614476) (0.05678330741049992 0.05178734216700676 -0.01763686362091927) (0.2320575496856055 -0.3207031597545817 -0.3004025065470473) (0.2413697625000916 -0.2376113909859066 -0.1574551110229199) (1.365949693427676 -0.5839032786725391 -1.729797222549255) (0.4797951651622171 -0.3668493151858369 -3.983535365311675) (-1.992831713276626 2.752080442832665 -0.4641516084165527) (0.5806816894929413 -7.637038989824485e-05 -9.155637245993143) (-0.5491830800314208 -1.079487260054477 -13.98079282673774) (0.114720645091527 0.02512868404823821 0.01091823940860482) (0.04454099677132307 -0.1678332692768491 -0.176617595989028) (-0.1315810848911364 0.03219534491100116 0.05752785565235956) (-0.3630571501910155 -0.1898868388644289 -0.06320558264453854) (-0.4102648208115994 -0.3837951692371195 -0.0643962506022468) (0.05174909146194753 0.01680785713118653 0.009590196220318819) (2.610003971237163 0.4065328235594544 -0.4128352786855104) (0.0165315877239411 0.00215062600324282 0.006091918643410552) (0.2615965485975072 0.1111723361635329 -5.170467350212819) (0.1131461351313502 0.06421723565035517 0.04198159196619228) (1.051106002261299 1.493545309634907 -0.6571938159668346) (0.3754206303163853 0.52734616909786 -1.884653089163392) (-1.540714181761455 0.1281929123648724 -0.5421971243766388) (-2.542729898686304 -0.2577936538303472 -0.2660958898619522) (-0.07818523949890649 0.08366699060389256 -0.02520119231900889) (0.03746139984256759 -0.05236541167894589 -0.07868272382963595) (-0.07670432181085705 -0.1222351487489592 -0.09638786878090173) (-0.08542312810234251 0.005127117198241728 -6.325125179703051) (0.02223772105971143 -0.01613030681722276 -0.006331024769385856) (0.004204875219147406 -0.006894970032568302 0.007154267778238355) (-14.73945270888132 -2.673525226592887 -2.816892424295569) (0.879497503858339 6.861447184354667 0.5353671650072047) (1.791256180855361 2.061683807171453 -0.09942558204371776) (0.9875161304432779 0.4091199403478323 0.6316673343275858) (-0.9190509452992606 2.021627418206402 -0.8006648159185952) (4.539165934522588 18.49508052540931 1.407731908935361) (-0.1014059921034001 -0.01147309130009512 -0.01854559688526008) (0.06380617619296995 -0.02521123459827456 0.02092368238554087) (-0.05105649278599034 0.01146354432498223 0.09441707942092317) (-0.1002839412659729 0.09067462492337681 -0.0211386599711914) (0.02766426326303419 0.08697366403680229 -0.02536100465377894) (0.04571917535822893 -0.01471604520893234 -0.02360381906049909) (0.0202214915028062 0.08216248201426621 -0.06393450985388205) (-0.1537868205017014 0.1333796660834692 -0.4259295910866124) (0.5827248236501873 -3.25202604829309 1.051900052869593) (-0.1462209065308006 0.9658781048559372 -0.6843930158585887) (-1.655471025372193 7.038827540643976 2.374834542247745) (0.8990828465413956 -1.155847554844755 -2.398267375961525) (-0.1441920385546198 -2.444151882630681 -3.71812953575521) (-2.395263143419146 3.825754011410375 -1.9822454752616) (0.3125075404000006 9.344673915621438 -1.649418946641936) (-0.5326588246235018 -0.1649235912479761 -0.5279501370521498) (0.06182090407546513 0.08225805516470651 0.1012888070787816) (0.7337311166469103 4.335858693081484 -4.18696417646167) (0.3117178827081423 -0.3303144931397276 -1.196405671602315) (0.06705627014225231 -0.01963732990654374 0.1506898706512647) (-1.291242751392627 -1.202391998912272 1.116404146849544) (0.2399379361880762 -0.5016901622403256 -0.2557108739792441) (-2.984407278360309 -3.950295545829754 -0.298008474277264) (-0.2592374327767288 0.1787043826457203 -0.06562663054159841) (-0.4305323838665134 -0.2928267633829776 -0.8880294945929401) (2.052153618208974 7.063244185473869 1.411442559966242) (0.2044264559754341 -2.409035690485787 -1.773497250429403) (-0.01151206043320249 0.08901779539979091 -0.01727988550352219) (2.18438616129902 -3.761622413264504 -0.8603243981700105) (-0.06209819631371551 0.01594078634915557 0.02880308249757133) (-0.9102463786610479 -1.336079119404498 -0.7135947905829653) (-0.00382840769724612 0.007176698966550384 0.0005628114719884694) (0.009082864338972353 0.02131379161113413 -0.01384837257631408) (-0.2565440998769956 0.1562115283857259 -0.3372164825521483) (-0.5473840103530505 1.722713793052104 -3.769037305663089) (-0.8124846787435582 -40.707162020082 2.537799785930108) (-0.8681742784395767 -1.201744477389144 1.535569333779621) (-2.969074584620455 -7.07399207286827 -2.679321292633819) (0.07327541729839651 0.01424160523611783 -0.1163962901262605) (0.5861652686135195 -0.2778069092050624 0.314851378709726) (0.1641251050698562 -46.8131020124941 -2.490505737812088) (0.04142056877805549 -0.0242301852139155 -5.74836824280239) (0.4970756114371382 -0.1025562948394877 0.06430352643362726) (0.503933552953673 3.508597692246791 -1.079521837732979) (-0.02141867629329208 -0.026042019116128 -0.005721341913021414) (0.1221060956893936 4.546641691471242 -4.993584904131981) (0.05116735562318679 0.0113268639151393 -0.004765332611832859) (1.699336047540989 3.33818195856979 -3.235208152100102) (-2.339238246435153 3.543568608896333 -1.041582395678463) (0.02577719083573994 0.0432227778874779 0.04169289713297042) (4.719263986941296 13.62721957526225 -8.423984378528196) (-0.01459963782858719 0.007127839144150099 0.02634000316087561) (0.1149123427901027 0.9398245972552484 -0.7606625799190523) (0.4253066093445756 0.419168076491734 -0.4244390058408559) (0.004859470868733052 0.007756873665183416 -0.001568193974143678) (0.1801247884701201 -0.1707794155458957 0.06669246580204868) (0.6488554236998659 3.035622044246951 1.359239381911777) (0.1135478571150581 1.423368041655922 -0.5852066270316172) (-0.1814898189971755 0.2411087886990501 -0.2622667965814204) (-0.1801219070961674 0.02029869754538999 -0.3614939283234911) (-0.6590319428771897 0.2210558066672254 -0.9783915252757257) (-0.8194837036296851 0.6926039231792351 0.4270353381890252) (0.04794614216066344 0.07416712728251702 -0.2079858141631269) (-0.07281436044191439 -0.1834362404455598 -0.02388336991399911) (-0.003854822755188089 0.005693157960144165 0.003603277969303528) (-1.065958266960827 -0.8760350273785812 -1.377812536727984) (0.3274561870377926 -0.1891300634461609 -0.8559669896873192) (-0.6229665690505457 -0.2929182072164802 0.04368976574128364) (0.2474211748088015 0.4953267411205913 -0.1665165622613393) (-0.02494882563432699 1.028906255257962 -0.8314127769247337) (-0.4764698653792257 28.78200302280664 6.670493407095994) (0.3412424298018363 -0.02714552510957828 0.1706626612731034) (-0.09758076763147572 0.974855466099939 0.3227221901506426) (3.694220497094665 -3.552609540886162 1.766776201106232) (0.694668713197847 0.3252659307957297 -2.000429577187656) (-0.2148821249852829 0.1357974726684702 -0.161785446489956) (0.6059857190415542 0.08244347906477145 -4.31693998625324) (-1.084043074482465 0.9190947934540965 -3.507229580950604) (-0.2465690695021089 -0.1610180281265362 0.206251730960776) (0.006836196253400536 0.002123296768339051 -0.001573265942291951) (-0.0115828995607667 -0.1027725322629155 0.04013431401726264) (-0.3101254127225552 0.08270387243180019 0.06358230388068833) (-6.183302733888526 -2.360302165679193 -5.029996165898104) (-0.8857341505727507 3.810174554660456 -1.75838956268836) (-0.08090365307819611 0.0006544551165732786 -0.07038495298563507) (-0.004842903856864993 -0.03593068923789329 -3.88930916385155) (-0.0290001360614244 -0.2169618215024177 -0.1185848089831147) (-0.04786448109062297 0.02168106987406807 -0.03890512725634843) (0.6745077455071256 -2.443904665793906 -1.251197287070078) (0.4123202652156085 -0.02569668094092967 -0.1076657429626642) (-0.03233998940477933 -0.003129511394471519 -5.850417974652728) (0.4755484051971341 0.1898243577223098 0.4217939501372753) (0.5302845198311279 0.1850470427657094 -0.1776672193122312) (-0.1839291088271156 0.0859923841059924 0.04635298695894988) (-0.006484664702564202 -0.01118338564247498 0.002680290422389492) (0.001497274898679037 -0.009382849119676523 -0.004783145396799038) (0.01689939044083779 0.01556643938324494 -0.01274753112631084) (0.1474384930223187 0.3114545880988144 0.07501269910402372) (-1.78466747983636 8.529118366266298 5.038072181087409) (-0.6416729214199562 -2.234852766092748 -3.378691649521129) (33.42930720365124 2.564671816593242 7.723383078020542) (0.3840642280196366 -1.008416526894533 -19.78511277243133) (-1.931053780794593 0.7578684348092705 -3.860169488762273) (1.782089905297779 1.100280775388738 -7.823793313549698) (0.4392462678925383 1.420302902200027 -20.02885548191071) (-0.7014134786468113 4.229499142213567 -0.7961165472641557) (-3.011153233734075 -7.983493856076701 -3.762976288640651) (-2.292953191481646 -5.408049939393514 -0.8731753877327262) (0.0129221303278394 3.127405545470216 1.416076050964347) (6.392974209701755 2.282258981216492 5.557787413707518) (-0.04993940163719229 -0.009102675896927977 0.0007020935052586379) (0.291417927549857 0.4313777869546864 -6.100022513338251) (-0.00569075136596733 -0.001470508772579114 0.008572265352164748) (0.01082173968155418 0.002276720024063279 0.004459469919760365) (-0.0635376989509181 -0.03076975780922077 -0.05291534751645857) (-0.05098864077665891 -0.06719655601820741 0.05024586198144012) (-0.08419426617664352 -0.3155738489956634 -0.02740654657976105) (0.1821156859391668 -0.04804910097277548 0.2340598146690104) (0.001588385182537899 0.3133847729190635 -0.411052091907111) (-0.5536252925450253 -1.230839800025345 -0.2632805094242466) (0.4836518697493691 -0.0190019499247718 -0.6705346893787801) (-0.4233495667669235 0.1457254069539964 -0.7240606377449682) (-0.02716257310713621 -0.2222976201423343 -5.5485502420435) (0.0296726249717051 0.1005843470646184 -0.2033291979556506) (0.002632783051315001 0.1360503089425132 0.2538191542215378) (0.02605350890212971 -0.03904202095826647 -0.1944099225692002) (0.08082683352216913 -9.851132091648033 -0.06759709545798631) (2.044329567698718 5.622444779855151 2.204999025899751) (0.8696713296261842 8.65741699820283 0.5480946527070019) (-2.281391772751035 2.689396984931981 -3.608161038677563) (0.2500403640050996 1.1289963881127 -0.5642245751582098) (0.1050425150029192 -0.04114283601398029 -0.0393026965532569) (0.004133476121814689 0.008448848932665939 -0.0761951831462709) (-0.03882708549317205 -0.02304482229412231 0.0315707640834812) (-0.01736062406273658 0.01463252376712473 -0.01299123272605543) (0.1379207667369584 0.2870883056892595 -0.7571212357209526) (-0.6155837516526883 -3.296893011912219 -0.6873122150883111) (0.1588756454992783 0.03576564797805546 0.04312899197883757) (-0.4578997779562269 -0.1362098947380618 0.1429849080527946) (3.856023798767206 -0.3597707075359384 1.165867084134186) (0.009979477797569469 -3.086981968941761 1.750057498389795) (-0.5749367496208521 -3.527654628902797 -2.31066462252927) (-0.4787751396614467 0.1219924564179782 0.04189853779303708) (0.1465985082770712 1.365522451972865 0.4470618302265366) (-1.754710717404402 2.27559438706022 -1.319044362126533) (-5.773034563450302 -2.344486798315682 -1.716452021664249) (1.346766504368307 -6.368268613708822 -27.41687235449333) (-0.04880576354073312 0.1159340281149187 0.2647243167276819) (0.4070680208200264 0.06807148598674825 0.1197300832004709) (0.1455004093582009 -0.1910393191430271 -0.6319546753815491) (-0.5824295350490942 1.430364031842372 -0.4675025087061336) (-0.06202738428525116 0.00298950176334362 0.04797314028123958) (-0.1270565455518072 0.1816627867738017 -0.02171853772504007) (-0.5225421858350783 -0.2803837866511534 0.3400954821365515) (-1.370008675678293 -8.660188757956472 2.0511855285502) (-0.05584106964426783 0.0324920699484133 0.1218674884167828) (0.02670044183492681 2.312342960517216 -7.593213599187017) (-0.2108726333059409 -32.04497363722348 0.1222912872376708) (0.0416477633322236 -0.01211404001934703 -0.003629319433133454) (0.5404546935281145 -0.5980639653850998 -0.7967111089422338) (0.02578041689792924 -0.4413353005365706 -0.244719595120661) (-0.6145771922914588 -7.725718652267592 -3.541718043522549) (0.1783299389406112 -1.481984451295951 0.04254425589697058) (0.0005308632886005249 -0.02105504080797064 -0.01970558320709679) (2.821508439961677 27.0927120672252 -0.2366750394375128) (0.6742827014507937 2.352423388481645 -0.95348954080882) (-0.3647686370683559 -0.2883353936576445 -0.7762461666388218) (0.7714068419579743 2.283681618323437 -2.10641745429912) (0.31053657345812 -3.357115016089597 -0.3427299523934658) (2.122808332002816 -2.152509407274613 0.4145759031752637) (1.944284864791139 -7.164786343714167 5.655020073760412) (0.07957938644756521 1.135187112912029 2.153130060256983) (-0.749458137708963 0.5314157106608871 -0.309994926007232) (0.7783113351283956 -1.531330289227323 -0.7483850234162239) (0.3381750345236042 -0.9134716706109816 -0.07256666870619925) (0.2458434347221443 1.002805597867691 -3.596189803793783) (-6.416950612643985 0.1117757322173061 0.4104898218221318) (-0.1322322931519499 0.07826496103994408 0.0643716111381662) (-0.147059947990581 3.434690994766381 13.15470882920378) (0.07049729978109071 25.98390525587062 -3.602821908657797) (0.04497151902716892 0.01704976882435959 -0.06981888121991722) (0.8808400288795863 1.984217587263629 0.8818375505671796) (-0.8791111515733787 0.3102623051303007 -0.161535037462787) (0.6685604190386287 5.612582559613845 -3.000393914179751) (-0.04185942384310622 0.1032121151095486 0.08530907211595197) (0.1371980808058936 -0.01747521362602258 -0.002054977389139293) (-3.285622376053458 4.808966147346701 1.968949689909159) (0.005924065870572201 0.00915173413270756 0.002444402447420495) (0.2150832398579044 0.01712305359907405 -0.04040060187683447) (-0.4960609912258156 0.6269120496814256 -0.1841497513978847) (0.02631315687183726 -0.04504607680016806 0.01595597444718335) (0.3757818821098792 4.162380642744296 -4.613397269409697) (-3.98332532150297 -5.913936038133109 -1.680396991825898) (-0.511958095773958 -4.415334959259129 -1.265371577370344) (-1.796314805167162 1.226034095995844 -4.441701203778466) (-0.1389245639082608 -0.2129941410842163 -0.05824862006188691) (0.3553543200742888 0.1500945911079013 -0.2324548221137264) (0.009032997579386401 -0.001555438514210167 -0.002596831536572522) (-0.01835733403847084 0.08658504118677476 0.02396539558690012) (0.01618526456644626 -0.173436871334392 -0.04489168109856667) (-0.0443759602571491 -0.108357232693904 0.008512304174461797) (-0.1178409645943218 -0.2991040146852694 0.2739117077805171) (3.100023245591318 0.6629323593960315 -3.412309858562169) (0.0538580048491532 -0.2295226154240362 0.09644246204623658) (-0.09691425981221034 0.1876528451063946 0.04839595327344986) (0.002888845872415356 0.004163323198533296 0.000139430250185292) (-0.04165875091225035 -0.03610141984315252 -0.02787222020278864) (-0.006309098905600174 0.1021317403386139 -0.3102325817385421) (0.3146728530670542 -0.3635306273333931 -1.193649030759109) (-6.050927613392195 1.75040401020055 1.671404285920821) (0.02680279687652505 0.00759895581323668 0.01694433054270053) (0.1636892283087286 -0.3552623898166283 -0.8132094910319581) (0.4251997690375416 -0.06703708737620484 0.08061620294671809) (-0.04333637928418374 -0.02754903264282535 -0.03948352244414743) (-0.2951783396928882 -0.2337346501531103 -0.1360627192627553) (20.73577108123096 15.11201179719231 -4.44338280579475) (0.1171769095210411 -0.8690998731199351 -0.3453490981229361) (-1.622034378284298 -0.218180606936482 1.773178126117447) (2.486571899162185 -0.9540002595510541 -2.386814869926234) (7.256305288993787 -1.976412455546932 1.930209859898719) (-3.473577095191819 0.8514090135185441 0.3259480701199244) (0.2198546654600304 0.4630849068084374 -0.115145982158102) (-0.06898159425277413 -0.02467285178236521 -0.01000620280429363) (-0.004203857297497003 -0.009803567267309139 -0.004511558593957809) (0.008188307477826541 0.00103649717703414 -0.007510226315259515) (-0.012452570647391 0.03015664026461945 -0.09946701637100083) (0.03969944596785028 0.06705932476268088 0.2711617210706306) (-0.0008531019097658705 0.01024771798839022 -0.02076188872632891) (0.08713760147570143 0.06804281674988695 0.0224118969320893) (-0.002387810518311093 0.001454355313487804 -0.003155240291900911) (-0.03124246021617286 -0.01538520093712648 0.1144961219846678) (-0.4370615167122086 0.1293687129119234 0.5223536638247596) (-0.3524683400083478 0.1789346881120773 0.1024617713788807) (0.2374293810786262 -0.4254845002481413 -0.490194650971836) (-0.06390597560670633 -0.07567884997847166 -0.009361355128919988) (-0.3336920291393475 -0.1041847113755039 -0.08588988771657367) (-0.003339850183136751 -0.01544000371499225 0.04732366533259724) (0.04309290158861277 -0.09730490609755515 0.1152178344519778) (0.002015757111465165 -0.0008985691481877625 0.03773256153512324) (-0.006149069749383993 0.008287110043519863 -0.006494628910381823) (0.5251724710294456 -1.662504340352319 -1.677670825270677) (-0.05840605992157136 -0.01612673027083824 -0.01257182155411116) (0.02104971457583561 -0.005789199448067788 -0.003543134562844394) (-0.2475001959374021 -0.2427917012012344 -1.476043120753863) (-3.402853866903715 -1.904667909166006 1.838325338729123) (-2.495700519192658 -20.71626374795902 -0.1814326586215549) (3.699899752717413 -1.741824757580065 -2.089620982871475) (-0.6305179305923014 0.03301500609821399 -0.1017512090264668) (-0.8578216588428794 34.20880524328109 1.22886832186096) (-0.1506055238513579 0.5723058308037009 -0.4734941185371404) (-0.04506682617239587 -0.05601617461724853 -0.0781481686726386) (-0.05629930355666085 -0.03669284814769287 0.02969198589135931) (-1.761776546136748 -0.7531402996623382 -0.4563546647249459) (-1.517382498415359 -2.592190373331461 2.723768353075243) (2.70670214203435 -1.898563797042707 -3.299155897454541) (0.9661499771177189 -6.448967224331518 -16.80344788724887) (4.774224106407376 2.003269462527274 4.854875474618621) (-0.03522814003198125 -3.126259502725979 5.893030158072553) (4.039281034295778 3.331400438741449 1.355764548512297) (-1.543986648069599 -2.512194041715079 -4.341220218375563) (0.1769092345521189 3.312784393999832 1.612567901506562) (-1.007928436285737 0.8263250475773845 0.06459238797525196) (0.05846912276114957 1.889676880920364 -0.0983793977886856) (-4.690984662826949 4.965122660057379 -3.360095576810841) (0.4144342527518899 1.461154521838387 -23.2216228530339) (0.7739198421263745 0.2492456805354925 -1.244286717444711) (-1.891647626414975 3.161541050212421 2.720712910845462) (0.04490290198282032 0.01670072069574266 -0.08518247489118877) (-0.03589280835054301 0.00546056169427141 0.005313362695963796) (0.02773441383044595 7.584815202672616e-05 -0.07921993799728437) (-0.05014269978622792 0.01146759181279777 -0.04021187355186818) (0.03852368187446935 -0.009151872433631754 -0.02746320827145616) (0.007032381353942729 0.01887602683602602 0.0009374771516813729) (-0.001319370385324627 -0.01791875216751404 -0.08299751908008746) (3.861436854951577 9.315835450237918 -5.060754118960401) (-0.5221742838021576 -7.895374717785533 8.689219455202247) (-0.04042058511615942 0.01267705891540967 0.007021008970670864) (1.16711539713564 -2.3998937642867 1.95030618835933) (-1.001310051264861 -10.31428435863666 2.004280937898889) (0.8938909611567832 20.64592531619734 2.644891166825624) (-0.05518249198353828 -3.523467458387953 -0.9782521867555163) (-0.03871278403107238 0.3473296659538763 -0.5467284922396748) (-4.646352437988187 -0.8032069785463181 2.844037596146752) (-3.781112142631456 -44.75312734939241 -2.63411600395627) (-0.04435598171995506 -0.02424757669897297 -0.01685403361793029) (0.9407227352122483 2.927355001348013 -3.1533368525287) (1.99020552950807 30.94663084509937 -6.813694909715154) (7.769036082837273 -0.4482035262614801 -8.055063445761277) (2.289780170600357 9.530209799521666 0.6286541451909755) (-0.01023199319661101 -0.007738782904334496 9.317576751467077e-05) (-1.76069063407836 -24.87436909580584 -2.688557380346531) (-2.224551605822964 -6.137865467380379 1.212028932175472) (-0.4791778859321068 -1.524933918166888 0.8985491656574277) (1.877917420042373 2.010545406487406 2.174638739909258) (1.662579454696335 -9.947432451716343 -2.975061366213279) (-0.5824200939255489 -1.518456386614977 -0.8549644138522144) (-3.695724586995862 -3.86515139487809 4.58105565609331) (-0.8546227936110014 0.566204728590848 -0.467333973906027) (2.181192669801946 2.304042120073085 -0.7550975821596995) (2.183477330448893 -0.05182028383667658 -3.246234604415271) (-1.551886992597926 1.293067415163623 0.05557557519387418) (-0.09017866000856778 9.868983990546569 -5.069090393844549) (-0.2347914800473916 2.273193231546134 -0.7409836200470727) (-0.08585989079767417 0.02522214973896231 0.026537199537218) (-1.806019220659341 0.4425866815526194 3.139852879364586) (1.001731327080929 0.4076880727761472 0.2385468270266773) (2.226416864922056 2.16125882870415 2.404522173046023) (-3.25410817451441 7.276799203813392 -4.069186740818293) (-0.9959615891424395 0.2446035754342916 -23.34944356145938) (4.250650603544919 -4.327036719331212 -3.032187540968349) (0.5318945102106374 -0.4385834896922602 -0.9033461428684202) (2.251665385765541 -2.008092311384909 -3.54433814747386) (0.1091680602903098 11.44882117533084 -1.127858488366291) (-0.4884885682661374 -0.5928825164617573 -1.660181304641986) (1.257587364792048 0.6049488392535407 0.9331541343287196) (-0.2561883426666854 0.9679860646277431 -2.624571541654952) (-0.7856767618767106 -13.26724876691329 8.721707203413217) (0.1455096047318299 -2.338819971684389 0.04391159203288275) (-2.041522515412959 -6.386041614135985 0.7998115253329372) (-1.935525556585452 -6.546053812237474 2.693513616245795) (-0.9208185019558494 -13.30601350456583 1.97576986369429) (0.2264860518314487 -0.1496337776310158 0.02192179452673617) (-0.04815630179763498 -7.520900924890515 5.786069731960591) (3.634701794101824 10.22141003515431 0.5394735229834812) (2.615517882251237 -3.863659030105332 -2.169939462579189) (3.540378604992243 12.27329243914311 1.48486249248577) (0.3290285437193903 9.475293668516798 6.588833380868987) (-0.1283344131445608 -5.369076532146196 2.54891995540658) (3.235878173163365 31.3474853851714 5.116976042155969) (0.5755389830861354 -0.4166324572794055 0.2707670576087243) (-0.05881002343078684 -0.5881648176584668 -0.1914872844540013) (0.1779671792053351 1.166419518158912 0.01617916011354381) (3.974216426272767 1.91016038900283 2.204562832785149) (0.8940571700949804 -0.09957483674547025 -0.6439086152627342) (-0.64052084662553 6.743536139113482 -0.7833944912400922) (-1.162081234184548 1.268045614035985 -5.122224531017003) (-1.568346274728871 10.16155247417381 -5.092267018993862) (0.2455736419793833 -3.365594723267801 1.658966437828383) (0.1637283860694229 -0.2532702907204423 0.04151467799038264) (-0.9791118987436125 2.559285527500754 -3.779601746739203) (0.4614273165332061 5.936340819436487 -0.7850824378846651) (0.7784011065260545 1.1169671649306 -3.789441603872523) (4.679684674001837 5.749428688942573 5.9371884387085) (-1.475079150715068 6.957345587243075 4.798536105353695) (-1.920988218432463 4.541643032104218 2.12696889667571) (-2.016270015510683 7.041122776019328 2.792506667913168) (0.1669197843347137 0.9056353006568973 5.357816015445714) (0.4133944770110204 0.3193996691122039 -0.9063101458732217) (0.8029502643333958 -0.5200224664781916 0.1384106263886425) (-3.030668662518221 -5.662156777546745 -1.027458735816249) (0.2163271928012509 -4.763367871154291 4.831722445607848) (2.960907544763566 9.033136781936431 -1.50900422852156) (-1.762109685916653 5.430929357336383 4.52136014804115) (0.03483562284176131 -0.2832116738016758 -0.4873525772390916) (-0.9909672444807373 0.2942078700147375 0.8016561511447088) (0.003145888476884788 -0.1089403031363786 0.08168415707128653) (0.00551725651130886 0.003179722494233771 0.02710264030578752) (1.632855680995679 0.01859344792336935 -1.66151167774687) (-0.8946631236473028 -0.4453920923036069 -10.93831276350057) (0.4050179600027919 -0.03731498836192815 0.2671925574961828) (1.041900710498593 -2.373359383306583 2.549562510098947) (1.413631653516913 3.196855373054577 -3.586105704552507) (-0.7350831922229075 -6.173091522726671 0.3388785628470486) (-0.1239283305859983 0.2636723220671318 0.1925813047705936) (4.236141696356712 10.67529142141711 -4.017484234568744) (1.23672965239257 -2.848945897841718 -0.6024882666390501) (0.2730408919131611 -0.460959893463498 0.1485799367683331) (-3.682946731889253 3.015823240220382 -3.388419075707484) (-1.250451505446108 -1.954643064931738 1.031259128531902) (0.001013374751175425 -0.001766983836038911 0.01006113667473529) (0.1116109474450222 0.02831363552913053 -0.09194468281706313) (-0.04390038288273179 0.1713287282916837 -0.03674540753207328) (0.7045212267259446 0.4594834541783441 -0.4906513727394023) (-0.02453176476753133 0.1071557104388617 0.1622606953957691) (2.392585353801992 -0.5029708406843199 2.391454482700197) (-0.4622672826056526 -3.171019984452069 -4.450348668430646) (3.280911482596371 1.882207903783828 -1.501433705262703) (-0.4061722222590672 0.2048008943082183 -0.01398001921457283) (-1.575404895590482 0.8273969162547389 -1.397789489792699) (0.0780538002090993 -0.03285743442658681 0.02809602712084506) (0.03194069890893964 -0.0242622959340982 0.01414174464428597) (-0.0005456928194623955 -0.005594883676611961 -0.003102290987112604) (-0.1684140853275428 -0.01812369683938372 0.003503861812380153) (0.04582540419434995 -0.005429727334030028 -0.1937931924097554) (0.02130146193847984 0.04227516857819186 -0.0252286260645595) (-0.7772057519143494 -1.462505985838611 -3.471916289028806) (3.402564435235133 0.1001455218637122 -2.185819440837489) (0.1191765982656485 -0.05171352407845331 0.06981837453343272) (0.1443791910489557 0.2109463266512219 -0.2770212151069149) (-0.7595475567738561 11.76118251305037 -4.576604180535581) (4.041352636795525 4.173613535281695 5.345176545169572) (-0.4604505306494341 0.7110924684267868 0.2370187982367354) (1.081621516146972 4.47016304350843 -10.71906201825993) (-0.3741486624475866 4.794816918973602 3.261649595651886) (2.053883513220159 6.578098974430707 -0.5257679986988767) (-0.2168260704147285 -0.003008523515079454 0.04501573562621041) (-0.03100189223756524 0.08333027750773454 0.06529656704266916) (-2.124143649388065 -0.003699280099121849 0.625362008472183) (-0.1080505827837112 0.09741661796642231 0.04378381017130008) (0.008130012197963114 0.01433070527737445 -0.007740798855609543) (-0.0902011529923869 -0.1220947909396063 0.1736739214830814) (0.4900824440793008 3.505641933516891 -0.7210792935354036) (-0.3435035422418694 0.02005580385794323 -0.03251092096322694) (3.581853654639875 -5.352884017397102 21.9659255308477) (0.6525415927821133 -0.5495768051994611 -0.32775666320513) (1.610487222121301 0.6556830671811517 0.1189909528810152) (0.08985520436849664 0.0003334181064861448 -0.06155918097489797) (-0.04040777741888309 -0.05274398470703934 0.1690822752877217) (-0.01569776416421472 0.03365182408146105 -0.02538889517838679) (-0.1094420435230855 0.2387275290700536 -0.3084544608014596) (-2.093030901172907 0.4177881103818325 -0.227209425342511) (-0.04663089863183952 -0.02913616398437113 -0.07778502265971811) (0.2613920502722146 3.106239319001503 0.01341428418413934) (-0.3274186919461407 -0.3418217247722737 0.07970587366473011) (-0.3334133913961759 -33.53301619384267 -4.469555393473297) (-0.03491891823559692 0.01801033409511714 0.02280852276768453) (-0.02653426958857906 0.02856351246253698 0.1112918154592475) (0.9999154954341009 0.519003427528151 -1.281291678380917) (-0.6655325723008778 7.620673478040922 3.413058657650001) (2.285731332271479 10.41603306367359 3.766753942740231) (-3.00077961293838 8.366876013015922 1.729165440958238) (0.2414613729911731 0.003350457380248278 -0.2938800673860129) (-0.0518470745789474 -0.06087926943299891 0.02763605524264309) (0.09644202860148679 1.093282470216362 -0.05736628488715361) (0.09044225625151543 0.04002426694799926 -0.02036158837900813) (0.02167170733594808 -0.3366511240112761 -0.0505782545226276) (0.2450721867849458 -0.1282146254955334 -0.09380982555017792) (-0.005499874864305727 0.001671648984329557 -0.00450055489461606) (2.209048896676047 -0.5421246095308129 -10.77318027410038) (-0.008853122194878348 -0.03498783969717373 -0.1859841234556884) (-0.1768923456875565 1.547584326456766 0.3623221474244607) (-0.145847996051985 -0.06014106131531244 0.2615824157529336) (0.004659365028306404 0.03288163350068315 -0.01003403519891764) (0.08586365995458273 -0.04504276318602421 -0.04869175140314475) (-0.1474348052020889 -0.141328079478021 -0.1295699870790981) (-3.009053664705588 7.994903984914677 -5.455408626481007) (-1.512499139168208 -17.64105636388326 8.282124442407712) (-33.79745043950369 -25.29999892589665 -0.1093165743448283) (4.671180483218704 40.17520350558424 6.374754743256622) (0.02702242051589095 -2.52773920787035 -0.1362436229839997) (3.897029624004014 3.558915709884104 0.7273477162389483) (-0.947008818136801 2.627650504192668 1.916248193812738) (-1.111479948542299 -1.706766864981039 2.291328563960315) (1.343202748150248 -3.588064987109385 -1.563784881715176) (0.4279601503032496 -5.410761991429088 0.8499246715691646) (-1.147602269093597 -3.334634445987951 -0.5693457060015096) (-0.01067841329523023 -2.930606355975944 3.274461064939249) (-0.08846357697322503 -1.427850800704468 0.5104676781684767) (-1.083029467859174 -4.670196202375093 -2.638549988368088) (0.04317009379836179 0.3755936137901628 -0.5642279084024764) (1.187139627797023 2.777846958716788 -0.3601089494329674) (-0.6909465511186581 1.31807855606708 4.306092210587872) (-1.979932196552198 2.627919821876409 1.074915636661801) (1.439872997526199 2.315807178135848 -0.05240932000660337) (5.328580549770011 -5.43082902655063 1.983994110373882) (0.169206523014044 -3.170203488200682 -0.8820441571748143) (-1.449855707295594 -3.003986398218488 3.000489526075486) (-0.4827830718605213 -4.282461447049215 1.194661236737306) (-0.06465908405863161 -28.98803965947589 -4.038538890594205) (-1.394109852569459 -50.42880069790903 -1.348103320208743) (1.42160607701453 -2.76878432414232 0.2224741918778329) (-0.02699144129523049 0.002461901524805472 0.009243429575113218) (0.02207224571876882 -0.03592407016504513 -0.006907022292079748) (0.01563469265171126 0.001649934077447213 0.02479253766022551) (-0.0118893511883055 0.00879910871519066 0.007108579175692064) (-0.1568573091425869 -0.1401541448646099 -0.05768895187654458) (0.0483930997840956 0.04843606149374678 0.06966012040336873) (0.02162985724655939 -0.02023969087338703 -0.00410146675434414) (-2.40087359346815 -28.36816982354661 -2.407812484685071) (-1.290583122444209 -1.836147374595508 -0.1527706540539295) (1.548760262377199 -3.633798641279042 -2.605737442651925) (-1.912550006607008 7.199728574474031 0.4460157392849972) (-0.19985906023866 0.06054581305936729 1.054264108107091) (-0.0163376580860608 9.265310718407502 4.050702671366743) (7.028026052482425 34.24625049836369 -3.252045153428461) (-0.8385768183472031 1.643521259887094 -0.5365013740896406) (-0.1588013927638853 -5.671340393186018 -2.405157624656176) (1.015913518571055 0.7078757788815195 -17.13687905686463) (-2.313431096077183 -5.093473706925352 3.227785393725904) (0.6817280449449026 -2.462498086911607 -4.050271086269984) (-3.781037247952558 -3.873332990180915 -1.741047359311292) (-2.902355619596421 9.157953977394563 -4.721045135962267) (-1.876983306793393 -7.135311444593475 -2.083618670875445) (2.920795024580305 0.07596353189035243 0.9172497087874466) (-0.02113724290496767 0.02054819957819246 -0.01091609917234878) (-4.576666115936135 -16.58809984066417 -4.099411728461463) (0.3369320811255183 2.007037770385036 -0.300060964297365) (-0.7190807365683783 -2.636485678503444 1.15908885133846) (0.07770155827994549 -0.4617968563507689 0.3134589197467449) (-0.1536691623813118 8.562637065725543 -1.488873265684485) (0.5556043248081148 3.909552197838114 0.4989693938701462) (-1.397696237619284 0.6357786456822005 -7.20200687775942) (0.4339511790594465 5.533557745242036 -1.682369302641743) (0.04477292239534358 0.7437791355278329 0.07598849289783291) (-2.253067340228557 9.519492902413715 -1.781339201412901) (-29.24002347014507 4.761211808751679 5.238566747281539) (0.03104164601327199 0.1014205891370137 0.2305998889483722) (-12.12770100650651 -45.90261927689211 2.290597879793504) (2.810686409619053 -0.266597046278123 0.02482335060958729) (0.1468036142258246 -0.04255068166253326 0.03152572579448874) (0.7740243442310304 -0.4817634852213288 -0.1346487283309664) (-2.50579888008077 -38.05919619641584 -8.742944834832091) (-0.07257495691438542 -1.997284492139992 -0.1167343640541874) (-0.8524689324800337 -6.794044274576928 1.275982710034279) (2.649562483075454 3.502398976063955 2.6793939924471) (-4.243914983925746 -9.064821332260749 3.008687907346309) (-0.01081161864348573 -0.02823778756935791 -1.18410438306731) (0.2031756998462722 0.7409014506270433 -3.256774078116642) (-2.074269939229223 -9.159495814715488 3.422713365179239) (-2.840241731234955 -0.4862286374663478 -3.780471163220875) (-3.114682876586905 -5.532834157510947 3.511556821735005) (1.657647318174911 2.575237022319233 -4.020645601080071) (0.6040339189470934 -14.10760149240235 2.365286688361083) (2.746696380969585 7.72369055041052 2.427946097004331) (-0.2667378351481167 0.03834651127031977 -0.06545478869536112) (0.2219581121297092 -0.1553464325396596 0.058376059947638) (0.4291998254911555 0.116399304073581 0.207773866561387) (1.07650767444409 -0.244679368431469 0.2157014599891667) (-15.16636951243025 -26.63564970703257 -10.06716041814064) (-0.1685545361314706 0.413408034869691 -0.1824296721226365) (0.03164473360687611 -0.09326026531303326 -0.02954520127903348) (-1.763618111053019 -6.287158969124834 3.58705907110237) (-0.2185012025193884 -0.8882865690824272 -0.352611995942433) (0.30424309384751 -0.05037385293039771 -0.08937992055196292) (-0.1238682172307087 0.05361269842174664 0.04675324601483159) (0.2905679887723293 -1.913179574780769 0.8181515109496157) (-0.4497440237938494 -3.74150287018579 0.8055844385894652) (-4.405950179332542 -10.77982183723808 -1.550104069866732) (-0.1844605217692385 0.03102355713601497 0.06015706683765803) (0.1369756464177101 0.02275054211813551 -0.02866216408299429) (-1.462657493225378 -6.368413967345429 3.545241720122467) (-3.024423605418631 -8.788285177256153 1.949500306652761) (2.787868340425002 7.155149433723392 -2.601844899135125) (3.708149168800612 1.112870445451076 0.6493742745355648) (0.3769185976539372 12.40960858503429 -0.529220159835935) (-0.3363658573629665 -2.71893857495444 0.5993133039124446) (-0.286518401217041 -0.305491723012685 -0.4144827583141402) (-0.4471224265263467 0.6083787318024803 2.706253379585524) (-1.272278717339391 -0.9163492889847644 -2.169305716617837) (-0.2070358858623759 1.009617180587738 -0.1551151037182751) (-0.1170016301913107 0.1313290872432928 -0.2485017285966308) (0.09594922023625101 -0.03010144789381922 0.06808320321684816) (-0.08458666188392348 0.009109186595116309 -0.003956371445273225) (0.05984966437243593 -0.1391658771773588 -0.2444433677329941) (-0.02985956625342787 -0.01727238824185718 -0.01392870333512729) (0.1412941251100796 0.1322428378252988 -0.5655964362904385) (-2.014434232751952 -0.2684628085274673 -1.875909912866844) (1.586483055821647 1.529145482882452 -1.644755599703669) (-0.02162259236375879 0.05392107600061533 -0.04630097502115918) (-0.236697193325957 0.1822285949618427 0.08115664959359827) (-5.107844615193546 -4.463551946489956 1.150965216876897) (0.1703949642591328 4.887537321121605 0.3185882304454815) (0.8341322182576005 3.437602109692845 2.24558522402755) (0.7067688539668034 6.023700723221626 1.184147957320198) (-2.187284634360505 0.3249720096765689 -1.105898694311582) (2.274859871890205 -0.02399467008554956 4.995940574677989) (0.1586034694660325 -0.5135851985444844 -1.021630972480846) (-2.872824990155416 -4.239453016308516 -6.677164939117656) (0.003161394947156223 0.1052779557167428 0.03822131764432792) (10.6613113080358 13.38785575696245 22.2701481147259) (-8.939647488421532 5.418363813969966 79.66361441485635) (-1.940642843286281 -0.3918652120660082 1.845427875110279) (0.04645076699114863 -0.008922940951641672 -0.03373238651878941) (1.083882795550915 1.873544984660473 -6.897106776991555) (0.2474944297810781 0.5836698717236702 -0.7021773822892999) (-0.06699914229999263 0.01164830646461826 0.08957881517582149) (-8.103985737774755 7.895728324880867 -5.913239349349672) (0.0147719502854666 0.007553562809181142 0.0390506250911916) (0.8822932717183918 -0.2398174871350872 0.02670741130818189) (0.07565709923711583 0.04774391762481316 -0.06468820412705269) (-2.015612729253363 -0.1927350702265086 -0.1770932366715669) (0.03672654313044305 0.01398680732667468 -0.1524888835605682) (0.02557713024797715 -0.7161245917043439 -0.4780716994642727) (1.002841707128046 0.4518775924860637 -12.00442561065251) (-0.4406317371509833 1.402483961868661 -1.141972603389128) (0.1029020773166466 0.1546044532894351 0.09448532612448904) (0.8593969908378321 0.5515323712246349 -0.4657291796600141) (-0.2210708751887364 -0.2111779107801306 -2.776092421803478) (0.8046815244631486 1.336928863076549 -1.444967154768932) (0.0546031442712242 -0.05324422300004658 0.09877869044603928) (-0.06186715813308899 0.02904109653888054 0.02062175963919123) (-1.893515551534662 0.2680813962543827 -0.3079860866914736) (4.598327212511149 8.664337772221586 -1.381893266074083) (0.01146835185867498 0.1355266063955667 -0.1860033382989764) (0.03243487339615328 -1.340236979758601 -1.852372214474501) (-0.4849547488274876 0.6364335743645317 -0.6205851590227301) (0.01296880221493898 -0.03832139986921329 -0.0783158169709989) (0.7074995952824022 0.6332524378886629 -2.124705407024401) (2.298867326725154 10.40114761916844 0.282109471658138) (0.03394554377794203 -0.008062146042281034 0.01187111232285448) (0.0677649444414149 -0.006059311535819373 -0.01206064741648081) (7.805566184245077 9.239599044084684 -16.17570329711126) (0.01229467647166904 4.029697704767575 3.283089378224579) (-0.09740996168709981 -0.184418827866955 -2.206168856551452) (0.05274837753505371 0.007419440022426754 -0.05004484210946437) (1.424816947786113 23.43689830587291 -2.701417932294238) (-0.03535406333659137 -0.005079854674246976 0.05128057019669488) (-0.02301720728240971 -0.1122499262552483 0.01715770581450971) (-0.1949000578564572 0.2420045628001668 -0.1706066883715434) (-0.4364753625826243 -0.2529163441267133 -0.1226178451217143) (-0.1826059612872853 0.406924073418684 0.335982757706364) (-0.3821743024466105 0.2941126115422487 0.2963078113164883) (0.3188565380444489 8.50010683099992 -0.7686584699363681) (2.973192566460357 -0.443453805730423 -5.290696514735076) (0.4703954987798085 0.004632438238085013 0.2170575740683565) (0.4405899321325522 -0.1107877814212522 -0.1141927274176961) (0.09003538507820139 0.5161747372547489 0.1828376128469713) (1.196184560069047 -7.504644486273412 2.308220917802765) (0.5652438843793355 -8.494538887789703 3.326036950444389) (-0.483492671054693 -2.093005319452601 -4.030279960324924) (1.52768598022897 1.723664754215023 -0.08441832510257236) (0.1099640821152435 -0.08726053483031024 -0.03963055897412352) (-8.447949529293474 -8.460822317607901 3.705091300222252) (-0.2692301494163386 -0.1445733951099064 0.1400674004705267) (-1.512916409848968 -2.281262346557212 -0.7684464325415026) (0.4524623342528464 -0.7871231001305974 -0.9760359723859264) (-0.9236054891930463 6.886364984259086 -4.497583481475205) (-3.404790672377596 0.007337574963210303 1.303369881225858) (1.723084218594062 -0.8422893885482157 0.7269983068438914) (-0.04851520479038997 -0.05310178542704601 0.007611984549557556) (0.03536217417001313 -0.09237263186282932 -0.3307440632927988) (0.4817164513996647 -4.634929292734079 0.5059076404007006) (0.01747087167465058 0.03623572043928786 0.06478916230810661) (3.307762975091517 34.11851008541815 3.310761960266233) (0.08478472586026974 -1.176221135877617 0.4751540956578802) (-0.3096871389465065 0.984263579477028 0.1807701994758392) (1.129528430273893 -8.381627514274633 1.230485763267866) (0.09847562051779007 -2.041746751873979 0.7564841804188034) (-0.04313524394416456 0.00807563834844848 -0.0008619892903103106) (-0.06509328830471674 -0.2397350091732655 -0.0498597871054992) (0.00996333339098416 -0.01014598751194381 0.0007670126385634322) (0.1470651726124398 0.5185985767421242 0.2204709099036881) (0.03025499258104341 -0.03103511826831183 -0.007037391123950541) (0.003809841637893068 -0.03096780923498131 -0.01727282514066701) (0.004381620128225219 -0.008925432994549206 -0.05680469201680805) (0.01285581525946366 0.001503670084221898 -0.003399212653209216) (-1.142375250671176 6.258257335069382 -2.735919639890216) (-0.5341715989794509 1.482328467350347 -0.05515227736845751) (-0.1727064108670237 -1.938020254987419 1.142835788516788) (-0.8098276220710313 1.821832601619824 -0.2158743001645173) (-0.2205700101139562 -0.05650391495624571 0.2245889034463341) (0.04860189103677221 0.02014422897502058 -0.01609487004545125) (-0.000323631567329289 0.003271749780460056 0.007463491713990071) (-1.178870849036366 -0.6046548537402298 -10.78666745281229) (0.6831366071735474 -0.3613830631461945 -0.1875223728058513) (0.6235172969446028 0.562240993447338 0.02126958207581213) (0.7083922556460612 1.332979611454173 -1.038713952282724) (0.1211436907186193 -0.03488396619808508 -0.0539934201884454) (0.02127136908608288 -0.01585120480685338 -0.0178367386442542) (0.04143433343249643 -0.05285887950829737 -4.312440239242255) (0.01629921174921797 -0.03217170099965408 0.02940396125184801) (0.01975551902735066 -0.02508632512447877 0.009900872789480201) (0.007827946033181972 -0.05542637769388131 -0.03110505077779851) (-0.002644637844698166 -0.01462966187897537 0.009951249759149232) (0.0005020953871082093 0.009832219638150277 -0.00830057539930853) (-0.01823040501829309 0.0339471111300552 0.03397648830194373) (0.02812986166910663 0.01340267262739123 -6.202850349794805) (2.017857477580064 6.466032634472389 -1.042739954650047) (1.109316236312125 3.985959744636226 1.244318282113261) (0.05429062205399017 0.01401547304670763 -5.176482044144527) (-0.02117631616151645 0.002500808915753393 0.02596013807733273) (-0.6055378389493162 0.4507689804462237 -0.2891873780801326) (-2.384465550994375 -24.94345048825579 -2.545515590522478) (1.081906795724398 15.60840257667107 1.849324480324507) (-2.187200589922536 -4.161021555085691 3.107135435461096) (0.8015782022751798 -0.308443263504362 -3.629847553755211) (-0.01505048210360194 -0.02927257655559981 -0.02035314617450349) (-0.6357781583619222 1.42703557268767 -0.1491459303846948) (-0.0863254501722925 0.02176681083739114 0.02156071825418034) (0.06813317159487112 -0.002073238761219332 -0.006558173643481563) (-0.07664512419537356 -0.080083269722377 0.01381169743498855) (-0.3213987938088884 0.2475918489419907 -0.05109587315503306) (-0.01353608058361914 -0.01405541380964064 -0.02036404535500215) (-0.1151094112774005 -0.2124761045409137 0.1938966449240518) (0.01846789667525925 -0.008151532302746687 0.04296570701841114) (-0.1314371740777775 -0.0873862712080091 0.09589035770958285) (-0.03802217938348882 0.01659529858265162 -0.0108847750388022) (0.2006384340218497 0.06518338989701938 -0.05794973781669359) (-0.04951182431267442 -0.08201869076305204 -0.1180708601530244) (-0.07862753670064476 0.1028746026055271 0.1927932960865713) (-7.011812784114372 31.98069747962479 2.107169507594086) (0.4776244025361 4.022753051731577 -2.129759045554341) (0.6342025579790034 -4.443278165752028 -0.3826914768952812) (-0.4459884784058757 -2.308733893440727 -0.3177968507696226) (-1.02972804938128 -10.84876787728431 0.6242191750005071) (-6.963044268982739 -4.515782772269562 1.566528177351223) (5.054029950837189 30.43685786822688 2.276471687377742) (0.3431902786803511 -0.6345393018738608 0.08098682177397111) (-1.463637009114342 -13.25207670934343 -5.131763461836202) (-0.3507014775962114 -2.642943556242022 -0.9628702148840819) (2.155599263985582 10.05021488845604 3.972809797885112) (-0.6179481631508772 -0.5909679974628543 0.1068716753481452) (0.8327907537552528 8.355514101361143 0.7098689228010191) (7.010798479502953 6.818073860479781 13.16949319898168) (4.802791711142876 3.113363001276048 -6.970771670731364) (-0.7786534003059473 0.06248283548806266 -0.1720421944431526) (1.757393381473849 1.806058028335905 -0.2812563042332913) (-0.09635591024044904 -1.354538360920335 0.3716073344156668) (0.1442955903809845 -0.1040627522277885 -0.3161940222828813) (-3.011351183947884 -4.895223730020978 1.87096592948753) (-0.2507361264119411 -1.809154621274561 1.05631550113204) (-0.02444760987046991 -0.0191980523092221 0.05383796926841904) (-0.3135489362626465 0.52320740188257 -0.9496888345310215) (0.4856987734040491 -2.825854912363383 -0.8324240773558648) (-2.875603062570817 -0.5852842933567644 -2.45505774712442) (-0.4574497632768754 5.865021617911169 1.387773836961066) (-1.062576359593769 1.964473894535877 0.2349323153885491) (0.1245898539901421 0.6347394214251199 -1.114362936707229) (1.584450635303548 2.41407046119522 -1.035512795228763) (-1.490373890567009 1.382912440976237 -0.1667266657977694) (2.286284389094373 7.559049575454829 1.361266767558021) (0.03356301595507505 0.6230791295708138 -3.649158137950298) (-2.538748379378031 0.5340320094064828 -1.962875693909954) (0.4298049189922713 -0.2524840779155761 -6.720995690427844) (-3.640074997748993 4.230301300499932 2.114870524114047) (6.507565105559576 36.45772399958336 -2.211931126539029) (0.296248217409158 34.0735209433515 4.429260717762995) (4.749386816058499 7.452705630921886 -1.699872090082304) (3.979043382854937 4.832847909317817 2.480729696306615) (0.4478244463338901 8.134442453725237 -4.41902559461145) (-0.4136387354543444 0.1187263318674012 0.1718204855216219) (-1.363816474028151 1.537128596344684 3.606998410901716) (-0.08716152631325474 -1.100851308154449 -0.4520210557583825) (0.2946884491689856 0.1449847695698472 -0.05301831650679523) (0.1453633067110771 4.37954764329137 -0.147559476754887) (-0.02578600734833602 0.01853275614196765 0.01394557879121887) (0.02709020366864826 -0.02937298095251765 -0.08679854203931604) (0.7541948262355531 3.238077545102001 -0.02086985458119289) (-0.9473180780635191 -2.341951562019471 3.504152339818796) (1.876978965143328 6.164108659061096 1.769965082456778) (-5.090590893686617 4.300134605279187 -1.400002536782312) (0.09220847147340874 2.465347860582501 1.004242285726769) (0.2984526223216754 0.5237792058662376 0.4591515607715343) (1.180242155877221 0.750917573416831 -1.561644235236191) (1.324882760308712 29.4934093848468 6.932406566908963) (0.005688668076394723 -0.004057627276699457 -0.02642569350073289) (0.09498646895920126 1.760741842682054 -2.710651152847734) (0.3409297190503473 0.8159446821388054 0.7114600848870292) (1.077858135898654 0.04289146038075525 -0.1793927239175046) (-3.667033232910591 3.920951666500918 0.4461097750248348) (0.0810711074514171 -0.07728351018797834 0.02326064014174625) (0.3559096981023865 0.2139606682362293 -0.003610116437112149) (-2.685960452756521 3.120548582298667 -0.1376902764212802) (0.1655220615828916 0.3731766877058905 0.2970300369490125) (2.449457141313289 1.830023415550698 0.6174059697823113) (0.0766758659202138 -0.08345508062417366 -0.03448560402706807) (-0.722924801951274 0.700309750479849 -1.100417176539911) (-1.283037478116551 1.370099536637196 0.1333498231429883) (0.153437100838361 -0.876602670377824 0.5665954650663261) (0.3840825750026939 -1.067047535866291 0.02047309579038264) (1.887736978169156 5.090560072225865 3.250808744809177) (-0.1718509615235495 -2.174682390461366 -0.3797105546182246) (-0.5651266766677062 -0.8254794311353387 -0.5507290966255454) (0.216766686477273 -0.9315587045148083 0.5766091503161184) (0.1380418776099945 -0.04346463984406077 0.03628697408113741) (0.1802911236735698 -0.0526719199460401 0.06785996711081781) (0.07010861246685883 -0.04205431606614385 -0.06585534451761749) (-0.01426158678978976 0.007919332074102781 0.04118717094420306) (0.9933966912318934 -1.622555059452738 -2.911707024736796) (2.553013240074104 4.039441839548104 1.152843008918931) (1.149532676778631 2.578038641492663 1.093974416114412) (-0.2189767887863167 1.779174211713441 -0.1843907358208641) (-1.279792886392345 -2.863450456433747 -12.30844203460793) (-0.01130171773363944 0.1787256982916456 -0.08287883919283395) (-0.01290861762823153 0.02126347376361591 0.06486384261674963) (0.1036577939476032 -0.009674162789887544 -0.05433895871041441) (0.05467339069880427 0.04491789393605668 0.1452661015135198) (-2.183053758435236 -9.64857680583062 0.670481118325331) (0.6719904837418355 0.2998418272855052 -0.7298855316293329) (-0.01343623611992553 0.006705676241418478 -0.005837265468122708) (0.1497784364948443 0.02508765360174137 -0.08835910118663309) (0.001697180432102697 -0.01895113678532686 -0.004394366316013007) (0.4592441692367366 0.308401558463052 -0.2547396151010962) (0.4009496775974712 -0.1427716243342972 0.1603444240398892) (-0.0231333684015506 0.00754699412155203 -0.03118457793581675) (-0.0474789281487932 -0.01792502591129325 0.1145393705833256) (-0.07026695141320746 0.01108971488742249 0.02008243007697883) (-0.7187951251923441 0.2447477336041592 0.3896491267460378) (-0.09889360938652457 -0.2604620266712276 0.01917531086383038) (-0.1438488946326807 0.4001403239036785 0.008967838768313752) (-0.5644136732606051 0.7972751484245331 -0.007101773822894175) (0.3193469095484939 -0.1134814354030012 0.1568214291744431) (-0.1138200410479269 -0.09691806351428908 -4.954239839127112) (-0.07313045452637298 -0.1629852226315206 -6.735713422187238) (-0.1502849336406737 0.1959997502833748 -0.04187469056489816) (-0.01478105994951722 -0.002106919150841821 -0.00904643113543719) (-0.001609255003338722 -0.04543590266521473 -0.02302846457488225) (0.08682628916922916 0.00355546106821622 0.007377085837413422) (0.4969339898491313 0.1821430137253557 -0.4520692882765826) (0.07582007971183695 0.03018883039732872 -0.2008473743614225) (0.06938601737082334 -0.01781639271690595 -0.04901076774157494) (-0.2014229171073147 0.6694840501285513 -0.01908157896988971) (-0.3588167762761237 -0.07424127131878189 0.4461760944152839) (-0.08813595755761061 -0.05100783367973405 -0.03021556073561577) (0.0649480099185186 -0.1464742278170526 -0.02267568734406829) (0.09642305993451439 -3.705830238031332 -1.310628409513768) (-6.235123716785326 1.068139353016057 -1.920756329251808) (1.534811510055331 1.22417348737611 -1.958264202458006) (-0.9351447936890016 -3.394403959886114 -7.650946831578818) (2.91079366573398 1.132643644967696 0.5391755591944374) (1.541985791316086 -4.012992419148668 1.210398632604199) (-3.29174845025721 -6.926671095215744 1.651713270348575) (-0.4023954790301936 -0.2156500800672289 0.05110406544274478) (0.04894598957220872 0.01629990675699423 0.01056301402956332) (-0.2425335414764351 -0.1373478717923074 -0.001903208148319707) (1.578129350655807 2.774756969820631 -4.335668628626017) (-2.182992544829589 0.6215191062798876 -22.97604784988208) (-0.4540103980351259 0.187278318628249 1.307399350396504) (0.6904446388068343 4.131006404626564 0.7740356127753566) (0.2311680164683813 -2.023488843697689 -0.6469691511460701) (0.4824463688659901 0.6011004543773634 -3.370361808608584) (-3.534780405025443 1.453940363620781 0.569520056620537) (5.855339154299648 13.49306329497107 2.833149082512727) (1.746211709469648 -5.026661857881797 -0.7722325931400587) (-2.494930040666019 -0.1533651378333146 -3.941879286183754) (1.233772563405873 -5.594062001677376 -4.199400333706739) (-3.59280461193579 -1.757754143412038 -5.804331098863247) (1.834028950809307 2.072573194384715 -23.29580363363736) (1.002409102486763 2.358745500523874 -1.829346844625789) (-1.380461273324686 6.094273082247931 3.894298665646817) (-1.194838134578809 -6.366685949859605 -0.808916696039099) (-0.1010266251011745 0.9688120055560168 1.472688255609915) (3.302154163060147 21.6329991022227 -2.241383788262115) (-0.1624895308382942 0.02795692587341189 0.03532314619914211) (-1.449043262044749 -4.801465859135768 -6.524817520042431) (-6.965887351233651 -5.901664817600434 0.04163554720364544) (-0.6710293887788827 0.3220315666658263 0.1520267304905973) (1.782824433203654 -9.234218303094011 -3.526512395412323) (-0.428958956327377 -5.509247855192624 -1.18930642596694) (-0.3187498884076987 0.5525682664634926 -23.80717997351555) (-0.2377412081819818 -0.07659536233316039 0.04369674965536234) (0.07353000891852274 0.04836133509870177 -6.873414231169527) (-0.921056317814634 -2.582795853931913 -5.011578285429648) (7.830458934539639 0.1533550042958448 -6.554624042550728) (0.9872811411918064 -0.1083241220243339 -23.01614196309642) (-7.097437379323642 0.5866759834143014 -26.50529406123785) (-0.5408280782960164 0.148654983969197 -0.5494426881978449) (2.27723194122908 -3.659186342247805 -23.47667525431014) (-0.5332384208450111 -0.7749255347974526 0.971046437710483) (-0.06161810301796983 0.3264701394888898 -0.3347406519548) (0.0920162725842604 -0.2056272080515512 -0.2866271128194264) (-0.8285542283816685 -1.025195326932446 -0.2889430565464814) (-0.1013732080100724 -0.07355314336628786 -0.07349569573609663) (-0.6172136218991423 -0.02194112916261026 -4.647152123996537) (0.2230208067149214 -0.06015086053803779 -0.0937831192762153) (-24.10858237152887 -6.446028699972033 -1.182328848986755) (-0.9862413293160817 -2.53567260020734 -1.402267268693455) (-3.964632327966657 -7.764343960189102 7.62450063619552) (-0.09924500404864264 -0.2795890282414457 -0.6879446753539151) (-7.683925447149036 -9.934933155435155 4.397488610798633) (0.1972643022579496 1.355015872143438 -18.09577441922123) (0.06436901274354506 -0.02300732989939819 -0.004291085396501277) (0.0499286968977885 0.0463727160698585 0.3140190561248385) (0.3344825741724642 -4.08991109247759 0.5835552785407648) (0.409958999231004 -0.1474775501184579 0.1943254328477984) (-0.04852657857277443 0.164008088006194 -0.07617976768677817) (0.03416622487041111 -0.5644039616318264 -0.6057948833191631) (0.4759938639242987 -0.2381675280006776 0.3454145045262373) (-6.812777072403229 -19.77272205136854 0.3865697583515897) (-1.361408149852376 -4.497945285611403 2.762197606268129) (-0.107114249049532 6.211969622629741 -2.276598494513643) (-6.720506062492474 -39.54845404159106 -5.361235381626685) (-22.3570113623948 -24.56040963388802 -8.107314104713593) (-0.03254610969020177 -4.716012709022975 -3.872066453034754) (0.8387819213955199 -5.127063531260797 2.492081145151031) (0.6032718897242791 -1.006874672179197 -0.3655470564518356) (-0.1666414670494692 -1.845135358324835 0.1375726002388415) (-0.2321077336232921 0.3500805657780226 0.1271567963874456) (-0.05337979514183104 -0.1253963231480899 -0.2580599081089681) (0.01127622083989843 -0.02309609119044262 -0.03198408077577367) (0.2119354606686237 2.368619395361717 -18.97241921320818) (0.0237155197245854 0.02577745717437129 0.03957094296804606) (0.01555041604059997 -1.07061116711589 -0.009383534394791403) (0.2467112284789597 1.415683959607715 1.158362143033332) (0.0468184578102321 -0.08633015883793517 -0.06431516481310945) (0.008525378002128936 -1.541839601432969 -0.4702684884609019) (0.08483736132635818 0.2175666334217006 -1.326499472416405) (-1.130177840889505 -0.06938541187632374 -9.755413902278057) (-0.8841825619738235 0.2751149217938416 -10.95727369540328) (-1.203380995571762 -0.3995256998844777 -1.389257638429769) (0.04786903980546674 -0.1495868492620077 0.08739720284904258) (2.184505789629073 -11.56509385631631 -9.710548663729782) (-9.910749436720904 -10.40006605840925 11.77212592111456) (-0.1942458680325947 -0.9375624625470709 -0.1320546687167933) (0.3993381400547913 8.964794539303119 -5.368087826936103) (-0.9203128871835387 0.2659154584284286 0.05858967983372063) (-2.724208707648692 10.95851385888036 4.362966376076878) (-2.086727027499675 0.7574922326047235 3.523089468862149) (-16.48291495354704 -0.3057639302970707 2.30483378311516) (0.3472770339680958 0.0864089175045739 -0.8543874283201842) (-0.3217691203446692 -2.807346152095231 -0.8014442137942637) (-6.345856703917477 3.3663725336106 -3.781716781358998) (-0.3382963880268672 -0.482194148029319 0.1629104884220551) (1.563203775110919 8.840572078470435 -1.545919535924164) (5.1227841053082 21.25653276890734 -5.52393537909987) (-15.30307405346172 6.235139731223153 9.439603070097309) (4.979988866762413 7.872752753000887 -2.899538903668697) (1.298213923379527 6.10198299590445 -2.235727095391824) (0.0910739385547599 0.1747781397902314 0.1178724056004091) (0.1324482054147205 -2.112411926201405 -0.07720171544898338) (-2.238978105758216 -12.3916647711931 9.889159181694593) (6.228927389398877 18.43691277944749 5.032117511149638) (0.4860591678161573 0.3715206571861191 -0.4116504417781146) (-2.233052865851896 3.486453886302904 -2.43928262195122) (-0.4254080685080721 0.9371309245788895 -0.4345067344336368) (1.880425084487311 3.004395611903245 0.7754150757729661) (-2.703475172526062 1.904222273020326 -1.479073413112309) (0.01073608715486693 0.2969323873663479 0.05201675429539249) (0.1592169924506221 -0.1814125437992916 0.01741673698320291) (0.1202253265326063 -1.166281333566072 -2.745295890739112) (5.874066742739099 -1.158736875350606 -0.877778994544656) (-0.2786343535072822 0.7856355509366708 -1.887380679293524) (1.262570024129973 -1.290122402419636 -3.390241084281925) (-0.9028233556863052 2.152895573129376 -0.7037248146656686) (2.586623204292026 -24.71167177375644 -13.61840091295777) (-1.953641829276218 6.86917567679231 -3.896277159384725) (2.29213567212831 -6.485219312902543 6.460670771977837) (-0.4263778403854077 0.2058598158189744 -2.673165686561134) (-4.488023672586579 22.00108158830785 1.090869339291046) (-0.0244324455548694 0.1108868504410837 -0.04299740344130866) (-3.600918336980598 9.300619434526348 -3.426299453385715) (3.69057719609608 -7.785867419370331 -2.099993023814619) (1.818515658900584 2.539671345389934 0.3138257770991043) (1.023947302606417 5.785748926124914 -2.813653419760085) (4.902104811192019 12.32383176888763 -1.901830711789909) (0.2783863860450491 0.1665706384100352 0.3921538204086727) (-1.088896865447711 -0.1786538975749992 0.2344371206984784) (1.132956921783693 38.12533675758733 6.082555902874131) (-0.147304720060612 1.668921703493031 -0.9637093816455197) (2.040684248045362 0.1764875899449043 -1.688883034582845) (-0.3628447093679274 0.4200085204372504 0.22612351277389) (0.5510949891753401 2.672570506907292 -0.2735579383962519) (0.6414639708606656 2.824261857267175 -0.3107573196443323) (-2.905601412450924 -16.76964625746513 -5.641942724292934) (-4.266136502644684 8.543814258567441 2.113939404563176) (-0.1192561352690133 2.644465573022196 0.8610303206574743) (-0.08667441984138485 -8.015068165670792 -1.449046896495527) (2.209242231346997 4.98220655002999 11.20246545603143) (-0.101220755525886 -0.01467071490634703 0.00284248705937568) (0.1589563838993328 -0.05376608527973114 0.08114138575937628) (0.3109131372982658 -6.901919534747372 1.639275627729221) (1.327154923328659 2.681345988652507 -0.650165525921744) (3.382914654285984 2.02837040638752 2.204471534391003) (-2.86911040095983 -1.742304584968132 2.871839734923187) (2.510516551084968 0.8032619537952583 -4.618782199222574) (1.360030669822619 -5.463455399172919 -8.037174538659524) (-2.596823965973325 -0.007557386087693185 1.588521869956499) (-0.3828960695061701 -1.736324422225558 0.4502821885359889) (-0.7158358236524405 4.985819183778726 -0.0750559781872856) (1.218123264067486 -0.4825997633848548 -0.2243289425829068) (-0.455190510056062 -3.762549191833558 -2.402301816150939) (0.7486691605786244 11.04268311164697 4.348292656288583) (-2.742310591388997 -5.32418414127249 0.2064753279990592) (-0.7691591512154284 -0.6720849679373496 -1.068442735350959) (-2.703714040118296 1.304495143165225 -3.617184665344832) (0.02821664367324672 -2.957280903304071 -9.773118704850871) (37.72326258462367 -5.992132579541614 -51.62224831678985) (2.898976260075963 1.888416506796033 -4.279325857432212) (5.85209687871007 8.97140062653262 -10.80569854745957) (2.132347716037176 5.764941179571642 1.794900303342971) (-2.845158402705738 -4.717216640737664 6.993278123432955) (0.4186512923843587 -2.403932852917918 -1.255736005743651) (-0.875232906148913 -0.8664003941344099 -2.254140385379549) (10.3510006988406 3.356555273501644 -4.458556340288389) (-1.096399892488684 10.7347983332179 3.628679415942016) (3.651088832983731 8.023938836973871 -3.10705377961184) (-0.06658713389738548 0.2084308744603213 -0.2567358367837543) (-0.9534075756871242 -3.253342869744385 1.425044251957755) (0.04823112666230642 -0.482607693526686 -0.4237324604044939) (5.083376885995308 2.131249159604395 1.364966866442096) (1.249816197593308 9.197086741745672 1.345995592617315) (0.1474164326110515 0.04814132706423803 0.03128468597020329) (-1.130568220054627 4.891475481719836 5.047061704199594) (3.331821828634894 8.79809915438134 -0.4164341913602492) (-1.380706494875757 11.35804713647804 1.497243775269561) (3.100274671336207 1.594856887130615 -2.981655467398744) (-0.8043985503433293 2.699581891720711 -2.246610100266277) (0.09754735844950081 0.02106127227684855 -0.008914161042834696) (-0.2602963212795484 0.3516421900987735 0.01195890362670988) (1.097173784024775 2.970255096700701 16.64008422708249) (-0.06423826877930786 -0.7026879047660965 0.1336652695084307) (-8.168012539763101 -7.88311234728271 0.4674468176218274) (1.567914123024762 1.800197170688131 -0.5837768073184771) (-0.05647982345276335 -0.2161828074111719 0.0716714783195119) (0.03899884738451495 -0.3048740607102598 -0.1834299646988082) (0.2410706393928747 0.3193387998836633 -0.05968267487967754) (-0.2435536682081867 0.08765579193772141 -0.3002285733237121) (-0.2238305267905074 0.04652498585920383 -0.01753708190286967) (0.2489027810138024 -0.2234288359385468 -0.3613949030936286) (-2.223738523552977 -3.222491245991464 1.126421675295039) (-0.9068131375284494 -7.993442167552164 11.31755663207034) (2.815829697173966 0.9731828178075266 -1.092046198656873) (1.89300145337792 -0.5458613867747104 -0.8097650066689309) (0.3115647020098803 0.5549994824733635 -0.5577246120885293) (-3.634418382176382 3.485566385555088 -4.98617992765656) (0.1683073566106881 -0.07814926221321608 0.2266755809413739) (0.1914445363153707 -0.1028610843670373 -0.4503028240031601) (-3.097269678555135 3.798521028513707 2.684884560379948) (1.677712778826386 32.32115507913026 3.07037578918707) (0.2403124971307251 0.2407464381417305 -0.3377448458484009) (0.366709745382416 1.746007433601801 1.012476438361961) (-1.706415154454143 -8.608081645422036 0.6121872860729722) (0.01201245828335279 0.3414195217331239 -0.1196929439925972) (2.64207447528106 0.3313279659147845 -2.153209015617962) (0.008006429351853916 1.28776873681737 -2.151058186916385) (0.2675367058204538 1.316372099965875 1.02283224430401) (0.4261328219995831 -0.1609302530649507 0.1677392024049408) (2.933685022199156 1.285537586310329 1.236880393441854) (-0.3463264062808925 -0.4644988656646226 -0.3912995252220257) (0.6176569256221072 2.20390231752759 1.390318398394887) (0.2899336804165658 0.3643544538569928 0.306114774119202) (1.74672438420769 -5.780292919725433 -0.596130495320601) (2.049718076951278 6.923978222630769 -5.655528325163639) (-0.2712525583648617 8.743530759528108 -2.594239599515628) (-2.997646938353553 -5.242935673542295 0.3780874941509353) (0.07796044117060633 0.07007212531201137 -0.1007450804424731) (-0.1421883510861221 0.004071761324193832 -0.04324799953276558) (-4.430880759703435 -5.615633332465503 0.674687920308255) (-0.1243187953979576 0.1419396548302166 0.02180141081330325) (-0.3442314848455387 -2.08674417089312 -1.129814971223638) (0.1172925209966094 -0.0311385456805899 0.03618383787051135) (-0.6166993647275607 4.597576274455291 -0.6481453570716591) (0.01785459450947369 -0.007306088236392053 -0.01770440735534263) (-0.00795623713216472 -0.2748198230737961 0.06538922805936911) (-0.02122085019480306 0.01363635719915178 -0.1316661612901953) (-0.08740441989018724 0.05014186440598561 -0.006324162790073341) (0.02753785276076005 -0.008761183183546978 -0.03146095857580575) (0.02205102427637253 0.063327933479964 -0.009940110076108753) (0.007251021028361341 0.007851239051129472 0.001413391160186295) (0.1370096618612018 0.004233603226935011 0.008728014446390526) (0.1655179473514826 0.03024428812526254 -0.02102215034768006) (-0.07025365765119906 0.0265722402748162 0.01376955752086048) (0.4126339784837033 0.2440390427982139 -0.172310466924787) (-0.124853057670697 -0.04656446509608138 -0.0004466411965185386) (-0.007340821596401079 -0.07453761148410624 0.02106769410324629) (-0.2427424226160456 -1.728611825427159 0.08420775337842069) (-0.03143375132102143 0.03645080416452923 0.06479297599221921) (0.4255525395474231 0.1286141930244432 0.07571182277541086) (-0.05288058128341371 0.02234739545238484 -0.1783465485856512) (-0.1258737657989491 -0.7283300359172065 0.1359296775789238) (-8.121072634883516 7.727742144579238 -4.293211101198633) (0.2479031020433849 1.716108478532445 1.483488838891223) (0.009852528075300196 -5.258319984408172 0.1292537660374922) (-0.01012589507180816 0.008020215613993428 0.01454188654339224) (-0.003244198615391439 -0.05667666701556866 -0.09953199978339534) (0.001149862384364957 0.02097713483324191 -0.04086121791783807) (-0.1789068760469492 -3.671576294343759 -2.233830438458979) (0.006414352079097392 0.003462765756488401 -0.00511306748222714) (0.02182294014841877 -0.04189711217394564 0.001375737066025947) (0.1923084383020839 -0.06302314353412362 -0.3827544193176118) (-0.1160570574169357 -0.07702017313722635 -7.061361728005091) (22.51826595158736 1.890033374698582 -0.0994529032661875) (0.1812929476245907 0.03602107470082787 0.1600660744578948) (-9.759108176570042 9.947099845224061 2.037977424556713) (-0.4034055783600306 -5.010309940333947 -0.4745973216468929) (-0.1521846471219918 2.062105537405432 -0.05579276600852179) (0.2106076225841166 -0.435666015169401 -0.2443833314315558) (2.222195678286878 11.48992109691136 1.339351699270022) (0.3895484483777031 -1.186861856887643 -0.04050323301615238) (-0.1097805487135045 0.4310863125670754 0.3759170965583044) (0.01158652832602879 0.006949432437176615 0.00596839005210012) (-0.5946942039948631 10.91354098522084 1.47140296341399) (-4.260711466994143 6.564359407412177 0.09091816643248896) (-5.326015034275565 -16.49051544859263 -4.100992536002334) (-0.06366202008231575 -0.2987382378226837 0.04283277291398392) (-0.00872141620913309 0.008882904758708836 -0.00243384346530761) (-0.06836703886488998 -0.3500341981618167 0.1626483493763464) (-0.07200302254499817 0.006942642538815401 0.04681367348094792) (0.1854507884354658 0.02402270213048205 0.0082237277603214) (-0.0481372883948461 -2.406228476803714 1.361204532443743) (-0.3693672243371291 -0.7699823300175294 0.211923518146432) (0.4887929132519906 0.3597086474070497 0.1113529601838386) (0.02241139562008954 0.01862465566493679 0.027138315379588) (0.2447412756998762 1.038340339233607 -0.6783529875870947) (-2.511046575019176 1.078750794717247 2.729768709802593) (-0.4331189524498649 0.75355718335427 0.2421541169230851) (-0.001564783414306166 0.1081299354720225 0.0469176114364041) (0.2846361132510052 -0.1975451459326016 0.1394030367427933) (0.1864114527870307 0.2200211016366175 -0.1860096340460892) (-0.9697902633654316 -2.063799402974649 0.3195412126742077) (-0.04127528076920496 0.01593807951387743 -0.007465617190304474) (-0.06256809540036723 -0.01007610976026598 -0.02551799750734114) (2.563619064765286 -3.396748367889745 0.08469516431318413) (0.6834723489341679 -22.35961551546275 6.181158368265388) (2.645128207096898 -7.664168347847546 0.3122505137755654) (-0.6275280023984413 0.6059560964402015 -0.8392065426825935) (0.345581408791568 -1.80255264405599 2.079780045120175) (-2.285803074978539 -2.15531879635089 -2.548168799687172) (-0.1156873646689832 -0.04735242918764099 0.2769991459994797) (0.5779490715138105 -4.248845826100985 -1.577003143254135) (-1.30231047615802 -1.900701814823984 -1.594458415886216) (-0.1021780039757177 0.01358500645377789 -0.004287270534883814) (-0.5666437616147453 -0.5936711326463315 0.2271555402162146) (0.04721807104277836 -8.988579128772793 5.13584811402623) (-0.05610692572986757 0.02401380268867968 -0.02130829896668529) (0.002859913325131061 0.003273576109933389 -0.02445679496911441) (0.5741220832054634 -0.2711145410134956 1.137885359283663) (-0.02725295866733657 0.04333032580665069 0.5327980136246581) (-0.9202808980231046 -10.50625470232269 -0.88679060048763) (-8.907962621517177 -13.15603848110844 0.05268949490935548) (-3.626407131031583 4.578255454739902 -4.282769813346131) (-2.183148515463047 -4.813181646046447 0.6378913572627419) (-1.685665278937793 -3.856931809667282 -0.6318614873285766) (0.1695270019315641 -0.6630353839039457 0.04746724356335469) (-1.039538478444835 -2.985335481332413 -0.8142931983046912) (-3.841768201724451 -0.6616369010449039 -2.038800294299814) (2.655626726176168 9.564282424561872 -2.518683408680249) (3.503824520843751 5.718919501153397 -0.283921674261409) (-3.706022933625126 4.540976014808739 2.952221554346246) (5.13419086688402 14.08947816215584 -0.602475162368436) (-1.495861461574032 1.611629355893266 -1.549137162598924) (3.290172980367181 0.2750109668527254 0.5936611063964113) (10.62041338779737 20.55852557097345 -2.00416205670897) (0.0008918483897630836 0.2629666270625647 -0.7673967760613789) (3.856043442986739 0.7405598023803859 4.298294991777188) (-0.01124904623211756 -0.7274996137272722 1.001003088543085) (-0.8058872931396915 0.1140663137186277 -0.2879681838661026) (0.04863444263654368 0.4187481041294774 0.01392525061890802) (-21.79976510753804 -31.75817789523782 16.77289451307988) (0.04144538237013609 -0.0445083986138184 0.02702325541846426) (0.01091573667178747 0.8383281288900117 0.979268668755262) (-1.554654884126786 -0.09801392249252638 -0.5600581985048295) (0.1067315276272683 -0.1198925608763774 -0.2360641742694903) (0.4996751487164643 0.7754557881422586 -0.192681324208257) (-3.15551166564822 8.803367310124848 -3.941906345228523) (-0.2006418231026396 -0.1090104430685872 -0.08981633695150439) (3.60833414533001 3.328650322345213 -0.4509128526052921) (-3.323924755661484 4.226102006767322 -3.32521314685767) (2.46977005473734 3.576696164596299 -2.025511078241737) (-4.524437032637446 1.764337158042103 1.040162349811941) (-1.73927419970807 -12.49316123176241 -1.910360254024731) (-0.02721724006094008 -0.0301620929020671 -0.04048711653479354) (-0.08209129016064633 -0.08057506747088096 -0.07035153654212117) (0.1210286515639814 0.07031832796602148 -4.032018882765952) (1.631476380590527 -2.324462015974583 -1.290770289326478) (-6.343262170848068 -10.50441703181528 1.427943291006971) (3.849752831903986 -4.533164547505072 1.857647787134036) (3.022190963968463 -5.24104793713742 -15.55215973185445) (0.06383732334156458 0.01551220827793707 0.03038654565837543) (-0.03783642303236127 0.02983757122996406 0.07261776650419149) (-2.949024027596316 0.7134937657018698 0.003829445717767554) (-0.7756090341147606 0.2878299399075595 6.112346870635967) (0.1246597964055086 -0.05873988406930379 0.5437647085816075) (-0.3946078670269578 -10.71325941318063 -0.5896281320132895) (-0.04555123116441963 0.2597783578611053 -0.05561335770595736) (1.858170018584974 4.659171241436315 1.100644912657231) (-3.682483893115941 6.933737847340804 -4.024289288815464) (3.281599763775668 4.028576442466537 -3.707508738202724) (-0.03174074124348097 -0.2778579251426669 0.1414947915120332) (-1.015886757918762 -0.1154948593409248 -0.004476069843218577) (-0.4269190245566394 -0.241972238449452 -1.694005622154181) (-2.134141697542065 -0.5938542608750098 0.1601335449671408) (-4.721232589857313 -11.00045599386702 3.071032905774858) (5.015031464052856 1.157049456296915 1.394922132487113) (1.307408159156874 -1.161743661900239 1.276266121879565) (-0.434192908266307 3.121168782136477 -0.3050135333677894) (-0.2390250126724204 -2.389678907076273 -0.7746212233714506) (0.5210904862358468 2.8371614787897 0.2462355940331703) (2.238879364617569 2.055699302808772 -0.642527658933891) (-0.8652551224321894 -2.603462626544325 -1.373331612000964) (-0.8934329376212179 -6.271519438449629 -3.549514186930681) (1.884008569013225 -6.458631232416643 -0.9906079721878255) (1.187182704565139 -10.61464316113149 -0.765859155445094) (-0.971985909790165 2.052625293969454 -0.1265709460876213) (-3.773994447274353 -5.80168395323389 -0.6122128471512182) (0.5293246959193526 1.10486018395315 0.05961932930923351) (0.1596005214815189 5.033693859335723 -0.1065299009243657) (3.569986219183764 6.294299757871821 0.6894883581816114) (-2.289017326518835 -5.244357718645914 0.332519128679547) (-1.163026865936988 -5.473924019542971 1.371432872241479) (-3.499736963679011 -8.033791255894071 0.7038668328966555) (-2.752569620094485 -1.565225376368449 -0.3883038128041999) (-0.03142162077928941 0.2640676415924723 0.4312761702404004) (2.117856492837671 -2.217983141969515 -0.4258506411368431) (-0.318610173181796 0.06034950838741727 -0.1213391607343021) (-0.001355357052836837 -0.02254712156341871 -0.01881813602481337) (0.8315165278858322 1.306785114492364 5.29997487025005) (2.23936348291108 9.739548792031513 -2.860426889333102) (-1.539151745889178 -2.674267908358984 -1.569689446285786) (4.223870057718925 -12.72221349892378 11.28353925558408) (1.156835245504997 15.42456156790429 14.30613060764371) (0.2791974094330164 53.32165480069049 -2.723239441608091) (-0.4256236813898032 -0.08872500266051508 -0.3416909880126537) (-0.05756652835446437 -0.0426853368462645 -0.1406068519008428) (-2.28776303211197 43.6973091304467 1.94377521392307) (1.989992156033588 1.346151171885702 0.6029189762579549) (-0.1667358189038533 -0.03556199520519583 -0.2121625591534114) (0.1956778376099546 -1.186232291416604 0.4595492395886659) (-1.851838223251608 17.77083664483135 -6.846345833671553) (-3.17716554980206 -0.5940517771677589 0.07259292132808171) (-0.6937390403900268 1.056907176459709 1.328409686069276) (2.310472797728644 14.52320710867129 -13.17467690673603) (4.917643473461844 27.45155633851968 -5.862202613821734) (2.613188892317422 -0.6169664257681218 -3.364375192576402) (0.5840724936390718 -3.073014238584669 4.805359358779403) (-1.608982337910699 48.11141273888489 -2.611820056087025) (-0.6118806608285056 0.461565591630927 -0.6069052646487222) (0.1641487341855659 4.329013235673338 0.848879140680078) (-2.204209412643816 -4.083416699935805 -4.904379792989442) (-2.875070371578206 0.6524318714665196 3.069499708827114) (3.766678094778105 7.89458834667802 1.871663608371752) (-0.02647543961303533 0.7620891016554532 0.4095115047562573) (0.04681469359692891 12.83478024376833 2.123509358541289) (1.032611128227892 1.195572289068262 0.5060649886581601) (-4.789804725260074 10.05733113564616 -3.953932186820748) (-12.60209451849295 -16.57839904696258 -9.18953318777567) (0.3973268143371836 -6.069308806559448 0.629258111086843) (1.040494758501217 -9.192968207520291 -4.149048393858074) (0.00344797222945978 0.02745712433239288 0.05223695276067085) (-0.8988598280575564 2.843342626885924 -0.6953468746487823) (6.015494954383712 -0.9442359103667574 -1.672690779807233) (-3.004078298073924 1.681862052322602 -2.650286550528784) (-0.454559503799088 0.2745659525738812 -5.412827296232201) (0.03461616983748682 0.002454478845904412 0.03097153217235078) (-0.271269357182008 -1.690396589468448 4.941871357095962) (0.4022440454109121 -1.832805620999648 0.05999171386130034) (0.2585825271675496 -0.5433176197315258 -0.5537327394641477) (-0.03238483137014712 0.0773216200871987 -0.1817869885788387) (-0.01526413812757917 0.01878464610155987 0.01960714800472956) (0.09233935552802608 -0.4088201479846234 -0.9212301337366779) (-0.1576450023163049 0.3844984406032434 0.507375693376644) (0.009033145879745342 0.1519682774320427 -0.02171108524107855) (0.2565040994102346 -0.0370734083155459 -6.331122142379194) (-0.03421691012698586 0.005239512951475601 0.04255072660164781) (0.08831661981227092 0.03842723189586527 -0.1652175599573242) (0.1395491673338085 0.1088726862014683 -4.017745757034936) (-0.04375213172598251 -0.03759667730537834 0.04079005744158195) (0.1866506366578598 0.1143048029294408 -0.6789468138973372) (-0.2976789942389302 0.0978237237781641 0.002864963562326753) (0.002169668875916308 -0.007127015093122035 -0.007498764496693613) (0.04108097539071624 -0.04850020897515424 0.1064617549537911) (-0.08861670300275423 -3.947305863814423 0.7775047834903944) (-0.2318297847902197 0.3684241299720784 -0.3388958922893458) (-0.06318798586222039 -0.04901838530627835 -0.02430874613586392) (-0.4667337682861017 -2.164336074426603 0.3708479224053612) (-0.1684262126124618 0.009584467421864806 -0.9567127394534135) (0.008539225482973865 -0.02853846377644448 0.001998733929888544) (-1.473658215337083 -3.648919520525484 -7.707910986419706) (0.7855817045939597 -0.9234474354791335 -0.7397215023348933) (1.899685284095042 0.8317075396447007 -0.6787717529518364) (-0.2108100544708048 -0.04057302204774017 -0.08942496394411886) (-0.004298065763557516 0.004318973104424775 0.01327429367648345) (-0.6450434297046992 0.3111936251082591 -0.7489915491295637) (-0.04254502177523694 -0.3560273030027238 -0.06927136844486693) (-2.774107370276611 -3.780813974981335 -3.138670801600708) (-1.004393806169272 -3.41168251198865 -1.653158185895321) (0.020066021093455 0.01891934028809231 -0.1838188421234351) (0.173022144830252 0.08846320010909114 0.009137324931357604) (0.00848003214070879 0.01707889482301712 -0.001384139352021065) (0.009507590146467756 -0.01765833302954223 0.01544925297911261) (0.02047574709355848 -1.347319854569312 0.4508958059321098) (-5.44516477231638e-05 -0.02455489627499285 -0.00828494098320378) (0.6832887119829071 0.1248906032295325 1.917501577240075) (0.1626545747712425 -0.0587868508722149 -4.040845959007047) (-4.291576415108801 -9.065518253881685 2.545016484137769) (-0.01282984095329326 -0.02415927355734018 -0.06847768637856495) (0.01559456880917935 -0.04592058446526329 -0.04823063615081609) (-0.09017417162214249 0.1293360986000918 -0.003171755032406513) (-0.01652973713019442 -0.05627442752484024 0.03753388106027933) (-0.03996625606940264 0.04942497329116042 0.07677420759724557) (-1.51561097558612 -5.849124366895845 1.055433325459324) (-1.731991162213524 -9.314411501703985 0.0551762676855968) (0.4533009557750866 5.269637851988114 3.574006644856884) (7.447072007489943 8.167149624279887 -3.545363730835183) (-0.3416200463849342 -1.707799935611669 -1.805031499569313) (1.332535396631648 -0.6280060490915194 -2.338679843925433) (-0.1276036428466848 0.05592224688485284 0.05848114317932053) (4.005484411204449 -7.81041970258791 -7.093037078740467) (3.232835628788875 -2.671662175015774 -4.063612214345698) (-0.6586362700403802 -0.5549050277053126 0.08890902001191614) (-0.02028734962912482 0.02715180029083444 0.01346658672456985) (0.4180778520985592 0.04826481207997176 -0.02711945465336718) (-0.01282782599602098 -0.01158087775013011 0.0004435626043220809) (0.2641299287870945 -0.01800616767065774 -0.2152458031672922) (-1.037101845555617 -4.884570059127081 -0.2911922456101648) (-0.7643403480365155 -1.547928436136728 -0.3736155449739879) (-0.01519187963354517 0.1229872053029528 0.2310603556203196) (-0.6816388469250408 0.3487120536907056 0.09907576908481638) (-5.389310073781015 16.17412461661784 -5.006890833703802) (-0.2223875794536256 -0.2197847530939926 -6.195826986673946) (-0.301614914651798 1.007164933246789 0.5408214650525202) (2.024712361581376 -4.549839002468541 -0.04366507053283775) (-4.885107440585553 0.5093294192516198 1.289168350134191) (1.556700024342313 6.708572478526526 1.35018906934297) (0.02993564336663009 -0.01031182095713662 0.08474666770732714) (1.725189179964884 0.3876065550631518 -0.05164473318614665) (0.06500600242200219 -0.02748974186387428 0.007711011122467006) (0.07683305552409592 -0.01701812568853822 -0.4182094881162584) (-0.7367531111670683 6.082128309246277 -2.846371410254641) (-0.1183101943342945 0.103698685936265 -0.09967074436116538) (-0.5957335797443749 -2.762037375557594 0.7599991706878099) (-0.004386619540049431 -0.004752005341563877 0.00838569897778239) (-0.006324657600524086 -0.08043815279120065 -0.05449511729683908) (0.3931614126597099 0.3908258765895196 0.01542007316518607) (0.2131379894190246 1.53647675642133 -1.097082408211665) (0.05637050855600652 -0.1272874092314172 -0.02968045753478171) (0.08176930311583368 -0.002671566838272906 -0.03146575786866829) (0.0772674167562305 -0.120501239306394 0.1474834750025135) (-0.5176419289251288 -0.02947826434006364 0.06881012983450727) (0.7199435094430799 0.1516793436325572 0.2470950923565708) (-0.1089006984868917 0.1670820035436404 -0.1759289507941492) (3.496935534629562 0.4466428197955762 -0.8046264773353847) (-0.4209662738818895 48.89920468284448 -2.261077423898937) (1.118238177968065 1.120461060080118 -1.187092466039336) (0.2802499676029311 0.1358489912911909 -5.005354556394962) (0.02555462154569473 -0.1112592602845613 -0.02259818394473174) (-1.347709802650493 -5.221099702879902 -5.119527593946422) (-3.16691188152324 -6.784768208167923 7.510599656715058) (0.01089903441837329 -0.03186327190663142 0.03973000581117632) (3.900442995021151 5.862946267263067 1.580774795453365) (-0.2615465064986869 4.944401437412806 5.69624905276471) (-0.01018640463784911 -0.04837839461739045 -0.04953028732604597) (1.014328816482025 15.74413137847542 -2.34341958464131) (0.766722631704029 0.3332931301437176 -0.5990359414207792) (0.1027936414727032 0.01400608804704495 0.03171237219613813) (-0.01026421977035387 0.02699308637192518 0.02299578695276472) (0.2489949624319116 0.4504120387278517 1.132487462262669) (-3.547681968688184 -0.8606430319766507 -4.600513914516084) (1.541270306364257 1.106646654645339 -2.811798900786827) (2.897066416840829 6.125636895555398 0.3161718471378285) (0.1008064168136059 -0.04606773795481069 -0.04251203014972375) (2.543397301831507 -0.5646065464616632 0.9385274918464801) (-5.248816149884261 3.352422839664479 -0.3113042442369522) (0.008652138447797598 -0.0407819943630887 0.03219734360878284) (-0.3367287878236641 -2.889315316550866 -2.111258138630741) (-0.4222570888268783 -0.03992478705260366 -0.01530910317463613) (0.5304812506964219 -0.7511453795576946 -6.599532976473595) (0.2107070437330618 6.429659040508064 -2.783627290216248) (-0.07315612148438391 0.009111234761339149 -0.005145641154179556) (-0.001954119745798462 0.005128859953514222 0.05199645841111182) (0.3037332859971373 0.2054113299193351 -0.1786278120559923) (-0.6831087510419986 1.17298450716531 -1.167156589860344) (-1.531564068137152 -1.012057785423658 -5.097095323721786) (0.221070570629558 0.0344163828833079 -5.090759269153475) (-0.125787950883842 -0.1003999677189595 -0.03946408067661083) (-0.05582011768553426 -0.04637133379406102 -0.0938477874369948) (0.1390844899434855 0.03065703030307643 -0.3692209750464054) (0.04744797212440742 0.06274225196095427 0.02560185810753066) (-0.1747092104044219 -0.6513183333553082 -0.04767914330925338) (2.531293804697197 7.279813277964581 -5.02545093035922) (5.107135348641537 67.48089715699089 -13.17433314953069) (4.892554171821597 0.5680690871741192 5.790142666741669) (0.3916357451343411 5.655136192803307 -0.7275695047044579) (0.8864313556790139 0.9013119508743538 -0.368078507911512) (-0.3887884754000155 -0.1451877858149247 0.2554829971382262) (3.374453351424392 2.860152700365332 0.3250007766872454) (0.05970543469020062 -0.1324404513895094 -0.005621704041901876) (11.12335582826344 1.585599358941443 3.682225034938686) (2.616103782704648 0.2397548839894114 -0.4159604204188324) (-0.03695261094749241 0.4176536652277062 0.03363158379093212) (0.07747354249038169 0.01826898006111119 -0.01420201865893034) (0.2905480617289913 -15.56882232300947 -0.5960056630654488) (0.09774697023243745 0.01070296189893299 -0.03590586753003087) (-1.25738985892711 0.2826141893511576 -0.3368323733879665) (0.9852540177314406 0.02604585869811371 -0.309936392729025) (-0.2924166671457215 -0.206095315449607 -0.009236770637488734) (2.589519895413968 14.29000242733897 1.754129249284523) (-0.1916801618385464 -0.001566738635656741 -0.05328226879995658) (0.6815715223510034 4.478610081498618 0.2119702766819954) (-2.212929116223031 -1.596991344562645 -0.2857296499979167) (-0.07776082986408103 -0.02472918466353532 0.05889689050554545) (-0.02164944051710599 0.4016632834854458 -0.4383170715772413) (-0.9093613109116524 0.2393698639076635 -0.009120123061163807) (-0.09060621820220131 0.05926862260265398 0.04452223433694998) (0.01000444655753895 0.06301957750113893 -0.01012181293106818) (-1.349265428807965 49.04669557454491 11.13342836353794) (-0.3054526645318461 0.2752576119663177 -0.2014734167014083) (2.122482588716781 1.315078673721814 -1.156459439649335) (-0.01105546970487128 -0.003518866303530575 0.01613146221922918) (-1.111177731577004 -6.115769086101647 -1.411998111056593) (-0.06504733914841258 -0.1333277436464313 -0.02529789934641391) (-0.62607300174188 -1.389925806486761 -3.265988002977023) (0.02193445431959241 0.07180278556160336 -0.05621694556194035) (-3.913445112467698 4.264562677043939 1.38833045240137) (-0.7716326034039215 54.71497116041867 4.283777532604546) (9.138570486503005 -4.447624983302727 -6.908222969566086) (-0.09808785233770574 -0.05253880522108475 0.01898470891490107) (0.05124620302589475 -0.001151726265994604 0.01089141310593283) (-0.3524278075279232 0.01427722306948376 0.07129380453646014) (-5.830917627221195 -8.153076316663215 -5.109136760262035) (-0.5800284208265303 -2.282751108971068 0.8590601195579318) (5.348329229616006 3.763120216657925 0.428910753648666) (-0.08505099979968835 -0.08039628218547154 0.08056315278665073) (-1.798409345851524 -0.8275955664537541 -0.4175164784115233) (-0.09764746879687691 43.34121035618025 -1.158178316523997) (0.02667919325901218 0.007327232624849873 -0.001423488926213648) (0.01908296736361799 -0.003255446462604679 0.09717064677009604) (0.009216114403868072 -0.2589853823127631 0.3674992878433235) (0.02091906453891388 -0.008807234869517778 -0.0121872336942492) (0.02443714214572843 -0.01628846179127543 -0.04675774254216939) (0.05475148587437215 -0.01199863945178882 -6.760928229734928e-05) (-1.699223259822315 5.048298043848752 -3.411670443861447) (0.1956392581479268 -0.05738879061993225 -0.002319428862511895) (1.263383738465246 -0.09907536117523863 0.5569640411564309) (-1.254776905080023 -0.9806868916303098 -0.5226367550451824) (0.09035486368309714 -0.04689687624884001 -0.1346079465230047) (0.05442862506715842 -0.04512274566296843 -0.04275078667056327) (-0.03345304071711432 0.01599607771882581 0.01200618555898154) (0.0259518438297031 -0.0005881375708066284 0.04403915515548062) (0.05507082756042234 -0.04275139661110707 0.01217954524554113) (-0.2412555625152141 -0.2199299352489157 -0.261405560914227) (9.177429224288973 5.16760036825862 -3.340692834525065) (-0.1592304146608448 13.23308439151836 1.289653998549269) (-3.17820716807672 0.4948396631920305 0.3335999703762073) (-0.005858822508606504 0.009106809051407944 0.01336065650646366) (-0.1463410146752899 0.5579021150408953 0.196911213691091) (1.051066429020131 1.556107922274282 0.4824795815627054) (0.02971152330034993 -0.01547653909887388 -0.04363379719772033) (0.1144561748352437 -0.3050104119029165 0.002961408784286929) (-0.3993495501934166 -0.2177468597635878 0.1904439247723613) (0.06787089525992428 -0.002235341472843602 0.01320565622071463) (0.2175469789089357 -0.08572763595976451 -0.0007695916821375132) (-0.2228973894667892 0.06659899870070729 -0.09654512680295628) (-0.3819746491887639 -0.1557455380592132 -0.0575512671516439) (0.1043276922365906 0.3393561508956388 0.5967131662893456) (0.640309190710998 -0.4228319741530329 -0.5289000692530996) (-0.178331368593095 -0.01706949176222699 -0.9925570048641015) (-0.8327609012147322 -0.5134724493739347 0.6670581337716515) (-1.415083500885206 -29.95150955581366 7.09336427901548) (-1.749901990677081 -1.189138129044387 0.04937808187229312) (-5.960619500856364 -4.570916226497955 -3.558343933323378) (-0.2231739218979367 -0.08564910229284217 0.2426613766457614) (0.368441217737885 0.0964535041671761 -0.6066255455881766) (0.2895432344270276 -0.2928640464190786 0.4889161364677069) (-0.4823005114609317 -0.1653632901052978 0.460552860633447) (0.4267262252996076 -0.5798057766632544 0.1687797263574456) (-0.6342696724932111 0.07978266943997783 0.04505804755760073) (-3.713205742660702 -9.787335089386133 -3.464611658409289) (-5.880378372521713 -13.98717344898483 0.4854235181986888) (0.02064100903911891 -0.03235064702596404 0.01532033676894183) (-0.07129822803092291 -0.04707956799155348 -0.04661162552529307) (-0.08528742492877694 0.1232926229346949 0.1140926462490731) (-3.984227539795023 11.56587577827693 -7.783851496387841) (1.26245881791097 -0.1511907284923132 -0.6531844442888253) (-0.04863949015373838 -0.01495941163833631 -0.05930318781932901) (0.01734599202384638 0.04023429236173372 -0.04364200637605503) (-0.3217849015186467 0.007377518960082347 0.2643004312596308) (-0.02250734250127814 0.06920896846252855 -0.06832481450076977) (0.249469371453675 -0.03152907088768466 0.02234709325427483) (0.3640459413001214 1.288364048285196 0.3957693144925323) (4.838842434365858 -48.28881982379494 -4.636223187868254) (-0.04643445760124921 0.0001882948996010875 0.01450979983608658) (-1.043520692666341 0.8157966023490089 0.627061004396066) (0.07411206146472715 -0.09349031711759505 0.01338128280882569) (0.01091807547217435 0.0618795501511379 -0.04386861800458842) (0.007309014342312603 -0.007477589909468384 -0.0005446857699002445) (-0.007919490352702643 -0.01581439361480259 -0.00518915163731687) (-1.0958147622583 -0.3201538050101333 -0.1290735481971039) (0.7663042960214049 0.6565215505322766 -0.04909475357396027) (-0.05568080685022161 -0.0923481424196886 -0.03221684867505351) (-0.7465403657701318 -0.3536472037947031 -0.01366844464271111) (0.7512892474350314 -0.1239294516703406 -0.01507056879498517) (0.3169718729451745 0.761291101618409 0.01267196278660048) (0.7550808361633908 -0.2285629818461334 0.6521601350948725) (0.3265623545078128 -1.129231939658661 -0.08483413358538755) (-0.0597410315447752 -0.05177184918585821 0.1463014294968811) (-0.2791737362120574 0.003933484664360627 0.002544158029136888) (-0.02139742174809808 -0.004908285551328412 -0.01180743130977939) (0.0153943398363096 -0.04973025362141091 -0.02826116102875574) (0.602566200450789 0.2197319506008814 -0.515970436720831) (-0.24601228008946 -0.3413166211792714 0.01534650482771851) (0.1373611269295694 1.13838223815078 -0.65606768055109) (8.423213407761704 15.2816700476767 1.555281710511569) (0.4327298943369273 -0.2278097338079146 -0.2141720183343616) (-0.2666265949817018 -1.021321273778413 -0.3948604947985586) (0.4209954134118861 -6.162202065739084 -3.935214449425285) (-0.08315715389494571 0.3987064449702988 -0.7128619017735505) (2.138724849960149 -1.7268403970993 -4.123391907752529) (-0.3595792513988145 0.1484829045485294 -0.4151565106207292) (-0.5817711722983218 -1.227458014653656 -0.7658773202886457) (-0.007763952801704402 0.07879660355533433 -0.1438182728805221) (2.498260022559967 -46.62840775853832 3.569715119965942) (-6.542991534663894 -62.34334678833589 0.890412449555261) (-0.4589475968992433 -0.03924503132017695 0.1331701682125384) (0.08832722188750838 -0.146477862227231 0.2149569142468643) (0.002512782370507286 -0.01592740785602118 0.02470095229296101) (1.420417680495379 0.2990342235036431 0.5632774824401892) (-5.346926169280366 -20.59746301358718 -11.41609284420423) (0.04140808824507405 0.07714267729779897 0.02217093157650565) (-0.4305999841504513 0.2398879323528972 -1.220049193810288) (0.6120656844086994 -0.02790984348888325 0.05078936403492358) (0.4186729924090833 0.2142723080893664 -0.0961612576965943) (0.1505762406988478 0.0778246975445796 0.08785716481621236) (-0.1141294167329915 -0.1237219578747792 0.3000561096206843) (-0.02722731551510648 -0.1657459107991408 0.1810934924952193) (-0.2560895247867859 -0.2072412761624818 0.06149084380050079) (0.2787029715533645 -0.6262299313621912 0.2702406003529368) (0.00952546847808157 -0.05708736938355637 0.02055801484398039) (0.0007171647689048818 -0.007987734861858931 0.05796260074387063) (-0.6387941376829535 -0.01574298128936213 -0.4687273475130005) (-0.7737220159837535 -0.5978830564669249 -0.7585816565315209) (-1.389211489543575 -0.4142184860710798 -2.539247944608478) (0.6233927000211381 0.01253133937117881 -0.1539263695841605) (0.8490681440960397 0.5305213053653555 -0.1774951822198229) (-0.9067236699640038 47.061242105961 -3.398979123362642) (-0.02511743661596377 -0.1994650081340404 -1.14803984705326) (-3.909687760900119 -2.529888615353819 -2.571192636462301) (-2.541933225256579 -3.325440667924429 -9.72049672568021) (-0.02753331626275227 0.01629250105323918 -0.01272771003975652) (-0.08615394570498264 -0.02817651053922108 0.00291300302964975) (-0.2835102188031809 0.01370070715390746 -0.1307202934858055) (0.01371711184139341 0.01032818522230054 -0.001293083112540845) (0.07863618638312492 -0.1310348273700526 -0.0006630849420138163) (-0.1751752805690728 -0.08778037359464426 0.08350519161593881) (-0.02637521922774033 -0.007947012105104359 0.05856460224588031) (-0.006961236929464324 -0.115354141960004 0.03625775989892173) (-0.355397515904129 -0.509848887097357 -0.4408168212313322) (0.1531974549572504 -0.01088987200493586 -0.1087673426682452) (-0.04130013678819335 0.00217940287321609 0.008000915677050129) (1.212665921766786 0.008711345824400418 0.09936458223162026) (-0.8625499744306385 0.01178257976595387 0.7069605444325308) (0.9957247334685696 0.2940529300592449 0.3956389533858518) (0.6972585617889833 0.006167116609797282 -0.008960570249265665) (0.8244076695808407 0.03626326043614705 -0.219490844680633) (-0.1956735766185839 -0.02082942435369592 -0.3499292190587172) (0.3189236015148887 0.7490689800891615 0.2013239662595863) (1.06403750186813 -0.1055447220820862 0.1074612504830137) (-0.4698938381185581 -0.01798827998572826 0.2087984750459323) (-3.514170897914708 0.09181593769992208 -0.07556725279354548) (-0.5592705485456456 0.01284076993626532 -0.09454125604453899) (-1.123675169421441 0.07288530151660377 1.887716941825082) (0.3947373097686143 57.3363535180971 9.714433471798717) (0.01370983085769564 0.01200154870905348 0.02576395094301321) (0.07653040072133678 0.126939078972451 0.011204228993745) (0.335941992662267 0.2927677034617067 -0.1151660353150948) (0.324854700470468 0.08700249653654343 0.6570118945883092) (-0.2496840558390034 -0.151041679195098 0.1113627549992799) (-0.2784397145259035 0.01297370740508279 -0.04932816526365136) (0.01733953380237961 0.01387027655419904 -0.02618729428547068) (-0.3040529665069414 0.2114134955130375 0.4210433663318942) (-0.01461052026313871 0.01372758585616693 0.00531504382238767) (0.1253373350359309 0.02906900372722023 -0.1885364448381189) (-0.004957036157420387 -0.02358919753775921 -0.01323086979421444) (-0.1431355269248289 -0.06010178498043708 0.1072652146644862) (0.04717975609488262 -0.02161716001375542 -0.03213481179401828) (0.0123471929200777 0.01960433604067493 0.02947565673326948) (0.2726762447770634 0.2401593531201219 0.08926477584443449) (0.07375439829045988 0.05794690578152866 -0.000157894876188211) (-0.2231187001035064 -0.1521493310804146 -0.1355140739081121) (0.9285427078020572 -0.01067398751479484 0.04632841005397077) (0.1107252543579283 -0.006111019529284036 0.03295950460609785) (0.2792246934439014 0.3043129310263226 -0.05654153212559847) (-0.8642408790888986 7.671174548884469 -3.944206088692016) (0.8466599253833823 0.06674348560305127 0.06238473309033198) (0.3385385041936859 0.2805733432705227 -0.5490902482499338) (0.3772218942011596 0.127575463676691 -0.06073778218382031) (0.02774239095492003 0.01642259353078931 0.02827178971836405) (0.07166132622953728 -0.1055917519476244 -0.1541165118057102) (-0.08274047104668557 -0.05467223477424413 0.06552658215116962) (-0.594734020523463 -0.3589840495722582 -1.214952409029947) (6.153140184875018 69.87937955002327 -9.822981239034403) (0.04000263423620093 0.7173777032228038 -0.3060575231762744) (0.4792244903306077 4.61824905829588 -6.387026639152821) (-1.308420496690571 -3.059680321101076 1.700803948932711) (0.6759910397728879 0.8395188270822169 0.3229271130072787) (0.6890220592065939 -0.138481567573965 -0.4513072878714202) (-3.911626333014954 1.616433169818572 -1.868195136266838) (0.6489772583896714 0.5479156836491156 -2.520312119678895) (0.1236244225399699 -0.2718339162012248 -0.3554610373771743) (0.2885517154800257 -63.08351966691985 8.73565141924896) (0.4398787538257934 -0.2577858322166736 -0.2625914200743839) (1.009346025871799 0.641585016661629 -0.07600319776891679) (2.079941249627432 6.939579179522161 -2.214512613390446) (0.1012724394222942 -0.07090666409868882 -0.1831372386371269) (-0.2565154963994852 0.4600483985334696 -0.4624780788977129) (-0.0589102624195018 0.1365665260778813 0.1491027770120732) (0.1585869684242404 -0.04477967779195642 0.04379203162233609) (-0.2386924970572565 0.6014481214454238 0.002349994914498832) (-0.2733770661746988 0.1615134726117199 0.2070594832319121) (0.2771497708161477 0.5712420107489804 -0.2258226071447918) (0.6432576762714367 0.07862428584473739 0.04754119074366599) (0.2471081114084621 -0.1987282570808787 0.3208377124470823) (-0.21171837447261 0.02018527632958376 0.1047902166818459) (-2.772434898360773 -11.28645509093132 2.765177793209947) (-0.1007942678443611 0.225859575828793 0.2739674190100987) (0.2582758246788434 0.2162921956691869 0.232651483592652) (-4.974065823318423 -12.85952642486238 -0.3344322543570002) (0.524514767694071 -1.520237956361171 -0.7464077585927262) (-0.6111776022472736 0.0009742561124713028 -0.1232639275775277) (-1.520398165918593 10.20338990175265 -3.503794561814722) (0.9232380274314075 0.5612228053861951 0.1907304739239394) (2.186057138983073 0.4407267082281489 -0.4237533802410052) (0.1147147409674894 -0.5381879154965076 -0.1210336417209928) (1.985284135946334 -4.033470790681357 0.2844748948424821) (-4.310504177056048 -3.298551639722084 -3.362268817239445) (0.6594398083299684 -1.679138302205856 1.291257065977411) (-0.1328328391037727 0.1007799941801632 -0.03894809321106368) (6.468995991789034 -2.012523068612111 -3.428931945706108) (0.09256685918639501 0.03459423557246037 0.100451382379782) (-0.03316437458603651 0.09815640125705058 -8.149527064247458e-05) (-0.5165554825324192 -0.3353262379118167 -0.6778777278828059) (-0.08177901122330004 0.03249586794004195 0.01176840466895127) (1.227970647465233 -0.1479324311666533 -0.2806132265097518) (0.7440051560350336 -0.2287110434006013 0.2941125637638368) (-0.1831967404892448 4.233004239780345 -0.185138400945164) (0.341587999110041 0.9188206875944234 2.932634444618282) (1.602545425586354 -0.4429093942387063 -0.5082899226147328) (0.343025441587931 0.0620205679856537 0.06075132346026302) (-0.007569679099729665 -0.1846677062726685 0.1384036935845084) (-0.2496099971913325 0.397725148753796 -0.3567514685516514) (0.4417896407871448 0.01852764150492513 -0.01558087882076252) (-0.2365293798492236 -0.05411707653684844 -0.1438253351046359) (0.002874064646265646 -0.002394029793015132 0.02091967698254786) (-0.04269263668490246 -0.03537693510034839 -9.555779821195445e-05) (0.09484325958066167 0.1418061773522035 -0.05133407472449469) (0.09208330297604325 -0.03066251400342387 0.00221349480459804) (0.02352540943864746 -0.01250135174081644 0.2153397412450768) (0.241529370463873 -7.310804501242735 1.689483860188581) (-0.004544412677768768 0.01270744842193324 -0.007539135525460539) (0.05909607751720942 0.1300543052997346 0.01741730452512776) (-0.01441335412818896 -0.01574412175798547 -0.006063972726282247) (-0.5811512124014397 0.7655861230193637 -1.80284977739674) (0.1436609973209376 0.1453373799485004 -0.2624340851898689) (-1.036967365363546 -0.3520052090026082 0.2548102252259777) (0.3226104493511587 -0.03826032151495187 -0.1308244160046574) (0.2539477008096237 -0.09765522727625917 -0.3830938777943208) (-0.4161041474677253 0.1810764956199486 0.1428087700540454) (0.006011002878950057 -0.002237030175169114 -0.0192780190878813) (0.3243237877352441 -0.09571677444228005 0.09026269636337661) (-0.2934182864185643 -0.06915216315929501 0.08120681587984502) (-1.820238401144517 -0.0637818940456626 0.8609303555099375) (-0.3986350675404036 -1.297933835651531 -1.000325835544884) (-2.948675002572928 0.151965874512529 0.6475979795032231) (-12.0430419311072 -9.313871952408505 -33.85296589351943) (-0.2367514021887673 -0.1809517056095108 0.008913894905419134) (-0.05310382284953064 0.230023207866546 -0.05293836103225397) (0.3242247652889072 7.601204068713484 -0.6327938335483752) (9.62648235981391 17.69743059122478 -5.302744199123055) (0.289174924233724 57.6149344860138 5.033815951135271) (-5.040387070429977 5.530932659287799 0.1574087405985199) (0.1099348094664769 47.99006234007215 -2.948352313613103) (1.098686354211773 -2.793379905195158 1.127514396478882) (-0.3744368684570525 -0.6274168131904179 -0.3384341810675665) (3.617962087495805 5.212051429768593 4.654256984352659) (-1.777732498861502 33.11785111039794 -3.144165463154648) (0.8915006985884441 -0.05591938108034566 -0.4206198916466258) (0.8304345419541678 0.03838136187140139 0.09178969716933816) (-0.2900048953303656 0.0782872931113523 0.2083999857967764) (-1.250619450408766 -0.6993372238817408 -0.3923816056602034) (0.7203987287758724 0.4163647671832299 -0.2304535897496263) (0.5841579931480692 -0.8934089504524281 -1.190298584291295) (-0.01576812366308933 -0.2389518226519867 0.2860010460707685) (5.512908003421193 -0.115591353286602 -16.70746910731079) (-0.5656483666678628 0.08394554072335388 0.1610063393130304) (0.1794614589796212 0.00239052138915069 0.0520853524240743) (-1.664728935529546 -26.65821347494876 6.517182162640808) (0.4633865116265725 36.5797177033467 2.341124866579572) (0.009907794967326505 0.04069276785834561 0.01260978812701877) (-0.03815675619624983 0.1205700587493505 -0.06822746367547022) (-0.5977159694618832 1.278102263546724 0.09299278584901516) (-0.121662956341411 -0.02240657258998133 0.02880305205910016) (-0.03040232951926837 -0.0485833508144172 0.1332110821428413) (-0.04129876586725274 -0.07120820362075263 -0.01890274475794392) (-0.05319416162599126 0.02068322806878767 -0.03245573754914282) (0.02684911210586829 0.0004691833458856029 0.06815928679791942) (0.05179271301684032 0.04138685787972887 -0.2619107093168241) (0.2904049943761155 7.876393478648602 -0.3931042392362848) (0.1900124665477124 8.719291360749942 -1.103338186232593) (1.979699130006853 -2.600809895705887 -0.4442314835840286) (0.0407292271034906 0.01260066591444228 -0.007155161985683053) (2.07137936688243 -0.9141958524349139 -0.2491604456687583) (0.04027395907313307 -0.05166942905696256 -0.3191495250712235) (-1.015136226748073 52.54357952742406 -2.000208348987202) (0.3358137119366347 0.02924763730872869 -0.04580257937617055) (-0.4641586178761842 4.258177921176704 -1.477431506622311) (0.1188074911671413 0.02350275707648194 0.03817008773208699) (0.1233300193371946 0.01640271366037966 0.03215351835931388) (0.02881509289994755 -0.02786562608770696 -0.00139050993236728) (1.01134971213594 7.8007940478882 0.1574890582833181) (0.08022186600926323 0.02059590424756941 0.155531227246218) (-0.0182483802730031 0.004358561828331744 -0.02107334502311593) (0.01159109773025629 -0.03271511146476526 0.0002551475580238362) (-0.004438424928056321 -0.0001573556827611264 -0.01702507536340702) (-0.2209173143880757 -1.997498862749511 0.3060085807616446) (0.03211242157800641 -0.03034966508171832 -0.02282901989736772) (-0.698833514894905 -0.2703724598131828 0.310519732855731) (0.005276428293466026 -0.00150386622448407 -0.01905394006478714) (-0.1377370314908881 -0.7208032482225896 0.635831356788772) (-0.06188250277528433 -0.02313249996235292 -0.005075805582505182) (0.06623083582860316 0.01173315251766153 0.01672815985685516) (-0.1411476713443802 -1.599459948134307 0.1329056451801426) (-0.06130087547177979 0.02037857802751993 -0.004464042790624427) (0.08012463388106114 -0.006468956707071915 -0.02973031159358124) (-0.01491250237055724 -0.00475366659465358 -0.0234490277809799) (0.4470013678524404 0.07156834805842183 -1.338677211533484) (-0.09662465379047519 0.02971182042452563 -0.05880928274958493) (-0.06095786624835402 0.04839515562076607 0.0663222401108946) (-0.8213719216249927 0.5617688934416928 0.5583723115068888) (0.2374854225337841 -0.03760752911302253 -0.2164956939812047) (-1.426571580040196 -0.3210422646723859 -0.7387486359159641) (0.08363430970491437 0.05984995825044204 0.781174304470351) (0.07766085917999371 -0.121006120918101 -0.01790866799585288) (-0.006204054357202026 0.003699456402852491 -0.07886182762527401) (1.255582302904272 -0.1694661490406538 -0.615399840955829) (-0.02301226280669781 -0.08670813159374445 -0.01410809276017012) (-0.05947095212376623 -0.1335045153606633 0.01892255620656989) (-0.1415438832122864 -1.342225518002421 -0.1178520140666734) (-4.60723812240915 3.39882474592756 -1.618659781246303) (-0.3703438437592884 -0.9635856136166935 1.673250618097117) (1.983887946683496 -0.3756038544491073 1.554132345408697) (-0.07653212409767007 -0.03630103955682355 -0.06242852387643633) (-0.1901956768572668 -0.290864436803067 -0.1064181173912842) (-0.6770843624721963 0.1074673300457534 -0.06008984351706265) (0.002741449632205156 -2.238476476295349 0.3872815821249627) (-0.4093056213423507 -2.625014775389382 0.5672460861086913) (-0.002017746061419143 -0.002416061802967158 0.006342843715129472) (1.073834205639625 5.973952403616797 -3.216704572590898) (3.619426493068569 7.640718978634034 6.505611557691482) (-0.7379636851225838 -10.46031040372844 -1.301403205709057) (0.7686446797467756 -0.4623301636514133 -3.261952372389673) (-0.5893098374052964 2.220436797535731 -1.094406982244161) (-0.4821725980879931 1.238832428996291 -0.5631961634743634) (-2.669819081720647 0.3720903104377028 22.61225315756866) (-0.01337698141774102 -0.2419114099901642 0.2359088177167891) (0.004484538056442888 0.004952811825986453 0.04229328995492824) (-2.743518483471844 0.796688949318867 2.503266059377617) (-2.964423260593122 -3.662611147308639 3.521142278538868) (-2.488478630366636 -4.526717956568027 0.5786841721231882) (-11.72865948111614 14.01737631407459 -11.20034130188859) (-0.5086861980362949 -8.63448464554258 -0.4183430099092085) (-0.1696330774077728 17.99448417605044 -6.8279267263898) (-0.3838476984676319 -5.354828133560783 -2.789507992591972) (1.281032286518778 0.4627381788080362 0.5784548764753137) (5.927260167100609 7.01566486754067 4.054166011710149) (-5.551598307502752 -19.25562009492161 -0.5969572232573923) (1.095582729016973 2.765996218636952 -1.026031501398367) (3.700057059910855 5.196659965707759 0.9049262089844574) (0.4198979884984897 0.1443015841409722 1.151458336923474) (-0.1433053640144994 1.946768758319401 1.617446937949037) (-4.336210621652155 -4.855977531741644 4.413195640082263) (2.067961403034167 9.328137842926195 0.3642048491889842) (0.4491516121226461 0.02229405364648246 3.666637752453209) (-1.386094487249617 1.242204020059962 -0.0320195778584115) (0.3315206336746223 0.4993868829308174 -0.5264498152566661) (5.80029481789704 46.7219637192029 3.368607038663018) (-0.3417417101822662 -8.988482347586601 -0.6681958743382641) (-1.812702812144403 0.2720579354267017 0.5490712048834294) (1.123107199244207 -0.06734901003625191 -0.03114149563702556) (2.034801007591619 40.01152239011252 1.118504790312651) (0.07071994578388599 -0.08642674335101083 -0.06412818043780225) (1.848445995677874 -24.36385262055049 -3.076561428627845) (0.6627748622538359 3.931842826061716 -3.016441225881242) (-0.2315252886372385 0.5096114423171023 0.03438834137490871) (-1.796647459896779 66.13581454935004 7.739562089133834) (-4.06523306304177 0.6886435607830315 -5.392881669990897) (-1.624606505118121 51.64173039261136 -5.603858490085724) (-0.005201028769988181 -0.01201315280869222 0.04260784915819252) (-5.193233307367406 -3.343856705504576 1.121308943503957) (0.5025426558758251 -13.10707440828829 1.100149107948395) (-0.5944326486927453 -4.472032972403015 -2.474280287776305) (0.314619623716374 -0.8124462147589198 0.4379091748578027) (-0.004238922493194332 -0.2251627019793493 0.003386737016155076) (-0.316463958027635 0.2117369409243856 -1.013492522492395) (-0.3374932694507686 0.3326645460052721 -0.2173524375784703) (1.393031653466679 -0.166471655813796 -0.04052537771234632) (0.809629932872683 0.1666157447563181 -0.6652726845847058) (0.1184045960501439 -0.07813258209959992 0.4689571980901628) (-0.1435367301095769 -0.2042536713493317 0.1919094865316384) (0.7319446746059352 -0.1357959583877857 -0.4447128555196954) (0.08279063259820642 -0.06776811969080479 -0.234387045532845) (0.3215593607786496 -0.2081023217529748 -0.4928128314667193) (4.522749206810592 -2.32775426958828 -4.098666912034088) (0.3595579673484046 -0.2637974388810795 0.08953612394306457) (-0.1216880702049232 -0.6155324590968307 1.187378349423088) (-0.6138550925822703 -0.1962536559048929 0.05052847825909618) (24.61739665179746 11.65172750776776 -49.97349776526784) (-0.3484189819167278 0.1306492454630078 -0.0941188988443058) (-5.110212417965154 -12.2691567286577 -62.50059325841545) (0.01369566195666122 -0.1844722844661431 -0.02283873517187965) (0.9112705147262188 -0.1132459961507958 -0.6260008610580542) (0.4904169353363901 0.1199718689701301 1.000035135820135) (-0.1132701112566863 -0.02183518992361272 -0.05415382304679325) (0.0473609759553251 -0.02394173243662327 0.01099406271364498) (-3.497426865179311 -0.7724024311926971 -7.096079701966855) (0.07450238687676899 -0.05362318763233907 -0.00204036504798364) (0.3539551150390361 0.08044770611951391 0.2723992682821734) (1.201906235301961 -0.7288675024458946 0.701442462543031) (-0.8471034223675544 0.06734494843639473 0.41997121425341) (6.068562420906696 5.780303262899347 -5.297830345011232) (-4.623791971438099 -0.1015169852370759 -2.269797987949731) (0.7237531737239153 5.771803033714259 4.493130217692061) (1.808832837309117 4.914920214082679 1.969140929958117) (0.05378523983109606 0.05243017950651718 -0.02421186424799629) (-0.04456220279086387 2.6337066310762 -4.053134161779462) (-0.02679920133214906 0.006405062685542674 0.03694615913078825) (0.007810175040358672 0.006546936932262421 0.008724127602466363) (-1.178092529927708 1.315812320097336 -3.865063834902984) (0.3232770773489912 3.57032911656606 1.438440155432509) (-0.4275368665561615 8.173504085824682 4.296577893614903) (0.30560334536364 0.8184095287560501 -0.2044262221071892) (-0.2549483421436965 -0.1940192528960135 0.07962223720131043) (-0.1692343932943252 0.1388723156243374 -0.03186068967950336) (0.1413270552257794 -0.1736624471349124 -0.8909435753635331) (-2.319048268628422 8.157985725549542 1.359640957657994) (0.003409970421081626 -0.01137155416870051 0.151067988172076) (-0.4148866167673382 0.2861305741971672 0.1912739441744841) (-0.09131726067586976 1.744507476340398 -0.08357747680687103) (-0.08064084263598444 0.5513271672037946 -0.1931389179886879) (3.561756252845229 4.901539799536359 2.509783297341477) (-0.0002695579083317745 0.04106356262933735 -0.06681046544383037) (-1.017200502286844 3.912020281641928 -3.647261443701923) (0.3504189511859862 0.2130381947794564 -0.2378571902701233) (-0.579612403153535 -0.1979286836179426 0.2324075242513001) (1.620950366356536 6.928137707670637 -3.958316711264642) (-1.956001554828595 -45.29162693184837 -0.9997933016977043) (-7.371766772142962 -3.862867158434752 -5.568723373883086) (-0.4606799678967126 5.87267825730463 -1.221041139860762) (3.210402276307768 -2.34294068287618 2.405770617045913) (-0.9776061126071541 -7.012248290799224 -0.8218394723956461) (-1.029340678316954 -22.47159083062977 -0.6180272057764565) (-0.6224012075996305 -2.272818009716683 -1.448319851119222) (-15.32640443193685 -26.40451794633625 -0.224524159590564) (0.1161142349416302 -5.484003113092832 3.539220258620233) (0.5993013921590461 -29.48626700150104 -0.8635475331008942) (-0.7004922850749338 -3.371232515422766 0.2842389025067056) (-1.191346908357281 1.136584903532696 0.8818854462223407) (1.435552876788232 7.684506534765745 -3.315663692637894) (-0.2271926699701786 0.03560081225571322 0.1543754868159612) (0.109118204718791 0.1378176503012494 -0.01738545885456041) (2.657775152820954 0.9561185351483004 -0.5721531767986165) (-3.194630486147129 -41.24645290057404 -0.5003627296084542) (1.409595787543565 -3.506320460845998 2.312035149511726) (2.89666633944897 2.612254910673026 5.806936591864126) (2.661685342928118 -4.468544566698207 1.511416485845622) (0.3299629842583392 23.57297792236444 -1.832887287350964) (-0.007813369130646786 2.852941406502588 -1.764960694839928) (3.447431748628995 3.097807754641505 0.6073685124555559) (-0.4905534795472466 -42.43310150661343 -3.309678126303029) (1.801612324757011 -4.056122721409844 -2.489145522197992) (-3.71114564031841 -30.12944141825016 2.103081796404211) (-0.4499302172140798 -4.184680613144565 2.519780517333273) (-0.1061708333261165 -0.1166220843845762 -0.04000814349231045) (-1.377694058882863 -9.814126512633813 -5.932405582157065) (-0.9935927696853565 -6.246607631146187 0.1188340341521503) (0.5953079796818739 -36.61206892339175 -0.9544446427088815) (-1.882697910927174 -6.313636485028767 -2.279326638034274) (0.1464487981910469 -33.56110710185128 0.3290868514816566) (-3.92168425200689 -65.77094319565342 -2.024279318028959) (0.09488154695359481 -0.06069919761632662 0.03689152412340213) (1.196095476561405 -0.05074213225411119 -0.5979134727547806) (2.034777893537166 8.976282933254026 3.918456419271536) (0.7330873332879042 27.57934505532376 -1.191696314120757) (2.749150468639757 10.63663434647503 -0.4841312556088585) (2.858209872253179 2.294223146101946 2.052618803533535) (-0.4214557356404007 -4.57437958156758 -2.022299218397322) (-0.401033640109799 0.3361919693672936 0.01246334266229938) (0.05633714585437641 -1.189322177031285 0.6504410681592433) (0.9871215521544601 -6.526051959465413 0.2344510452271172) (-8.324533234040022 -41.30774370459266 2.043988955105826) (-4.633584918256766 4.464102969530929 -9.037240995311643) (-1.939154589106987 -53.45731240771366 -5.062307253088887) (1.427895345577523 -7.371334069783004 2.943600400466526) (0.2970265873328095 1.040073143114691 -0.9211970551144806) (-9.264994378160756 -2.55599332337062 -13.36040751058603) (8.696139775797862 -29.83477277701699 3.588176517111485) (0.03833522048116252 -0.05652054965166512 -0.02959405407530304) (-0.3691384897938434 -1.443847804579738 -0.5127955187260294) (0.4637263482115419 0.4388491454091396 -0.1842070562282909) (-3.47044763920612 -4.200597204139113 -10.87701779500814) (2.032949887461361 -52.46914795041133 3.80170900002319) (-0.136318600421197 9.547357898713454 -6.221379077320419) (0.1456698692881209 -0.2341174402930435 0.06006837969595508) (0.4369610859452196 -1.831206671769569 1.621679116431943) (-9.332347862358452 -12.19169185668808 10.43265085450923) (-0.3310603344259899 -5.935644912509449 -1.113476083272204) (-0.4222031381870207 -6.526117616499618 -1.999430111029517) (-0.7761459541564781 -4.270974215637029 -5.533170034087319) (-1.978034770480158 -6.352047646111536 6.748142514891136) (-2.318174719265522 -9.52765898215689 0.7044910117951906) (-3.935240282275422 -33.19385926725981 6.180178358576899) (-7.43091338900462 -44.28851668219269 8.608358173493379) (-0.0912652123744114 -0.004022609055506082 0.04797062643545465) (0.2291204997144499 -0.06460035417602078 -0.06220480268426688) (0.299367370863095 0.4607977933737483 -0.2114853796994811) (0.234454449426943 -0.3163404341452186 -0.07171138596243441) (4.000885866148029 13.04364318644105 -0.5782731976835388) (-2.751854328418871 0.5329900843622736 0.9557414895139882) (0.3065707531926329 -56.7479527685513 -6.095157903214955) (-2.4310687915578 -4.570246066362768 0.8241216599099552) (-1.686844004212228 -67.24595828796087 6.33539295086203) (0.1324088440109757 -6.441845876752213 -5.505841728083151) (-2.470043799544667 -9.23442099160655 -13.58171058609163) (-2.596428059689085 -6.624929448507316 -13.28163628546206) (-1.493602452680632 -11.18086393314997 4.646364502799901) (2.050886076188998 47.88074363999672 -6.941718596070423) (-2.185870645773097 0.918290611436348 -12.91863499879899) (3.684668382326244 25.64700078292314 -4.785956972215724) (2.598369986360787 25.86358401217836 -0.4458748512681907) (0.6472630771732213 29.45914287780943 -2.210412703838668) (0.784916302084093 -19.17890502570313 -5.46757203085224) (0.5292029540937597 -55.35921802211472 0.03200043293176513) (0.4795781133817058 31.50883451950703 -3.024598001927124) (-1.333300430844005 0.1334313450082666 -1.333643224064955) (-2.787571737930131 -7.887896916421849 -0.2167931927771508) (2.610093451519289 8.049972822654947 -1.283157970226106) (0.2517652775745287 39.32588654072405 -10.06133341019594) (-2.363397543134228 8.372916995686504 -3.723795282916758) (-3.063094362985868 50.39540178852311 -0.9879643275324086) (3.00051875150612 7.803440468817843 -2.483275533737426) (0.389012560041352 0.2526216012345704 0.05195360366649232) (-1.701076635919862 -0.9628344277457105 -2.514070722358085) (-0.1334666658933632 4.818406982235518 1.560635775582619) (0.7270636836878005 -29.29050736567722 -1.171028031286354) (1.359728736059118 34.2906051047005 0.9377745459925586) (-1.689326410615582 10.77155541232764 -4.288089096871624) (-17.50282171210377 -8.720706341869532 5.045822561254305) (-0.1417780492700477 -0.04584249326669201 0.008645304538210989) (-2.551091213486972 -1.274644391992189 1.795884987063026) (-0.6950785153529617 2.285774962221586 -2.317470785291078) (0.06046363176194766 -0.4713090232561692 -0.8514549451125419) (0.1699821880560761 -0.1237711452532063 0.08130254800237635) (0.07725900981085654 39.40500793986443 4.975413177974556) (0.1918374860049776 -0.1037427673618265 -0.06072946610820475) (0.7966758294659007 -0.1803895307046519 1.724251107694898) (0.6252671126304223 0.9321294379548287 -1.188902824442128) (-0.7951040034800925 0.9611133060784378 -1.860875052696227) (-0.2420222024419548 -0.3056983630590913 -1.139285722163968) (-0.2836184897062386 0.3490755895439956 -0.5272978157691365) (-0.3917829521811728 -0.5281420038902468 -5.178579895049669) (0.001411252043718012 -0.06912471625782163 0.05099444643855505) (0.9200996299440003 0.7594315848806283 -3.956416813119558) (-0.4087581148972955 11.11901452945994 1.015868231631043) (-3.152477408030121 8.914790155673561 2.355504656471052) (3.046898433990984 4.808334136750183 34.16568583063731) (0.1779876712860053 5.896891807682766 1.482884095431163) (-5.361780177246125 61.27040846757639 -8.334770855960755) (-3.739806545497649 55.94423371153373 5.562863321469068) (0.06471013514880807 0.0002701264057821812 -0.02096869717782603) (-1.146265698357305 8.512057672091849 6.9668361654713) (-1.8804642214958 6.007771481561171 0.9105050227976805) (2.921159870215019 59.68645453830587 1.88348895189303) (8.277899018423945 8.499736209907478 -1.324096594087973) (0.4448097105277055 -0.4866934180260902 -0.782548064580927) (0.0002072929358808448 0.007740860806080239 -0.00103497291497229) (-0.8245236560008773 -0.3234939901446389 -4.74609790715069) (-1.648030295241396 0.2146954723831624 0.148421776741636) (0.02844379929313392 0.030907546664668 -0.006190404938582265) (0.03678335908481038 -0.02633220697997577 -0.01307485990701164) (0.05740730813081223 0.1541558903241159 0.2739492702931414) (0.176173678987545 -0.1464509194767925 0.135418318759937) (-0.8918552169269274 -7.301283611769821 0.499207444950904) (0.2787567176687036 0.3720574597580575 -0.3264797109715946) (-0.7576462528311262 0.4128908672872872 -1.98461824982015) (0.07532090935816328 0.0190824690931153 -0.1121340963577989) (-1.935249708427642 -6.713921760395395 2.611465268040717) (0.7999807297386012 -1.340491423451707 -1.778750455594897) (-2.566838870599499 0.8474684909283363 -3.560180533659628) (0.01057523303289256 -0.0003900233032299952 -0.005601698101467463) (-0.1813536533999963 -0.1218384566666173 -0.09541174007985843) (112.1515095102001 1.624792695584595 107.4404102377514) (24.2510967150577 23.04477021180185 -11.27133405657732) (2.124520598735518 8.256353523147233 -1.338490957883142) (-7.172575898960186 -3.337586580731183 -42.090292657635) (5.907031503319283 19.37408349388144 -40.98131410132344) (-6.840213026784296 8.249172717763665 -4.842692565213175) (-4.350645981685747 -66.52250807103862 -1.281953823596656) (-0.08876196847577453 -0.1844716532116569 -0.136583986374088) (0.6068949736434446 -62.83948995691123 -1.53955607102459) (8.076077807789403 21.66911280780788 6.472538689446084) (4.986609569520528 6.019617078583341 1.243155677547655) (4.471009147565026 9.354586160043208 -7.644478982470885) (0.8811392338443409 47.08101011301709 4.009444675655319) (-1.990340372645984 -10.01920334501504 0.2189342503528662) (1.314951798333073 -9.301517778016569 -0.1223738250939743) (6.526112303746928 12.12341079180831 27.74880440102933) (-0.5487228725896758 0.2472653715224252 -0.1432338696732103) (1.270368195583531 -1.684888005505617 1.017016468996406) (0.3388012756869953 -5.589536459377317 2.67075843997841) (-1.814335558081466 -6.666992018261075 6.521629128315095) (-0.7363743677615071 -3.609623168792743 3.321172566060527) (-3.213380406505377 -7.712875923692482 3.458841537401645) (-0.00192391032603452 -0.03203308121756133 -0.01440992828548113) (-0.1912287491978691 20.69649603922399 4.517158172272396) (0.2057912003680396 0.109437835506628 0.09311828700036655) (2.455313380886319 -0.1892071072628951 -1.718280513825394) (-2.810926386364988 -2.375097671777664 -37.365296927643) (3.967208509437421 -4.360918497592774 -6.167208995335267) (-2.244148831968077 -10.59065616500544 -8.283199537181762) (-1.392402119492054 0.2654774032572779 0.4003261591437511) (0.3431309834777047 8.049135618169265 -0.319472873914465) (-6.025411378082865 -69.53698004614398 1.7961335473459) (4.081375420171304 2.152557683105921 -0.2988601816437206) (-2.472768877171568 -4.843193345551408 -1.362568556076255) (-3.240860515568825 -14.03380959401353 -1.485419639960464) (0.03747459913321638 2.061527341111859 -3.47470352964331) (1.431911165185865 -3.277596127963007 -0.8132327486150812) (-0.02410676929547467 0.05715487165772767 -0.04304958888654049) (5.552145760305999 69.58516988706629 -13.10741313716917) (0.008647001277899968 0.066925480821855 0.05184354160095443) (0.0523439960860914 -0.270791809200753 -6.069414810228707) (1.082043482602813 7.194335785375905 4.15187553385541) (6.063482678400765 44.02433050423867 -2.629546207856811) (-0.02090632762462505 0.02173489799018436 0.07567511700550114) (0.1542815631128732 0.07712741878143931 0.1528635808902728) (0.104261592260552 -0.4681249616232958 0.3331745756722073) (4.455566974199143 21.70048634405467 -0.4292222008812605) (-0.03813008840335756 0.003786864516665614 -0.04386552312182744) (0.518022703618555 0.5547395010758407 -0.1789061612229818) (3.919662452820055 6.274510479525438 -0.317662640939302) (-12.84806633472217 3.712917133394527 32.67837507722474) (0.6933650376798133 -0.3022632525372259 0.1302262842982954) (0.6180786123144414 -0.1796736632177215 0.07706453664562261) (-0.4529997346122235 0.3259371354362526 -0.2931879029450061) (2.233266546021725 9.411291051022568 3.482382579367452) (0.2361594095075394 -3.612031599731557 -0.3516686656656116) (-5.661535484748888 -7.721867751315253 3.099610215346256) (2.380797664324728 6.984128406877248 2.561278167255221) (0.04153640442408959 0.02240771495173985 0.009508518282098269) (0.9287255842396458 0.03607244373596236 0.170040185550566) (0.147044752183876 -0.01814060553911109 -0.003195367576201886) (-0.6373668489856784 0.2546090189007895 -5.801064706393288) (-2.78834919242967 7.660356187749068 -3.301227234056997) (1.08013756462783 0.09014541686066381 0.6028888972526198) (1.75497995571156 -2.977968678329459 3.338217507913178) (1.264564525892383 2.65739558534593 -2.023870808659956) (1.405890521529713 0.09223837810543853 -0.6334998348469252) (0.0402928384105414 -0.05676089908294324 -0.1982418844869216) (-0.04259948466831224 -0.002686505438613035 -0.01576318261674498) (7.907310144101921 -6.790920871976496 -8.647350900484344) (0.03788217401423995 0.007475086186840584 0.02997999847634543) (1.614538190157356 0.01813325187126463 -1.482768102762439) (0.1916594695804167 -0.04704021094940326 -5.011757376885269) (0.03214109826232118 -0.1264236813560949 -0.02298401614450656) (-0.003333720030010814 -0.01288494790696149 -0.003557844214677726) (1.492969737638616 2.651019952924353 0.2207978150108902) (2.088542226960306 -4.618673983337911 0.7844714775359366) (0.01508155765931774 -0.01091208637514951 0.02311540442806619) (0.04682073056308145 -0.1873882631024706 -0.169299765149922) (0.02104334907504675 -0.09532731457200806 -0.01786092452963011) (0.05408567040300404 0.07133106956640299 0.06560017024928635) (0.5475344076984958 -0.9760726377117894 -0.01666411662629497) (-0.08739635468317208 -0.02414002238469126 -0.009492296253231437) (0.02653779765757782 -0.005773082213660522 0.006029384346743778) (-0.1331011612583332 0.1984135701381894 -0.1442752639076839) (-1.057573591358679 -2.583221170148392 -1.181031677483701) (-0.1214659666659303 -0.003756523589457734 -0.09376383686186093) (0.1667240797745621 -0.5891662050266715 -0.8950885880893673) (0.2069384700553682 0.04279472752976694 0.1182822183753035) (0.9983710169073985 0.1396837093751087 1.23738300594494) (0.01140104572900561 0.07419199820820811 0.02724114543990167) (0.09178163847655871 0.1691705206706808 -0.1601974465388162) (-0.03654710028172085 -0.007397463501479016 -0.03648116625374367) (-0.01955928701600032 0.01693333667732398 -0.04382525457062932) (-0.4872623294820208 -0.1836137198549686 -0.8190759861814997) (-0.03316618502630878 -0.01357742437047934 0.02862755466560921) (-0.2141080294211108 -0.003802133936426838 -1.207606044894521) (1.014639529733389 0.5486246988827269 0.6939461089060406) (0.4109584343347757 1.706329842855611 -11.99243463834985) (-0.1925904948804392 -0.5706069564480949 -0.7082826977234388) (0.1144306718301208 -0.6923002453372377 -1.487918879157801) (0.05467859272024185 0.05643875365854518 -0.05076962336771271) (-0.8611844514197942 0.4146296698919222 -0.3597614806056817) (9.007573160243732 15.22729223130557 -5.232536003698171) (-5.915223281719003 -1.13410606031677 2.84805972487734) (-16.21629747494775 -18.53727681417043 16.18555204034219) (0.09707066965400826 0.172420851309733 -0.06391873407940601) (0.07890379371540439 0.04937530325413503 -0.04103292701240319) (-1.348961210370567 -0.5021610887502063 -4.700602333640801) (-2.560718502248448 1.275198381319677 0.1636203098673764) (0.09523852258423632 0.05098797490631365 -0.08435885379185444) (-1.311220069439525 -2.54239071841455 0.3799079029927537) (-2.104614709181973 -9.144207240189862 -4.052916180122841) (0.3305063087354621 0.6728247944956682 0.2071263152522912) (1.367590712163098 8.841185947094395 4.118655737142005) (-2.366583383371093 -1.859617581144742 -0.2226581733679375) (0.1511774726795296 -1.013772881378624 -0.1554702717197385) (0.02601187663002269 -0.3937741652056548 0.6755929887730412) (6.308096946117194 -11.00429607009165 -5.045292071941337) (0.06072609624427006 2.495890760902529 -4.287792273441426) (0.1014103469201053 2.521523539370226 1.87992378499244) (0.9665617263702905 4.130801608896039 0.6223546943048295) (-0.8538280888146278 2.895200488699445 -0.2417321107029852) (2.318216724054247 7.814977668472148 -6.95804920072997) (-0.02789908804452686 0.05100852075661524 0.04190041856955963) (0.009921315806196715 0.02298076078155216 0.04757773000645894) (-0.9705930479892553 -0.1935496897650968 -4.22073681637693) (0.5718732832969724 -0.08236294086454299 -1.276205394738911) (-2.085727011194518 -6.245185815794971 -3.012659720043451) (0.670786241654159 -0.5184115999939326 -0.4604713560838583) (0.9568843759545784 10.8602011263214 1.2873437213909) (-0.5673472706629595 -0.3860103846639641 -0.3819131435676127) (2.849260144798468 5.301424172623761 -1.86247295242468) (-0.02367767921211919 17.33074697669743 -3.125935990201754) (-0.01312823692473952 -0.006557643952572093 -0.009846421781387352) (0.1978314869592863 6.34626430832898 4.90330786617127) (0.02097041800510661 0.01983395320359343 0.0008300105906404757) (-0.4149151535985255 0.1797045696757656 -0.7541714258716432) (-0.323378882076944 -3.899597252530289 0.6996445147687133) (-2.219972434600139 -3.466723400817142 -1.012983656865479) (-0.1575042682562596 0.1098678272188994 -0.05924479208403789) (-0.6851910526666086 0.09600372325082576 -0.1544769674105871) (-0.1189461077856435 -0.07649154975131375 -5.782622475500668) (-0.973598298621504 1.688472802488025 -3.028000960194233) (-0.04787594021868526 -0.5017004962479543 -0.1875435093211661) (-0.7439221320500684 0.3322691152901959 0.1639515189862003) (-0.2923660337710197 -0.05215657114846536 0.4680262115364562) (0.2716275230342855 2.022069360895316 -4.233906154076689) (1.918017178950699 0.1467770481257002 -6.445969218211022) (-0.7482246748512715 6.796189199240471 -9.134575163248128) (-0.8869293526434047 0.7176523507686114 -2.388604474210953) (-1.04095773659516 -2.116621492102879 -26.58662512666278) (-0.3575320783829861 0.8641998902352767 -3.697889513103679) (0.2355788472889637 -0.05449639081061031 -1.461396867180802) (2.36878040956252 -2.901714623336956 0.4750736180306542) (-1.842578356479504 -4.444496802677411 2.12434551734539) (2.154546896790351 10.74518155170643 -0.9766097649982211) (-1.611386286518862 -8.671959196147625 2.338643984578069) (1.080183950348653 3.567172679275558 -1.231210071019024) (4.2147300900592 -2.519777534191377 -2.967126152856834) (-0.5688751755857885 -1.322611019972115 -2.132711935679111) (2.013253703998322 8.467390063141982 4.229527370852631) (-3.863530513406252 6.950596454122838 -0.1204236291024843) (5.636366572604346 0.7589909095804015 2.31061983449391) (-1.724556668057179 -2.412857624989974 -0.4258456803032126) (-0.2143801638564527 -0.2886988738142369 0.4465790647571855) (10.41432625859884 6.753836569201729 -35.36478241723391) (-0.9758271268475353 0.2165684796033753 -0.4004250928137856) (-1.125919188156968 2.436738618116808 0.02287290557116373) (0.08023586216020592 0.09309013346941744 -0.1684902667623725) (-0.1156305075278961 -0.02643724122737757 -0.2890145815634059) (0.7318869286963229 -0.2803155901080016 -0.283135627136028) (-0.2643532169769611 -0.2086965970172072 -0.1451506362866395) (0.194943099428331 4.882379510295069 -0.912353091438328) (0.7371987109189496 -12.69868293106356 -3.09632465199262) (0.1641908771298559 -2.619915642906311 3.963233912650437) (0.03849766354681666 -0.07202611573606571 -0.5367806942714174) (-0.1918022253021836 2.644637555325954 -0.7365605584912025) (-1.235283816481157 -0.8809882135497753 -0.2754796702526708) (-8.717735030659558 10.86115648558549 4.278560244592142) (-1.166412472703881 4.102702121801262 -0.1889590199248759) (0.485565792582292 -4.073005017349623 -0.4763898333711832) (-0.02791260154461295 6.920439842423618 -4.005630650589135) (8.535519869001222 91.32310955522469 4.286634270290071) (-0.008908732577580241 -0.02858070194681641 0.01748137955895805) (0.2571064943390702 0.5477250362543381 -0.4667099361644466) (2.588177670746144 -2.151089604390874 -3.069725480482719) (0.548540591290985 2.6857739520554 0.609242414861322) (-1.659560593097776 -9.515797321464214 4.871062332717219) (0.3003044521783454 0.2161775042165487 -0.3514826132326792) (0.7528435624430507 0.6069332635297273 -19.02772795602353) (-1.566460262237364 -2.570457386488245 -2.43676943818146) (0.6239736786079099 -29.42464956238666 -4.061036687248087) (-0.1901873633439214 -0.2573476211350164 -0.9615912029390881) (-4.814720317090352 -13.40671956163201 4.889344607674443) (0.5202699301364961 -0.3020444989060075 0.5172128934841046) (-1.510229307435517 5.8521161341429 -6.515597915889524) (4.949203633315196 4.72729701727329 3.821176015693959) (-0.2634858933829018 8.04495395306137 -7.225092602268939) (1.163718248535211 13.0155078475083 -3.324205797264381) (-1.054865315910562 -0.7882577734945472 0.3741558709564366) (0.6642158428182845 -1.158220827118596 -0.8590864107599918) (-0.152039769071556 0.933028702309982 0.1384852344313148) (-0.2376641095518561 -0.1387656170283588 -0.1656142484570813) (1.013047335632132 1.956434643063686 0.1902964994082782) (-0.03638957603824581 -0.1596253057161829 -0.09665004003174962) (0.09950952550994874 0.04054728042990646 -0.2005442375029637) (0.05030608799207026 0.02879948282446025 -0.01812471633608008) (-0.0543584336126761 -0.009390740249411174 -0.002500674502246631) (9.220334873532183 -3.636656551530983 4.654306106716962) (-0.6452956289396331 -3.310697845068988 -3.230942924117474) (0.6700102948428632 0.4140767713868284 -0.0242034662098628) (-0.2013470190697575 -0.03483287638090596 0.1788234070199276) (0.3801431825871432 -1.261774488024679 -0.5728450489750552) (-6.426050311120468 2.137801403755948 0.2167027834159365) (-0.4139888085873141 -1.379307372122043 2.29625550807816) (1.947020943513789 -0.4270999757205926 -0.7991353850222528) (-0.05474958206484396 0.1914815861624591 0.3741965575920911) (-0.690265651717593 -8.856627608054724 0.2796125346438298) (0.4241944685721153 -0.331774461871647 -0.05621952446295321) (-0.1325612374973775 0.9912361392731108 0.5996595582130388) (1.082741620447971 -1.800099996129986 0.6439134347510345) (-0.02245362274599052 0.2129791738088924 -0.04188463003755889) (-4.267150901485129 -42.89775479455802 0.9497421140363005) (-8.405011351934673 -7.732429527224753 -0.4632370495256506) (-0.6180069867359358 6.690001324291335 3.523453719491633) (0.1890517711351101 0.06069655889565639 -0.05040623575466573) (-0.2100774768467431 0.02563494599745118 -0.07244763193637876) (0.06065045323252598 0.01767876255708611 0.01348273947712433) (-1.964658424173751 -0.8592084207127246 0.7001724852139896) (0.1848800323127022 4.309465962438011 0.4385484467294741) (0.1445722399200766 0.1278314520823529 0.01365066349569691) (-0.7053525897420322 -4.775445456358834 -1.170852956532658) (-3.557114391879574 2.380098011481282 -0.7701552123244961) (6.213288253907603 -11.43526005161539 -0.3933087630332309) (-2.398025875106037 -4.174224150303718 1.683923119367888) (-3.569926912281218 -9.73260612755622 1.360453957310142) (-3.044794913714858 7.656448114917136 -7.622831470222524) (-0.03305423645538509 -0.1449454865820249 0.02626481302527885) (0.5450747790556535 -0.2497745914255305 0.5286247121405812) (0.6425471439914343 7.773192472931423 -0.07957026353458196) (1.01661406701485 2.623599844394585 -3.161153142144689) (-5.230622392334923 -9.479462130857881 -4.002583541585687) (8.102506499599814 16.60017909264862 1.069821550953734) (3.826850432512978 -36.61879910440106 2.198757925389454) (-0.5037537539070411 4.056384069039985 -3.119711471327112) (-0.7125377570252773 4.345208048927581 -0.409492592064307) (-0.003087861160228356 3.428373329525837 -0.9679973345472752) (0.04251298180685729 0.02671216166821035 -0.1117291534155487) (-0.03068369760755994 -0.02384888267545125 0.0007036956184637809) (7.200462738212597 63.82223560542258 4.456138898771577) (-5.477382982650886 -0.7771627372999448 5.867280334012749) (-1.428580753008305 64.95452329258408 -3.99248836756694) (2.560557683040815 -1.658740011423307 -4.527262885115961) (-0.01172650338448343 -0.01724110134741882 -0.04319783384645965) (-3.665049185759856 10.2321716950764 -3.095018815725122) (1.27028184593231 54.99720646211149 -4.902279019227129) (0.3124192619809482 -11.4376138858418 -3.918064605034218) (0.5254843205374113 -32.97665749397443 -7.655889159044241) (-0.1312968755672297 -0.110237166828233 -0.05062369752079471) (-0.5267300213542873 -6.343243447246479 3.994620240077536) (0.3466510240012013 -61.29391155741274 10.57950548925319) (-0.9440796555332202 -39.51798787830901 -1.746163388714326) (-0.05128774769060224 -8.286932830819948 -5.975534074107411) (-0.1277848671079565 -0.07207874388972027 -0.1374437952826609) (-0.5385671081283399 -2.44688982491658 0.1477139576876315) (-0.7810793664722261 -3.45133340666678 -1.429893684034077) (-0.2400712230591356 -2.509846881931989 1.188746945055795) (-0.02320610736346473 -1.826054844774458 0.2535445755270837) (-2.401630492044603 -24.92903745986539 -0.03566292617591565) (0.9629625785138599 5.666380969319527 -1.5310852187996) (-4.112250214029455 -6.89148506803635 2.696950788497233) (0.8771641594005561 -0.3259724450626411 -8.361397734712448) (1.821357775669355 -1.192694190665791 -4.4426542555046) (0.05431792262173012 -0.3283088402214898 -0.9110584644344287) (-2.278439496456236 -14.24691465614994 -8.709303345507266) (58.64189329809592 -90.37252781226076 -3.496675839458657) (0.01591328943470425 -0.01276437683457008 -0.03501211637086048) (11.91308127459715 -21.30368677678575 91.95705223310148) (0.1245783062561371 0.7294666217657745 0.04034832542507871) (-0.2231369757571429 5.872725988651451 -5.829326198252806) (0.07735916092734255 -0.127114844563464 0.1246755924763447) (0.02322054427479245 -0.004103847556115269 -0.02480291989917637) (-1.418684008702255 -36.05924944894861 0.2182707487677495) (3.715071947433518 16.83249841812952 -8.460765069975896) (1.194335467462321 -6.291506892475685 -1.439292297754113) (1.092949367882192 0.8976731649110969 1.477799587312001) (-8.654379660288235 -36.30450493522695 -0.7860400084355823) (-0.2422205250192183 0.07702140083576478 -0.1094096920604038) (4.553364749200407 -0.3965300997432709 1.184344071390342) (-1.5120228191853 5.651242055238443 -2.801097807299925) (5.864805535558245 -9.912752916139686 -4.601473049530766) (-6.845146936236234 -39.3205910282376 -4.558882607831038) (0.196515603674321 0.7702627735197163 0.3645998361933116) (1.348917027160867 22.20025561463891 -3.862438845385163) (-1.179203311026955 -2.18437968479509 2.466763662585292) (-1.280226585717541 -0.9468038539120069 -2.804752543692408) (0.5155938513170766 27.94151012358655 -2.730117696023464) (0.6700585764780609 -4.338816061084068 1.126043400635416) (-0.4774046339203502 -1.808689076809453 0.5004101550001279) (-0.1252610077677644 0.1495060912934447 0.1487133556429755) (0.008838117486164698 -0.05068491898822451 -0.006509322746811463) (0.004354505456537351 -0.006107455774349627 0.002123789893552899) (0.02686035068817015 -0.003486560127009417 -0.02174926092219145) (-2.600476252508179 4.845289599942258 1.507420934150324) (0.07490532818418238 0.6570866770778614 -0.1761821483254895) (-3.103135447616817 -4.888738890993032 -2.757184694893078) (-0.5897007657073725 -29.95030458170016 -0.1756473593316126) (-3.926850705358198 -0.5676010725754981 -0.3661524635344022) (-0.3784841119382694 -0.6426345432819867 0.2564442814269133) (-0.0358833545155455 0.3673970544469713 0.03490305245753721) (0.192628410989749 7.436630247864402 0.8209255852989725) (0.01595489320853029 -0.00676996449611833 -0.05043209249881495) (0.01274462085237488 0.03014495062593408 -0.001879134385348129) (-4.177200191168017 2.948870562989716 -12.84792266460168) (-0.3603910570563615 5.197689458033389 0.6684316638206652) (-6.259409421504372 -13.94575411625294 3.117320518622843) (2.418113906630829 3.481557192181796 1.708073520037007) (-1.830903598545289 -34.53715103970462 1.606578806618153) (0.0005386538102373876 -0.1554687579707274 0.005405657449770493) (-0.2733846409606049 -1.422731542464861 0.1286012960792205) (0.2596753230378126 1.655631411797045 -1.881430537763418) (-0.05027535994498893 0.02613044615872947 0.01323502255160906) (-3.126233779769114 -3.580756232531017 2.851996898241927) (-0.8141966295566216 -3.249867662441755 2.836349020108515) (1.248173294408377 -2.255927204099076 1.736428249386957) (-0.01552783736224755 -6.808746598980023e-05 0.00469204878644025) (-0.02761850387726188 -0.03651762794109159 -0.02186584075875172) (-2.179959745378431 -13.64532282550205 -2.482867269339518) (-0.7305220232229223 -4.841025330931762 -1.948885920198388) (0.6846029238102231 -5.799843542646921 2.730947692233692) (0.2354367772610088 -6.302026692689825 -3.164589541532927) (0.1582910512072769 -8.421951246288685 1.284844887937546) (0.1273651382642232 -7.7955089131733 1.596208937681963) (-0.5277854358578873 -2.855615595557109 -1.373442607596984) (-5.74926108134238 -8.104958282946551 -0.5653604081078547) (3.415788906456751 4.471285782580158 -3.573311303493476) (-4.970969154824143 -34.57155565126693 -3.01763984321284) (-0.0651243439345667 0.1765760385608759 0.06969687328172845) (-0.3188097640786309 56.65693155221338 -7.490186033626564) (-0.340117178486172 -11.26957548732052 2.381680746751516) (-1.0845400384024 3.899833919453953 -2.85323340017113) (0.1103707345558043 40.26190317134989 -2.043686087984264) (-0.6973908549537339 -8.088335322651758 0.6033664120473278) (-0.1108951843836575 -0.293754777605129 -0.5848780150739286) (-0.3960876777145862 6.575528805979454 -0.1291192429516345) (0.757262479792713 8.877619854679454 1.015865005887362) (1.153397995494489 -7.330464279837252 -3.909728166095221) (-0.8690060171742615 -29.73167276169 4.695224055835324) (0.1606507212593191 -4.586960731439101 -1.92078593267699) (0.09499191239225878 0.01133301343413066 0.02858851001574904) (2.6937068222016 0.09757103773094888 -0.9045607676189955) (-0.9685840837748291 -7.130570215428648 1.522579898348971) (0.08070449115902656 0.6418976336876571 -0.4310519539410553) (-0.2691935798174339 -4.026275711446002 -2.112667678917776) (-3.896534321908409 -4.2568174725668 -4.043750650150041) (1.502116261996685 -42.76809649447505 -1.15117930700308) (-1.425472946049654 1.605953380217795 0.5954410023566772) (3.076827655019704 -39.73831739376247 -3.578737640591136) (-0.2212008121405451 14.00468985574655 -1.387413229169713) (-1.995324862341381 -5.322860103032044 26.12674447235813) (0.6553591846002017 22.59207723221509 1.033429403526632) (-1.260019467869596 -22.25204621563554 -2.234844274986084) (1.325804664048168 6.117772623950845 5.562315526999728) (-2.238289787988823 -8.702154987936547 -2.093600254276989) (-2.365995599725414 -28.02424626923279 -4.99074093779211) (-0.1647223907798369 -0.2713037209112026 -0.1791038245997924) (3.785753486626773 29.05446484601661 -0.7080504181861961) (2.525681934521408 -0.1096602846291262 -1.046812966505125) (-2.404745252621657 1.604167140188682 -0.5545091744486601) (-4.147631644091066 -21.91894675204384 -3.11718965871091) (-1.6389914535818 -3.419251202249082 -3.222637045421782) (2.582148302163645 -7.896102200697719 0.7844524740813485) (0.5036103748993508 28.52703082822456 -0.3439821914785609) (-0.9858189052677127 7.762444039318685 -0.8037064452517095) (-0.2769210516068479 -0.05457970276365474 0.1416233556831545) (0.7047791739064678 0.4049270842256669 -0.06694499068421783) (-1.523299314012852 -3.350366053552601 -2.915512261041451) (4.023018501034871 36.70572906072985 7.29625536129778) (2.844835667109971 37.08003017946204 1.981327229679148) (-4.924251801893432 -35.51624316036624 6.644358340876806) (-1.739974951918719 0.8888737154913353 -0.9078794098503926) (-1.438839678572703 3.036048165784861 -1.330380264559153) (-1.604206498240526 2.935083736865871 -5.393747963264151) (-0.8682633809251212 3.878968997899268 -5.948366690734267) (0.1982087849239496 0.6362381644936486 -4.318206309983389) (1.05175956922566 3.693384307332876 -2.999351924186379) (1.57605616201162 3.687560732175986 6.155489503665566) (1.31923010158597 5.443967730950184 -4.522465606101358) (0.4098323837142832 2.625746519394989 -5.44976348791424) (-1.188155359832716 -4.680191381547329 1.876468839214846) (0.05096312989950303 -0.04583665499062096 0.01274806308232945) (0.06910991680409199 -0.02841772921292879 0.03620445973426292) (0.06223707828454345 -0.053668592083292 0.05133840958068082) (-0.1884587293859484 -2.03633205390299 0.9623240629937841) (0.1182672288818539 -0.05968649642421311 -0.02745992274450436) (0.309248230921574 -4.259197267275952 1.135172678493061) (-0.05641898442968526 0.2959571482750289 -0.6416304974234855) (0.7941265314147113 0.5667482875275635 -1.697581417874899) (0.1049629171922334 0.01336732275055007 -0.05980050434144862) (-0.2276070427854412 -0.575473458131768 0.3042435433505) (0.3006418983588117 0.4159237157297638 0.1345181221354527) (0.003592597713988344 -0.06868413254480987 0.03070062648931082) (-0.07771196608422462 -0.09839080947023655 0.1410741222585194) (0.0112176252882179 -0.0826655721341283 0.06084199385551365) (-0.01339633776015454 -0.03532319957277599 0.07065514177289661) (0.01887547240957256 -0.07955315416266948 -0.01212054786821817) (0.3893440341425876 0.1891177581933615 -0.4363859008142931) (0.3742249267929955 -0.3400964057719837 0.1318994192799947) (0.09285150631439971 -0.3871251654498878 0.294315836943594) (0.03470016353708509 0.009301411823918811 -0.00737893655884188) (0.5060255522372347 -0.4653354585310127 -0.09572944299795771) (-0.007426236180908485 -0.3297184435525566 0.01444772924747606) (0.004622601392929859 0.291792167013512 -0.2321615056306155) (0.5418827710495451 2.506449281490634 2.835933193619823) (-0.004764547071357227 0.02594750493431711 0.0004061253149538289) (-0.09982289374985184 -0.1427141891499782 0.2492957194243687) (0.2420185256030965 -0.3431399165235599 -0.7194694700445081) (0.1354024326560087 0.3552062164320883 -0.09700662636091019) (-0.005850735512206088 -0.008242813408107844 0.002535427889692141) (-0.01189957349792352 0.001979029254390005 -0.004869475070356908) (0.03782749126936847 0.03936381053348392 0.001142998397216641) (0.009764062944073788 0.006133637743885209 0.009188525472988405) (-7.09284688147123 14.14632368428999 6.001540130772793) (-7.949214088832102 1.160266249425467 -3.563822458730274) (10.19529783063486 -0.5880316533978496 -8.66855294866577) (4.674270277838795 -2.369359286099405 -2.080398775269523) (0.03755383376396434 0.009522306007041322 0.0136428305409059) (0.02059103315822784 -0.01555438221007086 0.01286148969244943) (0.05729055316456805 2.639321419803221 -2.452891453131416) (11.18937380425707 20.55936563179396 -6.393249992284866) (0.04463356739330247 0.2784639959352799 -0.3470274491910675) (-1.974922238033399 -0.3226500745159709 2.260971417059325) (-0.06788680889841947 0.03616479144177731 -6.286444082558865) (0.03758124811109584 -0.005371302655184072 0.01069110580097391) (13.04204260440632 19.16445385924379 -2.4968790580653) (-5.548785350592623 -0.1608815769371725 4.364615204287334) (-1.347542301251378 -0.08201741387938205 1.183149136676421) (-11.63215871130034 -21.29648719372528 9.496806198068422) (0.2795529257738082 0.2175417203798497 -0.3452956883031622) (-0.8383047410716027 2.119829846206891 -0.1582414563926537) (-0.8578285402441517 0.7463893044430032 0.3675942157848801) (-0.7249376801661451 -0.7611658505361877 -0.5759583054569233) (3.582977974066392 0.5923396058981063 -0.2400681282552876) (0.2820725706135959 0.2197461411786016 -0.3192880761850605) (-44.1643543832072 -6.471141457753498 -76.29693707037472) (0.7949980183109384 -0.9158275049717008 -0.1028295885477372) (0.2208933293437188 0.4547433373778432 -4.893995791256478) (0.1149950140710714 0.0584981850156937 -0.007389230542522683) (-0.2605490934001755 5.310781426022341 3.960040572490358) (-5.068910932806101 -14.12769457535351 -4.569012665389094) (-0.04349946119115863 0.02729283159558508 0.0463281719706549) (-4.422542378033278 1.662787538511304 1.610732458652528) (-3.817502851927719 -3.30793788631021 -14.59957817490834) (5.007283135893577 -7.039849135072655 -0.4628574671160366) (-1.594765880982786 -10.86672005674706 5.411321229378567) (-6.572756224747274 -18.40498374605132 -7.142718560717924) (3.324266378790151 -7.237857031875693 2.214058993633332) (-2.063434878158238 3.399461213087855 -0.332671075289678) (-0.606052800470987 -5.295326529845346 -0.4164387693234319) (-3.64727974035588 1.621449897551337 -1.685720819336242) (0.09167618136572875 -4.686190808643359 -0.3908203361598865) (1.891708128725419 -5.376002778988975 1.64494031060726) (-1.25855170051523 1.02519867780083 -1.329989480842668) (-0.2352197290892283 -2.167960429071154 -20.68394536531212) (4.20728055233002 3.362142943503719 -0.637530440577451) (1.4358229510909 0.05719362847370835 -0.8521291610513596) (3.473380574135671 0.04755265338858641 -1.534442540207948) (-0.3812892185508088 0.3668764016152349 0.4046896044092926) (0.1765184994894818 0.4115304307755628 -1.973317539572618) (2.205323005814469 22.13496058963195 3.602587192848122) (0.6316772590174009 0.178021373460616 -0.4894735593053219) (0.8736657087006502 -3.499009609692185 3.222055927349366) (-0.3169835751546594 3.945224489714841 0.4679547867959231) (-0.02580321185078602 2.792965685396733 1.025388692459772) (-0.06721218402615792 2.62660882203534 0.3046715999687639) (-0.0215852600580162 -0.02107960324339755 -0.004435294548895774) (-1.631890063578268 1.62405497900573 -0.2528086874123168) (1.159839906194376 -0.1160510013555545 -0.7203093216301248) (6.832705396977233 23.43340395529659 16.37534488138822) (0.1771257579926999 0.05823670019028573 0.1039505421612041) (-0.7347772854981338 0.1480299310290283 -0.4046781233078927) (-1.1884022508168 -5.690891471072802 -3.856074341913014) (3.190715499120123 -6.575650632585583 1.434417593410886) (1.437299625973177 -3.608515038673027 -0.1447986507613712) (0.9495591749190508 -1.815933624480001 -1.120636023013839) (0.2598002041336478 -7.122238710625505 3.061484724613818) (1.305302602810053 -2.807050610619284 -2.500612877500666) (0.2278657390927394 0.9525627247710019 -4.047090664583678) (0.02730355087989966 -0.6480382225463907 0.2121047281386008) (1.209102079974348 -1.973005620415517 -3.809105816090592) (1.532665755808314 -2.215237817878154 -0.9705535032686377) (3.175524279191201 50.83206417536908 5.680506143288515) (-0.4580239093187596 6.887113296110045 0.8584554070186712) (-0.08766383647513018 0.01216309630880414 0.05288491536508107) (0.2321959459244661 0.998399128366589 -0.7328533335577176) (-1.687831078816204 -1.666794474372396 -0.8492379872574374) (3.558087445561062 -0.4553977040008486 0.4424766490229315) (-0.1895301131084317 1.427136178134383 -4.380171323584301) (-0.008877870359579621 -0.02140508457050883 0.02347766492093237) (-0.9690268471322752 1.557423575299599 -0.5414430560963077) (-0.2930697944531654 0.09850699392932322 -4.571839597292428) (0.04815894783532912 -0.05363365129869667 -4.600744116242081) (-2.257041931927931 0.4103846837070799 -19.0954534086935) (0.03753743883803317 0.0211849489212476 0.01896877417665127) (0.06689064596143719 0.07192479348407618 -4.647501388928212) (-0.3707103546186325 1.29021581723601 -0.4101752245828273) (1.393066176965485 -0.8943131768548538 -0.1399763685703814) (0.145182572092153 -3.926992462092333 -1.565576171952171) (0.005278395072624563 0.0005003541154752593 -0.0143799962009936) (-0.01203907738107264 0.06420593144932552 -0.02443040467848635) (0.8707759194613761 -2.244654835662465 -1.255380991173868) (0.1468064942596293 -0.006938371666205409 -4.929297485896907) (0.1282789748835999 -0.04159818933376457 -4.994860391792737) (0.04021255250514148 0.01820641228639948 -0.043735998163456) (0.9859517315771412 -0.7493542851319184 -0.03644078307758876) (0.04259107893256697 -0.7587009345510589 -4.881323736714531) (-0.7758852299648611 -0.9561151541713533 -2.574549232511162) (-12.94927552877635 32.43155256125385 1.806859399278846) (-5.105191295187775 -6.674507798889858 -5.407351331561749) (-0.02682195512382091 -0.4885421091346972 -1.123716421969807) (0.9328709059469753 -0.2861272642485244 -0.665898457397338) (1.213805838172073 2.709954940308328 3.444821681938241) (0.5559372246076644 0.2672383301067454 -0.2485506126555268) (0.1261777560549567 0.0578467661196054 -5.475664705290468) (1.744264796696211 -0.1671543176375492 -1.270857736066263) (0.1669022959739217 -0.4610959687524541 -5.561432750398128) (-0.2193623036367162 -0.735436590885871 0.3257176600379805) (-0.03930061680041542 -0.1374218247594379 -0.193094057181077) (0.3453135450963032 -0.6460050493134208 -3.728025444335679) (-1.659724025477531 -3.641471822765901 -2.130190190278114) (0.0630325437795744 0.1803084054403623 -5.461412058282273) (-0.08033575364370754 0.0357689029524079 -5.686322576706868) (-0.03072487668239151 -0.01233736272660877 -0.000543024725319345) (-0.1539102616037743 0.549442376584134 -0.2992217607995236) (1.224449945357437 -0.3545621378293597 0.03480918008556461) (-0.3403053399752596 0.2170683237091166 -0.09992214847375422) (-1.196254382591022 0.4162967260346683 -0.392707088434671) (-1.166884157071068 -0.234903554868982 -2.936189066410754) (-0.6165488545596804 3.142919525556954 -0.4553865233861257) (-0.09830591388405263 -0.6369476894157668 0.9157925317778488) (1.541908838205353 0.8572078863305155 -1.619540295952048) (1.178865906855694 -1.880876274624864 -2.800516508134203) (0.5388697527513422 0.03312563273515162 0.306913651121253) (-0.1556764258773854 0.01968698733636144 0.01405035111933195) (0.2902551122062518 0.01241939614393612 0.00164337701250486) (1.630906380551809 0.1648873639810698 0.1881975814883614) (-0.3771195926147447 2.13910277401436 -0.222529204855323) (-0.09939115344153863 0.1051792149978159 -0.1745339808258859) (-0.2887842164350051 -0.1425648674354903 -0.6567290381530428) (0.1359301893614921 -0.05714099962017917 -0.2426264591603366) (3.487217103030839 2.026463436820259 -1.102853298047122) (0.001556288741603027 -0.004181144715579399 0.009220595810070432) (0.02537130085280805 -0.2230110067605535 -0.005098827929005387) (0.773411605946454 2.305843566452929 1.204798187842364) (0.08508698806139695 -0.4907647429774375 -0.9672398696941865) (-0.4449913334402867 0.01792754820931459 -0.6036245215059663) (0.2056043321674629 -0.2713530858702266 -0.16702677974005) (0.4885877310386871 -0.341120867032018 -3.241450881304873) (-1.198019134656337 -3.024161598736363 0.8625321637904726) (-0.04184485015869911 0.02178454013134445 -0.01771585108355071) (-0.3241096302896135 -1.311202191033697 -0.04377442529643503) (0.001186007810538405 0.006780344351202281 0.03414308202466766) (-0.2238530715216333 -1.967869342456003 0.5156938736483585) (-10.34215417999953 1.739098901166705 -6.198396783793287) (-1.675351776198904 -7.74784751972901 -1.161289896496592) (-0.06659264057918921 -0.009321684570608536 -0.1439342871426942) (5.49928675238656 -5.717733180690519 0.7544386562621463) (0.01827355458329844 0.0435177728887364 -0.0005619637395331868) (-0.04575061550618105 -0.01800540358785807 -0.006779441072307234) (-0.05670786800122993 -0.2754726447314671 0.1690384048512895) (0.04087187587754548 -0.05676818032287165 0.03991990368232001) (-1.412558280871341 -1.011100228579712 1.220259999349394) (0.006261178236320643 -0.0005834175210081421 -0.06019260858483938) (0.0297182488747325 -0.008404800260125054 0.003880110719489134) (0.06694713427463081 0.06812310635347847 -0.1333834650639015) (0.01779698858482814 0.9385936260435529 -0.01799463620490994) (0.1598494136395582 -0.07183623285245505 0.08192934627113982) (0.1373963768262778 -0.3034973033425614 -0.1316449934746677) (0.2491850209749577 0.7984515790098825 -0.4463697060110383) (0.1458539307482235 -0.01047772210199219 -0.02111429288161148) (-0.06578490730669613 0.006258880442858491 0.01580821019440309) (-0.003310877784665204 -0.0030235754410564 -0.0396887985333463) (0.01145868068844567 0.02087454728347128 0.01715531680201457) (-0.0333711789683216 -0.03711436808485676 0.1443246833257108) (-0.09395220304261931 -0.1897143049952261 0.1009593028430899) (-0.2929685758919943 0.1311483099598779 0.05964334434940884) (-0.03114068486165942 -0.02673214090135129 -0.0240747308003768) (-0.07778490129036275 -0.009770551022723478 -0.02853946488759268) (-0.100763769876867 -0.005289333995038191 -0.00782686115157376) (0.7688527115058126 0.1998465140672326 -0.009124732880454789) (-0.8571325972182843 -0.0435854846461079 -1.487992965101344) (0.03647490824823049 -0.01507253402043111 0.06545080715088458) (-0.01935168579663421 -0.02077851544919937 0.004823221579081134) (0.2203564566819202 -3.486126183254926 -0.4932937409941879) (-1.510761792467548 -3.055607080043136 -2.692115647610827) (-3.544907269687201 3.150256197985118 -19.77527962488642) (-0.120801499231802 0.8939435154082154 2.110946457485195) (1.895097178038427 -1.058658846838766 -0.322768592465193) (-0.6097844408928725 0.406455233630471 0.2216761472340151) (-0.1155312390990622 -0.1628464506923221 0.2329604631294031) (0.2944311341822856 -0.1052644001419679 -0.2741054220750579) (-10.17858046208944 4.693806481739078 -9.60014465606732) (0.894380365720997 0.5431429944805561 -1.926299053660701) (-0.006849028825097231 -0.00799665734145933 -0.01363072106883878) (1.871858718465788 1.404793353834029 0.6246521627710304) (-27.41129380726144 -22.58133085217633 -14.05639172442428) (0.3100279523505146 -0.005644210557275396 -0.02102156674294106) (-0.007909308794149139 -0.5290106913133599 -1.378599045035217) (-0.3049065769561089 -0.4486866489688188 0.6474044192976169) (0.0710156335266402 -1.531319495019271 -0.4558531061526) (0.2819301815603173 -5.709946538967453 -2.472954395921047) (0.2340239374709981 -0.2961224456435503 -0.3167024002845729) (0.333645577363898 2.447781226721087 -0.4250365761229139) (-0.3527095763300244 0.4074091901685032 -2.029817343020929) (-0.6056767492833712 1.863233792137254 -4.141795278059238) (7.466307401390341 -7.52517277365725 2.362972274648257) (-0.1671854589287385 0.8683928952553928 -0.7727980988962582) (-0.06902170393636907 -0.09151032411618415 -0.05567530254403898) (0.6729988093065493 0.8654184841692723 -0.5066491904709459) (-0.3588434896079554 2.777884250517491 1.019410833115902) (1.123195399892077 -2.98838221326498 -0.9999490757435513) (-0.01180475336123937 0.03461900575313174 0.02919734916109694) (-1.647813769351827 1.386614942118264 -4.065879666196397) (-0.6239765019057141 -2.668395067544754 -0.4454855442649526) (1.208272123889974 -4.779698806304973 -1.978854782630928) (2.684932910771008 1.918527287113692 -2.908567945049374) (-0.4360520554511315 -0.2799226182889856 -3.137262806804295) (0.0335033184111919 0.01889675904441441 0.04641421001511738) (-0.9753514140950703 0.08200515159804145 -0.192258413782139) (-0.02972102183827696 -0.02491775291895853 0.01254957303747391) (0.009734794349895996 0.01496027137602954 -0.01067039597807206) (0.0605782118990424 -0.04851328708430716 -0.0006815232732817027) (0.002104045369409631 0.0004348370319342057 -0.008843819469864999) (-0.7538927030308449 -0.6214087957236332 -0.04626076331922373) (0.7727027656228085 0.03994001343621763 -0.3521021163051098) (-0.00824901104278478 -0.002933718340106279 -0.008628802495441387) (-0.06717149833624567 -0.01040146641637493 -0.03023561403106187) (-0.3253846324469304 1.000986814642223 0.2290518546572903) (-0.01901102410512942 -0.009424512121485509 0.005653634826567174) (1.84977775862413 -0.3599535214270247 -0.2135883721093159) (-0.3141767059516068 -0.3919801464981932 -0.7829448801400286) (0.2795454589729391 -0.009147229745649008 0.07887216990812157) (-0.1214834251995399 0.008489083772293588 -0.0532403022274945) (0.00570867453857569 -0.02665730499247911 0.01014934088304432) (0.1981451256460406 1.182548435373827 0.2583268743062372) (-0.04792437796485574 -0.4493563013594857 -0.007280019932505759) (4.281576183812098 17.18317002151848 4.963594558680851) (0.008372822056751821 0.04061469066821791 0.04103906452876162) (0.6851223125324946 -0.5184995279804158 -0.1465978332699495) (0.4479939144737404 -2.68937019992244 0.1943193465106225) (0.3548600564193721 1.181754760467259 -0.4875881246201598) (1.085957329978107 -8.364617862182886 0.5184227982191658) (0.02079044979776707 0.01142402296795251 0.02125853859937845) (-0.06076914241779252 -0.009254394629712627 -0.01755477044551824) (-0.8544094436990592 1.757394578617514 3.312358824618088) (0.02698124805705555 0.0009914836866965319 -0.007581894011238325) (-2.315282557031694 -11.67210305330223 3.79124381307239) (-1.21959450051811 -2.958421867581222 1.810010144268376) (-0.8929711716948414 -10.16925031366443 -0.2450124104116707) (-0.131813448199684 -0.08648379577599891 0.2447807575005856) (-3.280540085731255 -10.09681898786765 4.857020635036702) (0.007701891483609223 0.02086862270097124 0.02232899886405629) (0.01692339955723702 0.003871112763538291 0.01416414616092646) (0.2400448940764175 -7.43678302019591 1.729311333986562) (1.39651919991578 -3.355344933947097 -5.583565293599841) (0.0098524232214743 -0.009583401196606802 0.009036225413171369) (9.282877874555425 -6.097453214476021 2.672144651528686) (-0.2156817581114719 -0.05661696427680573 -0.01009162249352332) (-0.3401110189748893 -1.352582604063425 0.3466027150998148) (-0.03681564404066513 -0.04463341654685547 -0.0058388090491832) (-0.07177974128190534 -0.09639103151454581 -0.08499305480395439) (-0.002581796567237057 -0.006256177560618094 -0.001399578526538946) (0.001795228340086694 0.0133250204773462 0.0295784321451157) (-6.989102634113564 -11.88582887063296 -3.697739079198601) (1.527636308186749 3.108148737765617 3.721829745135985) (-0.09755739945930289 0.006624491175598768 0.04860423700167055) (-0.493836573445532 1.083771228604997 0.09436033962300476) (-0.03107560215763588 -0.01269971869972152 -0.01440551741548714) (-0.00875078171699227 0.05731005798735603 -0.003060796337350059) (0.01072988084686261 -0.007474397413638041 0.01823790154600843) (0.0004264725245276407 0.02105919676661395 0.01100117842407434) (-0.2014528626434522 -0.07828302588567515 0.04206308082592316) (-0.02522556066463524 0.03015754804625784 0.002543928258324255) (0.1413430441107467 0.1953155880445598 0.02110069685882238) (0.0251226189659863 -0.06439971702881715 -0.09631866892482119) (4.619402631265459 -2.923529623387765 3.321945911620805) (-0.07476185069425575 0.04107293978857411 0.1412558651006399) (-47.56550043451595 25.85057810185962 -8.404670404016574) (-10.6564842376504 6.504368988346203 0.6399350324077404) (-1.894693458144945 -0.7404505726042365 -0.795739104921984) (1.500271758866655 -1.290253656988568 0.2495276419077423) (6.149839716293963 16.33873548346046 17.8335388369372) (-2.70771075842172 1.028092812578405 -21.23930226546892) (-0.1759865067795646 -0.4581932238404662 1.261087894640901) (-2.31419251592352 0.3711777426337821 -1.049267220888406) (-0.009835778940485504 -0.008770014455358695 -0.03225003857606179) (-1.519655085768597 2.514065740268856 0.6017491366577237) (-1.285706177993548 0.1435549021233848 -0.01748010406248227) (2.415534511983025 2.418990455947894 4.822567545161523) (0.3075467088113432 -0.07924189763483747 0.4894584201333404) (0.4811351654052986 11.18529244320746 2.652700837035594) (-3.667394661006226 10.91839789609977 -0.4690821532310107) (-0.3229238930265381 0.04017796185053447 -0.4384517399011034) (0.07836784348585177 0.095377919636667 -0.2882388638880901) (-0.1977041972138629 -0.2064548895768744 -0.1427611953883468) (-0.3417455797388137 0.2160517429360254 0.1153120353073507) (0.7101322528408336 -0.252853643914244 0.2963574958950484) (-0.03935550587096859 -0.01981434954111846 -0.1545906221734117) (-3.364969738442086 -1.356892814269049 0.04962102686224523) (0.5281798334723403 10.09716826264465 1.875433136533515) (0.2942752953807524 0.922465549106336 7.251352965949659) (0.1003445555655513 -0.03631320977716895 0.01332933893268042) (-0.2611516187702079 29.48709268475187 -0.008631078770176048) (12.05582801132286 8.004044293514252 8.917478525510051) (0.6881535007601499 -0.3295588943050449 0.03170918105083144) (1.996415799951857 -0.6424833105816439 -1.671417749089425) (-1.685699021635745 1.378008684440195 -5.244762248735305) (0.2652032745321479 0.06321279780368717 -0.7625504778191796) (0.8821318994072964 0.1319214591800985 -0.6829890419472586) (-0.1633717662837339 1.732629168075153 0.9394967723475468) (0.3635678391492186 -0.8158987333660446 -0.814441358456744) (-0.1761466881344966 0.001056186263378549 0.1011362375770412) (-0.1971913638620775 0.03160471924559766 0.03579440820043463) (0.416802269590351 -0.5791608561361065 -0.1597733044877071) (1.654800838038966 0.04678937867757749 -0.9146026744678586) (0.04718561568207 -0.1876588861806263 -0.01068854378187392) (0.4615107672470454 0.1689226497106542 -0.2611652958192198) (-0.1169475091976176 0.0245088089173869 -0.08375573372538708) (0.3349349769748581 0.1328611796119192 0.2748796932818162) (-0.1646127626268777 0.1943176651452164 0.08309208128388708) (-6.365551103365164 -13.19350263670826 -1.428449217647562) (0.01120737649464179 -0.3299214685197665 -0.519627771605305) (-0.06795340545797046 -0.01457502450919599 -0.02691886631522906) (-0.0758339259647459 -0.09324757498379228 -0.1142760301079414) (-0.02605500778569653 -0.05540806852001268 0.1863474976988193) (0.6745428346785953 -4.106750193924936 2.036971839399296) (0.7475712547602404 0.3434882817770012 1.870056957261955) (-0.01144402653160756 -0.1263300465783013 0.01051640041529499) (0.2695992831901263 -2.15042391349831 0.7733442391574776) (-3.621612137877253 -1.698685635508115 -4.216766867468534) (2.132639109824346 -6.29781802673904 -1.395405398773652) (0.1740895997643718 0.1205966610271115 -0.1525732332751817) (-0.02491166518807685 -0.04353776841888126 0.06604204109329484) (-2.801039438928329 -4.076927543425922 0.6634603062680801) (-1.533040971899349 -0.7870728243919546 -2.033752094553429) (0.7203558545393213 -2.970580553692368 -0.8814184269139396) (-28.66423014879084 10.42425925157295 -2.683834922786195) (-3.784229424438248 2.588886669404975 -4.801177616756283) (-3.030142609002412 7.017763647954324 -0.4943843372017045) (0.7305134812626128 0.3182822591914555 -0.7593741567802578) (-0.1343505867459957 -0.05669953181273542 -0.02138349243321521) (2.196165098261889 -7.880988868457825 3.490153198938097) (-17.1329453304197 -6.444552325915673 -10.08141495096621) (0.1255634795097663 -0.03317871668431919 -4.494025683419152) (-0.3430051161737707 -0.3313003990367485 -0.6002838548394586) (-0.01596022178065901 0.03321920504997214 -0.03515371602636085) (0.9970961420574264 -2.461235764814383 -0.7381633035297495) (0.04202494910750018 -0.02523500620677321 0.04737459509391347) (41.21333638964784 9.566825604903846 11.80424097310692) (-0.3208899991096655 5.252001086616608 2.910841574824655) (-0.05845986678417367 -0.03642703878108311 -0.02294652068977641) (0.9667939995910487 6.613148016491863 1.774029515655057) (-0.1121492982257619 0.1106913194310822 -0.1527073350400925) (0.1143186639802937 0.00167992222570237 -4.871374360072938) (-3.43449790403449 -10.88897418805924 3.050379449311849) (0.004153407569437539 -2.678884787840532e-05 -0.0009139912785820097) (0.006162027812552423 0.1339557400469439 -6.795913676275337) (-1.414328845801042 2.902705736477294 -3.756508493842) (0.07501615566837086 0.00616394590947042 0.08091188814589829) (0.03514371283258571 -0.002152531892266663 0.04618527297685676) (-0.03819596269683552 -0.001098139769678333 -0.06921362243543039) (-0.02559319843110006 0.01872060706226032 -0.08779365079312029) (-0.05023257759665743 0.0064324521015326 0.08148885344654605) (0.004997202719453586 1.017165235585743 0.3354962198210283) (0.06711733723929608 -0.1448618259573852 0.1614400300964828) (-0.0872811145423108 0.004605503418899967 -0.01813704966222655) (-0.1895478468176858 0.008052262104121837 -0.1257402847089664) (0.3187775642675278 0.3552627222369716 -0.4071457028785053) (0.09859712611389551 -0.3150781654766771 0.6461394513980721) (3.584846662966132 -8.886210944258774 0.4280176021725948) (-2.076021498234794 -3.309315789680863 1.314254226080356) (0.1763119258633253 -0.01158191376793982 -0.3365213366222009) (-0.01764364484475101 -0.0008167600553096802 -0.06421849014391134) (-1.969864220389484 -3.015113106633854 -2.335147190862161) (0.1168908911867913 0.06136575166482967 -0.1109169255270597) (-0.1919414462874239 0.002725414518589618 -0.1399549556921754) (-1.249990120567642 -12.01949900980474 1.711717783182302) (2.068173547543052 -6.397342610990725 -8.114728931489006) (15.31785627871885 -12.08727988054379 -2.166468649792185) (1.248534539470453 3.797930324379111 -0.8446628552345754) (0.1329258734006026 -0.1711567557431832 -0.059991184159493) (3.378184134293945 8.188762336884347 0.1097805726406682) (33.08886366838804 -21.61484064669797 -9.790357210533738) (0.2338394352019988 0.181990618089048 0.2129869602216628) (-0.6484434709397346 2.089583267887419 -3.199529044143344) (0.6611225205778616 4.780495705679715 -0.9925399527590367) (2.548284464370105 19.1224623035149 -2.793323948840443) (-0.2134892170804469 23.82258485670518 8.271149391943048) (-0.04301355537636849 0.02009365555756339 0.0264726094849315) (-0.1337062911594291 0.1476800536395814 -0.02071150793916875) (-0.05365187683624077 -0.00295703923761733 0.03940254335369137) (-0.3564877296409862 0.8022760646038585 -0.3564270320993624) (0.2667324078901943 -0.05638631804468594 -11.00739858930986) (1.639647925554024 0.04568790610910806 -0.08827141924507279) (0.2350270468291313 0.1179750776437016 0.616284650120106) (6.367780159627263 6.783237302265015 -8.021552462556675) (0.06634519991024233 -0.02203743520416234 0.01933317434996937) (0.6916723608410222 0.08282646275245371 -0.1529972614516929) (0.01954281745782966 0.01696711190831656 -0.005235365334677323) (-0.04384643886685758 -0.03763186282494992 -0.0367664435213339) (0.01437146185848667 -0.002978975543934535 -0.02797295027907193) (-0.05336693638794396 0.01676169729328069 -0.06253009227245279) (0.3487033914713435 0.03329795527352479 -0.09629487145203927) (0.3923745055028711 0.1586857419062403 0.1394218098909985) (0.6107778600904247 -0.04741492459757174 -0.03869110685093286) (0.05704578601267338 -0.03833734441525883 -0.005334919844755981) (0.112565746614464 -0.007069709868012742 0.03837037378905724) (0.3063262915648883 0.0642681055432843 -0.1697601747635984) (1.027520544564109 -3.341512716683692 -1.801575846429543) (0.5259182692441632 -0.1380750967272267 -0.04835773063706547) (0.1705181616299973 -0.07499874020356471 0.05072097673295103) (0.001286281919523666 0.03244434575908342 -0.0693560766638875) (0.04120277245604004 0.02249364002224388 -0.01887211144039234) (-0.01818180408518393 -0.06717626977269701 0.003335924916282358) (-0.1450185177235212 -10.54221850513524 -1.299853095363068) (-6.252470130325277 -1.59378077225664 0.6318656788256227) (-1.51414762255906 6.766619426672524 -1.020068383277477) (5.34267505241809 31.4802822574714 -9.349299400874864) (-0.8355466554391606 -12.57962766665023 -3.957428351132092) (-3.900524055913057 -3.277216611780999 -9.081294955822026) (0.01504849598438884 0.02915700529870599 -0.0317393542412486) (-0.4773436533804972 9.217950507477681 2.40210822325958) (-0.4928857957090848 4.208621395086781 -2.256833087362441) (-0.6014669274833528 -1.182674984062682 -0.1342409919594326) (0.0175035987381419 0.03735899173780582 -0.0162545283773564) (0.02499732650151585 -0.001301791852514713 0.01302210471981051) (0.7650745941982897 -2.268230554384397 -3.089901760712862) (-0.652712852560196 -10.97194493506453 -6.501024790828279) (-2.591198998443554 -3.179278016297029 -1.343741328635367) (-0.3904732792230747 4.308661116278008 2.117142521112936) (27.73801694215653 21.92894387312489 11.22471877026973) (-1.581008384839736 -0.1288200117553522 0.07001149426938555) (-0.8846023771860484 -25.07224244897518 4.30131990644465) (0.03554269936675767 0.01750013726308447 -0.02171934528332681) (0.02596880735700736 -0.185205788209325 -0.218694185152472) (0.08276886439014225 0.1055687479253353 0.02279359167089179) (0.8491893501022486 -1.600573905136266 -0.2787286478533539) (0.8696158163433159 -8.117984191434376 -5.507345158284289) (-0.3077780400874406 0.292828684915264 -0.3032468673353959) (-0.03754487920883414 0.09874668529438738 -0.06906352953439231) (0.04194730032712611 0.03528455852092117 -0.04226056896716578) (0.02041623883629297 0.1077804621042167 0.067200178081865) (0.006207768793985493 0.0009276745462690093 -0.03942037902408309) (-0.05766760941057487 -0.02272456106969724 -4.521526103165041) (-0.2912288748655138 0.4902347721219431 -0.1332142506893852) (0.142936530102439 -0.02928090448403033 0.3006062412886976) (-0.2019419620677305 -0.1819064116902265 0.1620499627081643) (0.8185372388636465 -0.7972846446170527 -5.629098531607262) (0.1374851586397525 -3.281055070106035 -2.614163686755757) (0.1358389096907228 0.4425317819891932 -0.6756671537662097) (0.6320258148882729 0.1221893176183107 0.01402662397537911) (0.1328662943998868 -0.004082317150716393 -0.1566803922042747) (0.0292023755929097 -0.07865521496510573 -0.07728049979745534) (1.663973423202323 -32.88220202949016 -5.532472481777972) (3.185610334682349 -3.200134029491652 -0.7502401125719032) (-0.4097543920412788 -5.155445938302228 -2.824656500088173) (-0.02340978637598725 -0.001924367672484602 -0.1240944245911248) (0.1738653238675171 0.2414112640325718 -0.513094493055386) (-0.02283980453491137 0.006620389616169314 -0.02140743419886591) (1.171295119094591 -37.67963841231413 3.233591071488946) (0.02406353967739407 0.0779737362257297 0.03726661620211243) (-0.4401306349817757 -8.400983421240317 -2.67552004893716) (0.6117516464010484 0.3626133637012722 0.7498526956218468) (0.01099645727823063 0.0325772463973051 -0.04476006441716701) (-0.06191130640537829 -0.03506566376203323 -0.002876040562699619) (0.02882314342934258 0.07186414265977431 -0.1732023118858667) (0.05781241812619133 0.07387082628587417 -0.00973071383434297) (0.002121068019071581 0.06961472286732819 -4.528813117981442) (0.0942116228142558 2.872419374109592 -2.011640842418072) (-0.6369166502017785 0.2120504179065278 -0.219804830142014) (-0.04377149965398547 0.06829433678867411 -0.7547496302754314) (-0.2140286237881276 -2.634762874799656 0.8245465299070398) (-0.5991157723198507 5.43443502341062 1.013409901282398) (-0.02019319801603091 8.241163482375953 -1.335060271654301) (1.585070857968441 -44.3842694018378 -5.735617409952264) (-0.04044052404353891 0.0512268391419685 -0.1074052858230754) (-10.85006415597389 9.196616672629169 8.820588587298442) (-1.02789041913645 0.7455228039908954 0.09929979071943529) (0.05059729327373341 3.399070838421258 0.2747305577225446) (-0.7846121343799397 -1.160600034103851 -0.08332182412271261) (-0.6034925572525006 4.984340327667029 -2.042672852413798) (0.7654316406919957 2.791541712916251 -2.989146677311515) (-0.9347879917478666 -4.436745706651829 -0.07708553760355641) (-0.8698049280552083 2.809966337751546 -7.934969140585624) (-4.537546387165385 -4.461642044928861 3.844525883763735) (-2.484722209006181 0.03570001908586651 -2.341884494861969) (-2.300882434071678 2.321749133888116 -4.378350063289954) (-0.5826819234865638 15.1483051159769 -2.959541831212256) (0.1866960967435621 0.06454896150776655 -0.1444268123685359) (0.9887620037666429 -1.508406874070103 -0.09216446393868449) (-1.060605913249812 11.37510119306075 -4.257512124309298) (3.560890335571921 14.12822976209844 -2.572635964592055) (0.07677857936672322 -1.77072236619254 -2.82383082938912) (0.02455746303763667 0.05222567211134001 0.02708904216609115) (-0.08163097314667064 0.1642159409248136 -3.029936657735048) (1.520950157135976 -0.0705827733279259 0.3447763185348613) (-0.2708728720811368 1.354737405798762 0.3567976059263271) (0.9270167616470641 -2.361743823314115 -2.261857991532059) (1.637163438799828 3.154860829206434 0.0694231673724871) (-1.677378194823047 -1.083200698808373 0.667752284640146) (-0.6046512117138332 5.424777126183436 -0.7343520341827718) (0.1991439149818277 7.627091495817818 1.410761031654626) (0.3402872278731825 3.369021407791192 4.734764759666469) (1.262960213290708 -0.3458183033105101 -6.186415446611343) (-0.02191748168808185 -0.448565000659063 -0.32083487399764) (-0.02642785652096841 3.82152456663244 -2.454513840051899) (-0.3896460540424082 -3.601043672613377 1.02154353840883) (0.7067536862019497 4.730570253732203 0.6248369394794383) (-1.210423718140232 -5.708579504843547 0.2009461710280795) (0.921742121737433 4.878468764860722 -2.331452466052995) (-0.1654544660174967 -0.3349670472469786 -0.4581316482658163) (-0.1459067799244942 -0.09095231625904825 -0.1387132538236822) (0.06501977459235067 0.01908149692857591 0.002284009056290523) (0.7439621245412644 1.894688935383272 -1.83782394770101) (0.6088990798141745 -40.0865539509138 -4.40122621110465) (4.096864610207534 4.80893414352083 6.147201222085455) (0.7730275809223499 -7.041845929245112 2.290024364692734) (-0.8789040009101785 -26.29230513131578 -5.99307937950349) (-0.03905910430963321 -0.002265207229760278 0.0003996803416521522) (2.319487569757138 -1.291761562596362 2.119761797408479) (-1.25540555471929 -0.06844738925810738 -0.6409277477980018) (5.947740622922637 -5.075748172732899 -10.95037731440445) (0.02245575952311835 -0.2643316481560227 -0.68572078519944) (-0.1554097561724415 0.1363451423639625 -0.1910563838779668) (-1.235511148844811 2.393924167616175 -2.85326984264206) (-0.2940284612932789 -0.4443663810333144 0.1403647145231323) (0.904577787608555 -0.9476159505333017 0.07929007167925151) (2.002301057067158 1.225417090694382 0.06838959755155274) (-0.0104035995544956 0.3905551023399046 0.1821773984089427) (-10.22756490226438 10.30824861241458 33.14810391719167) (-4.192307404845173 2.475089571097097 -5.344245758209559) (0.217797151494348 0.03843400641147716 -0.3644192560054234) (1.809360748958053 17.69283160770777 -8.994350448210252) (-1.578743028257558 -7.551742370900167 -5.611249411489374) (0.8734668027533117 3.409716382584034 -2.737259862237436) (-0.2367374393609275 7.147719784332292 -1.060243770540601) (-1.660267173009591 5.118853829668955 20.41107373387377) (0.9817661082825564 -1.911895837951351 3.017344276509116) (-0.7410139300308449 4.630486270811122 5.745638339759081) (-0.804126381454539 2.863951653730716 -2.35407539033906) (-2.016657419681719 1.656963914021172 -6.969947859482161) (-2.174834264888603 -0.04655959468697723 -21.17503415927654) (0.02250978463705444 0.009470396554535484 -0.02165966328968446) (-0.02481748607452746 -0.04354888998468727 0.04980285626337747) (0.8296691689950209 -0.5402063991002429 -0.1360733165693309) (-3.81396858017357 -2.084597882358529 1.177805096649884) (0.700938325013021 -0.6724952942353809 -7.971471947630925) (-0.02722535813257509 0.1247742555206048 0.04176937547970479) (-0.8239454563671265 9.70627640868571 7.533713178753136) (-0.1937371739678073 -1.310574331987731 -3.686918359340655) (-3.928448733588441 3.000200595727948 -1.876633538148356) (-0.3403974315075593 0.5948752316695061 -23.57690683433169) (0.959265831647705 -0.986035424727957 -0.208747596248611) (-0.1709612575760159 0.01928468164731019 -0.1644223782915523) (0.1123119391107744 0.4782901326376172 -1.09832812435969) (-0.3499264173881919 0.02237385682147064 -0.6195396502188724) (-1.215635758914084 -5.060874283754169 1.196111895342) (-0.01577061196654381 -0.1735274311146124 -0.001018736993666705) (0.748035347604362 7.964305365380454 -8.275764931761985) (8.727162004387598 -5.926970491332639 -21.29890238868741) (-1.087159550433354 -7.056128827927036 2.507712123554817) (1.993907733526906 -10.02304144271682 2.652848136061101) (3.143471035695979 -6.287894014662855 -2.576221639634854) (-0.04639605953365832 0.0398287464738053 0.06249304691964492) (-3.097809058539807 3.714781816411346 -2.725780123745333) (1.288798316525054 5.028428734543534 1.279619067308524) (-0.5604677679050786 0.7256393402462122 0.3178640226166888) (2.334741052476411 4.921188525195289 3.321653351311287) (-1.978534333272074 11.07356549245254 -3.733588079077917) (2.952761059811966 2.531237931746039 7.071071707874331) (0.2114811254812034 4.055453276705415 -0.4884934671571632) (-0.1607811472187891 0.008103390584712877 0.4670259316694965) (0.2716333004150516 1.136226716879073 0.4340832632871874) (0.9769814766639238 -2.375134803991216 -2.04788569117752) (1.819601846979817 3.1317873411843 4.078145979518244) (-1.475134975299946 8.08694022170684 -1.085679182824425) (-0.5149635935478196 3.1055783426026 1.464077059760967) (-0.117425523339618 1.129195903813579 -1.006931625516421) (1.416224980154123 -1.994901015921418 -1.126824282557907) (0.02403592115877962 0.007985359640130498 0.03038411941323147) (-1.103648755607856 1.901764101666064 -2.431074961175637) (-0.1713881029614264 0.2282849686263167 0.42116049442777) (3.96164837242971 28.90403921326228 0.6965389667161569) (0.03623622508641509 -0.1605285931707104 0.1014288108876704) (-4.287224292699855 6.179505368720573 -12.44357844137177) (0.003307897546490884 -0.006519473648780978 0.009628609617613252) (-0.1788664265806965 4.968955815383122 -0.4683831856087731) (-0.05017056905073387 -0.009573608760588524 0.01136162214263998) (-0.01641561407003899 0.02308492024772582 0.01313104149005431) (-0.03805531906959148 0.00887234937630987 -0.04368145390943634) (-0.1771528425426562 -0.1190637782238495 0.04245300987006305) (-0.02057797005570437 -0.0279161964821728 0.06754190526852752) (-0.5499578119273708 -0.8589510276799377 -0.06847357793337877) (-8.552472878810972 9.541559342493343 -60.41514079066626) (15.42055326726032 14.03856891781656 0.6444633119461554) (-1.287302161121977 6.991212500028903 -2.208290761097099) (0.1100444510309211 -0.008851763661348405 -0.09287778020898663) (-0.03678005617744481 -0.0834096144394196 0.1778628841362178) (1.882066681179478 1.133364704321046 -3.583588818823827) (-0.6034096386663189 1.046276732723852 2.371999051788199) (-5.366442215726111 -38.7463458797444 9.084621249273427) (0.03902163242795213 0.009952820555173471 0.02104926918696767) (-0.05619862458057788 0.6031244992452313 -0.6502941142490104) (1.693173226878801 -0.4265189564459431 -2.022236127014785) (0.4757846939808674 0.2906082077817653 -0.1199988160324312) (0.2629581638597678 -1.453610884297993 0.603142040591313) (-0.3163146276991065 -6.427455493590294 1.773270667045537) (0.1214721030124658 0.03212994455243378 0.1091716460445382) (-0.0139555753266726 0.1456899392263957 -0.06839929416257158) (-0.1005247298055124 -7.544065647817144 -0.7267208151407889) (-0.9144881292881143 -1.757754753835215 -1.383593223167404) (-0.1668941330678638 0.04814879650637215 0.163272335027981) (0.07920271468202332 -0.04586400377404234 0.01226669021622476) (-0.5426995322715407 -0.1250052276447898 0.3672269824778888) (0.01490191035356528 -0.1428323927785898 0.152942946156518) (0.1967349639939903 -0.0732175331667142 -0.1329173179039469) (-0.0409247744700473 -0.005130509876318551 -0.2995766145161807) (0.04381661124720823 -0.1072131411843825 0.03894642521492282) (0.05378671391799203 0.06363620258159886 -0.8539426603239293) (-0.7893122812662808 8.585913644781316 0.2162565013915885) (-0.3621656269984983 -1.164983360727299 -5.407912828967588) (0.5463276174637791 8.607714162708657 -6.836005430415085) (-1.309071000272233 -6.518893740669974 7.433034336406561) (3.52137560663313 2.916450365080567 4.939947831820263) (0.500386535695393 10.80269253260947 -0.2483946728630834) (-0.4980153554614934 0.2574558495064595 -0.3873214584064346) (-2.268298580918646 3.674902057074469 -3.731031650996201) (1.212351174294828 -4.333054792284773 1.890594072860264) (0.7040681798738622 0.2905814289388465 -0.7140105231317166) (-2.313368693907413 1.082140965299603 -0.604871336477276) (-0.06162717463050166 26.92717233440044 7.752731576755641) (-5.156159298643594 6.041841372533844 -1.1760035626224) (1.740262853980366 -0.7269296860117769 -10.0295836405954) (-0.9440273492333018 -8.658470180404935 -3.801834080955911) (0.83912234950807 5.01481255266177 3.651576971053944) (1.718005019959704 0.2634530653791594 -0.09173509764462751) (-0.01387913963933651 -1.763030349367737 -1.244446140789461) (-0.6299929882045566 0.40754495400309 0.5887866424626937) (-2.25523433682507 -0.3246089745985741 -0.06462725487102383) (0.8974992878156782 -0.6194626729721197 -3.671173284647003) (0.7904848493104526 -0.2598476448490796 0.1177786375315311) (1.446006914254531 1.56001474051734 1.741534772664948) (0.4255595801717997 -0.2915255188044836 -0.008215734615612369) (2.190460671862457 -1.173652640366702 2.241278229875516) (2.628272188865803 1.845435899914979 -1.837888653109136) (-0.03868185841738053 1.583531351463451 0.2221051013202727) (-0.6067888491310244 1.338189172180484 -1.049662775425867) (0.05703594231168421 -0.07844372199551805 -0.006707041069983728) (1.863333784133324 30.35655448711803 -0.8392806399226068) (0.1915379429510575 5.169202893597094 -3.148606615745991) (4.326628419178311 2.195957970940571 -0.4359308349606987) (0.007107793891061448 -0.04355892314609114 -0.03973951000823107) (0.07629344893133094 0.3607175774940978 0.03799031999542074) (-0.2486754610429783 -1.000007506164948 -0.3150197755146926) (0.02221187967137421 -0.01965517743940426 -0.05592034830393926) (1.657746428645705 0.7630188498631704 0.3479830060231171) (2.3325732566724 38.35085445294703 1.896698999810167) (-0.003595316467228965 0.1207488100770233 -0.03538245851078141) (2.805679087257841 -8.525114554623777 -1.614327808797523) (1.05733932393798 24.01093726433723 -0.6116190503263036) (-0.4871783810570219 1.663442705967124 -1.46161768406507) (-5.280590374395332 -3.914217494131039 -6.419928091530018) (-1.921168675014947 -1.084678848871168 2.06189936484313) (-2.956144443721394 0.8814594871861593 -4.88195919654642) (0.4260379698354222 0.6454257827744999 -23.49225621733043) (-1.519393031943472 -4.916309694624086 -34.5931179060758) (-0.3964270561154286 0.007519518413043269 0.2351360639042949) (-3.384724324261695 -29.11392649847227 2.482244722104209) (0.09758744457554211 -0.1409097692188366 -0.0552448070860868) (-1.439943980229739 -2.439269126073322 0.3042538607408729) (-0.3372083201586603 -5.550719100571424 -1.760103144351231) (0.5887325676437719 5.173607442260078 5.301273747076823) (-3.625806862435097 -2.747119952180377 -20.58474515542953) (0.03295440393887439 1.065807424148705 -1.015745472831536) (0.2428402361630899 3.559185364877474 -3.049596288060332) (0.5511537838968124 -3.324295977201419 -5.821753313237367) (-3.195544210208359 -7.87004900997805 -5.349474836253964) (-0.9328931238774029 -1.579875460203231 8.502853902538922) (-0.9276284133322195 -13.25545635037433 3.997952918533243) (0.31195334731366 -3.942999487396167 -7.18376364699973) (1.28808133418424 0.1654770154356538 -3.262988318901942) (-1.772835870900295 -4.714428566087031 0.4509882779670991) (0.262518077856476 0.2830254441540916 -4.267187393349073) (7.733518449948615 2.89731668258057 -6.067359022935319) (0.9914652074749024 -0.6929267764087439 -5.977619574503617) (0.02585630827451887 -1.697906764974575 0.2471403925096627) (0.4569840103685526 -3.029417120393664 -3.034343429291912) (-0.9337600543848082 2.214727927406773 3.0506279076156) (-0.3318347845938909 0.2486265536390565 -0.4887335401536618) (-1.919356987241702 2.118408344363809 -1.547031274487975) (0.2061897121737708 0.175581159284537 0.00304638912618331) (5.272176835836531 2.766374529141667 4.982264511171382) (-3.326788926533629 -2.873995503469561 1.278891605969496) (-0.9334004976413358 1.339412924454967 -2.85845204760264) (-0.2382286774218709 7.628918188715982 0.1517441431234992) (-0.116559545972765 -3.424257564703728e-05 -0.08846332921951865) (0.06126275051537307 -0.05275766000106701 -0.0358831691406701) (0.5182403183395772 0.3630749573567329 -0.2720368036055534) (-0.751704464209227 3.156876208112837 -4.221302107921519) (-1.318073712040061 -2.693025979405668 1.227199464260401) (1.441573946103848 -1.181476033052675 0.4036360095136149) (-2.508941354685307 -5.019185817345321 -0.1624500261892289) (-0.9072720786776676 -0.6055470287888814 0.4431836827200955) (-0.6234496843768103 0.09122365020393866 -0.1036419301487065) (-0.2013140957075434 -0.2402529564476359 -0.05282654679994012) (-2.917651885968635 -7.51422972584779 1.80082015715806) (-0.1367940466565105 0.1104198695572959 -0.1060582145224725) (1.153142099546459 -4.247599060405694 0.6141969015368858) (0.6601889899105271 32.64139670620755 -3.466749181929464) (-5.342038370910213 9.330128866275748 -5.761694928155052) (-0.8323545286563973 3.095843388037107 2.585483310212164) (12.37540432022564 -1.578509339174901 -2.85270678460904) (1.699394296410079 8.382504584615578 0.02733728562389925) (2.628733129638245 30.29077036276509 -4.29051901508889) (-0.1874568317406222 5.304825514378106 4.047411211266551) (1.190980223740514 2.347494688920022 5.787104990167545) (8.259167362900937 -8.929601017821716 -0.9487454021279955) (-6.278288278502913 -9.223037219913685 5.838132978680176) (-0.4546599161770751 -0.2582154233832253 0.4510699861919653) (-0.07703207290018994 0.04893310632291341 0.1064791214237658) (0.1211080359048826 0.4483082171663768 0.4865694222031196) (0.0574576630001195 -0.01557352945351878 -0.0288579381687575) (-0.224299955898639 -0.1435740123490467 0.6602432940371548) (-0.05166118904916235 -0.1262907183405425 -0.03657456995975355) (-11.12938533931844 -5.176116592261629 1.801429434903001) (11.03493625626127 -5.180271257031979 0.8485287565070185) (-0.4707979782756734 1.27016180658908 0.1213103920668333) (0.2125355230470885 -0.0483599818974828 -0.01291921747789332) (-1.75724062052737 -0.3376066846817934 -2.972690057337676) (-0.01364293464050692 0.9862663308288079 -0.6543394805983255) (-1.889012408314721 4.277516834656137 -4.050395597155058) (-0.008684463895886171 -0.05113879531650267 0.03319435792271448) (1.140350404219064 0.4798564021958406 -0.3800816840596725) (4.782628763525899 4.548302718214869 -3.228611613790136) (-0.4280728496220508 -0.03097162692620468 -0.008094542530581117) (0.445780849357556 0.1456510874637312 -1.188009625744652) (0.6623552629777424 0.4075902665528086 0.4855308352537768) (-30.26003946560401 -10.81681567333358 -11.24902552282819) (2.19571190171852 -6.122745050442981 2.04639059733931) (-5.250600637808388 -8.885352234000162 -5.531276113588742) (-1.133206073720305 -1.219837501062259 -2.219540163172649) (-0.1005652942856876 12.57101973100863 0.6826029208457736) (1.505014126423366 6.696734735274139 4.172359757127992) (-5.594811079872411 13.3503390690215 1.560417001404151) (-1.514904111684953 7.276181043827954 3.47246775741894) (-1.141388897652771 -6.637955120071528 4.818534494874505) (0.3050546130322772 -1.727038282124268 -0.4897358715018859) (-3.579274680779103 -4.404083092169175 5.934479836624002) (-0.2082983639031839 0.39005209758381 0.592080421167442) (-1.246431336594041 -0.5988623681910897 -2.899288408721769) (0.006629648371642845 -0.06723467918210822 -0.00253193675144292) (-0.09637108372289607 -0.02604852792014968 -0.01915677159102857) (0.03900987195460835 0.02557925572189292 -0.02397300481389921) (-0.3296888709630173 -0.1129058502280892 -0.08171235291208148) (0.1288509425438432 -0.07394050492194279 -0.01870974079641125) (-0.06163286878354064 2.085216137173906 -2.967682901258609) (-1.177860501153555 -0.7691951723935563 -19.01074135110943) (-1.971398281709539 -4.630323701191376 0.5200395509788307) (-0.7610312075103796 -0.6049133109579478 3.64050752787161) (-1.642101669980072 -1.671738088446961 -2.079283621746542) (-1.07306398729362 -3.401368992705481 1.605162563682154) (2.162186487443279 4.095874779361526 -1.695740396617328) (-0.2802298955273488 -4.306572932081605 25.53933168176276) (2.118471649884541 5.248164536383368 2.187820038432172) (0.8222508658597213 2.79671594785937 -1.252113220092413) (-3.905692571309412 -7.295930839940886 -1.540173567641415) (0.08501270199924615 -2.411000982098228 1.179451667369137) (-2.692254074339727 -5.762994937786364 0.2649700642980805) (-0.3103488018826494 0.4555494663514394 -0.216753997214527) (3.162786076273489 16.20116292797218 -5.948625237521422) (0.7577989304939285 0.1823798337470524 -0.1186260998721625) (0.5055930929140448 -0.02372892961236733 -0.6506479466365598) (-0.5515493897803025 0.5580887112661653 0.2811017506175112) (-0.8695491085315813 -2.453911188115744 0.8197618648656564) (-0.5842088657646276 -1.241023909261332 -0.3168843244794727) (1.302574051718085 0.7584282387995369 -1.063447452355198) (2.423075772589466 6.734834569515116 -0.7945941818584309) (-0.5125446227656503 -1.058416781222733 0.679177346596626) (-0.086069551203542 1.255385603007061 -0.07445170144682144) (0.7057412132940077 -0.5763890425837892 -3.641646298317504) (2.469815593527741 8.580183078928009 -0.6498899256898946) (-0.4760963849798864 -0.7617220812214023 2.321480380448706) (1.310266930563151 2.209588164767018 0.006864161989023176) (0.1204581313199934 0.09052266981928048 -0.03830679792175223) (-0.002425897895233824 -0.0006159724970990106 0.03004818790788248) (-0.1231985154726 -0.03952443876499723 -0.01292743310533783) (0.105240516873674 -0.02494717676360012 -0.01713632893447386) (0.8225128623114804 0.9078215854128473 1.169651498332834) (-0.06227365673636039 0.02228273620823391 -0.02945947388630026) (5.561683790875823 7.617100771421395 7.411899959572386) (0.8037101192097434 0.924292322651561 -1.153596843383483) (6.593161596566998 31.14173763433664 -1.806535098962216) (0.1374913262545323 0.07351835030981664 0.618026135695285) (0.03650635795593561 0.01209700487723621 -0.03221851460818861) (-0.3407380492850596 -0.09434949487044798 0.01266861402841315) (0.8867705829973 4.89383376008616 0.1553688514716889) (0.007290091981919669 -0.01038749425713988 -0.008016411872286973) (0.08758652712120846 2.058451120675157 -0.7841564550184383) (0.7913200694510483 1.515567841444411 1.037964881855739) (-0.7172356998370985 1.738361940251375 -0.626743440459863) (2.579886690514071 2.057998599656484 -2.470342145681988) (-2.299922009782929 1.739202115889007 0.6222908086583526) (0.08712160378665694 0.3662615199279136 -0.2559421829071579) (0.3750610231728906 7.242118076648715 -2.065493179837024) (-2.385969698995236 10.84811039074373 -3.202664169456316) (1.446013588314113 2.743015321691814 1.778623364568725) (-0.3339902636396172 -0.2977723342481916 -0.03745172600988717) (0.1505525833668137 3.023127591303046 0.9988666594836644) (0.5432925042540546 42.84125341150278 -15.77505458159335) (-0.6864474975306805 37.97076947076008 -6.729807237487813) (1.945166056520157 -61.50792322900308 11.29106641467473) (-0.0666377429489448 -0.02638649962992137 -0.1030716006074506) (-42.01291205809554 5.327833721684516 0.8298104257640122) (-0.01677515937872038 -0.09457836120016441 0.05886311385962538) (0.1705927850455055 0.05907692115664027 0.3636598330161216) (-0.1578600546695795 -0.1472386839790963 -0.07179836938082261) (1.522614791391557 0.3038687662794549 -0.4694572723238605) (2.938007124657928 1.312579752847646 -0.7149774522406409) (0.106831106709075 0.03515685900418715 -0.002760848937097618) (0.03699310154927067 0.4103025115686866 0.3110515512207213) (0.2023185308022295 0.8275646769449138 0.4521987345425458) (1.099376901734558 4.082441854314425 -4.449343764454021) (0.7297135478421694 4.443635906338631 1.849690321460668) (0.9510900885430894 8.737132700027418 -0.596718413661755) (0.9647282455855456 3.18680557685386 -0.8395226788745448) (2.13688983849865 3.453388634931196 0.5242062557963358) (-0.4689646145685666 0.1632023873011324 -0.09654104550677009) (-2.486909332443559 0.5942625502355829 0.7941928506393923) (7.33527987701375 23.39493201566601 -6.413597203168884) (1.273853055725593 6.525327745559196 -2.855132100021555) (0.2444552297644711 1.476916446011904 2.175530529388716) (6.51727925158467 17.85928790349286 4.757379040712355) (1.089210618126772 2.766122511949916 0.7440292885631477) (-0.6624847045119994 0.2102550651654312 -4.237108152731818) (-1.118528936694075 -1.406155343863297 -2.302006027018235) (-1.395981615317226 -6.616451321030304 0.07777905043530509) (6.612654838943484 9.135563148911974 4.936355924892328) (0.008833298951823793 0.05179702836014115 -0.1529674906636913) (0.0330602890446334 -0.04422238574107954 -0.09641983866317133) (0.09801693155562938 -0.04194835235703201 0.04894685253264412) (0.159952012605418 0.2185581261230751 0.1615004123702957) (-0.06885395544133635 -0.08704923364224147 -0.06658676504518656) (-0.09192048623037455 0.002505329428908156 -0.0225102597882262) (-1.323237676290604 -1.053617204723231 0.009379767550779322) (0.2689526241379873 -0.004390189098578809 -0.1408291611480484) (-0.4190999615282627 -8.444806566968007 3.223210898550662) (0.5404988767622563 -38.76353718848132 -4.924034100483075) (0.255706882365921 -27.7089369849843 6.585955152668294) (-6.915963877117248 3.023104176513127 3.855919762257762) (-0.1622044084245784 -0.650917696050346 -0.7737006961559461) (0.2231712708214051 -5.740833814527509 2.667618627134058) (-1.084313775556808 -1.275041889818842 0.9047427235902759) (-0.3995787251352964 -2.109177218270206 -1.507162703471356) (-3.095208137862079 0.3897365747357833 -0.5841661981286381) (-0.02560049582104476 -2.693071420610107 -0.5445654937231245) (-1.922665021534608 -3.799677751557923 0.1507428883271045) (-0.0957919607836184 -0.07096658934039966 -0.05824037588979944) (0.1754001240600571 0.1609634005780339 0.05598095433596909) (-3.996254339004851 -2.837781330915544 1.259910600518055) (-0.2130070969666724 -2.403746950644351 -1.446363944650411) (0.002762301252541536 0.06264910504604961 -0.03715225946338738) (0.1389813997583322 0.004946188561815001 0.0255701997001283) (1.685791607244588 0.6051998095916222 -2.216623856978348) (-0.08787965926849903 -1.845607802387799 0.08297988024938435) (0.2343595478626023 -0.001453923081462377 0.0805195078623) (0.02061257232045009 0.115364665497819 -0.05055390167441383) (-0.549877967874024 0.1225080507342589 0.1110769146384274) (0.1953588916239371 -0.1812628371183431 0.1006077068437012) (-0.2252518260714546 -32.97922882135784 4.434786709282969) (0.7501336469039769 -0.2496286148335098 -2.054861958202577) (0.04589646458322378 -0.03425651195146076 0.00377321348430586) (-0.02262544265158768 0.009934801335199632 -0.004748642414184632) (0.01201976473120462 -0.002077484231356456 -0.005465967133716641) (0.03768689493164223 -2.728074248054899 -1.612593185258278) (-1.794300185050586 -0.1550705446206336 1.086139025003953) (-0.7650232532551606 -3.014797643843179 0.6322263254984358) (-0.1447361037993553 -0.7547053781222601 0.05341580500254485) (-0.0689477819304268 -0.2268272740391907 0.1099661902357853) (-0.170770397162174 0.159760672936312 -0.306757334668869) (0.1567165861200776 -0.2895331736760319 -0.219866003581859) (0.3885547807373542 -0.4299743335914819 -0.6652747801849668) (3.828508222832088 -3.985778692044127 -0.2689529833433202) (-0.9368815407035949 -3.859073567015173 1.832611802904914) (-0.4638084150680307 6.307389540543708 -1.970038841597633) (-2.262184362708057 -1.384678620021466 1.215894166254802) (-3.186833529898387 7.861788303346462 -14.10784680655574) (-1.937748326627589 -1.285271066648624 -0.8551921529426498) (-0.3715194665613281 5.317178154045693 0.3895233634716767) (3.351403558707883 5.136874018098862 1.931594545751847) (-1.678895074864801 -6.368551518722934 0.455401175449386) (-0.9338301018916142 -3.49230210889268 2.082360677837887) (0.01053834086850039 0.06942975723395309 0.007880447755031106) (-2.791213264622768 -4.393380203423938 -0.9241809043513851) (0.4861952932198305 -1.197089260066437 -0.4144526138504137) (-1.207965837462888 1.566076132348522 -0.6244532059837102) (0.15614652466783 0.3866934898940839 -0.3951140587583101) (-0.07247533335221759 -0.06784550238127757 -0.02900243373381138) (0.3689424962926079 0.1659230667030493 -0.05520618251284987) (-0.008215410685878943 1.059571775775931 -1.306769448917797) (-0.03263852786197774 -0.06753205108502364 -0.07371877696023667) (0.05099225898504354 0.04790122253262025 0.05402393052738275) (1.044965690562988 -0.2646605530058397 -0.6327021162038848) (-0.9249636629329413 -4.15928930372326 -0.5263330882441503) (-0.1011381522832559 0.01337716648494336 0.7457920600828487) (-0.6951621897585825 -0.5418267654369306 -2.0340492849107) (-0.1914001264740607 -1.203231106615345 0.2518430720854391) (-0.2611516353695071 -1.89821883666037 -1.782938203474152) (0.651053045709618 3.109052541904594 -0.317385092891021) (-0.29766179360619 -0.9655069626034504 0.2114989256616458) (-0.1048724232580236 -0.6995516401592043 0.2937274893147129) (-0.09900984230399672 0.12820826262744 -0.4711711858496386) (0.001527702379633594 -0.04637184370832178 0.08056861468977158) (0.09114155897928979 -0.254281457792389 -0.4000957564287597) (1.136173805628589 0.04160969633372585 -17.23501487141348) (-0.01938492294539308 -0.03857558276283014 -0.01046424804146068) (-0.654916609267469 -0.6446441652141603 0.06888811378621065) (0.3302186470795855 -1.378484362078451 -1.424693398229765) (-0.8391287580750391 -3.379469682288666 2.939757285283982) (0.1542760168759076 0.03147582676448397 -0.1826953292743414) (-4.678355772856438 -3.563655740551768 1.201257569093959) (0.3052746911802469 -1.418908851308935 0.8633188244402509) (-0.6785503483376754 -7.941156255937386 -0.1834428883613793) (1.238410716537038 36.1468393638141 -5.602037822136213) (0.08178726062826128 -1.290882225441346 -1.059911607035393) (0.9004838763496836 -5.943146367952432 -0.01012957847767038) (0.5763956644241452 -9.641441373131695 -1.522457114318538) (-2.36747485060051 -8.070100986250726 -0.1219304776676706) (-1.710250234501814 0.9007034825644679 0.3691538516383116) (-0.8475400105382761 -0.6213649016886271 -0.1806059701719608) (1.255874842606673 -7.101348382868785 1.842844686592645) (-3.240697528911773 -8.296120151756137 -1.712607210644155) (0.962529294548377 -0.667405766378208 0.409538254479835) (-0.04143349351488722 -0.006426099747443055 0.01130855545615105) (-2.127998534403413 1.629911593504202 -3.207969308421078) (-0.01041171116014098 0.02739755706618583 -0.0271697765699919) (0.7442161206019783 -3.786037541577537 -3.057669110527835) (0.1944092447407124 -1.810299959282215 2.267537861678938) (-3.430504912243982 -2.049077294407896 3.554023131620725) (0.3192664935755134 -4.173625144026489 2.448051972742337) (7.053807817199351 -4.026560665808882 -1.89361763775611) (0.02501943402922319 -0.09936476781084486 -0.2059873192853339) (-0.2158720640793195 0.1501180833457837 -0.3869728389206891) (0.5000159622502586 -11.71824136037676 0.07667152029582558) (3.701882987509376 -0.4552485828229191 -5.551495390397) (-0.1487092546002156 0.02802036884489301 0.1038444742311825) (-1.203918363889984 -8.077857116598215 -1.50547917949059) (-0.1683576840061072 1.678545365803266 0.6990068613216575) (-9.349001618757597 -0.04056669020729853 -0.1121564767340157) (0.0651642263349954 -0.03590030333134815 0.01600665077245233) (6.636256465730991 4.463676103357353 5.981790098034719) (-8.365807604663836 5.526468072136433 -1.333024535614735) (-0.09521899172266252 -2.314202082209071 -0.351478469151135) (0.06788089154820837 0.0745779723998482 -0.02378405287705705) (1.048358577542103 -2.87599627045376 -2.092093688384811) (0.09060054819885616 -1.606787379155343 0.741730744996858) (0.1144271693875863 0.118858392257359 0.01397568964954992) (0.42545348992969 -3.630255763091561 0.3566703611089082) (-1.748611024617962 -0.3257140489590508 -2.502692362014547) (-0.0244776872033323 -0.02851833331048428 0.006078854450181755) (0.03487777451373675 -1.202430312146913 0.2849138729775441) (-0.3475860335643929 0.04969885123173981 -1.391026099319748) (-0.7049779294351217 -1.106595441035374 -0.7081067676953064) (-0.2204065056555624 0.02878880879876732 -0.8384148206055199) (-0.1440680538914889 -2.086481024746018 0.4846954178046405) (0.2096709373710242 -0.04011519192679936 -0.7239375129684034) (0.02439688148237285 -0.8438815122389148 -0.05144484659277108) (-0.2201859186448594 -1.232374961496153 -0.7481243428341326) (0.2477174506824861 -1.594862519426764 0.7929758694679903) (1.154094207514812 -11.10691350380891 6.015288225454184) (0.7640022546957206 -3.211701309134654 -1.511372580465085) (-0.1036085761396654 -0.1809625526987471 -0.04732686300711375) (1.73262176253953 -5.220835853152575 0.5792609679425362) (0.3959443563223378 -0.899661833662065 0.8081844617337424) (2.996704033736646 31.20169743823546 -2.275698271141881) (-0.5210388075208263 2.525287753043711 -1.900571630535746) (-0.1601980473749687 -0.05433169938758031 0.1166750743335893) (0.4041577190765568 0.3080792078258949 -0.6208687894484417) (-0.4818126427360137 0.4429111492167851 0.346846623790586) (-0.7731689737501219 0.3574657910406295 -0.1640392417418173) (-1.86771521514532 0.863440033898937 -0.4316380935307618) (-0.4389171063549482 -4.092983323197777 -0.2509904827927412) (-0.4321450539976707 -2.1749530104762 0.05008943692916112) (-1.430593773967803 2.833151927291842 -23.80477598306242) (0.7331692491166637 8.933705395218904 -7.74381208693301) (0.6115973900829842 -0.1579262810347167 0.02387273744167773) (-3.346629717412652 -7.264118538595456 0.7663055876683698) (-1.256886178633547 2.235624368704104 -0.4884599843878895) (-0.6960964089221016 -0.5024329920159054 -2.400973831917657) (1.098454087559893 -4.655770660304778 -1.714203835705761) (0.7100315482983985 -4.975778306181061 -5.771813316810515) (-0.1696386080603441 -2.750676628603088 0.1090088223643874) (1.528156561036121 10.82323657715001 -1.373654488073616) (-1.701856691880751 1.579477868786201 -1.249854493631415) (0.1188417246816384 -2.660044557558231 1.27239678314812) (5.02997474419957 -10.71631823567376 -2.039570744096915) (-0.3874317740191765 0.3061935583050646 -0.08356996795130595) (-0.00667181689154428 0.7459143706170415 -0.4242717484769859) (-3.744430648801679 0.2693456633615186 -1.880394463544789) (2.697390939340073 7.191042206910659 1.072989879500683) (-0.1767541464855339 0.06747201682435028 0.01181241272968304) (-3.117878427218748 -49.12790949173082 11.49706383315965) (0.9052992268766731 1.507700913974729 -1.660312191249714) (1.106966563193498 6.698261935588639 9.073621597029321) (-0.108953879523687 3.738969900118792 0.5457240376830798) (1.504299281173332 7.407587678505365 3.561226664427427) (2.56983377878599 5.632035819549656 -3.940763664318175) (-0.7583069964308361 -1.071917783558699 -0.9017129564200039) (-3.637002336311344 -33.32467770979703 7.750877936813426) (-0.4449599146679042 -0.163785220136323 -1.004247743855089) (-8.507955181105702 4.731362482228431 -4.136092387955965) (-2.056607269451823 -1.746756293952671 -1.442169808564658) (-5.756850909576881 2.372888876926085 1.981649591153283) (-1.122702700851542 1.74808353846127 -0.8712069574335639) (0.3201916028824576 -0.9157216969132023 -0.086396323668766) (-0.1836429546063467 -0.01056509363551573 0.1206358173199148) (0.1384341773218227 0.09533775664787889 -0.03278218787682353) (0.0004874987280116851 0.00356430130547318 -0.02552012333016911) (-2.267627040153886 5.22496860122475 0.4742824171133299) (0.02234872382748238 0.02839597500398536 0.1403964453396007) (2.382540523033968 29.70167367003749 -5.193085801035125) (-0.2515815005695036 41.04362364527636 -6.812429991753328) (-0.2907413200523046 -0.07447180460793057 0.1414659601422785) (0.09516010782906249 -0.01236325582572435 -0.04599169256216935) (1.30032587923509 8.065511226111139 -2.77687244609928) (-1.016552884062141 0.1990874756351201 -0.102187488634392) (0.0785191971253902 -0.04810335595656175 0.0009680724442008674) (0.038090293392916 0.9596224462187138 -2.839118087336971) (0.7457008607963047 -0.4524675069973916 -1.126924656067276) (-0.5874145557448731 1.733628335476791 -1.297387080068725) (8.463606157436892 10.66142392912843 4.470880719007704) (-1.832399519200127 -1.723006168606859 4.454937163206629) (-0.3905864804124322 0.3295676468293496 -3.078179127324215) (-1.391802777061311 -2.965983863107304 1.277211855657425) (0.05478919190608322 10.38998090892166 0.07467244656185545) (0.1114040226788069 -1.02863350355054 0.06050851729914636) (-3.116873705680481 -5.58915180874791 0.2586102574384224) (0.3746996963067598 2.377164952581551 0.3568399021478402) (-1.090040524633396 -3.471345728261832 -14.52104173666878) (0.02983200842190555 0.749702973870048 -0.06287365538913006) (-3.751406068033057 -5.188221535174737 5.918669912333039) (0.6699791616047202 4.850738477110107 0.4986558915179131) (-0.114883231899988 0.005442523704989412 -0.03333365696340972) (-0.01313870248451535 0.05230206922095665 0.003228441220919722) (-3.990692295889149 -3.117248095236147 0.7282492141274035) (2.626775189319858 -40.89071199439061 0.1747836500082491) (-2.001059999602563 -5.640680856488157 -1.297799452519454) (3.728432457412348 15.75459788767781 26.13423351433415) (-2.52277232574568 41.30298734130318 5.881305438104095) (-0.2615388851390338 -0.6757477786244789 -0.9956025858923911) (0.28959827242905 -9.321541482948817 -0.2964940698127281) (-0.481626572812346 -0.6899894836481586 0.3363929184483725) (7.038540713637746 -3.036934669516379 6.261573881802029) (0.01403238638944666 -0.01967493760490659 0.00303685985503982) (0.04248638244264203 -0.6022642016531421 -0.2532450711748436) (0.4125415912350677 1.370391976973312 1.003019524210593) (-0.09391546538383848 1.237328266438915 -1.850653032026667) (-0.1275972310555307 -0.2823035152723499 -0.07850550401676018) (-0.3433958035511966 0.7944327061055163 -0.8692690479771328) (1.210202068287304 2.585618346107752 0.453709248071584) (1.421571554786916 -1.767309083180465 0.1335422910911291) (0.1992126977105337 -0.3943905931526829 -0.06856163987119988) (0.2370986577697341 -0.8840221556554904 -1.236450799769746) (0.9647955353128388 6.763319721377358 -0.4495509261020414) (1.267842297776846 3.756846668660871 5.936737897600831) (0.5415159998377745 0.1236409672462965 -0.2900455311328889) (-3.659822360186991 2.724275725930333 0.4680888455790589) (0.106468086137684 -0.551220553059365 -0.2655266879744816) (0.02375794403212545 -0.00649618212190143 -0.005340828628219782) (0.01658660741537928 -0.01281780590518637 -0.009427181860535778) (-0.2599673511106634 0.0412000598304425 0.05798433210772376) (-0.06606329714403272 -0.3559545786004289 0.0179753024743366) (0.0734786964226328 0.08679438824798501 -0.1396833141324881) (0.1901205196293042 0.04973639652567882 -0.02502140620695859) (0.047531344412047 -0.06811289774269637 -0.06027401054328655) (-0.1153405700698499 -0.255820897902219 -0.1221922744675543) (0.2235874341976949 -0.4603816139820415 -0.3171356826115786) (0.1813455760534403 -0.01698517584937275 0.121302999435988) (-0.04630879954979036 1.353545821443422 0.2869801340245309) (0.4711367949918366 -0.4464426390706439 -0.8060315421211622) (0.08676575029926067 -0.003924991143909887 0.1527459321313533) (-0.208111082458334 -0.06680933974189893 0.1607745722948086) (0.7628104886339337 -0.1007811569746099 0.04766029083640123) (-0.8332048923656973 0.03208627943260495 -1.136727715007889) (-0.01089986956200195 0.006398614215788879 0.004421615638504898) (0.1021089354798747 -3.656752060996627 0.3292514575615971) (-0.004833903798849557 0.003956168606968818 -0.0151867456007835) (1.2242868011342 -4.372505617107104 -1.175952347706716) (-0.1259313836630511 4.13283734562505 0.9129099142607258) (0.03263906670268843 -0.01904220993409612 -0.02638487992058442) (0.5795869125185291 0.2699290835704997 -3.413024406631576) (3.187684594024012 2.842576539930064 1.466601924682693) (-0.005803541431257164 0.4068236698014241 -9.288013466194721) (0.3387198293691964 2.672351640433201 -1.101075377750345) (-0.08178074259495638 0.2394558450566309 -0.1997463561510366) (0.2205183952142296 -5.698470066111202 -0.8607709150192367) (-1.110257953062654 2.198542804473482 -0.2810453343332978) (-0.0265738460147673 0.1457833770930911 -0.3262567874594783) (-0.1569759458008828 0.1478439528302951 0.156819230899037) (-0.2072848712975127 0.05708113631106385 0.9549399687355521) (0.505969160199188 6.656292473512762 -2.404464202178981) (0.0437951456012583 5.343873752980588 1.430528655003942) (-0.3938668421290045 1.226811056653295 0.6520267792794047) (1.09016647919744 -0.5361554865472313 0.05384322546074549) (-1.399752628744777 -0.957543778767781 -0.483405884674348) (0.05678806703659026 -0.01653032569164568 -0.1023953953983098) (-0.9303245660910047 -8.57653392948629 14.86940524407317) (-4.741703905999361 1.612136299976661 5.579327142442935) (-0.03787908922870453 -6.412026402412362 2.979227544686688) (-3.722493891270516 -1.804550227077418 2.429428192933955) (0.2332952782424458 -3.876837019645547 1.714175847978403) (-0.1299808518803866 -2.202780196274556 0.2265035402205032) (-2.255994479592394 -28.53526920829127 6.181170161846099) (0.2308796452774031 0.02301511368231359 0.1322636609662214) (-1.056400116128047 -4.571949244922181 -2.376420426632162) (150.6242873981676 -93.78545876781473 -62.44177745982881) (0.6404620560336218 -9.252149363435937 20.13524945209766) (19.14179427403511 -44.61660472746165 -6.809840154101252) (0.1136825530869129 0.8198813160313478 -1.844328262752798) (0.5596801726498795 -0.6596250127724279 -0.3212947084974933) (-0.7821702637073521 0.0893959288997592 0.1063874308872226) (0.2544444953495425 0.1076904787790141 0.1534327580220579) (0.0321629851206203 -0.041079972924393 -0.17755705210282) (0.1740655876129786 0.05590424913179779 -0.02193344693243754) (0.1995778000378814 -0.1060531274149587 -0.1244522040847631) (-2.325049372143089 0.4088322983841186 0.2952437237886511) (0.04934645394222746 -1.341488574398183 -0.7253510536864861) (-0.3608403490795353 -4.840040484199269 -1.431244923085739) (-0.8561456614885206 -0.711011845204057 2.003876060650542) (0.4669179710011386 -0.5758893441100761 0.03028471664724913) (3.238698877988781 1.217277449117913 2.752557908543749) (-8.155991534635886 10.10925534128998 1.855375135257477) (0.349031802508236 9.045898336051307 3.452628993408155) (1.057929646916372 4.126162911293701 0.6447934521114003) (-5.171165483882465 5.438853694435571 0.2840997401199143) (-1.678454430878548 5.321343374056115 -0.8981838109258846) (-0.4948120683036649 1.948018229802274 -1.220070229607873) (-1.153738016903453 1.2663940366588 -0.5745639164198939) (0.6445420613920528 4.300246689060849 1.535412941089604) (-1.247311633580025 -24.62191129888582 -1.690778944008938) (0.6699508704330015 -50.24865755892085 3.881547128900418) (-0.1189623805192562 -0.04688019400248188 0.0009170496947916718) (-0.02589523317488451 -0.00498999723067561 0.1674934401391632) (2.71047336046496 8.382913492890145 -1.524026910892899) (0.1838115269038253 1.223590923897584 0.5503593159727639) (-0.3676340651578343 26.98738063365756 -0.3948225939229029) (-2.547555747959153 4.244004022745448 1.054846461915992) (-1.407273853151426 15.40710567516305 3.903471589040715) (-2.047904997955111 6.752398554454405 1.773255100116609) (0.234259967640725 0.1197883876049107 0.03924453497592283) (6.479998750325365 9.121550770705614 0.6827012419438532) (1.64698873527217 40.53458909610447 -6.69446884802977) (1.299415690018605 6.519064035000976 -3.208974115124357) (3.130331410158688 -5.508634821388213 -4.62139100432174) (1.083018129162638 -6.345220915081127 1.56118175437086) (-1.959206613769072 0.4031225274448438 -0.6347897019909099) (0.1150038031677423 0.006655503751636482 0.03628365703484919) (0.9271363299754065 -0.1283869554728276 -0.36386847093721) (-0.7000782963221669 0.3594401551359324 -16.76624924426395) (0.6768175388754711 -0.1957276897388611 -0.821221624258103) (0.07492356965861507 -0.996004836473636 -0.8662881340792018) (0.08632119277716492 -0.01477317470071161 -0.2997555924363468) (-3.372946326809912 10.7399840334792 -0.6309261070314174) (-0.126459338479859 5.424323714962705 -8.87824950961147) (-0.7275851020907279 1.559723488014513 0.3019272741035453) (0.8958686223571906 2.992662799379649 -1.379397239541772) (0.5454948820183119 12.41847942306652 3.295093551519641) (3.981413980082089 3.863483523625172 -1.94467688282961) (0.07072868246489672 -7.630147511731419 3.622800616141272) (2.658208175212427 9.619549797759488 3.097866788016797) (-1.092846263546489 1.487687369135283 1.120535060414999) (-1.249665204975872 4.903362691891731 -1.682166381074962) (4.194632671343259 4.831760555909112 -2.843750167817532) (-0.08004363336690316 -0.08758687019740102 0.3799835647577759) (0.2252365324268474 1.086177086079252 -0.009744991336450515) (-0.1927088195245196 0.01236951840118931 0.3037824132333671) (-1.082399260360388 1.679221116485447 -0.196539407472027) (-0.235622080326667 -0.7432198304208066 0.5512022416368163) (-1.028219497509705 36.9093167906434 -8.20268152430668) (-1.250917463030758 1.497266970030976 -4.992414220743466) (0.07837120859703922 8.744032804520664 0.3378435610613381) (0.5744337366578633 0.664414380727542 0.09579009562413072) (0.2239687504661819 -0.0314315293963411 0.4036788742914709) (14.23742867944353 7.265389350202125 0.5378499060957478) (4.106780722423361 7.112355780371376 0.1273867382924543) (4.850571285778928 4.703931521327627 0.5181351981440561) (1.551113180243425 33.2050747641906 1.329632975368655) (3.971195844348062 8.839108164058663 -2.425480710375781) (-2.932782256776244 -5.852501977204909 -1.388906391523815) (-3.042098833152094 8.828657343828164 2.021201385119274) (-0.3535241053271579 0.4620721731385274 -1.930014539598275) (-0.2142671268081979 -5.485710178131248 1.577183077313956) (-0.2381834335762824 0.9624818174012935 -0.0401501367484231) (3.715058819114262 1.899803566586052 1.272057923230592) (-0.9347663043341774 8.057068161449664 -4.240709570465106) (-0.02308381514784456 -0.1034878838435742 -0.2987103280097365) (-0.610029133102321 -0.1845592561013216 -0.4651170560896957) (-0.08894475001990426 -0.09681265345359774 0.0420211082456467) (-0.6921691906267362 2.663570466624381 1.78725315171127) (-1.41625106795071 -6.111892444444179 -1.504982509283027) (0.6961830612723965 -3.704911863957481 -0.915951170890946) (-6.517806256356542 6.213707009611697 10.53741139121634) (-0.9338893216427262 6.080867413649644 0.1667232905205357) (0.6310198176643764 3.309885433159054 -1.516847789712366) (4.182562745092328 1.732965516058407 2.546641804832724) (0.5852034078836639 1.32165126655015 0.2625734186782291) (-0.2110107152940573 1.586882595104137 0.231485214098085) (-0.4278344961012321 -0.2200621132469128 -0.1729294015657549) (-0.9520424278967483 0.2967575795705135 -2.220494205534926) (-0.09587492965490363 0.422700570890717 -0.5081782533863577) (-1.00117839266939 4.098254338722471 2.974764649442451) (-0.145443259106497 0.6118893272398214 0.1777823072536824) (0.2093666939652893 -1.872504628693366 -0.3435221319990566) (0.3396820525062718 -0.1293916259178846 -0.2252137548739677) (-0.003213400939651723 0.465812518092412 -0.5100363629957069) (-0.648605340759092 0.8380934400118697 -1.881419467429658) (1.474291399611036 0.3330243041854775 1.994848498048624) (-1.59722679481975 -2.39231703588419 -1.76448359614219) (14.89803385010132 -20.69305562734075 -7.768762479677335) (-0.1742289268996578 -0.0485397360644758 -0.03463214331086768) (-0.01096835069833326 -0.001172401865848622 0.0002782911896727115) (0.03314030259423879 -0.114839436214766 0.05169991936152613) (-0.2172869910476612 0.1120952073927308 0.01615093612554662) (0.1209011940808955 -0.03242494966243118 0.1282819533766291) (0.02139673130917834 0.0285541034740931 -0.04184702170153702) (0.01899888016107052 -0.05800936213801106 -0.07351422071141733) (0.407713893012803 0.2536449846228406 2.430833867036944) (17.36148480547472 -2.855034123732545 65.54279952389832) (-2.150126877702139 -11.78066230182388 -5.911897830018929) (-0.3772761620870837 -3.834059490153294 1.32386456192316) (1.247237612512889 -3.980282006349242 0.09884511361104509) (7.243157759546095 9.974437162855518 2.667146689940432) (-0.1700296776260197 4.801547623339055 3.518055940051513) (0.03541431424992586 0.001911443561792976 0.01317711103476969) (0.04338393829226446 -0.8206134201819464 -13.05629565763179) (0.06628494395939452 0.05197870509281442 0.09594290072033576) (-1.158405729110402 -0.794522779955384 0.4557912017867009) (-1.104595698741222 0.2117223061129113 0.3277792240458422) (-0.1307730137871591 -0.1622869377315464 -0.1319058262858535) (0.09383369050971026 -0.0369567261273299 -0.08500496293261658) (2.276252369515567 40.36944499606659 -5.179291447831377) (0.0409726730473925 -0.01594257224551829 0.06444632423694996) (-0.2599503679237795 0.05702458709436804 -0.402943614372496) (-0.01263530572528418 0.004242840123105681 0.0007471708690329343) (-0.01816833851473084 0.4527593231742987 0.08459114453127056) (-0.03262528227011888 -0.0007971615728701725 0.0325511209289552) (-0.7187887574852232 -0.185037978351799 0.2949462734550077) (0.3190946747988584 -0.1186271430870323 -0.03700049742182267) (-0.7575176648848412 0.398187557266576 -0.3622535383425558) (-1.123066186696749 -0.2991380262691468 -1.357049971052749) (-0.00534505922646959 -0.02779377357877558 0.03751414827308929) (-0.2013248071273974 0.02424232629577711 -7.105717976227493) (0.5959469211139774 -5.284444584646093 -1.06741609453265) (-1.265194572027313 5.393000633172352 -2.934449998444601) (1.645352424036086 3.282596837368421 -0.4025412969140548) (1.314572105304284 2.327208385863078 1.280200517777397) (-1.776194848150617 8.000097024783429 -5.567469093187334) (-0.03700600751713234 7.353251232961831 1.31792691593489) (-4.059412589916495 13.02813265849011 -10.23344507628601) (-0.07810798987928592 -0.03198386981486381 -0.006617140965395148) (0.02145837099552839 0.005247767938477227 0.00380139401902366) (-0.1464281641016054 -0.2162997523431611 0.8540777565758448) (0.02372148596971154 0.00060410589001734 -0.01983525560794935) (-0.1120529274625266 -0.02179807470582621 -0.01527017274027297) (0.4522253556751512 -0.07936186553978428 -12.0444761912783) (0.06362107732359584 -0.3583850939398412 -0.04002946268345259) (1.742546412673831 7.315348602928026 2.014241084201003) (-2.618774717356811 -9.611460228800695 0.9710915091036134) (0.2247251727764429 -0.4227200665575554 -0.05800142374945665) (0.07625751289738429 0.0198654308046216 -0.03963685159937361) (-0.08960566442120711 -0.1774381674737115 -0.009862881232134985) (0.06986003468379173 0.007803136186755967 -0.003928151429563712) (0.3812273811100559 -0.5129257080953104 -11.092958349538) (0.914173626597929 1.83274362701593 0.7363699302131065) (-1.134295944432751 0.2593967040025097 -0.8062206549907649) (1.463543047999534 2.496642528430219 2.807316650505029) (0.9151791230188253 1.216509740625239 0.5803989493734925) (-0.1207286563354095 0.08016089887404208 -0.09792187369587897) (-0.632037163660441 -2.148069903537494 1.372533281193305) (-0.02072460099842581 0.03534576896144256 0.07424696366225739) (-1.267564598799386 -3.74086271541395 -0.3151904831797711) (0.9544798816675852 2.468181845458305 -3.934420158816768) (0.9789043867228351 -4.579510108445428 -1.303132989583995) (0.05583733018401205 5.964112647817212 0.7929079050660126) (1.078945919347483 0.7760845419097078 0.1527465409366671) (0.3585856250011319 -0.1395916207776033 -0.220900786046768) (-0.07308232324660999 -0.1132027966070574 -0.06268349678275441) (-1.583978010491353 -1.925504259129926 0.4628444308188961) (0.5129546976781033 -0.2731541238017318 1.639768568492214) (0.0453590733170899 -0.0003950824158161191 0.003258262578252796) (0.2742131370396986 -0.3193632368304365 -0.1598727944588032) (0.5661801092289506 -0.6482622712038624 0.4212582460541475) (-0.01942827726425274 -0.009842613182307933 0.04769961823278974) (0.4170066172105554 0.5022222204737253 -2.51338488913249) (-0.9169556322600592 -7.004295747710984 -0.06862866584616967) (0.04235871150768967 -0.009142903872664828 -0.01538019163965748) (-0.04011835071379156 0.003583596520959262 0.01142818758613659) (-0.1408355919314423 0.03893570474032149 -0.4661471164674521) (0.02507127465461514 0.05032205694339929 -0.09682393947734592) (-0.8518345977213502 -0.3684240358068451 -0.2402829069086079) (0.2487464804923074 0.03758955411515302 0.04391329798598693) (-0.1333878065122386 -1.191209931684399 -0.6172381298794003) (-0.7634637020928691 -0.2169612477391653 -0.5133234160944562) (0.9136464726735656 -3.443585182955615 -2.428556994953508) (3.639503697037276 -1.109277152531005 2.700938628548458) (-0.8469309929577211 -2.313172363525456 4.305122908804594) (-0.08530097210582183 -2.297708404926317 -4.938765780124721) (-5.684088289737905 -9.063550746729117 1.029816056343673) (-9.238048967792173 15.78027455821807 9.860539904424463) (1.213987598124834 1.890431124274774 -0.08661251105335932) (-0.03611690324251948 2.456694191608509 2.007392373943549) (3.825169873171061 6.862017832807891 1.48237042873919) (1.597381312860771 -0.7174830765622511 -0.5667876715900168) (-0.3991677798103159 1.430624644518119 -0.7236826088337875) (-0.2774397563807833 0.02092493893329451 0.04132184085811064) (-0.3978982883179716 4.728834741868187 -3.943517209462208) (-0.2894742835896601 -1.077118847083185 -0.0428815621042939) (-0.001752434764892286 -4.645465874080482 -2.116868050660786) (-0.3189050329092067 1.163859554620886 -1.240746626117346) (0.0479170119803014 0.0740047594152964 -0.06015992830775722) (0.006495398618638633 0.004108120044140892 -0.00684735031453361) (0.04256795898918819 0.215731359818713 0.1535472470894523) (-0.2949234188983461 -0.3563782955705843 -6.772029810363957) (-0.7447957055914867 -0.4033458652413953 -0.7364758595349875) (-4.034187148468614 5.948144666289885 -2.107080179875151) (0.8906946656543608 3.570162531363075 2.018532150245382) (0.7716858438517273 -5.853157710621729 -1.649993017572361) (-3.015600621546734 0.9194456874831907 3.324401621559198) (-0.5778991498701561 -9.615938386790644 1.566561123853895) (-2.346181185047095 -5.863598070094127 -2.104477794603595) (-0.1316147097969671 0.2436447709769701 1.989199945829422) (0.4640984605972942 0.3399156345563063 -0.3488684910364772) (10.18813327063947 13.01439851417054 8.563715724029187) (-1.813388244150835 1.740595280535091 -3.503171144454508) (1.215509836455177 -5.374918272814788 0.5894597246199139) (-0.7066973325853121 -2.966500493185238 -2.836528547220726) (1.752343633880584 -7.543685984942184 -3.278099967632879) (0.2374066554359198 4.739777446267484 -3.883234441345704) (1.1082993098997 5.165112464288426 -0.07141687733648963) (-0.09046034835944791 1.834080844259015 1.274509261141849) (-2.905590694550741 2.910221054443964 1.93178943641134) (-0.8322971758433028 -0.1340294989173647 0.3517616466218111) (0.8627658008748893 -1.761860080088449 -2.315195392954126) (0.3725378504814445 0.7228890173791289 0.6224413909407032) (2.650777349674146 7.736920823057934 -0.3686219329701301) (0.09885039028436819 2.512196205685717 0.6541464903981753) (4.3709459473527 4.837370445852175 0.5782548954998018) (1.332823730269018 -0.8138305598758694 -0.9478639532709821) (-2.79457107419278 1.523091333024108 1.15733691644206) (0.5956162299424465 6.956195540961703 0.2598897216186731) (-0.7754047694194756 -0.101980324683144 -1.042093729378639) (-0.01308434808962855 0.3005643148682471 -0.2886668248110544) (-0.3768053133238286 0.02304327367727713 -0.1228865180011071) (-2.836992696021542 -0.8612618172464572 -2.917801697267449) (22.26471639155178 4.201964108852728 -3.371179370513481) (1.601010228274614 10.60614666196257 2.99037786417921) (0.01396580957290781 -0.05771079202814018 0.004338965216460385) (0.05156317079555424 0.007821321842054425 -0.02239868791846818) (0.05116435030387977 -0.0321675025360019 0.1057736263884229) (10.37099463915784 -7.424069621622851 -12.15855192476494) (0.4239329428533021 -0.07094805749616126 -0.07455236082863301) (-1.696300648521113 0.3593137667332781 -0.1188416038961008) (7.151906653563278 -1.252929847888693 -0.7862151214205499) (1.053342035003043 2.189751136869291 0.1945215660166527) (-4.109238765238122 7.180656679112969 -0.009168937968485169) (1.107073411623954 1.55603171806815 1.326724696548303) (0.5098340014689179 0.6786953555473404 0.5938568810140367) (0.9922778189121577 -0.2484455321348069 -12.87411497220954) (1.229120603873646 3.039600272094259 1.004898077635971) (8.655772395818794 -3.75296496183865 -5.498049708187859) (0.04651538328665841 0.4507186658081579 -0.06334304172947863) (-0.9374136864831467 0.6199514662897203 0.6532567694442755) (-0.4365203929393595 -0.6923685772888274 -0.1062649736042589) (-0.1151296124564808 4.840092809926904 -1.239524986073522) (0.3535940638521288 0.2625239380352825 0.7742076170849004) (1.174338948205026 12.67578005692828 0.1818462697940141) (-0.3601753847916839 -0.7082178197833098 -0.3257990330520754) (-0.2127504715183632 -0.01888763656608626 -0.1403920349277437) (-0.6241731980932904 0.2891189184830103 -1.241237644982726) (0.4233247447762025 2.927863046184478 -5.909984275826726) (-0.2168824378482682 -0.1102822727194851 0.02312948758012612) (0.03034613277899138 -0.03096811263330629 -0.3813292606506856) (-1.405140104119911 -1.251810277222276 16.49741802882838) (0.9977988404482195 6.583178639399048 -0.7401486605316741) (-0.3414539283615909 0.2570057991023139 0.0001439485595091661) (2.031270595520211 -5.111119516305725 -16.03393918088459) (13.16338291168002 -2.205135230970008 -5.519522543187625) (-0.0573399412927436 -0.6301927230906545 0.2193789640259902) (-0.5646757268230074 -3.728246786170706 -7.519415991679493) (11.91710342012155 8.710728154553959 -12.70786132258874) (-13.87690143492285 3.912878741169567 -16.8849957565474) (0.7513239184142473 -6.717819828038579 -2.052918359544761) (-0.08674410216071127 -0.3537180738022597 1.005141871250767) (-0.06556724748617643 -3.598943596145098 0.4837244877165167) (-5.533842239801514 -4.768255434600822 2.068654487995135) (0.3074524924055663 -0.2323447926946166 -0.1178347928678025) (0.3391192017189852 0.06460801846800657 0.09087648794240133) (0.5053613350041466 -0.3780243356886888 -1.062523633364615) (0.6111157896362744 4.360856580289915 1.477655373912351) (5.489382377476272 4.305459648278032 -6.271056118948652) (1.135036213539859 6.179614495179973 2.081861897411285) (-0.5695892943935382 4.438761950916897 0.2629887837197248) (0.264496008110246 0.3793375077533219 0.03612832315079895) (7.777680556225522 1.712546022128997 -3.830249531919108) (4.031005578310774 7.961236230937876 4.413709109028602) (0.0520733676470536 -2.757476836906022 -0.6992690789140741) (-0.5129283699302506 1.894077823651581 -3.654708752705868) (-1.431931637602205 0.2307212133250514 1.286534179345294) (0.4227988378354828 0.5744620995182763 3.148050803635873) (3.398842134860256 56.30901719437465 -2.652855403072119) (0.8887868634515097 -5.76438157770566 -9.550714139903388) (0.9621580258748639 2.584531774319359 -1.066572157338318) (2.870435624600425 1.73700084167711 0.1309103208106328) (-2.999659907392023 -13.33648092500599 -1.75098015747098) (0.8427837967825377 -4.525904529144282 -3.143786064805848) (2.213968183844523 -2.559226834085329 -0.1079903393375919) (-0.1026565530179458 -0.03146583000608696 0.06386869689818075) (-1.251236156959617 6.291543508821098 -5.98528967127446) (-1.642075451555312 -2.425303354826156 -2.239717565628867) (-2.719815459934894 -1.971823147417271 -0.5794791210126637) (0.7783885333110282 1.083167989790004 -1.69904226790343) (0.1161971678422754 0.00325662050624282 -0.3239439378724166) (3.948639247099522 5.801489135715339 -1.881753261518647) (-37.32693200568174 -28.278358906938 1.312962713915577) (-3.385562116326844 -5.884032512946421 2.040335266877119) (2.841282811727373 1.482281517938844 -3.843169842451728) (0.3637813162968671 2.666934552891105 0.7893921538974075) (0.3144297827955167 1.697931350482368 -0.252948636807614) (1.559304962951062 0.8212867219433134 -3.559803139111491) (2.06051598844534 1.774037883663113 -0.2133718170263466) (2.604743281638242 5.776344476441898 4.464637890231481) (0.1488812393493386 0.3660814739587876 1.707978765329673) (1.578850819469314 2.241489450132161 1.172555327049561) (-1.809643035684744 6.571130237048506 -0.8770935585434612) (-6.861188117963986 -13.53808491405348 1.1846216762801) (-2.247934081312083 4.141582114511956 1.624918560254256) (3.294344684771918 9.755333422099982 3.423106748459524) (0.247219828435627 0.9989075288063791 1.257305215280569) (-1.094398281911017 -1.60877882014934 0.7637791360872408) (19.30503877046594 2.021822250934056 -23.4561450830233) (-2.737479192284925 -5.507272197214464 -4.016919392136861) (-2.058903036559955 -8.764173202469991 -0.9723338442555312) (-0.0622605398243905 5.883772713551042 1.79851793907026) (-0.2494570964072198 -3.721870735811569 1.1747032438056) (5.203497690077496 9.575471030272205 -4.486300678266685) (-2.532992535867151 -4.261841757933702 -2.11136318705252) (0.5211378808930519 0.8441371004010564 1.319001467556231) (0.4638368322746556 -0.1086408513844004 -0.3775614937899134) (-0.1029418910207207 0.1624334943737582 0.2553724463881734) (-1.776743675881523 38.86367444204587 -0.8916674158722557) (4.631021636172239 -6.97110049835441 0.5113648712148673) (1.125984458411778 0.195911600842972 -0.5563917290285006) (-16.29294671479047 -6.573881620594152 -3.923138695741586) (5.152672547235648 40.91316038711225 -1.512868093956723) (-3.721789568889938 33.80848900065794 9.645027693733457) (0.1009548603635237 -7.648300217562742 -1.889133624887909) (-2.370221203714145 -2.110764464184607 -0.1089613816138754) (-0.5493637988065765 -3.238741717738653 -0.04218300464377023) (6.171581657329833 4.811991286620982 2.190837552014306) (-1.547426519919171 1.349491644499471 -0.989899844534935) (-0.2345392491665483 -10.36131056537729 -2.682639208937506) (-1.367550761110896 -1.512166577082001 1.561176983519736) (-1.413947782229626 -8.970417056454684 5.919725209238512) (-2.174430886861398 5.417068637280248 2.402841527051652) (-0.1128091540709771 -0.6802990543936573 0.515111158008645) (0.1586104428369712 1.875312823738509 0.2089317093371976) (-0.03681992042405123 -0.1636278701846617 -0.1807245024675779) (0.02560235730989724 -0.001040066481263065 -0.01679918326738053) (0.3456883563916431 1.480884949698143 4.463872466502398) (-0.2749251203491128 1.064772214733148 0.1445001970331476) (0.27899332642359 1.11959135965607 0.4783685940598758) (-0.9166674840461023 -3.153940850713005 0.1902990687271434) (-0.1016214975365771 -0.1850131199366169 -0.2421796118432385) (-0.06740801963310453 -0.4879014104483668 0.1329947785690802) (0.01086946376747758 0.1938317100857657 -0.3474065821757392) (0.04224839553000066 0.01812599680991276 -0.07997072900980788) (-0.3605484946155095 -0.4763442616298175 -0.1051924791408122) (-0.5079872584991344 1.053821609877496 -1.345037582851929) (-0.003162710429052604 0.02457475638632057 0.002138296599250284) (0.2903339861047383 -0.2894445140702826 -0.02198587050671597) (-0.9650434221969419 0.5810646213860777 0.6894077859046099) (-5.723683426842297 1.056907798254432 -0.8764259069614442) (-0.02629064335320587 -0.2546880045891334 -0.1129863008213516) (0.2694513563474439 0.09949142247768833 0.05488154431225108) (-0.005030654402341069 0.01104380462545897 0.00147318314605996) (-0.01548233111947886 -0.004779009690188254 -0.007214002983820366) (0.02202374882662042 -0.0131346176709569 -0.03739001574153795) (-0.02208224959670179 -0.004025597103081965 0.02585876171280148) (0.03813622160712283 -0.02021321168438267 0.0003352846582749002) (-0.06882650652432398 -0.1429567723597243 -0.05524949619414219) (0.03401791491389972 0.09751229196546421 -0.1823692479878333) (-0.6124504844459842 8.31225897890871 3.185911120514511) (-0.06881159954977112 -0.2929140338598356 0.09553010494126457) (-0.8683131765356269 -5.232317407875194 -0.122614641516366) (0.1133441514502131 -0.2363174060327049 -1.734625103368673) (0.07088558634790787 2.375607376530792 0.5093274356327893) (-0.03398746258845398 -0.0003203789125259962 0.02827745350767793) (-1.906538621452298 -20.53546787659548 -5.920139081213968) (11.68258217394549 0.9557240154027065 6.116623675536694) (1.384056462464654 4.771507464964961 -0.07730017972414574) (-0.3425908822353581 -1.287649748386558 -0.3342405880940079) (1.165548627008 0.4187515132536274 -0.3763821079906467) (4.451624701732359 4.952503318769462 -3.75263996444114) (-0.9360372988035526 0.4380431371154665 -0.1063927304559453) (-0.3814666922309374 0.0881795174217932 -1.088005776863743) (0.1538408389013363 -0.008921129928620691 -0.1333846944821286) (-0.08637686776911942 -0.2038353929308261 0.1063429884409733) (-0.04162847418443168 -0.01227896226557451 0.06246193700739378) (0.08432245670719543 0.03846922429815432 0.3051565026023136) (0.04103240182713039 -0.3059167615579043 -0.06862080632002217) (0.01778316312968283 0.009074709826142254 -0.01369513640117396) (0.1150934053661294 -0.32797679240407 -0.05275548653012462) (-1.253473939539723 -3.269267369530631 0.7020987437221786) (0.02567998123551569 -0.009621291520769872 -4.227593547388145) (0.02396893546253031 -0.01555210236200957 0.0264189786914639) (-0.09540646771938084 0.0183912255580297 0.04977577818220286) (-0.0014052789730389 0.008896445826933646 -0.01557332612520131) (0.0147369572316735 0.04702142104169378 -0.09447228956553398) (-0.2691669495476229 -0.1492056915289722 0.09152387328360845) (0.4551677731028703 1.556178999477582 0.471564310503145) (0.05110527562855792 0.01013836345850852 0.02240052666559511) (-0.04367121454462881 -0.08067241172409445 0.1110446173342874) (0.009901724739493994 -0.01944422023390072 -0.02149078302656386) (-0.3904142528928188 -0.7712151404613364 -0.5386836471778874) (0.4574375569137468 -0.1618700247924058 -0.2150151651824279) (0.3517224911992862 -0.7018631737126937 0.2318866695993637) (2.835176500718225 -2.502073508833353 2.107594953352157) (-0.1059911391608069 -0.320008199989318 -0.01168044676601812) (-0.01677317783182907 -0.1215033719921757 0.05947125599960557) (0.01949574154262798 0.2456557831003515 -0.04540454245312827) (-0.01877981013117232 -0.08153760493144492 -0.03517590818868113) (0.119898951271153 -0.009717284256166039 0.01429258730603401) (4.035374159532322 1.058296404029726 4.696751494780685) (6.516684403597052 23.74279484948034 18.19611044945802) (-1.950526789624359 -13.36389773602103 13.39307593384156) (-0.4819779076757305 1.238870758539546 -1.696126569917356) (0.2487053777854124 3.0422912368299 1.112542036150294) (-0.4696062621001289 1.242467568480076 -0.404254360734352) (-8.934804857185496 17.86131441253636 2.172630225693448) (1.743921425715467 2.778816367988652 0.5076631922108363) (0.7697936917610617 8.512430827293493 -1.079464309670119) (-0.541417730112642 -0.4498010832420969 -1.027431634101718) (0.7636145651862001 0.3988649028716409 0.5178681977494602) (0.9552655831107455 10.9801257422244 -3.42557155635085) (-3.199388988279879 54.01577348588361 0.6204998371346614) (1.777456723470218 -4.194525132004605 -0.8708070520670042) (-1.801239998821915 -6.050947239452463 2.537922737605667) (1.099577188792705 0.4880900736511299 -1.491334854191788) (0.6916940271531183 -13.46817122227238 5.197775079574157) (-1.603350535625046 -24.86326558063997 1.024728519327994) (-2.941910815102707 -31.96990379527538 6.490254218688085) (0.3763704949384772 0.257110222803952 0.1388823454819321) (-0.2941176982093159 0.6755929898695124 -0.07711377164433626) (-0.1929828165097298 0.1508772286626834 0.1423129627594224) (-0.04940942888791335 -0.2547806713916011 -0.1336228735563483) (0.2404846893338043 8.852740197311958 1.069130583156561) (-0.01766559794103247 0.1001080172696938 -0.02834162627514473) (0.634346072490557 4.787176681067899 -2.188812165099467) (-2.547731326983558 0.4525802358340888 0.330155687801116) (-0.7234008688465464 2.016087089364402 1.280401865383509) (0.1231944940115334 0.1381375624591006 0.509611284574477) (-5.164317811286685 8.727095695547678 0.9208697535323598) (1.193498045215208 2.915914946771575 3.17848289476971) (-2.030831601103408 -8.113048260999181 2.230887542881322) (-0.6794363482981995 5.775533758125385 0.4160625014597223) (1.024507579476309 4.322357882658873 1.29127173331356) (3.89030443176553 4.750233711617136 1.441427833842949) (1.309839626738194 3.990190742398604 -0.4221803394470025) (-1.106173161291168 -15.3052345361653 0.2224799751926678) (-3.523981385456032 -9.528228914881181 1.546916335502647) (1.59974350778844 4.969090024895802 -1.511455919546689) (-0.3739849372644422 3.927549170057723 0.5246586346806568) (2.919521561235753 -0.4447230591635994 -5.649770557051305) (-0.4052050625850079 8.868541269071741 0.9371116776182817) (18.66081820582298 15.2944943785186 -2.105207780072029) (-9.619156142763828 -2.494240615224051 3.508991923016776) (-0.7152499759403085 -2.610788796513048 0.2020341503058148) (-0.9057744892962387 -10.33173481876942 -3.918489108262444) (-0.02498662720494343 -0.2367575588650924 -0.1224607633704834) (-7.310261990255197 -1.928765876015595 2.695488209128423) (-1.233196409951796 1.484764365607616 -0.1308119551900337) (0.573800643572579 3.32576573342796 -0.5875768404683211) (-0.2072337241919198 -0.07923032996127048 0.1055644820405015) (-0.9647409147668389 -10.50099949782053 -1.297747852335757) (0.06197866434924762 0.07733413473342887 0.02690660577268568) (0.6157791647941061 -0.4799300962677951 -0.4106204835248723) (0.04430967706100358 -0.002880014293514088 0.1053410279707445) (-0.01393380713034461 0.02208942474177711 -0.0272448528655477) (0.2628823308249144 0.04963197438933591 -0.2142746093115576) (-0.4698187974524586 0.01043728176882944 -0.06061532585566667) (0.0483309326439698 -0.01617942070895232 -0.07059234860136046) (0.04322212936238155 -0.04595067699836189 0.03716839558385184) (0.7376369131140204 -4.977009392087106 1.419776653442462) (0.03466964657635301 -0.07872505618217143 0.05126827722415534) (0.02279548577098314 -0.0357491551413446 0.04926527024384952) (0.02857257053962656 0.06704647116970219 0.01300262428311396) (0.03255354870741557 0.02026388461859515 -0.04048861636526302) (-0.3175188261776634 -2.559682231517715 -0.2544979641420513) (-0.1059549795095758 0.126106955155289 0.004130098570140996) (-0.5190326175903147 -0.119168675663519 0.001450160175205335) (0.05603598615189917 0.03270171364224804 0.008299097980260333) (0.03341597420953817 -0.008671473011865499 0.02772715047884403) (0.004883777237144475 0.008907981473475761 0.0147794542577341) (0.0619265085140813 -0.01082694561576486 -0.01013276297483669) (0.07060511265507483 -0.02186382125917161 -0.00266636739411117) (-0.007396110543098702 0.0008828253234458912 -0.003835239781618959) (0.1428183065475792 -0.009788209414257707 -0.02068435719184865) (-0.02404559068932654 0.01803840974917439 0.0158166278551397) (-0.08987319617619823 0.2669593002752544 0.1210571835132965) (0.01527936933712867 0.1094569523809904 0.5145386769486877) (-3.431752223268818 -11.76644918644872 -1.145199851761849) (3.919150947402409 -1.178379709308615 -0.6592640558269817) (-2.425961449679252 -0.3172414852519338 -1.453837029676069) (1.145680474756214 -1.000239720621397 1.052156558780769) (-0.08053380975363918 -0.007711321817628368 -0.01339067592017435) (-0.1556451588181612 -0.5625763653943279 -0.4579194633201553) (-0.7654374099770214 -0.04020514875980075 -0.309223629976179) (-0.04913620818672509 -5.808083521848145 1.553249030583677) (0.1324933587368328 -0.0882336732434742 0.3098432500280948) (-0.01004087228225498 -0.3634199734762255 -0.0715993031987249) (-0.6442733142021473 -4.479258029573369 1.774672699141063) (0.8104186002220574 -3.616143675002174 0.3093388703123482) (-0.4879796682788562 -2.404700793554167 -2.31368404244394) (-0.03130255527598669 -1.434235215919356 -2.289430441201257) (-1.197294324676211 -0.1640876514481036 0.7371691836921155) (-2.521765375635674 -11.33112534500233 5.830188762442244) (-0.09980625950036615 -8.761577314357874 -0.5871902368352468) (0.5107979476387052 -2.071818631149107 -1.167639346849319) (-0.940150559808827 -9.075125373128103 -16.75066021504579) (0.005537797697829684 0.04907864424539097 0.002501308923872358) (-1.485384885577841 -1.058948665879373 8.253864796775099) (-1.037482032803178 1.140056190578914 -1.676528813017234) (0.07276061542109979 1.611603593421912 0.6127682042312105) (0.5408618592819112 7.281528820137277 1.262779051282661) (0.9870280258314438 1.494877413000021 -0.5673843450373925) (-0.9036384854471431 -2.764042623313511 -0.09002935807589219) (-1.66308113601395 1.607953725862172 -1.892009606342598) (-1.109581770830426 -2.448318117419071 1.175081703683531) (-0.09424403446420415 5.563554818296758 -2.152146525691928) (0.5340448141926749 -18.12033765997418 -3.268495356419991) (-1.30656586738398 -9.332420662606907 -0.1274235686825048) (0.006247963636110191 0.001585382194711193 -0.008533387581286186) (0.03077499375514534 0.02310047587004266 0.01812016633467434) (0.1018121685122785 -0.01809319487911353 -0.02504926744227989) (0.1678022597587168 0.1451058518121576 0.3538780703183612) (-0.005469439956412346 0.02032256366809078 -0.0343495818188352) (-0.3451827541036233 0.8052783685340867 1.290326649021966) (-0.5795144174518558 3.495253268892828 1.046955896686444) (0.05997782298247221 0.8952197816799576 0.9324094334489815) (-0.4473261811944034 0.0243364039526725 -0.1363896153639285) (-0.1325385733967027 0.2414488007062773 0.4001383588318066) (-0.07702224753318294 0.03854414378345075 -0.03813004298511938) (-0.0336141191035479 0.2758258111603671 -0.4535510707964348) (-5.264451239180947 -5.759480447244527 -2.905050998627335) (-3.381194509203013 -8.086904843452793 4.066737740767074) (1.414411072296716 -0.03052774889466048 -1.221769594575926) (-0.1009183245911382 -0.8544460168623254 0.7124608788479359) (-1.87462222542699 -4.124532121240025 -1.719353189531723) (7.629854202907174 -4.105994011138747 1.060271471867967) (0.1249203153926938 0.5736667622959577 -0.0269111548699013) (4.030902732429214 2.467643369741964 3.634289232019865) (-0.8876820480607182 0.2818057275646337 -0.468920686017655) (6.154949724613347 0.7473016877868977 -3.683406088828925) (0.3071648452457272 -0.4515506652868736 0.8112313063367472) (4.828039339305551 2.455054896734966 -4.331973446037948) (0.01118057682093858 0.01180364094099502 -0.02167492748968532) (-0.005567435149978123 0.02127786458491894 -0.009109304400518745) (0.02321039819381691 -0.01118288239903435 -0.1419877325272148) (-8.438884502511035 -58.26076301094503 2.011861487253893) (-0.4927257548086714 0.005808359508611805 -0.310851908140081) (-0.02479266160533155 0.008794856062847977 0.007291839738265476) (0.1190440127666116 0.04138983640997526 -0.01568953110164189) (-0.1360476967208384 0.09420620900530845 -0.3186084576631083) (0.2374018087260585 1.170304474921391 0.5041219408539208) (0.1696396232290965 0.05154744277502903 -0.03046839956093223) (-0.09346720520652256 0.2446960426434601 0.04861773927227514) (1.038375682834953 5.756201946724576 3.350353503796888) (24.60489060162315 14.08894892736669 3.844035061346685) (0.2074411755212197 0.2334212825269683 0.05058265421046134) (0.07858094979136671 1.289854647229663 -0.5980961079220521) (0.1105507032049297 -0.2239136615493925 0.02209755136286741) (0.4363113494429139 2.428452532922558 -0.1345983058753336) (-0.2118446950112646 -0.09449631033160513 0.04043599248735605) (0.2032155217391557 0.1601846346316562 -0.05652698164058824) (-0.06837244313155273 -0.331133844104999 0.03294250709587938) (-4.89415000119613 21.572725841606 -10.16865727926354) (-0.2480907882735863 0.0497902372209784 0.0873205520412729) (0.7162859615626593 -0.1409026795838108 -0.003920462253102205) (0.2178918281804302 -2.486722217270013 1.060220297921538) (-1.812346486487518 -6.188023884908186 -4.297223105727834) (-0.2730855858616961 0.2982930716788347 -0.3525150513007647) (-0.4819845719362814 -0.1703060086101863 -0.2731776844795208) (1.206128438986122 0.281575108999733 -0.5692633012238232) (3.083203068009116 -7.68628984885078 -3.632655775346536) (0.02503286375036751 -5.80905347557542 1.652538662279791) (-0.4554686848041916 0.1234013569216992 -0.9501945010769388) (-0.05439509108420072 -0.05402192876511555 -0.05653026730867447) (-0.5662599891289055 -1.065585309902074 -0.1480480500211381) (0.1020935637743139 0.04495016638953577 0.3590766651580755) (-0.1947812601840099 0.1945401978577042 -0.07116302038011722) (0.005967964025083369 -0.0042131896272085 0.007158792037470459) (-0.3364524405194554 0.09677404367356454 0.02277326622436554) (0.05267703477646988 -0.0869480813103926 -0.002509316826340966) (0.07574675776988929 -0.01709406765110515 -0.08224008906369708) (0.3335256950244062 0.04723662525359321 0.1511420429898031) (-1.872640667115189 -2.037484533990084 -0.9746222814644405) (-0.2243833346326314 -0.09345405565233979 0.02414671866256627) (-0.03377394225089736 -0.4337902301458797 -0.2642528458254622) (-3.403039586512591 -5.867626786111279 1.140889186069212) (-0.2353875985359808 3.035924385292394 2.211346186172464) (1.07323660729981 -0.1048401166864001 2.04396533429439) (0.2502658436764425 -0.2322062114763186 -0.1083521093251947) (0.632328054836134 1.446191530740577 2.115010791680357) (0.07201087014161214 -0.1041589292892913 -0.1075274700892187) (-0.02753151560077868 0.1002572868218298 -0.004380876069661022) (-2.087966824547447 1.90436214577585 -3.967466158770223) (-1.187555753050375 1.427940234685872 1.951138748892076) (-5.615083777694827 -7.167187486467557 -0.6913140421382049) (-3.472220922628227 1.905478382185973 -2.972426376375743) (0.2559958613476551 2.393319298543354 -2.059103922369722) (-0.8121316982904139 1.251516733091975 -0.1135165223635831) (-0.0139259470031255 -0.01228374838909184 -0.00949969355095376) (-0.07521491800507207 0.05510640535817662 0.01251525709819762) (0.003071542252306492 -0.01848415456491995 -0.002251142176884242) (2.216384762086662 2.443088576114448 0.6426977770539097) (-0.01728365965561204 -0.04020031585114447 -0.003663782523415926) (0.01049792096177122 0.006671592661666588 0.009359591476657322) (-1.072362542549727 -1.410941774194158 -6.670049501450924) (-0.05113939030981343 0.02124172113946653 0.03758325353435166) (-1.073515033631318 2.822113128323215 -2.109717208253113) (0.04587926778168909 0.03483138016041579 -0.001063418373394381) (-2.753672424964019 14.24723752372855 4.696977052337081) (0.06377160887198421 0.01917761114714145 0.01237204614402235) (0.9705638003050452 0.1701789140279297 -0.2417244690910439) (0.0007624572064530016 0.006451149664864039 -0.01568759864071331) (-0.6304063835486804 -1.446218328798572 -1.057547808991221) (0.04501277430421477 -0.02911480157312995 0.02391428757152048) (0.2182756422318145 -0.03797336164084199 -0.02749724530947616) (-0.1467187087181709 0.3306333518854343 0.3487237420493844) (-0.3792851960394856 3.374434495191558 1.531772691347535) (-0.1469744327500314 2.600315918589115 -1.656961371661883) (0.05425498073768279 0.154938292607266 -0.1437886843893596) (0.04163684782222522 0.03084832817781422 -0.06977516864357375) (4.772031163324001 -2.183471989923771 -10.91529887105669) (0.1357869813353717 0.1646144443951023 0.0111119325057934) (0.4583709702903553 -0.4992175416415803 0.1328099244255217) (0.4108047477002196 -0.2980894330527082 -1.130949567036352) (0.1311402173137516 -0.01794754592308713 -0.01480114364672974) (0.09492453659021959 -0.007913040427577414 -0.1464361383447015) (0.1879213596273644 -0.2101651371978055 0.1373464018307098) (0.002240737533209284 -0.006910818917080066 0.021594734107822) (0.1355961102914395 -0.04223781615146369 0.1457480130899754) (-0.006909025068107949 0.006864726918456394 0.02030173373698849) (-0.5636676332044723 0.2484708680384907 0.2939961273062316) (-4.341064197147297 -5.301190313913322 -0.7457888555066754) (-0.02129690831307465 0.006175759425929409 -0.002824172857220393) (-0.009364897232689507 -0.001533575513597658 -0.008561116790598474) (-0.06997608018783369 -0.05639099211698968 -0.04239452770739374) (-0.01713020961931905 0.008342437217948539 -0.0121943753731034) (-0.04358143110659492 0.008496610040085999 -0.07817833611216328) (0.02219347313593838 0.1489007688266658 0.04183107720362496) (-0.03201911618708507 0.00229848636444188 -0.003894720673161873) (1.581838717661642 53.01136730555268 4.353611764816179) (2.067347140210053 5.441023574003738 -0.1528951201079646) (-3.161910374042533 -11.67936836721805 -6.595232457110759) (-0.1089464417392228 0.04599072529779614 0.08945298770505579) (3.81130627899124 64.42470346564822 5.160079829780134) (0.1657311168720145 0.1444266077820602 -0.05577078600052077) (0.04919701296089814 -0.003209612617170358 0.01732440084392672) (-0.1150191931163158 -0.6239027311806264 0.3606913668776819) (0.003952492903461708 -0.006554340471897114 0.008548160017686705) (1.214310222680533 -14.51412819932404 -5.10799974858359) (-0.217391429904925 0.1888270189430094 -0.115634386454473) (-3.475962375167962 -4.883259173276301 0.3431682552048194) (-1.320685527653097 -4.461520345956132 -3.418144643663671) (0.02362085452983542 0.07024656293060808 -0.02153207131329271) (-1.125118697910133 0.06951995680927237 0.06353215208546537) (0.1285734239200564 0.02703008232035115 -0.1145936840974697) (-0.287473181135441 0.938356071753806 0.6787696704725359) (4.654819052721613 1.971942027422732 0.06592287119272255) (0.005946996553459469 0.06415798099792731 0.03863113306381869) (0.01855047117519049 0.02566518437129635 0.02855781235053409) (0.67199959273927 -0.08605960269414312 -0.05217744124723223) (-0.0006882566673377943 3.839410554084622 -3.583855035357569) (-0.1484900643105289 -34.14724279135148 -1.679762485932261) (-1.414160431666706 -8.918167539693414 -0.3040363453433142) (-1.433279982139396 -0.04810711270857924 -0.3734120138216665) (1.899602692092247 -3.416109306808301 -4.747256080799538) (1.394171480549506 0.3640931065622346 1.022971296468863) (3.745883031564169 9.0175899333241 -44.61607008003805) (0.05565590245505451 0.06697750649148691 -0.08024470959758591) (-1.752550063755794 -0.07293641581531851 -0.6293453534107535) (-0.01402276877779851 -0.7061097020242474 0.1937921663834563) (0.2234262233029152 -1.032191951818272 -1.234353994189297) (0.00106494683511513 -0.02679342491367187 0.03459179503249974) (-3.114955099478168 -1.152717509064828 -5.677160040411019) (-0.3288214001977782 -0.115345030497675 -0.1103073356568319) (0.6926226462367104 3.140362431198336 -0.5375119590231616) (-0.1988441959997466 0.06098400272321587 0.1515397167918547) (0.01860471572154743 -0.01827484552596528 0.07359343655131237) (0.5798165639586752 -0.4864027798543033 -0.2873888463001763) (-0.07039707900524451 -0.02006242069350356 -0.08027435028986819) (0.5619879053601605 8.319807688813698 -2.830327361853925) (-0.002771493846098046 -0.1757862166700095 0.0505366488923174) (0.2094052369713066 0.05649522364445621 -0.4015664256795595) (-0.3269670072238245 14.2124819887383 1.34387426454173) (0.8231067187948372 0.479376196662914 -0.2908969125121699) (0.1262493950367297 0.6513968251008569 -0.1863762671494952) (2.577294505183366 2.316239456205742 -23.53608468361596) (2.349897154546968 14.14282454612758 1.542501275988608) (0.5191948255822502 -5.542653854369654 1.06839775819761) (5.112126008971535 -59.80866107203617 -4.671317751294333) (-10.74582787710602 1.189285785499996 -5.902451833668567) (0.0593795867376783 0.2786078555231713 0.4953791993822025) (0.290233256063313 0.2184904863620268 -0.3931076832275042) (0.2562030692028176 0.540659165852971 0.1741033983513482) (-0.01168021347199617 0.009390485880924112 -0.007479593806193403) (-0.06125920147310238 -0.2127821326947729 0.08604431400855796) (0.02928258952912187 -0.05454350975629964 0.04067944129655608) (-0.164132868460888 0.03738294915660273 -0.1614905007414859) (-0.2151528068902178 -0.1815132469801277 0.004927024076850004) (-0.4143957155990696 -1.578276649748809 -6.128670302135566) (-0.05667068450208 -0.1580068181257709 0.0855443210050971) (-0.005604303024591185 -0.00538798315896168 0.02565787086694888) (-3.727747182636839 -6.974832203208709 -0.7937347070826808) (-2.536545691001512 -0.03266390377492889 0.7765170233162576) (-0.69387112921742 0.1366399663965737 0.3082076519415884) (-0.2594603385395845 -0.3264753639765605 0.7224895876937184) (-0.2449259953875768 0.07450854641375043 0.1468910144657726) (0.5518709606243588 0.1064934884950962 -5.247171215807415) (-8.104272307776561 -21.97865845907108 -15.15390528840786) (-0.1867308274396016 0.08846628661839355 1.526816840578429) (-0.04651441993825145 11.31191611693642 -7.359011393305217) (-0.04728995899303526 -5.419642561585171 0.1571862351460942) (-0.0973057941404247 0.1281645028837067 -0.6181987153856912) (-2.185810483969367 -1.37382248611241 -0.07072405825539811) (0.1354505658330714 -0.09050640024660944 -0.0616049921245695) (0.1407420991490301 0.2399055144217638 0.2376483384606413) (0.5599414795554969 -5.188750888809851 -1.600433928389822) (-0.419038023516416 -0.1093587880505375 -0.6833857785336305) (3.880285319892502 4.249739915068576 -2.372210001740952) (0.1822309118037256 0.4781200892255245 -0.9769610198908705) (0.8667514046537372 0.01533044235319259 -0.6394582735145637) (-3.243320990319329 -2.082956602361896 -1.486402418301777) (0.7039801575228077 1.626679945883538 -1.716629938641431) (0.9294023152163214 -0.08138848210844163 -0.4974902143706363) (0.1648967437281855 0.3593490549516103 -0.9273679112607165) (0.0568492220427378 -0.02070282654866578 0.008374830666786869) (-0.08924605090075582 0.03732758068481545 0.01523307133888643) (0.03013010045260758 -0.007783726942372587 0.1198924104975869) (-0.5039804169496706 0.3681592698863402 -0.06275718630322677) (0.9891294556239152 -2.738634249736371 -4.090148539193734) (-6.984405146150162 -8.254447717444712 -45.73200987611474) (-1.20540428748155 0.4330362588287355 0.212251024331745) (-0.5448047794440244 -0.1213830818520132 -0.5255319474057885) (1.538109685780841 0.6496807268837574 0.08037441083807617) (0.1975759289399702 26.81427753170356 2.278676477660075) (4.504903049879233 -2.499586959676907 -2.681150676577821) (-0.261631925737309 -0.1842533222812272 0.02250332705811105) (0.005248796171050611 0.01536252311925324 0.1733857138318057) (0.3086075160741107 0.21988476485641 -0.06608224464759213) (-0.1818360350402052 -0.1368004244730359 0.2429787603389018) (-1.080350406348783 0.07246826619693288 -0.4152655880093517) (0.1716928738924852 -0.03248343151376216 0.02558386220330755) (0.06055791851859041 -0.01929063919184434 -5.091053127904283e-05) (-0.05169585381319217 0.002042689966587762 0.01021847857876146) (-0.7956778174133686 -1.954179236577837 1.957073550795888) (6.231338370496336 -0.3515795348239966 -2.286769626845131) (0.4569465303410554 -0.2823174898956016 -0.08897475650258843) (-0.1746729135128493 -1.003047610657227 0.5045580567652084) (-0.633870681648841 0.1836590306673196 -0.3549615534568022) (0.1836896990248469 -0.1075638606341756 0.005351076088652415) (1.197722498330282 -0.08232937226724352 -0.6124679612874817) (-0.5604292248710419 -4.384437625570364 -3.079993463956592) (0.3789539214732792 -0.5329157457214377 -0.1679104153853217) (-0.08061119794788874 -0.08139348594704481 0.1290569671760761) (-0.3423630143501634 0.3614806409673108 -0.5979202538503496) (-0.01086279028750762 0.02400611922182286 0.0550084080116356) (0.05169803598340627 0.04786253661013792 -0.01051000429811902) (0.007430093024271819 -0.0246978173611283 0.02221876046507839) (0.03178511856923808 -0.04815337914468679 -0.004323180777603734) (-7.340498685349675 3.900834228005158 -2.880186235038983) (-0.1153969837940857 -0.1126423120671391 -0.04907952636598069) (0.09476245799877259 0.09673482356191879 -0.1508378192982757) (-0.0150772311063384 -0.03747597725028761 0.002789783369030614) (-0.3478781409733402 -0.1129011408083942 -0.03459443498759582) (-0.0601566118647467 -0.03932637345433868 -0.0102826995222825) (2.036109120170571 4.398763926128992 -7.678183377355085) (-1.403345530516396 5.646878660797629 -3.059312000242181) (2.371906698348706 3.228013172576932 0.3849978657684936) (-0.6469393181898313 1.046876865314198 1.03601356776329) (0.6512504084483859 7.164578323071538 0.3813794283125231) (0.8810293494073043 -1.217956355114106 0.4390563523201737) (-0.8831627396767987 62.59351061282248 9.295623916995639) (1.831829999303186 3.204413797593188 -0.238870919333127) (3.035534875331471 -1.001060079254561 1.696990792082001) (-0.7840733065269714 0.5413693167500051 0.09542016678625403) (4.527490173926717 -3.896719612481037 -15.08244291709724) (0.1401102525965672 0.3056172180555197 0.199271273148052) (2.430481618184457 -0.6629444919270964 -2.31861664655253) (0.4416112303985472 -0.8200434486405755 -0.6654203038104298) (0.2968733238599525 -0.08819530373638404 -0.1538537316227605) (0.9750296464548396 -2.555676909458767 -8.194186241477368) (-0.06849787106925156 -0.4126687929506694 0.4170301346172323) (-0.2548730556443591 0.01370669145091649 0.0901886741556813) (-1.59338458897897 0.0002211030594284624 -1.301684674630158) (-0.02163987479414503 0.1240215080143651 -0.02182271467881741) (-1.663694712816596 -6.279499381990294 -2.864097750931867) (-1.449795363585602 1.071901989046602 -0.08834023934106677) (1.059173108183787 2.33290811469123 0.9272157463731907) (0.390288502883614 -0.2701603259350573 0.2260646235677121) (0.2007810068131965 0.1434766160956486 -0.1820502990157681) (-1.17811639438931 0.4547999614284015 -0.04908439494954525) (2.504829238350693 -29.14693448672737 -4.44376618504269) (1.402574237633286 9.791149691904314 -0.5230893390373743) (0.02590224771087823 0.01376895408702709 -0.3027049548705713) (0.05251769615554558 0.0138391703828191 0.02766802598904482) (-0.4117287495993683 0.3409577889273362 0.5379370738200288) (-0.1307328357588044 0.1280798633816425 0.109978235147468) (-0.1565349944561023 -0.06897323973441466 0.01311614464525405) (-0.4282074991049683 0.05440570262722269 0.05859464910964798) (-0.1312703496872719 -1.459034772342309 -0.2549088550790941) (-1.858910829554171 -1.084230592787423 -0.9786922851875903) (-2.965846119710721 -2.228186362156516 3.17741068369386) (-0.2464011585729904 -0.01642725474909829 -0.1454892066088302) (0.4526664063388678 0.498364153344801 0.09334647928819084) (-0.3552445173080827 0.6931045623364928 -2.05542008011547) (-6.083390898094998 -3.967397738897174 1.156396324991082) (0.1547778631700627 0.1299704947981588 -0.1275111739020968) (4.018241417231359 -24.73484466701837 -4.024663008424049) (-0.2986968231212912 5.281204609587921 4.270831738927377) (-0.1601227997152528 -12.17764216647912 -6.142801822822497) (0.03607137796025073 31.30454256033019 1.477513614442588) (-1.661141892915403 -55.27498924115824 0.4603335173270837) (-6.913076090439978 -12.68898596425194 2.085351109497507) (2.463290379013667 1.942336368591368 -0.6859010359301627) (-0.08139201490273268 0.3636258125564514 -0.09768708379650158) (0.005917634975254576 0.02791849978129093 0.0363065244983442) (-0.1411352175344486 -0.03480414949036349 -0.01900254118987364) (4.082270784798526 -3.295760901974301 2.175539788920609) (0.1757247076506512 -0.9744941854400171 0.4575358208451904) (2.114007980378312 -0.244359278972297 -0.3680145351221069) (0.135059502858743 -0.04294730848484395 0.04097330112349476) (-0.9329614481055089 0.046401212305994 0.2434950137219381) (0.04751616336355222 -0.0551854582287258 -0.01622056968775752) (-0.2160549467162145 -2.065255584965392 -1.560921900089857) (0.4181042660657254 -0.03768871471269028 -0.01431518237892125) (-0.2958217962819363 0.1804291528133651 0.1706779420266217) (3.158877135737369 12.25955310544074 1.859908245219084) (0.2155766435205548 -0.1297993495484983 -0.007281440072089286) (-0.292197622537404 -0.08392400078912571 -0.1518235499728766) (-3.464071614096363 0.9175669977037937 -0.04377230861706427) (-2.108600050203236 1.70625887218674 -0.09768586220987763) (-0.04731240487504274 -0.04992738821778017 -0.1283538689846144) (0.0763736695046878 0.08105691242162077 -0.1016927502258179) (0.9839076342321518 -0.2841328478685301 11.02331501798997) (1.794373463736748 -0.4350122447248339 0.5309651875698955) (-0.2988907392843271 0.6123170543103168 -0.3982581262428758) (0.6235439672899048 0.534776432308114 -0.1222947129701502) (0.8416500841771015 13.79912623875938 -10.00804056569675) (3.19180669510434 -50.938674584425 -0.9444787313269091) (0.2513622552029492 -0.05416614295049847 -0.3722259253799048) (-0.03976397097536731 0.574864575868312 -0.4182184493134812) (-1.7614557745795 -2.625689251269418 -2.05612654522086) (-0.05166780470796691 -0.1161454108073283 0.2782435302082727) (0.4520841317378068 -0.4968837166309671 0.09608985628047488) (-0.1885946318243258 -0.05408298802318632 -0.1849752927921252) (0.3100837349844478 0.01823709234926866 -0.06765574373946877) (0.1418899465730709 -0.02192506644452821 -0.04923468634246236) (0.5846434817334361 -0.1443428224405987 -0.720328832239275) (-0.973068600031035 0.6730122672964847 -0.7521768306308705) (-0.4108674541080186 -1.696705184474958 0.3411634804307347) (-0.01991046522667363 0.01686261146383339 0.01142021546230263) (-0.5016402947657819 -0.0437086733855526 0.146652838303907) (0.5630910705623617 0.1885503176667494 0.5080808577716888) (0.3939259917452093 -0.1233114435153658 0.2968246539051653) (5.285376192359665 18.29188366983965 -35.12460872281668) (-0.835248464249952 -32.65444838457515 2.766816152951623) (-0.2511248748593146 0.01027086955005002 0.03420271452225659) (0.993612187203171 -0.2786283254958974 -0.3218795955635214) (0.04280505716887168 -0.02571131543805969 0.1066297094971428) (-1.140939004372044 -2.068446707233152 -7.691198904198259) (-1.181135190046094 -0.008027153712556911 -1.921832518017221) (-0.7472911762693381 -4.904263901842262 0.3670625943116672) (0.04287108353981797 0.03326320975190408 -0.111959721110763) (-0.3559907372680693 -1.599485725476255 -0.06008654259994395) (0.04126658983802078 0.08015440518468882 -0.1420807903778724) (0.1069982494539939 1.482610959891105 -1.20877258122496) (2.267356122516909 1.693190666350401 -0.9664339392616053) (0.3584814573643261 0.08247252484933099 -0.04351769976448133) (2.191174179537356 69.56265287120949 6.865483447650588) (1.110865769846639 7.06585710199579 1.453520582934686) (0.6539240412948754 3.762702607957271 -1.530965247406181) (2.236423095737934 12.36921591178182 -13.761353022323) (0.3358882026809576 35.25778600969548 3.357000924844945) (1.33594160657858 5.700788466647739 -5.277925763007315) (0.04443624842662101 -0.03661677973353814 0.02090794472546071) (-0.1001728913228017 0.07602545327481862 0.4018358938263674) (18.16966101770682 18.6457904914274 -53.63882710409429) (8.488926704328223 12.65774150907414 -1.086212879525154) (-0.07937460666397614 -0.02182288709130822 0.01978130446749864) (-1.425881896612165 -3.625048092081953 1.988708584601267) (-0.0831574550020415 -0.07288475052233348 -0.07344280769737116) (-0.003988315747917665 -0.02249481157390036 0.01389160325557482) (0.04145851808618908 -0.0452154629797796 0.04557527072284434) (0.03572205523168165 0.02405017148962265 0.01672931500286769) (0.1137020835858196 0.01997239962068782 -0.02470915144068254) (0.1612842617020838 3.070316639981424 1.437497772096036) (0.05176176118241038 -1.231579373964075 1.111900850399237) (0.1929837231576648 0.09692857267124652 -0.07037448962955109) (-0.5175558335022964 -0.4193983413848189 0.1103312509820425) (-0.4859093774749196 -13.82748680601987 -0.3966749086619634) (0.3949653581006838 0.3367615381092972 3.148885301629978) (0.7292448225122573 0.5044358784644388 0.3013367760279941) (-17.1484050134866 -7.089898936587094 -7.528502921191588) (-0.1767664138475277 -0.08327769022660647 0.1207506364823293) (-0.2383207757243898 -0.4754090953324538 0.08109977740301669) (-0.07778814170778274 -0.03630098308083789 -0.05597355645589602) (0.2480429811460015 -0.2412513875182069 0.09803677956732451) (-0.06494816645447289 -0.01050085345526065 -0.03090761694424456) (-0.402014018133743 0.2290359137726836 1.004678409922982) (0.6170137434973265 1.183196855197252 0.6495949791556174) (-1.573649248915184 -0.02989177361949058 0.01403691254394812) (-0.7228834220425115 0.23909589116922 0.1328822197613658) (-0.1640798561466168 0.2901656766781285 -0.2349781276330394) (-0.2836810250887758 -0.3074695172630899 -0.2081264073106574) (-0.8853972453836763 -0.6281811448427742 0.1468470130542084) (-0.008334256762608322 0.1343962374777236 -0.2404889524731391) (0.9438523628154724 0.4991523425151468 0.2157262609093064) (-0.9338859968938331 0.6962635009403303 0.4869363309005864) (-0.3407406289391128 -0.3632885092214946 0.1785596811307267) (-0.009823242997964773 0.001771978649066412 0.01926636831003731) (0.2255897162342573 0.2454923463832519 0.2559290956774199) (0.6783848990017864 -28.41333234802851 -0.7764313650848685) (0.2724399819833524 -0.2046077004130845 -0.0373978558417177) (-0.3800755329274514 0.1322790230228143 -0.09286047473660825) (-0.06039198742198803 0.03026053202925231 0.01393656172440964) (0.0980948996484633 0.0451109039733428 0.08902972510597064) (-3.477361632678667 -4.3268355138668 3.708560744410896) (-0.08851397647463777 -0.07124094569924644 -0.2052997335932065) (1.348353255155295 0.130715246461743 -0.3735790486412094) (2.71736355162537 -57.32833077215054 9.197772771611985) (-1.792554809014083 -2.934622164043103 -0.09865896735890667) (3.104576295938802 -35.73853483689369 3.724581448624448) (-0.06703532619070629 2.120946030831819 1.438005251607801) (-0.1305193713553422 0.01448021520589986 -0.05635609522086959) (-0.7277890383517385 -8.577046224244487 -2.415976927261248) (1.598978234916518 1.249759299969967 0.1151700691427107) (-0.7598571156667645 -1.823498820470749 -0.5200688625442598) (-1.079308539506684 5.542113999158652 0.04723136456552868) (0.1158894811173045 0.003583216362064739 -0.01404624313466074) (-0.7763295387224409 -0.87693607285566 -0.6183555040233624) (0.3491952071102997 3.791080201812886 0.854638596834048) (0.06822938346313207 -0.2534355675381355 -0.1574582563411006) (-3.414104894077384 54.61171110611488 1.697661400480275) (-15.89417499627982 -19.25819181518327 -32.61246027720796) (-0.3124767785736798 -0.355987943344062 0.3930573098992694) (0.1058391680892977 -0.0190097840944119 -0.04973144758684475) (-0.07809451612578633 -0.0572579651194815 0.1479449485840726) (0.0681519354535885 0.02184110204593418 -0.01741278267026712) (-0.3566602371890799 -0.08369390599453103 -10.99502652930541) (0.4965762356565262 0.006102919446297532 -0.0408926826887629) (0.01877136376493575 0.2932973292857697 -0.1112692141968904) (-0.1120401792556225 0.1460155544201321 -0.2106430365385618) (0.03728012959779796 -0.0166407038943343 -0.0229813546971452) (0.01262966361105436 -0.00318272765230737 -0.01067485751763937) (-0.0002856334162685131 -2.431561242466229 1.54219231811413) (0.2300364426009059 0.1389314833223449 -0.02609290016156616) (0.1949611320830833 0.04226021574571649 0.09242060508574926) (-0.9180589390123225 0.2766914770196962 -0.7970004007427932) (-0.0405751945473132 -0.0379151300457795 0.05009179025755538) (-0.006983396825051308 -0.0100391999021627 -5.492495536618756) (-0.4375110423575264 0.07843193399398689 -0.7661988331705951) (0.3341963429775353 -0.150391901355395 -0.2972749830626458) (-0.009453138544019184 -0.01146171737985506 0.0001786377720902357) (0.2132206454564007 -0.0157537033723678 0.1197698005915312) (0.605804368373561 0.05666381805402254 0.7088620164448107) (-0.2356550217265781 0.121181543733509 -0.02060757739856064) (0.9733036258900463 0.2925379529361052 -0.3379316121907028) (0.09281538398943001 0.1629209902355815 -0.1310167375391511) (-1.7774164658924 -2.637779258447154 0.01308308224123489) (-0.1840308136307516 0.0933262289517673 -0.07070373635328593) (-1.47462141851206 0.4738568217733645 -0.2135005477779405) (-0.8706253374351149 -6.600321490416166 -3.206541682691929) (-0.7090637499301751 1.015478200648152 -0.04806845758705475) (-0.3873842076816012 0.0750856488526342 0.2307345131129773) (-0.05192645503263814 -0.2225422845010226 0.1229730746805245) (-5.452944014658017 0.09340235302672073 -0.5668073679100948) (-0.3491082230013483 -0.3130503335593509 -0.132040813656039) (0.5815039345657285 6.127663132891605 -0.7575547514536731) (0.7953875705795901 -1.155669626869879 0.05824485685285491) (-0.1161025728035034 -8.807329772182737e-05 0.1150138975006008) (-0.02975685052990534 -0.5435429154867304 0.8417487168762057) (-1.34536119528504 3.14407111811233 -0.3256945702711854) (-0.1640256764443054 0.4507752477579711 -0.001324221804245934) (4.403171158125577 -0.06577009706439123 0.8885258179009101) (0.08738843046149222 -0.04639812732137218 0.03116277132852357) (0.6343974873747074 -0.02303232817948837 0.477890162849664) (1.46123141676816 0.325181309834994 -2.061586661851622) (-0.2641421629896042 0.5296955293764867 -0.1385993665209843) (-0.01996564342705989 -0.04239265768883881 -0.008176450764181012) (-0.05512706577670211 -0.0288477020803617 0.06805905197496886) (0.07288319314190569 0.07828088449304033 -0.04100908753998476) (0.03045437803149604 -0.008625456562313637 -0.004254551276622456) (4.077562047191073 4.585471495674033 0.6322069472225275) (0.5448997139203302 0.1040308866803734 -0.1538180406116494) (-1.99213171547169 27.52819732849394 -3.779278056468675) (0.3504859718286405 3.607773556601889 0.3463579412626394) (-0.3127870627835607 -0.04816155294814774 0.2014093878774772) (-0.5802543333094285 -3.758447530889705 1.038937903777883) (2.003664797124884 -4.77038691888247 -1.091018411239465) (0.1147246778777335 0.03515939851121511 0.05022629663647366) (-0.7136414785160672 1.744558927163636 -6.201798806538937) (-1.579251607188865 1.086610529457241 -2.873288110556095) (1.99136034962237 -12.74850859855979 -4.769831418033766) (-2.17122998710846 -9.22262214730242 -1.017076020404211) (1.010409647665734 16.01719282862183 3.78752089250693) (-0.1609682478535276 -0.0001327754463942843 0.0004807801930485954) (0.9589214775803033 -0.1996249216847265 -0.3208324661402605) (-0.05156427373588302 0.00307786787931069 0.01631565833776609) (-0.06874001185120809 -0.01993321037165236 0.0557623969378309) (0.01276810874425848 0.02924732524519359 -0.09226289000451388) (0.4483234738117053 -0.2180285552894882 -0.527507106824914) (0.03107822296118699 -1.937069533653016 -0.7916144408316828) (-2.075972429763786 -1.893008648941916 4.623157313267575) (-0.8384872103133461 0.04715917578790825 -1.000316607097122) (0.4632774306522625 -3.370275341634958 0.03498263408139557) (0.07286379644247236 0.2624142933697461 -0.330550899985956) (-1.132409123176483 2.991235670254814 2.271170793281759) (-0.3569988638082902 0.04450642687026094 0.01146440327678618) (-0.06546033151367978 -0.0716152344141914 -0.1198683985618405) (-0.1575481802250433 0.04904147093711127 0.06901108203453293) (0.1738341478859462 -1.494814162238885 -0.08827662970486129) (0.06669185941927759 -0.7968331402585929 0.2279364886046737) (-14.10912977450923 1.975432040568198 -11.87348378098708) (2.829510526702296 -5.62268664163881 -3.066051202337613) (-6.173638793866248 44.55166296895566 -4.188846000768267) (-0.03089299333151496 0.7314782755328064 -1.243287835122995) (-2.089246481739517 -3.869673554874772 2.644527632480929) (-0.3820315343520899 0.2634731539065577 0.3152876407311612) (-26.673700848142 -2.262576826658471 -8.809148908180411) (0.6656070090680263 2.953018556835536 1.507127814612381) (-3.085006420387587 2.191558443023509 1.114021873391098) (-1.185311929011599 0.01778306179993161 -4.312818319156696) (0.5047696071878379 0.764820037507196 -0.5835167430987356) (-0.5495719566907239 1.641649271547898 2.681447538371718) (-1.477322243712101 0.115552772816444 0.5686845718076757) (-0.2372744794750777 0.1087988313095208 -0.5478624829998164) (-0.4188863021461172 -0.2394093485678387 -0.7134844480727147) (-1.436321781816264 1.387655706042002 0.5331792387390588) (0.4909435118166543 2.354259173586332 -0.4331655196958213) (0.1415329479710084 0.4193469736523808 -2.74278471447703) (0.916374817873296 0.0996697353987949 0.06131718916650467) (-0.2334557962007598 -0.5854522180415628 -0.2567890960214091) (0.9636151222876826 0.4072611375522934 -0.4751963761311707) (0.1127085629314486 -0.0009088002277346154 -0.04581956405738609) (0.5158465485634376 0.1213225431971715 -0.5501692872232168) (2.129062520391605 2.820536019689502 3.794199715079399) (1.739268795279888 5.087905373615929 1.527267942603666) (0.6060718758553182 3.199140465769123 0.5174669720465654) (-0.05933941700918115 -0.03687069077448732 -0.06963336731986586) (1.758309651206087 0.04325717753491198 -1.050158967930721) (0.1842408135877725 -3.397870102505203 -1.360260785681333) (0.01192572155523761 -0.1817135237262607 0.1019808301676806) (0.250462606825727 -0.02821408471532383 -0.166925418115931) (-0.9290309186240802 0.6920160536222661 -0.1299430919617763) (0.369000953333559 -0.1996430075171211 -0.07437338557028772) (0.5191290126395881 2.278793988923807 0.01191776695052038) (-0.4765825020649919 0.7344415939166147 1.252278618157989) (0.7222518803803489 1.69536974867402 0.01187286417801431) (-1.094380542900138 0.7346657847608338 1.868703550925567) (-2.680949314060665 -0.1212290180022097 -0.4822575786645679) (0.09198637938345647 -0.04363150986690278 0.05285100849714673) (-0.6791544513675527 -0.3383800760504798 -0.02562172497948527) (0.0250959970124507 -0.139500128855308 -0.04083689610525504) (-0.8456429460637057 0.2376540868200085 0.351524737114434) (0.6907037035210655 1.281517910085096 0.616045405026077) (4.756744299116397 16.6077232750859 -8.293008426226937) (-0.387187901082098 -0.3381020224772278 -0.2666377391075725) (-1.327669376253997 2.572889079118295 -0.6399610156917299) (-0.02312557291053589 -0.01186920137741858 -0.006482312987836155) (-0.05928510843443666 0.02080745793899492 -0.4617660049559578) (-0.1409901373769049 0.3936603721492721 -10.53035321683476) (0.3083608936661093 -0.1206306490945134 -0.1101280363137261) (-0.5371209072480294 -1.741856761183456 0.1650727493132534) (-3.29519257647752 3.602384526450611 -1.674737925249395) (0.147163553010137 0.2328304047175087 -0.9770824709338051) (-0.4566444641221772 0.2621525449314008 -0.05607624407481721) (-0.1568419571370697 -0.1126566284320002 0.2740880396541472) (-0.3523986571583484 0.7964033091130752 -0.7618805749181358) (-0.1961522664286232 -0.1988341273555339 -0.1166892482705456) (-0.3075319785880983 -0.01728450837023483 0.05536930470737701) (-4.6537186325338 4.912050586823183 -56.90178083075308) (0.2330250992216395 0.007647037031933035 -0.02012869066241568) (0.8392537765375996 -24.44588421193533 2.34900054761828) (0.06197259685407563 0.1224151003296698 0.151077754783738) (-0.1950465558291425 0.1330284929356869 0.0673379547905421) (0.1368913954848998 0.01385158222567875 -0.02071495447658211) (1.217852744414284 0.3239557394865874 0.02360896629995277) (-0.5379032256691096 1.903437926018027 0.7181963425904908) (-0.8069194783834656 -0.4185909941837455 -0.05047401570347787) (0.01465432569383708 0.03850946654649471 -0.01975347742571484) (0.1519589537737945 -0.02485414997129591 -0.1055765519349253) (1.286442228604991 -4.370354651359795 0.7954207425643617) (1.322309464150944 -0.3239265338328547 -2.202756138977233) (-1.672822967326011 0.226000356369549 2.473498384714101) (-0.04596035081146499 0.01865554058975973 -0.0245962748710518) (1.159843491096621 -8.619427725000218 -2.702415527090674) (3.533441914410758 -3.367720671438547 -1.908951838601329) (0.7351318171732818 0.2029985122587108 -0.09568418310359751) (-0.2705139111914409 -0.03389083204450703 -0.007425385183939363) (3.660581372933013 7.933394152596001 -39.73796428427206) (0.3583267752269875 0.005331135383846858 -0.2137033617514365) (-0.5960596912914773 -1.14165433433891 -0.2754411257714695) (0.2261036421872863 0.2444123816064953 -0.5434850078463879) (-4.70785571019329 16.03965137071492 -6.304737730996996) (1.625042347028445 1.186817280681618 -0.439160054897841) (-0.5770078430412442 0.3213377833204596 -0.3364349040985186) (1.212817023023186 12.42016563935925 3.474648182039823) (0.9555392011990572 0.8671265460113118 -0.4684023784664767) (-3.687402747646292 0.3359891809968636 -2.34983440097707) (0.3588403641269994 8.335334721782136 1.162845306598317) (0.04681438460616781 0.0003349459849709135 -0.04459108313403128) (-0.7804318471297301 -5.321138707486868 -3.896982058802175) (0.1000818453841991 5.786369530376389 -27.53216211331442) (1.866374656665467 -3.272390550400299 -2.331708419186683) (-1.480619848939928 -3.151381796086574 1.27470393313283) (0.08466682648861218 0.015467145883059 -0.01602952639100002) (-2.49782672013964 -0.8323155240273457 -0.434489177338176) (-0.002449916717138165 0.5027183270647784 -0.4156183586926626) (0.2299820393129269 0.06970643952865353 -0.2720318862421643) (-0.7275662168629137 0.282767625085399 -0.9616145557218864) (-0.9840707400525901 -1.394194805516206 -2.128357368992732) (-1.359025968853933 1.967112646751697 0.9543344233736124) (-0.1925723603187867 -0.1029881001811639 -0.5044022114224025) (0.7064755974476833 -1.000562593495418 1.033624974148713) (2.353513343448907 11.19582860870128 -1.628363811053946) (-4.882450796449109 -4.818561226514887 8.55378844877977) (-1.278850021268719 -1.138887593119371 11.38869492962246) (2.696984635955138 -0.4982695466403695 1.509273426502834) (2.861132558371633 4.535433165904959 -0.7982003890665383) (3.260670870115196 1.297477440189103 4.092246801907168) (1.251187823406217 1.167645164037075 -4.212850101263864) (-1.487042088136728 1.476544339537216 3.803240710077221) (-0.2390579517973983 -0.05237055359008735 -0.1308738331165977) (0.3679595246425129 0.008139995806830835 -0.09661453554215049) (-0.3401609040138567 2.227640204668116 0.06258143736195176) (-0.04763839051902417 0.06673146110526289 -0.03706361716236056) (3.874718186808938 0.009193213325360716 -1.37534096525747) (0.4541353837544272 2.641717058300381 0.1482338674390752) (-0.1148265153044388 0.7226180265229923 0.3128499491539217) (0.7576905688470117 -1.747719448467499 -1.13517625771602) (-1.082485561162725 -1.197573014270811 -2.744781631222684) (-2.510363796796266 1.165347909741436 3.944054962393364) (-1.060371804618265 0.3160091664915817 0.3829862641170982) (-0.7182566188793799 1.202829367477922 0.4483350320605153) (0.4343403978635098 0.1232456067027931 -0.1388254070433804) (4.46183416917476 16.74991697439735 6.837773797780289) (0.5670442875704124 -1.125797216569929 -3.012039320556648) (1.512785045640736 1.486537507368695 -0.05653084638164474) (0.2370973646527985 -0.1832147079877148 -0.2045425334707008) (-1.232570757489988 8.150241730167334 -3.316570447170252) (4.287007562779392 -5.771504333407195 -5.784813174662185) (1.199086342546316 -0.3228297673181029 -0.1783012678822549) (-0.1356398119734423 0.1565975553322953 -0.1057960150589889) (1.635545174837596 -0.1509329398448338 -0.3269133735596143) (-0.3180592208750285 0.3396292851009612 -0.4032815409382576) (0.1552852012520193 0.5512393678283178 -0.01192733928351953) (-0.440385579388451 0.02943206792786265 0.08408516097533161) (0.1389697326869958 0.006985857398664808 0.1033991695079147) (0.00205788225216201 0.1227392254852879 -0.2842243484454036) (-0.2608941183964801 -0.06602997724664476 0.2576923931097456) (0.01876946891831876 -0.05180100461115176 0.04641952044292368) (-0.06971399807356615 -0.1182538276662646 -0.1303172855586923) (0.01415544339415165 -0.03736011025554872 0.01045079818205997) (-0.09092687284511536 -0.2346701292272264 -0.1402408637724879) (0.2697204793263204 -0.113327823650262 0.4777099024380717) (0.06970706378631777 0.1077246559527639 0.02577863302785473) (-0.09406457374749697 0.101098615542422 -0.14393952932351) (-0.1876886626705686 0.0338604287432972 0.03154181031864723) (-3.068342014317014 -5.917143893213914 0.9970106347086682) (-0.06226593270292119 0.05234117409719014 -0.1414527896350626) (-0.1558353558280341 -0.006674350525691417 -0.05742953237424996) (-0.0337996141978319 0.02555067040172332 -0.2421046190842566) (-1.25438687603462 3.948630914271216 -0.2745350038733602) (0.03634431656368495 -0.01304175123710172 0.1921202530404225) (0.05475438456452542 0.05997868348747314 0.065951225044282) (0.6189961544580669 -5.07771756454961 -0.4965026552819397) (-0.04485709502946902 0.06203355642389408 0.6055231440155761) (-7.105735177536749 -2.772947846749116 2.269909608404004) (0.6619072292918269 0.03989020713575307 -0.3225825972206174) (-0.09370377801920396 0.1040520167283323 0.05660725635967927) (0.1289572382194603 -0.06677291980976548 -0.05129679446534106) (-0.01849879681852667 0.02758953156890294 0.006752279584698623) (0.09207570041576323 0.1646000493180993 0.2114543642925497) (-0.808866672860287 -3.945117878356066 -0.268831352077386) (-0.003519850568809435 0.4017785574124405 0.1110758375031827) (0.1042147594318354 -0.03951300422078197 0.004579480237966567) (-0.2568373800738848 0.1507151601550592 0.04873240008218159) (1.039826565042671 -0.5160041914774172 -0.01147326770945062) (1.04202745823945 -0.5872206843337314 0.8302210419471154) (0.3394644797129506 0.2192216651404401 -0.07681249639877211) (0.1641045750373664 0.5368181860360436 -0.6798873574958837) (-0.2998717747203419 0.1225552148305791 0.1434617057931195) (-0.0240472309387269 0.06038293504455648 -0.001396029165544655) (-0.06054991520382726 0.292303458675165 -0.1727824025001702) (-0.04062092799455845 -0.0297307718698516 0.005145645430189163) (0.01608751925286256 -0.0192420724436212 0.07452592397967042) (0.237113299965496 -0.3067839321181385 0.4648850041318386) (-0.09144886372857439 -0.01062123934348616 0.05536641191609799) (0.2544777849669244 -0.08262966887738345 -0.03817112781541597) (0.3623762280419775 0.3406824127585137 -0.4782255052891938) (-0.8194304982242081 0.0804091854720782 -0.02566997049130114) (-0.5535767697673274 1.264675404871893 -1.277003448875717) (-0.3830074351992471 0.002250818689959411 -6.647994243869908) (-0.05897261937813875 -0.1090313303044263 -0.1202138586746862) (0.01352245659347213 0.007057078500874704 0.01548219052115447) (-0.2235231972461152 2.077122940137286 -0.5675565631306367) (0.1941419230091515 -1.006301792803683 -1.522729277177218) (0.8025525463339562 16.19631982647057 3.163514888456282) (-0.1868011617601529 5.166340281498553 2.480823430079838) (0.01562584900483563 -0.0009518199967388508 0.03153649682349881) (-0.2558594492643588 -0.3299636002890346 -0.5405967824303861) (-0.0477030861983927 -0.04244660000497531 6.130489094095782e-05) (-0.01437060823384101 0.0009643447380079453 0.01733023932670442) (-0.03422172659491007 -0.1350044411390499 0.01739270533242833) (0.05821906872688846 0.1182814148292506 0.1272049341940666) (0.1813384217868817 -0.2259454696620716 0.4506539989280406) (-0.003158413313495256 -0.03388652129194955 -0.03319588028645692) (1.10887497478729 0.1727373649967332 0.3319203321228983) (0.02063275083030271 -0.008816787778278363 0.03201749250870184) (-0.09262868087624365 -0.3848162883436489 0.712151016357699) (0.09341810434234943 -0.007844688341304959 -0.007626034076007503) (-0.3711719999764691 0.04876597718313722 -0.05768717241977345) (0.4518851373427022 0.001691918126785451 0.02969517555169282) (-0.1020086986267171 -0.04652299600872746 -0.0748692281273568) (0.04661103589008653 0.04176094741723656 -0.007043404176094933) (0.09505211129208942 0.08593170739921216 -0.01359151698680784) (-0.3220459423683262 -0.1957993116397128 -0.2072039080492822) (-0.1998169077896715 -0.02130835487758078 0.01314352386288635) (0.1817299398908108 0.199630731660224 -0.3169795276220375) (-0.1592049639668085 0.06194135058201926 -0.03357171361394617) (-0.1125477401421505 -0.05559211976759325 -0.1194375257690235) (0.5812699464876424 -0.1946009996474073 0.3290769283476542) (0.9956850998199165 2.316160833513599 0.1674083967707243) (-0.002215506904227824 -0.03769325136490054 0.03061288499308382) (0.4405227705701944 0.2738244461526901 -0.01471887720460738) (3.076535099226452 13.61484126408783 0.4410700397369748) (6.050061838815669 9.976887508662541 3.698811629176542) (-0.2235554335027533 3.993333089283198 6.337345947674875) (-0.257884876741346 0.06420339042770458 0.02095762465541745) (0.06064336330182618 0.03568486390344818 -0.003141021480128355) (-0.05032644368337599 -0.08353267104801693 -0.03874895152830618) (-0.04135328079288063 -0.002700981399375911 -0.04067329329999388) (-0.1537441056837129 -0.05450001924236597 0.0395664761903364) (0.2267667048208641 0.05506067954160297 -0.04014664186098434) (0.05301556386274089 0.1510221681274793 -0.003656865860486599) (0.9962257361027698 2.780941285352093 -0.5824264747793411) (0.1335458709238864 0.231570439099176 -0.09199845651698603) (-0.6166862419591757 1.527220680154823 -0.3765890781289387) (-0.05100494007089935 0.6830908231300142 1.200992501859429) (-3.466218545535926 0.6863305429591395 0.8215178078366944) (0.1735262292909479 -4.671417872353172 -0.1216514615655488) (0.02146238613225786 -0.6179685854111774 -0.3798728644894006) (-0.09606074545463381 -0.05932839535563939 -0.2457977788215602) (0.2733327614891515 -0.09345008145898152 -0.3261113410045971) (-2.414293687587009 -2.667710565418609 -0.3005631388464793) (-1.353769804856309 -1.183349501217807 2.473198891909195) (1.31727298564046 -1.358470771943356 -0.953434336644313) (-0.3174070081521305 0.9221372269772812 -0.6728409899512979) (-0.01610023947346648 0.08921589014804002 0.03422167863151994) (-0.3155105127136556 0.1182013603373122 0.1353046027799261) (0.1783725968537415 -1.808054048334869 -2.388214422562496) (-0.5832427385114215 -0.2626130451013686 0.02165426719127529) (-0.08611029006155392 0.3598008410600239 -1.575580302027469) (-1.047110123758656 -0.490066550799947 -0.2060742422828501) (-0.9508457977272851 -4.557457751677667 -2.011368817724726) (-1.618185886622235 -7.127532676456797 4.062366423232299) (0.1523924013569626 -5.181069886004768 1.677010398204886) (-0.4604368643757286 -0.875148331979534 -1.192850495135602) (-13.63014228581616 5.364290171307759 8.739280035399291) (0.5345690734529797 -9.306643129974667 0.8800303471605657) (-1.091002531377826 -4.610403244373314 -1.712277501324786) (-31.53464150235036 4.340319415887168 -13.11126796829522) (-0.1994356551446479 -0.5161444110474127 -0.6387343656957847) (0.2203606006439247 -20.94215417773528 3.656244238871815) (0.3626409539118153 -6.892969790524489 -0.395758584102113) (0.1623671123218698 0.7075281672169698 0.2617423942899093) (0.08662661265388932 0.03099865927740453 0.0009153585889444434) (-0.5868938702237323 -0.6137169099445263 -0.4645035420347345) (-0.03089541275087002 -0.07613555982524514 -0.06147102251857736) (0.436408253649371 0.03157548540721865 -0.02184159656192551) (-0.696705805747827 -0.2984912403410305 -6.100264216492156) (0.5160299384052075 0.7682757494668727 -0.2673741718587712) (-8.119819402522593 -8.096055576017552 -4.156336901554771) (9.064132131792356 -0.6686251711268865 -6.230742323970679) (0.1194340777622083 -0.04702575772134739 -0.1291004129068236) (0.2426887147705149 1.475062814488046 -0.3071191342490582) (-0.3231933678741022 -0.7830582368756343 -0.4864911799701957) (0.9630588771484558 -0.193547830731854 -0.02819854603911512) (0.7631972748938143 0.04797176524677435 0.6647504974678213) (-0.5408315033097566 -0.001366500953402287 -1.391008178622259) (1.03159274147025 3.138007143360188 0.4015360415362226) (-1.220682238960248 1.425854602867981 -2.004309882498434) (0.85043554872294 1.625959206088051 -5.161518674088334) (-0.3865428185134532 0.07328351733259206 -0.1015531688854542) (1.325531469527459 5.283470991509511 4.486297666663137) (-0.9984755944313126 0.6978028698386725 -0.9324348657774286) (3.512714006942371 12.97278082187036 0.2304027817011431) (-0.1974563131972805 0.03583215971321106 -0.08537839685547469) (-0.7054079491898967 2.869697251545102 -5.565543862060832) (0.09613244753721617 -0.8514463771990739 -0.6863184688109941) (-0.05189067534957431 0.1280833782264582 -0.2581054681365862) (3.597277013634624 -5.479590299556035 -5.264410279569598) (-1.608466967415097 1.307588020403912 1.767663849921601) (-0.3656251467118119 -0.4128542222189976 0.4650134379015596) (0.8704573522620063 0.8170753488598433 0.5696824024444179) (6.534777674119129 9.995357053963495 7.456326217244007) (-0.1370298115277564 0.7357600459318823 0.3468014826521104) (0.3062657378844935 0.2967060579714071 -0.2582661419212419) (0.178285319622029 0.08997404535793867 0.04674610822064351) (0.01550058916506936 0.01886467349176058 0.01285152412471627) (-0.08832437421398651 0.08738269078749572 -0.2197588889936359) (17.12812769233528 15.34439906270532 4.774311176780292) (0.1447304277118225 0.1487608241395723 0.01042302653684395) (-2.783573208927284 -2.275094453114905 -0.3609730962499699) (0.03083307293441389 0.0155489090486745 0.05425344545744053) (-0.4755305106491096 -0.8211757266377806 -1.029253912371057) (0.1655099056364299 -0.02002634304564948 0.09114622270115148) (-2.717597066134106 -5.193949415274108 -0.6985990476750209) (-0.4633034252554349 0.3194935316277898 0.3835800621425511) (-0.03556580294540784 -0.05056585555963578 -0.04544062494630725) (0.1351060438206223 -0.04929752559605489 -0.4786999553237372) (-2.091187259334941 -2.276888105217846 -0.05091598309324037) (-0.04579936858045785 0.03143887842589762 -0.028401750116032) (0.4119743220768906 0.2144292990471554 0.4483344226966728) (2.103686144635738 -0.1255063633531799 -0.1027751780461149) (0.6018961716680338 0.185119456842603 -0.251992389114223) (0.002576458329202509 -0.03237083899098913 0.02906306891826828) (6.250553489974743 -12.65678592325147 -9.706496126631148) (-0.6401614049448947 -0.8490343216119146 0.005886967114325667) (0.8364052487154108 -0.3019601446101877 -0.6453913135275038) (2.967210274669346 0.1847687098289332 -0.409514970188915) (-0.2269439136545696 0.03638124460309185 -0.04121826843331131) (-0.1021149961354392 -0.0032448213490157 0.02012218689432217) (0.02238694534082777 0.01733912217795456 -0.0138790553073765) (-0.7691879774658803 0.1591364814377391 -1.399230893000599) (0.08515142435617107 0.00300586762922217 0.315920259858436) (-2.08003036963906 0.1199183677027134 0.7742232140288774) (-0.01835724991676456 0.008411054858927694 -0.00452295921191008) (0.3860415038310274 4.666507581057855 -1.167416017261584) (1.825304966939962 2.671095186403635 -2.090829149945376) (-2.294005335574619 2.535270749989485 0.4679462401783919) (-0.01171015747585052 -0.01572136250373429 0.01164996144704293) (0.9652989659322457 4.080124845816512 -2.698427306407468) (0.2444028095187104 1.775947907597341 -1.136746898549873) (-1.289846856324189 -0.4760733448009486 0.02788962110784465) (-0.4372882827119741 -0.509994533498898 -0.3221050745249413) (-0.926679168345517 -1.053214595179113 -1.141061879084483) (0.01368637012796673 0.01641980376830224 -0.004341572853896996) (3.264957692452973 8.391186365164094 -1.949352795573014) (0.04125893135141923 -2.171716541105417 0.8694894047367315) (-0.6301511141289852 -2.10196853296186 0.4865168289034444) (-0.03447225606326355 -0.0008099252749251863 0.0666491716812866) (0.008148828731611789 0.01192825809968652 -0.04256622291611732) (0.003577797094838735 -0.01525606828363448 0.001544131478651158) (-0.07969668006652618 -0.01458542920276307 0.04430171290372592) (-0.03445507121400895 0.01597031889045776 -0.07072674148109448) (-0.09545662307102677 0.02087449911069143 -0.004733578070186123) (-0.005728610663759411 0.004248739974108823 -0.004588720065010647) (0.02900735692056383 -0.002572269166436516 0.01394255037295381) (-0.01618253528228854 -0.05557525706441341 0.02437441668412429) (0.01919458772662745 -0.0933941572509219 -0.08140913473756223) (-0.004809486433086334 0.09392720027591431 -0.0442999900887413) (0.1581186006297749 -0.02094811258701458 0.02847417249435794) (-0.2386008221620897 5.731553209422482 3.966097203909833) (0.06946972712133047 0.07990675332232647 -5.361101850250119) (-0.0225399405747851 -0.06019248814257601 -0.003723869665714126) (-0.02476720901571944 -0.003387187436507006 0.09233408610361361) (-0.3044501468315191 0.08440053889490423 -0.2107504375440936) (-3.450680234639937 1.709714905289928 -3.634039925843429) (0.1187773622273969 0.03848555082489812 0.0670785867480706) (1.418505859445747 56.00491904471032 -1.971394713272752) (-0.6078277700160777 -0.09414227332280496 0.2405016527579833) (0.003446709106730242 0.01937632084097791 -0.01206684168579056) (-1.663435394748654 0.07435978478988928 -0.8687157782785451) (0.05249054975337893 -0.06815768071516913 -0.008746175815563927) (0.01113693418288286 0.003565730804405693 -0.07673802552181171) (0.05472194872056191 0.01344931806447393 -0.009486828193466565) (0.01432635503893421 -0.01863789126257859 0.0383502168018349) (0.04756663559026982 -0.09344021689751178 -0.03827919726727283) (-0.3128741263468719 -0.6580513946072815 0.4289046513930681) (-0.02828211869711739 60.50255979056758 -6.47675852955669) (0.9740211418363026 -3.919619190317764 -1.427042340759417) (0.2133872227202798 -2.246289109634243 -1.417448440600512) (0.005778953876571045 0.005303514661960705 0.02735212269824971) (0.01505540741600438 -0.01325777713097306 -0.00142518727071215) (0.02050413234278842 -0.006125251038004593 -0.02007409759430285) (-0.1318592477154657 -0.03041697195600047 0.07801876810991322) (17.90023074136979 -0.8506444842157954 24.23993306851602) (-1.949354059724819 -1.276398635320807 4.927826649253479) (0.594376354862626 -9.975884793997762 5.792438912177031) (-0.0005249097435055666 -0.02609574747617371 0.02060154621425498) (-2.580750672235815 -3.540784849747377 -4.117977781902185) (0.2634640076953838 0.100657422243604 -0.1063247440656081) (-0.01553786945596028 -0.05639970522714125 0.1608383517625099) (0.8214946379161179 -4.290732647951964 4.24436466338342) (-0.3893071474905231 -3.654392464550176 4.45299464474266) (-0.6681057853964181 0.2581157572578631 0.5582172140554749) (-1.652532755160387 0.07928563795236571 0.7536347802216379) (-0.4309470987904466 1.139202488492197 0.1451065881014076) (-0.009545101760399619 -0.01073044072757986 0.1039281588131016) (-1.717539783175957 -4.131587726630862 -0.04833895578248004) (2.133314982462407 6.161676079693606 3.258930135757466) (0.4012341440619783 3.729770503266011 2.925402297737018) (2.461861213635626 -0.6001099609946103 0.2784522876191459) (0.03417611960952882 7.831894152416492 1.611206185286332) (0.003686298294842436 0.01621421571517594 -0.03993245555381235) (2.171102677434488 6.906130300790062 -0.9458174931890242) (3.996526953290748 6.918324114599219 -1.596763336065623) (1.835323578258584 5.904972282995758 2.702965414643583) (3.354237736125887 5.603397459293022 1.609226218272634) (0.912537173577028 0.01110029281599112 -1.421689857419636) (1.985115179062485 4.993743265340143 -1.20446349416813) (-0.7331995776429044 -0.6525219830235018 -1.366752594631323) (-0.5782237969923769 -1.149637681729014 -0.7286470212013614) (0.1891039586231174 -1.864128569116862 -0.2479116241690858) (8.521475123823567 5.289095139040529 1.987057907208598) (10.88956786616192 -0.9485781184059949 -9.77808173618549) (-0.1649232836555978 0.07627992194920123 0.01271651233622987) (-0.418431097776109 -0.4570000939444957 -0.02573757553906253) (0.6906015952653403 1.208469035665435 -0.4165152949145034) (1.652611498540585 2.831222624038129 -4.280752650956897) (-2.396904773149508 0.9204864574505103 -0.1575832767580476) (0.7161401670644318 4.248997759822069 -12.58724380386534) (-0.2198392327650528 -3.419853019393899 2.962263780791311) (1.331515171569371 2.095110935305374 1.409623344344211) (0.3665949675239177 -0.1528980775240273 0.16092120430032) (1.191448902332512 -0.05962123529881599 -0.01439290556955342) (0.03318228784539173 0.03703512631644134 0.01536929002691364) (0.1171468113392087 -0.550454488243884 -0.2067794277913905) (-3.059675094111959 -0.6143114502602431 -0.3055610518326609) (-0.2233094428418674 -0.02908392709679523 0.08941829630907527) (-0.1023853886232762 -1.581891703239436 -0.6717507521099326) (0.00184924646219917 0.07482648825806354 0.01855946990458003) (1.898374247433687 -6.482849500883778 -0.9444607455776677) (1.657643732502161 0.1502518466345413 0.9600013125442881) (-1.055328547643107 6.122266943106216 -7.312884444619685) (1.170117012015311 4.988891607322079 0.895059673995422) (-0.7429704138064996 -0.7591431047416726 0.1332853043010693) (1.636549950359117 1.839857665189516 0.6348066295925299) (9.410905388344529 -2.725684604273963 -6.158356174461321) (0.7017490077230868 -2.153692237254111 -1.077324873537837) (-0.03154648491748116 -0.05443448145573707 -0.03015067442680302) (0.1610204181191933 -0.4249426059440317 -1.513627926835622) (-2.279949476919124 -8.573424493954318 7.298274089613038) (2.498755652471098 -4.122619366531149 -1.860033237208611) (1.360154250966905 -2.305327965443196 -0.6816999144730602) (0.2122772385081151 0.6463498309881105 0.1275478458204874) (0.07050487573059533 -1.178230734348648 -0.402831334726407) (1.451250357304644 8.457858694630975 1.503481485930407) (2.112035493911099 3.287683146328584 2.346061564884931) (-7.8072094409433 -7.414769378267829 6.854006633106204) (-0.137182015052012 0.1032689368507492 -0.01263224070136682) (0.5169668434678165 0.8471316457044686 0.09461361978498507) (3.798180309425866 0.4473223893150502 5.548151786866954) (0.02228464510602901 0.3150701931905038 0.706155145857126) (-0.16134190545587 0.2775554465264832 0.1473681683279633) (-0.8908959668999239 -0.04240181104969573 -0.4147339885439641) (-2.186559433808491 8.21712346812682 2.836656796679699) (-0.8197385630324994 0.434646662348306 0.04397440195478675) (-1.886446569725379 -7.882633316765222 1.503562576141806) (-0.1886043749039289 5.426566734715731 3.077324234612663) (3.230943855193001 -2.547566761555158 1.248701620223284) (0.2838964264889046 -0.1563455303751451 -0.6926862587993983) (-1.931457633663152 -0.2837597988798831 -15.96125120463666) (1.568448784179123 -3.511615588989515 -2.009092261078253) (-0.3260208054861726 0.04157721108773153 0.1123690206152431) (0.8269783292671458 -2.198360674950156 -1.422638254371098) (-0.03485238966450832 -1.568351206104804 -3.38132545118813) (-0.07694113632299687 0.05663665401434094 0.05355601669484833) (-0.01670577944995289 0.06782447303214648 0.0254239396631837) (0.8122794910361278 0.1900511776125169 -0.3522352447316262) (-0.1326799600717855 -0.4678338508014973 -0.4214280113848238) (0.2099559516430964 0.05500731222887051 -0.4922619300722963) (-0.3267558750001119 0.250919083039323 0.1583634321767496) (0.1184593002979319 1.677099849906182 0.4776198652033871) (0.03925947753703291 -0.003402095119332905 -5.261752809057776) (0.1248265510494089 0.1369466125701894 0.266736936068482) (-0.04786349583009426 -0.1148309225120556 0.005643847659691777) (-2.124201784514588 0.361215783418207 0.6315558264779941) (-0.1287440886090933 0.9970427977218279 -0.3540451752825697) (5.549961199876619 -0.415765794630895 -4.751740955654453) (-0.4355874491978784 -0.1839458531861407 -0.0378193971679455) (2.74852556714579 -4.292594222808284 -3.076510341076997) (-2.371376016069555 0.09465247287225831 -11.97663122100164) (-0.6087779528864711 2.366281452539031 -1.525434252870173) (0.5966763752796723 0.01993183052276448 0.0674466713095577) (1.004181894041547 3.509385945770234 -0.6589998439401825) (0.8466645162029083 0.03591700519287358 0.02121276506391445) (-2.709352964737803 7.05119550619621 1.552039596938146) (30.8577088356745 11.54425284354465 -45.15411753306461) (2.234945441233461 4.893274475925757 4.130959593776776) (2.543316387942711 3.366056213409711 0.2128683037923482) (0.5723403964056941 0.2377680504956632 -0.332305199027382) (3.040399861787741 5.677315821897471 0.1551017761284319) (-2.247123455083766 -3.101256298241559 -0.9900399186584102) (-2.571956088146336 -8.088198726465347 -1.36493746751353) (0.09620228648500462 -35.42952953983358 0.02594789679616005) (0.004891854987416372 -0.03603185684751729 0.03493933474480599) (0.198539446268699 -0.1367264835008703 0.2073624206881884) (0.001722470923024983 -0.06722423104015705 0.04212468337464397) (-0.02349906463609681 -0.004000520033088049 0.02963474860470913) (0.04694370253669009 0.007166042364369636 -0.003543862137716876) (-0.01445997099316888 0.008144046423383507 0.04680460926487961) (0.009167596455085218 0.00881361736935961 0.001491957952474499) (-0.04587541500613393 0.1500620706802253 0.1856198511352871) (0.5060733322005261 0.1947480447271373 -0.06830022263480789) (4.51146063074145 3.277783965403058 1.097860009724384) (0.01091889554185948 0.003974300911485869 0.03510779263574634) (0.4624502907666503 0.09522259986483839 -0.6104889502029106) (0.3577544562508557 6.242687368796288 0.7796101976063252) (-0.3857820777776421 -0.7797026743803572 0.6349759388776836) (0.8113129664067779 2.03375547319151 0.3326390411070684) (0.2467256345771823 -0.4957362802711917 -0.5561827825036245) (5.922396814769233 9.162812739994141 -3.719474132195066) (-3.335736927505238 -8.56390676153892 3.363854542120919) (-0.4098554178253584 -0.04477712316487759 -0.2422227177821604) (-0.6215692547418729 0.1442183076110425 0.1933479556874917) (1.919841409822034 -0.4732782367564345 0.6282243769415111) (-0.3923148375312739 1.989085394858482 -0.4548165986280909) (1.266018089556412 -0.6131541427517417 6.633096908332163) (-0.9553302146649985 4.560325855409262 -1.387370332319423) (0.2272029432449769 2.734315717996243 -0.6335286344028382) (0.6982401549556536 6.44440822794259 -0.2637656370946044) (-0.1411894262874556 0.2186233156470659 -0.2556123905351427) (2.58699539043638 9.37560632888022 -0.9570024788314599) (-0.101466922722661 -0.1495681705514041 0.09078619484496921) (-0.3297904165224331 0.7429271717506772 -0.8061203951887577) (-0.8951630288639005 0.2436606530573578 -0.1143478006770295) (0.2152483900062218 0.4402686409497996 -0.2446783282143298) (0.06573891884829705 -0.0008885550664490312 -0.09691115050350448) (-0.4080622046108866 0.8914889054999668 0.09724529927050006) (-0.3193386150108251 -0.01406165765235633 0.003825154857201293) (-2.762979884037748 -8.632861583240523 5.613645855853994) (1.796986375637421 -34.47559733341794 3.157022789331672) (-2.179237057577658 -0.5133660115421912 1.420695190664972) (-2.268345700358875 7.789441912619116 1.930810814760383) (2.345134720901797 0.8365247739591075 1.412667756865297) (0.3551766201281348 -3.635730354449163 1.364194586340532) (-3.4460385745405 -0.2371612180890269 2.008107335721461) (-0.4980862643203187 0.446252740137868 2.00487758327486) (0.8307938917671667 1.113732262821949 0.2860606350297782) (-0.1548756867629207 10.2265424840464 -1.339353265237232) (-1.694607436342433 49.0185417609949 -4.457174746008078) (-2.1733724523169 -3.187802601392375 1.311779169314961) (-0.150448480556946 1.906079879707365 -2.228903908764415) (1.711641517742375 4.200085770226035 0.9502653595423898) (0.9350620380612307 2.264364959584015 2.03308606129613) (2.083710224360608 0.3989675401483813 1.17535958303646) (-3.513929618800662 -12.94414709302224 -0.5992465086356701) (-0.3196782893204224 -0.8684660784612075 0.4840415134360209) (-0.6108312961782966 -0.476559969430111 -0.3464957044018612) (0.9688183442082683 4.770144362088093 0.07967152763548668) (0.007024093536736081 2.545594571585006 0.2905100620677685) (0.9649674473478917 2.19783998854303 -1.527053968296889) (0.00691959776448775 -4.610182529105271 0.1129872306744943) (-1.037874390352067 -8.735001258248728 -0.8576982564085385) (-0.7115170191267602 1.560890301797661 -0.9475198895998774) (1.330320956508108 -1.298676427025747 0.309884995258768) (0.04719976253528438 2.071991295049399 -3.928913542928411) (0.3908855556985993 1.883774321728023 -3.447533385274523) (0.9893006444906771 -0.583929506861699 -1.55999725078954) (-2.312017909246802 -1.872855641516601 -0.5757200702615735) (-0.3058701446365003 0.5367743546835472 -0.9162907621695106) (-6.108659929585577 8.248555298801843 -2.780825624132283) (-0.4563491666565541 -2.008212123861447 3.287921180175947) (-3.526959106379119 1.563509685466695 1.668572449012035) (-19.21883054096568 -14.05541724253358 0.3160394110393576) (-8.301861519617059 4.585939332241784 -1.113548626659881) (-0.79622859181731 -0.3431316268726687 -1.208277325324022) (0.009374849821357414 0.005948364349040393 0.01895109806941691) (0.006228604897714667 0.03258705708396245 0.08441952586891979) (1.904583101295764 1.184962509351382 1.13373508583734) (1.475271022860696 -3.898629453034962 0.3811194876762583) (1.746853318734959 2.649080262398905 0.9345338222569721) (-0.1603624659605605 -7.185937265064106 -0.4381279581159104) (-0.1125561295865256 3.77170701183068 -1.213928879134207) (1.051198460811486 1.99967128593821 -2.027900895029402) (0.5478709009151603 1.256439503279345 -0.1126252070979938) (0.0003918069021014089 0.01646737012094579 -0.008379023657567604) (-1.084476448676774 2.133511128898467 -1.410957244723809) (-0.7396364626176313 -11.04118626435625 -3.418903360020519) (1.078849552905576 1.988669398016184 -0.840437851213157) (-0.7180652607816034 6.887366022637143 2.182026618799053) (-0.002777653772719411 0.008812154575215357 -0.001853934569289778) (0.05843815069980191 2.517585054335953 -0.7986844404544902) (-0.7233741284001509 6.063612579335316 -0.5328882617760383) (-1.120850856975146 -2.841707463591073 0.2000800496554912) (-0.07683178374122281 -0.3113089124130586 -0.149177559275964) (0.1065836964492844 -0.6380091767561599 -0.1227147899722089) (0.4722625925792557 -1.453783745144484 2.633617104103883) (-0.04617123568689734 0.09174458739049539 0.1279227983570198) (0.04580772592285549 0.0198213167453719 -0.04424926505129232) (-0.9445720410327331 0.8784950013970232 0.4668825847637023) (-0.3597942730349234 1.822641544002968 -0.3513347069992206) (0.3943349073703057 -4.320283930494611 0.4233188316152116) (0.006571253957407333 -0.006387914624750945 0.0007969706458548775) (-0.00106457040664945 -0.006328255982915358 0.005287801276487487) (0.04770101090067812 -0.06315185679604991 -0.0124338042584142) (-0.2576772280129364 -0.1751746222772636 0.2072066336899966) (0.4793743337388381 -0.5569521142843923 -1.227025425817424) (0.5872198829953891 2.710749745478198 0.9838026076087445) (0.1179147674731624 -0.0532436840868732 -0.06624245497037128) (-1.535028391538949 2.135919858022851 -3.840692097962283) (-3.125945011097393 -63.96589645375762 2.516646292704532) (0.3864360693903417 1.3156335118231 -1.139729561341205) (-0.6402223617625223 46.843736593592 0.005480125336024599) (0.2863659632221591 0.1275977905914506 -0.2382270197639397) (1.986347979412271 -0.9490943970720174 -0.9935919464875405) (-5.09253537430165 62.6843323650068 6.25868362817447) (-0.50582659624549 -0.7584051713636394 0.6283367882055746) (-1.248970834666429 -37.08718183196996 3.355693969612566) (0.6849722438471474 -0.2372796373867092 -0.8528948224918327) (-0.009944853283947598 0.0240365455388649 0.03171041398873815) (0.1225922962181134 0.06577918908443257 -0.01773331704766767) (0.4946935575424945 0.7792821667206018 -0.03432880856645809) (-0.6435459967882451 0.5156994514535769 0.4921345955856689) (-0.9394292637225979 -1.328377103709649 -0.1544174972586301) (2.554184130271434 26.34529179628611 -0.1024630751898212) (1.345323434775705 24.38287110992731 -3.796662249033275) (1.409641960436498 -7.940273994697732 -1.322025667655507) (2.523176545827508 8.543164603984852 -4.357103659331187) (-3.840737249495278 0.5061938135737978 -2.773370505487646) (-0.008623403063777686 0.001699657518965607 0.007474165196862788) (-1.197896221743116 3.143999452301175 2.329676908361385) (-1.723807361718378 -5.451008524224628 0.6003266200333751) (-4.576845639302701 -2.882841402367997 -3.423663759575157) (1.052560733141878 -2.200659177344483 -2.335129318032844) (1.746762509454756 1.425687125300821 1.25838038913848) (-2.798067050154814 -11.25321227909015 0.05935414399952166) (0.350361829699421 -6.063027538662801 -0.1589862373391793) (0.06980925013068036 -0.00918183909894801 -0.0003993387895679865) (0.9742660103733447 -6.729179883287314 -0.0363608909097059) (0.7515629460373128 -4.928651780275553 0.4466448054682651) (1.024579409932365 7.816366145331282 0.2640606689469893) (0.6384389452650099 10.26715946314863 -2.864512405177122) (-0.06262641664905927 -0.04202689982736212 -0.01812984516957405) (2.244381028429646 4.287846795541901 3.390936897104742) (-1.13979390271156 -0.03518228403159085 -12.19510629161111) (-0.04496340992773105 -0.03632813107640294 -0.02183657886574855) (-0.3373643180394328 -5.57845766454052 -1.390085299425112) (1.55981220316317 -2.144554722514025 4.010257087121001) (0.9446010308096897 3.408329333502347 -0.4067308231240467) (2.119606758835268 4.943523329579492 2.067484141380049) (-2.871602981005673 4.172678510285707 1.531416405663421) (-1.66480919464294 7.483913173592671 1.277103777786041) (0.06002849299315455 -0.0001693065419881429 -0.02870423239869177) (-0.50395324476582 10.39283924596369 3.734049456580379) (0.07894253122476136 -7.331134754824081 -1.94066628777815) (-0.6436305292597765 1.783419386559988 -0.5237885585839149) (-0.161597973720899 -42.68293814727402 0.5222836681982681) (-1.338917609127532 0.2146138687980136 -0.2605326100757347) (0.1288023413793347 0.0414101335060231 0.03084928204271808) (-3.310294513489112 2.710658214757091 3.045872104552982) (-0.08083141512531355 7.834488520303331 -1.617545933638788) (0.2346133180180586 7.421581385432792 -4.753906843277155) (-1.340827708850091 3.377456842545648 -0.0500857108573696) (-0.1622129624657727 3.689659736950807 -0.09244068778556983) (0.02176295591046733 0.03174736474141231 -4.431620660105691) (0.1987444243749447 -0.6893797853052639 -2.187825631386568) (2.030578709323489 10.55475340395994 0.9966901995053878) (1.133076217099001 4.949901095173473 1.419205741769839) (-0.01347306420361341 -0.1893170182145117 0.1178277980871746) (0.1009156234647212 0.9267703903559446 1.076451127349447) (-0.4912581924090194 3.972514725673543 -2.124184504358376) (-3.182446786446491 -3.478536758332491 0.8618971521210347) (0.7953889709379975 -5.794027564005328 -0.1353573465667774) (-2.452367882200377 -8.473654568533677 -1.327459441976692) (2.892369926345584 6.551110093586967 1.694124672168778) (-0.2200453536384337 -0.007851630906609817 -0.1483317292663719) (-0.02271442279043848 0.02936260539752302 0.02962870525307995) (0.3871909687862515 -0.07378342036664469 0.2630147228114343) (-1.161593172687527 -0.4510504550896417 -2.783460745804303) (-0.4249839037105901 0.1269414509222966 -0.2854446232074526) (-0.1509283600767764 0.003225110018514027 -0.06988089440500897) (-2.740413311682158 -4.338473234289304 -1.235831724497905) (-0.448654899200184 0.3896729076630416 -0.2377778042221148) (-0.06476452959357556 -0.7806237867892736 -0.5661487977495612) (0.3079862651093683 -1.641244069756769 -0.9144101236144406) (-2.863605296741417 -5.330500429533108 2.251904869802477) (-0.04090021267348235 0.03009171590045523 -0.06473999534110779) (-5.348204146578965 -64.33802380543868 -12.18612043760693) (1.926963346883484 12.50683433280982 1.922481080571525) (-1.872949375152797 -1.593900453889927 -0.04557200281996157) (0.09943061165469033 -0.001378975314732831 -0.01929230489608373) (-0.005564928419599672 0.02364420058253843 -0.02196793924739046) (-0.09139073014125268 -0.001952225401516253 -0.06475870441572702) (-1.211848093738025 -0.919298128314223 -0.1553972013081849) (-0.01530225539638349 0.01203084221334054 -0.1538533250243492) (-0.3653864890320075 -6.812591625417904 1.86020009112523) (3.654246354062602 6.185555459583161 -2.164146656095294) (-0.02320000447561608 0.02888094980062352 0.1158443113309588) (-0.4492773370196976 -0.0468079245346424 0.07844020719232507) (-0.1442288197043565 0.2106850082698214 -7.440163778711513) (-0.5594343589169768 11.34667575547292 7.597182000779121) (-0.28386470530456 4.828147778624793 1.195469216948028) (0.5103669481823029 2.405644512774941 -2.129111539253249) (0.6126844597302548 -0.9552330810403531 -0.2417086042111945) (-0.03912104236925201 0.02352739979364105 0.01906358859265934) (-0.6512465333946718 0.5209810360617066 0.2198945379565951) (-0.06301609584276965 -0.2009034292394077 0.01334481564596353) (0.1574058699945501 0.08941155587283092 0.008594129807581631) (-0.007092931759304171 -0.002608637110748509 -0.0100377475234306) (0.001661220389658845 0.01896282858110454 0.01406995378689725) (-0.02608023417495006 -0.002662411670540928 -0.01567218835178476) (0.2218962631064402 -0.08817236233243125 0.2422180126479203) (3.639897445286211 2.163068758681476 -9.033901632038734) (0.005912419013485236 0.01277693975867912 -0.008967592171544608) (0.08446043977384737 0.0528417242477134 -6.103635435091467) (-0.007818921975664632 0.005538909232976067 -0.009671758239768943) (2.119138378957281 2.914700107005344 2.791138816872014) (0.7833995178088319 3.30678127141706 -6.606073297325047) (-0.1270178814480094 -0.02605988923193287 -6.95060162292345) (-0.03866722916378121 -0.1306765840037417 0.1411753911014731) (-0.05131691353791261 -0.02650493182905625 -0.005282657267177551) (0.009734736590983254 0.02104525473837823 -0.008954960472625732) (-0.128335953154799 -0.02911077171443709 -0.04842387465597928) (0.2234769693326972 -0.5856226420329369 -0.1390146149350841) (-0.1397263536379016 -2.282901317231381 -1.424719061162705) (0.1268660320901466 -0.202237628793884 0.1254248132034491) (0.01248705797130211 0.05310655298782976 0.006401805653286862) (0.2777450354803649 -1.525212618557773 -0.111943316293956) (0.1675587982369823 -0.00623741439267169 -0.02720590153353845) (2.222322128329087 1.398213248623867 -0.9959966801807326) (-0.1932972441387764 0.05316921749939954 0.03147706897658219) (-1.737537417718908 3.458213626632574 4.441526412357053) (5.787463822226458 1.373585558338206 -3.620280485443363) (-1.081713857934933 -2.37053295744327 -0.1480391385234527) (-0.05838472795572369 2.357270385790179 -0.8854770029034839) (0.4436513793480625 3.081765646739648 0.7782853421029882) (2.666815379313285 2.632573605956282 -1.256503304589653) (2.701671820827158 2.954918574249505 -1.926252249072788) (-0.7887519610944611 0.9188817356767596 -0.6970128918160537) (-0.31364699197055 -1.103854393699847 -1.463586718222348) (-1.804584115360934 7.731026491715459 0.3492105270039224) (0.5417811882149568 4.631950972534912 -2.835653849671987) (0.8697222470536814 2.357186058540889 0.7671880921701455) (-0.5007516709260224 6.37128873902927 1.007362350292078) (-0.03186396667427131 -0.0948768975722843 -0.03853954856454046) (0.01894518967467068 -0.005848472628669753 0.004570241579303641) (-0.001376739434489741 0.03669516365666292 0.02679202546549419) (-0.02539403591526219 0.02538538639735311 -0.02423986322861366) (-0.01389944127895823 -0.03061713965581254 -0.02369037943964124) (-0.1007479001818828 0.1509969526502759 -0.2320348863322854) (-0.04217383893111334 -0.008453036189941948 -0.1684799512282844) (0.2002670911047714 0.0416563551544958 -0.3682228666396541) (-0.07706321941546479 -0.05108128409670068 -0.00879421233546261) (-0.2586649353611685 -0.1437847361201056 0.006104667165951316) (-0.05182396055795568 -0.536503846167392 -0.2974717090763105) (-0.6535482538777365 0.1740377649040473 -0.3229407546598244) (0.3396163885545506 1.210641775033432 0.5676481871987457) (0.8575909321580821 3.243612858744318 1.5341910704492) (-0.1287961938755869 1.123238006823491 0.8991418183863586) (-0.4611848103266385 -5.614849885031239 0.8754927093334541) (-1.329025544726011 -3.678885913254283 1.649777889252315) (0.3679948039959056 -6.717314756582903 2.395376034156462) (-0.1175254228719631 -2.227584459088738 0.2411557905299287) (0.1097906504931539 -3.202937762001026 0.4213831872130531) (-2.073076695311604 -1.642623293849258 -1.403192434277102) (-1.40472125335549 -2.185752071615508 0.8326559292324762) (-0.656615593445683 -2.216093361276043 -0.2616419842896926) (-0.5550492048864778 -1.89637646658616 -1.269438483990158) (1.149217543330471 -6.691196407299202 5.926252046407532) (1.960445187610891 -42.7324465038362 -2.451270956746822) (-3.701294557454633 -4.368062364299847 -0.5056480818584679) (-1.243208231637508 -0.8610835525724758 0.1561671448636082) (-0.2164181842484524 0.1954904631693019 -0.1160975663077078) (0.4383655311454392 0.5953242004294038 -0.4250925023926959) (-3.183638347928416 -2.0136473396117 0.7475521144244862) (0.5010038477034904 -0.5970925067284941 -3.339554720850729) (-1.333092099196572 4.390758507684674 -20.60579337124374) (-2.218710107054761 -1.104557306066435 0.5994680340080836) (0.06526801707122465 0.073277563753385 -0.008807384187979626) (-1.363094725289978 -4.625146304822078 -0.731153714852793) (-0.502714502331578 -0.08366970717445019 0.01033719263202473) (-3.058493512949373 2.292724982215981 -3.02855151003954) (-0.0706440947150823 -0.3830007899203124 0.09185011883504253) (-0.1278339470330931 -1.017498186408732 -0.02711250388788675) (0.07139446873040557 0.03122914398815822 -0.1251011812132863) (1.666941741835346 1.249996623860401 -6.73724002895922) (-0.3092223430252892 0.2255194078426392 -8.270701977255515) (-0.1886841538265547 8.521844077192073 0.291839212693808) (2.829160513406865 2.798461687822714 0.2812685036590994) (-0.05328146010939683 0.004107332037829495 -0.03281489183973866) (-0.4123100551636222 6.345508121267716 -0.5856578060550197) (3.430953755044896 3.650343308298837 0.2997160832433639) (-0.3273960029236276 4.244179344887889 -5.867849638563422) (0.1528397274065478 8.947856138745243 -1.800431788028849) (10.65939642110432 17.96699738727963 6.871942717773917) (-2.561621915624425 -20.88137637747431 2.64131850947077) (5.082010957968907 1.915261823625812 1.036590160011752) (0.1476218061820752 0.7431346717635822 -0.0008359734844451544) (-1.839138046423541 -0.3021186684161206 -0.03222739415633991) (-0.05359059174920815 -0.0115629286384471 0.006391542600866823) (-1.153726500516794 -11.04533520964151 5.753049724966528) (0.02203083343374272 0.07843542752545889 -0.05001983401620351) (-0.6090964316042917 1.580346973919593 2.470197718106418) (-0.5280329797518157 -7.605231784517722 -5.297799588699399) (-0.6745077132906054 47.38939789488519 9.476557078541859) (0.3481721776086898 -10.89183531388714 -2.637676585364443) (-0.8563965048411 -0.3203482227611549 0.3067399911887173) (6.799156323811342 5.561557411999593 -3.14795731908099) (-0.0452656966644009 -0.5740220969201428 -0.2916426929705496) (-0.2125083653872738 1.841510442873382 0.643156457932872) (-1.274364902236065 -0.7442091521929231 -2.484763828819543) (-2.882665890628744 -32.91309306605681 0.0187074180767306) (-2.603150300793336 -4.51461882336759 0.875742232160333) (1.519814962717836 -6.397940241026188 -2.09804543008042) (-0.9632489061399386 8.348293154451298 4.654033647041275) (-0.2988010142504911 -2.714479315437808 3.746658981996101) (3.716843301619253 -34.60801262599501 7.057456402614956) (-0.9534963267480097 -28.2616350726755 -0.02107325709916863) (4.430838932490222 7.813271810078455 6.443740143301188) (0.304854475450384 10.68174019928837 0.6963806012936181) (-0.1046631232071562 2.026439552128306 0.004499171658994147) (3.134479518353989 -8.497287215071577 -10.68572786879249) (2.238967480825307 84.42191534578913 3.327343360908447) (1.904934089486412 61.13560633635519 6.73080968196706) (-1.534457282896303 -1.685939279221409 6.188709773792967) (0.339000084191613 0.1111662735473937 -0.01824721955729728) (0.5450970882953398 0.1525468688388786 0.1768258932577405) (-1.872210678229982 1.145547662185589 -1.813839253642171) (0.4999962632760585 -0.07671133751992922 -0.0664151846422377) (-0.1082611717922301 -0.4255747497015513 -0.1129191427647397) (2.72217293056905 2.002344236291597 0.8473870756388776) (0.123794317857752 -0.1030837930725793 0.01084682140299437) (0.06373469632199646 0.09790926968304953 -0.08784990149333281) (-0.01923737297619659 -0.1160062531359864 0.04583774394829911) (-0.008888093636712854 -0.02561675535531718 -0.01592785653532106) (-0.02107334360368372 -0.07180413530365677 -0.07425436527275346) (0.5786902163721441 -0.1989116957651734 -0.2654885636877254) (-0.08493470511199627 -0.3938108017038831 -0.06418362721864788) (-0.1045886261681247 0.1983063849116735 -0.08427685794133455) (-0.008976969957739713 -0.0183209789419715 -0.008741047135018904) (-0.09559942000613958 -0.1435561749380028 0.006753800505079635) (-0.01620371609069237 -0.05774384262225027 0.05546292196805964) (-0.007008893582985603 -0.02446208053895036 -0.00577823009908433) (0.0406391744955746 -0.07076833331567602 -0.0135952834840322) (0.1650760156688844 0.08885711161653675 0.0779434260253946) (-0.210469910198036 0.207604039487963 -0.02656809136530488) (0.06086586234972387 -0.04081201202207928 -0.008626562115147835) (-0.005739859471615443 -0.008016132241079603 0.003865171256496708) (0.003180973535566022 0.00699534951435137 0.00277836476511309) (0.01285364030178845 -0.01358116238138887 -0.01318713473465056) (-0.01175211073719321 -0.04560865423149734 -0.01030493642746733) (0.1860390897598513 -0.05586252616041643 -0.002725378857938887) (-0.01709582450368598 -0.007032285444227461 -0.006174725933834185) (0.002042830194498517 -0.01897812372910812 -0.007701721264157564) (0.009985755418038592 -0.01321962571123624 0.03075224571966434) (0.3593041540685699 0.9926718953744599 -0.4995434262948656) (-0.2756640683458607 0.2652693490947866 -0.6142238764101526) (-0.468580510673618 0.04907738050612907 -0.3408420857998105) (-0.1643173212236726 -0.001796476043208484 0.09756176666305476) (0.3715753296083327 -0.1035273928527021 0.05405602089703879) (2.978885989484832 62.19406945284893 -8.240511135728891) (2.574067526723535 48.41930503950888 -14.77936930599887) (0.1662077881875025 -0.144713005139867 0.1853344331426818) (0.02304884849207878 0.644036374189645 0.2844842078317927) (1.673255635974217 31.02264579268608 -7.828216418577315) (0.9918168390499285 -62.97160182031251 -3.733986656457456) (-2.172539054604028 49.02868354743654 0.8695259523145608) (-0.4797289491278167 8.255680879081453 -4.340964788405698) (-0.7737027669132964 55.72676552140338 0.7014238208532563) (-0.9966530326285846 -5.538755374092426 9.435078980054749) (1.168303572448407 -3.588147654539054 -0.07866982129679545) (36.2325511189341 -27.69488438571532 86.70987612546759) (5.361319414438031 7.104820206437025 -2.590289191042934) (0.2229849981761848 7.940818395267923 2.2142025375107) (0.008711307876367331 -0.001108845014535603 -0.002450515506961872) (-1.945567505802562 -58.69475434146177 0.4339733074748012) (0.5705922940478682 4.21397885653433 0.03120245231323843) (-0.8361762905385293 0.2388313547137952 -0.4765058413324107) (-3.784455659121236 -3.616332888668901 -3.828698822640692) (2.530644754935742 -0.2062346638703759 -0.2442860631301221) (1.312052573716573 81.7034219486863 3.802553168314468) (0.9034585210340877 -40.54966650566654 0.8039632978129929) (-0.02021183637981472 -0.0117809744813047 0.01160846221543129) (-1.389448460497138 5.281105911615094 -0.9423054085032183) (0.191587125708502 4.205971605575855 5.212757281121572) (-1.008883741773209 36.24158100786381 -2.500004768504027) (0.007285088734564221 0.00698959564602018 0.003294537529625722) (5.370095630149803 101.7215682988309 -1.787356520172531) (1.741057573754565 5.716885285070614 -1.637673361862721) (-1.168438738500646 -1.438308132393887 -1.962872392604877) (0.7592715759403901 0.5980525800301998 -0.3996871717054695) (-0.2016633975263229 2.226173177842737 0.4398998196589194) (-0.004032429027889137 -0.00917561965074561 0.0003598918227650722) (-0.01067453878872117 -0.0009256176414475896 -0.001495817106160461) (0.02595345080270548 0.01326033372720375 -0.01163743687897837) (0.6061459486138577 10.32280134753433 0.1886053990376616) (-1.054207197413213 -31.38808836244984 4.635937757751491) (0.915001946496476 1.896406528179594 -3.231837124327064) (-1.419035951498067 -6.806631821642171 -2.551052894066114) (-1.684556849219403 2.990162148769947 -0.5063601759911391) (-0.924003299429085 5.836507296594873 23.87859565572326) (1.103818072748751 5.120593187137574 0.4196278727650467) (1.338710082603107 3.262267968253866 1.627175163858695) (-0.1483698508231333 9.464599544892163 0.1742199413062827) (0.0457886313976455 -0.0145787762134681 0.02273023290812021) (-0.03892066406558801 -0.01421852971373234 -0.02936604228058671) (2.051716805225968 -7.778842319660498 16.24157171565399) (3.351138888571006 0.8661741721636793 -0.08112109498265863) (-0.7737177459745743 -0.1252073358080225 0.3960519185662452) (-0.03440614193272348 0.1606795852684816 -0.04683925556859335) (0.09305245359521805 0.02777099096044398 0.1057071179712493) (-0.02611508935557764 0.001528021348278221 -0.06627916493568839) (3.438215117712063 -1.126621351231627 -5.247614800185223) (-2.351906732147284 -65.33568856953481 -13.10610021801023) (0.7470911582418704 6.922741224795825 0.8046378329317726) (1.041504284432471 44.32953252628342 2.255160046431391) (0.1679295544961479 0.04551741007052152 -0.0720120493375684) (0.3793434463360727 65.71900129195183 1.382555279160604) (-2.364098732133257 59.91761290898948 -2.226988176958236) (1.010338129431761 -37.38662427465357 -0.5618414684992346) (0.09329284502142865 -3.694521927464198 -1.372162416326826) (-0.4214586085162126 -4.033265339428096 5.370725251373864) (-0.9581735668604081 -6.103503464547313 2.690685983510154) (1.19954746875623 -5.165973349405082 -1.154717627253703) (2.432298918530815 5.228273065135807 1.288978425237711) (0.08069702375499536 -0.009355662716307073 -0.05764236826366435) (0.1372259558353126 0.05302714267404437 -5.993434951620145) (-0.534061336223752 -0.1249476317234116 1.157392527759235) (-0.01856106816299827 0.05992670881506896 -0.02595028901506929) (-0.695042386480532 -48.04925873944835 7.453353785994963) (-0.07575258778731185 -0.01232026733198137 0.0295346161032325) (0.0352841081205611 -36.10050389243582 0.9819012053499792) (0.270126180014764 5.118628819579955 -0.6152846651876894) (0.9847657765001809 9.650444063719632 2.139107712412149) (0.1025691846256494 -0.9642379182834303 0.5306697727308141) (4.150637176448334 36.21869578656703 0.07122572674226513) (-4.091020281227586 1.104029740600927 4.354239499841486) (1.289692743223413 -2.98848409006353 0.3502381102414898) (38.78819951502365 -13.64257348739636 -25.24811589467517) (3.188131598070231 3.927482547057862 -4.022289504100097) (0.01475554246629705 -0.001535413148853072 -0.01708710999948216) (-2.627857692844215 2.423370831693726 0.8566324603068556) (0.03869578125972567 -0.5130758289376193 -0.04550788840687883) (2.265297042785575 0.9929367211464507 4.642096351444744) (-4.067574565680283 -52.34300065969689 2.053945966172087) (0.6351767075843386 5.124799643757144 10.47356457356416) (-0.367296306055632 0.183083310077275 -0.6218543308984508) (0.4508640557961578 -48.73893183396946 6.582028916224436) (-2.807073037532891 10.04857489887575 -1.86224097519837) (2.405404681140663 9.398832239275478 -6.937987863040481) (-0.3837955718399094 -0.2514409109299227 0.4558667552722035) (-1.155804227494887 1.536303140275524 0.09894444696634738) (-0.03241404845448977 -0.006223460775750157 0.04952947956770247) (0.2670167342901638 -0.02469035384174062 0.1461786880946497) (0.1531086894109746 -0.03029699484694079 -0.1752308255367985) (-0.198643249115053 -1.184788012716904 -0.0005694892326347026) (-0.3182711349928488 -5.121495218839509 4.098731580533239) (0.3905293236026599 -0.8521363183372256 -0.5328998047113015) (0.1631973702474329 0.07115212404890953 -0.1164669484045047) (0.1789943934583561 -4.044284073215966 -0.1280672188716907) (1.725424512272077 -30.84238009079134 -2.072869480224496) (-0.8390381162538744 -1.509939635616973 0.3887362916123298) (0.0208564578819391 0.00947464432970915 -0.009672275783575154) (-0.3633755956023845 0.660137114521814 0.02351649457063185) (0.3101313770211349 -0.1991116661600869 -0.2447655629145931) (0.05069996745756111 -0.016216826975372 -0.04092295323038561) (-0.01176754156011858 -0.004497512610621277 0.002386701358958382) (3.19576256042743 -60.75693777632152 1.005733346176) (0.4657964232818469 0.160381204112513 -0.03083050496972906) (0.2936273507772793 -0.03579340861059294 0.3407500932090583) (-0.2353909139114829 -1.878556173091284 -0.6409343163491328) (0.03220404960136018 0.1027096767489132 -0.1082476338359898) (-0.1181752378454542 0.1467138453692048 -0.1930409393929665) (0.07280178409108753 0.03887235207637041 -0.1885577988797123) (0.3035568983199156 0.01061937931362054 0.3141728118064648) (0.813166791241728 -50.7966254436434 0.5134344403084437) (-35.12616963435708 -16.39028413942277 -4.526544667068396) (-2.308458764642128 8.167262602271744 1.354505043060006) (0.5808948988738356 4.465632677785665 3.929230798956097) (0.1902309957327625 12.16127882752538 -4.539296827484011) (-2.418589291248866 -10.25798652881641 2.875071073834344) (-1.387268420677733 -3.709599678388474 -0.4114366522128694) (-24.00002768883897 -46.03700795330835 14.49780164966216) (-1.703794610793003 -4.502065254819505 2.505894656571342) (-2.903483143796185 -1.647417885149089 0.105951874595741) (-1.100036384136484 -1.49227337867477 4.464585051749145) (0.01274376057749099 0.005962839348589501 0.3225072288298252) (-0.4305560237583123 0.1100510464099576 -0.01716734002735065) (-11.58000054680142 3.625472607597719 -1.278961635352254) (-5.113528587819648 10.87371647361744 -2.644000906590974) (-5.776510831218266 -6.059640415335817 -1.250639333611875) (0.2253084434922614 0.1631751610817331 -0.6398059263308105) (0.01115078220223993 0.2480811438177788 -7.57376807866773) (1.926786908346793 31.15290293725556 -5.546685130683749) (0.03668045294127806 0.1005194766853266 -0.03002844949771756) (1.898095087072651 -62.53140362654437 -12.90360264315134) (0.002180543732876454 -0.004771950149692984 0.002590577760353231) (0.08075583067583592 -0.03173000162182799 0.04496415273619736) (0.06163472490463678 0.02806661983416806 0.006918426867004723) (0.1705677084727006 3.405300939774099 0.1866516808667402) (-1.913668811104844 0.492852362266273 0.1992930809785074) (18.10872345881471 -10.98879739523776 -7.630160312565653) (1.621218060995813 -2.623717617204835 -2.275254885051997) (-0.003048062274872228 0.01705798491824416 -0.003846617565487705) (0.943100719787223 -7.566912709685264 -3.207152200323799) (-0.8669789548816255 7.617415319510714 -0.6737316760882727) (-0.2672449405709127 -0.2351406074916778 0.140888911610438) (0.435061628536599 0.2250751851861444 -0.3601362659760483) (3.209353550037351 12.59144774041382 2.118274497051678) (1.334783210409329 4.98088706126211 -3.05486974103045) (-0.09991398743835439 -0.008089338214792338 -0.03508280559982192) (0.05160331629854747 48.58261177096196 1.607855078513851) (-0.09992408826125551 0.2838547962104712 -0.1849114662478486) (-1.04392240533895 -4.472040700340106 -1.049721284502432) (-0.02993741613357843 0.101020449452444 0.1531256400695671) (0.1470899038012592 0.146772922284803 0.03951684327202961) (0.006923404692627921 -0.03350826177368516 -0.0007190421235112824) (-0.8968912509359646 -1.549165538635118 -3.191811042414483) (0.4129648418435216 -0.8104025022156237 1.155990907598064) (-1.072500208232868 -8.766440514744007 -0.1896138651690957) (0.02668092309280278 0.002243661548108145 0.02159277111827896) (-1.721192945407089 -5.687748192613711 -0.3626895519822515) (-2.798655438635445 -69.57358441249312 4.723170723173527) (1.572660367441278 -1.73643824631621 0.0819731261505357) (4.501750091700815 -29.58891303256324 -0.5628237289240801) (5.578155056461074 40.8680559365952 5.137436089009377) (-27.94236204454258 15.50954121825657 1.734513628250319) (6.60771346660532 4.434904895423817 2.918540384995702) (45.58784503888456 11.4764476182012 33.52484605552006) (6.378929469889263 10.13463209244477 -9.47672530297052) (1.062423508545571 -1.764075396112025 -0.1978262115569575) (0.3892458264247366 1.89727208684182 -1.28687147130282) (-13.21899454176247 -6.042192422202737 -15.38211154143616) (-2.231902017843101 -15.99833198483084 3.63048525527504) (-6.397854613626348 49.64646237788802 3.050061585418054) (-0.5374046285897978 -2.012154920006856 -0.2142335705821434) (-0.1520517803460952 -2.307119896096189 -0.5479174580022539) (2.194381082974645 8.184354605349624 4.317066380345903) (-1.202922542315624 3.679864570702805 -1.609828909128473) (-0.9752853663873321 -5.912979544386152 0.1088726255940241) (-8.513490230923518 -47.82565775771912 0.5116356178889819) (2.889812915964991 4.673279028878921 3.181554079129219) (-1.949697929137403 -32.40644850999116 1.540247545467114) (3.447661274085289 4.649964766930118 2.289844795702351) (-3.249548625997294 -34.89640358914928 12.31274631442096) (-24.38831211481188 8.681011257142483 -81.83292524889464) (4.138269466964585 43.5139531392758 -2.90807114765513) (-1.697706868779519 0.2361905029678096 -2.777133208805683) (1.001044767328025 30.45312433795494 6.239523899793226) (-0.07108355823145411 -48.99375617299113 -2.304301373350364) (1.907063140877116 -34.17558137425493 -8.814997869789844) (2.575260559480344 6.014299162316456 2.471437644913169) (-0.1773800693827518 -0.1240693797574025 0.3272955282462027) (1.212975808666184 -7.015372331421431 -1.70808626255493) (0.2609584595337981 0.1049880422985341 0.02649185360090603) (0.1362819288527335 -0.01347342832841765 0.07878194078968685) (0.1646431646313959 -33.94788930722435 1.075085975313596) (-2.153961150334905 -29.69911709471723 -5.473193898538051) (0.3409834980209736 -30.73246967108373 4.166586675957379) (0.8022757071819785 0.03637761316979368 0.149169353270617) (3.674111857911215 0.4575127908288419 1.058750414907798) (1.697140851003732 -40.41546746311259 -6.306712596670085) (0.764699130077265 -6.277935965446697 -2.616552823879006) (0.1271706353205956 0.1245689307498752 -0.2258510716164924) (0.02783704943171383 -0.0008700679829724452 -0.01054095735592626) (-3.071056713616632 -10.01121655838213 2.869150974208069) (1.075770527446239 -6.351955772535258 1.316777435422965) (-0.3629137046776352 -6.229021425260594 0.8618356614922249) (1.270686996406659 -3.662801387830504 0.3000951583104997) (1.69857255453539 -9.818605177297815 -2.269146269670273) (-0.3589752206003433 -9.050610015484153 -0.3064340044423505) (-0.6866222202807759 -11.10802854737709 -3.303581235587188) (-0.5003031565656153 -5.795826349685207 12.86314677851059) (-1.557573513563823 -5.654053038009484 0.7840073860013846) (-0.9320567136401116 -3.424772966490983 1.231559537819076) (0.4030789537649174 9.185169029358075 -2.148669007840232) (0.6386621215979379 -3.416156389465538 0.801389219603555) (0.8397071207744033 1.621159564555064 -0.7792749044947335) (-1.318806169660352 3.542495271299451 -1.650867897130424) (0.09384663977981703 1.66524176387914 0.3540888351384269) (0.888342681699904 1.588409113458556 0.6212193702364501) (-0.782300600596743 1.175156826498257 -1.067891177694416) (-0.1094181658031748 -0.4736040050594765 -0.1450079699738655) (1.294169671291852 3.980548914600731 3.327375131369368) (1.810605002271714 7.376571586760598 -3.058452988808411) (1.68821325078016 7.241149572631429 2.133282032481962) (1.377887116234354 2.013221735876428 -2.214142132118768) (1.059757205389032 -1.25572768217484 -1.402050878296717) (0.006363838477058348 -0.1829703404537268 0.1046915098179709) (0.8097793323322197 1.842855563536223 -1.06278424992735) (-0.01667706102979282 -0.02011646848008146 0.01386239187273035) (0.0602760946515971 0.03043304371043069 -0.02057138223769504) (-0.05529979126280846 -0.5744295883615679 -0.0329561168350461) (0.1362729075095185 -0.0800014921699277 0.1970354005122457) (0.02026146181512119 0.03461244069333199 0.02748551773413418) (0.2127915190966498 0.1239520430779738 -0.1111803262904842) (-1.562877472391732 3.579939596111471 4.704298394656045) (-0.3393437560368828 -0.4271868204965592 -0.07257956806807507) (-7.879910107573012 -3.237527945650511 4.824324289420242) (10.3101885556604 4.06104358322468 3.846375154459527) (-6.92494264565513 -65.66204598345493 4.47766793737143) (0.4670119305456035 11.93032766564751 1.451201495944815) (-2.315243174228128 1.773704888609632 2.118500467406688) (-0.008648721329826178 0.07237615624800992 0.04937288505954167) (0.2124181823545343 0.1881818392789255 0.03630207188063152) (-0.08359690522807409 -0.01706468138039948 -0.1902552096028572) (0.4762157000421113 0.2192635383796342 -1.327162076133719) (-0.3749018866374939 -0.9684979606810151 0.0994137282542808) (-0.4483406528503763 3.82260025431443 -0.6917061296903358) (-0.3395589664058054 1.602334418148193 2.682682194252977) (-0.8331111262767408 3.451771159648911 0.1222488771741133) (-0.2211422181891742 2.252103279897468 2.868306316405342) (2.760967118357125 6.049923725750173 0.4015484433605863) (-0.2563766679618169 -0.2092876673229427 0.6739383081876102) (5.063401510378258 13.68748758675449 0.376321929254085) (0.02116993728834127 -0.01829373115453979 0.3512815700491067) (2.61030124401451 2.395195322191269 3.563211651994728) (2.907022965962469 1.672746741495419 5.956183410506565) (6.107491790516564 5.809921920936241 1.695844351144464) (-0.1256366407306622 0.06602161098043899 0.09105568511912424) (-1.905785221686335 6.179147655002184 1.181180238865849) (-4.05728045400361 2.626563419035222 2.715395773622227) (-7.146785605412076 -11.94777489500052 0.7649070786390454) (-3.605580946498867 -8.382323457278034 -5.100563973406612) (-8.478101457767945 -11.27421636267453 4.450368751751745) (-1.684340195880924 -4.079279082999513 4.071940512868621) (1.432839177759553 -0.7415707053938044 -0.08179379297058698) (0.2069010679904224 -3.994098315906671 -1.731842526504455) (0.05702164239642205 0.05855278656868197 -0.01081158918829058) (-0.0707099822410705 0.07118567788088673 0.02498980171272917) (0.119903297980209 0.9012707964719342 -0.002058344265379652) (-2.124308597186192 -5.651497343374547 -0.4875534379444049) (-0.1037045126102268 -0.8989180404664947 -3.667823487986384) (1.517705181979498 -1.711122718225805 1.083362073594747) (2.013933637178 5.475999732913568 1.162989210035793) (3.929001204487789 5.243167019741032 3.540247766638869) (-1.296860208643443 -0.3702526033598104 1.831509023231939) (3.584174395796994 -0.3362610287788046 -5.595894817080464) (-0.3685824835711116 5.118262500987938 1.625506322205362) (-3.541983835793697 -4.682814160961711 -2.892499707065059) (-0.1197482586369707 -0.1384985087155438 -0.03660037629133518) (-0.3605888812636487 -0.02514273323358769 0.09403404949309906) (-0.1051426266722522 -0.06716421426807666 -0.1278287810893172) (-0.0394281250879725 0.2552489014295442 -0.2361122862482757) (0.09590228600627637 -0.02038586112391736 -0.09210826107557511) (1.287399537411582 -1.455548296373198 1.051900380134876) (0.8325482128556609 0.4584206273039011 -1.356695657956968) (0.4767114455828377 -9.627807356209413 -2.552781945119943) (3.957825788660239 -4.041225580833181 -2.935364083584018) (0.07590568602934461 5.146805189394317 -0.8492840549688215) (0.3695370081585925 7.810446580518204 1.65505611202962) (-0.7669824631586152 0.4368079357749475 -0.3080024111943228) (-0.1480929594640695 1.775388727240027 -1.254320350050418) (-0.7677996558204898 3.110452702148486 0.02308695205151601) (0.3033611285745335 0.1241892165281518 -0.1064658965285187) (0.05474663981898656 -0.1236256741721539 -0.1752530417357274) (-0.08789571120739924 -0.06541027696095755 -5.636111490052947) (-0.1146947748539068 0.186874337184973 0.01458499386707998) (-0.1121230988138403 -0.129052275060655 -5.429493078579701) (0.002296178383858666 0.01042824725935645 -0.02000264918071645) (0.09860214872041176 0.006979641936841474 -0.1401696598493721) (0.01154053943642913 -0.07112780490084634 -0.01205153699182915) (-0.142459917174655 -0.2206773906499342 -0.1356945989887839) (0.02945026396466706 -0.1653758701146383 -0.1356280001548757) (0.1388581469648632 0.3243559039837437 -4.568956270974255) (-0.005565899294772088 0.03521213228140327 -0.0829346517790089) (0.002176155969263717 0.04444437665648231 0.03584607579147639) (-0.02973728715698236 0.03504489493224646 0.01659472715870412) (-0.1463501771826853 -0.001651777466257363 0.02709712405060765) (0.009825400682394953 -0.006863740989702151 -0.03288215525439276) (-0.0194712211154702 0.005277570222016002 0.01751118530446324) (-0.1526989931864009 -0.02558266094401559 -0.03374054017109222) (0.1731549557460541 0.01366626221977069 -0.006552151797641417) (0.03192850787002516 -0.193558511397932 -0.007332095210592249) (-1.410608650409053 1.862135180184692 -6.365429776124428) (0.6659401513414827 -3.816596928881274 -0.9169960187199755) (0.3578570971394178 -0.2192477672192822 -3.897828025637002) (-0.4552343031983308 -1.821848003400274 1.337245153491584) (0.09243803320101004 -0.01112416398381878 0.02735282425743114) (-1.093588817299718 -5.235470170805716 -1.744246728488063) (0.1750712211598155 0.05618937692775643 -0.01212237044010579) (-0.4635242583336297 -0.6784719625314934 0.2913192295045971) (0.3298747919593182 6.232941792031164 1.464356428947468) (0.1958188752512338 0.1693151832986974 0.01707175950357601) (0.06354090286663447 -0.1147621747327685 0.06562127142031481) (-0.3966856182056903 0.2017977160316772 -0.4560325031638158) (-0.1759683909657178 -0.03564475156440308 -0.08976734394239312) (1.099634323891832 1.080971757971579 2.266581421315542) (-0.1406436414868369 0.2518036941238812 0.1170218122641021) (0.008766796176062581 0.005606219933529537 0.03644060044255782) (-0.02902957414017247 0.02679376119244371 0.01182705123351474) (0.2383274831517865 0.8905093815012024 -0.3763552717694494) (-0.08248141450774688 -0.003017653490426543 -0.004835270580610174) (0.005934153198253337 0.01651818068566569 -3.508296439897439e-05) (-0.1468626136837762 4.860928718194919 1.644964195478218) (0.362334911326387 0.7912560937843518 -0.3290273979131103) (-0.2777025278008471 -5.158563035065932 0.6104203698365671) (0.5638982608834682 4.42906898260553 -0.02174103446620479) (-0.1552755293279731 0.0835722090682491 0.0238224798325796) (-0.02058498248003867 0.06004429154997235 -0.008949303723010477) (-0.1659611315846217 2.32260163022532 0.3994644548037234) (0.264074747162946 0.1299799421314279 -0.5599748549980724) (0.5378796803102427 1.15176265630243 -0.5406927346832239) (2.567963629510023 -0.6813734190145395 0.1904092165174412) (0.5851296451049329 1.446126167575958 -1.46114284728619) (-5.156857107213628 1.575750938725679 -0.6435897422901243) (-0.1683004027714337 0.7710745459875862 -0.2082618098312505) (-0.9868445965008728 -0.06687588449876677 0.3853410275152923) (-3.579733681998662 -38.97790012520993 -0.2577742379468364) (-2.795409402334228 -1.524883169105679 7.273322398888983) (-0.009784129792960717 0.0008381350603188968 -0.002432324207365855) (1.959802696171415 -1.931514947824868 7.904549512494444) (0.05990517592141611 -0.02367806971141913 0.0005594174653454336) (0.03728581105429898 0.001553594994862855 -0.002204843122759027) (1.521538610013908 -7.37154506204992 3.819819958492699) (-0.5676807545193223 -0.6639672960235222 -0.65863989829743) (-0.3206378303688195 -0.04407700006133221 -0.350976594969419) (-0.1327343394252986 0.2800344590241885 -0.5983683135968354) (1.051126970406396 -0.5532331228851965 0.4245479263039851) (0.1883593748861281 0.03473348375835406 -0.06923816507415612) (-0.06370073354831576 -0.07261606044812652 -0.02974915122543475) (-0.04875977495526413 -0.1062910349773721 0.05745765202698595) (-0.1148752433979475 -0.0333554357657899 -0.1053820416527949) (-0.6783528303960853 -0.9360264396949787 0.9485601397705737) (-0.02311958501618408 0.01694799842944318 -0.006406420538900441) (0.008929202295426569 -0.00154997741129536 -0.01849044109838513) (-0.042297864408497 0.05755695432192803 -0.009995515035396892) (-0.06750782540115534 0.004212012272377694 -0.009467740493176113) (-0.02079460642044943 0.03115723224768442 0.0077239486561982) (0.07489630316225221 -6.043951912519927 2.227674033239981) (-2.407061549406163 -3.857100143641971 1.46443206030295) (1.750886379023364 -2.3514626285132 0.7279936137647121) (0.1719959495792502 -2.9303793042042 -0.4936220475363352) (-0.2356287734617293 -0.5113808480537819 0.4738031668490741) (-0.375499788752339 -1.019612064613808 0.1101714932608407) (0.01207433278587748 -2.418435549624169 1.236517311283001) (-0.2599471413789533 -1.462584549193667 1.408051751740484) (0.02310589907226515 0.05878066108813894 0.04686777926212814) (0.01454906767776866 0.05552836065995032 0.07725582001653349) (-0.1822926708880772 -0.006779887897513871 0.09021315901056218) (-0.05431410841625491 0.1935119076074273 0.09817132603080367) (0.02678676650290123 0.07847036314574685 0.0254509832511262) (0.05544105089972262 -0.0541823783886783 0.03246661277883883) (0.06136120712840076 0.01007419829442167 -0.01840666465261009) (-0.0453090851242466 -0.04618106932373098 -0.04216933761733233) (-0.02345123224659126 0.01129972294929946 -0.08546254479695377) (0.008669720319397136 -0.01973142565131161 0.0310789536750165) (0.05752278136389694 0.001225699371449646 -0.07535876535794782) (0.1688415482055661 -0.07043306311930206 0.05543850895243087) (0.1628003182676971 -0.1799427301311585 -0.1725743361262103) (0.07564825303611322 0.08046880778685048 0.01980746609345561) (-0.3692408709886762 -0.8851749739560284 -0.1833784040689695) (-0.2772965598555502 -0.2671713406080854 -0.1919056252259922) (-2.840197003730303 -8.915806743465746 2.059695559578002) (-2.368323440355019 -4.204882186455333 0.9964822571096903) (0.7502630346756233 -5.140791800298357 0.7543960732737598) (-1.622608904356771 -2.24425583342254 0.6316668130240208) (1.349842832344696 -0.1947543658859509 3.326278793448144) (-0.2144642423297778 -7.174830444066244 0.541744293447554) (-2.276025913291959 -4.446202103177676 1.683537688483413) (-1.004223111599374 -0.8895851543920774 -0.1617875772008661) (0.1134933841618745 4.789808182583503 -1.436434410027556) (-0.4311521015887139 -3.46194440814884 -0.3371976555683788) (-0.6984753483796791 -3.420043865481048 0.6519756727219999) (-1.159109743368794 -1.962439080214173 2.034404185919147) (1.148567392540537 -0.8433584176513526 0.2737446306967685) (-0.1501101049293576 -0.04405177277911955 0.1114709810118925) (-0.3545091090215634 -1.543085498722209 -0.1945843620084365) (0.09183536264432195 1.502029540464252 -0.5507161643528942) (0.3237449079900659 0.3361262582553198 -0.2617513151756615) (-1.548912196847197 -2.233920802516642 -11.132371725203) (-0.1172721580367324 -0.06111047217409857 0.02536142223869733) (-0.01560858431531558 0.09128576725366153 -0.08431108204962706) (0.06903470714353893 0.3988350811718994 -0.5719444039857695) (-0.2614482798092359 5.242899084246392 -3.012533163993893) (0.1239428013868488 -0.08316279531260878 -0.1409932171420618) (-22.20777520100062 -6.733750104535173 3.192405850794036) (-0.8543601884449515 -7.778307460827583 2.309243499232008) (0.0135034951698291 0.1507391179052172 0.06803983904019091) (13.77123012983652 -17.13620508496658 -20.86338976231824) (-0.190239244431176 0.1227684336564634 0.1942010923982931) (2.795146116220627 -2.397422061768074 -0.3828884368147593) (0.4944282231304511 1.025804950235121 0.5457021667725794) (0.3966781042317469 -0.08626580261479935 0.5626777771692002) (-0.7253868170477117 -0.7413436714161015 -1.298698127984124) (0.4725414219299477 -0.7683850927124061 0.05417187577035152) (3.559076945306656 0.9377941927853629 -3.607623172471676) (0.7017447419865516 0.6345688864912495 -0.7361865267130009) (-2.522365012534021 1.777959002002682 1.213924592683916) (-0.001993648109870669 0.05246034996320694 -0.03605316452012851) (-0.007275329491830431 0.02191776535405311 -0.0157969696860838) (-0.6321624995032165 0.9676230240357387 -0.4677389778649834) (-0.800933217384628 0.8059355471925588 0.4543114753684644) (-0.9475445663767211 -2.0252881772062 -1.628625583270827) (-1.209527321763771 0.1405176673915494 -0.3330675590576828) (0.3088933945559476 -0.5862273130793282 0.1158094812580412) (0.2624035822213837 0.4417280904414838 -0.9903258274989817) (0.9436150834346326 0.08713521847765168 1.224108559218615) (1.968134130989218 -0.3344552762542202 -2.176562728343824) (-0.5182950075184414 0.532713538002991 0.5442469418134488) (-3.408196078114369 -0.7933222170071406 -0.3667196623005719) (-0.6938603197450097 0.5851884248370018 -1.288705225929765) (1.544236396362056 1.409424541453197 0.3260912295530846) (-0.4986785479451293 2.975819450044926 1.376935486572833) (1.764897598175399 7.499285217505152 2.229314188475684) (-0.104522706998078 -0.07728182415283598 -0.003150588679674875) (1.881598541513284 -0.2252823748422059 -1.132281564812308) (-0.02055062282911428 -0.0683736111015915 -4.549543678644598) (0.006811533177657942 -0.03031048937505738 -6.558690081947144) (-0.02944718322758058 -0.2480249104029414 -5.310055313552912) (0.1856463577935362 -0.3215205931595218 -0.7471386081321563) (-2.319750896598603 3.056377019032744 -1.878887375712259) (-1.532326102806168 -2.611493156796016 -1.423197030965943) (0.8585113205247432 -1.474072628518882 1.551883705217188) (-0.3712746409589199 0.5827562341355317 -1.064535337905432) (-0.01053074542356908 0.01883433641825267 0.0004275302236185722) (-0.004655936625695981 -0.01254541407201964 0.01956199448266336) (0.01777554999661227 -0.01170145475196777 -0.004599337538685858) (-0.1660505679098723 -0.01230477545010985 -0.1271779117542152) (-9.553027865483131 2.966817918623134 -0.002593752789989745) (0.08310428182168011 -0.01802598483110212 -4.914779569052985) (0.05609458721855343 -0.1127791110975066 -0.1060775900408167) (0.6085643171783924 0.08216548217362174 0.00826499444035439) (3.831972820148145 1.524404289667609 -3.4895613302279) (0.5039332821518677 0.8201670179740279 0.4432351283802334) (-0.2291105074216541 -0.3842042901895226 0.1280693970716341) (-4.508662887501206 6.931198280988685 -0.54710142726238) (0.1169792305230058 0.1169644816310807 -0.1324234868819271) (-2.914672775996823 -1.247728059452761 -0.2074323592957762) (0.1994256382765958 0.6180238512374745 -0.3473355256157734) (-2.06051270539882 2.05974715733288 -1.741314951102063) (0.5511349868210828 0.3472441854947232 0.3213495744086162) (-3.279577619883992 0.7874258467254853 -0.7042087755369917) (0.1780236842333509 0.01388999576406183 0.02802468188920262) (-4.667848541991473 0.3140913730494783 -2.700608660527895) (-0.05145958446666361 -0.04942512219598223 -0.2476559799321978) (0.05664135817695715 2.327135303570961 -0.8921064010786722) (2.793615032145952 0.8950867277416648 -2.484947416132398) (0.5025475859684538 4.649063542107108 -0.441580224900033) (0.5111421562164513 -0.7681172169220971 0.2213938770661289) (1.130244416628222 4.982262304398332 -1.423453303257355) (0.1437908170975259 1.092645598795421 -0.09741035388935249) (0.01754416984737519 0.01963477570080552 -5.435465286331906) (0.2468408186313104 1.369247704009041 1.576280315691402) (0.0002632597480039418 -0.004150753020524785 0.004652074450958252) (-0.05728720917378893 0.01941084716221325 -0.1983649407497473) (-0.791597740287549 1.566873628945475 -0.3291002113506527) (0.6466616509760931 0.1031397705765674 -0.4038878893283223) (0.1493860782775641 -0.08996527958955194 0.01675457555228803) (1.779891381479077 0.9634250716086132 -0.5458406689128624) (0.07554632825463178 -0.05044425690991483 -0.006161198296120773) (-5.453765332534362 -3.638293248594044 -2.212439376665828) (0.3908869073334467 0.6125702258554437 -1.240379998926065) (0.6288242723722655 -2.745151437880544 -1.679896041355401) (-3.732316702171244 -4.635277961251623 5.071312963849245) (-2.02787204525398 -3.709495879205381 -0.3690596755580422) (-0.4113511112313523 -3.200968332050624 -0.08214399275514706) (-7.610305922444365 -13.97821120449671 3.060804830944344) (-0.2398422031922776 -0.2167143446874264 0.349776509224228) (-4.485488762607196 -14.30518530107685 7.966212128446361) (-5.149243728669116 -5.55294398396778 1.53537471360794) (-4.560110006300765 6.996391023504776 -6.022104185801717) (-0.1650660707925245 7.106998108268037 2.674438595669931) (-0.5809831018702323 1.605434483449106 1.660260436632533) (0.1494977105236512 -0.06561244008851444 -0.04332109890668062) (0.08019039960120446 -0.1000225307067629 -0.1566293539352061) (-6.494343065407848 20.20376638074878 -12.29395990008642) (-0.09553919717182752 0.1355929759367521 -0.1453870197452082) (-1.776640937710484 -5.874020564985264 -1.180755285581271) (-0.08050453077465326 5.255229366674368 -3.432669170534757) (3.165788266282054 2.984779254113753 0.6771415470717641) (0.8524492215696842 0.4990125900146899 -2.020553311834264) (-1.172211973449231 3.936317629629517 -0.7810896720979564) (-0.1217207848015309 10.85007194341083 0.8319863569541339) (0.07755753044153361 0.03507568023122603 -0.05513807545749283) (-0.5394230257027615 -0.4753189431865273 -0.3487127607279745) (-0.01466545853668277 -3.724629660002499 -0.2244304087888792) (-0.2664027924364064 -0.3999692573481374 -0.8864898265823478) (-0.1062620274849146 0.7465163623830932 0.6183623049486239) (-0.2856782168381028 -1.876139218631699 -0.08145444722755317) (-0.4298189485195642 -3.655371255387442 -1.070023537314136) (-0.1117411121452887 0.2826866996953964 -0.9425193639934287) (0.4427147792482375 -0.1462588470875127 0.03057299359953391) (-0.1967991962558199 -0.006463355447763809 0.002509634748654677) (-0.8240036331352742 1.388282240365709 1.050188811409896) (1.350499380273279 6.30097806200178 -2.318784596618792) (-0.01198345131576967 4.117917496698744 -0.17901178536295) (-0.3816186684321871 -2.358128250072419 -0.3467251451069491) (-0.007181845737224801 0.1443742277945355 -0.09295381002813549) (0.324454500510601 -1.202491702517716 0.2946943443673498) (0.4780555270328642 -0.5769243247637561 0.2083733766429247) (-6.580280772795533 -18.69431217707048 -8.392443570492727) (0.04379024044510796 0.05838904773992055 0.0382885853239051) (-0.8748153456985935 1.509840030386522 -0.07222341777289826) (1.101115156089188 4.457197954267859 7.630253985160053) (0.5676976336655744 0.747012986284679 -3.485956696480969) (0.3399076825605263 0.4557553694007362 -0.2894050671291996) (0.3485677274820863 -0.04043932298625531 -2.704319677539047) (1.663351489944779 7.222950591696638 1.837457832052928) (-0.2483581093595204 -0.5493951986337733 -2.693750247005703) (-1.000540950622167 -0.03354573797665991 1.010112945193287) (-1.012630132623389 0.1327895981266101 -24.34233332639269) (0.8908567147303437 0.3964877859545574 -0.9207569670359317) (-0.02647607071225566 -0.05430407357694106 -0.08404110709036069) (0.7766652570833238 6.57815750341623 0.9000269409167602) (5.526724249852778 11.54088806372867 1.906163108408823) (0.5205941400512581 4.693246328232542 -11.55869961467958) (1.503203055846901 0.2348685716825569 -5.303095491474495) (-1.179183099757702 -1.709075499803307 -21.31363053277627) (-0.06684829231688111 0.0233806816491275 0.004375178237327776) (0.4159252187931468 -0.2730234319122622 0.08349042550691663) (0.1523480518829829 -0.05386928998696233 -0.2406864763629526) (0.03345408968134265 -0.05118932820573117 -0.01963917531347999) (0.5514589804187559 10.36834001915122 -6.229009615030894) (0.02303220341453656 0.03108032982624136 -0.03313021319393256) (0.1696456491150404 0.008625626367913031 -0.1181091957899674) (-0.03912909955778926 -0.006286636224940559 0.03093676368625212) (-0.08879328582020296 -0.03343272274184567 -0.07506360683507356) (4.1327705531889 -2.802386186971138 -2.394405826324205) (0.05521881610351885 -0.02112915560714433 -0.001347001125410981) (-0.2240557239027596 -0.06838407581276318 0.09664077445346715) (0.01370424961489053 -0.1765117355028422 -0.1427510194281875) (-0.001818708831473839 -0.00557436056730112 -0.006324301403033138) (0.008500391222449243 -0.02890064195717433 0.02593386070890594) (0.02852791360395214 0.006692745284411512 -0.006149618934214104) (0.009082107208323253 -0.006975382888728978 -0.003877680086412521) (0.05938772642271543 0.002228681236298647 -0.1253564789415046) (0.0067365124670756 -0.00840442585651925 -0.005125084944711383) (0.1058985671707221 0.07293745851471395 0.08726654943620685) (-0.1963150791925911 0.4455097643324124 0.02507462271039414) (1.911323640074534 0.5655707098262915 -1.041014213936768) (-0.005601278592874716 -0.03093457538678593 0.03082538202415143) (0.04034395144637479 -0.006436932847073157 -0.002516108420967943) (0.3924466590829789 -0.1876628572538801 -0.6056957630056675) (0.07865192916206055 0.1649888917100449 -0.4981768164295718) (-1.319933795034799 6.574144866873685 -2.686253027916195) (0.2162272425875793 0.103129054788785 0.008562921669691737) (-0.05018037915180528 -0.01899274031902055 -0.01223067329159551) (0.1044350395355051 0.04927530127188449 0.0287117727219468) (0.002099948806430428 0.01087256841390124 -0.001975049894816018) (0.3422854117803056 0.1060573594518865 0.1527156343748843) (0.1038241420646265 0.07322465968963851 -0.2877995128623296) (-0.00346356093994301 -0.001378032510134663 0.02820105606748116) (-0.02607395182184615 -0.03837224435466395 -0.01291738091777281) (0.1281553110976776 -0.05280437221160886 0.02248695011953358) (-0.02268300239223751 0.01138371095412971 -0.009065524124741575) (-0.6945959363174883 -0.5889982544709321 -0.1029406097229327) (-0.2737973959613995 0.2661919267375526 -0.05153342426601128) (-2.472287323025873 0.8228639317842181 -0.4616472741722751) (-0.9133065548591754 -1.504065654489021 -3.93993360485669) (0.4789144465081858 -0.4030827596815727 0.01724209679043605) (-0.8618939250864943 -2.592371380261805 -0.4319391992939928) (-1.035044217974384 -1.805438917125723 -3.996110549364291) (-29.36582477815906 17.88876809612815 0.9996438238190701) (-3.625558046321282 -21.61186068701009 -3.145090441756046) (17.64151124186236 1.94333245298099 1.027559389543035) (-0.6536635274337321 -2.011187038330296 1.783644722778922) (0.01173203282982597 0.03076018613338776 -0.004561171951864017) (-4.219896543992492 -8.098820865517109 -4.179265769399537) (-1.937015052995245 7.490485817678879 0.5798937293304847) (-0.007974862368012795 0.01040320660655122 -0.01925657964013134) (0.01365667520496425 0.01217518053347345 -0.0483761827461321) (2.597211326523861 -0.8207178308300912 1.73381274447106) (0.03974635809076268 -0.001443261270149345 -0.009720352916893141) (0.143689347106887 -0.1734153625064349 0.20840565557416) (0.3194036602221932 -1.331186994692106 -2.403594639537826) (-0.3317062740884597 0.06539394054331367 0.4553198547328728) (0.6938879913974786 -0.9100059258177382 0.001127592348696416) (0.4958204636713334 0.09313619979481663 -0.08269960830288831) (-0.06060941987509777 -0.0009741958950578288 -0.005584865118126611) (1.409800354646131 -2.073024988541705 -0.2422958315339661) (0.324020747998073 -4.094238355410965 -2.306830672570561) (1.010587333706211 -3.019469238810791 -0.2599498705047796) (0.3241095356014605 -0.3234017707115922 0.1083681577434501) (-0.06706120720594283 0.0738026818321019 0.106959814077925) (-0.2048999622585481 -0.8572684179849572 0.8987135952571035) (-0.7152563700670769 -1.202915611760407 0.6394243948246261) (-0.3362176172195148 0.00928328009961632 -1.79101028235664) (0.1083031836775511 -4.605091002234992 -0.3031033220420856) (-0.4219489335838819 9.621152197201081 0.758203988823781) (0.03197999208616782 0.000798600945913666 -0.02183188454557866) (0.8975146937791387 37.39363256624775 -7.58910962153012) (1.567330711060215 9.091922842934713 -2.257172717441426) (-1.37698608469133 8.138247585802642 -0.8758863810502948) (-1.477848581146322 38.80841191390378 -3.813259679806955) (-2.114416486188873 0.03737937193555663 0.1026520532538391) (-0.9985900933459771 58.0810286343296 4.603671121954354) (4.185539657624053 3.677631193420844 0.8894845829631031) (-1.345104540742958 -0.5003661096677327 0.5582429186876882) (0.08327442311700123 -2.419034375358713 -0.5625148708254495) (4.098960209768726 -18.63301955483168 1.48463365641641) (0.06371733851298156 0.1271493577131652 -0.2610327130943874) (-0.7010550319856619 -0.7211905003182187 0.008424595489830877) (-1.265594278786359 -2.631445819062595 0.5384323029181819) (1.01375855974925 -0.3526307647469961 0.1073182162484674) (0.09629910870444541 0.2510055636981009 0.09973984014072457) (1.014709435937897 -0.02723622564199488 0.5072686992538552) (-0.489983310821254 -1.04470588057629 -0.3353244023031757) (0.5644209959570103 -1.186655406622511 0.2327435157462837) (-2.107870932132929 7.217029010512134 0.982960286334326) (0.4478707980736238 -0.004803919362455888 -0.08350656893402941) (0.07666569886511199 -0.01733594441865302 -0.1395654605938218) (-0.09464249896434644 -0.05700119308640028 -0.01760234431912745) (-0.2468855615991785 -0.05017526433414865 0.08745274526803098) (-0.4827137956584005 -0.1586103913350654 0.06630995606773046) (-0.04141671288751946 -0.06747250341795948 -0.1202537066375161) (0.1776454862169815 0.2143847581768394 0.06329356237770847) (0.003207010321881261 0.04996151598274885 0.04389317088788358) (0.1191056327567804 0.03498991195568399 -0.02264687235020041) (1.892768216072955 -0.5099949347364107 -0.1139292512147641) (-0.6787579423675519 0.8471628353830533 -0.2997831925145904) (0.4684382155313783 -0.597737949951367 -0.8671432002483732) (0.5952193543334063 -0.03109160429319111 -0.5034209352239712) (2.826685657601679 6.719213186089116 -6.578873673016593) (-2.424573923409968 -8.140705354324298 0.7123048115799575) (-0.376043012977448 9.083425599869496 -6.447833540441197) (0.2517830662643126 8.736513911409203 3.115629050607554) (-8.588422872206849 -6.022393952082452 -4.183824470675472) (1.506835864585804 -78.08674261343015 -7.915202102889651) (-1.021243161106838 0.5881811675779622 -0.1752130855453005) (1.838912141349053 2.595412627796003 -0.629443952816632) (-0.2659677951659709 -3.956834739198237 -0.6388080825574582) (0.4880297917358831 1.411124617665387 -0.2193040626160931) (-2.803212947194557 -2.798662278959609 -1.054846403710324) (0.3498417939872172 0.4362348227454829 -0.07286693086714485) (-0.5882692433744996 -0.5237575173416402 0.03527700244789556) (-0.4821755513574294 0.2687634218062436 -0.1959292446101247) (-0.5168151391839638 -0.03198751694747715 -0.4927991827043803) (-0.8834127115968393 -0.3971381649125505 0.04496626956456512) (-1.651913442636165 2.539309758779607 1.824283812896638) (0.08864338372951773 0.01144794895349796 -0.0323616323914353) (0.1727462846594741 0.3360363551559868 0.03450114863886371) (0.6135930538232549 0.1018076365332063 -0.2214830795033148) (1.766800319686787 6.747911376009534 -0.7262118190387867) (0.5764381995978756 0.2585262627176633 -0.1922395287286026) (2.708184615978734 9.194112961959716 -3.035679895858517) (-0.06797048893653966 0.03470321700217106 0.02427932103584364) (0.6972807244377426 -1.254904983706382 0.2675896724016241) (5.718830197193142 -1.502927386548879 14.85879828284432) (-1.003236485825531 0.2548623939333345 -1.021628844389316) (-0.4273937502113971 -6.835813330485927 4.313953674848664) (0.03714995841213389 -0.1175258073932979 -0.04666490652745544) (0.891865800183675 -6.342590934829019 3.249063859051418) (0.01440190897648841 -0.8241567942037586 -0.6421313321972748) (-0.07342126624346917 -0.1467906445545041 -0.02656046080723073) (1.394941068251701 -4.366977076227771 -2.53368463886117) (0.04871347435115814 -0.203183039022915 -0.286238521563693) (-3.575236019528933 1.349714053108174 -1.778989579626992) (-2.913881347094178 -6.431384453326653 3.936681528826603) (-20.71548660572424 8.784658054754072 10.41543660756047) (-0.5008656881453789 3.388190373695697 -0.2890681834982751) (-18.10683726463592 5.492988177003062 12.02431727226137) (1.401326617489883 4.302812106857838 -0.7723679129675386) (2.717624424881241 9.569765124793776 5.937617979596032) (-0.4818653949040855 -0.5652384664479477 0.04077442829985412) (4.29267075669761 14.6011392174138 6.688153226085747) (0.5599674361367397 1.193457396223592 -1.166166950203834) (-0.006032005228154615 -0.03396055209156619 -0.1788262467854167) (-0.08969905088835733 -0.04101582609779258 -0.1216092595627591) (0.01742145075292688 -0.1270856249160379 0.02701011651114504) (-0.05784663867866513 10.57590719918659 -0.7007387735409658) (0.5207122857049837 -0.1606430307313938 -0.3191993055570839) (-0.9122062769618714 -0.5771151676187838 -1.075562599798332) (1.846231161070814 1.377228643176736 0.7952013405417251) (2.501649944224178 -0.5023772725154152 0.5414100505395247) (-4.04738185374331 0.09240075119675639 1.376489612884175) (0.131284158022208 -0.4103667901087238 0.1230362353481172) (1.533268463384383 -61.0592578017363 -3.174090191362389) (1.275303845518607 2.352535057179065 3.523368608038731) (-2.412216469297383 6.976915273267319 -3.904158916251379) (-2.699631690574272 4.36617243447033 -7.39499992207856) (-2.062915886516235 9.526682543061662 -6.126420228060113) (2.412115023579282 10.01047270463227 2.731247782733581) (14.07333704696349 2.95439625561725 1.400199143682508) (-0.05024758954749134 -0.6061518014163915 -0.270564726891543) (-1.819118104370545 0.1309978361282622 -0.5499021977023415) (0.4910380441176669 0.01087159157645328 0.1613001346991433) (-0.007762755410979406 -0.045050100992865 -0.07611086073132174) (0.01377470096509564 0.05123357338943485 -0.0401299975927556) (-0.2234801012892314 0.08807903042767763 -0.100186374823602) (0.1637093097173903 0.0512963327992627 0.03862132638986703) (-0.1153374226820628 -0.01068763401782061 0.03632435230158876) (0.1358095548804507 -7.886200034425833e-05 -4.905971079443571) (-2.401546757822648 9.576173048499347 -8.19768860246575) (-0.09561487971863024 0.0263149134018919 0.04395202381299251) (1.169082251701634 5.935763056924348 -2.269516838314917) (-0.2932195735386141 0.1431453649169956 -0.1053974210011744) (-0.003670475587192107 0.07266378001776271 0.0918412447495385) (1.131528820204644 0.918568900909576 1.269492036421996) (0.03129567408785372 0.07580076606528011 0.1519253992330902) (-0.7027115472011034 0.2277470516274275 0.3406093969806355) (-0.1116375342894328 0.1373507211849465 -0.0259558294040874) (0.2340270299995201 0.999700234752614 1.277425954504993) (-0.276795353162525 -0.00550495273489425 0.4204007655200694) (0.1152440402461545 -0.05251376473209583 0.09041727866164498) (-0.142460052562369 0.1959460694552543 0.7347943001016506) (-0.01538017260567428 -0.1486876268522208 0.04843670166392583) (-0.04996936374010551 -0.161351445055396 -0.08290306288382263) (-0.0976412029681505 0.08573897328627207 0.0271285369563147) (16.08743343562056 -7.33091544070958 1.336969965240703) (-0.02381580794645774 0.2304959234678767 0.131988805460037) (2.031063640409621 7.784319047987458 -1.883646740093821) (-0.1078239187515727 2.127187713573411 -0.3087296074297961) (0.1260490501405386 -8.097072011208486 -9.137501312879758) (-0.07253215368572544 -0.01615210561137587 0.03361058253700132) (0.4680117381691823 0.2596955779249396 -0.5570251384229362) (-0.1512594872166815 0.6211199891931061 -0.3490005608033693) (-0.4423933310231323 0.03022307507575904 -0.3055854451646116) (-0.3855893426648923 0.0409692625049016 -1.424361212300166) (0.01747828545469091 0.08250575943357626 -5.955701260534798) (0.0466088097684079 0.1098808861258875 -0.1905740583691704) (0.08850994906012413 -0.4214286543958477 0.1272116428797148) (0.3833869032380771 0.2501648601948687 0.2101634592043564) (-0.05768395583800474 -0.04450386218702251 -0.03022792782578577) (-0.2912576613720587 -0.06624261303499732 -0.05594533172727571) (-0.03260837721771413 -0.01591269401494557 -0.02080687770460231) (0.02267876975940208 -0.03183124851920683 -0.06892733602879322) (-0.006829271011310804 -0.1322742871331587 0.1533315987481706) (-0.2847526588317861 -0.05248876848339301 0.008094150018848802) (-0.1602247534815319 1.102375854498188 0.05004730993740736) (-0.3646182209680475 2.045714801772152 -0.7845076777144241) (0.01489193577608862 -0.02499214777597004 0.01350473610180043) (1.160973876256471 0.3062049964123308 -2.978148714123482) (-0.3017393950589272 -0.1362224489437364 0.007831570538711686) (0.06119830795590277 0.07229115862852048 -0.1031156205615952) (0.0139096936149939 0.04275500267611728 0.02705316879200928) (-0.1212231366819784 -0.1583047469588574 0.2205906301212343) (-0.3775893117422968 -0.3994480857363085 -0.1324737945727304) (0.01381230532992785 -0.07161705283732048 0.02508775115106893) (0.1455610261369499 0.003904342349679575 0.0767573726390936) (0.8259284255604232 10.82940613973775 1.370572147555932) (1.025717489886941 -3.736034111045749 -6.337635140387503) (0.1333510797382496 -0.09977373746913451 -0.9049022340950941) (-0.06708779705221589 0.06626080364988458 0.01106504563052779) (-0.03858112677385202 0.0004975186061949369 0.004497407790259247) (-0.07368513360066159 0.02834777450920773 -0.03804739196781147) (0.2210409867058355 0.007214855626498498 0.02374988333494275) (-0.1292641463844637 -0.02684462886011477 -0.05470703963673625) (0.02999363942222155 -0.1238224236385249 -0.0729558691583688) (0.1141555139970413 0.0580088347250374 -0.07232016170297795) (1.52378646872836 3.762168012927451 0.7710871365370442) (2.837186502902994 0.9609004648687423 -2.767552971752332) (-0.02588511325050664 0.009547138574975349 -0.01884988374083374) (-0.3821091040487719 0.05791132116730101 -0.00449911614303905) (5.140791480145949 7.453875585085817 -1.698093754533232) (-2.576774983445429 5.318072234726795 3.516246237483345) (1.445603660506028 -0.096055437844282 -0.02498853197466906) (-0.08217903903582245 -0.02249087990269033 -0.02855030549607571) (-0.2549364267776451 0.8708705943496038 0.7965909025829215) (0.6378965083014771 0.9746582425534858 0.9623004905739466) (-0.1129318176214015 0.1886336318840548 -0.09378111573610656) (-0.3763913754939155 0.09137924687035004 1.179568904597143) (-2.810895306348946 0.8046812592578845 0.9302525687274136) (2.405249067190867 8.1692727496995 -2.154019837729062) (0.08111826544153029 -0.09471882564962364 -0.009430556594014733) (-1.175848862778156 7.117185872195066 0.5226566331215773) (4.645583023427053 6.928693463262468 4.083711811397764) (-0.09082357474937149 -0.1050581280826438 -0.1157783785026829) (0.02395102777377962 -0.0488614162768623 0.01820023074723259) (3.506838101226356 3.332347152442234 5.395815724943096) (0.9079431664992244 2.003346867648439 4.135940890492661) (-0.268401053723646 2.094129216962921 -0.422008142414347) (-0.03266876948251279 -0.0270467201727233 -0.007640478481261904) (0.00376380617475083 0.01924180852777276 0.02821999701710281) (0.7299657785162138 -4.649633927012833 -0.5123417469443543) (0.157930558505972 1.47159680680765 0.1264761759676185) (0.06361996746260097 -0.02579220677203029 -0.2587715786320565) (-1.15928681142434 -2.729686487749336 1.485781699610451) (-0.02891923625403633 -0.07790308896906212 -0.06387379351656597) (0.1444010353825683 -0.2005351184406887 -0.3601756715058346) (-1.83695406202727 -7.109391423945143 2.276930135064319) (0.7371147783762895 0.270976842415674 -2.005335699478896) (0.01343200973325696 -0.02280216614878136 0.03677501186418113) (-0.01176763639667014 -0.06814678521707605 0.07771999049479039) (5.679999920217847 -1.944219498335341 5.343046524145364) (1.14221833444197 1.202353015817166 0.8005757442798757) (-0.4182483099069016 0.02890628420062588 -0.1599877915242178) (0.01423324634407518 -0.01363506265334675 -0.03317699671070587) (0.3603159299682353 5.934389644743364 -2.244607077366041) (0.189780679481852 -0.1512488900864291 -0.4450566048465464) (-0.3147383227163436 0.127897138503602 0.2778361065253515) (0.4399750760803537 0.1367417556056312 -0.2760847020294843) (0.08766447409923164 -0.1786524203643483 0.07781742336954572) (0.5524964685457885 3.942125073066363 -12.18019929698897) (-9.779482613781717 3.199867474762236 0.08214754334135321) (-3.735339748793618 3.043173004627372 0.05136983130103179) (0.2593998030548926 0.1109461725421807 0.1246715058171751) (5.186030639128715 0.04742328309048355 8.050627938569692) (0.08238420906381068 0.08895481491734558 -6.130487504181723) (0.1551559578832864 -2.076655118344091 -2.456066617981201) (0.1410805239026019 0.006587248045071822 0.04322763437527377) (0.006033156361820523 0.0203818701298021 -0.008174956793021423) (0.07373971890772515 -0.01897172730950435 0.03474868396208829) (0.7681532822912807 0.9221560455117502 -0.3459688239343785) (-6.035208297174461 12.50414631989558 -10.95534127319587) (-0.05921729640742216 0.005284699110544007 -0.04413908364942359) (-0.1134124348482958 -0.02159981660904858 -6.328612458694297) (-2.929592368894391 7.203826536983648 -5.351373439113455) (1.173462165570148 16.28229453311212 5.751405978694031) (-0.05328028268649587 0.02106109005110401 -5.037612638586076) (-0.04026142647173773 -0.1257464628411766 -5.762547065186764) (-0.06297196991340541 0.1988487583781169 -5.502421527394958) (0.008509267980098607 0.01076825305022431 0.02087114491150262) (-0.03759801692790649 -0.03864654394774276 -3.653192491004334) (0.0476354589613743 0.03599342285656628 -5.577424776503423) (2.093919786137477 -8.79182938527593 5.511099353013422) (-0.4321348668905713 0.5366699052946338 0.2893341816952164) (0.05121209641701268 -0.06518709011191008 0.1088582429050916) (0.895575764368955 -1.028496093365274 2.907135634195664) (-0.082603735357689 0.07933240630305498 -0.05944667323448356) (0.01355662616767778 0.01289081917055895 -0.01026528204051226) (-0.08920679838070864 0.03677364829282601 0.06775634733250287) (0.01207158535766789 0.00173351051553 -0.009860875514049544) (-1.26296676109297 -0.1106101936512994 0.4756908175978293) (-0.1245180502929842 -0.04053754561716379 -0.01157622526401923) (0.1064963919482911 -0.1841648309211656 0.09265726227756579) (-0.4132482174442886 0.1912086210204234 -0.5746437952607359) (-0.2755649368112668 -0.1708607225126373 0.3700295094594893) (0.1993609628590557 -0.2759356550044706 -0.2715977209060506) (0.1320099575022302 -0.1146163386960721 -0.2078667348129893) (0.1159849334699432 -0.1045411729716048 -0.1124627359571711) (0.204604155287462 -0.4356586439662669 0.3917371501996123) (-0.008645545435534141 -0.5614216801891965 0.05744603591737526) (0.3903974321582699 0.980862145475796 -0.1788656359448452) (-0.182068066124148 -0.1716567700195631 -0.2546140322667877) (0.07287028361014529 0.03871088275449686 -0.06371632729528537) (-2.057475509931233 4.424913175710291 2.76152460513698) (0.129217851316058 0.0442833304846152 0.04203451344377526) (4.877228091712222 -4.759925028896791 -2.476020307537134) (-0.2284613180870143 0.8381126637995081 -0.1605361740335339) (-0.131890055611367 6.455845145112025 -7.018062222163444) (-0.03711738598478709 -0.02650200621345708 -0.1390311485515194) (0.06997634025781496 0.0159446848851015 -0.02027520714393136) (0.09729543388047718 0.03386755647745705 0.005865329390809615) (1.067982330269932 -2.657772313216337 -7.026311610557608) (0.6710213821912558 3.845290643985428 3.048246662102902) (-1.946137738551259 0.701410194797506 0.663898965784273) (-0.3106455905296914 0.1406779424045005 0.4177341116820416) (-3.122435271409801 0.8315611593336956 -1.02010877831488) (0.3864966471877295 0.05094914797611168 -0.2109865130699327) (-0.1408042356750686 -7.121405464339927 -6.589292490966836) (-0.07567609380837162 0.05420789216593334 0.09816584989640537) (-0.1790141790144644 2.126940183175144 -0.918547701151248) (-0.007637408765626463 0.08243999815751224 0.05931325010199044) (-0.1904828402546963 1.500065991473501 0.7447034460886161) (-0.02430117021211153 -0.02510290080139477 -0.0309903938869881) (0.1884676729781316 -0.1634841542091207 -0.1150118364371593) (6.747229281244453 14.07433931180605 -4.786173934043755) (-0.7377519431506112 0.459337029782393 0.2506090858487708) (-0.6835909589713443 -7.353697197923163 0.2147458136707396) (-0.6242654405800004 0.2562336633815853 0.06483988119496771) (-0.4135368908865147 -0.03050456585430437 -0.02722687585990935) (0.2499968905540499 0.654278369266623 -0.03379413157422551) (-0.4979957404285308 -0.3727883852379956 -0.2580203219941639) (-1.796053060843958 -8.071243964075876 -4.143465257169958) (0.3549067172236602 -0.3390958939718167 0.5669989780626575) (5.142859263131728 9.376295387024907 2.319513528308955) (0.5641019584599557 0.9394173125054113 -0.08001285699158708) (-0.2590551725444467 -0.4520951548720049 -0.5414473546279919) (1.372364596576434 1.175605486852379 -0.2546508272640435) (-0.09601677448102579 0.2817261027928283 -0.1221912792768462) (-0.1380924158309491 -10.12898672492842 2.107826145321529) (0.4491694135532444 0.6684728380255741 -0.4688798794415973) (2.217144837867071 2.204624206058813 2.026403622983549) (-2.218048945162275 1.741297310214442 2.434598884472898) (-0.003508074786888034 0.02197217589463387 0.01342102164586958) (4.453766606993539 36.29694279171401 -3.464118069185014) (1.382883549460564 4.742104406810544 -3.193197004523166) (1.848424798313102 8.353860159259996 -2.037094519696859) (-0.1662280435891655 0.08969834160319996 -0.2745216975694018) (0.001642348299455203 -0.009532916013071284 -0.01323434191610163) (0.8822311042669179 -0.4127181019041928 -0.40472688535262) (0.6660290495950464 2.531872680900865 -5.566369036567451) (0.727940232369314 7.602483995734532 8.592410592356732) (0.02447138753007268 -0.02895089838130522 0.01616482205064876) (-0.1717566649030307 -0.03014741145817208 0.003596664058392846) (-0.1895711245588547 0.01000994822655648 -0.009352397517319035) (0.003698392939486244 0.0105659860253182 -0.05456605682764878) (-0.06516635727843995 0.0007276277694173681 0.03335333099645091) (0.03705300304211862 -0.03150552401751628 0.04206392131498555) (-0.04013875047740303 0.001775435957086069 0.02446517087350748) (-0.001039429175062749 0.002578606411366544 -0.006063305417307778) (0.3363108365557397 0.1068383885065019 0.1108435312091363) (0.1836660530474959 -0.2319258655396231 0.1184851000095084) (-0.6195354967013371 0.2890584266738655 -0.01953484040667225) (0.06928974719945358 0.2655329846840417 0.5507173674173726) (-0.215382288295306 -1.032356241038149 0.4478501320166708) (-0.1327931890536558 -0.009437118924165211 -0.1605200339328477) (-2.446194990565614 -0.06021122797508002 0.5761395673931965) (-0.05784561140031233 0.02577469725941038 0.01458703406132065) (0.1058999330544631 0.3843864560127019 -0.5461928997142254) (-0.02544119280511289 -0.1388905388711268 0.1049071854539131) (1.441964561851876 4.400619615930156 2.818690992737714) (1.078343161699157 0.6772887069155304 0.5034663521533163) (-0.07820372450414839 -0.3451622790278097 -0.3759768407637776) (2.090019672521073 0.702462626573523 1.212793281330967) (-1.01818569066384 -0.0948420864730634 -0.1991787195754033) (0.6800073309671554 0.7371343090611696 -4.037719132639461) (-0.1603648285852301 0.3983637377989979 0.1981204793248951) (18.45365791965175 -0.7854232080061065 -10.26157442323367) (-2.570071261379114 -5.53398100803888 -4.994430174829841) (0.03091302246377525 0.01065463392191477 0.02719639445975159) (-0.02728081742135835 0.4412613837290085 -0.735374999417168) (0.1406884990301256 0.08438203201347128 -0.07825730976109271) (-0.01834274429043987 0.0002953067292251893 0.000656976171237624) (0.0778898970515086 0.005828395286957078 -0.03830498779580404) (-0.1221990749793738 0.02671724537820524 -0.04344712154324825) (0.5191724839568714 -0.8227951379660516 -1.146356937177041) (0.9871637380629898 -0.09113977225407563 0.7332127020598684) (7.120494848050539 8.074941037735659 2.090811037326317) (-0.9277562307845924 2.557048781327496 -3.49290784270074) (-0.2000198179560481 7.081945385897187 2.743642819994254) (-3.630007412683786 16.11139040331819 1.231599214431281) (-2.179609768122938 6.726234670097037 0.9942635439240658) (0.03050465332530655 0.09169455582987041 0.2205994127286729) (-1.033758328863261 0.2618770823868886 0.2201422349713224) (2.304515719931631 73.90684230723214 -0.1847780660556155) (-1.007094403773231 -0.9082849364654725 0.6250670210518982) (0.0410765285174654 -0.1663446051351575 0.5202081811379909) (-0.005115629719452966 -0.06449634137260515 -0.1461245415264484) (-0.07125516323004835 0.02071023872385114 0.04501410780717306) (4.438122890299915 4.024237436505991 -27.62903605802223) (0.4522032690536143 2.843309790678002 -3.127203783394301) (-0.0701597979680235 0.06247150159913704 -0.06391130617722625) (-0.08527123356241917 0.04792907203257379 -0.7130432681634643) (-0.2752191798060639 6.211015110913142 2.256076733717206) (0.03880045121395819 0.03289228807392289 0.1867623182778969) (0.002682726542739329 0.004999929983104853 0.01713709897004086) (-0.09263756671565185 0.0228155776654807 0.00164360832478766) (-0.2954046529658683 3.716830470965703 0.4487525328880844) (-0.05407267979247626 -0.0117925728202616 0.02254570737876647) (-0.09536432736093459 0.006045105801735853 -0.1147105613967303) (-0.1133275606286061 -0.03874621882001419 0.04624246444094843) (0.02646679153501065 -0.07887867689714316 0.09400641926950322) (-0.5923749907987494 -0.5314063757020199 0.02210386740617931) (-0.05539442653644999 0.02993765268979356 -0.000914938580140634) (0.08756086095147131 0.2791819051439367 -1.911500885693113) (1.239225544941251 -3.309435695514652 -0.9976059225048831) (-1.398066359443046 -2.903046785393175 0.05812970551703178) (0.2877579441385766 -0.479541303499068 -0.3088022247885025) (0.032061196033638 4.154749059679927 3.81006076647289) (-0.003878912340683938 0.2225167346794663 0.12650872009455) (0.06083437044254589 -1.16833637595239 -0.2528355574689737) (-0.1531212408152142 -23.0269480116151 10.89859318572546) (0.8676134270328977 0.04888546143133446 -0.207248440404943) (0.4005636972108173 -1.835696973402193 -0.8880138785913372) (-1.274314239366203 -29.18904028559529 -2.94356745352714) (0.02054318715795156 -0.002252710145529233 0.06810371255140107) (-1.619601621272391 -0.6476502912374296 -3.659396535788171) (-4.029906147399235 9.682887444690234 2.103469825553488) (1.207197541880707 0.104725488920952 -0.1392413670843004) (0.7263014801022984 -4.510271239765384 8.862354363044286) (0.5317030645152654 -22.61991262018468 14.46582629183517) (-1.164717765975329 0.1139806459532589 -0.2041866287888859) (0.2374321209748427 -0.3945464582493492 0.6709870195057809) (-0.1529946313603423 0.04752023557995121 -0.1744579559046192) (-0.2657658160129001 12.85906364986243 5.052182619582958) (-0.1058078801174691 -1.799892342060798 -0.4896515774285158) (-1.35094447036172 -0.1806760507773771 0.5369675159605626) (1.933391958915212 -1.098129378375021 -3.360640335725888) (0.4988987145419296 -0.5593629649230434 0.4536916135217363) (1.093605137255497 -0.06641456417127722 1.117640745335722) (-0.09768888786834778 -0.01886493166099447 -0.757460274788996) (1.661435403426191 -6.909164869853357 -3.148739057563875) (0.7092295715772825 -2.80260913095241 -5.740560690770101) (-3.808559310392177 -7.073605490469596 1.78833655126786) (3.877056953467409 17.61144909052423 -1.673034876304494) (-0.8571775108726472 3.345694543573584 -4.017000240698852) (-1.234645150942302 -2.011082548811809 -1.809389080929484) (-1.083511796126742 2.18002633340963 -5.355943559328082) (6.744339139016958 9.005173786232961 -3.587655417214884) (0.2004862836302737 -0.2929352235377322 0.3774431481394146) (1.936995197032501 -4.298971715357045 8.157647943682985) (-0.8606570216307873 -0.5995965274196845 -16.91676891987861) (2.010727206087361 -6.080454261031714 0.5746674931626612) (-2.681135305415695 -12.20066626152364 3.25122957683131) (1.995566990217068 11.88002578461916 10.62728181123363) (0.2084533904203016 4.152121182225681 0.4895355072928739) (1.073632627905371 37.85433976420705 2.702169580262289) (0.4598996399961547 -50.15939830101878 10.41781416819945) (3.527479851151253 3.364652321830663 8.795659019761944) (1.669038744684331 0.7543244849889499 -1.280960937745134) (-1.567933859481307 2.736664421236551 -4.098456147423231) (-0.5169033390385068 2.111340341261742 -1.476047391923436) (-2.254960378516313 13.15802854448075 2.394314294212249) (-0.03050673338711712 1.346973700051725 -1.439357288929454) (-0.4461664040656541 -0.03226757538010477 -0.08787102043082055) (-5.766504956499001 -5.766947564462209 12.03434586966212) (2.005379852101266 -9.588257511673209 3.25564836894195) (0.3534702034706965 0.2120689641584356 -0.1525557053167439) (-0.9090872395780482 10.02329906884097 4.323008468463358) (-0.583674763940752 0.2861791013502402 -0.02739430747907384) (15.70741933488739 -8.877006348141787 4.67687568652242) (3.137973947885976 -23.59968480085619 -0.8576834638019366) (-0.04556807932090434 -2.213006535540366 1.096658829445558) (-0.9810324486581192 -2.468963020643429 -0.6463759270923166) (0.1056434153162321 -28.7945497816406 0.7498334314724366) (-0.2327985864533839 0.236582630145689 -0.141383601444873) (2.010428797518644 -1.930907239651818 0.08094732108441072) (-3.101076737410435 -3.024815495181255 1.550690056545019) (-0.4194714490581511 1.026589571660409 0.6211138412596573) (-1.970894053970574 -11.54653812730978 -4.489677442233406) (-0.3101715490242202 -0.5493750208093846 -0.02319527536235927) (0.2579272922862115 0.1327917898713509 -0.1251677064963018) (-0.08208649019306147 0.1615980204990252 0.05396060673877787) (-0.2544796296142942 -0.3443303708378868 0.1556912384834485) (-0.7627502669007969 9.066748662476517 -3.065925820787153) (0.05824717384648895 -0.478110389199592 -0.4495019695860914) (-2.619001617076832 53.14249919921188 -2.032735082136511) (0.05766304549806579 0.01435751428123526 -0.03059902510678058) (-0.08837584072874234 -0.008981299617229767 0.02819259764394435) (0.03919271383379945 0.04714003684343923 -0.11705041177568) (0.03104923838660652 1.1384038117645 -0.009830525851204808) (0.03917398407305855 0.005578255165735194 -0.03371690794375076) (-0.06508766231724421 -0.08695774454702117 0.03921398146779533) (0.1704237903868883 0.1844105284123903 0.2159862240472451) (0.07450015116328756 0.1234626949615999 -0.05725800376402452) (1.802948184110021 1.233890732426167 1.567935170078674) (0.05265215461825989 -0.1605769612937156 -0.7302321697901539) (-0.5261293971537261 2.774818101694255 -1.582503085416985) (-0.162422658557753 -0.02668618039705084 -0.03361838917278833) (0.4118950307703877 4.018056313485638 0.6806023044286861) (0.3907704424996502 2.893725302564323 -0.888285443498541) (-0.4288735473157603 0.5128299204671314 -0.3601510484410314) (0.7890272072378024 0.4105997669432793 -2.140444853782617) (-0.7295694221940585 -0.6441835945580278 -3.108083051118579) (-0.480985234750665 0.22918972948061 -0.6947578879182769) (-0.5625033976279966 3.202165005204053 -4.094327949246684) (-1.298632241080902 0.4675263542875369 -4.216467612052376) (-1.404674746237154 -0.7092287258496165 -0.2561416667810211) (-3.548494918063979 -1.961761775585743 -22.25844796178384) (0.7041448484853839 -0.3180705276793042 0.7299094866773024) (-1.025410305724341 50.84802316440108 -2.944060377403625) (0.486676705448833 0.6643755799596531 -0.9918104524700136) (0.005362096104904408 0.05593667175914287 0.04719043900795548) (-0.5378305777397006 1.043239991881821 -4.527480235712796) (-0.437312743994099 -2.01105527265727 0.3724216841315954) (0.04504620919259911 -0.04750468641629321 -0.2526095740767269) (-0.3062546615457231 0.09707040810572054 0.03115296214450914) (0.3391614557795731 -0.2399457450765022 0.07741985830314606) (0.002191093965881556 0.004852799243568098 -0.004321736127720479) (0.007866048188811307 -0.004602041766365806 -0.007014766526752002) (-0.2950483672825184 2.405346987708967 -1.484729282926318) (-0.1359285650387615 0.02291760319426719 -0.05671237022693473) (-0.00766352892798634 0.04151191306810564 0.01300667190990988) (0.04956264327860668 -0.0231839153724279 0.08858953386827123) (-0.1320749358199283 -0.06920293560553643 0.004848034136195604) (-0.01820595230199538 0.008214609233402972 -0.01973626350790898) (-0.09127606722268347 -0.03080877133275174 0.03190107913078725) (0.4965046692608212 -0.01726020044111026 -0.3753482354162877) (-0.06245741974408453 0.03929008269239212 -0.5683121811945258) (0.1612054206277426 0.01495799577492315 -0.1218081195239594) (0.02829757984504513 -0.0194898026743164 0.1490983456951978) (-0.07562510913345764 -0.05079340862616535 -0.002384631720178748) (0.03631520865141795 0.008691668745970101 0.2875801742875725) (-0.7754586791868436 -0.4125068215003457 -1.403387841226984) (-1.68635518029438 -40.9534781728999 2.154505319356618) (-1.135385648252265 -26.02976062834885 -2.133597898180611) (0.2460611960612519 -0.03403247170000762 0.06855623716415765) (-0.3278694216849321 4.49390504119113 -1.204332653703673) (0.09842160296447759 -0.09320619235895738 0.01016694502832963) (-0.04139831870033739 0.6601521028715598 -0.6728143025869717) (-0.1506043500744861 -4.135803935225436 -2.61407490396696) (-0.005800212133840382 1.835715004636843 -0.5351597119896662) (-0.1125985956612256 0.06711292286378354 -0.4358724686072301) (2.748982322082678 21.48318372705558 1.076460090800923) (-0.1777753674485916 -0.06517187429846347 -0.1630032611915627) (-24.06926337393855 -11.67672889046927 -11.12452074285768) (0.2964817476719155 -0.0346360011071572 0.01593254713098041) (1.02901377558343 -31.42048916644612 -6.925572295476531) (0.7572183305903417 -4.64073214341292 0.02800770646350403) (12.05956488160261 -1.739225956498553 0.0527960548219033) (-0.04871103305121237 -0.3509458360677534 0.1726315774668546) (-0.3066297436396115 -2.339938783516978 0.5133103209981791) (-0.02810465800527633 0.02289196349762736 0.03640909769429357) (0.1090604236299209 0.121214328903531 -0.281366076664771) (-0.02703098864954419 0.006291778320317257 -0.007055651396187673) (-0.01717399271240609 -0.003682946494945005 0.004853200577425476) (0.07026077314473858 0.0498588060628127 0.03039662211597959) (-0.192185037826902 -0.09793193525711272 0.02979120195819071) (0.06097785730897645 -0.00988136674358658 0.05096664063273029) (-0.113056454197131 -11.47555436733852 21.35494270920686) (0.7583272969350268 -1.961929192947089 -2.018988728559519) (-0.08543149959302748 -0.0008137171279436542 -0.04618348318591023) (-0.1094133812207435 -0.2307535716724927 -0.2618145756105059) (-1.38093333938443 1.343504436802058 -1.714225248650795) (-0.3327950322086557 -0.01367314248902315 -5.408523597581205) (-3.016936034989072 1.619817317209652 3.064228280180761) (-0.4393435660747561 -1.801707911034203 -0.2998735735603991) (-1.249240443640806 -6.781483823227514 4.12668218945006) (0.5404568340613707 0.05237330899912482 0.1466703236284744) (-0.04748621547451877 -2.998625831842212 -2.006139119612774) (-0.4873031373220957 -7.197632943492797 -2.859425747876705) (0.7500459382626197 -0.1865864901832102 0.05887578728195898) (-2.83641475033129 -24.99372864737608 0.6559378798078603) (-0.03696862285286241 -0.05121584268491537 -9.606295917067335e-05) (4.385442379287921 -3.128989796216355 -21.05638854518469) (0.827024958236979 -0.1530594332275759 0.09261850340414221) (0.02209865581177421 0.026867321985516 -0.0797074201636675) (1.048019211223128 -0.05756404082005612 -0.1703540217820389) (0.3197532612489228 -0.4607068350748756 -1.695198980721128) (0.6659144746963813 0.02733420963061178 -0.8494489510704711) (-0.03416720800410011 0.007755298033760322 0.08880479562450777) (-0.8042280092538385 -0.3351531075110453 0.2352159876845435) (2.758917966880325 1.000559422137348 -4.331413212980025) (0.6102280016752732 2.524765236583155 -8.574329051228933) (1.162391441297303 1.055451420489646 -5.969942711920663) (0.4294339020345799 0.06518611286276191 -0.09666143762847877) (0.5670707067043348 0.06732328075935247 0.2304966481749824) (-0.1637806000128383 -0.1128168870664797 0.3043608210420963) (0.773459547530461 6.803313942240942 0.8686565365668469) (0.8290934988131001 0.7293228769213688 -0.5540984298894039) (-0.2224931484801038 8.359849462770862 9.089596999790448) (-0.05733147478777911 -2.048489413680008 0.2401241818041202) (-2.391654953466481 -27.33554148117393 3.680290093016817) (0.8976079342102837 -3.224788691355585 -6.722462590225741) (1.280069915883425 -0.021005182451308 0.2287613105406171) (-0.00393444008492759 -0.04762302160139505 -0.01241063489859852) (1.713593764411535 -7.024864965150405 3.015909319028504) (-0.02886009609970738 -0.005481837393161798 0.06898332493388112) (-0.001217089267568361 1.711842352422213 -3.648620445470332) (1.207931599049685 0.3382666919370841 -0.6043629430058928) (-0.3661456995208688 2.398467538836035 0.482148818038619) (-0.1776031846874054 1.377223444290582 2.657859122976123) (-0.42755477903093 -0.6275989842794208 -4.004109656891426) (-0.4075633925994818 7.244165100226228 2.512444190179524) (1.95449003533972 -4.349290732245384 -2.353926811105127) (-0.2367185321069062 1.538102505130315 -0.1534339775530749) (-4.9817155394207 -3.587703701169444 2.45295246795885) (0.1319149608604674 -5.242327503363947 2.151534698484615) (0.08159632096019381 11.90734616951735 -2.308476509243031) (-0.7154647476811352 -2.04432852397573 -5.66772708945833) (0.2156506674550459 0.02069225450748326 -0.03623081757162215) (2.841274425223686 5.120398165426104 1.883062394342358) (0.4318115062026243 11.27921121398636 -4.400002012346977) (-0.001830982217915736 0.3561212018221374 0.05424041752118747) (-1.101436142801916 -5.73724839540384 2.966370015865418) (0.02840758178418243 1.031313579634046 -0.112426168237965) (-0.3672559394253183 1.398440657811458 -4.334797942537429) (-0.667711183106166 1.992046584968643 -7.458747784955378) (0.3962386083872084 -0.07112901252596204 -1.252388430680867) (0.3789269210213989 4.201287149105252 2.154821866966709) (0.317902511779207 1.540052266755017 -0.03744097802737882) (-0.180773949242594 5.011179511056533 -1.989081244106907) (-0.2969611875078774 1.503262781480031 -0.9032226627035458) (-0.4753324722850115 0.05349641534548777 1.657053087595271) (1.447371709672011 0.3458998241744993 -0.4067882065495938) (-1.265258839621159 0.9902728370122145 -3.284653171533134) (-0.08506407937998869 3.272247244582964 0.5788798093029409) (-0.04712854207328728 -0.05418249714410912 0.02209932586541369) (-0.6701191555600129 1.843067297112655 -0.3709345596810355) (-0.3821956219588454 -3.30515230149504 0.6110508984080023) (-1.574631010792472 -10.66726651766546 -7.986871158293149) (-0.7574952158568373 -1.521658945255085 -1.183573862251048) (-0.6496229541845895 -0.2119586777324106 0.4944574798239818) (0.1322149599063111 -0.08454884855571659 -0.002513072849186782) (0.6878222696818536 -0.5179396634169339 -7.200997044826715) (-0.8257943548555694 -0.9986268085270958 -0.7491139004708023) (0.5175490362415875 3.277489689407237 -3.307221596128678) (-0.08371540383805662 -0.122801238365054 -0.07753829585693364) (-0.261524700376137 -0.02199235631911155 0.04596151441826017) (-4.50971006194119 2.997252369092648 -0.1308010755807827) (0.8582856317485001 5.859471570057103 -0.975295442820947) (0.4242904197493516 0.6794179967376016 -3.55459588008361) (-0.007323208706094597 -2.917143724336955 0.2370232735148213) (-1.394740857005818 -3.700709081675718 -0.3222745826247461) (0.2069047432565144 -1.060518331850598 -2.716479723382137) (-5.214993103773209 22.64385489418463 2.994468121601846) (-0.5197959597408628 0.02159904477597321 -0.9251558069896129) (0.6053463641651737 -0.3370848294765484 0.06118017346872923) (-3.14998683604857 3.684143067070838 0.9090135254920866) (-0.2322344442379281 -9.663833720923193 3.141888373659628) (2.188230445753447 -1.184938652164401 3.226407788835009) (0.185734064519251 -2.61980126216921 -2.932834224547034) (0.1772934278426575 0.6055799714081894 -0.5344096751547873) (1.007468111899 22.69329985870509 -5.119256220052793) (-1.876826294159342 9.512502367719437 -5.059433781718154) (2.029923553752688 28.80380665230304 4.797153990377107) (-1.362177195384989 7.346882106669806 0.8994092245169445) (-0.04614312298384314 -0.05001749355804878 -0.02164967303435693) (1.354021623496125 39.76215291464758 0.8529422340445086) (-0.09932145833219301 0.01724040378179274 0.0176410261229118) (-0.1495155744924406 0.1440069453727289 -0.1829502944940955) (-0.1722031998018469 -0.1701545510352973 -5.754499864298678) (3.220237274958977 5.280854667795224 -1.733608842509254) (1.130343262679605 1.541159600892037 -2.289058833768527) (-1.544275549998515 1.003083698216767 -0.02993192131688027) (-0.04392029113217257 -0.2140600190565733 -0.4587074886634803) (-0.7870590558843925 -4.996397574447187 -2.549001262674376) (0.170761767935439 0.1146812254731945 -0.1835473107086461) (-3.072454720079462 -3.528298355050479 4.241553187050839) (-1.26564649412147 -2.078034816557801 -6.570655158765714) (0.3654029823536154 2.381507562931517 0.5694718016317553) (0.8623946191372458 4.792358480004342 1.567006633418965) (-0.08260823439392796 -0.03242193979571924 0.04346895597615522) (-1.74556640779867 -2.731902363371786 -0.2515190131180091) (0.07073521999817284 -10.6948585721981 1.29828343397097) (-0.5975793817564878 8.005882058052885 2.959144881311544) (0.01654436506026113 7.49826531163519 3.014361195225096) (0.09604699224200264 2.766830560864406 -5.72885311824087) (0.002218318506617134 0.9375577254567059 -0.4763187108814719) (3.183120446994918 5.971613939354755 0.5017491158583162) (-0.06123459133037679 -0.08006774899700778 -0.5129634221825898) (-1.854894826860908 -0.3526755366428546 -0.8345236710868238) (0.09520516108071431 -0.005472934451527259 -0.02534973199847212) (8.438201532929524 -3.641657399768377 -3.741551992380457) (-1.336989650951706 -0.9281749236223051 -0.4872261948218928) (-0.04685152771172511 0.04982441150127801 -0.09015602883675986) (-0.4252594706890693 -0.584503925925923 -0.7166910142830691) (-2.775196487597183 -0.2950026641136678 0.4431108134649263) (-6.086226147051949 -1.929043574448685 -8.638546390333362) (1.05980728804519 -2.04630861952901 -2.239041576456408) (0.9633164574003081 -0.6989093209330082 1.953914687229454) (0.896141502860913 -2.762887359595154 -2.06553392305947) (-2.305564161483747 -30.51505066369498 5.158470792259874) (0.8761532925923784 0.8311066423142655 1.815663114904249) (-2.159286398175636 -6.169835838174095 -0.952900783900186) (-0.3862125895214039 1.683580833501069 -0.933250772531972) (-0.4930597536266289 0.1400848216316762 -0.6364775779357259) (-0.1712315087877405 0.9632978796511183 -0.02347672684441614) (-0.6492268928316239 0.3831009421411123 0.1173167651323842) (-1.231897783533824 10.74683211965024 4.007142532074528) (-1.383722192521139 1.727524816947479 -19.29838194324871) (0.4497993803334774 -0.1075774845814395 -0.04581926809951806) (-1.691119311267158 0.488447386773153 0.09691621392605947) (0.8254847046172306 -0.2437228357724761 1.145797838784785) (-0.8990487484874548 4.950337784226085 -4.117443165162424) (-1.183691260397324 13.81234516499603 -3.848598499372704) (0.01538899815300315 0.1379999791923966 -0.05743543969468047) (-0.02073794620658886 -0.05341794793749433 -0.1749612052216755) (0.04657120023926377 -0.0475919148485762 -0.1623771173352474) (0.06175906495197851 -0.002702830336873361 -0.02596778501579102) (0.004841833000931424 -0.002353616691806615 -0.0002589916913112635) (-0.4443134278055617 0.1957270461105291 0.4833819355285928) (-0.00815827501685781 0.03728711234003614 -0.0107476828692864) (-1.511672478752168 -8.01198941641446 -0.6142525590307273) (-0.1200684430225696 0.5025623479238724 -0.8555199292591052) (0.9040997508556727 -0.3527108491607004 0.1946280896789644) (4.395510084740388 -10.26328534341687 -4.174743179026857) (-0.6086036564641381 0.02622178100997605 -0.1364807870714383) (-0.05781643300648229 -0.008450359442871164 -0.002344263039993855) (0.1746261630728105 -2.964950439082673 -0.2649400648529168) (0.2582997553963016 0.454513671045228 0.2313824091379558) (-0.09093480390843517 0.9016461387238645 2.166821166346063) (-2.006509668213817 1.28940714911675 0.4825445877714616) (0.2372447535654325 -0.2946662657272319 1.359432959299183) (0.8269474118517053 -2.460033546659397 -2.212100624086073) (-0.1991697719613338 -0.1197798210898808 -0.07257137748972581) (-0.1767082400037655 3.644758724231018 3.217868081560653) (0.8393223549561901 1.248177498695334 2.055579135635715) (1.832597809878212 1.016371218686186 -3.077765055698791) (1.189308189338746 5.951947816617396 3.625144983145557) (0.7742407843065608 2.073275520986739 3.248407646697656) (0.2062514833431667 0.6122981497223529 -0.880999642828963) (-2.696753654077459 3.907371174699027 -1.352347705668584) (-0.1210261687351696 5.878515638263264 2.586211334749964) (0.02847467502403084 0.6945811860548001 -0.2422330788547276) (0.05648732323725431 -0.02852585494513529 0.01897457334573334) (-0.9960368412289167 0.4227154353259753 -0.4439152015628817) (-0.1964428441328906 0.1370192281279266 -0.1379961839147816) (1.043338710629168 4.5740245774288 -0.4710849485278501) (0.0007467361841601156 -0.005014840043101501 0.01946747812933927) (-0.2320736390723142 0.2361019882923995 0.02987960603980258) (2.773924158309007 1.286775637093228 -0.1562997540648163) (0.1668065446228648 0.05734315766807112 -0.2108651845556326) (-0.7796397767199299 -0.1232215679907911 -0.2487199113586459) (-0.7274321919131603 -3.04368157222716 -3.728468687426516) (0.1411114719702004 0.1195941714121947 -0.5497365532972123) (-0.574344136592256 0.5656211368411744 -1.301670986167942) (-2.249232956103266 2.03618347828471 -26.79204685626465) (0.09040988638733857 -3.003347085773207 -4.392164556444857) (-0.2246480392768346 0.1813327202417709 -0.2980449812854465) (2.622238862647452 21.95498947402777 6.2437931132206) (-0.3427081236300625 -2.719460099298173 0.7242852363033221) (6.065064461013651 31.66452957468287 -0.3677032541408489) (0.01147694968839385 -0.05891729951415721 0.05628756346396675) (-0.03009556010057137 0.1200669173341157 0.01490506244847944) (-0.154109271803423 -0.1046481450617211 0.08147547253844953) (0.05289829189570834 -0.01685663995829622 -0.02579699242959653) (-0.04252463923103137 -0.07024529968895835 0.09480028297481442) (0.007378821144951014 -0.01620170126444034 -0.02896532372617566) (-0.01092265512244055 0.01133895575133852 -0.004751115213181631) (0.03164276944378582 0.03254914965094429 -0.005222432224403928) (0.1613454506843484 -0.03806306683178446 0.06241397221815945) (-0.1330351766393489 0.01362326036375479 -0.3806904763759115) (-0.01222236745501761 0.001607868213429698 -0.006397934569025529) (0.2339084721971449 2.333337134972824 -2.944347372066098) (0.7098994434196191 2.541480822237405 -0.4369672868859883) (-0.6970194104989118 33.91042207799341 -3.955258257342101) (0.8512585922223138 0.04048760688076812 -0.2920924805177279) (-0.02641295505668029 0.04858786817943933 0.006707660244111638) (-0.02814976188500163 0.03405791105403484 0.0594265332408242) (-3.676613609354399 -6.655920136046318 1.559422628939824) (0.242797049694575 0.1936716146408118 0.2785027107676499) (0.6842726223711398 -0.2012813225148055 0.6922868071265076) (-0.3277784329460361 -6.0965667057191 -4.710807191964235) (-0.0367839068180485 -0.2326837606391546 2.83944829998059) (-0.6615753525008804 -1.469475537623405 1.537106764265392) (1.060520259148508 0.783956339588515 0.3038158483654081) (2.910804346574892 -16.44316550572087 -1.255428633314424) (7.534456739179364 -13.06026112966147 1.975723754111888) (5.57717951370738 41.46143672135405 -8.193891670929045) (-0.09308025398536077 -0.06882467198938558 -0.04942900596077443) (2.092568997497114 -0.5811711017950862 3.65027047691886) (-1.130976814452182 -0.2580104370210752 -0.05065297996513766) (0.5761922746915998 0.0003145223407908793 -0.1378066265531245) (-10.25446271800229 -13.76619230714062 -9.065628671787161) (0.844055036790424 0.5014649954127028 4.788707209728901) (-1.266491921835988 -4.345001587213987 0.7938957289901278) (1.051412425212322 -6.88543560706574 -0.04867185971777077) (0.8237966987196302 -1.108518131034623 0.04410210001067474) (-0.8411443976862943 -4.792926617253009 -2.351311966290515) (-0.0009406459995282834 -7.568102352998627 1.037577866809553) (2.193945570336766 -1.728584335540928 -2.481946299066124) (-3.820948542924655 -1.645295452326688 -0.6094357976470267) (-0.3757460930027515 0.2672043385795311 0.2336939896043618) (-0.1464570215548713 0.06048976636029468 -0.05886214402825628) (0.8001847373658447 -0.5265375621055151 -0.549161584096634) (0.9655200254565761 -3.386877972563804 -2.269559987121852) (0.121494795400852 -0.03878020562959544 -0.03499195807072077) (-0.002537031675142548 0.0574961476892162 0.03829573757578103) (3.429996497712484 -3.367196877150095 -5.612634523522626) (-3.703146004912394 0.005657202214084167 1.977154674665456) (0.0575066513034463 -0.03102350376865961 0.01506802129448555) (15.90381184595168 -26.64170003332219 15.61423850706671) (0.1454955563743115 -0.150958035273584 0.06922246209599556) (-0.3473484859092274 0.1828304108470188 -0.2868642491760668) (0.02254104556637418 0.02285260612286366 0.009314065027518026) (-0.2534510601910928 -0.1139634547907948 0.4871477873827511) (0.1672834746617937 -0.2002743119884242 -0.2088192573828878) (0.2559570842057599 -0.3009958794140033 0.09384525716690838) (0.2238372475000082 0.5166528767222753 -1.817114732322721) (-0.05867854248878855 -0.4351210779419399 0.2847243418701479) (-0.06340939803127346 -0.0625384647926312 -0.01520631984044457) (0.217585222198361 -0.4009027240598411 -0.2515881884034096) (0.3212877321370359 -0.03198499618063238 -0.3318291688886247) (-1.084997217485186 -9.614036246637223 7.050293713115421) (-2.090100555175645 -2.160511145115126 -0.1690726207494855) (-0.2146606408612565 -0.01419000160912899 -0.05034189379976547) (0.1447789131882755 -0.2143098806487898 0.04972498235318373) (0.9152492063048669 -3.109356716898257 1.280052307623157) (-0.1868778518104988 0.789713645748249 -2.026923863916359) (4.127685182327049 -8.323443879633039 -0.1830318284994995) (0.5000051744063065 -0.02954359098447987 -0.385102306132734) (2.29199406507853 -1.999408142439746 4.543534950169857) (-0.425141750861963 -0.3185630730283529 0.1734257249715219) (0.02822089797264539 -0.007220907808359951 -0.01897218985433608) (0.02571164115657047 -0.01210415056645534 -0.04533377447219954) (-0.02648624051734325 0.01846667857941543 -0.2368548224249723) (-0.6305358479740595 2.008422302606869 1.499094378121224) (1.277304102260436 -2.549430841464237 -0.04876184681631407) (-17.71518002988826 -0.7905652363248672 6.691604568394178) (-4.299644804233251 -2.230583873247863 2.984551784971014) (0.7559975618266744 -0.4750328884438605 0.4048348929226114) (-8.509799835339201 -1.999084802287223 3.651595087336446) (0.4461755293747668 -3.469002083233567 -1.390877080125073) (-1.184860798180218 -3.516611609836716 2.114775553298109) (-0.5865145934564222 -7.149340535269316 0.638093943877058) (1.550888508392708 -0.7771009880424299 -1.429391288238926) (0.1677520136024295 -0.1112292483927714 0.00107550594403133) (0.5773500754351228 0.07439263265867935 -0.6726929160206325) (0.01782812925053756 0.4722107123391366 -0.4472536288955151) (0.1853360022268166 -1.2576088010702 -0.614405556261965) (0.9862354852288895 -0.229864192245774 0.07277823140024436) (0.004728192522034685 0.008424248023807097 0.01145561445950862) (0.1471363089881367 -0.001749301829516773 0.05742497381590773) (0.3040353592980424 -0.01933568015203829 -0.2640504970069212) (-2.62655423288204 7.123088084390083 0.6701702762072899) (-0.04578597087654695 0.008943914648228492 -0.01493620799782892) (0.8291410927464307 -0.05743067401871338 0.6660152735744839) (0.02865514397072175 -0.4705754908838868 -0.3760990975632293) (-0.09395536770970436 0.1029047359328823 0.07534387292042238) (2.306662287192764 4.404960258452658 0.2822193080541261) (3.161495368034891 -8.847639524381705 -5.62340315553644) (-0.01406940358761487 -0.02386061455064494 -0.0258136955059812) (1.680838645256092 0.3344937147154793 -0.7054767335770579) (0.03383555253954412 -0.1224621143377203 -0.02077910082541078) (0.4123333768204163 -1.308666572755491 0.8078031583847356) (-1.311547699018019 3.628084597920266 -1.008861896451074) (-2.564393315362187 6.1410595773403 1.781721045284923) (-0.4866174058774819 2.482673054984459 -1.74670098320258) (-0.7441531285104299 6.370985311064892 -1.882323494143513) (-2.29227165899175 -5.19269554611745 -3.364465171630375) (-3.267005880637568 11.22701040094877 0.6433268876553546) (0.3641765122159965 1.275674602058235 -1.194018268155756) (-0.08311897108812603 0.4199460390241411 0.9440871278051267) (1.524216513544802 4.530578707407711 -1.28246094874068) (0.1141487212732571 1.498771987236454 -1.164417662286614) (-0.09864492839110253 -0.1335873937906503 -0.4919095282924464) (1.469111156651794 1.747481706458085 -5.690762217779212) (1.006467137063398 -1.765795402055626 -2.314520833248586) (-0.4891698014491532 -3.462782051638773 -6.229041080884935) (0.8986141699209476 -0.6087226323861227 0.05647494129827133) (-20.5269287509826 -10.30165947892555 -2.243795015719444) (0.4607837298791118 1.097433231716087 0.9089731131414108) (-2.115833208835781 1.936250194903583 -0.5383571079530191) (-1.446842136779235 -6.60855456650218 -22.98103605804006) (1.825732376976928 -9.721159399600513 1.170273308661397) (-2.003947644480466 -7.079756232123398 1.942955408785792) (-0.8967338455553481 8.364191869794228 -0.8375886076220176) (1.853839916102098 -1.641585200974079 -1.4319180097343) (-1.586405567330431 11.18623013334527 6.190039354943075) (-1.856549877707308 -10.50519667538049 5.449016669869561) (-0.09333676025344974 0.0006718200170653457 -0.08074255960538633) (1.432401399052546 3.7490238370945 -5.016526264283091) (2.01723702242033 3.120000012448106 -2.171186335042891) (-0.2278046336694984 -0.1165051260951091 -0.1445864556849067) (7.798505384383237 14.22719624729753 2.328997003103022) (0.01838309315940079 -0.3245942674536451 -0.2442951248107561) (0.5739978860572992 -0.1090206290416045 0.0473127881913608) (-1.61456484163349 -4.695427187772192 0.8456130798829085) (-2.245720535206396 -2.891037478931377 -1.916919417601881) (-0.1489842723260873 -0.23876823016925 -4.609104890707604) (0.147081379703404 -7.906777577895548 -2.684506013006748) (-1.223274927736213 -0.7041453080676875 0.1817840979913286) (-3.85986415849273 6.288913274632984 -5.913474903026218) (-0.3844526331256335 -4.213240270360713 -1.902162289095702) (0.0259730450787576 -0.005589630861131567 0.1710549284358932) (-2.343364579178448 -4.438997619098476 -0.5954776538084631) (0.01947587166923448 -4.748800548222838 -0.2364447459798001) (-0.04257520224626139 0.01363555013256998 0.0690865356303717) (-0.001315767006976467 -0.006528993980934414 -0.002909389598572977) (-0.02517724371835365 0.01484252252077324 0.008197284708807585) (-0.006846023321117361 0.01923145889816684 -0.04529681184826281) (0.03419165177660267 -0.008466697794689705 0.06365015936899136) (0.8116340244220723 -0.2373262844665917 -0.01666844722396761) (0.09699782593659996 0.03540362201672269 -0.02938073084001715) (0.1990021796026176 -0.1449836193487744 0.09839193553404489) (-5.413147522962571 -5.569185211608555 -12.75564920006599) (0.166285236314269 0.2192841036537154 0.1394473099020089) (0.1349493717027502 0.1594737110350846 -3.857850887582729) (-0.1835541852581593 -7.651659327593346 -0.8042257707321322) (-0.5346872275098636 -4.437256501116805 -0.9131868103077505) (1.507912059627614 -2.014011174823609 -1.878859609394997) (0.01764063347257506 -0.004844316943148732 -0.06115566812005489) (2.554685948391419 -12.49459787993063 8.079478655112991) (-2.11828945154785 -11.52344843156627 6.655547683128665) (0.5660368218733872 -2.53938357774171 -0.8140153639066287) (0.6091428803778627 0.4067560650335724 6.708743842091073) (3.176159697109967 6.874496115567492 5.439295465587584) (6.378613884801899 2.123907029953764 3.493098895711119) (0.01156307146960556 3.614615976880503 -5.063133094061935) (0.404393563303127 -7.565140845750943 -0.9494838034707278) (0.5298204091405303 -2.016308701512858 0.4011109933821454) (5.518294898248203 -9.314306633191944 4.293630510111886) (-1.846037667518456 -10.3677348262505 4.39537401746861) (0.7448374169417534 0.2066024330273498 -0.615266342370812) (4.441635933710031 -0.3523671651083098 -1.85055538037946) (0.1231425070360678 0.04736982572615563 0.04921688039913643) (-0.6764456602383802 1.504038678111874 0.6000872134411238) (-0.06428459073073001 0.05697358121189904 0.01313787709324793) (-0.1814113128693309 3.883573001616289 -3.751432213803069) (-1.117020148751291 -9.251953972897342 2.730831898353381) (-4.998259380603526 -10.08140773661577 8.356307217371098) (0.4387257622224816 -10.17453861918254 -2.775327034618172) (-0.1433321703377512 0.3695321074699031 -0.4042106064369397) (-1.716509600140931 -3.536279678446852 1.334334604260385) (0.32822516634863 -0.4537160154587027 -0.5430461435417183) (0.2365080771027274 -3.075123727784015 -18.80138715712625) (0.08513187827890195 -0.1160326219505358 -0.06708035440164972) (-0.2170896805375195 -1.088229531071617 0.4619946254926095) (-0.6591111610966862 -0.1582742445546659 0.1187643929314296) (0.5573255737430025 0.3568712529306112 -0.1746160441555725) (0.2919461785448166 -0.1380120848837648 -0.1765377429920998) (-0.2158172377581668 -0.4029321279003564 -0.08000542156075879) (-0.889619644839877 -6.571442248834067 -0.1906272800949443) (0.06417000627229325 -0.1385392378841981 -0.390928785174572) (-1.842427231763538 -4.187190575007644 1.755688039982706) (0.2874662210256674 -1.347249830522367 -0.2463709197840656) (-3.704485469061551 0.655757739635159 0.3453626237129515) (0.08976436833332836 -0.06291304537488068 0.03565543293871984) (2.387928230246947 8.916379268122631 2.254327172480127) (-4.059052261684251 -9.128368336119511 -3.538412495606376) (-0.08693246532451104 4.033022827398382 -1.756480440543915) (1.289864513000356 7.044425431411337 -2.499308099373755) (0.1855469857690702 -0.08672168811587573 0.03395532550903644) (1.059084901341777 6.278924115794071 1.074336358651778) (-0.3694974798256255 -0.1065401647458648 0.06512952277212203) (-0.8101438159498955 9.663364505009561 -0.6835310904699582) (-0.4153773280891558 2.069215225974626 0.5391902397897979) (0.006206564356033062 0.002246861042925707 0.056825809659173) (-0.2519669071556652 34.13134243034647 4.870411564986568) (-2.070998534277581 0.7394587374995076 -1.516245470376028) (0.561934621034746 0.04813307128627686 -3.185384414573004) (0.5244055955895998 2.175828961503031 3.062666654191085) (2.325944459493446 0.5287546355441337 4.578105755175593) (-0.2375671274838998 0.06178200877444845 0.2284267248970554) (0.9861073931943035 5.649668187021422 1.450083389328674) (0.2282623327500063 0.05654197589087383 -0.07143358453439819) (-3.689612583655503 -5.974230749587248 0.9551079064615666) (1.09883534493038 2.542199917964244 2.390043947089997) (-5.149110179048519 -12.43986729756795 -1.867606037137492) (0.01037091917172504 1.406971788485998 1.555317082766621) (1.816790181114506 7.816964002276466 -4.115855203981674) (-0.08977856236067416 -0.09433401444478262 0.1958911222705192) (-1.459906065580224 -1.985247247989037 0.8543112262501749) (-0.4515563129014966 3.588567266004934 -0.5883008167905708) (0.9719275872441956 -0.7309535184709089 0.06262001543587355) (-10.71962680752932 -4.752944131477704 3.86112411983546) (-0.2859805844462333 0.1250055384852482 0.03493309313571601) (-0.9145654783249075 0.3803942883309445 0.008903476368154244) (0.9115206811838606 -0.3621468675637108 0.1305508651595707) (-0.3679441483993063 0.2611151511924753 0.1897536365725895) (0.07638519085007389 -0.02613098873163714 -0.1334971274043592) (-0.1516081871268087 0.1522187275473702 -0.03470438085093847) (-3.770617530697645 0.08946753180945771 4.012002075735571) (0.09567537872657447 0.02853439559527651 -0.04487710374230187) (-0.01563260138067353 0.04680366421010261 -0.005566335691507283) (0.2572974145615056 -0.5003137022356273 -0.5388279643205567) (-0.008409960367515346 -0.07614451516625763 -0.2977620366826687) (0.03483992624047041 -0.006905648704367381 -0.01318904826663063) (0.09612783175236968 0.1061082067633548 0.1403561933112893) (-0.273903796873434 -0.6091601081660041 -0.4792283952747268) (-0.09624581457783483 0.1104714712312895 -0.003431343417785869) (-2.027182434871114 1.308074517063099 0.8324890162648554) (0.2601402137620367 0.03644255942373043 -0.4087615904549803) (0.2754679751938385 -0.0265519653163906 -0.350140205777543) (0.1280911663442155 0.1695016486239396 -0.4271983954570885) (-0.6388309497745539 -0.373086101472475 -0.3978836383079376) (-0.8450031800744843 0.3663697417724769 0.1512477050787298) (-0.05676085739013526 -0.02135356872706243 -0.03926125194564333) (-0.1913734326275935 -31.19215954879934 0.5678552930277745) (1.292584070068918 27.38223214492461 -3.751189228482873) (-1.138553646598814 -3.495459489563786 -1.35021396753024) (-3.23103665661321 -3.352545014057158 2.186374827885969) (-0.5035317453707637 -1.509784981250996 -0.2703684159859731) (-2.139836466232706 -29.20847187368821 -2.062719057626625) (0.3133292375894405 0.08373200524883119 -0.03954945351931582) (0.01983561669221279 0.3154993143123724 -0.4040558775045344) (0.03116678902843011 -0.008601941737960828 -0.03304296412241897) (1.797680772483502 -4.275497415090188 1.749505596252462) (-0.06872820116744034 -0.03520257308129866 -0.04252730620362666) (-0.1687570726297613 0.05351798979897247 0.07838344000674333) (-0.1727313176736493 -0.02481653576181328 -0.03692199635828732) (-0.7585318752974246 5.859883672697208 -2.510599144891489) (0.2553956949166234 -0.009295361813221374 -0.2713410198435098) (0.2574723925425624 0.01939708618096814 -0.1682340306580702) (-0.5568912673655895 0.7924590501439436 0.5051334365989589) (-4.867359264417545 -1.571729866183631 -2.254018640867579) (-0.0598411633316137 0.01798499997774838 0.007532629802846857) (-1.447856054427123 5.007750512764353 0.4811851340822653) (0.03390274293870445 -0.4426859327522151 -0.04370677451768387) (-0.6249076006128633 4.399350732534782 -0.8520803993140778) (-0.04250278445599659 2.704268463284835 1.743239995767197) (-0.3186515493128706 0.252087137450683 1.973822669732665) (0.134811501597374 1.872227954229562 1.173860944902928) (-0.6151696023848289 -0.8144219837141101 0.1358108661977512) (-3.191901888544562 -4.870031126059246 2.49663677017772) (0.424534970079099 -5.848513510431331 -0.4971541091723839) (-0.02743123023028261 0.001545680411685977 -0.008141785632419169) (0.6443672136476897 -4.825578122137659 -1.4021193742158) (0.02365060479357428 0.005308127575005072 -0.002105332056658613) (0.581777046130781 13.70452453280628 -3.664603474292925) (138.0303775146463 96.56999633989089 -113.2942359509638) (-5.166366735970596 -11.86049118412574 4.738257556252233) (-1.885495560577046 -5.537264212560618 2.027237616662937) (-0.6124883823654582 -9.035030213647383 0.956997888881591) (0.1809224943763552 0.1205112095418293 -1.798043227004394) (-3.418989746089555 -4.55961660319454 0.7773960487274491) (15.09615191157572 -48.05516645278427 -1.117017668785081) (0.9688604365147896 -0.6969774559932826 0.4902485444221688) (2.920701899567891 -2.658996777702199 0.09537961751457319) (0.2858213346817185 -1.477665375938676 0.9752887207652123) (-8.722379766409361 -11.44789486431171 1.388818923337121) (23.41288227264404 -15.89916981512101 46.30369020820503) (-1.675546517398368 0.003440164065445561 1.5587949619196) (3.124984078461515 0.3308229780211398 0.9656651429620491) (0.9046578687829306 -2.561466969052963 2.384199974040522) (-0.6669627095710884 -3.364751160562045 -3.657231379716614) (0.06187854998055166 -0.1913841192986042 -0.01873826295342335) (0.9665072374407628 -4.156201612694552 -1.122599152710404) (0.9067406552859241 -30.03315178193456 -8.523011082922286) (2.530288447031059 36.32382304008676 -6.598364561890606) (1.499696560932463 8.704034047051525 -4.12901899588061) (0.0679712081606101 0.1456505158781372 0.07614567772079342) (-0.2434007632938959 -0.6139554312415472 -0.2701087690374771) (-0.05541064656643198 -0.7768490463971319 -0.1486303650619834) (-2.079756205798804 -6.250719957792922 -1.895401907820448) (4.621819194493711 11.46343647331992 3.386779033723362) (0.03292409174444456 -0.1006699923486825 -0.02024195935192561) (-0.0780204852890905 -0.1124916937430505 0.1947954241242249) (-2.638902633204172 0.2024907653458411 -0.4626638357177258) (0.8817454634605357 -6.551326015964798 6.871530086676331) (-10.01550638466088 1.296359140932703 0.03804548931333446) (3.647597985037937 6.183157953593303 -2.828196973383456) (-0.00279742429154739 -0.3918521639703552 -0.3273818196846801) (0.6867444071751378 -0.05347894202872858 0.6326317057082995) (-0.07904766359759753 -0.114879437510306 -0.06589465098229194) (10.42160752991532 14.1461108495367 8.113996720728208) (0.1233634310423241 0.0859872522675358 -4.909351963378548) (0.3389148848360963 -0.03373897977750698 -0.1276486623220713) (0.002606246689676918 -0.0004551618626571243 0.0167814191453113) (2.634839839534896 0.6949214175540203 1.056134820464146) (0.01265646123774418 -0.002666084121733848 -0.01608548311459643) (0.02008603136615283 -0.0003963606393796552 0.04995856894051007) (4.043137741265401 5.420822634124901 0.5819202103948489) (0.1730029503686291 0.1351420706659236 -0.02094449675927602) (0.01152123481161097 -0.007967017785625925 0.003236719181850494) (-0.005124632871906828 0.04190420026268558 -0.01078946217480028) (-0.01588747804498597 -0.001525029429996832 0.001107873909136857) (2.64629574709457 1.126185209056349 -0.7082139922967925) (0.6602785067917345 -0.8723589666552652 -0.8289856693997817) (-0.08958761512172507 0.01001512932685093 0.06490661216167193) (-0.004634314208805668 -3.101796132963279 -0.9849792570601161) (0.966581871006827 3.610751750302489 2.24686186581813) (0.03587368022343582 -0.009349947290623616 0.01347892281950539) (0.01206273287861032 1.798474131438699 1.191931120282113) (-0.09454816981466486 0.1637157323457908 0.08197699680422296) (-0.1400446160439669 -0.02226143579312143 0.02172157120761008) (0.5868295111046034 -0.1347203404480769 0.3358369031379529) (-0.0277455294158355 0.04787107947300008 -0.09545276368684549) (0.007986115783827956 0.08958749081246718 -0.1161561674207834) (-0.6678360296227386 -0.6525667886055768 -1.548914546818123) (1.174868647766667 3.408421927916632 -1.251746235085699) (-0.4315701498737817 -0.7631213832106764 -0.1441365882885526) (-1.131280197309887 -0.2956038402017981 -1.827326398684891) (0.4356674760934325 1.035513020844882 -0.08839843110402321) (-1.819863902115081 -1.192501119150964 2.445101073960767) (-0.03073612131909217 -0.01370392263837194 -0.002298232868279963) (2.99966586155523 9.814336587519348 -1.010065321637591) (0.9432086447133119 0.7177957471738918 -0.3015279055401416) (-0.3328158254934793 -0.1994040891730847 0.4597203727346423) (-0.08030610258398974 0.9046911419040944 -0.3556983615464748) (0.0676151407131434 0.05477687506341376 -0.01428500613698157) (0.1911541209972964 0.0002623772233683527 -0.0118226848531487) (-0.2352213552706937 0.909361222066307 -0.4153494662217368) (0.2528976807810813 0.8342898894312778 -10.98803431938954) (-1.548046910654779 0.3309578159674183 -1.358819236237598) (-0.1376821975700732 0.1689982193661146 -0.04338328193119131) (-0.03763558972574947 -0.1216721383375333 -0.01286886301103474) (0.6264257550720691 0.9406929434912226 -0.3216496948505207) (1.052557829167417 -0.2344982875655898 -2.392560477901506) (0.3105350276260481 -0.1542876533892204 0.01488059340882762) (-2.436495810739261 -7.317726323745602 1.11666955182174) (0.784229726152684 -6.536457463357054 0.9792348280027561) (-1.536070984363211 -3.750259815499646 -5.461361630772752) (-3.458124284145848 1.467726324689641 -3.274880502534787) (0.2426170252049624 -0.268158866823662 -0.1143754800527916) (-0.1248704655572857 -2.156137498843364 0.4323494867074675) (-8.117353941872377 -37.49868776562325 10.39835015185415) (1.507427515989965 -1.812322599639985 -0.6725534383956162) (-0.7179878706711034 -0.990007002568806 -0.1810448512849383) (-2.868392541697403 -1.399917069559169 0.7203606636507385) (0.03938069536417833 0.04072598769765653 0.09398672170975185) (-0.1561688063017146 -0.6270172494052841 -0.06833104443608534) (1.998693502888766 5.798327560523367 1.500407214088009) (-1.833801455975291 0.9056085178639931 0.2951070793177963) (-1.749566530126316 -0.5336429694901903 -0.160283990604041) (0.1953479927689634 -1.323110847894478 1.073449782679997) (-0.8133580023360826 0.2090522768673941 0.3990349522855448) (0.1174270156335847 -0.08585649157881356 0.05404773733127536) (0.2338437151951941 0.01522290442858326 -0.0384569697603627) (-0.2419451855134118 -0.04634764746936115 -0.04285123357665816) (0.3197955340266789 0.4146305705595568 -0.03306962519166032) (0.01529317379497898 -0.01581450274740471 0.01163470122146066) (0.1478013072369942 -0.01457555548928119 -0.09995580831006376) (-0.1019174472514752 0.009936328266715568 -0.04323148483488251) (0.007262330517094844 -0.1044181623165676 0.08668100614604715) (0.1379099505140389 -0.1799982008498738 -0.03845063090206384) (-1.268758749473396 -2.557862770548557 1.526960863141375) (3.315606747148331 6.995512898686665 1.541789580140647) (3.79229941875428 -37.58133578988485 -0.3904643408581689) (-3.4580812885145 -8.739478033729439 1.977923411941526) (1.124634710582303 3.170546627985257 0.53191194906907) (-1.610992062902913 -3.040649265722796 0.8538099077189131) (0.422214293384875 0.2606806904483045 -0.3477551541848779) (0.00480542662750808 0.0002899562063470168 0.006854766647457329) (-0.1893154829431415 -0.2938366665141676 0.1748072083989619) (-0.1359674459571479 0.111899767575212 0.1004462961987899) (-58.59089769549951 11.59872876500798 73.06903913620464) (0.3098035332344016 -1.290047058319369 0.7281403094650991) (0.004463338486637142 -0.07315778984991431 -0.01094734054007549) (0.577643526553323 4.041504142911219 2.274556913944177) (4.556498272406417 0.7075700659679796 -1.576198429890344) (0.6987444323782838 -0.03647437410662971 -0.1392727992862297) (1.732922099594034 0.3597514873433175 -0.966376018695434) (-0.06555953164280945 -0.4309583401295938 -0.6604814874262246) (-3.695552182691706 -2.561932796201881 -1.339180182864159) (-0.5487593341126534 -1.226988446709538 1.126494003862129) (-0.9084123609779011 -5.634278279467407 1.796463143629478) (0.1041864524225007 -0.005660924333561737 0.01453151050862006) (0.2308788830432134 -1.976719988621969 1.063326644163717) (0.337293421849426 0.271702968664112 0.3275499210322431) (-0.4624896149042574 -2.026028717655972 -0.5942998871944731) (-0.8308478106110257 -13.79344502815082 -10.51473804277919) (-0.07487952544579157 -0.4061476588397279 0.08015548763966082) (0.5235616383576247 -11.74173134786127 1.294582720346101) (-0.3477384397681552 0.7900666012566844 0.1507577281476972) (0.9479261262599364 3.62002336070574 -0.1857796619135414) (2.530907429451772 -3.118569343951763 -1.204531905221346) (-1.525078723564562 0.06867444525719213 -3.880086782247495) (-1.017857162821439 -0.0730177471015334 -1.047163925463976) (-1.747210474649914 2.769203769047024 0.2161448384678791) (2.03586161323589 2.698213328415326 0.7041669464570899) (-0.02207909504424051 0.03463004592110251 -0.08209420831712293) (0.09573686229024164 1.097281972856577 -0.1080769805970904) (-1.370120607694743 2.21004577974467 0.09589087405934048) (0.1951864237213141 0.011554577099196 -0.01865627432753379) (1.491881497073557 -11.70324836231315 0.8322750328793322) (-0.2009140860405385 0.4056080176158942 -0.7999111681582601) (3.78592131455134 9.339817837783018 -4.864082872728346) (5.855635998086242 20.65034260228465 13.74196144791551) (-0.9334754227607092 2.800906983086866 0.5681077065724152) (-9.465023066608103 26.35220902373707 5.984738967343102) (-0.5799876254835677 1.546243593693575 0.2302190708895925) (1.34060595370516 -0.538666248290342 0.06284035627099024) (0.01282014347606827 -0.1636442414334671 0.7194706401067938) (-2.019233875616479 -38.70737891874619 -2.546225879210874) (-1.454366202412088 33.19492034550312 -0.1097748937086485) (0.1462457992257076 0.1251010990150849 -0.7717122240953371) (0.3743801566919184 1.832195618031417 -0.4563926089790746) (0.7965818477125672 -0.3298346900731534 0.5493240724891795) (-0.3524237925353011 -0.004682290034320011 -0.7677205707621879) (0.10067124443123 -0.03365848916319927 -0.200144211938614) (0.4872418042114814 2.849698562113684 -0.2867784943970244) (-0.2929388293078763 0.6240273457318923 -0.8730338942099165) (-0.007271033578218079 0.001786436326799087 -0.01298195959807958) (2.012755353875624 7.345915569189525 -0.7343942512214678) (-3.633915923291332 -3.919994954886027 2.698108852494982) (-0.247985069251053 0.04388334663258863 -0.1198985540215281) (-0.1588517438218511 0.2946000915402131 -0.02627543311152797) (0.2806240628416226 0.343431442229694 0.6297851271334195) (-0.9444807822483618 -0.3572076683042144 -0.8246630273371742) (-0.618612910193308 0.02332600474520741 0.8313093956114044) (-0.01104779152461538 1.11825651117138 3.680438789754851) (1.54090926222821 3.245464329289725 -0.2316281695606964) (0.0004599528741972315 0.02909841177262146 -0.007464382063342074) (-0.8974376276170675 -0.1120056617987477 0.2664616619067077) (0.20873274591413 -0.004923711407055748 0.0409293943989992) (0.04386105835563964 0.9894214629804797 -1.635816164385) (0.4457145122272526 -0.1332405073527566 -1.678812020627348) (-0.03634956504563169 0.005961844101213698 -0.006929026537004726) (-0.1872772403407745 -0.5344451614176023 -0.4672578588612574) (-0.1547355568341729 -0.1348950422914102 -0.2935596402429353) (-3.707977901438931 -1.017074879886826 -17.8242584874721) (-0.03010937861091649 -0.0230833567918395 -0.00668062982322871) (0.01218691155037104 -0.09020493080096675 0.0491481399124887) (0.01051929272012819 -0.1140214423758768 -0.7576009349025244) (-0.05393129873525702 0.1457356603580682 0.05348545589394064) (0.1028816851765458 0.219894420200382 -0.1536320920859328) (-0.818059588380009 1.380090150742935 2.321413726311976) (5.053257406464171 4.012597706282241 -5.38224714862227) (4.274226575964041 7.617327481060999 10.22484852427986) (-0.4711619703736092 1.218857948132799 0.1599664708096035) (-0.1683562300855203 -0.03135933754654036 0.003848424061791639) (8.699196868357868 -3.182924244161804 -0.680729365170742) (-0.08082393377976013 0.145647528926587 0.2092273223329497) (-0.5626006561898507 0.9750604643317449 -0.1104751941017985) (-3.460236305383297 14.87099616114915 12.44888098735816) (-12.86404738690073 -21.43344542101828 18.73965422860528) (-0.7862970609752933 -3.911705606262823 3.376588609976285) (-0.3069317024733971 -0.5851609237932249 -1.220514625273304) (0.94375149288091 -51.96591497489141 11.32587871399126) (1.459311741544192 -8.6028996678246 -0.1874908844913368) (0.03312406472343 0.07333750902261157 0.02152083248829326) (-0.0937104971843338 0.1208400011495045 -0.1340883770007344) (3.2583741889877 -6.15425836012392 -0.5110356307267638) (-0.1065562568900383 0.03337770314873752 -0.01161645159023784) (-0.04122445024729154 -0.010141459088493 0.01814227944854555) (0.04073182300592096 0.1623311690559212 0.1020241774528579) (0.1206672648664795 -0.004436821977912311 -0.01387208725807942) (-1.422195849836361 1.273312145408851 0.2692875625300098) (0.01096360150863751 0.3732943338697018 -0.4753672519739167) (-0.1365270498135258 0.04444523533003477 0.1378137984810108) (0.1088336425500946 0.1812330924780069 -0.1301752637587842) (-0.1696432162641305 0.08537541337879351 -5.280348766148255) (-0.05400368108623035 -0.02774030469533367 -0.2753964827551339) (0.02137665900808897 0.02687401933407646 -0.006475239192295426) (-0.05242511344223963 0.1386726315738204 0.08867358722667924) (-0.04889514239966771 -0.008679033955588056 -0.02131033811218554) (-0.09787070005629228 0.191658295449815 -0.2785931385082323) (-1.454036645308193 0.1242506673945944 1.79414180004576) (-0.0207709704993439 0.1193911726543581 -0.316801226156982) (0.1846546134654684 -0.2045492073527759 0.01188442729750672) (-1.821594740166609 -0.4781751249635606 0.08662584020585952) (-0.392711432875473 -1.168427333861004 -0.1978863118961657) (-1.371567375853939 1.270055014634323 -0.2090450861598343) (0.03880186438261355 -0.1138627797195304 0.008758433884076378) (1.952086867464204 1.057463818445507 -5.295609696753999) (-0.005462929949630071 0.02651024394198801 0.0005305390952896937) (0.08036667033109911 -0.007760617237963636 0.01052391163006032) (0.0622639682755346 -0.02912114387268 -0.02738874478123556) (-0.01904563513250079 -0.01695175538705976 -0.2292409282495268) (-0.1363461895730321 0.2530391235746341 -0.008791617726508855) (0.03402294498380723 0.05972242798262492 -0.3448463448402628) (0.0003967584593063938 -0.0008539969161537302 0.01718886405591621) (-0.2246763893575207 0.1538818487332296 -0.6088750459623402) (-0.03620302592945593 -0.01396008353037364 -0.01507788609084747) (0.05203618270001643 0.1147526127441773 -0.08307731391706988) (0.02665645241058366 -0.1461017307556799 -0.1960411489760952) (-0.3467134431545796 -1.301857154353912 -0.05404931436383004) (-0.0001136149992479185 0.1309219722536945 0.06632485193170425) (-0.1128511776647327 1.294819189753621 -11.68570309020492) (0.309336672261554 -0.2298100684522905 -0.3490827869558581) (0.1265396553741129 0.0107926749636129 -0.08048394488018337) (-0.4195487726947581 -0.7376578068192409 -11.89003229958329) (-0.4732733694497327 0.1696071516142389 0.0003990244796309717) (0.06082005753692242 0.01586349714702021 0.006635948890344086) (-0.7286406514660873 -2.784225369537921 0.1752970318030385) (0.04541088186740443 0.05567722497716007 -0.004599942737812114) (0.05789887158866312 0.03410222512991948 -0.004163745279238244) (0.009271867780066468 -0.02747045661494684 -0.0159875451553942) (-3.387329286604001 2.08809390290604 -5.292902874844868) (-0.01072795606706873 -0.009488070458699911 -0.00732468720184758) (-0.2230547375742707 -0.1291926647213921 -0.01185971218388195) (-0.3807739556905688 0.6612872251719466 -11.51751094813456) (0.00773051657307671 -0.02917075754222054 -0.02017339387731875) (0.003791702350186842 -0.05465521289990985 -6.516008196437679) (0.001741443795911712 0.03522213693945265 -0.04076948238367126) (-0.01602864265322448 -0.05571557673305445 -0.002289004493418175) (-0.00427216672751206 -0.001586886843785308 -0.01231945023580907) (-0.4530031280271853 -0.6111489490534984 -0.4119927925427772) (0.2725777395668359 0.2845602039475973 0.1231211480767641) (-0.06998449892423227 0.03054001711064879 -0.01281547201057312) (2.210042882693153 5.31471911737774 1.693520065964667) (-0.4083549934577611 -0.9440433678839623 -0.2661056685982497) (0.3300012785444971 0.3779513545014017 0.6571714683447684) (1.671244805155847 4.726754007764621 0.6987690068332555) (-3.818250525307812 4.284683752417263 -5.229429705679834) (-0.4480342003381501 0.2637376596887215 0.1268224413441152) (-0.04375888670958691 -0.1321779118160858 -0.1331900418520119) (0.03742469260564903 -0.01582099174171435 -0.01146654989666387) (0.01593308409459281 0.03462753546420756 0.006186771117179999) (-0.2227224766786392 -0.07258862752918671 0.01853662712190879) (-0.07660076875993896 -0.1538547991405019 0.3879323797181592) (-0.5211450590317936 0.2847604786854243 0.2152403682042083) (-0.1596846547638934 0.1039857258738349 -0.9915709351081334) (0.2947504443173325 0.1058485843559024 0.08956630319743941) (0.04454300297615051 -0.003208935130957507 0.02585898205473684) (-0.02093211518335702 0.05801034611963381 0.05287839882513822) (0.04029648847467368 0.02305907800010916 0.005821922226012568) (0.0214284206093686 -0.001309308110977944 0.0006484840812439833) (-1.05170026018958 -0.636198895140618 -0.736969289674729) (0.04556701722397463 -0.08139307817277319 -0.05976495956285602) (0.1648317195767317 -0.0520428650129332 0.07332939077197732) (1.125029348009675 -0.1515634216105411 -0.1567787932637182) (-1.651372136147559 -0.07567121305513191 1.112977812964113) (5.026432236001595 6.512602770816569 12.57254992917404) (0.07114382110172848 -0.01370961620410675 -0.0008149779877743074) (2.316324165987815 -9.618146991485837 2.108688177592135) (1.885017129966593 -50.3722053914431 5.226833182860082) (-3.033064279688956 -0.7630505369998807 -2.264482082168966) (0.2981374904318822 -0.0475980870295183 -0.2933442271870891) (1.313619234872696 1.004607069082326 -2.075768976899599) (0.5964445897856823 -0.4568533478957428 -0.4784814125914643) (0.05899373528406507 -0.0142791509801737 0.03199818752796286) (0.03018073296081794 -0.03481590194560513 0.04100845215471342) (1.386047080744275 -3.396966489776546 -0.02015564278551141) (-0.1246048018556838 -0.09383097155604259 0.05815285779554052) (-0.1166716036626311 -0.147960919082021 0.1870234204534844) (-0.002365416788736432 -0.03900843836677785 -0.06555189165342777) (0.210720254446487 1.589469246109676 -0.7926307942449908) (-0.1414108027881985 0.2373236479797548 -0.1242542772098592) (-0.0003949901295336108 -0.01316311830255681 -0.0005225332668653991) (-0.01228414268270328 -0.02644675143948628 0.05225788355110569) (0.02917930346400637 0.03641739669419838 0.05681945557847935) (0.07941792646905627 0.00814791995416829 -0.08416702800051171) (0.01945859143515473 0.0331481703062718 -0.0796520548128917) (-1.148573543352802 1.723317121032734 -1.323010504402734) (-0.2536009658712752 0.3453621877609621 -0.1230836775075642) (12.27746261429783 0.1855904107351729 9.096743811858801) (-0.3087361446230104 0.4080790976018706 0.1785961898927763) (-0.3700192346996052 -2.775741715352217 0.9795592170532171) (-0.4870325608929862 -4.220375128925242 0.470316504413941) (0.01548386887801345 0.04755467604446947 -0.1689177226524246) (0.640571757476173 3.663877148660008 -1.782649876603718) (-0.5459746886608776 6.21342377788594 2.403526963624769) (1.162302448692272 0.8523942229844252 1.280064111416235) (3.524139958401242 0.2474703904777387 -2.927380870164701) (-2.599231030016328 2.97353993471071 -1.777844471092319) (0.8949613068107402 2.852681261299628 -2.889403634799641) (-0.252916051436483 3.622456816981558 2.125678282150617) (3.810825043792283 3.915419384721873 1.271704777403537) (-3.15416963586972 1.614313175358423 -4.881407669544924) (-4.232465754603711 4.007859989722172 -3.642759454351007) (0.04610047052708832 -3.133528634508544 -6.555761061615078) (-4.435679515032874 -0.02068293731527016 -0.9812769095674214) (7.186119450123533 -4.536726094662775 1.777976647985696) (0.5304809423787296 -0.3810181021896227 0.4982788063624914) (0.1110624153838571 -0.2069092728073424 -0.1143442320799627) (-0.03039185162885256 0.05941066995086639 0.1235904596768824) (4.307339205384691 0.5494184049815611 -1.664241075045856) (1.636192446448162 0.6760722669383971 -0.4929690758641275) (0.09206871951728396 0.06439181038781017 -0.06387852030049293) (7.727559087879705 43.80439905162563 -67.0051230718619) (8.156802565292688 50.17507636093964 9.617778986329398) (0.2152625672487001 50.10975600893131 -1.021992231988104) (0.9879855269875484 1.589722975388953 -1.837202208071831) (-2.29132596575845 -8.410167482661132 -0.3765399362506343) (5.049167673204283 -4.600732883398373 5.482156843869154) (-0.04119713172623697 2.395045077905854 0.5001310547765252) (2.483379515193191 -4.937009223265777 -7.037113578427058) (9.258433084452669 8.374369708079485 -10.36891622533891) (-9.087887410905514 -12.53561581770036 -2.641355376243913) (1.701046342453183 4.219126033767944 -0.9633518899465711) (-0.2658400475543374 2.964756995609374 -1.340379094532262) (0.06600039023462329 4.571438174826927 1.687791032724656) (0.5564780224969794 -1.068223611427492 -0.3014215949666148) (-19.51510412787254 -8.451068370622497 3.474830117924503) (5.898487236394669 3.312274601997842 -1.532291592017532) (2.036269322749615 3.323598434181648 5.966190229610332) (-0.4386471591694962 3.678207570214338 0.9848004012036035) (-0.1757797809595993 -0.3015932261634361 -0.304835352309162) (-0.07071203763108647 1.99384033652291 0.1219246143310061) (0.322154567867477 -4.40367333375759 2.851516807590323) (-0.2315600295797335 -1.828077085367184 0.2889629477902319) (9.775973744752486 -27.62808160840501 -0.3173739785277401) (0.3435515116644862 -0.1231733355698466 -0.1015172462328653) (-4.063477137429345 -3.501865927560554 -1.347483240451407) (0.07260368712833105 0.2174083178809804 -0.08460381242737036) (-0.06870596335094041 0.03363695753773015 0.0151795216383201) (-0.0009231459067845366 0.0166522103967399 0.04785638297570056) (0.1466774777261697 0.1313207092205125 0.0241291818607841) (-0.09872260855435518 0.05137318471960979 -0.04083226116000993) (0.002488722247998627 -0.0475077155703023 -0.01851428666428551) (6.647931820579633 6.178397779405701 2.647748759966594) (-0.2486630982949473 -1.40182510056427 0.635182788989461) (5.141914053897976 -11.14421954544639 3.821560392531095) (8.28207304204539 -39.27079877476218 -3.297356822458177) (0.4678441251191815 -0.4738100255273505 0.4683557116699034) (-47.87693017593515 13.71268946509783 80.09072941776132) (0.5457122304426674 7.478820593492535 5.186953977056206) (1.374087203343684 5.517576489593279 0.1126186460058317) (-11.17766189660944 15.39701848051144 29.75879211840115) (1.377783538651134 0.255239844330986 0.2970037898213503) (-0.4981893352761694 0.4550579048033579 -1.386512914969213) (0.3288368997492245 -0.5602819005322526 -0.2861233871266972) (3.846193638651357 1.559702048451642 -0.6622366530028576) (-0.04868587969702121 -0.3679839698583106 -0.4932750756301822) (-6.856384277472416 -3.991570176012884 3.559206665252866) (0.444307702063744 -2.597369884445885 -0.9323553870626946) (0.2497802156956927 0.2410279751361437 0.02699649242006495) (-0.07307736346456471 0.0216255541444498 0.07259537315185524) (-0.03569379305253716 0.03164239126746977 -0.1299967240377951) (0.02633644401635903 -0.04793813363743817 -0.01720115036839476) (0.3431761741414128 -0.2050380160226427 -0.6294032034920141) (0.07779164761460063 0.04026687611689037 0.062875935658205) (12.15764594551082 7.229513107548732 -0.5298240120067343) (6.258206784582551 -5.197861526330928 6.343708478956621) (0.3665683297934381 -0.2049114341334594 0.6039362378676681) (0.6190987792772006 0.4407630060057258 0.1572141620128876) (0.3589898451835644 0.08792480172347004 0.1844432492170079) (-0.0615898194469427 0.3512631791913065 -0.5635769113805527) (-9.474688417757612 5.795708552262427 -9.149992206853106) (13.69859654722031 6.130204762092913 -2.44729081218926) (3.317955846479478 3.386899463685232 4.360924678277858) (-1.598723644252037 -3.463884260388561 3.397161936358058) (-0.02340638097749932 0.1015377062615409 0.1502974635387474) (0.1197075497356772 0.0018643148328579 -0.02002442132976241) (0.2078568208686382 2.476829836908446 -0.9849388453851409) (1.754642289741167 -0.7652989117598652 0.05314378390396468) (-0.8897239922163529 -0.1488290732137179 1.285579418251689) (-3.055099275460035 -36.33814993257968 7.047221796150101) (-3.837352497559476 -11.14283264285494 -7.570423157719469) (-2.162067162545772 -7.169932626700492 0.5769659745262793) (2.491453643187996 6.825165755212617 -1.731181072074429) (0.266157387426842 0.3999275018746543 1.029251262881052) (0.1657408425512647 6.169196775287989 0.2436166600138555) (0.1616580884368819 0.5143747636838704 -0.477602490848146) (-0.3636479115799033 0.07870490612635565 -0.2070588386537064) (-0.03740401340822668 0.004323549151034167 0.09497445203321681) (-0.4089760861751466 0.4219359220013684 0.2671833277044831) (0.4156972525310545 -0.1114953283322537 0.03878845220246804) (-0.01968201124353139 -0.004738661707861235 0.002866945953284397) (-0.1768948819480387 0.4521696142823257 0.3286878851979696) (-0.2245451311498298 0.179232332879288 -0.04328779019485289) (-1.014680965261617 -2.006703494586402 -4.449181981321819) (-0.3737518993072282 6.75739533023533 -3.539410693106514) (-0.7687716402713207 1.027618629776154 -0.8947450409690092) (-2.501588750366766 -9.818445870089592 0.5760839013167243) (-2.719828670897089 -0.121239053195844 -0.4484817472653402) (1.090827428596359 -3.886940528844959 0.153976213870872) (0.1111069120840135 -0.4325924461306593 -0.1972978011685421) (-6.215222574471558 -7.773223226068914 0.4729562527492488) (0.03626583570758418 -0.03076697526969568 -0.1949654521668115) (-0.433998722245054 0.1932650311730023 -0.3322520467868246) (-0.4423943428804075 13.59836086121562 4.587590337512771) (0.0227050913814931 0.211136399113618 0.07236062600670623) (2.459629997836356 -1.17972163845573 -1.247385292024392) (1.027067087308611 -5.872721942530127 3.289451857559714) (-7.415705554386957 -3.855381754646094 -3.505637526319393) (-0.6798775153092356 -0.2554914324762276 0.08137823012762985) (-0.3215915656485963 0.02285502487385578 -0.3640485183082703) (0.01536766936264929 -0.01408010633714646 -0.009215003210802713) (-0.01396437824981402 -0.06772564804467147 -0.06568422533315807) (0.04690817008888003 0.04217016123141315 -0.008427469905763523) (0.009922685300739573 0.01163349398745871 0.04484033218186377) (3.280786610839108 6.523388998688759 3.81766160446638) (-2.562385123893126 -6.83296370949976 2.249812065928682) (0.1020459171768598 0.6516057165466498 -0.146008285102731) (-0.004330281126645973 0.0188008032696663 -0.02659996489950616) (-0.1135736391751121 -0.8816335248358556 -0.3366504355067881) (1.253832620245039 35.00663333111052 -3.864375578699087) (-0.9684789854036236 -6.289649943172312 -3.070333320872856) (-1.64044452187034 -2.286467050720505 1.181165771068407) (0.09696951352749461 -0.3459839255516237 -1.062859272458558) (-1.007050622154873 0.4968409920593504 1.715792992851513) (1.567011444102113 4.305105684657817 1.269312006873798) (-5.334424870963457 -3.734238311804419 2.450933035201467) (0.0219132954796192 -0.008406647547020507 -0.02877538750746449) (0.0009967354914790817 -0.008334050468308858 0.01164786419844217) (0.03164914463148445 -0.03652950704308045 -0.002686207369830534) (0.01011806255944267 0.04101551696396137 0.002471244182749441) (-0.2089140574231841 0.6090493455483109 0.1437496780469542) (2.94094569288341 -3.044703956543866 -0.6711089873824523) (-0.1506997139033151 0.0001271651306661986 0.0003046712456577956) (0.009009481285447731 0.02715286837781212 -0.004445812158070895) (-0.006811620839850743 0.01364327175227379 -0.04838906581212058) (-0.5611225520424642 0.8615908063525521 -1.719826746230983) (-0.7816685535354269 -4.300818723265382 0.4892657750530305) (2.246848448773069 -9.863560003438307 -0.2990376248873612) (-0.5493461346584707 5.214190629764739 -0.8569848876480136) (-0.4787131363432724 0.5889057776270137 0.06117056191513826) (-0.03483301737067147 0.1609707997570377 -0.03197842753588852) (-0.07608040585389259 -0.015140717493233 -0.03405327090605276) (0.2252231660124261 -0.1534894346804358 0.02365688192097744) (0.2796519768707134 0.2792498326282303 -0.005012618284908149) (-0.1833849534854155 0.02775899538483407 -0.06052272932141237) (-0.08246250212843237 0.1936075612593025 0.2676926713745) (2.880806773379995 3.913501123649797 4.165732126022845) (1.535002104840979 -6.193565710049974 -0.3050299133973599) (-0.005722435486960754 -0.01301023561003329 -0.03374873413972567) (-0.2984416520768881 -0.06399738216257059 0.2029317012232409) (0.01337512600506626 0.03671396641858011 -0.1209761607417198) (0.03113662184257627 0.01386010175275873 -0.04836533498170272) (-0.05734071395641822 -0.005396009554161502 -0.2514539104991279) (0.6612816559165196 -2.6048934301504 0.4254337207901618) (-7.864512737630346 -10.16804245250856 0.2891160376613802) (1.626567714644753 -38.19572698437807 -4.809295770430905) (-2.537979629591034 3.072397437882821 3.856472256851458) (3.582993361692465 6.288654389327163 3.622940353957771) (-0.8147477795621145 -0.5943582053919385 -0.6319837095278691) (0.4918395116261701 -0.6954839397104342 0.8630272574182346) (-0.8095801070457568 1.105898993103883 0.9912056277918658) (2.315732009917116 -0.1834755004229635 -1.043982998271026) (0.05256896787178533 0.0570744988109218 0.01075608445489745) (0.004012936670574216 -0.003406868925407733 0.0314961335342321) (0.01727346253386058 0.04525372573685687 0.01565817666410952) (-1.569091849543947 0.8855000299937463 0.242424474932589) (0.2160762594671679 -0.3234072797842487 -0.1048940431731534) (1.137573643072262 -0.3592219581721773 -0.503330779544118) (0.5032675970813865 0.2201628612994049 -0.3085154889364009) (0.05235913558312299 -0.01549495456204969 -0.03058398604635649) (1.74695987801621 1.051719070402236 2.670432612670574) (0.10822937013222 1.274546668869611 -1.77806076916323) (-0.5590613758694215 37.72481118821636 8.272593210452577) (6.005530697038739 4.104027602441232 -4.155927448476564) (0.5370964125153401 0.562597842417158 0.1891326843478361) (-1.013205300861824 5.87841607894342 -0.4721412739859674) (-5.673232509456731 -5.953225282226407 -3.182051832208168) (-2.11860553356867 45.81066717006842 -4.542087807807506) (-0.3023789400982746 -0.944977811221795 0.9684277782559342) (-1.838606391648318 -5.588406780483282 1.172269772064446) (-3.142531015300579 1.8187782937052 -0.4191968732909597) (0.8551201984374847 2.007778664184817 1.803127191748606) (-0.3373393300154132 -2.057224863915981 0.3798079595249766) (3.07308081602278 1.511831936086751 -0.03445827950496017) (4.297461954889359 5.733206319796631 -0.0835752664136597) (2.062870978885591 2.979828880497581 3.820032527010199) (-1.316315527447447 1.584241755516408 -5.235788791750259) (-2.231516559786551 -0.2745848730342273 -0.3447123426955765) (-0.2757841899112687 -0.1971199141451825 -0.05067281078658087) (0.1450076684288758 -0.6759103265704616 0.226560614191874) (0.8537935885167307 7.338805919716046 3.27672890659837) (1.758197627195947 3.838402952457339 3.193665653035503) (1.242416913278884 5.909304376035019 -1.527251452816167) (0.5075139165522438 0.499061096846667 2.472922141369002) (2.900207030701011 -0.4753657348266385 -0.7708591383612116) (3.544851869576576 3.895148776271144 0.6061100135366301) (2.087972408732178 11.44003368125466 -4.429215640503592) (4.522869763396455 4.410772423684058 -0.872633158135527) (3.590874795039579 5.453643672718167 -1.948452141223015) (2.706173713312977 9.976999499200149 -1.164689238897215) (0.5466833900721561 -1.021307641071758 1.18892758901915) (-3.404930133008945 5.829016770274329 1.139675049857169) (3.217889798138174 1.517454386979556 -3.553094082537311) (-1.43800064296278 -3.195576190099821 0.9599614930023037) (-4.924739546873762 -9.986269785764657 -5.187023004894339) (-1.639368182419974 -5.713751792445284 1.769399504789501) (1.071275506785736 -43.09402940027672 0.3165771600943074) (0.4183486995005274 0.0333403582596276 -0.06140069366962105) (0.6519292082493873 -5.802229765027169 1.612295095483079) (-0.188816799982109 0.1457454135705913 -0.07237669699650054) (-2.110451875407058 -8.126933921781168 -6.075010735103399) (-0.2837758333632135 -54.17794344473251 -14.4838843625571) (0.08090449857727447 0.0318859706616212 -0.03445587043311383) (1.232881383860469 -0.5671260990628677 -1.252888954426505) (-0.2525687755025461 -8.750280796029624 9.101184640281732) (-0.04372814207504119 -0.07795856942931011 0.06449411950573469) (3.703596788896979 -3.12105828419931 2.060617056213906) (-0.02413055182085876 -0.04466678255321087 -0.03101059460240854) (-0.08646549672408632 -0.01592995101758054 -0.04512662608125246) (-21.23556359884848 -19.76310447725623 23.00726043349028) (-0.1446900112608238 -0.02521465739231065 0.01703292187490656) (-3.866282745289073 -6.575573247487387 -2.700677727279285) (0.09703732856965887 0.004444392664756387 0.05902545976931516) (0.2015852431288144 -0.1407524278617662 0.0285331254147995) (0.04123659836530656 0.05865114191637007 0.009878660726751006) (0.6399481595957379 0.08724532710205707 -0.07217314170746594) (0.1002867101118123 -0.9070131780047689 -1.124015368504882) (-5.64949277408122 -3.364657037542697 -3.406509559888722) (-2.324760885033103 -5.024591455427353 -0.8421881483347702) (-3.331470067576821 -6.754536891502291 1.874305000185923) (0.9211349101450648 -10.76086144746067 6.489179991165819) (2.418423696772176 -6.461602232447306 -1.453164716450341) (-6.544593243059176 -27.95911248657571 0.2344194813989446) (0.001598823240296856 0.006617609167209325 -0.01475193538724948) (0.05584070963309355 -0.03493638630205757 -0.04090202737773681) (1.114597764771792 -7.259599356046616 2.936971727047823) (-0.2263725207174305 1.098340556142223 -0.7235729479585005) (-2.852400042383007 47.81151976952167 9.506350447412567) (-0.2487669938145364 -38.53053076142854 8.981785249534095) (-1.161667402048604 -11.87636384331889 -5.545225455553481) (-0.06755612275996509 0.02285427765762552 0.02309884888190335) (-0.09066268590985369 -0.03914513872812171 -0.0430828679000367) (0.02910225418847046 -0.1108611122267607 0.08177409463830534) (-0.08750292273028598 0.02662919848408793 0.01515703307891069) (0.03297713579267132 -0.01488485730309137 0.0009883901406177657) (-0.172795009641522 -0.2202821941057077 0.1932893585706) (-5.987191826570783 1.190183588651202 -2.517155344526004) (-0.1172077563631305 -12.27260925680344 5.594125167576699) (1.466089714378963 -1.023175477150763 1.787610021828513) (-0.2886203545675208 9.794568047897759 -2.227469805544954) (0.05556438915875668 14.76072299159943 -0.5554565788052727) (-6.868322034358894 6.705269505732413 1.094954355529701) (0.1827585051836747 -1.181737314253457 -4.198556292695469) (-0.5419860093041842 -7.780092928045286 -2.657148575374383) (-0.6578271609556003 -4.650332396946676 -2.873766067207192) (0.6418154213546005 0.4677012528542115 -0.2315850366601479) (0.5471481340820371 0.1884237881475748 -0.2196307328140535) (0.03638875221229886 0.07818267487721493 0.02493648840450397) (-0.1054652230218251 -0.1367749879776462 0.02308809570866009) (-2.601525674683292 -1.18466544651482 3.713812216649823) (-1.431279116836984 -7.502518477267051 0.6835363036120119) (-0.5115024699667433 -5.548162954229332 0.8080964933149134) (0.02315875487654438 -0.02729600695008633 -0.01583059504947077) (1.435531458324598 1.801656949073273 0.2670464010569494) (0.1642531026970243 0.1738009238061604 -0.03253349527035931) (-0.2797117372595871 -0.3370533758235111 0.3538319234799113) (-0.002383648760120424 -0.02760301428886296 -0.003608013740144113) (0.003630771688080325 -0.01301293964935955 -0.04609315396678888) (0.02402601339050703 0.1448553690761685 0.1451354689890947) (-0.005194214836516962 0.01859609712503171 -0.07485729977931807) (0.1425073175679421 0.1802538204684725 -0.1365875706511402) (3.565789062527299 -3.554575913952044 -3.149622817560135) (1.28020025046588 -7.042266817199879 -1.880697928588174) (-5.078413522749708 -18.82329477747792 -4.2492910558456) (0.344554421482046 -8.755617312044407 2.614128608494246) (0.3647322097685807 -3.914169155636192 -1.795974221001256) (-1.21237254790801 -47.15550331749052 -3.40162321987772) (0.2142317357489181 -1.978870284648307 0.4633245414634581) (-4.511630236327513 -2.85628252846756 1.781990096787499) (0.855104145305227 -32.40228195121016 14.00151657355496) (-0.08597440878190138 -0.948411904697271 -0.7043955479400134) (0.5386094281811538 -2.406534212937622 -1.534087005995433) (-1.380946959597734 -2.226257526439902 0.6218779439463036) (-0.6941635838369946 -2.027265489850917 -1.983079509850528) (-0.004906434283269756 -0.005229214232465634 -0.01270039123255221) (-6.39207413071159 -14.54478782403067 15.67974044795194) (0.07788962206044839 -0.008872612972730273 -0.1571296444348335) (0.06757066876845429 -0.1944513493281587 0.04712093375364369) (1.551782592271269 -0.6137675935276962 -0.07719441818015782) (0.3051395293751874 -7.127430742989848 -6.63046076686113) (-4.845314034832627 -6.902346236102586 -3.354371738165067) (1.58555530303497 -6.705111801030152 -8.982043300511862) (0.5848618614357088 -0.573910500356047 0.02493280351458469) (-0.5445466241074346 -1.251910595862378 0.1316319205003636) (1.272345299755242 1.658316661975242 0.7466419174454859) (-0.5188505956262974 0.1868659224613969 -0.03334460748693141) (-0.8069929089699329 0.9330371353427916 0.796865542519008) (5.507131048849043 4.506390904317106 -0.005718588821701454) (-0.02137373496833027 -0.008567237687336374 -0.2738762298376575) (0.05410956724047963 -0.1789805242815677 -0.4690903509705557) (-0.2291418175520095 0.03321588184134313 -0.2329645969220855) (-0.003531742315036686 -0.02229212683236515 -0.02196009105276577) (-0.05049044073794327 8.557250255575456 0.3607736897229406) (0.08031360096392594 0.6499431188623135 0.1046238981025707) (-0.08418469644137942 0.6447387300859948 -0.9642856637160259) (-0.1787881424825267 0.3319117856354119 -1.237237739405467) (-0.1211784582631627 0.1996714169705593 -0.1240232146656074) (-1.696159825691291 1.100303474297868 -0.5442875166717288) (0.02920343107157818 0.01144918240739783 -0.008917812614541391) (-0.02793180436844478 0.01204688427018903 -0.01068790241655551) (0.1592210586797433 -0.08194148177045892 -0.04181848674520299) (-0.04579855738248444 -0.09910309188024864 -0.04009925435618905) (-0.15917095646915 0.2245055833142037 -0.1477979439726745) (-0.04248714603791864 0.1566539855941266 -0.2466529526544299) (-0.1721753248269119 -1.302856137642263 -2.445744039348736) (-0.04882556133622268 -2.925746135310908 -0.09133794499258543) (0.3185823062990122 -0.1074392957889329 -0.2345455936494742) (0.2476318092830327 -1.083371075911837 0.03869244356441126) (-0.1072104932426093 -0.000256269855374908 -0.06797152283576803) (0.04638364661980087 0.04916112775743034 0.03057864187126559) (-1.78573081091838 -2.708556031291427 -1.279713003890756) (-0.02477977387794941 -0.01007005798343281 -0.0223308950988482) (3.229587038320626 1.741385013771288 3.885987756866435) (1.229838119817063 -0.4277998593544521 0.321430171955066) (-1.125459693722522 0.056090731096288 -0.6758863964862669) (-0.07838045028101868 0.01731602103658308 -0.859470225951056) (-0.1216541973695411 0.4601282243794161 -0.2883631131879184) (-0.7991438967856968 -0.6830064179430652 -3.129259473092579) (-0.02181960115823047 -0.0403531729088878 0.02112771847103539) (-0.06650884809553675 0.05689018481768159 0.003636510944827149) (-0.1027748958709193 0.04946241053831491 0.01032209826656643) (0.2107115910853218 0.08904378110054369 0.05889845458281278) (0.004966780114206315 -0.02975586251130879 -0.003424990339756036) (-0.7609481506803155 0.07476022896060935 0.02730542365305187) (0.6542616366192026 -0.4126099382664564 -0.3446095057955587) (0.2339085801098044 -1.67341411314625 6.350563836450343) (-0.001069300330585544 -0.01068484475375161 0.00175929632250522) (2.481982464914882 0.4115874231779229 1.705648996171123) (-8.404167470654393 5.856561381053723 -14.48063537455309) (0.2662542535196495 11.90316025386831 -1.696542966594687) (-0.008131461834222718 -0.02779939433468924 -0.02594092123315049) (-7.040546272501318 -26.00174037229377 -0.06492592356303795) (0.02501497162212558 0.003104409058524864 0.006575744687882005) (1.101883904876636 -2.920698335352351 -0.3116110463644748) (0.02339526658497261 -0.00234961764473596 -0.01143952715399052) (0.01910209219548985 0.004923869324095206 0.004613136198301454) (0.3196565460740576 -0.01953116193202929 -0.2733158350066489) (-0.0544373897959282 -0.1050508419910617 -0.01211680053611097) (0.05081515799014436 -0.3322167238499201 -0.2413464463975057) (-0.1129098533093993 0.2249340489572856 -0.4723994892553469) (-0.4186008446299539 0.09083756215172301 0.03080126887875259) (-1.846809101961551 -1.985209472481563 -1.096379021665993) (0.03833060298654375 0.6082519746524315 -0.6367170820982269) (-0.3668728308406081 2.429598148549815 1.838026865241496) (0.4831095997114387 14.81659712040237 -9.894022554115331) (-0.03943738343898851 -0.03813304476028219 -0.03325067536949931) (0.03426501781412045 -0.05660345220170052 -0.08273086944080929) (0.4200210819022542 0.1270891482763995 0.4181093536831375) (0.009071816923063766 0.01030057223557328 -0.01151982843188488) (0.08061520747117507 0.04129983714672469 0.03816454023499245) (0.1861612335831286 -0.01828270446173089 -0.23688789903326) (-0.4382461149049334 0.02648331384712904 -0.06637297030745712) (-0.06263431542203486 -0.007021745877644814 0.002336053062815455) (0.1095100003270547 -0.00720543676889553 -0.008487340114550277) (-0.007346697397256439 -0.0102539401521205 -0.04419586722849509) (-0.001757498253588948 0.004581956132439505 0.002007428796460956) (0.007596705600062616 0.005485623043809323 -0.0003595105130186566) (-2.332296471161894 -9.557513910397322 -1.799456580112298) (-0.04014147554391135 0.03121122717586176 0.01487157213009522) (0.02927534475052471 -0.1593944662345495 -0.09358958247363489) (-0.2383795706905547 -0.2156028174224013 0.1226210822712644) (0.2821455713214103 -0.1376969157774773 -0.01831784099068659) (0.01330459222749564 -0.04143664836293195 -0.1028574273154966) (-0.0771960318300642 -0.0449778203599283 0.03343081486470287) (-0.06156912308963162 -0.03174879461063794 0.07268345983264723) (0.004989901859441434 0.006444715857576423 0.004695073944655184) (0.2085614132622028 0.5729522558957075 -0.201626417944563) (-0.353347158187252 -0.3439832512995994 0.2038534222350362) (-9.754440381785756 -1.541206170325909 -2.635943332821558) (-4.564833556235394 -3.281567948647742 -3.192504395683632) (-0.6127625729454366 0.115645575305378 -0.5540558823753391) (-0.4179086255125585 -2.03811197040134 -0.5672862889560349) (0.02131834260756932 0.2005438084814415 0.0985348092127605) (-0.2189582450032656 0.08308558146852317 -0.002057730433194035) (-0.02792754363564569 0.01497749859732762 -0.01490395172425572) (-3.697410331805221 4.692829555552946 -4.314884290810844) (0.007329483225856685 0.05794309427398402 -0.01851044195866537) (-5.188837258952471 20.19249973215246 1.462018191317479) (-0.06552988373361501 0.0248047127463737 0.09331592166773378) (0.03122363703334951 -0.008677542365512176 0.003359439413853293) (-2.578121513194848 -9.236376810028151 0.8137256912099717) (0.2193164557159321 0.2370510161078102 -0.1091563449023262) (-1.779241452931019 -0.4786655769606427 1.569244043691854) (-0.1085841420638569 -0.1897048718493703 0.2241101152221966) (0.01301254589756769 -0.02038106409583847 0.02085478846160858) (0.5298150001157748 -0.3465638400587095 0.03914793888362209) (-0.0107566263482977 0.01912649404701871 0.01219142516511351) (0.08546113164221096 -0.01023691734399728 -0.02129075473584308) (0.141332401694143 -0.1065292870918045 -0.1615807985375831) (-0.01182166455832117 0.1050821201317491 -0.05327323243114258) (0.8456131310692199 -0.3652299482720557 0.4753809076629426) (0.3998855090668013 -5.524389101119201 4.146803466142259) (-0.09235029055062756 -0.07536736225505593 -0.02085829536947486) (-0.002206311469290734 0.04147544262654816 -0.04335962132427626) (0.1843223935019394 -0.04914787301187833 -0.05301994603131617) (-0.07301169164460285 -0.05330152926879973 0.1064949419311721) (0.03370837780682193 0.04097174028770691 -0.03327886857948847) (-0.0452256765765872 -1.558763551905151e-05 0.05274440755098461) (1.612716722703027 -4.063259656574638 5.660832826001879) (0.788915351836434 0.5458362654215343 -0.4261342366803252) (-0.04001009934007562 0.1190459400494197 -0.1193327055754878) (-0.02038644926436818 0.008007100113305915 0.007646561402689467) (-2.480916939598075 1.072546802648627 0.04187431187857815) (1.421280156036229 -1.947311726519155 -0.02367665431146468) (-0.06645590988100328 -0.02033962479084342 -0.01511985863913051) (-0.1206902350770641 0.06395861561794644 0.1709259885030688) (1.096187999194322 5.663091318630259 -0.8791488414653916) (-3.604456513321694 1.304271856165484 0.4819344257856442) (-0.08134175627308922 -0.009144243792542996 0.03490405748910411) (-0.7478758593633853 55.96903708040285 -0.4142295743464655) (4.112557636886079 5.282386991058922 0.8297686096531304) (0.1709695334778209 0.8337475520378561 -0.2884031342717164) (0.1462491413869317 -0.08098397938341728 0.005547300876169553) (3.115699580139764 6.606931426007364 -1.875975562885154) (-5.890697315867645 -7.03863336439051 -9.321979410984016) (-4.469905216936191 -1.897963755083251 4.528343871852627) (0.2580451648864492 1.959820470971155 -1.604291437921098) (-0.9605709031409716 0.04209737808712613 -0.1261614952263743) (12.64049509070196 -10.32285094309157 -14.6224840760364) (0.6068532980753835 0.2374310000865482 -0.8120563551163023) (-0.8511739586286354 0.193751499249376 0.2294761530080832) (5.055010437104453 2.083653536743858 -12.60002759004201) (-0.06376050405370781 -0.2347925725747436 0.1340218240290103) (0.6824518544236198 -0.5817014556361276 0.3033015985369132) (0.497712736561635 -0.3784671243948728 -0.4397737047443572) (-0.3962666324011929 7.323543084358308 -0.1445695741306424) (-1.273477214306135 -3.372072785146949 -1.491698933702776) (-0.3370789061045089 0.1182158553362147 -0.1203368595522523) (0.09372638495317367 0.02001016293199063 -0.03430310220527731) (0.09082798593411315 0.03695328499790493 -0.006124494572999464) (-0.04724469138027984 0.04216815650039082 0.005255095058679458) (-1.364829393268321 0.2760756968151167 -1.327940671766372) (-6.526526463215703 47.46423548070003 -1.832637333385981) (0.6788508438587131 0.1777497421306919 0.6227463229487897) (-0.03965646000876329 -0.04781386824344998 -0.01929260736749066) (0.6357326580647573 -0.03375655337525817 0.6836881069691352) (1.342136314213214 -6.410725021461325 -3.046405446327897) (0.1983938684908081 -0.1057687422404465 -0.67708896679016) (0.3105485597715298 0.08448979500448453 0.01620344180524877) (-1.482671412269582 0.5212165944818564 -0.004828436461522201) (0.5269834855281681 -0.08730961692933406 -0.3356508128304764) (0.004427814549776645 0.02207918033574 -0.002058744199493635) (0.05518788058810806 -0.007700755848133265 -0.05622236316179888) (0.08927175228057496 -0.03666231085076294 -0.03438898278039021) (1.952440870174536 -2.813102309683556 -4.098605850925544) (-5.125005273699021 -7.851068032431627 0.667277688680225) (-0.1326378597722082 -0.1378880468103302 0.287527558034766) (0.6269910838925602 0.2707401710834341 -0.7207639746918526) (0.168692252569138 -0.2000337839521823 0.1007827137553614) (0.03330262408774222 0.199315936661473 0.1103138655922337) (0.002930151862385613 0.06055647367032571 0.01074972616706662) (-0.7782311811315318 -3.721317923926121 -2.304528917027643) (-0.254742814098506 0.4250468634593416 -0.5256305368788521) (-0.08775215171731582 -0.07259130175530262 0.06128072271105708) (0.01925440193809468 0.04677502509990313 0.0092017725996305) (-0.1788449558420634 0.4411132306127062 0.08590418776251302) (0.02229618606863515 0.009886524128600022 -0.007562004520195302) (-0.2849507529234795 3.875666929906381 -1.943504948097816) (1.958468630254613 -0.2231019952846858 1.329242532616379) (-1.151713172871782 70.4470730823239 -9.729979394390245) (3.532976232199992 -0.444589612459845 0.9920807462873662) (3.515189820360821 2.087557510506352 -0.2657586296937569) (-0.01136467341538715 -0.02112822966535852 0.05098350707513208) (-0.04515275087715084 -0.2020131491043843 -0.09908855745376011) (-0.7314557233693483 -6.126750673907281 -0.8021109607325532) (-2.623272321142719 -4.160462777699851 0.3491311248353569) (-0.9469776092630816 -2.526896906346493 -0.2335898681771127) (1.940198286674732 0.2787450621777252 -0.7329486406404159) (1.159830019332964 -42.95710907887937 0.6408220296429993) (-0.1050151168959954 0.03879547987437976 -0.01014982778122183) (-0.1474200657356295 -0.02242907127070876 0.1437397983762614) (2.804141514206642 1.807071579963561 -4.931288945661295) (-0.08391516340003168 0.113383663291805 0.009064025236591496) (1.675521371176849 0.5328716168631205 1.495446849608347) (-0.4740388529061615 -4.379754769492749 -0.1540279406938703) (0.08653892173938532 -0.2861159453106875 -0.2687135202305596) (0.2135084545254835 0.25278064127686 0.471910692437934) (-0.1402020953916356 -0.1600533287204666 0.2161180194070176) (0.1250898054479563 0.1737277952701973 0.122868900348769) (0.01599805652833294 -0.1234905554808135 0.0614273813773461) (0.8348219765439795 0.8017413167290822 -0.1700691639390738) (4.124612984956068 38.26276836203499 2.512662228429257) (-2.165010151760668 -2.46457445728817 0.5464589733405744) (-0.001637430540511308 -0.01368841123588042 -0.01032944015718407) (-0.9695592758902043 0.05990013719114895 0.4137839377036747) (-1.655969006487578 -1.765920946709636 -0.2724323313718406) (-0.7946770700072892 -0.9972781532954942 0.4847976046910494) (21.98328674266103 7.910903248917521 10.47195375178048) (0.0505831904899892 -0.002266214583080023 -1.19801834643175e-05) (-1.045857043555741 -0.4157634945854059 -0.5997079754472023) (16.35529627264614 9.643521985670438 1.945719817539462) (1.726937127909587 28.00566129092644 -8.726773816657037) (0.3464853939360982 0.005487367504850432 0.3330559378624264) (0.7429412182407102 -0.02385352416612853 0.3988936361500348) (4.588154222288381 -4.996810926519851 1.726984820207842) (0.004131351454685628 0.0002560627749542811 0.003779497955311242) (0.9235520895205257 4.280881622679606 -0.6328247952178704) (0.3896061471165014 0.03388628689025618 -0.2527934399018293) (-16.40756337153276 -7.98593576971796 -2.689830267554342) (-0.02354706504169246 -2.760695091054569 0.3176709468896548) (-0.09115194042344638 -0.1526263982213533 0.1882655541397186) (2.669304867540256 6.737710589536446 -5.148233881451527) (-0.1879762281029272 -0.03469049433445077 -0.3465587632769068) (0.1659803440838507 -0.03788377854349834 -0.1205383781839622) (0.06196909332085578 -0.4917226359714524 -0.105657536778033) (0.06380248594825354 0.08882872102054995 -0.2036190428480029) (-0.9350406085119041 2.302390212148719 -2.925854259484475) (0.03850460824503268 -0.07440716047741493 -0.02215613659184164) (0.03530062973903884 0.01658108924772699 0.07697598288729963) (0.1635467134621247 0.06193876482173888 -0.1382858877688332) (0.008084407589278851 0.004962605536136129 -0.0245687186853169) (0.02135825181132138 -0.008693586228194786 0.03165502604171051) (3.077161257875157 8.832203196501636 -0.1278801778075414) (-0.2227397825244795 -0.005662016856894055 0.1938920397757335) (0.1397944594643628 -0.01555975804479679 0.0667079520302471) (0.2777804284175624 -0.2398680696022405 0.1666782529579054) (0.03375417686529269 -0.2897061600593841 0.2310428396895526) (0.2319546716304686 -0.1254704638845299 0.02646768444915838) (-0.6373817993523501 -0.3579974036370634 -0.2699798220596134) (-0.1937644102049864 0.2042618826165971 -0.242989202382123) (-0.1225185925907434 1.224364966975651 0.02182234195574654) (0.3793310023953094 5.251101482851926 -1.082062634011459) (-0.7726991319300278 1.680215206524866 0.05087472526121223) (0.4531406611546293 0.07631454069182832 0.1476370328786287) (0.1503248825966686 -0.02345715588903931 0.01513066133469549) (-0.04628405378614518 0.03892032269819969 0.0003087487387973889) (0.02141601688413613 -0.003693882492734015 0.009041617321421194) (-0.6116874145986089 1.506299301043867 0.8020913430945575) (0.05579932590512117 0.03072460370621825 -0.1754762247596043) (3.491595781512356 0.222365745336896 -2.11452378701614) (-0.4707779170517468 0.07145715827821557 -0.02320091375515118) (0.1123385411517772 -0.01694911970307245 -0.008049647985097719) (-2.72751932171438 14.05036474207655 6.180244800145527) (-0.05000003771207362 -2.36833975446496 0.2821346902645296) (-1.866469900125697 3.273914962873628 2.467880348620505) (0.1422162825999898 -0.0311717226778062 -0.09233942301790196) (0.363773605501468 -0.2417306561705058 0.1267874233235996) (-0.3267087948506772 0.1793327759491163 -0.01385287426232043) (-0.4284086476926669 0.7284742139140299 0.4544963890305796) (0.1882170634170539 0.1213525233078804 0.1250633138443532) (-1.118421655996718 0.4348892536527111 0.2443024717214967) (-0.7587223653115494 -0.9247224928512014 1.705649818292607) (6.163775360294268 31.19957369549134 3.00479509828557) (-0.2382365739603708 5.416090118667519 1.220013618953348) (-0.5716514900854353 -0.2747371107980855 -0.2913094173062972) (0.1854362491017816 -6.923812887552822 -2.555193178505535) (-0.04230604451580185 0.03475697212242172 -0.03054133473948463) (-0.006010669832391388 -0.2272274871743103 0.1584810864486861) (-0.3121538842060279 0.3932581381949845 0.06932607250558243) (-0.2519921023820719 -0.1682492045983893 -0.0173301096853592) (0.31230504019328 2.344722696306612 -0.4814475000113131) (1.291096685312498 3.565591682490717 1.02608451090621) (-0.8251889542169333 11.04890850082727 -10.92357146417024) (5.202778264158693 8.065623501370794 -4.018325397125762) (0.04391967625727533 -0.04606001100296929 -0.01349351186001672) (0.07569292755198548 0.07766428081361146 -0.04492154951734638) (-0.2823429163168244 3.048245859210539 -4.078774373548593) (4.740429162670957 15.53889881242927 -3.10163231410056) (0.660480297471753 56.57551314670201 -7.948626998355637) (0.379173082197126 -0.5887389750249243 -1.578811557514404) (-0.487912071914558 0.4387997181693731 0.2779059456990723) (2.606197520201759 0.2256996802655288 -0.5032681791499138) (0.2556508816091004 -0.04904611533545186 -0.06695282887682324) (-0.1298536383550253 0.01575478690895107 -0.01926848449189709) (0.05560407525425109 -0.05417512795779889 -0.01688722652785108) (0.01654838956397098 -0.07024569268104572 -0.04627731022275335) (0.3086190851256497 0.183993747402882 -0.1175862417490636) (-2.798616967982705 10.93783587825853 -3.159748095242329) (-0.5626306582484224 -0.4485649925711467 0.2467842541908282) (0.5607397767665409 0.1775764819632609 -1.174720785359818) (0.05754510275088813 -0.1968429215300193 -0.1016944323177318) (-1.084983980535343 -0.4490891986048122 -0.06129220790220402) (-1.055441512967083 -3.492178580234352 -2.963578333185841) (-0.2590827691997148 -0.03857312227709911 -0.2283125079449266) (1.098429103760773 0.8253057878903451 -0.4815614421159596) (-1.079699403134676 -6.159010804742154 -0.01966030872578195) (-0.01669075317489505 3.241819638937718 -1.677363635841696) (-0.1930571795003524 0.4123109317291289 -0.04628779915882516) (0.7108737161161068 -0.0796929485083019 0.3785087668349917) (-1.103696977901188 7.37228089834476 -3.07102115535463) (-0.08450544187961881 0.01896388008523723 -0.2395407096907782) (-0.01790361197599211 0.1991863436586314 -0.03415064664661388) (-0.8115612065826173 2.14912537205091 -1.095739505781047) (0.6126814503395166 -0.5130899656240945 0.3052056804466968) (3.817236327073299 70.48473144055023 4.841584734468023) (-0.3670715573481161 -0.06074306760293481 -0.4033894218393095) (0.006799233087783827 0.04210358337691426 -0.01639499952859875) (4.054459242918378 -1.476536999086548 -6.884037085092002) (-0.1199898523166827 0.1006524182771078 -0.01783877531016104) (1.044780084576297 -3.996840293742133 0.02802018569206699) (0.8728807283313247 0.3641473040937428 0.09872976755549369) (2.394913199532681 0.5670719132533101 -1.984160273365118) (-0.1638282185301994 0.4118669403767961 0.9083964704095493) (-1.233148912752938 -0.4594967606339163 -0.0954086177579264) (-1.175851501564203 19.77496261144787 -1.242766472063936) (0.1696077039397116 0.3944505461387623 -0.02678398343507628) (-0.5504449951660557 0.8741822287535348 1.054674332725849) (1.01631122159056 6.270704588083999 -3.836849725005483) (13.4197130458904 68.46295875810338 -2.826044500397615) (-1.398359921299819 -0.03165061418913249 -0.1778556449735878) (-1.678371947559739 -1.663158261317543 6.355665305287212) (-2.516175552325433 -45.21213154874462 2.067563721067104) (-2.345000113797914 -5.699603106795907 -2.066568259257028) (-1.543814888412762 5.932841973477559 1.17338721891515) (-0.3295884343404079 44.55066641653615 1.372546984925056) (4.884597652517473 8.471737286980778 5.029879557844722) (0.1283482605334831 -0.04519288604791807 0.0594096319858967) (1.466080384184476 0.2545413811157389 0.06232943306280087) (0.3040659856600753 -0.960146546255637 -1.449923226991177) (-0.1328094894624731 -0.02859617036756788 -0.2598760136403114) (-1.733839374529696 -7.222581349587557 -7.659963547054718) (0.009734457209616132 12.06868052354805 1.99721791108569) (-0.2783328226772244 -42.34718118764189 -4.666696405756719) (2.282954957288081 3.831648181544283 4.203119429504189) (-0.279104681038755 -1.457535188231197 -0.03735571993111519) (-0.2759243194448238 0.06198902688126148 -0.02351679289682665) (0.1613623494683628 -72.47503947468904 -9.622131605900227) (-0.02503082494632172 -0.06474459198891253 -0.02088376784447493) (0.7531764678889132 3.016495219424079 -2.211528581353) (0.08741986537267639 -0.003379019969411333 -0.2318616461218398) (4.099218620530232 4.850933887531669 -6.207718418308119) (-0.002151777439924139 -0.1750909205408714 0.09790672542871892) (-2.235344943460298 4.761882910945205 0.9232794936029075) (0.08794318227210507 -0.04429324251497118 0.02995182649621573) (-0.08843194512685867 0.01305542657732211 -0.1010863534986533) (0.07580581300431036 -0.05845319701091048 0.09786390354331043) (-0.06013310464502672 -0.1787042134452654 0.02854454867883486) (-0.01931947391602142 -0.01685121505796613 -0.00407933958361714) (-0.9245339325635837 7.941643621001792 -4.744591545985992) (0.2757531036953831 -0.0005978640673196672 -0.2402527022877989) (-0.2838057393300949 -0.008276131540346982 0.2263322856091003) (-0.1895405182592464 0.4116179351253014 -0.5345429325254377) (-0.1785469962060137 0.07137650348618016 -0.0640090951893849) (0.007386984065134907 -0.1508681900454812 0.1445565234513657) (1.180515173527059 -0.2766223289913941 0.1401191171439345) (-0.4782260398013222 -0.47988705697099 0.05705355966651418) (-0.33799733854241 0.07223327852493944 -0.248375519654184) (-1.38877123900271 -4.687625995741464 0.800970074129371) (0.1418575170752023 0.00352979524870542 -0.01671230759307177) (0.146531119190438 -0.008945357675296584 -0.004464537542411928) (0.6907674864629609 -0.0450214160453463 0.2761513050150576) (0.392047949373486 -0.1767866714481841 0.0862265134235041) (2.541082565312767 2.072929922101566 1.240599154716131) (0.3948321725073626 -2.70277832290465 0.6662819646783064) (-6.694210880329158 -2.095200552303376 -4.546824980530688) (-1.253013734316625 -2.198175067626257 -0.192690760422691) (0.01151748110077539 -0.02256498704408718 0.005888288674376933) (0.01552329314046154 -0.01543294220550767 0.07123667620970228) (0.03646693713896156 0.007448986162831693 -0.01567528092725673) (-0.04400477793580383 -0.0600951793987989 -0.01734256583230959) (-6.325858097969316 -47.04915862469156 -10.62547009644526) (2.800739879352014 4.03017114649918 -4.25426492840498) (7.840800710098192 4.540617280915524 3.846961085735594) (0.07462224188664973 0.01368895376139086 -0.1652109857569856) (-0.1060118899865364 0.2639439294306895 -0.180711348300059) (3.427034108542984 0.6745075357950632 -3.07401325298671) (-0.04828881348122627 -0.01938415332588636 0.005623888489587389) (0.03767556161360582 -0.01046773580011653 0.006095899805915457) (-0.02402645290270523 -0.001383097465630735 -0.01745584431952378) (0.05943049011525678 0.008097332222311052 0.04258558052862652) (0.008424639789445564 0.009858660411900625 0.007305448489481772) (-0.01651921172378584 -0.01097354989799959 -0.02814662983445552) (-0.03245483071077609 -2.095282039313343 -0.02497249412866054) (0.007944463480362245 0.007313145782665988 -0.0006837725618859068) (-0.380616066425814 0.7116915656288032 0.4388174203958388) (0.05105237768154254 -0.0490417928605591 -0.02138592453788743) (0.01792164815853478 0.01098794686662536 0.02895804217150419) (-0.01699445462977739 -0.2074953526320668 0.06321605046748555) (0.2375033088301542 0.1501410515126098 -0.4072177674535249) (-0.3110244412702572 0.4538196423076146 0.2521699263625961) (9.542362185699913e-05 -0.07337555465313478 0.09991759081797641) (-0.7949343179357542 -0.133879826180537 -0.05501367784755012) (-0.05913211270489853 -0.1133419102002117 0.04287283818998499) (0.1634297721687931 0.2367403194214928 -0.006088115808367836) (0.08627917685182201 0.2084659730212085 -0.1180958785413256) (4.988345959467174 1.140327168850014 -1.782473133766532) (-0.1145880112580803 0.4571560628477369 -1.332630801776209) (0.4416965110997113 5.178718244242974 -2.68382557368589) (-4.697180640170828 10.01707675533814 -8.132307212657363) (3.219949826839088 10.28474279680721 -2.026049929953174) (-1.714042497306077 0.2482056079248947 -0.296604322442038) (0.2394880203595456 0.09720871367996002 -0.09201982605193648) (-0.5875300196985482 0.1433316561089885 0.002640946345159212) (0.5664039042055904 -0.1509553782955129 -0.3435033677442947) (2.129828266846552 9.059467572446305 -4.169860106365006) (5.696265494897611 18.48829782057413 2.084593474290652) (0.05221384745963289 0.06864550025136675 0.08007480580831858) (0.2359593383616084 -0.5741033012481014 -0.390380199050847) (-7.922016098798387 -12.62791457650018 3.42699759782849) (0.2383605885977001 -0.3653245986902373 -0.001955406889926261) (0.06847644773013353 -0.005455103294361191 -0.01590389181308209) (-0.1067495771316754 -0.01036428768789929 -0.3204027224463014) (-1.072038303814148 0.6075764944955896 0.2848648306603408) (-0.134000598912215 -0.01232881657663765 -0.1265564421668698) (0.8747180963998219 0.5818808984234278 -0.9124740726331906) (-2.596913829989871 -2.581395320578304 -10.13389567562366) (-0.1178218204894756 -0.3958430201207486 -0.3410818155085203) (0.1679066506782725 0.01576637619497451 0.2611621180738397) (11.46756715528038 10.00297767696294 -0.1177141642253788) (-0.1739377770573299 -0.5004408575137413 -0.658030268580287) (7.611485570030444 60.16828946142515 -4.36133715884706) (0.1346793690073424 -0.1019267372244638 0.01764350951017284) (-0.460189469617612 7.928610580521705 -2.007963604880393) (2.799736757414305 9.422304805938873 8.844291660541298) (-0.1976237183665429 0.2157658632425244 -0.1461071874809334) (-1.178626766957379 -0.7303201387015219 0.7551516761461141) (3.463715060148948 12.98576563529381 -2.707614666176308) (4.190185210984981 3.36266194702526 -0.3632888397888558) (3.782804921092377 5.551123751266674 -0.7722116442785234) (0.0448692096435369 -0.1153466808999184 -0.1340135556576919) (-0.5279314122717695 0.1526811427963429 -0.09204551479425144) (-1.370402384213331 -7.866293515347736 0.1855250375439358) (0.256858837657751 -0.01958546671674806 -0.2555234370068133) (-0.55304702855808 -0.6296825597229007 0.3415272572714246) (0.2738455935869537 -0.7979383953426682 -0.9881040935344699) (-2.197718728524868 -62.34902286724886 6.908330480376542) (0.1607207105223078 -0.4338815147394733 -0.1611213708711637) (1.503364007922284 -2.747509916176629 4.137697066535519) (0.07475635688566211 -0.05865148036775999 0.05007943830571785) (-3.242654957506419 -5.79117047374038 0.05160485031075077) (-0.08731016984089743 -0.01533382588536585 -0.04859386670188537) (-0.04540756300443695 0.003341370234382256 -0.03743903849474274) (0.01513991371507833 -0.06112906300201264 -0.06873002160324664) (0.00497622144167181 -0.006405790380269247 -0.0175201608608343) (0.07993979362887538 -0.09110382065465811 0.0105613588902553) (0.07922283035895269 -0.03963187243230028 0.01986511932273101) (0.0003424277686475356 0.0120455469676655 -0.001434283876883834) (-0.5452499287237511 0.0112111279910459 0.2190320212195508) (0.04593629449498257 -0.1619417594660074 -0.03315750601266843) (0.9713886132091644 -0.3111707999675427 -1.513171020536958) (-3.052810420362263 -0.5044269050392427 -2.188750567381292) (-0.03560794369113289 0.03065363904189031 0.007002192147608974) (0.005277318479883095 -0.02778441717009089 -0.001021626182294092) (-0.01185132748637029 0.05005343873974446 -0.04944180043374034) (-0.005368403281698728 0.008329556555793094 -0.1037337695314611) (-0.7972583029853599 0.6873687391964463 -1.02575932912154) (-0.01409900269271213 0.002585681868108935 0.003879560166894156) (0.02025115024528425 -0.04102983045346924 0.04178021960552931) (-0.5280228769853815 -0.4613744911471842 -0.3559462363790368) (-0.9894689323570636 -0.33599100840222 -0.9068225884801454) (0.6888165763514488 1.631076096757919 -0.1815206017639405) (0.07894932609989547 -4.230425995105676 -1.338374976462753) (0.03491659974239429 0.05294095522746366 -0.02504063477576614) (-2.473786995993208 -3.219789665963894 1.332167088609599) (0.1382662019485196 -4.842465678566212 -1.308091066231851) (-0.04612671366278601 -0.1334852253860873 0.1209685622561988) (-1.979514419815155 -4.010490190595776 -2.355005717180227) (-0.3351915043034231 -4.542527278850338 -1.30576701391275) (0.1398072431427019 -2.825229174480728 -0.1333452328545195) (-0.2973671145649451 -0.4015667681576786 -0.1549360686010552) (-0.1297979392808075 -0.7550903317614073 0.1559960575637953) (-2.634999331994567 -3.887860357103053 -0.4571830163892073) (0.3739396003179082 8.366379963416511 -0.8301086670217082) (3.672497491793829 4.288276679950188 3.961197556349215) (0.6248517664343589 2.277928218672254 5.232943346664015) (2.411220799911828 10.60742226368704 -1.363666834158265) (-0.8852419708753667 -11.63732083816348 7.508500910921942) (-0.1495440888088753 -0.5901280641430965 -0.163317733343264) (-1.766621271005707 -3.063055854489224 0.5763306447714156) (-1.998574983134142 -5.729937268688408 -4.060633573119955) (1.482716553281197 -6.18625968004686 3.006797429133566) (-3.951069300515739 7.906418044060326 2.53449276038423) (0.2436857742843026 -1.85472883739032 1.631572168801131) (-0.004831197003657921 -0.007588709582316503 0.02194546682149188) (3.290355657983567 -7.790315822832019 0.4847149903586399) (-0.003059753481095995 -0.1391981081919123 -0.01264151627374704) (0.1063980981689092 0.5314519303215721 0.2879432564171379) (-1.113598947250887 0.3912958804600553 -0.5323752460830478) (0.2163277301802464 2.351223598819258 1.493973622772347) (1.011799149360503 -1.174672773720923 -3.72479173797324) (3.465868050026163 -1.47294055657826 0.7365407523834425) (0.1494110581343774 -0.006861909514713708 -0.1813543953775542) (-4.101750391376281 -11.53991359408327 5.657671163644151) (-0.8178528729494529 -9.734959729060604 6.286222719478602) (1.599003689174966 -1.633662421769904 0.4743998456926983) (0.4641015010859241 0.4054828169599049 -0.01922616600774535) (1.90550427127538 0.5078667084073986 0.3900715983802631) (2.01376581029889 -0.185080619406676 0.7126387722709709) (0.5338727152876894 -7.743347146160783 2.282285297887463) (2.925750197402258 2.873176462797373 -4.100311217364602) (-0.007382573378251961 0.1743125283290317 0.7296055258742251) (0.04464284040950939 0.3073196149238797 -0.8092506879784872) (-0.03803093379217132 -0.2978224048777611 -0.7674739815632118) (-0.08963868490065502 0.01701226315150896 -0.01817881211081866) (0.02385154993352799 0.003517877375316843 -0.01937029022263648) (-3.315173447834613 6.087243107679043 -2.831827916516169) (-0.1024714225924761 -0.3016612130882448 0.2963906344208931) (9.9972573173453 63.04969745966554 -4.410899483625277) (-0.9423784767898591 0.1128155923802934 0.551866695033713) (0.02963120474461564 0.01566186846172002 -0.02596233141927122) (-0.0006097001885254777 -0.09419959685916156 -0.08005520563662205) (-0.0617302379517103 -0.1627776127963536 -0.1646108429341121) (-0.0223328240800366 -0.01094567050044643 -0.05563230604219334) (-0.1203225342668623 -0.2529358052443947 0.4092002760088881) (-0.04322621699614345 0.01185034424740502 -0.01191971634803605) (5.528223759323723 8.667368404586414 -17.07390171208206) (-2.035471168558754 -2.964185647348274 -5.223556856645994) (3.333007826934783 1.363359058634263 -0.1995217896934602) (0.5051869192731403 -3.883188868660159 0.4094036054348869) (0.3136108460148276 0.03625893620062848 0.124426197063585) (-0.01904447399895073 0.005080190581569528 0.0007579833929924353) (8.489545171945416 13.29356922565124 -4.085870666425889) (0.419026543041883 -0.04219396856274182 0.5688121283748542) (0.6511486876236744 -0.2446513606626691 0.4738336471900033) (0.0121241366452413 0.009103200239257236 -0.02524606062070623) (0.2856238233290074 -0.03963087731208761 0.1529162205087639) (0.8344242521509646 -0.2388234600122026 0.1538764574760922) (0.06617947105526495 -0.04156653667207943 -0.04423100305465785) (1.167108852437537 4.83553019768442 -2.948744948537684) (3.05728653044138 3.225154494397049 1.564846536207159) (-0.4968004047959902 -0.01859873479505622 0.1796999259755389) (1.589595303269468 7.14575770776834 0.8283101610160427) (-0.464260301548694 0.1387696422966246 -0.3638089595278863) (1.202722322505886 -0.1158214883937252 -1.019733163253349) (-0.353860176647145 28.18673856868379 -3.91413329126408) (0.8692845365544113 -7.992797250710759 6.251049431752959) (0.2944198021842883 0.7666352025021175 -0.2295984045745835) (-0.6368224281700148 49.17880609231719 8.191740936508918) (-0.457340560197017 -0.8998369267354798 -0.08560492940682958) (-0.2470464648915806 -2.708849590616853 -0.6969047100954925) (2.032959481719741 12.82692397263783 3.664785127130731) (-2.459004517201338 0.6121700298842039 -0.7541822577722459) (-0.1114557285509209 1.101935210126705 1.214865385497216) (-3.151452643580915 -0.8732197502640536 1.15706380089876) (-1.333008996074121 -4.301743877844636 -4.310033064389856) (-1.073616049049444 -2.500875889934745 0.2823275760129988) (-0.6339734387681498 -0.102836847828591 0.2899439162730295) (-1.350165767035939 -73.38491639740755 5.513214123132713) (-0.2517831949596522 0.04754764880170635 -0.1580896155068967) (1.564477045849044 -57.52315869437349 1.895588278824833) (2.767908332763132 -0.9139817995802229 -0.6812682172766539) (-4.338246388877737 -8.226658193778249 -2.820568025163286) (-0.3852037496692454 0.2273048466638077 -1.828406602410415) (0.1877312266278538 0.09783037104628937 -0.6178535492035541) (-0.05146431793623904 -0.009806833344599378 -0.1068256453273531) (0.3292261847409212 -0.1159688132705244 -0.1607430274891871) (-0.6123743860363189 -0.3165110169027062 -0.03386045724763384) (0.2267267089535733 0.4248455424965234 0.08315163094904768) (0.09642066845506703 -0.01825643566548938 -0.03776759782034576) (-3.684058424397934 -6.965362360622076 -1.843087320600086) (0.1503031016782343 -0.1601230052710359 -0.2407771011078634) (0.1738434213751004 -0.1246451310292708 -0.0190649661781863) (0.001228158837941577 0.0356831032944569 0.03225828743911471) (5.00342426998656 -1.992210092741534 -5.699996185385697) (0.03357490811429883 -0.4559160291609033 -0.2445030579901834) (-0.3882098540782146 0.0851202236477223 0.3525531988817964) (-0.3961173093962546 0.3931427313055686 -0.6298134601245566) (-0.5441435018632208 0.1662957756530235 -9.978585905386369) (0.06472883744402663 -0.06301161724656956 -0.02549614366065817) (-0.09578766260797036 0.0173534288344988 -0.01977814615843859) (-1.721378870532331 5.742162722772562 -0.8598239067242353) (-0.5463528382457858 10.09063888930268 -1.573993216748726) (-0.02847441010172905 0.004933823080071648 -0.07908086489972495) (0.05020177733470959 0.0364500993012072 -0.007730134941258265) (0.3218328637100013 -0.285915574045141 0.009323584237680621) (2.963122922800679 0.8568242447621981 0.2980372173289405) (-0.5085798218591016 3.954708866347284 -0.03664899681530576) (0.05383436402938848 0.05965040659310542 0.09183875086624084) (-1.302536126146099 0.08871207370590804 -0.08676899450140478) (-1.864012602341083 7.226072357469675 -0.07059562306914802) (-0.1499682189945136 5.72130752104632 -5.600697180045737) (-1.628739340605721 11.42771291825195 0.6991082103330881) (-2.166073416708604 6.960395546330437 -6.512759023728796) (0.08841822685914869 -0.05872779501616787 0.04257648398637186) (-0.07597254629754303 0.006737301990167057 -0.02092342286154304) (1.308286306803704 14.69299751725973 -10.00370502880453) (-0.01094156947342519 0.0007719850831558323 0.02388531021592359) (-0.6082922842596497 80.32139948740367 16.25718274258842) (1.104484308626635 4.536581815080858 0.7505243895261275) (0.1907206819792654 -0.2734169352228562 0.1782375555464288) (3.117806190794679 -0.2724050466699629 -0.2279093680881652) (12.7177290099632 2.520437311598436 -10.21903896098152) (3.041253665593721 6.982214302027904 -7.943259867852817) (-1.040212478549251 49.15009298905597 -9.795110242111242) (0.02557640523518873 0.2135897444316281 -0.1252928845622838) (-0.2709590166586774 0.6397656142139654 0.9133943517393233) (-8.618043792376392 9.131592943936715 -5.474915744584224) (0.02754152992616743 0.1148103220296172 -0.2041536070789768) (2.213558850117765 0.3625998945184908 -0.2557367501228085) (0.6368750255805153 1.048615206956372 -0.6412226646565384) (2.909278578016816 -1.375933107538197 -0.2164947841104474) (5.22279457014946 74.10471354870234 -8.853496246233789) (0.06995699089049967 0.2085678188815445 -0.4824772422474325) (7.839411250401807 -0.8299331275899082 3.448968794294687) (0.5354760993143811 0.7028634886048667 -0.04080610299516063) (-1.169271971111445 4.870936808107599 0.5784122774435877) (-0.1695001407630478 0.298448369102734 -1.188532371447772) (-0.1981566297064841 -0.8290781285967183 -0.9474856797218925) (0.2788374978376278 0.06847131309183681 -0.1446943128553997) (0.2812931198893529 1.630453566572274 -2.820400344915194) (-0.006253813174942779 0.08766646789228454 0.2408456581964447) (-0.6604012855811352 -1.026000778265244 -0.8529581120161801) (-0.1997175733098533 -0.005040127133614167 0.102739495438541) (0.001936567290748436 0.06295277692633362 -0.001834062971446249) (0.06778317899978759 -0.6841013640429616 0.1144590935727253) (0.813613526036999 -3.739776950401967 -0.8530240604063872) (-0.03182048194456488 0.03480999507728415 -0.03532282854498879) (0.01773446548104037 0.0159924585593387 -0.01938820471449494) (0.02268549026446082 0.01434605711703233 -0.0315949607085289) (3.526162761256417 44.57722393367012 5.209429773151195) (6.644049146730914 33.37443131169841 5.23209692336737) (-4.7911885693411 12.17266161552744 5.353588362080007) (0.1961913612262845 0.01945160719693931 1.215789759197733) (0.8950274481858614 0.5686000810418506 1.485614391900733) (0.02303816012990645 0.1210844107252073 0.871558773578557) (0.297611488563831 0.3511041663644818 0.08765880474443991) (0.02995632125815081 0.01411388516444041 -0.04179500289277116) (0.3425937637735525 0.2737656946570372 0.1732197171688549) (-0.1738442026539407 0.1317695694127486 -0.2703447912702096) (-0.1618597413709758 0.1107583278258482 -0.09239867519977876) (-0.1346084555034271 0.1890489192155288 -0.1006135369846944) (-1.455716416946186 -1.222609938079096 0.8023137364766949) (0.3249485313841413 0.02765789059403084 0.1044688596995633) (-0.2329219352313987 0.1476353025184566 -0.1741283871568214) (0.1371477590116602 0.3710335457366828 0.08731620389455197) (-0.3602168052940228 -0.3738032353529206 0.404709351559723) (0.9567146429427262 -1.912102452566368 -0.1118303167583474) (0.2953920898956921 -0.3627067020341782 0.560553196460215) (0.6581605022376248 -5.614035583159914 -4.33443554579472) (0.1896743389275044 0.07000904134939412 -0.1916573022455645) (0.02923895807317743 0.02382772947380535 -0.01824389285557419) (0.002929210706682547 0.007142688584178141 0.005586313537080209) (-0.01101445672130441 0.01117793489297268 -0.002111706534274034) (-0.001800349090696785 0.006422710417286238 -0.01205391537875537) (-0.01818235839099456 -0.03840419503332053 -0.01449853511236204) (-0.06227478588022757 -0.02322551810603981 -0.05634240618145943) (-4.635253560795467 5.507423396675186 4.027486062221827) (4.538351178315253 12.91983163152021 -4.798499617991306) (-0.4977093416122136 -0.4738362403186747 -0.4446350224408687) (-0.3657931804418082 7.268429881938783 -1.997241942200595) (0.08996226583621963 -0.7292664022575501 -0.3226704636974003) (1.268012019390034 11.64386207363089 8.000852623180425) (-0.79805684888373 -6.606573081842148 0.5472086713259139) (0.707855110185573 -8.121949335069292 -3.743383343358005) (-0.211492139291448 -0.2817237305019002 -0.551208205069775) (0.0632256147607516 -0.02479825690326643 0.0084207485534263) (2.337264544008213 -4.523312452639668 2.392348591252394) (-7.738821215548822 -15.89133665086089 2.667131809486214) (4.39219543995253 -13.3671876759011 -2.620888353771644) (0.6132190802190953 0.7571322548142299 -1.087093035440823) (-0.4647722716352317 -1.492250396272339 -0.5395894359907726) (-0.131301871704651 0.06283520217367949 -0.09722211442758791) (-0.02756483703084792 0.2384935651181683 -0.002509096559553253) (1.817400140303904 7.707867283554704 -2.593951508546136) (0.0840035325863768 0.02060659848398976 0.01028468129442939) (-0.007796747180994225 -0.01806837349413937 -0.02580772538736233) (-0.4735705038931459 -1.594880922718869 -0.641881610191804) (2.786236073178868 4.643644172499945 1.493549855544167) (0.7861363030057977 -2.672398316441128 -0.3783968612200255) (-0.3115381689358473 1.92296191928719 -0.8700362548012009) (-1.568253735231432 2.206031648827757 -0.21406834820591) (0.09785663238169688 -0.1854381623512666 0.2281275996457429) (0.07697249865709543 0.06483487706423291 -0.2083509339339443) (0.07366998092150367 -0.03916869358924201 -0.05837787952845423) (0.2897082152942789 -0.1111412549880999 0.04514963782040743) (0.3560701251185159 -0.8226697863017123 -0.2166414405789008) (3.895642868092534 5.481276041472974 2.310658692277582) (-4.667659387396183 5.937274731615448 6.112535559621472) (-6.089410953201327 3.759099799890994 -3.11149567262579) (-1.134372962500308 -4.044044822385674 2.166237032037352) (-1.271141406446571 3.611581564279752 -0.7176019560022491) (-8.884460504234804 -13.75285123299985 -2.66176241330829) (-0.4607652603000452 -0.2876518946361222 -1.044153617097504) (-1.451958585738539 -1.446164275906386 1.567830400232229) (-0.09637379375193157 0.2485269176441165 -0.1108502814229124) (0.02678772550118391 -0.01742199407018118 -0.01476987508788243) (0.0345041756061007 -0.01537837328311937 -0.02000540681880568) (0.01586060832675941 0.0148566694422396 0.04394244305417992) (-0.04805582039359178 0.01109471781863007 -0.01294435199326448) (-0.01139658055227097 0.001616377750533501 0.01140760503748608) (0.1370593540685891 -0.05400768395536955 -0.04910593805462595) (0.1519895175339381 -0.3861915303205197 -0.1029865047525707) (-0.02928391450021822 -0.3816263177760962 -0.3751645741052316) (-0.06376639868526802 0.1509756841025489 0.1683791396571373) (-1.581761910118842 1.977151414744104 0.6938461232804296) (-2.476659583715853 9.780361811561136 0.1277874111613094) (0.5357980686408403 0.498999035711684 -0.2500541761246909) (-0.08849403620364794 0.1149494760503279 -0.06880775512656462) (-0.09203334632820233 -0.1363016081000901 -0.07637059488740595) (0.01634912301949946 0.003460335501945962 -0.008575337842729066) (-0.005612383074229324 0.007763344914310064 0.003388337066661215) (5.305497461107361 35.9496593894597 -2.106379746342752) (-5.799677887028859 6.282139086335704 -7.275657972453044) (0.06116559465163483 0.08140875522647535 -0.0463044028246425) (0.00244988536580277 -0.002569931273102141 0.005220700014815432) (-0.007029099475659344 0.01982793028053079 -0.0191320958599291) (-0.1010677773256583 0.1319917813195133 -0.1934887264251899) (0.007557675018509452 -0.005832887412998528 -0.01654893151614135) (-0.07442249141580543 0.0914170901236383 -0.01557641917529068) (0.03337284754772066 0.008510551032211364 0.01148948905569003) (0.2357258328224701 0.2396067388515144 0.007907125287126782) (-0.1452762612531713 0.5881781070488533 0.02583013141491839) (-0.006809994113058146 -0.006198291585250135 0.0004768849390177953) (0.0003419812888993835 0.002456897277888995 0.002135344204116705) (-0.01742006770178877 0.03183230630702791 -0.06974527871723399) (0.05120269173067891 -0.02126020360356462 -0.008544692263083613) (-0.08300926242328642 0.03016234711577345 -0.001496914651557799) (-0.132614332365578 -1.143915431909106 0.0310670655931017) (-0.04687969222815379 -1.490759467630944 -0.4701013230706921) (0.6577187598918789 0.1205386736093443 0.06824353739501723) (0.6306273149685365 0.7706852360694914 -0.3429935366698776) (0.484881664183112 5.436367028185879 1.252194405992152) (0.2151561347843554 5.594605294853178 0.1403003841244516) (0.1200536103581427 0.2017785649276715 -0.06501467828948503) (-0.7388202363167755 1.148447487010114 -1.225592194951962) (0.02352113720119604 0.299702593050654 -0.1408241693752407) (0.1194680375004819 0.4653805100736518 0.2126466818183396) (-0.05319959636414283 -0.08240514561130215 -0.1579332054979309) (0.2703389184514572 0.8729687561005028 0.6259565575213394) (0.08296876221270555 0.0723173725612014 0.03606687098389773) (-0.647267349873791 -1.327196272726972 0.8174814684548806) (-3.218274048365636 2.410443226168284 -0.3973134720157856) (0.7176726941400279 -0.0365157731314442 -0.1454108993439709) (3.940139850790876 -17.659614231788 9.830566835557729) (-2.656836666078996 -8.941149930942554 -1.877339747835649) (0.0269973213885315 16.07073366135296 -29.22235091173007) (-3.856074007343708 0.03476238032247175 0.3464082396276106) (-0.07029583614226899 0.03723599028805517 -0.01851004806008885) (1.22757610155504 7.767885815293255 -2.929029325201345) (0.9934971480865014 24.59894821971496 -0.1413413091838944) (-5.534338624164248 -8.403875437716078 4.347951590883497) (4.848856947633154 -0.9639313053576695 0.3754853235024695) (-1.501827612100789 7.668376077466523 -4.679057452127798) (-0.9860603117151761 0.3617790011723092 -1.171131686007561) (-9.728703434867251 8.485039249805318 -3.195012540824953) (-2.187485727363511 -5.767081201906878 0.8801190458673757) (1.016558817609191 -0.5037702122748932 0.9269272449906417) (0.7527666409383822 29.45385633458324 -1.964859065242523) (0.1412276610440519 -0.3217806531219177 -0.2094288351075659) (-0.03745211480088206 -0.01074778948668731 0.1254530667674953) (0.2571476493443617 -0.1026655318598326 0.1143660224212144) (0.1740119260636014 0.1845682666831742 -0.2098847569177117) (-0.78364762999281 7.073937569641879 -0.5124007033015023) (-1.399926817861962 16.99825583580981 -1.691046823084253) (-2.391127741176807 0.5356890302170327 -0.4582377681438511) (0.2982093424601289 -0.6110254603198361 -0.1904211946870493) (0.2637189425936207 -0.7664082031588745 -1.25162091180932) (1.455312594281864 0.1158871670045697 1.074582360910261) (-0.04272162432480825 3.335025152938779 2.564911352762893) (3.452228706720759 -0.3708552559521678 -0.464569604036311) (0.01393137859627087 -0.01683923050153528 0.06478505909912424) (0.7805616982156856 5.27602484051694 -0.1587692943528748) (-0.1055854065440359 -0.01520313363180546 -0.01472923503185045) (0.2375423332078296 6.537363933027543 -0.7637040887926405) (-0.5566593294641176 -2.751316370763243 4.131050789250635) (-1.422664592136511 2.087770215168462 -1.237520243043676) (6.128581092212836 7.474277341832414 19.49110280227905) (-4.848328013651507 4.241328192666157 4.370773779947109) (-3.239912865302953 3.469975769392192 -2.164829170336154) (8.042952159297784 -0.1470773699032728 3.989686577381565) (-2.274415317607415 6.880838408793053 2.883325918259374) (14.41773967863205 -3.417270638188646 5.670018616782112) (-0.4593602385764033 -0.5307694442513725 -1.141473938122883) (0.186804824222327 -0.6482471436375979 0.2419342546217446) (-0.7806502062618206 -0.7869849461887404 -0.6308522102534775) (-2.222453786140188 0.07309234620854799 0.08511003562039252) (0.05048640021490996 -0.004897519038842182 0.1421778198134455) (0.1066235744451793 -0.0119754845912686 -0.33403287038185) (0.02097442163626587 -0.0111303111233042 0.03177057492528723) (-0.348507260857098 -0.05644238118194991 -0.08327342580739885) (0.1815082534260943 7.92008000091294 -0.2734413230698797) (0.07787456794452707 -0.2779514346180144 -0.6365955559286836) (0.9593818874941569 0.2127034739956664 -0.08795775048374165) (-0.9286577519075215 -0.1397887972841471 -0.6800116296088332) (2.271672002086102 0.04554754146476536 0.1996683765890467) (-0.5398501785905823 1.370680572354958 -1.203679054386071) (0.4205653489148171 -3.602024955312031 -0.1931413380230647) (-3.026361628145834 3.830986614507771 -2.694487756241229) (0.3251274524344007 -0.1753395540976619 -2.926835766823608) (-0.7832837934334032 0.3903680170233508 -1.099191341846226) (-0.917339012004889 -0.06954809519497422 -0.7544589466335923) (-0.2980139660851113 -0.3310392492572512 0.2332862543490803) (0.1062108703825279 0.01780580544280591 0.56807679395882) (-0.6328921000728502 -0.6712603568776002 -0.6333743610826496) (0.2582414408095488 0.2116691976987097 0.04737797867485784) (0.155466807941564 0.00525265170295104 -0.02294711760482272) (0.06397674406499104 -0.313338528698798 -0.07618498001667676) (0.24279550950313 -0.3192338569423777 -0.1767627963049339) (0.02754890903763753 0.01920510398588404 -0.02460406961748841) (0.002907335558940162 -0.003519421731921445 -0.03631267543572045) (0.156143426562503 -0.08457619049865181 0.06145788943031472) (0.3495152828909238 0.9877432768031547 -0.119886169949748) (0.2800927464842876 -0.09343246525406201 -0.2424104894177438) (-0.2745189493783789 0.05875273473032044 -0.04617688867484914) (0.4752127858068738 3.916139769283969 0.6017633468369461) (-2.121090539290893 28.85987205517123 -12.21000627941183) (-0.5033786411337062 -0.2998462794757487 -0.07928126898460361) (-5.208429728520486 -11.15077845001194 -2.166832835888758) (0.2285464277718756 0.1127843835660074 -2.996020952097953) (-0.8451554015305309 1.856720575954963 1.054171260909416) (0.8178011708662736 0.6237186939739112 -0.4939139294076809) (-0.7193251406448915 0.5530102574549467 1.945055272090501) (1.123401580719066 -0.3247332390047568 -0.5261799593573613) (-1.435851866948012 -2.557815909859461 -6.310403361313852) (1.307643705298843 0.5337887573543164 -0.1234318360836588) (0.5846480885662011 6.531685559537276 -2.283231984844487) (0.3385159406553024 -0.303555818018578 -5.633497037275351) (3.56029694207277 -36.86203033338396 -1.462454915647334) (2.955680449358604 -0.734699929884967 0.2427265393895366) (0.02072006075335911 -0.03274468601011005 0.02320704511888844) (2.014617759610215 -0.1391827606373511 0.5441068139255649) (-0.7427201759878788 5.840844137171954 -0.2622924511509221) (1.518606619896951 0.5125264377686893 -0.145945599864964) (-0.7435157328040345 2.488574709131535 -1.708283574114907) (-0.1357848652700674 -1.744832545465221 -0.03698845461746303) (5.784090290498343 13.93176619976879 4.977113094262323) (3.505707142280531 11.46436510763926 -8.16986656319877) (1.815433690543241 1.32794388335719 -0.9034209117087566) (2.021997959126897 7.197803663823767 2.744678255279737) (-2.437683762634612 7.554959878628869 -1.065935591258456) (2.451798839277274 1.428245052598437 2.891396492464453) (2.728418448171715 9.367743693665137 -3.661320108707811) (-0.1990614126869561 -0.3443166118442393 -4.300196102600035) (-0.4700501438209339 5.749537038918389 0.05999731609996894) (-7.865889325194632 3.043991153149723 4.051544246213307) (0.144720249652369 4.624905561197442 -2.465346797780019) (0.07978172460679561 -1.879741599773714 -0.3976883860292588) (-2.504645573500029 -39.73458804041699 2.277273728814937) (2.455496425386615 1.142893004716236 -2.870256318535029) (-0.0159312730997542 -0.04066535607869611 0.07468823814551634) (0.08304696900529779 0.1365694330070052 -0.1257190139097169) (-2.625793022436347 0.9100928082273261 2.457329566396989) (4.135796412490523 0.7835371754635416 0.5448925419750414) (-1.751936985796548 -14.23077554965892 -0.2732706127435552) (-0.9448133844529495 1.08273864279787 -1.837888397033027) (-0.4771558754093634 -0.05864640980767011 -0.2279925404943247) (0.266442372242081 -6.664987494902497 2.21998499867374) (-0.02928446852062949 9.555603359897312 -9.849270763960021) (0.8099335484933019 1.221199730822784 -0.7509921093938406) (-3.187604576760879 -3.397596297980811 -5.827107472315991) (-0.8741234344908237 0.3934992319502144 -1.02718781506259) (0.4621398193471133 -39.48394764324551 10.96322059128712) (-0.4626039421053942 -2.148098573643808 4.046482255528483) (-2.262812949184157 7.761782559588061 -2.95748308395971) (-1.209703446592988 7.373231340787735 -5.725550594189008) (-4.513475584584241 -9.768984430478975 0.7059586705882572) (0.1281643949280605 -0.07188292996215537 0.06790568606890345) (-0.2542328109921976 -2.236746396302779 -0.6084978912430039) (-0.1266339202129947 -0.960132254620089 0.4898732876595263) (-0.05467181989479697 -0.06745700203929607 -0.07187407880432956) (-0.05964798276034151 -0.02814295176505375 -0.0375323569296557) (-0.0009481365745991344 0.296359354048116 -0.1537205910468855) (-0.01626917138689127 0.4483568716677052 0.4370431611110151) (-0.8402750592348682 -0.05176833006118815 -0.4330484475456011) (0.01376011322794572 -0.1064663881873617 -0.03012673450717231) (0.04285083436930583 0.07277805626732445 -0.04056649378322449) (0.5417469879791135 0.2012838216396834 0.100978630770029) (0.4446918636657344 -0.2895125106137878 0.2944793664926286) (0.05327077521356519 0.159501229443889 -0.003840919350029892) (1.921481159547116 3.546638943530756 1.424146925643) (-0.1530274759471987 -0.06612713082282276 0.04485986985200643) (0.01647625980029779 0.01652377928706056 -0.001986126241582188) (-0.1924188987002199 -0.1101560133573092 0.09435012513918316) (0.05111985202938083 0.01614512382741282 0.007170885161517659) (0.1465740524931956 0.04545774551739241 -0.134711662156205) (0.4844527704744169 -0.07908844905591866 -0.2618934962903219) (0.7866139010561207 -0.06961604893324841 -0.107447670272109) (-1.060363354217338 -7.328762940643605 1.856944024093147) (-0.9399233757886782 -11.13473031790094 2.237040921757722) (-0.916337690605288 -20.29759045849253 4.576589306430082) (-9.341552743995777 -32.42555003094192 1.533882899351864) (-0.8117921893725325 -6.453243304624285 7.049242458947364) (0.2331093931471691 6.640233811927589 0.3904079049488676) (0.9666800100519259 5.599197624502747 -0.829073445897075) (-1.647908288882645 2.005538290956042 -2.384761941843824) (0.5179698984876545 4.767737268546942 2.126445992284069) (0.917407005055855 0.2451283726837857 -0.2817185597830817) (-6.577405223914374 1.834406925718708 -3.233142327614609) (-0.01408587748015844 0.07372170395885778 -0.03252130339392671) (-0.7055291687627379 0.4676777172653573 -0.1634998605713383) (0.772873348555862 0.09476218911801391 -0.3314270600759858) (-0.5292487055775978 0.1029290363489933 -0.3981199241266424) (-1.273071441512032 0.3734109965646825 -0.7564889220455648) (-0.2852812060202704 -0.1780653238785694 -0.2353916636970903) (0.09830737041721144 0.1900071327689626 0.6326316684182492) (-0.01973116488004936 0.04650324937120136 -0.009995287241718092) (3.63926177076206 -1.398417248181271 0.2629220322943871) (-0.02930327285444134 -0.006963941693625548 -0.001996665643757228) (-0.3225376063061955 1.815598043829203 0.2561035967333987) (-0.17436701709584 2.124619656370272 0.3152042546963149) (-1.793135608094893 5.868672045720238 1.961515008497707) (-5.157093451472276 -6.293087698224095 -0.5180599709929057) (1.553558565944599 -9.584296639257582 5.083407782020892) (-0.4054548313080801 -12.33467235005397 -1.429039304929784) (-1.495504571169261 -0.7259822263731043 0.7536273084977263) (0.9330480664248681 -1.592165511153514 -0.114565571315791) (0.5627740743856938 -3.268665579319442 0.9022899123174937) (-4.611773464602734 -8.718223532286288 -4.142289667034099) (4.701118201954364 -0.6742149068752763 2.720338089633711) (-1.196920304468434 3.202965920949042 -3.926278869708478) (0.1639291339691141 0.1611297851665835 0.1135453289279364) (-0.03438652834807111 0.008616489695501809 -0.7971654577034114) (1.379840060597071 2.890595758414299 -1.355711450529145) (1.220142082435966 7.966131264509957 9.642954301424604) (0.2325672973959596 4.964257264043322 -1.768471881139805) (-0.1208714151350316 0.4214784013712097 0.2246072391855751) (0.2048650898742103 -0.1003974617501196 0.4833647997516798) (-1.44032068122405 4.00152447813872 -1.460882747235442) (-3.508844454395631 -33.34037620445601 4.071913932049386) (1.238894197666403 0.04782632502341255 2.807681826587742) (42.06214584038354 9.57992983931544 0.5739319945851049) (0.3564011992584779 -0.3646833682098942 0.2182471822838148) (1.597633616417573 -3.238831556711658 1.16421783787833) (3.319031557905604 -2.085744936080202 -3.552620891741334) (-0.9778534745942394 4.359587798447627 -0.5543899545582859) (1.379684205373915 -0.8308436270498361 0.09550016799943406) (0.5892851418757314 -1.937066647236626 3.738495973398056) (0.07838647265516929 0.9410600731435794 -0.3076852770887231) (1.695261403753097 6.914956189345256 -1.166120664225656) (-1.509062588917614 4.630511838188236 -3.090813258851641) (2.845322809301556 6.606356842796192 2.027581184359103) (0.2787923529666773 4.566380986618702 1.753565672216763) (-0.3659241134578926 -5.784485641429343 -0.8038305782339173) (-7.171372038929642 -12.06563272192752 0.3147108502688918) (-5.411297346059673 -10.94430545631455 0.4954036789796726) (-4.067689907524582 -6.50661794352059 -1.390681644332834) (-7.115705820917132 -6.637098942178634 -0.9240567065864187) (-0.5003250410992353 4.996932743626825 -0.6459310560675702) (-6.97415641796821 9.703139984786853 2.205988651500616) (-0.2218195547806601 -0.8761894966276734 -0.8236566267469779) (-0.2250808435924405 0.1146965468576748 -0.1437848932863546) (-0.143364985409531 -0.1537201765325574 0.6627865153547566) (-0.5003141122563264 2.158611709061617 1.125400970093563) (-0.8441216642720054 1.341644295925301 0.1853095520632371) (2.516183824920009 -15.46472300901031 -1.494272985119534) (1.489758544613638 3.21917161591361 0.3986056735981676) (11.16163545104979 -0.5952941337242378 10.17675789293097) (1.321789222655071 0.5015472359028661 -0.385888893246522) (-0.9771962128287138 -7.292123678006917 -1.38485526454621) (0.009511358204420096 0.009894997386792014 -0.000852280702896605) (1.476168713415062 -7.626525954280877 2.272449044878539) (1.192018219767812 3.586179044710565 -3.037670890718962) (-0.8675154057997105 6.168759619968642 0.4683123309374628) (0.001872850017229696 0.06396181510295806 -0.02287651401583694) (-0.8276715751020796 4.165274538056414 -4.973977766353874) (0.0312235685888962 -1.218718512814883 0.9877390071474851) (-0.1684956320150846 0.7223055568221929 0.3277499531773691) (0.001404058421618628 -0.03871407427830213 -0.03220138415734608) (-0.1122977506660807 0.1235752374286851 -0.2136520867941442) (-0.08046452347921391 -0.07905738581950303 -0.02604420195206144) (1.342928391406806 7.511392971938963 -3.193582884827476) (-0.069840496599159 -0.01678444403434153 -5.070137108599393) (-0.1597160345403971 -0.1932334947157672 0.09193338693479081) (-1.827038686687335 -39.27462730645212 -8.616287467597033) (-0.142441565990888 -0.1388908302049379 -0.3932912805709071) (-0.002314298292207681 0.03029094469070214 -0.006444193490831735) (0.08636799972033968 0.2065234153140853 -0.1622689844356984) (0.5430859007883799 8.546427037636526 -2.005267706882556) (10.33309335696344 12.10530042766711 1.21024149296156) (0.03443061822620753 -0.01158700825840882 0.0469324068640072) (5.471849420996611 3.715482682055244 -1.111801437721824) (2.929668146565914 0.4764625995425571 -0.08392032147438078) (-0.7269959739421106 -0.6471478067803742 0.6320937957129503) (-8.101577990847368 20.85468409887327 -17.25385891620299) (-0.08426750589485123 -0.00438757155411601 0.03575475827835035) (-0.3456393813981393 0.1821162913627163 -0.2116445113221597) (-0.0447972906045512 0.02813639558053092 -0.05565999379507211) (1.600826801485477 -2.642176140815581 2.109293561246091) (0.4027362592777169 -0.05719560554743669 0.462838875000898) (-1.94407765205121 -4.636484732036494 3.548927924640547) (5.606623181938815 -3.694787286121515 1.432357058333412) (17.30577620103509 -16.8007133835697 3.300712506262393) (-10.34973638511272 3.098125319736931 -0.5812072923436333) (-0.2270032477727658 0.1451778998243249 0.2046434410294824) (0.08992537343127327 -44.97747774251786 -5.18709465050496) (6.09652971175514 -1.195786475939469 -0.8786158582513868) (-1.080111968461067 -2.339475719632318 -3.577810633111343) (-5.04661846789741 -6.411773644454922 -0.2547043053831102) (0.7271131186774903 -1.073050798692189 2.514393132615299) (-0.5148223446027993 -9.11052853750877 4.441582662626562) (3.372388101461947 -0.8559930849313115 7.521463926564052) (4.270398046379013 0.6234615438276113 -0.954070627105059) (0.006063679922835963 -3.105301478903421 0.9728249281136655) (0.003260866056859033 0.0002158205462580928 0.03846555848970668) (-0.6994096287436122 0.002901423259868904 -0.6443614802202958) (-0.05340658709734475 -5.581922063205475 4.489397430275813) (0.1786382686880998 -0.1146189219829785 0.7870646445183214) (0.1196170688794416 -0.01404253968453492 -0.0419240260621267) (4.703972578658083 2.405872374584615 -1.760949848923717) (-0.1732782165709637 0.00300939767483549 0.05213739898801359) (-0.1493067400236154 -0.2073375962670292 -1.96214370541903) (-2.47528149169355 0.4061187942851316 -1.554311450361186) (-0.1123328594057489 -0.1117780252071497 -0.06136318819802664) (-8.111720361779152 4.20808475065213 3.575453316493818) (-1.567113530299121 -1.274408031560276 0.8157483251779097) (-3.469663886107259 0.39724620164673 -3.305901363955822) (1.309336007249261 2.904091100133149 0.1573514344130342) (-1.902520411559047 2.117586874370609 -0.8717247288030867) (4.027021854599237 -1.532596198331879 -1.351329625203999) (0.513333496614756 5.289020794309439 -3.374096547953802) (0.2529885880352746 1.291581606773716 -5.033438999888235) (0.2780698882077749 6.69300445048764 -0.03938959723186464) (0.3503946787971816 0.2139650775278773 -0.720296634948987) (4.392822937154629 1.881502262975813 -2.363973772238444) (-0.0065649143701914 0.01648995909225097 -0.01809537215510423) (0.407883346379898 0.1173565925671466 1.184811803444946) (-0.0329715196410555 -0.02231387280727404 -0.01253104057675357) (-0.07884063844792809 0.0102061157367392 -0.0007847468554014574) (0.0003820899906207867 -0.0007486518302629403 -0.01683830704394676) (-0.04072333842533599 -0.005671974263824556 0.02724575176898781) (0.01729968565388898 -0.4329514595415011 -0.1307211957168615) (-0.04436610634688304 -0.1100013446216854 -0.09694051546186089) (0.3786997503489485 5.159683154699938 -1.30420154102888) (2.581266384341075 33.61853398651321 -7.283119022899879) (-3.579132332236006 0.3528912876856252 -1.109045643274201) (-0.1274341491771521 0.26040141269978 0.1699948404954406) (-0.2157770378500389 0.3308997514473593 -5.473225342563602) (-0.005129520991981773 0.08721814831175921 -0.04484089651426915) (1.54535251964574 -13.33081498617787 17.15442156783708) (-2.167084137220384 7.827981030961019 0.7530647649777924) (-1.716602747621793 -1.784264921362322 -2.081479412747624) (0.4461176178221121 0.0703526122660158 0.1964405397913743) (-0.04282543815556658 0.02408203936665788 0.0414664900470479) (-0.1053948928845168 0.3284729154919995 -0.5273617503523104) (-0.02352565756906877 0.03036792294343856 0.02586153005620566) (-0.2701830000742799 0.03191778167850273 0.5139146402694814) (-0.169271651228792 0.01948161044887743 -0.08766814815154161) (1.702746035070808 6.43590785858528 -0.5879596223212045) (0.3936136074251167 -0.3600819185052854 0.5194038391477198) (0.04388787795296578 0.8497501217609033 -0.239528503085093) (5.337310288933596 -1.736395414823036 25.43610935885032) (0.4859285304677882 -0.2228797136026554 -0.08073413418324964) (-0.3571363412208619 1.005527161330023 -16.69486727215953) (0.6886912577369505 0.4923830258774491 -3.000690512757297) (0.5154565112020475 0.2074273133831749 -0.06064645997311362) (0.399603526805159 -0.2641543701634405 -0.01898139239954161) (0.6202974219873064 2.06756363297957 -1.110024709034651) (0.5839624277923269 0.4042726869092214 0.5218670384676631) (-1.184287840880755 2.61310192883005 -2.502742219699552) (-0.8037170918098537 48.17140736697238 2.509278688701487) (-0.03694633479671872 3.750810527268977 -1.238980885649223) (-0.7755903719942969 -0.5180623556490496 -0.7837066176239257) (-1.64177419704408 2.50105281781542 -1.138580155703306) (-0.3060879133543739 3.245734026327058 -0.726148868403484) (0.7639020289586187 1.856923226754258 -2.402718286406213) (-0.1989495000150434 -0.06067261637894179 -0.1417789730398662) (0.003430665260866632 0.03285766917896662 -0.01393932960759702) (0.22407982616816 -0.3328526462921537 -0.09091875157419413) (-0.03690141445300075 0.05587899068963149 0.08728505687393234) (-0.007422544038493715 -0.02173500921407505 0.02346687136732934) (-0.5664312147135164 -0.02876289325671842 0.03046332850289522) (-0.2211052166439911 0.0170890817583883 -0.4466748363168809) (0.06076212775733214 -0.07918440913143168 0.03918859658464105) (2.455600516182481 -6.345892819865631 -1.291105135242641) (-0.3736602486744318 0.08994767043871697 -0.5860466927413557) (1.140472965197264 -2.298589028203227 0.4991729766790464) (-0.4128062158979902 -1.664913467610823 -0.03907467926418706) (0.8964535301870811 0.706416435040865 -1.615797249526058) (-0.002584010487580224 -0.02903233557081361 0.008234817086460532) (1.515307843579802 -1.798747348964769 -1.28955358794179) (0.0512603081054334 -1.723924142529827 -4.097916004948464) (0.04294001063818553 -1.944368588428547 0.2097601500087682) (-0.1249723745079455 -0.9540742763530831 0.421405399058512) (4.301513482800578 -4.635511002040324 5.254864094767038) (38.85165636562392 -75.32503954927915 -54.80733188752136) (1.313127067252856 -7.337290068690646 -1.822663973696731) (0.01278249417545976 -0.6286051705827256 0.1460854098389462) (0.2067049794541884 -0.4367123368967236 -0.1762697129658048) (0.5926396588755061 -8.005881433244474 1.612888037644089) (1.624309646473901 -60.25256110343573 1.468656220205142) (-1.024697906487452 -2.078785525294928 -0.03617477881339046) (1.615089504269996 -2.650310049987911 2.226576647979925) (-0.5509978991964841 -0.1183647500858858 -0.3653041801719122) (0.1523818183682908 0.09376548576771762 -0.1526635324297404) (-0.02382145568276651 0.002777609401055164 -0.008416064833960775) (0.1773636406041987 0.005311557103480441 0.4614270569096346) (0.2068821777178924 0.06711302395837408 -0.237547105993278) (-0.2868614340941762 -0.6333227428378271 -0.07926913426679078) (0.09192093469798884 0.5929419748892911 -0.7958952362882512) (-1.665497714852077 0.7443722933809833 -0.9711148434116281) (6.732683768773974 10.23525768034517 24.32867769191446) (-0.07489264562416077 0.1275737551063487 0.008754513028573455) (0.7918672626738836 -0.1853297114026918 0.001164542146304307) (0.2821838593693383 -0.210354056392376 -0.02175788158400227) (-0.08062274082732526 0.08520581730646097 0.07671741543787124) (-0.1080205049786492 -0.1422464513936283 -0.007365004338306815) (-0.008897862411216276 -0.03078405906009841 0.02456799735181749) (2.12884647562599 6.233502021546368 -0.1296585959049383) (-0.01076646720168497 0.008986633319258088 -0.05365422365002805) (-7.735026149379842 -4.953846600920031 17.44393597995184) (0.02240713935617485 0.009701066688861334 0.02196263801794711) (-0.001763744304637553 -0.01009329445711367 0.02251381010641501) (0.008734398332448068 -0.001382077709795482 -0.000815796042954578) (-0.6763761784414841 2.59276401880182 2.633369735300928) (0.00554216689826127 -0.01012666910450211 0.06070651133557197) (-0.03131182425774177 0.009439721558289291 0.04796953751193338) (0.5310694784181481 1.046046457587187 1.332476896375998) (4.625722002171287 0.864008889491248 2.661854627477179) (0.1714497403665433 0.1013558990374767 -0.04440450532507765) (-0.4227761081414108 1.06061761032944 1.173569270013793) (1.520193332282967 -0.1413109751555415 0.333848057126577) (-0.3004318306450965 -0.9201509470861939 -0.2115332586002972) (-0.8926903858084811 -2.193518492066748 -0.9211823139644979) (-0.58165148372936 -1.762535293038206 1.132446530129356) (-0.1343735401730655 0.6581058901977179 1.178173402004255) (1.558753709355082 6.768565113117881 3.07921737244232) (0.4788354407347166 -3.141411373413419 -0.9775711733914576) (1.700156538508521 6.123695989033718 -3.210351057614488) (2.901374121995159 -8.689200845687662 -1.034099370462283) (0.07426530381556373 -0.2078010217437379 2.640446514711519) (-10.12975083573534 -1.816890005123067 -3.648618703660121) (-0.1556518703167004 -0.2935716116113352 -0.6182808394105017) (0.4061284109736135 -3.466621121457971 -2.317095930146023) (-0.2202823190962891 0.5412853739022916 -2.304928457591715) (-3.052829390613044 -2.993872722865253 -0.7267910564817743) (-0.1355511391777743 0.1272418336444423 -0.6282556633610081) (-0.06937681816158081 -4.628439777059585 0.8374052955783621) (2.647289893092728 2.560817778717316 -10.24926671780494) (2.870461842700016 -38.37678877129112 6.259081815124253) (1.415554742136976 -40.10420949154573 7.184512517571147) (1.292622686216379 2.32774089416279 -3.354122954917461) (-0.4731276044426436 3.967512993592009 1.597605254284889) (-0.5283498130421015 2.879263271151163 -0.4551847001296941) (-4.240572943581807 -10.8968606937328 3.94945967442171) (3.920019631051132 3.954305085889163 -5.429542424993872) (-3.917064331471893 -9.062222575710232 6.260799938724197) (-0.7290913504506263 -0.07181738924917092 -0.5527455683433695) (-0.6395675706763109 -5.418898986483 3.079739840750237) (1.261762283828153 -4.208243066417149 -0.5931182790044679) (0.06671411490172025 -2.134038804875416 -0.3217289636432774) (8.76801930594565 5.42925864973234 -1.863514883489451) (-0.7930917193038804 6.900347672267826 -2.19387908034761) (0.3426030477949445 -0.07860040623528636 0.5768514951901548) (0.2567930138499575 1.032706941801712 0.1709811467585988) (1.156065942702127 1.777873643828304 0.183823172451639) (-0.04070408984145693 1.062330546707945 0.0777546530917546) (0.1419950586246682 0.07337839481926364 -0.2841766224875235) (0.443270146344722 -1.339811172670425 -1.130481251141489) (-0.3635448472283548 -0.5057865176814924 0.02190335638425722) (-0.1555894495167043 -1.120084948953967 -0.1448643469244816) (0.07267985583390017 0.03166115208938207 0.04725149959488355) (0.1480762813718261 -0.007718073205057504 -0.01754463730446911) (-0.177510799752529 -0.006716010582503892 0.007256130413917226) (0.1973183864022712 -0.02616675561477486 -0.003312000905022691) (-0.2899051690087538 -0.002683446478031794 -0.01314568847061285) (0.2634665165879135 -0.005092419786408925 -0.1405093130661611) (-0.1947302816264758 -0.3583207980767741 0.0207861401954402) (-1.049266045261989 1.047133173269798 0.2037464147922592) (0.138636581360756 0.1687303324982152 -0.0591230422971903) (-0.0747001984570116 1.19092542154507 0.0967476551023978) (0.308254732010213 -0.1131402519922797 0.1227797437204682) (-0.5504193372382818 3.174659665700152 -2.314736421945146) (5.057937146168664 6.137768224141626 0.5293239209317301) (1.58231601243127 10.14133282173522 3.558463954090474) (-0.6276185622213379 1.44459120692224 -0.08021864479267526) (5.603707275648134 5.183426168044099 1.3679209833859) (1.498676530027647 -3.218030153809734 1.20867521891933) (-0.179301395881991 -0.02811113075690577 -0.03117640852205395) (0.4300220831522913 0.8940908646397727 -0.2606910782136564) (1.101240195586852 1.22299127454172 -0.1645320129561049) (-0.09069129804524119 0.2644434910817798 -0.4288756410552613) (-0.02038513910567591 -0.04562826052727535 -0.0627099569735364) (-12.383468603684 12.53126379778747 -3.035519953434678) (-1.22598433772188 10.10412357236051 -1.186801396920282) (2.128735830015688 17.73463906463031 4.153722582263405) (0.5206831654780981 -1.17757763814639 -4.525340895992436) (-1.018082872970492 15.22625980212176 8.85082216568795) (-0.5565294835496361 2.220182971482869 -3.937036861898426) (1.161276280606066 1.246228434181296 0.2920521769574137) (-0.09804081463590703 2.980299435037595 -0.7365963606041244) (0.7675657205550109 2.612188559952314 0.3968851407231049) (1.925612675878962 0.4027405391550696 -1.516274756257119) (0.4174137940915978 -0.3098307819114731 -0.02272219305194791) (-0.1337897735373477 2.355502652274925 1.72906669220796) (0.7221723551553318 -0.9104914714800413 1.106648316998567) (0.2575406646388917 5.355736674835891 0.4444212805475602) (0.1774887732660501 0.1536618627723808 0.2333840076102371) (-0.07998801355581804 -0.05492112232733147 0.02186574928565028) (0.5025423578324208 -0.1136864927160955 -0.3675460918941062) (0.4198931942861623 -1.918740019166335 -0.4602484436964178) (-0.3430932430776402 -0.9341863515591697 -0.7348563648517079) (-1.584904115545988 12.70758124312193 -1.927871206427913) (1.285965659547257 -0.9812983976822984 -0.6872051391428111) (-0.4667220898844169 -0.01074220655463793 -0.05261482431644009) (-0.1938923672014276 -0.0540725482271034 -0.1733779012300634) (-1.944179907410133 3.015728893188955 -1.316513137584926) (0.02858215772404299 1.198793072592131 1.005466673753538) (-1.057952122652232 6.588660261429176 -1.07938059694532) (2.134168691406681 -0.3559752015208911 1.387450146279491) (0.2280952161224372 -10.42905769293555 3.08061541397826) (-1.001384173678621 -14.6239945350757 6.626233183948233) (1.188778274581161 1.112786310192563 -1.066637286384221) (0.5973109886437298 -4.566621485956675 -2.300417856379108) (1.021919088852487 -2.369584086421153 -1.048568402157058) (0.3911453851249035 -7.250381168655865 5.525680911897987) (-1.213772384444655 -39.67633509411785 4.217414726500262) (1.016371799835078 -5.549887446511288 -1.474289890793355) (-0.2980481573838563 -2.937643831217327 -0.6660356406635374) (-3.655404392165281 -0.9248403456604843 1.698884212994361) (2.80209299240437 -0.1863661161028277 -0.16504420020254) (-1.227878780055896 -1.894113483585215 0.2298603145271098) (0.6005530623690638 -2.893424565651432 -0.3439729689284814) (2.02193894533119 -2.458172207716292 -0.3178948656846208) (-0.3884895365728684 -0.8601152629346939 -0.3278647510243551) (0.104482622728029 0.04934282958902626 0.06356317024217632) (-2.886224540445479 -1.177897871325517 -1.755375944524022) (-0.03064745138538777 -0.2315696085216442 0.2111291087793412) (-0.06220636262017898 0.09077610032357517 0.1507124493703189) (-0.9202378491263257 -12.7844330245908 10.16633809546008) (-0.07707774599806172 -0.07115169248571206 -0.2927588120825545) (-1.672770278758957 -3.45811640611221 -0.07559343689150166) (-7.729545720562385 -9.183004819394556 0.1979611682190894) (-2.402705786884478 -1.157015273092987 3.619155818648083) (1.294975172081351 -1.248036679700949 -0.1904057139005886) (3.356512431406164 -8.441076778880197 0.6643507928553547) (8.922638794801669 6.077493681981628 1.152251856849358) (-0.1677614660779184 -0.2705749343687657 -0.2065526718867929) (-0.005448551066154082 0.02021153632889136 -0.07192774477884085) (0.0832168717373037 0.01399376150554402 -8.165791721034065) (-0.03496030654768499 -6.032152157808186 -5.432130440888671) (-1.176274011207755 -8.194326074443685 -0.7298113106722131) (-0.01913499603210706 -0.0215485405255438 0.01107615393184497) (-0.4223842782187456 -4.326415322285933 -1.787390697359504) (0.605570019182869 -7.699558652769333 -4.023867567669492) (-0.01433626560642928 0.01067481869097284 0.01154079522380868) (1.34469819687205 -28.38134302153316 2.208873992949641) (-0.007019469250986713 0.009923895677731748 -0.01120226551965397) (0.8965880955817394 2.276537986236719 2.718247471205467) (0.003008580364589135 0.001151035748392506 0.03292732018154858) (-2.159922505684927 14.20166208907002 -2.640427241790366) (0.5993514687842358 -0.2434886118375639 -0.1983588446531554) (0.0517120476108404 0.002605156181504982 -0.05891161645472023) (-0.4412868608515515 -0.04256529022639238 -0.04747980059951806) (-7.640565787684569 12.79286219141805 2.921883189561493) (-0.6216722251761772 -2.835021713298421 -0.4339795791459335) (0.2014261611855901 1.369764905552911 -0.6770125212851161) (-0.2911426848618826 -0.2382436640331196 0.1996982009682398) (0.4611917962714469 5.633899418358061 0.6280342200216462) (2.48519620845053 3.994788675468282 -4.87544990925425) (0.02548989183629046 0.08836746178452951 -0.1551192898699217) (0.006936547535651516 0.05539888570868311 -0.01306908904555459) (0.02608508307395514 -0.001293643629060766 0.02216045734716541) (0.04094927910498537 0.002345578595373637 -0.1018315055970779) (0.04263552904901731 0.0116046637978958 0.02583945514068401) (-0.00428686692144549 0.01708243173443553 0.07374989885919533) (0.1648735097645873 -0.0409400395527772 -0.05773349797467432) (0.1495119675694222 -0.8210262850101731 -0.6144132430404674) (-0.1621073047846883 -0.03070681228973626 0.01488766515289446) (5.191959609815186 41.74325321919012 0.2598972586599735) (-2.275246642795139 -5.922985791177666 1.251064292700179) (-0.7722486452873117 3.366042554194374 -0.5775071782426936) (-2.38703293228832 -9.893130294718095 -0.1739353207464761) (0.06738908148468414 0.003291093463204182 -0.0075884569703479) (0.0254952218226494 -0.03700076278454999 -0.08762205100208048) (0.05755726686467525 0.02584511754323265 -0.005000735897266796) (2.569599259022503 12.86496264164611 0.2209847415395332) (-0.315933669171632 -0.2244410667026319 -0.2487179183278465) (0.5558384816794339 -0.1147155842812759 0.5461454578976668) (0.8335520268102156 -0.1269756299932707 -1.003019013477722) (-0.08929593648989831 -1.695787188601775 0.2260681827711757) (0.6158613107263774 -0.8334829156153609 -1.451378596998941) (0.8532849486562135 0.1228467879022453 -2.312134474992127) (5.357021292294294 4.106636552982529 1.42823824092191) (-0.2446612021263215 2.498267141095059 -0.3775307001002292) (-0.03287716386160282 0.1115944916199355 -0.755454265016094) (-0.5331197575739193 0.2971272808423048 0.2545858873347344) (-0.4934057296013128 0.06188246263177759 -0.1693681857146919) (-0.1256755953207399 0.2298398304434577 -0.58744612416509) (-0.02196651940884201 -0.03384786115384843 -0.0305676084253797) (-0.1413837428685951 0.4144944648131478 0.08859843729588344) (-2.25345506799585 0.6103603639126842 -5.569441652507262) (0.208388141341513 -7.26051318875154 2.396827820862228) (-0.09934020479622477 -0.0606819108451371 -0.06661215415561363) (17.06397136412853 18.40075463211247 13.81685234594564) (1.309469520779507 -3.809332885387215 0.6496515379490002) (-0.1261669283872374 0.1182782304210561 -0.2083943170142346) (-0.1738910779044866 0.05043828799475793 0.02784371778167041) (-0.003393356659509236 0.1363964314735623 -0.05632364649391046) (-0.2002715825110984 -0.4533578041123167 -0.7775429785141585) (-5.952958689056638 -10.31817752952538 0.07410758020411112) (-0.02360067179844651 0.02124057295176362 -0.02838296245585311) (-11.71888507810842 -5.596542562939621 -5.472462087272317) (0.1231956524649503 -0.96261542686223 1.114124314117481) (-0.8334741570122428 -9.164038971753275 -2.345437071919733) (0.05189192133055925 0.02598409228414465 0.02330187605502573) (0.2557344529927215 -0.8961474913624357 -0.8121231241727523) (-1.895154284574864 -2.787514651045047 -3.110026055720613) (0.1406245442476586 -0.01997660866784402 0.3144018360869326) (-0.961687714011739 -2.279829950161989 4.864711748543082) (-2.421616552791404 -5.976511462959817 -1.699145300902896) (0.07728394886579425 -0.2788033134875051 0.008499603738309491) (0.8925886672599019 -3.485559137570524 0.6968557659765564) (0.5311921637824425 -0.2218905845731003 -0.2473977927242586) (-3.272963327191806 -5.859676188099831 2.128255999716229) (0.02467607927100944 0.07384906981920202 0.236107700755938) (-0.140047555723131 -0.4842416770922569 -0.297313904981019) (1.316454204579824 -3.1786781835836 -1.916625343687011) (-0.731349896749382 -0.6429986082110358 1.446718405042736) (0.02884761245411004 0.06666413684129607 0.04448751926779781) (-0.1066855258217222 0.00410548358925604 0.006757914264489178) (-0.9012110148633254 -3.872802927080877 0.2374592981810827) (0.1514018780108893 -3.751992498260069 -1.130523161068747) (0.113818949976027 -0.03710394491542507 -0.02819282442377488) (0.1687985528126644 -0.1027995074328271 -0.07283516275563351) (0.1705829003851333 0.2537939760003956 0.03932160711171541) (0.01220366875981323 -0.3447156166354972 -0.1993610707592595) (0.1349926783893072 -0.2887736610716553 0.1870580532466087) (-0.1581607456766075 -0.3744277845049668 0.2061925514562462) (0.09896920639897859 -1.36998941586964 0.03996875315849313) (-0.01531397075301072 0.03469513532011459 -0.4412498832062505) (-0.002882472053130518 -0.01515560981152691 -0.02131173564368277) (-0.12067838904971 0.6251671209024906 -0.3938797696960462) (-0.007648049035364056 -0.01783039116625432 0.02520161363364622) (-1.374788492948485 0.004265506413102083 -1.827572799480973) (16.07374442196036 -1.113757668663216 3.491201968744535) (0.02276318129290213 -1.187364116013622 -3.271260866632049) (-0.299283901166392 4.50322123607987 1.15356697622082) (-0.6526644894334075 0.4153943174384254 -0.6213455931485766) (0.2624124890310178 -1.997302059356691 0.6643268966477182) (-1.654575404594379 -6.00161496724197 -1.496622511346967) (0.2328160902788755 0.02526202987287908 -6.744121823082458) (5.255588241512175 2.341435261189215 -0.3674030338360742) (1.69274257810196 3.189608914633115 -2.464281989499299) (-0.0635124133884995 0.5322131430437054 -0.05124824315902682) (0.8009791295156714 -8.459458970326828 3.691175850029785) (-0.04313534597370533 -0.007872175925887822 -0.03061351084555766) (-0.1637843936389493 4.866519696105618 0.2023463668444053) (1.181294624088828 0.3954242063238016 -7.093560548616751) (0.002054145882014813 -0.0008530160933729655 -0.01710124616458725) (0.08858135194716621 -4.95096001940888 -1.239099444931356) (-0.005820990103989737 0.00629239883855453 0.003798428000014611) (0.01691812446504424 -0.01404862558602814 0.00513358499058008) (-1.258907495876567 -3.448459544156148 2.031955420611526) (0.01235791849829215 -0.008738378767140044 0.004041988233409978) (-0.0475403127078612 -0.002328117350982145 0.07052598930970107) (0.05612107461174533 0.002197567046109912 -5.129691848327493) (0.1723843756496663 -0.3994541003313253 -0.2829018970810967) (1.077424194844159 -0.4732128805218846 -0.111700575568031) (-1.097678075327169 -1.748946324868881 3.093466771321826) (0.04282467121089594 0.2571539800013373 -5.43960551613145) (-0.01553325455474741 -0.06612726623530679 -0.1239951693789438) (-0.04257236487491968 -0.3610812318253678 0.01125124160970331) (-0.003659757418879625 -0.1792737157962385 0.09770377485353086) (-0.07535942996014244 -2.697046212471995 1.164529405954459) (1.044024223827473 1.436717244457634 1.010402331030695) (0.001581609992415297 -0.04272691962549127 0.08321017594644278) (-0.06050264338240435 -0.02554279509062794 0.02140879618685695) (1.154659458378465 0.8567114958428175 -0.4412274910014613) (-0.0282429662982581 -0.01789846089084345 -0.002906939139405769) (-0.07564197126959293 0.05648986643425073 -0.02992674067001488) (0.05008920923203808 -0.001330751912517185 -0.002871554016516113) (0.1197485500219322 0.02228291700709121 -0.06652139635836841) (-2.262448612310419 -0.8859512563227513 1.627560840284975) (1.540342733015811 -3.614646489919108 -2.628808447833761) (-0.329559119363725 -2.842142480444141 0.7182260664626476) (0.1342725091612004 0.05398906212943964 -0.02704533439019539) (-1.532140680289956 -7.365130259084759 2.349151496076378) (-3.652126235188844 -9.929526426293902 -2.619433635039433) (-3.469831128845118 -2.062117235029619 -0.3963784743378742) (13.2900974966033 -11.03310200586114 -11.17327589957332) (1.651734619133061 -11.36987626614562 0.7242908554193331) (3.127036374756831 -7.94066408078135 3.582380585455103) (-1.621064013894453 6.448717934353951 -0.3803652794642417) (0.1809503916691134 -0.3392310414609667 -0.1611339071177662) (2.571620991952704 0.3869181824916892 11.03473051505132) (-2.648738680519347 1.023275284685573 2.154398270800966) (1.713681806734216 3.049154488405836 0.9531569115650773) (-2.72812994339152 11.76376804091339 -1.641114774754749) (2.047248445616282 4.237513567857083 14.78475117140914) (-0.4766439191657978 1.188440242133352 1.101988864548348) (-0.5602396077842007 -0.01961038670781039 2.169192332975081) (-1.716672509171944 -5.154945621781739 3.155102978281505) (-0.3018927810013102 -0.3788948928854104 1.451219371761679) (0.4167561282926279 2.930478326121168 -0.1440911310065162) (-0.4607284151578392 5.243992482109056 -2.792063428141) (-2.3483170990697 1.804671180392048 0.5430642101505928) (1.443386979596621 9.499451823785934 4.250115394403952) (-0.01467688086793552 -0.002700510900975396 -0.02956024290812786) (-0.01527361434365148 -0.01467421263905023 -0.0007526104293434535) (-1.332596435350604 -28.50371550865708 -3.535775672784656) (0.02019094129352651 -0.00290355029605026 -0.04447002640862111) (-0.9337419757148919 -0.5290966928745053 -2.833989025927897) (1.24765903907988 -5.843945098259271 -3.319508295463347) (4.081148442416604 -0.7381399636910966 2.313777903711435) (0.0521884288075104 -0.06094831445135333 0.1937434969906932) (1.259656304638919 -0.7590883759775923 -4.159841642463141) (0.3823515920663777 -6.419590744138421 2.146749527523211) (-7.042494836439039 -4.301430823065672 4.722570592212105) (3.989790693706796 59.47002896582178 -5.251767244559594) (-0.8825032329552989 -0.7726066749142018 -0.9204513519628947) (0.2525121630717646 -0.2689922722899306 -0.3338639414513213) (4.111814256921457 -0.4738211866589599 2.041008140744884) (-1.981875809108171 7.37232634268924 1.933065569432769) (0.9481260693428772 8.277089720272109 -2.56041415873137) (-0.7277577222069949 -9.064319679711508 2.969458332678897) (-4.301421655399917 6.144642745902153 -1.244181087145307) (5.116986948470876 7.060459582486061 1.376363684191508) (2.015143370323518 46.16462935284748 -6.802742760636012) (1.270303303520431 5.375650273383767 -2.738086748774626) (-0.9749372534902059 -4.171857017069822 3.150199943111306) (3.198705063998753 40.09532631812685 1.876337049430131) (1.480511801200954 9.393042919606089 5.983919567635705) (0.1520015973756447 0.04902019880756205 -0.03155183217489131) (-0.1153101800720755 -0.07077482657976761 0.04916172444254114) (0.170287830069582 0.05772689065316836 0.03426002519393925) (-0.02977977914371127 -0.1015051557221188 0.01392718960781908) (0.5713086552962379 -12.27856540956591 -4.174616183297575) (11.90703718932873 -23.45457295668416 2.598156554876744) (-0.07273462292207045 -0.0695644767452247 -0.01064384067553956) (-0.1349122182697396 -0.07307368722823579 0.002403431812745341) (-0.04098875626227437 -0.07057119444366861 0.01196639464020045) (-0.3020116082890549 -0.1681647377760589 0.05993484177704791) (0.8355127246332873 -0.1394712365874537 -0.2005529020644354) (-5.037781400119641 -10.74949767062301 8.362709645510989) (0.08533522552325536 0.02683401069173201 -0.004149956809364315) (-1.634701544062467 -4.464251625643825 0.5451522203388542) (5.070573144269499 -1.92182298303907 0.9969181968342534) (0.1764358552823192 -2.093811021113711 -2.097946887886229) (0.2066989029416601 -0.004676522400132884 0.0547035039799733) (-1.580754885155583 -5.896237686478166 -2.77621187660447) (-0.05056490898868363 0.01433358391790944 -0.003126378889936221) (1.743703804874041 1.25419054233949 1.061790922391138) (0.3818155035978517 -0.7544253834960961 6.497393678453345) (0.0007876146092711707 0.00933029538548011 -0.03250765322974569) (2.413927420417894 1.33031601874466 -0.7044126928004055) (0.08483376444983826 5.334035161203217 -6.485972093051271) (0.4811478502932262 0.5655851261179988 -0.0810026667709675) (-0.04444467116789969 -1.826330918373253 1.017985462588587) (-0.5933065919524398 -2.807608175656042 1.370472467628569) (6.678938796091076 3.518214006125032 0.4386492807165845) (0.6824382474201683 -6.441749827181292 2.238082919581686) (-0.07793862399826947 -0.2869461620996242 0.03493362310903494) (-1.509489591979056 -7.05992619145188 3.423154700520733) (-8.821168377638081 -8.439718140248267 5.065137190092951) (4.566446607190318 8.149046068611542 0.3532067713788249) (0.235884482944139 -0.2804632644588404 -0.2366469579629965) (-0.06451961442502457 4.944493810105448 -4.527618265298492) (0.737944828878937 5.939778644446127 2.691464111778644) (-0.008700899881877999 0.539772078715998 -1.154561463366352) (-0.07774833521806236 0.1906473652087871 -0.1338299579789165) (-1.0617477040786 13.63458847830726 1.853757251753374) (1.118444092189415 6.509877928089808 3.031006157726722) (0.004941700048290401 -0.1116801243762375 -0.1212585387304685) (0.1684487774458777 0.03409690906355212 -4.524369382025584) (-0.2478188286028205 0.2357160093889793 -0.9673616968226437) (0.1600491173523897 -0.2127563858217326 0.03797743743000426) (0.009071828602980054 0.1830100429549339 -0.009928959526586262) (-0.003856386758343124 -0.17395325928079 -0.05684179365670471) (-0.01407731603214334 -0.01164577779519554 -0.02691350948965713) (0.009996769118526254 0.02311692260873249 -0.000841046654490394) (3.877704058124202 -4.844150033623258 1.598193948492959) (2.879253648691482 5.948400493192372 1.470923303828181) (-0.582182672185953 0.4041278192088327 -0.8586349667544293) (3.300461650574495 9.433658687525067 -0.1486054615584844) (-5.242874540123479 5.561600500230837 -4.812963026501887) (0.623408765443362 1.084196477913633 -1.13580628198952) (0.4005200859072533 0.7619848299295421 0.2578290213283284) (-2.558610104862149 -1.863938012586085 0.2040802505516208) (0.04718242765505098 3.411063719679669 -0.05180199541125396) (0.1224092082812179 -0.3480883556114511 0.4669831084997312) (0.9364703206077037 -2.577908512411612 -2.571366448481342) (0.09222586095153439 -0.6030376846026966 -0.7676872626886435) (-0.335468495466246 0.3110688080264666 -0.6144339295047495) (-0.2475680714108203 -0.1800104478368465 -1.26952493131991) (0.3786309125106657 4.137821496631519 2.283714469409278) (0.8997409462850048 4.487582533996131 0.9326343253335405) (0.6838422609829676 -1.032850150093921 -0.9459452372367225) (-0.6710122581035831 38.61310833052249 -0.0323621146439913) (0.3979344333398586 2.32845204280844 0.09376286786319149) (4.341984274723449 9.218978331605861 2.661367645328624) (0.01531640514704513 12.73271343414942 -4.533725119769533) (-2.340849023354904 4.520519395286179 -5.75474328037361) (-0.01040759892123012 0.6872478012137901 -1.958960636948213) (-0.06556068095833774 -0.00733472421108515 0.05845116960869398) (0.08640640725197661 0.2892662927084074 -0.03657276492848209) (-0.0644196495289338 0.03036068393460428 0.02566309238542971) (-1.88274590525846 -4.634406168934494 -2.463706635061137) (-1.971463320125817 0.7347672387862537 -1.433750480494522) (0.4461858648697965 -2.746926314616202 -0.390903519115) (0.5944928420303954 -3.101377303770987 1.102090499975968) (-0.1641961451720763 -1.798674612113167 1.112334129040024) (0.8577211234579962 -2.01872663147094 -0.3341189399744352) (-0.398312091928275 -2.019944692460355 0.2085592286446517) (-0.09896004413978599 0.5449537719495522 0.3350642380484343) (-0.2222058010055797 2.087972956417053 -0.8668698212383521) (-0.5155709492462648 -1.204640930057731 1.086147370353333) (4.187880025305287 5.105114096903558 1.539242683705893) (-0.4661137769014396 1.962551419201367 3.727147138596347) (4.083205880366626 1.78650087867269 -18.91027357899497) (0.7291015926380553 4.235759114669796 -0.7752410221458327) (-0.01432953373855006 0.03663173301722122 -0.02147261733844419) (1.829544947468691 -1.1995025978329 0.6982991853277782) (0.2559875054327173 3.387698558487973e-05 0.1906569216052917) (1.457616255339919 5.850967752443778 5.256034101475008) (0.5494555970602898 -0.01995015148702906 -20.78570303756547) (-4.306696319309261 -3.32477381704712 2.837182376314612) (-0.3693615764553119 -0.1051929178834901 0.4504431962499732) (0.04719641160656322 -0.06578504727210438 -0.02143044764183147) (-0.9662128976638871 -0.674983554481785 -1.763923631330351) (-0.02323732234005546 -0.00763752365193197 0.1427730572214443) (-0.0174497240436403 -0.04088071294450621 -0.02055846887053037) (0.08701593191722297 -0.02268793136777417 0.07031655302415898) (0.5842941028902959 -0.6154034276201749 -0.01046626042066037) (0.3436999339908048 -0.9286589926033115 -14.47462569091924) (-0.0110221559317883 0.04316592962288918 0.03591447901697006) (0.2061863482964267 0.03298681496047876 -0.1169302140391456) (-0.4444957646074383 -0.3505438070716292 -0.1018284845757001) (0.1288373622669474 -1.227110693844238 0.785795654404686) (1.503926071862043 -3.177906604309342 2.029955072667329) (0.1035083493885152 -2.620216808080386 -0.9288287116176681) (0.03728079549916405 0.0130665715121407 -0.01359395402696232) (1.207957772610552 -1.446182689166987 -0.4061734744002604) (-1.259335740230555 2.087039164121362 0.0338384671878188) (0.212209763393111 -0.005295622728989702 -0.02772197020517092) (-0.09928691901357489 2.251484755527717 -2.6032736727923) (-0.9399717960984058 0.8363850923442316 -1.38116838947143) (-1.848260498104184 0.0282602858897677 -2.369494725603141) (0.1490910117416383 2.627512958125829 0.6042074183258686) (0.01634670918403147 -2.506676925164379 0.6682047104396525) (1.525756443527464 -2.121282929396804 0.6468527725745464) (-3.490831485426198 -5.489422743264536 1.535641884989226) (-0.7557245654840068 9.385561349656394 -4.59234099776172) (-2.130594241601756 -3.435937521007409 0.8142494592998414) (-0.2431709130139177 9.703750421993792 -0.4636303150221768) (0.009444817929707671 0.1504642748583778 -0.1251167781175772) (0.06178145189535023 -0.01108410547045432 -0.01634273117130374) (0.9721865650722401 2.161703296488636 -0.6747256606681946) (-1.9371509244794 0.568802391291623 -1.586886667285805) (-0.912484447219616 0.9398051345503187 -0.6662686187681718) (-0.186221250518677 1.369837715425777 -0.01722545975942089) (1.621839489463696 -1.9399333004743 2.267814986730919) (-0.8364640959574896 -0.04414085911583099 -0.6563023312538452) (0.6591883969404484 1.403633114446569 0.855967169659457) (-0.5230342112974058 -0.5511558041828795 1.398030964807054) (-0.8079906109727452 0.1379804945899038 -0.1923634988121554) (3.158765886323649 26.74078320919699 -1.064291436005542) (-0.8067963657206991 9.250647438836271 -1.733517180793548) (-1.554388622160515 11.46735200341046 -7.203462054897954) (-0.09581891752509583 6.229350869304683 -0.2485356836736018) (0.5867379782901245 6.336842944713098 4.882578565374503) (-0.3054747524920502 7.668904720728525 -0.1897829532784923) (-3.584012792660627 2.090838592849284 -1.12800911670783) (-0.9870372677202693 2.085995100656907 -3.204829483381112) (-0.2977863300187781 1.920278937881404 -1.51039538259984) (-1.902677664396365 0.9826323830481625 0.4198668973078524) (-0.412691819232365 6.220950830496383 -1.506626070749344) (0.3446105918408893 -0.5382439602293198 1.182340077583543) (1.303206619532658 -1.561394453162328 0.2419858048310356) (0.7300922277371498 -1.678926631205005 -0.1255199621748141) (0.326572199509602 -3.973128358768419 0.1985807485925149) (0.3602659610612589 -1.53154763262799 0.02363123582346915) (-0.1587421261568358 -0.07788043225792982 0.05601694452979237) (-0.1076094138817067 -0.004531362373586093 0.0269242398556537) (-0.04449696719809434 -0.2773094234694129 0.4204377374985949) (-0.007477655923661436 -0.020606563709999 0.05889594496629535) (0.9100119457730278 -0.5620067942603093 1.835893086364662) (0.9057796276301195 -0.1144931279188655 0.225084792980911) (0.3058541256885219 -0.001062867035996007 -0.006458940588320736) (-2.22783305118188 1.567841329792647 0.2631371866806758) (0.2176312841527046 -0.6830620037113238 0.6921305102359034) (-0.5022918397364098 -0.1754626505745516 0.2679111611270751) (0.2874350963727123 -0.9699795473724767 -0.2044756599729014) (1.040188453223165 0.2737702320450447 -0.2066071811691407) (1.572649025160345 -2.987847072977838 -4.069823520069541) (-0.3366414535638884 -0.5985589675609562 -1.616809726751463) (1.752387651513729 -4.036659541724387 0.2542592409637313) (-1.794260301666707 -1.821528090498078 -4.004361440062327) (0.1031794042725924 -1.524212719570604 1.441340997578128) (-0.647266063947711 0.1049568492828588 -0.3399585547587969) (-1.626963015195025 -9.445530239113513 -1.025853463087168) (-4.059193308276843 -4.062454672403588 0.80965607553048) (0.2734891001969542 0.132304165845244 -0.3333417348285929) (-3.067477118807041 -5.32519568837788 5.786347137005575) (-0.1837235901054072 0.1012663387056926 -0.02961973381892245) (-0.02325310534162871 0.006557413177794361 -0.09685469394340426) (-1.022696196898802 -5.625552861679091 -4.146081345627668) (-0.6920629109591505 -2.697109246209637 -1.466177606764474) (0.04909189156579382 -0.08018328809627623 0.01844411007437717) (0.09117402328240611 0.008411576616512238 -0.0158768821426402) (0.7475446604071206 -3.282803879566917 -7.622102930968257) (-0.3379827783368518 -0.334012610301562 0.1056905437280004) (-0.3375213902356374 -0.04780334804082935 -0.2060073790875592) (0.7713001481071413 1.169867856284158 -11.65213765486901) (0.8644582020926921 0.2529723582714652 0.1481727997065321) (1.212208151589762 -6.701120734298435 -1.652117409779288) (-0.2297925954238617 -0.03478640719724714 -0.04539737528477501) (0.02191796596069162 -0.09665805623577345 0.03799529515582826) (-0.1029412288074265 -0.3655887139133661 -0.2530118726569972) (0.8929476909251751 0.08221506281416927 -1.152859982806748) (0.02213204673429878 0.004878717453613348 -0.003936121938431722) (0.4981980487403147 -0.7847597790315556 0.5276432460115601) (0.0731158664133989 -1.121108300685715 -0.2391999090412221) (-0.5265534510803775 -1.873769208030641 -0.6280817067364854) (0.1418127091518753 -1.142726174082463 -1.404453122766677) (0.438800141698481 0.9148616591275742 -0.5511245516138208) (-1.914869007192461 -2.447194107135038 3.641929720999953) (0.4699765508989158 -0.142954259184688 -0.2672148312146487) (-0.2102979684421644 -0.09884571617231523 0.06465003181772834) (-0.05435059937149717 -0.0626899112980813 -0.07972047279754707) (0.292036440050421 -0.9830438848522114 0.06786430759731533) (-0.2011178216480418 0.2311811533914722 -0.04746004533790937) (3.151575576098037 -3.981234592468949 -1.460040114892219) (1.102886864411935 -0.2541478942575321 -0.462579068330311) (3.284000488279245 0.9798843736608311 -1.188265472232393) (-0.1211916643202694 0.005956701870388843 0.08686081379144553) (-0.2925631422018149 0.09619034629334655 -0.0323995637189295) (-1.331384085250424 -4.105597292649125 0.3946050244615664) (-0.3130277103172797 -0.2619870192612348 0.6679826036246065) (-2.92566950754225 -3.969332031499293 1.579880532118337) (0.4986680751595728 0.1701441912931191 1.323226204277855) (-0.8125559915444057 2.523437944661623 1.416613961495355) (3.111602143812139 5.063975692351422 7.325414895691223) (0.009467295466819292 3.31302793056877 -4.344372652430009) (1.198961368178533 0.5100502855054087 -0.0372711531333948) (-0.33392929030196 0.856627479855822 -0.001535951650944486) (0.6365247850978579 0.2791975945865263 0.7702413240870166) (-1.912629014793358 1.061468324230634 -0.1925584313895559) (0.2710280041036215 -0.1249733751608499 0.1960983509047283) (-0.4023093812715627 -0.09546132502775224 0.286930289035671) (-0.2598295897530321 0.004218803729466758 -0.08707197742872506) (0.5302433044577923 1.7208098058263 -1.269324502145593) (-2.468391193852411 6.775887577550414 -2.22408652289125) (0.2028495805518897 -44.09281302632828 -1.268154881796096) (1.650189650087613 8.41615406946284 2.811862075686549) (-1.403964798239353 2.459156800349519 -0.3497439591086637) (4.50298698100228 6.174255897296807 4.527527561548948) (-0.1450031859880883 0.6670839737262912 -0.2855009944203809) (-3.910005243469428 -8.304376569453005 0.7299668460967561) (0.2951056977196244 -0.4428568983596272 0.1515907475396107) (-3.650150724339495 -0.1508569594415605 5.031317384075026) (0.8018339414005466 2.702059506820465 -3.261468563569335) (0.002528305863392866 0.1237575896443568 -0.5253320870306155) (-0.05831420146254558 0.02499765701616227 -0.135677028859167) (-0.03202837459489151 1.225163127486423 -0.08118273400810283) (0.4263737513987822 -0.6021846059268925 -0.3552564438362175) (0.4456156058101563 -0.1145279621162699 -0.1566539551118022) (-1.119373144549376 0.301814360563153 -0.01851581070541441) (-0.3115739315221391 -0.04439354353541362 -0.1795594821930686) (-0.09707761954920222 -0.03027750020990067 0.1794392475548136) (0.04501551452222086 0.03035245527021247 -0.02058506313409586) (0.08367058451529455 -0.003781305503829149 0.03500170874196289) (0.006032592571396392 -0.008550024805068234 -0.03526465789596201) (-0.1554491111230782 2.220862636458835 -0.9021642023187991) (0.02531089682753427 0.000479140781686099 0.01666890966926366) (-0.06613197400252259 -0.06466220951599441 -0.1969426377281384) (6.18163525404748 -0.3286710975537231 -3.357037655435879) (-1.463727896634962 2.924153071168678 -5.952460365665796) (-0.04070007184125313 -0.09684634953099527 0.2264747587501042) (-0.01172479599468111 0.006238454736721599 -0.04004464406487443) (0.3889185926908029 -0.7737561149595807 -2.791336328070357) (-0.3083945767247154 0.1013269259333148 -0.6026548025100829) (0.01519663119606442 -0.04184661794936342 -0.04478162083644903) (0.1866579861536154 -0.007500293872421859 0.00934233524184731) (0.2499076841636745 -0.06181610491459138 -0.1095820103785853) (0.07004856670428225 -0.06837025842969971 0.06692423853539127) (1.971902288302053 5.961738911669489 -0.2676471863958413) (-0.0133062131903738 -0.01708411725678525 -0.02787742298146094) (-0.1917911082099164 0.2769217505455609 -0.1752066722397056) (-1.572438103512721 1.089582951891591 0.1063614150158715) (2.645267107478699 4.370533034862325 0.949028366843083) (-2.423633359484976 3.182715569466472 7.608082235958966) (0.1778325499724921 -0.8443512613636895 -1.72484097655446) (-0.4114312200857158 12.58024242922226 -10.56698642564333) (10.29839418512554 -0.2295230404443762 5.50508818094861) (-0.2234369245269544 0.3949099752002611 -2.740363786142021) (0.3416203550502145 -0.555010554305245 -0.2654866178417059) (-0.4991331502290365 -0.2855074304218737 -2.920177696148067) (-3.329744785755176 3.019609014375121 0.07559290985567407) (-0.6301221400230846 5.866753251521809 -3.319213281285475) (-0.8615154365946537 -0.1709383868282333 0.1975785841164055) (-0.2840778422027897 -0.3512831657638454 -1.322454013891775) (-0.08485659498311779 0.09791574051298048 -0.2161814961553937) (-0.1209450843755091 -0.2330484794952808 0.183722713883816) (0.04157413689726577 -0.03573760302020696 0.06319028447960345) (0.07269573832739537 -0.1896759798456323 -0.1548128580259486) (0.1067768288744501 0.006585930745000867 -0.009859863442955322) (1.327852799268436 0.5428273886260042 0.04549735111847557) (0.1566191210112874 1.292229176325035 0.3966973224993776) (-1.14148926059355 0.3046792519915315 -0.307653163653837) (-0.2545923509956255 0.595802078181929 -1.033610249524006) (-0.3146378667012201 1.116928775867295 0.8563626105413669) (3.469216956796648 6.205175503535489 2.040171815536665) (-0.2967385016095817 0.9122396377599717 0.2130809900459618) (-0.02225308738930287 -0.008541424598349797 8.431328303203783e-06) (0.01096259444746618 -0.005506162602391618 -0.001850207392977604) (0.07554143767341999 -0.01683624217431757 0.05178983096937915) (0.1606438263168105 0.06648314927189035 0.05160180865139177) (-0.008119420019530199 0.010235325155256 0.003209857524032396) (-0.1072603975375379 0.03620531432202401 -0.0634389369927281) (0.1219958455889324 6.451013932426127 -0.8769882299867516) (0.1367305024761795 0.01434272490223985 -0.1106804559373637) (-0.0320063851495669 0.05988544836976877 -0.2580477392099794) (0.006681000791285321 -0.04395747191863592 -0.09868036001244868) (-0.07919070251837904 0.1033834741125013 0.05605489291644339) (0.1949622166350147 0.4677146300560081 -0.469447899328927) (-0.4859181885709842 -2.861308015191044 -1.932959384035444) (0.1274187919292594 0.7448245192699847 0.2069891192952484) (-1.175039420370096 3.620412550356608 0.5372649612799709) (1.413314596809495 3.395652039567103 2.6512075572987) (0.3678403358012554 -0.2485995197540544 -0.09990969911203135) (0.5367661475189263 2.255822712071188 -2.414939475030685) (0.1139009262663309 1.741461333665401 -1.423452292250471) (-0.5499377942758545 1.440256103690079 0.7391624584132768) (-1.851525608127467 1.337178231533236 -0.4614459832889024) (0.8147032318656371 0.3691300848244224 -0.1185422938627011) (2.055052312013477 -0.4715217084652369 -4.237595666947135) (0.1954392688886323 0.1922066690268563 -0.04030971364614461) (0.003131474651316593 1.848358113811067 -0.4837079945355113) (-1.661859436482111 2.243880133109717 0.2779077573640439) (0.9855118257350034 0.4660182162571135 -0.3996114904140706) (-0.04965783883950537 -0.1608338312229029 0.03353918390961927) (-0.3689854305067789 5.403269633720732 -1.918019154731382) (-0.03691829921805821 -0.07853996007621625 -0.009994644886973254) (0.5356760761340051 0.03410476025911893 -0.2055104281953611) (-6.226173422480045 3.4798599342672 1.206147645076037) (14.11845715848999 -13.89371985632879 5.015737677750083) (3.00321031091576 -9.110959918442191 -1.934378891147921) (0.1972602020189549 0.2113054643769199 -0.6788333410247863) (-0.2767925241278056 -0.008731076984584085 -0.01668733126679794) (-10.1112593243622 -22.79124949032693 -5.241482748286828) (-7.870463400762445 -40.22477819348629 -12.7007840493785) (1.299066575545901 -1.649952723348381 0.8245587478297558) (0.208863298045601 0.1604081017974846 -5.358776093491644) (-3.041235123493823 4.751211605734984 -0.5809894863452643) (3.183610933137121 7.931832710012738 7.560807031541579) (0.03310731760560494 0.365552760272593 2.645692934255354) (-1.742155296659264 -1.629374559212199 2.805517200982291) (-6.153579176966121 -4.559012903886717 -2.314127750970166) (-1.188257222652107 -7.613193648130351 0.9227901598060573) (-7.359412525376978 -3.624842068980381 -2.8460341539621) (-30.00083982485328 24.68287986382296 -7.985398693309607) (-1.291251000720889 0.08464665280882513 -0.2720726074383533) (-1.776611422072037 5.41464970691557 -7.921021618440951) (-1.780865459060117 8.208515520948225 4.417915256130004) (-0.9248081666878976 0.7529049894068038 -6.634038796537624) (0.7779012197691677 5.34172468619574 -1.581578885595422) (-0.2294144639476856 -0.5418381595976033 -10.01295376123937) (-0.1425885704979777 2.893872252702308 -1.279069608968043) (-1.416112576825904 1.969367251106104 -1.477985415616993) (-1.138823152072331 0.1123569039035489 -2.49440604855633) (0.9538840656276446 5.677088085643296 1.974391887104094) (0.7903352787863454 16.03304909404346 3.644280005006446) (1.139954411803829 4.008869990414081 5.856771031155492) (-3.179258555666131 -4.657273303312403 -2.537164652120207) (-5.832813081633547 -10.0382052431905 -11.8554641504876) (1.607903210739022 -5.0252509725537 -4.976791073298778) (-2.617048626435874 -6.332781029194138 2.916078346877445) (16.03100649599482 -20.22942264857961 5.936531740158306) (0.04397878850349382 -0.3045031878655291 0.1787158769151676) (-0.968217017034021 -6.952338407683785 1.184252478755418) (-0.7568573335445883 -6.280674212995956 -4.89026188229124) (1.453626644601334 -3.034169548008774 -0.595447163673525) (0.01068217379670339 -0.01815274379196504 0.06864599878092817) (-1.203127654301021 0.6738733465614444 0.06115140370271303) (-0.222517537419481 3.855410301601406 -0.4880293037304658) (-2.048922811959983 13.27939278252001 3.720253340823102) (-0.1629564828904894 -0.1632127847891522 -0.1088475309425979) (0.2917898230726488 3.955372614493409 -1.161154085530031) (-2.703830794286994 -0.02988251803328992 -0.1923789854627296) (0.1973636540375911 -1.49950321013384 -3.594344566893846) (-0.01748740590883856 -0.07308700548915222 0.02520737208082341) (-3.267734132741062 -2.512572295205526 1.369889865551944) (-6.244916368162386 -7.657226125004145 -3.778179676045396) (0.0945803890317834 1.213383633434599 -3.539023209777188) (-1.721945589353683 -0.2961304090876908 -6.379339836674302) (0.1470818745735023 -0.4912237029205004 0.3282007857780413) (0.4036053824638776 -4.23211120214407 -3.555481118536553) (0.08101186891758159 0.4914244796202129 -0.2159442096367322) (0.0534564891021465 0.01554861230247902 -5.975253983167082) (0.5223768900193331 -2.576323989978401 -3.051263396703534) (2.086521465872987 9.847998443379954 -0.834364766460701) (0.009860479802676207 -0.0001363959400960384 -0.01325923579252612) (1.676037019688436 -11.31835628779322 4.201833468252315) (-0.7343028912452425 -3.771726013851965 -0.6830740912862227) (-0.3745348066264113 4.346927251434335 1.085423456781844) (0.8536195979529988 3.711494829554365 0.09050090492601459) (0.2740526508046431 2.385027968298569 2.088317858346139) (1.164540597934971 -3.308659404877539 3.111941957810902) (-0.002304789001307138 -0.007280057228435215 -0.001295535967761588) (-1.919209904340661 -2.977759641035621 0.7554378667952705) (0.5927152148910182 -1.206359508406349 -4.30905389601084) (0.4758302316875039 0.4502314394910379 -7.183303493586827) (0.6290756267900275 0.003662095209771482 0.3630497356656951) (1.615113784804146 1.349507373142426 0.8912200577080509) (-0.0291833470306479 -0.006591141794112937 0.1266683395448546) (-2.957379922165488 0.2659808918390324 -0.1985828976258077) (0.1735546629931207 1.504316340810083 0.1266885621361137) (0.5202483477537063 0.2291957065976755 -0.1242384780983212) (0.7154621580163503 0.7113677697357554 -0.7477846843338574) (-0.08183446909521713 -0.03681469967210754 0.1504712023846116) (-0.1285893514993404 0.3670420220976561 -1.020103845760685) (0.1198487600353537 0.01818250401436553 0.006308640437455396) (-0.1740438565701264 0.03044806503125778 0.1914762143440043) (-0.3964763744462875 1.20566789822501 -0.3206205475334352) (-0.01908467704205125 0.03386720275511092 -0.04676315880931338) (-0.001608020577726382 0.1531366045461335 -4.568796322954251) (0.06180909573943614 0.004017861889481079 0.04457059852315213) (0.5815504176438409 0.7565956216159537 -0.9713945176359429) (-3.723945477943484 -5.730750640504983 2.113985774591559) (-0.1769265479417296 -0.1548413266280593 -0.784039260781796) (-0.4464454894042197 -0.1854673525944933 0.07629568930155227) (0.2040152692577579 -0.4635000542639557 -0.8703615399844786) (0.1127015631894666 -0.4231108480368367 0.07705260847427819) (-0.5616771915168391 -2.533126160585954 0.9287414574890002) (0.2147572327712363 0.5529006802701881 0.04353819055472052) (-0.1412759609336664 2.276066640916955 -0.5090452096034218) (-1.751061615693202 6.247538304134428 1.494127217894072) (-0.7014533271181808 -2.217473377936488 0.4206745744625812) (-0.001773837100190155 0.0027524294757943 0.02897835395684516) (2.025021860535127 8.47720137520551 0.3870764214134379) (-1.396639637972377 11.99565599003786 3.295104044529239) (2.10631178872275 -1.648838650345966 2.997110142947014) (0.04803578443862189 0.04567670621747971 0.09875338318239377) (1.599661007871716 -3.014979087862803 -3.140004991081637) (-0.9805266464427789 -29.49409816752262 2.578631458897847) (0.8740887108615593 -17.32566816458658 -4.840427493578511) (-0.2184757250382834 -6.570127365180512 -1.807656239433069) (0.2664766864640958 -0.1163131321121816 -0.09736041396474972) (-2.246803605072416 8.981801984907747 -4.03322848796421) (0.3361803322404346 -0.267690151905406 -0.04186654255626233) (-3.029879474036307 39.30422602066052 6.018897094525633) (-2.207495500954771 -4.4991581122136 1.776369837680707) (-0.1286784737808989 1.02293073914576 -5.041289516190615) (0.1236487963445036 4.328075843076571 -1.267552504528636) (-0.5409525319253645 -0.0156124228795303 -0.322928460667856) (-0.9423701279176933 3.081144099596615 -2.761803329013561) (-0.2419159659055048 -0.9062956393322359 -3.745701089775975) (2.117720052566391 -2.219750036358707 -1.691024568361685) (2.841791800664454 1.648207973965528 -1.399766179420427) (0.2376395876178273 0.2344946069472454 -0.4940419078456828) (1.104574047427977 -1.351218518358804 1.011802414992938) (-0.3602865998288806 0.6089247398605238 -0.7730457137357436) (0.9501695196784608 -0.3742293743730671 -0.5462484643981793) (1.364991391446186 1.049823755874234 -3.412136145132637) (-0.1816580632215659 0.8959964066486352 -18.40551833624643) (0.1906111774764387 -0.6328905316767586 -0.1690895063171266) (-1.428239071680957 0.4084509038616114 -0.2615556695470294) (0.05096854193634243 -0.0523341040350686 0.006021875707128428) (-0.05013151203554017 0.04006146862666556 -0.002117943506118977) (-1.976475266812143 0.3074210688689316 0.3573237199111448) (-0.2453807512004346 7.961698306899859 -1.270615529283299) (-0.02989045830113449 0.01499532597672426 0.00586608284583737) (1.637340757683105 -4.326948704872725 0.4259178749068088) (1.976688169828163 -17.65606909573385 11.54951830224339) (-0.02188096282595839 0.009028942485471385 -0.004760321201935214) (-3.991328948303838 -4.861642605203389 7.203843873988896) (2.996502483034615 -0.2609909986612024 -4.486483553972108) (-0.165926293444064 -34.11904640419744 2.909038869111304) (-0.7482514458864036 25.6969492226911 1.006296650548772) (0.8155667929279625 5.841088076051847 1.301140728303028) (0.3589544591548072 -0.4911329729228243 -0.7072520395616717) (-1.96523814973031 -0.9450740521369384 -20.47068920120064) (0.3600354607608554 -2.745565246713198 -0.6597196273506083) (2.118102166952906 -3.381203806495233 0.3291652297741283) (-1.387577877568946 8.697798305679392 -2.497697092265691) (-0.4744164482112665 -0.08858543692857934 -0.06695710918620912) (1.344386471967792 5.347294607159193 0.8979978260666188) (-0.2860282083613602 -0.678843920844348 -1.531129762362118) (1.109079736647611 0.2562205023535536 -0.5068001027820703) (3.491976361234053 0.9457870212040813 9.202232975337383) (5.295386283681998 -1.325294884785424 -0.3660792552834075) (0.9473585798731774 4.324946040980904 2.628679924403553) (3.925290916253511 4.017938287936878 1.981359663432176) (1.235703653798218 -15.75200870964442 4.956367121719413) (-0.1818350288357072 -0.04520351036764821 0.0648418601669726) (0.1184325470391163 0.2115082896864821 -5.120582651550857) (2.365795143681699 -1.783569632450619 -20.91510232147258) (-0.1143639374115086 -0.0116755856520384 0.005802577891904498) (-0.182951049595921 0.1507591347496113 0.08306807330847199) (-0.2784308257829178 0.1026409505291867 -0.1036571666147574) (2.76239144340126 1.58346837206125 2.661238771038617) (0.4741854334759708 0.3706419918735475 -3.450429341732568) (0.6254532547160969 -9.874697403223484 -5.566990346206891) (-1.952910335200403 -1.169583674215627 -8.737903993549448) (-4.943436308227602 -3.884234823934236 0.1254579536772312) (0.3219702355061552 -0.03194919386123588 -0.3595935297964247) (0.2085229718305417 0.0003229608604139317 -0.006161664308767183) (-1.697135096355705 -4.094720226371447 10.5063456990682) (0.2545395473893695 -0.1160838155224434 0.131070557133668) (0.04197822181943578 -8.58304688560127 0.3755864873672572) (0.8273885491644368 -1.961999030211079 0.09436881408206377) (-0.352858680252033 -0.1598688674086075 -0.3614112281505928) (-0.3855428452834629 -3.43175456940306 -1.986474141411322) (0.07538274073947709 0.2315163879907567 -0.7487846544100993) (-0.03153753339058472 -0.01157518201082934 -0.01857975450077765) (0.02483072017483822 0.0002288374805473369 0.002726489181553302) (-0.1477419564763442 -0.1632461207524434 -0.02501533327403384) (0.8658715201711811 -0.9258154785013731 -0.6158245371821085) (-0.3033011515881623 -0.9628344459478377 -11.79511269882241) (0.1717790934802392 -0.05634064484277206 -0.3411908210945042) (-4.542868122964114 -3.385650006977041 -2.850179516938057) (2.757626480162781 -9.376444073311539 -2.418264454982717) (1.606236563019652 -8.396759514913004 1.319058692830016) (0.1444518882766881 7.802751585183358 0.05582108223535825) (2.180688615501421 4.813933269384602 0.03265005590854625) (1.277534303895253 9.263508826026717 2.415357205508665) (-1.516439390609081 4.338061627959537 -1.446385849278438) (0.2104257956134506 -0.7303114670097508 0.9825822267924498) (-0.4261852929265768 8.425205449301224 0.08534338728618346) (1.408447406824711 -11.73197855220453 -3.310523707218263) (0.4858982858638093 -5.394833788072839 -0.5608463904946419) (0.2925778232153272 0.2999771472278324 0.08555220716099789) (-0.1557062499285391 0.1077807183328311 0.1559147393452272) (-0.308813683252138 -0.4254393390572813 -0.2113199803999355) (0.05804417658295741 -0.1850958629317271 0.1258607261191562) (0.01464071431515188 0.04168877047209494 -0.03964125659253983) (0.01523751249935191 -0.0171808183468915 0.003738729723619441) (-0.4818393919796523 -0.2388743985429507 0.6458096288917701) (-0.03358144016864566 0.05782193046536085 0.020566503268496) (-0.009447396601417943 -0.02247068116089283 -0.08749987553314738) (0.09318352761686295 -0.05928807698258574 -0.06546189535636543) (-0.04387564151206947 -0.05176221405627803 -0.05407647973458192) (-0.003437540498506691 0.005424149050228884 -0.003502617110230693) (0.02955742189563537 0.05088773478789051 0.01368134289200036) (0.1640682597323852 0.1102526511683748 -8.350641581646146) (0.0220029558554801 0.01862310148579154 -0.01670815714688551) (0.01415985510882409 0.009352855934692929 0.007386086926998618) (-0.01387677278354241 -0.008681764818987261 -0.05424733042112791) (-0.03911539499036206 -0.0179702337039455 -0.01924623157400088) (0.05955888284260289 -0.01269053254903924 0.05195750860039527) (0.1177277871581775 -0.1160503653020118 0.07792825258722469) (1.062401999764937 0.277645266777608 0.295845779604151) (0.6059715216104311 -0.1308983479165772 -0.0005671322859539807) (-0.2128508116616002 0.3621902809589857 -0.4058243116240046) (-0.13349312209598 0.1738784858690038 0.130007010128448) (-0.06095437959770811 -1.073311118687769 0.5593950274932455) (0.04161721117744938 -0.004134227231493355 -0.07125071381829007) (-0.02336114339741709 -0.03040421756026464 -0.02344948889076248) (0.04271516966064302 -0.01672840682732956 -0.06291876433315532) (-0.03002654009929368 0.001958308992327039 0.006840162630314068) (-0.01125273207740259 0.03026009402676243 0.01901894895861807) (-0.02565405889860006 0.001838509422306116 -6.607958839707297) (-0.03382837283148565 0.04610144910727389 -0.03844786174315718) (0.009574379756034139 0.2244138126438416 -0.1918595550130408) (-0.01393080416729081 -0.4420221851284585 -0.1961238463033043) (-0.01274649831020919 -0.1269234064067476 -0.2221072409083673) (-0.006645665537368374 0.001871482067916166 -0.04575616254744475) (-0.2825526537019026 -0.1821170814542729 -0.4512109840484008) (1.015738862456006 0.7789722576558264 -3.494196777686946) (-1.251086296091064 -0.5348026737217553 -20.57260889330528) (-0.1334998281827392 -0.2136823371278927 0.05207111937358442) (-1.545146428382171 0.8627293144150914 -3.140144016057029) (0.2538069204949137 0.04945472844295949 0.0226460375881591) (0.366753787328264 1.724649096822895 -0.6978754363184774) (0.3009678621432905 0.2150394744564232 -1.125116180828705) (-1.165913972208497 -0.1939076283292218 -4.278604853902997) (-0.05078626117034471 -0.03690858985522755 -0.03038940701448359) (0.178992347120398 0.5364762043654239 -0.412200944907657) (-0.06565772320169019 0.04476031684416344 -0.0006049326264244131) (0.08212114144446966 -0.08148864608243397 0.07801059609209414) (0.05760832291665691 -0.02181761168463183 -0.004240580914625132) (0.07341065389718747 -0.04332184105405171 0.1317793669280601) (0.003399541996047547 -0.00345327758236362 -0.001947278621095377) (0.2053539484888487 -0.1048785041455864 0.02056019536117773) (-0.08551578021895082 -0.03721445440965811 -0.07668273680634616) (0.5361094854430024 0.5694106651685695 3.055462983203583e-05) (-0.4476593390891865 0.4963195577377187 0.6417217474255628) (0.323250058186733 1.267933457982377 -0.102799918543317) (0.4603117730357934 4.826558979941455 -1.630836248272681) (1.010536896732919 -0.6897594464663136 -0.8420715787702465) (0.1692965419285718 0.2879635664973159 -0.1560935005537393) (-1.298798398688292 0.0528262674763732 -2.299067907483872) (-0.6529709092731766 -2.815844341716531 -2.667944049953717) (-0.1760198941230497 -0.1524138116242959 -0.09923737349481501) (1.576961287597732 -5.825001477661969 -1.405034623070267) (1.569636939838823 -1.852368540024104 -2.439228553966782) (-0.1043762657216652 0.004163356050047083 -0.01260021454854649) (-3.83926061284467 -7.246765040066713 -6.928368449293464) (-1.033466411053716 -27.51273320342506 8.582232693080128) (-0.6745569653365484 -22.71576997561774 -0.6821921491374281) (0.04415262116216762 -0.0511440108382346 -0.06599546978701774) (0.220019687958156 -1.171403548586521 -0.3632859514734149) (0.6074668367531046 -5.672896956050618 0.1728854859542038) (0.2283372216200492 -0.5575508535433472 -0.3443561280543956) (1.811976805098344 -4.55063998374869 -2.618457741411305) (0.02569993856127661 -0.2278844615765127 0.006880554226359303) (1.341586159069881 3.329939563330315 -0.7110539008184282) (0.01192040314530941 0.04641973874600176 0.04804652555663275) (-2.212888289404693 7.451239213433396 7.448581532829497) (-0.763131626660929 1.729059599256622 -2.178138706744299) (-6.939234758999175 2.534059872396661 -9.2004678404828) (-1.918238734441155 -0.4755341389667027 -3.214597924447008) (0.1456335500190854 -0.7407294230002137 0.1456108664027796) (-0.01106760141225501 -0.253538492396868 -0.7126727389109313) (0.164975686749193 -1.521723225247024 -0.7782411698140206) (-0.1434245116330269 0.1938490478872161 -1.122069873358612) (-0.2956430807847245 -0.3775612493821794 -0.2518018390455171) (0.3472359659620339 -0.165953161003539 -0.08613162849380278) (-0.1996329706253379 -0.5491453798793432 -0.343110560602168) (4.204707648450153 1.102919429555745 0.4520538976651083) (-1.348865175285571 1.098086249953961 -5.105167562740703) (0.02873658683424523 -0.02263409370320281 -0.04077240709406699) (-4.791794094830305 -5.437620676876917 5.563711348446912) (1.849366018856718 -2.190381196452118 0.5847617225231199) (0.585924985016618 -0.5229982169212941 -3.796927007412852) (1.733244206441245 -0.1675159180441073 -0.7959872025599111) (-1.305770690150146 0.7646110537252045 -1.434316393637177) (-0.7290196069390446 1.025594936063889 -2.960975626503688) (0.2662862580406132 -0.1797160120886492 -0.5348434946031306) (0.03364897389032226 -0.4043499487553583 0.4216941661216754) (-0.008957150738285215 -0.04721843355255673 0.05157526512380002) (-0.3331316494780047 -0.4303901542556121 -0.1180276310369662) (-0.1415318260649274 0.1038879699962353 -0.2521502930300241) (0.01049733477006251 0.02008360723666749 -0.008257578686551626) (0.01732837876641592 0.07018637070194084 0.005786190809322758) (-0.05252565683686793 -0.198603173027484 -0.05545571902408181) (-0.008728477320534844 -0.001733815186946361 -0.01332817209265396) (0.04084903492137353 -0.0184918215013453 0.03690914730436855) (0.1652093235639871 -0.09239494407791191 -0.007692809599610169) (-1.535300050763269 -1.521103039412926 -0.6325169875517038) (1.797080230126374 0.01158161169417071 -2.416251942864442) (-0.07362933803867305 -4.395918065844189 8.654108723663704) (1.686501645477412 -2.310272139203096 -3.62038449060907) (0.245437741790288 0.17027073893911 -0.6101395714400696) (-0.8666226865189975 -0.3236141048883983 -2.41719418002611) (-0.2921518862504082 -1.014297126956904 -0.0995141564377713) (-0.07416604615429595 -0.1301912183540658 0.01700818222498709) (0.03765693763348016 -0.04493586308142039 -0.0267599656632703) (0.04180223273350199 -0.01101317493876773 0.008885261691937079) (0.02033867726535822 0.02635364625075912 0.01562682249857705) (0.05851939528508854 -0.07201549692799236 -0.2183556382936632) (-0.3047690571471272 -1.286366904611978 -1.350946681872412) (3.533654673482577 7.108361988169512 0.002133596915012914) (0.04529306529170234 0.004316130306064288 -0.0006931541304859394) (-0.3233526015353187 -0.1628697178345674 0.002097480354753101) (1.945742118720661 7.296692789674945 4.243999266105421) (0.009791228889047189 0.005053611295327004 0.006306232709627472) (1.392447271141819 8.671315442621372 -2.622044915820893) (-2.893676493080141 8.074906917649146 2.867013242518838) (0.1657867263849577 0.1766151372344507 -0.1703794152300406) (0.007660250832845139 0.00436560514075854 0.01342469601740544) (0.04296606205589018 0.01754921982127919 -0.01393789879838761) (-0.04444616697677542 -0.0306909132267124 -0.0009820107193059101) (0.6997798388685931 1.253723418010448 -0.3765773001114545) (0.8007080570315237 7.572045691139108 0.8429748859164448) (-1.615627336163845 6.213858323253055 -9.179201216762642) (0.04197409697425693 -0.05032975762213916 -0.02637195218256107) (3.553222530663739 9.309253799191263 -6.950639902612608) (1.519990240515093 -2.679378652745767 -1.422653534392162) (-0.006256583751959123 0.023557523645425 0.006357972519368708) (-0.01051544779174661 0.002303074336955646 0.002840566558449798) (-0.5403191641476182 -0.3280632559895217 -0.5817668732251654) (0.3599387089139198 0.1864788545447645 -4.84334100220774) (0.4316926194934725 -0.2185669792070772 -0.04804993342740763) (-0.3951493152183349 0.8274832687127939 1.538017989203625) (0.05415950484764976 0.06797592615891328 -0.3797427677322725) (0.04834761723307948 0.1472330904867624 -0.0419957239787016) (-0.1085142712297185 -0.02615663067983674 0.0550363359878425) (0.3774023827712618 -0.148382700447789 -0.2709961781369151) (-0.09481306333783121 2.008083796227945 -0.2271892339491332) (1.054263500412017 -0.3729603487987568 -1.132373849627788) (-0.6320316732838459 0.4189112978837026 -0.7466443217675185) (-0.2303414771674744 0.002469336530572491 -0.2106160052661636) (0.07873921370009651 0.1860893339622358 0.03558334188892477) (0.8323735391492217 -2.761667812319717 0.3689463541870969) (0.1663737970314826 0.1203167754091413 -0.008045171818974607) (0.4337431711061782 0.9418658553295729 0.6502873962983409) (0.01666349987429747 -0.03244113692257124 0.02291252845746649) (0.05709315426763238 -0.04116676571775035 -0.03885633065256689) (-0.8149996688395842 0.0691471673191793 -0.1054940257713789) (-1.022105828851362 -0.3109979447900191 -0.518986281225111) (0.4131556439425105 -1.06154226413366 0.3816707791752292) (-0.8695097605633935 1.294902234647312 -0.9525036450517439) (0.8015568493711686 2.382374246474018 2.444441151303183) (0.08830506294500963 0.2423078576209527 0.01983761441745337) (-0.2199570537582568 1.253434192550783 0.4017639650054509) (0.3227234253473632 -1.602334896672368 0.4282407214100266) (-0.9003046397164869 1.227350489311568 -0.8715127841503322) (-0.1739889576294622 0.07115330933380842 -0.02503937964774529) (0.1459119193679362 0.02103447429200178 -0.03573597581428789) (-2.163652154690977 2.229117168299951 -1.701005758284136) (0.06830624366780906 0.03296603471554829 -0.0123965253058276) (-0.1516118550470857 -0.2528788989923165 -0.07817253942115235) (0.3014626788494872 0.04627000203635562 -0.01190020735279104) (0.01886646581570743 0.1023684524768631 0.04852752245762203) (-0.4010078719814638 0.6364406400986736 -0.2973237479962537) (-0.01377058505909878 -0.003711133614103254 0.001283943339616283) (1.015907269807658 -13.24925497811891 -6.724959650999629) (0.02554203824447781 0.2560522109083626 0.1324871002006675) (-0.01020807319403251 0.1244125669047686 -0.0184224544581165) (-1.815732302487595 -4.493061822998614 -2.447871971489625) (-0.9181518228297132 1.751259011234853 -5.589094083207688) (-1.227252948979644 -0.537876693391966 1.10963732276132) (-0.961670733269552 0.5491575247467061 -0.5490494042887946) (-0.01294161000631572 -0.1517980304231386 0.05163504145336498) (0.1423390357252581 -0.3698793044092049 0.2034366794764901) (-0.7981806078623165 -2.303240417675594 0.1013477919573652) (0.837026498046596 9.74688502017743 -2.115488647622706) (-0.014504584265156 -0.0002180358071618375 0.0233280502198331) (0.5612549867961814 -0.6587973790766822 -14.45599109326864) (1.567629049300335 -29.06400980963169 -0.6962627235442921) (0.5674063151236075 0.9022181146745289 4.886907020589018) (-0.06945729496051976 -0.499100295296557 -0.0263609193842879) (2.670535748463521 26.26461509537999 -3.146682131131354) (0.01129790001397711 0.01512388479223444 0.01664914360599039) (0.9148536291984242 3.739333308156686 5.070088158032728) (0.02621044944639421 0.01208435987389845 0.002261406697784714) (0.01392999637479743 -0.002323713255578843 0.03867203787208853) (-12.64602465662557 -14.44174068483579 -33.50070316080397) (0.007462796494229363 0.006534275762086393 -0.01456695044977214) (-0.01188687863881166 -0.01750038316531266 -0.004521244568841284) (-0.004471687688761251 -0.03145652467096332 0.03829749689234511) (-0.0276094938358408 -0.03422533400804806 0.0001078590725694419) (-0.06658440097344533 -0.01546330633763077 0.03320361826515933) (0.06775253046171249 -0.06586738244682305 -0.1213580145476456) (0.1072113965176757 -0.2804384044955106 -6.86027024620884) (0.3942069611833132 0.02561360887703208 -7.937795788893744) (0.1433778342383905 0.1266321347766508 -0.017893635716172) (-0.2356789873335206 0.6583095721943543 -0.2186088080213622) (-0.72356888362066 -0.7219886248256104 -4.036727435431852) (-1.201350897387339 -6.188207548306377 1.717338983625966) (0.446687007236167 2.773554783301816 -4.047482394069783) (2.480039286807335 7.691388802771595 8.989811079015979) (2.373599622610132 -5.214066039894139 24.53629459760997) (1.346593209844121 1.475768516397845 -1.016479115830045) (-1.240190413696709 8.994787317246244 0.6135563783923952) (-3.757601609742682 -2.611837236496391 4.867306561923167) (-4.033331061757766 -43.82136664696412 4.767227696841342) (-2.086358180362761 1.789445061558405 -3.818307426626287) (-6.88087797085403 -37.7377626728081 0.4633958648934176) (0.6784738547352825 8.388129875231499 -5.132478915381219) (1.842934680846653 4.401164775063688 1.097097392101665) (3.818533960727355 -47.85380012790955 6.048959684217189) (1.377814249313408 1.540034677652427 -1.049988565563329) (7.984928300302038 23.50873818291182 -44.57450784092112) (0.04763723810596515 -0.01024269689667269 -0.05609208958216642) (0.7499757861607678 -9.415529025126309 -1.527152767355705) (0.1605668277685492 -6.364761144295596 -0.4730556426888868) (1.179436924204833 5.296054691863469 -3.52971358078763) (0.9423996252812739 0.1081764108952381 -0.6368231507196342) (-3.147549170951478 7.117863937727689 -2.410460214136908) (0.8253965625796703 -2.743957571260442 1.351237614383993) (-0.03368125559371882 5.686309138447712 0.06975973482203623) (0.02803315170290581 -0.4525686987189534 -0.3537078298023922) (1.752539952055813 1.346022810477141 -0.985228794487027) (0.9744806298293989 -8.974120887710212 -2.980965515918029) (2.14694735313876 -3.05010288063669 -3.12934390631687) (-1.221186997924521 -10.10843986802658 -1.757476397318865) (0.103139143164517 -0.1466982244601603 -0.05905925319022018) (-0.05388011633677015 -0.1407748491035244 -0.07103447634938409) (0.4522746164806631 -0.5707540039367213 -0.06816070368444563) (0.3766521065428755 -0.1045914262644763 -0.1138790326331312) (-1.608420396246418 -54.86011844870491 -10.33963326899964) (-8.268423836097771 -7.672130162042018 -61.12190576244731) (-0.9024766343836591 2.81119917962411 -1.529518461475214) (-0.6245760049871708 -0.4953414019322638 -0.7560725011478338) (1.502801920594897 2.283228510940536 -0.3295373029711056) (1.259338911173521 -1.22053268738827 1.027419815463999) (-1.251065074483672 -28.83855816557042 5.361513125150687) (1.725090488015524 2.764381239404238 0.0167175602614098) (-2.47703660891823 -26.26503328853589 1.044745487957924) (0.09586424523440645 13.1975075261734 -0.5086366126319104) (7.215305009694822 2.230494859214418 -3.644600155143249) (5.776729647810873 2.149662201076036 14.08055649377477) (0.1676771317541993 3.016927769198444 2.21678928664884) (4.705007954051145 37.30391132557319 4.844008878576998) (1.24824233337533 -1.145336328080981 1.323382683150657) (0.8562158288625668 3.020373620480156 3.395280523222777) (1.250863259330145 0.4463965642424454 5.992340523234432) (1.142458094889735 -0.7849113880237037 3.10003457249564) (-4.365251778610582 -5.036403693906419 6.254427841678145) (5.282800796234164 16.7629461259289 -0.3830428214580259) (0.8252202412127974 -11.86089047656049 0.2547281810951014) (1.844130346464253 10.16313210676567 2.317955841661632) (0.08583565708178637 6.887618289705583 1.650588965053949) (1.027735995587997 2.108919187527373 1.462171891998456) (-1.917607660222348 -9.787753004912455 4.555480022161817) (-8.021559316308618 -6.949647820771436 3.127512483834579) (0.8235263864889533 0.1699595865579611 -1.208794377254644) (-5.850463760269596 -11.22001865765679 -9.132395397503529) (-1.035013218539508 1.374270259640087 -0.8825197225042887) (2.703879233534377 10.85032703247741 4.328299347284736) (-0.03968983905600398 9.093876684921225 0.9463751401254785) (-0.9974603268396018 -1.367747075051815 -28.41933995757093) (-0.3912331527576777 0.2052246640976414 -0.04923567780360955) (-1.523460145669699 -0.8107626595087847 -2.770405987874854) (0.5926104070003952 2.653715506241707 -2.735313088423323) (-0.04883004598902385 0.05502692259427146 0.0647309627123875) (0.01198903431296131 -0.0125419535009795 -0.02209571371683208) (0.072753135073308 0.02422952155320773 0.01346081504823513) (0.02005256863317028 -0.00772953849646449 -0.002335888721111019) (0.02210227931378694 -0.004067174935423995 -0.03193068386518667) (-0.01986256516364671 0.01685874777657227 0.04634488585675284) (-0.5175438466505493 0.5392879372981763 -0.4947505031158054) (-0.1867076829292871 2.322441386677949 -3.953136201753013) (0.2773239231170324 0.8034777069539225 0.245963411061615) (-0.08109201224604118 -0.0799434001401409 -6.600628651242472) (-2.738507626686375 1.875243882202639 7.879164375818583) (0.6672607189131309 1.876773627651206 4.74460638525159) (6.772825295782773 -57.62295690401043 4.830623782683508) (2.586333271415469 -10.0643223095192 -3.993399398839653) (2.204359952352767 0.6341041540537836 -1.118840525631863) (0.4322989208561188 -0.5994948121169446 0.07989257002788086) (-1.385280644628772 5.877907351095715 -0.8987479959556152) (-2.407948244750214 3.70772859560325 1.104963352423608) (-6.923490344659696 -44.28834987175529 1.897578507521689) (-2.54753200245807 4.77405650659879 -0.01494532162048512) (-0.7109373809595501 8.681011360221099 -0.7950552420781396) (4.999384661343557 2.611115792505224 0.5076981685564168) (-2.962194209576847 46.50296810824737 3.783423003577403) (-0.1969969596756794 -0.7772584080102616 -0.4623557868991289) (-1.639966624574029 -1.519558260487777 0.06071536367992811) (0.2078350368250929 43.41934264052173 -4.867901753579117) (-1.522981706245138 7.759659722471646 -3.170116831913978) (0.2282415946077135 2.390023155698502 0.7238337812407903) (-0.6042790631338832 -1.911459844900196 -1.739694755152814) (0.4872403959800167 0.6624706449225479 0.07593937529711597) (1.118654401335995 0.9364348610953296 -0.4163837161667471) (-4.908842747359126 -12.6674473188548 -0.5910002568625927) (1.675839028717221 -38.52447986296096 -5.059231264482328) (0.9999183122754216 -0.548749952146443 -2.56845230473713) (2.479394542424583 0.3348220108337898 0.9295613604602346) (0.5734472570131605 7.789518952722338 -0.7357376151675827) (-0.32332861768532 3.43382318393333 0.2566942297880361) (-1.445481089317493 2.313687209188518 -1.57856858875312) (-4.049140150458483 24.63765530133618 1.787178929812202) (-1.175462320401179 -4.909586453078081 -0.006723994341736039) (1.54238633728054 -0.1154642062348832 5.132224548135788) (-1.769403590162259 59.27037191147624 -8.373531418510382) (4.872102731549345 57.61764904664613 8.294438791222506) (2.267003459053564 -1.407419057083374 5.204726293828846) (-0.6063370682642292 32.47642426620297 -10.46636957581249) (-0.5268194210431107 57.83801395183672 2.685121925771454) (-2.576799780860175 47.95447123235842 -1.608081739983935) (34.72060596138086 -25.44663972134454 -32.93313952703937) (2.546890981999879 -13.61883120333649 9.060065065423839) (0.5147098008988067 8.367111930532577 -0.02815408381396391) (0.9140233697455182 1.433616259950943 -0.7342710889156459) (0.07076893222557579 11.03257765363839 6.367377803727545) (0.615576565023834 34.46424507013852 -1.22079713366577) (-1.636076554887541 4.552290320609944 5.003379488026878) (-5.172071118931093 -58.79633417219055 -22.46953667204756) (-0.2097098365803048 0.3908224150477828 0.05556242027112224) (-0.01156912709390361 1.828407598794849e-05 -0.02991735393676217) (-0.01032568875063648 -0.06046419152755325 -0.006562346905715735) (-1.705386922607273 1.847217938201744 -0.6309455192164874) (-0.4998281736564375 1.766177648108226 -0.1063614329448037) (-0.1715091205467105 -4.035132812894832 -3.126709011936802) (-2.775616870839117 -46.8357541912778 0.6930837995061395) (-8.160499274660188 -6.238909383341166 -2.11544736105039) (0.9393011615499904 6.477422787160058 3.20671960002468) (3.118229937885121 -0.1571958905043136 6.431842964105778) (-3.283558091258035 25.66726941595368 -2.515585169260098) (0.04306907240402164 0.04358505396053682 -0.052321632121983) (-2.783236249667509 3.548533535448419 -2.230066233658756) (0.3156936196592672 22.8472882353785 -1.344365882598083) (-6.404718799392567 65.245874532638 -6.705674586813596) (0.03147997754455509 -0.02493205399329934 0.002614539493858141) (-1.324814547760984 41.95909843945665 -1.256114438246474) (0.06788726165466208 -50.15404099624257 -7.158089730730175) (0.7357538307854604 34.02295610775354 -0.9811090113515044) (2.141284959010419 -2.113864212048886 3.162052694198554) (2.979670163803095 -7.613190239756909 -1.1117824862352) (1.499937320244347 -6.631592008528128 -0.6564817283145297) (-2.020142872919296 -8.475944943974788 -12.79053381991904) (0.01992773391759439 0.02961584793838938 0.04781840679212634) (2.619878231908085 0.653137335889736 -1.420527072745222) (0.635688983419908 8.573353842918738 -0.1122806468741772) (0.4426120415558484 5.949949546273481 1.98097632435345) (-0.4235983628363323 6.705636497514281 2.779731108864879) (0.05479833647521413 -0.052762217722544 0.06608568498858718) (-0.09368179254545914 28.26560830252641 4.15624107129379) (-0.9068478350918558 -22.42639205904274 3.443899547835689) (0.7852924322221203 0.3799802901651934 -1.957873102737465) (0.5482226391159921 0.2108441235393312 -0.1311268129853752) (0.01614514452187799 0.07291353081011022 -11.62447150896849) (-2.683849340267828 9.81307500484907 -0.07083428302712425) (-0.4053989824415148 -5.320102439951221 -0.4248433094641869) (-0.01124329265860493 -0.01431847109731148 -0.006000831353970517) (-0.5410353474361613 6.741578057398822 -3.178347043591987) (0.02440866034317237 0.02343045349950943 0.005245098205695) (-0.05082637988074364 -0.007181290904534083 -0.01420565716339421) (0.1417110626432713 0.02465843588470867 0.04418922664414974) (-0.0001331354299667492 0.04097433355132099 -0.004714701027400306) (0.02707501943396898 -0.07757431454263912 -7.602259105389547) (-2.199407341815894 10.50372533633925 -0.2665726860610833) (-0.5730229251943846 3.804688135215911 -1.417849964347141) (0.1136907936107432 -67.41972488961206 -8.515278847673878) (-1.375176701155649 -76.8232232839467 -4.358346335020474) (-0.3539709099012222 11.35182221447203 1.87943923886133) (-2.509055163767984 -4.797262610945756 0.6477993122267232) (1.988640332564576 25.6820129042098 3.954277212782134) (-0.2287864506892909 0.6140951020909551 -1.281105114324775) (-0.5866533027037961 0.1522979798035686 0.332332415033012) (-0.03323068480727397 0.457269661320372 -0.2342422516164637) (-1.88369466266367 -1.175551776729559 -2.985853348967343) (3.488971719281165 -13.76247463725078 0.5776351803570886) (0.02399234572670379 -0.1029133986513588 -0.03388179682372067) (-15.18622897588492 -3.237527193382741 -8.754034591522583) (-22.83663163886715 0.2517048499743284 -3.500743869755896) (0.9441701997017491 -0.4776801348409608 0.8668153644907899) (7.685597436577033 21.76496476718431 -15.1624783500231) (1.97650653777111 -8.978749328620772 19.91780245969872) (1.498492975844688 5.339641818902501 3.186288520497245) (0.01598868898880701 0.3320107410814046 0.03139482106552855) (-0.3522338957825087 0.1233429196474 0.1306243821262839) (-2.538965927936315 -35.41494450040148 0.8466123928190201) (-0.5336666506059164 0.1381786912720568 0.114178754433293) (-1.112096614500402 -0.2295103941859076 -2.738020171952079) (-0.8467361121130599 -11.74735197360638 3.373006164620469) (-1.147134557448037 13.82208252625172 0.7714030887129439) (-0.5875310786496533 0.0178503449696064 -0.03869949831961486) (0.1337170664122596 -0.07362873188895241 -0.02552986404007526) (4.682242174965753 -2.117935111162731 -9.592467349760767) (-0.5143848086717359 -0.3991767970373744 -1.543174111447883) (-0.3731217988368548 -6.618792943205892 4.347127587120278) (-0.5161273604107901 -0.9792820391497695 -0.3450850212949267) (0.6514800219420287 1.841201996701777 -1.530006737437376) (4.044688240083045 0.04441959239861207 -6.600448960474784) (0.8749423507297813 1.220033640613211 -0.2571190238127755) (-8.893012912758293 2.220091446980603 4.129674797879158) (1.986042223462516 -9.287977175859508 -1.329003286093479) (-0.7248663630266394 -55.56802959198594 -7.440752539732951) (0.2789470359781158 -3.541179722100023 -0.4784789452704497) (-1.600875628797711 9.99270499131271 6.64480824339671) (2.172008994675932 -34.59026291778048 0.4969643445193699) (-0.5841062347952614 -33.08976531392836 -3.469246860151515) (-0.1338853474804685 -21.20855470504326 -9.566450401222202) (-4.090779724614625 -1.752956866980958 2.871788619643957) (2.608125746620817 28.97491202691885 -6.705107211477259) (-0.7073213421485448 -7.247393431613149 -5.14285390962123) (-0.4535100825832834 0.05759607444640615 -0.3551056599020539) (1.416491975653345 8.659768119089609 1.580204266750995) (0.5403247229477 -0.01655046500935134 -0.5999033862233069) (1.37290152670233 0.2465001451061563 0.3802009596101458) (0.01877293319088742 0.02142925590618908 -0.01989126341652395) (8.158536295141495 -7.884637677485251 -1.335591883851377) (-0.5440193290976925 -0.4437522958508523 -0.2273125294994291) (9.432309588106644 -40.55378763223936 -0.4417351298440702) (3.936154569592071 35.88240575633123 -3.901148550222513) (-2.106452245849209 -2.121280719603883 -0.5306627432635791) (-0.2533746564697713 0.02652681098097359 0.2840191475717374) (-2.291139600247636 -2.197765932941552 -1.447368401930819) (3.412663544503867 -4.300248316809133 -3.268180422320275) (0.8366675547734539 2.141221680181141 0.4221307721435226) (-0.2523688663189756 0.1518429750534649 -0.28575000435123) (0.08251953508575038 -2.812836857136159 -0.229973289383822) (-7.723997368139954 -25.09881192101361 4.969016048192585) (-1.540656788093562 -4.410186985889983 -4.194759408930448) (-0.6061520084944525 0.6361947927349352 -4.808150019604575) (4.828648728491692 34.33781822725802 6.459169046798031) (-0.002833131448649502 -0.1269405906565348 0.05379956935891948) (0.1411240868514513 0.07991171275705874 -6.940469100310162) (-35.10002321386729 1.291390135446495 53.75814204474911) (2.328002118455172 -5.920639502708381 -0.8097842671773595) (3.793264903058563 -42.6875304467974 -3.433879284304197) (0.3842410857462665 7.035984015179765 2.494683964798178) (-0.02295814256265294 -0.05896826098811224 0.08195640978526858) (-2.006453528845862 -33.66120713485975 2.157316337886209) (1.965866456280847 1.680944568051088 -1.347573575398616) (3.355619440464537 -36.01006822465033 -1.260451930725097) (2.459863055468817 -23.51874239391155 -3.560935204422184) (-2.874230254881947 -6.626209443358234 -4.731819504724232) (-0.3449172908021444 -0.9202290256943997 -3.031299801742915) (-3.351157687978076 -1.671948452379726 0.07604457430691203) (0.0393900247226509 0.03547047440968458 -0.03221705837024166) (0.1464021997073254 -0.05182792851147705 -0.04163437000919824) (-0.01349892338566076 0.0467831719229418 0.008832273645942183) (-0.01216739796370275 -0.01171911936141214 0.0009708045936614711) (-0.09680867340024796 -0.01887504976665326 0.05126991889914841) (-0.007819821510988686 -0.0008720256155880738 0.01152803271053283) (0.9820624837105422 -4.834310172001735 -0.3591224765633304) (0.003330821402955002 0.03927948134317889 0.0100208733291775) (-0.006829535947395354 -0.04525294980561227 -0.1224225299088246) (-4.078751410939473 0.6317634229929854 -4.265224076890727) (-0.4532327791695009 0.06959300097082191 -0.2569767910711627) (-0.03162889771867457 -0.001703255570755418 -0.002189589448102491) (0.234327929735551 0.06751691539721413 0.02177952679801538) (0.1726785110039378 -1.084895475574202 -5.391344351415169) (0.1751847929783527 -0.335587081465106 -5.197710881703276) (8.682592005702332 0.6692181263162524 2.750400067604484) (-0.05028795691875888 -0.01288318068566013 0.1104682930589406) (-0.06765140274332458 -0.09689897551534457 -0.0879820838138386) (0.2892107759344749 0.2149927553482185 0.1943495017277848) (-2.191796742841126 -3.407653457124709 -22.96761734155019) (0.387076149058181 0.867414652292852 -1.41255666069501) (0.209877005343418 0.06863884329405584 0.2793177306005576) (0.0420558398986649 0.4187783097862279 -0.03210805433243109) (0.5942887031798192 0.2285290722025112 -0.2835644556344743) (1.984456933852973 4.775567112783668 1.761941973779163) (-0.02804868774808324 0.1092708610138082 -0.06405463777953413) (2.381345189351205 -59.15688584081069 -4.579980502351058) (0.5787184181796179 -6.405671664956353 -1.103148815187613) (-1.233663919259202 1.856029718223568 0.6952194778990288) (4.13563220677749 14.86147126910487 2.782458102761832) (0.6640609944302167 5.146059800676078 1.424858475701141) (3.501678403205442 11.66001616849063 -5.991460969552515) (-16.63223301208772 -18.55586562778419 22.33234612313398) (-2.311417459339375 6.72482319942003 7.106965894314985) (2.176407802527011 3.431366452151198 0.7826366240627124) (-1.91262069068464 -2.282019082451201 -5.476348491720047) (-0.2931710200036774 -3.48358930952307 0.8192963495441038) (-1.440719702606779 -1.753841958071628 -0.8761008118502367) (0.03935356535101451 -0.01828166652600202 0.03354954880006775) (0.3139509803196978 -4.16896609007087 -0.3658918078694228) (0.06647054572540904 0.04497122650379218 0.002748240806618486) (0.3929827321500257 0.2065591578245038 -0.2895801449007939) (-0.7264212495307449 -3.043928626525475 2.496636279133143) (0.01994821408692678 0.02635494141297085 -0.06464347080384725) (5.262864860925029 5.969906641388714 -2.964233455668628) (-0.3327291224884582 -1.951090282418706 -0.2630748941010504) (0.0108646669675389 0.003679368848354452 0.003347068852271263) (0.1487410028846301 -0.06576415903651331 -0.1709867305712363) (-0.01215290429866663 -0.009254115990703157 0.0004910128605452703) (-0.06167358058063335 -0.04012999310724169 -0.04869395463513314) (0.02361829332396158 0.02449647791602528 -0.06455919266047201) (-0.2997411112309498 -0.1244922839433909 -0.141405904909917) (-0.01996972488872539 0.007652623745870019 -0.01931613457969448) (0.1816290448729038 -0.2247149861005715 -0.05945460460778806) (-0.0266054156698214 0.01149757036426169 0.01172903548816475) (0.3133668214953917 -0.4310327197985466 -0.8909015414945609) (0.8427991098455123 0.02028926869638892 0.5539338467419762) (-0.05820245046269465 0.02155993489796279 0.00736128136436149) (-0.05826844393883784 0.1208336652209813 0.101347067480735) (-0.09114336499758385 0.4787872920858011 -0.2816690766705199) (-0.04519575136819952 -0.07123476062865958 0.008686333079108027) (-0.1304700560189361 0.790674534475276 0.5481019135321392) (0.9459883778239866 1.167176487666211 -1.694701175266744) (0.2758064990746619 0.2353630604306639 -0.5587889131306758) (0.4232497156487423 -0.1228936009260275 -0.4611076930488954) (1.767198937467392 -1.145311884284417 -1.053429199138058) (0.1752099834369525 0.4462097559195778 0.3313649501811341) (0.02173836558980911 0.01271508387773203 0.003868639668021812) (-0.01181331957587668 -0.005697695644642943 0.008287610528757742) (-1.467594140673496 -5.000442450522404 2.076726309608214) (-0.6096880790630419 -0.3590417698862346 -0.3334357926618953) (0.7678345717261523 -53.00507921802357 -6.673872035993713) (-15.71719039751299 -25.42552062608338 27.7389003275925) (0.06952436979426971 0.01534151699829016 -0.1298589020486219) (-0.3054398188643286 -0.3602024600670789 0.00736397989479029) (3.605175758032271 7.460652973867598 -1.944311431553602) (0.4017813135234616 -0.1016127640189784 -0.3019648227348383) (2.687914284144248 -2.507804006800278 -0.1982913976643744) (-0.03166770603157253 0.03753110458399284 0.136477097122506) (0.01678575396212423 -0.1669025747869293 0.05211268268221339) (-0.02849213328616162 -0.340778054138893 0.1610773991665082) (0.1256009189506591 -0.1121905645896979 -0.0100152618548073) (0.04969275042486741 0.09141663768663862 -0.1080318245255702) (-0.6252589409869053 -2.527282453963321 0.3545863218157576) (-0.8128333141243049 -5.042682839303193 -0.7368577176554323) (-0.5057897306602858 -9.381892371629535 -0.5358192447471688) (-0.8346843512039376 0.2154904402969733 0.928559934308435) (-1.893146006109654 -1.677291223580275 -0.949652838184681) (1.938526241226089 -0.6245442014590116 0.7667053623449893) (-0.498158089435536 6.06971937411395 6.267479384240395) (1.604167427914587 0.6035036370921154 -1.124847634658932) (-2.733536693924474 1.577066799178053 2.019615517682524) (0.9104769509184514 0.7255880801064095 0.7457973295638474) (4.023989177114662 14.90888167244605 7.899479056719954) (-0.9406405066876644 2.447625700162555 0.6205749504654215) (-0.2001321800195128 0.002625249346293636 0.118963275538102) (-0.1675048732727221 0.2741265867452153 -0.1003746750209962) (-0.3109826219956201 0.2273448860901237 -0.06508876971725225) (0.1727861619842729 -0.3616787932862622 0.1851046432741542) (-0.1612054499031516 -0.03794884390430745 -0.04623957243675155) (-1.891392918843551 4.818002058381996 1.608383626925348) (-0.9354554068469021 0.9053580384989943 -3.21549940695665) (0.006760305388719523 49.44844921956603 5.350465059557149) (-0.04552634700536128 -0.08059403254495762 0.02726942320162656) (-0.03889048030237147 0.09517430406707146 0.0006814829641566961) (-0.04553516377665252 0.0511450857065583 -0.02960347771442822) (-0.04399233479660221 -0.09763958777674536 -0.1129962647204899) (0.400411678432396 0.02302674961581807 -0.1004761610941349) (0.2844119919763661 0.02511717699477084 0.03459420332193679) (-0.04350900821007454 -0.05013340166365757 0.09940870932016535) (-2.096099171499226 -0.6394043861143426 -0.5540123511112444) (-0.07039202910008098 -0.002715253833795707 0.04326377639807153) (0.02762346129247716 0.0131196913243999 -0.007003699550315087) (-0.1156037615329164 0.0393060380933876 0.05963567326831976) (-0.0343547623324811 -0.02814145328071883 -0.01145226364548837) (-0.4619301360159987 -0.5429560176428929 0.5786782938542273) (1.01668758018638 0.1908859667828124 -0.5972707723868703) (-0.839574642205061 -0.6530046921581989 0.5296449354744999) (0.07295737992552524 -0.1000842813446042 -0.02618389224685257) (-0.5515624649127785 0.0425197301978482 0.09220324864889415) (-0.02425274313456754 -0.1067086013578934 0.03205688125045424) (0.08037766481642389 -2.142286341097599 -1.081609499274552) (0.02165337935516783 -0.03605821791191614 -0.002961204550970626) (-0.06619445823200609 -0.2996546198490499 -0.1119097039127795) (0.1169504106953579 0.01051841055290537 0.005471090202503547) (0.04768845226566358 -0.07012957138604083 0.07156172389532302) (0.03011405125514298 -0.002062869077260669 0.01690110429304131) (0.02407737493607698 -0.006775682429807079 -0.01859134629728984) (-0.06527437081493032 1.729103802794522 -1.302398851111572) (-0.3444042205896212 1.272419201690017 -13.97208928263543) (-0.05564847353439682 0.008950384554055469 0.0161502786330357) (1.929098378453373 -1.179809488857011 0.9982379677828357) (-2.139884891010592 -6.458869331160906 0.04825573988403969) (-0.145724542258777 0.03286918537127594 0.03703763442087257) (-0.1324756083128068 0.05014277965737891 0.09680034560856741) (0.4735045603616461 0.05773637022673062 -0.05535103362048843) (-0.3886707780377081 -0.00921144554546445 0.1245997467962937) (0.0965814478486873 0.05392372430890795 -0.01691531329170766) (0.03981153510843122 -0.1356121425198202 0.240032402953298) (0.03877975058276724 0.007303063064642086 -0.01242158821708689) (-0.4570964387775375 0.3231571716897684 0.113550781955937) (0.04925938710067347 0.005218921398412381 -4.318443346370591) (-1.219562788738618 -0.1384501563534622 0.1875821072308148) (0.1840960215514036 -0.2805061822273353 0.06844457572124248) (0.1681692855755681 0.09427698065308265 -4.134193818328254) (-0.3309088611719609 -0.04935879630656809 0.315621688615673) (-0.1257319407046894 -0.1044496834250909 0.1050647469486518) (-0.02353877232578286 -0.1908600120663777 -0.08455895740061053) (0.1240856452461086 -0.1746904856972214 -0.01481236510059569) (-0.03317861262186717 0.1376241907091998 -0.3139818430579265) (-0.2848030558876402 0.1562206360460757 -0.1561002982226074) (0.1230578253394016 -0.1010223185435083 0.09127016974517405) (0.01770809585803637 -0.06393922966857801 0.08196013821889483) (-0.09210184267001154 -0.2727612930238028 0.08638508656673959) (0.3545149624507414 8.330181183861431 -1.564217531943375) (-0.05351222490369574 -0.04251869985079007 -0.01746695495724496) (-0.3370562147944605 -0.2256435975930566 -3.116717595831057) (-3.909205956523686 76.73192928564832 7.439666975076597) (0.01651027904776517 0.001875112166111586 -0.05179125332073317) (-2.716005763867112 6.946541547828301 -10.72568553884695) (0.06639010706431758 -0.005288898077722743 0.1193978694160866) (-2.214890617072638 53.83144057442318 1.516569661782966) (-0.1317991652555563 -4.407519985133861 -0.006346117211498525) (-0.8757730504587361 -5.888561748293505 -1.48751764657516) (0.2572676839446845 -6.541558343928295 -2.6175268167858) (-1.698696226614856 -5.46821401396951 -0.38903594453615) (0.03202280272915716 0.04793246712252702 0.06508664641421355) (0.7737417879921226 -9.875292738578736 -1.643664507776215) (0.6810152329131498 5.583319242075283 -2.722428687004566) (0.3675417657281512 -48.42400552262729 5.063054999409548) (-1.778836888000291 -5.335461843678791 2.883270805650337) (0.9097056629750283 10.50549415356835 0.9406553451038471) (0.3984167242111378 3.699339731299587 -0.2903939327180838) (-1.037457232079377 9.302473420231051 5.781640863124681) (-0.2067972128368991 1.751378701999606 -0.0411018165170332) (-0.1869232805812259 -0.1499790454702041 0.2848549974832921) (0.07704241620868688 -0.0345900691455517 -0.03759290318621318) (-0.003879846050416888 -0.01126555770144919 -0.002372718703319782) (0.5461310322562782 -0.3057447156004753 0.154096128551668) (0.1185916062181615 0.01081150453848514 0.0303833030696656) (-0.05315178697207777 -0.1780001248241485 -0.1116235611402081) (0.0222201705573618 0.02906698685689495 -0.01958019147638522) (0.005911708444381658 -0.005022909725742158 0.002621289351990999) (-0.00779916993215209 -0.1129865607276108 0.07712773914914195) (-0.3095619194762836 -0.1804453638013533 0.03009862588304791) (-0.2090838698085581 0.2407880172409793 -0.1121663193891032) (-0.7560601906263519 1.167407072927565 -3.008007689032298) (-0.02268167195979076 -0.07897666175359699 0.1166964772116441) (0.7881384751759838 10.76281318573165 1.802602452975258) (-1.303895873922232 -1.932373057853071 1.476781785700973) (-0.09038153798201065 -0.04907858773114041 0.125148496337579) (0.02891759686411213 0.05055349840626326 -0.2075789133285311) (-3.07922487605779 -11.19625398895701 -5.262276460712473) (-0.0209338390985967 -0.1165099006816181 -0.085645558682659) (0.1104720480698429 0.08240263602288209 -0.3162621607228322) (3.197811228518016 -1.859577473359421 -20.80297156696507) (2.592791750699334 1.36434322230156 -1.447566377528565) (0.9677400852183059 0.4253588201940542 -3.457271743626625) (-0.1271342382124955 0.3246803808756559 -0.4450869348993052) (-1.275320263502585 47.99828500358144 9.681541864351342) (-0.7310960172083449 1.192561508928803 4.517455918673924) (-0.1210306563689592 0.1166427597045016 -4.771549877734379) (-2.177553646574935 -0.6083339982008065 -1.299596511403753) (-0.2984381389630006 -0.1055533526717786 1.949471135526094) (1.497475924878565 0.223171793503948 0.8816519442159139) (1.49184344813743 1.655544524321404 -5.658835660913136) (0.2726108565628409 0.2693405302142912 0.0849535352858441) (-0.06365284631432977 0.07174784578984728 -4.783693354308377) (-0.3175938227802564 -0.09676461387505703 0.02311584022713713) (-0.6143943149334661 -2.964661655053539 -24.65439647832234) (0.228675158917777 -0.462728796633129 0.5746615828534863) (0.700952474614964 0.8154862244705325 -0.1059442094845734) (0.6887391562726569 0.2649502198922532 -0.1185339568490358) (0.4287711372097586 -0.05964988024750257 -0.07555516193670143) (-0.04407124655012357 0.01620408709071734 0.0004908511022055865) (0.03567331295131225 0.2789571627995455 -1.905323566459868) (-0.007285790979179918 0.03288910216270731 -0.002186766742503158) (-0.02345497033680147 -0.0107567587168626 0.0104657273642505) (0.005298256429402244 0.03113758825776396 -0.02635547964186517) (-0.6472251335626363 1.475568208015631 -11.05492453138315) (-0.003080022167771923 0.03280493347390079 0.01538785415586175) (-0.02997189639946253 0.001794150891459173 -0.004568603949964141) (-0.0001648199119838722 -0.004614678607258872 0.01847593803492638) (0.02460404284675709 -0.07932121225366988 -0.04924584688941077) (0.1550550969693458 -0.0553995247209419 -0.006958512036735448) (-0.3365193335307635 0.1417710592109204 -0.03470240543347704) (-0.1412021118519121 -0.02019335484747297 -0.05472831771441036) (0.08727459525931723 -0.3770376289158813 -0.3837935989319243) (-0.0176440876043166 -0.2965093039778176 0.06841997165932343) (-0.003929422067963741 0.1623423301504566 -0.1900457699871934) (-0.0363085589285652 0.09561825326471757 0.03380349522293084) (-0.01925224852493081 -0.02120188226347477 0.01013099125429623) (-0.1824251659592929 -0.0886243356936928 0.2380357781419503) (0.1977052664721464 0.1336791987492841 0.3790559953507001) (-5.775121422932244 1.503820673639406 -2.754404727032169) (0.1749010088814132 5.069148924325554 3.777101455575798) (-0.6454116212581251 -0.2358180901277018 -0.6964219706178121) (-2.367542925260358 0.5539978586192843 -2.090069548745783) (0.0641339860528822 0.03536404235143997 -0.1593662629798398) (0.1906145327138374 0.454379091556507 -0.8937942180955603) (0.663374796370729 1.412563665465077 -1.198503291146662) (-0.00885987667725183 0.03552021151825056 -0.02309967091079099) (-0.1736513066831988 -0.1470711423074049 -8.930024444167636) (-0.0210760290023297 0.01280315834823365 -0.1049581696783229) (-1.697768036323578 0.8230104119203412 -1.862466591191534) (2.155435322226117 0.06328837538424037 -1.049530698505052) (0.1134461254109604 -0.7405803103223494 -1.235474647532554) (0.004400393173372263 -0.003901926141649772 -0.04620247723266924) (0.0908160570805906 0.0142113097601049 0.05728647447875113) (4.351915944554131 -0.5316262643615101 -4.239054481803429) (0.01690569628762476 -0.1211949363626817 0.08540293500688645) (0.08346817671337524 0.06598173252039552 0.02943184179854626) (0.945656140111522 1.030095124839186 -0.2147841891605189) (-0.487085009227596 0.6000605813014106 1.7448330949154) (0.4733804975015096 2.349515338213854 -1.846497575120289) (0.2768124157186069 5.750485383900186 2.070865043141466) (1.151061163355753 0.1590078932374683 -1.236315635319665) (0.04803687111316277 -0.01462649300846278 0.01204687161284669) (-0.1233607856065457 -0.1454529867784577 -8.886878039242042) (0.332510288177196 -0.3458087560891617 -0.1429060703011844) (0.4872439290868982 0.6398827652068391 0.342273710301275) (0.2265103638101996 0.4604841208732739 -0.4967319809431079) (-0.4310356738324443 -0.2843390836509613 -11.0553664640685) (0.2129313384657234 -0.04620188501968845 0.05516979136863369) (1.279295874755406 5.448667061192713 -1.679215769776977) (0.4857035074627164 0.6513320313977329 -0.3557468112689057) (0.7005118608887529 5.353043779654721 -0.902500480945123) (1.651203411174119 3.831752386767495 -1.883871798099686) (0.3450068376588284 7.387137381409176 -1.641033251530676) (-0.02384382879096347 -0.002588512722999523 -0.006700936091776909) (0.005130019568211944 -0.007585017832488576 0.0002908168850963124) (0.02902682342293174 -0.1458437794880626 0.04366954190308114) (-0.2150777138881982 0.0500897554508101 0.1216346382492995) (-0.45351208510893 0.002123846229403203 0.3908678241993616) (0.01652607252352846 0.01539769192749616 0.009479280663727482) (-0.01004949633746299 -0.04609514752592196 0.06210451030399487) (-0.01207674274281386 0.053312706900806 0.0214484338696391) (0.5630540098076698 0.09194672229922535 -0.2494252384283706) (-0.5982053741838669 -1.838573654898665 0.2981946894444144) (0.2955079756253848 0.9205046849269358 -0.4427389420133493) (1.973394917331082 -1.673559122473792 -4.68189403590123) (0.04659332781283662 0.3325668301072205 -0.2234603118061452) (0.07219498720256594 -0.0591350731272594 -0.132494557505147) (-0.5909730241650306 -0.4030592088671975 -1.160033464569978) (-0.1497030907403473 0.5580341443680064 -0.3078313869615765) (1.415909845457995 -0.3418862030484345 -0.8495606297359144) (-0.2217362575287634 -0.8033728078034343 -1.918248384641274) (0.3274273546415327 0.6236823366830249 0.03151804215461013) (1.66013702534595 -0.3430955544860766 -1.682954951735472) (0.2100443821166951 0.08650287665364648 0.1278775724210503) (-0.4022241350644541 -0.2153804648698489 -1.22820454697976) (-0.07316124819858336 0.00771162270568157 -0.06451502789818157) (-0.1212655513446033 0.03741162929976533 -0.1771214610466997) (0.03153445371313538 -0.113659390584707 -0.1549933467188431) (-0.2790036371699356 0.1199600631657287 -0.5521690202402794) (0.04452324723939516 -0.1989306136688724 -6.605911394624542) (0.4620345947819768 -0.2647917735425661 -1.261731568865081) (-0.1614493296283901 -0.1754920382536191 0.3389233619193722) (-0.04340422513769737 -2.733570899250137 -0.7550249899418988) (-0.2293813823097296 0.00824874565372942 -0.2356494748408904) (-0.01594566326924496 -0.5519414572757119 -10.85815519621529) (0.08629713492677137 -0.280202196631551 0.2990405220257372) (0.2667521737429462 1.426948952021418 -1.261701495373002) (-29.45563697646826 -31.94704996471557 -16.50911057459023) (0.931460377802931 0.06824363172385778 -0.7307581349879124) (0.2695894139355199 -0.2599769438667616 -0.1336157362475687) (-0.1850880627304644 -0.536103922210753 0.4623567871879316) (2.835220468815829 -0.02742965708031547 -2.16585206845493) (-0.4586118800810385 2.167850640145411 -22.74771325020256) (-1.687359676374133 -7.935586322650658 -1.203773908092618) (-0.6713043542075692 -1.862794643671885 -2.861479119828301) (-3.308410457132191 -1.633599728077792 -23.55338685060019) (-0.9114829449559316 -4.313790410195819 0.5980511059159277) (2.663170797450259 0.82762268664836 -6.528913884586116) (-0.6453626696182299 4.289258988256899 3.222720715014469) (0.2945317650479211 2.842889024663228 -0.3898257739199932) (0.2229695133822726 0.1506597872279611 -1.049654899957521) (1.551032628774077 -2.559971750891226 -0.4328976550250894) (2.409843824903013 7.203302909121566 4.600818567644057) (0.32343479419027 1.706832825649655 -3.801499603161721) (-0.2934597078835189 4.618981674081132 0.6059320424634876) (1.138216597153965 4.12017716026326 -0.4241636978974019) (1.511659468528933 -0.01959674267573544 0.1333029922442658) (-0.6083647873156256 -5.51587392446025 -1.916341655155306) (-0.3256264458048332 -0.5846910842389101 -1.397934065910836) (-2.579784219716775 3.048821597355313 4.253603009461526) (0.3989909112654816 -1.030790467381727 0.6738436676154473) (-1.896802988519861 -8.183168841882527 -2.039312781344011) (-0.5642369381537994 -2.046299522663836 0.7968179312526624) (-1.141900010799472 2.702468261253447 -7.430452292236398) (-2.615971613947475 0.6471052444121776 -0.8749766442170765) (-2.423165631613777 -2.943785480709179 -0.8088423002454546) (-1.270965552144814 -2.599756742479508 0.2581698070815374) (2.383098743081915 5.715588171588216 -3.064972834644077) (2.452878087946822 -3.339248361097307 -3.301306297134912) (-0.8769225072229223 -7.691442376056278 -1.538422018019499) (-0.05277126886012393 -0.0213830325686105 -0.02530041254382399) (0.08136720327313776 0.1998187829413556 0.07768250492646067) (0.2516185798315442 -1.142393695859975 0.6375725876263331) (0.01782705358713895 0.003998685470615994 0.01204522312609184) (-0.009352888206047169 -0.01187758007649409 0.004076236055895228) (-0.4660684159704976 -0.09949661281775717 -0.0855816745207128) (-0.2091042864854861 0.7103884439528868 0.0842744947276409) (-0.03856069356873817 -0.002546281109158697 0.03787314080982386) (0.0288673733763642 -0.02917738805112833 -0.05736005182193981) (0.005526066878323271 -0.008772465312046483 -0.006553019565832645) (0.03148461122161318 0.01533267794101277 -0.004179927827792143) (0.05131364358748659 0.006808025938470593 -0.01731812348154287) (0.4849879465188877 -0.2746752983996023 0.3293637132001228) (-0.1960916213521259 0.6324771714086547 0.09832501324402046) (-0.04497422702153038 -0.03404996262504606 -0.01002087264435051) (-0.813656590314214 1.157748973322926 -1.282512360505386) (0.03104561617681338 -0.02152460271037597 -0.1137817150111787) (-0.5717836572671898 -0.8548221472254347 -0.8089612885050274) (-0.234968833798858 2.641671264507402 1.758438998066703) (0.5428769503753392 3.328956918246424 -1.31393002142454) (-0.3031961889196595 2.006573637916702 -0.4858104109732953) (1.122806487981956 8.18078763888556 4.019512266382613) (0.2558480165472566 0.5722346606355603 0.03794329836746037) (-1.200745146013857 -0.008186440436091874 -0.20619722186322) (-0.05214099035249806 0.01833787512564522 -0.02009902509282522) (-0.05163805749369142 0.06754851580272341 -0.0002238077349624792) (-0.5341822485049615 0.1216429615242908 0.1100499097590394) (0.07154415215440707 -0.007477235417439551 -0.02468226036322592) (0.919753496292294 0.4245730036259432 -0.1106501169968055) (0.02896123423552344 -0.02657704797281131 0.03601969320292507) (0.09498376015185067 -0.02951661470080063 0.01294907898502348) (0.03163645386081291 0.01914929206464111 -0.002776561542744494) (-0.008419657821479583 0.00256777582476795 -0.01021284320322952) (-0.09294940178688124 0.004449946689333184 -0.07521260608494691) (-0.09425967407648285 -0.07787668426950495 0.01216912916009974) (0.005595836487030072 -0.008950836625052073 -0.02947504744713923) (-0.1671089419989207 -0.1761966450964726 -0.05546864494732218) (-0.0005554953296337691 0.00793278294246633 -4.544682408655277) (-0.03500946652454415 0.01511157131337099 -0.00283529593055425) (-0.08289040450804 0.05311788390476112 -0.007030919062133531) (4.863924626357264 5.273119197853982 -10.36066763144606) (-0.03373131900208285 0.004228614017007084 -0.003397217780826202) (-0.7895036807460754 -0.3136332892542859 0.05587977010841853) (0.008268165185106806 0.00260970487029236 0.01241624285667697) (-0.005243696667929693 -0.006841162179235379 0.005122723002850518) (0.01575516082177754 0.04301642635213067 0.1809703274150318) (0.00732912368299124 -0.1588580075546875 0.05224398654653226) (0.1645402784187996 2.288774107685414 1.937387552908793) (-0.2193771329543671 0.18195294248729 0.6483201724094494) (0.5156143845966707 1.808923579452918 -1.588832662186294) (0.5231016597552269 0.08947743869818017 0.6387045179519126) (1.823370644502484 -2.44359201470234 -1.810955491002454) (-0.001321043561427699 -0.004072224653185814 -0.005925156142335209) (0.01389797806587088 0.006463318888404027 0.01405742627385823) (0.6237485613251852 -0.2576364677082716 0.1587235929407327) (0.04516381431374922 -1.104140025885713 -0.8587721145809486) (0.001562202961491891 0.008583235003608521 0.003119490571211672) (2.140503585023696 0.580512554018965 0.7029753223776912) (-0.08290596253581958 -0.0004739811656818082 -0.01835104413887556) (-0.008454863865530498 0.03251610831783571 0.05680655848365518) (0.7374639111558554 0.2063747102797933 0.4481094886058041) (-0.817389965756359 0.7019179999810168 0.8338942511012127) (0.07799700947328148 0.02107062418782364 -0.04117516133692406) (0.08090066338585675 0.01665680387090077 0.0005582631187110998) (-0.5575409878074916 -0.6553790613694466 0.05080053049071831) (2.520913448537615 4.899451178297128 -1.747005251454716) (0.0500114820537733 0.1392818536929496 0.1487758031326079) (-0.05419985935647015 -0.1477268531718246 0.1587013952238889) (-0.03020571517271645 0.007164890338842989 0.1363725542434528) (-0.3821789520235913 -0.5339912678629108 -0.3008759002214333) (-0.1758061491375628 -0.04506671867308309 -0.02940568710518038) (-0.7238894931677188 -0.5102894690342574 -0.2707259921987479) (0.405248999737648 -0.2489103646902225 -0.2541274972525678) (0.02219184308551292 0.03742888609279559 0.01402438775266306) (0.06461366131140553 -0.01654330246418087 -0.02498212765467015) (0.1055321357411086 0.4461433015907373 -0.1597316631128124) (-0.5121653362570264 -0.07932649934857761 0.2929797093569856) (-0.6209742702133578 -0.1724678475014179 0.1795534536058075) (0.1429979086492399 0.2657488936905894 -0.2504076239305493) (0.2386302052043772 -0.03577539598257686 0.01159853166624422) (-0.1044041558880228 0.01520050993520653 0.09172710143340539) (-0.1005752292707776 -0.07301351107550973 -0.0417468908145535) (-7.954933422648683 2.70023116014532 -7.504361898693263) (-0.08386184926434478 -0.07434119895060705 0.06281664378142318) (2.791348091484584 7.627910775917455 -3.127533115014427) (0.04047104607511106 0.1357865471288421 -0.06941682024756615) (-0.05295590775608642 0.00055933137089287 0.006959600843744231) (-0.1567780907644804 -0.04389185347877333 -0.1518140265261814) (-0.1294662204100389 -0.06794742319066939 0.2239702323183294) (-0.1928981989871603 1.669916717352558 -0.3662429078228386) (-0.09135765216311234 -0.07098801960233703 -0.04869296048518026) (-1.052572155676669 0.5266336444733258 -0.1576991288097987) (0.3083950160558184 0.152885538957556 -0.05426978120930993) (1.603756778623622 -0.5673729269584877 -0.620134732525372) (-0.03336230130947859 0.6161374267240493 -0.003265359064617085) (-0.2302073615488771 0.03854480178894008 -0.2087556922347777) (0.002197337574590605 0.003370682543110432 0.00396407130646415) (-0.1293368762368779 0.1343412690480383 -0.05335419338440212) (0.1539328853828542 0.3346191031344223 -5.677464100312918) (0.01068419674246388 -0.1627883690807032 -0.1926760422045392) (-0.001992354845040048 0.04862243607169357 0.01452094661695857) (-0.1712791407380359 -0.04372651305002532 -0.02165344990313875) (-0.8191215963774281 1.298460727547169 0.0457162522755882) (-0.344003874008404 28.75545005390337 -0.6560323747941171) (4.972176926805737 24.55826148255166 3.747128654948478) (1.897458922624446 0.2963919176830221 -1.988075395618318) (-0.02579190971490382 0.0143107941113091 -0.004267790727065479) (0.0977318205334177 0.03352109573404982 -0.3089094316054952) (-0.03328309868555038 -0.000113052193253263 -0.05499762451927843) (2.423604923645028 12.09852408797031 -2.853581772502326) (-3.791263347499585 6.851448029969472 2.67558554594529) (1.079240134845727 2.175459520933015 -2.908201245998266) (-0.4023276255973456 0.3950272425913057 -0.3119255904020998) (0.1130461447666083 0.03127190026656219 0.05700031457670305) (2.000356562352743 -2.644450594184413 -1.161947351781073) (3.541215597648914 0.2926708481333137 -1.228629061187778) (-0.2270978303532529 0.2569596924387303 0.2323468498072827) (2.429347026054464 -1.340111103331061 -3.721400527259378) (0.7062535685206901 -0.5530174785607254 -0.08269115349340353) (0.411126672320969 -0.1549178483618828 -1.28011028936959) (2.94156799583241 1.520616550721026 -25.71479486931201) (-0.2499007796584152 -0.1036391111114417 0.003768351840369749) (-0.03522814283133419 -0.3805863257598424 -0.05281947597962246) (0.01876213936418974 -0.1867805410492329 0.3968797111007341) (-1.738469598024138 -2.127391484892646 -0.7435845271209706) (-0.4876723906829361 -1.229430838183924 0.2760980651660423) (0.1145138431338086 0.0345299585446518 0.001375411564055067) (-0.01821589329191346 0.01997375369368858 0.04024931386430988) (0.004407389139160325 0.01893177843884874 0.1164306198617533) (0.01332397184736555 -0.07837724879098458 0.02678999124817319) (-0.3972014152344728 0.5684914087156347 -0.3116748731212328) (0.184495260037851 0.1036128266952408 -0.04635256219752062) (-0.08712972232166075 -0.413029842027654 0.01108145034857472) (-0.200664696453602 0.07925522057902329 -0.2031135434066776) (-1.073275215155045 -0.3974706569549766 -10.51512383812804) (-0.2435725380650287 0.1963713678929443 -7.510998477053945) (0.700793186512465 -0.07769321460311057 -0.05307892631821946) (-0.07320280594428961 0.2183684214462527 -0.02763196819959716) (0.01086943681381648 0.01120254682741337 0.009576611147328539) (-0.2032340410857083 -0.243232144025699 -0.2656457958149794) (0.06100220789500042 0.04204991777710051 0.1282209238902812) (-0.07711595700336452 -0.1546006492150926 -0.2666542513700545) (-0.06612678605312579 -0.009046005051510497 -5.787773314869991) (0.1282495250826913 -0.02055060410061257 0.1250698887466447) (0.4818059623436008 0.4316957131616529 -0.3152487384472112) (0.01597180271000478 0.003395974772026558 0.02431665880470525) (-0.7023122518997527 0.1666762723993552 0.3979837060428069) (-0.6558032647704748 -0.07199301163501368 0.06110253985333369) (-0.05217980659000043 0.07508347821995351 -0.05776850495154211) (-0.5053725269903977 0.6223133188184368 -0.5768438449824296) (0.02643727029306165 -0.007589943832492054 0.01202677117866391) (-0.001219270703381391 0.01363938980085501 -0.01287981915922778) (-0.294404557144989 0.05534239642797024 -0.1412484422266017) (-0.8391679652912705 -0.0553895938879901 -1.218181964804221) (1.779967828228696 -1.298740121268552 0.1625343361546612) (0.4812697710382455 -1.648344849466135 -3.962957973151847) (-0.09366412721839457 -1.261334527588539 -0.6904497014079518) (-4.239215825144307 -0.9274584052362831 -1.013212912486735) (-0.09875686738465486 -0.1788352176161319 -0.04802997750375486) (-1.839943526025945 1.847149664214428 -30.26231901420765) (0.1512359004337821 -0.1454588914478497 0.1969663611339436) (0.2257611064056279 0.1523406529435263 0.1833717444407395) (0.8267088807597238 -0.01111338320357277 -0.5435877148328306) (-0.007854754024292209 0.003642499017353694 0.005565875137825256) (0.001381897445135893 0.3540154866388436 -0.2087925458304995) (0.4743922907874635 -0.04165153908741036 -0.0539621614019184) (-0.0286547815809545 0.1225882015289896 -0.5054632669189444) (-0.3061673917833214 0.1627961775970069 -0.1637453631365378) (-0.2899025118952414 0.3640669489735067 -0.552945171766893) (0.704180366541172 -0.05540511057690668 -0.246142751659488) (-1.541354925983541 -3.081902269238931 1.312218406554299) (-1.590093271200735 0.5336694240022405 0.4751076202266188) (0.3004364453928232 1.383610043824286 0.3669070357246897) (-0.6298855007354334 0.3739957899389181 -0.7601195430498032) (1.558414579171115 -0.4091728585122438 -0.7823243720875694) (-2.255609684224123 6.89872563600388 -1.029588907692344) (-0.2825207831670479 6.31031891883892 -0.5822260168928837) (-0.6859370320113821 -0.7744201471404029 -2.534528078133198) (1.238273617169094 -1.137653989302176 -2.46075606477038) (-0.5908356245511823 -1.220705834868351 -1.557418403102559) (0.8090053308111786 -0.9707649567222567 -0.02853648907561845) (-0.1853357573309399 0.2390030177602862 0.2427907197088185) (0.250081524451513 -0.3794290861416215 -0.1463790960633715) (0.02017404956870299 -0.1752791009832953 -0.03257366744212241) (-1.616423957668765 0.4834308321255913 -1.01257855239615) (-3.100688028291368 -1.367599632477089 -0.5752620464142937) (0.001491902562520582 -0.0384410048452793 -0.01706517924394587) (0.3948954165765362 -0.1557059895075647 -0.3790808594945181) (0.5014976141277369 -0.7587686783607058 -1.147898991054721) (4.723824606092303 -1.172663880093243 4.22439678792815) (0.80725298948538 4.014734934005593 -0.02544670849614992) (1.417081849016263 8.72524311670028 -0.1150921865044365) (3.366365559222352 5.539207289909509 -5.817780546943264) (0.061040199464241 0.7694509161139733 0.03936690889446651) (-0.7861064322548902 -0.4402109776320863 -0.7527667144615151) (-0.006415751750093276 -0.03185675895637999 -0.2243609668186789) (0.03247451516336044 -0.04274699125170017 -0.2655059639588269) (1.219305277780245 -1.806504910677841 -0.693357595120494) (-0.0907630992206416 -1.261776436185778 -0.9637117182206956) (-0.85795005587222 -5.856533558554784 9.402344569146976) (-0.8374229908679072 4.002895529684638 -3.11409682496596) (0.7311104803263223 -0.959472993825184 1.520316735084764) (12.30231891452174 -2.079233197948886 -0.6234433954018246) (1.482801626212665 0.1229834406130234 -1.34200972206231) (-0.449423903445122 -0.1994883277660142 -0.8804061407774272) (0.06926585502685602 0.1438115553125986 0.2020840402691622) (1.669963785891517 3.805947750264471 -2.179190100495261) (0.1988059225866681 0.07468424025693213 -1.325278091004436) (0.7323776994904051 0.4548381480486667 0.1456758759550205) (3.631573287632151 14.84006588785615 -2.311056784429153) (-1.712684258268707 0.6604370116876933 0.721644871773474) (-0.02213350315399397 0.03816671571237998 0.03360321918138133) (0.5241370934745825 0.05696000316966071 -0.1074341891608787) (3.169611272999766 0.4617351663254238 -0.1681339464340982) (-0.2043204343270861 -2.035347596950851 -0.6895708696186749) (0.007846110981420809 -0.08149199716513801 -0.2988419977007699) (-0.0882143391991233 -0.03609334383750359 -0.14624574370691) (-0.02780403274683414 -0.02449934657847148 0.03467515848824611) (0.09417339079652391 -0.002719506838877613 0.0461975885441881) (-0.3595829309399693 6.638571382897044 -9.965636605853813) (0.5832207167865295 3.075569097773186 -0.960553379501771) (-2.167281169866664 -7.768373636002554 1.392871404694581) (-1.424805636998524 4.376901734513923 -3.749688933976481) (-1.358625222214339 -0.5850560593595509 -7.070888815898556) (-2.741102217450205 -8.229556152966071 -2.314973431710443) (5.526203151363639 -5.085426723223688 -0.1484604606954267) (-2.00778520056593 -44.44568728469056 1.13424526350681) (0.9154204134143098 1.177746067530171 -0.5538884013848473) (-2.280485022621807 -27.92765505705744 6.759690512401931) (1.436188863412932 4.434222422839499 1.322674224963023) (-1.499703356235482 4.463780758830048 -4.027094870311932) (-1.146515250688858 -2.118095640042013 -21.00427299378455) (-1.812611647883154 0.145842779241832 0.4380024819218765) (-1.095598847802325 -4.699107083072458 -3.44587961754917) (-0.3265383702264313 0.2285721216523872 0.1690204647078906) (-3.494872396361187 -8.032177167366559 0.4748227314174546) (-0.1886595324126212 0.0686571830417267 0.7021482668650169) (-0.2130879128579002 0.006959571483301952 -1.241576628692558) (-0.7988008297988409 -0.8990094768291188 0.3702033477044339) (-0.05892986045640804 0.00897012551389665 0.03297906431179831) (-0.553941889694064 -0.06125922466186139 -0.3861400399438827) (-0.02342483383848278 0.03854720405647951 0.01767157453839636) (-0.1155343095081182 0.6580115173179171 0.08175334821929665) (-0.05232200496003456 -0.02900148442101486 0.04255478666991926) (-0.9673596159409336 0.2495909052321966 -0.427086212449857) (-0.4565617592497629 0.7584605467907917 0.1234644267376999) (-0.3104882252359982 0.07831574688200657 -0.2217396780967908) (2.286166333241245 -9.595965340946481 -0.9861909627646466) (-0.2571349652229355 0.0208965124356473 -0.1157396777176296) (-0.217785597204476 -0.5505375236183098 1.359422207085403) (-0.3026997627963899 -2.378406676610499 3.114873494209244) (-2.891913697435755 -1.567717798405056 1.135044099296671) (0.5633610137996146 -5.933714362576949 -3.636414636855371) (-4.199623252499895 0.03426402657349259 -1.767309395387751) (0.7114130841474369 -4.825818401465404 -2.066204644083698) (3.280320158505598 2.649745006474187 0.9543117141518114) (0.6705281097999984 3.188317735219125 1.193866112007925) (-0.002045676477531629 -0.2522713635826572 0.08229441894908822) (-0.04253353606591369 -0.2068578550862164 -0.02179817943583266) (-0.3364748485588596 0.2812052633452895 0.08083599545969924) (-0.07266557487547909 -0.4212452795867133 0.2134150487499343) (0.4039598759608364 0.09478936241133529 -7.10621604292704) (0.2805881882741899 0.4585461306639234 -6.110910241457298) (0.149430351529578 -0.09587267284418907 -10.09156897607162) (-0.1188279606256217 0.3102063142602638 -0.04411018194624383) (0.1070522259065834 0.7493138550279033 -0.269093368500661) (0.6072208049079862 1.469733783295119 0.5193097815683925) (-2.176347777988344 0.9401835145474262 -3.485008031757473) (-0.04898150554456682 -0.4336860539502825 -1.385954986487963) (0.08491093428325647 -0.08841185446741634 -0.1687423448350429) (-0.2934316546418557 -0.1983212151588685 0.05181143130822688) (1.423836201909402 -3.592404976213548 0.2767637021954401) (-0.3339607681935176 0.4448400476976915 -1.254808755684714) (-0.08385343656404748 0.01052208839606143 -0.02135967472702592) (-0.2134881150338461 -0.1318618173057194 -0.9328163398650587) (0.2776348833438686 0.5829811947031021 -0.1593475402455609) (-0.03774742720156066 0.2062292786569529 -1.069076480538045) (0.02395040965113762 0.02612749394678709 0.04769617432239227) (-39.27011978567262 -2.626099748780855 -7.276849279969337) (-2.026626920193466 2.54118428932666 -2.232723214849889) (1.759420725938519 4.748634771198542 -2.326491568179453) (-0.7128031931635355 -1.428315669987212 -1.756599960932447) (-0.3244573968820785 -0.6412188369414069 -0.4241643181793489) (0.4778574193406285 -0.3497570746621722 -0.03451179578299532) (-0.0835210441676546 -0.06939998097191845 -0.04263138040046624) (0.232413705850213 -0.3087105499329059 0.03352745838042986) (1.324594765609541 -5.603859155282753 2.17646382613104) (0.02117417800045051 -0.01543322967431627 -0.02811371093108319) (1.489725836280722 -0.4875928587396571 -0.268734684351969) (-0.2198975611788467 0.004626053712450048 -0.005376050473585595) (1.553051921981417 -2.95164289973233 1.599193307872093) (-1.868172954642864 1.89455782332065 -0.8149950676406201) (0.4876178763793503 -1.524065789254584 -19.23680925222852) (-0.5027766859913049 -3.191320432499387 0.7497079678093703) (-5.248469699555897 -4.046477837378823 -22.73940652174943) (0.2046231267112346 0.003223840161945246 0.003573748779364236) (-0.08858593026251296 -0.05530541044806925 -0.01441000015202951) (0.3159118316400938 0.139164311426537 -0.2527064030745033) (-0.04691154825189566 0.01685927064303466 -0.003087223104126201) (0.932364877134148 -2.673053396267333 -5.622147930617289) (-0.3767741538334198 0.8000680060802516 -1.786481846473374) (-0.0812580388950836 -0.07652539936231466 -0.4734827719469364) (0.0306656702801102 0.01645106034868378 -0.05104048995859967) (0.2447341286374602 1.996305899899394 -1.098111682483921) (-0.2879616777194499 22.70246209152478 -1.778921746152515) (0.1168496380258048 0.9117165590217499 1.546573527754314) (1.455575957408771 -5.987113131923813 -0.358929651415266) (1.876390940396758 -1.170425889157835 -4.190846370105227) (1.357105019702765 0.6353396424740552 2.334331335009911) (-0.06920172353727383 -1.561948660179415 -1.955516960895976) (-0.4211835192756632 0.05536233191225066 -0.0451892964905366) (-0.4331424196077224 0.1448935902798874 0.3678880213434682) (0.03099715313583733 0.01504350008157914 -0.03073320373876173) (-0.1626609533888751 -0.08852042931024758 0.09324253094740999) (-0.2595120607336384 -1.307140734902556 0.1418710583660436) (0.04439754258896948 0.1318789996616285 0.07518724320588174) (-0.6250162592067585 0.3554843418590848 -3.646520235187888) (-0.1383763809011613 6.611615528236181 -6.531849857998025) (0.3073294246451881 -5.383885266055286 -3.298209810392288) (-2.780505308431011 6.455848126301198 2.818417845742989) (-0.2193627741299014 -0.05984049612288238 -0.04128957117505544) (0.645918319683052 24.48199398897401 -10.10608012462201) (5.764352019255785 2.124906450470244 4.003242110361608) (-4.52884826440499 12.23801313062486 -2.623477630983107) (0.712076035975394 4.096910123322406 0.03065085427177461) (0.129285055856208 -0.04606860895289809 0.02221836666140891) (0.6802741888512409 -0.3384602641055996 -0.5146484940697226) (-0.03235460392027675 0.04994778043898816 0.005745187743272523) (0.01474455747458073 -0.009466485964740028 0.01297282807695441) (-0.001912571550229433 0.01029800137780458 -0.00265102621932008) (0.07856643317844365 -0.07491448718957096 -0.00916598282292172) (-0.6080623378413746 -0.2064758468874115 -0.2332872348429474) (0.1467766126925197 -0.3499405121924298 -0.9527359445856993) (-0.06461461387037515 2.791650628625081 -1.350528815239012) (0.3327402342654705 1.612769119687866 -0.2938470353601137) (-0.6226130510007559 1.21470872813677 -0.9631367375485473) (-2.473549249508736 -0.344658979300774 -5.807373230802741) (0.0894087866401867 0.01819762061344957 -0.03931759847292723) (-2.182890526460215 -1.911043769282011 -2.953319057205648) (-0.1002678158921978 0.0111973873864365 0.2387127757353258) (-0.09746447031540352 0.0673218949357271 0.2205265126986199) (0.6266866305775071 -2.290623853312238 -5.019534330907654) (1.453045808315353 1.423425359553083 0.7965391879610162) (1.9450650409601 0.9064923995514194 7.297762044911469) (-0.1022579212408733 -0.03932074491642634 -0.08461908364177222) (-0.1694426411235842 0.01340074351510828 -0.08544689321891752) (-0.02924138618903927 -0.06127192690943393 0.128081531415839) (-0.1747642088042862 -5.395375594596194 0.5102901154988897) (-1.40594126193803 0.4445726301823296 0.07136786143052221) (-0.02080932772946379 0.04301091081886999 -0.02683757202559565) (-0.1954115825290937 -0.2480027425564664 -0.1049963194513723) (-4.075862533818235 -4.362661913674342 5.372840817534557) (0.5788901726461687 -1.104126938541983 -1.425645908694265) (-0.001061749407651367 -0.004855137940059233 0.008912251317077109) (0.04516406196126593 0.7868749775588146 -0.9323390520552157) (-0.7059517957474357 4.768427992175242 -0.0445056193899932) (0.0514470624257062 -0.02378931349920221 -0.02690054247274368) (0.01869943537922773 -0.009075275055465301 0.005856541604640545) (0.6513650703904889 2.900145661434007 -0.1765839266582659) (-0.04344636093272485 -0.04354323615142667 0.001193347831075083) (-0.002679642009232302 -0.04272391123406178 -0.003923351543455664) (-1.339984025757778 3.764570511259048 -4.997337348488178) (0.0004614093395549912 -3.274774328858151 0.1149515089355065) (0.7366164470288693 -4.610637464562309 0.7429134568354403) (0.06817176719081841 3.356943343867915 3.69610365246537) (0.01766208579968735 0.08689102542077629 -0.1414362134350031) (0.06517239649381283 0.8630978350791721 -0.3148276007909424) (0.03198845339928491 -3.043982154697971 7.8488618380479) (-9.524209618974021 16.38022471658313 15.84202798359636) (-1.167338513134223 1.812664042244369 -1.522604215170273) (0.006410511547763786 -5.648655867876946 0.4105562134040356) (-1.031998662526318 -8.903441205273364 -1.554593486217066) (0.4484249925959776 -0.09919486184324018 0.9004953505771895) (-0.7019459911718534 0.4125672581372007 -5.533829457411884) (-0.6443169029907038 -0.5332539071104538 -4.300919367757224) (-2.776660503912675 -2.189039035462632 -22.65081909378954) (13.7220708274722 4.710329579925023 7.980010851300367) (-1.59777989924045 2.338318363399095 -0.7814991497832984) (0.7317159750429765 -0.8483022451832839 0.3104132640980237) (5.159401644931959 -2.002812367560736 -5.785096022010716) (-2.491803393824364 1.459737875014782 1.751538029794468) (0.1076580948749836 0.1126176940416435 0.05239813766197543) (2.398807440191016 0.4926303232897803 -1.339724023284888) (0.04476512902211701 0.01103472954932132 -6.328622948105386) (1.671843956408122 -10.22011993851016 1.660155816469796) (-0.9889061352587123 -10.78356182468649 3.166125931823911) (-4.019322759152569 -16.84935970542627 0.3462616783786843) (-0.9767004907439489 -0.4913169710688658 -1.224875069724775) (-0.9466646587102312 -0.965360203602551 -0.5628460787895779) (-0.4854094426260268 -0.02546441573056554 0.195277214016412) (0.1071216386179194 0.003622021825260497 -0.0002449724112489338) (-0.06364377260666376 0.0018271447735052 -0.04783098286195078) (2.632718379111041 -2.623643665551285 -2.848909436581513) (-0.1995359165197244 0.09289365859677501 -3.752861621489292) (4.807041270543213 -3.456906255484985 -1.790639065436244) (2.027873091997957 3.351890179158453 3.280554519917605) (0.8724849580940049 7.140500774823364 2.061352978422936) (2.921723566450785 -1.459171360216247 -3.966760917006788) (-3.215962939167144 -3.95110784773593 -9.37671034281006) (-0.9414900053847421 -1.450232956586344 7.022994691865676) (-3.11542640435097 -9.353973694108635 -0.6589079368511017) (-1.617043293434976 -38.65899861223447 8.26191644216509) (2.692892322842981 -10.24456739623413 -0.2033273767365729) (3.670888491841889 -7.971009264344101 -8.239209882391947) (-1.976219777666084 -10.92671199610358 -6.116865886012543) (-3.39777294989165 7.117321000923342 -1.034266168549361) (-0.1690146922113178 -0.02291050220106428 0.01920554821710302) (-0.05444782523238424 0.03202024951312738 -0.03562495544860281) (1.216521840228121 -1.683465308595086 -3.554202304107918) (8.425013443303495 -2.583596460893709 -4.467081859070028) (-0.1620458742357669 -0.004868714764314358 0.2098954855502852) (-0.009901366520145283 0.09201782108381709 -0.00576252705363095) (-16.53357160936729 16.70316139557838 7.386442361205903) (0.9774963862251551 0.561679798508552 -7.0562535746562) (5.724823111615748 -2.452344442823054 3.010023249365076) (-1.825985583707934 -0.07394406314633234 0.3933565186571031) (5.482422317771475 -1.830037646735323 -1.934103820546674) (-1.843288976141318 -6.532229986549291 1.536383374040737) (-3.295744758715017 -1.724352779423883 0.7491485724180027) (-0.9382609078378463 -3.056708957739308 9.816502485881347) (5.106644196094613 28.43886322724397 10.48518253310827) (0.004047351650380365 4.661966956914496 2.672084674821948) (-0.009900535262389432 0.04653936773335721 -0.26466497914844) (0.5247714024925889 5.009302403655989 4.118391797431257) (2.282121894936772 7.982375656571089 6.079116814138197) (-0.07686580854171743 0.02374215369720768 0.01445279406177122) (-1.302226656197417 0.8955803816297077 0.2264122565947657) (-1.330695273131809 5.824719769079719 0.1143924747909126) (0.1928639690630476 1.231920316624934 -2.94066877778735) (0.1364443537302834 10.20376219520885 -1.460846706544258) (1.511350805906601 5.834563154880013 -1.764258901565315) (0.9857955064674284 1.526378794582111 -20.84091141149365) (-1.547266678069181 0.4003807261541237 -1.2331424834367) (-2.31596591595034 -4.156956924174765 0.5629508622107409) (0.03515206673843108 1.981839554369365 -2.365289969290131) (1.470442871563075 -10.14789547180834 -4.129643638132036) (-2.353218531720323 -2.928452569231845 -2.0388499477197) (-0.5041647471596472 -1.852536800363191 1.572627082202145) (1.325291551214907 -3.910760751513751 3.879605754549648) (1.076781216415467 -10.21704349853162 -0.1479066094660525) (0.01092006163446275 -0.05577096691469286 0.06359120650425325) (1.031240191226202 5.216975290833709 7.999024321783331) (-0.1414151437151301 -0.01894024593333304 -0.1061570595965636) (1.207384859980345 2.422524913465817 -4.118035539411248) (0.02103325300310899 -1.14161471695904 -4.804976601094713) (-0.5429340964633051 -1.073369466227623 0.7428488033781029) (0.1607754226655125 0.8469260330226368 -10.55257123124744) (0.2364468049553676 0.9904618774602783 -0.5736383363289296) (0.02992635134759082 0.03464404103489008 -0.03469361287023173) (-0.3465613285386915 0.03790708314017567 -0.1023384990048065) (0.02952171610642672 -0.03984551186528592 0.01080124960201282) (0.1156690969622156 -0.1137245182505886 -0.0304710189323268) (0.0551311677492229 -0.01597264931321703 0.01932686350290824) (-0.02896500409798956 0.006281913033326795 -0.0200212140930066) (-0.001003453901198395 0.0200031261680082 0.03945844615782255) (-3.804441472781024 -6.832820787695385 -0.5596577534864325) (6.857798990633781 47.96985637340827 -6.109006423409733) (-5.103919945382589 11.77398526040724 2.510666238804811) (2.063277778547583 0.4776186338427761 2.025334241221996) (-1.875481614355863 2.03709433296531 0.7038189986964843) (1.326530517216173 3.373031148536783 -10.37028684956762) (-11.28741191052609 2.73487942244862 -2.447430956185002) (4.138198834794081 -5.957413233652849 5.127957692507302) (0.1031410275124017 -0.005255300286044717 0.01462624066735701) (-2.646213023845987 5.779449076678038 1.47585912050088) (1.426698403531234 1.530142692067329 2.926832155647284) (0.1649772230746304 0.08154956931947777 -0.1098890520813846) (5.169844892474666 1.908399629818724 -1.129196537309907) (0.4713905358550272 0.8733692736987806 2.505755595256288) (8.190553248665502 9.528821351741641 -3.458499875048467) (0.3296525819270483 3.253503969602095 2.879901440192229) (-2.714101517081905 5.985580558825658 14.01930444714133) (-0.01995072570792644 0.009225768021110838 0.004398765419835105) (0.8522656515171274 0.460151293105776 0.3809004373585495) (-0.1281730074774104 -0.06205244097553866 -0.09706055140334965) (-0.06919314710768698 0.3030512343259316 -0.09207378713018276) (0.4230716682534474 1.53180635013872 0.07042220945995364) (-0.1251499481065626 2.878023959719793 -2.222250110772043) (0.07889426491233498 0.6057823090522232 -0.01247953977541729) (1.414960994220873 3.044623262570252 -15.82159422864964) (-0.07052170660943058 -0.06784090227193457 0.0335875909654323) (-0.3037636780998543 -1.575348086810678 -7.963993327747815) (1.044433158886557 -0.3089801104156951 -0.7821725568105763) (0.2479830651027882 -0.04444856222463855 0.08776030282092165) (0.1202932037230769 -0.03042760709514849 -0.06384848882761991) (0.1882483720399387 0.04066954738596072 0.008903737090345431) (-0.04194137906682846 0.3545216995864922 -0.5243432689822706) (-0.3669989045297106 0.2196386442658156 0.1229510323316846) (-0.04452138616103848 0.03476825761336903 -0.0239094949703938) (-0.04782281437490096 -0.008618482379697151 3.621828788696418e-05) (-0.125071673786152 -1.14805877600954 -4.310355465243743) (1.392981660209065 2.290334850412483 0.5182661551820911) (-1.151828483133043 0.5079594640171369 -1.404856414104287) (-1.189570575317001 0.1354575939587118 -2.846822739741125) (1.532805269880292 2.066644878264361 0.6014797181841612) (-0.07342177428377995 0.0234134479617297 0.1028866281774348) (-0.01017981238638199 0.02446012619138578 0.05465966586496118) (-0.03054237567223994 0.07131784943872242 -0.1206424629170828) (0.1731896378011478 0.08441564431758936 -0.2357707448838814) (0.3516516214719381 0.1354002352666506 -0.403400364790039) (-0.003926172081759643 -0.02089067288840642 0.008889536421049546) (0.03189325845975901 0.002619600201624042 0.02867042691773774) (0.1465867582017314 0.0121166450784711 0.01316262722316585) (0.1039836842523845 -0.05659769482087721 0.02199773113858557) (-0.2258682770366916 0.01199753614703802 -0.03064972596232021) (-0.3618027532351355 0.2093276265013495 -0.0108061796522915) (5.136577048498971 1.589558237134048 -0.1244767867247403) (0.2660825839141186 0.07543451415543395 0.02951025736035418) (-0.04121735362754791 -0.2482712910317783 0.1007541572921486) (1.157127331247145 3.785110572951945 0.0955675427601046) (-0.3932319220757491 4.039327486618583 -0.4206216904966236) (1.139662476749946 8.967383807333626 -3.776832037021194) (0.871114715154732 1.218863318693656 -0.4718413269652827) (0.1146192389887615 4.618402087961687 -11.5580830648135) (-1.209803951173837 6.79481337921245 -0.427204891734806) (-0.1433458164223748 0.03060864427583353 0.0239461165118037) (0.0860634826718573 0.1167978780182144 0.01065176301090903) (-0.1747384882421649 0.419338846203247 0.4365754636100077) (0.3050162251007308 0.5691996488400912 0.1106877589806182) (-0.7006753182725873 5.207630275270201 0.9849501766109567) (0.04862261881116248 -0.2603522001057945 0.1405486410571665) (0.5335628481284798 -0.1989939019222766 -0.8520485198039999) (-0.1908801489129151 0.4083076944930513 -0.5749792980132161) (1.90661545499223 2.581154824728783 0.7477177004528577) (-1.070371918350809 -3.385902478123237 0.701897844810753) (-0.2982772392944277 0.02840654738025664 -0.5542865213260713) (-0.4614627673846929 -0.6979552625142041 1.554371497081643) (0.2613925334940432 -0.05902571230343766 -0.6078012044237079) (0.1945170585815343 -0.8832857877393572 -1.516878548092172) (0.01597404340641198 0.01163279200844668 0.01768758417898933) (0.2279769258219049 -0.9129205003406295 0.4946611139159272) (-2.560198741682959 -2.679262141422193 1.214051353593892) (8.942193263749838 5.023650402723445 -1.168860562761048) (0.6504743150300842 2.098750570369901 -2.747433266877205) (-11.42000213186473 6.588418701178297 -4.95001996679083) (0.6899721674195022 3.748037793548893 0.09154277597587532) (-1.219517826588626 -3.398991381703392 -0.4088882585123564) (0.3777569682322185 -1.998183058698207 0.7972733312159185) (-0.05386729726289539 0.02759387840737762 0.03076737663954486) (-2.742355151426784 -3.519986706740121 0.1128922839974691) (0.1727949805243414 -0.3767496002729889 -0.6569804486279955) (0.09230873246984575 -0.03211830661790403 -0.06844060226049828) (0.4012237307624454 -0.2757058352820005 -0.1713795062876615) (0.04361660194861029 0.01934206387429198 0.01786292630517976) (2.750376040136882 -2.75852578219893 -2.073260511839744) (-0.430983349025954 -0.116126365122804 -0.6612337749663448) (-0.1416206035067175 -0.6553871272712714 -0.5042253324041397) (-0.7882518070904475 -0.4342739939529972 -0.7618637786312715) (-0.001461379670042758 -0.04589948649611072 0.01129295726998652) (-0.0780529535439041 0.05241378914624287 0.2574934876436237) (-3.217732176850926 -7.417458897688519 -1.820132356573437) (-1.728937010831684 -6.215826816195595 -2.42508797750811) (-1.798896449923786 -30.78305481303311 -0.4201608086189226) (-1.741255989578518 -6.996219236777005 -0.002638677276399881) (-0.1447552365223757 -0.0357874050993223 0.04368930370229297) (0.007799180640099213 -0.6135154104014431 -0.4862165516870473) (-0.05180596449496672 -0.2650275473069049 -0.5811604282071141) (-0.444005897914459 -0.03449990115491139 0.4424428200810036) (-0.07572408128868903 -0.1753461211280473 -0.1325281291698812) (0.01610400645874638 -0.07115671548647931 -0.1096123825957564) (0.2687033891043533 -0.1129441549105757 0.02470381947868533) (0.1057234432861338 0.01869370910701729 -0.06377459818841673) (-1.121741676374447 -5.702542448144149 -2.15692655461757) (-12.00825111106586 -12.87345245149164 -5.393424458730863) (-0.6032512148521543 6.029730848419081 -2.757139221300809) (-0.07282276464105941 -0.08862998093469635 0.054768333000139) (-0.01722105390701441 0.09198241234910386 0.03762375990093732) (0.05715940131356216 -0.02716879898681296 -0.002691644214722226) (1.394047281071519 2.653089808557571 0.2841784817809612) (-11.72744480865787 -57.42554428763505 0.8415464278560387) (0.4465194520403393 24.71770946570694 2.854377076608734) (0.02247191959425827 0.04499897202931888 0.0001969373019287957) (0.6475614756904129 -3.684490912742743 -2.735194648586501) (-1.861145913813136 1.374606315461208 -0.2333122595020229) (-0.6236146767045517 0.1212140991211158 -0.3326649099363663) (0.9570007564536887 0.4119384106340857 -0.002191442514004542) (-0.9549352130445798 -0.874226613122059 -0.5768841921459376) (1.523479051213237 23.52409842394317 -2.755984709560722) (4.430391673020573 -6.812655345380092 1.460487049887109) (-0.6512267988152722 -1.749672924179388 0.2954865042411823) (-0.0892516082574959 -0.2590241101729325 0.2313188641573607) (0.2160060201577506 -1.33162803338927 -0.6224097425971302) (0.02883633620828535 0.2135240946810212 0.03193976730865205) (-0.4524144872016356 -1.005460232364164 -0.0827020892915577) (0.1034070614456552 -0.0574660446763556 0.03381294877920882) (-0.01567313252611091 -0.1182291723365077 0.04247719156129763) (-0.2293876922964367 -0.07551282119670952 0.04154609043858766) (-0.3430339347665373 0.07497030864046422 -0.3407951977621031) (0.05420971728542532 -0.03497310916903722 0.1308707553627094) (-0.09259643089537986 0.2914328240596352 0.1088982575374285) (-0.9428189772956646 1.394350776944964 -0.002888264015975001) (0.6306384027432975 1.795548060244982 0.08182711500217776) (-0.03260220593182196 -0.005918495177256546 0.03620686058708417) (0.6341954498720661 0.868615464659617 -1.295959825250677) (-1.911819384670762 7.050039305492009 -3.827366993232634) (1.007632463304009 0.3283709883541698 -0.3859263479407228) (-0.1039060328657192 -0.02227051431620874 0.05106708875243676) (0.08789909354709254 0.006790679600304689 -0.005031816438332649) (0.1481719838055624 0.180004658047594 -0.07897733957610403) (-1.570617068760892 -2.41565482083416 3.834226619557016) (0.5031533038576613 -2.215230926247219 0.5299188431619262) (0.9948349455702483 -2.278995304803919 -1.591326569184019) (3.967619222400092 0.0824794249492487 -3.557712798405038) (-0.2933940178978534 -2.598024427430041 1.84873445375776) (0.6120184086046517 -1.155773438566537 0.7149084397519734) (-0.9178013964989612 -2.205896991553037 0.1685849626549302) (0.2621399641930178 -0.3053366724359891 -0.6567561916988822) (0.5181212735951799 -2.948824222548083 -3.15702511154588) (1.41394386930298 0.5290785267366539 0.1794146305112479) (0.2844338250237589 -0.08105444257425135 -0.1027117822642129) (-3.471635371327258 -8.862227462250791 0.1361305350923505) (0.6507378515531432 -0.7234098006398592 2.048325776788384) (0.3249486891028224 1.746871120645225 2.449370282388584) (2.889303952991274 2.66970745986695 4.957974791489582) (1.129816917510806 7.763721992480981 7.501963297094536) (-1.982298734328278 10.35424835956491 -1.806721868350554) (-0.5995959942804361 9.471596881266629 -1.549815882613513) (0.2252610768598751 3.666486048922698 5.919436802595245) (6.93276235068171 -3.600459363921803 -0.1609121037048735) (1.303027511676764 -1.01652218168053 -0.03188588835340256) (0.3942562621303105 -0.07567260138170755 -0.172221098205971) (1.76275640045378 5.721645385669608 0.4730042531822519) (-1.103700137110105 -0.5773574971336459 -1.9080680179678) (0.05544497742357429 0.03412976313041082 0.04880453614264348) (0.07313542010260925 -0.06410075624487378 -0.1121939738872539) (-0.09198310828005933 -0.07208161882316766 0.03035236845117405) (0.01460147792242639 0.01235378751029148 0.002002410710154) (0.7359702873521141 -5.044616443569006 -0.06922900196329027) (-0.4577796471073209 5.335498362864466 -1.864529209871112) (2.112250985141651 0.9479641213751726 -1.802050684194688) (0.4243247226954163 -2.346139176183748 0.4504730362282999) (-0.8363220502865686 0.2781399937512019 0.1803342654524272) (-0.03533162666253342 -0.2199813528021011 0.002297991445763696) (-2.486795667866827 -3.652260726626649 -0.6169666520261827) (-0.02836338764591361 0.04839397468458391 -0.03906502124624665) (0.07616714651799662 -0.04045022015664577 -0.08373741429317574) (-4.087662326792183 -0.04120615892088737 -0.1007390665663089) (0.1427658982719101 0.5531723478131674 -1.384165335182093) (2.374949785303891 -3.467112214698987 0.9204864518506666) (1.411128870323273 -1.034191750808735 -1.551864302037079) (0.07969493909224509 -0.5712885757900473 0.223138668753797) (0.2387985202650305 -3.795679091155214 2.650457750606222) (0.6399589355045914 -3.599470635947363 -0.2232600883812716) (0.1406869471722275 0.0760580060985801 -0.01707890200814815) (0.1141968631104959 -0.008509414974717189 -0.0847014712220108) (0.346419698448886 0.2219704576414899 -0.5565089017525383) (-0.02346406516410434 -0.01037876852951545 -0.003252254869012337) (0.04560508375563508 0.03003597237461173 0.01473605983107529) (0.04801258214302164 0.05835631191007305 0.08444979898839813) (0.02566525095890003 -0.1629247152966662 0.1441872190914503) (0.133618928076823 0.07263192364988594 0.2620947733203438) (-0.1571133704832777 3.259441576130175 1.693972083697301) (-3.530324421485948 -11.58413235372044 3.666706840678122) (2.591993957301963 1.534249786750415 1.969005446213747) (-0.430494716305359 13.09813313519309 -1.450761326350051) (-0.2992799457070409 -2.373090068778391 2.102461853192832) (-1.226425487332292 4.898067401831678 0.6419436633239815) (-2.293333194295107 -32.38031048444449 -9.091071770419202) (-5.245249826702225 -8.437981262407851 -2.745662045614516) (2.374838273288275 -0.1814739611850331 -0.6097084986729334) (0.5846828832917388 0.5388408074087035 0.5108492067413475) (1.13604475314115 -0.166894704713839 -0.2566583484995265) (0.9485709986777684 -1.020536980127516 0.6184233785546029) (-0.3854468638897667 0.3768440232384569 0.1837557045420412) (0.2991005708121251 0.3146256848021449 -0.1084687137124586) (-0.3830885388417351 -1.666918849355773 -3.347908612511628) (2.156889974541124 -0.5581426927066173 -0.8983171063880595) (0.5144948393458511 -0.3427063467946951 -0.6504661705976175) (0.03695376494795076 -0.06349732476478576 -0.0195631461069464) (0.3094537019343012 0.06368026955921979 -0.005034418197965435) (-0.03735300347107444 -0.04241233885169214 0.1246580671884226) (0.2302298069611827 0.07604724824957232 -0.2855677553334315) (-0.200616341469618 0.002968898436690695 -0.08742167144533172) (0.3747698773178346 -0.07560184194494593 -0.1629681592622141) (0.1874570560018189 -0.2398518012856534 0.3574264628433028) (0.01582542179000217 0.01639401552843288 -0.0009994508759270538) (-0.1158522575367262 0.004036393125066318 0.03758826601821839) (0.146463691458401 -0.07422670532319788 -0.05722874354108184) (-0.1037111832703485 0.02424145250981635 0.03835635761791544) (-0.2733477087604715 -0.0598387054359415 -0.005798794737690157) (3.817774278781477 7.215746405184432 1.210956566832387) (0.212947875150024 -0.04928851953812985 -0.06678671633813024) (0.1921419160598574 7.051981751581546 1.245031153017772) (-1.492915556283666 10.15004840138288 1.561148982884308) (8.223894184151842 -43.80534871445325 -1.077578199324117) (6.09265492817896 1.913720326772352 -6.037071148139622) (-5.726373922256608 -6.444898063060166 2.009659603035485) (0.1314744667149014 -0.1715204487540418 0.1041013605720123) (-0.07033525978894356 0.00357212358326587 -0.05622366517594658) (-0.8211355862902426 -0.8686249079299045 -1.165748305909691) (-0.8631350648290986 37.27843042903719 -3.655203372505918) (0.3189518717751378 7.8034915629385 1.17217089194642) (0.2077221114195824 -0.4034270315895953 1.186334995416269) (-1.810251458687148 3.383019326700026 2.432767769171783) (1.292449379432733 3.975856063436563 -0.6910024310152945) (1.625663648939309 0.3843612027380905 -2.894635158334312) (1.937192029361456 -3.864746195140265 -2.83814137840167) (1.470832952372399 -6.008804471363693 -2.494263062853864) (-1.731965485076549 -3.899494067654879 0.7556018490240998) (-0.0982612449750711 -0.5618045268898808 0.1242840597207753) (-1.598685563630215 -5.219820682881521 1.689893029340707) (-2.131608367422671 -8.338560384993917 2.905877488741378) (1.979091542506827 5.650778119966947 3.467081182419265) (-0.362869982234777 -4.401735266162206 0.04999322664170619) (-3.385643686019397 -2.429358776845699 3.495388191323521) (-0.3129936663961127 -0.8030446442136447 -0.06249258508742134) (0.8817353176390079 -3.176455224818028 -3.384729729801951) (1.194444205160507 -5.895717074425035 -0.2768899200341788) (0.9176665922186987 -3.733993693612502 1.455768827172215) (-1.328255247066119 -2.991983590066897 -2.134850735386926) (1.339088178489355 1.586198914090646 0.3010908007595915) (-1.590815018607706 -6.832729998894573 -5.000200870167224) (-1.734515891128108 -3.134963492423699 1.135013447403432) (0.255390910326293 -2.531944972886975 -2.068014224030869) (-1.328825731037049 0.1178915581114661 6.260045258192981) (0.06312708030264269 2.299404306784997 -0.8206839984116843) (0.08191736381420438 -1.29741539356098 0.5222527394873542) (0.4179336192894002 -0.7521682183620209 -1.189555748399776) (0.06611228769304353 -0.0129041931819315 0.05080578696679329) (-0.3247581197218617 0.1885172771603661 -0.06135870312132569) (-2.620288564247267 2.006479991383134 -1.804159154801865) (0.02929143920782912 0.03966032773077255 -0.1478899305930478) (0.8600315550750695 -1.447004806423595 0.8082658214902374) (-0.1152044421524028 -1.657811012078523 -0.6566957511255735) (0.9257700327942243 -2.464784609810406 0.907647024902771) (-0.08550607155809159 -0.34830458827024 -0.1172947487830049) (-0.3366895291110086 0.1743949027104205 1.789371190586904) (-0.03260342005685755 -0.02765128614653628 0.03774025843359491) (0.004051745166056626 -0.003726545340491561 -0.01091595394771451) (0.0867115973579643 0.2830335519367203 0.1214706334532767) (-0.009590914617708227 0.04931340456026438 -0.06625487545860112) (-0.006158283436312209 0.02389994425575543 0.03006735022100702) (-1.696041616113156 5.72530150445061 5.310010413466371) (-0.01446364864527325 0.1573084436335356 -0.1959945164558366) (0.7221601023733419 0.463552020935335 -2.002201933796919) (-0.02905610411671598 -0.02819201965176696 -0.1544940218714746) (0.1934695372867259 -1.255187629087352 0.3679265431560281) (-0.05926329615578611 -0.2800622397804364 -0.3355313225252013) (0.008649311831273106 -0.06047681808386583 -0.004897605035718866) (-1.047844018686577 0.06583839705198549 -0.234569160937886) (0.1871519383424984 -0.1273053135842034 -0.2053916416738782) (-0.5542910135784244 -9.054818618177558 -4.363796194662712) (-0.1907541682709551 -0.107198888024812 -0.3021499394860421) (-0.04877947541040949 -0.07944500505022419 -0.02833928321111425) (-0.1749685707498771 -0.3665171434124815 -0.03573451926289605) (0.1981603033768535 0.03804521813380127 -0.2869024001426962) (-0.2289254040925319 -1.151511478687467 -0.2703192712101633) (0.2625721979589798 -0.483672420715014 0.3079333141786829) (0.1159907037683865 -0.04151279560078784 -0.007282263717481936) (0.009674893004833264 -0.008345795362153933 0.05451656802969148) (0.002111465712963168 -0.00386896298904716 -0.01712595326606374) (0.06109602880610907 -0.02033695423335398 -0.09418603135623477) (1.33852962042235 -0.1266515107474556 -0.3673985241023641) (0.1628154267296425 -0.03602983779389046 -0.006532724024059723) (0.6623512915572398 -7.732496334676217 -4.135269325261653) (-0.204559085109927 -0.02020827867708042 -0.07727884496672287) (-0.06884320339610076 0.0135143089576262 -0.09122522377002264) (-0.2046796562695907 3.542840786671368 -0.3882705515343989) (-0.03722688748955479 0.005213137426990132 -0.05851993877774068) (-0.008580614907603708 0.01892840917381146 0.008288219958779859) (-0.02250930660985046 0.08523784423239365 -0.06099761996468122) (0.136220716715084 0.08911419516141995 0.06936758907734625) (-0.02469738275549863 0.003933295381864907 -0.009985476780306981) (0.3031593447967179 0.552636854540794 0.08322114880310663) (-0.3848584297822665 1.44114891206986 0.3801411235437926) (-0.07983539539523446 0.01853602853169194 0.01673557778835961) (-0.3241560208317083 1.189573327332614 0.9029532206134272) (-0.7417835135930944 -5.532990853414311 -3.247208082003729) (-0.2208407728109654 2.419623375280146 0.9145576263387618) (-0.3155943581727139 0.8568466640671188 -0.277926588797438) (0.5930610173604305 -4.506060454730444 -0.132967956032514) (-2.64720461343153 -5.12192734420743 -0.4921447586248734) (-1.951505284479248 -9.671698260102549 2.78643693855923) (-0.07353289702915866 0.0403403171804636 0.0977884694956131) (0.02851099185200128 -0.01560781273713967 -0.05371140145148837) (-0.3143476809168525 -0.8031933010513133 0.8653265271409849) (0.07970393043352823 -0.04780771343044639 -0.04157077622642531) (-0.002012813137243012 0.003004128341666073 0.01771808333920984) (-0.008829683497359232 -0.004830230649019359 0.005784339081620983) (0.02501683614627245 0.001164786252686081 -0.1698475735541876) (-0.02540560855302787 -0.01375462466279119 -0.006929317803747117) (-1.121631088283188 1.13447688441817 0.3422802638735794) (0.3756410655604439 2.800740373062951 -0.2657748903722179) (3.838661026679821 -0.4134693014725633 1.092584684985507) (-0.339152214891661 -0.005179311905886191 -0.09702462585839058) (0.1335470841938148 5.868432435530801 -3.831020059474157) (0.001780596864409551 -0.01626904504156213 -0.03465686277613205) (-0.1750904801782339 -0.05387733515977468 0.08151703445489952) (0.005105274391381077 -0.01478985389063598 0.06519001813547731) (-0.090432694430521 -0.0082664363185919 0.01002671910026003) (0.4268817440129472 0.1454198143417625 -0.1781839733928726) (0.1497124939079157 1.116560104762559 0.1945033462131421) (-0.1260407688384901 -0.0275087014002419 -0.2191911702107048) (-0.2878513357111113 -0.9184212050659329 -0.1652379482419827) (0.3422016281084099 -0.5433156413684455 -0.1002338594680558) (0.03082452316448246 -0.008960943400443799 -0.02547092349657744) (-0.1450437681606072 0.06281109155740716 0.135927045650619) (-0.01184256152672178 -0.05080873963923054 -0.06397591259817104) (0.2938264449823972 2.962487467606898 0.6692143056610207) (-0.9413480723048459 -1.242257410386988 1.026600138260903) (-0.2300599685984657 1.713985733741173 -1.725093454429764) (0.1596831937335329 3.829547702622763 -1.296599165090425) (-6.651274385088719 8.587593086780201 -3.287116754410904) (2.448053137758923 45.48443143120782 2.345365828089844) (-0.05792810834799922 6.594347542731471 -3.699094410673491) (3.466873989638541 -0.5600068705127313 1.248798710501349) (0.368499145964272 -1.060066376154491 -0.02364982609636734) (2.456277559924454 2.430370408999186 2.645769331739752) (-1.838026159254416 14.77176975672612 -17.33379540739591) (0.7697129002019023 -6.723424899907799 0.8439716533525434) (1.314796594019551 -9.494300344031068 3.338314444781674) (0.2105866379573984 -0.02073901075800737 -0.0767259318833091) (-3.026677191031992 4.926215808585112 -4.022827954814948) (-3.703720639243304 4.013795395119275 -1.48408026085521) (0.01346629502353331 -0.02117916046884146 -0.003022518748204811) (1.95191995216504 8.794071241579733 0.7051955319097657) (-3.778224488611534 1.053991999922157 -0.3899188348936122) (-0.1916541042684969 1.112561772290674 -0.3788460456430962) (-0.2312613378622665 -2.377127797802223 2.088029919690075) (0.5043699187409698 0.03040403824436713 0.6480385671671079) (0.9186579347783375 0.5589389030896856 0.5698652135693592) (1.145538262345447 0.6690809304280745 0.5378949247509781) (-0.4907136881246884 0.4301099690746654 0.6273200600950977) (3.977383837510287 1.737302051982251 3.51337024698546) (-0.3806067157425562 -0.2213280359139087 0.6245715992569278) (0.1733775073987685 37.81488742346278 -5.048476820829014) (-1.148349602652866 0.7789132932833026 -2.063080460822525) (0.5113812261203333 1.320929456432689 -0.1169993194760744) (-0.1857523924163449 -1.004378064176931 -0.8892851525116894) (0.9112477960282502 1.339336799084261 -0.739217732788909) (-0.05514545846878435 0.7278080442667518 0.3009988565909301) (-1.112765024028693 3.299818812484787 3.920305024457602) (-0.1558711640420241 2.25381220597999 -1.170476453357087) (2.600782012698067 5.034070777105258 3.082515246371837) (-1.614744461947544 6.176521609400702 1.730516491932166) (5.482292970776069 33.48105819159154 4.104241259256651) (-0.8499577783786406 6.598268469776354 2.267524500142706) (0.4388385965184464 0.1030790375078716 -0.1061355399546646) (-0.3250138915048559 0.2774406305195951 0.09598784090335691) (-4.123542296909959 39.43931523661154 -1.304752135818987) (0.5271861396056868 4.950429590140889 -7.80616838660324) (0.7884118360197208 1.883818880654088 -1.809939557863131) (0.3151733790745679 -0.09222446242958468 -0.02992466974137972) (-0.3708947475543168 2.608699445850747 -1.617033552925078) (0.02628794825954159 -2.143582524031438 -2.068098499897943) (2.389528816916377 0.03278622197159975 -18.67084743310177) (-0.4718644929594086 0.7885463919334328 -2.422331176454363) (-2.951498959305584 1.492303340867553 -0.1659606491265941) (-0.6868422260512038 1.455369966193872 0.7304164639600852) (2.40304489212681 -3.052025381457942 -3.667472059905303) (-0.4380351873417546 0.6097117821633202 -0.6834774384696349) (0.2265062642144307 0.810779883247524 -0.6563456126294394) (0.2845231828363168 0.3370650491484184 -0.3051260378523423) (-0.1243971618727627 0.04879054130788966 9.729377834833894e-05) (-0.6826683078586298 0.4082450862302465 -0.2291039990556758) (-0.02616885901973451 0.0552161546069664 -0.03735752152221336) (-0.1740931493851388 0.3713113953492214 0.01767987625473189) (-0.06092254018751697 0.04049366908127181 0.01217624024626767) (-0.769531894017855 1.637575731948501 -0.8446615200020239) (0.237814362713082 1.358211686605713 0.488521338753153) (0.6644464814165438 0.7975754920914826 0.3677751681291448) (0.6732310748288851 1.029359592522693 -0.5037555394350457) (9.8346539503945 8.393394691741495 9.661470883638312) (0.2918255150394652 0.08186702197885762 0.07490711690559478) (-0.1175947944721106 -1.643419275399278 -3.327860812385956) (2.918834896478262 -3.359151598708189 5.661486090292564) (-3.736305058623962 -1.355137720249517 2.046744845523849) (-0.9787091753592021 -3.912511543617056 1.378184642620036) (-0.1759110237591723 -0.4261187224809072 -0.04689857595491806) (0.03760565844116014 -0.09351427750945079 -0.09489317813250879) (0.7635482186841865 4.831416525161544 1.04026867437821) (0.6850753355351191 0.134194735978781 -6.258532345610655) (-1.250040178792125 1.778720303759198 -0.5999460575693067) (-0.04358235612700657 -0.02051438481014172 -0.03659382169843099) (-0.2509089099496306 0.05168741723220788 -0.3697194973065178) (0.3447926990102295 -0.1339055712444062 0.1595771118745569) (0.2039259302450431 -1.063531590085556 -0.1820433950588293) (0.05112568521678271 -0.03437068452187404 -0.05798607035835869) (-0.08057704842497482 0.03683041096947788 -0.2654859275589964) (-2.055097517554202 -3.53545435990112 2.008630836678701) (-3.092559019814269 -0.2165385754765268 -0.4081140855366452) (-0.6020087254943909 -1.186587199436265 0.1799020163018732) (2.362674224802488 -7.35566287688083 0.04536982342554907) (-2.058611640174404 -3.415590605272732 3.519396192341964) (-0.1499865789291781 -0.1421266919586036 -0.02758097726124727) (11.19090178398386 11.59349809249164 1.018526765463489) (0.1928010964184402 -0.1661145499274703 0.1093093581147698) (0.002737273141402652 -1.806368320360892 -0.1056799875812769) (0.0908076227350996 -0.01556350083057226 0.02292100544524604) (-0.1909332382988145 -0.1545088031989423 0.1146970334569054) (-0.2636300423879026 -0.2296728613534598 0.04362346226489326) (-0.01011769093041337 -5.568676280119848 2.9850231095096) (-0.8760311653966051 0.7966042070194018 1.039699819096156) (0.7751412505683242 0.02881667191200071 -0.1677537070806265) (1.34075641604132 -0.2853413353680683 0.1767611746010107) (-0.03439054744065694 0.01878515940141879 0.02875613181736353) (-0.5457568204219464 -0.3481857259904899 1.741000962901204) (-0.07983867744035156 0.336110568798022 -0.4970004359868416) (-1.282874636856679 3.414928563188359 -1.791874696556686) (-0.4876868027238304 0.7272084239027741 -0.492901141672254) (2.784020124964385 -1.067020039449124 0.8409444371977869) (-0.389240491919997 0.06172473271284631 -0.02340723213743302) (0.007199019519239991 0.007708459252332253 0.001909444046245479) (-0.0402468757403496 -0.3275225002093169 -0.04756468531119185) (0.2651577574852457 0.1047000674417002 0.114372207597383) (0.0219067382753519 0.004910695666099238 -0.01051078750951191) (-0.05587312608700901 0.08638334709116033 0.09220663476713421) (0.1638527188581554 -0.206536920787536 -0.4030192945477907) (-0.02764336779837413 -0.04069589095090914 -0.01395239138588955) (0.6245545304009329 -0.01783211169277028 -0.1308885995605683) (-0.02704540331811181 0.004584697679065462 0.009479082809538627) (-0.0324456583878559 0.1067373470725891 -5.942068753359209) (-0.1317122303730266 1.302057701264497 0.3992972127614778) (0.05343228488785272 0.1118440318042272 -0.09491812456982791) (0.3082694935867868 -0.09791169481070122 -0.1051255963619614) (-0.006174926207161938 0.1927675177303489 0.2071767407610736) (0.6562261341703051 -0.4893262495292764 0.04994908885433733) (0.05826675961588744 0.01531299763175495 0.05498158736078863) (0.2504421550428212 0.1893793657961376 -0.1736440522621561) (-0.3032450617323357 -0.2123790859194946 0.01770899614183082) (0.269640554883428 0.2436636268396878 0.2773215504010072) (0.08603971840633896 0.01306052141895516 -0.01786792407313537) (1.517848330306783 0.3951982507507154 0.1285157544346013) (0.1531439640822951 0.01897094411016247 -0.05541339432382018) (0.04516326008591029 -0.02333006229717123 0.02497985286967302) (0.2537864350378944 -0.1375004759716234 -0.1441086814447528) (-3.523321758101189 -5.852947820845447 -2.2871663481423) (-0.03571941309171214 0.01454304101712308 -0.08981254954459188) (0.008869357127391734 -0.02044609691632321 0.00464228013720649) (0.03167764308551246 0.01389741134598824 0.02084370060307024) (0.3691134483455072 -0.00131563811953396 -0.09295319832336635) (-0.9403354036399646 0.3858539929543651 0.1997798264953796) (0.001772130577319034 -0.07523259544106782 0.08014487822682841) (-0.0180409263698112 0.08768909246709673 0.03041627429477629) (-6.60586184714806 10.46769408031479 -16.76689447109357) (-2.465307316171367 -1.339774448595008 1.422659218525008) (-1.297252047624737 2.965778553762378 0.2232649591166153) (2.715584286810992 38.20555061246338 -4.678296980648413) (-2.873151155305545 40.92815417490609 -6.472242937396736) (-1.772683050708102 -0.4692969013429312 -0.2192039406603188) (1.560639148059678 -3.871673808454978 -3.063903897321561) (-0.1153610025101489 -1.851699469896824 -0.6118897306887787) (-0.2535955256958231 -2.509403834627514 0.4522915320942471) (0.06997180878922382 -0.07797008828656761 0.05295192023508351) (-0.2600378003358332 0.199716920763054 0.09529935439645239) (1.453122887958993 -8.941249435934679 1.91062614145297) (0.2266172724809219 -1.20321632335482 -4.232797845411634) (2.207147347781522 -0.8899632388760095 -23.10449035163068) (-0.06293590501452176 0.02252357573179655 -0.02891332098590055) (0.0194655357576152 0.01263146791577809 -0.0151657693349891) (0.164399773616043 -0.3965234809256006 0.1557401910720584) (0.02388098503946267 -0.02802685575590667 -0.03904545547785857) (1.066159261593947 -2.593301135198101 1.038883186685092) (-0.3852461724839731 -0.2187144348756125 0.2181539876147259) (-0.08222127905642068 0.0002946937997333893 0.04991808885470925) (-0.855710825070078 1.8837257937884 -0.8281700810631174) (1.901911145959126 -2.811884141072359 -4.354396540631786) (0.595093465263412 -0.8535645547566666 0.4390044422933965) (-0.5689673083302212 -3.925042766989858 -0.136122799843727) (-2.227439838332861 -4.413885932033336 -3.81623627098325) (0.1234459247527548 0.01138343433885543 -0.0936332724624616) (0.0483729044240413 0.07373035332920416 -0.133433388625455) (0.352845946133014 0.06699484056925606 0.3016841199676778) (-0.03727697327468035 0.01648730034636049 -0.02289817489850204) (-0.4135629661886135 -1.495248605952647 -1.616075700658149) (-0.2592386148728388 -0.4330172364653888 -1.372817650616362) (1.179380693512062 -6.475443878044535 0.9874820467338404) (-0.8203735282080322 -8.764329187092933 0.3126658263977751) (0.1709031198156937 -6.721735337815386 2.648136024129072) (-2.674811859453174 0.3314566882303409 -4.315867663683455) (-0.4239253853810108 0.16760221656972 -0.05646603502231633) (3.098117415364615 5.711818740936593 1.026103009971279) (7.936884233443722 7.252125887596758 3.034899609834414) (8.583396337232879 43.37231047093156 -3.707159718439454) (-3.352978146406001 -5.383034016912424 3.136913831722089) (4.59986566340088 4.737787319934666 4.584824601096605) (-0.02856986032255981 -0.05744227043081318 0.007426628229783405) (-9.713259881167881 -7.302638486461002 2.729051414205974) (0.1135750164963442 1.243095995363658 0.2395449161719136) (-0.1016468185171382 0.1654482683945774 0.09526445790833105) (3.814987694260973 5.337610636924104 -27.01815383512706) (0.0001562536296656203 0.03014512492727865 0.01249291739769345) (-0.1850096693747471 1.542985522753106 0.2203725762160961) (0.3010022684285922 -4.578650264358104 -0.600062108045232) (-1.080112276213088 1.09138450194658 -5.649571290790894) (0.1198255951372682 -0.07324664721499223 -0.08569210889075404) (-0.5971181329961692 0.02931659616610421 0.5915661026236168) (-0.01134359315682454 -2.794793449661221 -2.553430468757993) (-0.783778276496763 -2.197388818838974 -4.273318139097523) (0.2546126993939984 0.06868091262075557 0.06735193335724574) (-0.07480099911376853 -0.0986705622793637 0.018689895601592) (-0.4069896017914904 0.07454823437086722 -6.775760946014871) (-0.7697614835992292 0.1097215785251642 0.1154433184459842) (0.05865268368517843 -2.012802951428927 0.03446534160418102) (-0.3481926841663642 -6.960904134837209 -1.168501894066387) (-0.2609381839060881 -0.5740235649684965 0.6052082572924389) (3.282020410765307 -0.7655307223920622 -2.818807987037549) (-0.4472985339303177 0.8243837083142578 0.5824548026482689) (-28.80088624666269 31.66554441954525 5.648770699927292) (-2.152471705193118 2.190801022149013 -4.441599095837244) (-0.2275854228318941 0.002906352776262972 -0.8559871645236747) (3.526533449106553 -3.327055369569529 -0.7485983630705235) (-0.08171582553655488 -0.2931866876856584 -30.33423112507086) (1.021161952250819 -2.934787809624143 -0.3514192214400258) (-0.6592494476514004 -0.2171839042477277 1.242144685036537) (-0.3866064229640096 -0.8540597440585227 -2.187204153775784) (-0.581165577916564 0.3950647205979937 -0.5348260975826364) (-11.46982395419035 2.176380895367372 -3.841734968141955) (2.573285600318691 0.30543567982529 0.6871643506826055) (2.115671355352712 3.283864454211233 -1.614620049114097) (-0.9295272498791176 4.683884858473835 -34.35219586581008) (1.617505384833895 40.21878049885652 -2.742607374427443) (-0.3721004767455891 38.25929948124642 5.373652472271594) (1.55269084565988 4.420252432647776 -4.1647808544562) (0.7003397536519103 0.5045529856202141 -1.393455032967262) (1.268932263403121 -0.03963629784690159 -0.424528178056452) (2.415440860765091 -2.110044685421309 -23.06694725109108) (-0.9027766090533843 0.1289529527398208 -1.234362499444631) (0.01107493010547023 1.890994222705256 -0.5409514438232893) (1.440835470114041 3.126280464314199 -4.918817522854192) (-0.9636408960331955 2.765748012182116 -0.2040540332272444) (0.1797508124942806 -0.1707117814522389 -1.029396322958755) (-0.9438671033491793 -5.623946140614279 -7.027859977314717) (-0.172018213601759 -0.09830863185716623 0.02222457657736866) (-0.7780050401130975 0.8002033155860513 -1.028289165558693) (0.3145482967396422 0.3023373427804411 -0.4574833966072149) (-1.019220948233132 -0.04891460043710552 -0.2129740684709273) (0.4472411908518603 0.3292021448786393 0.3864789264599428) (1.352799574555494 1.791515624863417 -1.133963808272069) (-0.2931534201001625 -0.1858827625039131 0.1796431120384555) (7.273832038876204 45.02970053312095 5.892126410201319) (0.1267497738318733 1.824944065768286 2.657820885815335) (0.3057655758883169 0.1317191600869627 -0.1560587689062964) (1.465063739884794 -0.6231659634520327 -16.46051551228229) (0.0785152926097048 -1.593913002288045 -3.030399807595727) (-1.976724831412207 2.690180893763506 -0.3151485612474053) (-0.4526308555235108 -1.259694625228024 0.1900953801989211) (2.385498142269302 0.9097317027710627 1.810298948041612) (0.768402960906049 0.3084519244072261 -0.5069853330327536) (0.2264980579046895 -5.507395532214034 1.176530080220107) (1.809075640403147 8.782365847152169 3.769275246122527) (0.2596963543692887 -1.504941817919375 1.002521920663818) (-3.061413472486447 6.321343009790445 5.167612691358764) (8.090192597591846 57.0587006045247 -6.907871946366679) (-0.1273183588179084 -0.2626262438899516 0.1793128483671138) (-0.08622692639391673 -0.1025818742715606 0.01139476373056494) (-5.730865458195428 -7.059320207399562 0.3488563762171647) (2.980030500666639 0.7323418737751854 -0.447024201721332) (-1.144803588020693 -9.341096660982807 -1.870925164284396) (-1.744983491208903 0.2323003071856557 -0.8334527993188344) (0.1150021791759423 0.09275750591820728 -0.04292474777280856) (-0.2880121525045358 -0.4067448775905781 0.1749992747255855) (-0.3387461340633163 0.1679279310147965 0.1458140118749459) (-22.08428673497144 -2.229025387993927 1.278262567859156) (-69.01596491869006 -10.87468540745817 23.99354797862282) (11.70084142498468 -61.95181662280055 5.770519016482998) (1.766229807218305 1.930874172631934 0.2051076574219797) (13.02051026837797 -2.3206561776573 -9.593738100743579) (-2.588672775501303 -8.415987831499683 -1.842458198969718) (-8.849784565568134 -5.286914921225007 4.168441418358899) (3.167098292979042 -5.60434458349594 -2.6371196601149) (-7.336262715757907 9.175149854318313 7.157424501542554) (1.738111938730706 25.03999052740668 51.57433220970868) (6.478331851746272 7.961414112293971 2.726864552327622) (-10.13709976598656 15.81935663851707 0.5911787389343626) (-2.239667309684871 1.789305228253054 -2.02642825787562) (1.08784183564774 2.551562325656685 -14.91173912867899) (0.5343841162290648 -0.02478765596523003 -0.8897836523197014) (-1.442870720824147 1.952991978496805 -5.483079906737326) (0.02468057866199236 -3.907993047915277 -1.758946064242247) (-0.7648522393283127 0.365751159282956 0.1660834264086531) (-0.856493652368612 -1.135283555429474 0.4017849332319388) (0.1363017479713287 2.492889600292679 4.029516504092829) (-0.3434413063421418 -0.769302455903247 -3.985610629760298) (0.8040165212684893 3.231106806801805 1.063305915147482) (-0.001345059232016204 -0.003289575179954794 -0.05028888851567159) (-1.128145462345994 -4.446733092411073 -2.19258876993301) (4.241730810615339 -1.501428530163186 3.982794075156746) (-4.661539687028261 1.422836498119868 -0.4595695455914608) (1.501419959217067 0.5173121149035069 1.391437581692006) (2.587078801038529 1.881923391709155 3.517589663972803) (2.635040758623239 -1.953054797556747 -4.246482478066171) (1.276633523061101 7.246864356108895 4.373521470849278) (0.065148786252735 -0.04181361705069075 -0.01330307479587074) (0.02234240988049827 -0.05919688069822335 -0.07242142012536758) (0.03491792141186897 0.01215523661600359 -0.04103626118406906) (1.1467771153121 8.953507141289903 0.7266099868281506) (0.9448728245559516 1.471273103766071 2.699549483798756) (1.734768535094868 0.5979854008580199 1.186813560212336) (0.1291331823466701 -0.008295762273355281 0.09643139366427984) (-21.55311151501614 -22.63644577034154 5.147739919832074) (-1.877070559227636 -0.6906828784634944 0.8749581734806687) (-4.598844902060635 -30.39531951291179 -3.623556106772749) (39.73770341712442 -4.972094013016731 -21.93716818320873) (-0.9656457414700121 -5.041527386331638 -0.5275949833236131) (-0.772694935247583 1.416082441250006 -1.084811557630919) (3.18075999293419 -0.4520119978412048 -20.58786025934181) (-0.2869388623347323 0.6952050010839083 0.217244225416125) (-0.1836786397156127 -0.1979678396370025 -0.05806072755559089) (-0.03285216135004725 0.02553723972804758 0.07596492809407365) (0.5053011215225462 -1.091693835279738 -1.029306394682918) (1.000693160892665 0.2287151508428554 0.4834697884642658) (-0.05255041916160619 0.07085556629756545 -0.2405082973686772) (-1.827236824409431 10.38480113875466 -3.032798139684945) (-4.776417136727724 10.28039767755844 -4.235746625420338) (-5.610536677731798 5.040868468713816 -0.7890824776945671) (2.146252643872804 42.80342647433628 4.124344510189779) (3.774111700097401 7.32085509466858 -5.177416578004527) (0.1883202230884784 -0.09417036103328916 0.0156282576935016) (-0.04461820824994772 -7.255763906086092 1.262533177272577) (-0.9501624091760117 -3.372943059154188 0.6222936909371153) (1.457179010860008 -1.110336494441606 -0.1015439335138622) (-0.1091330418658226 -2.314618608732309 0.344038553546924) (-0.02227667128713406 -0.04418865706235037 -0.1243176839482053) (0.8796348298100737 0.04955756280942591 -1.268294867495173) (1.341252442928473 1.565088175757309 -2.674792301435631) (0.3251342334460873 1.112462553831619 -1.448672359961769) (-1.208027096321292 7.334898127559015 -0.563069753466791) (-3.30704688960292 16.16310596386505 -40.97951419677096) (6.056977965177631 -13.40564529433932 1.135513647865089) (-0.2931972672634026 -1.138455931725871 0.1242967121349103) (0.1102089890749948 -0.1048833936512466 -0.1095489694366077) (-0.1012282077486351 -0.162185340105781 -0.1091886711072637) (0.01416369714808309 0.04855100100886626 -0.025589321093466) (0.1163009924353116 -1.288686143303865 -0.09528420340665406) (0.01969112469496898 0.02698692191306776 -7.466903313742005) (0.002936390288371857 -0.0026733376517519 -0.001860117222157466) (-0.001634901964422484 0.01668922909542696 0.000716595192727567) (-0.0301657458649233 -0.3669906707042387 -0.1236623059330246) (-0.05147240774376979 -0.01636738854681402 0.08524009108267901) (-0.0005599720502480754 -0.4307200390222792 -0.02134733420807381) (0.3242946910339118 0.2322026170307834 0.04227272286641012) (-0.118091146785164 0.6771944762626617 -0.8165719438118948) (0.06524470447050933 -0.5545016297808951 -0.05960886723942904) (0.01089975804974432 0.006038467854492389 -0.002403786049608286) (0.01169701390570827 0.02824680256737259 -0.001837990842912232) (-1.505482038307486 -2.042974360271644 1.790457847288535) (0.005491572088153041 0.02950315407138059 0.02521635182901822) (-0.6831087645527884 -2.308496049927755 1.75368370383793) (-0.3252207413230108 0.3624904501996144 -0.1948598774528997) (-0.002318855708631162 0.1039836563708824 -0.05724138394901786) (0.1514382118348038 -0.2500258466430876 0.1878892683729894) (-0.002959836939982217 -0.01938832005392506 -0.004468147301358348) (-0.1246807962945055 -2.925082604226282 -1.200670427353948) (0.03825740847549919 -2.693424818165919 -0.8389986493320877) (-0.5972513518930989 3.80941040942893 0.5084979406449507) (0.09307808736449974 0.2569870549496088 1.196016269331656) (0.2466393637187302 -0.6470983587795829 1.366846427083294) (0.3901081789903039 7.384868196575003 0.6357471330970909) (0.8536886137246763 0.9454876892348308 -5.638450271853123) (0.02587421125067237 -1.941872628935871 -0.6946956716683492) (-0.05987277201387808 -0.03592404262131887 0.01072193737599345) (0.2042572284776317 0.186505026866508 0.1617453567466899) (0.1074011725063725 -0.4319611993122633 0.2001592187365761) (-0.1150690558949458 -2.466359347032088 -0.1930526407587442) (-0.7659568365939358 8.262342384229925 3.106470806279477) (-0.1889893655477599 3.437673766056083 -2.987529935364158) (0.2535436062912155 -1.243306281033959 1.626767485053597) (-0.9581889806174542 -0.8866454649601587 -2.593936252018351) (3.119277621421527 4.503308521974485 1.418534329300332) (1.270850078862199 1.497796150847858 -1.941343512156403) (-0.479518239310546 -3.993591565123718 0.2973668313609009) (0.4067870131815661 2.372585552495218 2.388347684304362) (-2.637825149095094 -2.834631467305653 -0.3853631362581491) (0.2416538843813617 3.827364339667901 -1.148817412686987) (0.8058727448495742 1.674249804961854 -2.730428167546156) (0.5261827255772492 0.7729486761244836 -2.194380286160099) (-1.225016627178274 1.372951222901012 -1.135830338173329) (-0.8892189845961105 11.71733089823301 -4.875271850874626) (-0.0119701186298927 -0.01232268975333502 -0.01505128171023612) (0.4326561623296892 8.409443242355872 -0.8451998120987051) (-2.357927955481874 -2.329702678670015 -2.437077408715825) (-1.90941843071026 0.06517593483396039 2.943662947799909) (2.733157963429389 -2.528498607420952 4.702051896283195) (-14.06307260224822 4.92908410506624 3.054929261057429) (-9.101676703395475 -9.035373934020685 7.46670197163145) (1.755375162802714 -3.38735590218313 6.200602134202583) (0.2872486945819654 -0.1550536485741024 0.1035576119441713) (-0.002682541843066266 -39.12404682446283 1.016893932351526) (2.112022860698641 -11.39463509885006 14.06990400989124) (-1.479095736871483 3.16441891213808 2.0077609910228) (1.416153743272373 9.717913853421408 -1.563422008756419) (-3.82825349851002 -10.04941575486204 3.107745028261339) (2.133837045518137 6.222225649972989 1.533308245562417) (4.157013827919127 -0.6667476707877482 1.971714597009106) (0.874857569366124 12.7896366056522 11.6306001008796) (0.04042706002328927 2.697832356517383 2.019074510791863) (-1.035292287143285 9.340544382651368 -0.4099397660247972) (-0.1042421999613897 0.008289038985762887 -0.2243003519858582) (-0.1986268865028686 -0.02963297573220533 -0.0376030910225581) (3.404730586029082 4.569392786722066 1.576956612079831) (0.5024822041502073 -0.08978742958301389 -0.03652385347875847) (-0.0461950739878071 -0.09295083004856317 0.1728570783303903) (27.04551964938884 -2.233112937330724 4.16651399408236) (-0.1064866780926104 0.08187079543856332 -0.2594878478776801) (-0.2566188950341081 -0.1520820149456021 0.1589704228673186) (-0.01231550862943906 -0.05806319744820289 0.07847334091166522) (0.1159296889724718 0.1189480327300259 -0.2430636564154428) (-0.2567230226551822 -0.1297357989142107 0.2040813933487395) (0.2490675722446613 -0.1015473306550597 -0.04034873728526739) (-0.5164331976019502 -11.10969031080803 0.9647346057304569) (-0.7743300521756429 -0.3449852389315323 -0.0704400620891692) (-0.1470263655549682 -0.1954278684251155 -0.04898784356649565) (0.008985828925227465 -0.07395478382882417 -0.06262865642345813) (-0.08153524506467037 0.08558554518794509 0.01987782205250115) (1.912000262334503 -3.769984781067212 1.408505627740464) (-0.01260323541809954 -0.003376734082480907 -4.440665289979545) (-2.78650611069417 -2.158112527048478 -5.119976182869277) (-0.6618174214629433 -8.979550614629995 -2.300867209638798) (-0.04864006638221235 -0.02837680039846908 -0.04846440384531622) (0.1241820122708535 0.1415929436618677 0.1863813215426508) (0.00523184480488469 -0.008883881688051825 -0.0007389651035886579) (0.02420790129148302 -0.003699508387632722 -0.02005869939049763) (-0.04503540818791397 0.1193507185693859 0.5958593345151868) (0.3750824333305021 0.2762655829888171 -0.4278514526729394) (-0.1266885173276296 0.1130438163118788 -0.1312095510035878) (0.2430661532707291 0.1512397202514839 -0.03055641913461909) (-0.05467033520485813 0.02609157964620609 0.01595528343434476) (-0.04613135559134869 -0.008991571556731947 -0.008786709781490432) (-0.02348601425581853 0.009199713714000458 -0.03311031745323129) (0.02004883295482145 0.0655490939622374 0.0001024535306881642) (0.9519189358101561 9.166768367091844 -1.134946385098697) (2.075687992681428 1.869617385016112 3.142376830142645) (0.617015786102085 0.2655445428675344 0.8897672057544369) (-0.8531108095558932 38.88537333770395 7.198671124105242) (0.3258293903920914 -0.6586831163677451 -0.3074380233518645) (0.02651400845709989 -0.008942077752515076 -0.01442270255540901) (0.0613327478966386 -0.03534171343804 -0.01266576140537407) (-0.2554282282806792 -0.196110415243798 -0.02019837129769642) (-0.1701484553058741 0.1088600408349285 0.09932620667747233) (0.09879480627873891 -0.02591021731045919 0.05648114267142596) (0.1059117108901376 0.109641493746954 -0.01268320432006222) (0.09059270433304351 0.01746822215163733 0.0252832810696834) (-0.1861794348448998 0.02012734537249753 0.3199882970692812) (0.7171272003712195 -0.2551190571281881 0.6769348161113992) (0.0767163941960102 0.0196444142344191 -0.2150991702083182) (0.1163312471586035 -52.46504014700725 2.599083423354609) (4.057440654599449 7.659247990197819 -0.02100983350725971) (0.05752488467064421 -0.1954400128391453 -0.5216733225815291) (0.09029143367524134 -0.03399439396792706 -0.02368846785682504) (3.574088548426991 -0.1165794559666216 1.317378928582861) (-0.05078930461899608 -0.02303079625981955 0.002786760222769859) (-0.307658365653413 0.3169735200393968 -0.2747797570642559) (0.06789524625980398 -0.09728556366292125 0.03108542931946282) (-0.007721153037970024 0.1031716881673609 0.06432194677596112) (-0.2148628765304444 -0.09701151179185816 -7.588862477703072) (-0.4421588348403122 -0.2296940945196233 -0.06692910705120285) (0.0890433533220848 -0.2454946252357405 -0.3114639824987911) (-5.652574247391283 -8.315737943298718 4.814035371307462) (0.2320036603548224 -1.362437348964848 -0.946835983610769) (-6.056186356104858 -6.525928423616053 -1.311600792408165) (0.9234630546166194 -1.133484390253028 -0.3443167789045751) (2.970176993427001 -16.09915543265107 -1.439713703457029) (-0.07934749516128836 -0.450453614350789 -0.3272453288019578) (-0.6688974976226292 -0.2960357176168552 -0.5414573162984316) (0.1048502303623352 -0.1101372263814731 0.02998878125587934) (0.6672295607352998 -2.042725523728446 -0.09978190212350846) (18.42395296965905 -21.17052558774182 0.9389280594624276) (14.0237436142047 -16.10929507061121 -3.816033704069376) (-6.644705009566973 -12.62721435039288 1.152060590577403) (0.2565425177089186 0.04093956024239246 0.1674776879187482) (0.4547784832166133 -7.846983565297381 -0.7501142164366339) (-0.7704050079959779 -5.243973028924019 -3.494146684829628) (0.2041890056195928 0.09488439482815048 -0.1929970993899269) (-2.491486815094041 9.563471626163095 -6.258202049540593) (-0.02737916820886994 0.01267339985172029 0.1173804635530539) (-2.017413931061966 -11.34097819754061 -3.161135791934209) (-1.542793752452364 9.377798909704264 3.250127135798716) (-0.6384495725203962 -6.908978534469192 1.385175823816364) (-0.1279166208183387 -0.08595867538236479 -0.2794109993158229) (-2.269710739433293 -7.111300482407124 -5.488434352517869) (0.6405764592903699 -1.126026073906948 -1.127828469436434) (1.614515385611591 6.208932269360006 -1.331971090352628) (0.03493905299967416 0.0141499292282465 -0.08584795518435009) (1.530229874044044 -1.847339703029061 -0.196001898554343) (0.04154150083804486 0.0002372127695802022 0.0376704014243396) (-0.02596895997376137 0.001600368886927226 -0.01125914919599782) (-0.01098174096581455 0.004479372840832906 0.0001505042426567854) (-0.01787586598867463 0.01217259032050323 -0.03088527702541122) (0.007228803745076617 0.04322169852310329 -0.07826490060539289) (0.7329817065773171 -0.4561314478121711 0.04313277805379967) (-0.1467533970387881 0.05172387512612285 -0.08367795738766723) (-0.8376461366592571 45.41045214410233 -9.108240848170135) (5.354002686805338 0.618568999506209 -0.8288117902750027) (-4.370077892945462 -2.408932538970645 -2.692908999111348) (-0.08249656459771426 3.012956178159129 2.052844854616132) (0.6977940149615656 1.80335500266549 1.361493962760639) (-1.510850160296774 0.7124473752847575 0.8255695319031056) (-1.206969853474702 -1.29031057020714 -1.312270192571364) (0.8421469661842321 -0.2920116789297431 -1.302708426956811) (0.1356682239261852 0.3014081153083039 -0.831560683962794) (-3.745005159314811 -3.723689912157615 -9.772558285366493) (-3.128563345621152 2.668853975254243 -1.881695997224435) (9.408975952306143 16.21717457694588 -1.314086634932128) (1.854111917276866 2.491163929713787 0.2975032183377835) (2.970843125341415 -0.00950077226547652 -0.9717033335843032) (1.626259710965995 1.496511213759288 0.3602657010715302) (-4.995682720748976 -13.10696807700429 -6.393555865189111) (-3.39197257643652 -0.9490241973790289 1.16423047109212) (3.040011305171529 -9.761954309462016 -4.067018003243906) (-0.1130573019060268 -1.783359210907895 -6.431267480477523) (-0.1643221672838606 0.4246504358223854 -3.964303037979106) (-0.874210005425513 -2.462079698148659 1.255074118223168) (4.557503146501658 4.078777773135339 0.2629194116871029) (-1.872259197797428 2.44843037399462 -4.150990698200274) (-0.794915331926766 7.10630169576782 0.9677156976559562) (0.5968085699561063 11.83228833803097 -13.45995099175219) (2.883933451111098 5.360244764026564 2.065684993792378) (0.1052159747481115 1.27707271029684 0.06003249942407163) (-0.05766340152600537 0.006421980762931222 0.01507931315056924) (0.0543153276517344 0.0007619589180600447 -0.0333017230991751) (-0.05230722461469613 -0.02410825993233889 -0.0007759584871557396) (-0.04021934557926914 0.0585283890262517 -0.3933130519189482) (0.211743379016487 -4.202392227433323 0.5961650328206948) (0.03921783666065629 0.04555392631707986 0.04413544885896749) (0.0801128921692478 -0.1009950153227981 -0.02763640779008898) (0.1400383298846077 0.7125083529566167 -0.06062184096527179) (-0.171964105499761 -0.1153159001629946 -0.08319057921071948) (-0.002369090961501837 0.002505038957329656 0.007858656079158003) (-0.04614135152657191 0.09129718372755581 0.01351870878192738) (-0.9287417299238223 -1.544738050649521 -1.345822310256529) (0.2237067465046174 5.588807885636628 1.620616403779274) (-0.5025445447171808 -2.788085396648006 0.2964031193104912) (-0.03259172662770984 0.0001376557444850868 -0.02375812052053444) (0.02191652588193618 0.01353065255165882 -0.01384279969385507) (0.7400557289004328 -0.7794170388703279 0.8601235584873307) (0.03739942585506742 -0.00916363919730822 0.02400250850173266) (0.2317698636156252 -2.524695250919693 -0.4757646305699961) (-0.06578827778199477 -0.03359077742915462 -0.01670164751071716) (0.02059811485401438 0.05558345304616227 0.0182377563003723) (-0.1605119923052653 -0.02377670818396741 -0.005497255436194084) (-0.05811277053654251 -0.0006811851924907685 0.01370785977304847) (-0.06381242536085677 0.04281500764631929 0.07491462615305233) (0.03785607828628385 -0.001667708805582235 0.0003595399082396821) (0.01102591397491615 1.146916473208217 0.6498784796118728) (1.177216452684679 -0.3295156219433055 0.07261149809095435) (0.2043094894346784 -0.2353724883045852 -4.281983285426482) (-0.5387180648269252 0.01107824502255328 -0.1379328786774228) (1.663030222673979 1.085801399009829 -0.1876217819967021) (2.187566023966741 -4.939905048543785 -5.349921496612702) (0.01836256936278916 0.04091030814312328 -0.05221146022022856) (-0.003381677982499129 0.01021908651199046 -0.03011747305592554) (0.09531874563286898 0.04378091606001458 -0.0462821790898971) (0.01128666891189688 -0.01380290661348078 0.01367603011451359) (0.00714611170829918 -0.05277447398070284 -0.02902230117172304) (-0.200539427596098 0.2920019574420625 -0.3200522504862976) (1.184863844091394 0.6257311562302961 1.487373724035696) (0.2400267167473592 0.6589117424946334 0.006622671418396037) (-1.136882878359406 18.2255840599723 -2.487583804885623) (-0.0838663446869892 3.215923519128627 2.479201260868326) (-0.09976183388776985 2.927937073949793 -0.2589364683847271) (0.08349864149174914 0.1621335971317042 -0.4893385448186532) (1.039450394903926 0.2740468828564612 0.5716053284053321) (-1.054506882721017 0.9624408316447662 2.485579875369415) (-0.01649478341222451 -0.04007140623047766 0.01269522413150809) (0.04825119629573552 0.004352015735128466 -4.618449887378029) (0.391084743845009 -2.505400379675806 0.4123280241788562) (0.00507342921450582 0.08932243145499041 -0.03962231308819405) (-0.2482850856198028 1.125210284673292 -0.07144528981178457) (-0.127623990673044 -0.3398324062823673 -4.807708614575898) (-1.569773514871257 -7.914379169197002 0.1569144737104127) (-3.347528150513605 0.9317122541650282 -1.890222158617602) (0.3726296292790919 0.4919538753959257 0.6488268275535687) (0.1097324300366215 0.08830515039426871 0.02711946353008015) (0.09453617750836245 -0.02020335674594184 0.01590043445475047) (0.1553669829139676 0.1457443760506171 -0.0366209159565663) (-0.06257758770117686 -0.05988832866143214 -4.631713084627285) (-0.4988877483495544 1.969739901539286 1.58773002628676e-05) (-2.297328526338294 13.7683882240649 -3.480338059977671) (1.381751590481112 4.73699043165219 2.39615552234973) (1.041220731253501 10.0914269855052 2.025532753847544) (-0.06147478488788582 2.61781565188074 0.7286596481639955) (0.1230621688868206 -0.7336402267836333 -0.05886236057110987) (-1.900017749625403 0.2725238262409635 0.7373168627329516) (-0.9262759292168931 0.7850744681940685 0.2221006390918853) (-4.838690767963425 53.07994141797844 -3.40113894932364) (0.2717613837569812 -0.2218905829662361 0.05179588071855293) (-1.719577110337825 -5.771631838532741 1.954444534872235) (-0.1685525113698726 -2.758254891163445 1.114002309885701) (-3.867960767703953 -7.914119474829985 -1.711786852044297) (-0.05824565471474231 -0.1202569898624616 0.4138947413452049) (-0.2461008839369445 2.285487554060939 -0.4090126314318072) (0.02699145179607304 -0.0157473555963083 -0.0511490957250999) (-0.03749327424576045 0.06139641584368211 0.2823906225457592) (0.1679798493612354 -0.391060509309342 1.40732936304386) (-0.6777514886215252 -2.56245846179122 -0.1281070311733575) (-0.01206703989374301 0.002640468027705459 0.00997537735608903) (-0.1367357150574552 0.06597149320993503 0.007674541632504583) (-0.02033620075063805 0.103604454779156 0.2860336455876568) (0.02410503164746514 0.001446171161371466 -0.01203837784851961) (-1.773099980263162 -3.641906845971077 1.854944985613697) (-2.690121110142034 -2.157807675991917 0.07469842237305202) (0.1569926577453876 -0.09297518647736322 0.09944099386962817) (-0.1202526168193866 0.1505489024050078 -4.974288894754711) (0.07042668595022487 0.02616771307616961 -0.0582196841209225) (-0.01100122056653276 0.2492854028145872 -0.09019488734396508) (-0.09724929214139921 2.15297298120393 1.922242881514489) (-2.419163584131959 41.56375819290046 -0.2563989990298209) (2.855434700043292 4.687631920264591 0.6067646369761239) (-0.07936453429545878 -6.366636602467157 4.904323380894467) (-0.2427882262051833 4.162896760274412 -0.8957808300635122) (-0.2708640382575301 0.03973271696251945 0.005829068760949171) (0.4966741058765106 0.09444661614351949 -0.2906191073450352) (-0.1282853291908498 -0.1694777358621887 -0.1559796847784115) (0.1474061933514075 0.08371809938618444 -0.02103580795034433) (0.02395910136363023 -0.03136753877258519 0.02183819662176593) (-0.713797237627116 0.05185967723550536 -0.9301598567079175) (-0.03410261245920621 0.08051032272568201 0.01803972446133409) (0.3139779245499431 0.4010861170719804 -0.1148398042920802) (-1.061905655974747 0.02601552812795825 -2.165192735009311) (0.05441807577749112 -0.06350008178649866 -0.01929284368360396) (0.04156712543735627 0.3413393113520796 -0.3164218848788183) (-0.1511910714258876 -0.02786812156604514 -0.0853262483107948) (0.2949185734149576 0.01791198638779887 0.2422620737437172) (-0.03736989474728943 -0.02891107246732354 -0.01261779385804108) (-0.008442891063344393 0.05922232238282207 -0.009585877050605984) (0.08372228781037511 -0.02439689616359988 0.02110719432429938) (0.2932504156595547 -0.1885669437878635 0.2160671213101679) (0.3852205926325754 -0.1626636651256045 -0.1469144938299988) (-0.04357481143913415 0.0395733361457544 0.01331864991966977) (-0.4244508118722723 -0.6836577770044731 0.5545616987657725) (-0.4624320239737377 0.03674531345546737 0.1240449225587401) (-0.6481490654436279 -2.274727066772892 -0.8915562572755165) (0.008870605407455743 -0.07306275171504986 -0.01192137347354609) (-0.03747277382355951 0.1547045300869152 0.0445770351711727) (0.07476708539074348 0.03622287135615073 0.02413831521790943) (2.705212601921491 6.14212060388769 2.102113771673204) (-0.3845149600832303 0.04085464277216203 0.1345205571251585) (-0.6375677420431188 -0.1652980839748619 -0.04076912732964491) (-0.07210983753517583 0.02515021368860975 -0.03059627448397175) (-0.001043267460410165 -0.0004776467212320844 0.02822971253344263) (-0.03644016704627324 -0.001577951933201533 -0.01102435385664852) (0.002953735081264887 0.01308749279155687 0.002266686817900251) (0.05933202839558727 -0.00726983167912761 -0.01804530172639349) (0.7482857672419821 3.711842247755635 -1.515101089778299) (0.2167282624695073 -0.4002102544120098 -0.1593599834622893) (1.804976480264795 -0.03924657513077823 -0.3055737145544539) (-3.361974027491901 -62.72197714386601 0.846956766780407) (0.8932999015154777 1.487042812093945 0.381049081560772) (7.982000491505866 -0.752943895742466 -0.6823680466574485) (-0.4183469117396033 1.333243031196917 -0.3266911698656026) (0.08719213340867225 -0.03689276886185396 0.01517542580225249) (0.2375399809851497 0.3405955461443468 -0.3300225147567973) (0.001110399124462383 -0.005624265314281602 0.03098425628860892) (-3.155009759260714 -0.4750603582267151 0.79540544886826) (0.3022002974811037 0.8425101416864749 0.1162226151812425) (-1.182605278503884 -0.1063513135778505 -0.24419263278139) (2.354111498052327 4.151357850352156 -3.053333107897997) (-1.242059630752796 -0.3565643916938322 0.107257451748671) (-2.01885236517898 4.547965988138259 -6.167569567586597) (0.06386427669573891 0.00569391238851108 -0.02235216170079266) (-2.436256960219021 1.486555386706128 -0.3812672084835134) (0.6703916692205026 0.09143464721617639 0.2059304098161932) (1.558512500665656 2.854926368148678 0.6800143069421172) (2.450055973229022 9.587013884909929 8.989136294927398) (4.385996972467377 -5.694707124025095 -10.51636072755094) (4.172717984028131 0.6628919719960005 -0.5949506749475382) (0.07455874422503507 -0.06911907102947557 -0.1737930806617789) (-0.06991150913168045 -1.038844333317277 -0.6277556639384179) (0.01892787257918294 0.7637070565113498 0.3452473068758454) (0.3373367132350085 -0.3382381420221636 -0.1403420802905811) (-1.014101291425479 -3.930226637872746 -0.3463848388946662) (2.578134186193995 -49.7659792150517 4.112379307017029) (-1.626007204240988 -3.13210913811658 0.1900598361452198) (-5.515579062258124 0.7725596693963448 -1.980862041201313) (-3.94617540599583 -10.79832705573244 -17.45028623963223) (-0.0753571329227038 -0.4769118466741361 -1.234021735011436) (0.3995791726330996 -0.1033180908082991 -0.08070208878661089) (0.2138849557015865 0.06285859357769454 0.1458272589184794) (0.1547513092097286 0.4148020468170894 -0.0663817871705475) (0.001600194256550318 0.07450158775299942 -4.047482837231385) (-0.2571037824137194 0.2987156759636022 -0.04790697619351514) (-0.02789792397316195 -0.01228675731457374 -4.097443233663098) (0.006910748969736228 -0.003749209186730014 -0.01001975385089257) (-0.03910328585722718 0.3251281536826291 -0.1534046237128137) (0.3351700617092642 0.143723523651916 0.1122446655701092) (0.5091029576352486 -0.02956281942554333 -0.4509634328019586) (-0.1982547731908819 0.04559029117422198 0.09622371237876595) (-0.2702762426418339 -1.342548667031332 0.8568273558898778) (-2.352546679612119 1.719050500389165 0.61149541514953) (-0.3854567220793675 6.434699471599953 0.4549342461979746) (-2.44187083143147 -0.7627442449322901 -1.035830200243473) (-4.931936403120501 -7.641848528910602 -5.461909440036702) (-0.0300735849598498 0.0008166358677163707 0.02846393454482894) (-0.105230492863814 0.189799197155878 -5.641926103308932) (-0.2659403842187865 0.3021285052527652 -0.5649375398687272) (-0.3249633054455572 -0.008082866585321265 -0.09226637980032321) (1.256832723846834 -2.38921155561505 -0.3848647209564821) (0.2159009941471072 -0.4093680888371728 -0.03292772806564186) (1.070421441751882 -0.6985774684678161 -0.1154692276822696) (-0.03079188252229643 -0.3243703372929332 -0.3480511856913834) (0.6525657501769341 1.849787740891133 0.9256978657478063) (0.04623543291275552 -0.01849648573802721 -0.02795755634742696) (-0.0324585506878452 -0.05463633571453198 0.1729883752018096) (-0.2043076154521121 -0.2891798260379141 0.2864217701776122) (-1.205403583944391 -2.486771788410099 -0.2524169762466443) (-0.02247644069528655 -0.01795147507086035 0.02723976978884556) (2.219294145871656 -1.237638790599202 4.155793815232938) (-0.04656047004097847 -0.07801585020825302 0.314173913762251) (0.3631007645892248 -0.5307697897287004 0.05270731849200949) (0.07830924329221911 0.2134795847476181 -0.1338796162045197) (0.3158144492589288 -0.072087653390569 -0.1273311755242387) (0.7386620337500782 10.70661207055235 -6.22626177021561) (-0.3229688607316125 -0.2530599384331212 0.03081467179731516) (-0.7763004642231216 -1.667167148486383 -0.02159809875719343) (0.03165959899504975 -0.04158070984121588 -0.004080049978675446) (0.2429050462783343 0.140833755223529 -0.1514872845466963) (0.1134090879234813 -0.1054334038334768 0.1086782597813213) (0.5105033096077763 1.783968343707006 0.7153561869445775) (0.08987083001482957 -0.06039339784389967 0.02956586023983962) (0.002516488355616828 0.0284583356313195 -0.02029391691881686) (0.0302953342135014 -0.0313923312691278 0.008258476625271505) (-2.404191376659039 -6.234616285571748 -2.052226710832641) (0.4912674662088216 0.4370584866398768 -0.611067772321496) (-3.91738124975863 0.4034217508864629 0.3529441952380204) (0.03956873068357966 -0.07379532359612265 0.3903824695394095) (0.6269938054453194 0.3667811287640287 -0.02881746754135883) (-0.1888319513526517 -0.6242302129009265 0.3807806853719377) (2.422882438531933 5.204806641359841 1.593792012176437) (0.09409612835332987 0.06081755852916502 0.03561827144671496) (-0.1917066377973813 -0.04543335261744584 0.1354069658685008) (-0.008375871735220999 -0.02186614828137851 0.05089523002108242) (0.1109924974462305 -0.08328891365749019 -0.08658419390511561) (0.01271456588062974 0.006047487470771207 -0.01772981534273568) (-0.03449176196471429 -0.0266784009368552 -0.02454552301781602) (0.02619727827822851 -0.0009602860718307864 -0.02084467177842011) (-0.06307248314954893 -0.06406055483562884 -0.03446320618450219) (-0.08903924999095675 -0.06794198628533207 -0.03960924527834451) (7.787844396441206 7.118389313149978 -6.437671724667577) (0.003855731123332221 0.02827387363823368 -0.01490983299268979) (-1.91560650207919 61.47378814223814 4.245096552066934) (-0.8224637100390961 -5.159356799906547 -1.870310524373562) (-0.8853265492500405 35.59895306097999 -2.095151163597451) (3.39985025006656 2.133505922329206 -5.541758653712361) (0.1687163081861466 0.096666522158466 -0.09955695453963206) (0.6527864594210404 1.611634294895281 2.570513230588672) (0.4065444627923719 0.3172214002891304 -0.0005046272085194176) (-0.1714848260615309 0.2716034998702788 0.08887585472728246) (0.6576905002361596 0.698628452340892 0.09304204805560043) (-0.8090306577425351 0.05490107306962405 -0.5859138134527859) (2.813111002792156 -2.860996934758217 -2.660744988786321) (-1.70829837032226 -2.580040257421291 0.1385574739617502) (-0.1807304385331636 0.01952926432751678 -0.04118572311584712) (-2.431627310694704 -35.6061632398295 0.4137765365030623) (0.3107300144957678 0.09374500964068835 0.07010221303818509) (4.026194859664119 1.045265388922379 6.650803140353773) (-0.570484236902536 -7.345514689847375 -3.604074167898115) (2.561647791823745 -0.1344183755335251 -3.971157033241197) (-0.1376590098455931 -0.1806885778403946 0.1422985214778953) (0.1148724021925662 -0.2901352729349655 -0.03400082717649291) (3.561520617015397 7.060801977477963 -8.08816209345111) (1.705029086151638 2.41675408333309 -0.6197514177545689) (-2.081726322065907 -0.8290272174866584 1.160256614654358) (0.4077545486448332 -4.933171825683921 -17.65767436039534) (0.02729556992077892 0.1179831687744694 0.2049893816803066) (0.537702523783203 0.08807155925799451 -0.04679613860753049) (-0.1236237154586866 0.1271284694648799 0.0576394962726995) (0.8505981747017509 -0.01496657440370003 0.1989524246140819) (0.08711417078997946 0.01546438359661543 -0.05147586743368945) (-4.84091860225867 6.218359605060168 6.044924880796925) (0.2816769309206227 0.1034700744487169 0.01766468304426533) (0.6244960054685723 -0.6100578553289009 0.07188817972243393) (0.06314284205836568 -0.3963932408602504 0.2129604728351726) (-0.4215040765464236 -0.07117938007954312 0.1289201460164248) (-0.04162087968605531 -0.06356270007228906 0.1676418001647611) (-0.0685654868406107 0.1468561925712211 -0.1260329580610213) (0.0721048844926256 0.007036357283343743 0.09780111854348733) (-0.008096709147993219 -0.1264344408599458 -0.02837803763123763) (-0.1955308951811751 -0.1414647255928094 0.3948179055836636) (0.1568472488940778 0.8167945685701712 -0.7168769849495011) (1.458066504351235 -0.151009662366943 -0.4738224961325814) (0.5290494413304935 0.1889083805392631 0.5745234298822062) (0.3333505256092216 0.1899569065307466 -0.6798004482643495) (0.1195418450907522 0.1102250613179197 0.1101734887208583) (-0.4566638338794677 -0.1639303546606438 -0.09023147146735228) (0.03631805514518828 0.01189044740684844 -0.02825692767978118) (-0.04297401658279947 -0.07150616207887349 -0.0666730535463522) (-0.1348282951017641 -0.1891312320291934 0.1378690667522009) (-0.4888560703421356 0.02004732999857456 0.1280668507782954) (-0.05659038926856523 0.2196536456513495 0.08527427614098049) (-0.3057740065835929 -0.003580141982469753 -0.1636933709135129) (1.402169523799242 4.129587460953836 -1.072027082811161) (0.08710880506202216 -0.02413747359314483 0.0179689529214377) (-0.4982934227329761 0.4887412949111253 -1.026112401715235) (-0.5105068361268108 -0.1211075387743994 -0.3639505253804324) (3.583933921305429 2.586094320156633 -2.774963389888093) (-0.2530437363252108 0.2527020084481723 0.01142718042164398) (-0.3862450489485557 -0.1752178218676528 -0.00628353430380163) (0.1178139180941369 -0.0654381626352204 -0.2829416613001546) (1.76348077470983 0.4640681841154313 -0.4842875267534792) (0.2341026489757843 0.0761104374848541 0.1319923233600493) (0.1669362018178738 -0.1743871523884032 0.06106106405958214) (0.2437225360285777 -0.1119096232145889 -0.03319673402950302) (-0.1552865826862107 -0.2228805545893393 0.1852125911978585) (-0.1860187659123225 0.1880834646516243 -0.1442432484502454) (0.2466578767019739 -0.1329240835961359 0.2604900492940962) (0.1692690353910515 0.5300786646848393 0.2560468994130311) (-0.1028759587504126 0.02143103111922989 -0.02998085220264375) (0.06547133604850729 0.04520025702901513 -0.009763088887033138) (-0.03699458058419919 -0.01635473067194027 -0.1556724861463201) (0.2144311583266322 0.1583760834915812 0.1166938006509273) (0.006751799774787116 -0.08369943931302318 -0.7787644154200059) (-0.02053015986858281 0.03378101134119132 0.07711037017039614) (-0.2921215746281089 -0.132345645000697 0.07806161284216268) (0.1650642785705947 -0.1157614618280702 -0.09614880125384276) (-0.01164349813128203 0.05561219716002216 0.03960236138262259) (-0.9419464124892564 -3.020245922451207 -1.507091898524174) (-0.02676186456886482 0.1423179533958776 0.1753670741329831) (-0.5632622483323754 -0.7583744647083182 -0.09277599562315821) (-0.7634757449210099 0.1371181705549783 0.5730997415551461) (-0.2947933801361418 -0.07326300318804832 -0.1586675389342642) (0.0852863770032069 -1.017247990933868 -0.1180325869916133) (0.2077662472221653 -0.7665885997175592 -0.1417919583100541) (6.825030518294868 18.01783196078796 -48.29089466465798) (-0.1950073041335869 -0.3208863429031601 0.2412761135715766) (-2.1292043988034 -7.893365853031867 2.777184881185939) (-0.09400583439079199 0.4023831146415727 -0.1604461935340609) (-0.2227557883860448 -0.2871038140447233 -0.1007286859971456) (1.484813537152305 2.013095646674209 1.118373856690873) (0.002362419197193585 0.01226047817357345 -0.008909317088788071) (0.4328991100468154 0.2809941055307947 -0.5626942577117037) (-3.558719564508717 0.3111494891451327 1.488682724423793) (-0.009304889154017171 -0.1681354432173105 -0.1952568739660445) (-0.4788513247484284 0.6953650557142144 0.2344232007838267) (-0.2039242597669748 -0.2947859555839924 0.2213493543599529) (0.4518980129806408 0.5710776370299121 -0.6223976703167569) (0.05076036160866132 -0.1205290805536246 0.004760511490649424) (-0.117757433393427 0.2975100004667771 -0.1861321716033238) (-0.04501539811347598 0.0152153801747109 -0.04130100164295837) (0.01056537044030451 0.06984813636706162 0.01102085447395233) (0.003976325069669634 -0.009330989793330836 -0.01303742655996019) (-0.01003124374150473 0.02928574759613115 -0.00641325693791997) (-0.03420515113673667 -0.02337884893303263 0.04964273270166098) (0.05653174394003872 0.02354944631917469 0.01560500701529136) (0.02650668309961931 0.0006961451666381707 -0.005957806891491911) (-0.02619281922532448 0.04816640824106521 -0.006877687006101587) (0.0826135977880256 -0.03951914190115779 0.1537540568988303) (-0.1317035852045436 0.02416668337357621 -0.08938151416721861) (-0.05124331393720076 0.03804341875285085 0.003407043795373022) (0.1279002294995057 -0.001906507170137173 0.0445050899261224) (-0.01495695150735707 0.00987577734264861 -0.01004957682811962) (-0.01499992170810769 -0.02715074416373166 0.035301901432251) (-0.03927451212608409 -0.02692675347052961 -0.06287379345776212) (-0.06256125152948613 0.02647055277752462 -0.05697227680088976) (0.0411718426803756 0.02278202388777108 0.0829970385284349) (-0.03035175086439565 0.03113056161987549 0.02488245537020414) (0.01412786542941008 -0.5213254005827387 -0.1557890051418898) (-0.02117088808990945 0.03901324556943467 0.1633357981014823) (0.4808457405012904 0.02859109465350775 0.03453275063163861) (-0.8072938962317169 0.4116358666631105 0.1371712286300456) (0.103105646732971 0.1488396034831968 -0.1253101299340696) (0.3903234742793339 0.2842176973560656 -0.3148033214918082) (-0.02476203990219031 0.01456494914490587 0.04855690768148751) (0.001858381499184117 -0.02368300905428701 0.002445011863799008) (-0.02719729947290933 0.01669828436375161 -0.005026787960929043) (1.750215815613048 -0.1422483265981161 -0.7034579388723439) (-0.1015525205642671 -0.05894532693926723 0.03144027697726666) (0.6128331936362075 0.2386124548126875 0.01496385332719009) (-0.1286516494921002 0.3512667299540938 -0.2024375148613644) (-0.4025852605322638 3.031681386181203 -1.049182894960992) (0.425890579142676 -0.9068684162793921 -0.8287693556540912) (-2.934327900168202 59.63626040897083 -12.82941823257999) (-0.3879596270243814 -0.2247106606054002 -0.04051496087953761) (1.023055502002973 -56.38279631093283 -8.252698122561668) (0.03873737290437737 -0.05530400018225837 0.003821714746226046) (-0.03117617544131633 0.0550736754479299 -0.02305640990985958) (0.1594950686394157 0.8877448715581844 -0.6210235862811107) (0.2354143630860187 0.4320172108727384 -0.2559624235401352) (-0.781953787646321 -4.786695552026689 -12.06140261604517) (-0.8090121470716624 -62.05617811366871 2.861820205341257) (2.242541519070006 -67.64327984135625 -13.76098647107577) (-0.1486978723730113 0.006844654541540277 -0.1026328465665542) (0.6741361163107873 -5.739152199681377 7.037527780453903) (-11.72162871688147 -6.130548366235494 -2.021423732505514) (0.3358029253835342 0.07231920894039767 -0.54078206380127) (0.5510390731418517 -0.6615929269810431 -0.426102468253978) (1.745885586143978 1.921244289725784 -2.414129745953212) (-0.1484059016173164 1.174891672298463 -0.2988953606893737) (0.03774709246343505 1.138981395765134 -2.057313756311378) (-3.491581436189507 2.949999927033577 -4.63129618966228) (-0.09046649370199156 0.0134772686174747 0.07343761349156054) (-0.1508359074388805 0.0343091425049241 0.06572824863784121) (0.1468944587447013 -0.02644269290892963 0.05695398570509737) (0.4264563151180338 -0.007606593267275197 -0.3712081113812528) (-1.256251721316706 -1.37846780291427 -2.223451047393194) (0.8355776598351579 -0.1217556866511671 0.07038505777912021) (0.274088463131769 -0.342871826341085 0.1332917000087033) (0.7935112173867772 2.348000213570354 0.8954600652366466) (-2.054755826525966 -0.1179056283771818 -3.801981252940314) (-0.4988298686628924 -0.1229871235488939 0.3733773726981641) (8.437770233047093 6.199516248434758 2.179558488458955) (0.4663786174480844 -10.1614765981098 -5.588538805763097) (11.25618804899355 18.84886820252629 -12.24607043077753) (-0.3091102478868006 -0.1462368420240341 0.03936659474833436) (-0.4237957761504281 0.4882857644828598 -0.4007578277195117) (-0.08121055607992669 -0.04409480878341519 0.01605178943136179) (0.9831875287777099 -0.0802074789555853 -0.6734157362457176) (0.2270531843856098 0.2645189599238172 -0.8380284819857653) (0.5122677636657987 -0.4475650868931629 -0.04784441722873498) (0.1958113851082366 0.1059153717398501 -0.5757039974712735) (-1.86985816735839 -12.11579427359942 -12.78349352298453) (-1.755918402224971 -51.10952770287901 6.246974282169688) (-0.477291879334144 -0.3790659856636936 -3.509176829686425) (0.6152536439492142 0.04297684847687882 -0.02607914860489155) (-0.5405803604910491 0.1599619211993096 0.2756719818986598) (-0.4982483699595541 0.1426734523912132 -0.3165779831057075) (1.002616990318441 -0.4199957124322705 -0.4608370963900547) (0.1748388568555971 0.01489039337448108 -5.118198848543988) (0.231792999401647 0.8275626892250215 -0.1367440021180596) (0.2726297242990939 -0.003715834482847645 -0.4321923501941031) (-0.135128556059451 0.0913551486180196 -0.0244745660685069) (0.4088993521277779 -0.0426463713604233 -0.5153014511966271) (2.110600898739631 -0.494566244380205 -1.049084510812393) (-0.9332450619444219 -4.373021435754739 -0.7567332673447875) (-0.8727539542611709 0.3216274319674961 0.1962491305405367) (-0.6333725000554038 -0.05193059453205831 0.1088620134575913) (-0.2466316605047035 -0.3716384700682356 -0.0542392661585846) (0.5147139617242047 0.7204789365095818 -0.2864649545685959) (-0.00263113226255085 -0.2319037537105086 -0.396158455692122) (-0.07347069464943055 0.07363067737944831 -0.06625253352423423) (-0.3100850792544371 0.1461426461087597 -0.1104714475619691) (-0.1845263143720521 0.1494432342276131 -0.01359013236618994) (0.3616204033203765 0.1713836876835512 0.06101301567614442) (-0.1100693999213369 -0.006166485763157939 0.3143220229567959) (-0.1877145638473881 0.5480221895956614 1.017766118635739) (-0.4671840317240903 0.1736437612175069 -0.1421162347712533) (0.0916326130663577 0.1840699498383858 0.1279050322461128) (1.599492330668956 4.203963272726022 -1.804460951996016) (1.590791434247085 2.25889065679371 -0.7032734318644095) (-0.1905549147671112 0.3075606712461126 -0.3882069132705325) (-0.4953309735872698 -0.04890997377881184 -0.1460410112045772) (0.01347853253683444 0.1280466513530519 -0.0244902894570502) (-0.1156877911523712 0.03439536517678627 -0.007812320924982977) (0.009418889326171524 -0.01671720682476545 0.06672555291903688) (0.01944025455349948 0.01916739382805418 -0.01144438202859671) (2.781829588401365 9.445709847262155 5.451970308845846) (3.170657964449659 9.894509928024315 -5.465229771615246) (-0.1670463586969655 -0.119187796505786 0.1903747383204568) (1.480996918043959 -0.1142351795006803 0.4382467497936567) (0.1692422264751537 -0.1538732009288663 -0.3798673961414529) (2.548999322940316 15.47265930595113 -2.218446642692481) (-0.04346964784765606 -0.005613743271478274 -0.01135020949896279) (0.01263203424678178 -0.01242702827827749 0.005496192239732208) (0.112196052085525 39.41174785286543 2.10351359011932) (-3.906181159159725 -4.8801062455801 -7.325906851702094) (-0.2069091916597027 0.1304311078199209 -1.015651707045909) (-0.262965100113744 -7.58326398640645 0.6305936591714745) (1.20870837689335 -10.41949053816055 -4.319745808992295) (3.498965540305446 -18.21644302033898 -2.681866438585613) (-0.620137128682783 -26.92113834586452 -2.991766496746495) (-0.6169226138636907 0.3339502658697778 -10.01632468373884) (-1.775366054666466 -4.683771352922927 10.41750516572763) (0.1825663725732298 -0.5090303700318873 0.2576031435156318) (-1.451361201864226 -3.517998036206134 -3.021155199945593) (0.1371033316852893 -1.202942300517283 -0.2731890031012456) (3.165327406241977 18.72486250714854 0.3971675207359011) (1.27057764832864 15.57418337057763 -0.3842995449687647) (-0.5106084793165682 1.481478613104993 0.1258443714470975) (-0.1213490842153496 0.7066949328630412 -0.1473664666584716) (-1.408578353001833 1.706937788084955 -23.25239539587885) (1.904550454483372 1.24492282915336 6.607974845788532) (-0.01078641934973386 0.003440695126101135 0.0001074526898231388) (0.6168142641279029 0.1253813302376764 -0.272120381809547) (0.02914375204171519 0.01783997734759283 0.006377848049798178) (0.8788874743068071 -0.1553608411815421 -0.1245859411805537) (0.8499748654214737 -0.003919307182872478 -0.4027823843332365) (0.6304854219021939 1.404847361690069 2.500632650789932) (0.006290728066741913 -2.274327438544189 -1.457525201352873) (0.1060542029216494 0.1140133409959196 0.09781958536826142) (0.01751426950418519 -0.01118284958802218 0.09866313562937198) (-0.1040842357009417 0.04359567032924756 0.0442627428806763) (0.01058917581581727 0.154004266127239 -0.04028229815577875) (0.1308258273742706 0.05134044888359061 -0.1289098020007688) (0.6238312185164346 -0.01825369348387047 -0.09458810954991727) (0.05957903540030002 0.04925808828031683 -0.5314414723911316) (0.3655864512145541 17.33418308874642 -5.685770956801202) (-0.4241737763165095 -5.48579805113787 -1.287390017244342) (-0.05162195088492363 -0.2613231449123425 -0.04947531472932507) (0.03807822084413302 -0.003032209802561431 -0.0505882738779834) (0.09691446686812635 0.04169310952350253 -0.01493100936588335) (0.07511287023665782 0.02630946208049671 0.0154240828850491) (0.03582232919648041 0.08531055005019061 -0.0324063095446691) (0.04352330312661704 0.05829600575695999 -0.008475946240424206) (-0.8894727328842121 12.31861373081128 3.484826146301387) (0.386841948206409 1.856438733655742 -0.7292836699493831) (0.02589845740274326 0.03274968468654448 -5.197762037179324) (0.1579983679511316 0.1328533218730066 -5.134749381956235) (0.2701948367706891 -0.3343167185970645 0.06152538819685598) (1.009924149812664 -0.04601028755664843 0.5180328201795297) (-0.7107596717546366 0.3054946469766312 -0.03575420702431575) (-0.0001751179687176376 -0.001690948984857348 0.02072338441034994) (-0.03145102794881905 -0.02992812103883244 0.0396279716064152) (0.09063760970812018 0.03968554390908827 0.04016974708771019) (-0.4779607906009754 1.186071470615012 -0.225173634804153) (0.6224414808674266 8.43181875719384 -0.3597172364636175) (0.598014942574029 4.320465035696971 -1.421789859416199) (8.53258826673857 -1.203698305088941 12.17618976462643) (1.868290498146273 2.123323315166642 -3.86705929177538) (-0.6404984790992417 1.273882624617491 -2.007461443674763) (1.551373325971029 4.017899342448412 -4.5288709743804) (-0.6177476718948645 -1.0855555244246 -1.366804877324884) (0.1359815336247103 -2.802130990569899 -4.60540640822407) (0.2160669613372707 -0.9075638867861962 -3.79542855357145) (1.189996339878341 5.226438193820864 3.139539959292551) (-1.007375876460673 -0.1841740943826182 -0.6256487642424718) (-0.5416513514506062 0.04878645974808005 0.221032348591207) (1.2734407767832 1.841154501942277 0.7452042743155854) (-0.7514085846570628 42.36956852091138 -1.127493380266424) (0.4497784494293435 1.066803408981188 -2.745561260965732) (-0.4970813515748128 -0.1225565833993715 -2.122590756942172) (0.7024145170755163 1.025136256497603 -0.7288277704458905) (-1.142101054432941 -18.46514672343594 3.7071033081539) (0.8397566396030459 -4.241626969361456 1.297841108334917) (1.059680514484064 -10.99436206435596 -3.203855588181755) (3.984385449927724 -7.308025255083042 -5.534334458019742) (0.3601137524438421 9.319357775149198 -4.897371922851699) (-5.324982985669012 1.294346974670562 -2.197586881769622) (-0.1246012043423519 -0.1369779684647538 -0.05360757523046855) (0.09489881497761649 0.07579325912504419 -0.0803765284751593) (-0.2427681246878925 0.2506498138173663 0.09199115148453468) (0.4389400329543341 0.758168745191677 0.02295592646124486) (0.08820576157902205 -0.3349885127522342 -0.1732363245230522) (-1.611677084447716 7.710541433446796 -0.3254885684013282) (0.8628210814012947 9.918056144596479 3.432951053967856) (4.492889925528239 12.31140721768204 -0.9987693701244376) (-2.272047642692146 8.468751399839892 -0.476287846055754) (1.85817862114226 1.050004524637079 -0.6710152134800893) (-0.08661278515659361 -0.1563260599884942 0.07117956862083556) (-13.41185275286464 3.23490180007262 7.934455333218546) (0.02473154938467528 0.01601015419141728 -0.001918003994261839) (-13.83775269000724 3.295248002409997 11.15115246492731) (0.3383474583874048 0.002211224101635694 0.4458021522015624) (0.3942282597215853 0.1834114201173253 -0.3594161074640061) (0.9675127893444513 0.3800958612714019 -0.2185119132454114) (-6.611927210394663 -8.013030204515903 -1.877106015621247) (-1.455505271969683 -0.3907343662130586 -0.9739275428647154) (-0.6237486905638294 0.3247502621769441 0.2554717501486576) (5.080824486383499 -1.063942518842559 -1.494102235025502) (-0.26296720165824 -0.2888620255511029 0.1519945489335168) (-0.1619846340387431 0.04567955519007154 -4.245701865394427) (-0.9105808670455853 -0.2160021943098561 0.3104171659370003) (0.00326627205894963 -0.01252002485991784 0.007662877941608136) (-0.4544508314760672 -0.5437833018930358 0.1714219677298179) (-0.04735345950845127 0.2489541125537342 -0.07279214471890705) (0.145666823843332 -0.03610907080747175 0.003540323362844245) (-0.04696149958115024 -0.07563560683385581 0.05712110655055803) (0.1749894024269068 0.1441059019057172 -0.08173450795405675) (-0.2434848883207117 1.431349325952323 0.1863331033201163) (0.1121835714746606 0.05953252252671715 -0.08086765171326579) (-0.6508920069806061 0.1355811990717227 -0.06593649146078331) (-0.002231357044807689 0.2459778711321067 -1.144658859613956) (-0.03491111078547737 -0.02078920859110332 0.04630651177513888) (0.2597557649933083 0.1379680783808404 0.2706516270649997) (0.00986810294457531 -0.4106074607853363 0.2193929177490589) (-0.1079677924596695 -0.0044882452661512 -5.437783054656427) (-0.6441588775066827 -0.02963953032597284 0.2011892645418816) (-0.1413904527320303 -0.006023549405034342 0.0261809557402296) (0.01261981748740406 -0.01900106441837171 -0.04234369095960459) (0.01275424591078009 -0.005754972154800878 -0.08497041059399904) (-0.05606647277153201 -0.06196936698189678 -0.09407890644282554) (0.4993152851808508 0.1277484274230152 -0.03086579831388908) (0.1045182259767562 0.0479136854374768 0.4990565066022814) (0.9055348483900515 -0.1608876807071805 0.255360138541337) (1.777347345794666 -0.1270895890772241 -0.3091839087629715) (-0.004217332120997393 0.01932870690377874 -0.08288857057789317) (-0.07157791159093529 0.3411754489680551 -7.289147647713398) (2.725693738291227 3.343477865963912 -0.7522230600214908) (0.1195160662652881 -0.03934791183615515 -0.008846518285598279) (-1.086668548226409 -2.59716423566881 -2.2313483168471) (-1.868213677432291 5.822023662696518 23.0188405121022) (0.3108695375933708 0.1935588524946506 -0.02538662920431117) (0.2436172665577588 0.7322966202207206 -5.197054194349845) (0.5400886879606992 1.171355437827619 -0.3152520260067923) (0.007633745520427601 0.01678285987412779 0.005645580625628237) (-0.7792318518402501 2.62924961336071 0.5266475996354653) (0.001550330046831128 -0.005993360065861666 -0.05142989940884372) (0.3503306135335025 -0.2782812578263989 0.0992735845558671) (-0.008805536295895616 0.7586586667538767 -0.5248143258990047) (8.068215896670168 9.637061709390505 1.724497851650955) (5.507703500010566 1.103206290725541 5.158063484521564) (-2.075938124682559 3.206820038538922 -3.337954848839581) (1.30436774182444 -0.1206939364522553 -0.04664407457365954) (4.253647945713257 6.525526647826172 9.718121266405618) (-0.2874648989555998 -0.415372060832387 -0.2560766249689798) (-0.07742386665876247 0.05750035932492305 0.008650786345956646) (0.2335770530820984 0.02875333776512128 0.2312869522038018) (0.2932467836727861 0.232726061523372 -0.2361948239064763) (6.346402193775153 -10.28291058178356 1.574588771545598) (-0.4359324225267046 -40.12015850293684 2.905223947822485) (2.995923141616773 -0.920413125643901 -2.312022014609636) (0.05629008413341996 -11.44196982025132 -0.245925247251325) (-2.033562701005084 -43.93396144316724 -4.854005485574865) (-1.320192235462276 -5.454709502028413 2.914676963929357) (0.2660353631632815 -0.03204957547370507 0.02428219821283505) (-2.065249849333059 -3.539159106914335 -2.467086576538002) (4.63702369370414 -9.775957590376416 -4.104432216163182) (-0.9341927666355827 0.5397480654708697 -0.6720618645444018) (1.881836298325055 -12.44063372623465 -1.105025783210078) (2.458136074599651 -5.442032795711842 -3.450737180174631) (-0.04618267909127993 -0.281716631039314 0.1759078923250894) (-1.571132344284367 -0.6146759695076306 -0.371951445461555) (8.83154367135154 -0.4821422667569246 5.420749575989383) (-33.77290893896825 44.60972893862613 -17.65257663416293) (0.1016557450162746 -2.724449976557431 -3.00558499997828) (-8.663849039568614 -43.93609207981404 3.987085256994678) (1.310063153808952 -6.306372383402882 -1.166767432477863) (0.05511666643368529 -0.02204355540246914 0.1516652425116364) (-0.4228175534403033 -4.450805271438655 -2.925347002236087) (-2.109342590863804 -39.42009862622595 -0.6263814361550909) (-8.128468972561418 -51.79460494027317 3.424910288736591) (-1.086835020172483 0.4276394943484088 0.06863882872805285) (7.085767932582941 -4.41423450836336 5.156565565979204) (-2.902948094603784 -1.32922383343539 -8.582672004110936) (0.8545890128719389 -4.560163396272902 -3.414269796470705) (0.152157280574129 -0.1043596851763759 -0.08519120812198142) (-0.9832039556248916 6.910377225801978 -0.606803616846573) (-74.49819875020745 10.58946572774927 -14.01190449506671) (0.4508052790339505 -41.90626478909519 -26.12746410295809) (-1.795265877288004 1.074906352868895 7.412723191893996) (-43.60856785409361 -17.22976982463016 -8.783117189314845) (2.587421026077761 -38.88136321384466 0.8983340250163472) (-0.02821871386069497 -2.52930611751636 -0.06453395380776805) (-7.103708264746082 -8.228706148520402 -2.899372261577271) (4.467497947103505 -55.15313362901886 -1.01170682923358) (1.066549465485191 -3.312498631278958 -2.991804282119821) (4.772447620465096 8.324848567835875 -3.108105341853429) (-0.4015406067357855 0.1457620369851634 -0.1945233758403962) (-0.2379403484784107 0.1980773352362893 -0.1231733187907507) (-0.2108807192433873 0.2028325508180293 -0.5104716815619648) (0.1628021719633758 -0.07990395330895544 -4.248219813496199) (1.320239826753997 10.05299603848842 -4.185280458951314) (-0.09030655719359831 0.2217711046322858 -0.2329606615235683) (2.877244898018793 5.103809554753989 -3.945572186218827) (-1.493578485913915 -0.3740731191515713 -2.101738708995857) (-0.03025519861002122 -0.06586192191836555 -0.08091975585366151) (-0.6923188740976918 7.912481118348933 -0.4219827866629034) (-0.1643513999327854 0.4375425191958832 0.0003567197701632163) (-0.7412737254347396 0.9045961042404537 0.3681841013824019) (4.510515313197256 3.825399579904616 -1.140243072413672) (-4.317377784858226 -36.11899152163306 -6.270748759158863) (-5.353047103902149 -31.6279411095123 -13.14466737637476) (-37.18152459959217 29.75405647070944 -71.09391514646829) (-2.193923221090414 -6.881563672458151 -1.622735644401529) (0.4063140057688144 -58.61428400107263 10.8253780460499) (-0.2038411878190504 -1.931948788804296 0.04613922499819267) (-1.032155461062358 -5.833793999798024 1.616578801630094) (0.05434550345345397 0.002444810796344024 -5.669163889580422) (-0.02616793028441704 0.1356716447309344 -5.505046918291071) (2.031812896016158 -7.793504429143257 4.741002724359782) (-0.82306745560706 0.7698006502946526 -1.71287713772035) (-0.01349157311640307 -4.117852819056777 0.5034627825997087) (-1.969377632115866 -8.140389959762452 -0.8605228632479114) (-0.2732250420639833 0.481258799891303 -0.6245774441527703) (1.849524299725177 -39.68590279701333 -4.678079702082107) (-4.074584144728536 -34.43527917424686 3.062872725746457) (1.057210044970133 7.442465725034391 -2.547466279270351) (1.490238286908433 4.214657095691214 -0.7496241333868283) (-3.057301890907264 -58.2964853972241 -1.706528180569534) (1.576304246342138 -54.89091560477459 -2.666245100953511) (-0.3293164298632926 0.2806939654434936 0.7173496427142689) (1.500743351817662 -0.1874331627634777 0.2595925864861628) (0.9816440548868873 2.430076435866011 0.3815960588385811) (-4.690649133228396 -11.52360380338778 -2.519668735528741) (-1.554105213308034 -12.5321417804565 -5.980992086701828) (-0.3782282888014556 2.052709597683027 0.8206861816057637) (1.470072442846999 1.761303295711147 -19.51550696034907) (0.4681436348837928 -0.346430547975605 0.1135740403930072) (-0.08266934447805371 0.0334424970972002 -0.1474066233279598) (-1.524070281192091 -4.689206984220331 26.68325321429041) (-0.2755371034325128 -9.962257234386195 0.6816584507983362) (-12.8129394764896 -23.68598445566743 13.41162522170492) (0.508125446888529 0.4734825142823101 -1.18840733543613) (0.6239962506954666 -11.20510724069221 -0.6604014374546858) (-3.161234868586879 -7.505964281171281 -10.52552592862441) (-3.160566741597874 -7.470060819860922 -1.860560379180555) (-1.070563197668136 -6.893927959955809 -2.549997198752576) (-0.7166938483334155 -9.867262801545541 0.8416745227074786) (-0.9593698254756987 -60.56378063314379 2.456104446418007) (0.3042202605966461 -0.3005977072832455 -0.06085370241675936) (4.777508698651607 -1.287154965485405 2.849097793205354) (9.111317232725243 -5.550046669465035 -4.279994447924967) (0.1794842956027759 0.6953722123155337 0.01108206985676952) (0.0421757738601105 0.3873763042433109 -0.008391595913188304) (3.681720828114027 10.93420141593445 -2.654069000208513) (-2.330616718425296 41.3399076735033 -7.871267958353627) (0.04823740649539904 -0.01702434873919844 -0.0758719723944271) (0.04119443931342237 0.01543295728762202 0.03688210032504038) (3.547967571352602 4.263093804377592 -2.295289872753986) (-2.656139835457338 12.79385356403844 -1.016747418454163) (0.5371093086295442 -0.6562116051951774 -4.643048985593461) (-0.2753532587869371 0.2491252182683867 -2.287213421449485) (-0.03437438274736104 -0.2688012408211853 0.1000111149336626) (-0.2991242534134159 7.795574631141408 -3.09298821003304) (-1.261741022953188 0.3709833152905988 0.5438540268051294) (-1.592458881898321 4.122847582229984 -0.09119930105098134) (-1.828585571568717 29.56690155139508 2.598133868012002) (-0.01640665447862701 -0.02718036942528251 -0.005582224658754726) (0.4815459971432057 0.6676034348660745 -6.442890986972568) (0.03539079538996767 -0.07559362566384194 0.002508712563704612) (-2.058908815797758 13.21988589023166 -3.710398739633244) (-2.821063751643278 38.38086248526724 2.464682053039038) (-0.08574746236130359 0.03589188780844776 0.214152674411509) (0.03732787988829216 0.004059874235473584 -0.03423130893934376) (-0.006147734183950739 0.04323649742433808 -0.0287603328818111) (-2.555328669212669 2.396393746046704 4.59877939055418) (-1.411446715937753 -0.6178831677830716 0.07290144860061099) (2.406114822089819 10.76077892955703 -4.633757889280601) (-1.202849551207594 6.479354443311256 1.267648117062698) (0.4540689916709839 5.571661320909958 -0.299079386486607) (1.284404117269817 26.29329024087192 -3.43290033827569) (2.607440577935626 2.103475072800328 -0.2527105137309891) (2.451946429422527 8.042765371861472 -8.848314588858052) (5.583086906495387 -16.49175861772699 8.378674552041376) (-24.53104319128547 4.74428544061359 -26.9594728492368) (1.975642415016959 -48.34627168741692 -5.424820846199256) (-6.280501997243941 -7.272322017727115 2.170470820468114) (0.2668348504864433 8.1936683012191 -7.734326354476311) (10.46486601139315 12.87185480768168 -14.71790518610756) (-0.7981888693995168 2.904303664304432 -4.357231067830126) (3.855212072048869 -7.965221287716512 -0.03334747345187261) (-3.999551160812327 -9.471410904908202 17.84291727352167) (-1.533010752514088 47.08503021547989 0.1716502230767282) (3.251612148938373 59.82061174317154 10.29900995551596) (0.08648145983972237 3.079648652403146 -0.154154215246523) (0.06573046996239812 -0.1487701792476274 0.00184825433558028) (-0.03754045459774406 0.002458981441190444 0.1933601535292896) (-0.01097151575624712 -0.5062133767986433 0.06409885099703022) (0.4977983314049595 -0.4808913248999241 -1.289878037720435) (6.188809545791274 8.619113847499733 -3.203768359904919) (0.2316424589242536 6.708018476564357 23.98025971333017) (-80.55888745832688 33.68237778262235 25.45510888316954) (-1.583706236496733 -1.738217108009941 0.6068494659784069) (4.63944844844616 -19.83209375912416 -2.826137870140099) (5.962929596989047 17.29047014416058 -17.56977940564183) (7.53453781868272 7.290609964203467 3.239018768671579) (8.779431163101727 -16.83973901845754 -18.94502563536359) (0.6066220831471472 5.19408356185489 -3.463872189684816) (0.1644512981061592 -0.1892812444858649 0.003021887027823564) (1.801180734574531 3.967205567149681 3.963935853194252) (6.927670132536701 4.873532839850537 2.670630335638418) (9.22332768874355 59.23275182808824 -14.94084147372394) (5.257710832418671 0.8207312600058101 5.022130343748286) (0.5373965971428609 -0.09937762832321093 0.8707767277841072) (0.04524019533587145 -0.07940877434980187 0.01997998612209378) (0.4426135162714538 8.777866295734352 2.681254453548769) (0.1068638151139712 0.3251319182850105 -4.126754449463077) (0.1228238275976796 0.1063278161865581 -0.1799295309824763) (0.09381310303676682 0.890673361265514 -0.401129013365338) (-0.5225528037929099 -0.1874109510065446 -0.2467011956385629) (-0.04199767282953096 0.04518492475450459 0.03322637335848502) (2.782703030236628 0.3688211468938432 -4.721341277255785) (-1.172575036551265 -1.619086713137785 -4.855924573020867) (0.116393887254574 0.06192048335143677 0.05378637380964364) (7.276175064517822 13.47000910111889 11.20716692215911) (0.04807934963052855 -0.1057135667914066 0.0373880862165203) (0.04847625614338597 0.2626359672133544 -0.165522642492322) (-2.260745948317501 4.494547514829997 -4.482934579736075) (0.4825090032604521 0.1179405528032468 -4.835758121665973) (0.03162676757504168 0.04335839821077424 -0.03157176335902549) (0.05262237647651063 2.514090358851856 -1.103183390992253) (0.287577015331977 7.528882989855957 -5.579067748548842) (-1.941296959943689 1.852068076241436 1.28928159183986) (1.68903190037265 -0.2683839322422744 0.02066063252662949) (-3.38649617612754 -6.08372617290634 -3.330219659345811) (-3.185143875353365 -3.774083755840312 -4.383566754717537) (1.616961982961639 15.72748989662765 -4.14835515634334) (-2.458857748009279 8.08513136810911 -3.309115728114788) (14.58581465601367 24.41603454904645 -36.08099943531307) (-1.112466885747915 -4.510342077351229 -37.6957034045634) (4.744970695009381 6.704362891687959 -9.248568996482989) (-0.1118840343190124 -3.315848792240316 2.731116288379258) (1.604001987660355 -1.997869211280229 -17.95091439492875) (-0.6025675308635027 -6.821280856154999 1.549659757895349) (6.449343236126161 18.92448528474354 7.337531795839746) (0.4446347043112651 0.009862281069701745 0.2220897262230742) (2.754818368758789 -7.109822976648054 6.487368039202893) (-1.250395946371411 7.25043501803665 -6.079272793591113) (6.296127655885045 13.41085026262173 15.96513209161626) (2.669842415096418 3.429485035002219 5.180452317711074) (1.259044389437251 2.388734886811485 -0.7154165150003262) (-1.486166820949494 5.603406205539413 0.5382369906355761) (-4.097457652163038 -5.769472720623885 3.926815531357958) (3.708264111970189 5.251518823059302 0.7132300544830503) (1.792383909111371 3.286645521569002 24.24316851823159) (0.002033610999275737 -5.216123918219846 26.45733019160831) (2.376558563298042 2.830337334638595 -1.220993442471391) (0.01221868937942616 1.801443537045005 3.248605453017048) (0.02104587646597632 0.001310915516961386 0.1210979353157598) (-6.817368996994868 -2.071309022223643 3.17368476001939) (2.328025415234538 0.07696823782640685 -0.7625168569860694) (2.385559777119922 -1.199787719455584 0.01424598429675389) (-0.08892645583652733 0.1700587176217422 -0.3267406117340415) (-0.4842301660701476 2.863345548601909 0.1147443067631996) (-1.359073070265446 -4.789516227007598 -6.159934982273819) (-2.196276868649733 7.955649694304707 2.611569512595177) (2.113611008498713 -0.5389365343184787 -0.2123527957389845) (-2.398726006086791 -0.1533272484026401 -0.8497946257416871) (-3.250588508265047 -2.944456786749891 1.938726795882702) (3.109795024550651 0.2566873973900345 3.888203574664431) (-5.701659581325318 -0.8844665325759312 3.936283087385967) (-3.729885550613811 -7.040652780165525 28.27455679839973) (6.033459320461871 7.281917559348321 1.091286134221941) (0.1354668529100696 -0.1272405953300148 -0.01181047034368495) (3.77192192227071 10.15771066143762 -1.346714354439343) (-0.09027152787707104 1.016909937805426 -0.948702149703972) (0.009495219979822063 0.04744233395259557 -0.1504457395083621) (-2.41156185340061 8.556364402907434 1.662709806360195) (-0.3848761733030288 -0.2899848498888352 0.4097513078923137) (2.541443860628902 8.112347895971055 3.793505419505786) (1.61303199711945 7.157812984357816 -1.932493366255251) (-2.208543940370707 -0.270765013739493 0.1722932992980512) (7.602027529314173 11.75242724578045 3.772307277873518) (3.493342815727961 3.769409733825278 6.397523115746216) (3.865556402513707 9.542435997674463 2.974661320887466) (0.222986142821209 -4.198824434923281 0.7707452044122447) (0.7905141767804562 4.957207501432644 3.307841262890796) (2.320100038002803 2.920631218303538 -1.249807960841276) (-0.4009516443247969 -3.452067734289599 0.7358540545340569) (-2.522771955802293 1.358628100676324 -5.19996539027445) (5.919633870862735 5.037208952899485 0.9707565290749407) (-4.691848300676057 11.60384162821832 -27.85081193693824) (0.6206901544262399 -0.5570431253378618 -1.920502638362802) (-0.04071617349842666 0.01861139649370042 0.01377418330573753) (0.09947790559931735 -2.504060446424237 0.8316592648397325) (0.6541579105588538 0.2866996876739822 -0.2052713719518132) (0.4474601862865952 0.08759148010736463 -0.3835895334653118) (-0.2682919413681883 -0.08978068088756583 -0.1011416922269886) (0.1996864356379922 0.2552225698341834 -0.2465350181608036) (-2.419958968531015 -8.959422120729162 -1.328276483062545) (-0.1140894670102107 0.07317822791607709 -0.1485666424855497) (-1.254970520674484 8.371433536977893 6.144646426619085) (0.03160067591425209 0.00822385083939286 0.03433226800318941) (-1.021542833068646 10.13043386081393 8.093633903640328) (0.03198962472532825 -0.2475302594219449 -0.1062394929123845) (1.760640613210443 8.001210516762459 0.2459746029600474) (-0.6465624570114379 0.5944631101005631 -0.06095292513909414) (-0.132765890498471 0.04233527233141809 0.1352784816814248) (0.1322097750332304 -0.01185187978086553 -4.085026768607653) (-0.01818650274663131 -0.1762009058155095 0.07468338092202639) (0.5501097280624634 -0.1691569613220236 0.1164775941845965) (4.470378491710079 -9.560679326312961 -13.40254317831226) (0.1634321923102783 -0.06104221694668713 -0.1194740487143144) (-0.2810252477602174 -0.1398626929400479 -4.487511184636738) (3.544993114315081 6.579637190138091 1.479566428549721) (-0.00391586753498802 -0.01055051517223493 -0.007270327960386129) (0.05458070281090192 -0.02267916043174193 0.007211465231234545) (-0.009726327680287115 -0.001818347017046249 0.01572876419317231) (2.911934001818704 0.562362841189989 6.588699158896844) (0.05122955972698183 -0.1087345097248067 -6.9930787652441) (-0.0321992817493691 0.003166976431403708 -0.1344028919939399) (0.09745482683313966 0.1459550962987563 -7.168495023932683) (0.04877326833615216 -0.006254707517850549 -4.609849943406375) (0.03848794605932158 -0.006216884271446749 -5.971302356759484) (-0.05436973186221186 0.001155078688842667 0.02133871595738418) (0.1939566583644307 -0.4207692347205248 -5.813412593338745) (0.04297356208692008 0.007387512294702891 -0.007337425334434669) (-0.2660712742457834 0.4465383841774862 -0.3023548363376874) (-1.684543343097174 -5.37060589365127 5.035396262404579) (0.2391046544652274 -0.3702043251588121 -0.2355743978593137) (-0.05541556511443541 -0.05725804943387718 -6.19926934097299) (-0.315146437744023 -0.6382662621230125 0.1126644856615613) (-0.01483518536996807 -0.124225783956625 -0.1204810030869849) (-0.771175468294375 -7.611868981203722 -1.719619486470282) (-1.068256266370348 6.339981623788309 0.6422584391273007) (-0.7007519404887423 -3.161595411711414 -2.325756260917611) (0.3174005717846233 11.2566764066245 -6.119250656174687) (-0.2168897996586787 -0.1894499229329276 -0.1560297472472009) (0.700316437432224 12.44105697218712 0.1347520947594018) (-0.8319998976384293 0.4125279834902549 0.1713254377981025) (-0.5181117776029734 14.2005516562034 2.640383477357174) (-1.045002821502568 0.1602551539328386 -1.958227064703015) (-0.1569978855637719 -0.4819864476310982 0.07391543645479215) (-3.065796387753206 0.3927245183195713 2.473206064197565) (-0.01811725002808759 0.01252285798280022 0.02491009359345537) (-0.8906299910235881 -2.147595110694821 1.929027269721536) (-0.1314236307922089 -0.4355099391112958 -0.1182035860612847) (0.2233682707275706 -0.1030476704450666 -0.1260056652136211) (-0.5970974096461216 -0.3444235721432994 -0.1853776763514753) (-0.1625751503164072 -0.2212102137931504 -0.9420309979267576) (-0.2910086058948225 0.0383614935444222 -0.4595620840024758) (1.989895855599917 0.2626175631369444 -0.9481341535543987) (0.3482179566101801 -0.02648867053881254 0.1332547543667215) (0.2355589452586454 1.883457389849059 -0.8435144767543006) (0.9273099060666804 4.593196711162584 -0.4430833698620777) (2.304907525492557 1.064464924052598 5.110912065620116) (1.111387000168945 -0.7857031292052362 -27.94776138461481) (2.174091356075394 6.12998543501301 0.06621032124407861) (-0.8699779803135055 0.1351093431546512 -0.296174914475716) (6.344639449860854 4.858349781749689 -0.9609715777276908) (0.05518872224479063 0.01463376997342748 -5.967134275859164) (0.01038509844412359 0.04326402862997513 0.02310597193725559) (0.04469543369616739 -0.009032135925291663 -5.871909439059326) (0.1193252644759834 0.07927128602848342 -5.145550860821516) (0.02006577793116988 0.1524824011516855 0.002862654348530197) (0.2012238950368075 -0.5380104040562297 -0.005645458707094774) (-0.8146883802494 -0.7471081867607557 -0.2461745036461866) (0.06613056695271084 0.0420496507023948 0.02204359378162713) (-1.303541392669698 -4.482991887893119 2.817298141731135) (0.9847100053636486 -2.995379208500537 1.273546978626302) (-0.0003425122408742421 0.04502817318968615 0.00475774113215853) (0.002366000839379683 0.04112935643369977 -0.0737242417407972) (-1.810371317367687 -3.280059834719588 -4.083791874773945) (-0.1243168352459199 -0.09770845629586436 -5.338648678464695) (-0.05424033086864348 0.06994719028278204 0.02638737425211759) (-0.01520269376711565 -0.02772713349740177 -0.003180989188084323) (-0.08645569724741384 -0.1318846732128935 -0.1122735705509379) (-0.1518532093851256 0.09289858826450191 -0.07375970239849558) (-0.3050873661070613 0.1446869000396196 -0.09567075194077994) (0.1161597168361932 0.1103936317457708 -0.09114165834088155) (0.05530673291107129 -0.03645159425343074 0.09794566193491376) (0.08900373706999103 0.01923327412813592 -0.006227043104507835) (-0.08021616147657343 0.04673571759561935 0.006535796787234942) (0.1060751968119926 -0.0437216403798671 -0.1324562729035406) (1.245766682361719 -8.728047616033379 -4.81499871665887) (-0.2319654331863774 -4.806436614750946 1.024166769836675) (1.836832201474526 4.875093787062481 1.640247632672926) (0.2816235044506463 -0.001955093014639475 -2.515306491261193) (-0.07419423600497951 0.08875020421244294 0.03187230257268928) (1.98108236921413 -6.168111299925064 -1.027498393481439) (-0.05962491950172707 -0.8854697395825609 0.07885127664066541) (0.01181763629008293 -0.09514958959197053 -6.055507638881002) (0.02478089225644997 0.05072015388029295 -0.003237904295493158) (0.3403997055398457 0.5759307040342694 -0.3308457788583271) (0.02404840507513752 -0.0271959882318951 -0.005205599777107869) (-0.04190941952768098 -0.04910006558417976 -0.05658213034762168) (-0.04973461227213843 -1.739609280952353 -1.603233387559211) (0.2132568767565802 4.869364458765501 0.213461419751589) (0.001564377444732666 0.01591957079178707 -0.0154008595916181) (1.240996320886043 9.615027698760429 1.638733803477679) (-1.335925605916694 -6.217481833506696 20.1898908821011) (-0.2651702154325083 6.098602193405919 0.1982586198278995) (-0.7838407675377017 -0.8431553656542634 -0.6436293625718994) (1.608519642470514 8.299172839025115 5.128292633990057) (3.894250732846629 0.7467868946481997 21.15277276499344) (2.658086011608489 10.26411630383895 5.528124313611319) (0.5524218897571276 8.804390464536425 -2.340956817611859) (3.805958786278008 10.14539119121404 0.2567146753645542) (6.463860198015988 7.075979530879914 1.959659592343088) (-3.163344435938244 -9.339116692043566 -5.891464703778349) (0.2088995405866385 14.5183427074378 -4.203562884126613) (-0.5533341984153327 0.06564179627394839 -4.047032507218067) (1.243088964703624 -4.84156952472933 3.918541590645549) (-1.473832889877796 72.69684097095265 -10.78237970379339) (0.06229501609166943 -0.1833216617928212 -0.1166180482557481) (-6.828926904438629 -2.577391581622055 -2.562929521054958) (-6.751092370344249 -11.27478725994205 -44.7302559386592) (0.2433151766288591 -1.224433403596919 1.696799932418607) (8.02752966222473 13.55420612221367 8.776199667941821) (0.1187723897262499 1.329357450216379 -0.6286154215166514) (0.09632812838741511 -17.11370702767859 4.806330625363796) (6.679630047338168 -15.20254300462774 -6.505831525800853) (5.510323175024713 -39.44534957859532 -3.440646026104742) (-1.358892588787719 -4.183633310623707 0.3931429631459199) (-0.05210044403507591 -1.02900020919935 1.194364894931457) (-1.659742205106734 -2.278861247463412 -1.761991607763709) (3.244682248356108 4.521184207609108 -1.050333177608799) (-0.6939724864897722 -8.100264133807425 25.04782069515452) (1.783512942593993 -8.462041620774002 2.776564440979871) (-1.596972068219811 -7.077189946995095 -1.748380984988177) (-2.170731771301269 -11.23024588591462 4.222480822419325) (0.7711083811458421 0.6183538843901979 -1.773620089140481) (0.1799805586932992 -5.313710770107207 0.1002181769280542) (-0.3311823176921064 -10.6908760332491 2.874579435784431) (2.195672447049686 -5.807160210920189 3.849770372588861) (-1.954881573950836 3.90962106757372 -1.901993166677287) (0.552445302450424 -5.575240430146978 -0.7181972030087342) (-2.511478090190935 -5.671485828435618 -1.34678575293345) (0.854712499545068 1.493618959502387 -2.497589296505768) (0.06617787371604911 -0.05189620290688065 0.0113895645976687) (2.081823635105819 2.375835022379641 -0.7286156646014496) (0.435525164858791 -67.09990121830188 2.953289005133965) (1.068142028698276 -0.4771803205309673 0.3582024054321524) (-0.08317633937959362 -0.3038392554149083 -0.3235227645197409) (3.306711930208032 63.82416451104787 4.163967049276265) (-1.78906808350271 0.6834440640380594 -2.077471202724427) (-1.254009049183566 2.16404031666135 -6.496914888879224) (7.361859142074505 -7.167688326476574 10.02433129665623) (4.646155719203683 37.06076064770973 -5.142108184194425) (0.02726230477956978 0.2250120531254895 -5.51896411869405) (1.448443297750518 -0.7950662657004575 -8.907332618437627) (3.432653590993148 4.877322668422437 2.406250296710941) (-3.252514696184716 11.72559446048419 2.87411095368601) (0.252905871430383 -0.1526022078079265 0.2186295554879631) (5.869773160401043 9.901096764987182 0.8312749659632122) (-2.635047537170644 -58.90826505042619 -1.097033785435043) (-0.05026194084783364 2.880532785952488 -5.939537285589386) (-1.923276025323738 -3.131633617555334 -0.5501173282254758) (1.190554449290847 5.310952618102369 -0.6062677117572484) (3.908719356827475 2.003873727827484 13.724563608617) (0.3935761814620844 41.92582937634303 -4.750004449510902) (-6.139545460463362 -41.40111894533378 6.030510027024373) (0.3016650501903789 0.8895560548689988 0.4303924577918108) (-2.676406985722416 4.508888688299845 -4.780514331154158) (-4.313467955358702 -66.14887789271201 5.116418147681747) (-5.467477237978954 -6.926434867653743 -0.9823209836500315) (2.653005496534957 -49.39646967715517 -9.357998575082714) (-0.8840378085533365 -69.19892982447283 1.082398524294076) (1.678287162100916 26.2816624612754 2.083840090189887) (-0.9899685204225035 -37.83852898139312 -5.10515004786008) (-1.670007831271727 -28.72090866946817 2.723681519170714) (11.64969107435799 7.261502686603253 3.150340638411506) (8.233876113910259 22.77770895083313 -5.234885005141539) (1.480151909419678 9.954906710421849 -66.89564090665075) (3.90854068096447 64.50481628890782 11.40776052835088) (-3.401483209553946 8.630636677315545 2.862972662640616) (0.6752896604467784 -1.215013043756024 0.6119941230891028) (2.456615118994353 7.058598499107935 -10.02631907254424) (-6.462251484895073 -2.932001192394458 5.85252074002233) (-1.731006511812541 -43.20651853260004 2.495541417787832) (3.234515347357275 13.1297278597167 -9.10407036975653) (-1.280378650520087 7.013362719919659 4.441925671323737) (8.669999954033049 -53.44294071983035 -3.931993219980049) (-0.3521427507265811 -7.656079051577713 -1.890828113955541) (10.12146242342792 -52.17441059416657 -3.786879242397689) (1.491504197229488 11.06562520814961 -3.973126089672031) (-0.2049015885203812 8.022553797262125 -11.82044730815882) (-1.967770171898584 6.721660478822505 5.154964328234096) (0.03314839353893195 1.946329801314779 1.047934148409933) (0.2450373655516764 -1.207344273846273 -4.367465963029714) (0.02208436584409978 60.39143556675937 -2.774147265418531) (6.143803739058572 84.63032758507161 3.623188322766411) (-3.581419092943984 -58.76475805614979 0.5947692842946624) (0.6376514754388782 0.793860531296364 -1.175926025412576) (0.6853202573413882 2.109393141363701 -6.167076195585878) (-2.357342498021868 -37.60053565515219 2.850684249976812) (-0.9784259319515461 7.393049127704952 -9.234278946518966) (0.1855541676974024 -43.12249723042996 0.07137438824838271) (-0.2132108440859641 -0.0217216435747456 -0.09376140948125661) (0.8417293315638839 1.772669199986111 -0.3284156489393439) (0.7815869124079378 -62.93965520202755 7.993759907091849) (2.210469140266301 3.566603715905949 -2.772542306596777) (-1.652292217699019 55.79824587242489 -1.339963023748835) (0.8600716224537075 -5.135491180279371 0.5593180340300145) (5.095636327408847 -1.679570579256038 5.562728180574164) (-1.602572961157242 -12.13687206983913 -12.04926129343822) (0.9287200221158018 3.433968834382817 0.9190415380657152) (1.461133349576683 6.171084290242281 2.319053837354482) (1.512636807293191 3.632168065415829 3.172100002911744) (-2.690064320832087 6.040218779892216 -3.762479169005282) (1.321456334212248 1.358756981556114 -1.55827853190933) (0.3990668767178481 8.310009688534214 -1.920382539497943) (-3.068614730008214 48.16886205804435 2.137328230664999) (1.968425795763402 23.34552466850578 2.232798124645729) (0.07266529573580999 33.84539782157672 3.493998112931469) (-2.977540255178989 -7.516349319372889 -0.9725225662197092) (1.099320657998345 2.773485472926883 -5.392429936956418) (2.261644181741277 1.866946023227287 -1.527721396596923) (-0.3306957379862598 -9.133724333824944 -8.065481641223048) (0.904524431002701 -1.323241071113484 -0.09889200379453834) (-0.3425341130892674 -6.16894670157214 0.7157013337611127) (0.2733129258618709 -1.9858029882252 0.5676912151244313) (2.642364162117904 1.480553511939132 -2.171259723486247) (-3.541176310813297 -3.394928494548294 -5.375260276122911) (-1.344414683331245 -6.427994185870721 -4.941597409489628) (0.2676833501685416 10.853447008842 3.369962507041626) (-0.6486191825142913 -5.392122220380077 0.9406086585197024) (2.462753962001016 -10.17095306430389 28.21060177576947) (4.435035795006042 31.68636242472194 0.1411537389296065) (-2.299684101513182 -1.106542193347815 0.9577985208735835) (-1.60501234277268 -15.63234529180694 12.24779791319218) (1.21556933324901 -3.829738076075749 -2.143808894403505) (-1.530300673308462 -3.808790921951446 1.908525109754489) (-0.2211045600703788 -0.2194658187118976 0.1952808650744479) (-1.859881548710896 -2.708599104091909 -8.775441516555246) (0.5753126053420015 0.3896255924141143 -0.08371254058658223) (-1.936166871049684 -68.08824713879379 -1.664277634157474) (-4.958265324642449 -51.57361723236408 -2.744355339883041) (0.3948080693247402 -43.79309226913909 0.4282376336645852) (1.944239470112046 -43.67007872488181 -1.345604791041211) (0.235671999321577 -4.755405489761023 2.975650067536706) (4.954885019114609 -6.676092861974197 -3.796105825737128) (-3.217766023153126 -3.593507151872861 2.152068371692985) (2.03650677201515 30.34298465140099 6.160414328355476) (-0.1634892307451392 -6.700727120426453 -4.765001427235271) (-0.9229753020280583 30.13346987115269 1.916440677544335) (3.541679888505048 7.168197697870832 17.87113858000902) (3.069443312411767 2.102080405195027 -5.924573731522472) (3.701204215474651 30.54899360309002 2.161438318901225) (1.460995135425955 54.68252235370785 -14.2885372792978) (0.4458197351432396 2.051173688779941 -5.630196695368628) (-0.7904157558221028 -24.90859027723187 0.04576886912986863) (-3.426648109550607 -1.768548549501134 6.475933715534055) (0.3572417077284329 -2.072435857489444 -2.66142373311575) (0.7256260224859834 -41.00159544973719 3.042263733251716) (0.1572626951863942 -0.3360477868180961 0.01065985789325997) (0.1835800290173934 -3.030727511493251 1.368161354496231) (-1.484311075940145 -2.391506718875457 0.9840340244200487) (-1.201716174248012 0.9469284940472495 -0.0819365088239099) (-1.076487988202533 22.49715644395501 4.030276794212057) (-2.057132053282064 -34.6111755192146 3.884827090238835) (2.019367905864438 5.197660653024255 26.56375161958986) (-0.2872623438925842 -8.725305872618435 -2.568407622892965) (-0.5549231829544577 -0.06209352006649752 -0.2366161172083129) (0.7542043157472017 -5.638792722576077 0.3301385019284945) (-0.1512170579742647 -5.241151935201486 0.8598575187619413) (-1.698167035741655 -24.53831335349484 -0.7330973829151632) (0.007107557472736281 -21.5917454743696 1.881349435565576) (40.86339345612836 56.05240283351235 -85.61290576401365) (-4.726636805196005 6.62428786677944 -3.695852899348549) (-3.736719863213337 -36.55041070472392 -5.096116951944958) (4.86225772454969 -2.355113458359956 -1.438203940841834) (-0.1193468294973718 0.3022511023227477 0.566439587863182) (1.156351269276078 35.11905555084793 -3.208516962891256) (-1.133284299625328 -4.363215966981071 -1.991580531877434) (-0.02399281176474272 -0.07268130967937433 0.01433826919326358) (2.634346337160948 9.924706392656766 -0.05466182390219765) (6.706838926619443 4.485503929177806 -2.881958116365481) (-0.3968193166308937 52.10216345597739 5.842618137146269) (-0.04175189592708396 -0.2335353247203525 0.09547192659843086) (0.3002994192301183 5.292227366871404 -6.613554790037031) (0.7590034443765513 4.898564865841019 1.618018361427141) (0.01485358405862115 0.04120855645398512 -0.02011364831219295) (-5.879646230359481 -11.95723186116033 35.79880128822696) (0.1061853503115703 -3.050071910125732 -0.8761175874929354) (-0.9316183029281202 4.661510413436009 -6.970016889604167) (-0.01448041737906614 -0.02317044310645468 -0.02226691531310271) (-0.09360411862577608 -0.1184405648340024 -0.1180734645741818) (0.1830770752786464 0.1044453640492422 -0.1827807554282416) (-1.148940772667454 3.3226900611971 0.290873054715581) (0.2678691343399833 -0.07725869958447351 -5.728044738383755) (-0.1093079559441682 -0.01138107010699765 -0.04691517711859896) (-1.802482198101975 -1.164152717331614 -0.243038962869382) (0.9506299544233895 0.7808229482402974 -0.4430943527823529) (0.02955797502197308 0.004111188520262906 0.01586050369208982) (-0.02742508293206152 0.120463869287892 0.03718031812151797) (0.2855290888742071 -0.4926118503803903 -1.408241918793204) (-1.926322004469134 1.317603962206011 -2.201363722996901) (-1.022797806463831 -0.3893796098404684 -0.3853903768453204) (-0.2917231479092986 -0.330549288986179 -0.2280704948026849) (0.1575832868139846 -0.08317184305715822 -0.16313712318059) (-0.2912710404392384 -1.825016250188988 0.4939132229961775) (1.056141988240766 1.35977328184234 -3.063526893518467) (-23.87029931700779 0.9019049195744393 -2.163837596222859) (1.682759808893688 -2.835458152744387 4.529777934409884) (0.001201833813448946 0.02104379474198066 0.003116289415571941) (-1.225754856395433 -4.089071024077251 0.886573739066684) (-2.608748036594822 -9.246683356117483 2.915408430879878) (-0.03319963363418044 0.01421459469371751 -0.0160573254970533) (0.003376275764305769 -0.0388043803673763 -0.06587472863334032) (1.449397935060126 -8.332312213049388 30.02407972332207) (-0.09786175049131038 0.3798919003521656 -0.03329140987539955) (0.9166013136320568 0.1776968744509749 0.01488500563849349) (-0.1218690805972282 -0.0788230798625234 0.5254279749654409) (-0.1907434050627941 2.333124740492352 -0.9508283671099096) (0.1419094355861702 -0.007925410996865487 -0.06350659826240321) (0.1666983328547222 -0.0477419818267905 0.02703701193341392) (-0.1701407029996075 -0.01509060216088536 -0.1131993780315058) (0.01108712665601652 -0.2255933827416707 -0.09348272841186281) (1.525973293524205 -0.4522739402562521 -8.634036879971099) (0.4294176643422859 0.144305516411674 -4.277030201093206) (0.03696090925044956 -0.2734095796033155 0.1880065367886048) (0.1643622094691614 -0.008273757822410258 -0.09066014153174395) (-0.0398236663418499 -0.04582899157241592 0.02533141851974946) (0.1396416114763943 0.5720547339776039 -0.08197418892983177) (0.3343793213978422 -0.1831286229434009 0.02203087095990368) (0.2389154678707266 -1.304472722713627 -5.225506706734654) (-0.002120028229793805 -0.018328683247033 -0.07565327945213413) (12.11869910511129 -29.09187806749701 -5.811447180142016) (-4.18307355621728 -0.2514342203599308 1.817054598844615) (2.854286285423302 -2.266809143246605 -0.6313368649585546) (0.2036835208988292 0.1269938269237322 -0.1090699273629157) (-0.07205442333867081 0.1306898388194259 -5.548005313347916) (0.003760140869764547 0.1392786534613281 -5.682641555901717) (-1.600502078505025 0.03846297799076656 -0.4029538533179788) (-0.1493053800185155 -0.233657039058848 0.1648784504125371) (-3.469936462093232 0.2376734196938486 -24.23789699690039) (-0.1921050165627828 0.1323223554785578 0.06797598713780779) (0.01327427938319292 0.02310079979436171 -0.002273508310537986) (0.1399985961478591 0.1427919230686751 -0.2954365623807027) (0.1077531981873376 -0.01023304123849396 -5.081149179035294) (0.01024399557929867 0.04164126874823082 0.01320325395732222) (0.02229615823438325 0.03106651824517343 -0.04688796877664848) (0.3432221101262329 -0.05797670642738781 -5.082986288923112) (0.02658018939088968 -0.07892328716098372 0.01060271007898218) (-0.01613162443339587 0.01501620889174596 0.00495029429914074) (0.01168215188075259 0.008587670621493985 -0.002656455152540095) (-0.07423271557267444 -0.03476565727134394 -0.09444702809916324) (-0.5408591216518798 0.2790480546587176 -0.1090210071671907) (0.07941267773784408 0.06958206392828108 0.1155905865440464) (-0.04480621124685835 0.3793033303404386 0.1457795184646672) (-0.8014522656764071 -0.9845623024419616 0.3224296309047069) (0.01307645992068507 -0.01653529370476 0.01431782252881578) (0.03020244691530738 -0.01577968097633015 -0.02204291564452915) (-0.7267571673614011 -0.1014955747332484 0.6593433862816449) (-0.002758370643405391 0.003328716742202769 0.02158387281929293) (-0.03588460423821534 0.02134315408006896 0.02527104658180427) (0.005332944331476387 0.001854682781922648 -0.0344807923382027) (-0.3419294182929648 -0.334191020551875 0.04256710529437213) (-0.233075101113638 0.280644002149297 -6.118114434064555) (0.06552694184526814 0.4600427408292864 -8.347104309395704) (0.2055566675674677 0.8424782673938029 0.05817932424548052) (0.08153143705178074 0.4968894331779933 0.3234436088612159) (-0.828030409759984 0.4002799390180033 -10.65273904838252) (0.5814692976292909 -0.5019939627665878 -11.8179372870804) (-0.1957198813810003 0.2570084541850922 -0.3300546714554899) (-0.02200438373907912 0.3541798139575043 0.6789496349319359) (0.02082137442221488 0.009957991962554008 0.006933638361213261) (-2.949911454599652 49.90960628094045 17.43595844579215) (0.8631490039767884 -0.5044433642960121 -0.6561589856394336) (-0.4496519989809986 47.76842632817718 -15.27190508515689) (0.6992218718194982 0.1318690032550636 -1.506529565234563) (-0.06104891745621392 -0.8494732130637505 0.4945159950321432) (-0.3211239484397602 -1.630986926965314 -0.2445027207979112) (0.3603043861348183 0.8197087040698414 0.537280227420243) (-0.0404068301382989 -1.356591559997416 -0.7782258784798395) (0.7900991862761131 -0.919709885045541 -16.43468149134692) (-0.04903719939472188 -0.04583953100152838 -5.375629353990223) (0.0006544521785356548 -0.004407442837076247 -3.858954002748813) (0.07998437454932243 0.1334316381146069 -0.0752487952392096) (0.461226841799491 -0.4898725017473042 -0.2973610440092325) (0.4754322218629612 -0.05008192152690127 -12.44559006658138) (-4.776070917450612 -0.9993346078750325 -0.2543667437575508) (-0.3848251981544318 -0.1196765273379586 -0.2259488906001711) (0.03756352572365126 0.02829224963120747 0.0458420815071342) (2.525538221824211 -0.4470890587633243 -21.65533874299852) (2.613976012928216 -0.3285533703543737 -1.98783947701796) (0.1804049870279697 -4.676000565463566 -18.05822827785491) (0.1031578306858105 -0.3196381323428916 -1.988756304353639) (0.8477586090464996 -0.05893779381430136 -2.179691371970542) (0.05364526468489021 0.05383874787338258 -0.03516018722777606) (-0.4357236997865798 -0.1491357435517157 0.480129797317587) (4.27794662263161 -0.544774431554567 -2.604993490188931) (3.057319739722111 1.011381243888216 -6.487070882840628) (-1.759739724277766 3.824898230145391 -3.156761937086649) (0.1021369233489872 -1.904325180430516 -19.71594637598097) (0.5624794949690277 0.2647030399527567 3.872274471378784) (0.8562702168570473 0.6737676352402222 -4.592751765145007) (0.4260095248582941 -0.6153026989562365 -2.38257055056285) (3.530628451359202 -12.35411323361429 3.976127608084797) (0.6077112862364926 0.5794043347938046 -1.042987029000724) (-0.8683922953949108 0.9263900552782378 -17.09562454759069) (-0.6060204560935455 1.566069607361288 -1.182703963709699) (-2.069720901954477 2.802691929854308 -20.54240837816342) (6.764166849918272 3.011749995538621 -6.986549714155083) (2.307897163206271 4.128800425901426 5.100035512083871) (1.022102523294269 -0.6559824073723485 -1.984376051340021) (2.164326437876816 -2.054529465100164 -0.6881591489461275) (0.7914287513826114 4.019306532613452 -2.39340041222181) (2.600485803595225 14.08998359826593 -2.882466039914003) (-0.02325298172777159 0.006825157445331982 -0.01408222956657167) (-0.03357661057089509 -0.006027220318146898 0.01666302008042819) (-2.487664187007207 -2.56959114073626 -7.428263289765763) (-0.4735184144999826 0.02339399875986325 -1.085141352571703) (0.2771892765826725 -0.05810834600034709 0.2180567775015107) (0.03761384175874538 1.399299353491617 -0.6224226365167559) (0.2135107582355893 -0.00969947166460355 -0.05178749440626841) (0.4672441829252884 -2.52345852125538 0.2019622328187434) (-6.33982903604765 9.072431278418883 0.1327179549135984) (0.6941099331260774 0.2348752064023871 1.541420504058922) (-0.2607221417999085 -0.1060125467613022 -0.4611129186644469) (0.1716674226449472 0.5302650238467617 -1.242659789330319) (-1.20333864876863 -30.76039974999353 0.4471194933316966) (0.01083864417956314 0.05855904844262612 0.1329988240759792) (14.27843457417719 21.69230482698655 0.3074565625047119) (0.02254398940982641 -0.008124631727212152 -0.0135638902966453) (0.003898756248999474 0.01155622097001545 0.01570960407066914) (-0.237693101418629 0.3361382558647701 -0.1840698569785116) (-0.1462782627404342 0.05123292049509517 0.03445302609630056) (-1.172630822080703 -0.1978313879424523 -2.866559591876453) (-0.4241171675585302 -0.1881761846935418 0.08475163991900447) (0.004376763406701325 0.001650913452928907 0.007287472687450072) (-0.05775066230241489 0.004151190354081499 -0.02160050698134792) (0.6607217993500767 -1.69698998407081 -1.280989485644944) (-3.730090037176824 55.78113620295968 12.90271295051476) (-0.7302887582588091 -1.36526996702472 -2.5789785911339) (-0.1407039971090617 0.08806970881660364 -0.1384064608902816) (0.7627364915901904 0.8825191339343296 0.2913628426565009) (-3.732460622192398 54.44555238638775 1.257446951137743) (-0.2483661308550049 0.3654405557971649 0.02834332191084959) (-2.653652020255056 -6.948214444101781 1.001008595872782) (4.644845286731428 2.796820948602832 8.276419219507288) (0.045947287345244 46.97087244470946 -7.025260345936184) (-1.287869286199786 1.346553449849512 -2.535677661756051) (0.001230272742887419 -0.00172186034726891 0.02387072753456172) (2.984273837969553 -43.26497382655038 -1.074380709252479) (-0.387862387751881 -4.000899316661132 -0.8935787532705697) (-0.009395280025851988 -0.02016500765225532 -0.03851850623085887) (-0.01798488428679999 -0.003934610760526636 0.0225983324454089) (0.1403351213292393 -0.1657991124441527 -0.09108011677921191) (0.2708750039829494 -0.2573591023716337 0.6175540340505693) (-0.1934286174842919 0.2084463178158423 0.06744052642632406) (0.02577553082084677 -0.0008694693229226516 0.00723952026356903) (-0.00865045329187919 -0.01164466579079052 0.02460876766203523) (0.211064535290479 0.1044470001767773 -0.1304662282320675) (0.01239759034644434 -0.02538655912945257 0.0001158066297533185) (-0.006632090356406297 -0.002970380376045302 -0.001160625846251656) (-1.062612849724062 -12.75245740448483 -8.546957190544607) (-0.09642347433063425 -0.133666087536076 0.03632643053146682) (1.878810959295755 -65.66283956597735 -8.09940873450372) (0.06024599711834105 -0.04297750272830325 -1.335000591500024) (0.1139407195829198 0.1668772763353514 -0.02398578279370251) (-0.7102756930133813 -5.667147513598495 1.187515489942767) (0.2083873981494381 -0.1870524742971246 -0.3141707888016187) (0.09956124757131668 -3.933337538222672 0.1864001222116548) (0.0001778248363323764 0.009908779373031876 -0.02880429594845697) (0.1979727373058491 0.1333849785073148 0.05958380582454306) (0.3373243656802011 0.2138424765533195 0.04449313921094686) (-0.01686947022818304 0.01264095727855247 0.0621399967599996) (-0.4114359036196432 -3.19734473205468 -1.088192708759174) (0.6224796120883833 -2.97033292100326 1.251087980284248) (1.280884280484134 -5.780249735893723 -0.7399116345790685) (0.5926471610202743 0.2356708747123767 0.06665172770266367) (-3.640225612418711 6.908082915726339 -7.02577928129462) (0.3515060476714424 -0.1660319197666017 -0.1502174963172095) (0.1871818053544614 0.2536123996004841 -0.6797019658590616) (0.2295378336332227 0.1004890790852212 0.04730167319998067) (0.0568010453098526 0.0257478611524846 -0.1440784891809092) (0.1102794111718955 0.1476273855872726 0.02759980619414707) (-0.926040232851558 -1.089793794542173 0.2441453757926372) (-0.2746077775279801 0.06231671373416491 0.1042175504131572) (-0.4046386555492467 -0.6476683586944323 -0.04124444953624823) (-0.1617120726653136 -2.568239409872923 1.414931783886923) (-0.08196811545289985 0.2643366724681997 -0.4275793362718041) (-0.7824944660681259 1.566770179907238 -3.494008700376936) (-0.08866303932489854 -0.04646709728408771 -0.0190359621665633) (-0.04159137724025781 0.0002520566297207353 0.0119709647376911) (-0.005397999245693721 -0.00794395323996475 0.008590634067528) (0.6177112854624187 -0.3016629932157578 -2.170267559257121) (-0.7808410279447362 1.186171393288439 0.5550948928092685) (-1.313395636553783 -0.2804889381025098 -1.567679026431696) (1.232710670310058 0.07600089080462331 -4.057017240027722) (-0.07852440766688711 0.3127292832183766 0.1753851577104802) (0.7924132958410974 0.04523422726930826 -0.1796088663605662) (0.4365988906211772 -1.112170984847119 1.63444922362339) (0.06031018106014858 0.02625081416968574 -0.09207104029523497) (-0.2865400570676686 -0.1217931209594062 -0.02951274532371279) (0.0160763556598284 0.08402141863060922 -0.03898274400931893) (-0.010121005432571 0.02124117916895002 -4.578043155465801) (-0.2044517286305163 -0.1506711791753804 0.1695815688976712) (-0.2880239335899349 0.0022789223272137 0.125041447412554) (0.4773925420913007 -0.2138485220111882 -0.5921660581664219) (-0.01861952445307364 0.01053532442159143 -0.01633399610334179) (0.5238415903365855 -0.07200905438652661 0.03222089110230164) (-1.129054178503236 -0.7021863004562356 -0.4378716937073875) (0.04451400441459236 -0.9735484065935847 1.537403419525855) (0.03759344005892078 -0.01187392647794867 -0.08249222191878194) (0.6259321362104964 0.4132339827303123 1.095805592747574) (-0.6073722549941273 2.970023297537013 -1.122471688342741) (0.04506613052732966 25.51552123302023 -2.103735305698055) (-0.02712040111812185 5.383021390743814e-05 -0.01261273863481628) (0.003051740067701231 0.007121080149784588 -0.03787572636812851) (0.01194009165982639 0.02748186768243951 0.03907572737505378) (-0.03597574083255459 -0.01877747281899473 0.01569295291983153) (-0.04187153302227171 0.1103205284933672 0.04678757296990725) (-0.004691225883729298 0.009148695025020817 0.002345861256956619) (-0.006344394876018952 -0.004988690834747862 -0.002757570961716666) (0.1551097280105395 0.02263750880773463 -1.05753668007574) (0.2395671474033966 0.7568095328088479 -22.71427830792256) (-4.109419469300325 2.249777924812803 -23.78148133443554) (0.4119161919099536 -0.1821177571605586 -5.420676604247907) (0.1491982505417044 -0.1307804174834376 0.001116229767039144) (-0.3312720132397119 0.6809894065359838 0.01790959811287224) (1.334616601422485 -0.186324362042045 0.1263977065359153) (-0.02880640200568607 -0.01001869955707773 -0.01878713507212145) (-3.183746468971068 -3.00650695936318 2.126766868854208) (-0.3357754314311406 -4.06907205741437 1.58332429255114) (1.113276269740912 -7.271712361349392 -2.743714500783252) (-2.417124489030933 8.055655162655361 10.0200432076936) (2.246955917949681 57.46303739485638 -0.1551959821285052) (0.888737771270795 1.541623041350021 1.292752460260215) (-0.9489428496161809 7.09859910863452 -2.47948560567434) (-2.251799444089364 8.419016139813353 0.8731147435619521) (-0.379225767357578 6.0879526719523 0.2980658123049181) (-0.7454593746917473 2.949537057861968 1.000257137843154) (0.07939541601394437 1.744950896663419 -0.6610843588805233) (-0.1305250663270464 -2.360955356276819 -0.9214318889114854) (-0.01263853555657855 0.03468693894292658 0.006348101444706661) (1.35013889192044 30.75061651632305 -4.997472614122614) (-0.126678323137751 -0.04578617877340907 0.05267485851680909) (0.003867771725181399 0.03431257026032034 -0.01186806385106771) (0.02843517587256818 -0.001303356824710665 0.009401931259533387) (-0.003012457227512673 -0.01309852416861238 -0.00359677066087689) (21.94929397425118 3.014434400436546 12.37519498043469) (-0.3562146794112016 0.6767313180796688 -0.6958855017386802) (-1.509033950754537 9.654465471147128 -4.207745752714814) (0.02539180786176843 0.01851269094131515 0.02857548904561366) (0.00764921171271851 0.001925568766288252 0.01185789713105779) (-1.832684937609236 -0.913872332348544 -1.992830364438884) (-0.8386445508974507 0.523997605726767 -0.1169615025615307) (-0.3505585757575009 0.2514251725522796 0.06061317228178001) (1.828225550206904 -1.876694371259201 -3.325823830254193) (-0.4896237718241496 -3.99853335096229 -1.745502640095903) (-0.04100564983742554 -0.006555777556238901 -0.1145906096115918) (-0.003652822706795353 0.01193218335373563 -1.685391599154894e-05) (4.013681265059439 -3.363674178021695 -0.08090800931879016) (7.152715198909548 6.778029376983108 3.200950825142277) (-0.2733190827553896 -2.029937403422448 -1.581320932077188) (-0.6879828414120667 -3.603188074329069 -0.6172792778722935) (-0.2046287251638503 1.610993518884103 0.668857537436193) (0.3349028407845934 -0.2419450658238343 0.4442925276373945) (-5.885569494240506 -10.64146721865996 2.643674501314837) (-3.018246056395267 -25.1438001736612 11.34750954022032) (0.8609924040170387 0.1899004297060248 0.07505387017288215) (-0.1282674950317672 4.201165151678802 -5.804800505435324) (0.1174627784193385 1.385110700201298 -4.938648601321707) (0.7460100942570255 7.588637140744138 0.6342776394816184) (3.010476019450338 1.226535736756987 -0.276902825917653) (0.0485599520025336 6.913415413613206 -2.768629547680232) (0.04061115959055442 -0.05846539499003174 -0.03646452980468375) (-0.19665941232905 0.8299066392341502 0.9339719703884096) (-0.1917524073516634 -0.01000822849949458 -0.005569359618266097) (0.08911566583128464 0.1448049969781866 0.1412343564705735) (-0.7158737740369251 -0.463065426347249 -0.2462453581221104) (0.1207191218141298 0.03035039623024025 0.0447924042161761) (-0.02800402486910205 -0.05333750708963897 0.05924471454810581) (-1.179779307769684 -0.122653381272069 -0.0147914924407786) (-0.01435493964415826 0.01014403980172638 0.009417416465623423) (0.3507464410054634 0.3740589809290358 -0.9086473027466071) (0.1480233847305411 1.462665529471062 -1.147431851112632) (0.7459507559056138 -0.1921835837437417 -0.7232620803521926) (0.8745949717846616 0.2943379662534868 -0.07323387659544295) (0.7184877958913742 0.2335511009189014 -0.05776854059200791) (0.09518364818114103 0.001028552820211333 0.02652957357769948) (0.9325361094258382 4.313892146081278 0.7612734717310463) (-0.0007466324693116422 0.01834340183019722 0.2737644226019844) (0.01239215030387852 0.00567334868022237 -0.02420564392205814) (-0.5019695674996684 1.253773533424641 -1.290226180738797) (0.2363054774698271 3.312651666084234 0.2190569582657268) (-0.8470812315966803 4.092449941206137 3.354233787618133) (-0.0569446129588683 0.09006326786039841 0.06669051056609272) (0.03452534007732856 0.01656492049564401 -0.009538380140234375) (-1.678364326112161 6.376675978999143 -4.172842588108894) (0.2631400526374816 -0.1039146503128004 0.1216742261182066) (-0.1141420896890837 -0.7041578176271799 -0.1863535128658176) (0.1936223632171981 -0.5419951435097173 -0.06698678880444003) (-1.227993164731772 1.706338990291965 0.9596555563966804) (-7.762893045049005 2.440186872336318 -8.67650771972518) (1.366104603445707 9.310686045954265 -4.154905065200895) (-0.03583264121618488 0.1502787600400472 0.03209157686173818) (-0.5019209511151921 -0.1418516724465848 -0.02069572431347191) (2.417187270087629 1.928613894700177 -3.283372544157614) (-0.07588288283294223 0.07869258259578238 0.04275885622981047) (-1.473949028800871 -3.720124775429986 1.385475873008302) (1.119078056172218 -7.919169574299916 1.571778039433326) (-0.2968754101602311 2.770141731776549 -5.309521155640256) (1.87993411233522 -1.537487137517071 -2.244975428808694) (6.171313262904404 0.3014486581076046 -3.413730772059667) (-0.9649541351150742 -2.783717249431553 -2.991943548281383) (1.378755761520409 1.01015305927824 -2.205926234108849) (-2.535644142369669 -1.133531560328554 -0.07783135347224124) (2.488377587246323 -1.142757657606615 0.3940337011635218) (-0.12793712729257 0.5562625944291464 -0.1388733555811262) (1.392584056609735 9.76762081981153 -0.3817052367975438) (-0.588673662874186 -0.8251806413451078 1.518400230723928) (-2.482729281441221 -1.167150326765766 -1.67676476555374) (-2.16094898510061 -1.560087046141976 0.4778503146794367) (3.442155052947932 0.3040164999589818 -3.645665165623848) (1.295228626866487 0.9556314963462187 -1.507397540027784) (-0.135862369317834 1.148541958653621 -2.774761088054519) (-0.462014393440783 1.143379175290279 -20.87593576910134) (-0.5239666337836615 0.8723747993850788 -30.26163245836987) (2.991103307228241 4.837716474984574 -2.638747729131775) (1.283561071896918 1.071689038672831 0.05582122377651944) (-0.07391196231160578 0.02692477837906243 0.0406463216552217) (-1.746946937377308 3.08813370673397 0.9004666691312843) (0.2794804817200164 11.63052825930895 1.274678637769593) (-0.2340370612567501 -4.732846055861084 1.018316360026632) (-0.04237652360631472 1.105695248358458 -16.49240294311106) (0.04697947207807769 0.001612875082219696 -0.0153618384616729) (-2.207203888079289 -3.344450921358574 0.7062335490822103) (-2.068422094548953 -9.967383667734602 -0.1571026657584863) (-2.558111633227241 1.280664077598806 -0.7506853974065635) (-0.1338851050885059 -0.1909264268719857 0.01068014665719892) (-0.7082238086343557 0.1399888796983211 0.07401338444089925) (-0.03606884078181975 0.02915407429178131 0.02784052181896823) (-0.2669725738248294 0.8731134833322693 0.4257253791399356) (0.8461095961678156 3.671591835150215 -1.441114736330253) (0.1175365287813228 0.1094172156573959 0.1194759828554302) (1.130905165858149 2.76339681882716 -1.937881620030208) (-2.139502737573084 2.235709200595558 -2.829085432006977) (-0.1939301225047422 -0.6574142705538373 -0.8739714569700955) (-0.8639324438940005 -1.413423816320323 0.3740857097829732) (-0.6856105717377553 1.531671887321373 0.5969486202983125) (0.1858600206365182 -0.8133232447308945 0.1537990923452747) (-0.03891533279404776 -0.2609599315862402 0.1275109074525726) (4.172469153861468 -9.910963052747137 5.887629296121109) (-0.8994213275695362 -8.312015734173437 3.843094881244145) (-0.05092541645811098 0.01815199692263711 0.07637580450528421) (17.8640079667613 -1.326607746029053 4.122260776681381) (1.000369686319906 -1.900785464928283 -0.5681994260643164) (-0.7615615277995116 1.216214750241557 0.5107627814378701) (0.08302176432443777 -0.07474379216760678 -0.01419507068528141) (0.1612944729419974 -0.06903993790970178 0.1154411525097861) (0.06182441887219291 -0.2313804067234299 -0.1952311534587209) (0.7144244813711743 0.1385871994529898 -8.970663180832542) (0.2383851047540803 -4.15069860832909 -0.08211458615267633) (0.2060127996669455 -3.498715699670627 -7.08790574572283) (-1.589369640980723 -1.801990952631219 -3.388117757869354) (0.3224003968952117 -2.366978313206986 -0.7527154542568826) (-0.6202612377255894 -5.340838161500736 2.194798339698936) (-0.06093764926125844 1.521414016747737 -3.005671496033004) (-0.2884357559025295 2.095042588602569 -0.5129761332432561) (-0.01298890414452008 -0.5501039391172619 -0.3468636168014986) (-0.06380841580925103 0.06693969654400636 -0.05126280463512117) (1.867640879514899 0.5018214567245833 -2.12982275533169) (0.2440889491475778 -0.1050356432812993 0.2007434409555069) (0.0134117666072093 0.07193906569855632 0.04111285223867417) (-0.03672437773952032 0.2772822841744046 -0.02638818656462312) (-0.3325778909395974 -0.4585476771675722 -0.1141614213429812) (-0.4665048074705908 0.1684788868838449 0.2500782088308783) (-1.658688108570019 0.3872854274440345 -0.2885717345522965) (0.02531149859199404 0.04632139143440368 -0.0636438469368665) (-0.6154791628307892 -0.2032323928644729 -0.7048706043951306) (-0.04884254306510686 -0.04179547981480887 0.06320105503515806) (0.9718255947076635 0.1721030450873441 -0.6242284410326416) (0.3123399714946694 -0.04314844718348668 -0.1504747337438307) (-0.05209913718354869 0.04363907092336755 -0.4080456165952304) (-0.3955771655955281 0.1077448984456827 -0.8371582322662411) (0.02255377277130801 0.04062839736864664 0.009544067022426578) (0.8934561547491906 3.255849095715457 -0.1165718218748684) (-0.6135716006198133 3.774639694676647 -0.1265221174053264) (-0.9158781613279955 0.8956555331906573 0.6314683468024075) (-0.2196490591819726 0.5159724558732806 0.01667172700885561) (-0.07021842859614008 0.7019993990976329 -0.277374908411829) (0.0103333863204375 1.302838531830608 -0.2900755247494988) (-0.0004618133937170261 0.0001732005689567464 -0.09472085363539506) (-0.1368177454438992 -0.03521397942379057 -0.0386748752105552) (-0.09368145386304726 -0.3337998665953714 -0.354911507668448) (0.03552857009709402 -0.01490507790770142 -0.01872415882346734) (-0.1512335441815886 0.02633844623361258 0.02589795710877292) (-0.005004637817987302 -0.3575792357291425 0.01872970878678008) (-0.04915360548863273 0.01459216870653733 -0.0358095101658238) (0.2084449505335071 0.2028122591484504 -0.6336236131193531) (0.04516350283159767 0.03074446338059689 -5.484824058707022) (-0.6340803058861506 0.1610111005296601 -0.6211039110380674) (0.02169509607023145 0.01455273786086915 0.009283057891472872) (1.025544654844952 0.4046047719509364 -1.612551995261116) (-0.1383181236278061 0.03418815940892737 0.1907889750468986) (0.01502904786119839 0.07741490623198667 -0.2776627978917031) (0.003198499085047629 0.01119833348394221 0.02826975404706566) (0.005631505455843473 0.01615863832127818 0.07493904931013998) (0.1936818432296213 0.222683091607361 0.02584500608020307) (0.2175518507539324 -0.06720512888114941 0.07641168599571167) (0.083185178708875 0.01922203587678793 0.03807497478205428) (-0.0444895913697544 -0.05493925491764157 -0.002322776945800213) (-0.2320595153295955 -0.3466163617836312 -0.2465070641212323) (0.01212929745734876 -0.1484298370925849 0.09049752939653112) (-0.5028261610598175 -0.7987290590612203 0.01491164383513363) (6.722366030915541 -2.516480641321121 -0.6486118865749733) (-0.26452847875776 -0.08591602034671274 0.006120906684343591) (0.3350484301298047 -3.914185294951003 0.7534834884425726) (-6.967257810577806 -1.446894789137531 -0.6687508663420605) (-0.3277303493358336 -1.706093752727704 -0.4694902379622342) (-2.470883456052619 -4.194448256334524 0.5786062889498148) (0.3159399513662515 -0.01412573637039458 0.1066670086271321) (0.07537954378930646 0.2908707877702467 -0.2173863614615484) (0.4306260400557271 -2.081749862078435 0.5282106795135966) (0.02398681041365253 0.03462793459753816 -0.02327873944440867) (-2.571116372566014 -4.593705455480785 -0.9204774898505961) (2.658133692029023 -2.137901170523873 -2.285105666131469) (-0.2654673923287223 -0.170839258143325 -0.4274282103463082) (-0.01589978875023203 -0.009439550541782697 -0.008282925613002012) (-0.4111970743388745 -1.798745925832933 0.2937625139459752) (0.05102138247162878 -0.01387082113939336 -5.286811018772267) (7.077617815314095 4.560157327618491 -0.2068303120802163) (2.951974305469427 -22.9513306860177 -5.143676282916301) (2.738677871358592 5.365942968577876 1.341722288814296) (0.6802057612913688 0.3909486796502912 -0.7330758055813695) (-3.177646981299947 0.8765563454188401 -2.203678014375891) (-1.588088675922361 3.376186583067476 -1.62657697503892) (0.03108512817721282 0.04251293858622532 -0.0790039494849189) (0.07380325542716484 0.03652642914493007 0.02344938355854625) (-0.2340869296246322 0.007102422734665999 0.1676239572975497) (0.8463761117456924 0.1180741961017339 -0.8159946558212965) (-0.7535763945736481 -0.04293107730326295 -12.50724409677411) (0.6829696378816145 -0.7368430884208087 -0.8505009872510123) (1.270110812606092 -0.04518350339988619 -0.1699038618022506) (0.1948239402247677 -0.3280849362577419 -12.38427551297993) (0.3967289734395927 -0.109229353365354 -0.1285824965761134) (0.008690187781923219 0.03241551592814909 -0.005483681716886697) (-1.856445401764654 -8.960866909154101 -0.5645703311997607) (2.655131086103252 20.26737625119154 0.95266990761336) (-2.468472385664938 10.39162998964944 5.719070888726539) (-1.574641190981307 4.735506017777095 0.6068070238877498) (-0.5971125625339694 3.93859416311048 3.771722578858506) (-3.693609970557711 7.795095235640843 -1.364452996314985) (0.3330029342397623 0.06736738742614544 0.2525075777491554) (0.8480337970569596 7.251144174364848 0.1761894852904087) (0.1740314799310006 0.05527723413002514 -0.8540018279495044) (-5.464603150427244 -33.59843742192582 -0.2309986466719338) (-0.2630686201609309 9.650698949554565 6.913770528807811) (-1.445373371155737 6.999511407519187 -2.287613519045418) (-1.186445367424791 8.817688814393374 -2.794182368302415) (-0.9115141632453125 4.333223626207362 0.3378547083711123) (-0.7341051272039496 -12.74189573840381 -1.254485161640756) (1.693125881281645 -0.2237372752114033 -1.850054077803271) (0.2722783225038823 -0.02769678697272171 -0.474894330193001) (0.4183051296886052 1.376585894972854 -1.377078336624637) (-0.2133600208200046 -5.939396411651689 0.7068331108851722) (-0.7126547910891237 -25.08870863876291 -2.964495789115337) (-0.02513897359453041 -0.1024312146337667 -0.1373984846367753) (0.3725388476788845 -9.852138553750676 -1.496575440419388) (-1.206898280042538 -8.565720032723835 -0.3914831913722361) (-0.9023811465710516 0.8046507914016132 -1.829199450643708) (-0.7855418798602726 0.5452241419310977 -27.1387360693989) (-0.09371635569244442 -0.03890005773952409 0.1246995179630178) (0.05431783409209297 -0.04761067052922495 0.5520340465398604) (1.599041909426035 4.874220192104725 -4.18014798059808) (0.07323975961824554 0.03819590237229759 -0.3645745405614726) (-1.527691152118565 0.2816137151667599 -6.891050484940195) (-1.047413655142333 1.889582828239094 3.531707349856481) (-0.6798969265781423 4.709196037931021 -5.635036733353513) (0.2694912186060757 -1.004013925465538 -3.164775869578134) (1.549321084400314 0.8174820948158055 -1.10934988152891) (-1.741246334910651 0.657497855804448 2.389339896578938) (1.239635508717966 2.074996733133926 2.796944075093783) (-0.1365176645565991 0.2532640341996987 -0.6238002649351349) (0.3628524423213595 0.04834339558905116 -0.09893894679756679) (0.09988615107365732 -1.032371285579226 0.4281754919951955) (0.3436991552781395 0.08160537296391812 -0.7590841159097703) (0.4432330299181212 0.7828481168921594 -0.7207412803493429) (0.005634886110886413 0.08706608067798831 0.2128052167726986) (0.2896238838888543 0.1385788590287479 -0.2370704794215007) (0.1005079150184565 -0.2197918550190406 -0.03150604101482167) (0.1600333380560987 0.4238491738372501 -0.5620099224990569) (-0.1264893123271054 0.1953366461062242 0.1579610791460255) (2.559275672435355 1.176367995931586 -1.939862814686774) (0.7127582939962898 0.2067119407405221 -2.594227886397877) (-0.2652142554431453 -0.07986818649573016 0.003050859224277176) (-4.156024231380171 -5.56516666966728 1.232257915671275) (-22.70180547653821 17.43062630097681 7.708788246104124) (-6.941058582679789 -4.443955491382137 -3.363028942458758) (2.473439314759653 -0.09029698289456123 -7.383902940292105) (0.8466435822021854 0.8236444408366664 0.1514672156594739) (0.3545611609660977 -7.780053383509543 4.198396889585648) (-2.183936871423219 -5.815543675706359 -3.000997892648136) (-1.887736516439016 25.85170873774906 -1.545160592148132) (-0.6332833656837598 -3.63949295831725 0.7608768158064965) (-0.1887178408235398 2.124677315265408 -7.261935888462961) (-0.03753061010304037 -1.695025901632305 -4.150094586852758) (-0.2841420833628966 5.705201580547384 -1.009062393898067) (-1.502737892920397 7.484159609414099 -0.1962918317642851) (-0.5473692790978532 -3.979458212068566 1.636607091802468) (0.5596788545857834 -5.063538962684628 -0.4412278950731601) (-0.8319427194056388 -7.094299119621933 1.993276838856633) (-2.247772092260231 -8.558619229505043 1.852793277137671) (0.2141912800927953 -0.7680641868351541 0.8840522257552641) (-2.465824083147454 -1.143810387106419 -4.414783014393739) (0.3740952393311234 -0.967922128895731 -0.5726028658282891) (1.162855657713939 -1.711587808596913 0.3691617785468669) (-0.3302769191886966 -0.9712315256415136 -0.3312186280584453) (-0.1159811802438225 1.694531474192561 1.470766854651775) (-2.503391055380319 -41.85184661574555 5.574998962237031) (0.2305542770478124 5.188771492837884 3.007781482389032) (-0.1832023125436614 0.1189026989903292 -0.4583289553881349) (0.1093735005621067 -0.3167105932993148 -0.5939206175367941) (0.07817247151076742 -0.1329269728827652 0.00493894004706763) (0.5849017878920962 -1.891613045584212 -2.931713871728116) (0.9262797203789123 0.1978174575351099 -0.5028702444247974) (2.464737630988587 -0.6813117334087464 -4.202977082570326) (10.89960483242716 1.574352678459588 3.023295489843166) (0.0589936085074682 0.08125708616652075 -0.03769009014581048) (0.4473038707059954 4.092714305274063 -2.487747867735183) (0.3264091556396183 0.07421241480951368 -0.4868015930988886) (0.9894384232070068 0.3520125564962021 -0.4222212163893057) (-0.002519396529559119 -0.05540423500667151 -0.2375874078444992) (0.3500981705326689 0.1282535063534931 -0.2611011023757506) (-0.4827724657954895 -0.3669636647753132 -1.998909860114345) (-0.8523092681359454 1.165562262520901 -8.053260912774416) (-5.372365145290424 -9.190649967711186 -2.839962642678308) (-2.522364679620365 -0.8226127816533365 -2.277841667087196) (-0.6189749788023111 12.86450895534859 -0.9830975516325576) (3.563654033372882 7.275171280335635 -6.002439476062712) (2.382763593699346 0.7121950094797445 0.4011758668361223) (-2.829328488748667 5.545625783596815 6.733277702205291) (0.07409639487816862 0.05136921585386282 0.09738719873398351) (0.5549100713005586 -1.229974271296146 -1.974477605861811) (0.2513980927268294 -1.108873170151355 -15.81512953980914) (10.526205528671 10.65465745586971 0.8040796733965736) (0.05839528165959144 0.05886316365674232 -0.03872449028731676) (-0.167825482851778 -0.1518228175075918 0.06280501629940032) (-0.03981123288670985 -0.009067309602142644 0.06086020818158471) (0.02935236780720218 -0.2269893748374742 -1.163020021126594) (-0.2466274304909495 4.25255070438368 1.213675270903988) (-1.002207846639428 9.306907970569597 2.064001375306022) (1.209178506048863 2.575927573630985 -5.211485125279049) (-0.1308971720078866 -3.302457281068031 -0.7237770767029195) (-1.270026445087123 -8.687770063757903 4.733716262511066) (0.07424690748433263 5.085332473893184 -1.500907801176551) (5.620162132548385 4.84488026187435 -2.087294386094982) (0.411016031077607 0.7952182071917376 0.9227697837043469) (-0.4175301518856145 -23.06822889078487 -1.972870858194224) (-0.01280222591268421 -4.9165343656256 1.314586970783504) (3.589314289499336 33.62109249776763 4.081530360256521) (0.2961870442139266 2.844164646826412 -0.9121101848959393) (1.930426532372979 4.215264199974797 -1.877780560767031) (5.888646784619584 2.655661612045715 0.8391311232143748) (2.412297358962655 27.64513357867441 6.90970687621475) (-0.2312990555628967 5.446992142012633 -1.088125731450139) (-0.8744017466687715 -2.677349600375064 -2.14927569127734) (0.1253419748317581 -0.4013997943304943 -0.4625889250888566) (0.3724086462883962 0.2024152234517312 0.01557323147978229) (1.125439163830903 -5.122606467503938 1.091378049102091) (-0.08801399329231457 -8.708466240105762 -1.361979836447304) (0.2758803855174239 -0.861199305230277 0.7877082244745059) (-0.06141331588966131 0.001520903493540987 -0.02269541755033494) (-0.9645998108326512 3.837526457302351 -2.798602318188897) (-2.64081247609379 -2.146280980742983 -0.9788225527094448) (0.146162768609185 0.1927169016717983 -0.003716262226024919) (0.5955358792608455 -0.1559936274993719 -0.4457963694110536) (-0.1692596600381179 0.04414076187792249 -0.009850409869769029) (0.6394110741698594 -0.8783025943351119 -2.111667237026246) (0.08656055145891664 0.2303370651792082 -1.153263080408994) (-2.165005050344532 3.152705382468606 0.9175351264997041) (0.5118513762914277 -3.513044890639623 2.151703939099309) (-0.4258416341037034 3.648303828006017 0.5719817488420058) (-2.632382627136537 3.713993377813348 -4.09539129556382) (0.7533058832182998 0.6211420830526647 -0.2270607606771231) (-0.4626494177413092 4.610614814623744 0.1741448829422303) (-0.5292013722938629 -1.225991993665943 0.5613908680494987) (0.02029984894706899 0.008289246379946415 0.01585894744824561) (-0.03918986087695375 -0.004060938618552116 -0.002922779556410983) (-0.2475474518355631 0.1908709044797391 0.2109685217404119) (-0.1869810145561468 0.09887864399305535 0.1167859177543369) (0.1583146116895779 0.04486395031648767 0.02245046087418984) (-0.2665444623947454 0.0306877875397058 0.05445612328954015) (0.09418321978900855 -0.01677897497474929 -0.008230505786698934) (0.5587680625436817 0.7401772368292336 -0.218177615558231) (-0.3878856650753099 0.4327124940858833 -0.2828313037739854) (1.079301378488839 -1.603955548732568 -1.81301846605148) (-0.74035433169988 0.2746208497620174 -0.890783405037732) (-0.9383341056028117 0.1615928293118904 -1.302152083116482) (-1.474025226568251 0.4280291478740486 0.04217645491869682) (0.5779658069857168 0.9913984804740101 0.3386610014038483) (0.5132107548864924 0.2258090202269036 -0.5063365327522671) (0.6569778130955407 -0.6014581154508328 -0.02724576619804034) (-1.301908879346773 -0.9590148406187831 -0.1041417791743631) (0.1886578879230288 0.8362592639599804 0.7574977320592933) (-1.494852840453889 1.309142509516032 -0.734247155747983) (-0.3943315261985659 0.1532578184664555 -0.3256524027642114) (0.5692825624574709 0.4258634387759745 -1.060848344255994) (0.2441042407472657 -0.5181513077688419 -1.2522850753446) (-0.2121688499754323 0.03893273989219936 0.07055020134299125) (-2.951701524411997 -1.561887386729184 -0.8743238131989282) (1.580405618591851 0.4324537138185204 0.4351736229011033) (1.031051078997495 -0.5735902837925229 -17.75014528705806) (0.5625399957220021 0.4742041840948966 -0.8897529706273187) (-0.05554383449055017 0.001728606600005643 -0.0152538768241731) (-0.1138261520660151 0.1621031512803236 -0.02845840192340584) (-0.0301543372291087 0.004916028484554108 -0.04554239400497904) (-0.4713375082181382 -0.1010780028216897 -0.04469399399772556) (2.724694870555616 2.096703508506154 0.2691223044938132) (2.153273155943439 4.321886404797813 0.8544840227250934) (-0.7353612875331863 2.940058712333864 -1.2533392363284) (-4.509133368529897 5.715838785002217 -2.643901679483499) (-1.530920443849076 0.8226728672031988 -0.3908042463630964) (-0.1154453286800734 1.580076559334777 0.05837581443676441) (0.1359988903275005 1.609301122661091 -0.07443577992096215) (0.0149403190213807 -0.01435453148172876 0.03251409849132649) (0.004683840748052844 0.05851524377418996 0.001879233152705018) (-0.4025205183806366 -0.02774703325863689 -0.2519928433981337) (0.004528986726243286 -0.02096851434056626 0.03672792178050448) (0.1590507788998394 -0.2942095086733162 0.017983131482323) (0.02620469317563835 -0.01996408481651151 -0.1173924883920955) (0.3548574098602273 0.08095818906175326 -0.3441991484466571) (-0.2971342539829788 -0.09499278066861155 0.1145369924189241) (-0.1539028148328276 -0.166297877937713 0.007780423686653014) (0.865176975873956 0.7503814407535891 0.9418084695363885) (1.38302505150434 -0.200938322522572 -0.5648355138968537) (0.5233588656884078 0.7378345649232914 -0.2253835057724095) (-0.01016480766316192 1.273973556359684 -1.435589280993156) (0.9082324221348248 6.321030408928416 -1.489415013875353) (-0.3086421198564662 2.251904997988286 1.706586892660232) (0.6393967176811317 6.429083056077561 1.171229562076461) (0.5901625418066354 6.445742545272934 -2.274899753057992) (0.3475141666794899 8.022570450385974 1.373505125772719) (2.470722657972498 1.893377992965217 -1.723731675274752) (-0.0476897901179254 -0.1299336647497286 0.8420404074505884) (-0.5438172954425387 -0.4822325959397674 -0.9418682938713987) (0.6548443290088614 5.716976968961723 0.6358053709047873) (0.4855810771888842 23.92766427229836 -1.502294451661613) (0.1578651361478683 45.51556489431372 -4.420908526648634) (0.6744579905643531 0.305119064335618 -2.57783790871056) (0.5786231945206328 6.658513238470605 -0.3039948925032328) (-1.530554223170161 0.8824726225938782 3.959351897622844) (-0.3680586009393361 11.73276037322838 -3.573500796415705) (0.712253174557373 -0.2283377375973278 -0.1112376500978386) (-1.833018329303394 9.784401787330808 -2.517345544706736) (0.03918227122973217 -0.1854168393652518 -6.76197403436514) (-0.2529810555062117 -0.5909476440335927 0.3475636352266909) (0.2962014246490139 -0.2007608695559593 -9.273264450526231) (0.9823113314033601 -0.5168610524593101 -0.5583771101704657) (0.178606264969362 -4.47795235609691 -2.152863165205551) ) ; boundaryField { front { type calculated; value nonuniform List<vector> 32 ( (198.2848620129191 -57.61974830694135 -106.5124271897432) (1.557169181937578 41.60114281817948 7.934455333218546) (-1.001040735975198 0.1621755873983363 -6.647994243869908) (1.177378386593908 0.6124507430577042 -4.781872468667187) (4.647924849520321 0.8779251501554354 -5.595894817080464) (17.77538043089669 -42.61086424770325 22.33234612313398) (3.127218745739338 0.8214670493230158 -4.721341277255785) (3.371538929766385 1.509078583962436 -4.541583505264056) (1.982014850948799 0.6623666450462196 -5.175594981457746) (-3.142873132678088 1.031279948743448 -11.132371725203) (-1.155575697788858 0.1238128060467315 0.2216761472340151) (-1.442868905727177 0.9631484102252837 -0.007101773822894175) (0.5860221794388868 0.8607115946137575 -0.2673741718587712) (-0.2594176697174073 -0.8573690900506438 -0.6673346235473734) (1.146937616646525 0.2668661119470368 -0.002058344265379652) (0.04177560921609252 1.980300792832926 -0.5675565631306367) (0.3216527402237435 -0.04879921867375181 -0.2992217607995236) (0.4490495810568133 0.3715330829980397 -0.2730958850858052) (0.4132482007978623 -0.0664786211903724 -0.02175788158400227) (0.4132537381383669 -0.3283442828966061 0.1168537788055178) (3.10277349947713 -4.454643321920832 -8.87560712015571) (-1.01457127619415 -1.139796100766421 0.2554717501486576) (0.08616525282592391 0.2623944872493048 -0.1181156107558217) (0.2934820843387244 -0.1663515497274345 0.0843697550809088) (-0.6824050916701887 -0.08225703629957995 0.02014019896073746) (0.360870116752847 -0.2315350560795711 0.6175540340505693) (0.3511500800874219 -0.03816056358191421 0.1283538788747561) (0.05238636580094885 0.4168756081755061 0.008967838768313752) (0.4751225354079629 -0.4166713446768003 -0.03644078307758876) (0.4277580667977267 -0.3172595526500994 -0.02887500304098699) (-0.1638423966983892 0.6524638266928682 0.3277499531773691) (-0.5137028112098754 0.6270595921507647 0.07253247626387617) ) ; } top { type calculated; value nonuniform 0(); } inlet { type calculated; value nonuniform 0(); } bottom { type calculated; value nonuniform List<vector> 496 ( (-5.352402467617177 2.955457325464167 -25.60897449116128) (-2.833969125360499 2.802691929854308 -23.11466042203384) (5.849615861114508 1.526378794582111 -22.60199674297254) (-0.2005404068006952 -0.04655959468697723 -31.98027190684796) (-10.38041769507843 1.028229064676762 -24.34080984644328) (0.6310720670661738 1.420302902200027 -17.70952727337075) (-3.627281710360459 0.5883402721241848 -22.85323808042708) (-1.77963956648735 -1.709075499803307 -21.12091292422276) (-0.2880274873525991 -0.7691951723935563 -21.70254042636279) (-1.231757302930747 0.9263900552782378 -19.57009812261624) (2.79584667686823 2.316239456205742 -23.89737122779237) (-0.6013106247600734 -1.524065789254584 -21.69960057156887) (-0.0006307197568223843 1.105695248358458 -20.02063239885702) (-4.050081699201589 0.4997617335796244 -26.71927830215152) (-5.65670382723968 2.249777924812803 -27.42768546497096) (-4.044242563271082 0.6215191062798876 -24.08473749520914) (1.635138804505815 -0.5995965274196845 -16.54550521383335) (-0.005156746260607914 -2.441292111823779 -29.75848348143111) (-0.6481358120310527 5.786369530376389 -29.93977962828512) (0.8998015632596944 -0.7857031292052362 -27.86363840027886) (-1.06509414969832 -1.367747075051815 -38.97818044041524) (0.6879438225100324 -1.904325180430516 -23.5705626272728) (-0.3739131219685592 0.3371841402250489 -24.11224722932932) (1.223486102292533 -2.116621492102879 -29.50917548963932) (-1.146942894504025 -3.161617229016388 -21.23290814251911) (-5.449710368324625 -4.046477837378823 -22.08935906413296) (-4.923939809154588 4.872831036730672 -24.6482507052465) (-5.18309905881901 -2.747119952180377 -20.03792633339368) (-0.4626169941127483 0.5948752316695061 -25.99083927609091) (5.381368767844307 5.337610636924104 -34.83808377033699) (1.649931577091838 -2.110044685421309 -25.46769868557811) (-5.251124196524293 1.847149664214428 -38.93312072074536) (-1.67725736669675 2.833151927291842 -30.93298876319637) (-4.002533681253602 -2.189039035462632 -23.37523529242914) (-6.769944687120861 -1.633599728077792 -19.42056420319648) (-0.8957557544113658 -0.5348026737217553 -24.54791530896535) (-1.699726353815109 0.8446580323859079 -27.83273741089522) (-2.754552686498695 -0.2092690195739919 -6.2663694697843) (-3.9901559036598 -1.012057785423658 -7.205701373195135) (-40.30498811025655 0.9019049195744393 1.531836455263337) (184.033184229428 1.624792695584595 180.9822122895291) (-2.830872502044488 -1.859577473359421 -27.17293438096355) (3.297593077354587 -0.4522739402562521 -12.77085381323906) (-2.560877073819359 0.6471052444121776 3.709452139053738) (2.676685496459657 -2.375134803991216 -0.4262366430857694) (0.5427672348699248 -1.390594768657752 -14.76075828361713) (-2.336905069217486 -2.863450456433747 -19.78509032545943) (15.47707301243552 0.5725971560434195 -46.10768139858178) (-7.098468767917138 -0.3677725105364202 -10.77488843724654) (143.8804381283973 -6.005259593888624 -161.8341460194115) (6.239372903254418 0.3688211468938432 -5.955456261223568) (-0.87079465093717 -1.619086713137785 -5.909921320049934) (-0.7530991222281643 0.002250818689959411 -8.539454254440539) (-0.09523653522608062 0.4502314394910379 -9.131590072216579) (5.767896404240116 0.684482375603115 -5.574331422807898) (-1.433506630893971 -2.503958025500499 -4.74896607751253) (3.288885351052558 -1.070275235464654 -5.162658756492233) (-1.534500037057283 -1.245337620780687 -7.055259667725717) (4.441197106840957 -1.126713135014795 -5.346223317350692) (-0.9058524502000646 -0.104432625623023 -8.442985883058727) (6.353524810955042 -0.3362610287788046 -6.366316023662246) (-0.5515208259150097 -0.2984912403410305 -7.497527304046418) (-6.664088458102822 -2.233920802516642 -6.589701315851572) (-0.2945275187414049 -0.1608815769371725 0.3696595324177614) (3.761950098928726 1.898427857323681 -14.96702417536985) (-37.14186575505494 -6.471141457753498 -76.095891288874) (-1.981747881906006 -0.3234939901446389 -6.281618856536268) (-3.023569466929402 -0.5021610887502063 -6.274182031924984) (-8.689342536154086 -0.8606430319766507 -6.041704212443434) (-48.59986088291827 -6.733750104535173 4.450813891278058) (0.4356165819340508 -0.9428113869987742 -5.643461355635867) (1.950626441387235 -0.7950662657004575 -13.4754851346315) (10.25931725347248 -7.167688326476574 15.84544886607164) (0.7440161386439075 -0.2192477672192822 -5.279176148516752) (-0.3924289275380856 0.3346191031344223 -7.161963672609708) (1.036215025538827 -1.092746206830188 -0.03361493749999411) (-3.685962752272607 1.875243882202639 21.36565489494524) (1.632468765139414 -0.3756038544491073 11.59184695634087) (1.983505238267532 -0.0963198818921602 -5.910593750422483) (0.3540055870288779 1.475568208015631 -17.26006001942651) (0.5111905378897215 -1.826168690080623 -16.97968877626643) (0.3784813445456273 0.8212867219433134 -6.740868357102941) (0.1407602966389559 -0.06902103936665432 -5.883404128270818) (0.2538085249284481 0.09427698065308265 -5.394489257379303) (1.096261036801212 0.2933787088063172 -8.34814596541665) (9.646794633074858 6.199516248434758 8.434467732436422) (2.907133511733445 -0.1344183755335251 -5.53203634503685) (-4.221326926158392 0.8474684909283363 -4.83166373099112) (-3.012448993720967 -0.2961304090876908 -7.59892081678361) (-0.4840645501709933 0.418784570762057 -6.221593551741889) (-12.19693859233747 7.203826536983648 -13.48721144246425) (0.155915084147373 0.1604081017974846 -7.130313389873526) (-0.3344122461485748 0.3251319182850105 -5.094578713256252) (1.292320847413905 1.106646654645339 -5.460990650057589) (2.835745586454417 -1.347738375720136 -5.911727648461723) (0.7725671139855509 0.8066468637187985 -8.101534098933087) (-2.957433110152045 2.019694394772496 -7.079542059930254) (-0.9538901899273315 1.862135180184692 -6.524632233846575) (-5.160819537223493 6.179505368720573 -13.37702741459877) (-8.289277961221581 10.46769408031479 -18.28015794340693) (-0.05140069200108539 0.07678721954815844 -6.313554240836731) (-0.102587812119443 0.08715436532613977 -5.990220536155812) (-0.009791354084950639 0.07450158775299942 -5.420464437868143) (0.1451612227774086 0.3411754489680551 -9.630367325356076) (1.953154880181843 -3.310697845068988 -3.048321718018917) (-0.454340762604548 -0.2907307815996091 -4.261708081452634) (0.1141990121018445 -0.03317871668431919 -5.573959457837605) (0.05310194506773271 -0.351885242890347 -5.730234717857924) (0.2104379999658143 -0.335587081465106 -7.025746589309614) (0.03879614688061506 0.2250120531254895 -7.623376526899767) (0.0284058845162504 0.2571539800013373 -7.36420985948615) (-0.01166788744987965 -0.23876823016925 -6.135341864104189) (2.869442538881182 0.7594315848806283 -5.108100829165072) (-0.1138892660963106 -1.084895475574202 -7.215563741249684) (0.04071652095409611 0.09850699392932322 -6.03326870580197) (-0.3538117118426445 0.09332907864185871 -6.690778831241385) (-0.582731237584224 0.2546090189007895 -7.779476064203109) (0.9699671879201799 0.1064934884950962 -6.831706612144867) (0.5912229281525092 0.144305516411674 -5.710130174226005) (1.321538814068113 0.1644451794819317 -3.928975341794887) (-8.472228688666096 0.2376734196938486 -27.96008258772039) (1.33182937310276 0.2031146482402537 -6.552675641912856) (-0.6899914721947311 1.727524816947479 -21.39773892688214) (-0.02045462907350654 0.1864788545447645 -6.252906395284547) (-0.01981024909653442 0.1531366045461335 -6.059552115855769) (-0.06902798119627851 0.1111723361635329 -6.813569603999635) (0.2525443467362247 0.4547433373778432 -6.533213233748165) (-0.4032935423222478 -0.05418776966792388 -6.961448163698768) (-0.01693206438180021 0.2173600618809417 -7.153388656647003) (-0.6004771686503966 -0.2133889954745405 -7.13753865743576) (0.02339428629108832 0.1433864773242189 -7.590458852775231) (-0.07297845419452441 0.03274968468654448 -6.791882790539079) (0.1523994294070217 0.1328533218730066 -6.819603469142506) (-4.287093360077086 7.164260060776646 2.903040335259988) (1.661260705054644 0.9454876892348308 -7.096672497865462) (-0.6928815523120955 -0.2197847530939926 -7.752590151580086) (3.51850999182813 11.2566764066245 -2.484882403160948) (0.09410416168091211 -0.270791809200753 -7.895417149422813) (-0.003551115641405186 0.01963477570080552 -7.267557786412085) (-0.09474126956098677 0.3754330362579108 -6.104476744581739) (0.5663989783329114 -0.0435902364861202 -4.664255744272837) (2.663422030778426 1.482281517938844 -6.249782518081394) (0.182039588910889 -0.4459243027365721 -9.517496861232777) (0.6426502595107915 -0.05725804943387718 -8.145175004189557) (-3.911253545177656 -3.280059834719588 -6.505389869966282) (0.2940719973025149 -0.7511453795576946 -9.098709890728568) (0.4852395258280369 0.2506669634553212 -8.247038317366123) (-0.1614873880552574 0.3308997514473593 -7.505527834597047) (1.081360065500427 -0.1115562580134007 -4.334292597854569) (0.02304659428532451 0.005218921398412381 -5.51198115843203) (-0.02732435876088569 -0.03964610818989586 -5.718715536256908) (0.1205128616794438 0.3243559039837437 -6.172292440807913) (0.135888079216114 -0.6460050493134208 -5.410763700977583) (0.2305652150072093 -7.886200034425833e-05 -6.64772010200996) (-0.05629750981199513 -0.01228675731457374 -5.434556247497916) (-0.08198535788519977 -0.003177185816839458 -7.190170770480269) (0.2799837252134829 -0.5281420038902468 -6.697797559404603) (-1.05427911601819 -1.20321632335482 -5.406981025544991) (-0.550819504574243 -0.01367314248902315 -7.180983037357447) (-0.1106352095323194 -0.09770845629586436 -6.954461346728637) (-0.08302912636319387 -0.06191182173853656 -6.63562393092569) (0.2856085376486497 -0.04704021094940326 -6.492364634242232) (0.02856510159426932 0.1505489024050078 -6.638563095644322) (0.07839661210429751 -0.1708209259820341 -6.914006899573897) (-0.01126675081080256 0.06961472286732819 -6.043721684732045) (-0.2028045944815169 -0.02272456106969724 -5.978267506942657) (-0.0129411947862708 -0.01678444403434153 -6.674844116854669) (0.4809682923203686 0.1358489912911909 -6.682333409066927) (-0.04454620541086 -0.0799434001401409 -8.85482126850461) (-0.0004843255531046808 -0.05363365129869667 -6.180530633893378) (-0.3241622998842207 0.140567632778174 -7.153455437076066) (-0.04709324213173131 -0.02827103336792819 -6.395233552718003) (1.039176285785829 0.7568095328088479 -25.75785528250633) (0.5668322709262897 -0.2902011132197429 -8.420506944261049) (-0.4204668874804998 0.04567955519007154 -5.633402834045721) (-0.2432564625242316 -14.44174068483579 -46.68734003034248) (-0.08658148925332955 -0.09691806351428908 -6.178665579552277) (-0.02200167850115961 -0.2480249104029414 -6.882650366646316) (-0.2655858666148496 -0.05403956397679556 -7.085909620052829) (0.02125426516560746 -0.03438206169818241 -5.724063687654771) (0.05353058833563316 0.01582974523699304 -5.64061457781487) (-0.07536045611272424 0.1768765117484808 -7.645880221153364) (0.09611330709428864 0.07192479348407618 -6.173960126629072) (0.02475171539840979 0.01554861230247902 -7.854074406668227) (0.1654188889578793 0.07927128602848342 -6.762712280108345) (0.1062940630115381 -0.04159818933376457 -6.580666975109059) (0.1139244645621269 0.002444810796344024 -7.507914000686521) (0.1457687342482853 0.1356716447309344 -7.292370012351445) (-0.171306683648562 -0.0044882452661512 -7.123104156210464) (0.3411177875659057 -0.05781929073989703 -6.217408644213169) (0.4799865731286643 -0.1398626929400479 -6.054258828462209) (0.1046533478662427 -0.04772864787764607 -6.146780551599521) (0.09266381734733485 -0.006254707517850549 -6.151666938298953) (0.2965814171420218 0.01489039337448108 -6.752592093626539) (0.02375633879247679 0.002197567046109912 -6.828118776660938) (-0.08108279166147303 0.03616479144177731 -8.305469806182849) (-0.1095596889573138 0.2353932802483069 -7.754016355501766) (-0.1742119838936544 0.1311870334385742 -7.409777182560255) (0.5392221686695755 0.1944165932132409 -6.554083680690485) (0.3274592888825204 0.1179405528032468 -6.374733797802446) (0.5025616580281423 -0.04962154005311722 -7.463112525365535) (-0.1738200061709681 0.1306898388194259 -7.184782773371207) (0.1180864372492553 -0.06541027696095755 -7.439092509945685) (0.03240967258249797 0.1392786534613281 -7.550541966563499) (0.4974808699819231 0.1946730720487826 -6.550004293005249) (1.175342877665338 0.134194735978781 -8.187768866136015) (0.04109735957926921 0.02595476191674885 -6.042023861277863) (-0.3375138433865131 0.003054130955865729 -7.228770975687114) (-0.0106703344667063 -0.009032135925291663 -7.673969094590192) (0.3743188603428426 0.0344163828833079 -6.816723134136282) (0.112521464712857 -0.00351283932679335 -5.410118902509289) (0.4360666999794698 -0.05797670642738781 -6.772125599885031) (-0.006865895038984158 -0.0683736111015915 -5.992002739293412) (-0.007974599065573719 0.05064544952360242 -6.179436195327491) (0.1739733683617783 -0.07990395330895544 -5.645902198495481) (0.1758949898365346 0.05302714267404437 -7.983952393161402) (0.05546385022164869 0.08250575943357626 -7.988189962257855) (-0.100374391069663 -0.04686619205316214 -7.124139642699229) (0.1723537384202352 -0.04200435597658798 -8.019889072991742) (0.5814355477672093 0.189799197155878 -7.548448168259897) (-0.06669674318856648 0.1166427597045016 -6.370060444450669) (-1.685033119119325 -0.04293107730326295 -16.23447137302792) (0.2537973746701812 0.1152279890563183 -5.678193814246393) (0.006197406209884536 0.01131490805835754 -7.080354971663899) (-2.378153736290184 0.1327895981266101 -26.82185012203269) (0.01742896112510554 0.03986552327250591 -6.075018630686748) (0.0811408159046831 0.03074446338059689 -7.336271632060169) (-0.04981739985634388 0.00793278294246633 -6.034626116527026) (-0.08467816187118601 -0.0100391999021627 -7.292676794292698) (0.05312785223371808 0.02106109005110401 -6.690254843992074) (0.002353596381119288 0.03701972602174994 -6.80189036514212) (0.3464522229088284 -0.07725869958447351 -7.680487090761074) (-0.004188078992183942 0.02124117916895002 -6.085797856698798) (0.05764359134120869 -4.435914659659326e-05 -8.026605824441354) (0.06704913806323362 0.005375209977047752 -8.003040302930827) (0.1081705883670974 0.07919569587393439 -7.735265342091666) (-0.122969646704813 0.03998785059417343 -7.530696041014701) (-0.04569712576383976 -0.003129511394471519 -7.746525186779005) (0.1935244858191776 -0.0587868508722149 -5.329130311171464) (-0.1282387184706378 0.08537541337879351 -7.129218648614868) (-0.1354301767030216 0.02283505533198849 -7.549524502529871) (0.1098022601098806 -0.01023304123849396 -6.766275022269628) (0.1202327574958392 0.08895481491734558 -8.112861811329527) (-0.02556693369187484 -0.2103003559180942 -7.778202535720031) (-0.08830870363701188 0.1988487583781169 -7.254392006316976) (0.02393052136321307 -0.1257464628411766 -7.564185690099272) (0.08487955146182849 0.00167992222570237 -6.47932441124939) (0.184998208676669 -0.006938371666205409 -6.547829956618052) (0.1442250911158223 0.0578467661196054 -7.22345138798168) (0.1387538391878406 0.04836133509870177 -8.938424555101165) (0.1256862067114602 0.1459550962987563 -9.459966806937448) (0.1796265376834612 -0.01387082113939336 -6.850323799592135) (-0.1846633041751946 -0.129052275060655 -7.027870567977772) (-0.385072691343801 -0.02159981660904858 -7.928800130054436) (-0.4229866877522703 -0.3563782955705843 -8.91211447648055) (-0.1614438704206212 -0.1660789070593733 -7.207361175253796) (0.02113966413434921 -0.07104983671343183 -7.723169466468127) (0.06764357198568309 -0.1087345097248067 -9.288066243906032) (0.02002682674598471 0.01401547304670763 -6.834985694822755) (-0.0211140572332212 -0.009046005051510497 -7.698122114241764) (0.3030738945229794 -0.0370734083155459 -8.089918276640782) (-0.1290453113202967 -0.1038352313629974 -7.713021029696539) (0.3788564640837109 0.004352015735128466 -5.98517944938382) (-0.03492483335365509 -0.3398324062823673 -6.385904606518451) (-0.06223416256291796 0.03292779166634859 -7.154117770839926) (0.03624076797140936 0.05551789833015451 -8.68368270202415) (-0.08904154767230775 -0.04583953100152838 -7.175228659028135) (-0.05695848539694522 0.03091479099007508 -6.81843239587847) (0.07511320879973918 -0.02635912925976296 -5.508786596925717) (0.1855113273754214 -0.2804384044955106 -9.070052074683542) (0.07974283052224895 0.01463376997342748 -7.881148889811924) (0.1941785571902304 0.01443616570511527 -5.399303590871317) (0.1226681154226921 -0.01802598483110212 -6.532878771983995) (0.5780188283608092 -0.05096848626985839 -6.449557450629252) (-0.1327525841568203 0.0357689029524079 -7.534091034361573) (-0.05218959235998651 -0.04199714906889082 -6.785614458314937) (0.3482671204643947 -0.04198590863551847 -7.600145250847494) (-0.8332662684697552 0.2745659525738812 -6.716476121783049) (0.3497190047449344 -0.01185187978086553 -5.234177093527674) (0.165213969594926 0.03550453190585851 -7.673358564040411) (0.1931685720897036 0.1088726862014683 -5.346993934554435) (-0.07758669508438275 0.02577323123745056 -5.282227921359947) (-0.03020166094872215 -0.004407442837076247 -5.113285374922228) (0.04447246600333743 -0.05285887950829737 -5.730591067483942) (-0.2508680169903674 -0.07649154975131375 -7.62984416068084) (-0.004516255600664723 0.03599342285656628 -7.447660883238448) (0.151013137337592 -0.006533496595633913 -7.521308666183431) (0.2033692067881652 0.0859872522675358 -6.511893294261109) (0.1750868152875072 -0.4610959687524541 -7.527838355820718) (-0.004746196249674831 0.1803084054403623 -7.287199927749236) (0.03769460080280256 -0.003402095119332905 -7.000311060938917) (0.08747759620903592 0.0637168409613649 -7.024166057131453) (-0.09226883867764896 0.07990675332232647 -7.005151205975443) (0.08421927009881254 -0.06944701562606859 -6.044822561615699) (0.2144397858040102 -0.2353724883045852 -5.709344907158663) (0.03728347368578244 -0.009621291520769872 -5.564672768929618) (-0.08765536258048245 -0.05988832866143214 -6.054820619139673) (0.06046715845223241 -0.03740195941970032 -8.634187209919368) (0.01572546111145631 -0.03031048937505738 -8.748884478382921) (0.3142746462370398 0.07991171275705874 -9.271670923088058) (0.7699772394525844 0.02561360887703208 -10.17137469341779) (-0.01913517558255398 0.280644002149297 -8.085397302833035) (0.01626807900081401 -0.08027169703148129 -7.252769613721298) (0.2200478230119035 0.02526202987287908 -8.958417612165206) (0.8137362521723113 -0.303555818018578 -7.136008858284884) (1.490845311544513 0.1385871994529898 -11.48176699908506) (0.7838545921925274 0.09478936241133529 -9.162634637801077) (0.1000444939465975 0.01340267262739123 -8.234396309435537) (0.02507628335616122 0.03174736474141231 -5.911961431218393) (-0.1008417746774441 -0.02537470627662185 -9.923985376097551) (-0.04764092438750152 -0.03864654394774276 -4.844847149770008) (-0.129534775022044 -0.05023998372649653 -7.029242726481963) (-0.008221721020200787 0.01989357381278146 -4.836140153566576) (-0.4345861757378386 0.333951544805803 -9.067176276801215) (0.0957558420384254 -0.006216884271446749 -7.931221898123289) (0.1173322811549776 0.0528417242477134 -8.08651445324505) (0.06789824084622527 -0.003376734082480907 -5.861169086341005) (0.07158461289925259 0.01103472954932132 -8.397648629713474) (-0.4779345076076347 -0.03403571606144237 -7.848434370923683) (0.1542794888087304 0.1067373470725891 -7.949998788817197) (-0.006334769930290279 -0.03593068923789329 -5.19607438118805) (0.0199217393922904 -0.05465521289990985 -8.476256017333677) (0.226150081630656 -0.2007608695559593 -12.65218503211669) (0.03729069491543269 0.1339557400469439 -9.146627172621926) (0.06824754606386563 0.02698692191306776 -10.07842815578648) (-0.5577081476887717 0.07454823437086722 -8.983650067104552) (-0.08539153423426615 -0.07757431454263912 -9.07710828000064) (-0.4599427702099646 -0.4207692347205248 -7.35321883278799) (0.07439960472603924 0.07031832796602148 -5.337682002695478) (-0.09973834145641111 0.001838509422306116 -8.622400580326108) (0.06713098246233387 0.04499573357180131 -8.929926158519388) (0.008489097318851876 0.2480811438177788 -9.893755069246678) (-0.1272526089998739 -0.1629852226315206 -8.961920361404484) (-0.8646382355499848 0.1963713678929443 -9.301158266769765) (-0.2942499762744061 -0.1980179463985177 -7.037762697831782) (-0.05922344272043716 0.0409007787944464 -9.323601250607025) (-0.2094981630251282 0.005127117198241728 -8.225931206019805) (0.05698220526474329 -0.1570646832724586 -9.864561064128115) (-0.4654896506007604 -0.1192507746885672 -8.916726921174055) (-0.6537157576382959 -0.02605988923193287 -9.113749852651004) (0.2416862811810105 0.01399376150554402 -10.39821693581122) (-0.9547441347171566 -0.09701151179185816 -9.399057204785228) (-0.1331089958193128 0.2106850082698214 -10.14843005089111) (-0.1114848188100446 0.6676034348660745 -8.680580826260787) (0.2063722209891477 -0.1210820499017277 -7.011871348032861) (-1.653992659966361 0.4002799390180033 -12.23299479954145) (0.1787590605361296 0.1102526511683748 -11.18178803847192) (-0.235158503850343 0.02424232629577711 -9.530989749626487) (-1.094481308956446 -0.06859102908703328 -10.07180457850842) (-0.06638768269336176 -0.1454529867784577 -11.84891477521096) (-0.04667060534105249 -0.09514958959197053 -8.033218831713224) (-0.02286212929055074 0.001337676384283519 -7.555083580577849) (0.137664648363521 -0.5019939627665878 -14.6376897727616) (0.04974296468150117 -0.0242301852139155 -7.590047875069939) (-0.2108276605573282 1.081318951578613 -16.09368712375871) (-0.3860182217153494 -0.07702017313722635 -9.375754408197571) (-0.4452469423363006 0.09936381954519427 -7.832555406164797) (0.3613724400292799 -0.3403450739533844 -15.64342491217706) (1.671363976576336 -0.4811527773086315 -15.39753163022636) (-0.3288156608089271 -0.1470711423074049 -11.68328256023028) (0.2997621515587108 -0.1854168393652518 -8.811929669211432) (-2.415008366173501 0.002031367878878386 -11.69422412352479) (0.3607693909951412 0.4313777869546864 -7.048178584526438) (-0.2136253353497613 -0.2222976201423343 -7.232081043720409) (1.635062883767264 -0.2484455321348069 -16.6993171479283) (-0.614057296493089 0.4600427408292864 -10.33656601681006) (-6.239087566670326 -0.6215260083971856 -29.33661325295737) (-0.2876111452680776 -0.05638631804468594 -13.94623326862442) (-0.7642693907734108 0.108356353496332 -9.360785399596166) (-0.278134874804835 0.4068236698014241 -12.42960531148359) (0.2865471445975112 0.8469260330226368 -14.04841097194961) (-2.227450150173775 -0.3974706569549766 -12.2649546624863) (0.4057546196235869 0.4585461306639234 -8.117377082606417) (-1.492524610500085 -1.079487260054477 -18.3912783073936) (2.060412938577084 -0.5179396634169339 -9.197241421260431) (-0.4784932034233698 0.2255194078426392 -9.663431121433137) (-0.8668568859903667 0.1533948329694493 -19.09596212317287) (-0.2277689074843864 -0.3159082959842923 -8.945487875369782) (-5.426530302241277 -0.7724024311926971 -7.857347243463724) (-3.094694147235121 2.384156636250091 -30.4815697160066) (0.5963352639682148 -0.07936186553978428 -13.63343277909947) (0.009177839446480471 -0.8206134201819464 -17.36419664293095) (4.76299321610035 -0.2768826999004036 -15.49410300603369) (1.945155538128124 -7.637038989824485e-05 -11.70323081233665) (2.931290755692373 0.3782315817499575 -11.80554574381772) (0.5817702272138087 -0.1183498322656344 -12.96360504112921) (0.3742740876142606 0.3939760223320972 -9.945186680631718) (0.09351357832057133 0.8342898894312778 -14.76327784837166) (-1.027417839751088 -0.05008192152690127 -17.17930061584713) (0.6679177980856856 -0.919709885045541 -20.99301797432816) (1.501605883682897 -0.2110973740226579 -18.17425440979981) (-0.4683497607226451 1.272419201690017 -15.0085273829629) (-1.736939587587891 -0.2843390836509613 -13.75009620847813) (0.1353939315310256 -0.09587267284418907 -11.70839761264924) (-2.817349876149831 -0.4453920923036069 -14.38575954404402) (0.2120053957262653 -0.1989306136688724 -8.253506948508727) (0.9179689067496173 0.4518775924860637 -13.93133251636729) (1.635302466656114 -0.5421246095308129 -13.14098499827015) (-1.62553458124885 0.6612872251719466 -13.45119640805197) (-2.502677075362248 -0.7376578068192409 -14.84896090792338) (-1.037648319172191 -0.6046548537402298 -14.29715045021115) (0.445315351508923 0.3936603721492721 -12.73304762126275) (0.4528705221405538 1.169867856284158 -15.68201940857786) (3.158338412771304 -0.5735902837925229 -22.78279639532925) (-3.534053830718017 -0.03518228403159085 -15.06465195394981) (-3.154728674930229 0.3240408845798397 -14.42281719957008) (0.05174395380921112 0.5281357672867284 -13.62178538818415) (-2.28250687827423 0.7855492739885996 -9.042369396834854) (-7.079635353262828 0.09465247287225831 -12.97998883695368) (-2.909107500374138 -0.06938541187632374 -12.32979107997068) (-0.1186299674365122 0.2751149217938416 -14.56833084747142) (-1.165516395707904 -0.3280849362577419 -16.1670102135622) (-0.4806111238418779 0.1662957756530235 -12.29955655909441) (4.316438979011433 1.78650087867269 -16.6343706504892) (2.411084840435244 -0.6231659634520327 -21.6934147488295) (-0.3880616289565123 1.294819189753621 -16.06984799640362) (-2.42983566389894 -2.964661655053539 -28.22469692002791) (0.8616368886069876 -0.6587973790766822 -18.26171573403646) (1.084383245248679 2.368619395361717 -21.07484456197153) (0.9186774136360041 0.2158694148564708 -15.84845041036907) (0.7025517548275784 0.7078757788815195 -20.74169463399081) (-1.768545004633602 0.4526089443757561 -20.17392093940407) (1.029448329081154 -0.2431245366694376 -13.87798249920758) (-4.717999638570191 -6.368268613708822 -32.10155529293991) (5.62253845867775 -0.1266197481076763 -13.38387424455545) (3.223649903372931 -0.129572951243173 -30.23425026908716) (-13.72424380590027 -0.1653142104775709 -18.3688556531952) (0.7599758992586119 -0.5129257080953104 -13.52923328445604) (-1.116614102129752 -3.075123727784015 -16.99104029290597) (6.980952381178544 -0.4520119978412048 -24.20884010084482) (3.118588216019922 2.551562325656685 -18.2093639027416) (-4.384441224937725 0.4103846837070799 -18.8555259422084) (-2.497754223692208 1.15473606398315 -15.25486893386014) (-0.3469213638653215 2.786725466712741 -30.38403902489439) (-0.4063709806479072 -0.9286589926033115 -15.18494597902919) (-0.4136711919218616 0.6069332635297273 -17.86331615788043) (1.873892228424676 5.094104724943624 -29.29839278772619) (1.155821418595847 -0.8899632388760095 -28.11713129569524) (-0.4502601133864556 1.143379175290279 -24.53914189671397) (-0.2676074627987112 0.8723747993850788 -40.78278029496214) (2.217688744970024 -1.008416526894533 -22.47790200527842) (-2.66931435141621 0.8959964066486352 -23.43934737009413) (-0.7786425718442731 -0.08369390599453103 -13.32524344823408) (-7.76610533731187 -1.017074879886826 -21.41172179764726) (-0.4968761292276138 -0.3630546321815444 -19.08625579199174) (-1.011308019517272 -2.167960429071154 -23.53053131699376) (-1.669056841527137 -0.2931866876856584 -37.8286192174938) (-7.092784279471451 -0.2837597988798831 -19.95556696216273) (-0.01002742041687835 -0.9628344459478377 -13.32022663636169) (-1.237460155334264 0.07291353081011022 -13.83958815229079) (0.6309813559971145 -1.420420287641638 -31.65217464219539) (-1.154100057948054 0.3594401551359324 -22.9943156574517) (-1.884213397367458 3.044623262570252 -18.15408278885685) (-5.762953100359118 0.6454257827744999 -25.50737645672039) (-3.095352565266508 1.706937788084955 -26.66226152313511) (-1.459368801911826 0.5452241419310977 -33.12736637573069) (3.291267360125554 1.461154521838387 -26.54477998570433) (5.023026368234646 0.03278622197159975 -20.65735165363816) (0.895277190184288 1.355015872143438 -18.89726902121248) (-5.308046453869599 -3.353800517975419 -18.43880327766162) (-0.9180249837967431 1.005527161330023 -22.47005819405419) (3.412447725160618 -0.4470890587633243 -29.20855227770814) (4.935355441280793 -3.659186342247805 -27.72809588514784) (7.942498363341286 -4.676000565463566 -16.81849645369629) (-5.767905961381691 4.390758507684674 -23.06509317827964) (-2.754351354451731 -2.758930423115543 -43.35948585956473) (-2.083149697895656 1.028092812578405 -25.23128978602888) (-22.48009245052 0.5866759834143014 -27.65195129790776) (2.888936927023217 1.520616550721026 -34.40028340435154) (7.295628761985345 4.415833214048422 -22.99933444310618) (-0.3684664543151921 -7.932413819021058 -30.67272790367461) (-0.9777137034029908 2.167850640145411 -24.44997602349061) (2.543066695392139 -0.1083241220243339 -26.44894813935055) (-9.348549697739704 -1.125785038568957 -16.52024382716498) (0.6065466618884368 -1.108873170151355 -20.94848268727491) (-0.05513646201966294 0.1087496734437312 -34.83803768119951) (0.6418812630140851 -0.6004207091328327 -26.23542068860948) (-0.01108975741763848 -0.5519414572757119 -13.8583329136997) (-1.294437077266489 -3.407653457124709 -25.18654205055782) (-0.2541827418443906 -0.1025150818834015 -22.22149687300521) (2.937902808166027 4.683884858473835 -48.17810215993308) (0.8475830880599267 0.5525682664634926 -21.58946538576542) (-2.384492486601133 0.2446035754342916 -23.79741989314024) (-2.715703063577917 -4.916309694624086 -32.3168053966179) (-4.854933161637236 2.03618347828471 -29.38294754725424) (3.842621432853787 2.072573194384715 -27.08030625752226) (2.89437735757312 -0.01995015148702906 -24.06721161765705) (-0.5563832434127396 -2.118095640042013 -21.25963716564559) (6.224255276523763 -1.783569632450619 -25.57045811944002) (-21.83980655065703 -1.961761775585743 -19.72396777809344) (-3.460552394367081 -0.9450740521369384 -24.93515123804611) (4.612582438714762 -3.128989796216355 -25.70378805455927) (-7.954026683511305 3.150256197985118 -25.58253901336222) (0.8211108238345308 11.60384162821832 -24.14971504821597) (2.686931881324445 0.04160969633372585 -18.59404916527336) (0.3816603102519099 1.706329842855611 -15.41722321926797) ) ; } outlet { type calculated; value nonuniform List<vector> 70 ( (112.1515095102001 72.09702281247392 122.5275746267643) (5.60854127042584 26.58185398580743 -0.2455756301552221) (93.44320009144397 43.44301299135843 -213.2956013690143) (-13.41185275286464 -38.66681192146626 -6.847271413400698) (3.197811228518016 -6.340484289305198 -29.80257239741013) (0.3578570971394178 0.1168271659841006 -1.188232991358732) (0.05729055316456805 3.715844143565302 -2.597280666371522) (1.525973293524205 1.341792719782853 -8.763374522128418) (-0.6516356059961215 0.8816726260617835 -1.56683603172711) (1.448443297750518 -0.2929959525090132 -9.994400107357208) (-0.8182330448075052 1.957828326534196 -2.256358225244192) (-2.615971613947475 0.7653508172812982 4.717410132664659) (-0.3707103546186325 1.233800821260967 0.006716429583392136) (-2.738507626686375 1.031705724615802 18.04172551967575) (5.143332268946041 2.733120233829855 10.65103150820191) (0.9769814766639238 -0.8540937501860884 3.290087994370761) (3.143471035695979 -7.07511761601589 -0.8792527167726034) (1.983887946683496 -0.6425119012262464 10.26560821154371) (-4.60723812240915 3.374588590528191 5.036319853251586) (0.4938989531373612 -1.373746158941271 -10.6075188227327) (-0.3366895291110086 -0.006298467592942836 1.174754598976744) (1.121374135687537 0.7504395310037597 -3.707032931822418) (-0.6805898660434218 2.808258732227413 6.307213116379319) (-1.279792886392345 -3.899527752310453 -12.36384362748405) (-0.1659611315846217 0.6216646185057795 -1.751109078421454) (-0.6472251335626363 2.364153356206275 -12.23220041795362) (-1.259521022639686 -1.07566038948794 7.148177182776285) (9.630338196934435 5.740232147983646 -41.78562370407239) (2.219294145871656 0.6281898486237136 1.892133703503558) (-0.7429588102505804 -0.6783461879136693 -10.25197311347162) (1.54535251964574 -3.410784528939979 26.10447523105465) (-3.563788340304332 -3.047802546989566 -7.092045994484525) (-1.605753739314382 -3.97324120115108 0.3892394843303442) (-72.44011336627447 32.51725701694565 45.64342073771124) (7.361859142074505 -5.164396733115188 15.55321663501786) (-0.0777167093047782 -9.12689927738572 -2.891552908183008) (-15.71719039751299 0.2240847755160758 2.61672736882006) (-1.716602747621793 -3.275208022792076 4.248582007122127) (-1.097678075327169 -0.05227225524785872 2.475256474692431) (3.482402100947307 -2.381647507960098 -1.59695143377892) (-0.441029637766063 1.374856864145273 0.7407626606584001) (-1.163126910915268 -0.9158428935376781 1.674490182732226) (-1.974922238033399 -1.072576039393264 2.545363173489901) (-0.8383047410716027 5.827940544298786 -10.81963645561487) (-4.84091860225867 2.264656474214076 1.962532199627923) (0.4470013678524404 0.4389992817561235 0.2135274088066077) (0.08803810013086621 -0.458780524976409 2.515506446236869) (-0.3703438437592884 -3.668570816137048 -5.332731963907149) (-1.696041616113156 3.421533756446234 3.09559588244802) (0.08483736132635818 0.4364560694883168 -1.285461122426004) (3.561070820964912 -3.394233078554135 3.490609557232943) (-0.4128604339418179 0.7312505183959198 -1.61329993458079) (-0.01253628391571582 0.1602019679434271 -0.2320053877912864) (-0.7763004642231216 -1.311118849636658 -0.4347177539011148) (-0.1305250663270464 -1.628995014843387 -0.4041486318520162) (4.451888718957793 -9.689384829780732 14.83160039690056) (-4.078751410939473 0.1904825590029267 2.410401486249944) (-8.119819402522593 -6.586790328639715 -4.738826268176104) (-1.093588817299718 -5.868783855696943 -2.946729107168117) (12.11869910511129 -36.61285563706323 -0.9723817784660769) (13.2900974966033 13.27721972325944 -2.241493159859964) (7.907310144101921 -4.306090079088963 -10.40678246577147) (13.04204260440632 2.168940290727086 9.978008064164865) (-0.2753662953485536 -3.10423183501966 -4.633752725122799) (-2.84263944005213 -6.21579445630398 -9.236558983912648) (-2.167084137220384 5.499194564289965 -2.243503300282156) (0.594376354862626 -27.33710286972796 11.93116804118588) (-3.07922487605779 -22.37581720525808 8.61961641248708) (1.061252671380921 -0.3943631821408388 -5.180898896113231) (2.592791750699334 3.580578490918789 -3.408250494672111) ) ; } back { type calculated; value nonuniform List<vector> 31 ( (126.9643618194128 -70.80047131147447 107.4404102377514) (0.3463219830975426 -26.68035339842196 4.789563104141885) (-0.9618535564065682 -0.4686832184142357 -4.74609790715069) (-0.2163524202240844 -0.1098875188029823 -0.05114811951276187) (-1.424467065434215 -0.4201155665166011 -4.754473864405045) (-0.4778864493950621 -0.041538725291882 -0.04547786222353037) (-1.613767628316347 -0.6907141902103551 -4.700602333640801) (-0.3574075696380664 -0.07840947418365657 0.106806405803334) (-2.296174613527977 -0.6769007981028456 -5.097095323721786) (-0.6978659414806587 -0.1785510099264078 0.1875821072308148) (-5.088998739403632 -1.411016478563152 -4.600513914516084) (-0.5487577893282276 -1.29355302968858 -0.2715269600358279) (-25.61648788451557 -3.401359786454028 -2.163837596222859) (-0.02085469842178522 0.4099794100602026 0.3161718471378285) (-12.26835379817132 0.1180806285248917 -11.27133405657732) (-34.61381636439148 -9.755414133355117 3.192405850794036) (-2.9512521741627 -4.068836243249208 -5.588538805763097) (-1.899603373871256 23.36216210176121 6.001540130772793) (0.172067010846447 -0.02842980066028142 0.02234709325427483) (0.3564881519316644 -0.2120686299154798 -0.02240248234492203) (-0.09047945858210896 -0.1157702507136285 -0.02447759813979336) (-0.01086179694615408 0.1483047771571629 -0.130510357851178) (0.283426449286827 0.07607127445379058 0.01267196278660048) (-0.07283797971629621 -0.6938358572723826 0.07885127664066541) (-1.249677165378477 -0.5255374343572786 -0.0936790654004504) (0.0680972320562081 -0.9152096684206605 -0.08483413358538755) (-0.6507976444994847 0.07831793897538764 0.1573514344130342) (-1.284413959250557 -0.9141194530463843 -0.3986706170248507) (-10.33868048183486 -4.975905441694074 4.927826649253479) (-4.322626557847881 -1.762704150940092 4.529777934409884) (-0.7914588388286686 -1.066758618835179 0.1332853043010693) ) ; } peak { type calculated; value nonuniform List<vector> 969 ( (-0.742916631405421 -6.069229589878878 25.10130186378937) (6.409447634850924 5.648971436965166 40.16762618902766) (-0.001151614948744532 -5.691239896503875 37.82531378891186) (1.460629505567537 5.05797605295003 26.3083394949652) (-4.482320598465685 -13.67553807832522 11.01328915794875) (2.392855613801996 17.89660230449827 20.030320469524) (-2.719204236649568 5.018002680750861 23.35624286763369) (-2.124889039102274 -4.746427818307016 31.17772112734846) (-0.08407146272685473 -8.042178322020478 29.98536993570476) (-1.19790432135358 5.885862648989732 28.0284998533366) (-8.602796670088551 -5.759633513006681 19.5974453550272) (7.400549857189507 14.1623317718696 19.97625470040873) (0.8585522207584464 -9.130316048922687 28.84403657245) (6.962506004105507 6.773230847610725 15.26598486716577) (0.2719594229924577 -5.187710674852143 32.92333307222085) (-4.486928686863611 0.1808156151594958 23.42162733500257) (1.019099795630776 -11.35638002525137 31.51787156610353) (-0.5548625839821764 3.039566943348628 29.20995241438914) (-0.5007513091479159 -3.933971452496307 26.07379609069311) (-7.481545613179237 -8.541316805191693 34.07929728929189) (-0.5490463808503359 5.986490064026379 32.677637697409) (1.718129639376357 -4.106736978591234 25.41000586361908) (2.441466011607043 7.058176310181031 21.74906964884368) (4.665921111482948 -5.244477271712795 20.8375275817923) (2.211565518156335 8.368225691673651 27.73443141842284) (-3.9296246962101 -9.412242357937087 19.5606337193531) (8.839038485343446 14.08050217623614 38.19609554837096) (7.134165680718629 10.60122692225098 25.81737394055389) (-0.04798907647820094 -4.494708484059578 28.61176710150502) (-0.1811787446638982 -10.51995310178863 20.20037018529934) (1.017949703314529 4.037062141580495 26.5505590602632) (-6.163366758284418 -12.15988938110672 46.54800310173) (7.596342079128837 16.39564677653906 12.74259379731633) (7.635944023658116 -0.2039729250066987 29.84516049804228) (6.048061279943079 13.24547267866042 21.23181222844526) (8.079353201484924 11.13303730215245 30.85410977495545) (-1.439780853098342 -7.51512330993763 12.42814229115304) (1.164528671460894 3.051080961624043 17.57007939161442) (4.992509780590982 -6.038271103390706 26.94628524954969) (5.192369606752004 -4.227496545444486 23.69397682373648) (3.708216564949735 7.924819413673275 29.69362046073806) (2.655343252296039 -3.695126262908949 27.6158289738191) (9.192486574351499 11.48424296537409 30.7326355001619) (0.6386664722816762 -5.438551852740956 17.72886680638437) (8.114513424040819 20.26808289895416 24.96288771969128) (-0.1863123691595773 1.185845192698382 19.98094591285617) (9.029728052418859 27.82744926617979 23.38544133683571) (-2.004268530891228 -13.49441339338343 12.96487810903634) (6.967140025941417 23.34970952707584 18.33333338392733) (8.681221913200016 28.99952880137337 25.39937162349707) (0.3285125042914228 -6.189558229747323 15.58709930380112) (4.029252066578311 -4.207977228259256 5.501824205043562) (1.704372279950038 26.39304175947984 6.28006188782037) (4.051356756254711 28.84685344322559 6.093489383989497) (0.4575817259471928 -2.22615332944696 8.376234179857112) (2.014106246232716 18.79579809122548 2.019391097395143) (-0.3841168689797647 -24.85065702392862 13.40489784025904) (-2.131872592542714 -10.22642912623894 7.103529568628885) (9.947861638687304 15.95098217043141 6.037968443348364) (0.6210447219865176 33.60485563173168 12.79374252714368) (1.441304408384319 -13.29500404707398 11.26758909310294) (-1.56803799024342 -2.638604829575021 -16.16041896609375) (-2.870347780481136 21.12846400489306 0.3080863674188903) (5.618662188783284 -7.106058020777867 26.89936399757248) (14.37487269619468 7.237023571372021 30.58206248757513) (6.264296833860993 8.025959800948447 30.47372296617606) (3.255766794745306 -9.937713995849684 29.30241966015272) (-1.928827660700101 -6.740157319600019 21.42928076732722) (16.6316800201047 11.74366894754941 26.8236557456019) (6.902933360711483 1.17242640289348 18.64615063343978) (13.76347230452678 15.86958455415526 29.92098984316459) (5.349026869192552 1.910607803724961 24.45091777409885) (8.668856808812041 15.92361258930355 27.67093524209945) (-4.732527302549402 -10.13934440930745 -42.62842171388819) (4.365655344622145 10.82055774098259 -80.54250802067833) (-2.435426376215732 -5.373519027124654 -46.15860115721847) (-4.81880827188858 -6.637245492779245 -67.40386096649783) (7.897656452101931 18.33961974093011 -68.99032957287402) (-8.467490434766656 -4.065976007122275 -52.0658014954685) (33.51936008335176 27.27999621585285 -68.80057268972273) (0.5023676618629702 7.812349127421363 -70.14477735503874) (7.525554099574684 20.2845024542751 -60.27959758919278) (6.654258444181472 -92.20232098846529 -7.915202102889651) (2.898289145394636 -97.09597225420373 -1.444085812412557) (-3.921314663961528 -75.52962305825069 -1.706528180569534) (-7.291764235313646 -68.93860827597828 -7.688209278968063) (0.8700545653586651 -86.96163245786671 -4.358346335020474) (2.727902021410418 -101.9695491299547 6.745030121396942) (-3.221491995872643 -82.38956541569047 -2.967846932796993) (-4.385214918778076 -83.31143831163817 -4.020647723018621) (0.5593613095080996 -97.10380192033514 5.513214123132713) (2.275243739340865 -62.17779992017655 -10.33963326899964) (4.25687864842461 -77.79569831528325 9.197772771611985) (-2.548431318690876 -92.35148194410486 -5.246040769912312) (-7.547101198634117 -86.81852483797648 4.47766793737143) (-2.610697979993395 -81.3207669385361 -13.10610021801023) (-4.188904737225073 -73.93958064856136 -1.097033785435043) (-0.2835162650016798 -83.94664206473315 6.908330480376542) (-7.623727773395963 -68.22786375903104 -1.156827994140495) (-8.116747363321782 -78.68600783156593 2.516646292704532) (7.032812724776703 -72.90907524468685 2.953289005133965) (-8.362129270019212 -106.6984103073242 10.10412745720606) (-1.914483634510035 -81.48261031440542 -3.524267863197762) (-0.7537873114090834 -77.19426935239419 0.4339733074748012) (0.6214325613056251 -90.14635327737386 -1.032758077063227) (-3.893960173367782 -68.18461454323035 -3.923324511453502) (-5.073815868040822 -76.7154723658735 0.890412449555261) (-2.611202608429495 -89.55524233392875 6.33539295086203) (-17.46061559965064 -86.61382862907637 -6.188356919724123) (-1.749307902526921 -91.63598594207562 4.723170723173527) (20.66841696699325 -74.50298817912072 -4.671317751294333) (-1.765158818464841 -67.30680665680954 -7.572376842698713) (-7.547393371288191 -90.82981514891175 -1.778178709531677) (-12.99149235384665 -118.188997312198 14.99192699618748) (-14.20050159851899 -78.11099748165768 0.8415464278560387) (-2.184137653690021 -71.82789489919308 -10.6807626490112) (-5.774373422839647 -89.63070143167396 -1.281953823596656) (-7.076133403506714 -75.11757311851358 0.846956766780407) (-0.90003267872015 -81.94420657991554 -1.53955607102459) (5.545641037016373 -54.16344706614904 -5.208285711380446) (3.872725928277793 -47.66748433558723 -3.440646026104742) (-0.4773717596494196 -55.42766842923394 2.495541417787832) (-4.738313404687392 -48.97818480558657 -10.62547009644526) (-0.002657292016720492 -54.11573534680411 4.872617584333808) (1.571566994225526 -56.62705040538823 5.226833182860082) (4.666175125850231 -53.22787271965734 -0.5500547115725227) (-0.8766830675500591 -60.90553982690335 -3.40162321987772) (-1.078123539903904 -45.41675184009508 1.016893932351526) (-0.5392176686349917 -42.43902516393914 -4.809295770430905) (-2.184856702193555 -55.78330706723162 4.767227696841342) (-10.31987906067653 -43.1462714166929 7.047221796150101) (-13.09122554180677 -46.22237228891068 0.4633958648934176) (-7.223364449487948 -39.39586082274714 -3.003463932794178) (-9.251339952588971 -32.60341198529702 -0.06492592356303795) (-6.133121389722737 -39.85140409709534 -3.623556106772749) (7.057743705462295 -19.1846801260155 -2.826137870140099) (-9.377793397285126 -21.49533590562403 0.3865697583515897) (12.08438502915597 -33.10641026746046 -0.3173739785277401) (6.305251911642323 -21.74561449502707 8.378674552041376) (2.746089297096981 -35.94357593033661 10.96322059128712) (23.12544844734428 -21.32480575262685 -7.768762479677335) (2.393074174293031 -44.64848127431079 -1.462454915647334) (-3.003712603307001 -50.77885216409841 0.8039632978129929) (7.03524655160948 -48.18282682600925 -7.507413489047462) (0.7540240263265583 -53.64631788723199 -4.924034100483075) (-1.875725880735517 -30.31234251596427 6.585955152668294) (0.5135598795869196 -36.98610805635317 -6.665871955895399) (-1.307344625221019 -41.26068777340355 -0.5860072554587762) (-5.174962730272989 -31.71233130551232 4.071913932049386) (0.9767159430278296 -45.2207553627886 4.315155838205404) (-0.5304592096384368 -56.45649716428039 -4.67820601811307) (-2.391028261557492 -31.42372144043924 -3.535775672784656) (-5.440654981520051 -37.60005619474692 7.750877936813426) (-2.75449134601218 -56.76636789850153 11.49706383315965) (-1.993296456879497 -35.17237663153833 1.606578806618153) (-2.672079183733765 -50.12017172474978 1.115249747920261) (-5.966806044161472 -68.96877597432795 6.945851152579546) (-3.451925411069888 -35.56518413272037 -0.03609347345525948) (-6.546106593230697 -45.67587816314254 6.030510027024373) (0.6370202551307188 -35.90095447992665 4.434786709282969) (-2.676396325919493 -36.08318549169654 -9.091071770419202) (2.124549140781792 -32.13079055486745 -3.787203846886158) (-0.9888934448606723 -33.24461817285496 3.846588243924691) (3.288575834870744 -36.41341990237203 12.98535805467266) (-8.936376302512254 -26.04207832457174 13.41162522170492) (-2.780415828345355 -39.69628483970324 6.490254218688085) (-3.027516135088781 -34.62130223061364 -3.917862000203772) (-2.764444032239765 -39.31804603278231 5.158470792259874) (-1.899376463008029 -34.84195749446475 2.723681519170714) (-1.199725983643003 -38.79815495048486 -5.10515004786008) (-0.9929698191952335 -45.91056770281508 8.26191644216509) (-2.458524048235695 -32.78944216650245 0.0187074180767306) (-4.647786937071023 -61.38779671635434 3.573209253286694) (-4.710757593683987 -53.96550362785907 1.766865115818467) (-0.3961173201919592 -24.05342151253093 1.493109242994319) (3.351239106008719 -27.9485456048297 1.446820846434825) (-1.710243837688131 -28.57897905488906 5.361513125150687) (-3.449009200253082 -26.84439774855267 0.6559378798078603) (-2.220403612036652 -29.47205979811707 6.759690512401931) (-1.015466421797495 -33.32765148848488 -2.964495789115337) (1.855788654989525 -32.28486578025139 8.582232693080128) (1.364166869811867 -26.7936205677567 -5.99307937950349) (-3.439531370839441 -30.91743175911757 11.34750954022032) (-0.8832795680945671 -23.7926629203528 -2.602710830735339) (4.821357504907127 -74.52343630959598 -8.09940873450372) (-7.775081878995627 -54.00394043013072 2.550993047168053) (-3.93673363413134 -87.55120411902411 1.7961335473459) (-7.174605685112516 -69.68334616694978 2.413131560047021) (2.458354700866995 -28.52637623406971 1.024728519327994) (6.687322719616547 -50.32158495579914 -0.3904643408581689) (0.2986712294928466 -46.37253631177187 -12.7007840493785) (0.4182943241866856 -91.1089373393197 -9.622131605900227) (2.023408610667516 -78.98075054251629 -3.733986656457456) (2.796659306174849 -49.04398235997588 -5.735617409952264) (1.004391213584889 -68.21206427723345 6.246974282169688) (-12.52879034530653 -68.71033220925817 6.303409513442025) (0.2504421555600653 -85.01222166661215 -8.515278847673878) (6.25881618439399 -54.13007046116157 6.048959684217189) (-10.16991139561393 -53.20866918422974 2.043988955105826) (1.316531221839939 -87.44479412284386 -13.76098647107577) (-2.846969671769131 -69.2885803435929 2.456104446418007) (1.9666666492121 -81.31520236367776 -4.536489047164528) (-1.65452359613798 -69.02406098208196 -2.612931643792761) (2.443342925351614 -80.85729012247458 1.468656220205142) (-6.336624026796123 -90.7935641652296 -2.024279318028959) (-6.390486967856493 -80.69769198117127 -1.664277634157474) (6.307512757570956 -79.79492600812002 -5.665584757665364) (7.874660974098336 -74.65678320461939 6.885383769111369) (0.5705601193843248 -76.10621264257742 -6.095157903214955) (-1.327647014502697 -70.9678784394885 -1.490160630049198) (-15.28565464808989 -77.55501001716465 2.011861487253893) (-1.474253760187205 -65.93369598500659 0.03200043293176513) (-1.13846626881767 -70.30742666143941 -6.884359484901376) (7.342934637256088 -80.83579836946041 11.29106641467473) (7.048510106205816 -54.85164241417877 3.569715119965942) (0.6966113220800667 -75.54228595346009 10.8253780460499) (4.397742298038913 -70.36964940797799 -12.90360264315134) (10.11970829733102 -68.91648398870352 4.830623782683508) (0.84144752787076 -69.45058731997862 10.57950548925319) (-1.378961763085913 -62.5882561480513 -14.4838843625571) (2.784112270850494 -59.89595751913283 -9.357998575082714) (3.847611895868283 -58.21522820570742 4.112379307017029) (-0.1956297986582003 -90.81304230067381 1.082398524294076) (-0.8408278248241102 -65.79868898953684 -6.673872035993713) (1.177960580134485 -69.70998851208454 -7.194793477477263) (2.813426514473558 -81.88888888630716 7.993759907091849) (1.755276590230227 -69.58103561264646 -4.579980502351058) (-3.858859497751765 -80.07737897752745 -8.676407306147789) (-0.7558931616981153 -52.87916524179138 -6.292265628208899) (-10.53649524130351 -49.6931325588732 1.897578507521689) (-2.0905232750245 -57.94498032603742 0.6930837995061395) (-6.065500919997197 -62.09349142767452 0.5134344403084437) (6.371737328808802 -60.45282803484187 -3.786879242397689) (4.751258880734765 -74.3122610672406 -3.931993219980049) (-2.066797598599044 -39.18021436536784 0.2182707487677495) (-12.81216499166315 -59.14316882112768 -2.490505737812088) (-0.07418138136635022 -48.25411635181729 -5.18709465050496) (-1.187014864271876 -52.40749708248261 8.981785249534095) (-1.621059880183404 -32.57561791495096 -8.240034295944799) (-16.14331078152051 -35.52812439926576 -0.7860400084355823) (-10.18076275660149 -61.25648321465467 -22.46953667204756) (5.333778458794111 -79.14799235322164 1.005733346176) (-1.928288680239949 -59.68036176296283 -2.142157857915761) (-9.118456799921249 -29.49719734126311 -13.14466737637476) (-15.54005106629851 -69.11985325612471 -12.18612043760693) (6.477537838087261 -16.77357403001252 1.48463365641641) (48.59185986229662 -55.30175563411824 -32.93313952703937) (14.37925933836108 -50.55158786625046 -6.809840154101252) (71.54816745654756 13.75462400214962 -25.24811589467517) (-0.6308784950343234 -45.17619630704838 4.217414726500262) (-8.819416352006231 -50.64038596221548 9.084621249273427) (3.981639883741651 -39.11933730309548 3.157022789331672) (-1.094694055137443 -38.28719046129586 -8.616287467597033) (-1.391239193688292 -39.56909667310688 -0.02107325709916863) (1.103509049636961 -34.77312854553807 -3.384575743870426) (1.680064519448694 -40.72915570280542 7.057456402614956) (7.280053263219974 -34.62786512552033 -2.600817099544753) (-8.044555063452359 -32.50928541506582 -2.062651783530665) (5.346129390154645 -48.00643038152728 2.198757925389454) (-4.5348482991463 -51.02934052968246 -7.521733939874661) (-0.4774392478723017 -38.22750004866943 2.812342652985395) (-1.345558718928905 -53.97393494693041 5.574998962237031) (-4.028141407931352 -45.347179078656 0.8466123928190201) (-3.102827197093227 -36.57406453416458 -5.562410416153482) (10.85654737228 -45.58989412509085 -3.297356822458177) (-0.4294334384098497 -48.79686255484665 -4.185999223167436) (18.2640109010093 -61.0827733958851 2.505445395387249) (-1.707582497895777 -36.60074397680194 4.635937757751491) (1.894921933818589 -45.57327186367198 -11.28289965555274) (4.849163971361572 -54.77224562549478 -0.8361893634196254) (-3.539862236284702 -45.80303492548055 2.01473027420611) (-2.368443940895526 -30.30447692494133 -5.310523445456934) (-1.535322701857124 -37.04165914358789 -2.688557380346531) (-2.923525550709992 -28.96162305527624 2.578631458897847) (-7.742473868445523 -38.98087425213119 -0.2309986466719338) (-0.7377153991475549 -41.63166550950073 -2.446170548387555) (1.029255060420621 -22.50749354910108 3.656244238871815) (-8.656514144587371 -49.81937674709919 -3.498897496443704) (-3.073701905121287 -22.92423298082215 1.044745487957924) (-3.279352294353032 -29.78183243420064 -5.92618135669526) (2.746158246134855 -41.22057610747922 -8.814997869789844) (2.885073287632457 -59.18073120377734 -0.9444787313269091) (1.044967940761534 -55.56424274291657 -0.3904642566914175) (0.8656750070625422 -76.97086046617771 8.73565141924896) (-1.804299203195193 -34.41505679440682 2.975631975253708) (-4.365490005698625 -37.74238372850085 -0.4345676528322066) (-2.979529319372706 -43.03754402993975 -8.742944834832091) (5.229661630402693 -61.26130376519116 3.80170900002319) (1.051023828650583 -77.34564670820606 1.895588278824833) (0.8657960953425965 -66.63752991929866 11.32587871399126) (-12.88740002490445 -51.65676030112379 0.9228520189851929) (1.493186176514731 -39.96919525329502 1.540247545467114) (1.087286492028758 -42.21690802299163 -3.469246860151515) (-7.720553603188325 -55.6859222191077 8.608358173493379) (-13.61952415929183 -61.20127680946247 0.5116356178889819) (-6.558427763276295 -40.4622617439702 6.180178358576899) (-0.9175742652574622 -26.39173356508668 -6.961726433290983) (2.073691433322205 -60.57980252381413 -2.666245100953511) (-1.208603938080819 -42.75693901727679 -4.469555393473297) (1.311732028496571 -51.41525431627271 3.233591071488946) (-0.5787366282874125 -41.22696673061458 0.02594789679616005) (0.8285046004673714 -66.05448544969622 -8.252698122561668) (3.48564747925954 -41.44498718995479 0.9819012053499792) (1.27206316349785 -55.20122700978008 -1.15117930700308) (-5.089291827159716 -50.61368898376762 -8.466551513930719) (-7.041807738125724 -76.14526320990197 0.5947692842946624) (5.378967351696151 -57.3262978286773 -0.8158896988213113) (5.79886365030041 -73.13535693902246 8.013272118239209) (-0.4080891537409417 -69.36531373187216 -5.103544151475868) (-2.013126985970583 -65.5802429006027 -2.744355339883041) (-0.1744871925119487 -61.52509147322927 -1.225270965113488) (-4.770297718361997 -56.49369042067389 2.067563721067104) (-4.691567295953552 -70.39038540247337 2.053945966172087) (1.726695327503244 -52.87203680828834 0.07137438824838271) (4.501035290513062 -55.16575591133126 -4.636223187868254) (3.288860159292266 -63.77425974575061 10.41781416819945) (-1.868075070867744 -54.56987581744265 -7.158089730730175) (0.83560008685221 -60.99637096247051 5.063054999409548) (2.38243808653708 -66.32390677331412 -5.424820846199256) (0.7090579440595121 -58.35893741469017 3.881547128900418) (0.5431572701578381 -49.51089424095607 0.3165771600943074) (-2.006863391863102 -47.75320920893544 -0.9997933016977043) (2.262213023765188 -64.35654913876697 -8.20626034001025) (0.3741586847174314 -49.93878046241212 0.5222836681982681) (4.625627969236135 -52.16662559249545 0.4657882131186133) (-0.6778179219278491 -49.07617178804742 -1.268154881796096) (9.467513836935614 -70.80110835822894 4.408849218001722) (-1.370286382579637 -48.07584298900695 2.277273728814937) (14.93688646890556 -78.78791873440859 5.770519016482998) (-5.37337494124858 -76.91016428434183 -2.036088687740189) (-0.2232048987505948 -46.83434613057982 2.537799785930108) (5.678965524163344 -50.34234787536456 -4.124556704340049) (193.0831739602814 -46.30957239269124 -66.61274998027986) (37.88330281477672 -60.49361719603718 -5.361235381626685) (101.8842005529207 -134.3122813003811 -3.160772003942224) (250.204036884676 -116.0778974471318 65.59180769310049) (119.356278315413 -105.4660244358713 -3.496675839458657) (154.6526055878154 -81.6191349126882 -62.44177745982881) (3.609547890837351 -45.54173364176889 0.4969643445193699) (-0.09625364013338755 -26.99940628100257 10.89859318572546) (-1.4782529568046 -28.97897319850057 -1.972870858194224) (1.007296351085442 -77.39499973826413 -3.174090191362389) (4.200789707010639 -68.31303531294331 8.902574110962778) (0.4947252953681127 -74.94207590627653 2.861820205341257) (-5.453083411112766 -47.56681613362841 3.062872725746457) (-1.339169478781772 -37.97014951061756 0.3290868514816566) (4.032723733763256 -48.83496035446809 -6.306712596670085) (0.6895209643894397 -51.31012122025175 -4.678079702082107) (2.236068264571495 -35.91983966413489 0.5678552930277745) (-10.9486936903752 -43.42478663560266 -4.558882607831038) (-4.109439040414157 -53.63733884191718 0.9497421140363005) (-6.185894036798762 -49.74905680193348 -0.2577742379468364) (-3.35227358404852 -43.71295282725587 2.157316337886209) (0.3235118012196357 -25.62503847612829 2.56232612722901) (2.40928117620821 -57.12395238236343 -1.074380709252479) (-0.5947213042438042 -47.45912698113769 -4.40122621110465) (-2.353470334919468 -54.21948416636734 -4.666696405756719) (-4.255139416059044 -31.05292242802544 3.680290093016817) (-1.095242179763626 -29.73232191563914 -2.234844274986084) (0.8944285251539041 -33.19600070090101 0.7498334314724366) (2.685324416804929 -33.87388574890675 -2.492478817922283) (1.031357127412159 -39.53742322790524 2.909038869111304) (-1.974028417079508 -46.35180215839446 3.884827090238835) (1.902555485765111 -32.6006866256702 -1.863334580850956) (-8.115971987762244 -66.95963203053483 0.4196054919050953) (-3.30500013709806 -51.93636865069624 2.398946262307958) (-0.01055952088379264 -24.7729978631697 -9.566450401222202) (-2.012656906308876 -33.14716412017057 -2.133597898180611) (-0.2691032809384787 -39.57152230812075 -1.679762485932261) (-0.9237225910996276 -55.94075089023093 0.6408220296429993) (-2.580615354499812 -59.95891597910261 4.390550687386493) (-0.07471975360745176 -60.33181117654171 -7.440752539732951) (0.1245697299588501 -45.7742095093629 6.49824015545249) (-1.155854645540153 -34.51997603480888 -1.472109998611157) (0.2220423458091243 -32.67872393109191 4.695224055835324) (-2.382500224978418 -40.29166563779184 -4.99074093779211) (-5.332722235344245 -30.35568463092799 4.969016048192585) (14.09563843485393 -49.63644652051778 -0.4417351298440702) (-0.5218003081941076 -51.62920053504858 -4.854005485574865) (-7.600316495734194 -67.09871995315937 8.491268298159625) (1.47206605513128 -52.40234863944553 0.4282376336645852) (-3.701723831761424 -66.28940550234984 2.599083423354609) (-6.260507081204431 -47.40349066057048 -6.057254987187664) (-4.507249588649248 -72.14920346822657 -5.062307253088887) (13.91776895537613 -31.87273775722964 3.588176517111485) (2.548560120821661 -69.63129020686262 -1.01170682923358) (-2.920774252523731 -35.04679325515076 -2.407812484685071) (-0.2529968748330842 -36.84888592208885 7.572399564659427) (1.287309714820946 -71.88012240031068 -6.773949694882547) (-3.529847137220794 -67.4675335329692 -1.348103320208743) (0.9244884440006704 -36.08617125893025 -0.1756473593316126) (-2.707481559921172 -49.71491583865004 0.8849910324622962) (0.2628781181074813 -36.7600838196385 -7.655889159044241) (0.9649597834173866 -43.65899787224941 0.881170298337361) (4.78567176232055 -42.29594838814849 -0.9544446427088815) (-3.141733321695168 -26.21030252266463 -1.690778944008938) (4.958569914970526 -40.06524874016341 3.724581448624448) (1.285398975517498 -58.08221194610447 -1.345604791041211) (-2.895461292255789 -68.82759211837406 0.4603335173270837) (3.365188500419912 -51.73163501203128 -3.309678126303029) (1.890620059514137 -60.71257257552 6.582028916224436) (4.937675715090306 -54.18851057160336 -3.433879284304197) (-0.4807795396494902 -50.57898562579118 2.905223947822485) (-7.421586286376414 -45.9839457002028 0.4137765365030623) (-0.7942918369300018 -44.94169204278337 -2.546225879210874) (-0.9779890299428178 -51.42734231241901 -3.578737640591136) (18.51404650245545 -51.89485655373494 -1.077578199324117) (2.324057310159718 -57.36349288771658 -2.451270956746822) (1.427686172436026 -53.25808065044824 7.184512517571147) (-1.382850032897779 -48.47191316288349 -1.746163388714326) (4.449211401600045 -39.77832324353476 -4.378675295951655) (9.566326847792151 -48.21932766618938 6.259081815124253) (3.36039618864193 -50.271984443197 -5.059231264482328) (-7.980195135372607 -46.23295724669049 2.850684249976812) (-1.51996470418706 -46.51105535212967 3.355693969612566) (-4.555714005838258 -34.40453760731496 -0.03566292617591565) (-2.890374423997732 -34.06946811654417 -2.062719057626625) (-27.51928912909682 -99.94255422814783 7.93655329750081) (-29.29380963711228 -23.24662968239936 23.00726043349028) (89.27810156555367 -44.04827031125411 69.09672844022855) (-70.79909337678467 -11.85466351265989 -8.783117189314845) (0.8361505452112357 -51.96351890705791 3.042263733251716) (1.20109204058766 -55.27085719477708 0.8983340250163472) (-4.042672821351823 -56.13961509864519 0.3839945014592407) (-5.797924555514395 -58.46883690401688 -2.63411600395627) (-7.217920202715173 -50.21451758485809 -0.5003627296084542) (10.93536289653798 -52.85334278712517 -1.117017668785081) (-0.1318852740724514 -33.30425925248193 -2.94356745352714) (0.2667215484192678 -48.38703496167766 -5.260102588477551) (2.254956739786307 -26.3657022230701 -3.560935204422184) (-2.160044484375823 -46.53246370047452 -2.632876929691591) (22.91781493346475 -32.09750303429384 46.30369020820503) (-17.31922064798019 8.355523303083032 13.53007751218878) (-2.087571859335022 -55.78572954441603 2.154505319356618) (-5.834808405953927 -43.50290682788378 12.31274631442096) (-8.446565278156417 -61.16559018788435 2.290597879793504) (5.007262801715125 -30.38627433678711 4.205229177228643) (-2.633782756210107 -35.39465518845184 6.181170161846099) (0.1387174615120246 -58.47299327897409 7.453353785994963) (-3.656486809274933 -32.72515818309846 -2.991766496746495) (-0.04096959609679307 -40.48916256190414 -1.171028031286354) (5.009726089014395 -38.97558930038259 -0.5628237289240801) (-0.7309701992787698 -29.86189568518972 -2.545515590522478) (-3.972995731375705 -46.11462948948598 -3.01763984321284) (-1.554033621348832 -44.7302074012137 -6.443610043142788) (-0.2714723959662009 -38.27753007280942 -3.21543010627052) (-2.024046965471556 -45.73202188511574 4.630778285578649) (-1.101147129712377 -32.70255191600297 -0.7330973829151632) (-0.4883151539115795 -38.14644479112237 -6.925572295476531) (-4.149973842428583 -41.79617830116138 2.254161867587213) (-2.926353827688621 -32.35716940920179 -5.473193898538051) (4.448876925110197 -33.74450246716897 -0.6962627235442921) (0.6466542538453852 -47.00491960878092 -0.1967986227769619) (0.7257720096739433 -49.22213107866071 -0.5618414684992346) (0.1670414750201837 -24.52955289842568 2.837858552948298) (4.756910455388033 -32.78679602536014 2.208873992949641) (-0.2384517245732653 -29.50905535328947 -0.6821921491374281) (-1.626595460347344 -42.09096236863177 0.4982017794655992) (2.637369874539591 -39.36368414159743 0.74004807264594) (0.01084896972372162 -39.79796563611841 2.766816152951623) (0.9599146935802186 -33.44809216156923 0.1222912872376708) (0.07161814903076619 -43.7311874469792 -0.7764313650848685) (5.710020774312479 -28.80677173620564 5.458883294209913) (1.330783274400055 -37.26899147368794 -0.8635475331008942) (-4.059225369287005 -39.56221953464988 -6.270748759158863) (-3.080228699156461 -41.69324042760354 0.2344194813989446) (-4.416258546323125 -49.11945213352644 -0.6263814361550909) (-2.634997659183871 -86.36645709082497 5.116418147681747) (0.7185322589912199 -44.14787200299058 -5.532472481777972) (1.258914325745168 -48.84093214661722 0.185950871387913) (0.06963967691920694 -34.66514321002854 4.166586675957379) (-0.1502455796087064 -35.38244686410144 2.734973672675269) (0.05558218437441784 -40.95979194707743 1.075085975313596) (0.311289547710377 -21.5873795703083 -3.295771092106034) (-4.223498221382322 -35.70019937545907 3.243319228020914) (0.7064402485704186 -35.11214562083315 -4.038538890594205) (1.373475000634733 -40.89166690018268 0.9523379458170365) (-7.230679013946275 -39.10076374360544 2.482244722104209) (-8.835318673682622 -47.97945236030166 -5.096116951944958) (-8.246072398151586 -65.01518477073951 3.424910288736591) (15.60332010536958 -64.11096608838683 -26.12746410295809) (8.002395877972136 -27.11054909040939 -4.024663008424049) (0.3388345337405638 -28.52552146354403 -5.639355452736035) (0.09738323431212492 -30.4278951911043 1.881349435565576) (5.755891130255563 -46.27665508955836 -1.260451930725097) (-2.887017564356402 -35.54441962497241 0.4471194933316966) (-1.622457309487163 -32.24652521146982 4.30131990644465) (9.900210352244409 -51.2670034752068 -0.162559957982143) (5.838066738105055 -54.44221285902746 0.1747836500082491) (-10.80838696679625 -60.23002746828853 3.987085256994678) (-1.825331086898456 -26.80535572953968 6.517182162640808) (0.5618102901398281 -41.18463543712956 2.103081796404211) (3.450223842048639 -24.46296626560345 -5.143676282916301) (-0.9073634125676189 -26.44704009929555 -0.1814326586215549) (-1.624323189359874 -27.58049651372408 -3.043747636979568) (-2.988007593037048 -27.76191072013909 0.04576886912986863) (-1.960774425933006 -56.58545651907007 1.13424526350681) (-0.6561066071536423 -24.96210873851872 -0.6180272057764565) (0.6808318987570339 -35.43264212935333 0.7736590740972651) (-1.668458088586256 -44.07594816611381 0.3614753731651673) (2.149508273890834 -38.38076421684406 -2.072869480224496) (-7.721229978923388 -45.16013235225118 6.644358340876806) (-5.773136916999462 -43.9672544868548 -2.246655868047002) (-0.4382479783101187 -61.86005755424651 -2.304301373350364) (-5.755170161589909 -55.03682717019035 -3.632425758225259) (4.038156681009601 -27.33127859165939 2.34900054761828) (-1.798631942119492 -25.75621909307095 3.443899547835689) (-1.734900401028498 -38.67060720637976 7.09336427901548) (-0.60518078103708 -36.90087134028126 -8.523011082922286) (2.665782760694886 -24.24571015373667 -3.076561428627845) (-2.901289220558107 -32.80948542845049 0.7894608551322637) (3.1354025402324 -40.83684898601402 2.99456392370875) (0.7931649400713312 -29.17236307394988 0.07276363535461788) (0.3964578663700818 -22.18898546166447 2.601158440885247) (-4.830000512546337 -22.30794148780107 -3.11718965871091) (2.845425732469677 -34.96698830861944 -4.061036687248087) (-5.499244799065126 -36.75577756775724 -0.4201608086189226) (2.419952863190376 -43.61702902333982 -1.445490007362086) (3.579421529061074 -0.9697956704082777 -45.2065169644858) (-16.17889173244679 -19.38021327354054 -40.21639424430951) (-7.353807621493842 -13.38330430318169 -84.98979294335933) (22.29981893612607 10.42477459947114 -56.85225070503883) (-5.502816279016853 -12.47700583156745 -77.55240788559109) (21.05000257496017 13.89327115083198 -80.14584162444328) (1.2777719142116 -8.415594753352092 -82.37244847433062) (-0.3353559328242574 6.052953067533745 -43.90597471357572) (4.474609786710563 -6.681375397981104 -61.86746316841757) (17.26802934330343 8.561676672727799 -71.20861892966546) (-13.29362485948294 -12.11008198670363 -52.18532758845774) (10.32990701858391 4.909730774873689 -60.36087874498999) (-0.762612068019402 -11.08583663226167 -64.94136121837167) (6.150227910425323 10.48691180373927 -59.83868633598203) (-3.269923344222113 -8.35191588529832 -47.54685735848949) (6.934829575436247 18.98639035745081 -50.10779647346406) (-2.140431488599801 -7.501146135130463 -35.92055134362388) (10.0239683245713 23.52960858997599 -63.63355528235974) (0.01342793017758925 78.33946057161187 -8.240511135728891) (8.09094296766504 84.18749726248973 -8.853496246233789) (4.317830911236218 85.65656901544186 -0.06863103939006931) (8.004569028490621 114.8330038088973 3.623188322766411) (8.423966763012626 76.15318596395619 -4.36133715884706) (17.55245142657255 84.18788208658 -2.826044500397615) (6.767417673834366 93.705355590709 -9.822981239034403) (-0.1370136696575521 65.81911204936077 -5.251767244559594) (3.421961729781618 76.99272103287336 -1.505522237656291) (9.12478704437604 125.7445748023995 -3.395306226173399) (-7.637442136859198 53.80742010371372 -1.127565666690566) (6.018073533567369 64.00768382582525 -2.652855403072119) (1.831846604964904 68.90187849071168 -2.723239441608091) (-0.1518852582643286 45.28058750297488 -5.048476820829014) (2.859477231531935 62.64091693857773 -6.941718596070423) (-6.502205797611331 47.73095829296438 4.154055999649422) (7.353927620514635 50.6114565887998 -1.512868093956723) (-2.422240787956973 45.16769403424954 5.373652472271594) (7.827154994491694 42.71545312684477 -2.629546207856811) (5.774368633503595 47.68125828762244 -2.742607374427443) (7.646736475669552 52.03425992126644 5.892126410201319) (-1.184313819772761 49.83836563436885 7.996143155454029) (7.5468418627 39.29033798175069 -1.806535098962216) (0.4642382810873595 28.2727406820991 -3.43290033827569) (-1.032194431676159 36.71386294473421 6.932406566908963) (5.878315699521774 47.75790167537912 4.844008878576998) (0.2680665462721947 41.96025973583748 4.870411564986568) (6.912754463572069 38.75362905848917 -2.412237366284866) (3.4849034190199 48.7165494995407 2.512662228429257) (3.388999231080446 24.78071643011479 6.2437931132206) (3.957950400932429 37.65762739554089 5.116976042155969) (4.039030580741256 22.29206379044583 5.403938670171103) (4.980217386565972 26.44270701370341 1.353475106387188) (1.724157708927634 32.5930937208261 6.90970687621475) (3.996055452877092 30.37007972901485 -0.2366750394375128) (0.4116684141189254 27.04180029403827 7.752731576755641) (7.525273414721881 75.08340276181148 -13.10741313716917) (-2.523680901133209 73.41209669727101 1.257446951137743) (-2.566174767835877 69.11057911079327 -10.78237970379339) (-1.419452494311486 72.60031661252499 1.844792345094138) (-3.454263118769762 65.67143865233382 -7.490186033626564) (13.76658442068359 85.63570530072009 -4.410899483625277) (2.819258114417957 93.45480073707306 0.6501862757481504) (7.747428029220328 85.79958417652097 4.456138898771577) (6.310113120406555 106.8400608083099 -6.545645007294926) (6.742700168072753 92.71682882412048 -13.17433314953069) (13.12771982670023 109.5188355578967 4.286634270290071) (17.91527449962762 81.03592897415326 -6.080135192248225) (2.070553452748727 75.39908391626773 9.714433471798717) (-21.77591710171439 93.05321229454535 -9.729979394390245) (9.315779805930656 136.3674249069415 -1.787356520172531) (-3.277397808752608 79.47769967391407 8.587919554685763) (-2.330067671231117 49.7338295870482 -9.108240848170135) (2.629578700460848 51.61418872498179 -4.867901753579117) (-5.638754227158077 55.77120541827733 2.455672748693114) (-6.435777497376924 59.77009647295759 9.506350447412567) (-4.710935444388758 54.80960124818741 8.352447922438412) (-3.381753880179913 43.19994951582313 -2.611820056087025) (0.5861798152795608 46.20366040841127 -5.179291447831377) (-3.407644999908685 51.24478941177525 -4.542087807807506) (20.44285064785286 46.75609168542834 -3.707159718439454) (-0.3460355784975473 36.75689982022471 0.07312167252028903) (1.837857679431986 45.99094263284907 -6.69446884802977) (5.281646467007253 43.88102564809711 -0.01792459291402815) (-0.3402116853331443 40.69719841661018 1.329632975368655) (9.192975184775689 42.92743947433378 -2.211931126539029) (4.818130998515636 39.13217561046529 6.459169046798031) (4.350121945746075 31.62477115644021 -0.1778010973862368) (2.479237913025618 36.06892330161316 -0.7216587962957234) (0.122801254029163 39.78195010645146 -3.864375578699087) (6.899734517201967 22.90210048021691 -6.413597203168884) (2.238602428255136 24.02266537933406 10.48518253310827) (1.511372777005468 25.98400932584909 -2.275698271141881) (3.398434200123947 27.16294929382522 -7.004321988480462) (4.508071103348979 22.27003360601882 -0.4292222008812605) (3.657533950211124 34.82748807379343 4.081530360256521) (5.717416291238296 36.1043070996263 8.590752298051465) (2.999627579896149 37.08134601826381 5.196005684982856) (-4.985272085722513 31.20170851587541 6.670493407095994) (5.213500719796416 77.30432971322936 4.163967049276265) (-8.231011122277481 95.87190198356853 16.25718274258842) (-6.88666687395178 53.11013189836549 -7.948626998355637) (6.102529327782796 98.77781087652123 4.841584734468023) (0.8743830567138484 102.4931550391065 3.802553168314468) (5.904383713569199 71.31402652553949 5.160079829780134) (12.1040485910205 95.41935337172966 10.38459389615839) (-5.86582569791165 100.8875509865691 7.439666975076597) (8.602236691198323 72.60057541658408 -14.94084147372394) (5.730356371337367 94.12484671908499 -3.155234606946419) (-1.794746016586996 49.8301091129158 -1.99803107098352) (-1.576255834566276 59.2511754182697 9.476557078541859) (4.820029536944933 53.32755148150472 -5.12150744555744) (4.949719072623378 45.66117920391228 -6.929693541741341) (5.660419318547548 53.15176711423972 6.374754743256622) (1.538127748849198 37.22780833034189 -7.969509176473446) (3.350222178542315 38.79803691361479 -4.29051901508889) (1.369166258991969 31.66282145481488 -3.062545995578664) (0.1021093909709643 34.68037404785078 -12.21000627941183) (7.605841274836711 76.10608379735972 4.603671121954354) (11.60379169951283 100.6466934856939 2.534316931195398) (6.779617783451781 66.48395540219518 1.88348895189303) (7.212076671957488 98.80737286135735 3.327343360908447) (0.5730204177436684 51.61715115882054 -0.0323621146439913) (4.390424424837768 49.78132152269934 1.896698999810167) (-1.421228700537969 63.12279879066246 4.009444675655319) (4.670168610211039 62.71995723172901 9.617778986329398) (0.8903384007527853 28.82756218235993 -0.6116190503263036) (2.841015256149422 39.19147213101277 -6.813694909715154) (-1.550847770210378 85.89385506658181 -18.74559423280345) (-24.07312604217472 78.78954338641032 -3.715058251542478) (-6.129425221650045 51.25955351757366 -15.27190508515689) (-0.7441926245826607 55.12103601961778 -14.77936930599887) (-10.97850510521375 61.17883181946976 17.43595844579215) (3.453513533641329 53.25240555138781 1.21104903163448) (-2.011363403898798 75.34275543944516 -12.82941823257999) (-1.701517650990325 79.75997876008613 -6.47675852955669) (-5.086906864034212 71.98994168335946 12.90271295051476) (5.208157961255402 86.47948216911746 11.40776052835088) (-3.351716889908559 60.48870297468231 1.697661400480275) (-3.016606945125636 73.32891620784521 -2.226988176958236) (5.312589379455123 95.35180570324064 -0.1847780660556155) (0.6877869699664239 62.5374538026655 -1.971394713272752) (-3.14723656618734 86.20811099842751 7.739562089133834) (0.4792645674975391 60.10109352648976 -5.603858490085724) (-0.2713635182323733 70.12925298746937 1.605144227617349) (-7.069490341478966 78.08088998771899 6.25868362817447) (3.568172890389966 67.15830747867274 -10.46895099316062) (-5.555727567337903 49.47396911235194 -3.159339144677241) (2.33481497727788 64.65074425083135 6.968386613040338) (0.2517674104213812 72.83477748129982 1.516569661782966) (-6.635415911578168 65.09859762564471 -2.944060377403625) (-8.827495466333302 49.67431392080013 -1.832637333385981) (0.7772061626088362 62.45955003802396 9.681541864351342) (3.608460753972178 64.13937723243409 -0.4142295743464655) (-0.3781650901803679 31.9620606827778 1.160828993571705) (-5.519865997687173 46.13207789330954 -3.801462976916608) (-5.39303444591296 67.48286750885407 -3.40113894932364) (-2.401827144574335 47.58346280600346 -15.77505458159335) (-4.549983021849377 57.48420051603429 -8.334770855960755) (-4.72667882925494 72.00727243027019 5.562863321469068) (-2.202300705551155 59.69322757052849 3.898410248826815) (-5.962606448722822 59.80146763263654 2.509278688701487) (-0.9837294806508854 46.53928474939574 6.082555902874131) (12.65673282746629 54.58353382012816 -6.109006423409733) (-0.04172365883967277 36.57082944062578 -5.499043656613637) (2.563536701560674 57.2342047580766 2.345365828089844) (8.479091459374153 50.23103394615386 -8.193891670929045) (4.763817588039059 49.87042301144583 -1.244034057268075) (0.238199511973363 55.53225791099364 -0.2101705466581023) (0.8214039435811616 24.92039300839272 1.033429403526632) (5.846555762531681 36.74694224614095 0.1411537389296065) (-0.3242715479911624 20.88853443751954 4.517158172272396) (-3.991527300578862 39.46020832422295 -3.955258257342101) (4.524110776557942 30.08481443985187 -1.064291436005542) (4.269365797953742 31.37571633915558 -0.7080504181861961) (-2.588091672754053 38.46001477203668 10.4268330437532) (-5.635105149447043 22.13873420108354 1.787178929812202) (-3.388234333451537 45.08399673667962 6.018897094525633) (1.353701465529492 25.59133018393784 -2.554494508664755) (-0.6416365683384393 25.65872125684698 -10.10608012462201) (2.75713315126974 40.94047079527033 6.314143287738025) (-1.60309926533844 27.39922770217428 -1.191696314120757) (3.946654363674737 26.82993342959331 0.4357973631960449) (-1.056840648183119 61.59248026562118 -8.373531418510382) (8.203730871724504 68.05955498691245 8.294438791222506) (-2.127612848915974 54.6501614073611 -4.7060298381462) (-1.442662995881955 45.24435939081128 -0.8916674158722557) (-1.004275716018242 50.07349239738735 3.688567351297999) (-1.577454629525457 41.9150650849181 -9.652553399375774) (-0.2575290910358772 27.04577906223525 2.854377076608734) (2.736916598387924 33.66281605931825 -6.705107211477259) (7.642612196097117 48.22878078496996 -2.106379746342752) (4.312346642300488 30.95145328987444 -6.281970577220856) (7.583851089064698 39.45902555220432 -0.3677032541408489) (5.858587024587379 46.53999473964095 -3.252045153428461) (6.604163758381851 47.40456031722834 -5.142108184194425) (-1.626512614948949 65.44808416038461 -5.925536920149305) (-4.284384582399355 84.75073700403377 -1.796266770346717) (2.39497713971264 58.16504008274845 4.124344510189779) (-4.563162542023491 51.15277708242211 0.1716502230767282) (-1.700300513876939 57.31085264133579 1.025386295118256) (1.82024303624551 78.51913295931611 6.73080968196706) (12.29095660126199 67.80702076482059 -7.458163760195584) (3.106697512280323 69.18753512505236 4.353611764816179) (-0.04734816571987671 27.76817296850594 -0.3948225939229029) (-3.007213720181616 38.49994918943263 8.122930396927481) (-1.512444397132732 72.77152777421927 6.419456668125321) (-2.476294727486787 61.57403101477964 11.13342836353794) (3.574846602476256 41.49879999461009 0.9377745459925586) (0.06876050577372339 40.6381433290745 4.429260717762995) (0.7846233412140309 54.82665314660798 -0.2739698425657111) (-1.837088714698556 36.71458734359495 0.3088370294483367) (-0.9240224561963153 40.24851498893815 9.645027693733457) (-2.913894869951002 40.3609398552352 7.198671124105242) (2.548694976097399 19.74937302457777 8.271149391943048) (3.385500624986206 45.80610940483378 -5.602037822136213) (3.793957747423157 76.31427912593443 10.29900995551596) (5.072857093024892 49.7368974138078 -4.678296980648413) (3.454359492959154 40.2125234951161 2.241196413026542) (1.857816752705188 23.36106291094645 6.160414328355476) (16.70395257949354 73.15176104449299 -17.49230884102861) (-7.321202196455753 72.01194129601218 -6.705674586813596) (-2.282244095422959 63.83673210108928 -8.087348104325198) (-1.282114595501534 67.49824874504948 -4.331298432784154) (2.589908945366171 85.19248718359383 6.865483447650588) (2.644272018415459 64.13701197034607 5.680506143288515) (-0.07941442632383033 70.81022880027913 5.033815951135271) (4.54937444279174 47.95887605792638 1.673993462559908) (-5.163024894369373 49.27570598838963 -3.712787815204988) (4.411289688239233 43.46411356933629 -7.181977877440996) (4.205301906467341 51.83499356196887 1.762033143569533) (-10.68759860313626 35.81399395868535 2.107169507594086) (11.23781259032925 69.42271951230218 -6.907871946366679) (-0.5490803160083987 54.30629544508403 -1.158178316523997) (0.5329358417853651 62.57440519997557 -1.021992231988104) (0.2794870786473311 69.18458265628837 -2.000208348987202) (-2.65001387288161 45.6639198114042 -4.420908526648634) (-0.3324799804487066 54.42750035074025 1.94377521392307) (0.2322718052582159 76.75965701363212 -5.843338244023579) (-3.578491592318749 25.00275953786953 -10.46636957581249) (-0.6638748202422597 64.7582582577363 -3.398979123362642) (4.819593836210424 48.81916440786658 -4.66989967768219) (-0.6581915556611497 55.91751565177098 -2.032735082136511) (-0.3484117612774796 63.94351348243901 5.350465059557149) (-3.323054774406183 23.41984246588762 1.006296650548772) (2.665705217027933 54.8634184192561 -2.90807114765513) (-6.050661955508716 64.0448673755883 3.050061585418054) (-0.6972439547940379 46.36415856538071 -4.750004449510902) (5.454741015544797 53.69194625152186 1.876337049430131) (-0.8924938914577365 52.76836259761607 4.975413177974556) (-0.6193839823519427 29.78002913209687 3.526452646971557) (0.1963336946926297 30.4977413122644 -8.726773816657037) (3.088094570967436 60.8425142974327 -6.802742760636012) (-1.365773411113975 35.26260055061775 1.916440677544335) (0.5558140882027808 42.59332430390968 0.4390478085803479) (2.565310794318919 17.76708268945526 -2.793323948840443) (-2.672292271109671 23.02159476742093 4.030276794212057) (3.990319726342396 31.18088788206827 -9.349299400874864) (-3.905543517923456 48.24491122799159 -0.2563989990298209) (-4.692178435826223 54.01945539484179 -1.043567766306557) (-0.07836281535319967 80.18911519953944 4.245096552066934) (-3.1592859024812 58.19388477676548 -1.608081739983935) (1.555572618294116 51.43205369916168 1.118504790312651) (4.537153386505819 44.08442505841395 -7.58910962153012) (0.235944171614071 36.308353075371 -3.024598001927124) (5.388797106791651 38.60530914496091 -7.283119022899879) (-1.025608532503295 62.53615754477261 -9.795110242111242) (-2.839189129005216 80.8355809143803 -3.99248836756694) (-1.526943918258 62.93250944082885 -7.543904285728819) (1.13975733717819 59.24980550684241 -2.948352313613103) (-1.134147220977419 70.30610789629382 -0.3246036798130982) (0.4323983148503812 72.76733835267881 -2.774147265418531) (0.070255286350834 60.02109002660413 1.607855078513851) (8.052964007282023 49.18657471392271 5.137436089009377) (-0.4048109967752309 48.04868151142665 -6.812429991753328) (-0.808786171773055 48.64236005210507 1.372546984925056) (1.665150142455953 59.24754056428169 2.46255838216368) (2.44598428607718 69.35925913504691 -4.902279019227129) (9.496097632699609 46.4923200922394 0.2598972586599735) (-0.4504351501015533 65.88746111194878 8.191740936508918) (0.42672863678678 68.29695368845694 -0.5273917303634129) (-1.678367451858776 32.30835668637143 -10.06133341019594) (-7.033924374359547 33.09458209933293 -2.515585169260098) (0.3332898085365668 35.33702256894173 3.954277212782134) (3.267947640637646 50.31750127611755 12.16795270243443) (9.818097027571529 49.02760338058168 1.981327229679148) (-5.883795447006919 50.83233559111461 -4.188846000768267) (1.374313683651834 67.61525989789139 5.842618137146269) (-5.1400494156098 44.23987756960919 2.464682053039038) (-0.3289688295461851 30.33056758719626 2.083840090189887) (-1.848360719851147 48.22372249441993 5.136117179248464) (-3.36076004774428 57.87831539226607 -6.472242937396736) (3.382947932525507 75.8172854414484 -0.1551959821285052) (0.2595116737075673 45.59374838114088 -2.417088841757117) (0.01053648365026894 37.10965130590112 10.77132384976072) (-1.635481123073568 72.37203672061977 2.685121925771454) (-0.8154401141326202 45.24526374057736 -1.146017619173409) (1.809942327578205 63.21465351014205 7.134594323873815) (0.09521305337450903 56.93764203260024 -2.261077423898937) (-7.613609511956065 80.03690516693514 -6.695010681109238) (-3.399609538218867 67.05683054047057 0.6204998371346614) (-5.068811885690028 73.62705559946127 -1.339963023748835) (-1.42472820804838 56.36801460493998 0.005480125336024599) (1.485681777552319 62.43816653247578 2.458851661151023) (-3.828794848605563 60.12446499590067 3.783423003577403) (-0.2784177200037897 86.61130930496269 1.382555279160604) (-0.3631916130520388 49.30864306177835 -2.043686087984264) (5.731952104872722 46.64224579655506 -0.6807943333680695) (4.338437151195585 36.98464801982456 -6.900610258623206) (0.4642539849965289 32.08900949798782 -2.423162980691103) (8.509778792068088 56.40861214532127 3.368607038663018) (-2.806067032047875 69.61449773529588 6.569681493512643) (-0.862595997422774 65.18463969811162 0.7014238208532563) (-1.001741843167746 56.04021607112657 -4.457174746008078) (-2.07493740200354 43.58531067017682 -3.813259679806955) (-0.1142607276457397 37.951189354506 2.194140731777304) (3.401947823275844 37.07962690677213 2.276471687377742) (4.06150027455408 40.04349625111004 -2.505283936042614) (-0.8286681912652937 64.33012613343067 0.8695259523145608) (-4.332370456591262 57.83397263070822 -0.9879643275324086) (2.679312377974828 30.46239295584978 -3.796662249033275) (1.246049081985745 44.27578440297913 1.490487660746064) (0.5377434863370749 45.92315822860559 2.702169580262289) (2.337525432588754 29.33374793326546 -2.755984709560722) (-14.39895303491297 38.47669602507491 1.806859399278846) (2.418318238244909 41.17812989801184 3.07037578918707) (-1.806140466804236 54.99956019748461 -1.256114438246474) (0.4305356843469827 51.35493706152764 -0.803030384259009) (-0.7990715614338135 48.1427713027438 -6.430225588909419) (0.8028504868567288 49.20743339874101 2.341124866579572) (2.763100112953783 33.82201951199363 3.310761960266233) (10.01876104627225 54.2840933436079 5.209429773151195) (1.120875665245554 48.08896032697939 -8.890061608770296) (-0.1516139952963853 46.03889702418533 -5.795186171356429) (0.5275902996002255 58.91960513344159 -7.025260345936184) (-5.473030584879899 74.54505852115527 2.689811180412805) (3.915145237231705 59.63453900472964 4.283777532604546) (1.000157907164209 56.48176572493086 2.255160046431391) (0.8209173819419036 52.62986094893672 4.840065763616234) (4.919855461577676 38.09859064661193 -0.0478201737541103) (-0.6613053449870456 54.25702923623162 -1.127493380266424) (-2.651500702123551 57.46746600335065 -0.04473055915044558) (7.415647446624704 36.76295195400079 2.990030995079449) (0.4605433107114711 32.27635678863481 -0.008631078770176048) (-0.4595004701772628 39.70736421199522 1.22886832186096) (1.946756272849922 45.18377690940516 -3.208516962891256) (-1.506928277662981 35.44082368329391 1.22097564273334) (2.324193031409678 34.19363495206701 -7.828216418577315) (-0.04406137400640664 41.94057099648265 -0.8392806399226068) (-1.585698386645667 42.32191331166182 -3.466749181929464) (-3.770823025974428 31.97826835807392 6.826938614953498) (4.241030678806727 45.41920433263716 5.23209692336737) (-0.8059575540957429 48.60501985194001 -2.095151163597451) (-0.7296335152716594 33.75077172670543 -3.144165463154648) (2.119252389983937 46.81983874510671 4.891388678369743) (-0.1470129613242208 26.58709439394296 -1.502294451661613) (1.9497833153638 36.02453171688906 -5.546685130683749) (0.6696691637512747 44.05272116705824 -6.204731746583643) (-3.010719828844248 34.56979483060272 -0.6560323747941171) (-0.2874155626111502 35.47323008281357 -2.210412703838668) (9.264779938010399 42.40712785658302 0.07122572674226513) (0.8814379167035804 36.41837127604975 -0.1024630751898212) (4.742545124988107 44.57358544623143 -4.425553055846414) (5.681880517034844 48.67805179592475 -3.901148550222513) (4.702054552937946 37.01320775495438 7.29625536129778) (0.02128609414552718 28.26521615226261 -2.103735305698055) (2.984264435923031 29.4478745622439 2.813861270142159) (2.958797475434798 37.33798736418123 -4.997472614122614) (-1.36265743322944 46.58375441718341 -2.500004768504027) (4.371861010825138 27.78702349430614 -3.146682131131354) (-0.520936565061297 33.70337883809744 4.837792770743826) (-4.314876348215233 25.55141671782788 2.994468121601846) (1.99862898018289 30.96548347805173 2.232798124645729) (0.3000751816892602 28.88142070114045 3.493998112931469) (1.088061628896169 41.38342984617087 6.239523899793226) (2.69234287740001 28.70669361772623 -3.751189228482873) (0.4808498487591916 42.15743929213647 1.477513614442588) (1.503316846659552 52.05749455998674 0.8529422340445086) (-2.759408801178996 51.9411999921929 5.881305438104095) (0.5009375331881792 26.06178773584064 -3.862438845385163) (-5.427423100739613 28.65618268784216 0.3333603116954201) (1.480775354499066 26.43076154483227 -1.832887287350964) (0.5445896468368534 41.05796133552309 -1.964859065242523) (1.612251571387661 27.19667620876336 2.644891166825624) (1.630922197641049 26.87480872129317 -1.344365882598083) (-2.340192985391369 50.80518485715451 -6.277476971419933) (3.022735859939835 21.11169178230145 0.95266990761336) (1.000192571008202 43.15203951670978 -0.9811090113515044) (-1.207767674588936 44.33337462237285 2.10351359011932) (0.2911863936699461 42.61650836169252 2.931368098375705) (3.141888041601548 58.62720363152043 -14.2885372792978) (-3.455894428711046 64.93680728840569 -4.572358278378135) (4.350991337818837 25.24944279703162 -6.318993195517851) (1.283737971974226 28.19301552412806 -5.119256220052793) (-2.19716104988453 34.21718947848795 8.272593210452577) (5.747720096460019 37.13726639973714 -5.193085801035125) (-3.515354296609999 47.74013279277885 -7.871267958353627) (1.772782304985928 40.35819778576641 -8.20268152430668) (-3.576104057183703 25.1099464638161 -2.177277740632654) (-1.676075793313637 35.69674256203129 -3.779278056468675) (-2.014367223038541 29.02841719778188 -3.602821908657797) (-1.766349936223345 30.88084351028077 3.373021918583658) (0.743467307941502 35.9180580479056 2.278676477660075) (1.215287679758042 29.9666972003146 -1.357500337470054) (-2.250217723925296 47.65966546062512 7.457217155329378) (-0.1658594915054827 50.58096591229256 3.357000924844945) (16.54233852567499 37.61269297615488 3.00479509828557) (-2.145711005089387 32.25946163941882 -4.617897387123448) (0.8981565038710528 35.72841299572313 -0.3439821914785609) (-0.6170031529946964 29.36484772093815 -0.2652234205587389) (3.378759093717637 46.54421600231451 -6.598364561890606) (1.620719903159158 33.93778802939315 -0.1413413091838944) (4.349515795875631 36.78189297816484 0.6965389667161569) (7.038143158789555 34.44210026999357 9.145007123273494) (3.594705932319483 29.49077779595033 -0.4458748512681907) (0.4606486008171212 38.21672869151936 4.84324879205408) (0.9149082695015878 33.53135401257176 2.222441721919242) (-0.4560330155705799 26.693703815578 -1.778921746152515) (-1.939282790433493 39.76559703677928 2.598133868012002) (2.491524632447628 36.62368970507706 0.8607096104511252) (-1.475172003968848 33.31219470603705 4.15624107129379) (5.243758767408202 40.82735977404895 2.161438318901225) (-8.103027561606725 48.80305861718242 -1.304752135818987) (5.656899943561608 47.73000371193734 -3.464118069185014) (0.8852473962778097 36.09019677201186 -2.730117696023464) (4.435012572201614 44.14286444914389 -0.1097748937086485) (-5.033132428844425 51.90025869368308 2.137328230664999) (-1.465843313024859 40.85035096064791 -3.655203372505918) (0.2624197461838447 32.17278711871991 0.8842737124386654) (-2.735720752404152 30.19123000848175 -1.545160592148132) (10.20385933295943 42.76694718270569 -3.219241946384622) (2.305460919567444 38.10248056702734 4.797153990377107) (2.210698446094979 33.48760695343256 3.747128654948478) (7.762851912315405 43.38252170220852 4.104241259256651) (4.319556943864535 32.26442123096943 -4.785956972215724) (-1.303432639584144 31.08308792276941 -3.91413329126408) (1.066327103999536 27.08404621087386 -2.701417932294238) (1.879751195566945 38.98413550312063 0.2285083953355451) (4.49239532375883 23.5582270967536 1.076460090800923) (-5.527609114375416 56.06390933271913 -1.543998723405495) (-4.239809249234667 31.1577593040115 0.3557754831233418) (-3.86804229085726 46.82036533915483 -6.729807237487813) (-1.758007894949823 77.61809225306885 9.295623916995639) (0.1122574973169292 46.50430721198062 -1.22079713366577) (-2.03938230420898 33.55913019710767 3.525262311045115) (-17.46303010717771 -12.5658648580508 -31.64238485952815) (11.16735186629397 10.13893775529658 -54.38489432281428) (1.607749817904409 -6.157735473567971 -64.34801609803066) (18.09092824417955 11.35979776055017 -36.86725868829743) (19.47673752703763 26.86149598455842 -45.26965312733324) (0.2386989739148412 -1.732663354639532 -41.70756427484449) (-0.1644830224815621 -4.036350145718064 -42.38479293145573) (17.43583972231507 28.23419389391832 -61.36979990084276) ) ; } procBoundary1to0 { type processor; value nonuniform List<vector> 564 ( (0.05294316782474101 0.002586307927364897 0.02012628396408941) (0.09396640731027696 0.02190188276502426 -0.1085374647265231) (-0.1096636411671734 -0.08935882292623751 -0.0662781932773894) (0.003130860672301742 -0.01074354752942044 0.003326477762274538) (-0.06233480873928968 0.1520335876023446 -0.1124056562779332) (0.446783717427526 -0.5901971984889443 -22.03799607008242) (0.446783717427526 -0.5901971984889443 -22.03799607008242) (0.04359237827525186 0.008772828070025659 -4.575997358534675) (0.7663492148245008 4.649197719374783 -4.185438758348971) (0.061397397404827 0.008025371343038365 0.03786384934893095) (-0.06233480873928968 0.1520335876023446 -0.1124056562779332) (0.009669037931252625 -0.009045549992078017 -0.07123809390148869) (0.0584360893613406 -0.04897415098618974 -0.02223577100572528) (2.383046331179664 7.025576010327418 -1.392707598490186) (-1.842077712514 11.32125444644469 -4.056408812605716) (-0.5190586291773126 6.93098547684098 -0.8948767389960304) (-0.4280906586481529 1.998626317113873 -1.472245326547317) (-0.2027345873993364 0.1527682124222906 -0.225904872819206) (0.1610510589233523 -0.08746224778704167 -0.08836376483114977) (-3.028760521324623 12.67658019840517 2.88047235342635) (0.02709123619442626 0.0006274370817382106 -0.009364630022359634) (0.533751747901813 0.1738373284557811 0.06482031823509909) (0.001568512134052069 0.001712749633391381 0.00742612769289888) (1.020118651947566 0.1347873480413564 -0.9414576860912089) (1.020118651947566 0.1347873480413564 -0.9414576860912089) (-3.106440792335909 -0.725427622975097 -4.585435834958528) (0.3156052670584312 11.37320855346891 -4.893907849061995) (-1.700095706682529 11.31560627906717 -0.7458807962191767) (0.08203485453189886 -0.07744670232403578 -0.210355450112205) (0.9447579166395306 -13.59800160142639 -9.426892277556156) (0.1553846657966702 0.3210944432198822 -0.1840505808522621) (0.1553846657966702 0.3210944432198822 -0.1840505808522621) (-1.146828805738761 -7.356911829242303 -0.1676754614311056) (-1.139535532949886 26.83640553699931 -2.317909381157149) (-3.225968932797891 -28.89115612996863 0.3185127917158462) (4.362544568866953 -10.13988595521073 2.142180860774517) (-0.2627408740981997 0.07147811034343834 -0.5280055752524949) (-0.2627408740981997 0.07147811034343834 -0.5280055752524949) (0.04744361355665614 0.001780734048724367 0.002866716063936126) (0.02298349122963503 0.009354668968992317 0.02235153783800567) (0.3196326381306291 -8.382438365835757 1.927037015198994) (0.3196326381306291 -8.382438365835757 1.927037015198994) (0.4422270926416827 1.206634497796848 -1.981377185905767) (0.4422270926416827 1.206634497796848 -1.981377185905767) (-2.258088181813 -2.820399374148295 -1.043945630774395) (-1.483220770388141 -1.397112614817753 -1.544821232843903) (0.3172817883272122 6.067503501724239 -1.730997049492463) (0.1775156229078379 22.42832161495033 -0.9214839810052869) (0.02709123619442626 0.0006274370817382106 -0.009364630022359634) (3.660734507314958 1.203339323887493 -6.493941877551462) (-0.5190586291773126 6.93098547684098 -0.8948767389960304) (0.5461867686532724 0.08335032228098124 -0.3804827543042631) (0.5461867686532724 0.08335032228098124 -0.3804827543042631) (-0.03493205872642362 -0.1865425438633746 -0.1805652727266275) (-0.03493205872642362 -0.1865425438633746 -0.1805652727266275) (0.2195850571064429 -9.242296972901748 -3.953886164705343) (5.014383489118936 30.33929525094312 0.8793486486551101) (1.503606668607831 -1.471127865662246 -3.103964218518418) (-0.2209521167340666 0.04526243237105397 -0.1504486445884003) (-0.1753892809286639 0.1956423765628093 -0.1791579993367027) (-0.102886165303917 -0.02867698773200429 -0.09606381206436981) (-0.1223996937361197 -0.04877263449059412 -0.05940332621729856) (2.496969498691845 5.667440199259043 -4.333039139860849) (0.8124025484662576 3.043687880138483 -0.3469693775125196) (-0.4692555464279854 -13.27421672109939 -1.955468203214418) (-0.355110719709717 0.2051742610935574 -2.673175527653865) (-0.355110719709717 0.2051742610935574 -2.673175527653865) (-0.1087784405675246 0.2047526607575254 0.3439999186482131) (-0.4640739062016035 0.1420148204989344 -0.1620242340908446) (0.1117722331920614 -0.2281709154162957 -0.01680285613086453) (0.2275012606885952 0.0462065027406199 0.09274126595564625) (0.2275012606885952 0.0462065027406199 0.09274126595564625) (0.3080176777843771 -0.2146189635269075 -0.1234715264092225) (-0.004717861348035701 -0.1554047517852043 -0.03421113602783545) (-0.1801396272797269 -0.1540422768586829 -0.1166556204350543) (0.1123094166126071 0.003173688185067195 -0.02917794477614327) (0.1364423743725449 -0.07513355292384014 -0.1260905137855836) (0.1151621336308179 -0.04399179788835782 -0.05566997854178951) (0.1356267272316646 -29.60489519699654 -3.150110135283574) (0.5301014036845414 -11.5540782083319 -2.008117647176012) (0.008488743804792129 0.08779808796140219 -0.02475064986966865) (0.8124025484662576 3.043687880138483 -0.3469693775125196) (0.514362387219833 0.2055603458381212 -0.006261739461040888) (-0.04158235096860258 0.01454333968369569 0.1633732770089628) (-0.3649059259053774 -0.1530715248514291 -0.05326857511720086) (0.2162197405807375 0.08569152263228053 -0.1533969725678856) (-0.3739673013059114 0.7206858464416505 -0.4237715303001465) (0.1364423743725449 -0.07513355292384014 -0.1260905137855836) (0.1364423743725449 -0.07513355292384014 -0.1260905137855836) (0.06356820604770599 -0.09547015593496946 -0.1261596964668275) (0.1626207671600226 0.7137065159856444 0.5955416991362712) (-0.1091468708603599 0.05226693360470264 0.01284131771339805) (-0.5461685214202678 0.4291118216410478 -0.4393053873377545) (-0.01344745458514898 0.3095267453337036 -0.5113769747692463) (-0.1786778211943784 13.57239848806443 -0.2620381707496297) (-0.1308940013790062 -0.6395775912239875 -0.1060968923806982) (0.1151621336308179 -0.04399179788835782 -0.05566997854178951) (-0.08329163959842484 -0.07083108229467142 -0.05651993225771935) (-0.04974380409676479 -0.05228832532467606 -0.03260805071667294) (0.7083973442992026 0.0658985133743123 0.5203259198946653) (0.08845397081754647 -0.1502894853481133 -4.049987884064461) (-0.006600572701225216 0.01439792542886531 0.002910443506488225) (1.481758696947063 15.12502769984711 -3.341238966341743) (0.08030872359372324 -0.0560990039406903 0.01556512496382413) (0.08030872359372324 -0.0560990039406903 0.01556512496382413) (-0.02679037318971393 0.02613509555778194 -0.01893389093602463) (-0.02679037318971393 0.02613509555778194 -0.01893389093602463) (-0.04868017634337847 0.1934904874801034 -0.06887250700756115) (2.38865032654609 0.3880414503616909 -2.63757988703371) (2.38865032654609 0.3880414503616909 -2.63757988703371) (-0.1280449720532541 0.05559393540039377 -0.1010478303279985) (0.02659506269799432 -0.08331080305498702 -5.066047154056124) (-0.0219358426078056 -0.0437670877025548 -0.0372480882389357) (0.7083973442992026 0.0658985133743123 0.5203259198946653) (0.004869621258951943 -0.01985498113314263 -0.03328052644536772) (-5.196689815722777 0.05722656201304133 1.709591487524833) (2.502094038950894 -11.4760726097282 5.597917861898918) (1.175852327428561 -10.45287977370363 0.5191862317586495) (-0.1308940013790062 -0.6395775912239875 -0.1060968923806982) (-0.4305448785761043 -2.307556936873358 0.3337007856395637) (1.557080066248785 -3.176829414821646 -1.792198528899629) (0.04873600166025594 -0.003854013985482298 0.0120314851158526) (0.04873600166025594 -0.003854013985482298 0.0120314851158526) (0.263912770324311 0.7013610248770206 -1.248383253556535) (-0.7913258156992506 1.095811883285363 -0.3002144559747748) (-0.01986362475830705 -6.410312221041773 -1.762543291183748) (-0.2202618133259528 0.1129519954042547 -0.2032687968884853) (-0.1091468708603599 0.05226693360470264 0.01284131771339805) (0.7083973442992026 0.0658985133743123 0.5203259198946653) (0.2545436264388156 0.2703639479860605 0.5921496676986363) (-0.04868017634337847 0.1934904874801034 -0.06887250700756115) (-0.2364118245460579 -0.08546010409087784 0.002262900515939137) (-0.2364118245460579 -0.08546010409087784 0.002262900515939137) (-0.05938883401527541 -0.01445992574700736 0.04096459275587547) (3.734714614544914 -1.532367009352577 -5.861117504929412) (0.5835582843507116 0.6785390844117614 -10.81587084949801) (-0.01222124637406451 0.02741892212309568 0.03265764032325821) (-1.66405757360836 0.0207365849213671 -0.213550899114229) (-3.159002469934667 2.04550492872634 -2.055388540929253) (-0.09592901005838522 -0.05999062627544988 0.0110494567576821) (-0.0202633911763038 -0.02926363876177677 0.05168423396143548) (-0.03182623982649177 0.02015211087907455 0.03406003000246791) (0.114584907394585 0.3947815907208848 -0.2548000305726739) (0.4115936401549839 -0.3404364485824709 -9.288975751116151) (-0.02224528210609206 0.0390786853975119 -0.02419770358214541) (0.03978201071282446 0.02166416242478761 -0.05403837986053885) (-0.001993840071662301 0.01938504399822456 -0.004327796583317703) (0.1787230023739688 -0.006971045102131375 0.09994535946197868) (0.009937761378349926 0.006222613272863416 -0.004291204733752265) (0.7382155282024226 3.049352859329629 -2.665253081008462) (-1.484204997226229 -0.561166753762551 -2.168828461111528) (-0.002939119994042103 -0.08660387786177037 -0.1848758994033499) (-0.002939119994042103 -0.08660387786177037 -0.1848758994033499) (0.001221306457273794 0.01017730362006055 0.0336846206633571) (0.001221306457273794 0.01017730362006055 0.0336846206633571) (-0.03257465222201911 0.00116411278652003 -0.02126805288680297) (-0.01582336676099587 0.02200038039394574 -0.01580445494999847) (-0.01582336676099587 0.02200038039394574 -0.01580445494999847) (1.392227249702363 0.3063157796986842 -6.846927349609231) (-0.9260126507456327 -0.6354182970326008 -0.2292572772892996) (-0.9260126507456327 -0.6354182970326008 -0.2292572772892996) (0.231873769533688 -0.01397218077826634 -0.1441341673381716) (0.231873769533688 -0.01397218077826634 -0.1441341673381716) (1.937755679455116 0.2474232281124574 -0.7361415520340467) (1.937755679455116 0.2474232281124574 -0.7361415520340467) (-0.795531025931949 0.6804370172103889 -1.368999524471675) (-0.2778890692887457 54.73990926404402 -5.435508237388071) (-0.01896831831096805 -0.03074937127269979 0.06834399554726769) (0.1453996389716145 -0.06118405091273024 -11.15871262735621) (0.01616058982850726 0.08002200718835364 -0.08555848786268951) (0.04385699799293537 0.01266956530660208 -0.01642601765158352) (0.01616058982850726 0.08002200718835364 -0.08555848786268951) (0.04385699799293537 0.01266956530660208 -0.01642601765158352) (0.05326130962002469 0.09093448465621481 0.02348039749822256) (-0.0116175748830315 -0.4932431007909618 -0.1398091496641835) (0.568748207504898 1.79339987395522 -3.039961285929322) (0.568748207504898 1.79339987395522 -3.039961285929322) (-1.66405757360836 0.0207365849213671 -0.213550899114229) (-1.66405757360836 0.0207365849213671 -0.213550899114229) (-0.7720128016353189 -8.926266605211081 -2.2450121294401) (-2.218634905468438 2.07263929219817 -3.210198080152852) (-1.946166583859994 0.6085180074265694 -2.665195048142843) (0.2300232925783672 0.2098206503155837 -0.01135661964531559) (-0.1046936420334194 0.2049263204184765 0.02422350100204876) (0.023033702019259 0.09411928824932098 0.2007225339064963) (0.023033702019259 0.09411928824932098 0.2007225339064963) (0.023033702019259 0.09411928824932098 0.2007225339064963) (-0.3289173067640632 0.5856728096150382 -0.4935122250460721) (0.6425691715940063 -0.2229184231963924 0.362477795808376) (-0.3649059259053774 -0.1530715248514291 -0.05326857511720086) (-1.42984630740334 7.433989622142546 -1.231603977075936) (-0.7144798115905193 -1.738685936536006 -1.407484913605513) (1.767701664648311 1.010712724983391 -4.142247257443131) (-0.01232869254690613 8.795869608831108e-05 -0.0007422582498396164) (-0.8361487111450022 0.6636139995243935 -1.140294202613699) (0.8810335376453049 0.476714637905633 -1.839280645334286) (-0.229683743262218 0.08164422084188183 0.005418615853636666) (-0.07883758653923328 -0.01100465470221 -0.05288554196867944) (-0.1146040796135006 -0.02690882459083408 0.02913322447104549) (-0.718829217471228 0.7762818742764258 0.2115069523614083) (0.3847318749818655 0.2415896557248028 -0.1739639634189359) (0.01474320290130079 -0.3346812883558864 0.09494775999355307) (-0.4067314243189791 -0.5221194333605207 -0.02993933643938047) (-0.100594255423049 -0.06373045691386896 -0.01643065528792328) (-0.03735758744639068 0.025517331713379 0.01104775796632312) (-0.07089083594884681 0.02011955693167113 0.003699495601788374) (-0.5233359061865979 -0.03414309869799891 -0.01310164609969355) (0.04165395950518735 0.1517895003860845 -0.0489699450273608) (0.04165395950518735 0.1517895003860845 -0.0489699450273608) (-0.1010409131721441 0.177992235204073 0.2092500716583417) (0.344042870889476 0.287247364301605 -0.2490887541204114) (-0.03003014126620033 -0.0944892000859079 0.09579439693072209) (0.02166892626839336 -0.0008104217748395688 0.06692645356949495) (-0.02703857698256201 -0.01387504546054865 0.01091612563519872) (-0.3331898257095403 0.2700501023810333 -0.03344465041567765) (-0.3331898257095403 0.2700501023810333 -0.03344465041567765) (2.502094038950894 -11.4760726097282 5.597917861898918) (-0.1127617238373176 -0.0172162939601109 -0.1042287036565436) (-0.9416768781295985 0.3320224090529899 0.06894802391375335) (-0.564049591985032 0.3903488799329304 0.3994738527305476) (-0.3289173067640632 0.5856728096150382 -0.4935122250460721) (-0.6251561166088824 -1.186458104206328 -0.4900040903836815) (-0.6251561166088824 -1.186458104206328 -0.4900040903836815) (-0.06261876375025494 0.07463752792776385 0.02681370636168594) (-0.06261876375025494 0.07463752792776385 0.02681370636168594) (-0.6989420140317898 0.1708968552271094 0.1704872526809171) (0.09286576845981843 0.5830724691330684 -0.2331519207544523) (1.12229890884832 0.3789661650826592 -0.2555924974747647) (-0.2209521167340666 0.04526243237105397 -0.1504486445884003) (-0.05325193722761317 -0.06628861911490549 -0.04172757361627122) (0.04627912471499426 -0.180764185981216 0.4603444123559562) (-0.08781124696153052 -0.05294644784640051 0.01563484401947461) (-0.1825411482906419 0.06168032633433047 0.02160883772835281) (0.1119625797783805 1.965705574325104 -2.102491573629033) (0.8810335376453049 0.476714637905633 -1.839280645334286) (-2.142538165569578 -0.3477224728184478 -5.376575693970683) (0.04197952525858921 0.01835215098118385 -5.883732509056439) (0.05294316782474101 0.002586307927364897 0.02012628396408941) (0.3088897565564964 0.316359535385607 -12.84437322980375) (-0.1939433384223006 0.8686844833751262 -1.146957110937391) (-0.09592901005838522 -0.05999062627544988 0.0110494567576821) (-0.2209521167340666 0.04526243237105397 -0.1504486445884003) (-0.1671153837156523 1.198627795542748 -1.744723757755478) (-0.932212125384236 1.163799660080453 -2.210924356416258) (-2.679834995675375 3.079011287788783 -27.61937468319011) (0.8851232532217104 -5.312017336212335 0.4305075668645763) (0.8851232532217104 -5.312017336212335 0.4305075668645763) (-0.4938503896385639 -0.1140071413950475 0.0308657503712834) (-1.070478303680323 -7.592946933328054 -2.564651679816185) (1.453176172051369 -4.534520454327475 -1.368430816221747) (-0.01747535342120622 -0.6640799628397638 -0.07984323301183444) (-0.9373778034389854 -8.835259399181643 2.457303697156965) (-0.06627078476346759 0.1789988320354425 -0.1882460452699255) (-0.4280906586481529 1.998626317113873 -1.472245326547317) (0.1122330282759676 0.004176150565753649 -5.75541963566731) (-0.04561077920053818 -0.01986860597367399 -0.0165842750337387) (-0.3510892489436656 -0.2648185772903302 0.1767796528305579) (0.06143828338457281 -0.02988470244066307 -0.0277073363960954) (-1.407884416568385 -3.555689642429227 -1.88560016336239) (2.476964048332402 -1.890016532752983 3.841048091113169) (-0.9416768781295985 0.3320224090529899 0.06894802391375335) (-1.840677818288044 -5.46260196830269 -0.2159572764844602) (-0.273928096737688 -0.4274755836859601 -1.480476846697941) (-2.367031915955643 -14.80788652815257 6.536267869135252) (1.814941003873801 1.326230717914419 -1.972542630417754) (-1.295994430937013 5.112691820473683 1.017194456869254) (0.07078572525394222 -0.287924855497006 -1.934620502228016) (-0.4411468084573792 -0.2239816365915487 -0.2787307633939896) (6.180605342789134 26.0717914987139 -40.27234735720722) (6.180605342789134 26.0717914987139 -40.27234735720722) (-1.468173871957762 -6.540736895885463 -6.759038653412594) (0.0009039407880500703 0.004277113907610921 -0.01632883875602308) (0.0009039407880500703 0.004277113907610921 -0.01632883875602308) (-0.06222853735772631 0.01944907844549098 0.003092710928473345) (-0.06222853735772631 0.01944907844549098 0.003092710928473345) (-0.2268395398760873 0.2055939427053121 0.0292098040820294) (-0.2268395398760873 0.2055939427053121 0.0292098040820294) (-0.1860503248233384 -0.05604145563007101 -0.2107789399311765) (-0.8361487111450022 0.6636139995243935 -1.140294202613699) (0.3435063307579728 -0.1744241751282512 -0.3913977215205084) (-0.07883758653923328 -0.01100465470221 -0.05288554196867944) (0.009669037931252625 -0.009045549992078017 -0.07123809390148869) (-0.02515812224536328 -0.00978492862613731 0.007911751058088586) (-0.1223996937361197 -0.04877263449059412 -0.05940332621729856) (-0.004703864825463698 -0.03537422178224889 -0.07462682797277113) (-0.004812518772242702 0.002620813297017144 -0.02457643003783525) (-0.0207480859970809 0.04333222635473847 -5.034865829708242) (-0.750408107056749 -0.4045251306120133 -1.027143431921744) (2.392416680111082 4.228463127392059 0.2438434769199619) (-1.700095706682529 11.31560627906717 -0.7458807962191767) (-1.909972818433905 -0.2797305061337171 -0.6393738062301133) (-0.07189499301709516 0.00226695084865389 -0.01921122727517335) (-0.05939279184723074 0.02157814420655912 0.01511438682003307) (-0.9615672474337065 -0.8064811346506344 -1.576169468462658) (-0.7847176273511901 0.4696427392210518 -2.522871895173032) (-0.03280568240948897 0.02017273491607366 0.01420644394367766) (0.007820049747927195 0.01562350308654515 -0.003329932847322607) (0.006220654145862935 0.06790824107413046 -0.0490015770211767) (-0.02679232673047634 -0.01685820967465943 0.004813426196635398) (-0.1101575548738696 0.09083806572065166 -0.1811551408991608) (-0.3250979231258335 -0.04659096938521685 -0.08515520475861649) (-0.09742380831169528 -0.1595358685122646 0.7508149956220412) (0.5375006818270835 -0.4161290822617185 0.3667051617904038) (-0.09592901005838522 -0.05999062627544988 0.0110494567576821) (-0.02224528210609206 0.0390786853975119 -0.02419770358214541) (-2.142538165569578 -0.3477224728184478 -5.376575693970683) (-1.366875689910283 4.192864664007389 -5.923449606538028) (-0.05512577602871925 -0.00610511893079364 0.01990364483148899) (-1.579536583269318 -2.864644462566767 2.157980404068908) (-0.1714738239022868 -0.2490041354735518 -1.828315668055954) (-0.1714738239022868 -0.2490041354735518 -1.828315668055954) (1.177756213910845 -2.432936624709632 -3.780074070848089) (0.4858126112314773 0.8342457743442644 -0.1493379934467471) (0.4858126112314773 0.8342457743442644 -0.1493379934467471) (0.7382155282024226 3.049352859329629 -2.665253081008462) (0.3063493245958832 -0.2324781490238031 -0.2661997470140257) (0.3063493245958832 -0.2324781490238031 -0.2661997470140257) (0.5524709021575341 0.3800489144932622 -0.126694047803555) (-0.4239287675824833 0.04379127971327305 -0.08092495763989277) (1.790666347800421 -0.8741935383133521 -1.746338426551304) (-1.115465225617119 4.19191432964788 -2.584549271559551) (-1.115465225617119 4.19191432964788 -2.584549271559551) (-0.3510892489436656 -0.2648185772903302 0.1767796528305579) (-2.884168372525377 23.63969224881493 0.2365228727135144) (-0.03482733627297544 -0.02390681511924329 0.1206604900422473) (-0.03482733627297544 -0.02390681511924329 0.1206604900422473) (0.1368869154959699 -0.002085211386670473 -0.03110373541480799) (0.027938526020898 0.004185012327198315 0.03310272351989589) (0.08325430852343374 -0.2070928006183779 -0.04851977983558887) (-0.01344745458514898 0.3095267453337036 -0.5113769747692463) (-1.809570510719301 -2.192506601837806 -9.579630708595593) (0.09219838186381174 -0.2068513291921813 -3.105427270458264) (0.09219838186381174 -0.2068513291921813 -3.105427270458264) (-0.6633612272131246 0.8552761708618056 -5.008659711727317) (0.4361274519736313 0.5909157974025691 -0.381229343819412) (-0.03615095520225772 0.007463727179151379 0.003924463554966911) (-0.03476104324745404 0.01542329878570464 0.0120378775378744) (0.3418665788348266 0.1583849045581469 0.03077409862211269) (-0.1146040796135006 -0.02690882459083408 0.02913322447104549) (-0.718829217471228 0.7762818742764258 0.2115069523614083) (-0.06104670685526175 -0.04917744671510554 0.06193200649488654) (-0.06104670685526175 -0.04917744671510554 0.06193200649488654) (-0.2537873077054461 0.07713399495781853 -0.04002597458721726) (0.3080176777843771 -0.2146189635269075 -0.1234715264092225) (1.279046709022525 4.605297365163315 -1.129669294763102) (-0.02224528210609206 0.0390786853975119 -0.02419770358214541) (-0.1083657245147769 0.2688933328009613 -0.01661132971277919) (0.0300330901212548 0.192086771612623 -0.2369721127159548) (-0.04095900754518297 0.02026421630096348 -0.04649145401115085) (-0.184431885340241 0.08313438673324296 -0.2545763856603115) (-0.05132545052798906 0.1448791752444485 -0.0289650084003962) (-0.05132545052798906 0.1448791752444485 -0.0289650084003962) (-0.009142004464906201 -0.001742742431760759 0.01542784056393061) (-0.102886165303917 -0.02867698773200429 -0.09606381206436981) (0.18658351500661 0.2502356470196326 -0.5757024293535964) (2.963191499071653 0.3758503797915107 -0.8538401142682326) (2.656952616382997 -6.096494196339748 2.394835905689928) (-0.1238343196516402 -0.08528281294368338 -4.823330043538279) (2.476964048332402 -1.890016532752983 3.841048091113169) (-0.03327400666177588 -0.02950334208022337 0.0051512983186183) (-0.02277648212306805 -0.06020648933099208 0.05574254085349833) (0.06761226528663174 0.04063081058957078 0.0748183360697815) (-0.1107802787443962 0.05833739647278995 -0.03690139917757621) (-0.1107802787443962 0.05833739647278995 -0.03690139917757621) (-0.7847176273511901 0.4696427392210518 -2.522871895173032) (-1.039323184501969 -7.370419082109676 3.424656827769895) (-1.348228835241202 -28.21510081795198 -1.239313000339534) (-1.483220770388141 -1.397112614817753 -1.544821232843903) (-0.9265759748212045 -2.428239413665241 -2.333323219037646) (-0.9265759748212045 -2.428239413665241 -2.333323219037646) (0.7122675872907146 -1.197214615656619 -0.2249380263319022) (-0.05512577602871925 -0.00610511893079364 0.01990364483148899) (1.257922149153808 0.1987626262630711 -1.087204584590711) (1.257922149153808 0.1987626262630711 -1.087204584590711) (-0.9355989807622543 0.7016160543427388 -0.08659038433571431) (-0.9355989807622543 0.7016160543427388 -0.08659038433571431) (0.6013173143211077 0.3135168955539634 0.2553274737694499) (-0.6633612272131246 0.8552761708618056 -5.008659711727317) (0.4982083376199599 1.483786437264985 0.771562473447315) (0.3924579444511874 9.430948668372487 1.202090028197137) (0.3924579444511874 9.430948668372487 1.202090028197137) (0.5682917372215904 9.468293633030751 -3.929102864977044) (0.7369763115687371 1.115211985513899 -0.1354210325126055) (-2.258088181813 -2.820399374148295 -1.043945630774395) (2.02477993114945 -3.43327634689651 -0.7243026332187184) (-0.07279019869041625 0.5225061709631241 -0.8062948974542777) (-1.203320858376495 0.6029882498672043 -0.4206089350852029) (-0.6631693950169295 -1.029525003463688 -5.852547084593848) (0.01731065575734297 0.04218699395974021 0.06553073048555248) (-0.09248979016718267 0.08707420529894427 -0.2215218276414253) (-0.3774293518946157 0.04079329589664542 -0.03038223188867651) (3.469469162177917 15.49615231500486 -0.9051309480957894) (0.2329686766811098 0.03602521313153938 0.06052635640285949) (0.2946875438463369 4.214879163149202 3.93489541533494) (-0.1870614819102835 10.1759024915514 0.1300657005689595) (2.446416306926477 9.177830240769653 -3.56314612907308) (-0.05537273929100043 0.4382374667187746 -0.4855022920938041) (2.037744406375138 -6.000072015287368 1.708401432772194) (0.008488743804792129 0.08779808796140219 -0.02475064986966865) (-0.2456258140070613 -0.2986263980302032 -0.2243312650651343) (-0.2456258140070613 -0.2986263980302032 -0.2243312650651343) (-0.03257465222201911 0.00116411278652003 -0.02126805288680297) (-0.01721366768991273 -0.01624986968363019 -0.1596784870513208) (0.7663492148245008 4.649197719374783 -4.185438758348971) (0.0584360893613406 -0.04897415098618974 -0.02223577100572528) (-0.354082978378677 2.078049084976312 -0.3174425956058491) (-0.354082978378677 2.078049084976312 -0.3174425956058491) (0.01731065575734297 0.04218699395974021 0.06553073048555248) (-0.06492283001155021 0.04682033515494774 -0.0801809209345979) (3.837853630629689 -2.223003165002338 -7.219211183720915) (-0.1803931637440125 -0.03099523108850678 -0.1657824010377035) (-0.03182623982649177 0.02015211087907455 0.03406003000246791) (-0.7740711511563294 4.194843052441697 0.1620294479859232) (0.04627912471499426 -0.180764185981216 0.4603444123559562) (-0.05906643689258358 -0.009844226483811327 0.04987665809682132) (-0.02703857698256201 -0.01387504546054865 0.01091612563519872) (0.07925801153692937 -0.04872788981771466 -0.08248288532040669) (-0.1959104746612587 5.28066625371507 -1.780061244357396) (1.951871111661024 1.484336821269729 -0.1181597011810163) (0.1999757121692705 0.07101700067970243 -0.07386405120089327) (0.4566827304351064 -0.09000612274720274 -6.716982759504539) (0.04920314671577153 -0.1851521185975717 -0.2664680540305884) (0.03854166188191921 -0.2870409255407469 0.1205855334631825) (0.03854166188191921 -0.2870409255407469 0.1205855334631825) (-1.106806054510722 0.6611379957908377 1.044245088005571) (-0.0156315811323173 0.02001264962694468 0.005911782315435158) (4.876290969360591 0.5467294068885598 5.152769729282838) (0.03978201071282446 0.02166416242478761 -0.05403837986053885) (0.07925801153692937 -0.04872788981771466 -0.08248288532040669) (-0.2361777429628714 0.06193487298213037 -0.2757082751921093) (-0.1280449720532541 0.05559393540039377 -0.1010478303279985) (-0.01694698334754447 0.001053682291371566 -0.6237494385186473) (-0.01694698334754447 0.001053682291371566 -0.6237494385186473) (1.98504176925358 4.596850146633023 -0.2437387753503582) (0.0994798535480978 0.1031504558692055 -0.01796589505848367) (0.1297181706299897 0.009392455445952907 -0.02208531375321142) (-3.054303862043276 -20.29914216373827 -7.462728304357841) (2.004140203020117 -0.6689093641980238 -1.097911762376669) (-1.630530559380767 1.595786953759439 1.614799858239865) (-1.630530559380767 1.595786953759439 1.614799858239865) (-1.211848647095371 -34.29094066568166 -1.965259090668363) (-0.1483491493489988 0.0706592696954111 -0.03027916703029339) (-0.1483491493489988 0.0706592696954111 -0.03027916703029339) (0.01464349958054805 0.05348417046571612 0.1379488441406546) (-0.2469308488088106 0.1583557586672353 -0.8940286836283777) (-0.09753033314545874 0.005885967387649314 -0.07401087876196608) (-0.03751332025893153 0.04797828056541737 0.09143635647771879) (0.6512227571918328 0.2317221645573729 -0.2481313953548958) (-0.1055713293267127 -0.08275582011146917 -0.2358349516351438) (-0.1055713293267127 -0.08275582011146917 -0.2358349516351438) (-0.3181123146301064 -0.1449167810795029 -0.1538331201105751) (-0.1801396272797269 -0.1540422768586829 -0.1166556204350543) (-0.004717861348035701 -0.1554047517852043 -0.03421113602783545) (1.089526530549158 -7.734213121149303 -2.663227493594999) (-0.06283639252056353 0.2631944588345432 -0.1857795541037684) (-0.3368527454490603 0.07661747330976432 0.08697369524209116) (-0.262291127159525 -0.06798102213409711 -0.08656509501857758) (-0.262291127159525 -0.06798102213409711 -0.08656509501857758) (2.502094038950894 -11.4760726097282 5.597917861898918) (3.617093991693408 0.4711340384910361 0.01936926573298559) (-0.06033264957176896 -0.03169891562746234 0.03795886368422462) (-0.07648204779767639 -0.0453006222583052 0.009310246212128736) (-0.04218413086055126 -0.07140653997667334 0.09355269035815786) (1.28509215095304 1.567113086892827 1.989210607016038) (-0.06954258680502393 -0.02030576811388702 -0.02492553119872752) (-0.0006890778398363773 0.06166265208843119 -0.1959619979068523) (-0.8637300609114824 0.2842381146755326 -0.1405900301726871) (0.2472877892268026 -0.04908140849421104 0.05487820392813446) (0.07794914118121762 0.01887134098075566 0.02951012212130261) (1.453176172051369 -4.534520454327475 -1.368430816221747) (-0.08138450216109409 0.02052807132347353 -0.3999396646137439) (1.530110674098599 0.3419626390792297 -8.570346872560476) (0.5410791844993589 -0.7833688422598987 -0.6550976428322123) (-0.02444001359890435 0.02858105547245598 0.05027301519172091) (0.6314898924515797 -0.008494248942045535 -0.04746040626415804) (-0.1676628439071959 0.1240067221330497 -0.06427393621502316) (-0.2202618133259528 0.1129519954042547 -0.2032687968884853) (0.0130937248032154 0.01555048545090661 -0.2421852081032696) (0.07275278567895915 8.699076016196161 2.34337297191596) (-1.295994430937013 5.112691820473683 1.017194456869254) (-3.362748019904339 -10.66532829940328 -0.3937667383912899) (-3.362748019904339 -10.66532829940328 -0.3937667383912899) (0.09264626030374187 -0.0115401762073135 0.001053148327303473) (-0.008228685428275088 -0.00169540895450102 0.02337597180946062) (0.01748822133615391 0.004753273758439347 0.02761336182481844) (0.01748822133615391 0.004753273758439347 0.02761336182481844) (-0.08138450216109409 0.02052807132347353 -0.3999396646137439) (0.03247539554352335 0.3433072593001844 -0.1256691960029954) (0.005430259539214399 0.0423055148563966 0.001845541818324912) (-0.02246186504244915 -0.01609249575041811 0.05579441601643321) (-3.054303862043276 -20.29914216373827 -7.462728304357841) (-3.054303862043276 -20.29914216373827 -7.462728304357841) (0.2472877892268026 -0.04908140849421104 0.05487820392813446) (0.1152245756587397 -0.001282698365115867 0.07929282973967164) (-0.06132286517805047 0.04359191800627479 -0.02280289284972007) (0.04834632279617257 0.1925757693675006 -0.1476446640132296) (-0.06128662344844903 0.0148072283441936 -0.02542126512804402) (-0.06128662344844903 0.0148072283441936 -0.02542126512804402) (0.2196914069780346 0.5374267237980923 0.2814558173086906) (2.004140203020117 -0.6689093641980238 -1.097911762376669) (0.01245901047209773 -0.02370673673113046 0.04089965541780553) (0.0180772781081828 1.124702468922764 -20.00649289826429) (0.0241857864045707 2.415774462578006 -0.8835976436094213) (-0.05091258083053306 0.1731406204664828 -0.3884418596722303) (-0.5359397962653433 -0.110249353119736 -0.8362257805724244) (0.06143828338457281 -0.02988470244066307 -0.0277073363960954) (0.05759252651732993 0.01150474521868311 0.00491222626074832) (2.720484592574778 -1.820068418197317 -1.652294314709644) (-1.203320858376495 0.6029882498672043 -0.4206089350852029) (0.07275278567895915 8.699076016196161 2.34337297191596) (-0.4125038400214067 1.178726733309181 -21.78513597427131) (-0.1925345853319499 0.2103164104392488 -0.3807142587389068) (0.5524709021575341 0.3800489144932622 -0.126694047803555) (-1.277961885020229 -1.430568007110258 -1.696511351788801) (0.3934990866171001 -1.169966434735429 -0.8416724381169045) (-0.1041976272580352 0.07262909013891754 -0.1098120262767949) (-0.273928096737688 -0.4274755836859601 -1.480476846697941) (-0.009871089213272149 0.02673541075164706 0.001467791514419141) (-0.09753033314545874 0.005885967387649314 -0.07401087876196608) (0.08659775553919509 -0.1317401667943561 -0.01069183576536867) (-0.5461685214202678 0.4291118216410478 -0.4393053873377545) (0.3043238190596524 -0.05313219486301707 0.05082139762768578) (-3.60806676657612 -0.6961283052387727 -6.195306047428005) (0.5410791844993589 -0.7833688422598987 -0.6550976428322123) (-0.3854982328972656 0.3717435659846178 0.06691011382812428) (0.137843462353409 -0.01031589847630276 0.04087087479457896) (-0.01702883154306294 0.03461901651580797 0.06362131069414939) (-0.01212679957278756 0.005541561101098421 -9.418812310962778e-05) (-0.01212679957278756 0.005541561101098421 -9.418812310962778e-05) (0.1187364694706526 0.006308670542303524 0.07438206264297828) (-4.685460751390258 10.43857290605699 -1.324464258714536) (0.07275278567895915 8.699076016196161 2.34337297191596) (-4.685460751390258 10.43857290605699 -1.324464258714536) (-0.564049591985032 0.3903488799329304 0.3994738527305476) (-0.09742380831169528 -0.1595358685122646 0.7508149956220412) (-0.4239287675824833 0.04379127971327305 -0.08092495763989277) (2.456091658852933 -5.173985839260263 -0.4314320730338597) (0.0130937248032154 0.01555048545090661 -0.2421852081032696) (-0.3854982328972656 0.3717435659846178 0.06691011382812428) (-1.946166583859994 0.6085180074265694 -2.665195048142843) (-0.01118328969477779 0.0283935652282122 -0.008917533321609682) (0.6512227571918328 0.2317221645573729 -0.2481313953548958) (-0.2361777429628714 0.06193487298213037 -0.2757082751921093) (-1.070478303680323 -7.592946933328054 -2.564651679816185) (-0.009538739580169823 0.05749679708851151 0.02303342978098006) (-0.4534511018201873 0.5145436756121458 -0.6799001514950104) (-0.4305448785761043 -2.307556936873358 0.3337007856395637) (-0.04974380409676479 -0.05228832532467606 -0.03260805071667294) (0.2181932071896795 -0.01291949228179073 0.5420288439616667) (-0.4534511018201873 0.5145436756121458 -0.6799001514950104) (-0.8637300609114824 0.2842381146755326 -0.1405900301726871) (0.1999757121692705 0.07101700067970243 -0.07386405120089327) (-0.3172083674535086 0.2735577146882718 -0.3856285042550488) (-0.07648204779767639 -0.0453006222583052 0.009310246212128736) (-0.1096636411671734 -0.08935882292623751 -0.0662781932773894) (-0.1018688514546997 -0.1469477838975163 -7.764216492594447) (-0.02515812224536328 -0.00978492862613731 0.007911751058088586) (0.003130860672301742 -0.01074354752942044 0.003326477762274538) (0.1479003147192719 0.1296445168242729 -0.04343609191126671) (2.037744406375138 -6.000072015287368 1.708401432772194) (0.04359237827525186 0.008772828070025659 -4.575997358534675) (-0.3854982328972656 0.3717435659846178 0.06691011382812428) (-0.7847176273511901 0.4696427392210518 -2.522871895173032) (0.09253126048793181 0.1416294091379763 -0.2776000431564223) ) ; } procBoundary1to2 { type processor; value nonuniform List<vector> 30 ( (-0.02847600747307675 -0.07348440921606587 0.04317433243560711) (-0.01838198244797317 -0.003391469129522561 -0.01003612488893547) (0.03008597105619624 0.01316803567477107 -0.01768635168296102) (-0.01480576632356506 -0.01964840921890482 -0.05659738308872703) (-0.01480576632356506 -0.01964840921890482 -0.05659738308872703) (-0.1737953981601369 -0.1681498459743207 -0.090807752226267) (-0.1737953981601369 -0.1681498459743207 -0.090807752226267) (-0.3714562585102536 0.1182487325955303 0.4163746848607138) (0.0256424281989674 0.02941349077551581 -0.003353106118122012) (-0.01167228337994672 -0.009942112784299986 0.0008605705765894981) (-0.3627920548137449 0.01925334743417351 0.2699866684826905) (-0.01948732241009224 -0.03549429452358306 -0.00167410389962716) (0.2251045139100817 -0.0809867007408635 0.004054142163513034) (-0.03340472275376424 -0.005472337958739195 0.01642966077815115) (0.006841456657585253 0.03632036930966873 0.02597268172437307) (-0.03500619600832113 0.07953692167936539 0.01497168237479089) (-0.0004012676883696928 0.000362854304207546 -0.004242863855109924) (-0.1069904882679806 -0.2051727089229715 -0.008555010808745102) (-0.1069904882679806 -0.2051727089229715 -0.008555010808745102) (0.01614673610847174 0.009516734187872633 0.006027717717637723) (-0.0198366322886195 -0.3763524154658579 0.2094103006875582) (0.02697729360441187 -0.1637261098172375 0.2943099546495498) (0.5612278957806935 -0.4435841396638371 0.7217630654441437) (0.5612278957806935 -0.4435841396638371 0.7217630654441437) (-0.09483197547466925 -0.1875913563778233 0.132239693665588) (0.2618087993258041 -0.6291151886359977 0.2134344195879282) (-0.002256845104716073 0.01412325530980454 0.006912527974302503) (-0.03835606769473562 -0.1460571993808944 -0.1295667985477) (-0.03500619600832113 0.07953692167936539 0.01497168237479089) (0.06637757977120987 0.02323585510035551 -0.03362161751345738) ) ; } procBoundary1to3 { type processor; value nonuniform List<vector> 1326 ( (-6.564530449433368 0.1285996968420282 9.468839129085096) (-0.02130172860248776 0.004682506671830964 -0.01573207216279333) (0.1595261998152823 -0.130944132029786 0.02578218956269755) (-0.0007589346304098382 0.07301839025527884 -0.05955050772853332) (-3.738388247559639 0.2068850617529886 1.117512542087865) (0.08163719992197926 0.04332320689816832 -0.01479749380368241) (-0.09800098048597852 0.0003232103381563545 -0.01908391850991961) (-0.7209651641140948 0.1569487066811741 0.2481869211900787) (9.634827064883515 -2.005503498204231 -16.67014555660579) (-0.005722468642778137 -0.009090679675789047 -0.01436831160783565) (0.027102898174364 -0.01365784303184906 0.04265495257084327) (-0.05356431629190218 -0.04759120088067385 -0.01246648947732185) (-0.0004049066714133297 0.009575752481094456 -0.01446629116525135) (0.01316911951028506 -0.3230856255755594 -0.0462000241066293) (0.04069491530391679 0.04681357458641017 -0.08518894738893201) (0.07248814467713949 -0.06007754242331097 -0.01460937054339529) (-0.02508390067617378 0.003530036476654562 -0.01195980564424051) (0.01082144589218901 0.006196221793774577 0.009894666685094863) (0.01518144282316198 -0.005590052370152251 0.0009892789631073132) (0.0422738572728473 -0.03258913194592462 0.03677560691011358) (0.0422738572728473 -0.03258913194592462 0.03677560691011358) (-12.48591415171155 0.93248129609891 -15.77891936037754) (0.08666211979913972 0.1632874921862041 0.2438384069898138) (-0.1277280053945029 -0.01093565896197346 0.6049533866697901) (0.2961647458988254 1.892709669123581 -5.642313124963104) (-0.1524570845693336 0.02124825943050951 -0.07025027112901826) (-0.003925044002829888 -0.02769764894262538 7.483831729001786e-05) (-0.004797457181161795 0.0298589609262413 0.008466497758948335) (0.008439084443621948 0.005855256245017257 -0.0006252604361208555) (9.634827064883515 -2.005503498204231 -16.67014555660579) (-0.2555316068215927 -0.09260735936733482 0.2093094422031566) (6.222233368377434 7.156685098783263 -10.24795226269061) (0.4901830764073832 0.1445100348528198 0.6677485115010278) (0.3684704097706266 0.1454963596951121 0.05711375899355245) (0.008110213570392195 -0.005970352916867067 -0.001304533590221731) (0.008110213570392195 -0.005970352916867067 -0.001304533590221731) (0.2593256770500316 0.104296889138125 0.2168768340435078) (0.3533755358177798 0.0009320091764058944 0.06566988465214281) (0.01060563491389687 -0.002874291480856443 -0.005491250446112176) (0.007884079286210032 -0.00343748517094934 0.003786006940891272) (0.08689316144442477 -0.02699679671501432 0.02306373231663431) (0.004882806948680343 -0.001139210077050343 0.00492715777188016) (-1.994526788430985 -1.115634929203633 0.5323911769045113) (0.2730557759496304 -0.496917387092193 0.382839340391883) (-0.4642578166030236 -0.9515069263528865 0.5397798256197208) (-0.1189812392751504 -0.3408857759775809 0.3468684126092383) (0.09276076799373301 -0.1614380855324665 0.2542294536114664) (-0.2913620985235593 0.2380855172997665 -0.3934949528267085) (0.02181142412321467 -0.004813207297754326 0.01540793201197331) (0.005377306973761112 0.03414485409720363 0.03658726868900564) (0.0225033665301653 0.01863062992268502 -0.008958679542399102) (-0.003931905832840647 -0.001235771039969439 0.01114510812639441) (-0.001788296851709574 -0.004486923102838756 -0.004041163010006543) (0.008006780252956923 0.008080475581604157 0.005212380786924382) (0.008006780252956923 0.008080475581604157 0.005212380786924382) (-1.494780718533909 2.036676736208588 -1.708128682295758) (-1.494780718533909 2.036676736208588 -1.708128682295758) (-0.01891340791736296 -0.003442789738499536 0.01152270113652946) (-0.01891340791736296 -0.003442789738499536 0.01152270113652946) (-0.1629856580168438 0.05014938215409731 -0.131247977152555) (0.07126476875618452 0.1437740018712639 0.3191155683147896) (7.715195093390546 8.295599500222595 -1.714756995694235) (0.009906147971389298 0.003011495757025421 -0.01696239269864367) (0.07467250433907449 -0.1928802941214564 -0.02417459643161922) (0.01153706003880414 -0.006254223957275909 0.006089906693148309) (0.01153706003880414 -0.006254223957275909 0.006089906693148309) (8.827572399926314 4.787325325066485 -0.3428884233917024) (-0.005660929590719984 -0.02158058465542015 0.002989512681691286) (-0.0009043612154701428 -0.01410864303832027 -0.004827837751091696) (0.007029699759974604 -0.003882654706537491 0.001274982552395146) (-0.01008379338793318 0.01025360011786898 0.01069292062463117) (-0.0144352894512954 -0.00696485726013695 -0.003729191821350313) (-0.008116879437977904 -0.002051445673882859 0.003861099234523401) (-0.006734050398662458 -0.002682765750806075 -0.001324301194101559) (0.01237510344625681 0.01863917944359648 0.00411100154864031) (0.01237510344625681 0.01863917944359648 0.00411100154864031) (-0.02559710989918809 -0.001633423727150727 -0.01578821251842212) (-0.02559710989918809 -0.001633423727150727 -0.01578821251842212) (-0.002638469860159459 -0.01081132325498257 0.0134250016417506) (0.005548107659810786 0.00274230657265845 -0.004209554838522569) (-1.955498384064881 -0.9887526992419799 -6.370108847971906) (4.232214731067564 -0.633704186563452 0.5745171635492436) (-1.327608215968409 -0.6424396565952671 1.063263668925351) (0.00373897358099865 -0.006298037177513666 0.0005492099135125648) (-0.006220081713616813 -0.01005700747400821 0.00908803067312774) (0.00373897358099865 -0.006298037177513666 0.0005492099135125648) (0.00373897358099865 -0.006298037177513666 0.0005492099135125648) (0.008394788602239318 -0.01389045998625251 -0.01560692434100707) (0.002445554002649356 0.01692399058770179 0.0005896517618354784) (-0.02594166853776102 0.07843704929127171 -0.02051894542818248) (-0.006220081713616813 -0.01005700747400821 0.00908803067312774) (0.1335285303304252 0.05513564903270722 -0.01260975839886188) (-0.009622001589905477 0.005366022446561786 -0.0008744932849105453) (-0.0008963940954711961 -0.007222791481146998 0.002174132741274635) (2.671070572775851 -49.76752056223176 8.352076410379402) (0.3112852173874475 0.01948879349557409 -0.2377289193542669) (-5.51814423793285 -67.64687544588533 -5.012358683842647) (0.01251724272670307 0.008095923872714976 0.002500275619509681) (0.7794707682469846 -8.932466578772177 -9.228875322202084) (-0.1583251827981521 0.01312005832485946 0.05288856758274837) (-0.1583251827981521 0.01312005832485946 0.05288856758274837) (-0.0147732591526135 -0.04269607828630975 -0.0185438572959083) (-0.01141417198900161 -0.0321092130303955 -0.02522472476607112) (-0.07125709046640299 0.02866899587066306 -0.04780107080482662) (-0.03525476358077834 0.02160647940923712 0.01961761778730498) (0.1796903723651088 -0.7133346395758985 -1.293556256942392) (0.1796903723651088 -0.7133346395758985 -1.293556256942392) (-0.1524570845693336 0.02124825943050951 -0.07025027112901826) (0.2058358528265027 0.1326107929959497 -0.02105638514261874) (0.06854374255698362 -0.1334903173078344 0.1204054169314643) (-0.01582243365865389 -0.004856093840632751 0.009049982598700339) (0.01621771346023461 0.004988308371245387 0.03110790449096226) (-0.04161508004962815 -0.003746992012843547 0.000235990353319962) (-0.02508390067617378 0.003530036476654562 -0.01195980564424051) (0.04663943799115289 -0.0383946072119951 -0.06545454343507918) (0.01510646664993107 -0.002018319989343511 0.03844563523906386) (0.01009931142758978 -0.007533020128793003 0.003253967697897115) (-0.2133571787761858 0.05326715613152916 0.4900499069592684) (-0.005872527618869538 -0.01297469218070858 0.004909885717679585) (-0.005872527618869538 -0.01297469218070858 0.004909885717679585) (-0.01614755271318722 -0.01376510228732822 0.01073100628759815) (-0.01733124313977939 -0.01150444495837074 0.02305491164435319) (-0.01047318016447172 0.006305065788617536 0.01038295993742644) (-0.0125114522612832 0.01122556969018793 0.01172284244077377) (-0.006446434352384635 -0.003096445660064938 -0.0003694856797035987) (-0.003877690870998115 0.01227700196364994 0.002489879828078469) (-0.002299283380312037 0.004057938042676934 0.0008574645087063076) (-0.6105301313306297 0.09366364515823405 0.1292277292493023) (0.01146035923036905 0.01259144929742995 -0.003966056779978851) (-0.0123653514704091 0.006710964355681666 0.00972682329175815) (-0.1973125055496939 -0.006898730458015284 -0.0865649378052086) (-0.2193782542435939 -0.05370082681989848 0.04541986090885068) (-0.09859440541273207 0.05220500597741278 -0.04516861210968055) (-0.006231067199222635 -0.0220888503612997 -0.005505666159842134) (0.04167215803781467 0.03370017776920488 0.009814703790745553) (-0.004950017942278456 -0.01310491893553326 0.006133335214358729) (0.09217925731139102 -0.01188517058109253 0.0739425181364663) (0.09217925731139102 -0.01188517058109253 0.0739425181364663) (-0.1304627458891393 -0.1073055552047465 0.03969056605342657) (-0.6307088459311798 -0.3341608211360794 -0.07889639677826402) (-0.01005838768461904 -0.009011099122810208 -0.001464167660283777) (-0.01005838768461904 -0.009011099122810208 -0.001464167660283777) (-0.00519830107115211 -0.004339135643294641 -0.00430864349494562) (-0.003290492392193744 -0.01965180619652685 0.0007519757671442086) (0.0498832170574984 0.003762627108792919 0.02765459957093659) (0.009716302926119046 0.008258738568557486 -0.01048224141366226) (0.009716302926119046 0.008258738568557486 -0.01048224141366226) (0.009716302926119046 0.008258738568557486 -0.01048224141366226) (2.523155897681237 8.167726914639561 -4.892223672659295) (-0.3717940302444694 -0.436684059970703 -0.3854709316610612) (0.1463833272722073 0.4505734761709296 0.3753267525721984) (2.410382528668367 11.4769652493727 -1.438580245926992) (0.027102898174364 -0.01365784303184906 0.04265495257084327) (-0.2116216990586847 1.259755789375885 0.1240738645071975) (0.072369569662581 -0.2539442376948476 -0.5340847633111041) (-0.1908224822362204 0.3654435288751443 -0.3360676075051336) (0.4770904035838568 1.810610132114824 -1.06338233854877) (0.06556757809279241 0.05318872178506797 0.006203019247341145) (0.02641355630743234 -0.09007870300729176 -0.01818727261111994) (0.08261127563537977 0.02800883001393412 -0.03943757737672267) (0.1524103758663342 1.123769869727213 0.2683956976190063) (0.1524103758663342 1.123769869727213 0.2683956976190063) (-0.1949374187558922 0.1703784344159227 0.1633912974787667) (0.04581626480228842 0.02444183791460541 0.02153169204977952) (0.02819106551251167 -0.01721623152275135 -0.004775555982775509) (1.465588406388137 3.808508606019234 -1.615640816189906) (-2.015009664409692 17.81059629924406 4.874817946384763) (-3.867365226431846 21.8334135659947 9.123320855857351) (-0.4104527739446371 4.20195085066315 -5.398787215813012) (-0.4104527739446371 4.20195085066315 -5.398787215813012) (0.002906141878997431 -0.18661961867381 -0.1972560347088494) (-0.03480987252298284 -0.009335636993123536 0.02189367824267579) (-0.03480987252298284 -0.009335636993123536 0.02189367824267579) (-0.004797457181161795 0.0298589609262413 0.008466497758948335) (-0.5352848881187824 -1.424735601398327 -0.2355797781406473) (-0.5352848881187824 -1.424735601398327 -0.2355797781406473) (-0.5352848881187824 -1.424735601398327 -0.2355797781406473) (-0.8037585475323961 3.577898027697493 -13.92585907386194) (-0.01549056343342659 -0.2613476401222664 0.1661143227877284) (-0.5050094847488694 -0.2245304265287926 0.04114981781461907) (-0.5050094847488694 -0.2245304265287926 0.04114981781461907) (-0.5050094847488694 -0.2245304265287926 0.04114981781461907) (0.5490995141139821 0.2584540290429926 -0.00928903666837598) (0.5490995141139821 0.2584540290429926 -0.00928903666837598) (-0.001699947021326048 -0.00917871662082452 -0.003251751314668769) (0.01547197017031512 -0.01151053157195195 0.0153977462927134) (0.05553002103579711 0.03741562697134093 -0.0004655522024080046) (-0.0681223515177244 0.0009655202843490036 -0.005538254945043248) (0.1025620731548259 0.03703148559357827 0.02113915994987346) (-3.81265041717644 -8.215025883434622 -0.8463293773497983) (3.291327986469443 -60.28180304841099 -2.05488655850159) (-0.9201287140669084 -6.658147149465218 -4.404814648173287) (-0.01655586199453342 -0.006816721810037497 -0.05970338655572213) (6.328379418517709 -3.457556761461073 -0.7405326269300527) (6.328379418517709 -3.457556761461073 -0.7405326269300527) (0.003683640026908575 -0.3601298169774002 -0.2004787222449635) (-0.02372886316290678 -0.1401623026495402 0.02128160535142757) (-0.02372886316290678 -0.1401623026495402 0.02128160535142757) (-0.01591207041068897 0.003986350781510473 -0.01270046671650662) (0.002812360699377434 0.1094211976889989 0.03583473229212701) (-0.01008379338793318 0.01025360011786898 0.01069292062463117) (-0.01008379338793318 0.01025360011786898 0.01069292062463117) (0.002994015299336496 -0.009045328483972725 0.005661912811429201) (-0.1524570845693336 0.02124825943050951 -0.07025027112901826) (-1.053523042475301 -1.382765366984988 0.6345008326328274) (-0.02578749165504637 -0.0001832819332125701 0.00135412574349272) (-0.05448540361485554 -0.1921365208275119 0.2992383165232596) (-0.6428110632607394 0.2161413714880123 0.2760621283936631) (-0.05279657850066014 0.001884481274388266 -0.0106523035309619) (-0.002168024151621838 0.01544630883583952 -0.001592889706945159) (-0.02427289829750294 -0.005910286112682366 -0.0003075969099448034) (0.01522198851555479 -0.007894733413765285 -0.00905660872533468) (-0.2338843121913869 0.1175013300306615 -0.2018733795537145) (3.080194549338735 8.159647662898145 -7.791904285772361) (0.2456718443007992 0.1604668736345646 0.1685593464201348) (0.2456718443007992 0.1604668736345646 0.1685593464201348) (-0.2297089330286456 -0.04564244144119965 -0.1534657686630814) (0.0478279553146629 0.02173540489790009 -0.02093045658672063) (0.7197796372039311 0.7077166622505348 -0.2356125154733942) (-0.1485864087480444 1.220523921550681 0.383833325769148) (0.1195725604004228 1.379576511375786 0.05840962059878407) (-0.9339892353360646 -1.248631864794081 -0.829159031282464) (-0.2654653812771908 0.08792969975217522 0.002835617551254545) (-0.2654653812771908 0.08792969975217522 0.002835617551254545) (0.06556757809279241 0.05318872178506797 0.006203019247341145) (-0.02267669568191899 -0.01657788823779752 -0.008755814033400294) (-0.0284950407212029 -0.008016295166785406 -0.004739496774515707) (0.05084899149603851 -0.00473923572434337 -0.01071856561479083) (-0.5218691894983756 49.81309095763586 7.664315538615049) (0.5220975503962136 0.2015727957975425 -0.187038744426996) (-0.1812970253660147 -0.3886361429924853 -0.3889341752270908) (0.3772993471864381 -0.8201163080636599 0.4428817806558123) (-1.760350082860933 -0.3914458543826951 1.053512437769199) (-0.04157463890939626 -0.06286792989065046 -0.02521835697024794) (-0.04157463890939626 -0.06286792989065046 -0.02521835697024794) (0.3209757565146221 -0.08246913256467195 -0.2952766407139224) (0.3209757565146221 -0.08246913256467195 -0.2952766407139224) (-0.08141555804730807 -0.001422553900887978 -0.004095350174347442) (-0.006098986021111981 0.03850802974764025 -0.01993055794594255) (-0.1526407212825352 0.2489384002357656 -0.1105137981389827) (0.5294406187480977 -0.3002526122909162 0.1539341215573856) (0.04561756130588782 0.05321157969149348 -0.1939632069785489) (-0.02632765643983475 -0.02713062722095128 -0.00586566353792901) (-0.1957493880798036 -1.038721220521017 6.358562214125418) (-0.1957493880798036 -1.038721220521017 6.358562214125418) (-0.1957493880798036 -1.038721220521017 6.358562214125418) (0.5220975503962136 0.2015727957975425 -0.187038744426996) (-0.1241111356787865 -0.1884999945835227 -0.3195892275008355) (0.4303002700456349 -0.1282025429320385 -0.2317507707392231) (0.1742474647492321 0.01041289887931141 -0.04187223138644839) (-0.01297793223145335 -0.06638960064959273 0.01515930956515944) (0.07126476875618452 0.1437740018712639 0.3191155683147896) (-0.06875750386971437 0.03043302638280677 -0.01375380715098961) (0.2607277776662662 0.3784380132628966 -0.03503452860520566) (-0.2056170132697837 -0.01088731414848454 0.005547485254816353) (-0.05007270967071747 0.03265529198880246 -0.06165325504799979) (1.236230583270553 -3.386057687470279 -1.397565610697219) (-2.764515613849956 -0.3127407923104633 -0.1463298661922749) (-0.007860350916082849 -0.02265980197034106 0.00160401779407794) (0.002249987170740292 -0.1258039916906808 -0.05107043569669893) (0.0179665585383227 0.01799877456679641 0.009272757324120478) (0.1489048322877574 -0.04055388742819402 -0.1955235609769405) (0.1489048322877574 -0.04055388742819402 -0.1955235609769405) (0.1489048322877574 -0.04055388742819402 -0.1955235609769405) (0.006621141927856664 -0.03561338105889467 0.02081173509211478) (-0.02470404422098564 0.1883824428079899 -0.094589830163753) (-0.4624369400551961 -7.603998660089047 -2.118765757545963) (0.6483596680930367 -5.277742700664069 -0.9043017991759877) (-0.02451643911689634 0.007942729856843019 0.01136139047127466) (0.009317615951885691 0.001822818078639487 -0.01070025722431611) (-2.864507051616772 -3.623358962846486 -1.407795973009555) (-0.8387437685058332 -0.9845932387340108 0.8902266355925303) (0.1262765602419738 -0.130331663292353 -0.001310627910240472) (-2.327357709318721 -5.182152416300448 -1.897645483266319) (-0.3173833900488087 -5.639495056492327 -1.813923112203193) (0.01121462973747422 -0.4443702268193133 -0.2953020662149139) (-0.1262079862693294 0.6306080627272848 0.07545115917701836) (-0.02248701634252869 -0.004459173375272888 0.00552673397577709) (-0.02248701634252869 -0.004459173375272888 0.00552673397577709) (0.8216386860775218 0.4944275086219521 -0.4791393826965276) (-0.7921132161676644 -0.3489023948577449 -0.6471123760997598) (-0.2437800395024401 3.726851672072264 -0.5726476358042565) (0.05071704118076097 0.03166383131920055 0.06851126461130326) (0.1323185416203019 10.70926763670469 3.291780950694894) (1.015320140536509 -61.85646772914711 -4.111424780336703) (1.015320140536509 -61.85646772914711 -4.111424780336703) (-0.2142750952402654 -0.04282593545820241 -0.08615334516975072) (0.07406443783086955 0.009206382142661626 -0.00567315788161021) (-0.05567995004929873 0.001193486502182808 0.01108410286580487) (0.2240054747721612 -0.03522331517403902 0.1024117691706215) (0.2240054747721612 -0.03522331517403902 0.1024117691706215) (-0.02106670296676297 -0.7116512971944412 0.0008706188268860771) (0.1908937984441768 0.05745283642188441 -0.1052980076545694) (0.6161337307239605 -0.257355306546639 -6.238652144708592) (2.48943894140963 -3.947650446014055 -10.22971101685091) (0.7794707682469846 -8.932466578772177 -9.228875322202084) (-1.273161920401332 -2.463125345242698 -0.8326615116844915) (-0.284132239927024 -2.015788894835572 -4.351562378298354) (0.02760883034374251 -0.1672908320923789 -0.04258489683892432) (-0.5268739999266276 -0.5686198751963019 -1.934464071957502) (-0.00492549331458359 -0.01231540804797804 0.02174012037029088) (-0.489104862469136 -6.099333241987148 -1.075562830013435) (-0.3083651148617242 0.09612073582202915 0.009354464644028837) (0.4901830764073832 0.1445100348528198 0.6677485115010278) (-1.160742670011212 1.754096094922009 -0.5283358492760779) (-0.2437800395024401 3.726851672072264 -0.5726476358042565) (8.327440017993032 -11.40424279413933 -2.059029899114925) (0.04250825575506359 -0.05747892918294275 -4.931629875370037e-05) (0.02623746527292251 0.06276525935657722 0.01943595868573443) (0.0498832170574984 0.003762627108792919 0.02765459957093659) (-0.1273048732098706 0.007940201433754471 -0.05040362302350686) (0.003829131314048544 0.005041714274945408 -0.004997759030700345) (0.002386923381729179 -0.1081289368735083 -0.2243969111583548) (0.1908937984441768 0.05745283642188441 -0.1052980076545694) (-0.09030776564566187 -0.05337900670254553 0.007414762390801201) (-0.09030776564566187 -0.05337900670254553 0.007414762390801201) (-0.07748356600523462 -0.02087920642562356 0.01205199560059349) (0.4107185925900553 1.11017548138839 -0.521276180613825) (1.107734277005404 1.934770604803885 0.8569309488655801) (-0.05524489139846628 1.380795528181019 0.2531399582198868) (-0.06680135518926665 -0.007182597718126221 -0.01071812033653067) (0.1085458029864099 0.04716016050582217 -0.02713564263029272) (-0.2330500362678781 -0.1256223265521192 -0.06195302155355736) (-0.3083651148617242 0.09612073582202915 0.009354464644028837) (0.06444697732227397 -0.1426119899590805 0.1695997847387434) (0.004834590161504518 0.01460046970432729 -0.0049828810039548) (0.009153940850009441 -0.01587178891839348 -0.01190207808104531) (-15.20049926015459 8.088209199884119 -15.83973454445725) (-0.01016304710772468 0.004199728904608095 -0.002331457683686854) (-0.1926307590696999 0.1702725527427624 0.01432164586241247) (-0.6498844378421458 -1.659030628816465 0.6603924039590447) (-0.6498844378421458 -1.659030628816465 0.6603924039590447) (-0.009820183533244625 1.276847039525034e-05 0.0005257118722041655) (-0.009820183533244625 1.276847039525034e-05 0.0005257118722041655) (0.0007731551534739169 0.00182429782794154 -0.0122039119987463) (0.01520273043224993 -0.01616873897180952 -0.005513857801483937) (-0.02267560592280893 -0.007755510327102296 0.0003200187590904988) (-0.1061001692665147 -0.2989321007456241 0.9197199841217202) (0.04701319050625679 -0.0008603844435867494 -0.01584958030281382) (0.0479298379515623 -0.01795457021968579 -0.008788198563791925) (0.02431509375779328 -2.998317503658844e-05 -0.002701221918650479) (-0.009790278058019847 0.005959049005427704 -0.00175682698976182) (-0.009790278058019847 0.005959049005427704 -0.00175682698976182) (0.01412922663304314 0.009509948878918368 -0.01647382268686854) (0.02457939622271677 0.1287286869068629 -0.04556495500886878) (0.01579443562102379 0.01628625656772469 0.01321276366235836) (0.09276076799373301 -0.1614380855324665 0.2542294536114664) (-0.5275258147244362 1.088564029314105 1.245199319293131) (0.009423241051504931 0.0007319598278435037 -0.005572877634377107) (0.00448001695248576 0.004938396183143587 0.006015843351101662) (0.7314852536619902 2.846551783006599 -0.9844218847230285) (0.7314852536619902 2.846551783006599 -0.9844218847230285) (-0.04565755599088764 0.2689827583463342 -0.04058796988337748) (-0.04565755599088764 0.2689827583463342 -0.04058796988337748) (-0.2133571787761858 0.05326715613152916 0.4900499069592684) (-0.33334059926603 -4.912121755851079 6.482195565556152) (0.1475143773530908 0.02979650796701523 -0.2239603896773762) (-1.220459171189302 6.280433545183365 -3.545203161526047) (-1.28261026608637 0.3653533975351231 -0.6618255661286555) (-0.2299404437984223 -0.3267969289309395 1.30195546081625) (-0.05042495732586311 0.07834129437072843 0.01230690918455135) (0.0006766710607501933 0.009809347741717937 0.02015303884361285) (-0.2641601390004762 2.081207142409911 -0.5106146737736583) (0.3329500230899869 -0.833863233399277 -1.993654410361412) (-0.007376670102932213 0.05247364325561339 0.03232960766409206) (0.0895889179530146 -0.3215539668610405 0.44946196790518) (-0.003402832592225929 0.06908805926593717 -0.05926722819225615) (-0.003402832592225929 0.06908805926593717 -0.05926722819225615) (-0.023998507911757 0.0192579748868875 -0.007122690239235011) (0.006835702517945446 0.06447629306939724 0.07218910062968491) (1.368816230088254 0.3738918376943045 -2.930022939887402) (-0.007708242497859299 0.001781594046315505 -0.003263727543674063) (0.02858498215127045 -0.002854174894808867 -0.02578885248094047) (-0.01265195083709572 -0.001239372992734502 0.04347838010008827) (-0.007652613628309284 0.001600390515747946 -0.01568990578062485) (0.01232897213517285 0.029724946387554 -0.003491082405555184) (-0.05179978802492835 0.0344115159602332 0.1017493300426544) (0.4964813013507346 -0.1341761844047173 0.1239321924564251) (0.025561948138173 0.01025146326225212 -0.0142410711283856) (-0.009100168607214765 0.004430556991830017 -0.01806404740555395) (-0.008093857564783587 0.001927626296842402 -0.003208025084007212) (-0.00103614825136992 0.006177155744922601 0.007421830582948625) (0.04306141021237481 -0.03864833649505695 0.03578674781426162) (0.8783078310816426 -0.8902620379362001 -0.06437750835805861) (0.02080973856023673 -0.004197093064364867 -0.02264776357860402) (0.007428797915012497 0.002768479819375282 -0.001936805907571831) (0.0002334810133117009 -0.001620589699527567 -0.01046986032347206) (0.3070588301480833 -0.2425553507671959 0.04734541605770759) (0.3070588301480833 -0.2425553507671959 0.04734541605770759) (0.3070588301480833 -0.2425553507671959 0.04734541605770759) (-0.0004793164677498515 0.01146892032096227 0.00200970248177799) (-0.002383876556326661 0.005193939356533511 -0.02441053195357938) (0.02178025089893685 0.01241226024336232 -0.009362877773051129) (-0.07730755892297392 -0.7266426613707984 0.06773261223394031) (-0.07730755892297392 -0.7266426613707984 0.06773261223394031) (-0.0137706683347843 0.009626972301858961 -0.006718982616551353) (-3.81265041717644 -8.215025883434622 -0.8463293773497983) (0.1742294260449976 0.4755558128370039 -0.2819652191194234) (-0.02539824806306844 -0.04214578318962718 -0.1175907843589084) (-0.02539824806306844 -0.04214578318962718 -0.1175907843589084) (-0.001785471250802331 -0.001017283936345502 -0.02461241119940437) (-3.40214394176314 6.544151036875438 0.7151264060781086) (-3.40214394176314 6.544151036875438 0.7151264060781086) (0.02858498215127045 -0.002854174894808867 -0.02578885248094047) (-0.01037927299040003 0.02828689209181638 0.03048053640950764) (-0.8256941665097806 -0.02170624674088896 0.2473256601960064) (-0.8400066176472454 0.646348768558371 -0.194435608821116) (-0.8400066176472454 0.646348768558371 -0.194435608821116) (-0.1168308624858557 -0.1607658211244732 0.071335597169917) (0.1439172856461429 0.1424264372394232 0.3018804429166753) (-0.3444032302117637 7.242943921106721 -0.9817931715837002) (-0.3444032302117637 7.242943921106721 -0.9817931715837002) (-5.521554072236335 1.785542788327521 -7.670988210295191) (0.001072152551201054 0.07914316487108981 0.02846681603240181) (-0.01847682670724547 0.005704527135094496 -0.01421674457310313) (-0.1324649229903156 0.09212001860402193 -0.02018502863022148) (0.1217475802162652 0.1617094342944697 -0.002899578186401588) (-0.04112513727432855 0.09228390796785751 -0.1043412553991994) (-0.02999719352794777 -0.01358255016210063 -0.006043787162579956) (-0.01160412901359718 -0.001272114958299929 0.07250103835972907) (0.1623188102883735 2.812127686202112 -0.8256244389093618) (-0.04781272186436185 -0.06312792078058768 -0.03976137021671133) (0.006515444361963619 -0.0231301637192699 -0.01004605189732021) (-0.8387437685058332 -0.9845932387340108 0.8902266355925303) (-0.8133370121973074 -3.320523046871253 0.4631345874090851) (-4.441660912187726 -7.758058175329814 3.799631682454114) (-0.7008643418179542 -0.1340443132927699 -0.7051899105880625) (-0.07436664195382017 0.02618789686698562 0.01943038435950514) (0.009153940850009441 -0.01587178891839348 -0.01190207808104531) (-0.001701933353772765 -0.01037897183100736 -0.01172421567221907) (20.35346036820427 8.867870762641124 -4.471204467487501) (-0.007582411548336865 -0.005933698735435704 -0.002933934393415212) (-0.007582411548336865 -0.005933698735435704 -0.002933934393415212) (-0.004345205322330327 -0.008154089776357107 -0.01701875606460572) (-0.01030869970658746 -0.01201471642707877 0.00895503004101802) (0.00170885897124074 0.0008633714981789624 0.01070246568975535) (-0.03151517416729727 0.05644056905919315 -0.08929539075036062) (-0.09782367734720096 0.01149019706320677 0.06721373358134851) (0.230118984129995 -0.009858996647611319 -0.1453798596649237) (0.01150674630426276 0.002233649540459267 -0.001285369455187052) (0.01150674630426276 0.002233649540459267 -0.001285369455187052) (-0.2116216990586847 1.259755789375885 0.1240738645071975) (-0.7264179360154341 8.535331929933683 0.3749775606413099) (-0.7264179360154341 8.535331929933683 0.3749775606413099) (-0.2641601390004762 2.081207142409911 -0.5106146737736583) (0.07401799451948304 0.3019591471006089 -0.2581420250976432) (-0.01480575416308408 -0.007501338860295676 -0.01033105168841118) (0.007108972941863042 -0.02059141310370565 0.02947894579094828) (-0.3351417381185317 -0.140184162680293 0.1741543585491395) (-0.1635978896406182 0.02367851588997755 0.1288926609307234) (-0.003953799668966224 0.0007115678291569755 0.02571346164798666) (0.0478279553146629 0.02173540489790009 -0.02093045658672063) (0.1160151568992346 0.03445788388481319 5.896742541920685e-05) (-0.00452611272185946 -0.1167272049761265 0.05709530182310459) (-0.00452611272185946 -0.1167272049761265 0.05709530182310459) (-0.7924398816893962 0.9235390828561358 0.6051922676699522) (-0.7924398816893962 0.9235390828561358 0.6051922676699522) (0.02359912879489137 0.1523475011445418 0.05581502723408625) (-0.002744235238199655 -0.00203387536317862 0.0009063233891526057) (0.009734855403306219 0.009651854435216475 0.0008949274080263542) (0.006535844524290591 0.001829675592253238 0.0002866400512850876) (0.006535844524290591 0.001829675592253238 0.0002866400512850876) (0.09884861469629114 2.49616046674953 -0.8868047511490194) (-0.01460395953656898 0.0006290053340851504 0.001887827912216575) (0.01873547468228655 0.0542000649370651 -0.01854027108388298) (-0.1173339514182172 -0.04470629498634884 -0.01652486158170995) (0.05977032861440517 0.002600368393654848 0.01367341182608581) (-0.1819257447713318 -0.03692618189003125 -0.01478721086147322) (0.01211726835417891 0.6624897919051514 0.03828327312523927) (0.03959772486032593 0.004225457135502233 -0.03767642144572603) (-0.9026932457947399 3.468397186976389 -1.784369994448729) (-0.006734050398662458 -0.002682765750806075 -0.001324301194101559) (-0.02048858408714852 -0.005209314305545116 5.203890390482937e-05) (0.02896223914643028 -0.0176412970189954 -0.03501379966818438) (-0.009758307703834436 0.003043350154703186 -0.002062130751586888) (-0.00148641735856325 -0.006134563495458416 0.003616784640778887) (-0.00148641735856325 -0.006134563495458416 0.003616784640778887) (-0.08605338879372301 0.1200067723032144 0.008720823369991464) (-0.08605338879372301 0.1200067723032144 0.008720823369991464) (0.01035337682901259 0.006747348625645274 -0.006551807715635231) (0.01211726835417891 0.6624897919051514 0.03828327312523927) (-0.05169618948113658 0.01179405261479633 0.002807408199554884) (-0.04453653542982744 -0.02393939526494576 0.007273172442174708) (0.1419820865565241 0.006541504784159324 -0.07168407193639711) (-0.2308944358588345 -0.4563242910089155 -0.4474981887950596) (0.0146056625686608 0.01095660393318532 0.002731394561318692) (0.8443649892282672 0.07384532778380792 -0.8341469188623292) (0.8443649892282672 0.07384532778380792 -0.8341469188623292) (-0.1812970253660147 -0.3886361429924853 -0.3889341752270908) (1.659453987174742 -0.2290125437310536 -0.1160939059688981) (-0.2361188953749234 0.281650542758447 0.1336301685267279) (-0.1930622471261861 -0.3266717843239204 0.2337743989020163) (-0.1930622471261861 -0.3266717843239204 0.2337743989020163) (0.9101313478562953 -0.2968525591310446 0.07051916727505381) (-14.08164261019178 2.768490899567878 2.406341263891949) (8.827572399926314 4.787325325066485 -0.3428884233917024) (-4.220219798194525 -1.156066364447326 0.07984598078417408) (-4.220219798194525 -1.156066364447326 0.07984598078417408) (1.465588406388137 3.808508606019234 -1.615640816189906) (0.03007183117692575 -0.00922861863930409 0.04097599771621111) (-0.03268633502334311 0.003603025855484415 -0.000291311731083134) (0.1230404263276391 0.3927688992528896 0.2227416965415621) (-2.72457616868471 0.4537558362879488 -0.4175334699870286) (0.3177189139234997 0.6332451154969688 0.3290024877352315) (0.009929538461309975 -0.01372667501832816 0.009394106758142446) (-0.3135021002346574 0.1140013093540237 -0.009427079096912955) (-0.9571006138807391 -1.230478193603431 0.08188068350317054) (-0.7210355346030147 5.96382517577965 -1.824169062629382) (-0.7210355346030147 5.96382517577965 -1.824169062629382) (0.9009617626126999 0.1752318632353725 -0.2574374195414291) (0.0002160251360247695 -0.002351474609574231 -0.04993559807947917) (0.0002160251360247695 -0.002351474609574231 -0.04993559807947917) (0.0367735016403546 -0.01685920891434274 0.009152345662141518) (-0.2239368514978973 1.227803603299138 -0.2014699391504026) (-0.09717441358226524 0.01848405474834133 0.03167094684876269) (-4.264064003177364 2.950807774021598 -4.135021775672042) (-0.08141555804730807 -0.001422553900887978 -0.004095350174347442) (0.9064207714616915 -2.256429535028936 -0.4759589378562893) (0.06735086707460144 -0.008095382260166583 -0.01238666081001408) (0.1311021690960154 0.8932582064690694 -0.2655433980824013) (-0.007465816151651233 -0.04516069613813511 0.02255474687184829) (-0.4624369400551961 -7.603998660089047 -2.118765757545963) (0.1700313418240146 0.1354160750192213 -0.4787920053404087) (-1.160742670011212 1.754096094922009 -0.5283358492760779) (0.01033744644607681 12.02501273359171 4.218594923662589) (0.01033744644607681 12.02501273359171 4.218594923662589) (2.328680436268239 13.0500898353689 -2.489533579470366) (0.0145862871317614 -0.05994653262835788 0.02635727478863694) (-0.1213765317228283 -0.358721152057323 -0.181922762381848) (0.05254763550316899 0.3512407017723744 0.3432995022032329) (0.009983103275548119 -0.07007412178459539 -0.2585396634564016) (0.04425854666854281 0.03957624710528913 0.0394146544560349) (0.005713311585711312 -0.01523257654337454 0.008245094303267557) (5.180572851858065 2.414715738675568 1.758677495716367) (5.180572851858065 2.414715738675568 1.758677495716367) (0.01938549230725415 0.02249903016035952 0.0280093420698747) (0.01938549230725415 0.02249903016035952 0.0280093420698747) (0.03209820344290826 0.003481197465395412 -0.007832613631695705) (0.0509297654059865 0.01099305103612216 0.03205055553325234) (0.01032241977081246 0.005266327062080906 0.01653949106410698) (0.001714010199333885 -0.05486861970179446 0.03933637699912973) (-0.169731908898004 0.2112509226816789 0.03496824388824968) (0.03715204939909927 0.11198621759058 -0.03244646678029862) (0.6200745777789098 -0.06855644193918001 0.04496684332582165) (0.1085458029864099 0.04716016050582217 -0.02713564263029272) (0.005039281050191524 -0.02043362533218174 0.01786581019239091) (0.01781407544952099 0.03347140491207898 -0.03180745976529654) (0.0478279553146629 0.02173540489790009 -0.02093045658672063) (-3.867365226431846 21.8334135659947 9.123320855857351) (0.4963957432917968 -0.2993286651795921 -1.026620459838067) (0.9478323533271553 -0.4860929396582968 -0.1535894711360317) (0.03670363063289482 -0.007220112083005284 0.009271190678689176) (-0.003104757094753705 0.02353570540153906 0.01071353975262513) (0.1419820865565241 0.006541504784159324 -0.07168407193639711) (0.1623188102883735 2.812127686202112 -0.8256244389093618) (0.1181824673373513 0.06865216000967098 0.005283118333606042) (-0.1574198038605866 -0.1660695063311854 -0.2831012249590408) (0.7752359089084622 10.23337451149485 3.968999530125575) (0.3975559425379123 0.3209909038668964 -0.3254842618942605) (-1.466381157412573 -2.187472296929279 -0.1385047625084785) (-1.466381157412573 -2.187472296929279 -0.1385047625084785) (-0.1033343404001748 -0.2262874559450531 0.03378323237006532) (-0.1033343404001748 -0.2262874559450531 0.03378323237006532) (-0.1213765317228283 -0.358721152057323 -0.181922762381848) (0.001827813487218713 0.05060481424116829 0.1317176239468283) (0.001827813487218713 0.05060481424116829 0.1317176239468283) (0.03185363470190715 -0.01374566879442661 -0.06339050393211343) (-0.03524755315088872 0.0006659636158289003 0.05258861392214997) (0.7739317562517676 -0.3172602353003176 0.2952523824076762) (0.1065420797425757 0.4042961693687289 -0.4620181824415993) (0.06424678049261992 0.0003527095860680757 -0.2704417421641027) (0.0325978164751226 0.02562866012760878 -0.03118635839148802) (-0.1203518969303078 0.09768065962295143 -0.2456732678468014) (-0.1203518969303078 0.09768065962295143 -0.2456732678468014) (-0.08624456545149405 0.05995768033832038 -0.01347258286534812) (-0.3313451945142988 0.1685707426507167 -0.01743901780722792) (-0.01289431906692162 -0.05141104134946321 0.01592434277709036) (-0.003134891516554578 0.03976457303160819 -0.1210766892175951) (-0.8133370121973074 -3.320523046871253 0.4631345874090851) (-0.3313451945142988 0.1685707426507167 -0.01743901780722792) (-0.08928470408050315 -0.2273357999410579 -0.14472603314911) (0.02089185509422536 0.0002290026184024532 -0.005581369605859169) (0.01781407544952099 0.03347140491207898 -0.03180745976529654) (-0.009758307703834436 0.003043350154703186 -0.002062130751586888) (0.0265883870264348 0.06412558512214553 -0.0404060605080977) (-0.2633617775111771 -0.01185581347318038 0.03856890149576389) (0.02713213067620578 0.01034394251822285 0.007690829329112988) (0.01038521426333259 0.006685123410682559 0.004612454359884255) (0.04322751148594723 0.1113478931867718 0.1055152436469618) (-0.08090686709443051 0.3231954798650584 -0.05247796035088046) (-0.06753984705191175 -0.1545079035885874 0.04765073931593726) (5.44861586648648 -17.20866374510355 -4.335642814081805) (-0.02470404422098564 0.1883824428079899 -0.094589830163753) (-0.02057468686612871 0.006548715470107595 -0.007283953051827736) (0.5586435554688086 -0.08242284017528265 -0.0234119463965075) (-0.2686701692235425 -0.04094875288766957 0.4057360871209708) (0.5586435554688086 -0.08242284017528265 -0.0234119463965075) (0.2652858006039938 0.1272605535274531 0.1230080448482683) (-0.08378801029920638 0.02738517168835541 -0.001130002954235688) (-0.0340651778839319 0.01704790901314438 -0.03364137551630271) (0.2652858006039938 0.1272605535274531 0.1230080448482683) (0.2652858006039938 0.1272605535274531 0.1230080448482683) (-0.1973125055496939 -0.006898730458015284 -0.0865649378052086) (-0.01456326283566183 0.006194983342784528 -0.05327621794099052) (-0.1324649229903156 0.09212001860402193 -0.02018502863022148) (-0.2686701692235425 -0.04094875288766957 0.4057360871209708) (-0.02146632681427451 0.008233825917327941 0.02022057656283865) (0.03491940485411698 0.01330172700943131 0.01042590571598752) (0.01422089725534979 0.006334991449453271 0.01525865554303411) (-0.04587621540680586 -0.00323583208324783 -0.03896581500226037) (-0.06293324270779396 -0.03901374643984489 0.002430346925462869) (-0.03147827878202066 0.01655757972017488 0.009188912178240726) (-0.7391940979060664 -3.453812316456537 -1.879333704664547) (-0.3153240126788774 -3.547910586029718 -2.137888495630589) (0.05625288239032628 -0.0121055485221429 -0.1458399974847527) (0.006772036389412494 0.002952852595534781 -0.03908504200570205) (0.006772036389412494 0.002952852595534781 -0.03908504200570205) (0.4770904035838568 1.810610132114824 -1.06338233854877) (-0.2371886563760173 0.8416229003811934 0.1560265036192371) (-0.2371886563760173 0.8416229003811934 0.1560265036192371) (-0.3613419881160223 0.0103434939563771 -0.2631092506855443) (-0.003925044002829888 -0.02769764894262538 7.483831729001786e-05) (-0.3613419881160223 0.0103434939563771 -0.2631092506855443) (0.02688415433407995 0.2130160610235993 0.6034803689775035) (-0.3668601663639925 -0.2635172594139749 0.3372810164686235) (-0.9571006138807391 -1.230478193603431 0.08188068350317054) (-0.3668601663639925 -0.2635172594139749 0.3372810164686235) (-0.314557589226916 -0.1602544378635569 0.2940168905148074) (-0.314557589226916 -0.1602544378635569 0.2940168905148074) (-0.01498724069832975 0.01060367507573442 -0.001144204527400976) (-0.5571354690682657 0.2401872501940383 0.1580093982090742) (1.236230583270553 -3.386057687470279 -1.397565610697219) (0.5294406187480977 -0.3002526122909162 0.1539341215573856) (-0.7929699440263347 5.731979894442969 -2.357200882988206) (-0.7929699440263347 5.731979894442969 -2.357200882988206) (-0.1237273563386283 0.03874969808881619 -0.009439166492697368) (0.3229743958522787 0.382147454715288 0.3123035142845403) (-0.01265195083709572 -0.001239372992734502 0.04347838010008827) (0.001689901993589554 0.007535917918883845 -0.001415228836322932) (0.0170301097633739 0.03777184013438194 0.01990197588378726) (1.696758877580123e-05 0.001790041161866271 0.003542493244679661) (1.696758877580123e-05 0.001790041161866271 0.003542493244679661) (0.006613358545836123 0.005244829091394136 0.0005159201039432233) (0.01546784560990043 0.01381750082896308 -0.01030873264745465) (0.003910630745919683 0.007174102927789187 -0.0169966999078231) (0.01546784560990043 0.01381750082896308 -0.01030873264745465) (-0.03225068201532375 0.006175189199672931 -0.00700370134865066) (0.0003974471880776606 0.008135745416415185 0.008919148110106899) (0.00969937421344109 -0.04988924983983938 -0.01372281408761211) (0.01866285186698722 -0.03445569469923701 -0.0365239404947147) (0.00969937421344109 -0.04988924983983938 -0.01372281408761211) (0.1559273908232454 -0.04246843768524172 -0.05174598410568419) (0.0393146107248081 -0.2222024345137451 0.1236562273468168) (-0.06149088975950349 -0.02427488506669954 0.04508411114260751) (6.222233368377434 7.156685098783263 -10.24795226269061) (-0.442429619681716 0.09010674270675714 0.001512190299279403) (-0.1485864087480444 1.220523921550681 0.383833325769148) (0.01168245229520967 0.03060307041824211 0.02940408804986982) (0.04105213273653394 -0.002903132064247847 -0.008452090660800011) (0.004155363549336179 -0.01430913173869243 0.008573030149056415) (0.005481064845201415 -0.0008443140774942936 0.001402160136724248) (-1.125993794110662 0.1111555314311021 -0.09581452528474202) (0.00779670235652797 0.006288758883166656 -0.00434962448372191) (0.002019235233523372 -0.0009351123600967736 -0.004289227191653009) (0.00238889609832157 -0.01707149241573431 0.003991365023289085) (0.006097270374467719 0.008828321019747492 -0.0009287539123639717) (-0.2533099251280665 0.08954853170429579 0.05075554263868766) (0.05872943594625653 0.02182880613126061 0.04131229948962674) (0.3164252303269314 -0.2089171035663228 0.3903222890470458) (0.002807290960024094 -0.009965375752568437 -0.005900290869651066) (-0.09384872217590101 -0.0837394228912693 -0.06906877958792255) (-0.5268564929322415 -3.14159828207195 -5.377729249624078) (0.05553002103579711 0.03741562697134093 -0.0004655522024080046) (0.08958216655445612 0.00297241376902448 -0.01068152618659204) (0.007897281761797166 -0.01067126196475428 -0.00628545707241338) (-0.006446434352384635 -0.003096445660064938 -0.0003694856797035987) (0.02080973856023673 -0.004197093064364867 -0.02264776357860402) (0.008753728606840351 -0.3348587215899732 0.007140215512844807) (-0.03976270762563906 -0.01255020725004287 -0.006645244807560503) (-0.01784927033304345 -0.2227052931940036 0.04968220525503707) (0.0003658062251541642 -0.190774097602488 -0.07127847709723566) (0.02012536990601219 -0.02104967430330932 0.004079145515763594) (-0.009622001589905477 0.005366022446561786 -0.0008744932849105453) (0.006371840421324949 0.002192051420505083 0.002507428713547386) (0.007972666853779314 0.003837435965616572 0.003039581880357477) (-0.023998507911757 0.0192579748868875 -0.007122690239235011) (-0.1273048732098706 0.007940201433754471 -0.05040362302350686) (0.006171711664855688 -0.03816883971292476 -0.1066156895600185) (0.8216386860775218 0.4944275086219521 -0.4791393826965276) (3.518125876879221 0.5686905458760085 -2.1910587848476) (0.03716089191579439 -0.001018947658683668 0.003983894193356613) (0.05194461791844274 0.004120649335313011 -0.007348281265595426) (0.01054435304941453 -0.1712577006321024 -0.3192367847882654) (0.3772993471864381 -0.8201163080636599 0.4428817806558123) (0.001714010199333885 -0.05486861970179446 0.03933637699912973) (0.06424678049261992 0.0003527095860680757 -0.2704417421641027) (-0.001701933353772765 -0.01037897183100736 -0.01172421567221907) (0.02388434007122201 -0.01300788435315466 -0.01221159448460914) (0.004665582565117139 -0.007651172324602489 -0.0001700550265123137) (0.004155363549336179 -0.01430913173869243 0.008573030149056415) (-0.00103614825136992 0.006177155744922601 0.007421830582948625) (-0.01107273325091408 0.004971896200755219 0.00298431354257177) (0.01508906866948477 0.01345996084289504 0.002724813807424796) (0.00238889609832157 -0.01707149241573431 0.003991365023289085) (0.02898658142622489 0.009105520787770587 -0.01003421712123326) (0.01010974666348641 -0.009628095806822275 0.01021477850977806) (-0.03987669523786021 0.02720377253809513 0.007714577680325488) (-0.02081187720149085 0.01096326729487616 0.04296529409125519) (-0.0113691405020315 -0.008080442448787776 -0.002130593149708172) (0.05082365129263205 -0.02681707038223713 0.01237169849222123) (-0.2633617775111771 -0.01185581347318038 0.03856890149576389) (0.104179359783056 0.06903132141456023 -0.2447590458734318) (-0.1156221475940319 -0.1003812699715299 4.191670943180792e-05) (-0.679793029845884 0.02578456378707678 -0.01246320344385143) (-0.04111213889645962 -0.1247064704520375 -0.1908615181972014) (0.009983103275548119 -0.07007412178459539 -0.2585396634564016) (0.02217019547752474 0.005723128431401324 -0.01209130766036957) (1.415181659872774 -0.8170842682772966 2.220289486876498) (0.00935068662283672 -0.04544176793523889 0.01253620053207823) (0.006195185469217913 -0.002661919381951115 0.002273031086870803) (-0.003562611075842943 -0.009068374251223865 -0.004661230105338763) (-0.008689793014770008 -0.007927544847877773 0.0119539929351292) (0.004546422848826212 0.001437461978476308 -0.004544056696613894) (-0.0137706683347843 0.009626972301858961 -0.006718982616551353) (-0.4269253526364765 -0.2813545593492788 0.2771038571271632) (-0.4269253526364765 -0.2813545593492788 0.2771038571271632) (-0.3224346189884901 -0.5871246904254691 0.1707444795990976) (-0.3224346189884901 -0.5871246904254691 0.1707444795990976) (-0.2560484186008252 0.5116162980031619 0.1553553305080772) (-0.01482098229476449 -0.003651385125889114 0.007262847036026764) (0.004973792671977865 0.01783352306881598 -0.0147715490476892) (0.01010974666348641 -0.009628095806822275 0.01021477850977806) (1.236230583270553 -3.386057687470279 -1.397565610697219) (0.0346384383038198 0.1976071120172366 -0.03305357502438999) (0.02620611255440385 0.001151904966823627 0.01874644223137654) (0.03928459678785631 -0.01972499452149936 -0.008768462757416677) (-0.5003022946870874 -0.03666652929537709 0.8305569807179959) (-0.003238483048366061 0.00680664853581383 -0.003721321980547079) (0.1721357224619084 0.01940038588291857 0.1068686469407396) (0.01661566386091382 -0.0009723680537125443 0.001202699665144332) (0.04663943799115289 -0.0383946072119951 -0.06545454343507918) (0.002899397206964547 -0.02439023156735669 0.02169555323773583) (-0.002206134589743753 0.01411464398789879 -0.00932757119684381) (-0.6664893007006703 -0.06308325870013332 0.5593977352866827) (0.001701014769086965 0.007030794884129338 -0.01727899781783253) (0.08163719992197926 0.04332320689816832 -0.01479749380368241) (-0.009474029021106454 0.02100321737221814 -0.01345941194424259) (0.09619308260467309 0.02666545807802304 0.198997233420076) (-0.02419604819521207 -0.00619516780436167 0.009571878062124691) (0.00498436256937836 -0.3674303500408476 -0.1072110772885964) (0.03209820344290826 0.003481197465395412 -0.007832613631695705) (0.006371840421324949 0.002192051420505083 0.002507428713547386) (0.01299224590960043 0.01838651601739521 -0.003931229603827385) (0.009423241051504931 0.0007319598278435037 -0.005572877634377107) (0.1217613309152693 1.054054959052902 -0.4889528588477786) (-0.0261594224230642 -0.04084016618490827 0.01849673428611572) (-0.01978399418088043 -0.01873215669628684 -0.002941759100033827) (0.3983449416615286 0.6864555960713018 -0.0441694235063887) (0.09172847611222944 -0.01633591059986826 -0.00162515349078618) (5.44861586648648 -17.20866374510355 -4.335642814081805) (-0.1622196805577435 0.07064707860732219 0.2012112525747324) (-0.04204014582239662 -0.07666370798799926 -0.4330666616429801) (-0.03914764754001743 -0.01542700436600431 0.01378037348933113) (0.007428797915012497 0.002768479819375282 -0.001936805907571831) (0.05002407442386538 -0.152930562492732 0.1184142576791909) (-0.000706585667705113 -0.0002538363549362556 3.866937787690497e-05) (0.004834590161504518 0.01460046970432729 -0.0049828810039548) (-0.00132564714169825 0.1148486048176914 -0.1694953499847283) (0.006213648013424416 0.01693323919965145 0.00820853073921134) (0.002322626208319005 0.0002305258369224559 -0.002367276912848003) (-0.3083651148617242 0.09612073582202915 0.009354464644028837) (-0.02420286295751779 0.01870006203644307 0.003543236790944612) (0.01635753268181039 -0.005760070668175405 -0.04524911438380981) (-0.03144176061631025 0.03302620927251805 0.005817391787420753) (-0.04453653542982744 -0.02393939526494576 0.007273172442174708) (-0.04829981310443262 -0.01422322069385802 0.01848293087289885) (-0.01095157810505473 0.01426463284897955 0.004325874047453234) (0.1228079606275519 0.0356562087652246 -0.1804357247596869) (0.1228079606275519 0.0356562087652246 -0.1804357247596869) (0.3497917139293567 0.1348864565573223 -0.1595642770030481) (-0.007898859509074263 0.002944868397482108 -0.004356489894256684) (-0.01832149876641529 0.0001682325736074501 0.003961061375212139) (-0.003702002916878822 0.01422991282502054 -0.004857199909075308) (0.03025270921667647 -0.01840658003234926 -0.01955743326940129) (-0.008116879437977904 -0.002051445673882859 0.003861099234523401) (0.007553322518556501 0.008762124374040139 -0.009205137963660051) (-0.003960707575298283 -0.004420109198278814 -0.004304305610063501) (0.01147370213935585 0.008860030841522204 -0.001781065233582403) (-0.002614580912344879 -0.003582235811097574 -0.005808740177597309) (0.02917257130470753 0.01633268429265364 0.002249771629932212) (-0.06782316752616331 -0.01739422544949251 -0.02304489812930552) (-0.06875750386971437 0.03043302638280677 -0.01375380715098961) (0.006842520541668857 0.0005682192997546907 -0.005807028852746412) (0.006842520541668857 0.0005682192997546907 -0.005807028852746412) (0.01866285186698722 -0.03445569469923701 -0.0365239404947147) (-0.004266646184298619 0.005467966280459714 0.0001905821850900943) (-0.01865621866193506 0.004778088569914973 -0.01520598253384313) (-0.01162029064740251 -0.01689361129589794 0.005176140698224417) (0.1288539120807179 0.02537348087621151 -0.03758216079062677) (0.1288539120807179 0.02537348087621151 -0.03758216079062677) (0.01249837841677878 -0.004119383742375364 0.0008499244282367015) (0.1017667469373143 -0.05121946118196444 -0.04632711885943504) (-0.008642902778028967 -0.0102143535281801 -0.02940944443415788) (0.004378258605836055 -0.006047086257843868 0.004096039875442859) (-0.0007589346304098382 0.07301839025527884 -0.05955050772853332) (-0.07566242118011782 -0.05886554012264736 0.04577851269070761) (0.02508096062696604 -0.003793254401045251 0.002415247541494013) (-0.05614842103269711 0.01251993625536708 -0.03617669964272926) (0.1671068732631837 0.04514964381790788 -0.0341551680232155) (-1.540283381278438 -0.1454034772625724 0.5358907201937515) (0.1200109125679601 0.6621465891411484 0.3090724752438002) (0.1082586086740796 0.05871022844193848 0.001647090935782136) (0.005039281050191524 -0.02043362533218174 0.01786581019239091) (-0.2361188953749234 0.281650542758447 0.1336301685267279) (-0.1670193409699305 0.0537684820792653 0.1093716261524073) (0.01838165416348669 -0.01101941785701413 -0.0004490293881546413) (0.005463036570094795 -0.005176968470125548 0.0009490058348567273) (0.005463036570094795 -0.005176968470125548 0.0009490058348567273) (-0.003877690870998115 0.01227700196364994 0.002489879828078469) (-0.1161283035354028 0.1322380419547158 -0.1446853038936021) (0.2213458130737612 0.07964550287560443 -0.01997650328399342) (0.4198620147380475 0.3625440468361334 0.2148282551367104) (-0.3135021002346574 0.1140013093540237 -0.009427079096912955) (-0.1512912406207973 0.0005637283447252686 0.0249818076989991) (-0.1512912406207973 0.0005637283447252686 0.0249818076989991) (1.11967716059091 2.229849786361663 -0.2095305489232264) (0.00851416670008929 -0.0008760151422649838 -0.002180555298123403) (0.00851416670008929 -0.0008760151422649838 -0.002180555298123403) (0.1479598374328207 -0.299022714663173 -0.198120754402185) (0.4420964850103699 0.2099886309067608 0.237957606484966) (-0.02132626706817452 -0.0002316962045781808 -0.009289997585123758) (0.04231446480925789 0.06268526054790878 -0.1741977027757643) (-0.002535563839057638 -0.001760246313507474 -0.004979971528155994) (-0.923190966941805 2.849568547132286 0.3839443319240465) (0.4657948452569166 0.31098292326632 0.1955558741789823) (0.6483596680930367 -5.277742700664069 -0.9043017991759877) (-0.2100970116139162 0.05392531903502493 0.004757760845856388) (-0.07401690773805658 -0.5366446887676671 -0.09824836025111806) (-0.09384872217590101 -0.0837394228912693 -0.06906877958792255) (0.02688415433407995 0.2130160610235993 0.6034803689775035) (0.002938601872977899 -0.001486630716183012 -0.0111789216688009) (-0.01480575416308408 -0.007501338860295676 -0.01033105168841118) (-0.2599409707787083 0.0813217064882835 -0.09868229935171438) (-0.2599409707787083 0.0813217064882835 -0.09868229935171438) (0.04397701792618519 -1.229432169788042 -0.261270192935404) (0.04397701792618519 -1.229432169788042 -0.261270192935404) (0.597956934585839 0.09886889261565551 -0.1827003372675902) (0.01667851399945688 -0.3644672141366874 -0.2746984793436673) (-0.1703100973141846 0.01511874108148678 -0.08075079469102889) (-9.45326938011848 12.27282935108653 3.073325222759337) (0.1159989866217885 0.0192315647323841 0.02797011961781957) (0.0005438617613494159 0.01181694023988792 -0.01736547330833124) (-0.1237273563386283 0.03874969808881619 -0.009439166492697368) (0.08958216655445612 0.00297241376902448 -0.01068152618659204) (-0.4700138715531315 -0.2443127260678272 0.3193572972395464) (0.002567832464453447 -0.0903614759627074 0.05482418342827428) (0.03185363470190715 -0.01374566879442661 -0.06339050393211343) (0.03185363470190715 -0.01374566879442661 -0.06339050393211343) (-0.1084947605531792 -0.3549141809255413 0.4262330372440499) (0.597956934585839 0.09886889261565551 -0.1827003372675902) (-0.07958323158615886 -0.01763804602026897 0.03047152464201143) (3.092790000102919 3.030598488343524 -5.829791495907555) (8.327440017993032 -11.40424279413933 -2.059029899114925) (-0.05783776821538809 -0.04530551495010072 0.02661569648999638) (0.5268017432329457 0.8455706204852702 -0.09284415892395828) (0.1457373646804041 -0.5296173932339002 0.07005841333713134) (-0.1083033749398498 0.1247488564277426 0.1113187642078483) (0.01564687801759417 -0.007507251131218006 0.002272878698179904) (-0.01303961198637914 0.04570525544867085 0.01251193133208953) (-0.07950388575506245 -0.07908076441631016 -0.03511353989064538) (0.2593256770500316 0.104296889138125 0.2168768340435078) (0.3552607907888529 -0.0815378719198452 0.1004612700188357) (0.06864628859625015 -0.02304490167944574 -0.07032269297911543) (0.3237041014711042 0.2136562764687744 -0.02370317637392921) (-0.03047847510631484 0.02867427547849636 -0.03308604569848417) (-0.05503240838878269 -0.04492964742383759 0.006366903759337899) (0.3237041014711042 0.2136562764687744 -0.02370317637392921) (-0.2779656379012174 -0.002591982533154957 -0.06518745986969642) (-2.737434792685804 -5.638270420682535 -5.235632927233991) (9.603079758142302 3.232734330426522 -4.682902665857529) (-0.2653458708788881 0.01755486499272116 -0.1707409882558646) (0.4280388488151908 -14.00580869124018 -11.67029479581686) (-0.1388468639585923 -0.02786269140951752 0.02536326803627419) (-0.1281908838556806 -0.1331041993457777 0.110435828857746) (0.09149911975061777 -0.1007489281936161 0.3598853144555101) (0.1273560397477762 -0.06258540516131379 -0.1325816773007145) (-0.2888204127509441 -0.1418640825411938 -0.06536020783064) (-0.1552631296531561 0.01068890152883256 -0.1029813205018812) (-0.1552631296531561 0.01068890152883256 -0.1029813205018812) (-0.3128658104947095 -0.08475845529871183 -0.04602742455449892) (0.007913844626690203 0.006979340602223657 -0.06057871345198983) (0.01522198851555479 -0.007894733413765285 -0.00905660872533468) (0.1095023194177875 0.03690692011337127 0.5870598639037125) (-0.3988207305966136 0.1115116759431778 0.1064465575917612) (-0.03239221076758157 -0.1853611457382816 0.02943507341141029) (0.03959772486032593 0.004225457135502233 -0.03767642144572603) (0.08261127563537977 0.02800883001393412 -0.03943757737672267) (0.05459222227615802 -0.01303560423665156 -0.008085450858779025) (-0.003134891516554578 0.03976457303160819 -0.1210766892175951) (0.3776866084087742 0.01895904452919484 -0.1642080749649844) (0.3776866084087742 0.01895904452919484 -0.1642080749649844) (-0.01947677592824616 0.01179799880915903 -0.001940354825751867) (0.01244556210245449 -0.0008290013982679764 -0.01364050040710748) (-0.01663392543436276 -0.01701331848359286 0.02515131222818176) (0.02446712492801518 0.01452461234823103 -0.005536322029426118) (-0.8204837634828583 0.3501307721353644 0.2349878154059254) (0.1622852996196059 0.1156660308364741 -0.2434240236268337) (-0.03899706136636436 0.1182960793676264 -0.006994365411199063) (-0.5003022946870874 -0.03666652929537709 0.8305569807179959) (-0.2197328914213823 -0.0502430916487563 0.1930364438394882) (0.01343101494878374 -0.2343305713675151 0.06614573515702749) (-0.1594922177606588 -0.4090014208053696 -0.8649706400836347) (-0.009994380959015694 0.2532470342760461 -0.6602122338595198) (0.9478323533271553 -0.4860929396582968 -0.1535894711360317) (0.002053316480275567 -0.001959513367780678 -0.001265095901107286) (0.5662522269574621 -3.520410586220049 -2.990010514184291) (-0.01133979770323051 -0.1900726616564879 -0.03374645741472288) (0.005825430616317771 0.008042966818208177 0.007488705985829925) (0.006835702517945446 0.06447629306939724 0.07218910062968491) (0.003829131314048544 0.005041714274945408 -0.004997759030700345) (0.02446712492801518 0.01452461234823103 -0.005536322029426118) (0.05168833821644334 -0.01057340278825622 -0.1991794042508115) (0.03842548982320086 -0.02484236779052923 -0.02943000804861435) (-0.08045502591100095 0.04496377898192912 -0.1019703636237802) (-6.26454479877257 7.528589861083136 10.41477374368325) (0.4420964850103699 0.2099886309067608 0.237957606484966) (-0.1764083161763171 -0.6667699164373507 -0.4700956884347897) (-0.106791013625968 0.1966295556582288 -0.08349731516021752) (-2.764515613849956 -0.3127407923104633 -0.1463298661922749) (-0.284132239927024 -2.015788894835572 -4.351562378298354) (0.01802875859773673 -0.005879904287713733 0.1416202767999475) (1.130150169337263 -0.2642006330652139 -0.1105565439081809) (0.02457939622271677 0.1287286869068629 -0.04556495500886878) (0.02286432858837838 0.005985490573150866 0.0005567812041925441) (-0.3128658104947095 -0.08475845529871183 -0.04602742455449892) (3.563892231379173 -54.40830022558311 0.464117519115084) (-0.03292058743069783 0.01290755463453506 0.02385882003741648) (-0.02124377998511658 2.844630254812421 -0.5365246280386737) (0.6930515911232872 -0.9877101714245508 -1.280865152512831) (0.0509297654059865 0.01099305103612216 0.03205055553325234) (-0.1490266471821025 -0.161940114691497 -0.06396654319894574) (0.0066672578393904 0.337067840635827 -0.05341516114060112) (0.0066672578393904 0.337067840635827 -0.05341516114060112) (1.062588535765759 0.4566631320698329 0.2354637839281878) (-0.1415028601903591 -0.0557554093500849 0.3600301569664763) (0.004155363549336179 -0.01430913173869243 0.008573030149056415) (0.03410726999771352 -0.1400986513102677 -0.1836731658523724) (0.01293546397091327 -0.0150075045910901 0.04658270679553395) (0.01293546397091327 -0.0150075045910901 0.04658270679553395) (0.4812896876455068 -0.07525981687192873 0.378717454783707) (-0.09278603577188262 0.2514420142999665 -0.1668193652225568) (-0.003209729188676619 -0.002052431247003187 0.00673621708411422) (-0.006098986021111981 0.03850802974764025 -0.01993055794594255) (0.01124952015614689 -2.326909254119141 0.1121419870973637) (0.01749579518967515 -0.04087812465300976 0.01812690793641611) (0.1095023194177875 0.03690692011337127 0.5870598639037125) (0.1279918259439372 -0.5799279062228745 0.3703725496870172) (0.0169453597348642 0.07958015983252689 0.03433693455583006) (0.008398588764482337 -0.008862437757569563 -0.01851951945375219) (-0.01141417198900161 -0.0321092130303955 -0.02522472476607112) (-0.023998507911757 0.0192579748868875 -0.007122690239235011) (4.923112931332525 -3.54398754363811 -1.720993617114825) (4.923112931332525 -3.54398754363811 -1.720993617114825) (-0.3652354569302663 0.1600353441985787 -0.03106617535364637) (-12.48591415171155 0.93248129609891 -15.77891936037754) (-0.03357481117944722 0.05492289009530793 -0.08146888097086044) (0.006755899153547868 0.004555714984947342 0.00879317297236586) (-0.1273048732098706 0.007940201433754471 -0.05040362302350686) (-0.007456489576359613 0.008587021759096584 -0.02538987151480053) (-0.05337229923289455 0.01310307334755558 -0.01321924252708884) (-0.02199588662192255 0.008919818921390828 -0.01228308295202789) (0.002456338733411746 0.02049893435778445 -6.646216571295094e-06) (0.002456338733411746 0.02049893435778445 -6.646216571295094e-06) (0.06854374255698362 -0.1334903173078344 0.1204054169314643) (0.006097270374467719 0.008828321019747492 -0.0009287539123639717) (0.01865321354695494 -0.006382631942104328 0.01035746706576058) (-0.001424841720782786 -0.004160324331505663 -0.000232011919854589) (0.09602016816258058 0.00986784723082167 -0.05086367199855079) (-0.3321700441887563 0.2637830529498452 0.154210222353351) (-0.3321700441887563 0.2637830529498452 0.154210222353351) (0.004827092817067081 0.001767260781261664 -0.00685548313684163) (-0.008689793014770008 -0.007927544847877773 0.0119539929351292) (-0.001805801584132531 0.001495709452999421 -0.000623142975419908) (-0.2560484186008252 0.5116162980031619 0.1553553305080772) (0.01724123098619139 0.002707394822459271 -0.007599981145497018) (0.007870404257714844 -0.05013652073397026 0.03655376744522579) (-0.03487113043264951 -0.002104941811718761 -0.003778389214912154) (-0.009100168607214765 0.004430556991830017 -0.01806404740555395) (0.04849458378726706 0.004314527131233968 0.002343214839758691) (0.02431830678104532 -0.002078641617510058 -0.01109990032193371) (0.01893567231048535 0.03616251045981653 0.07060289315603815) (0.03699658371097606 0.05349495078919707 -0.04044840582604102) (0.0111293245361647 -0.03274839595581108 -0.04448011284260693) (0.001379300248711874 0.02175850568989944 0.008571344941480648) (0.1181824673373513 0.06865216000967098 0.005283118333606042) (0.006799041129769448 0.2728759925625975 0.01897298729986188) (-3.851502171044658 0.4447842054624203 -2.317467087888629) (-3.851502171044658 0.4447842054624203 -2.317467087888629) (0.1463833272722073 0.4505734761709296 0.3753267525721984) (-0.002299283380312037 0.004057938042676934 0.0008574645087063076) (0.01032241977081246 0.005266327062080906 0.01653949106410698) (0.05082365129263205 -0.02681707038223713 0.01237169849222123) (5.367152650882757 0.2352770572811722 0.07055260009741038) (4.961780223483776 -5.890619038412043 8.066556426332459) (0.187109509709975 0.6545598001649034 2.265998158226184) (0.02181142412321467 -0.004813207297754326 0.01540793201197331) (0.01173671124471267 -0.004391231151319373 0.005138590537914235) (0.008398588764482337 -0.008862437757569563 -0.01851951945375219) (-0.004905829742041842 0.001391283961136721 -0.005097043968144832) (0.0215453047811096 0.165042659962102 -0.06631828925727931) (-0.01924392235452555 -0.4581066961658237 -0.3167050300767951) (-0.04170524280407271 0.02177046760717586 0.007825881866259302) (0.07030415780033104 0.2062379156288779 -0.0008149575179821206) (0.003632471736837249 0.002041913608196743 -0.007101881915023421) (-0.02431027701716767 -0.009551276793707843 -0.0003729701042237323) (0.2783558846415075 -0.8147054881702921 0.2685332707049479) (0.3229743958522787 0.382147454715288 0.3123035142845403) (-0.106791013625968 0.1966295556582288 -0.08349731516021752) (-3.458559031510998 -1.557843617825953 1.81484914100251) (-0.05882247080640481 0.1569294706721425 0.1545014422844056) (0.1114103045983138 -0.1194025234594811 0.009129565560606906) (0.04561756130588782 0.05321157969149348 -0.1939632069785489) (0.04414128905078289 -0.007259751933530317 0.02424766115936041) (0.02604557990612423 -0.3175603272643502 -0.105461635066519) (0.9064207714616915 -2.256429535028936 -0.4759589378562893) (-0.9026932457947399 3.468397186976389 -1.784369994448729) (2.710039123576993 -1.586545367157641 -6.923457349049622) (2.449112489979989 -13.28126761095326 5.146554838148864) (0.1311021690960154 0.8932582064690694 -0.2655433980824013) (1.11967716059091 2.229849786361663 -0.2095305489232264) (-0.03152610494790034 -0.01735897488169611 -0.009432863758655534) (0.4021792385851688 -3.673192104347063 4.991646618735521) (-2.92158262852425 -9.998002619448178 3.832782734184317) (-0.8960000923296829 -2.917385071462717 -2.269956987367666) (-1.588962322463135 1.285236891809729 0.9410551946133249) (0.01183203343462672 -0.003292995601094384 -0.00227246416168008) (0.003251494193024545 -0.01093224169534481 -0.02706568427370452) (1.528631681959727 12.35311389515466 5.457109832369085) (1.528631681959727 12.35311389515466 5.457109832369085) (-0.09276917321752759 0.1934192939643898 0.1174675450018764) (-0.09778438160257807 -0.05305793867275214 0.01478412954899426) (-0.0377354153263188 0.001321848032874866 -0.008422439870691925) (-0.01382715766611123 -0.04579088729656509 0.1160771324695564) (-0.01382715766611123 -0.04579088729656509 0.1160771324695564) (0.1028907179419085 0.4511693400645786 0.04924931090180861) (-0.3262117821817043 0.7679947140390639 0.4854793492520262) (7.715195093390546 8.295599500222595 -1.714756995694235) (0.7502970188562971 -1.598624987428902 0.4381968975668001) (0.009187970529518615 -0.005567947828877998 -0.007114231065491253) (0.007866077525284794 0.01732372901391255 -0.006402343144012739) (1.659453987174742 -0.2290125437310536 -0.1160939059688981) (-0.2299404437984223 -0.3267969289309395 1.30195546081625) (-0.5800786527161599 -1.010155852758932 0.5848664325786781) (-0.1670193409699305 0.0537684820792653 0.1093716261524073) (0.1302659167396721 0.05832178721924612 0.326044161014319) (0.1302659167396721 0.05832178721924612 0.326044161014319) (-0.03525476358077834 0.02160647940923712 0.01961761778730498) (0.1716240871294251 -0.04927667988023779 0.0838434971195285) (-0.003104757094753705 0.02353570540153906 0.01071353975262513) (0.01230148183030567 0.1205901484599542 0.1118079705074315) (0.07307863443162574 -0.002725532080988431 0.02427472848927289) (0.002322626208319005 0.0002305258369224559 -0.002367276912848003) (0.0566768266785881 -0.1227742767116022 0.2187110107784823) (0.0566768266785881 -0.1227742767116022 0.2187110107784823) (-0.06344055951454286 -0.02918594360354621 0.05337691173956423) (0.07307863443162574 -0.002725532080988431 0.02427472848927289) (0.2545131601072833 0.1850221447828723 0.03679487558691365) (-0.3652354569302663 0.1600353441985787 -0.03106617535364637) (0.3497917139293567 0.1348864565573223 -0.1595642770030481) (-0.1627134143987806 0.1256844151757653 -0.02109277380869255) (0.02641355630743234 -0.09007870300729176 -0.01818727261111994) (0.04444141235556814 0.03226561403312043 -0.02133980071745513) (0.03144607434938089 0.1127269100070079 -0.01566742398344222) (0.003859587808011074 0.003752428583956434 -7.759532243122209e-05) (-0.4984784054086537 -0.2941299366521198 -0.002809979892678921) (-0.9868268282858137 0.124899098466053 0.4310781102511051) (0.8793988713283246 -0.00358033087470927 -0.0993802541201228) (1.062588535765759 0.4566631320698329 0.2354637839281878) (0.03288305168426458 0.02272094606856763 0.02240927498089085) (0.1153846091889213 0.1259866923574863 0.005686812550803703) (0.04701319050625679 -0.0008603844435867494 -0.01584958030281382) (0.006755899153547868 0.004555714984947342 0.00879317297236586) (-0.17573043772734 0.553062921269554 0.3398943682435154) (0.5738003905930251 0.4919068557619959 -1.502789518701722) (0.01802875859773673 -0.005879904287713733 0.1416202767999475) (-0.679793029845884 0.02578456378707678 -0.01246320344385143) (1.636051579202159 -2.224989607357728 -0.1915266059328543) (0.2058358528265027 0.1326107929959497 -0.02105638514261874) (0.2058358528265027 0.1326107929959497 -0.02105638514261874) (-21.76773155887305 6.423767161085856 -2.687373306459389) (0.02457939622271677 0.1287286869068629 -0.04556495500886878) (-0.5564901024311411 0.1865768654177626 0.2175403861222129) (0.0008592983143820019 -0.002703432773451855 0.0003611865466866511) (0.0008592983143820019 -0.002703432773451855 0.0003611865466866511) (-0.002095973980737405 0.008309520654215282 -0.002717315670248229) (-0.002095973980737405 0.008309520654215282 -0.002717315670248229) (3.003156323842381 2.383287850872847 -5.402022372019255) (1.700549589037593 -0.9885070792207828 -0.456124371148336) (1.700549589037593 -0.9885070792207828 -0.456124371148336) (-0.2335449044344255 0.6499743927056318 -0.1077990459347136) (0.06864628859625015 -0.02304490167944574 -0.07032269297911543) (-0.01886918355190818 -0.005303990055315701 -5.453842480917875e-05) (3.080194549338735 8.159647662898145 -7.791904285772361) (-0.004708956532653488 0.004897737680853811 0.002241065546449089) (0.00577248570659669 -0.01455473490099706 -0.003362556937742216) (-0.5105521821929613 -0.193101683067212 0.3489659739587807) (-0.001788296851709574 -0.004486923102838756 -0.004041163010006543) (-0.005800659156484215 0.003232194127985042 -0.02889017393048745) (-0.006231067199222635 -0.0220888503612997 -0.005505666159842134) (0.03679142908630802 0.02672140153773161 -0.01928740876153393) (0.04250825575506359 -0.05747892918294275 -4.931629875370037e-05) (0.008332019894470952 0.01454597555683855 -0.001207760891014551) (-0.02222045009192654 0.04092737677353289 -0.01135513439217307) (-0.05448540361485554 -0.1921365208275119 0.2992383165232596) (0.2783558846415075 -0.8147054881702921 0.2685332707049479) (-0.5105521821929613 -0.193101683067212 0.3489659739587807) (-0.003062552334501187 0.06714328031890304 0.02567823717296146) (0.02160323909500365 0.0009640694915714482 0.007087122208172107) (0.1017667469373143 -0.05121946118196444 -0.04632711885943504) (-0.09106203797459642 -0.311143365237925 -0.225839007545584) (0.007108972941863042 -0.02059141310370565 0.02947894579094828) (-0.01233078347763573 0.002050715997931922 0.000183311642870403) (-4.795687335270713 53.34122742056081 -2.306567602748095) (-0.01560947207635008 -0.005400284116888757 0.001418107622053829) (0.01249837841677878 -0.004119383742375364 0.0008499244282367015) (0.001843739593370669 0.008766590702838424 0.002069542774026246) (-0.02222045009192654 0.04092737677353289 -0.01135513439217307) (-0.1844864736118403 -2.225681282144739 0.04617948796184679) (0.01272142543185794 0.007171601021633148 -0.0008635315877991905) (0.5528513605327959 0.2501901759927025 2.877329904634111) (0.01173671124471267 -0.004391231151319373 0.005138590537914235) (0.1998478457138216 -0.08066935844237884 -0.0752204274828015) (-0.2056170132697837 -0.01088731414848454 0.005547485254816353) (0.3031057373928081 7.110074440480869 -2.917356664377639) (-0.02902149326744882 0.002272274074315565 -0.006100525865422134) (0.187109509709975 0.6545598001649034 2.265998158226184) (-6.564530449433368 0.1285996968420282 9.468839129085096) (0.1082586086740796 0.05871022844193848 0.001647090935782136) (-0.3328740620713611 0.5405915340697997 -0.6682928700915263) (0.01071525367372305 0.00976663282947687 -0.01226306008941158) (0.01071525367372305 0.00976663282947687 -0.01226306008941158) (0.009658595426321514 -0.01828300582359763 0.01041632699947006) (0.009658595426321514 -0.01828300582359763 0.01041632699947006) (0.1159989866217885 0.0192315647323841 0.02797011961781957) (-0.007645782551145959 0.02072361299662653 0.02754676847632161) (0.02363276180709262 -0.02650554316357262 0.00726225340862054) (0.2533270891338277 -0.06387521323293653 0.004512961918678867) (-0.09278603577188262 0.2514420142999665 -0.1668193652225568) (0.03203840995710404 -0.001422383849171102 -0.01288064268946945) (-0.04453653542982744 -0.02393939526494576 0.007273172442174708) (-0.002449429443741182 -0.0005799005676410335 0.004188955810601157) (0.09661610277994115 -0.5764484185022667 -0.1506450102690494) (0.01914863658803331 -0.000174269381571716 0.001168415427545999) (-0.03292058743069783 0.01290755463453506 0.02385882003741648) (-0.1214745777629746 -0.0002573899505939579 -0.002118334150959895) (-0.0149461412720971 0.0006970265524590931 -0.002008528402396717) (0.1195725604004228 1.379576511375786 0.05840962059878407) (0.01941644145629256 0.003586975829558422 -0.01959925518714043) (-0.006463769593299987 -0.005905500354947885 -0.01538033228440562) (0.00477076255482424 0.01452739197911374 -0.003487954868318052) (0.06284459597135482 -0.07020798798882487 -0.04813109895718852) (-0.9339892353360646 -1.248631864794081 -0.829159031282464) (-0.2188615937663397 0.004345955287578321 -0.005196582321500355) (0.09617180457078768 0.08639970456233334 0.094033317756581) (0.3364743516341853 -0.2038737437913976 -0.08198794699126773) (-0.463885835721333 0.8367038736182543 0.2522422769518287) (-0.09656108730469809 0.2839586375781538 -0.1703454885768566) (0.1065420797425757 0.4042961693687289 -0.4620181824415993) (-0.03281853524436044 0.01877845953190342 0.0108970331579337) (-0.03281853524436044 0.01877845953190342 0.0108970331579337) (-0.1469556960260935 -0.3607975548675818 -0.2434194704184357) (-0.2308944358588345 -0.4563242910089155 -0.4474981887950596) (0.2730557759496304 -0.496917387092193 0.382839340391883) (0.09884861469629114 2.49616046674953 -0.8868047511490194) (-0.02937342927065327 0.005399454247625468 -0.00612816456911023) (0.2607277776662662 0.3784380132628966 -0.03503452860520566) (-1.273161920401332 -2.463125345242698 -0.8326615116844915) (0.4321860905942859 0.1098872774271327 -0.3347760425028811) (0.008482336284211908 0.0009853958936681779 -0.00392994411498332) (0.05936977733133377 0.06614334584504468 -0.1036639302851785) (0.03007183117692575 -0.00922861863930409 0.04097599771621111) (0.5853535482799408 -1.149919228486023 -0.5167650512379556) (-0.002206134589743753 0.01411464398789879 -0.00932757119684381) (0.1132895030222126 0.3188671015233637 -0.442085254362227) (-2.72457616868471 0.4537558362879488 -0.4175334699870286) (0.01684654489354788 8.768695452552808e-05 -0.004404091031489958) (-0.02057468686612871 0.006548715470107595 -0.007283953051827736) (-0.08924079618134723 0.04555883325309582 -0.1236482796720913) (-0.08924079618134723 0.04555883325309582 -0.1236482796720913) (0.01055925538092274 0.02717710038824245 -0.04650753039630262) (0.06567605329707055 0.008247561165465258 -0.008417364682346074) (-0.01778266782455368 0.04100230849001594 -0.01548961456437848) (0.002249987170740292 -0.1258039916906808 -0.05107043569669893) (-0.005080727262887302 -0.4260610958363331 -0.2554901540175598) (0.03716089191579439 -0.001018947658683668 0.003983894193356613) (-14.08164261019178 2.768490899567878 2.406341263891949) (-0.3682148883070138 2.149936900796587 1.385220323426604) (-4.866026942791347 43.63811187423519 7.014507853816978) (-0.1161283035354028 0.1322380419547158 -0.1446853038936021) (-0.1161283035354028 0.1322380419547158 -0.1446853038936021) (-0.3136027364547604 -1.585444281139105 0.01354620933757458) (0.007870404257714844 -0.05013652073397026 0.03655376744522579) (-0.03482254185385199 -0.0415438246150414 -2.869616875354579e-06) (-0.3329018913103566 -0.5044146738424041 -0.08348870813953971) (0.4420964850103699 0.2099886309067608 0.237957606484966) (-2.227078787135631 -1.905820656448571 -0.09299698095337233) (0.1439172856461429 0.1424264372394232 0.3018804429166753) (-0.7951960741027082 8.512702543336507 -1.960296322843493) (-0.7951960741027082 8.512702543336507 -1.960296322843493) (2.328680436268239 13.0500898353689 -2.489533579470366) (0.004973792671977865 0.01783352306881598 -0.0147715490476892) (-0.3504163317155697 -0.3636385778228803 -0.05420483094391947) (0.7002862493043106 1.271384503750784 -0.7625043637010546) (0.2417705610943058 0.1918611205487205 -0.5975347340772305) (-0.04634054955962541 -0.1220269441972291 0.01766580879319255) (0.001379300248711874 0.02175850568989944 0.008571344941480648) (-0.04161508004962815 -0.003746992012843547 0.000235990353319962) (-0.1703100973141846 0.01511874108148678 -0.08075079469102889) (0.3533755358177798 0.0009320091764058944 0.06566988465214281) (0.1383016413723214 -0.05512303927194909 -0.0499441978922931) (0.1766371065689145 0.1800805434864778 0.2601896658916142) (6.167776072325686 4.251854861364119 0.149142127739461) (0.2700126550315398 0.389002661192993 -0.0969791907605709) (-0.02270082463321819 0.03970421561213383 0.005237663027628825) (-0.1016291717473183 0.2401230290931466 -0.0596395132997921) (0.05640075981451125 -2.912201212935556 -0.6320636960793653) (-0.03627690602097056 0.01728991751343212 -0.03767526796556625) (-0.8522644850786234 -0.4766016819838053 -0.03028864184679974) (-0.2672901009697196 -1.123714836610925 -0.4742296651185952) (-0.2672901009697196 -1.123714836610925 -0.4742296651185952) (-0.1670193409699305 0.0537684820792653 0.1093716261524073) (0.5738003905930251 0.4919068557619959 -1.502789518701722) (-1.588962322463135 1.285236891809729 0.9410551946133249) (0.02407876781425824 0.04569468303610633 0.04728160464223964) (0.462822164910309 0.3121708793996086 -0.2942405624185182) (0.230118984129995 -0.009858996647611319 -0.1453798596649237) (0.06608540910428108 -0.07062956755900085 -0.04916844957974358) (0.06608540910428108 -0.07062956755900085 -0.04916844957974358) (-0.1303006216487124 -0.1116544122576207 -0.2057860561578177) (-0.1303006216487124 -0.1116544122576207 -0.2057860561578177) (-0.0681223515177244 0.0009655202843490036 -0.005538254945043248) (0.02074819496675181 -0.01217633172773251 -0.006363549517659778) (-0.001440722070253332 -0.008394492213704599 0.001702295442602206) (-0.3136027364547604 -1.585444281139105 0.01354620933757458) (0.02604557990612423 -0.3175603272643502 -0.105461635066519) (0.02951036419089252 -0.005518826331754132 -0.005653897921518488) (-0.003457537586874167 0.00466364049126847 -0.002991351547888854) (-0.003457537586874167 0.00466364049126847 -0.002991351547888854) (-0.01865621866193506 0.004778088569914973 -0.01520598253384313) (0.01272142543185794 0.007171601021633148 -0.0008635315877991905) (-0.01303961198637914 0.04570525544867085 0.01251193133208953) (0.462822164910309 0.3121708793996086 -0.2942405624185182) (0.3329500230899869 -0.833863233399277 -1.993654410361412) (0.0895889179530146 -0.3215539668610405 0.44946196790518) (0.08750881448662502 -0.1414720504592329 -0.03602455328454882) (0.08191541340721603 -0.1271218482983108 0.0008362970605411482) (0.01851844723385036 0.00260398466318821 0.03598269706143502) (-0.002234670575485567 0.01197794829864577 -0.04758452281005217) (-0.002234670575485567 0.01197794829864577 -0.04758452281005217) (0.1779616293013687 -0.0634315473021875 -0.1020820031402307) (0.01211726835417891 0.6624897919051514 0.03828327312523927) (0.05640075981451125 -2.912201212935556 -0.6320636960793653) (-0.07642155161452555 0.2676200384327805 -0.1667267323731781) (0.06859568070064365 -0.0175191798290482 0.01297783588500349) (-0.002519941768597812 0.01440976258972372 0.02188919401110369) (0.5268017432329457 0.8455706204852702 -0.09284415892395828) (0.866855039920245 2.691523624854631 -1.05574174827234) (0.2635216286852127 0.2509172371859161 -0.2466532065135787) (0.2533270891338277 -0.06387521323293653 0.004512961918678867) (-0.08090686709443051 0.3231954798650584 -0.05247796035088046) (-0.01832149876641529 0.0001682325736074501 0.003961061375212139) (-0.07436664195382017 0.02618789686698562 0.01943038435950514) (0.0111293245361647 -0.03274839595581108 -0.04448011284260693) (0.1998478457138216 -0.08066935844237884 -0.0752204274828015) (-0.004654503278172555 0.02113198450328343 0.01291008010811148) (-0.1281908838556806 -0.1331041993457777 0.110435828857746) (0.2651477711662971 0.09381368089286059 -0.1105079119209934) (0.3065347043863862 -0.1347261347823883 -0.1816099805401178) (-0.0543507989005986 -0.01984673568506565 -0.01458222249901309) (-0.001122713301535568 0.000194415614235121 0.02591272705690167) (-0.2274657468453261 0.1421970358772486 0.1028352201018317) (-0.2274657468453261 0.1421970358772486 0.1028352201018317) (0.08958216655445612 0.00297241376902448 -0.01068152618659204) (0.003173007038749773 -0.01993471522236269 -0.01128518697960054) (-0.004654503278172555 0.02113198450328343 0.01291008010811148) (-0.7589711224388764 1.859564423195121 -2.032771935304008) (-0.7589711224388764 1.859564423195121 -2.032771935304008) (-0.02650825153362698 0.04758606807294325 0.03077841273368035) (0.01001859445014978 0.001163199048707601 -0.003297060780572493) (-0.006231067199222635 -0.0220888503612997 -0.005505666159842134) (0.009604907252211511 0.002783681272024223 0.002852003024904018) (-0.9201287140669084 -6.658147149465218 -4.404814648173287) (0.1700313418240146 0.1354160750192213 -0.4787920053404087) (0.1700313418240146 0.1354160750192213 -0.4787920053404087) (-0.007465816151651233 -0.04516069613813511 0.02255474687184829) (-0.02632765643983475 -0.02713062722095128 -0.00586566353792901) (-0.0543507989005986 -0.01984673568506565 -0.01458222249901309) (-0.03627690602097056 0.01728991751343212 -0.03767526796556625) (0.05736550629107749 -0.01315253835588836 0.1725934271227233) (0.03699658371097606 0.05349495078919707 -0.04044840582604102) (-0.2714721720811117 0.3060358424350879 -0.1905728538557583) (5.557649510038949 -5.748647331598734 -3.989566648050705) (-4.191911002543711 -0.1196406051563721 2.972676813343279) (0.2730557759496304 -0.496917387092193 0.382839340391883) (0.3332524132420195 1.312999398984385 0.04292068199106279) (0.3332524132420195 1.312999398984385 0.04292068199106279) (0.00448001695248576 0.004938396183143587 0.006015843351101662) (0.4198620147380475 0.3625440468361334 0.2148282551367104) (0.02706696487454792 0.02165415143691747 -0.03435486227858047) (-0.005104142419612979 0.007829057780186261 -0.001854933644237676) (-0.7209651641140948 0.1569487066811741 0.2481869211900787) (0.07207900468972051 -0.008051809362527442 -0.02708783310078244) (0.1457373646804041 -0.5296173932339002 0.07005841333713134) (0.02692225423325596 0.0212725173825969 0.0153355642894237) (0.01647921800834139 -0.004719828875747098 0.0004623480135851933) (0.3002895414208631 0.09442468773919495 0.1567526006416148) (-0.04111213889645962 -0.1247064704520375 -0.1908615181972014) (-0.003104757094753705 0.02353570540153906 0.01071353975262513) (0.03679142908630802 0.02672140153773161 -0.01928740876153393) (-0.00182539733853914 -0.007905231558614167 0.002965783792546564) (-0.0147732591526135 -0.04269607828630975 -0.0185438572959083) (0.324616425478712 -0.1151469712920592 0.3472578222307497) (0.324616425478712 -0.1151469712920592 0.3472578222307497) (-0.04634054955962541 -0.1220269441972291 0.01766580879319255) (-0.3328740620713611 0.5405915340697997 -0.6682928700915263) (-2.015762054034337 -4.205345130167005 1.535041804695618) ) ; } } // ************************************************************************* //
[ "63025647+harini-cookie@users.noreply.github.com" ]
63025647+harini-cookie@users.noreply.github.com
db876be3d1d9b569e57368726ec73b0a9d3bcd7a
c14500adc5ce57e216123138e8ab55c3e9310953
/Plugin/Annotate.cpp
47792b14a8c5d065ad9425eba1c2b4926b478d27
[ "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.0-or-later", "LicenseRef-scancode-generic-exception", "GPL-1.0-or-later", "LicenseRef-scancode-proprietary-license", "GPL-2.0-only", "GPL-2.0-or-later", "LicenseRef-scancode-other-copyleft", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ResonanceGroup/GMSH304
8c8937ed3839c9c85ab31c7dd2a37568478dc08e
a07a210131ee7db8c0ea5e22386270ceab44a816
refs/heads/master
2020-03-14T23:58:48.751856
2018-05-02T13:51:09
2018-05-02T13:51:09
131,857,142
0
1
MIT
2018-05-02T13:51:10
2018-05-02T13:47:05
null
UTF-8
C++
false
false
8,321
cpp
// Gmsh - Copyright (C) 1997-2017 C. Geuzaine, J.-F. Remacle // // See the LICENSE.txt file for license information. Please report all // bugs and problems to the public mailing list <gmsh@onelab.info>. #include <vector> #include "GmshConfig.h" #include "Annotate.h" #include "Context.h" #if defined(HAVE_OPENGL) #include "drawContext.h" #endif StringXNumber AnnotateOptions_Number[] = { {GMSH_FULLRC, "X", GMSH_AnnotatePlugin::callbackX, 50.}, {GMSH_FULLRC, "Y", GMSH_AnnotatePlugin::callbackY, 30.}, {GMSH_FULLRC, "Z", GMSH_AnnotatePlugin::callbackZ, 0.}, {GMSH_FULLRC, "ThreeD", GMSH_AnnotatePlugin::callback3D, 0.}, {GMSH_FULLRC, "FontSize", GMSH_AnnotatePlugin::callbackFontSize, 14.}, {GMSH_FULLRC, "View", NULL, -1.} }; StringXString AnnotateOptions_String[] = { {GMSH_FULLRC, "Text", GMSH_AnnotatePlugin::callbackText, "My Text"}, {GMSH_FULLRC, "Font", GMSH_AnnotatePlugin::callbackFont, "Helvetica"}, {GMSH_FULLRC, "Align", GMSH_AnnotatePlugin::callbackAlign, "Left"} }; extern "C" { GMSH_Plugin *GMSH_RegisterAnnotatePlugin() { return new GMSH_AnnotatePlugin(); } } static double getStyle() { int fontsize = (int)AnnotateOptions_Number[4].def, font = 0, align = 0; #if defined(HAVE_OPENGL) font = drawContext::global()->getFontIndex (AnnotateOptions_String[1].def.c_str()); align = drawContext::global()->getFontAlign (AnnotateOptions_String[2].def.c_str()); #endif return (double)((align<<16)|(font<<8)|(fontsize)); } void GMSH_AnnotatePlugin::draw(void *context) { #if defined(HAVE_OPENGL) double X = AnnotateOptions_Number[0].def; double Y = AnnotateOptions_Number[1].def; double Z = AnnotateOptions_Number[2].def; double style = getStyle(); drawContext *ctx = (drawContext*)context; glColor4ubv((GLubyte *) & CTX::instance()->color.fg); if(AnnotateOptions_Number[3].def){ // 3D ctx->drawString(AnnotateOptions_String[0].def, X, Y, Z, style); // draw 10-pixel marker double d = 10 * ctx->pixel_equiv_x / ctx->s[0]; glBegin(GL_LINES); glVertex3d(X-d,Y,Z); glVertex3d(X+d,Y,Z); glVertex3d(X,Y-d,Z); glVertex3d(X,Y+d,Z); glVertex3d(X,Y,Z-d); glVertex3d(X,Y,Z+d); glEnd(); } else{ double modelview[16], projection[16]; glGetDoublev(GL_PROJECTION_MATRIX, projection); glGetDoublev(GL_MODELVIEW_MATRIX, modelview); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho((double)ctx->viewport[0], (double)ctx->viewport[2], (double)ctx->viewport[1], (double)ctx->viewport[3], -1., 1.); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); ctx->fix2dCoordinates(&X, &Y); ctx->drawString(AnnotateOptions_String[0].def, X, Y, 0., style); // draw 10-pixel marker glBegin(GL_LINES); glVertex2d(X-10,Y); glVertex2d(X+10,Y); glVertex2d(X,Y-10); glVertex2d(X,Y+10); glEnd(); glMatrixMode(GL_PROJECTION); glLoadMatrixd(projection); glMatrixMode(GL_MODELVIEW); glLoadMatrixd(modelview); } #endif } double GMSH_AnnotatePlugin::callback(int num, int action, double value, double *opt, double step, double min, double max) { switch(action){ // configure the input field case 1: return step; case 2: return min; case 3: return max; default: break; } *opt = value; GMSH_Plugin::setDrawFunction(draw); return 0.; } std::string GMSH_AnnotatePlugin::callbackStr(int num, int action, std::string value, std::string &opt) { opt = value; GMSH_Plugin::setDrawFunction(draw); return opt; } double GMSH_AnnotatePlugin::callbackX(int num, int action, double value) { // not perfect: the change will only take place if we reopen the dialog... int dim3 = (int)AnnotateOptions_Number[3].def; return callback(num, action, value, &AnnotateOptions_Number[0].def, dim3 ? CTX::instance()->lc/200. : 0.5, dim3 ? -CTX::instance()->lc : -100., dim3 ? CTX::instance()->lc : 100000.); } double GMSH_AnnotatePlugin::callbackY(int num, int action, double value) { // not perfect: the change will only take place if we reopen the dialog... int dim3 = (int)AnnotateOptions_Number[3].def; return callback(num, action, value, &AnnotateOptions_Number[1].def, dim3 ? CTX::instance()->lc/200. : 0.5, dim3 ? -CTX::instance()->lc : -100., dim3 ? CTX::instance()->lc : 100000.); } double GMSH_AnnotatePlugin::callbackZ(int num, int action, double value) { // not perfect: the change will only take place if we reopen the dialog... int dim3 = (int)AnnotateOptions_Number[3].def; return callback(num, action, value, &AnnotateOptions_Number[2].def, dim3 ? CTX::instance()->lc/200. : 0.5, dim3 ? -CTX::instance()->lc : -100., dim3 ? CTX::instance()->lc : 100000.); } double GMSH_AnnotatePlugin::callback3D(int num, int action, double value) { return callback(num, action, value, &AnnotateOptions_Number[3].def, 1, 0, 1); } double GMSH_AnnotatePlugin::callbackFontSize(int num, int action, double value) { return callback(num, action, value, &AnnotateOptions_Number[4].def, 1, 5, 100); } std::string GMSH_AnnotatePlugin::callbackText(int num, int action, std::string value) { return callbackStr(num, action, value, AnnotateOptions_String[0].def); } std::string GMSH_AnnotatePlugin::callbackFont(int num, int action, std::string value) { return callbackStr(num, action, value, AnnotateOptions_String[1].def); } std::string GMSH_AnnotatePlugin::callbackAlign(int num, int action, std::string value) { return callbackStr(num, action, value, AnnotateOptions_String[2].def); } std::string GMSH_AnnotatePlugin::getHelp() const { return "Plugin(Annotate) adds the text string `Text', " "in font `Font' and size `FontSize', in the view " "`View'. The string is aligned according to `Align'.\n\n" "If `ThreeD' is equal to 1, the plugin inserts " "the string in model coordinates at the position " "(`X',`Y',`Z'). If `ThreeD' is equal to 0, the plugin " "inserts the string in screen coordinates at " "the position (`X',`Y').\n\n" "If `View' < 0, the plugin is run on the current view.\n\n" "Plugin(Annotate) is executed in-place for list-based " "datasets or creates a new view for other datasets."; } int GMSH_AnnotatePlugin::getNbOptions() const { return sizeof(AnnotateOptions_Number) / sizeof(StringXNumber); } StringXNumber *GMSH_AnnotatePlugin::getOption(int iopt) { return &AnnotateOptions_Number[iopt]; } int GMSH_AnnotatePlugin::getNbOptionsStr() const { return sizeof(AnnotateOptions_String) / sizeof(StringXString); } StringXString *GMSH_AnnotatePlugin::getOptionStr(int iopt) { return &AnnotateOptions_String[iopt]; } PView *GMSH_AnnotatePlugin::execute(PView *v) { double X = AnnotateOptions_Number[0].def; double Y = AnnotateOptions_Number[1].def; double Z = AnnotateOptions_Number[2].def; int dim3 = (int)AnnotateOptions_Number[3].def; int iView = (int)AnnotateOptions_Number[5].def; std::string text = AnnotateOptions_String[0].def; double style = getStyle(); PView *v1 = getView(iView, v); if(!v1) return v; PViewData *data1 = v1->getData(); PView *v2 = v1; PViewDataList *data2 = getDataList(v2, false); if(!data2){ v2 = new PView(); data2 = getDataList(v2); } if(dim3){ data2->T3D.push_back(X); data2->T3D.push_back(Y); data2->T3D.push_back(Z); data2->T3D.push_back(style); data2->T3D.push_back(data2->T3C.size()); for(unsigned int i = 0; i < text.size(); i++) data2->T3C.push_back(text[i]); data2->T3C.push_back('\0'); data2->NbT3++; } else{ data2->T2D.push_back(X); data2->T2D.push_back(Y); data2->T2D.push_back(style); data2->T2D.push_back(data2->T2C.size()); for(unsigned int i = 0; i < text.size(); i++) data2->T2C.push_back(text[i]); data2->T2C.push_back('\0'); data2->NbT2++; } if(v2 != v1){ for(int i = 0; i < data1->getNumTimeSteps(); i++) data2->Time.push_back(data1->getTime(i)); data2->setName(data1->getName() + "_Annotate"); data2->setFileName(data1->getName() + "_Annotate.pos"); } data2->finalize(); return v2; }
[ "=phillipmobley2@gmail.com" ]
=phillipmobley2@gmail.com
4dc8a209feed2f7617261c04ba262888592c439b
7e2901a8408d580bc1676a6c52a0990ef38e9528
/corrade/src/Corrade/Containers/BigEnumSet.h
580a567e608fd947d8ddb600462a58ce9dc8fef7
[ "MIT", "Unlicense", "LicenseRef-scancode-public-domain" ]
permissive
sspike2/MagnumTest
a5aadf70a02fec6f1f45bebd980deccc5cce9d8a
b07aa0daf22978c85e352e81585e748d44c32638
refs/heads/main
2023-03-05T08:08:04.434333
2021-02-19T19:00:21
2021-02-19T19:00:21
340,454,325
0
0
null
null
null
null
UTF-8
C++
false
false
10,696
h
#ifndef Corrade_Containers_BigEnumSet_h #define Corrade_Containers_BigEnumSet_h /* This file is part of Corrade. Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Vladimír Vondruš <mosra@centrum.cz> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** @file * @brief Class @ref Corrade::Containers::BigEnumSet * @m_since_latest * * @see @ref Corrade/Containers/BigEnumSet.hpp */ #include <cstdint> #include "Corrade/Containers/EnumSet.h" /* reusing the macros */ #include "Corrade/Containers/sequenceHelpers.h" #include "Corrade/Utility/Assert.h" namespace Corrade { namespace Containers { namespace Implementation { template<class T> constexpr std::uint64_t bigEnumSetElementValue(std::size_t i, T value) { return static_cast<typename std::underlying_type<T>::type>(value)/64 == i ? (1ull << (static_cast<typename std::underlying_type<T>::type>(value) % 64)) : 0; } } /** @brief Set of more than 64 enum values @tparam T Enum type @tparam size How many 64-bit integers to use to store the value @m_since_latest A variant of @ref EnumSet that is able to handle sets of more than 64 values (which is the largest standard integer type) by treating the @cpp enum @ce values as bit positions instead of bit values. Internally an array is used for storage and the class doesn't provide any equivalent to @ref EnumSet::operator UnderlyingType(). While it's *theoretically* possible to store up to @f$ 2^{64} @f$ different values, the storage is artificially limited to 8192 values, which fits into 1 kB. With a 16-bit @p T and larger, you're expected to set the @p size template parameter to a reasonable upper bound, not larger than @cpp 128 @ce. On construction, the enum value is checked against this limit to ensure no bits are ignored by accident. Below is a side-by-side comparison of an equivalent enum set implementation in @ref EnumSet and @ref BigEnumSet --- the only difference is enum values being specified as @cpp i @ce instead of @cpp 1 << i @ce and the @cpp typedef @ce, the @ref CORRADE_ENUMSET_OPERATORS() / @ref CORRADE_ENUMSET_FRIEND_OPERATORS() macro is the same: @m_class{m-row m-container-inflate} @parblock @m_div{m-col-m-6} @snippet Containers.cpp BigEnumSet-usage1 @m_enddiv @m_div{m-col-m-6} @snippet Containers.cpp BigEnumSet-usage2 @m_enddiv @endparblock @see @ref bigEnumSetDebugOutput() */ #ifdef DOXYGEN_GENERATING_OUTPUT template<class T, std::size_t size = (1 << (sizeof(T)*8 - 6))> #else template<class T, std::size_t size> #endif class BigEnumSet { static_assert(std::is_enum<T>::value, "BigEnumSet type must be a strongly typed enum"); static_assert(size && size <= std::uint64_t{1} << (sizeof(T)*8 - 6), "size out of range for given underlying type"); static_assert(size <= 128, "BigEnumSet size is capped at 1 kB (8192 different values) to prevent accidents"); public: typedef T Type; /**< @brief Enum type */ enum: std::size_t { Size = size /**< Count of 64-bit integers storing this set */ }; /** @brief Create an empty set */ constexpr /*implicit*/ BigEnumSet(): _data{} {} /** @brief Create a set from one value */ constexpr /*implicit*/ BigEnumSet(T value): BigEnumSet<T, size>{ (CORRADE_CONSTEXPR_ASSERT(static_cast<typename std::underlying_type<T>::type>(value) < size*64, "Containers::BigEnumSet: value" << static_cast<typename std::underlying_type<T>::type>(value) << "too large for a" << size*64 << Utility::Debug::nospace << "-bit storage" ), nullptr), value, typename Implementation::GenerateSequence<Size>::Type{}} {} /** * @brief Create an uninitialized set * * The contents are left in an undefined state. */ explicit BigEnumSet(NoInitT) {} /** @brief Equality comparison */ constexpr bool operator==(const BigEnumSet<T, size>& other) const { return equalsInternal(other, typename Implementation::GenerateSequence<Size>::Type{}); } /** @brief Non-equality comparison */ constexpr bool operator!=(const BigEnumSet<T, size>& other) const { return !operator==(other); } /** * @brief Stored data * * Returns an array of size @ref Size. */ constexpr const std::uint64_t* data() const { return +_data; } /** * @brief Whether @p other is a subset of this (@f$ a \supseteq o @f$) * * Equivalent to @cpp (a & other) == other @ce. */ constexpr bool operator>=(const BigEnumSet<T, size>& other) const { return (*this & other) == other; } /** * @brief Whether @p other is a superset of this (@f$ a \subseteq o @f$) * * Equivalent to @cpp (a & other) == a @ce. */ constexpr bool operator<=(const BigEnumSet<T, size>& other) const { return (*this & other) == *this; } /** @brief Union of two sets */ constexpr BigEnumSet<T, size> operator|(const BigEnumSet<T, size>& other) const { return orInternal(other, typename Implementation::GenerateSequence<Size>::Type{}); } /** @brief Union two sets and assign */ BigEnumSet<T, size>& operator|=(const BigEnumSet<T, size>& other) { for(std::size_t i = 0; i != Size; ++i) _data[i] |= other._data[i]; return *this; } /** @brief Intersection of two sets */ constexpr BigEnumSet<T, size> operator&(const BigEnumSet<T, size>& other) const { return andInternal(other, typename Implementation::GenerateSequence<Size>::Type{}); } /** @brief Intersect two sets and assign */ BigEnumSet<T, size>& operator&=(const BigEnumSet<T, size>& other) { for(std::size_t i = 0; i != Size; ++i) _data[i] &= other._data[i]; return *this; } /** @brief XOR of two sets */ constexpr BigEnumSet<T, size> operator^(const BigEnumSet<T, size>& other) const { return xorInternal(other, typename Implementation::GenerateSequence<Size>::Type{}); } /** @brief XOR two sets and assign */ BigEnumSet<T, size>& operator^=(const BigEnumSet<T, size>& other) { for(std::size_t i = 0; i != Size; ++i) _data[i] ^= other._data[i]; return *this; } /** @brief Set complement */ constexpr BigEnumSet<T, size> operator~() const { return inverseInternal(typename Implementation::GenerateSequence<Size>::Type{}); } /** * @brief Boolean conversion * * Returns @cpp true @ce if at least one bit is set, @cpp false @ce * otherwise. */ constexpr explicit operator bool() const { return nonZeroInternal(typename Implementation::GenerateSequence<Size>::Type{}); } private: /* Used by the BigEnumSet(T) constructor, void* to avoid accidental matches by users */ template<std::size_t ...sequence> constexpr explicit BigEnumSet(void*, T value, Implementation::Sequence<sequence...>): _data{Implementation::bigEnumSetElementValue(sequence, value)...} {} /* Used by the *Internal() functions below, void* to avoid accidental matches by users */ template<class First, class ...Next> constexpr explicit BigEnumSet(void*, First first, Next... next): _data{first, next...} { static_assert(sizeof...(Next) + 1 == Size, "improper value count for construction"); } constexpr bool nonZeroInternal(Implementation::Sequence<>) const { return false; } template<std::size_t first, std::size_t ...next> constexpr bool nonZeroInternal(Implementation::Sequence<first, next...>) const { return _data[first] || nonZeroInternal(Implementation::Sequence<next...>{}); } constexpr bool equalsInternal(const BigEnumSet<T, size>&, Implementation::Sequence<>) const { return true; } template<std::size_t first, std::size_t ...next> constexpr bool equalsInternal(const BigEnumSet<T, size>& other, Implementation::Sequence<first, next...>) const { return _data[first] == other._data[first] && equalsInternal(other, Implementation::Sequence<next...>{}); } template<std::size_t ...sequence> constexpr BigEnumSet<T, size> orInternal(const BigEnumSet<T, size>& other, Implementation::Sequence<sequence...>) const { return BigEnumSet<T, size>{nullptr, (_data[sequence] | other._data[sequence])...}; } template<std::size_t ...sequence> constexpr BigEnumSet<T, size> andInternal(const BigEnumSet<T, size>& other, Implementation::Sequence<sequence...>) const { return BigEnumSet<T, size>{nullptr, (_data[sequence] & other._data[sequence])...}; } template<std::size_t ...sequence> constexpr BigEnumSet<T, size> xorInternal(const BigEnumSet<T, size>& other, Implementation::Sequence<sequence...>) const { return BigEnumSet<T, size>{nullptr, (_data[sequence] ^ other._data[sequence])...}; } template<std::size_t ...sequence> constexpr BigEnumSet<T, size> inverseInternal(Implementation::Sequence<sequence...>) const { return BigEnumSet<T, size>{nullptr, ~_data[sequence]...}; } std::uint64_t _data[Size]; }; }} #endif
[ "mail.sushrut@gmail.com" ]
mail.sushrut@gmail.com
5ad5649c89715b59fa1653c9a4ec5aa406c8cb86
0aca9ec0a5e9e450bf54195aeec03428762c27d2
/src/zuwm/accumulators.h
1e67c59dc87a2949a5f74ce0132dc9781b805377
[ "MIT" ]
permissive
unitedworldmoney/unitedworldmoney-source
1bc593a348376555979f00bdb8dfe13c3d2661a3
4229d64f48ac7c7e622595cf9ffe9a08878c9252
refs/heads/main
2023-07-18T06:31:02.082512
2021-09-06T14:26:43
2021-09-06T14:26:43
403,652,373
0
0
null
null
null
null
UTF-8
C++
false
false
3,460
h
// Copyright (c) 2017-2019 The PIVX developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef UnitedWorldMoney_ACCUMULATORS_H #define UnitedWorldMoney_ACCUMULATORS_H #include "libzerocoin/Accumulator.h" #include "libzerocoin/Coin.h" #include "libzerocoin/Denominations.h" #include "zuwm/zerocoin.h" #include "accumulatormap.h" #include "chain.h" #include "uint256.h" #include "bloom.h" #include "witness.h" class CBlockIndex; std::map<libzerocoin::CoinDenomination, int> GetMintMaturityHeight(); /** * Calculate the acc witness for a single coin. * @return true if the witness was calculated well */ bool CalculateAccumulatorWitnessFor( const libzerocoin::ZerocoinParams* params, int startingHeight, int maxCalculationRange, libzerocoin::CoinDenomination den, const CBloomFilter& filter, libzerocoin::Accumulator& accumulator, libzerocoin::AccumulatorWitness& witness, int& nMintsAdded, string& strError, list<CBigNum>& ret, int &heightStop ); bool GenerateAccumulatorWitness( const libzerocoin::PublicCoin &coin, libzerocoin::Accumulator& accumulator, libzerocoin::AccumulatorWitness& witness, int& nMintsAdded, string& strError, CBlockIndex* pindexCheckpoint = nullptr); bool GenerateAccumulatorWitness(CoinWitnessData* coinWitness, AccumulatorMap& mapAccumulators, CBlockIndex* pindexCheckpoint); list<libzerocoin::PublicCoin> GetPubcoinFromBlock(const CBlockIndex* pindex); bool GetAccumulatorValueFromDB(uint256 nCheckpoint, libzerocoin::CoinDenomination denom, CBigNum& bnAccValue); bool GetAccumulatorValue(int& nHeight, const libzerocoin::CoinDenomination denom, CBigNum& bnAccValue); bool GetAccumulatorValueFromChecksum(uint32_t nChecksum, bool fMemoryOnly, CBigNum& bnAccValue); void AddAccumulatorChecksum(const uint32_t nChecksum, const CBigNum &bnValue, bool fMemoryOnly); bool CalculateAccumulatorCheckpoint(int nHeight, uint256& nCheckpoint, AccumulatorMap& mapAccumulators); void DatabaseChecksums(AccumulatorMap& mapAccumulators); bool LoadAccumulatorValuesFromDB(const uint256 nCheckpoint); bool EraseAccumulatorValues(const uint256& nCheckpointErase, const uint256& nCheckpointPrevious); uint32_t ParseChecksum(uint256 nChecksum, libzerocoin::CoinDenomination denomination); uint32_t GetChecksum(const CBigNum &bnValue); int GetChecksumHeight(uint32_t nChecksum, libzerocoin::CoinDenomination denomination); bool InvalidCheckpointRange(int nHeight); bool ValidateAccumulatorCheckpoint(const CBlock& block, CBlockIndex* pindex, AccumulatorMap& mapAccumulators); // Exceptions class NotEnoughMintsException : public std::exception { public: std::string message; NotEnoughMintsException(const string &message) : message(message) {} }; class GetPubcoinException : public std::exception { public: std::string message; GetPubcoinException(const string &message) : message(message) {} }; class ChecksumInDbNotFoundException : public std::exception { public: std::string message; ChecksumInDbNotFoundException(const string &message) : message(message) {} }; class searchMintHeightException : public std::exception { public: std::string message; searchMintHeightException(const string &message) : message(message) {} }; #endif //UnitedWorldMoney_ACCUMULATORS_H
[ "34356906+unitedworldmoney@users.noreply.github.com" ]
34356906+unitedworldmoney@users.noreply.github.com
91c378890add5958059076d2edfcc975a93bfe37
703f48a08b9dd06907174f69fd621d4990e9aa30
/ProcessNetRateDemo/traffic-src/TrafficSource.h
2ad71f5a4a5b592ed4f93cc5747601445baf33d0
[]
no_license
yhc166188/ProcessNetRateDemo
8d11ee3ef7447ca09be73a8995e861a51c2c771c
3a7e074c1dfa27c8fb0c61762be15d325331d093
refs/heads/master
2021-07-13T01:52:44.918347
2017-10-18T05:11:33
2017-10-18T05:11:33
107,360,967
0
0
null
null
null
null
UTF-8
C++
false
false
2,668
h
#ifndef TRAFFIC_SOURCE_H #define TRAFFIC_SOURCE_H #include "../utils/Packet.h" #pragma region Protocol Headers #pragma pack(1) // MACv2 Header typedef struct tagMacHeader { unsigned char dst[6]; unsigned char src[6]; unsigned short protocol; } MacHeader; /* 00 26 18 b1 cb d3 dc d2 fc 98 64 f9 88 64 11 00 21 6c 05 ca 00 21 ~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~ ~~~~~ ~~ ~~ ~~~~~ ~~~~~ ~~~~~ Destination Addr Source Address Ethernet Type PPP Protocol: 0x0021* (IP) 0x8862 / 0x8864* ---------- MAC Packet ---------------------+-- PPPoE Packet -+----- Version / Type: 0x11* Code: 0x00* Session ID Length (1482) */ // PPPOE Header typedef struct tagPppoeHeader { unsigned ver : 4; unsigned type : 4; unsigned code : 8; unsigned session : 16; unsigned length : 16; unsigned protocol : 16; } PppoeHeader; // IPv4 Header typedef struct tagIpHeader { unsigned ver : 4; unsigned hdr_len : 4; unsigned : 8; unsigned len : 16; unsigned : 16; unsigned : 3; unsigned : 13; unsigned : 8; unsigned protocol : 8; unsigned : 16; unsigned src : 32; unsigned dst : 32; } IpHeader; // UDP Header typedef struct tagUdpHeader { unsigned short src_port; unsigned short dst_port; unsigned short len; unsigned short checksum; } UdpHeader; // TCP Header typedef struct tagTcpHeader { unsigned src_port : 16; unsigned dst_port : 16; unsigned : 32; unsigned : 32; unsigned data_offset : 4; unsigned : 6; unsigned flags : 6; unsigned window : 16; unsigned checksum : 16; unsigned emergency_ptr : 16; } TcpHeader; #pragma pack() #pragma endregion class TrafficSource { public: virtual bool Initialize() = 0; virtual ~TrafficSource() {}; virtual int EnumDevices() = 0; virtual void GetDeviceName(int index, TCHAR *buf, int cchLen) = 0; virtual bool SelectDevice(int index) = 0; // Return value // 1. Returns true and timeout = false, if a packet has been captured // 2. Returns false and timeout = true, if no packet captured in this period, should call again // 3. Returns false and timeout = false, if some error occurred virtual bool Capture(PacketInfo *pi, bool *timeout) = 0; }; #endif
[ "739884701@qq.com" ]
739884701@qq.com
1d0f9a68a01b51dd000e7ce7bf48e2c3f27a6eba
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE194_Unexpected_Sign_Extension/s02/CWE194_Unexpected_Sign_Extension__negative_memcpy_74b.cpp
d9cf8fd1b4bd71f3f27e5e69b8223e95f9bebac9
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
2,035
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE194_Unexpected_Sign_Extension__negative_memcpy_74b.cpp Label Definition File: CWE194_Unexpected_Sign_Extension.label.xml Template File: sources-sink-74b.tmpl.cpp */ /* * @description * CWE: 194 Unexpected Sign Extension * BadSource: negative Set data to a fixed negative number * GoodSource: Positive integer * Sinks: memcpy * BadSink : Copy strings using memcpy() with the length of data * Flow Variant: 74 Data flow: data passed in a map from one function to another in different source files * * */ #include "std_testcase.h" #include <map> using namespace std; namespace CWE194_Unexpected_Sign_Extension__negative_memcpy_74 { #ifndef OMITBAD void badSink(map<int, short> dataMap) { /* copy data out of dataMap */ short data = dataMap[2]; { char source[100]; char dest[100] = ""; memset(source, 'A', 100-1); source[100-1] = '\0'; if (data < 100) { /* POTENTIAL FLAW: data is interpreted as an unsigned int - if its value is negative, * the sign extension could result in a very large number */ memcpy(dest, source, data); dest[data] = '\0'; /* NULL terminate */ } printLine(dest); } } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink(map<int, short> dataMap) { short data = dataMap[2]; { char source[100]; char dest[100] = ""; memset(source, 'A', 100-1); source[100-1] = '\0'; if (data < 100) { /* POTENTIAL FLAW: data is interpreted as an unsigned int - if its value is negative, * the sign extension could result in a very large number */ memcpy(dest, source, data); dest[data] = '\0'; /* NULL terminate */ } printLine(dest); } } #endif /* OMITGOOD */ } /* close namespace */
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
2334bd6cba189985da5c282d8cdbc72fb4ecc5b7
ec204c2ea3bad317692d264fb6543fd6c3e5ece1
/Exercises_02/Es02/randomwalk.h
ca029acf29677c1b7b669d06bcabf027a4b24370
[]
no_license
LeonardoPalchetti/LSN_LeonardoPalchetti
37e71f7810d1f68d0a9cb6d156cd02f2ea30db91
3637378a1ec870c2cbdcbfb6adc4eb4ff09d0a2f
refs/heads/master
2022-11-08T20:33:49.013381
2020-06-23T17:02:33
2020-06-23T17:02:33
274,459,109
0
0
null
null
null
null
UTF-8
C++
false
false
1,108
h
#ifndef __Integrale__ #define __Integrale__ #include <cmath> #include "random.h" #include <fstream> #include <iostream> using namespace std; struct point { double x, y, z; // cordinate punto }; struct vector{ double r; double theta, phi; }; class RandomWalk { protected: point *_x; int _P; double *_dist; Random rnd; public: RandomWalk(int); //genera un randomwalk lungo P passi dall'origine ~RandomWalk(); void Passo_lattice(); //esegue P passi nel reticolo void Passo_space(); //esegue P passi nello spazio void AnalisiDist(); //esegue l'Analisi delle distanze double GetDist(int i){return _dist[i];}; //restituisce la i-esima distanza void New(); double dist2( point); // funzione calcola distanza al quadrato dall'origine del punto p point passo_lattice(point, int, double); //funzione randomwalk nel reticolo unitario point passo_space(point, vector); //funzione randomwalk nello spazio double funzionetheta(); //funzione calcola componente theta dell'angolo solido }; #endif
[ "palchetti3@gmail.com" ]
palchetti3@gmail.com
ab5d24362faed0e80b65c9a2c72e70e00142b50e
777a75e6ed0934c193aece9de4421f8d8db01aac
/src/Providers/UNIXProviders/DeviceErrorData/UNIX_DeviceErrorData_STUB.hxx
b851fb2d0f667bf621b8d2575c2350a1eba7756c
[ "MIT" ]
permissive
brunolauze/openpegasus-providers-old
20fc13958016e35dc4d87f93d1999db0eae9010a
b00f1aad575bae144b8538bf57ba5fd5582a4ec7
refs/heads/master
2021-01-01T20:05:44.559362
2014-04-30T17:50:06
2014-04-30T17:50:06
19,132,738
1
0
null
null
null
null
UTF-8
C++
false
false
125
hxx
#ifdef PEGASUS_OS_STUB #ifndef __UNIX_DEVICEERRORDATA_PRIVATE_H #define __UNIX_DEVICEERRORDATA_PRIVATE_H #endif #endif
[ "brunolauze@msn.com" ]
brunolauze@msn.com
e2f466fa6de5eea93fcba3d29259153f58382b75
614369bd9a9452f6b48b9c667b12daacf153d6b8
/Dongmin/Baekjoon/삼성 기출/테트로미노/P14500.cpp
7bb00b3e05928d1d740a5a78135d43525d3322bd
[]
no_license
minji0320/Algorithm_for_CodingTest
339ad05a81a89b2645dfab73d7bcbc2df9775d77
7fc091f93693d549fa1975044f4b4ff5ee056520
refs/heads/master
2022-06-26T05:14:27.149435
2021-06-30T00:16:38
2021-06-30T00:16:38
242,951,278
2
0
null
2020-02-25T08:43:49
2020-02-25T08:43:48
null
UTF-8
C++
false
false
5,060
cpp
#include<iostream> #include<vector> #include<algorithm> using namespace std; typedef struct Pos { int row, col; } Pos; typedef struct Polyomino { vector<Pos> positions; } Polyomino; int N, M; vector<vector<int> > board; vector<vector<Polyomino> > polyominos; int poly_case[5] = {2, 1, 8, 4, 4}; void getInput() { cin >> N >> M; board.assign(N, vector<int>(M,0)); for(int r=0; r<N; r++) { for(int c=0; c<M; c++) { cin >> board[r][c]; } } polyominos.assign(5, vector<Polyomino>(8, Polyomino{vector<Pos>()})); for(int i=0; i<4; i++) polyominos[0][0].positions.push_back({-i,0}); for(int i=0; i<4; i++) polyominos[0][1].positions.push_back({0,i}); polyominos[1][0].positions.push_back({0,0}); polyominos[1][0].positions.push_back({-1,0}); polyominos[1][0].positions.push_back({0,1}); polyominos[1][0].positions.push_back({-1,1}); polyominos[2][0].positions.push_back({0,0}); polyominos[2][0].positions.push_back({-1,0}); polyominos[2][0].positions.push_back({0,1}); polyominos[2][0].positions.push_back({-2,0}); polyominos[2][1].positions.push_back({0,0}); polyominos[2][1].positions.push_back({-1,0}); polyominos[2][1].positions.push_back({-1,1}); polyominos[2][1].positions.push_back({-1,2}); polyominos[2][2].positions.push_back({0,1}); polyominos[2][2].positions.push_back({-1,1}); polyominos[2][2].positions.push_back({-2,1}); polyominos[2][2].positions.push_back({-2,0}); polyominos[2][3].positions.push_back({0,0}); polyominos[2][3].positions.push_back({0,1}); polyominos[2][3].positions.push_back({0,2}); polyominos[2][3].positions.push_back({-1,2}); polyominos[2][4].positions.push_back({-1,0}); polyominos[2][4].positions.push_back({-1,1}); polyominos[2][4].positions.push_back({-1,2}); polyominos[2][4].positions.push_back({0,2}); polyominos[2][5].positions.push_back({0,0}); polyominos[2][5].positions.push_back({0,1}); polyominos[2][5].positions.push_back({0,2}); polyominos[2][5].positions.push_back({-1,0}); polyominos[2][6].positions.push_back({0,0}); polyominos[2][6].positions.push_back({0,1}); polyominos[2][6].positions.push_back({-1,1}); polyominos[2][6].positions.push_back({-2,1}); polyominos[2][7].positions.push_back({0,0}); polyominos[2][7].positions.push_back({-1,0}); polyominos[2][7].positions.push_back({-2,0}); polyominos[2][7].positions.push_back({-2,1}); polyominos[3][0].positions.push_back({-1,0}); polyominos[3][0].positions.push_back({-2,0}); polyominos[3][0].positions.push_back({0,1}); polyominos[3][0].positions.push_back({-1,1}); polyominos[3][1].positions.push_back({0,0}); polyominos[3][1].positions.push_back({0,1}); polyominos[3][1].positions.push_back({-1,1}); polyominos[3][1].positions.push_back({-1,2}); polyominos[3][2].positions.push_back({0,0}); polyominos[3][2].positions.push_back({-1,0}); polyominos[3][2].positions.push_back({-1,1}); polyominos[3][2].positions.push_back({-2,1}); polyominos[3][3].positions.push_back({-1,0}); polyominos[3][3].positions.push_back({-1,1}); polyominos[3][3].positions.push_back({0,1}); polyominos[3][3].positions.push_back({0,2}); polyominos[4][0].positions.push_back({-1,0}); polyominos[4][0].positions.push_back({0,1}); polyominos[4][0].positions.push_back({-1,1}); polyominos[4][0].positions.push_back({-1,2}); polyominos[4][1].positions.push_back({0,0}); polyominos[4][1].positions.push_back({-1,0}); polyominos[4][1].positions.push_back({-2,0}); polyominos[4][1].positions.push_back({-1,1}); polyominos[4][2].positions.push_back({-1,0}); polyominos[4][2].positions.push_back({0,1}); polyominos[4][2].positions.push_back({-1,1}); polyominos[4][2].positions.push_back({-2,1}); polyominos[4][3].positions.push_back({0,0}); polyominos[4][3].positions.push_back({0,1}); polyominos[4][3].positions.push_back({0,2}); polyominos[4][3].positions.push_back({-1,1}); } bool isValidPos(Pos& pos) { return pos.row >= 0 && pos.row < N && pos.col >= 0 && pos.col < M; } void getMaxPolyominoPosition(Pos pos, Polyomino polyomino, int& max) { int sum = 0; for(int p=0; p<4; p++) { Pos laid_pos = {pos.row + polyomino.positions[p].row, pos.col + polyomino.positions[p].col}; if(isValidPos(laid_pos)) { sum += board[laid_pos.row][laid_pos.col]; } else return; } if(sum > max) { max = sum; } } void solution() { int ans = 0; for(int poly = 0; poly < 5; poly++) { for(int pc = 0; pc < poly_case[poly]; pc++) { Polyomino selected = polyominos[poly][pc]; for(int r=0; r<N; r++) { for(int c=0; c<M; c++) { getMaxPolyominoPosition(Pos{r,c}, selected, ans); } } } } printf("%d", ans); } int main() { getInput(); solution(); }
[ "pkalsh345@gmail.com" ]
pkalsh345@gmail.com
b2741133ae3787a06d53b0d2e01a2ff3decd158a
1c054180a367c817a9a136d9c650f302b8fd6c74
/skipListLab/source/myAllocator/myAllocator_origin.hpp
7b75f0b0788dcea7c8b64745a0b9c698240ff6c7
[]
no_license
wyd-1180301005/skipListLab
107a84e3cf2b90f1819618cca8da6b2ec8374025
2453a8cfc6af4482e43c019c462bc82a21cdbbfd
refs/heads/main
2023-05-30T14:27:48.282348
2021-06-09T13:40:16
2021-06-09T13:40:16
373,083,448
0
0
null
null
null
null
UTF-8
C++
false
false
4,057
hpp
# ifndef MYALLOCATOR_ORIGIN_HPP # define MYALLOCATOR_ORIGIN_HPP # include<vector> # include<list> // 判断一个类型是否是reference的方法: template<typename T> struct is_ref_tr{static const bool is_ref_v=false;}; template<typename T> struct is_ref_tr<T&>{static const bool is_ref_v=true;}; template <typename T> constexpr bool is_ref=is_ref_tr<T>::is_ref_v; // 判断一个类型是否是指针的方法: template<typename T> struct is_pointer_tr{static const bool is_pointer_v=false;}; template<typename T> struct is_pointer_tr<T*>{static const bool is_pointer_v=true;}; template <typename T> constexpr bool is_pointer=is_pointer_tr<T>::is_pointer_v; // 判断一个类型是否是BuiltInType的方法:(任何类型的指针/引用,都视为BuiltInType) template <typename T> constexpr bool is_builtin_type=is_pointer<T>||is_ref<T>||std::is_arithmetic_v<T>; // 给类类型添加reference的方法: template<typename T,bool isBuiltIn> struct ref_unless_builtin_tr {using type=T&;}; template<typename T> struct ref_unless_builtin_tr<T,true> {using type=T;}; template<typename T> using ref_unless_builtin=typename ref_unless_builtin_tr<T,is_builtin_type<T>>::type; // 给类类型添加指针的方法: template<typename T,bool isBuiltIn> struct pointer_unless_builtin_tr {using type=T*;}; template<typename T> struct pointer_unless_builtin_tr<T,true> {using type=T;}; template<typename T> using pointer_unless_builtin=typename pointer_unless_builtin_tr<T,is_builtin_type<T>>::type; /** * 一个简单的pair模板 * 存储内容: * case 1:如果模板参数是class struct,则存储引用 * case 2:如果模板参数是指针或者引用或者内置类型,则直接存储 */ template<typename T1,typename T2> struct pair { ref_unless_builtin<T1> t1; ref_unless_builtin<T2> t2; pair(ref_unless_builtin<T1> t1,ref_unless_builtin<T2> t2) { this->t1=t1; this->t2=t2; } pair(T1&& t1,T2&& t2) { this->t1=t1; this->t2=t2; } }; template<typename NodeType> class myAllocator { using memo=pair<NodeType*,int>; using memo_list=std::list<pair<NodeType*,int>>; int mem_pool_size; int mem_pool_inuse; int pos_using; std::vector<NodeType*> mem_pool; int criteria=10; int max_traverse; std::vector<memo_list> mem_memo; /** * 将一小块内存放置在mem_memo中 */ void add_memo(NodeType* st,const int size) noexcept; /** * 从mem_memo处申请一块内存 * 返回nullptr说明没有这样的空闲内存快 */ NodeType* recycle(const int size); /** * 从内存池中直接分配一小块内存,类型为NodeType* */ NodeType* alloc(const int size); public: /** * 构造函数,pool_size为每块内存池的大小 */ myAllocator(const int pool_size,const int criteria,const int max_tra); /** * 申请一小块内存 * 首先使用memo,其次再使用内存池 */ NodeType* apply_alloc(const int size); /** * 将一小块内存标记为可分配 */ inline void free_alloc(NodeType* st,const int size) noexcept; # ifndef DISABLE_DEBUG_INTERFACE // 用在debug中直接读取上一次分配出指针块大小 int last_size; // 用在debug中直接读取上一次分配的指针块的头部 NodeType* pt; // 用在debug中直接读取上一次free的指针块大小 int last_size_free; // 用在debug中直接读取上一次free的指针块的头部 NodeType* pt_free; /** * 获得memo中大小为blk_size的块的指针的方法 */ NodeType* debug_get_memo(const int blk_size); /** * 获得已经申请的内存池的个数的方法 */ int debug_count_pool(); /** * 获得当前mem_pool的指针的方法 */ NodeType* debug_get_current_pool(); /** * 获得当前正在分配的块的指针的方法 */ NodeType* debug_get_pos(); #endif ~myAllocator() noexcept; }; # endif
[ "fwz1661112233@outlook.com" ]
fwz1661112233@outlook.com
346e9d0d7d85a4d68fed6bf6d740649abc3e17f5
955ef01de0d355ddced3579f9d1b26419c494bd8
/AGT_TEMPLATE/engine/src/pch.h
5c7f874779a07c0ec1e5661d35eaca2f698716d4
[ "MIT" ]
permissive
Luke-Pixel/Advanced-Games-Technology-C---Project
fc76565c7ef9989364981dc8d82f7d85aee02927
17e210ab0e97c1a2359039c4dbf3a834c56c9598
refs/heads/master
2022-12-04T13:04:18.872399
2020-08-26T14:32:56
2020-08-26T14:32:56
290,520,511
0
0
null
null
null
null
UTF-8
C++
false
false
540
h
#pragma once #include <iostream> #include <memory> #include <utility> #include <algorithm> #include <functional> #include <string> #include <sstream> #include <array> #include <vector> #include <list> #include <stack> #include <map> #include <unordered_map> #include <unordered_set> #include "engine/core/logger.h" #ifdef ENGINE_PLATFORM_WIN #include <Windows.h> #endif #include "glm/glm.hpp" #include "glm/gtc/matrix_transform.hpp" #include "glm/gtc/type_ptr.hpp" #include "engine/utils/glm_extension.h"
[ "Luke1014@live.co.uk" ]
Luke1014@live.co.uk
10c6188983942d280ffea4e6741fd5b2b71988e1
cefd6c17774b5c94240d57adccef57d9bba4a2e9
/WebKit/Source/WebCore/platform/graphics/glx/GLContextGLX.h
edefc04c26556aa29bf66dc45b2440017848649c
[ "BSL-1.0", "BSD-2-Clause", "LGPL-2.0-only", "LGPL-2.1-only" ]
permissive
adzhou/oragle
9c054c25b24ff0a65cb9639bafd02aac2bcdce8b
5442d418b87d0da161429ffa5cb83777e9b38e4d
refs/heads/master
2022-11-01T05:04:59.368831
2014-03-12T15:50:08
2014-03-12T15:50:08
17,238,063
0
1
BSL-1.0
2022-10-18T04:23:53
2014-02-27T05:39:44
C++
UTF-8
C++
false
false
2,250
h
/* * Copyright (C) 2012 Igalia S.L. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA */ #ifndef GLContextGLX_h #define GLContextGLX_h #if USE(GLX) #include "GLContext.h" typedef struct __GLXcontextRec* GLXContext; typedef unsigned long GLXPbuffer; typedef unsigned long GLXPixmap; typedef unsigned char GLubyte; typedef unsigned long Pixmap; typedef unsigned long XID; typedef void* ContextKeyType; namespace WebCore { class GLContextGLX : public GLContext { WTF_MAKE_NONCOPYABLE(GLContextGLX); public: static PassOwnPtr<GLContextGLX> createContext(XID window, GLContext* sharingContext); static PassOwnPtr<GLContextGLX> createWindowContext(XID window, GLContext* sharingContext); virtual ~GLContextGLX(); virtual bool makeContextCurrent(); virtual void swapBuffers(); virtual void waitNative(); virtual bool canRenderToDefaultFramebuffer(); virtual IntSize defaultFrameBufferSize(); virtual cairo_device_t* cairoDevice(); #if USE(3D_GRAPHICS) virtual PlatformGraphicsContext3D platformContext(); #endif private: static PassOwnPtr<GLContextGLX> createPbufferContext(GLXContext sharingContext); static PassOwnPtr<GLContextGLX> createPixmapContext(GLXContext sharingContext); GLContextGLX(GLXContext); GLContextGLX(GLXContext, Pixmap, GLXPixmap); GLXContext m_context; XID m_window; GLXPbuffer m_pbuffer; Pixmap m_pixmap; GLXPixmap m_glxPixmap; cairo_device_t* m_cairoDevice; }; } // namespace WebCore #endif // USE(GLX) #endif // GLContextGLX_h
[ "adzhou@hp.com" ]
adzhou@hp.com
49b65172171a2ac99c7c09e3096697602cbb1b51
b2857a7190c6d2c69739863d0fbe3efacfe19b6b
/engine_project/src/applications/tangram.cpp
a0f2a925491afab3fffe8f61a3570489a0fcc0b1
[]
no_license
Zuchis/computer_graphics
22db0c993a0f35c91462ca4359b2ef2f21ed7f01
f113a84e35acbeae9bb7553c5fabb1f256fd5dbd
refs/heads/master
2023-07-21T23:40:53.856951
2023-07-05T15:35:02
2023-07-05T15:35:02
42,215,409
0
1
null
null
null
null
UTF-8
C++
false
false
9,440
cpp
#include "../shaderprogram.h" #define CAPTION "Badass Squirrel" int WinX = 640, WinY = 480; int WindowHandle = 0; unsigned int FrameCount = 0; GLuint VaoId[3], VboId[2]; GLuint squareVboId[2]; GLuint paralelVboId[2]; ShaderProgram program = ShaderProgram(); /////////////////////////////////////////////////////////////////////// ERRORS bool isOpenGLError() { bool isError = false; GLenum errCode; const GLubyte *errString; while ((errCode = glGetError()) != GL_NO_ERROR) { isError = true; errString = gluErrorString(errCode); std::cerr << "OpenGL ERROR [" << errString << "]." << std::endl; } return isError; } void checkOpenGLError(std::string error) { if(isOpenGLError()) { std::cerr << error << std::endl; exit(EXIT_FAILURE); } } /////////////////////////////////////////////////////////////////////// SHADERs void createShaderProgram() { program.compileShaderFromFile("shaders/vertexShader.vert",ShaderType::VERTEX); program.compileShaderFromFile("shaders/fragmentShader.frag",ShaderType::FRAGMENT); program.bindAttribLocation(VERTICES,"in_Position"); program.link(); checkOpenGLError("ERROR: Could not create shaders."); } void destroyShaderProgram() { glUseProgram(0); checkOpenGLError("ERROR: Could not destroy shaders."); } const GLfloat triangle[] = { 0.00f, 0.00f, 0.0f, 1.0f , 0.25f, 0.00f, 0.0f, 1.0f , 0.25f, 0.25f, 0.0f, 1.0f }; const GLuint triangleIndices[] = { 0,1,2 }; const GLfloat square[] = { 0.00f, 0.00f, 0.0f, 1.0f, 0.25f, 0.00f, 0.0f, 1.0f, 0.25f, 0.25f, 0.0f, 1.0f, 0.00f, 0.25f, 0.0f, 1.0f }; const GLuint squareIndices[] = { 0,1,2, 2,3,0, }; const GLfloat paralel[] = { 0.25f, 0.00f, 0.0f, 1.0f, 0.50f, 0.00f, 0.0f, 1.0f, 0.25f, 0.25f, 0.0f, 1.0f, 0.00f, 0.25f, 0.0f, 1.0f, -0.25f,0.25f, 0.0f, 1.0f, 0.00f, 0.00f, 0.0f, 1.0f, }; const GLuint paralelIndices[] = { 0,1,2, 2,3,0, 3,4,5, 5,0,3 }; //Object triangle = Object(0); //Object square = Object(1); void createBufferObjects() { glGenVertexArrays(3, VaoId); glBindVertexArray(VaoId[0]); { glGenBuffers(2, VboId); glBindBuffer(GL_ARRAY_BUFFER, VboId[0]); glBufferData(GL_ARRAY_BUFFER, sizeof(triangle), triangle, GL_STATIC_DRAW); glEnableVertexAttribArray(VERTICES); glVertexAttribPointer(VERTICES, 4, GL_FLOAT, GL_FALSE, 0, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, VboId[1]); glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(triangleIndices), triangleIndices, GL_STATIC_DRAW); } glBindVertexArray(VaoId[1]); { glGenBuffers(2, squareVboId); glBindBuffer(GL_ARRAY_BUFFER, squareVboId[0]); glBufferData(GL_ARRAY_BUFFER, sizeof(square), square, GL_STATIC_DRAW); glEnableVertexAttribArray(VERTICES); glVertexAttribPointer(VERTICES, 4, GL_FLOAT, GL_FALSE, 0, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, squareVboId[1]); glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(squareIndices), squareIndices, GL_STATIC_DRAW); } glBindVertexArray(VaoId[2]); { glGenBuffers(2, paralelVboId); glBindBuffer(GL_ARRAY_BUFFER, paralelVboId[0]); glBufferData(GL_ARRAY_BUFFER, sizeof(paralel), paralel, GL_STATIC_DRAW); glEnableVertexAttribArray(VERTICES); glVertexAttribPointer(VERTICES, 4, GL_FLOAT, GL_FALSE, 0, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, paralelVboId[1]); glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(paralelIndices), paralelIndices, GL_STATIC_DRAW); } glBindVertexArray(0); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); //triangle.sendDataToBuffers(); //square.sendDataToBuffers(); checkOpenGLError("ERROR: Could not create VAOs and VBOs."); } void destroyBufferObjects() { glBindVertexArray(VaoId[0]); glDisableVertexAttribArray(VERTICES); glDeleteBuffers(2, VboId); glDeleteVertexArrays(2, VaoId); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); glBindVertexArray(0); checkOpenGLError("ERROR: Could not destroy VAOs and VBOs."); } // big triangles Matrix4 _M0 = MatrixFactory::CreateTransformMatrix( -0.15f,-0.2f,0.0f,170.0f,2.0f); const float* M0 = _M0.getData(); Matrix4 _M3 = MatrixFactory::CreateTransformMatrix( 0.35f,-0.28f,0.0,125.0f,2.0f); const float* M3 = _M3.getData(); // medium triangle Matrix4 _M4 = MatrixFactory::CreateTransformMatrix( -0.13f,0.40f,0.0,78.0f,1.5f); const float* M4 = _M4.getData(); // small triangles Matrix4 _M5 = MatrixFactory::CreateTransformMatrix( 0.15f,-0.55f,0.0,80.0f,1.2f); const float* M5 = _M5.getData(); Matrix4 _M6 = MatrixFactory::CreateTransformMatrix( -0.97f,-0.2f,0.0f,-12.0f,1.2f); const float* M6 = _M6.getData(); // square Matrix4 _M1 = MatrixFactory::CreateTransformMatrix(-0.51f,0.41f,0.0f,33.0f,1.25f); const float* M1 = _M1.getData(); // pararelogram Matrix4 _M2 = MatrixFactory::CreateTransformMatrix(-0.12f,0.4f,0.0f,-56.0f,1.0f); const float* M2 = _M2.getData(); void drawScene() { //test.print(); program.use(); // triangles glBindVertexArray(VaoId[0]); // big triangles program.setUniform("Matrix",M0); program.setUniform("ex_Color",1,0,0,0); glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, (GLvoid*)0); program.setUniform("Matrix",M3); program.setUniform("ex_Color",1,1,1,0); glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, (GLvoid*)0); // medium triangle program.setUniform("Matrix",M4); program.setUniform("ex_Color",0.4,0,0.25,0); glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, (GLvoid*)0); //small triangles program.setUniform("Matrix",M5); program.setUniform("ex_Color",1,0.5,0,0); glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, (GLvoid*)0); program.setUniform("Matrix",M6); program.setUniform("ex_Color",0.7,0.7,0.7,0); glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, (GLvoid*)0); // square glBindVertexArray(VaoId[1]); program.setUniform("Matrix",M1); program.setUniform("ex_Color",0,0,1,0); glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, (GLvoid*)0); // pararelogram glBindVertexArray(VaoId[2]); program.setUniform("Matrix",M2); program.setUniform("ex_Color",0,1,0,0); glDrawElements(GL_TRIANGLES, 12, GL_UNSIGNED_INT, (GLvoid*)0); glUseProgram(0); glBindVertexArray(0); checkOpenGLError("ERROR: Could not draw scene."); } void cleanup() { destroyShaderProgram(); destroyBufferObjects(); } void display() { ++FrameCount; glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); drawScene(); glutSwapBuffers(); } void idle() { glutPostRedisplay(); } void reshape(int w, int h) { WinX = w; WinY = h; glViewport(0, 0, WinX, WinY); } void timer(int value) { std::ostringstream oss; oss << CAPTION << ": " << FrameCount << " FPS @ (" << WinX << "x" << WinY << ")"; std::string s = oss.str(); glutSetWindow(WindowHandle); glutSetWindowTitle(s.c_str()); FrameCount = 0; glutTimerFunc(1000, timer, 0); } /////////////////////////////////////////////////////////////////////// SETUP void setupCallbacks() { glutCloseFunc(cleanup); glutDisplayFunc(display); glutIdleFunc(idle); glutReshapeFunc(reshape); glutTimerFunc(0,timer,0); } void checkOpenGLInfo() { const GLubyte *renderer = glGetString(GL_RENDERER); const GLubyte *vendor = glGetString(GL_VENDOR); const GLubyte *version = glGetString(GL_VERSION); const GLubyte *glslVersion = glGetString(GL_SHADING_LANGUAGE_VERSION); std::cerr << "OpenGL Renderer: " << renderer << " (" << vendor << ")" << std::endl; std::cerr << "OpenGL version " << version << std::endl; std::cerr << "GLSL version " << glslVersion << std::endl; } void setupOpenGL() { checkOpenGLInfo(); glClearColor(0.1f, 0.1f, 0.1f, 1.0f); glEnable(GL_DEPTH_TEST); glDepthFunc(GL_LEQUAL); glDepthMask(GL_TRUE); glDepthRange(0.0, 1.0); glClearDepth(1.0); glEnable(GL_CULL_FACE); glCullFace(GL_BACK); glFrontFace(GL_CCW); } void setupGLEW() { glewExperimental = GL_TRUE; GLenum result = glewInit() ; if (result != GLEW_OK) { std::cerr << "ERROR glewInit: " << glewGetString(result) << std::endl; exit(EXIT_FAILURE); } GLenum err_code = glGetError(); } void setupGLUT(int argc, char* argv[]) { glutInit(&argc, argv); glutInitContextVersion(3, 3); glutInitContextFlags(GLUT_FORWARD_COMPATIBLE); glutInitContextProfile(GLUT_CORE_PROFILE); glutSetOption(GLUT_ACTION_ON_WINDOW_CLOSE,GLUT_ACTION_GLUTMAINLOOP_RETURNS); glutInitWindowSize(WinX, WinY); glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA); WindowHandle = glutCreateWindow(CAPTION); if(WindowHandle < 1) { std::cerr << "ERROR: Could not create a new rendering window." << std::endl; exit(EXIT_FAILURE); } } void init(int argc, char* argv[]) { setupGLUT(argc, argv); setupGLEW(); setupOpenGL(); createShaderProgram(); createBufferObjects(); setupCallbacks(); } int main(int argc, char* argv[]) { init(argc, argv); glutMainLoop(); exit(EXIT_SUCCESS); }
[ "liquimaster@gmail.com" ]
liquimaster@gmail.com
a984c3b4b7f78ad4a579a34cd972e5eca97c573f
9fac9857fb1a674f02df4dbaa97d4c05aec1d0d4
/src/FlatWorld/Engine/Core/Timer.cpp
0a2b936b16871f1d9c743b3b19ba88322f8ea7dd
[]
no_license
KiraIsL/Time-Travel-Platformer
e0b7dfedd7bb61503c83fcba9e4a987b27fd3548
b5b55b4b89f71efa170fdb56467bd0c199349252
refs/heads/master
2020-12-14T04:43:19.718960
2011-07-21T09:53:05
2011-07-21T09:53:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,264
cpp
#include "Timer.h" CTimer::CTimer(void) { Init(30.f); } CTimer::CTimer(float timeCount) { Init(timeCount); } void CTimer::Init(float timeCount) { //****************** INITIALISATIONS ************************** // Awesome accurate timings are available from the CPU if (QueryPerformanceFrequency((LARGE_INTEGER *) &perfFrequ)) { perfCount = true; this->timeCount = (DWORD)(perfFrequ / timeCount); QueryPerformanceCounter((LARGE_INTEGER *) &timeLast); timeScale = 1.0 / perfFrequ; } else // Can't be awesomely accurate :( { timeLast = timeGetTime();//Set the initial time timeScale = 0.001;//millisecond time scale this->timeCount = 33;//number of milliseconds between frames } timeNext = timeLast + this->timeCount;//set time update interval //************************************************************* } CTimer::~CTimer(void) { } void CTimer::Update() { timeLast = timeNow; if (perfCount) { QueryPerformanceCounter((LARGE_INTEGER *) &timeNow); } else { timeNow = timeGetTime(); } } bool CTimer::Ready() { Update(); if (timeNow > timeNext) { timeNext = timeNow + timeCount; //Reset the timer return true; } else { return false; } } float CTimer::DT() { return (float)((timeNow - timeLast) * timeScale); }
[ "tyranicmoron@gmail.com" ]
tyranicmoron@gmail.com
a5dcd107e4a24b02ebaa6a6c2e603eb7ad4c5353
7119554f4726c4c3cd46823ee695ae3e433eccc7
/test/unittest/unittest_nntrainer_internal.cpp
ba569f50094da3348a27c2e54fadab1175509f30
[ "Apache-2.0", "LicenseRef-scancode-free-unknown" ]
permissive
myungjoo/nntrainer
7fdc88cdec3e9bd12916b8892a137672bcbb0d39
4813b20d869b33d00a9e098d6955072858286533
refs/heads/master
2023-08-17T01:41:32.521247
2022-03-16T07:56:56
2022-03-20T03:32:51
249,907,471
0
0
Apache-2.0
2020-03-25T06:52:04
2020-03-25T06:52:03
null
UTF-8
C++
false
false
2,816
cpp
/** * Copyright (C) 2020 Samsung Electronics Co., Ltd. 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. */ /** * @file unittest_nntrainer_internal.cpp * @date 10 April 2020 * @brief Unit test utility. * @see https://github.com/nnstreamer/nntrainer * @author Jijoong Moon <jijoong.moon@samsung.com> * @bug No known bugs */ #include <gtest/gtest.h> #include <fstream> #include <neuralnet.h> #include <nntrainer_error.h> #include <optimizer.h> #include <util_func.h> #include <nntrainer_test_util.h> /** * @brief Optimizer create */ TEST(nntrainer_Optimizer, create_01_p) { std::unique_ptr<ml::train::Optimizer> op; auto &ac = nntrainer::AppContext::Global(); EXPECT_NO_THROW(op = ac.createObject<ml::train::Optimizer>("adam", {})); } /** * @brief Optimizer create */ TEST(nntrainer_Optimizer, setType_02_p) { std::unique_ptr<ml::train::Optimizer> op; auto &ac = nntrainer::AppContext::Global(); EXPECT_NO_THROW(op = ac.createObject<ml::train::Optimizer>("sgd", {})); } /** * @brief Optimizer create */ TEST(nntrainer_Optimizer, setType_03_n) { std::unique_ptr<ml::train::Optimizer> op; auto &ac = nntrainer::AppContext::Global(); EXPECT_ANY_THROW( op = ac.createObject<ml::train::Optimizer>("non-existing type", {})); } TEST(nntrainer_throw_if, throw_invalid_arg_p) { try { NNTR_THROW_IF(1 == 1, std::invalid_argument) << "error msg"; } catch (std::invalid_argument &e) { EXPECT_STREQ("error msg", e.what()); } try { NNTR_THROW_IF(true, std::invalid_argument) << "error msg"; } catch (std::invalid_argument &e) { EXPECT_STREQ("error msg", e.what()); } bool hit = false; auto cleanup = [&hit] { hit = true; }; try { NNTR_THROW_IF_CLEANUP(true, std::invalid_argument, cleanup) << "error msg"; } catch (std::invalid_argument &e) { EXPECT_STREQ("error msg", e.what()); EXPECT_TRUE(hit); } } /** * @brief Main gtest */ int main(int argc, char **argv) { int result = -1; try { testing::InitGoogleTest(&argc, argv); } catch (...) { std::cerr << "Error duing IniGoogleTest" << std::endl; return 0; } try { result = RUN_ALL_TESTS(); } catch (...) { std::cerr << "Error duing RUN_ALL_TSETS()" << std::endl; } return result; }
[ "jijoong.moon@samsung.com" ]
jijoong.moon@samsung.com
55b397d53241234607d2487d7a3df7751cd72264
c9cf0586ace11aa32fa67606d237a130a06364ee
/circular-cylinder-2-40/21.15/phi
5a28495e48cb2c9f9d8ec75d74a635775e13ded8
[]
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
195,265
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6.0 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "21.15"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 18940 ( 0.000523657 -0.472477 0.471953 0.00187646 -0.449925 0.448572 0.00364266 -0.434234 0.432468 0.00554886 -0.420483 0.418577 0.00744961 -0.407358 0.405457 0.00927334 -0.394188 0.392364 0.0109941 -0.380908 0.379187 0.0126127 -0.367716 0.366097 0.0141433 -0.354841 0.35331 0.015604 -0.342457 0.340996 0.017012 -0.330671 0.329263 0.0183818 -0.319533 0.318164 0.0197239 -0.30905 0.307708 0.0210458 -0.299202 0.29788 0.0223531 -0.289957 0.28865 0.0236503 -0.281279 0.279981 0.0249428 -0.273123 0.27183 0.0262369 -0.265433 0.264139 0.0275388 -0.258129 0.256827 -0.251091 0.249775 0.0288545 0.000564613 -0.473042 0.00191827 -0.451278 0.00366873 -0.435984 0.00555144 -0.422366 0.00742095 -0.409227 0.00920838 -0.395976 0.0108908 -0.38259 0.0124713 -0.369296 0.0139649 -0.356334 0.0153903 -0.343882 0.016765 -0.332046 0.0181032 -0.320872 0.0194152 -0.310362 0.020708 -0.300495 0.0219866 -0.291236 0.0232551 -0.282547 0.0245185 -0.274386 0.0257831 -0.266698 0.027056 -0.259402 -0.252379 0.0283444 0.000601264 -0.473643 0.00195361 -0.452631 0.00368428 -0.437715 0.00553872 -0.42422 0.00737355 -0.411062 0.00912188 -0.397724 0.0107634 -0.384232 0.012303 -0.370836 0.0137571 -0.357788 0.015145 -0.34527 0.0164843 -0.333385 0.0177889 -0.322176 0.019069 -0.311642 0.020331 -0.301757 0.0215793 -0.292484 0.0228176 -0.283785 0.0240504 -0.275619 0.025284 -0.267932 0.0265264 -0.260644 -0.253639 0.0277862 0.00061345 -0.474256 0.00196968 -0.453987 0.00368397 -0.439429 0.0055088 -0.426045 0.00730629 -0.41286 0.00901288 -0.39943 0.0106108 -0.38583 0.0121072 -0.372332 0.0135196 -0.359201 0.0148679 -0.346618 0.0161698 -0.334687 0.0174391 -0.323446 0.0186856 -0.312888 0.0199154 -0.302986 0.0211322 -0.293701 0.0223394 -0.284993 0.0235409 -0.27682 0.0247432 -0.269134 0.0259549 -0.261856 -0.254871 0.027187 0.00062469 -0.474881 0.00197751 -0.45534 0.00367156 -0.441123 0.00546359 -0.427837 0.00722055 -0.414617 0.00888247 -0.401092 0.0104343 -0.387381 0.0118849 -0.373783 0.0132533 -0.360569 0.0145598 -0.347925 0.0158223 -0.33595 0.0170545 -0.324678 0.0182659 -0.3141 0.0194621 -0.304183 0.0206466 -0.294886 0.021822 -0.286168 0.0229921 -0.27799 0.0241633 -0.270305 0.0253451 -0.263037 -0.256077 0.0265509 0.000628771 -0.47551 0.00197433 -0.456685 0.00364573 -0.442795 0.00540255 -0.429594 0.00711626 -0.41633 0.00873074 -0.402707 0.0102338 -0.388884 0.0116362 -0.375186 0.0129582 -0.361891 0.0142207 -0.349187 0.0154418 -0.337171 0.016635 -0.325871 0.0178097 -0.315274 0.0189711 -0.305344 0.0201223 -0.296037 0.0212655 -0.287311 0.0224042 -0.279129 0.0235447 -0.271446 0.0246978 -0.264191 -0.257258 0.0258791 0.000630966 -0.476141 0.00196453 -0.458019 0.00360903 -0.444439 0.00532718 -0.431312 0.00699454 -0.417998 0.00855865 -0.404271 0.0100101 -0.390336 0.0113618 -0.376537 0.0126348 -0.363164 0.0138509 -0.350403 0.0150283 -0.338348 0.0161805 -0.327023 0.0173165 -0.31641 0.0184417 -0.306469 0.0195585 -0.297154 0.020669 -0.288422 0.0217763 -0.280236 0.0228868 -0.272556 0.0240121 -0.265316 -0.258417 0.0251707 0.000629527 -0.47677 0.00194736 -0.459337 0.00356156 -0.446053 0.00523792 -0.432988 0.00685596 -0.419616 0.00836683 -0.405782 0.00976392 -0.391733 0.011062 -0.377835 0.0122834 -0.364386 0.0134505 -0.35157 0.0145815 -0.339479 0.0156901 -0.328132 0.0167853 -0.317506 0.0178722 -0.307556 0.0189533 -0.298235 0.0200301 -0.289499 0.0211057 -0.281312 0.0221864 -0.273637 0.0232849 -0.266414 -0.259554 0.0244221 0.000625849 -0.477396 0.00192446 -0.460635 0.00350482 -0.447634 0.00513611 -0.43462 0.00670176 -0.421182 0.00815642 -0.407237 0.00949623 -0.393073 0.0107378 -0.379077 0.0119047 -0.365552 0.0130196 -0.352685 0.0141012 -0.340561 0.0151631 -0.329194 0.0162145 -0.318557 0.0172604 -0.308602 0.0183033 -0.299278 0.0193448 -0.29054 0.0203875 -0.282355 0.021438 -0.274687 0.02251 -0.267486 -0.260671 0.0236269 0.00061965 -0.478016 0.00189602 -0.461912 0.0034395 -0.449177 0.00502277 -0.436203 0.00653312 -0.422692 0.00792867 -0.408632 0.00920822 -0.394352 0.0103902 -0.380259 0.0114992 -0.366661 0.0125585 -0.353745 0.013587 -0.341589 0.0145985 -0.330205 0.0156022 -0.319561 0.0166033 -0.309603 0.0176045 -0.300279 0.0186075 -0.291543 0.0196149 -0.283362 0.0206333 -0.275706 0.0216775 -0.268531 -0.261767 0.022774 0.000611596 -0.478627 0.00186314 -0.463163 0.00336701 -0.450681 0.00489951 -0.437735 0.00635178 -0.424144 0.00768534 -0.409966 0.00890157 -0.395569 0.0100207 -0.381378 0.0110682 -0.367709 0.0120679 -0.354744 0.013039 -0.34256 0.0139954 -0.331162 0.0149465 -0.320512 0.015898 -0.310555 0.0168527 -0.301234 0.0178124 -0.292503 0.01878 -0.284329 0.0197623 -0.276688 0.0207752 -0.269544 -0.262841 0.0218494 0.000602081 -0.47923 0.00182674 -0.464388 0.00328872 -0.452143 0.0047681 -0.439215 0.00615979 -0.425536 0.00742863 -0.411234 0.00857853 -0.396718 0.00963128 -0.382431 0.0106133 -0.368691 0.0115489 -0.35568 0.0124574 -0.343469 0.013353 -0.332058 0.0142455 -0.321404 0.0151409 -0.31145 0.0160427 -0.302136 0.0169531 -0.293413 0.0178749 -0.285251 0.0188155 -0.277629 0.019792 -0.27052 -0.263887 0.0208379 0.000591998 -0.479822 0.0017884 -0.465584 0.00320662 -0.453561 0.00463086 -0.440639 0.00595976 -0.426865 0.00716139 -0.412436 0.00824211 -0.397799 0.00922516 -0.383414 0.0101376 -0.369603 0.011004 -0.356546 0.0118438 -0.344309 0.0126714 -0.332885 0.013497 -0.32223 0.0143277 -0.312281 0.0151678 -0.302976 0.0160204 -0.294266 0.0168892 -0.28612 0.0177818 -0.278521 0.0187156 -0.271454 -0.264894 0.0197225 0.000582477 -0.480404 0.00174998 -0.466752 0.00312291 -0.454934 0.00449035 -0.442006 0.00575464 -0.428129 0.00688702 -0.413568 0.00789613 -0.398808 0.00880645 -0.384324 0.00964552 -0.370443 0.0104377 -0.357338 0.0112023 -0.345073 0.0119535 -0.333636 0.0127019 -0.322978 0.0134554 -0.313034 0.0142198 -0.30374 0.0150004 -0.295046 0.0158029 -0.286923 0.0166362 -0.279355 0.0175169 -0.272335 -0.265854 0.0184767 0.000575019 -0.480979 0.00171351 -0.46789 0.00303986 -0.456261 0.00434932 -0.443316 0.00554791 -0.429328 0.00660966 -0.41463 0.0075453 -0.399744 0.00838038 -0.385159 0.00914265 -0.371205 0.00985616 -0.358052 0.0105396 -0.345757 0.0112066 -0.334303 0.0118671 -0.323639 0.0125291 -0.313696 0.013199 -0.30441 0.0138842 -0.295731 0.0145934 -0.287632 0.0153388 -0.2801 0.0161428 -0.273139 -0.266772 0.0170614 0.000571053 -0.48155 0.00168057 -0.469 0.00295974 -0.45754 0.00421108 -0.444567 0.00534383 -0.43046 0.00633444 -0.415621 0.00719551 -0.400605 0.00795345 -0.385917 0.00863599 -0.371887 0.00926657 -0.358683 0.00986314 -0.346353 0.0104387 -0.334879 0.0110025 -0.324203 0.0115614 -0.314255 0.0121208 -0.304969 0.0126862 -0.296297 0.0132663 -0.288212 0.0138786 -0.280712 0.0145641 -0.273824 -0.267634 0.0154259 0.00057169 -0.482122 0.00165334 -0.470081 0.00288649 -0.458773 0.0040805 -0.445761 0.00514781 -0.431528 0.00606747 -0.41654 0.0068539 -0.401391 0.00753408 -0.386597 0.00813506 -0.372488 0.00867897 -0.359226 0.00918229 -0.346856 0.00965699 -0.335354 0.0101121 -0.324658 0.010555 -0.314698 0.0109912 -0.305406 0.0114247 -0.29673 0.0118598 -0.288647 0.0123109 -0.281163 0.0128247 -0.274338 -0.268271 0.0134621 0.000579966 -0.482702 0.00163906 -0.47114 0.00282799 -0.459962 0.00396398 -0.446897 0.0049654 -0.432529 0.00581485 -0.41739 0.00652833 -0.402105 0.00713278 -0.387202 0.00765375 -0.373009 0.00811074 -0.359683 0.00851676 -0.347263 0.00888008 -0.335717 0.00920674 -0.324985 0.0095034 -0.314994 0.0097797 -0.305682 0.0100487 -0.296999 0.0103232 -0.288922 0.0106068 -0.281447 0.0108865 -0.274618 -0.268376 0.0109907 0.000610593 -0.483312 0.00165347 -0.472183 0.00279281 -0.461101 0.00386572 -0.44797 0.0048 -0.433463 0.00558127 -0.418171 0.0062261 -0.40275 0.00676073 -0.387736 0.00720891 -0.373457 0.00758696 -0.360061 0.00790298 -0.347579 0.00815797 -0.335972 0.00834794 -0.325174 0.00846739 -0.315114 0.00851488 -0.305729 0.00849971 -0.296984 0.00844572 -0.288868 0.00838669 -0.281388 0.00834623 -0.274577 -0.268288 0.00825857 0.000703776 -0.484016 0.00170254 -0.473182 0.00277609 -0.462175 0.00378281 -0.448977 0.00465205 -0.434333 0.00536997 -0.418889 0.00595312 -0.403333 0.00642724 -0.38821 0.00681493 -0.373845 0.00713058 -0.360377 0.00737914 -0.347827 0.00755624 -0.336149 0.00764813 -0.325266 0.00763057 -0.315096 0.00746587 -0.305565 0.00709798 -0.296616 0.00645686 -0.288226 0.00552865 -0.28046 0.00463345 -0.273682 -0.269319 0.00566391 0.492245 0.000549739 -0.492795 0.491751 0.000494527 0.491277 0.000473799 0.490813 0.000464341 0.490354 0.00045806 0.489901 0.000453224 0.489452 0.00044959 0.489005 0.000446746 0.488561 0.000444187 0.488119 0.000441663 0.48768 0.000438892 0.487244 0.000436106 0.486811 0.000432835 0.486381 0.000430137 0.485955 0.000425979 0.485531 0.000423744 0.485117 0.000414589 0.484707 0.00040925 0.48434 0.000367916 0.000323495 0.488087 0.00114659 -0.488684 0.487444 0.00113682 0.486778 0.00114022 0.486088 0.00115445 0.485375 0.00117144 0.48464 0.00118729 0.483888 0.00120163 0.483121 0.00121453 0.482339 0.00122574 0.481546 0.00123513 0.480742 0.00124253 0.47993 0.00124841 0.47911 0.00125259 0.478284 0.00125638 0.477451 0.00125822 0.476615 0.00126041 0.475773 0.0012565 0.47493 0.00125223 0.474068 0.00122962 0.0012096 0.477274 0.00155613 -0.477683 0.476795 0.00161548 0.476262 0.00167358 0.475681 0.00173462 0.475058 0.00179532 0.474393 0.00185199 0.473691 0.00190366 0.472955 0.00195046 0.472188 0.00199249 0.471393 0.0020299 0.470573 0.00206283 0.46973 0.00209197 0.468864 0.00211766 0.467979 0.00214155 0.467075 0.00216298 0.466151 0.00218357 0.465206 0.00220215 0.464236 0.0022222 0.463227 0.0022389 0.00226142 0.461455 0.00174076 -0.46164 0.4612 0.00187098 0.460879 0.00199367 0.460502 0.00211184 0.460072 0.00222518 0.459593 0.00233153 0.459067 0.00242987 0.458497 0.00252017 0.457887 0.00260262 0.457239 0.00267759 0.456556 0.00274548 0.455841 0.00280724 0.455095 0.00286389 0.45432 0.00291676 0.453516 0.00296712 0.452681 0.00301776 0.451814 0.00306902 0.450912 0.00312449 0.449967 0.00318416 0.00325145 0.443677 0.00174446 -0.443681 0.443607 0.00194173 0.443472 0.00212822 0.443279 0.00230515 0.443031 0.0024731 0.442731 0.00263115 0.442382 0.00277853 0.441988 0.00291507 0.441549 0.00304089 0.44107 0.00315644 0.440554 0.00326232 0.440001 0.00335972 0.439415 0.00345028 0.438796 0.00353567 0.438145 0.00361816 0.437461 0.00370177 0.436741 0.00378869 0.435983 0.00388235 0.435182 0.00398543 0.00410074 0.425625 0.00163338 -0.425514 0.425675 0.0018923 0.425665 0.00213833 0.425598 0.00237155 0.425479 0.00259246 0.425309 0.00280068 0.425092 0.00299569 0.42483 0.00317717 0.424526 0.00334517 0.424182 0.00350008 0.423802 0.00364269 0.423387 0.00377448 0.42294 0.00389694 0.422463 0.00401297 0.421955 0.00412631 0.421416 0.00424068 0.420844 0.00436035 0.420236 0.00449033 0.419587 0.00463504 0.00479846 0.408274 0.00146666 -0.408107 0.408384 0.00178218 0.408439 0.00208309 0.408442 0.00236885 0.408395 0.00263959 0.4083 0.00289499 0.408161 0.0031346 0.407981 0.003358 0.407761 0.00356509 0.407505 0.00375613 0.407215 0.00393198 0.406896 0.00409427 0.406548 0.00424471 0.406174 0.00438674 0.405775 0.00452523 0.405351 0.00466504 0.404899 0.0048119 0.404417 0.00497291 0.403897 0.00515462 0.00536257 0.392095 0.00128643 -0.391914 0.392222 0.00165445 0.392299 0.00200629 0.392327 0.00234099 0.392308 0.00265828 0.392246 0.0029577 0.392142 0.00323872 0.391999 0.00350074 0.39182 0.00374347 0.39161 0.00396697 0.391369 0.0041721 0.391104 0.00435988 0.390816 0.00453292 0.390507 0.00469539 0.39018 0.00485207 0.389836 0.00500951 0.389472 0.00517585 0.389084 0.00536026 0.388667 0.00557204 0.00581905 0.377214 0.00111793 -0.377046 0.377333 0.00153541 0.377404 0.00193516 0.377429 0.0023159 0.377411 0.00267703 0.377351 0.00301785 0.377252 0.00333763 0.377117 0.00363549 0.376949 0.00391088 0.376753 0.00416345 0.376531 0.00439396 0.376288 0.00460295 0.376028 0.0047932 0.375754 0.00496912 0.37547 0.0051365 0.375176 0.00530294 0.374873 0.00547929 0.374555 0.00567762 0.374217 0.00591084 0.00619045 0.363572 0.000973587 -0.363428 0.363669 0.0014384 0.36372 0.00188394 0.363727 0.00230866 0.363693 0.00271171 0.363618 0.00309204 0.363507 0.00344872 0.363362 0.00378041 0.363187 0.00408633 0.362985 0.00436544 0.362761 0.00461801 0.36252 0.00484416 0.362266 0.00504708 0.362005 0.00522978 0.361742 0.00539974 0.361479 0.00556554 0.361218 0.00574112 0.360953 0.00594202 0.360678 0.00618629 0.00649105 0.351032 0.000857599 -0.350916 0.351102 0.00136834 0.351128 0.00185828 0.351111 0.00232566 0.351053 0.00276941 0.350957 0.0031881 0.350825 0.0035806 0.35066 0.00394492 0.350467 0.00428009 0.350248 0.004584 0.350009 0.00485665 0.349757 0.00509675 0.349496 0.00530805 0.349234 0.00549121 0.348978 0.00565607 0.348733 0.00581031 0.348501 0.00597297 0.348281 0.00616258 0.348062 0.00640514 0.00672605 0.339443 0.000769574 -0.339355 0.339486 0.00132534 0.339485 0.00185885 0.339443 0.00236812 0.33936 0.00285193 0.33924 0.00330843 0.339084 0.00373634 0.338896 0.00413283 0.338679 0.00449683 0.338439 0.00482466 0.338179 0.0051166 0.337907 0.00536813 0.337631 0.00558483 0.337359 0.0057625 0.3371 0.00591512 0.336865 0.00604529 0.336656 0.00618167 0.336477 0.00634206 0.336315 0.00656702 0.00689218 0.328666 0.000707022 -0.328603 0.328684 0.0013073 0.328659 0.0018839 0.328592 0.00243466 0.328486 0.0029583 0.328342 0.00345252 0.328162 0.00391598 0.32795 0.00434479 0.327709 0.00473813 0.327444 0.00508965 0.327159 0.00540104 0.326864 0.0056629 0.326566 0.00588369 0.326278 0.00604984 0.326009 0.00618472 0.325778 0.00627596 0.325587 0.00637219 0.325451 0.00647827 0.325352 0.00666626 0.00697784 0.318585 0.00066691 -0.318545 0.318581 0.00131142 0.318534 0.00193086 0.318445 0.00252296 0.318317 0.00308646 0.318151 0.00361866 0.317949 0.00411822 0.317714 0.00458001 0.317448 0.00500376 0.317158 0.00537976 0.316847 0.00571213 0.316526 0.00598368 0.3162 0.00620946 0.315892 0.00635863 0.315603 0.00647303 0.315372 0.0065071 0.315193 0.00655115 0.315106 0.00656505 0.315079 0.00669384 0.00696039 0.309107 0.000646563 -0.309087 0.309083 0.00133518 0.309017 0.00199731 0.308909 0.00263072 0.308761 0.00323426 0.308575 0.0038049 0.308352 0.00434139 0.308095 0.00483718 0.307806 0.00529297 0.30749 0.00569499 0.307152 0.00605091 0.306803 0.00633265 0.306445 0.00656697 0.306109 0.0066942 0.305793 0.00678985 0.305556 0.00674381 0.305377 0.00673008 0.305349 0.00659328 0.305401 0.00664202 0.00679631 0.300158 0.000644183 -0.300155 0.300116 0.00137685 0.300032 0.00208153 0.299906 0.00275619 0.299741 0.00340001 0.299536 0.00400962 0.299293 0.00458399 0.299015 0.00511509 0.298704 0.00560472 0.298364 0.00603468 0.297997 0.00641795 0.297618 0.00671168 0.297224 0.00696044 0.296856 0.00706245 0.296499 0.00714713 0.29625 0.0069925 0.296054 0.00692637 0.296097 0.00654979 0.296222 0.00651772 0.00640164 0.291675 0.000659032 -0.29169 0.291616 0.00143567 0.291515 0.0021826 0.291373 0.00289829 0.291191 0.00358248 0.290969 0.00423147 0.290708 0.00484456 0.290411 0.00541216 0.290078 0.00593754 0.289715 0.00639775 0.289321 0.0068121 0.288912 0.0071209 0.28848 0.00739231 0.288073 0.00746907 0.287662 0.00755817 0.28739 0.00726426 0.287154 0.00716294 0.287297 0.00640624 0.287458 0.00635718 0.0056332 0.283605 0.000691098 -0.283637 0.283529 0.00151132 0.283412 0.00229975 0.283254 0.00305581 0.283057 0.00377999 0.28282 0.00446827 0.282544 0.00512034 0.282231 0.00572513 0.281881 0.00628756 0.281499 0.00677978 0.281083 0.00722856 0.280647 0.00755627 0.280181 0.00785896 0.279735 0.00791528 0.279261 0.00803195 0.278945 0.00757962 0.278631 0.00747786 0.278921 0.00611596 0.279102 0.0061756 0.00427574 0.275891 0.000740596 -0.275941 0.2758 0.00160295 0.275669 0.00243092 0.275499 0.00322544 0.275291 0.00398798 0.275045 0.00471412 0.274761 0.00540403 0.274442 0.00604505 0.274085 0.00664437 0.273696 0.00716881 0.273271 0.00765355 0.272824 0.00800321 0.272339 0.00834397 0.271865 0.00838871 0.271339 0.00855845 0.270958 0.00796021 0.270503 0.00793331 0.270886 0.00573286 0.271236 0.00582529 0.00182999 0.268475 -0.268544 0.000809672 0.268368 0.00171031 0.268225 0.00257346 0.268048 0.003402 0.267838 0.00419863 0.267593 0.00495847 0.267315 0.0056823 0.267005 0.00635555 0.266661 0.00698821 0.266287 0.00754235 0.26588 0.00806101 0.26545 0.00843323 0.26498 0.00881374 0.26451 0.00885868 0.263972 0.00909624 0.263526 0.00840632 0.262905 0.00855471 0.262978 0.00565924 0.26334 0.00546374 -0.00414857 0.496671 0.000117478 -0.496788 0.496626 4.44885e-05 0.496593 3.36721e-05 0.496548 4.46495e-05 0.496485 6.28982e-05 0.4964 8.52647e-05 0.496289 0.000110864 0.49615 0.000138493 0.495984 0.000166817 0.495789 0.000194846 0.495567 0.000221767 0.49532 0.00024726 0.495049 0.000270637 0.494757 0.000292234 0.494446 0.000310525 0.494119 0.00032737 0.493782 0.000337196 0.493435 0.000346329 0.493105 0.000330843 0.000309606 0.489582 -0.000424332 -0.48904 0.490045 -0.000418488 0.490458 -0.000379441 0.490816 -0.000312749 0.491112 -0.000233703 0.491347 -0.000149609 0.49152 -6.22996e-05 0.491632 2.71071e-05 0.491681 0.000116978 0.491671 0.000205751 0.4916 0.000292065 0.491472 0.000375192 0.491289 0.000454099 0.491052 0.000528731 0.490766 0.000597342 0.490432 0.000660709 0.490055 0.000714226 0.489641 0.000760401 0.489184 0.000788305 0.000809657 0.47282 -0.00143945 -0.471805 0.473739 -0.00133791 0.47458 -0.00121969 0.475347 -0.00107961 0.476038 -0.000925381 0.476653 -0.000764542 0.477191 -0.00060053 0.477654 -0.000435011 0.47804 -0.00026968 0.478352 -0.000106238 0.478591 5.3692e-05 0.478757 0.000209047 0.478852 0.000358619 0.478879 0.000501892 0.478839 0.000637352 0.478735 0.000764871 0.478567 0.000881837 0.478338 0.000989205 0.478043 0.00108381 0.00116938 0.451861 -0.00272665 -0.450574 0.453064 -0.00254046 0.454185 -0.00234036 0.455229 -0.00212353 0.456196 -0.00189317 0.457087 -0.00165487 0.457899 -0.00141269 0.458633 -0.00116909 0.459289 -0.000926099 0.459869 -0.000685582 0.460372 -0.000449308 0.460799 -0.000218606 0.461153 5.22355e-06 0.461433 0.00022139 0.461642 0.000428643 0.46178 0.000626502 0.461849 0.00081357 0.461848 0.000989935 0.461777 0.00115447 0.00130695 0.430777 -0.00414438 -0.429359 0.432121 -0.00388445 0.433389 -0.00360853 0.434583 -0.00331722 0.435703 -0.00301281 0.436747 -0.00269959 0.437716 -0.0023817 0.43861 -0.00206234 0.439428 -0.00174402 0.440171 -0.00142881 0.44084 -0.00111861 0.441436 -0.000814873 0.44196 -0.000518897 0.442413 -0.000231592 0.442796 4.60078e-05 0.443109 0.000313285 0.443354 0.000569332 0.44353 0.00081367 0.443639 0.00104577 0.00126451 0.411106 -0.00560355 -0.409647 0.412499 -0.00527734 0.413822 -0.00493119 0.415073 -0.00456818 0.416252 -0.00419152 0.417358 -0.00380551 0.41839 -0.00341456 0.419351 -0.0030224 0.420239 -0.00263198 0.421055 -0.00224565 0.421802 -0.00186532 0.42248 -0.00149248 0.423089 -0.00112835 0.423631 -0.000773829 0.424107 -0.00042978 0.424517 -9.68584e-05 0.424862 0.000224227 0.425143 0.000532815 0.42536 0.000828637 0.00111057 0.393334 -0.00705511 -0.391882 0.394723 -0.00666654 0.396045 -0.00625297 0.397296 -0.00581957 0.398476 -0.00537134 0.399584 -0.00491356 0.400621 -0.00445121 0.401587 -0.00398849 0.402483 -0.00352871 0.403312 -0.0030744 0.404074 -0.00262747 0.404771 -0.00218932 0.405404 -0.001761 0.405973 -0.00134331 0.406481 -0.000936963 0.406926 -0.000542538 0.407311 -0.000160618 0.407636 0.000208141 0.407901 0.000563529 0.000904434 0.377446 -0.00847744 -0.376023 0.378807 -0.00802769 0.380101 -0.00754688 0.381324 -0.00704247 0.382474 -0.00652192 0.383553 -0.00599211 0.38456 -0.00545885 0.385499 -0.00492675 0.386369 -0.00439941 0.387174 -0.00387947 0.387916 -0.00336871 0.388595 -0.00286833 0.389213 -0.00237915 0.389771 -0.00190175 0.390271 -0.00143664 0.390713 -0.000984289 0.391097 -0.000545141 0.391425 -0.000119834 0.391697 0.000291394 0.000687383 0.363207 -0.00986585 -0.361819 0.364533 -0.00935405 0.36579 -0.00880387 0.366974 -0.00822585 0.368083 -0.00763074 0.369118 -0.00702749 0.370082 -0.00642274 0.370977 -0.00582153 0.371805 -0.00522768 0.372569 -0.00464376 0.373272 -0.00407131 0.373915 -0.00351116 0.374499 -0.00296378 0.375027 -0.00242945 0.375499 -0.00190841 0.375915 -0.00140097 0.376278 -0.000907453 0.376586 -0.000428479 0.376842 3.56598e-05 0.000483738 0.350331 -0.0112249 -0.348972 0.351626 -0.0106484 0.352846 -0.0100244 0.353989 -0.00936815 0.355053 -0.00869492 0.356041 -0.00801584 0.356957 -0.00733828 0.357803 -0.00666766 0.358583 -0.00600792 0.359301 -0.00536135 0.359958 -0.00472899 0.360558 -0.00411115 0.361102 -0.00350781 0.361592 -0.00291885 0.362028 -0.00234418 0.36241 -0.00178389 0.362741 -0.00123822 0.36302 -0.000707736 0.363249 -0.000192838 0.000305184 0.338562 -0.0125637 -0.337223 0.339831 -0.0119179 0.34102 -0.0112128 0.342123 -0.0104716 0.343144 -0.00971566 0.344086 -0.0089577 0.344953 -0.00820554 0.34575 -0.00746502 0.346482 -0.00673999 0.347153 -0.0060321 0.347766 -0.00534159 0.348323 -0.00466806 0.348826 -0.00401086 0.349276 -0.00336933 0.349675 -0.00274298 0.350023 -0.0021317 0.35032 -0.00153559 0.350568 -0.000955225 0.350766 -0.000391101 0.000155376 0.327693 -0.0138937 -0.326363 0.328946 -0.013171 0.330107 -0.0123739 0.331175 -0.0115393 0.332154 -0.0106952 0.333051 -0.00985481 0.333872 -0.00902608 0.334622 -0.00821536 0.335308 -0.00742597 0.335934 -0.00665837 0.336505 -0.00591172 0.337021 -0.00518466 0.337486 -0.00447575 0.3379 -0.00378365 0.338265 -0.00310746 0.33858 -0.00244678 0.338846 -0.00180164 0.339063 -0.00117263 0.339233 -0.000560373 3.35482e-05 0.317569 -0.015228 -0.316235 0.318815 -0.0144167 0.319953 -0.0135117 0.320987 -0.0125734 0.321927 -0.0116354 0.322781 -0.0107085 0.323556 -0.00980135 0.324262 -0.00892071 0.324904 -0.00806849 0.325489 -0.00724331 0.32602 -0.00644292 0.3265 -0.00566482 0.326931 -0.00490652 0.327313 -0.00416593 0.327648 -0.00344165 0.327934 -0.00273305 0.328172 -0.00204007 0.328363 -0.00136336 0.328506 -0.000703749 -6.30397e-05 0.30808 -0.0165817 -0.306726 0.309325 -0.0156621 0.310442 -0.0146282 0.311444 -0.0135755 0.312346 -0.0125372 0.313157 -0.0115193 0.313887 -0.0105323 0.31455 -0.00958287 0.315151 -0.00867007 0.315698 -0.00778999 0.316194 -0.00693879 0.316641 -0.00611252 0.317042 -0.00530739 0.317397 -0.00452045 0.317705 -0.00374983 0.317967 -0.00299467 0.318181 -0.00225487 0.318349 -0.00153118 0.31847 -0.000824719 -0.000137601 0.299149 -0.0179749 -0.297756 0.300397 -0.0169103 0.301492 -0.0157231 0.302463 -0.014547 0.303326 -0.0134002 0.304093 -0.0122859 0.304779 -0.0112188 0.3054 -0.010203 0.305962 -0.00923256 0.306473 -0.00830088 0.306937 -0.00740239 0.307355 -0.00653122 0.30773 -0.00568203 0.30806 -0.00485097 0.308346 -0.00403575 0.308587 -0.0032353 0.308782 -0.00244953 0.30893 -0.00167938 0.309031 -0.000926349 -0.000192951 0.290734 -0.0194428 -0.289266 0.29198 -0.0181565 0.293049 -0.0167923 0.293991 -0.0154886 0.294812 -0.0142214 0.29553 -0.0130043 0.296171 -0.0118594 0.296749 -0.0107811 0.297273 -0.00975652 0.297749 -0.00877731 0.298183 -0.00783581 0.298575 -0.00692349 0.298926 -0.00603323 0.299236 -0.00516039 0.299502 -0.0043023 0.299725 -0.00345774 0.299902 -0.0026267 0.300033 -0.0018104 0.300117 -0.00101081 -0.000231025 0.282807 -0.0210516 -0.281199 0.284045 -0.0193936 0.28508 -0.0178283 0.285991 -0.0163988 0.286762 -0.014993 0.287425 -0.013667 0.288015 -0.0124498 0.288549 -0.0113148 0.289033 -0.0102409 0.289476 -0.0092195 0.28988 -0.00824021 0.290248 -0.00729105 0.290577 -0.006363 0.290868 -0.00545079 0.291117 -0.00455152 0.291323 -0.0036639 0.291484 -0.00278807 0.2916 -0.00192565 0.291668 -0.00107924 -0.000252673 0.275325 -0.0228655 -0.273511 0.276568 -0.020636 0.277563 -0.0188238 0.278426 -0.0172618 0.279135 -0.0157019 0.279734 -0.0142659 0.280268 -0.0129838 0.280753 -0.0117997 0.281196 -0.010684 0.281604 -0.00962759 0.28198 -0.00861664 0.282325 -0.00763536 0.282635 -0.00667299 0.282908 -0.00572382 0.283141 -0.0047849 0.283332 -0.003855 0.283479 -0.00293457 0.283579 -0.00202575 0.283632 -0.0011319 -0.000257915 0.268236 -0.0246401 -0.266461 0.26953 -0.0219303 0.270503 -0.0197963 0.271256 -0.0180149 0.271875 -0.016321 0.27241 -0.0148011 0.272884 -0.013458 0.273315 -0.0122305 0.273715 -0.011084 0.27409 -0.0100021 0.274439 -0.00896596 0.274761 -0.00795705 0.275051 -0.00696364 0.275307 -0.00597973 0.275525 -0.00500245 0.275701 -0.00403087 0.275832 -0.00306588 0.275916 -0.00211025 0.275953 -0.00116823 -0.000246107 0.261413 -0.261605 -0.0244483 0.262766 -0.023284 0.263993 -0.0210235 0.264482 -0.0185032 0.264933 -0.0167725 0.265429 -0.0152964 0.265855 -0.013885 0.266225 -0.0126 0.266576 -0.0114354 0.266916 -0.0103418 0.267236 -0.00928609 0.267531 -0.00825231 0.267798 -0.0072303 0.268032 -0.00621356 0.268229 -0.00519904 0.268384 -0.0041864 0.268495 -0.00317724 0.26856 -0.00217495 0.268576 -0.00118449 -0.000213697 0.0275985 0.235125 -0.233949 -0.0287753 0.0263872 0.241982 -0.240771 0.0251438 0.249074 -0.247831 0.0238685 0.256444 -0.255169 0.0225616 0.264141 -0.262834 0.0212238 0.272214 -0.270876 0.0198548 0.28071 -0.279341 0.018452 0.289681 -0.288278 0.017011 0.29919 -0.297749 0.0155247 0.309325 -0.307839 0.0139843 0.320215 -0.318675 0.0123798 0.332059 -0.330455 0.010701 0.34515 -0.343471 0.00894113 0.359897 -0.358137 0.00710337 0.376816 -0.374979 0.00521398 0.396451 -0.394562 0.00334443 0.419177 -0.417307 0.00164597 0.444626 -0.442927 0.000396665 0.46993 -0.468681 0.489792 -0.489395 0.027602 0.236304 -0.0287807 0.0263899 0.243194 0.0251462 0.250318 0.0238702 0.25772 0.0225618 0.265449 0.0212215 0.273554 0.0198489 0.282082 0.0184418 0.291088 0.0169956 0.300637 0.0155039 0.310817 0.0139581 0.321761 0.0123484 0.333669 0.0106653 0.346833 0.00890304 0.361659 0.00706669 0.378653 0.00518539 0.398333 0.00333428 0.421028 0.00166699 0.446293 0.000446951 0.47115 0.490239 0.0275732 0.237484 -0.0287534 0.026361 0.244407 0.0251181 0.251561 0.0238428 0.258995 0.0225347 0.266758 0.0211938 0.274895 0.0198196 0.283456 0.0184101 0.292498 0.0169608 0.302086 0.0154656 0.312312 0.0139162 0.32331 0.0123033 0.335282 0.0106178 0.348519 0.0088551 0.363422 0.00702174 0.380486 0.00514926 0.400205 0.00331457 0.422863 0.00166829 0.447939 0.000460213 0.472358 0.490699 0.0275105 0.238664 -0.0286902 0.0263003 0.245617 0.0250601 0.252801 0.0237875 0.260268 0.0224815 0.268064 0.0211419 0.276234 0.0197681 0.28483 0.018358 0.293908 0.0169075 0.303536 0.0154106 0.313809 0.0138595 0.324862 0.012245 0.336896 0.0105588 0.350205 0.00879702 0.365184 0.0069674 0.382316 0.00510299 0.40207 0.00328185 0.424684 0.00165315 0.449568 0.000460422 0.473551 0.491159 0.0274129 0.23984 -0.0285891 0.0262075 0.246822 0.0249725 0.254036 0.0237049 0.261536 0.022403 0.269366 0.0210666 0.277571 0.019695 0.286202 0.0182861 0.295317 0.0168361 0.304986 0.0153392 0.315306 0.0137878 0.326413 0.0121734 0.338511 0.0104879 0.35189 0.00872826 0.366944 0.00690323 0.384141 0.00504721 0.403926 0.00323979 0.426491 0.0016302 0.451178 0.000456063 0.474725 0.491615 0.0272834 0.24101 -0.0284536 0.0260853 0.24802 0.0248578 0.255264 0.023597 0.262796 0.0223011 0.270661 0.0209696 0.278902 0.0196016 0.28757 0.0181954 0.296723 0.0167473 0.306434 0.0152518 0.316801 0.0137015 0.327963 0.0120884 0.340124 0.0104051 0.353573 0.00864888 0.3687 0.00682983 0.38596 0.00498368 0.405772 0.00319157 0.428283 0.00160275 0.452767 0.00044859 0.475879 0.492064 0.027124 0.242172 -0.0282858 0.0259354 0.249209 0.0247174 0.256482 0.0234654 0.264048 0.022177 0.27195 0.0208518 0.280228 0.0194889 0.288933 0.0180867 0.298125 0.0166417 0.307879 0.0151487 0.318294 0.0136009 0.329511 0.0119904 0.341734 0.0103104 0.355253 0.00855923 0.370451 0.00674779 0.387771 0.00491328 0.407606 0.00313812 0.430058 0.00157119 0.454333 0.000438222 0.477012 0.492502 0.0269437 0.243324 -0.0280959 0.0257654 0.250387 0.0245578 0.257689 0.0233153 0.265291 0.0220351 0.27323 0.0207167 0.281546 0.0193594 0.29029 0.0179616 0.299523 0.0165204 0.309321 0.0150308 0.319784 0.0134863 0.331056 0.0118795 0.343341 0.0102043 0.356929 0.00845951 0.372196 0.00665731 0.389573 0.00483613 0.409427 0.00307946 0.431815 0.0015356 0.455877 0.000425402 0.478122 0.492928 0.026741 0.244466 -0.0278824 0.0255747 0.251553 0.0243787 0.258885 0.0231466 0.266523 0.0218755 0.274501 0.0205646 0.282857 0.0192134 0.291641 0.0178207 0.300916 0.0163838 0.310758 0.0148983 0.321269 0.013358 0.332596 0.011756 0.344943 0.0100867 0.358598 0.00834975 0.373933 0.0065584 0.391365 0.00475226 0.411234 0.00301571 0.433552 0.00149643 0.457397 0.000410734 0.479208 0.493338 0.0265373 0.245597 -0.027669 0.0253809 0.25271 0.0241945 0.260072 0.0229708 0.267747 0.0217066 0.275765 0.0204013 0.284162 0.0190548 0.292988 0.0176662 0.302304 0.0162332 0.312191 0.0147517 0.322751 0.013216 0.334132 0.0116197 0.346539 0.00995741 0.36026 0.00822978 0.37566 0.00645092 0.393144 0.00466162 0.413023 0.00294704 0.435266 0.00145406 0.45889 0.000394582 0.480267 0.493733 0.0263153 0.246718 -0.027436 0.0251704 0.253855 0.0239946 0.261247 0.0227799 0.268961 0.021523 0.277022 0.0202235 0.285462 0.0188816 0.294329 0.0174969 0.303689 0.0160677 0.31362 0.0145905 0.324228 0.0130599 0.335662 0.01147 0.348129 0.00981604 0.361914 0.00809926 0.377377 0.00633472 0.394908 0.00456427 0.414793 0.00287372 0.436957 0.00140896 0.460354 0.000377393 0.481299 0.49411 0.0261331 0.247836 -0.0272505 0.0249901 0.254998 0.0238152 0.262422 0.0226001 0.270177 0.0213421 0.27828 0.0200416 0.286762 0.0186993 0.295672 0.0173153 0.305073 0.015888 0.315047 0.0144142 0.325702 0.0128888 0.337187 0.0113061 0.349712 0.0096618 0.363559 0.00795758 0.379081 0.00620936 0.396656 0.00445993 0.416543 0.00279556 0.438621 0.00136099 0.461789 0.000359056 0.482301 0.494469 0.0259172 0.248944 -0.0270261 0.0247816 0.256133 0.023612 0.263592 0.0224 0.271389 0.0211432 0.279537 0.0198426 0.288063 0.0185001 0.297014 0.0171164 0.306457 0.0156908 0.316473 0.0142205 0.327172 0.0127009 0.338707 0.0111266 0.351286 0.00949348 0.365192 0.00780389 0.380771 0.0060744 0.398386 0.00434857 0.418269 0.00271293 0.440257 0.00131087 0.463191 0.00034029 0.483272 0.49481 0.0258399 0.250076 -0.0269714 0.0246765 0.257297 0.0234783 0.26479 0.0222399 0.272627 0.0209613 0.280816 0.0196445 0.289379 0.0182913 0.298368 0.0169018 0.307846 0.0154749 0.3179 0.0140072 0.32864 0.0124939 0.34022 0.0109293 0.352851 0.00930953 0.366811 0.00763704 0.382443 0.00592904 0.400094 0.00422963 0.419968 0.00262533 0.441861 0.00125782 0.464559 0.000320191 0.484209 0.49513 0.0256425 0.251201 -0.0267678 0.0244785 0.258461 0.0232754 0.265993 0.022029 0.273873 0.020741 0.282104 0.0194151 0.290705 0.0180544 0.299728 0.0166606 0.30924 0.0152332 0.319327 0.0137694 0.330104 0.0122641 0.341726 0.0107115 0.354404 0.00910779 0.368415 0.00745558 0.384096 0.00577256 0.401777 0.0041033 0.421637 0.00253399 0.44343 0.00120413 0.465888 0.000301191 0.485112 0.495431 0.025838 0.25245 -0.0270871 0.0245449 0.259754 0.023227 0.267311 0.0218932 0.275207 0.0205448 0.283452 0.0191798 0.29207 0.0177958 0.301112 0.0163908 0.310645 0.0149613 0.320756 0.0135022 0.331563 0.0120074 0.343221 0.0104701 0.355941 0.00888608 0.369999 0.00725805 0.385724 0.00560404 0.403431 0.00396895 0.423272 0.00243818 0.444961 0.00114794 0.467179 0.000279979 0.48598 0.495711 0.0255977 0.253679 -0.0268267 0.0242953 0.261056 0.0229668 0.26864 0.0216224 0.276552 0.0202596 0.284815 0.0188791 0.293451 0.0174839 0.302507 0.0160744 0.312054 0.0146478 0.322183 0.0131981 0.333012 0.0117183 0.3447 0.010201 0.357458 0.00864149 0.371559 0.00704253 0.387323 0.00542252 0.405051 0.00382709 0.424868 0.00234112 0.446447 0.00109656 0.468423 0.000266025 0.486811 0.495977 0.0263415 0.255463 -0.028125 0.0245671 0.262831 0.0229426 0.270264 0.0214294 0.278065 0.0199679 0.286276 0.018534 0.294885 0.017116 0.303925 0.0157028 0.313468 0.0142841 0.323602 0.0128501 0.334446 0.0113919 0.346159 0.00990103 0.358949 0.00837222 0.373088 0.00680817 0.388887 0.00522767 0.406632 0.00367705 0.426418 0.00224111 0.447883 0.00104585 0.469618 0.000248685 0.487608 0.496226 0.0255283 0.257307 -0.0273729 0.0238855 0.264474 0.0224334 0.271716 0.0209724 0.279526 0.0195086 0.28774 0.0180707 0.296323 0.0166575 0.305339 0.0152573 0.314868 0.0138584 0.325001 0.0124502 0.335855 0.0110224 0.347586 0.0095658 0.360406 0.00807484 0.374579 0.00655245 0.390409 0.00501796 0.408166 0.00351878 0.427918 0.00214205 0.44926 0.00101351 0.470747 0.000268304 0.488353 0.496494 0.0258931 -0.0301902 0.0239057 0.0221108 0.0204379 0.0189121 0.0174794 0.0160919 0.0147245 0.0133625 0.011994 0.010608 0.00919514 0.00775027 0.00627711 0.0047958 0.00335386 0.00203937 0.000981351 0.000294045 0.0263801 0.215237 -0.214746 -0.0268712 0.024404 0.221048 -0.219072 0.0224338 0.227152 -0.225182 0.0206726 0.233746 -0.231985 0.0191128 0.240813 -0.239253 0.0177038 0.24834 -0.246931 0.0163998 0.256308 -0.255004 0.0151659 0.264708 -0.263474 0.0139756 0.273554 -0.272364 0.0128067 0.282892 -0.281723 0.0116392 0.29281 -0.291642 0.0104526 0.303462 -0.302275 0.00922451 0.315106 -0.313878 0.00793033 0.328154 -0.32686 0.00654544 0.343227 -0.341843 0.00505253 0.361206 -0.359713 0.0034618 0.383236 -0.381646 0.00185949 0.410456 -0.408854 0.000513695 0.442534 -0.441189 0.477317 -0.476803 0.0245643 0.216504 -0.0258316 0.0233024 0.22231 0.0219901 0.228465 0.0206614 0.235075 0.0193457 0.242128 0.0180603 0.249625 0.0168097 0.257559 0.0155891 0.265928 0.0143885 0.274755 0.0131949 0.284086 0.0119932 0.294011 0.010766 0.304689 0.00949308 0.316379 0.00815196 0.329495 0.00672094 0.344659 0.00518742 0.362739 0.00356864 0.384855 0.00195915 0.412066 0.000615192 0.443878 0.477932 0.0237767 0.217588 -0.0248605 0.0227605 0.223326 0.0216851 0.22954 0.0205642 0.236196 0.019413 0.24328 0.0182457 0.250793 0.0170706 0.258734 0.0158905 0.267109 0.0147038 0.275941 0.0135048 0.285285 0.0122842 0.295232 0.0110284 0.305945 0.00972041 0.317687 0.00834038 0.330875 0.00686961 0.346129 0.0052996 0.364309 0.00365214 0.386503 0.00202188 0.413696 0.000653295 0.445247 0.478586 0.0235195 0.218342 -0.0242734 0.0226316 0.224214 0.0216443 0.230527 0.0205995 0.23724 0.0195182 0.244361 0.0184107 0.2519 0.0172812 0.259863 0.0161306 0.268259 0.0149576 0.277114 0.0137583 0.286484 0.0125254 0.296465 0.0112482 0.307222 0.0099117 0.319023 0.00849839 0.332288 0.00699195 0.347636 0.00538682 0.365915 0.00370843 0.388181 0.00205428 0.41535 0.000668649 0.446633 0.479254 0.0234551 0.219004 -0.0241169 0.0226229 0.225046 0.021695 0.231455 0.0207026 0.238233 0.0196636 0.2454 0.0185885 0.252975 0.0174823 0.260969 0.0163461 0.269395 0.0151785 0.278282 0.0139757 0.287687 0.0127311 0.29771 0.0114347 0.308518 0.010073 0.320385 0.00862986 0.333731 0.00709078 0.349175 0.0054528 0.367553 0.00374546 0.389888 0.00207146 0.417024 0.000676 0.448028 0.47993 0.0235195 0.219699 -0.0242152 0.0227022 0.225863 0.0218037 0.232354 0.020842 0.239195 0.0198289 0.246413 0.018773 0.254031 0.017679 0.262063 0.0165483 0.270526 0.0153797 0.279451 0.0141695 0.288897 0.0129114 0.298968 0.0115959 0.309834 0.0102103 0.321771 0.00873937 0.335202 0.00717031 0.350744 0.00550258 0.36922 0.00376986 0.391621 0.00207982 0.418714 0.000678014 0.44943 0.480608 0.0237302 0.220445 -0.0244761 0.0228972 0.226696 0.0219934 0.233257 0.0210321 0.240156 0.0200222 0.247423 0.0189692 0.255084 0.0178761 0.263156 0.0167429 0.271659 0.0155676 0.280626 0.0143464 0.290118 0.0130729 0.300241 0.0117377 0.311169 0.0103285 0.32318 0.00883128 0.336699 0.00723441 0.352341 0.00553975 0.370915 0.00378461 0.393376 0.00208097 0.420418 0.000675445 0.450835 0.481284 0.0240564 0.221237 -0.0248486 0.0231881 0.227565 0.0222569 0.234189 0.021275 0.241138 0.0202496 0.248448 0.0191844 0.256149 0.0180803 0.264261 0.0169358 0.272804 0.0157479 0.281814 0.0145116 0.291354 0.0132203 0.301533 0.0118643 0.312525 0.0104317 0.324612 0.00890903 0.338222 0.00728597 0.353964 0.00556652 0.372634 0.00379123 0.395151 0.00207604 0.422133 0.000669444 0.452242 0.481953 0.024445 0.222079 -0.0252867 0.0235337 0.228476 0.0225666 0.235156 0.0215546 0.24215 0.0205037 0.249499 0.0194165 0.257236 0.0182927 0.265384 0.0171298 0.273967 0.0159236 0.28302 0.0146685 0.29261 0.0133569 0.302844 0.011979 0.313903 0.0105227 0.326069 0.00897517 0.33977 0.00732716 0.355612 0.00558467 0.374377 0.00379128 0.396945 0.00206662 0.423858 0.000661317 0.453647 0.482614 0.0248604 0.222974 -0.0257553 0.0239044 0.229432 0.022899 0.236161 0.0218532 0.243196 0.0207722 0.25058 0.0196579 0.258351 0.0185094 0.266533 0.0173235 0.275152 0.0160953 0.284248 0.0148184 0.293887 0.0134846 0.304178 0.0120837 0.315304 0.0106035 0.327549 0.00903156 0.341342 0.00735969 0.357284 0.00559575 0.376141 0.00378621 0.398754 0.00205411 0.42559 0.000652006 0.455049 0.483266 0.0252838 0.223922 -0.0262318 0.0242835 0.230432 0.0232391 0.237205 0.022158 0.244277 0.0210448 0.251693 0.0199009 0.259495 0.0187251 0.267709 0.0175138 0.276364 0.0162614 0.285501 0.0149609 0.295187 0.0136037 0.305535 0.0121793 0.316728 0.0106753 0.329053 0.00907956 0.342937 0.00738493 0.358978 0.00560113 0.377925 0.00377733 0.400578 0.00203967 0.427327 0.000642257 0.456447 0.483909 0.0257004 0.22492 -0.026698 0.0246574 0.231475 0.023575 0.238288 0.0224589 0.245393 0.0213132 0.252839 0.0201391 0.260669 0.018935 0.268913 0.0176972 0.277602 0.0164196 0.286778 0.015095 0.296512 0.013714 0.306916 0.012266 0.318176 0.0107386 0.33058 0.00911995 0.344556 0.00740382 0.360694 0.00560171 0.379727 0.0037654 0.402415 0.00202384 0.429069 0.0006323 0.457838 0.484541 0.0260957 0.225962 -0.0271378 0.0250136 0.232558 0.0238957 0.239406 0.0227467 0.246542 0.0215699 0.254016 0.0203663 0.261872 0.0191345 0.270145 0.0178703 0.278866 0.0165677 0.288081 0.015219 0.29786 0.0138147 0.30832 0.0123437 0.319647 0.0107937 0.33213 0.00915319 0.346197 0.007417 0.362431 0.00559829 0.381545 0.00375128 0.404262 0.00200746 0.430813 0.000622743 0.459223 0.485164 0.0264576 0.227042 -0.0275379 0.0253412 0.233674 0.0241919 0.240555 0.0230133 0.24772 0.0218081 0.255221 0.0205772 0.263103 0.0193191 0.271403 0.0180299 0.280155 0.0167033 0.289407 0.0153315 0.299232 0.0139047 0.309747 0.0124117 0.32114 0.0108403 0.333702 0.00917946 0.347858 0.00742483 0.364185 0.00559126 0.383379 0.00373522 0.406118 0.00199043 0.432558 0.000613177 0.4606 0.485777 0.0267773 0.228154 -0.0278891 0.0256322 0.234819 0.0244564 0.241731 0.0232524 0.248924 0.0220223 0.256451 0.0207671 0.264358 0.0194853 0.272684 0.018173 0.281467 0.0168241 0.290756 0.0154307 0.300626 0.0139828 0.311195 0.0124694 0.322653 0.0108783 0.335293 0.00919876 0.349537 0.00742761 0.365956 0.0055813 0.385225 0.00371836 0.407981 0.0019743 0.434302 0.000605078 0.46197 0.486382 0.0270494 0.22929 -0.0281859 0.0258817 0.235987 0.0246846 0.242928 0.0234597 0.250149 0.0222088 0.257702 0.0209327 0.265635 0.0196301 0.273987 0.0182973 0.2828 0.0169284 0.292125 0.0155153 0.302039 0.0140484 0.312662 0.0125164 0.324186 0.0109073 0.336902 0.00921113 0.351233 0.00742554 0.367742 0.00556861 0.387082 0.00370065 0.409848 0.0019582 0.436044 0.000596549 0.463331 0.486979 0.0272711 0.230444 -0.0284253 0.0260867 0.237171 0.0248734 0.244141 0.0236323 0.25139 0.0223647 0.25897 0.0210714 0.266928 0.0197513 0.275307 0.0184008 0.28415 0.0170144 0.293512 0.015584 0.303469 0.0141002 0.314146 0.0125517 0.325734 0.0109269 0.338527 0.00921627 0.352944 0.00741864 0.36954 0.00555385 0.388947 0.00368417 0.411718 0.00194647 0.437782 0.000593128 0.464685 0.487572 0.0274419 0.231609 -0.0286069 0.0262466 0.238366 0.0250222 0.245366 0.0237694 0.252643 0.0224891 0.26025 0.0211822 0.268235 0.0198479 0.276641 0.0184828 0.285516 0.0170815 0.294913 0.0156364 0.304914 0.014138 0.315644 0.0125753 0.327297 0.0109372 0.340165 0.00921457 0.354666 0.00740734 0.371347 0.00553712 0.390817 0.00366821 0.413587 0.00193677 0.439513 0.000588544 0.466033 0.48816 0.0275633 0.232779 -0.0287328 0.0263621 0.239568 0.025131 0.246597 0.0238704 0.253904 0.0225812 0.261539 0.0212642 0.269552 0.0199187 0.277987 0.0185419 0.286892 0.0171284 0.296326 0.0156711 0.306372 0.0141605 0.317155 0.0125861 0.328871 0.010937 0.341814 0.00920495 0.356399 0.00739091 0.373161 0.00551838 0.39269 0.00365496 0.41545 0.00193933 0.441229 0.000606511 0.467366 0.488767 0.0276402 -0.0288098 0.0264368 0.0252024 0.0239374 0.0226424 0.0213184 0.0199647 0.0185789 0.017156 0.0156889 0.0141687 0.012585 0.0109275 0.00918881 0.007371 0.00549879 0.00364206 0.00194355 0.000628454 -0.208888 0.0273719 -0.0332294 -0.207423 0.0225682 -0.0240337 -0.206427 0.0210185 -0.0220149 -0.205845 0.0178844 -0.0184663 -0.205333 0.0160084 -0.0165203 -0.204935 0.0139102 -0.0143077 -0.204611 0.012158 -0.0124824 -0.204364 0.0104106 -0.0106572 -0.204186 0.00878033 -0.0089587 -0.204076 0.00718632 -0.00729643 -0.204031 0.00564622 -0.00569105 -0.204051 0.00413839 -0.00411817 -0.204135 0.00266322 -0.00257892 -0.204284 0.00121405 -0.00106575 -0.204496 -0.000210395 0.000422413 -0.204771 -0.0016121 0.0018879 -0.205111 -0.00299134 0.00333104 -0.205515 -0.00434761 0.00475147 -0.205983 -0.00567865 0.00614658 -0.00698081 -0.206514 0.00751162 -0.215964 0.0242638 -0.214511 0.0211157 -0.213219 0.0197269 -0.21252 0.0171853 -0.21194 0.0154277 -0.211518 0.0134889 -0.211183 0.0118222 -0.210936 0.010164 -0.210763 0.00860709 -0.210661 0.00708485 -0.210627 0.00561173 -0.210658 0.00416963 -0.210753 0.00275843 -0.210912 0.00137251 -0.211133 1.05726e-05 -0.211416 -0.00132901 -0.211761 -0.00264644 -0.212167 -0.0039411 -0.212635 -0.00521103 -0.00645349 -0.213162 -0.222846 0.0219277 -0.221576 0.0198454 -0.220317 0.0184683 -0.219545 0.0164127 -0.218911 0.0147938 -0.218455 0.0130338 -0.218099 0.0114653 -0.217839 0.00990449 -0.217658 0.00842627 -0.217552 0.0069791 -0.217516 0.0055753 -0.217547 0.00420018 -0.217642 0.00285368 -0.2178 0.0015312 -0.218021 0.000231602 -0.218304 -0.00104637 -0.218648 -0.00230281 -0.219052 -0.00353702 -0.219516 -0.00474732 -0.00593159 -0.220037 -0.230115 0.0200577 -0.228875 0.0186058 -0.22771 0.0173028 -0.226904 0.0156073 -0.226236 0.0141251 -0.225744 0.0125419 -0.225358 0.0110797 -0.225076 0.00962244 -0.224878 0.00822804 -0.224758 0.00685972 -0.224711 0.00552829 -0.224734 0.0042224 -0.224822 0.00294243 -0.224976 0.00168473 -0.225193 0.000448522 -0.225472 -0.000767113 -0.225813 -0.0019621 -0.226214 -0.00313569 -0.226675 -0.00428639 -0.00541253 -0.227194 -0.237703 0.0185082 -0.236488 0.0173908 -0.235394 0.016208 -0.234571 0.0147846 -0.233882 0.0134365 -0.233358 0.0120174 -0.232943 0.0106652 -0.232636 0.00931495 -0.232417 0.00800876 -0.23228 0.00672322 -0.232219 0.00546762 -0.232231 0.00423398 -0.232312 0.00302317 -0.232459 0.00183252 -0.232673 0.000661679 -0.23295 -0.000489938 -0.23329 -0.00162205 -0.233692 -0.00273387 -0.234154 -0.00382404 -0.00489113 -0.234675 -0.245578 0.0171557 -0.244412 0.0162243 -0.243372 0.015168 -0.24254 0.0139524 -0.24184 0.0127364 -0.241289 0.0114668 -0.24085 0.0102259 -0.240518 0.00898349 -0.240278 0.00776903 -0.240125 0.00656983 -0.240051 0.00539363 -0.240053 0.00423563 -0.240127 0.00309708 -0.24027 0.00197631 -0.240482 0.0008734 -0.24076 -0.000211906 -0.241103 -0.00127913 -0.24151 -0.0023274 -0.241978 -0.00335546 -0.00436204 -0.242507 -0.253768 0.0159199 -0.252654 0.0151097 -0.251657 0.0141719 -0.250824 0.0131187 -0.250117 0.0120297 -0.249546 0.0108959 -0.249086 0.00976604 -0.248734 0.00863099 -0.248476 0.00751098 -0.248307 0.00640108 -0.248221 0.00530773 -0.248214 0.00422877 -0.248283 0.00316578 -0.248425 0.00211801 -0.248637 0.00108591 -0.248919 6.95557e-05 -0.249267 -0.000930379 -0.249682 -0.00191297 -0.25016 -0.00287696 -0.00382123 -0.250701 -0.26231 0.0147557 -0.261238 0.0140382 -0.260275 0.0132086 -0.259444 0.0122879 -0.258733 0.0113187 -0.258146 0.0103092 -0.257669 0.009289 -0.257298 0.00825995 -0.257024 0.00723628 -0.256841 0.00621806 -0.256744 0.0052107 -0.256729 0.00421406 -0.256793 0.00322993 -0.256933 0.00225838 -0.257148 0.00130013 -0.257434 0.000355591 -0.25779 -0.000574423 -0.258214 -0.00148891 -0.258704 -0.00238663 -0.00326653 -0.259259 -0.271244 0.0136356 -0.270203 0.0129975 -0.269261 0.0122662 -0.268432 0.0114596 -0.267716 0.0106028 -0.267116 0.00970832 -0.266622 0.00879559 -0.266233 0.00787092 -0.265942 0.00694486 -0.265744 0.00602019 -0.265635 0.00510162 -0.265611 0.00419035 -0.265669 0.00328833 -0.265807 0.00239622 -0.266022 0.00151499 -0.266312 0.000645281 -0.266674 -0.000211966 -0.267108 -0.00105569 -0.26761 -0.00188465 -0.00269785 -0.268178 -0.280627 0.0125389 -0.279603 0.0119739 -0.27867 0.0113329 -0.277839 0.0106286 -0.277113 0.0098774 -0.276496 0.00909114 -0.275984 0.00828335 -0.275575 0.00746151 -0.275263 0.00663381 -0.275047 0.00580422 -0.274923 0.00497691 -0.274886 0.00415386 -0.274935 0.00333708 -0.275066 0.00252765 -0.275278 0.00172667 -0.275568 0.000934969 -0.275933 0.000153544 -0.276373 -0.000616486 -0.276883 -0.00137391 -0.00211774 -0.277463 -0.29055 0.0114466 -0.289528 0.0109515 -0.28859 0.010395 -0.287746 0.00978543 -0.287003 0.00913422 -0.286363 0.00845099 -0.285825 0.00774568 -0.285389 0.00702529 -0.285052 0.00629639 -0.284811 0.00556315 -0.284663 0.0048293 -0.284606 0.00409712 -0.284638 0.0033686 -0.284755 0.00264505 -0.284956 0.00192763 -0.285239 0.00121725 -0.2856 0.000514909 -0.286038 -0.000178264 -0.286551 -0.000861061 -0.00153252 -0.287136 -0.301167 0.0103386 -0.300127 0.00991169 -0.299168 0.0094357 -0.298298 0.00891572 -0.297524 0.00836007 -0.296849 0.007776 -0.296274 0.00717097 -0.2958 0.00655085 -0.295425 0.00592096 -0.295147 0.00528513 -0.294964 0.00464663 -0.294874 0.00400774 -0.294876 0.00337033 -0.294967 0.00273577 -0.295145 0.0021052 -0.295407 0.00147951 -0.295752 0.000859644 -0.296176 0.000246665 -0.296679 -0.000358225 -0.000954047 -0.297258 -0.312732 0.00919244 -0.311652 0.00883262 -0.310651 0.00843423 -0.309735 0.00800012 -0.308912 0.00753652 -0.308184 0.00704855 -0.307555 0.00654178 -0.307025 0.00602083 -0.306594 0.00548988 -0.306261 0.00495222 -0.306025 0.00441059 -0.305884 0.00386704 -0.305837 0.00332326 -0.305882 0.00278053 -0.306017 0.00223989 -0.30624 0.00170216 -0.306548 0.00116808 -0.30694 0.000638589 -0.307413 0.000114881 -0.000401982 -0.307965 -0.32565 0.00798326 -0.324507 0.00768902 -0.323438 0.00736567 -0.322453 0.0070144 -0.321556 0.00663976 -0.320752 0.00624514 -0.320045 0.00583455 -0.319436 0.00541143 -0.318925 0.00497891 -0.318512 0.00453961 -0.318197 0.0040957 -0.317979 0.00364892 -0.317857 0.00320064 -0.317828 0.00275198 -0.317892 0.00230382 -0.318047 0.00185683 -0.31829 0.00141148 -0.31862 0.000968408 -0.319034 0.000528723 9.3706e-05 -0.319529 -0.340545 0.00668536 -0.33931 0.00645442 -0.338148 0.00620321 -0.337065 0.00593158 -0.336068 0.0056425 -0.335161 0.00533815 -0.334347 0.00502108 -0.333629 0.00469372 -0.333009 0.00435817 -0.332485 0.00401639 -0.33206 0.00366994 -0.331731 0.00332016 -0.331498 0.00296808 -0.331361 0.00261456 -0.331317 0.00226032 -0.331366 0.00190586 -0.331506 0.00155131 -0.331735 0.00119663 -0.332048 0.000842575 0.000490888 -0.332446 -0.358308 0.00528004 -0.356962 0.00510899 -0.355684 0.00492527 -0.354481 0.00472872 -0.353359 0.00452035 -0.352323 0.00430198 -0.351376 0.00407437 -0.350522 0.00383922 -0.349761 0.00359747 -0.349095 0.00335053 -0.348525 0.00309931 -0.348049 0.00284478 -0.347669 0.00258756 -0.347382 0.00232824 -0.347189 0.00206733 -0.347089 0.00180522 -0.347079 0.00154165 -0.347158 0.00127544 -0.347321 0.00100606 0.000736141 -0.347567 -0.380141 0.00377574 -0.37869 0.00365752 -0.377296 0.00353159 -0.37597 0.0034027 -0.374717 0.00326768 -0.373544 0.00312887 -0.372454 0.00298416 -0.37145 0.00283492 -0.370533 0.0026808 -0.369706 0.00252285 -0.368968 0.00236137 -0.36832 0.002197 -0.367762 0.00202997 -0.367294 0.0018605 -0.366916 0.0016888 -0.366626 0.00151517 -0.366423 0.00133918 -0.366306 0.00115821 -0.366269 0.000968753 0.00077377 -0.366307 -0.407322 0.00224346 -0.405825 0.00216113 -0.404369 0.00207582 -0.402972 0.0020056 -0.401638 0.00193356 -0.400374 0.00186422 -0.399181 0.00179119 -0.398062 0.00171654 -0.39702 0.00163864 -0.396056 0.00155849 -0.39517 0.00147583 -0.394364 0.00139106 -0.393638 0.00130402 -0.392992 0.00121457 -0.392426 0.00112245 -0.391939 0.00102768 -0.391529 0.000930101 -0.391198 0.000826782 -0.390939 0.000709663 0.000575258 -0.39074 -0.439801 0.00085581 -0.438438 0.000797771 -0.437104 0.000742637 -0.435822 0.000722717 -0.434586 0.00069845 -0.433403 0.000680262 -0.432271 0.000659294 -0.431193 0.000638767 -0.430171 0.000616617 -0.429206 0.000593774 -0.4283 0.000569738 -0.427454 0.000544711 -0.426668 0.00051839 -0.425944 0.000490492 -0.425282 0.000460485 -0.424682 0.000427978 -0.424145 0.000392834 -0.423672 0.000353793 -0.423265 0.000302537 0.00021539 -0.422905 -0.475948 -0.47515 -0.474407 -0.473684 -0.472986 -0.472306 -0.471646 -0.471008 -0.470391 -0.469797 -0.469228 -0.468683 -0.468164 -0.467674 -0.467213 -0.466785 -0.466393 -0.466039 -0.465736 -0.465521 -0.207111 -0.00818076 0.00877777 -0.207765 -0.00941867 0.0100732 -0.208477 -0.0106235 0.0113352 -0.209246 -0.0117936 0.0125624 -0.210072 -0.0129264 0.0137524 -0.210955 -0.0140181 0.0149009 -0.211894 -0.0150636 0.0160028 -0.212888 -0.0160565 0.0170511 -0.213936 -0.0169891 0.0180371 -0.215034 -0.0178519 0.01895 -0.216177 -0.0186335 0.0197762 -0.217357 -0.0193193 0.0204992 -0.21856 -0.0198955 0.0210984 -0.219755 -0.0203523 0.0215473 -0.220908 -0.0206781 0.021831 -0.222022 -0.0208553 0.0219693 -0.22304 -0.0209146 0.0219326 -0.223668 -0.0209669 0.0215949 -0.224264 -0.0209274 0.0215237 -0.0209592 -0.224688 0.0213827 -0.213754 -0.00758933 -0.214401 -0.00877162 -0.215102 -0.00992177 -0.215858 -0.0110379 -0.216667 -0.0121174 -0.217529 -0.0131565 -0.218442 -0.0141508 -0.219404 -0.0150943 -0.220413 -0.0159803 -0.221463 -0.016801 -0.22255 -0.0175468 -0.223663 -0.0182069 -0.224786 -0.0187717 -0.225901 -0.0192373 -0.226981 -0.0195988 -0.227988 -0.0198482 -0.228882 -0.0200208 -0.229641 -0.0202079 -0.230188 -0.0203798 -0.0207273 -0.23042 -0.220623 -0.00700399 -0.221263 -0.00813156 -0.221956 -0.00922821 -0.222702 -0.0102919 -0.2235 -0.01132 -0.224347 -0.012309 -0.225243 -0.0132548 -0.226185 -0.0141524 -0.22717 -0.0149959 -0.228192 -0.0157786 -0.229246 -0.0164934 -0.23032 -0.0171323 -0.231403 -0.0176893 -0.232477 -0.0181625 -0.233524 -0.0185518 -0.234512 -0.0188609 -0.235413 -0.0191196 -0.236242 -0.0193792 -0.236943 -0.0196785 -0.0201811 -0.237489 -0.227777 -0.00642092 -0.228415 -0.00749358 -0.229107 -0.00853669 -0.22985 -0.00954811 -0.230645 -0.0105253 -0.231489 -0.011465 -0.23238 -0.0123636 -0.233316 -0.0132166 -0.234293 -0.0140193 -0.235305 -0.014766 -0.236347 -0.0154513 -0.23741 -0.0160698 -0.238481 -0.0166182 -0.239548 -0.0170958 -0.240594 -0.0175056 -0.241598 -0.0178571 -0.242544 -0.0181736 -0.243435 -0.0184876 -0.244258 -0.0188555 -0.0193911 -0.245048 -0.235262 -0.00583406 -0.235905 -0.00685089 -0.236602 -0.00783966 -0.237352 -0.00879826 -0.238153 -0.00972425 -0.239003 -0.0106147 -0.2399 -0.0114663 -0.240842 -0.0122753 -0.241823 -0.0130378 -0.24284 -0.0137492 -0.243886 -0.0144056 -0.244952 -0.0150035 -0.246029 -0.0155413 -0.247105 -0.0160198 -0.248167 -0.0164438 -0.2492 -0.0168241 -0.250194 -0.0171792 -0.251147 -0.0175349 -0.252062 -0.0179405 -0.0184613 -0.252992 -0.243104 -0.00523761 -0.243757 -0.00619728 -0.244466 -0.00713058 -0.245229 -0.00803544 -0.246044 -0.0089096 -0.246908 -0.00975041 -0.247819 -0.010555 -0.248775 -0.0113202 -0.24977 -0.0120427 -0.2508 -0.0127193 -0.251858 -0.013347 -0.252938 -0.0139237 -0.25403 -0.0144493 -0.255124 -0.0149255 -0.25621 -0.015358 -0.257277 -0.0157568 -0.258319 -0.016137 -0.259333 -0.0165209 -0.26033 -0.0169444 -0.0174406 -0.26135 -0.251312 -0.00462726 -0.251981 -0.00552823 -0.252706 -0.00640474 -0.253487 -0.00725479 -0.25432 -0.00807632 -0.255204 -0.00886695 -0.256135 -0.00962424 -0.257109 -0.0103456 -0.258124 -0.0110284 -0.259173 -0.0116702 -0.260251 -0.012269 -0.261351 -0.0128239 -0.262464 -0.0133354 -0.263584 -0.0138061 -0.2647 -0.0142415 -0.265807 -0.0146505 -0.266898 -0.0150455 -0.267974 -0.0154449 -0.269046 -0.0158727 -0.0163447 -0.270142 -0.259885 -0.00400058 -0.260572 -0.00484113 -0.261318 -0.00565932 -0.262119 -0.00645324 -0.262975 -0.00722108 -0.263881 -0.00796074 -0.264835 -0.00867015 -0.265833 -0.00934716 -0.266872 -0.00998987 -0.267946 -0.0105965 -0.269049 -0.0111657 -0.270175 -0.0116974 -0.271318 -0.0121926 -0.27247 -0.0126542 -0.273624 -0.0130873 -0.274775 -0.0134992 -0.27592 -0.0139004 -0.27706 -0.0143048 -0.278205 -0.0147279 -0.0151773 -0.279373 -0.268822 -0.00335719 -0.269527 -0.00413529 -0.270293 -0.00489329 -0.271117 -0.00562943 -0.271996 -0.0063421 -0.272927 -0.00702948 -0.273908 -0.00768988 -0.274933 -0.00832158 -0.276 -0.00892314 -0.277103 -0.0094934 -0.278237 -0.0100316 -0.279397 -0.010538 -0.280575 -0.0110141 -0.281767 -0.0114625 -0.282966 -0.0118879 -0.284169 -0.0122964 -0.285373 -0.0126962 -0.286581 -0.0130975 -0.287799 -0.0135099 -0.0139376 -0.289038 -0.278121 -0.00269924 -0.278844 -0.00341247 -0.279629 -0.00410798 -0.280475 -0.00478416 -0.281377 -0.00543961 -0.282334 -0.00607279 -0.283341 -0.00668234 -0.284396 -0.00726691 -0.285494 -0.00782545 -0.28663 -0.00835728 -0.287799 -0.00886209 -0.288997 -0.00934036 -0.290218 -0.00979364 -0.291456 -0.0102245 -0.292707 -0.0106368 -0.293967 -0.0110357 -0.295236 -0.0114274 -0.296514 -0.0118192 -0.297808 -0.0122167 -0.0126225 -0.299123 -0.287803 -0.00203262 -0.288537 -0.0026781 -0.289337 -0.0033083 -0.290199 -0.00392176 -0.291122 -0.00451728 -0.292101 -0.00509361 -0.293133 -0.00564965 -0.294216 -0.00618441 -0.295344 -0.00669718 -0.296514 -0.00718756 -0.29772 -0.00765564 -0.298959 -0.00810202 -0.300224 -0.00852817 -0.301512 -0.00893647 -0.302819 -0.00933011 -0.304141 -0.00971324 -0.305478 -0.0100907 -0.30683 -0.0104672 -0.308201 -0.0108462 -0.0112293 -0.309594 -0.297922 -0.00136876 -0.298656 -0.00194323 -0.29946 -0.0025048 -0.30033 -0.0030522 -0.301262 -0.00358443 -0.302256 -0.00410048 -0.303306 -0.00459954 -0.304409 -0.00508093 -0.305562 -0.00554419 -0.30676 -0.00598918 -0.308 -0.00641622 -0.309276 -0.00682601 -0.310584 -0.00721992 -0.311921 -0.00760001 -0.313282 -0.00796892 -0.314665 -0.00833001 -0.316069 -0.0086869 -0.317493 -0.00904273 -0.31894 -0.00939947 -0.00975798 -0.320411 -0.308607 -0.000727047 -0.309323 -0.00122703 -0.310111 -0.00171633 -0.31097 -0.00219389 -0.311895 -0.00265889 -0.312885 -0.0031106 -0.313936 -0.00354848 -0.315045 -0.00397209 -0.316208 -0.00438125 -0.317421 -0.00477601 -0.318681 -0.00515676 -0.319982 -0.00552436 -0.321322 -0.00588008 -0.322697 -0.00622558 -0.324102 -0.00656311 -0.325537 -0.00689536 -0.326999 -0.00722513 -0.328487 -0.00755461 -0.330002 -0.00788473 -0.00821563 -0.331544 -0.320119 -0.000137503 -0.320786 -0.000559714 -0.321529 -0.000973088 -0.322346 -0.00137684 -0.323235 -0.00177041 -0.324192 -0.00215333 -0.325215 -0.00252534 -0.326301 -0.00288624 -0.327446 -0.00323606 -0.328647 -0.003575 -0.329901 -0.00390358 -0.331202 -0.00422265 -0.332549 -0.00453338 -0.333937 -0.00483728 -0.335364 -0.00513615 -0.336827 -0.0054321 -0.338325 -0.00572757 -0.339855 -0.00602435 -0.341417 -0.00632277 -0.0066221 -0.343011 -0.33294 0.000357079 -0.333515 1.52437e-05 -0.334169 -0.000319086 -0.3349 -0.000645445 -0.335707 -0.000963717 -0.336587 -0.00127359 -0.337537 -0.00157516 -0.338555 -0.00186838 -0.339637 -0.00215352 -0.340782 -0.00243091 -0.341984 -0.00270116 -0.343242 -0.00296501 -0.344551 -0.0032237 -0.34591 -0.00347864 -0.347315 -0.00373108 -0.348764 -0.00398276 -0.350256 -0.00423603 -0.351787 -0.00449306 -0.353356 -0.00475431 -0.00501782 -0.35496 -0.347912 0.000701935 -0.348338 0.000441761 -0.348845 0.000187868 -0.349431 -5.9027e-05 -0.350096 -0.000299584 -0.350836 -0.000533325 -0.35165 -0.000760939 -0.352536 -0.000982461 -0.353491 -0.00119849 -0.354513 -0.00140938 -0.355598 -0.00161583 -0.356744 -0.00181859 -0.357949 -0.00201873 -0.35921 -0.00221753 -0.360525 -0.00241621 -0.361892 -0.00261596 -0.363309 -0.00281903 -0.364773 -0.00302909 -0.366279 -0.00324837 -0.00347309 -0.367824 -0.366444 0.000839319 -0.366661 0.000658536 -0.366955 0.000482061 -0.367327 0.000313553 -0.367777 0.000150228 -0.368304 -6.84903e-06 -0.368905 -0.000159639 -0.369579 -0.00030806 -0.370325 -0.000453111 -0.371139 -0.000595066 -0.37202 -0.000734678 -0.372966 -0.00087264 -0.373975 -0.00100987 -0.375045 -0.00114767 -0.376174 -0.0012874 -0.37736 -0.00142974 -0.378602 -0.00157658 -0.379898 -0.00173358 -0.381239 -0.00190768 -0.00209442 -0.382617 -0.390631 0.000730226 -0.390591 0.000618056 -0.390618 0.00050878 -0.390718 0.000413765 -0.39089 0.000322634 -0.391135 0.0002379 -0.39145 0.000155507 -0.391834 7.61979e-05 -0.392286 -1.41593e-06 -0.392804 -7.73427e-05 -0.393386 -0.000152349 -0.394032 -0.000226974 -0.394739 -0.000302219 -0.395508 -0.00037912 -0.396336 -0.000459269 -0.397222 -0.000543774 -0.398165 -0.000633318 -0.399165 -0.00073346 -0.400215 -0.000858547 -0.00101489 -0.401294 -0.422564 0.000389613 -0.422279 0.000332925 -0.422049 0.00027899 -0.421883 0.000247716 -0.421777 0.000215806 -0.421728 0.000189266 -0.421735 0.00016292 -0.421798 0.000138431 -0.421914 0.000114473 -0.422082 9.13308e-05 -0.422303 6.84369e-05 -0.422575 4.5507e-05 -0.422899 2.18221e-05 -0.423275 -3.49581e-06 -0.423703 -3.15114e-05 -0.424183 -6.35623e-05 -0.424716 -0.000100457 -0.425305 -0.000144289 -0.425954 -0.000209157 -0.000335095 -0.426634 -0.465131 -0.464798 -0.464519 -0.464272 -0.464056 -0.463867 -0.463704 -0.463565 -0.463451 -0.463359 -0.463291 -0.463246 -0.463224 -0.463227 -0.463259 -0.463322 -0.463423 -0.463567 -0.463776 -0.464111 2.42577e-05 -0.464136 0.000686826 -0.427297 0.00184468 -0.402452 0.00330466 -0.384077 0.00492234 -0.369441 0.00659248 -0.35663 0.00824594 -0.344664 0.00984352 -0.333142 0.0113668 -0.321935 0.0128102 -0.311037 0.0141752 -0.300488 0.0154663 -0.29033 0.0166893 -0.280596 0.0178496 -0.271302 0.0189508 -0.262451 0.0199902 -0.254031 0.0209609 -0.246019 0.0218988 -0.238427 0.0228839 -0.231405 -0.225126 0.0233217 9.94035e-05 -0.464235 0.000807561 -0.428005 0.00201108 -0.403655 0.00351942 -0.385586 0.00518 -0.371102 0.00688686 -0.358337 0.0085727 -0.34635 0.0102 -0.334769 0.0117521 -0.323487 0.013225 -0.31251 0.0146217 -0.301884 0.0159486 -0.291657 0.0172128 -0.28186 0.0184206 -0.27251 0.0195763 -0.263607 0.0206831 -0.255138 0.0217543 -0.24709 0.0228177 -0.23949 0.023848 -0.232436 -0.226006 0.024728 0.000171753 -0.464407 0.000926958 -0.42876 0.00217501 -0.404904 0.00372942 -0.38714 0.00543231 -0.372805 0.0071758 -0.36008 0.00889382 -0.348068 0.0105509 -0.336426 0.0121322 -0.325068 0.0136356 -0.314014 0.0150661 -0.303315 0.0164318 -0.293022 0.0177418 -0.28317 0.019005 -0.273773 0.0202286 -0.264831 0.0214191 -0.256329 0.0225787 -0.24825 0.0236863 -0.240598 0.0246736 -0.233423 -0.226802 0.0254702 0.000207227 -0.464614 0.00102444 -0.429577 0.00232827 -0.406207 0.00393127 -0.388743 0.00567621 -0.37455 0.00745559 -0.36186 0.00920493 -0.349817 0.0108909 -0.338112 0.0125006 -0.326678 0.014034 -0.315547 0.0154976 -0.304778 0.016901 -0.294426 0.0182548 -0.284524 0.0195695 -0.275088 0.0208554 -0.266117 0.0221226 -0.257596 0.0233785 -0.249506 0.0246219 -0.241841 0.0258425 -0.234643 -0.227992 0.0270322 0.000245024 -0.464859 0.00111766 -0.43045 0.00247569 -0.407565 0.00412605 -0.390393 0.00591119 -0.376335 0.00772456 -0.363673 0.00950334 -0.351596 0.0112162 -0.339825 0.0128526 -0.328314 0.0144138 -0.317108 0.0159081 -0.306273 0.0173464 -0.295864 0.0187402 -0.285917 0.0201008 -0.276448 0.0214386 -0.267454 0.022762 -0.258919 0.0240756 -0.250819 0.0253768 -0.243142 0.0266512 -0.235918 -0.229211 0.0278701 0.000274937 -0.465134 0.00120179 -0.431377 0.00261443 -0.408978 0.00431157 -0.392091 0.0061351 -0.378158 0.00798005 -0.365518 0.00978565 -0.353402 0.0115227 -0.341562 0.0131826 -0.329974 0.0147684 -0.318694 0.0162895 -0.307794 0.0177577 -0.297332 0.0191854 -0.287345 0.0205846 -0.277848 0.0219662 -0.268836 0.0233401 -0.260293 0.0247136 -0.252193 0.0260885 -0.244517 0.0274539 -0.237283 -0.230538 0.0287809 0.000305519 -0.465439 0.0012833 -0.432355 0.00274721 -0.410442 0.00448816 -0.393831 0.00634704 -0.380017 0.00822035 -0.367391 0.0100494 -0.355231 0.0118072 -0.34332 0.0134868 -0.331654 0.015093 -0.3203 0.016636 -0.309337 0.0181285 -0.298825 0.019583 -0.2888 0.0210113 -0.279276 0.0224239 -0.270249 0.0238295 -0.261699 0.0252343 -0.253598 0.0266387 -0.245922 0.02803 -0.238675 -0.231883 0.0293752 0.00033381 -0.465773 0.00136036 -0.433381 0.00287292 -0.411954 0.00465468 -0.395613 0.00654554 -0.381908 0.00844355 -0.369289 0.0102922 -0.35708 0.0120667 -0.345094 0.0137618 -0.333349 0.0153837 -0.321922 0.0169435 -0.310897 0.0184543 -0.300335 0.0199288 -0.290274 0.0213788 -0.280726 0.0228145 -0.271684 0.0242445 -0.263129 0.0256751 -0.255028 0.0271066 -0.247353 0.028527 -0.240095 -0.233261 0.0299049 0.000361802 -0.466135 0.00143472 -0.434454 0.0029924 -0.413512 0.00481103 -0.397432 0.00672982 -0.383827 0.00864841 -0.371208 0.0105125 -0.358944 0.0122993 -0.346881 0.0140054 -0.335055 0.015638 -0.323555 0.0172092 -0.312468 0.0187323 -0.301858 0.0202201 -0.291762 0.0216837 -0.28219 0.0231329 -0.273134 0.0245756 -0.264571 0.0260172 -0.25647 0.0274581 -0.248794 0.0288868 -0.241524 -0.234647 0.0302734 0.000388731 -0.466524 0.00150566 -0.435571 0.00310501 -0.415112 0.00495649 -0.399283 0.00689896 -0.385769 0.00883377 -0.373143 0.0107089 -0.360819 0.0125035 -0.348676 0.0142158 -0.336767 0.0158544 -0.325193 0.0174319 -0.314045 0.0189619 -0.303388 0.020457 -0.293257 0.0219283 -0.283661 0.0233848 -0.27459 0.0248343 -0.266021 0.0262818 -0.257917 0.027728 -0.25024 0.0291629 -0.242959 -0.236044 0.0305591 0.000415131 -0.466939 0.00157362 -0.43673 0.00321086 -0.416749 0.00509085 -0.401163 0.00705246 -0.387731 0.00899893 -0.375089 0.0108804 -0.3627 0.0126783 -0.350473 0.0143924 -0.338481 0.0160322 -0.326833 0.0176111 -0.315624 0.0191429 -0.30492 0.02064 -0.294754 0.022113 -0.285134 0.0235706 -0.276048 0.0250201 -0.26747 0.0264663 -0.259364 0.0279104 -0.251684 0.0293436 -0.244392 -0.237442 0.0307414 0.000440909 -0.46738 0.00163842 -0.437927 0.00330968 -0.41842 0.00521375 -0.403067 0.00718988 -0.389707 0.00914337 -0.377043 0.0110267 -0.364584 0.0128234 -0.35227 0.0145347 -0.340193 0.0161714 -0.32847 0.0177472 -0.3172 0.0192762 -0.306449 0.0207707 -0.296249 0.0222409 -0.286604 0.0236953 -0.277502 0.0251407 -0.268915 0.0265819 -0.260805 0.0280205 -0.253123 0.0294495 -0.245821 -0.238839 0.0308474 0.000466422 -0.467846 0.00170038 -0.439161 0.00340159 -0.420121 0.00532514 -0.404991 0.00731106 -0.391693 0.00926688 -0.378999 0.0111476 -0.366464 0.0129385 -0.354061 0.0146429 -0.341897 0.0162721 -0.330099 0.0178408 -0.318769 0.0193629 -0.307971 0.0208507 -0.297736 0.0223141 -0.288067 0.0237612 -0.278949 0.0251984 -0.270353 0.0266307 -0.262237 0.0280601 -0.254552 0.0294811 -0.247242 -0.240234 0.0308755 0.000492015 -0.468338 0.00175978 -0.440429 0.00348664 -0.421848 0.00542491 -0.406929 0.00741584 -0.393684 0.00936935 -0.380952 0.0112429 -0.368338 0.0130239 -0.355842 0.0147172 -0.34359 0.0163351 -0.331717 0.0178928 -0.320327 0.0194044 -0.309483 0.020882 -0.299214 0.0223353 -0.289521 0.0237719 -0.280386 0.0251982 -0.271779 0.0266189 -0.263658 0.0280368 -0.25597 0.0294479 -0.248653 -0.241623 0.0308369 0.000518251 -0.468856 0.001817 -0.441728 0.00356486 -0.423596 0.005513 -0.408877 0.00750421 -0.395675 0.00945083 -0.382899 0.0113128 -0.3702 0.0130799 -0.357609 0.0147582 -0.345268 0.0163612 -0.33332 0.0179044 -0.32187 0.0194022 -0.310981 0.0208665 -0.300678 0.0223066 -0.290961 0.02373 -0.281809 0.0251427 -0.273192 0.0265496 -0.265065 0.0279539 -0.257374 0.029353 -0.250052 -0.243005 0.0307349 0.000545572 -0.469402 0.00187205 -0.443054 0.00363617 -0.42536 0.00558941 -0.410831 0.00757631 -0.397662 0.00951158 -0.384834 0.0113578 -0.372046 0.0131069 -0.359358 0.0147665 -0.346928 0.0163511 -0.334904 0.0178767 -0.323395 0.0193576 -0.312462 0.0208058 -0.302126 0.0222303 -0.292385 0.0236381 -0.283217 0.0250351 -0.274589 0.0264264 -0.266456 0.0278156 -0.258764 0.0292016 -0.251438 -0.244378 0.0305753 0.000574192 -0.469976 0.00192521 -0.444405 0.00370127 -0.427136 0.00565494 -0.412784 0.00763272 -0.39964 0.00955202 -0.386753 0.0113782 -0.373872 0.0131053 -0.361085 0.0147426 -0.348565 0.0163055 -0.336467 0.0178104 -0.3249 0.0192718 -0.313923 0.0207012 -0.303556 0.0221076 -0.293792 0.0234978 -0.284607 0.0248773 -0.275968 0.0262514 -0.26783 0.0276241 -0.260136 0.0289961 -0.25281 -0.245744 0.0303612 0.000605429 -0.470582 0.00197962 -0.445779 0.00376323 -0.42892 0.00571133 -0.414732 0.00767416 -0.401603 0.00957235 -0.388652 0.0113739 -0.375674 0.0130752 -0.362787 0.0146868 -0.350177 0.0162249 -0.338006 0.0177063 -0.326382 0.0191454 -0.315362 0.0205537 -0.304964 0.0219399 -0.295178 0.0233103 -0.285978 0.0246704 -0.277328 0.0260256 -0.269185 0.0273807 -0.261492 0.0287377 -0.254167 -0.2471 0.0300937 0.000647604 -0.471229 0.00204371 -0.447175 0.00382604 -0.430702 0.00575968 -0.416666 0.00770065 -0.403544 0.00957246 -0.390523 0.0113453 -0.377447 0.013017 -0.364458 0.0145996 -0.351759 0.01611 -0.339516 0.0175652 -0.327837 0.0189795 -0.316776 0.0203643 -0.306349 0.0217278 -0.296541 0.0230762 -0.287326 0.0244148 -0.278667 0.0257491 -0.27052 0.0270845 -0.262827 0.0284247 -0.255507 -0.248445 0.0297698 0.000724161 0.00212056 0.00388613 0.00579697 0.00771045 0.00955151 0.0112918 0.0129308 0.0144815 0.0159615 0.0173879 0.018775 0.0201339 0.0214725 0.0227965 0.0241111 0.0254215 0.026734 0.0280536 0.0293838 0.0261577 -1.20418 1.20687 0.0251848 -1.08849 1.08946 0.0251026 -0.988422 0.988504 0.0253959 -0.900235 0.899942 0.0257583 -0.823243 0.82288 0.0260569 -0.754561 0.754262 0.0261874 -0.690762 0.690632 0.0260707 -0.629369 0.629486 0.0256922 -0.569114 0.569493 0.0250841 -0.509964 0.510572 0.0243093 -0.452638 0.453413 0.0234418 -0.398128 0.398996 0.022551 -0.347336 0.348226 0.0216918 -0.300871 0.301731 0.0209016 -0.259021 0.259811 0.0202013 -0.221796 0.222496 0.0195992 -0.189019 0.189622 0.0190951 -0.160406 0.16091 0.018684 -0.135617 0.136028 0.0183587 -0.114306 0.114631 0.0181116 -0.09613 0.0963772 0.0179354 -0.0807638 0.0809401 0.0178237 -0.0678918 0.0680036 0.01777 -0.0572089 0.0572626 0.017767 -0.0484019 0.0484049 0.0178056 -0.0411674 0.0411289 0.0178736 -0.0351796 0.0351115 0.0179567 -0.0301539 0.0300709 0.0180385 -0.0257714 0.0256896 0.0181022 -0.021829 0.0217653 0.0181341 -0.0180365 0.0180046 0.0181208 -0.0143403 0.0143536 0.0180591 -0.0104298 0.0104916 0.0179414 -0.00644904 0.00656669 0.0177807 -0.00192033 0.00208106 0.0175733 0.00266051 -0.0024533 0.0173474 0.00817156 -0.00794552 0.0171098 0.0133262 -0.0130887 0.0168426 0.019922 -0.0196548 0.0267366 -0.0265608 0.024221 -1.20005 0.0223794 -1.08664 0.0218851 -0.987928 0.0220121 -0.900362 0.0223494 -0.82358 0.0227214 -0.754933 0.022996 -0.691037 0.023074 -0.629447 0.0229238 -0.568964 0.0225633 -0.509603 0.0220417 -0.452116 0.0214211 -0.397508 0.0207623 -0.346677 0.0201143 -0.300223 0.0195115 -0.258418 0.0189739 -0.221258 0.0185107 -0.188556 0.0181234 -0.160018 0.017809 -0.135303 0.0175628 -0.11406 0.0173794 -0.0959467 0.0172542 -0.0806386 0.0171825 -0.0678201 0.0171598 -0.0571862 0.0171802 -0.0484223 0.0172357 -0.0412228 0.0173152 -0.0352591 0.0174051 -0.0302437 0.0174897 -0.025856 0.0175527 -0.021892 0.0175812 -0.018065 0.0175627 -0.0143218 0.0174949 -0.0103621 0.0173714 -0.00632554 0.0172066 -0.00175547 0.0169974 0.00286964 0.0167747 0.0083943 0.0165421 0.0135589 0.0162895 0.0201745 0.0268982 0.022288 -1.19456 0.0195705 -1.08393 0.0186488 -0.987006 0.018607 -0.90032 0.0189187 -0.823892 0.0193633 -0.755378 0.0197839 -0.691458 0.02006 -0.629723 0.0201425 -0.569046 0.0200335 -0.509494 0.0197683 -0.451851 0.0193971 -0.397137 0.0189717 -0.346251 0.0185357 -0.299787 0.0181206 -0.258003 0.0177458 -0.220883 0.0174213 -0.188232 0.0171504 -0.159747 0.0169324 -0.135085 0.016765 -0.113892 0.0166454 -0.095827 0.0165709 -0.0805641 0.0165391 -0.0677884 0.0165474 -0.0571944 0.0165912 -0.0484661 0.0166638 -0.0412955 0.0167552 -0.0353505 0.0168523 -0.0303408 0.0169402 -0.025944 0.0170034 -0.0219552 0.0170295 -0.018091 0.0170069 -0.0142992 0.0169343 -0.0102895 0.0168064 -0.00619766 0.016639 -0.00158804 0.0164298 0.00307878 0.0162121 0.00861204 0.0159862 0.0137847 0.01575 0.0204107 0.0270442 0.0203569 -1.18773 0.0167609 -1.08033 0.0153951 -0.98564 0.0151801 -0.900105 0.0154656 -0.824177 0.0159826 -0.755895 0.0165507 -0.692026 0.0170286 -0.630201 0.0173478 -0.569366 0.0174945 -0.509641 0.017489 -0.451846 0.0173698 -0.397017 0.0171796 -0.346061 0.0169567 -0.299565 0.0167297 -0.257776 0.0165179 -0.220671 0.0163321 -0.188046 0.0161775 -0.159593 0.0160557 -0.134963 0.0159669 -0.113804 0.0159107 -0.0957708 0.0158868 -0.0805402 0.0158949 -0.0677965 0.015934 -0.0572335 0.0160013 -0.0485334 0.0160912 -0.0413854 0.0161947 -0.035454 0.0162994 -0.0304456 0.0163913 -0.0260359 0.0164553 -0.0220192 0.0164799 -0.0181156 0.0164542 -0.0142735 0.0163781 -0.0102133 0.0162472 -0.00606679 0.0160787 -0.00141956 0.0158712 0.00328629 0.01566 0.0088232 0.0154426 0.0140022 0.0152242 0.0206291 0.0271736 0.0184275 -1.1796 0.0139519 -1.07585 0.012124 -0.983813 0.0117293 -0.89971 0.0119888 -0.824437 0.0125781 -0.756484 0.0132956 -0.692743 0.0139789 -0.630885 0.0145394 -0.569926 0.0149457 -0.510047 0.0152036 -0.452103 0.0153391 -0.397153 0.0153861 -0.346108 0.0153774 -0.299556 0.0153395 -0.257738 0.015291 -0.220623 0.015244 -0.187999 0.0152057 -0.159554 0.01518 -0.134938 0.0151697 -0.113793 0.0151767 -0.0957778 0.0152033 -0.0805668 0.0152511 -0.0678443 0.015321 -0.0573034 0.0154117 -0.0486241 0.015519 -0.0414927 0.0156348 -0.0355698 0.0157476 -0.0305584 0.0158439 -0.0261322 0.0159095 -0.0220848 0.0159334 -0.0181395 0.0159057 -0.0142459 0.0158271 -0.0101347 0.0156946 -0.00593426 0.0155265 -0.00125145 0.0153221 0.00349063 0.015119 0.00902631 0.0149114 0.0142098 0.0147123 0.0208283 0.0272856 0.0165002 -1.17022 0.0111429 -1.0705 0.00883309 -0.981503 0.00825147 -0.899129 0.00848606 -0.824671 0.009149 -0.757147 0.0100176 -0.693612 0.01091 -0.631777 0.011716 -0.570732 0.0123864 -0.510718 0.0129114 -0.452628 0.0133046 -0.397546 0.013591 -0.346395 0.0137982 -0.299763 0.0139501 -0.25789 0.0140656 -0.220738 0.0141578 -0.188091 0.0142359 -0.159633 0.0143064 -0.135008 0.0143745 -0.113861 0.0144448 -0.0958481 0.0145216 -0.0806436 0.0146089 -0.0679316 0.0147095 -0.057404 0.0148237 -0.0487383 0.0149484 -0.0416174 0.0150767 -0.0356981 0.0151979 -0.0306796 0.0152991 -0.0262334 0.0153668 -0.0221525 0.0153908 -0.0181634 0.0153621 -0.0142171 0.0152822 -0.0100548 0.0151493 -0.00580136 0.0149829 -0.00108507 0.0147832 0.00369036 0.0145895 0.00922007 0.0143931 0.0144061 0.0142142 0.0210072 0.0273795 0.0145741 -1.15963 0.00833082 -1.06425 0.0055197 -0.978692 0.00474496 -0.898354 0.00495698 -0.824883 0.00569494 -0.757885 0.00671599 -0.694633 0.00782062 -0.632882 0.0088766 -0.571788 0.00981545 -0.511656 0.0106115 -0.453424 0.0112656 -0.3982 0.011794 -0.346923 0.0122188 -0.300188 0.012562 -0.258233 0.0128422 -0.221019 0.0130741 -0.188323 0.013269 -0.159827 0.0134358 -0.135175 0.0135824 -0.114008 0.0137158 -0.0959815 0.0138429 -0.0807706 0.0139696 -0.0680584 0.0141008 -0.0575352 0.0142383 -0.0488758 0.0143805 -0.0417596 0.0145214 -0.035839 0.0146512 -0.0308094 0.0147578 -0.02634 0.0148283 -0.022223 0.0148532 -0.0181883 0.0148244 -0.0141883 0.0147443 -0.00997467 0.0146122 -0.00566927 0.0144488 -0.00092169 0.014255 0.00388415 0.0140718 0.00940329 0.0138879 0.01459 0.0137302 0.0211649 0.0274547 0.0126464 -1.14785 0.00551663 -1.05712 0.00219054 -0.975365 0.00121656 -0.89738 0.00140571 -0.825073 0.00221766 -0.758697 0.00339059 -0.695806 0.0047097 -0.634201 0.00601973 -0.573098 0.00723148 -0.512868 0.00830269 -0.454496 0.00922134 -0.399119 0.00999444 -0.347696 0.010639 -0.300832 0.011175 -0.258769 0.0116211 -0.221465 0.0119934 -0.188695 0.0123056 -0.16014 0.0125691 -0.135439 0.0127943 -0.114233 0.0129909 -0.0961781 0.0131681 -0.0809478 0.0133343 -0.0682245 0.0134959 -0.0576968 0.0136567 -0.0490366 0.0138163 -0.0419193 0.0139699 -0.0359926 0.0141086 -0.0309481 0.014221 -0.0264524 0.0142948 -0.0222968 0.0143213 -0.0182149 0.0142933 -0.0141603 0.014214 -0.0098954 0.0140839 -0.00553913 0.0139247 -0.000762477 0.013738 0.00407081 0.0135664 0.00957493 0.013396 0.0147604 0.0132601 0.0213009 0.027511 0.0107193 -1.13494 0.00271887 -1.04912 -0.00113275 -0.971514 -0.00232168 -0.896191 -0.00216408 -0.82523 -0.00128264 -0.759578 4.04095e-05 -0.697129 0.0015757 -0.635736 0.00314375 -0.574666 0.00463293 -0.514357 0.00598365 -0.455846 0.00717062 -0.400306 0.00819162 -0.348717 0.00905846 -0.301699 0.00978906 -0.2595 0.0104024 -0.222078 0.0109162 -0.189209 0.0113463 -0.16057 0.011707 -0.135799 0.0120111 -0.114537 0.012271 -0.096438 0.0124984 -0.0811752 0.0127038 -0.0684299 0.0128958 -0.0578888 0.0130797 -0.0492205 0.0132567 -0.0420963 0.0134232 -0.036159 0.0135709 -0.0310959 0.0136894 -0.0265709 0.0137672 -0.0223745 0.0137961 -0.0182437 0.0137697 -0.0141339 0.0136922 -0.00981792 0.0135651 -0.00541201 0.0134111 -0.000608528 0.0132327 0.00424923 0.0130735 0.00973408 0.0129175 0.0149164 0.0128039 0.0214145 0.0275481 0.00880774 -1.12098 -3.51752e-05 -1.04028 -0.00444355 -0.967105 -0.00588259 -0.894752 -0.00576867 -0.825344 -0.00481727 -0.76053 -0.00334117 -0.698605 -0.00158551 -0.637492 0.000245766 -0.576497 0.0020176 -0.516129 0.00365261 -0.457481 0.00511211 -0.401765 0.00638455 -0.34999 0.00747648 -0.302791 0.00840391 -0.260427 0.00918615 -0.22286 0.00984263 -0.189866 0.0103916 -0.161119 0.0108499 -0.136258 0.0112334 -0.114921 0.0115569 -0.0967615 0.0118345 -0.0814528 0.0120791 -0.0686745 0.0123013 -0.058111 0.0125084 -0.0494275 0.0127028 -0.0422907 0.0128821 -0.0363383 0.0130391 -0.0312529 0.0131641 -0.0266959 0.0132462 -0.0224567 0.0132781 -0.0182756 0.0132542 -0.0141099 0.0131794 -0.00974315 0.0130563 -0.0052889 0.0129086 -0.000460842 0.0127394 0.00441844 0.0125935 0.00987997 0.0124526 0.0150573 0.0123616 0.0215055 0.0275659 0.00691807 -1.10605 -0.00277984 -1.03058 -0.00781723 -0.962068 -0.0095398 -0.89303 -0.00945798 -0.825426 -0.00841418 -0.761573 -0.00676922 -0.70025 -0.00478268 -0.639478 -0.00267974 -0.5786 -0.000618152 -0.518191 0.00130704 -0.459407 0.00304399 -0.403502 0.00457194 -0.351517 0.00589225 -0.304111 0.00701908 -0.261554 0.0079722 -0.223813 0.00877283 -0.190666 0.00944175 -0.161788 0.00999857 -0.136814 0.0104618 -0.115384 0.0108492 -0.0971488 0.0111772 -0.0817809 0.011461 -0.0689584 0.0117135 -0.0583635 0.0119435 -0.0496575 0.0121553 -0.0425025 0.0123474 -0.0365305 0.0125139 -0.0314194 0.0126457 -0.0268277 0.0127328 -0.0225437 0.0127683 -0.0183112 0.0127475 -0.0140892 0.0126763 -0.00967196 0.0125582 -0.00517072 0.0124176 -0.00032033 0.0122585 0.00457756 0.0121265 0.0100119 0.0120014 0.0151824 0.0119332 0.0215737 0.0275645 0.00497638 -1.09018 -0.0056702 -1.01994 -0.0113896 -0.956349 -0.0133696 -0.89105 -0.0132666 -0.825529 -0.0120897 -0.76275 -0.0102538 -0.702086 -0.00802364 -0.641708 -0.00563885 -0.580985 -0.00327887 -0.520551 -0.00105639 -0.461629 0.000963855 -0.405522 0.0027521 -0.353306 0.00430462 -0.305664 0.00563387 -0.262883 0.0067602 -0.22494 0.00770676 -0.191613 0.00849694 -0.162578 0.00915321 -0.137471 0.00969697 -0.115928 0.0101486 -0.0976004 0.0105272 -0.0821595 0.0108503 -0.0692815 0.011133 -0.0586461 0.0113859 -0.0499105 0.011615 -0.0427315 0.0118201 -0.0367356 0.0119962 -0.0315956 0.0121351 -0.0269666 0.0122275 -0.022636 0.0122672 -0.0183509 0.0122504 -0.0140723 0.0121836 -0.00960513 0.0120712 -0.0050583 0.0119386 -0.00018781 0.0117903 0.00472585 0.0116728 0.0101295 0.0115639 0.0152913 0.0115184 0.0216192 0.0275441 0.00284804 -1.07331 -0.0087639 -1.00832 -0.0150712 -0.950041 -0.0172362 -0.888885 -0.017088 -0.825677 -0.0157808 -0.764057 -0.0137642 -0.704102 -0.0112957 -0.644177 -0.00862784 -0.583653 -0.00596474 -0.523214 -0.00343926 -0.464155 -0.00113012 -0.407832 0.000923427 -0.355359 0.00271238 -0.307453 0.00424746 -0.264418 0.00554969 -0.226242 0.00664425 -0.192707 0.00755725 -0.163491 0.00831411 -0.138227 0.00893917 -0.116553 0.00945555 -0.0981168 0.00988508 -0.082589 0.0102477 -0.0696441 0.0105605 -0.058959 0.0108363 -0.0501863 0.0110826 -0.0429778 0.0113007 -0.0369537 0.0114866 -0.0317815 0.0116329 -0.0271129 0.011731 -0.0227342 0.0117756 -0.0183955 0.0117633 -0.01406 0.0117016 -0.00954341 0.0115957 -0.00495242 0.0114719 -6.40122e-05 0.0113351 0.00486266 0.0112325 0.0102321 0.0111401 0.0153837 0.0111172 0.021642 0.027505 0.000694097 -1.05553 -0.0115142 -0.996116 -0.018254 -0.943302 -0.0206907 -0.886448 -0.0206491 -0.825719 -0.019334 -0.765373 -0.0172148 -0.706222 -0.0145524 -0.646839 -0.0116231 -0.586582 -0.00866472 -0.526172 -0.00583706 -0.466982 -0.00323655 -0.410432 -0.000914 -0.357682 0.00111518 -0.309482 0.00285947 -0.266162 0.00434039 -0.227723 0.0055852 -0.193952 0.00662275 -0.164528 0.0074815 -0.139086 0.00818879 -0.11726 0.0087706 -0.0986986 0.00925143 -0.0830698 0.00965367 -0.0700464 0.00999674 -0.059302 0.0102954 -0.050485 0.0105589 -0.0432413 0.01079 -0.0371847 0.0109858 -0.0319772 0.0111398 -0.0272668 0.0112441 -0.0228385 0.011294 -0.0184454 0.0112869 -0.014053 0.011231 -0.00948749 0.0111323 -0.00485376 0.0110179 5.04257e-05 0.0108931 0.00498744 0.0108056 0.0103196 0.01073 0.0154594 0.0107294 0.0216425 0.0274476 -0.000751191 -1.03771 -0.013074 -0.983794 -0.0204762 -0.935899 -0.023566 -0.883358 -0.0239042 -0.825381 -0.0227278 -0.766549 -0.0205837 -0.708366 -0.0177738 -0.649649 -0.0146099 -0.589746 -0.0113694 -0.529413 -0.00824425 -0.470107 -0.00535247 -0.413324 -0.00275875 -0.360276 -0.000486372 -0.311754 0.00147014 -0.268119 0.00313247 -0.229385 0.00452976 -0.19535 0.00569365 -0.165692 0.00665567 -0.140048 0.00744621 -0.118051 0.00809415 -0.0993465 0.00862671 -0.0836024 0.00906883 -0.0704885 0.00944222 -0.0596754 0.00976377 -0.0508065 0.0100445 -0.043522 0.0102886 -0.0374288 0.0104944 -0.0321831 0.0106563 -0.0274287 0.0107671 -0.0229493 0.0108228 -0.0185012 0.0108216 -0.0140517 0.010772 -0.00943797 0.0106812 -0.00476295 0.0105767 0.000154953 0.0104644 0.00509976 0.0103922 0.0103917 0.0103335 0.0155181 0.0103549 0.0216211 0.0273722 -0.00157306 -1.02072 -0.0145631 -0.970804 -0.023191 -0.927271 -0.0270826 -0.879466 -0.0276843 -0.824779 -0.0264639 -0.767769 -0.0241579 -0.710672 -0.0211206 -0.652687 -0.017676 -0.593191 -0.0141253 -0.532963 -0.0106852 -0.473548 -0.00749071 -0.416518 -0.00461776 -0.363149 -0.00209611 -0.314276 7.73131e-05 -0.270292 0.00192467 -0.231233 0.00347727 -0.196902 0.00476967 -0.166985 0.00583659 -0.141115 0.00671157 -0.118926 0.00742647 -0.100061 0.00801131 -0.0841872 0.0084936 -0.0709708 0.00889745 -0.0600793 0.00924191 -0.051151 0.00953985 -0.04382 0.00979701 -0.037686 0.010013 -0.032399 0.010183 -0.0275987 0.0103007 -0.0230671 0.0103627 -0.0185632 0.0103677 -0.0140567 0.0103252 -0.00939542 0.0102428 -0.00468051 0.0101486 0.000249106 0.0100491 0.00519928 0.00999241 0.0104484 0.0099505 0.01556 0.0099933 0.0215783 0.0272794 -0.00517203 -1.00208 -0.0201703 -0.955805 -0.0295589 -0.917883 -0.0333187 -0.875707 -0.033301 -0.824797 -0.0313796 -0.769691 -0.028478 -0.713573 -0.0249364 -0.656228 -0.0210342 -0.597093 -0.0170615 -0.536936 -0.0132375 -0.477372 -0.00969814 -0.420058 -0.00651961 -0.366327 -0.00373172 -0.317064 -0.00133013 -0.272694 0.000709951 -0.233273 0.00242322 -0.198615 0.00384794 -0.168409 0.00502247 -0.14229 0.00598381 -0.119887 0.00676701 -0.100845 0.00740502 -0.0848253 0.00792803 -0.0714938 0.00836265 -0.0605139 0.00873015 -0.0515185 0.00904538 -0.0441352 0.00931569 -0.0379563 0.00954193 -0.0326252 0.00972034 -0.0277772 0.00984532 -0.023192 0.00991401 -0.0186318 0.0099258 -0.0140685 0.00989071 -0.00936033 0.00981713 -0.00460693 0.00973373 0.000332499 0.00964727 0.00528575 0.00960606 0.0104896 0.00958091 0.0155852 0.00964452 0.0215147 0.0271699 -0.0141783 -0.976913 -0.0300307 -0.939953 -0.0385389 -0.909375 -0.0411269 -0.873119 -0.0399458 -0.825978 -0.0370375 -0.772599 -0.0333423 -0.717269 -0.0291409 -0.66043 -0.0246639 -0.60157 -0.020185 -0.541415 -0.0159175 -0.481639 -0.0119919 -0.423983 -0.00847921 -0.36984 -0.00540515 -0.320138 -0.00276133 -0.275338 -0.000518492 -0.235516 0.00136268 -0.200497 0.00292494 -0.169972 0.00421087 -0.143576 0.00526131 -0.120937 0.00611475 -0.101698 0.00680725 -0.0855178 0.00737186 -0.0720584 0.00783777 -0.0609798 0.00822863 -0.0519094 0.00856133 -0.0444679 0.00884493 -0.0382399 0.00908163 -0.0328619 0.00926867 -0.0279642 0.00940121 -0.0233246 0.00947698 -0.0187076 0.009496 -0.0140875 0.00946882 -0.00933315 0.0094045 -0.00454262 0.00933218 0.000404825 0.00925893 0.00535899 0.00923312 0.0105154 0.00922454 0.0155938 0.00930829 0.021431 0.0270441 -0.016288 -0.952366 -0.0306222 -0.925619 -0.039618 -0.900379 -0.0430207 -0.869716 -0.0425849 -0.826414 -0.0401462 -0.775038 -0.0366196 -0.720795 -0.0323752 -0.664674 -0.0277187 -0.606226 -0.0229766 -0.546157 -0.0184084 -0.486207 -0.0141778 -0.428214 -0.0103761 -0.373641 -0.00704059 -0.323474 -0.00416777 -0.278211 -0.00172908 -0.237954 0.000316522 -0.202542 0.00201469 -0.17167 0.00341133 -0.144972 0.00455062 -0.122077 0.00547425 -0.102622 0.00622123 -0.0862647 0.0068274 -0.0726646 0.00732454 -0.0614769 0.00773865 -0.0523235 0.00808872 -0.044818 0.00838557 -0.0385367 0.00863278 -0.0331092 0.0088286 -0.02816 0.00896895 -0.0234649 0.00905214 -0.0187908 0.00907874 -0.0141141 0.00905984 -0.00931424 0.00900509 -0.00448787 0.00894404 0.000465875 0.00888408 0.00541896 0.0088735 0.010526 0.00888121 0.0155861 0.00898437 0.0213278 0.0269027 0.0142819 -0.960984 -0.00513212 -0.906205 -0.0207401 -0.884771 -0.030951 -0.859505 -0.0361203 -0.821244 -0.0373564 -0.773802 -0.0360328 -0.722119 -0.0331053 -0.667601 -0.0291789 -0.610153 -0.0247559 -0.55058 -0.02025 -0.490713 -0.0159408 -0.432523 -0.0119919 -0.37759 -0.00848431 -0.326981 -0.00543989 -0.281255 -0.00284302 -0.240551 -0.00065828 -0.204727 0.00115846 -0.173487 0.00265372 -0.146467 0.00387328 -0.123296 0.00486093 -0.103609 0.00565791 -0.0870617 0.00630237 -0.073309 0.00682835 -0.0620029 0.00726403 -0.0527592 0.00763033 -0.0451843 0.00793973 -0.0388461 0.00819707 -0.0333665 0.00840155 -0.0283645 0.00854976 -0.0236131 0.00864052 -0.0188816 0.0086749 -0.0141485 0.00866444 -0.00930378 0.00861944 -0.00444286 0.00856964 0.000515672 0.00852296 0.00546564 0.00852713 0.0105218 0.00855097 0.0155622 0.00867229 0.0212065 0.0267463 0.39671 -0.870667 -0.487028 0.347848 -0.857342 0.300426 -0.837348 0.252009 -0.811088 0.210491 -0.779726 0.177564 -0.740875 0.150556 -0.69511 0.127515 -0.644561 0.107831 -0.590469 0.0911407 -0.533889 0.077057 -0.476629 0.0652763 -0.420743 0.0555429 -0.367857 0.0475919 -0.31903 0.0411554 -0.274819 0.035981 -0.235377 0.0318426 -0.200589 0.0285459 -0.17019 0.0259295 -0.143851 0.0238628 -0.121229 0.0222415 -0.101988 0.020983 -0.0858032 0.0200206 -0.0723467 0.0192976 -0.0612799 0.0187624 -0.0522239 0.0183641 -0.044786 0.0180536 -0.0385356 0.017783 -0.0330959 0.0175128 -0.0280943 0.0172124 -0.0233128 0.0168693 -0.0185385 0.0164819 -0.013761 0.0160724 -0.00889425 0.0156625 -0.00403297 0.0153055 0.000872643 0.0150182 0.00575297 0.0148766 0.0106634 0.0148254 0.0156134 0.0149889 0.0210429 0.0264815 0.429258 -0.784677 -0.515248 0.364896 -0.79298 0.310769 -0.783221 0.264191 -0.76451 0.22445 -0.739986 0.191039 -0.707464 0.162739 -0.66681 0.138356 -0.620178 0.117299 -0.569412 0.0992714 -0.515862 0.0839788 -0.461337 0.0711382 -0.407902 0.0604866 -0.357205 0.051749 -0.310293 0.0446439 -0.267713 0.0389048 -0.229638 0.0342922 -0.195976 0.0305994 -0.166497 0.0276534 -0.140905 0.025313 -0.118889 0.023465 -0.10014 0.0220188 -0.084357 0.020901 -0.0712289 0.0200487 -0.0604276 0.0194049 -0.05158 0.0189134 -0.0442945 0.0185202 -0.0381424 0.0181733 -0.032749 0.0178306 -0.0277516 0.0174602 -0.0229423 0.0170504 -0.0181287 0.016602 -0.0133126 0.016141 -0.00843324 0.0156937 -0.00358567 0.0153164 0.00124994 0.0150292 0.00604015 0.0149061 0.0107865 0.014891 0.0156285 0.015107 0.0208269 0.0261668 0.467596 -0.705584 -0.546689 0.403495 -0.72888 0.347736 -0.727462 0.297112 -0.713887 0.252329 -0.695203 0.214229 -0.669364 0.181982 -0.634563 0.154238 -0.592434 0.130252 -0.545426 0.109731 -0.495341 0.0923957 -0.444001 0.0779149 -0.393421 0.0659601 -0.345251 0.056195 -0.300527 0.04828 -0.259798 0.0418983 -0.223256 0.0367711 -0.190849 0.0326619 -0.162388 0.0293758 -0.137619 0.0267553 -0.116269 0.0246749 -0.0980597 0.0230348 -0.0827169 0.0217543 -0.0699484 0.0207643 -0.0594376 0.0200023 -0.0508181 0.0194074 -0.0436995 0.018921 -0.037656 0.0184874 -0.0323154 0.0180625 -0.0273267 0.0176135 -0.0224933 0.0171306 -0.0176458 0.0166172 -0.0127993 0.0161037 -0.00791969 0.0156208 -0.00310281 0.0152279 0.0016428 0.0149473 0.00632075 0.0148508 0.010883 0.0148793 0.0156001 0.0151553 0.0205509 0.0257983 0.491842 -0.626723 -0.570702 0.422792 -0.65983 0.364638 -0.669308 0.314633 -0.663882 0.270446 -0.651015 0.231595 -0.630513 0.197774 -0.600742 0.168208 -0.562868 0.142324 -0.519542 0.119943 -0.47296 0.100912 -0.42497 0.0849539 -0.377463 0.0717396 -0.332036 0.0609219 -0.28971 0.0521423 -0.251019 0.045058 -0.216171 0.0393627 -0.185154 0.0347946 -0.15782 0.0311363 -0.133961 0.0282121 -0.113344 0.0258815 -0.0957292 0.0240332 -0.0808686 0.0225774 -0.0684925 0.0214377 -0.0582979 0.0205459 -0.0499262 0.0198355 -0.0429892 0.019244 -0.0370645 0.0187124 -0.0317838 0.0181949 -0.0268092 0.0176591 -0.0219575 0.017097 -0.0170837 0.0165159 -0.0122181 0.0159502 -0.00735401 0.0154356 -0.00258815 0.0150334 0.00204498 0.0147677 0.00658644 0.0147059 0.0109448 0.0147869 0.0155191 0.0151286 0.0202092 0.0253713 0.518584 -0.554318 -0.59099 0.453195 -0.59444 0.396059 -0.612172 0.344581 -0.612404 0.297206 -0.60364 0.254511 -0.587818 0.217005 -0.563236 0.184267 -0.53013 0.155686 -0.490961 0.130987 -0.448261 0.109998 -0.403981 0.0924185 -0.359884 0.0778659 -0.317484 0.0659412 -0.277785 0.0562478 -0.241325 0.0484114 -0.208335 0.0420994 -0.178842 0.0370275 -0.152748 0.0329584 -0.129892 0.0296985 -0.110084 0.0270922 -0.0931229 0.0250151 -0.0787915 0.0233667 -0.0668442 0.0220621 -0.0569933 0.021026 -0.0488901 0.0201865 -0.0421496 0.0194766 -0.0363547 0.0188347 -0.0311419 0.0182143 -0.0261887 0.0175835 -0.0213268 0.0169375 -0.0164376 0.0162873 -0.011568 0.015672 -0.00673862 0.0151314 -0.0020476 0.0147281 0.00244833 0.0144871 0.00682744 0.014469 0.0109628 0.0146118 0.0153763 0.0150237 0.0197973 0.0248812 0.540427 -0.487053 -0.607691 0.475273 -0.529286 0.41604 -0.552939 0.36337 -0.559735 0.315886 -0.556155 0.272684 -0.544616 0.233777 -0.52433 0.199168 -0.495521 0.168629 -0.460421 0.142024 -0.421657 0.119276 -0.381233 0.100151 -0.340759 0.0842744 -0.301607 0.0712272 -0.264738 0.0605896 -0.230688 0.0519634 -0.199709 0.0449936 -0.171872 0.0393762 -0.14713 0.0348567 -0.125372 0.0312258 -0.106453 0.0283134 -0.0902105 0.0259819 -0.07646 0.0241193 -0.0649816 0.022631 -0.055505 0.0214337 -0.0476928 0.0204491 -0.0411651 0.0196063 -0.0355119 0.0188413 -0.0303769 0.0181073 -0.0254547 0.0173744 -0.020594 0.016641 -0.0157042 0.0159228 -0.0108498 0.0152626 -0.0060784 0.0147045 -0.0014895 0.0143102 0.00284268 0.0141049 0.00703268 0.01414 0.0109278 0.0143537 0.0151626 0.0148395 0.0193115 0.0243228 0.558868 -0.42554 -0.620381 0.497795 -0.468213 0.440913 -0.496056 0.388777 -0.507599 0.340043 -0.507421 0.294307 -0.498881 0.252381 -0.482404 0.214924 -0.458064 0.18196 -0.427457 0.153298 -0.392994 0.128769 -0.356704 0.10811 -0.3201 0.0909213 -0.284418 0.07675 -0.250567 0.0651517 -0.219089 0.0557086 -0.190266 0.0480474 -0.164211 0.0418477 -0.140931 0.0368404 -0.120365 0.0328026 -0.102416 0.0295512 -0.0869591 0.0269362 -0.073845 0.0248341 -0.0628795 0.0231397 -0.0538106 0.021761 -0.0463141 0.0206134 -0.0400175 0.0196216 -0.0345202 0.0187199 -0.0294751 0.0178622 -0.024597 0.0170212 -0.019753 0.0161992 -0.0148822 0.0154165 -0.0100671 0.0147192 -0.00538109 0.0141545 -0.000924795 0.0137812 0.00321598 0.0136238 0.00719006 0.0137215 0.01083 0.0140148 0.0148693 0.0145772 0.0187491 0.0236906 0.574089 -0.369744 -0.629885 0.516558 -0.410683 0.460296 -0.439794 0.407063 -0.454366 0.357186 -0.457544 0.310636 -0.45233 0.267732 -0.4395 0.228926 -0.419258 0.194423 -0.392954 0.164208 -0.362779 0.138187 -0.330684 0.11615 -0.298063 0.0977267 -0.265994 0.0824646 -0.235305 0.0699099 -0.206535 0.0596355 -0.179991 0.0512575 -0.155833 0.044444 -0.134117 0.0389146 -0.114835 0.0344349 -0.0979359 0.0308109 -0.0833351 0.0278812 -0.0709153 0.025511 -0.0605093 0.0235849 -0.0518845 0.022002 -0.0447312 0.0206709 -0.0386864 0.0195126 -0.0333618 0.0184603 -0.0284228 0.0174694 -0.0236061 0.0165161 -0.0187997 0.0156068 -0.0139728 0.0147662 -0.00922648 0.0140426 -0.00465755 0.0134848 -0.000366994 0.0131463 0.00355446 0.0130495 0.00728692 0.0132191 0.0106604 0.0135998 0.0144886 0.0142412 0.0181077 0.0229773 0.585405 -0.318951 -0.636199 0.531574 -0.356852 0.477472 -0.385692 0.425207 -0.402101 0.375393 -0.40773 0.328013 -0.40495 0.283536 -0.395023 0.242852 -0.378574 0.206578 -0.35668 0.17483 -0.331031 0.147453 -0.303306 0.124175 -0.274786 0.104615 -0.246434 0.0883205 -0.21901 0.074834 -0.193048 0.0637282 -0.168886 0.0546174 -0.146722 0.0471644 -0.126664 0.041082 -0.108753 0.0361275 -0.0929815 0.0320975 -0.079305 0.0288206 -0.0676384 0.0261518 -0.0578405 0.0239658 -0.0496985 0.022153 -0.0429184 0.0206159 -0.0371494 0.0192723 -0.0320182 0.0180553 -0.0272058 0.0169228 -0.0224737 0.0158552 -0.0177321 0.0148629 -0.0129805 0.0139745 -0.00833807 0.0132388 -0.00392182 0.0127037 0.000168019 0.0124151 0.00384309 0.0123915 0.00731055 0.0126417 0.0104102 0.0131168 0.0140135 0.0138397 0.0173848 0.0221737 0.59219 -0.272479 -0.638662 0.541876 -0.306538 0.489852 -0.333668 0.438154 -0.350402 0.387987 -0.357564 0.340065 -0.357028 0.295137 -0.350095 0.253977 -0.337415 0.217074 -0.319777 0.184539 -0.298496 0.156263 -0.27503 0.132023 -0.250546 0.111492 -0.225904 0.0942589 -0.201776 0.0798882 -0.178678 0.0679668 -0.156964 0.0581176 -0.136873 0.0500065 -0.118553 0.0433445 -0.102091 0.0378845 -0.0875214 0.0334158 -0.0748363 0.029759 -0.0639815 0.0267596 -0.0548412 0.0242834 -0.0472223 0.0222131 -0.040848 0.0204459 -0.0353822 0.0188974 -0.0304697 0.017502 -0.0258104 0.0162211 -0.0211928 0.0150397 -0.0165508 0.0139723 -0.011913 0.0130496 -0.00741542 0.0123187 -0.00319095 0.0118243 0.000662484 0.0116012 0.00406617 0.011663 0.00724872 0.0120019 0.0100713 0.0125775 0.013438 0.0133861 0.0165762 0.0212669 0.593138 -0.229678 -0.635939 0.546053 -0.259453 0.496439 -0.284054 0.446303 -0.300266 0.397154 -0.308414 0.349934 -0.309808 0.305345 -0.305507 0.264079 -0.296149 0.226724 -0.282422 0.193573 -0.265345 0.164607 -0.246064 0.139617 -0.225556 0.118284 -0.204571 0.100225 -0.183717 0.0850362 -0.163489 0.0723299 -0.144258 0.0617476 -0.12629 0.052967 -0.109772 0.0457038 -0.0948278 0.0397103 -0.0815279 0.034772 -0.069898 0.0307027 -0.0599122 0.0273402 -0.0514787 0.0245424 -0.0444245 0.0221854 -0.038491 0.0201628 -0.0333596 0.0183894 -0.0286964 0.0168028 -0.0242238 0.0153687 -0.0197586 0.0140773 -0.0152594 0.0129458 -0.0107816 0.0120057 -0.00647531 0.0112992 -0.00248448 0.0108642 0.00109751 0.0107224 0.00420795 0.010881 0.00709016 0.011316 0.00963633 0.0119981 0.0127559 0.0128998 0.0156745 0.0202393 0.586859 -0.190258 -0.626279 0.543083 -0.215677 0.49639 -0.237361 0.448567 -0.252444 0.401149 -0.260995 0.355237 -0.263896 0.311664 -0.261934 0.271153 -0.255637 0.234264 -0.245534 0.201275 -0.232356 0.17218 -0.216968 0.146808 -0.200184 0.124907 -0.18267 0.106167 -0.164977 0.0902451 -0.147567 0.0767977 -0.13081 0.0654979 -0.11499 0.0560438 -0.100318 0.0481626 -0.0869467 0.0416112 -0.0749765 0.0361741 -0.0644608 0.0316606 -0.0553988 0.0279025 -0.0477206 0.0247512 -0.0412732 0.0220778 -0.0358176 0.0197742 -0.0310559 0.0177566 -0.0266788 0.0159673 -0.0224344 0.0143776 -0.0181689 0.0129828 -0.0138645 0.0118017 -0.00960055 0.0108635 -0.00553716 0.0102025 -0.00182348 0.00984606 0.00145399 0.00980063 0.00425338 0.010066 0.00682479 0.0106043 0.00909803 0.0113997 0.0119605 0.0124068 0.0146673 0.0190674 0.572789 -0.154384 -0.608663 0.532721 -0.175608 0.489616 -0.194256 0.44504 -0.207868 0.40045 -0.216405 0.356967 -0.220413 0.315421 -0.220388 0.276466 -0.216683 0.240608 -0.209676 0.208153 -0.199901 0.179192 -0.188007 0.153651 -0.174643 0.131355 -0.160374 0.112063 -0.145685 0.0954951 -0.130999 0.0813577 -0.116673 0.0693632 -0.102996 0.0592379 -0.0901931 0.050727 -0.0784357 0.0435964 -0.067846 0.0376335 -0.0584979 0.0326457 -0.050411 0.0284603 -0.0435351 0.0249238 -0.0377367 0.0219047 -0.0327985 0.0192951 -0.0284463 0.0170152 -0.0243989 0.0150136 -0.0204328 0.0132683 -0.0164237 0.0117794 -0.0123757 0.0105655 -0.00838663 0.00965023 -0.00462185 0.00905609 -0.00122934 0.00879636 0.00171372 0.0088611 0.00418865 0.00924218 0.0064437 0.0098915 0.00844871 0.0108088 0.0110432 0.0119401 0.013536 0.0177207 0.551987 -0.122446 -0.583925 0.516148 -0.13977 0.477306 -0.155414 0.436784 -0.167346 0.395855 -0.175476 0.355542 -0.1801 0.316634 -0.18148 0.279759 -0.179808 0.245416 -0.175333 0.213942 -0.168426 0.185494 -0.159559 0.160079 -0.149228 0.137601 -0.137897 0.117904 -0.125988 0.100783 -0.113878 0.0860108 -0.101901 0.0733482 -0.0903333 0.0625577 -0.0794027 0.0534086 -0.0692866 0.0456808 -0.0601181 0.0391675 -0.0519847 0.0336769 -0.0449204 0.0290337 -0.0388919 0.0250819 -0.0337849 0.0216889 -0.0294056 0.0187499 -0.0255073 0.0161912 -0.0218403 0.0139699 -0.0182115 0.0120715 -0.0145252 0.0104998 -0.010804 0.00927081 -0.00715765 0.00839913 -0.00375018 0.00789204 -0.000722251 0.00774536 0.0018604 0.00793237 0.00400164 0.00843718 0.00593889 0.00920642 0.00767947 0.0102571 0.00999245 0.0115382 0.012255 0.0161623 0.527315 -0.0946959 -0.555065 0.496009 -0.108464 0.461794 -0.121199 0.42575 -0.131303 0.388937 -0.138662 0.352238 -0.143401 0.316373 -0.145615 0.281937 -0.145372 0.249417 -0.142814 0.219178 -0.138187 0.191442 -0.131823 0.166305 -0.124091 0.143766 -0.115358 0.123755 -0.105977 0.106148 -0.0962712 0.0907832 -0.0865354 0.0774745 -0.0770246 0.0660243 -0.0679525 0.0562297 -0.0594919 0.047888 -0.0517765 0.0408017 -0.0448983 0.0347817 -0.0389004 0.0296523 -0.0337625 0.0252567 -0.0293894 0.021464 -0.0256128 0.0181744 -0.0222177 0.015323 -0.0189888 0.0128768 -0.0157653 0.0108289 -0.0124774 0.00918609 -0.00916114 0.00795899 -0.00593056 0.00714965 -0.00294083 0.00674683 -0.000319432 0.00672649 0.00188074 0.00704583 0.00368231 0.00768181 0.00530291 0.00858147 0.00677981 0.00978058 0.00879335 0.0112427 0.0107928 0.0143494 0.502793 -0.0709676 -0.526521 0.475854 -0.0815246 0.446134 -0.0914786 0.414481 -0.0996498 0.381738 -0.105919 0.348641 -0.110304 0.315823 -0.112797 0.283846 -0.113395 0.253192 -0.11216 0.22425 -0.109245 0.1973 -0.104873 0.172517 -0.0993081 0.149986 -0.0928275 0.129718 -0.085709 0.111666 -0.0782185 0.0957329 -0.0706025 0.081789 -0.0630808 0.0696783 -0.0558418 0.059228 -0.0490416 0.0502555 -0.0428039 0.0425742 -0.037217 0.0359999 -0.0323261 0.0303583 -0.0281208 0.0254936 -0.0245247 0.0212782 -0.0213975 0.0176199 -0.0185594 0.0144642 -0.0158331 0.0117892 -0.0130904 0.00959578 -0.0102839 0.00789177 -0.00745713 0.00668019 -0.00471897 0.00594736 -0.00220801 0.0056612 -3.32742e-05 0.00577644 0.0017655 0.00623566 0.00322309 0.00700976 0.00452881 0.00805161 0.00573796 0.0094168 0.00742816 0.0110938 0.00911587 0.0122364 0.482654 -0.0506416 -0.50298 0.459426 -0.0582964 0.433565 -0.0656177 0.405711 -0.0717957 0.376514 -0.0767227 0.346574 -0.080363 0.316443 -0.0826662 0.286641 -0.0835929 0.257642 -0.0831601 0.22985 -0.0814535 0.203591 -0.0786143 0.179103 -0.0748199 0.156543 -0.0702675 0.135996 -0.065162 0.117483 -0.0597054 0.10097 -0.0540895 0.0863774 -0.0484883 0.0735902 -0.0430545 0.0624654 -0.0379169 0.0528407 -0.0331792 0.0445415 -0.0289178 0.0373892 -0.0251739 0.0312119 -0.0219435 0.025856 -0.0191688 0.0211988 -0.0167403 0.017157 -0.0145176 0.0136876 -0.0123637 0.0107804 -0.0101831 0.00844315 -0.00794666 0.00668356 -0.00569754 0.00549478 -0.0035302 0.00484543 -0.00155865 0.00468136 0.000130791 0.00493604 0.00151083 0.0055393 0.00261982 0.00645727 0.00361084 0.00765276 0.00454247 0.00920247 0.00587845 0.0111243 0.00719405 0.0097791 0.470701 -0.0327827 -0.48856 0.450185 -0.03778 0.427177 -0.0426095 0.402149 -0.0467675 0.375598 -0.0501724 0.348014 -0.0527786 0.319879 -0.0545315 0.291674 -0.0553877 0.263857 -0.0553431 0.236844 -0.0544401 0.21099 -0.0527601 0.186581 -0.0504112 0.163833 -0.0475191 0.142889 -0.0442184 0.123829 -0.040645 0.10667 -0.0369304 0.091377 -0.0331959 0.0778716 -0.0295491 0.0660373 -0.0260826 0.05573 -0.0228719 0.0467859 -0.0199737 0.0390318 -0.0174197 0.0322978 -0.0152095 0.0264328 -0.0133037 0.0213192 -0.0116267 0.0168827 -0.0100811 0.0130919 -0.0085729 0.00994744 -0.00703865 0.00746347 -0.00546269 0.00564608 -0.00388016 0.00447755 -0.00236166 0.00390818 -0.000989286 0.00386215 0.000176823 0.00425283 0.00112015 0.0049992 0.00187346 0.00606376 0.00254628 0.00742105 0.00318518 0.00917053 0.00412898 0.0113553 0.00500931 0.00694211 0.470416 -0.0163037 -0.486895 0.451428 -0.0187913 0.430033 -0.0212149 0.406591 -0.0233255 0.3815 -0.0250815 0.355175 -0.0264533 0.32805 -0.0274068 0.300577 -0.0279146 0.273203 -0.0279696 0.246352 -0.0275888 0.220401 -0.026809 0.195671 -0.0256816 0.17242 -0.0242678 0.150836 -0.0226345 0.131042 -0.0208507 0.113095 -0.0189835 0.0969949 -0.0170959 0.0826901 -0.0152442 0.0700849 -0.0134774 0.0590489 -0.0118359 0.0494255 -0.0103503 0.0410441 -0.00903834 0.033735 -0.00790041 0.0273479 -0.00691656 0.0217686 -0.00604751 0.0169302 -0.0052427 0.0128111 -0.00445381 0.00942131 -0.00364882 0.00677984 -0.00282122 0.00489078 -0.00199109 0.00372598 -0.00119686 0.00321885 -0.000482164 0.00327398 0.000121693 0.00378701 0.000607129 0.00466762 0.000992841 0.00587516 0.00133874 0.00739574 0.0016646 0.00934868 0.00217604 0.0117977 0.00256027 0.00371062 0.485611 -0.501915 0.46682 0.445605 0.422279 0.397198 0.370745 0.343338 0.315423 0.287454 0.259865 0.233056 0.207374 0.183107 0.160472 0.139621 0.120638 0.103542 0.0882977 0.0748203 0.0629844 0.052634 0.0435957 0.0356953 0.0287787 0.0227312 0.0174885 0.0130347 0.0093859 0.00656468 0.00457358 0.00337673 0.00289456 0.00301625 0.00362338 0.00461622 0.00595496 0.00761956 0.0097956 0.0123559 0.5903 -0.000883563 -0.588607 0.591454 0.000556036 0.592048 0.00197968 0.592063 0.00338701 0.591481 0.0047807 0.590283 0.00615581 0.588452 0.00751396 0.585967 0.00883997 0.582808 0.0101471 0.578956 0.0113948 0.57438 0.0126367 0.569064 0.0137493 0.562953 0.0149253 0.556043 0.0157681 0.548179 0.0169608 0.539412 0.017173 0.529096 0.0188704 0.517526 0.0172299 0.502014 0.0209758 0.0108368 0.596938 -0.00216653 -0.595655 0.597807 -0.000312972 0.598243 0.00154364 0.598229 0.00340122 0.597748 0.00526163 0.596783 0.00712059 0.595317 0.00897982 0.593331 0.0108264 0.590805 0.0126728 0.587715 0.0144853 0.584038 0.0163132 0.579732 0.0180549 0.574772 0.019886 0.569055 0.0214844 0.562574 0.0234424 0.555084 0.0246629 0.546895 0.0270591 0.537468 0.0266577 0.5287 0.0297429 0.0242896 0.601912 -0.00301863 -0.60106 0.60247 -0.000870357 0.602721 0.00129197 0.602656 0.00346635 0.602265 0.00565323 0.601536 0.00784903 0.600461 0.0100546 0.599027 0.0122609 0.597223 0.014477 0.595028 0.0166801 0.592435 0.0189059 0.589406 0.0210837 0.585957 0.0233351 0.582021 0.0254206 0.57772 0.0277432 0.572899 0.0294842 0.567909 0.032049 0.56196 0.0326064 0.555713 0.0359898 0.0333141 0.605627 -0.00353786 -0.605108 0.605959 -0.00120222 0.606099 0.00115191 0.606043 0.00352285 0.605786 0.00591017 0.605324 0.00831124 0.604652 0.0107261 0.603764 0.0131493 0.602655 0.0155857 0.601314 0.0180211 0.599745 0.0204752 0.597927 0.0229018 0.595888 0.0253741 0.593567 0.0277416 0.591029 0.0302806 0.588038 0.0324754 0.58477 0.0353167 0.580594 0.0367822 0.576336 0.0402478 0.0389481 0.608072 -0.00380576 -0.607804 0.608246 -0.00137633 0.608326 0.00107213 0.60831 0.00353836 0.608199 0.00602163 0.60799 0.00852017 0.607683 0.0110335 0.607273 0.0135586 0.606762 0.0160973 0.606141 0.0186422 0.605412 0.0212041 0.604553 0.0237603 0.603571 0.0263564 0.602402 0.0289103 0.601094 0.0315891 0.599514 0.0340557 0.597905 0.036925 0.595884 0.0388037 0.594035 0.0420966 0.0419936 0.609418 -0.00388125 -0.609343 0.60948 -0.00143812 0.60953 0.00102246 0.609569 0.00349959 0.609598 0.00599254 0.609618 0.00850014 0.609629 0.0110219 0.609632 0.0135562 0.609625 0.0161042 0.609604 0.0186627 0.609571 0.0212374 0.609514 0.023817 0.609447 0.0264232 0.60935 0.0290072 0.609281 0.0316585 0.609159 0.0341777 0.609124 0.0369594 0.60882 0.0391085 0.608639 0.042277 0.0429416 0.60993 -0.00380946 -0.610002 0.609912 -0.00141991 0.60995 0.000984472 0.610047 0.00340291 0.610205 0.00583476 0.610426 0.00827917 0.610712 0.0107355 0.611065 0.013203 0.611488 0.0156816 0.611981 0.0181695 0.61255 0.0206686 0.613194 0.023173 0.613924 0.025693 0.614725 0.0282061 0.615621 0.0307633 0.616541 0.0332577 0.617579 0.0359206 0.618507 0.0381809 0.619661 0.0411234 0.042221 0.609712 -0.00361991 -0.609901 0.609632 -0.00134002 0.609665 0.000951614 0.609813 0.00325425 0.610081 0.00556715 0.610471 0.00788951 0.610986 0.0102206 0.611629 0.0125597 0.612404 0.0149065 0.613313 0.0172601 0.614361 0.0196213 0.615545 0.0219882 0.616872 0.0243659 0.618334 0.0267444 0.61995 0.0291473 0.621691 0.0315172 0.623631 0.03398 0.625616 0.036196 0.627875 0.0388647 0.0402112 0.608322 -0.00333326 -0.608608 0.608192 -0.00121027 0.608222 0.000921399 0.608415 0.00306092 0.608775 0.00520747 0.609304 0.00736021 0.610007 0.00951838 0.610885 0.0116813 0.611943 0.0138485 0.613184 0.0160195 0.614611 0.0181942 0.616227 0.0203716 0.61804 0.0225533 0.620049 0.0247349 0.62227 0.0269268 0.624684 0.0291026 0.627336 0.0313281 0.630119 0.0334131 0.633199 0.0357845 0.0372119 0.604613 -0.00297152 -0.604975 0.604448 -0.00104549 0.604483 0.000886491 0.60472 0.00282348 0.605163 0.0047645 0.605815 0.00670864 0.606678 0.008655 0.607757 0.0106028 0.609054 0.0125513 0.610574 0.0144999 0.61232 0.0164482 0.614296 0.0183955 0.616507 0.0203423 0.618955 0.0222872 0.621647 0.0242341 0.624578 0.0261721 0.627775 0.028131 0.631176 0.0300121 0.6349 0.0320602 0.0334496 0.596921 -0.00256771 -0.597325 0.596747 -0.000870664 0.596803 0.000830118 0.597093 0.00253351 0.597619 0.00423839 0.598384 0.00594367 0.599391 0.00764832 0.600642 0.00935135 0.602142 0.0110519 0.603892 0.0127493 0.605898 0.0144427 0.608161 0.0161317 0.610688 0.0178159 0.61348 0.0194947 0.616545 0.0211691 0.619882 0.0228351 0.623509 0.0245043 0.627389 0.0261319 0.631604 0.0278452 0.0291146 0.583734 -0.00216699 -0.584135 0.583583 -0.000719345 0.583683 0.000730339 0.584036 0.00218075 0.584643 0.00363058 0.585509 0.00507854 0.586633 0.00652341 0.588021 0.00796404 0.589673 0.00939934 0.591594 0.0108283 0.593787 0.0122502 0.596254 0.013664 0.599001 0.0150694 0.60203 0.0164655 0.605347 0.0178524 0.608953 0.0192287 0.61286 0.0205977 0.617049 0.0219426 0.621575 0.0233195 0.0244106 0.564708 -0.00181129 -0.565064 0.564607 -0.00061815 0.564762 0.00057576 0.565174 0.00176891 0.565844 0.0029598 0.566776 0.00414693 0.56797 0.0053289 0.56943 0.00650435 0.571157 0.00767199 0.573155 0.00883065 0.575426 0.00997925 0.577973 0.0111168 0.5808 0.0122425 0.58391 0.0133554 0.587307 0.0144552 0.590995 0.015541 0.59498 0.0166132 0.599255 0.0176668 0.603854 0.0187209 0.0196014 0.541305 -0.00151987 -0.541596 0.541257 -0.000570207 0.541454 0.000379213 0.541896 0.00132668 0.542585 0.00227054 0.543523 0.00320913 0.544711 0.00414089 0.546151 0.00506429 0.547845 0.00597789 0.549795 0.00688036 0.552004 0.00777044 0.554474 0.00864698 0.557207 0.00950896 0.560207 0.0103555 0.563477 0.0111857 0.567019 0.0119989 0.570838 0.0127946 0.574933 0.0135715 0.57932 0.0143334 0.0149973 0.516518 -0.00128324 -0.516755 0.516501 -0.000553329 0.516705 0.000175505 0.51713 0.000901478 0.517778 0.00162285 0.518649 0.00233789 0.519745 0.00304494 0.521067 0.00374241 0.522616 0.00442879 0.524394 0.00510265 0.526402 0.00576265 0.528641 0.00640758 0.531114 0.00703632 0.533821 0.00764785 0.536766 0.00824129 0.539949 0.00881586 0.543373 0.00937088 0.547038 0.00990572 0.550952 0.0104202 0.0108837 0.493989 -0.00107253 -0.494199 0.493968 -0.000532329 0.494137 6.18996e-06 0.494497 0.00054129 0.495049 0.00107125 0.495792 0.0015944 0.496728 0.00210912 0.497857 0.00261385 0.499178 0.0031071 0.500694 0.00358749 0.502402 0.00405369 0.504306 0.00450453 0.506403 0.00493888 0.508695 0.00535575 0.511182 0.00575426 0.513864 0.00613365 0.516742 0.00649323 0.519815 0.00683249 0.523084 0.00715135 0.00744638 0.477158 -0.000855262 -0.477376 0.477101 -0.000475196 0.477204 -9.70934e-05 0.477468 0.000277484 0.477893 0.000646991 0.478477 0.00100994 0.479221 0.00136486 0.480125 0.00171037 0.481187 0.00204514 0.482406 0.00236791 0.483782 0.00267753 0.485314 0.00297289 0.487 0.00325302 0.488839 0.00351702 0.490829 0.00376411 0.492969 0.00399359 0.495257 0.00420488 0.497692 0.00439763 0.500271 0.00457247 0.00473729 0.468944 -0.000607921 -0.469191 0.468833 -0.000364282 0.468858 -0.000122476 0.469019 0.000116265 0.469316 0.00035074 0.469746 0.000579769 0.470308 0.000802202 0.471002 0.00101696 0.471824 0.00122298 0.472773 0.00141928 0.473845 0.00160494 0.475039 0.00177911 0.476351 0.001941 0.477778 0.00208991 0.479317 0.00222522 0.480964 0.00234637 0.482716 0.00245292 0.484569 0.00254467 0.486519 0.00262244 0.00269604 0.471985 -0.000321024 -0.472271 0.47182 -0.00019958 0.471777 -7.93662e-05 0.471854 3.88861e-05 0.47205 0.000154457 0.472364 0.000266647 0.472791 0.000374776 0.47333 0.000478198 0.473976 0.000576289 0.474727 0.000668468 0.475578 0.00075419 0.476524 0.000832953 0.477561 0.000904305 0.478683 0.000967829 0.479885 0.00102317 0.481161 0.00107003 0.482506 0.00110816 0.483913 0.00113749 0.485377 0.00115855 0.00117768 0.489502 -0.489823 0.489302 0.489223 0.489262 0.489416 0.489683 0.490058 0.490536 0.491112 0.49178 0.492535 0.493368 0.494272 0.49524 0.496263 0.497333 0.498441 0.499579 0.500737 0.477957 0.00687265 -0.509278 0.492144 -0.0374705 0.501578 -0.0304582 0.507009 -0.0239344 0.513315 -0.0230778 0.520453 -0.0224341 0.527417 -0.0208494 0.534092 -0.0192747 0.54059 -0.0179335 0.546866 -0.0166185 0.552835 -0.015255 0.558452 -0.0138693 0.563697 -0.0124746 0.568549 -0.0110664 0.572993 -0.00964273 0.577013 -0.00820659 0.580598 -0.00676192 0.583735 -0.00531217 0.586411 -0.0038603 -0.00240924 0.506605 0.00258989 -0.502323 0.514607 -0.0454717 0.523552 -0.0394036 0.529278 -0.0296605 0.534334 -0.0281338 0.540367 -0.028467 0.54659 -0.0270731 0.552353 -0.025037 0.557733 -0.023314 0.562859 -0.0217446 0.567698 -0.0200933 0.572196 -0.0183676 0.576346 -0.0166244 0.580154 -0.0148744 0.583621 -0.0131096 0.586743 -0.0113287 0.589515 -0.00953443 0.591932 -0.00772882 0.593983 -0.00591136 -0.00408113 0.531743 -0.00337641 -0.525776 0.538343 -0.0520716 0.545479 -0.0465403 0.551244 -0.0354251 0.55564 -0.0325297 0.560221 -0.033048 0.565142 -0.031994 0.56974 -0.0296356 0.573838 -0.0274115 0.577615 -0.0255213 0.58116 -0.0236391 0.584449 -0.021656 0.587457 -0.0196327 0.590193 -0.01761 0.592667 -0.0155836 0.594881 -0.0135432 0.596833 -0.0114862 0.598517 -0.00941304 0.599928 -0.00732252 -0.00521289 0.558085 -0.00867601 -0.552786 0.562406 -0.056392 0.567203 -0.0513373 0.57182 -0.0400428 0.575259 -0.0359687 0.578288 -0.0360771 0.581532 -0.0352377 0.584717 -0.0328209 0.587528 -0.030222 0.590016 -0.0280096 0.59232 -0.0259429 0.594468 -0.0238045 0.596436 -0.0216004 0.598214 -0.0193874 0.599808 -0.0171784 0.601227 -0.0149614 0.602468 -0.0127276 0.60353 -0.010475 0.604411 -0.00820309 -0.00591053 0.583616 -0.0139635 -0.578329 0.584986 -0.0577617 0.587079 -0.053431 0.589985 -0.0429488 0.592204 -0.0381875 0.593771 -0.0376443 0.595351 -0.036817 0.597049 -0.0345194 0.598611 -0.031784 0.599947 -0.0293454 0.601142 -0.0271377 0.60226 -0.0249227 0.603297 -0.0226378 0.604235 -0.0203254 0.605071 -0.0180137 0.605808 -0.0156986 0.60645 -0.0133696 0.606997 -0.0110218 0.607448 -0.00865438 -0.00626678 0.60542 -0.0193863 -0.599997 0.604304 -0.0566451 0.603908 -0.0530355 0.604975 -0.0440157 0.605944 -0.0391564 0.606283 -0.0379837 0.606465 -0.0369985 0.606815 -0.0348693 0.607234 -0.032203 0.607575 -0.0296865 0.607837 -0.0274 0.608076 -0.0251612 0.60831 -0.0228718 0.608528 -0.0205435 0.60872 -0.018206 0.608886 -0.0158651 0.60903 -0.0135134 0.609153 -0.0111449 0.609257 -0.00875809 -0.00635256 0.622496 -0.0245425 -0.61734 0.619691 -0.0538403 0.617441 -0.0507852 0.616844 -0.0434182 0.616621 -0.0389342 0.615964 -0.0373268 0.615077 -0.036111 0.614326 -0.0341186 0.613757 -0.0316339 0.613249 -0.0291779 0.612742 -0.0268937 0.612259 -0.0246775 0.611823 -0.0224364 0.611438 -0.0201582 0.611095 -0.0178629 0.61079 -0.0155606 0.610526 -0.0132492 0.610305 -0.0109239 0.61013 -0.00858259 -0.00622496 0.63534 -0.0286843 -0.631198 0.631474 -0.0499748 0.628017 -0.047328 0.626094 -0.041495 0.624784 -0.0376244 0.623276 -0.0358188 0.621571 -0.0344061 0.619964 -0.0325114 0.618572 -0.0302412 0.617331 -0.0279378 0.616174 -0.0257368 0.615091 -0.0235942 0.614099 -0.0214441 0.613207 -0.0192662 0.612413 -0.0170692 0.611715 -0.0148622 0.611112 -0.0126462 0.610607 -0.0104188 0.610202 -0.00817813 -0.00592403 0.644537 -0.0311199 -0.642102 0.63996 -0.0453974 0.635724 -0.043092 0.632795 -0.0385661 0.630524 -0.0353534 0.62824 -0.0335345 0.625854 -0.0320203 0.623562 -0.0302193 0.621485 -0.0281649 0.61961 -0.0260624 0.617883 -0.0240102 0.616284 -0.0219951 0.614819 -0.0199784 0.613496 -0.0179432 0.612318 -0.0158913 0.611284 -0.0138283 0.610394 -0.0117563 0.609649 -0.00967445 0.609053 -0.00758202 -0.0054789 0.649725 -0.0314673 -0.649378 0.644593 -0.0402658 0.639791 -0.0382899 0.636068 -0.0348426 0.632956 -0.0322414 0.629951 -0.0305295 0.626952 -0.0290218 0.62408 -0.027347 0.621429 -0.0255141 0.619007 -0.0236398 0.616782 -0.021785 0.614734 -0.0199477 0.612864 -0.0181081 0.611176 -0.0162554 0.609674 -0.0143893 0.608358 -0.0125126 0.607229 -0.010627 0.606287 -0.0087327 0.605535 -0.00682978 -0.00491846 0.649096 -0.0297393 -0.650824 0.643522 -0.034692 0.638286 -0.0330535 0.633931 -0.0304873 0.63012 -0.0284309 0.626496 -0.0269048 0.622975 -0.025501 0.619629 -0.0240014 0.616523 -0.0224077 0.613666 -0.0207833 0.611043 -0.0191619 0.608639 -0.0175442 0.606452 -0.015921 0.604484 -0.0142868 0.602736 -0.0126412 0.601209 -0.0109857 0.599903 -0.00932157 0.59882 -0.00764941 0.59796 -0.00596984 -0.00428354 0.640047 -0.0263448 -0.643441 0.634238 -0.0288832 0.62877 -0.0275854 0.624014 -0.0257314 0.619738 -0.0241547 0.615699 -0.0228663 0.611839 -0.0216412 0.608199 -0.0203611 0.604817 -0.0190256 0.601701 -0.0176668 0.598841 -0.0163018 0.596228 -0.0149318 0.59386 -0.0135528 0.591736 -0.0121627 0.589856 -0.0107619 0.588222 -0.00935113 0.586832 -0.0079317 0.585687 -0.00650454 0.584788 -0.00507059 -0.00363091 0.621227 -0.021987 -0.625585 0.615515 -0.0231708 0.610127 -0.0221977 0.6053 -0.0209047 0.600887 -0.0197411 0.596735 -0.0187148 0.592807 -0.0177128 0.589122 -0.0166766 0.585702 -0.0156056 0.58255 -0.0145148 0.579661 -0.0134122 0.577028 -0.012299 0.574649 -0.011174 0.572523 -0.010037 0.57065 -0.00888864 0.569029 -0.00773006 0.56766 -0.00656246 0.566542 -0.00538706 0.565677 -0.00420515 -0.00301806 0.594187 -0.0174111 -0.598763 0.588926 -0.0179099 0.583951 -0.0172228 0.579402 -0.0163553 0.575194 -0.0155337 0.571244 -0.0147645 0.567527 -0.013996 0.564053 -0.0132022 0.56083 -0.012383 0.55786 -0.0115448 0.55514 -0.0106916 0.552665 -0.00982427 0.550434 -0.00894322 0.548446 -0.0080491 0.546701 -0.00714298 0.545197 -0.00622616 0.543934 -0.00530003 0.542913 -0.00436604 0.542134 -0.00342571 -0.00248062 0.56317 -0.013166 -0.567415 0.558615 -0.0133544 0.554292 -0.0128999 0.55028 -0.012343 0.546537 -0.0117912 0.543022 -0.0112492 0.539721 -0.0106955 0.536639 -0.0101197 0.533778 -0.00952218 0.531139 -0.00890595 0.52872 -0.00827305 0.526521 -0.00762458 0.524539 -0.00696147 0.522775 -0.00628485 0.521228 -0.00559601 0.519898 -0.00489641 0.518786 -0.00418758 0.517891 -0.00347113 0.517214 -0.0027487 -0.00202202 0.533608 -0.00952511 -0.537249 0.529847 -0.0095928 0.526261 -0.0093142 0.522894 -0.00897598 0.519729 -0.00862588 0.516747 -0.00826719 0.513943 -0.00789187 0.51132 -0.00749631 0.508879 -0.00708117 0.506621 -0.00664811 0.504546 -0.00619855 0.502655 -0.0057336 0.500948 -0.0052544 0.499426 -0.00476222 0.498088 -0.00425845 0.496936 -0.00374456 0.495971 -0.00322211 0.495192 -0.0026927 0.494602 -0.00215801 -0.00161974 0.510529 -0.00652529 -0.513529 0.507494 -0.00655728 0.504583 -0.00640296 0.501819 -0.00621272 0.4992 -0.00600612 0.496718 -0.00578527 0.494374 -0.00554769 0.49217 -0.00529248 0.490109 -0.00502035 0.488193 -0.00473243 0.486424 -0.00442977 0.484804 -0.00411345 0.483334 -0.00378456 0.482017 -0.00344431 0.480852 -0.00309399 0.479842 -0.00273494 0.478989 -0.00236861 0.478293 -0.00199643 0.477755 -0.00161995 -0.0012407 0.497781 -0.00405565 -0.500251 0.495305 -0.00408137 0.492911 -0.00400918 0.490614 -0.00391536 0.488415 -0.00380705 0.486315 -0.00368556 0.484318 -0.00355044 0.482427 -0.00340171 0.480647 -0.00323996 0.47898 -0.00306596 0.477431 -0.00288051 0.476002 -0.00268448 0.474696 -0.00247875 0.473516 -0.00226429 0.472464 -0.00204214 0.471543 -0.00181338 0.470753 -0.00157913 0.470097 -0.00134058 0.469576 -0.0010989 -0.000855329 0.498338 -0.00194035 -0.500454 0.496219 -0.0019621 0.494149 -0.00193958 0.49214 -0.00190614 0.490197 -0.00186387 0.488325 -0.0018134 0.486529 -0.00175481 0.484816 -0.00168827 0.48319 -0.00161409 0.481657 -0.00153273 0.480221 -0.00144465 0.478887 -0.00135034 0.477658 -0.00125036 0.476539 -0.00114528 0.475533 -0.00103573 0.474642 -0.000922363 0.473869 -0.000805848 0.473215 -0.000686888 0.472682 -0.000566203 -0.000444524 0.51555 -0.51749 0.513588 0.511648 0.509742 0.507878 0.506065 0.50431 0.502622 0.501008 0.499475 0.49803 0.49668 0.49543 0.494284 0.493249 0.492326 0.49152 0.490833 0.490267 0.0646658 0.0161453 -0.0166862 0.06635 0.048881 -0.0505653 0.0692265 0.0825012 -0.0853777 0.0734154 0.117666 -0.121855 0.0790482 0.155005 -0.160638 0.0862148 0.195007 -0.202174 0.0948975 0.237832 -0.246514 0.104938 0.283105 -0.293146 0.116074 0.329889 -0.341025 0.128035 0.376901 -0.388863 0.140685 0.42291 -0.43556 0.154219 0.467258 -0.480791 0.16937 0.510469 -0.52562 0.18759 0.554509 -0.572729 0.210596 0.60238 -0.625387 0.240786 0.654873 -0.685063 0.279745 0.713798 -0.752757 0.330043 0.771367 -0.821665 0.405455 0.82243 -0.897842 0.858496 -0.962319 0.0696107 0.0155321 0.0714764 0.0470153 0.0746299 0.0793477 0.0791898 0.113106 0.0853129 0.148882 0.0931383 0.187182 0.102712 0.228258 0.113932 0.271886 0.126557 0.317264 0.140302 0.363156 0.154975 0.408237 0.170683 0.45155 0.188045 0.493107 0.208483 0.534071 0.233746 0.577117 0.26612 0.622499 0.308808 0.67111 0.358503 0.721672 0.440377 0.740555 0.796551 0.0748962 0.0148591 0.0769348 0.0449766 0.0803721 0.0759104 0.0853213 0.108157 0.0919536 0.14225 0.100452 0.178683 0.110935 0.217775 0.123373 0.259448 0.137574 0.303063 0.153252 0.347478 0.170163 0.391326 0.188322 0.433391 0.208198 0.473231 0.231082 0.511187 0.258913 0.549286 0.292955 0.588457 0.339984 0.624081 0.38769 0.673966 0.466612 0.661634 0.737386 0.0805648 0.0141342 0.0827625 0.0427789 0.0864748 0.0721981 0.0918117 0.10282 0.09895 0.135112 0.108106 0.169527 0.119466 0.206415 0.133092 0.245822 0.148866 0.287289 0.166529 0.329815 0.185795 0.372061 0.206568 0.412618 0.229161 0.450638 0.254466 0.485883 0.285031 0.518721 0.319637 0.553851 0.370105 0.573614 0.41561 0.628461 0.489458 0.587785 0.674059 0.0866536 0.0133617 0.0889987 0.0404338 0.0929715 0.0682253 0.0986842 0.0971074 0.106315 0.127481 0.116098 0.159744 0.128277 0.194236 0.14301 0.231089 0.160279 0.27002 0.179882 0.310212 0.201527 0.350415 0.224972 0.389172 0.250485 0.425125 0.278046 0.458321 0.311575 0.485192 0.345845 0.519581 0.398133 0.521326 0.443546 0.583048 0.509469 0.521862 0.605199 0.0931947 0.0125454 0.0956746 0.037954 0.0998865 0.0640134 0.10595 0.0910442 0.114044 0.119387 0.124411 0.149377 0.137333 0.181314 0.15305 0.215372 0.171664 0.251407 0.193056 0.28882 0.217005 0.326466 0.243037 0.36314 0.271668 0.396494 0.301292 0.428698 0.338001 0.448482 0.371969 0.485613 0.423911 0.469384 0.471682 0.535277 0.528028 0.465516 0.53323 0.100221 0.0116901 0.10282 0.0353549 0.107242 0.0595917 0.113614 0.0846718 0.122121 0.11088 0.133006 0.138492 0.146569 0.167751 0.163107 0.198833 0.182845 0.231669 0.205749 0.265916 0.231797 0.300417 0.260139 0.334799 0.29198 0.364652 0.323521 0.397157 0.363405 0.408598 0.398293 0.450725 0.447385 0.420292 0.498746 0.483915 0.547289 0.416973 0.463179 0.107769 0.0108015 0.110469 0.0326548 0.115065 0.0549962 0.12169 0.0780459 0.130534 0.102036 0.141839 0.127187 0.155908 0.153682 0.173063 0.181678 0.193639 0.211094 0.217648 0.241907 0.245415 0.27265 0.275569 0.304645 0.310432 0.32979 0.34386 0.363729 0.386192 0.366266 0.42418 0.412737 0.468731 0.375741 0.522844 0.429802 0.567328 0.37249 0.399308 0.115876 0.00988621 0.118656 0.0298751 0.123385 0.0502674 0.130199 0.0712324 0.139285 0.0929492 0.150883 0.115589 0.165291 0.139274 0.182823 0.164146 0.203896 0.190021 0.228512 0.217292 0.257428 0.243733 0.288706 0.273368 0.32585 0.292646 0.361425 0.328154 0.40439 0.323301 0.447304 0.369823 0.488004 0.335041 0.542486 0.375321 0.585961 0.329015 0.343168 0.124586 0.00895186 0.127421 0.0270397 0.132238 0.0454501 0.139168 0.0643027 0.148392 0.0837256 0.160137 0.103844 0.174689 0.124721 0.192335 0.1465 0.213535 0.168821 0.238228 0.192599 0.267558 0.214404 0.299275 0.24165 0.337132 0.254789 0.375274 0.290012 0.416808 0.281767 0.464171 0.32246 0.503643 0.295568 0.556455 0.322509 0.59984 0.28563 0.29363 0.133941 0.00800705 0.136806 0.0241752 0.141664 0.0405919 0.148636 0.0573314 0.157886 0.0744747 0.169626 0.092105 0.184116 0.110231 0.201607 0.129009 0.222555 0.147873 0.246853 0.168301 0.275703 0.185554 0.307399 0.209955 0.343927 0.21826 0.38423 0.249709 0.423464 0.242533 0.47242 0.273503 0.512596 0.255393 0.562851 0.272254 0.605628 0.242853 0.248434 0.143993 0.00706074 0.146859 0.021309 0.15171 0.035741 0.15865 0.0503919 0.167822 0.0653023 0.179409 0.0805185 0.193638 0.0960013 0.21072 0.111927 0.231045 0.127548 0.254595 0.144751 0.282058 0.158091 0.31329 0.178722 0.347056 0.184495 0.387604 0.209162 0.42478 0.205357 0.472006 0.226276 0.512543 0.214857 0.559831 0.224965 0.601 0.201683 0.205993 0.154795 0.00612168 0.157636 0.0184679 0.162434 0.0309435 0.169273 0.0435522 0.178272 0.0563031 0.189578 0.0692127 0.203373 0.082206 0.219838 0.095463 0.239215 0.108171 0.261739 0.122227 0.287209 0.132621 0.317199 0.148733 0.347929 0.153764 0.386207 0.170884 0.42141 0.170154 0.464665 0.183022 0.503719 0.175802 0.547346 0.181339 0.585715 0.163314 0.166123 0.166405 0.00519758 0.169198 0.0156749 0.173903 0.0262387 0.180586 0.0368693 0.189335 0.0475533 0.200262 0.0582859 0.213494 0.0689739 0.22919 0.0797671 0.247411 0.0899501 0.268633 0.101005 0.291977 0.109276 0.319786 0.120925 0.347809 0.125741 0.382116 0.136577 0.414783 0.137488 0.45304 0.144764 0.488808 0.140034 0.527818 0.142329 0.56231 0.128823 0.12967 0.178888 0.00429417 0.181616 0.0129473 0.1862 0.0216547 0.192687 0.0303821 0.201138 0.0391026 0.211626 0.047797 0.224226 0.0563746 0.239067 0.0649254 0.256078 0.0729399 0.275778 0.0813053 0.297164 0.0878899 0.32222 0.0958683 0.347778 0.100182 0.377672 0.106683 0.407144 0.108016 0.440187 0.11172 0.471723 0.108499 0.505445 0.108606 0.535486 0.0987821 0.0977405 0.192315 0.00341414 0.194969 0.0102926 0.199421 0.0172031 0.205698 0.0241046 0.213836 0.0309652 0.223875 0.0377579 0.235842 0.0444079 0.249823 0.0509442 0.265697 0.0570656 0.283835 0.0631674 0.303491 0.0682339 0.325817 0.0735425 0.349004 0.0769955 0.374886 0.0808009 0.400965 0.0819369 0.429149 0.0835366 0.456387 0.0812607 0.484837 0.0801557 0.510451 0.0731685 0.0709421 0.206761 0.00255591 0.209349 0.00770525 0.213679 0.0128728 0.219766 0.0180178 0.227621 0.0231102 0.237257 0.028122 0.248666 0.0329986 0.26188 0.0377304 0.276783 0.0421619 0.293541 0.04641 0.311713 0.0500617 0.331752 0.0535031 0.352774 0.0559744 0.375414 0.0581604 0.398429 0.0589217 0.422546 0.0594197 0.446016 0.0577903 0.469878 0.0562937 0.491567 0.0514795 0.0489803 0.222313 0.00171225 0.224855 0.00516269 0.229105 0.00862334 0.235062 0.0120605 0.242721 0.0154513 0.25207 0.0187726 0.26308 0.0219894 0.27573 0.02508 0.289921 0.0279704 0.305662 0.0306694 0.3227 0.0330235 0.341098 0.0351055 0.360412 0.0366598 0.380723 0.0378503 0.401372 0.0382725 0.422487 0.0383046 0.443068 0.0372089 0.463454 0.0359081 0.482082 0.0328517 0.0308115 0.239061 0.000868365 0.241604 0.00261942 0.245851 0.00437601 0.251795 0.00611736 0.259414 0.00783135 0.268682 0.00950524 0.27955 0.0111215 0.291965 0.0126649 0.30583 0.0141053 0.321068 0.0154312 0.3375 0.0165913 0.355021 0.0175848 0.373348 0.0183329 0.392338 0.01886 0.411573 0.0190377 0.430909 0.0189682 0.449718 0.0184008 0.467971 0.0176548 0.484676 0.0161469 0.0150335 0.257107 0.259726 0.264103 0.27022 0.278051 0.287556 0.298678 0.311343 0.325448 0.340879 0.357471 0.375055 0.393388 0.412248 0.431286 0.450254 0.468655 0.48631 0.502457 0.0357374 0.0174765 -0.0178225 0.0363715 0.0529659 -0.0536 0.0372694 0.0892529 -0.0901508 0.0383822 0.126635 -0.127748 0.0396276 0.165234 -0.166479 0.0408923 0.204871 -0.206136 0.0420455 0.245095 -0.246248 0.0429557 0.28528 -0.28619 0.0435084 0.324792 -0.325344 0.0436232 0.363186 -0.363301 0.0432793 0.400518 -0.400174 0.0425514 0.437874 -0.437147 0.0416233 0.477882 -0.476954 0.0407069 0.5244 -0.523483 0.0399242 0.580914 -0.580132 0.0391733 0.649557 -0.648806 0.0382238 0.730868 -0.729919 0.0368038 0.82744 -0.82602 0.0341141 0.943901 -0.941211 1.07652 -1.07118 0.0357191 0.0171445 0.0363168 0.0523682 0.037159 0.0884107 0.0382004 0.125594 0.0393632 0.164071 0.0405378 0.203696 0.0415954 0.244037 0.0424065 0.284469 0.0428584 0.32434 0.0428725 0.363172 0.0424275 0.400963 0.041593 0.438709 0.040546 0.478929 0.0394979 0.525448 0.0385878 0.581824 0.0377523 0.650392 0.0367995 0.731821 0.0355149 0.828725 0.0332423 0.946173 1.08098 0.0356981 0.0168294 0.0362565 0.0518098 0.0370399 0.0876273 0.0380065 0.124627 0.0390824 0.162995 0.0401618 0.202617 0.0411181 0.243081 0.0418234 0.283764 0.0421673 0.323996 0.0420726 0.363266 0.0415186 0.401517 0.0405706 0.439657 0.0393995 0.480101 0.0382162 0.526631 0.0371743 0.582866 0.0362484 0.651318 0.0352882 0.732781 0.0341391 0.829874 0.0322899 0.948022 1.08452 0.0356744 0.016534 0.0361908 0.0512934 0.0369126 0.0869055 0.0378011 0.123739 0.0387863 0.16201 0.0397656 0.201638 0.0406151 0.242231 0.0412084 0.283171 0.0414368 0.323767 0.0412254 0.363478 0.0405542 0.402189 0.0394856 0.440726 0.0381849 0.481401 0.0368621 0.527954 0.0356843 0.584044 0.0346622 0.65234 0.0336905 0.733753 0.0326777 0.830887 0.0312612 0.949439 1.08709 0.0356483 0.0162614 0.03612 0.0508216 0.0367776 0.0862479 0.0375849 0.122931 0.0384757 0.161119 0.0393507 0.200763 0.040088 0.241494 0.0405631 0.282695 0.0406688 0.323662 0.0403328 0.363814 0.0395363 0.402985 0.0383395 0.441922 0.0369032 0.482837 0.0354364 0.529421 0.0341181 0.585363 0.0329942 0.653464 0.032007 0.73474 0.031131 0.831763 0.0301549 0.950415 1.08866 0.0356198 0.0160142 0.0360444 0.050397 0.0366353 0.0856569 0.0373587 0.122208 0.0381518 0.160326 0.0389182 0.199996 0.0395385 0.240874 0.0398893 0.282345 0.0398654 0.323685 0.0393968 0.364282 0.0384667 0.403915 0.0371341 0.443255 0.0355557 0.484416 0.03394 0.531036 0.0324766 0.586826 0.0312454 0.654695 0.0302393 0.735746 0.0295007 0.832501 0.0289719 0.950944 1.08918 0.035589 0.0157953 0.035964 0.050022 0.036486 0.0851349 0.0371232 0.121571 0.0378154 0.159634 0.0384697 0.199342 0.0389681 0.240375 0.039189 0.282124 0.0390287 0.323846 0.0384196 0.364892 0.0373475 0.404987 0.0358711 0.444731 0.0341439 0.486143 0.0323738 0.532807 0.0307606 0.588439 0.0294169 0.656039 0.0283887 0.736775 0.0277892 0.833101 0.0277128 0.95102 1.0886 0.0355561 0.0156074 0.0358792 0.0496989 0.0363302 0.0846839 0.0368788 0.121022 0.0374677 0.159045 0.0380062 0.198803 0.0383785 0.240003 0.0384639 0.282038 0.0381605 0.324149 0.0374033 0.365649 0.0361809 0.40621 0.0345526 0.44636 0.0326695 0.488026 0.0307392 0.534737 0.0289715 0.590207 0.0275099 0.657501 0.0264569 0.737827 0.0260008 0.833557 0.026384 0.950637 1.08689 0.0355211 0.0154532 0.0357901 0.0494299 0.0361682 0.0843058 0.0366264 0.120564 0.0371095 0.158562 0.0375292 0.198384 0.0377712 0.239761 0.037716 0.282094 0.0372631 0.324602 0.0363502 0.366562 0.0349691 0.407591 0.0331807 0.448148 0.0311342 0.490073 0.0290376 0.536833 0.0271103 0.592134 0.0255257 0.659085 0.0244451 0.738908 0.0241378 0.833864 0.0249839 0.949791 1.08399 0.0354841 0.0153353 0.0356969 0.049217 0.0360003 0.0840025 0.0363664 0.120198 0.0367418 0.158186 0.0370398 0.198086 0.0371479 0.239653 0.0369471 0.282294 0.0363386 0.325211 0.0352625 0.367638 0.0337143 0.409139 0.0317573 0.450105 0.0295399 0.49229 0.0272706 0.539103 0.0251786 0.594226 0.0234662 0.660798 0.0223554 0.740019 0.0222083 0.834011 0.0235281 0.948471 1.07985 0.0354452 0.0152564 0.0355998 0.0490625 0.0358269 0.0837754 0.0360995 0.119925 0.0363653 0.157921 0.0365394 0.197912 0.03651 0.239682 0.0361592 0.282645 0.0353889 0.325981 0.0341423 0.368884 0.0324189 0.410862 0.0302848 0.452239 0.0278886 0.494686 0.0254398 0.541552 0.0231776 0.596488 0.0213332 0.662642 0.0201874 0.741165 0.0202107 0.833988 0.0220001 0.946682 1.07442 0.0354045 0.015219 0.0354989 0.0489681 0.0356483 0.0836261 0.0358262 0.119747 0.0359811 0.157766 0.0360291 0.197864 0.0358592 0.239852 0.0353539 0.283151 0.0344162 0.326919 0.032992 0.370308 0.0310851 0.412769 0.0287654 0.454559 0.0261823 0.497269 0.0235471 0.544187 0.021109 0.598926 0.0191299 0.664621 0.0179459 0.742349 0.0181661 0.833768 0.0204489 0.944399 1.06761 0.035362 0.0152257 0.0353944 0.0489357 0.0354648 0.0835557 0.035547 0.119665 0.0355899 0.157723 0.03551 0.197944 0.0351969 0.240165 0.0345331 0.283814 0.0334224 0.328029 0.0318137 0.371917 0.0297151 0.414868 0.0272012 0.457073 0.024423 0.500048 0.0215943 0.547016 0.0189735 0.601547 0.0168569 0.666738 0.0156227 0.743583 0.0160516 0.833339 0.0187965 0.941654 1.05939 0.0353179 0.0152788 0.0352865 0.0489671 0.0352768 0.0835654 0.0352625 0.119679 0.0351924 0.157793 0.0349833 0.198153 0.0345246 0.240624 0.0336986 0.284641 0.0324097 0.329318 0.0306096 0.373717 0.0283112 0.417167 0.0255944 0.459789 0.0226127 0.503029 0.0195837 0.550045 0.0167738 0.604357 0.014523 0.668989 0.0132385 0.744867 0.0139379 0.832639 0.0172212 0.938371 1.04963 0.0352721 0.0153808 0.0351754 0.0490638 0.0350845 0.0836563 0.0349731 0.119791 0.0347895 0.157977 0.0344501 0.198492 0.0338437 0.24123 0.032852 0.285632 0.0313799 0.33079 0.0293818 0.375715 0.0268755 0.419673 0.0239473 0.462718 0.0207531 0.506223 0.0175162 0.553282 0.0145071 0.607366 0.0121169 0.671379 0.0107496 0.746235 0.0116988 0.83169 0.0154008 0.934669 1.03827 0.0352249 0.0155338 0.0350614 0.0492272 0.0348883 0.0838294 0.0346792 0.12 0.0343816 0.158274 0.0339113 0.198962 0.0331556 0.241986 0.0319951 0.286793 0.0303349 0.33245 0.0281323 0.377918 0.0254103 0.422395 0.0222619 0.465866 0.0188472 0.509638 0.0153972 0.556731 0.0121871 0.610576 0.00967892 0.673887 0.00827056 0.747643 0.00961919 0.830342 0.0140601 0.930228 1.02524 0.0351765 0.0157399 0.034945 0.0494587 0.0346885 0.0840859 0.0343806 0.120308 0.0339688 0.158686 0.0333671 0.199564 0.0324612 0.242892 0.0311294 0.288124 0.0292767 0.334303 0.0268631 0.380332 0.0239174 0.425341 0.0205398 0.469243 0.0168935 0.513284 0.0132173 0.560408 0.0097817 0.614012 0.00711215 0.676557 0.00557174 0.749184 0.00709313 0.82882 0.011918 0.925403 1.01033 0.0351272 0.0160009 0.0348266 0.0497593 0.0344848 0.0844277 0.0340763 0.120716 0.0335488 0.159213 0.0328159 0.200297 0.0317598 0.243948 0.0302556 0.289629 0.0282067 0.336352 0.0255763 0.382962 0.0224001 0.428517 0.0187882 0.472855 0.0149116 0.517161 0.0110257 0.564294 0.00741613 0.617621 0.00470192 0.679271 0.00332153 0.750564 0.00546879 0.826673 0.0121614 0.91871 0.994369 0.0350784 0.0163177 0.034708 0.0501298 0.0342777 0.084858 0.0337638 0.12123 0.0331165 0.159861 0.0322501 0.201163 0.0310446 0.245153 0.0293701 0.291303 0.0271253 0.338597 0.024273 0.385814 0.0208528 0.431937 0.0169824 0.476726 0.0128354 0.521308 0.00866961 0.568459 0.00476847 0.621522 0.00176513 0.682274 0.00021806 0.752111 0.00208359 0.824807 0.00959567 0.911198 0.976591 0.0350363 0.0346009 0.0340812 0.0334561 0.032679 0.0316687 0.0303076 0.0284647 0.0260369 0.0229881 0.0193648 0.0152993 0.0109871 0.00671771 0.00285328 6.49454e-05 -0.000580643 0.00256162 0.0159177 0.0353081 0.0229269 -0.0228732 0.0358387 0.0678174 -0.068348 0.0368814 0.11218 -0.113223 0.0383234 0.155934 -0.157376 0.0400135 0.198579 -0.200269 0.0417721 0.239428 -0.241187 0.043417 0.277775 -0.279419 0.0447881 0.31311 -0.314481 0.0457796 0.345372 -0.346364 0.0464 0.375353 -0.375974 0.0468358 0.405326 -0.405762 0.0473925 0.439152 -0.439709 0.0482171 0.480621 -0.481445 0.0490488 0.530878 -0.53171 0.0492224 0.588315 -0.588489 0.047583 0.650235 -0.648595 0.0425005 0.711475 -0.706392 0.0326512 0.764534 -0.754684 0.0186447 0.810644 -0.796638 0.857546 -0.865773 0.0353866 0.0229172 0.0359836 0.0672205 0.0370831 0.11108 0.0385809 0.154437 0.0403324 0.196827 0.0421635 0.237597 0.0438965 0.276042 0.0453767 0.31163 0.0465053 0.344244 0.0472988 0.37456 0.0479597 0.404665 0.048845 0.438267 0.0502167 0.479249 0.0519925 0.529102 0.0538334 0.586474 0.0551281 0.64894 0.0544263 0.712176 0.0497864 0.769173 0.0412206 0.81921 0.872935 0.0354486 0.022857 0.0360933 0.0665757 0.0372307 0.109943 0.0387594 0.152908 0.0405399 0.195047 0.0424026 0.235735 0.0441715 0.274273 0.0456913 0.31011 0.0468597 0.343075 0.0476826 0.373737 0.0483461 0.404001 0.0492012 0.437411 0.0505409 0.477909 0.0523426 0.5273 0.0543314 0.584485 0.0559584 0.647313 0.0557575 0.712377 0.0515103 0.773421 0.0417351 0.828985 0.88981 0.0355028 0.0227513 0.0361885 0.0658901 0.037358 0.108773 0.0389103 0.151356 0.04071 0.193247 0.0425918 0.233853 0.0443805 0.272484 0.0459186 0.308572 0.0470963 0.341898 0.0479031 0.37293 0.048495 0.40341 0.049193 0.436713 0.0502795 0.476823 0.0517235 0.525856 0.0531936 0.583015 0.0540919 0.646415 0.052994 0.713475 0.0476828 0.778732 0.037352 0.839316 0.902888 0.0355512 0.0226045 0.0362718 0.0651695 0.0374685 0.107577 0.0390397 0.149784 0.0408531 0.191434 0.0427474 0.231958 0.0445495 0.270682 0.0461002 0.307021 0.0472835 0.340714 0.0480737 0.37214 0.0485998 0.402883 0.0491529 0.43616 0.0500054 0.47597 0.0511233 0.524738 0.0521392 0.581999 0.0524791 0.646075 0.0509736 0.714981 0.0457712 0.783934 0.036357 0.84873 0.915129 0.0355943 0.0224203 0.0363441 0.0644196 0.0375628 0.106358 0.0391482 0.148199 0.0409703 0.189611 0.0428722 0.230057 0.0446832 0.268871 0.0462438 0.305461 0.0474341 0.339524 0.0482167 0.371358 0.0487003 0.4024 0.0491546 0.435706 0.0498545 0.47527 0.0507954 0.523798 0.0516354 0.581159 0.051883 0.645827 0.0506253 0.716238 0.046165 0.788394 0.0372929 0.857602 0.928206 0.0356324 0.0222025 0.0364057 0.0636463 0.0376408 0.105123 0.039235 0.146605 0.0410605 0.187786 0.0429641 0.228153 0.0447781 0.267057 0.0463439 0.303895 0.0475385 0.33833 0.0483158 0.37058 0.0487674 0.401948 0.0491463 0.435327 0.0497349 0.474682 0.0505718 0.522961 0.0513602 0.580371 0.0516602 0.645527 0.0506761 0.717222 0.0466686 0.792402 0.0378884 0.866383 0.941619 0.0356657 0.0219547 0.0364572 0.0628548 0.0377026 0.103877 0.0393 0.145007 0.041123 0.185963 0.0430219 0.226254 0.0448325 0.265246 0.0463968 0.302331 0.0475901 0.337136 0.0483583 0.369812 0.0487777 0.401529 0.0490843 0.43502 0.0495637 0.474202 0.0502914 0.522233 0.051002 0.57966 0.0512582 0.645271 0.0503137 0.718167 0.0464862 0.796229 0.0379536 0.874915 0.954724 0.0356946 0.0216804 0.036499 0.0620504 0.0377488 0.102628 0.0393434 0.143413 0.041158 0.184148 0.0430458 0.224366 0.044846 0.263446 0.0464021 0.300774 0.0475876 0.335951 0.0483417 0.369058 0.0487257 0.401145 0.0489581 0.434788 0.0493213 0.473839 0.0499169 0.521637 0.0505017 0.579075 0.050631 0.645142 0.0496281 0.71917 0.0459987 0.799859 0.0379488 0.882965 0.967386 0.0357192 0.0213828 0.0365316 0.061238 0.0377798 0.10138 0.0393656 0.141827 0.0411657 0.182348 0.0430362 0.222496 0.0448193 0.261663 0.0463603 0.299233 0.0475316 0.334779 0.0482666 0.368323 0.048613 0.400798 0.0487712 0.43463 0.0490171 0.473593 0.0494732 0.521181 0.0499233 0.578625 0.0499307 0.645134 0.0489051 0.720195 0.045543 0.803221 0.038009 0.890499 0.97964 0.0357397 0.0210651 0.0365554 0.0604222 0.0377961 0.100139 0.039367 0.140256 0.0411465 0.180569 0.0429934 0.220649 0.0447527 0.259904 0.0462718 0.297714 0.0474226 0.333629 0.0481337 0.367612 0.0484404 0.400492 0.048526 0.434544 0.0486592 0.47346 0.0489818 0.520859 0.0493129 0.578294 0.049235 0.645212 0.0482255 0.721205 0.0451218 0.806325 0.0380523 0.897569 0.99146 0.035756 0.0207306 0.0365707 0.0596076 0.0377984 0.0989111 0.0393483 0.138706 0.0411011 0.178816 0.0429179 0.218832 0.0446467 0.258175 0.0461369 0.296224 0.0472608 0.332505 0.0479425 0.36693 0.048207 0.400227 0.0482217 0.43453 0.0482473 0.473434 0.0484439 0.520662 0.0486693 0.578069 0.0485263 0.645355 0.0475339 0.722197 0.0446465 0.809212 0.0380192 0.904196 1.00278 0.0357684 0.0203823 0.0365777 0.0587982 0.0377871 0.0977017 0.0393099 0.137183 0.0410299 0.177096 0.0428103 0.217052 0.0445018 0.256483 0.0459562 0.29477 0.0470461 0.331415 0.0476929 0.366284 0.0479117 0.400008 0.0478559 0.434585 0.0477773 0.473513 0.0478516 0.520588 0.0479743 0.577946 0.0477684 0.645561 0.0467822 0.723184 0.0440854 0.811909 0.0379062 0.910375 1.01355 0.0357769 0.0200235 0.0365769 0.0579982 0.0377627 0.0965159 0.0392526 0.135694 0.0409336 0.175415 0.0426713 0.215314 0.0443188 0.254836 0.0457302 0.293358 0.0467792 0.330366 0.0473847 0.365678 0.0475538 0.399839 0.0474262 0.434713 0.0472452 0.473694 0.047198 0.520635 0.047216 0.577928 0.0469458 0.645831 0.0459621 0.724167 0.0434476 0.814423 0.0377208 0.916102 1.02373 0.0357816 0.0196572 0.0365685 0.0572113 0.0377259 0.0953586 0.0391772 0.134242 0.040813 0.173779 0.0425016 0.213625 0.0440984 0.253239 0.0454597 0.291997 0.0464605 0.329365 0.0470182 0.36512 0.0471327 0.399725 0.0469315 0.434914 0.0466485 0.473977 0.0464797 0.520804 0.0463908 0.578017 0.0460569 0.646165 0.0450787 0.725145 0.0427416 0.81676 0.0374629 0.92138 1.03331 0.0357827 0.0192866 0.0365526 0.0564414 0.037677 0.0942342 0.0390842 0.132835 0.040669 0.172194 0.0423022 0.211992 0.0438415 0.2517 0.0451457 0.290693 0.0460909 0.32842 0.0465938 0.364618 0.0466485 0.39967 0.0463708 0.435192 0.0459856 0.474362 0.0456952 0.521094 0.045498 0.578214 0.0451015 0.646562 0.0441316 0.726115 0.0419654 0.818927 0.0371284 0.926217 1.04225 0.0357802 0.0189147 0.0365297 0.0556919 0.0376167 0.0931473 0.0389745 0.131477 0.0405024 0.170666 0.042074 0.210421 0.0435493 0.250224 0.0447891 0.289453 0.0456714 0.327538 0.0461123 0.364177 0.0461012 0.399681 0.0457436 0.435549 0.0452553 0.47485 0.0448432 0.521506 0.0445359 0.578522 0.0440765 0.647021 0.0431156 0.727076 0.041113 0.820929 0.0367135 0.930617 1.05054 0.0357744 0.0185447 0.0364999 0.0549663 0.0375454 0.0921018 0.0388489 0.130174 0.0403143 0.169201 0.0418182 0.208917 0.0432229 0.24882 0.0443913 0.288285 0.045203 0.326726 0.0455745 0.363805 0.0454913 0.399764 0.0450496 0.435991 0.0444566 0.475443 0.0439221 0.522041 0.0435023 0.578941 0.0429777 0.647546 0.0420247 0.728029 0.0401792 0.822775 0.0362154 0.934581 1.05815 0.0357652 0.0181796 0.0364635 0.054268 0.0374636 0.0911018 0.0387081 0.128929 0.0401056 0.167804 0.0415359 0.207486 0.0428635 0.247492 0.0439534 0.287195 0.044687 0.325992 0.0449815 0.36351 0.0448195 0.399926 0.0442889 0.436522 0.0435886 0.476144 0.0429303 0.522699 0.0423948 0.579477 0.0418015 0.648139 0.0408547 0.728976 0.0391598 0.82447 0.0356299 0.93811 1.06504 0.0357528 0.0364208 0.0373718 0.0385529 0.0398773 0.0412282 0.0424725 0.0434769 0.0441248 0.0443346 0.0440866 0.0434617 0.042651 0.0418669 0.0412121 0.0405454 0.0396023 0.0380519 0.0349514 0.25407 0.00157013 0.249403 0.00466629 0.241773 0.00763092 0.231412 0.0103601 0.218633 0.0127793 0.203809 0.0148239 0.187371 0.0164388 0.169791 0.0175791 0.151581 0.0182106 0.133271 0.0183103 0.115405 0.0178659 0.0985264 0.0168783 0.08316 0.0153663 0.0697817 0.0133783 0.0587765 0.0110052 0.0503909 0.00838563 0.0446999 0.005691 0.0416139 0.00308601 0.0409601 0.000653777 -0.00168608 0.0426462 0.236094 0.00310858 0.231532 0.00922858 0.224082 0.0150804 0.213971 0.0204719 0.201493 0.0252567 0.187009 0.0293085 0.170926 0.0325213 0.153697 0.0348083 0.135804 0.0361035 0.117753 0.036361 0.100062 0.0355569 0.0832467 0.033694 0.0677945 0.0308185 0.0541235 0.0270494 0.0425205 0.0226081 0.0330889 0.0178172 0.0257391 0.0130408 0.0202505 0.00857463 0.016434 0.00447031 0.000417883 0.01433 0.219327 0.00466229 0.21473 0.0138257 0.207235 0.0225759 0.197064 0.0306429 0.184507 0.0378132 0.169912 0.0439038 0.153672 0.0487611 0.13622 0.0522601 0.118019 0.0543048 0.0995517 0.0548283 0.0813122 0.0537963 0.0637844 0.0512218 0.0473984 0.0472045 0.032457 0.0419908 0.0190511 0.036014 0.00702676 0.0298416 -0.00394218 0.0240097 -0.0141717 0.0188041 -0.0236986 0.0139973 0.00889402 -0.0321748 0.203717 0.00624867 0.199033 0.01851 0.191403 0.0302061 0.181047 0.0409981 0.16825 0.0506104 0.153346 0.0588077 0.136714 0.0653932 0.118767 0.0702071 0.0999449 0.073127 0.080706 0.0740673 0.0615122 0.07299 0.0427933 0.0699407 0.0248692 0.0651286 0.00783674 0.0590233 -0.00850926 0.05236 -0.0246124 0.0459447 -0.0409186 0.0403159 -0.0575568 0.0354424 -0.0740733 0.0305138 0.0244588 -0.0896381 0.189208 0.00786363 0.184446 0.0232722 0.176691 0.0379612 0.166157 0.0515313 0.153118 0.0636502 0.13789 0.074035 0.120834 0.0824499 0.102336 0.0887046 0.0828097 0.0926535 0.0626786 0.0941985 0.0423552 0.0933134 0.022176 0.0901199 0.00227993 0.0850247 -0.0175222 0.0788254 -0.0377432 0.072581 -0.0589641 0.0671656 -0.081429 0.0627808 -0.104721 0.0587348 -0.127721 0.0535132 0.045934 -0.149196 0.17574 0.00948878 0.170951 0.0280615 0.163147 0.0457654 0.15253 0.0621484 0.139352 0.0768278 0.12391 0.0894775 0.106533 0.0998266 0.0875795 0.107658 0.0674248 0.112808 0.0464471 0.115176 0.0249854 0.114775 0.00323816 0.111867 -0.018893 0.107156 -0.0418912 0.101824 -0.0664445 0.0971343 -0.0929885 0.0937096 -0.121277 0.0910691 -0.150264 0.087722 -0.178368 0.0816169 0.0718038 -0.204238 0.163253 0.0110977 0.15851 0.0328044 0.15077 0.0535055 0.140213 0.0727055 0.127064 0.0899769 0.111587 0.104954 0.0940785 0.117335 0.0748574 0.126879 0.0542549 0.133411 0.0325902 0.136841 0.0101048 0.13726 -0.0131751 0.135147 -0.0375956 0.131576 -0.0638496 0.128078 -0.0925935 0.125878 -0.123903 0.125019 -0.157016 0.124182 -0.190493 0.121199 -0.222615 0.113739 0.101257 -0.252068 0.151683 0.0126613 0.147069 0.0374187 0.139519 0.0610548 0.129186 0.083039 0.116257 0.102905 0.100959 0.120253 0.0835466 0.134748 0.0642942 0.146132 0.0434814 0.154224 0.0213568 0.158965 -0.0019524 0.16057 -0.0266004 0.159795 -0.0531389 0.158115 -0.0823406 0.157279 -0.114672 0.158209 -0.149825 0.160172 -0.186727 0.161085 -0.223858 0.158329 -0.25954 0.149421 0.134164 -0.292447 0.140966 0.0141516 0.136559 0.0418261 0.129323 0.0682905 0.119373 0.092989 0.106856 0.115423 0.0919521 0.135156 0.0748718 0.151828 0.0558415 0.165162 0.0350851 0.17498 0.0127759 0.181275 -0.0110761 0.184422 -0.0367911 0.18551 -0.0650649 0.186389 -0.0966496 0.188864 -0.131776 0.193336 -0.169874 0.19827 -0.209815 0.201025 -0.250208 0.198723 -0.28946 0.188673 0.170806 -0.326102 0.131039 0.0155452 0.126906 0.0459594 0.12009 0.0751063 0.110665 0.102415 0.0987293 0.127358 0.0844174 0.149468 0.0678903 0.168355 0.0493238 0.183728 0.0288829 0.195421 0.00666097 0.203497 -0.0174477 0.20853 -0.043899 0.211961 -0.0734586 0.215948 -0.106777 0.222183 -0.143874 0.230432 -0.184098 0.238494 -0.226513 0.24344 -0.270016 0.242226 -0.313072 0.23173 0.21167 -0.353937 0.121842 0.0168241 0.118034 0.0497673 0.111721 0.0814194 0.102932 0.111204 0.0917182 0.138572 0.0781641 0.163022 0.0623822 0.184137 0.0444985 0.201612 0.0246226 0.215297 0.00277895 0.22534 -0.0212246 0.232534 -0.0479281 0.238665 -0.078124 0.246144 -0.112407 0.256466 -0.150744 0.268769 -0.192579 0.280329 -0.237234 0.288094 -0.283864 0.288856 -0.330969 0.278835 0.257198 -0.376497 0.113316 0.0179771 0.109867 0.0532162 0.104113 0.0871734 0.0960405 0.119277 0.0856524 0.14896 0.0729844 0.17569 0.0581016 0.19902 0.0410819 0.218632 0.0219807 0.234398 0.000754543 0.246566 -0.0228729 0.256161 -0.0495191 0.265311 -0.079999 0.276624 -0.114842 0.291309 -0.153919 0.307846 -0.196719 0.323129 -0.242932 0.334307 -0.292251 0.338176 -0.343364 0.329947 0.307595 -0.393761 0.105408 0.0189987 0.102334 0.0562895 0.0971704 0.0923375 0.0898615 0.126585 0.080366 0.158455 0.0686733 0.187383 0.0548038 0.21289 0.0387914 0.234644 0.0206459 0.252543 0.000275013 0.266937 -0.0226376 0.279074 -0.0487097 0.291383 -0.0787093 0.306624 -0.113158 0.325758 -0.152089 0.346777 -0.195361 0.366401 -0.243102 0.382048 -0.295229 0.390303 -0.35029 0.385007 0.362704 -0.405398 0.0980669 0.0198893 0.0953706 0.0589858 0.090804 0.0969041 0.0842772 0.133112 0.0757072 0.167025 0.0650413 0.198049 0.0522588 0.225672 0.0373536 0.249549 0.0202943 0.269603 0.000943739 0.286288 -0.0210599 0.301078 -0.0463676 0.316691 -0.0757854 0.336042 -0.109936 0.359909 -0.14895 0.38579 -0.192564 0.410015 -0.24075 0.430234 -0.29395 0.443503 -0.351706 0.442764 0.422203 -0.411205 0.0912483 0.0206532 0.0889179 0.0613162 0.084937 0.100885 0.0791855 0.138864 0.0715443 0.174666 0.0619236 0.207669 0.0502664 0.237329 0.0365329 0.263283 0.0206612 0.285474 0.00249059 0.304458 -0.0183447 0.321913 -0.0424514 0.340798 -0.0705444 0.364135 -0.103221 0.392586 -0.140787 0.423355 -0.18335 0.452578 -0.231487 0.478371 -0.286372 0.498388 -0.347605 0.503997 0.48613 -0.411532 0.0849109 0.0212981 0.0829256 0.0633015 0.079504 0.104307 0.074501 0.143867 0.0677673 0.1814 0.0591808 0.216256 0.048653 0.247857 0.0361139 0.275822 0.0214735 0.300115 0.00454687 0.321385 -0.0150503 0.34151 -0.0379397 0.363687 -0.0648693 0.391064 -0.0965943 0.424311 -0.133758 0.460519 -0.176539 0.495359 -0.224683 0.526515 -0.278677 0.552382 -0.339733 0.565053 0.553282 -0.406885 0.0790183 0.0218332 0.077351 0.0649688 0.0744509 0.107207 0.0701544 0.148163 0.0642887 0.187266 0.0567051 0.22384 0.0472892 0.257273 0.03595 0.287161 0.0225833 0.313481 0.00700608 0.336962 -0.0111372 0.359653 -0.0324048 0.384955 -0.0574389 0.416098 -0.086895 0.453767 -0.121486 0.49511 -0.161658 0.535531 -0.207594 0.572451 -0.260957 0.605746 -0.324898 0.628993 0.626275 -0.397891 0.0735371 0.0222691 0.0721589 0.066347 0.069737 0.109629 0.0660935 0.151807 0.0610391 0.19232 0.0544038 0.230475 0.0460493 0.265627 0.0358606 0.29735 0.0237116 0.32563 0.00940483 0.351269 -0.00741971 0.376478 -0.0273366 0.404871 -0.0510383 0.4398 -0.0792691 0.481998 -0.11303 0.528871 -0.153309 0.57581 -0.199957 0.619099 -0.252314 0.658103 -0.312825 0.689504 0.698989 -0.385539 0.068439 0.0226163 0.0673214 0.0674647 0.0653333 0.111617 0.0622861 0.154854 0.0579825 0.196624 0.0522416 0.236216 0.0449167 0.272952 0.0358885 0.306378 0.0250338 0.336485 0.0121763 0.364127 -0.00298347 0.391638 -0.020925 0.422813 -0.0422479 0.461123 -0.0675835 0.507334 -0.097805 0.559093 -0.133991 0.611996 -0.176568 0.661675 -0.225764 0.7073 -0.285651 0.749391 0.781278 -0.367941 0.063718 0.0628347 0.0612288 0.0587062 0.0550611 0.0500901 0.0436228 0.0355199 0.025641 0.0137937 -0.000330199 -0.0172258 -0.0375479 -0.0619237 -0.0913198 -0.127919 -0.172635 -0.22002 -0.267267 -0.351761 0.0431348 -0.000488607 0.0437752 -0.00064041 0.0445603 -0.000785086 0.0454832 -0.000922881 0.0465386 -0.00105546 0.0477226 -0.00118394 0.0490319 -0.00130937 0.0504647 -0.0014328 0.05202 -0.00155521 0.0536975 -0.00167751 0.055498 -0.00180054 0.0574231 -0.00192506 0.0594748 -0.00205178 0.0616561 -0.0021813 0.0639703 -0.00231419 0.0664213 -0.00245092 0.0690132 -0.00259193 0.0717507 -0.00273755 0.0746389 -0.00288811 -0.00304384 0.0776827 0.0145687 -0.000727327 0.0149086 -0.000980247 0.0153445 -0.001221 0.0158745 -0.00145289 0.0164983 -0.00167922 0.0172158 -0.0019015 0.0180276 -0.00212113 0.0189343 -0.00233953 0.0199371 -0.00255801 0.0210373 -0.00277776 0.0222366 -0.00299984 0.0235368 -0.00322521 0.0249398 -0.00345474 0.0264477 -0.0036892 0.0280627 -0.00392925 0.0297873 -0.00417547 0.0316237 -0.00442838 0.0335745 -0.00468837 0.0356422 -0.00495578 -0.00523086 0.0378292 -0.0321863 -0.000715763 -0.0321592 -0.00100742 -0.03209 -0.00129021 -0.0319709 -0.00157194 -0.031795 -0.00185515 -0.0315571 -0.00213936 -0.0312535 -0.00242469 -0.0308814 -0.00271171 -0.0304383 -0.00300105 -0.0299227 -0.00329339 -0.0293331 -0.00358939 -0.0286686 -0.0038897 -0.0279284 -0.00419496 -0.0271119 -0.00450574 -0.0262185 -0.00482258 -0.0252481 -0.00514595 -0.0242002 -0.00547625 -0.0230747 -0.00581383 -0.0218715 -0.00615896 -0.00651185 -0.0205905 -0.0896318 -0.000722095 -0.08963 -0.00100917 -0.089618 -0.00130221 -0.0895807 -0.00160923 -0.0895088 -0.00192713 -0.0893968 -0.00225129 -0.0892419 -0.00257958 -0.0890424 -0.00291129 -0.0887972 -0.00324622 -0.0885061 -0.00358451 -0.088169 -0.00392646 -0.0877862 -0.00427245 -0.0873583 -0.00462294 -0.0868856 -0.00497837 -0.0863691 -0.00533916 -0.0858093 -0.00570572 -0.0852071 -0.0060784 -0.0845635 -0.0064575 -0.0838792 -0.00684326 -0.00723588 -0.0831551 -0.148814 -0.00110372 -0.148464 -0.00135995 -0.148125 -0.00164109 -0.147786 -0.00194808 -0.147443 -0.00227056 -0.147093 -0.002601 -0.146736 -0.00293638 -0.146372 -0.00327563 -0.145999 -0.00361841 -0.145619 -0.00396473 -0.145231 -0.00431478 -0.144835 -0.00466885 -0.14443 -0.00502725 -0.144018 -0.00539032 -0.143599 -0.00575837 -0.143173 -0.00613168 -0.142741 -0.0065105 -0.142303 -0.00689503 -0.141861 -0.00728539 -0.00768167 -0.141416 -0.203313 -0.00202812 -0.202445 -0.00222854 -0.20162 -0.00246554 -0.200836 -0.00273187 -0.200093 -0.00301387 -0.199389 -0.00330452 -0.198724 -0.0036015 -0.198096 -0.00390402 -0.197503 -0.00421178 -0.196943 -0.00452466 -0.196415 -0.00484265 -0.195918 -0.0051658 -0.195451 -0.00549418 -0.195013 -0.00582788 -0.194605 -0.00616697 -0.194225 -0.00651149 -0.193874 -0.00686145 -0.193552 -0.00721681 -0.19326 -0.00757747 -0.00794328 -0.192999 -0.250647 -0.00344915 -0.249306 -0.00356987 -0.248048 -0.00372377 -0.246875 -0.00390468 -0.245787 -0.00410151 -0.244782 -0.00430965 -0.243856 -0.00452762 -0.243005 -0.00475466 -0.242227 -0.0049902 -0.241518 -0.00523381 -0.240875 -0.00548509 -0.240297 -0.00574372 -0.239782 -0.00600941 -0.239328 -0.00628186 -0.238934 -0.00656081 -0.2386 -0.00684595 -0.238324 -0.00713695 -0.238108 -0.00743345 -0.23795 -0.00773501 -0.00804113 -0.237852 -0.29067 -0.00522553 -0.288988 -0.0052527 -0.287423 -0.00528795 -0.285981 -0.00534743 -0.284656 -0.00542586 -0.283445 -0.00552057 -0.282343 -0.00563022 -0.281344 -0.00575369 -0.280444 -0.00588995 -0.27964 -0.0060381 -0.278928 -0.00619727 -0.278305 -0.00636668 -0.277768 -0.00654558 -0.277317 -0.00673326 -0.276949 -0.00692902 -0.276663 -0.00713213 -0.276458 -0.00734187 -0.276334 -0.00755746 -0.276291 -0.00777807 -0.00800277 -0.276329 -0.324143 -0.00718461 -0.322273 -0.00712223 -0.320549 -0.0070125 -0.318967 -0.00692967 -0.317521 -0.00687146 -0.316206 -0.00683588 -0.315015 -0.00682113 -0.313943 -0.00682559 -0.312985 -0.00684767 -0.312137 -0.00688594 -0.311396 -0.00693904 -0.310757 -0.00700566 -0.310218 -0.00708458 -0.309776 -0.0071746 -0.309431 -0.00727454 -0.30918 -0.00738324 -0.309022 -0.0074995 -0.308957 -0.00762209 -0.308986 -0.00774973 -0.00788107 -0.309107 -0.351997 -0.00912452 -0.350119 -0.00900014 -0.348401 -0.00873043 -0.346828 -0.00850269 -0.345394 -0.00830515 -0.344093 -0.00813711 -0.342918 -0.007996 -0.341864 -0.00787965 -0.340926 -0.00778596 -0.340099 -0.00771293 -0.339379 -0.00765868 -0.338763 -0.0076214 -0.338248 -0.00759936 -0.337832 -0.00759087 -0.337512 -0.00759427 -0.337288 -0.00760791 -0.337157 -0.00763014 -0.33712 -0.00765925 -0.337176 -0.00769352 -0.0077311 -0.337326 -0.374819 -0.0108023 -0.373148 -0.010671 -0.37164 -0.0102379 -0.37026 -0.00988319 -0.369006 -0.00955864 -0.367872 -0.00927114 -0.366852 -0.00901607 -0.365941 -0.00879115 -0.365133 -0.00859364 -0.364425 -0.0084211 -0.363813 -0.00827113 -0.363292 -0.00814146 -0.362862 -0.00802986 -0.362519 -0.0079342 -0.362261 -0.00785237 -0.362086 -0.00778225 -0.361995 -0.00772174 -0.361985 -0.00766871 -0.362058 -0.00762099 -0.0075763 -0.362212 -0.392623 -0.0119407 -0.391407 -0.0118871 -0.390345 -0.0113 -0.389369 -0.0108588 -0.388494 -0.0104338 -0.38771 -0.0100554 -0.387013 -0.00971286 -0.386399 -0.00940536 -0.385863 -0.00912924 -0.385403 -0.00888178 -0.385014 -0.00866012 -0.384693 -0.00846161 -0.38444 -0.00828361 -0.38425 -0.00812363 -0.384123 -0.00797914 -0.384058 -0.00784767 -0.384053 -0.00772673 -0.384108 -0.00761383 -0.384222 -0.00750641 -0.00740184 -0.384397 -0.405079 -0.0122599 -0.404566 -0.0124003 -0.404185 -0.0116808 -0.403828 -0.0112159 -0.403532 -0.0107299 -0.403282 -0.0103051 -0.403079 -0.00991593 -0.402918 -0.00956595 -0.402798 -0.00924954 -0.402715 -0.00896432 -0.402669 -0.00870698 -0.402655 -0.00847472 -0.402674 -0.00826465 -0.402724 -0.00807402 -0.402803 -0.00790003 -0.402911 -0.00773994 -0.403047 -0.007591 -0.40321 -0.00745045 -0.403401 -0.00731548 -0.00718319 -0.40362 -0.411973 -0.0114918 -0.4124 -0.0119732 -0.412921 -0.0111603 -0.413375 -0.0107624 -0.413833 -0.0102718 -0.414273 -0.00986465 -0.414705 -0.00948403 -0.415125 -0.00914589 -0.415534 -0.00884061 -0.415931 -0.00856758 -0.416315 -0.00832284 -0.416686 -0.0081037 -0.417043 -0.00790707 -0.417387 -0.00773016 -0.417717 -0.00757007 -0.418033 -0.00742398 -0.418335 -0.00728906 -0.418623 -0.00716245 -0.418897 -0.00704124 -0.00692241 -0.419158 -0.413632 -0.00939266 -0.415196 -0.0104091 -0.416792 -0.00956451 -0.418207 -0.00934727 -0.41956 -0.00891875 -0.420816 -0.00860853 -0.421993 -0.00830641 -0.423088 -0.00805164 -0.424104 -0.00782484 -0.425042 -0.00762911 -0.425906 -0.00745882 -0.426697 -0.00731233 -0.427418 -0.00718655 -0.428069 -0.00707906 -0.428652 -0.00698711 -0.429168 -0.00690803 -0.429618 -0.00683909 -0.430003 -0.00677752 -0.430324 -0.00672047 -0.00666496 -0.430581 -0.410595 -0.00568198 -0.413508 -0.00749598 -0.416396 -0.00667649 -0.418964 -0.00677912 -0.421376 -0.00650748 -0.423574 -0.00641003 -0.425598 -0.00628282 -0.427445 -0.0062048 -0.429129 -0.00614055 -0.430655 -0.00610279 -0.43203 -0.00608377 -0.433258 -0.00608431 -0.434344 -0.00610114 -0.43529 -0.00613255 -0.436101 -0.00617596 -0.43678 -0.0062291 -0.43733 -0.00628955 -0.437753 -0.00635485 -0.438051 -0.00642227 -0.00648904 -0.438227 -0.403627 5.41478e-05 -0.408243 -0.00287921 -0.412687 -0.00223295 -0.416578 -0.0028886 -0.420181 -0.00290366 -0.423441 -0.00315044 -0.426423 -0.00330101 -0.429121 -0.00350617 -0.431557 -0.00370514 -0.433734 -0.00392509 -0.435666 -0.00415242 -0.437359 -0.00439145 -0.438822 -0.00463822 -0.440062 -0.00489259 -0.441085 -0.00515242 -0.441898 -0.0054164 -0.442505 -0.00568265 -0.44291 -0.00594917 -0.443119 -0.00621334 -0.0064725 -0.443136 -0.393636 0.00815151 -0.40002 0.00350474 -0.406116 0.00386273 -0.4115 0.00249506 -0.4165 0.0020967 -0.421011 0.00136037 -0.425107 0.000795319 -0.428783 0.000169081 -0.432071 -0.000416436 -0.434987 -0.00100893 -0.437551 -0.00158886 -0.439775 -0.00216772 -0.441671 -0.00274195 -0.443249 -0.00331417 -0.444519 -0.00388321 -0.445486 -0.00444898 -0.446158 -0.00501033 -0.446542 -0.00556567 -0.446643 -0.00611218 -0.0066472 -0.446468 -0.379824 0.0200351 -0.38836 0.0120407 -0.396704 0.0122063 -0.40397 0.00976192 -0.410578 0.00870469 -0.416466 0.00724812 -0.42177 0.00609869 -0.426516 0.00491507 -0.430754 0.00382228 -0.434507 0.00274379 -0.437797 0.00170083 -0.440638 0.00067381 -0.443046 -0.000334609 -0.44503 -0.00132982 -0.446602 -0.0023116 -0.447769 -0.00328111 -0.448542 -0.00423791 -0.448927 -0.00518095 -0.448931 -0.00610728 -0.00701336 -0.448565 -0.364956 -0.376949 -0.386757 -0.395462 -0.403277 -0.410337 -0.416721 -0.422463 -0.427599 -0.432152 -0.436142 -0.439586 -0.4425 -0.444896 -0.446785 -0.448178 -0.449085 -0.449514 -0.449475 -0.448977 0.0808878 -0.00320511 0.0842595 -0.00337172 0.0878035 -0.00354394 0.0915253 -0.00372182 0.0954307 -0.00390538 0.0995253 -0.00409459 0.103815 -0.0042894 0.108304 -0.0044897 0.113 -0.00469537 0.117906 -0.00490627 0.123028 -0.0051222 0.128371 -0.00534297 0.13394 -0.00556838 0.139738 -0.00579821 0.14577 -0.00603227 0.15204 -0.00627038 0.158553 -0.00651236 0.165311 -0.00675812 0.17232 -0.00700861 -0.00726334 0.179583 0.0401379 -0.00551384 0.042571 -0.00580477 0.0451308 -0.00610372 0.0478196 -0.00641069 0.0506399 -0.00672561 0.0535936 -0.00704837 0.056683 -0.00737879 0.05991 -0.00771667 0.0632764 -0.00806179 0.066784 -0.00841386 0.0704344 -0.00877262 0.0742292 -0.00913778 0.0781699 -0.00950906 0.0822579 -0.0098862 0.0864947 -0.010269 0.0908816 -0.0106573 0.09542 -0.0110507 0.100111 -0.011449 0.104957 -0.0118547 -0.0122692 0.109963 -0.0192323 -0.00687205 -0.0177963 -0.00724082 -0.0162824 -0.0076176 -0.0146908 -0.00800233 -0.0130214 -0.00839493 -0.0112745 -0.00879526 -0.00945021 -0.00920313 -0.00754855 -0.00961832 -0.0055697 -0.0100406 -0.00351391 -0.0104697 -0.0013812 -0.0109053 0.000828227 -0.0113472 0.00311425 -0.0117951 0.00547677 -0.0122487 0.00791573 -0.012708 0.010431 -0.0131725 0.0130216 -0.0136413 0.0156859 -0.0141133 0.018426 -0.0145948 -0.0150908 0.0212476 -0.0823934 -0.00763379 -0.0815938 -0.00804042 -0.0807573 -0.00845408 -0.0798849 -0.00887472 -0.0789777 -0.0093022 -0.0780366 -0.00973634 -0.0770628 -0.0101769 -0.0760574 -0.0106237 -0.0750218 -0.0110762 -0.0739572 -0.0115343 -0.0728652 -0.0119974 -0.0717474 -0.0124651 -0.0706055 -0.0129369 -0.0694417 -0.0134125 -0.0682581 -0.0138916 -0.0670573 -0.0143733 -0.0658443 -0.0148544 -0.0646259 -0.0153318 -0.0634015 -0.0158192 -0.0163327 -0.0621596 -0.140969 -0.00808065 -0.14052 -0.00848869 -0.140072 -0.00890244 -0.139625 -0.00932168 -0.139181 -0.0097461 -0.138742 -0.0101753 -0.13831 -0.0106089 -0.137888 -0.0110463 -0.137477 -0.0114869 -0.137081 -0.01193 -0.136704 -0.0123748 -0.136348 -0.0128205 -0.136019 -0.0132662 -0.135721 -0.0137112 -0.135457 -0.0141551 -0.135235 -0.0145958 -0.135063 -0.0150256 -0.134958 -0.0154371 -0.134917 -0.0158607 -0.0163416 -0.134908 -0.19277 -0.00830881 -0.192575 -0.00868406 -0.192414 -0.00906344 -0.192289 -0.00944644 -0.192203 -0.00983243 -0.192158 -0.0102207 -0.192156 -0.0106104 -0.192202 -0.0110006 -0.192298 -0.0113902 -0.19245 -0.0117781 -0.192662 -0.012163 -0.192939 -0.0125434 -0.193288 -0.0129178 -0.193713 -0.0132858 -0.194221 -0.0136473 -0.194819 -0.0139977 -0.195525 -0.0143195 -0.196365 -0.0145971 -0.197329 -0.014897 -0.0153322 -0.198338 -0.237817 -0.00834375 -0.237844 -0.00865708 -0.237935 -0.00897286 -0.238091 -0.00929019 -0.238316 -0.009608 -0.238611 -0.00992514 -0.238981 -0.0102403 -0.23943 -0.010552 -0.239961 -0.0108588 -0.24058 -0.0111588 -0.241293 -0.0114501 -0.242106 -0.0117303 -0.243027 -0.0119975 -0.24406 -0.0122525 -0.245211 -0.0124966 -0.246488 -0.0127203 -0.247922 -0.0128854 -0.249557 -0.0129622 -0.251366 -0.0130883 -0.013517 -0.253181 -0.276452 -0.00822047 -0.276659 -0.00845019 -0.276951 -0.0086806 -0.277331 -0.00891032 -0.277802 -0.0091378 -0.278365 -0.00936135 -0.279026 -0.00957915 -0.279789 -0.00978923 -0.280659 -0.0099895 -0.28164 -0.0101775 -0.28274 -0.0103502 -0.283966 -0.0105041 -0.285326 -0.0106373 -0.286825 -0.0107539 -0.288462 -0.0108591 -0.29025 -0.0109327 -0.292238 -0.0108972 -0.294501 -0.0106998 -0.296979 -0.0106102 -0.0111452 -0.29935 -0.309326 -0.00800158 -0.309641 -0.00813571 -0.310053 -0.00826868 -0.310564 -0.00839859 -0.311179 -0.00852335 -0.3119 -0.0086407 -0.31273 -0.00874827 -0.313676 -0.00884362 -0.314741 -0.0089242 -0.315932 -0.00898675 -0.317256 -0.00902654 -0.318722 -0.00903822 -0.320338 -0.00902138 -0.322104 -0.00898793 -0.324012 -0.00895079 -0.326076 -0.00886812 -0.328381 -0.00859222 -0.331044 -0.00803714 -0.333952 -0.00770269 -0.0085703 -0.336526 -0.337574 -0.00775375 -0.337918 -0.00779197 -0.338359 -0.00782718 -0.338901 -0.00785695 -0.339546 -0.0078786 -0.340297 -0.00788928 -0.341159 -0.00788607 -0.342137 -0.00786622 -0.343234 -0.00782706 -0.344456 -0.00776443 -0.345812 -0.00767074 -0.347313 -0.00753735 -0.348967 -0.00736736 -0.350765 -0.0071896 -0.352685 -0.00703131 -0.354743 -0.00680977 -0.357079 -0.00625571 -0.359876 -0.00524073 -0.362929 -0.00464947 -0.00624614 -0.365253 -0.362454 -0.00751234 -0.362779 -0.00746638 -0.363191 -0.00741572 -0.36369 -0.0073574 -0.364281 -0.00728817 -0.364966 -0.00720451 -0.365749 -0.00710292 -0.366634 -0.0069806 -0.367626 -0.00683547 -0.368728 -0.00666272 -0.369949 -0.00644988 -0.371305 -0.00618143 -0.372806 -0.00586592 -0.374432 -0.00556393 -0.376133 -0.00533041 -0.37793 -0.00501184 -0.38005 -0.00413633 -0.382768 -0.00252267 -0.385742 -0.00167506 -0.00463831 -0.38735 -0.384636 -0.00727344 -0.384936 -0.00716607 -0.385299 -0.00705254 -0.385727 -0.00692943 -0.386222 -0.00679302 -0.386788 -0.00663901 -0.387428 -0.00646308 -0.388146 -0.00626236 -0.388945 -0.00603628 -0.389827 -0.00578072 -0.390801 -0.00547642 -0.391888 -0.00509397 -0.393109 -0.00464487 -0.394433 -0.00424032 -0.395772 -0.00399074 -0.397143 -0.00364154 -0.398877 -0.00240191 -0.40139 -9.48483e-06 -0.404167 0.0011018 -0.004156 -0.40465 -0.403871 -0.00702238 -0.404151 -0.00688614 -0.404461 -0.00674255 -0.404802 -0.00658782 -0.405177 -0.0064178 -0.405589 -0.00622751 -0.406041 -0.00601132 -0.406537 -0.00576554 -0.407082 -0.00549146 -0.407675 -0.00518837 -0.408319 -0.00483158 -0.409044 -0.00436946 -0.409885 -0.00380334 -0.410819 -0.0033072 -0.411714 -0.00309513 -0.412543 -0.00281277 -0.41373 -0.00121466 -0.415876 0.00213613 -0.418337 0.00356246 -0.00507121 -0.417421 -0.41941 -0.0067702 -0.41965 -0.00664649 -0.419878 -0.00651445 -0.420096 -0.00636983 -0.420306 -0.00620821 -0.420509 -0.00602415 -0.42071 -0.00581064 -0.420913 -0.00556178 -0.421126 -0.00527932 -0.421345 -0.00496875 -0.421569 -0.00460747 -0.421819 -0.00412001 -0.422148 -0.00347374 -0.422565 -0.00289076 -0.422916 -0.00274361 -0.423077 -0.00265261 -0.423467 -0.000824553 -0.424893 0.00356278 -0.426756 0.00542531 -0.0073237 -0.424504 -0.430781 -0.00657066 -0.430918 -0.0065088 -0.430995 -0.00643745 -0.431013 -0.00635194 -0.430974 -0.00624759 -0.430879 -0.00611893 -0.430731 -0.00595836 -0.430536 -0.00575723 -0.4303 -0.00551467 -0.430027 -0.00524176 -0.429706 -0.00492931 -0.429333 -0.0044923 -0.428963 -0.00384392 -0.428654 -0.00320015 -0.428288 -0.00310907 -0.427623 -0.00331759 -0.426908 -0.0015394 -0.427072 0.00372645 -0.42781 0.00616312 -0.0104608 -0.424673 -0.438287 -0.0065103 -0.438229 -0.00656723 -0.438053 -0.00661284 -0.437763 -0.00664221 -0.43736 -0.00665039 -0.436847 -0.00663226 -0.436224 -0.00658102 -0.435494 -0.00648696 -0.434665 -0.00634443 -0.433742 -0.0061644 -0.432714 -0.00595687 -0.431551 -0.00565569 -0.430268 -0.00512665 -0.428967 -0.00450183 -0.427639 -0.00443702 -0.425986 -0.00497017 -0.423936 -0.00358992 -0.422297 0.00208732 -0.421225 0.005092 -0.0140028 -0.417683 -0.442969 -0.00667741 -0.442616 -0.00692009 -0.44208 -0.00714856 -0.441364 -0.00735789 -0.440472 -0.007543 -0.439405 -0.00769918 -0.438165 -0.00782136 -0.43675 -0.00790182 -0.435162 -0.00793196 -0.433411 -0.0079157 -0.431494 -0.00787368 -0.429368 -0.00778184 -0.426991 -0.0075034 -0.424461 -0.0070323 -0.421929 -0.0069687 -0.419178 -0.00772137 -0.415766 -0.00700192 -0.412098 -0.00158038 -0.408757 0.00175037 -0.0179208 -0.404839 -0.446028 -0.0071172 -0.445322 -0.0076261 -0.444354 -0.00811662 -0.443128 -0.00858425 -0.441647 -0.00902435 -0.439913 -0.00943273 -0.437929 -0.00980578 -0.435692 -0.0101387 -0.4332 -0.0104242 -0.430458 -0.0106576 -0.42748 -0.0108515 -0.424247 -0.0110147 -0.420686 -0.0110643 -0.416831 -0.0108875 -0.412975 -0.0108245 -0.409173 -0.0115233 -0.404672 -0.0115025 -0.399208 -0.00704458 -0.393914 -0.00354404 -0.0227542 -0.38908 -0.447842 -0.00784005 -0.446765 -0.00870348 -0.44534 -0.0095418 -0.443572 -0.0103519 -0.441466 -0.0111306 -0.439024 -0.0118745 -0.43625 -0.0125799 -0.433146 -0.0132426 -0.429714 -0.0138567 -0.425957 -0.0144138 -0.4219 -0.0149089 -0.41757 -0.0153452 -0.412936 -0.0156974 -0.407954 -0.0158696 -0.402883 -0.0158962 -0.398193 -0.0162134 -0.39321 -0.0164855 -0.386321 -0.0139328 -0.379443 -0.0104221 -0.027506 -0.374692 -0.448039 -0.446669 -0.444876 -0.442665 -0.440044 -0.437017 -0.433594 -0.429786 -0.425605 -0.421069 -0.416202 -0.411048 -0.405647 -0.399969 -0.394034 -0.388279 -0.382831 -0.375169 -0.364068 -0.370191 0.204433 -0.0248506 0.2326 -0.0281663 0.263786 -0.0311858 0.297893 -0.034107 0.334921 -0.0370288 0.374258 -0.0393367 0.41519 -0.0409322 0.457134 -0.0419442 0.499516 -0.0423812 0.541723 -0.0422074 0.583144 -0.0414206 0.623195 -0.0400511 0.66134 -0.038145 0.69711 -0.0357704 0.730121 -0.0330109 0.76009 -0.0299686 0.786837 -0.0267472 0.810292 -0.023455 0.830476 -0.0201842 0.847499 -0.0170225 0.861529 -0.0140301 0.872791 -0.0112619 0.881531 -0.00874062 0.888021 -0.00649024 0.892524 -0.00450207 0.895302 -0.00277847 0.896592 -0.00129021 0.896619 -2.71866e-05 0.895571 0.00104828 0.893617 0.00195447 0.890892 0.00272461 0.887504 0.00338804 0.883545 0.00395876 0.87906 0.00448565 0.87411 0.00494983 0.868689 0.00542095 0.86284 0.00584883 0.856558 0.00628179 0.849876 0.00668239 0.00692442 0.133018 -0.0479055 0.159221 -0.0543693 0.188573 -0.0605379 0.220893 -0.0664276 0.256373 -0.0725088 0.293807 -0.0767708 0.33258 -0.0797052 0.372243 -0.081607 0.412259 -0.0823964 0.452062 -0.0820108 0.491096 -0.080455 0.528822 -0.0777769 0.564739 -0.0740617 0.598414 -0.0694456 0.629501 -0.0640976 0.657752 -0.0582202 0.683021 -0.0520156 0.705259 -0.0456933 0.724504 -0.0394288 0.74087 -0.0333894 0.754525 -0.0276846 0.765682 -0.0224193 0.77457 -0.0176281 0.78144 -0.0133604 0.786525 -0.00958754 0.790071 -0.00632412 0.792278 -0.00349657 0.793356 -0.001106 0.793457 0.000947318 0.792748 0.00266352 0.791324 0.00414872 0.789306 0.00540635 0.786741 0.00652349 0.783702 0.00752431 0.780207 0.0084451 0.776281 0.00934735 0.771932 0.0101975 0.767165 0.0110487 0.762006 0.0118416 0.0124072 0.0443912 -0.0710492 0.0703161 -0.0802942 0.0994284 -0.0896502 0.13137 -0.0983689 0.166899 -0.108038 0.203459 -0.113331 0.24101 -0.117256 0.279279 -0.119876 0.317754 -0.120871 0.355894 -0.12015 0.39315 -0.117712 0.428994 -0.11362 0.462951 -0.108019 0.494634 -0.101129 0.523754 -0.0932171 0.550123 -0.0845892 0.573654 -0.0755466 0.594352 -0.0663914 0.612297 -0.0573743 0.627634 -0.0487262 0.640547 -0.0405971 0.651252 -0.0331243 0.659973 -0.0263496 0.666945 -0.0203325 0.672384 -0.0150261 0.676504 -0.0104448 0.679487 -0.00647876 0.68151 -0.00312933 0.682705 -0.000247984 0.68321 0.00215837 0.683108 0.00425138 0.682491 0.00602279 0.681407 0.00760783 0.679897 0.00903405 0.677999 0.0103432 0.675684 0.0116622 0.673027 0.0128545 0.669911 0.0141645 0.666503 0.0152501 0.0162698 -0.0373026 -0.0959061 -0.010463 -0.107134 0.0195467 -0.11966 0.0517552 -0.130577 0.0882188 -0.144502 0.124324 -0.149436 0.16142 -0.154353 0.199115 -0.15757 0.236792 -0.158548 0.27385 -0.157209 0.309712 -0.153573 0.343861 -0.14777 0.375879 -0.140036 0.405446 -0.130697 0.432356 -0.120126 0.456503 -0.108737 0.477883 -0.0969261 0.496569 -0.0850777 0.512701 -0.0735067 0.526465 -0.0624897 0.538073 -0.0522048 0.547752 -0.0428037 0.55573 -0.034328 0.56223 -0.026832 0.567454 -0.0202504 0.571594 -0.0145847 0.574811 -0.00969599 0.577256 -0.00557421 0.579043 -0.00203464 0.580281 0.000919947 0.581041 0.00349162 0.581393 0.00567094 0.581375 0.00762548 0.58101 0.00939893 0.580338 0.0110151 0.5793 0.0127009 0.578002 0.0141528 0.576247 0.0159193 0.574294 0.0172032 0.0187563 -0.107662 -0.123152 -0.0792724 -0.135523 -0.0474938 -0.151439 -0.0150561 -0.163015 0.0228184 -0.182376 0.0590018 -0.185619 0.0964995 -0.191851 0.134265 -0.195336 0.171566 -0.195849 0.207778 -0.193422 0.242358 -0.188153 0.274858 -0.180269 0.304936 -0.170114 0.33236 -0.158121 0.357012 -0.144778 0.378874 -0.130599 0.398022 -0.116074 0.414599 -0.101655 0.428799 -0.0877068 0.440845 -0.0745359 0.450975 -0.062335 0.459426 -0.0512543 0.466426 -0.0413279 0.472186 -0.0325922 0.476899 -0.0249632 0.480734 -0.0184195 0.483837 -0.0127994 0.486335 -0.00807203 0.488328 -0.00402732 0.489902 -0.000654545 0.491118 0.00227627 0.492027 0.00476175 0.492659 0.00699324 0.493027 0.00903126 0.493161 0.0108812 0.492994 0.0128675 0.492634 0.0145131 0.49185 0.016703 0.490941 0.0181124 0.0202354 -0.168153 -0.153336 -0.137394 -0.166283 -0.102575 -0.186258 -0.0700148 -0.195575 -0.0304216 -0.22197 0.00657892 -0.22262 0.0449201 -0.230192 0.0828703 -0.233286 0.119792 -0.232771 0.155134 -0.228764 0.188426 -0.221445 0.219295 -0.211139 0.247479 -0.198298 0.272829 -0.183471 0.295314 -0.167263 0.315 -0.150286 0.332037 -0.133111 0.346629 -0.116246 0.359014 -0.100092 0.369446 -0.0849679 0.378179 -0.0710675 0.385452 -0.0585273 0.39149 -0.0473657 0.396491 -0.0375936 0.400635 -0.0291066 0.40407 -0.0218553 0.406929 -0.0156586 0.409318 -0.0104603 0.411323 -0.00603255 0.413014 -0.00234586 0.414441 0.000849306 0.415645 0.00355848 0.416643 0.00599434 0.417448 0.00822642 0.418073 0.0102564 0.418462 0.0124791 0.418697 0.0142778 0.418555 0.0168449 0.418331 0.0183367 0.0210426 -0.219812 -0.186706 -0.186187 -0.199908 -0.146775 -0.22567 -0.113809 -0.228541 -0.0726811 -0.263097 -0.034304 -0.260997 0.00479697 -0.269293 0.0427984 -0.271287 0.0792513 -0.269223 0.113675 -0.263187 0.145664 -0.253434 0.174916 -0.240391 0.20125 -0.224632 0.224606 -0.206827 0.245037 -0.187694 0.26269 -0.167938 0.277778 -0.148199 0.290556 -0.129025 0.3013 -0.110836 0.310283 -0.0939501 0.317765 -0.0785498 0.323985 -0.0647473 0.329158 -0.0525387 0.333468 -0.0419038 0.337078 -0.0327165 0.34012 -0.0248972 0.342709 -0.0182477 0.344934 -0.0126854 0.34687 -0.00796868 0.348573 -0.0040483 0.350081 -0.000659573 0.351429 0.0022111 0.352624 0.00479922 0.353679 0.00717158 0.354588 0.00934731 0.355314 0.0117529 0.355904 0.0136876 0.356164 0.0165851 0.356357 0.0181441 0.0214351 -0.262858 -0.223198 -0.226872 -0.235894 -0.181737 -0.270805 -0.147203 -0.263075 -0.105178 -0.305122 -0.0651746 -0.301001 -0.0255827 -0.308885 0.0123242 -0.309194 0.0481911 -0.30509 0.0815983 -0.296594 0.112215 -0.28405 0.139823 -0.268 0.164329 -0.249138 0.18576 -0.228258 0.204249 -0.206183 0.220012 -0.183701 0.233317 -0.161505 0.244461 -0.140168 0.253742 -0.120117 0.261444 -0.101652 0.267829 -0.0849355 0.273129 -0.0700472 0.277546 -0.0569555 0.281249 -0.0456064 0.284383 -0.0358508 0.287065 -0.0275788 0.289393 -0.0205764 0.291443 -0.0147352 0.293277 -0.00980251 0.294939 -0.00571014 0.29646 -0.00218029 0.297865 0.000806001 0.299154 0.00351023 0.300341 0.0059841 0.301403 0.00828588 0.302322 0.0108337 0.303105 0.0129043 0.3036 0.0160898 0.304021 0.0177236 0.0215954 -0.296694 -0.263031 -0.259761 -0.272826 -0.209296 -0.32127 -0.171236 -0.301135 -0.128954 -0.347403 -0.0874548 -0.3425 -0.047666 -0.348674 -0.0100485 -0.346812 0.0250436 -0.340182 0.0572781 -0.328829 0.0864171 -0.313189 0.112334 -0.293917 0.135023 -0.271827 0.154593 -0.247828 0.171249 -0.222839 0.185264 -0.197716 0.19695 -0.173192 0.206631 -0.149848 0.214618 -0.128104 0.221199 -0.108234 0.226632 -0.0903684 0.231136 -0.0745508 0.234899 -0.0607182 0.238074 -0.0487814 0.240791 -0.0385678 0.24315 -0.0299383 0.245237 -0.0226638 0.247114 -0.0166119 0.248832 -0.0115204 0.250426 -0.00730373 0.251917 -0.0036719 0.253327 -0.000603548 0.254645 0.00219193 0.255889 0.00474058 0.257016 0.00715861 0.25803 0.00981964 0.258898 0.0120366 0.259514 0.0154734 0.260032 0.0172059 0.0216475 -0.32105 -0.307234 -0.284102 -0.309774 -0.230603 -0.374769 -0.18732 -0.344417 -0.144994 -0.38973 -0.102447 -0.385047 -0.062755 -0.388366 -0.0256894 -0.383877 0.00839413 -0.374266 0.0392753 -0.35971 0.0668194 -0.340733 0.0909934 -0.31809 0.111876 -0.292709 0.129649 -0.2656 0.144578 -0.237768 0.156981 -0.21012 0.167202 -0.183412 0.175578 -0.158225 0.182428 -0.134954 0.188034 -0.11384 0.192644 -0.0949779 0.196462 -0.0783693 0.199662 -0.0639183 0.202381 -0.0515007 0.204734 -0.0409208 0.206808 -0.0320117 0.208675 -0.0245306 0.210385 -0.0183227 0.211982 -0.0131173 0.213492 -0.00881316 0.214929 -0.00510878 0.216308 -0.00198245 0.217612 0.000887252 0.218859 0.00349336 0.219994 0.0060239 0.221035 0.00877858 0.221914 0.0111582 0.222572 0.0148146 0.223099 0.0166795 0.0216713 -0.337208 -0.357377 -0.299168 -0.347813 -0.245662 -0.428276 -0.196942 -0.393137 -0.154346 -0.432326 -0.111332 -0.428061 -0.0720365 -0.427661 -0.0358332 -0.420081 -0.00300728 -0.407092 0.0263386 -0.389056 0.0521761 -0.366571 0.0745634 -0.340478 0.093656 -0.311801 0.109699 -0.281644 0.123006 -0.251075 0.133928 -0.221042 0.142826 -0.19231 0.150044 -0.165443 0.155897 -0.140807 0.160657 -0.1186 0.164557 -0.0988784 0.167788 -0.0815999 0.170505 -0.0666357 0.172832 -0.0538274 0.174869 -0.0429572 0.176689 -0.0338325 0.178356 -0.0261974 0.179911 -0.0198772 0.181386 -0.014593 0.182803 -0.0102294 0.184168 -0.00647448 0.185493 -0.00330679 0.186754 -0.000374415 0.187969 0.00227923 0.189071 0.00492182 0.190091 0.00775842 0.190931 0.0103182 0.191579 0.0141668 0.192056 0.0162024 0.0217152 -0.347544 -0.414482 -0.30561 -0.389748 -0.254033 -0.479853 -0.201251 -0.445919 -0.158104 -0.475473 -0.115197 -0.470968 -0.0766038 -0.466254 -0.0415809 -0.455104 -0.0102522 -0.438421 0.017394 -0.416702 0.0414328 -0.39061 0.0620073 -0.361052 0.0793402 -0.329134 0.0937277 -0.296031 0.105518 -0.262865 0.115083 -0.230607 0.122791 -0.200017 0.128983 -0.171635 0.133964 -0.145788 0.137992 -0.122629 0.141283 -0.10217 0.144011 -0.0843275 0.146315 -0.0689399 0.148304 -0.0558166 0.150066 -0.044719 0.151664 -0.0354305 0.153151 -0.027684 0.154559 -0.0212856 0.155916 -0.0159501 0.157235 -0.0115481 0.158519 -0.00775872 0.159773 -0.00456044 0.160971 -0.00157296 0.162127 0.00112394 0.163169 0.0038795 0.164135 0.00679232 0.164905 0.00954807 0.165507 0.0135653 0.1659 0.0158094 0.0218045 -0.353979 -0.477924 -0.30543 -0.438297 -0.255926 -0.529358 -0.20106 -0.500786 -0.157331 -0.519201 -0.115048 -0.513251 -0.0774641 -0.503838 -0.0439071 -0.488661 -0.0142852 -0.468042 0.0115298 -0.442517 0.0337084 -0.412788 0.0524687 -0.379813 0.0680892 -0.344755 0.0809043 -0.308846 0.0912853 -0.273246 0.0996133 -0.238935 0.106254 -0.206658 0.111541 -0.176921 0.115761 -0.150008 0.119157 -0.126024 0.121925 -0.104938 0.124223 -0.0866247 0.126173 -0.0708907 0.127873 -0.057516 0.129396 -0.0462426 0.130799 -0.0368328 0.132123 -0.0290085 0.133397 -0.022559 0.134639 -0.017193 0.135859 -0.012768 0.137056 -0.00895555 0.138229 -0.00573297 0.139351 -0.00269512 0.14043 4.48474e-05 0.141395 0.00291446 0.142285 0.00590225 0.142967 0.00886613 0.143501 0.0130315 0.143792 0.0155178 0.0219489 -0.357265 -0.545163 -0.300816 -0.494745 -0.252419 -0.577755 -0.197117 -0.556087 -0.153011 -0.563307 -0.111794 -0.554469 -0.0755227 -0.540109 -0.0436664 -0.520517 -0.0159155 -0.495793 0.00797939 -0.466412 0.0282736 -0.433083 0.0452476 -0.396787 0.0592224 -0.358729 0.0705587 -0.320183 0.0796397 -0.282327 0.0868464 -0.246142 0.0925357 -0.212348 0.0970248 -0.18141 0.100584 -0.153567 0.103434 -0.128875 0.105754 -0.107258 0.107684 -0.0885544 0.109333 -0.0725395 0.110783 -0.0589666 0.112101 -0.0475601 0.113331 -0.038063 0.11451 -0.0301878 0.115659 -0.0237081 0.116793 -0.0183272 0.117916 -0.0138901 0.119022 -0.0100623 0.120108 -0.00681842 0.121145 -0.00373283 0.122138 -0.00094737 0.123015 0.00203681 0.123816 0.0051012 0.124402 0.00828055 0.124857 0.0125765 0.125043 0.0153319 0.0221472 -0.357393 -0.612443 -0.293262 -0.558875 -0.244845 -0.626172 -0.190192 -0.61074 -0.146007 -0.607493 -0.106201 -0.594275 -0.0715477 -0.574762 -0.0415825 -0.550482 -0.0158181 -0.521558 0.00611197 -0.488342 0.0245348 -0.451505 0.0397782 -0.41203 0.0521926 -0.371144 0.0621533 -0.330143 0.0700457 -0.29022 0.0762432 -0.252339 0.0810879 -0.217193 0.084878 -0.1852 0.0878627 -0.156551 0.0902437 -0.131256 0.0921805 -0.109195 0.0937965 -0.0901704 0.0951873 -0.0739303 0.0964244 -0.0602036 0.0975632 -0.0486989 0.0986424 -0.0391422 0.0996917 -0.0312371 0.100727 -0.0247432 0.101759 -0.0193588 0.102786 -0.0149171 0.103802 -0.0110788 0.104798 -0.00781431 0.105747 -0.00468217 0.106647 -0.00184735 0.107433 0.00125097 0.108139 0.00439515 0.108628 0.00779219 0.109 0.0122036 0.109085 0.015247 0.0223924 -0.354048 -0.676078 -0.283527 -0.629396 -0.234109 -0.675591 -0.180817 -0.664032 -0.136977 -0.651333 -0.098873 -0.632379 -0.0661375 -0.607498 -0.0382259 -0.578394 -0.0145234 -0.54526 0.00543344 -0.508299 0.0220266 -0.468099 0.0356157 -0.425619 0.0465675 -0.382096 0.0552615 -0.338837 0.0620766 -0.297035 0.0673726 -0.257635 0.0714725 -0.221292 0.074653 -0.188381 0.0771417 -0.15904 0.0791201 -0.133234 0.0807295 -0.110804 0.0820781 -0.091519 0.0832487 -0.0751009 0.0843025 -0.0612575 0.0852867 -0.0496831 0.0862333 -0.0400888 0.0871664 -0.0321702 0.0880975 -0.0256743 0.0890332 -0.0202945 0.089969 -0.015853 0.0908968 -0.0120066 0.0918034 -0.00872082 0.0926636 -0.0055424 0.0934701 -0.0026539 0.094164 0.000557084 0.0947746 0.00378462 0.09517 0.00739678 0.0954627 0.0119109 0.095457 0.0152526 0.0226739 -0.346664 -0.734252 -0.271955 -0.704105 -0.220616 -0.72693 -0.169188 -0.71546 -0.126363 -0.694157 -0.0902708 -0.668471 -0.0597297 -0.638039 -0.0340122 -0.604111 -0.0124171 -0.566855 0.0055835 -0.5263 0.0204065 -0.482921 0.0324278 -0.43764 0.0420189 -0.391687 0.0495538 -0.346372 0.0553985 -0.30288 0.0598935 -0.26213 0.0633399 -0.224739 0.0659913 -0.191032 0.0680534 -0.161102 0.0696875 -0.134868 0.0710182 -0.112135 0.0721394 -0.0926402 0.0731223 -0.0760837 0.0740191 -0.0621543 0.0748693 -0.0505334 0.0756996 -0.0409191 0.076529 -0.0329996 0.0773652 -0.0265105 0.0782115 -0.0211408 0.0790609 -0.0167023 0.079903 -0.0128488 0.0807224 -0.0095402 0.0814953 -0.00631528 0.0822104 -0.00336903 0.0828154 -4.78906e-05 0.0833338 0.00326621 0.0836438 0.00708681 0.0838621 0.0116925 0.0837795 0.0153352 0.0229804 -0.334922 -0.78841 -0.258431 -0.780596 -0.204617 -0.780745 -0.155504 -0.764572 -0.114551 -0.735111 -0.0808051 -0.702217 -0.0526794 -0.666165 -0.0292569 -0.627534 -0.00978157 -0.586331 0.00630393 -0.542385 0.0194305 -0.496048 0.0299766 -0.448186 0.0383079 -0.400018 0.0447861 -0.35285 0.0497584 -0.307852 0.0535431 -0.265915 0.0564169 -0.227613 0.0586097 -0.193225 0.0603051 -0.162798 0.0616455 -0.136209 0.0627392 -0.113229 0.0636672 -0.0935682 0.0644902 -0.0769067 0.0652524 -0.0629165 0.0659868 -0.0512678 0.066715 -0.0416473 0.0674518 -0.0337363 0.0682018 -0.0272606 0.0689654 -0.0219044 0.0697333 -0.0174702 0.070494 -0.0136095 0.07123 -0.0102762 0.0719191 -0.00700438 0.0725471 -0.003997 0.0730683 -0.000569153 0.0735008 0.00283377 0.0737347 0.00685289 0.0738865 0.0115407 0.0737418 0.01548 0.0233012 -0.318684 -0.844418 -0.242777 -0.856503 -0.186714 -0.836808 -0.140498 -0.810789 -0.102121 -0.773487 -0.0709875 -0.73335 -0.0453919 -0.69176 -0.0242821 -0.648643 -0.00688223 -0.603731 0.0073686 -0.556636 0.0188975 -0.507577 0.0280745 -0.457363 0.035252 -0.407196 0.0407737 -0.358372 0.0449655 -0.312044 0.0481213 -0.269071 0.0504932 -0.229985 0.0522876 -0.195019 0.053667 -0.164177 0.0547558 -0.137297 0.0556473 -0.11412 0.0564106 -0.0943315 0.057097 -0.0775931 0.0577436 -0.0635631 0.0583774 -0.0519016 0.0590158 -0.0422857 0.0596698 -0.0343903 0.0603416 -0.0279324 0.0610288 -0.0225916 0.0617208 -0.0181622 0.0624048 -0.0142934 0.0630622 -0.0109337 0.0636724 -0.00761457 0.064219 -0.00454362 0.0646632 -0.00101328 0.0650174 0.00247951 0.0651854 0.00668493 0.0652796 0.0114465 0.0650872 0.0156724 0.0236268 -0.295445 -0.919164 -0.225329 -0.926618 -0.169116 -0.893021 -0.125763 -0.854142 -0.0902067 -0.809044 -0.0616874 -0.76187 -0.0385147 -0.714933 -0.0195774 -0.667581 -0.00410111 -0.619207 0.00847095 -0.569208 0.0185541 -0.51766 0.0265049 -0.465314 0.0326587 -0.413349 0.0373389 -0.363052 0.0408486 -0.315553 0.0434581 -0.27168 0.0453961 -0.231923 0.0468473 -0.196471 0.0479554 -0.165285 0.0488285 -0.13817 0.0495469 -0.114839 0.0501691 -0.0949537 0.0507379 -0.078162 0.0512843 -0.0641094 0.0518301 -0.0524473 0.0523891 -0.0428447 0.0529687 -0.03497 0.0535694 -0.028533 0.0541862 -0.0232084 0.0548077 -0.0187838 0.05542 -0.0149057 0.0560044 -0.0115181 0.0565413 -0.00815144 0.0570132 -0.00501555 0.0573876 -0.00138771 0.057672 0.00219511 0.0577845 0.00657251 0.0578301 0.0114008 0.0576025 0.0159001 0.0239484 0.046784 -0.942627 0.0681598 -0.947994 0.0794303 -0.904291 0.0847455 -0.859457 0.0866109 -0.810909 0.0860468 -0.761306 0.0839588 -0.712845 0.0807248 -0.664347 0.0766102 -0.615092 0.0718276 -0.564425 0.0666095 -0.512442 0.0612107 -0.459915 0.0558795 -0.408018 0.050827 -0.358 0.046208 -0.310934 0.0421159 -0.267588 0.0385896 -0.228396 0.0356262 -0.193507 0.0331947 -0.162854 0.0312476 -0.136223 0.0297301 -0.113321 0.0285863 -0.09381 0.027763 -0.0773387 0.0272111 -0.0635576 0.0268868 -0.052123 0.026751 -0.042709 0.0267689 -0.0349879 0.0269097 -0.0286738 0.0271453 -0.0234439 0.0274503 -0.0190888 0.0278026 -0.0152579 0.0281812 -0.0118967 0.0285692 -0.00853945 0.028951 -0.00539731 0.0293093 -0.00174597 0.0296441 0.00186026 0.029916 0.00630061 0.0301836 0.0111332 0.0303273 0.0157563 0.0238048 0.0546583 -0.972557 0.0701004 -0.963436 0.0799833 -0.914174 0.0838202 -0.863294 0.0850134 -0.812102 0.0840931 -0.760385 0.0818443 -0.710596 0.078587 -0.661089 0.0745273 -0.611033 0.0698583 -0.559756 0.0647966 -0.50738 0.0595833 -0.454702 0.0544524 -0.402887 0.0496013 -0.353149 0.0451732 -0.306506 0.0412537 -0.263668 0.0378772 -0.22502 0.0350391 -0.190669 0.032709 -0.160523 0.0308411 -0.134355 0.0293834 -0.111863 0.0282826 -0.0927093 0.027488 -0.0765441 0.0269531 -0.0630227 0.0266359 -0.0518057 0.026499 -0.0425721 0.0265088 -0.0349977 0.0266353 -0.0288003 0.026851 -0.0236596 0.0271308 -0.0193686 0.0274526 -0.0155798 0.0277956 -0.0122397 0.028143 -0.00888684 0.0284788 -0.00573312 0.0287869 -0.00205412 0.0290665 0.00158069 0.0292805 0.00608661 0.0294871 0.0109267 0.0295661 0.0156773 0.0237177 0.0531617 -1.00025 0.0674404 -0.977715 0.0770321 -0.923766 0.0808243 -0.867086 0.0820207 -0.813299 0.0812513 -0.759616 0.0791605 -0.708505 0.0760876 -0.658017 0.0722173 -0.607162 0.0677449 -0.555284 0.0628869 -0.502522 0.0578828 -0.449698 0.0529619 -0.397966 0.0483152 -0.348502 0.0440792 -0.30227 0.0403335 -0.259923 0.0371089 -0.221795 0.034399 -0.187959 0.0321735 -0.158298 0.0303884 -0.13257 0.0289935 -0.110469 0.0279386 -0.0916543 0.0271753 -0.0757808 0.0266597 -0.0625071 0.0263517 -0.0514977 0.0262157 -0.0424361 0.0262194 -0.0350014 0.0263335 -0.0289145 0.0265312 -0.0238573 0.0267878 -0.0196252 0.0270812 -0.0158732 0.0273907 -0.0125492 0.0276999 -0.00919605 0.0279925 -0.00602569 0.0282536 -0.00231522 0.0284815 0.00135284 0.0286417 0.0059264 0.0287918 0.0107765 0.0288119 0.0156572 0.023682 0.0538155 -1.02703 0.0666563 -0.990556 0.0750249 -0.932135 0.0784212 -0.870482 0.079327 -0.814204 0.0785433 -0.758832 0.0765176 -0.70648 0.0735769 -0.655076 0.0698742 -0.60346 0.0655938 -0.551004 0.0609449 -0.497873 0.0561587 -0.444912 0.0514557 -0.393263 0.0470183 -0.344065 0.0429759 -0.298228 0.0394031 -0.25635 0.0363277 -0.21872 0.0337428 -0.185375 0.0316189 -0.156174 0.0299137 -0.130865 0.0285797 -0.109135 0.027569 -0.0906436 0.0268361 -0.0750479 0.0263393 -0.0620102 0.0260406 -0.051199 0.025906 -0.0423015 0.0259043 -0.0349997 0.0260072 -0.0290174 0.0261883 -0.0240384 0.0264231 -0.01986 0.02669 -0.0161401 0.026968 -0.0128272 0.0272413 -0.00946933 0.0274932 -0.0062776 0.0277102 -0.00253223 0.0278897 0.00117333 0.0280002 0.00581591 0.0280984 0.0106784 0.028065 0.0156906 0.0236925 0.0523693 -1.05153 0.0645943 -1.00278 0.072243 -0.939783 0.0755853 -0.873825 0.0764124 -0.815032 0.0757115 -0.758131 0.0738073 -0.704575 0.0710208 -0.652289 0.0674947 -0.599933 0.063409 -0.546918 0.0589702 -0.493434 0.0544032 -0.440345 0.0499203 -0.38878 0.045695 -0.339839 0.0418486 -0.294381 0.0384502 -0.252952 0.0355249 -0.215794 0.0330651 -0.182915 0.0310423 -0.154151 0.0294162 -0.129239 0.0281421 -0.10786 0.027175 -0.0896765 0.026472 -0.0743449 0.0259938 -0.061532 0.0257045 -0.0509097 0.0255717 -0.0421687 0.0255654 -0.0349934 0.0256581 -0.02911 0.0258238 -0.0242042 0.0260384 -0.0200745 0.0262803 -0.0163821 0.0265287 -0.0130755 0.0267682 -0.00970878 0.0269818 -0.00649128 0.0271576 -0.00270799 0.027292 0.00103888 0.0273567 0.00575122 0.0274071 0.010628 0.0273256 0.0157721 0.0237441 0.0514787 -1.07423 0.0629116 -1.01421 0.0696835 -0.946555 0.072816 -0.876957 0.0735247 -0.81574 0.0728636 -0.75747 0.0710699 -0.702782 0.0684312 -0.649651 0.0650812 -0.596583 0.0611913 -0.543028 0.0569636 -0.489207 0.0526165 -0.435998 0.0483539 -0.384518 0.0443404 -0.335826 0.0406901 -0.290731 0.0374668 -0.249728 0.0346922 -0.21302 0.0323583 -0.180581 0.0304372 -0.15223 0.028891 -0.127693 0.0276774 -0.106647 0.0267544 -0.0887535 0.0260818 -0.0736724 0.0256229 -0.0610731 0.0253438 -0.0506305 0.0252136 -0.0420386 0.0252037 -0.0349835 0.0252873 -0.0291936 0.0254389 -0.0243558 0.0256346 -0.0202702 0.0258533 -0.0166007 0.0260738 -0.0132961 0.0262815 -0.00991646 0.0264593 -0.00666911 0.0265966 -0.00284524 0.0266892 0.000946309 0.0267119 0.00572849 0.0267187 0.0106212 0.0265942 0.0158966 0.0238317 0.0500988 -1.09495 0.0608366 -1.02495 0.0669508 -0.952669 0.0699201 -0.879926 0.0705786 -0.816399 0.0699692 -0.756861 0.0682955 -0.701108 0.0658068 -0.647162 0.0626344 -0.593411 0.0589418 -0.539335 0.0549268 -0.485192 0.0508005 -0.431872 0.0467583 -0.380476 0.0429564 -0.332024 0.0395016 -0.287276 0.0364527 -0.246679 0.0338289 -0.210396 0.0316211 -0.178373 0.0298025 -0.150411 0.028337 -0.126227 0.0271849 -0.105495 0.026307 -0.0878756 0.0256659 -0.0730312 0.0252271 -0.0606344 0.0249592 -0.0503625 0.0248327 -0.0419122 0.0248204 -0.0349711 0.024896 -0.0292692 0.0250349 -0.0244947 0.0252132 -0.0204485 0.02541 -0.0167975 0.0256045 -0.0134907 0.0257824 -0.0100944 0.0259267 -0.00681338 0.0260281 -0.00294664 0.0260819 0.000892508 0.0260664 0.00574401 0.0260336 0.010654 0.0258711 0.0160591 0.0239508 0.0488167 -1.11386 0.058768 -1.0349 0.0642449 -0.958146 0.0669938 -0.882675 0.0676069 -0.817012 0.0670415 -0.756295 0.0654868 -0.699553 0.0631488 -0.644824 0.0601553 -0.590417 0.0566621 -0.535842 0.0528616 -0.481391 0.0489573 -0.427967 0.0451358 -0.376654 0.041545 -0.328433 0.038285 -0.284016 0.0354098 -0.243804 0.0329362 -0.207922 0.0308545 -0.176291 0.0291388 -0.148696 0.0277547 -0.124843 0.0266652 -0.104405 0.0258334 -0.0870438 0.0252248 -0.0724226 0.0248075 -0.060217 0.0245518 -0.0501068 0.0244302 -0.0417906 0.0244165 -0.0349574 0.0244855 -0.0293382 0.0246129 -0.0246221 0.0247751 -0.0206108 0.0249517 -0.0169741 0.0251219 -0.0136608 0.0252719 -0.0102444 0.0253848 -0.00692631 0.025453 -0.00301478 0.025471 0.000874457 0.0254208 0.00579419 0.0253523 0.0107225 0.0251568 0.0162547 0.0240967 0.0473674 -1.13096 0.056532 -1.04407 0.0614687 -0.963083 0.0640049 -0.885211 0.0645937 -0.817601 0.0640771 -0.755779 0.0626431 -0.698119 0.0604579 -0.642639 0.0576453 -0.587605 0.0543538 -0.532551 0.0507699 -0.477807 0.0470889 -0.424286 0.0434885 -0.373054 0.0401086 -0.325053 0.0370425 -0.28095 0.0343401 -0.241102 0.0320159 -0.205598 0.03006 -0.174335 0.0284473 -0.147083 0.0271453 -0.123541 0.0261191 -0.103379 0.0253346 -0.0862593 0.0247597 -0.0718477 0.0243649 -0.0598222 0.0241227 -0.0498646 0.0240072 -0.0416752 0.0239935 -0.0349437 0.024057 -0.0294018 0.0241742 -0.0247393 0.0243218 -0.0207584 0.0244795 -0.0171319 0.024627 -0.0138083 0.024751 -0.0103683 0.0248347 -0.00701006 0.0248721 -0.00305216 0.0248573 0.000889217 0.024776 0.00587552 0.0246755 0.010823 0.0244516 0.0164786 0.024265 0.0458918 -1.14629 0.0542357 -1.05241 0.0586635 -0.967511 0.0609761 -0.887524 0.061544 -0.818169 0.0610786 -0.755313 0.0597654 -0.696806 0.0577352 -0.640609 0.0551058 -0.584975 0.0520188 -0.529464 0.0486538 -0.474442 0.0451974 -0.42083 0.0418188 -0.369675 0.0386494 -0.321884 0.0357764 -0.278077 0.0332457 -0.238571 0.0310701 -0.203423 0.0292393 -0.172505 0.0277295 -0.145573 0.0265099 -0.122322 0.0255478 -0.102417 0.0248116 -0.0855231 0.0242716 -0.0713078 0.0239007 -0.0594513 0.0236732 -0.0496371 0.023565 -0.041567 0.0235524 -0.034931 0.0236118 -0.0294611 0.02372 -0.0248475 0.0238542 -0.0208926 0.0239946 -0.0172723 0.0241209 -0.0139346 0.0242207 -0.010468 0.0242773 -0.00706672 0.0242864 -0.00306121 0.0242417 0.000933924 0.0241325 0.00598464 0.0240038 0.0109517 0.023756 0.0167263 0.0244515 0.0443265 -1.15988 0.0518443 -1.05993 0.0558062 -0.971473 0.0579038 -0.889622 0.0584554 -0.81872 0.0580462 -0.754904 0.0568545 -0.695614 0.054982 -0.638736 0.0525385 -0.582532 0.049659 -0.526584 0.0465152 -0.471299 0.0432852 -0.4176 0.0401288 -0.366519 0.0371696 -0.318925 0.034489 -0.275397 0.032129 -0.236211 0.0301009 -0.201394 0.0283947 -0.170798 0.0269874 -0.144166 0.0258504 -0.121184 0.024953 -0.10152 0.0242659 -0.0848361 0.0237619 -0.0708038 0.023416 -0.0591053 0.0232045 -0.0494257 0.0231049 -0.0414674 0.0230946 -0.0349208 0.023151 -0.0295175 0.0232515 -0.024948 0.0233737 -0.0210148 0.0234981 -0.0173966 0.0236048 -0.0140413 0.023682 -0.0105452 0.0237136 -0.00709833 0.0236967 -0.00304428 0.0236248 0.00100579 0.0234912 0.00611829 0.0233376 0.0111053 0.0230704 0.0169935 0.0246523 0.042711 -1.17174 0.0493904 -1.06661 0.0529071 -0.974989 0.0547947 -0.891509 0.0553299 -0.819255 0.0549809 -0.754555 0.0539117 -0.694545 0.0521996 -0.637024 0.0499452 -0.580278 0.0472764 -0.523916 0.0443564 -0.468379 0.0413543 -0.414598 0.0384208 -0.363585 0.0356717 -0.316176 0.0331826 -0.272908 0.0309922 -0.234021 0.0291107 -0.199513 0.0275281 -0.169216 0.0262231 -0.142861 0.0251685 -0.12013 0.0243362 -0.100687 0.023699 -0.0841989 0.023232 -0.0703367 0.0229122 -0.0587855 0.0227178 -0.0492313 0.022628 -0.0413776 0.0226213 -0.0349141 0.0226759 -0.0295721 0.0227699 -0.0250421 0.0228813 -0.0211262 0.0229911 -0.0175064 0.0230797 -0.0141299 0.023136 -0.0106016 0.0231446 -0.00710687 0.023104 -0.00300368 0.0230076 0.00110211 0.0228526 0.00627332 0.0226776 0.0112803 0.0223951 0.017276 0.0248637 0.0410335 -1.1819 0.0468705 -1.07245 0.0499627 -0.978081 0.0516495 -0.893196 0.0521684 -0.819774 0.0518836 -0.754271 0.0509383 -0.6936 0.0493896 -0.635475 0.0473277 -0.578216 0.0448729 -0.521461 0.0421795 -0.465685 0.0394069 -0.411825 0.0366969 -0.360875 0.0341577 -0.313637 0.0318593 -0.270609 0.0298377 -0.231999 0.0281016 -0.197777 0.0266419 -0.167756 0.0254385 -0.141657 0.0244663 -0.119158 0.0236993 -0.0999203 0.0231127 -0.0836122 0.0226834 -0.0699075 0.0223907 -0.0584927 0.0222147 -0.0490553 0.0221358 -0.0412987 0.0221338 -0.0349121 0.0221878 -0.0296261 0.0222765 -0.0251307 0.0223783 -0.021228 0.0224746 -0.0176027 0.0225466 -0.0142019 0.0225837 -0.0106387 0.0225711 -0.00709427 0.0225091 -0.00294162 0.0223909 0.00122025 0.0222176 0.0064467 0.0220244 0.0114734 0.0217306 0.0175698 0.0250821 0.0393085 -1.19037 0.0442976 -1.07743 0.0469774 -0.980761 0.0484713 -0.89469 0.048973 -0.820276 0.0487554 -0.754053 0.0479358 -0.69278 0.0465536 -0.634093 0.0446879 -0.57635 0.0424505 -0.519223 0.0399864 -0.463221 0.0374452 -0.409284 0.0349593 -0.358389 0.0326298 -0.311307 0.0305215 -0.268501 0.0286675 -0.230145 0.027076 -0.196185 0.0257383 -0.166419 0.024636 -0.140555 0.0237459 -0.118268 0.0230443 -0.0992188 0.0225086 -0.0830764 0.0221178 -0.0695167 0.0218531 -0.0582281 0.0216964 -0.0488985 0.0216294 -0.0412317 0.0216333 -0.0349159 0.0216877 -0.0296806 0.0217722 -0.0252152 0.0218656 -0.0213214 0.0219499 -0.017687 0.0220066 -0.0142586 0.0220262 -0.0106583 0.0219943 -0.00706241 0.021913 -0.00286027 0.0217756 0.00135765 0.0215867 0.00663552 0.0213786 0.0116816 0.0210772 0.0178712 0.0253043 0.0375373 -1.19717 0.0416755 -1.08157 0.0439524 -0.983038 0.0452614 -0.895999 0.0457452 -0.82076 0.0455974 -0.753905 0.0449056 -0.692088 0.0436933 -0.632881 0.0420274 -0.574684 0.0400111 -0.517207 0.0377791 -0.460989 0.035471 -0.406976 0.0332101 -0.356128 0.03109 -0.309187 0.0291712 -0.266582 0.027484 -0.228458 0.026036 -0.194737 0.0248195 -0.165202 0.0238176 -0.139553 0.0230093 -0.11746 0.0223731 -0.0985826 0.0218886 -0.0825919 0.0215369 -0.069165 0.021301 -0.0579922 0.0211644 -0.0487619 0.0211104 -0.0411777 0.0211211 -0.0349265 0.0211771 -0.0297366 0.0212584 -0.0252966 0.0213445 -0.0214075 0.0214179 -0.0177604 0.0214608 -0.0143015 0.0214643 -0.0106619 0.021415 -0.00701314 0.0213165 -0.00276175 0.0211624 0.00151182 0.0209609 0.00683701 0.0207406 0.0119019 0.0204352 0.0181766 0.0255271 0.035728 -1.20232 0.0390122 -1.08486 0.0408915 -0.984918 0.0420217 -0.897129 0.0424869 -0.821225 0.0424109 -0.753829 0.0418493 -0.691527 0.04081 -0.631842 0.039348 -0.573222 0.0375564 -0.515415 0.0355594 -0.458992 0.0334861 -0.404902 0.0314509 -0.354093 0.0295404 -0.307276 0.0278103 -0.264852 0.026289 -0.226937 0.0249837 -0.193432 0.0238876 -0.164106 0.0229854 -0.138651 0.0222586 -0.116733 0.0216877 -0.0980117 0.0212545 -0.0821587 0.0209423 -0.0688528 0.0207359 -0.0577857 0.0206202 -0.0486463 0.0205801 -0.0411376 0.0205984 -0.0349449 0.0206569 -0.0297951 0.0207361 -0.0253758 0.0208161 -0.0214874 0.0208798 -0.0178241 0.0209101 -0.0143318 0.0208992 -0.0106509 0.0208343 -0.00694824 0.0207206 -0.00264811 0.0205521 0.00168037 0.0203406 0.00704849 0.0201112 0.0121313 0.0198051 0.0184827 0.0257478 0.0338841 -1.20585 0.036313 -1.08729 0.0377977 -0.986402 0.0387541 -0.898085 0.0391998 -0.821671 0.0391969 -0.753826 0.038768 -0.691098 0.0379053 -0.630979 0.0366511 -0.571968 0.035088 -0.513852 0.0333289 -0.457233 0.0314924 -0.403066 0.0296836 -0.352284 0.0279826 -0.305575 0.0264408 -0.26331 0.0250846 -0.22558 0.0239211 -0.192269 0.0229445 -0.163129 0.0221416 -0.137848 0.0214958 -0.116087 0.02099 -0.097506 0.0206083 -0.0817769 0.0203359 -0.0685804 0.0201593 -0.0576092 0.0200653 -0.0485523 0.0200397 -0.041112 0.0200667 -0.0349719 0.0201286 -0.029857 0.0202066 -0.0254538 0.0202814 -0.0215622 0.0203366 -0.0178793 0.0203557 -0.0143509 0.0203318 -0.010627 0.020253 -0.00686947 0.0201262 -0.00252132 0.0199456 0.00186097 0.0197267 0.00726743 0.0194908 0.0123672 0.0191872 0.0187863 0.0259637 0.0320079 -1.20776 0.0335824 -1.08886 0.0346745 -0.987494 0.0354606 -0.898871 0.0358858 -0.822096 0.0359568 -0.753897 0.0356631 -0.690804 0.0349805 -0.630296 0.0339382 -0.570925 0.0326073 -0.512522 0.031089 -0.455715 0.0294911 -0.401468 0.0279098 -0.350703 0.0264183 -0.304084 0.0250644 -0.261956 0.0238726 -0.224389 0.0228501 -0.191246 0.0219923 -0.162271 0.021288 -0.137144 0.0207227 -0.115522 0.0202819 -0.0970651 0.0199516 -0.0814466 0.0197192 -0.068348 0.019573 -0.057463 0.0195011 -0.0484805 0.0194908 -0.0411016 0.0195271 -0.0350083 0.0195932 -0.0299231 0.019671 -0.0255316 0.0197416 -0.0216328 0.0197894 -0.0179271 0.0197986 -0.0143601 0.0197631 -0.0105915 0.0196722 -0.00677853 0.0195341 -0.00238331 0.0193437 0.00205139 0.0191197 0.00749142 0.0188799 0.012607 0.0185817 0.0190846 0.0261726 0.0301 -1.20809 0.0308236 -1.08958 0.0315246 -0.988195 0.0321428 -0.89949 0.0325464 -0.822499 0.0326917 -0.754043 0.0325356 -0.690648 0.0320367 -0.629798 0.0312103 -0.570099 0.0301155 -0.511427 0.028841 -0.45444 0.0274837 -0.400111 0.0261306 -0.34935 0.024849 -0.302802 0.0236826 -0.26079 0.0226546 -0.223361 0.0217724 -0.190364 0.0210328 -0.161532 0.0204265 -0.136537 0.0199414 -0.115037 0.0195652 -0.096689 0.0192863 -0.0811677 0.019094 -0.0681557 0.0189784 -0.0573474 0.0189292 -0.0484312 0.0189347 -0.0411071 0.018981 -0.0350546 0.0190521 -0.0299942 0.0191304 -0.0256099 0.0191978 -0.0217002 0.0192392 -0.0179685 0.0192397 -0.0143606 0.0191941 -0.0105459 0.0190927 -0.00667708 0.0189453 -0.00223595 0.0187472 0.00224948 0.0185205 0.00771818 0.0182792 0.0128483 0.0179889 0.0193747 0.0263723 0.0281665 0.0280409 0.0283499 0.028802 0.0291828 0.0294025 0.0293864 0.0290748 0.0284685 0.0276135 0.0265859 0.0254711 0.0243475 0.0232759 0.0222968 0.0214322 0.0206897 0.0200677 0.0195589 0.0191536 0.0188418 0.0186142 0.018462 0.0183772 0.0183509 0.0183726 0.0184296 0.0185063 0.018586 0.0186511 0.0186872 0.0186802 0.0186258 0.0185155 0.0183605 0.0181568 0.0179294 0.017689 0.0174091 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 80 ( -0.064125 -0.0689974 -0.0742232 -0.0798399 -0.0858811 -0.0923785 -0.0993659 -0.10688 -0.114961 -0.123651 -0.132997 -0.143047 -0.153856 -0.165481 -0.177985 -0.191435 -0.205903 -0.221469 -0.238217 -0.256239 -0.0353914 -0.0353871 -0.0353829 -0.0353791 -0.0353756 -0.0353726 -0.0353701 -0.0353682 -0.0353669 -0.0353662 -0.0353663 -0.0353671 -0.0353687 -0.035371 -0.0353741 -0.0353779 -0.0353826 -0.0353882 -0.0353953 -0.0354048 -0.0353618 -0.0353769 -0.0353883 -0.0353972 -0.0354043 -0.0354101 -0.0354146 -0.035418 -0.0354203 -0.0354216 -0.035422 -0.0354215 -0.0354201 -0.035418 -0.0354153 -0.0354121 -0.0354084 -0.0354044 -0.0354001 -0.0353957 -0.25564 -0.237633 -0.220881 -0.205304 -0.190823 -0.177366 -0.164862 -0.153247 -0.142456 -0.132433 -0.123121 -0.114469 -0.106429 -0.0989575 -0.0920122 -0.0855558 -0.0795534 -0.0739729 -0.0687862 -0.063975 ) ; } outlet { type calculated; value nonuniform List<scalar> 80 ( 0.0152536 0.0154217 0.0155239 0.0155555 0.0155138 0.0153979 0.0152095 0.0149544 0.0146433 0.0142929 0.0139274 0.0135788 0.0132867 0.0130966 0.0130556 0.0132068 0.0135815 0.0141923 0.0150292 0.0160665 0.0166668 0.016128 0.015604 0.0150948 0.0146003 0.0141203 0.0136549 0.0132038 0.0127668 0.0123438 0.0119346 0.0115388 0.0111563 0.0107869 0.0104302 0.0100861 0.00975412 0.00943409 0.00912572 0.00882873 0.0304709 0.0296532 0.0288476 0.0280545 0.027274 0.0265065 0.025752 0.0250109 0.0242833 0.0235695 0.0228696 0.0221837 0.0215122 0.020855 0.0202124 0.0195844 0.0189712 0.0183728 0.0177892 0.0172206 0.842951 0.756523 0.66264 0.571807 0.489462 0.417523 0.355964 0.30386 0.25998 0.223075 0.192012 0.16581 0.143648 0.124845 0.10884 0.0951756 0.083473 0.073421 0.0647616 0.0572808 ) ; } top { type symmetryPlane; value uniform 0; } bottom { type symmetryPlane; value uniform 0; } cylinder { type calculated; value nonuniform List<scalar> 160 ( -1.26723e-18 -9.49156e-19 -5.76e-18 3.95409e-18 5.56969e-18 1.61938e-17 -1.90059e-18 9.91098e-18 5.91938e-18 -1.03007e-18 -7.136e-18 2.6128e-17 2.27282e-17 1.87405e-17 2.07434e-17 -2.11392e-17 3.67771e-18 1.30912e-17 -2.28083e-17 2.10827e-17 4.46231e-19 1.16545e-19 5.17031e-18 7.23399e-18 6.86264e-18 -7.31934e-18 -5.60609e-18 -1.66175e-17 -3.20008e-17 1.10457e-17 -8.87709e-19 -1.45093e-17 -1.49462e-17 -1.64575e-17 -1.27289e-17 -4.65738e-18 1.70901e-17 -6.47295e-18 -2.8663e-18 -2.69136e-17 6.363e-18 2.8663e-18 8.25451e-19 1.73872e-17 2.03141e-17 2.25532e-17 1.64575e-17 1.49462e-17 4.76025e-17 8.87709e-19 -1.10457e-17 1.32159e-17 1.02476e-17 5.60609e-18 7.31934e-18 -6.86264e-18 -7.23399e-18 -5.17031e-18 -1.16545e-19 2.2359e-19 -6.67982e-19 9.49156e-19 5.76e-18 -3.95409e-18 -5.56969e-18 -1.61938e-17 1.90059e-18 -7.10169e-18 -5.91938e-18 1.03007e-18 7.136e-18 -2.6128e-17 -2.27282e-17 -1.87405e-17 5.38637e-18 -4.88309e-18 -3.61414e-18 -4.00645e-17 -4.94724e-18 -2.10827e-17 4.36443e-17 4.94724e-18 1.30912e-17 3.14969e-17 5.74975e-18 2.07434e-17 1.87405e-17 2.27282e-17 5.02558e-17 -7.136e-18 -1.03007e-18 1.71991e-17 9.91098e-18 -1.90059e-18 1.61938e-17 5.56969e-18 3.95409e-18 -5.76e-18 -9.49156e-19 -6.22162e-19 -2.69136e-17 -2.8663e-18 -3.42285e-17 1.70901e-17 -8.21528e-18 -1.27289e-17 -1.64575e-17 -1.49462e-17 -1.45093e-17 -8.87709e-19 1.10457e-17 -3.20008e-17 -1.02476e-17 -5.60609e-18 -7.31934e-18 6.86264e-18 7.23399e-18 5.17031e-18 1.16545e-19 4.46231e-19 2.2359e-19 -1.16545e-19 -5.17031e-18 -7.23399e-18 -6.86264e-18 7.31934e-18 5.60609e-18 1.02476e-17 3.20008e-17 -1.10457e-17 8.87709e-19 1.45093e-17 1.49462e-17 1.64575e-17 2.25532e-17 8.21528e-18 -3.8124e-17 8.25451e-19 -2.02821e-17 2.69136e-17 -2.10827e-17 -4.94724e-18 1.54467e-17 -3.61414e-18 2.11392e-17 5.38637e-18 -1.87405e-17 -2.27282e-17 -2.6128e-17 7.136e-18 1.03007e-18 -5.91938e-18 -9.91098e-18 1.90059e-18 -1.61938e-17 -5.56969e-18 -3.95409e-18 5.76e-18 9.49156e-19 -6.67982e-19 ) ; } frontandback { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "danieler@login3.stampede2.tacc.utexas.edu" ]
danieler@login3.stampede2.tacc.utexas.edu
8bf5cbf7c5c8f0edcfe365eea2ffde85286c5a13
2375d1860be18179b934334e9ea884fd73ee87b7
/cpp_basic/39-bankingExample.cpp
c036a498dfb71f24b65a971f8bd09000a9b0d6bc
[]
no_license
kosan-tospa/hello-world
28deb907a8c4759c92ebf704f5f0b024ef4738da
776cffd7536ca932f74685eb5351b04b3ebe75ac
refs/heads/main
2023-07-16T03:33:57.017482
2021-09-07T19:20:55
2021-09-07T19:20:55
404,094,914
0
0
null
null
null
null
UTF-8
C++
false
false
7,067
cpp
#include <iostream> #include <fstream> #include <cstdlib> #include <vector> #include <map> using namespace std; #define MIN_BALANCE 500 class InsufficientFunds { }; class Account { private: long accountNumber; string firstName; string lastName; float balance; static long NextAccountNumber; public: Account() {} Account(string fname, string lname, float balance); long getAccNo() { return accountNumber; } string getFirstName() { return firstName; } string getLastName() { return lastName; } float getBalance() { return balance; } void Deposit(float amount); void Withdraw(float amount); static void setLastAccountNumber(long accountNumber); static long getLastAccountNumber(); friend ofstream &operator<<(ofstream &ofs, Account &acc); friend ifstream &operator>>(ifstream &ifs, Account &acc); friend ostream &operator<<(ostream &os, Account &acc); }; long Account::NextAccountNumber = 0; class Bank { private: map<long, Account> accounts; public: Bank(); Account OpenAccount(string fname, string lname, float balance); Account BalanceEnquiry(long accountNumber); Account Deposit(long accountNumber, float amount); Account Withdraw(long accountNumber, float amount); void CloseAccount(long accountNumber); void ShowAllAccounts(); ~Bank(); }; int main() { Bank b; Account acc; int choice; string fname, lname; long accountNumber; float balance; float amount; cout << "***Banking System***" << endl; do { cout << "\n\tSelect one option below "; cout << "\n\t1 Open an Account"; cout << "\n\t2 Balance Enquiry"; cout << "\n\t3 Deposit"; cout << "\n\t4 Withdrawal"; cout << "\n\t5 Close an Account"; cout << "\n\t6 Show All Accounts"; cout << "\n\t7 Quit"; cout << "\nEnter your choice: "; cin >> choice; switch (choice) { case 1: cout << "Enter First Name: "; cin >> fname; cout << "Enter Last Name: "; cin >> lname; cout << "Enter initil Balance: "; cin >> balance; acc = b.OpenAccount(fname, lname, balance); cout << endl << "Congradulation Account is Created" << endl; cout << acc; break; case 2: cout << "Enter Account Number:"; cin >> accountNumber; acc = b.BalanceEnquiry(accountNumber); cout << endl << "Your Account Details" << endl; cout << acc; break; case 3: cout << "Enter Account Number:"; cin >> accountNumber; cout << "Enter Balance:"; cin >> amount; acc = b.Deposit(accountNumber, amount); cout << endl << "Amount is Deposited" << endl; cout << acc; break; case 4: cout << "Enter Account Number:"; cin >> accountNumber; cout << "Enter Balance:"; cin >> amount; acc = b.Withdraw(accountNumber, amount); cout << endl << "Amount Withdrawn" << endl; cout << acc; break; case 5: cout << "Enter Account Number:"; cin >> accountNumber; b.CloseAccount(accountNumber); cout << endl << "Account is Closed" << endl; cout << acc; case 6: b.ShowAllAccounts(); break; case 7: break; default: cout << "\nEnter corret choice"; exit(0); } } while (choice != 7); return 0; } Account::Account(string fname, string lname, float balance) { NextAccountNumber++; accountNumber = NextAccountNumber; firstName = fname; lastName = lname; this->balance = balance; } void Account::Deposit(float amount) { balance += amount; } void Account::Withdraw(float amount) { if (balance - amount < MIN_BALANCE) throw InsufficientFunds(); balance -= amount; } void Account::setLastAccountNumber(long accountNumber) { NextAccountNumber = accountNumber; } long Account::getLastAccountNumber() { return NextAccountNumber; } ofstream &operator<<(ofstream &ofs, Account &acc) { ofs << acc.accountNumber << endl; ofs << acc.firstName << endl; ofs << acc.lastName << endl; ofs << acc.balance << endl; return ofs; } ifstream &operator>>(ifstream &ifs, Account &acc) { ifs >> acc.accountNumber; ifs >> acc.firstName; ifs >> acc.lastName; ifs >> acc.balance; return ifs; } ostream &operator<<(ostream &os, Account &acc) { os << "First Name:" << acc.getFirstName() << endl; os << "Last Name:" << acc.getLastName() << endl; os << "Account Number:" << acc.getAccNo() << endl; os << "Balance:" << acc.getBalance() << endl; return os; } Bank::Bank() { Account account; ifstream infile; infile.open("Bank.data"); if (!infile) { //cout<<"Error in Opening! File Not Found!!"<<endl; return; } while (!infile.eof()) { infile >> account; accounts.insert(pair<long, Account>(account.getAccNo(), account)); } Account::setLastAccountNumber(account.getAccNo()); infile.close(); } Account Bank::OpenAccount(string fname, string lname, float balance) { ofstream outfile; Account account(fname, lname, balance); accounts.insert(pair<long, Account>(account.getAccNo(), account)); outfile.open("Bank.data", ios::trunc); map<long, Account>::iterator itr; for (itr = accounts.begin(); itr != accounts.end(); itr++) { outfile << itr->second; } outfile.close(); return account; } Account Bank::BalanceEnquiry(long accountNumber) { map<long, Account>::iterator itr = accounts.find(accountNumber); return itr->second; } Account Bank::Deposit(long accountNumber, float amount) { map<long, Account>::iterator itr = accounts.find(accountNumber); itr->second.Deposit(amount); return itr->second; } Account Bank::Withdraw(long accountNumber, float amount) { map<long, Account>::iterator itr = accounts.find(accountNumber); itr->second.Withdraw(amount); return itr->second; } void Bank::CloseAccount(long accountNumber) { map<long, Account>::iterator itr = accounts.find(accountNumber); cout << "Account Deleted" << itr->second; accounts.erase(accountNumber); } void Bank::ShowAllAccounts() { map<long, Account>::iterator itr; for (itr = accounts.begin(); itr != accounts.end(); itr++) { cout << "Account " << itr->first << endl << itr->second << endl; } } Bank::~Bank() { ofstream outfile; outfile.open("Bank.data", ios::trunc); map<long, Account>::iterator itr; for (itr = accounts.begin(); itr != accounts.end(); itr++) { outfile << itr->second; } outfile.close(); }
[ "kosan.tospa@yandex.com" ]
kosan.tospa@yandex.com
86a2ad164fa3130ed1c4f96f990a67d8dbc14396
b53b561b41e8b14ecbd5d3ddd38cd740b48a6321
/10_more_recursion/subseq.cc
d506034d13b35a5629590f7118e9c99fe87586a0
[]
no_license
Aashutosh97/Launchpad17-Fasttrack
d53d8be33c17e7ae2bc86aac3bcf86d653c4993f
975cd5054666404f8ed1a37885d3d5982f88af20
refs/heads/master
2020-03-23T03:23:16.631264
2018-01-21T10:32:17
2018-01-21T10:32:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
616
cc
// Deepak Aggarwal, Coding Blocks // deepak@codingblocks.com #include <iostream> #include <cstring> using namespace std; void printSubSeq(char s[], int be, int en, char decision[], int i) { if (be == en) { decision[i] = '\0'; cout << decision << endl; return; } // lets fix 'a' decision[i] = s[be]; printSubSeq(s, be + 1, en, decision, i + 1); // lets ignore 'a' printSubSeq(s, be + 1, en, decision, i); } int main() { char str[100]; cin >> str; int len = strlen(str); char decision[100] = ""; printSubSeq(str, 0, len, decision, 0); }
[ "daggarwal77@gmail.com" ]
daggarwal77@gmail.com
07fba08172f0c6614cd5556ef06d22942070348e
1d2ba792308d055713245364fcc293d1a0070d56
/src/qt/qtipcserver.cpp
be875e760a988e21e1f957ef3fbef4bfff23c7c1
[ "MIT" ]
permissive
mrk-9/GirlsToken
e962eabcf7539909e41701f675327ec931102340
9b56eb94e204b4e53ca360178088219ff6952fa2
refs/heads/master
2020-03-21T05:48:13.082275
2018-06-21T14:33:52
2018-06-21T14:33:52
138,181,578
2
2
null
null
null
null
UTF-8
C++
false
false
4,931
cpp
// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <boost/version.hpp> #if defined(WIN32) && BOOST_VERSION == 104900 #define BOOST_INTERPROCESS_HAS_WINDOWS_KERNEL_BOOTTIME #define BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME #endif #include "qtipcserver.h" #include "guiconstants.h" #include "ui_interface.h" #include "util.h" #include <boost/algorithm/string/predicate.hpp> #include <boost/date_time/posix_time/posix_time.hpp> #include <boost/interprocess/ipc/message_queue.hpp> #include <boost/version.hpp> #if defined(WIN32) && (!defined(BOOST_INTERPROCESS_HAS_WINDOWS_KERNEL_BOOTTIME) || !defined(BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME) || BOOST_VERSION < 104900) #warning Compiling without BOOST_INTERPROCESS_HAS_WINDOWS_KERNEL_BOOTTIME and BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME uncommented in boost/interprocess/detail/tmp_dir_helpers.hpp or using a boost version before 1.49 may have unintended results see svn.boost.org/trac/boost/ticket/5392 #endif using namespace boost; using namespace boost::interprocess; using namespace boost::posix_time; #if defined MAC_OSX || defined __FreeBSD__ // URI handling not implemented on OSX yet void ipcScanRelay(int argc, char *argv[]) { } void ipcInit(int argc, char *argv[]) { } #else static void ipcThread2(void* pArg); static bool ipcScanCmd(int argc, char *argv[], bool fRelay) { // Check for URI in argv bool fSent = false; for (int i = 1; i < argc; i++) { if (boost::algorithm::istarts_with(argv[i], "GirlsToken:")) { const char *strURI = argv[i]; try { boost::interprocess::message_queue mq(boost::interprocess::open_only, BITCOINURI_QUEUE_NAME); if (mq.try_send(strURI, strlen(strURI), 0)) fSent = true; else if (fRelay) break; } catch (boost::interprocess::interprocess_exception &ex) { // don't log the "file not found" exception, because that's normal for // the first start of the first instance if (ex.get_error_code() != boost::interprocess::not_found_error || !fRelay) { printf("main() - boost interprocess exception #%d: %s\n", ex.get_error_code(), ex.what()); break; } } } } return fSent; } void ipcScanRelay(int argc, char *argv[]) { if (ipcScanCmd(argc, argv, true)) exit(0); } static void ipcThread(void* pArg) { // Make this thread recognisable as the GUI-IPC thread RenameThread("GirlsToken-gui-ipc"); try { ipcThread2(pArg); } catch (std::exception& e) { PrintExceptionContinue(&e, "ipcThread()"); } catch (...) { PrintExceptionContinue(NULL, "ipcThread()"); } printf("ipcThread exited\n"); } static void ipcThread2(void* pArg) { printf("ipcThread started\n"); message_queue* mq = (message_queue*)pArg; char buffer[MAX_URI_LENGTH + 1] = ""; size_t nSize = 0; unsigned int nPriority = 0; while (true) { ptime d = boost::posix_time::microsec_clock::universal_time() + millisec(100); if (mq->timed_receive(&buffer, sizeof(buffer), nSize, nPriority, d)) { uiInterface.ThreadSafeHandleURI(std::string(buffer, nSize)); MilliSleep(1000); } if (fShutdown) break; } // Remove message queue message_queue::remove(BITCOINURI_QUEUE_NAME); // Cleanup allocated memory delete mq; } void ipcInit(int argc, char *argv[]) { message_queue* mq = NULL; char buffer[MAX_URI_LENGTH + 1] = ""; size_t nSize = 0; unsigned int nPriority = 0; try { mq = new message_queue(open_or_create, BITCOINURI_QUEUE_NAME, 2, MAX_URI_LENGTH); // Make sure we don't lose any bitcoin: URIs for (int i = 0; i < 2; i++) { ptime d = boost::posix_time::microsec_clock::universal_time() + millisec(1); if (mq->timed_receive(&buffer, sizeof(buffer), nSize, nPriority, d)) { uiInterface.ThreadSafeHandleURI(std::string(buffer, nSize)); } else break; } // Make sure only one bitcoin instance is listening message_queue::remove(BITCOINURI_QUEUE_NAME); delete mq; mq = new message_queue(open_or_create, BITCOINURI_QUEUE_NAME, 2, MAX_URI_LENGTH); } catch (interprocess_exception &ex) { printf("ipcInit() - boost interprocess exception #%d: %s\n", ex.get_error_code(), ex.what()); return; } if (!NewThread(ipcThread, mq)) { delete mq; return; } ipcScanCmd(argc, argv, false); } #endif
[ "chuch@chuchs-Mac-mini.local" ]
chuch@chuchs-Mac-mini.local
810a4960f629456b3343e341ed4a7402babda64a
6b660cb96baa003de9e18e332b048c0f1fa67ab9
/External/SDK/Title_GoldenBenefactor_functions.cpp
c72c8c68ef89f4e49e91634f82ab4eb65b4fefb1
[]
no_license
zanzo420/zSoT-SDK
1edbff62b3e12695ecf3969537a6d2631a0ff36f
5e581eb0400061f6e5f93b3affd95001f62d4f7c
refs/heads/main
2022-07-30T03:35:51.225374
2021-07-07T01:07:20
2021-07-07T01:07:20
383,634,601
1
0
null
null
null
null
UTF-8
C++
false
false
550
cpp
// Name: SoT, Version: 2.2.0.2 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------------------------- void UTitle_GoldenBenefactor_C::AfterRead() { UTitleDesc::AfterRead(); } void UTitle_GoldenBenefactor_C::BeforeDelete() { UTitleDesc::BeforeDelete(); } } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
31b78aaa4ebdb447da5f44eacef5c2a0d9d5abd0
94bdb1c4e90fe1e223edc2ac131ee244d1587d12
/Info_system/Info_system.ino
5b5b25c97975c74f7a59ad1b3d6aba36ca10560d
[]
no_license
avinesh2101/Arduino-Codes-
690c5807dfb2a410492c26480dbfb7f233e622f0
fd26d050f64a17fe482565bd453bff58ce41d598
refs/heads/main
2023-08-23T17:38:32.509831
2021-10-31T18:18:33
2021-10-31T18:18:33
410,845,919
4
2
null
2021-10-31T18:27:43
2021-09-27T10:51:27
C
UTF-8
C++
false
false
2,463
ino
/*SubarnaDas For Hacktoberfest2021 */ #include <Wire.h> #include <DS3231.h> //Library for the rtc-module from RinkyDinkElectronics.com #include <LiquidCrystal_I2C.h> #include <DHT.h> #define DHTPIN 2 //Temperature sensor is connected to PIN 2 #define DHTTYPE DHT22 // Type of the sensor is DHT22 (AM2302) DS3231 rtc(SDA, SCL); // Init the DS3231 as "rtc" using the hardware interface LiquidCrystal_I2C lcd(0x27,16,2); // Init the display as "lcd" DHT dht(DHTPIN, DHTTYPE); // Init the temperature sensor as "dht" char inputButtonState; // Variable for button value void setup() { rtc.begin(); // Initialize the rtc object lcd.init(); // Initialize the LCD lcd.backlight(); // Turn on the backlight (lcd.noBacklight(); turns it off) dht.begin(); // Initialize the temperature sensor pinMode(12,INPUT); // Initialize Arduino Digital Pin 12 as input for connecting Pushbutton lcd.setCursor(0,0); // Set cursor to character one, row one (lcd.setCursor(character,row);) lcd.print("Starting... v1"); // Display characters on the LCD delay(2000); // Delay for 2 seconds (2000 millisec) } void loop() { inputButtonState = digitalRead(12); // Read the Pushbutton state from digital pin 12, values are either HIGH or LOW lcd.clear(); // Make sure that LCD is clear do{ //Clock and Date lcd.setCursor(4,0); lcd.print(rtc.getTimeStr()); // Display time lcd.setCursor(1,1); lcd.print(rtc.getDOWStr(1)); // Display Day-of-Week lcd.setCursor(7,1); lcd.print(rtc.getDateStr(1)); // Display date delay(1000); // Delay until refresh of values (1 sec) inputButtonState = digitalRead(12); // Read the Pushbutton state again }while(inputButtonState != HIGH); // Repeat the retrieval of time and date until button is pressed lcd.clear(); // Clear the display before new content do{ //Temperature and Humidity float temp = dht.readTemperature(); // Save the temperature from the sensor in the variable "temp" float hum = dht.readHumidity(); // Save the humidity from the sensor in the variable "hum" lcd.setCursor(1,0); lcd.print("Temp:"); lcd.setCursor(8,0); lcd.print(temp); lcd.setCursor(14,0); lcd.print("C"); lcd.setCursor(1,1); lcd.print("Hum :"); lcd.setCursor(8,1); lcd.print(hum); lcd.setCursor(14,1); lcd.print("%"); delay(2000); inputButtonState = digitalRead(12); }while(inputButtonState != HIGH); }
[ "emailtosubarna@gmail.com" ]
emailtosubarna@gmail.com
a1916bb986e7f8937a5bb46ce7b328311abd3f2e
09106a153473f7486f122e63c02a944fc721eb65
/thread/base_thread/destruct_thread.cpp
cded049f00788a06bcd1ef83528de784741e2757
[]
no_license
gripex90088/cpp_example
9f6ee09d6b0068ece38a62c24e52691dd9f7b068
ddd3f1ac635feb608738e1c90c10e4f3790dd60f
refs/heads/master
2020-12-10T23:48:06.309404
2020-04-02T08:30:22
2020-04-02T08:30:22
233,744,109
0
0
null
null
null
null
UTF-8
C++
false
false
266
cpp
/* * destruct_thread.cpp * * Created on: Jul 19, 2019 * Author: xuxing */ /* * 竟态条件 (race condition) * 当一个对象能被多个线程同时看到时,那么对象的销毁时机会变的模糊不清,可能出现各种竟态条件 */
[ "1355039189@qq.com" ]
1355039189@qq.com
e71e4c2e5dcf32cfd597d1418e84d50539ce4b91
c9388727c6b56e1becd3ae4b3d76238451c6d38c
/1055B/alice-and-hairdresser.cpp
33046ecf7f3f9ad044e1efc6c8fe337869d77c04
[]
no_license
kantuni/Codeforces
f7a3f0e37f8ed71a4ca4f1f4b013e5dc2b418f18
27914156928b325edd02c1c607f36c1dc4b53b76
refs/heads/master
2023-08-17T10:59:29.562753
2023-08-14T14:51:56
2023-08-14T14:51:56
81,014,157
202
79
null
2021-05-11T09:26:54
2017-02-05T18:52:25
C++
UTF-8
C++
false
false
843
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n, m, l; cin >> n >> m >> l; vector<long long> a(n + 2); for (int i = 1; i <= n; i++) { cin >> a[i]; } long long ans = 0; bool same = false; for (int i = 1; i <= n; i++) { if (!same and a[i] > l) { same = true; ans++; } if (a[i] <= l) { same = false; } } while (m--) { int T; cin >> T; if (T == 0) { cout << ans << endl; } else { long long p, d; cin >> p >> d; a[p] += d; bool new_one = a[p] - d <= l and a[p] > l; bool around_zeros = a[p - 1] <= l and a[p + 1] <= l; bool around_ones = a[p - 1] > l and a[p + 1] > l; if (new_one and around_zeros) { ans++; } if (new_one and around_ones) { ans--; } } } return 0; }
[ "henrikh.kantuni@gmail.com" ]
henrikh.kantuni@gmail.com
cd9a7526834a107b6ebfc308e9aa7e68e0139e5c
778be864c82aa7c5397f140df31bd937f2fd123b
/tests/srhd_sim/isentropic_flow_2nd_ord/test.cpp
1cd09c2ba70f2a540e5a27551f5386665a1d29ae
[ "MIT" ]
permissive
bolverk/fujin
728cc75f8e27e1b881ec3f1f7393297479be03bd
53d28f330b9e81eadb8be51c0c102b47bc02483c
refs/heads/master
2021-06-02T20:33:28.992081
2021-03-30T15:37:16
2021-03-30T15:37:16
95,355,983
2
2
null
null
null
null
UTF-8
C++
false
false
4,326
cpp
/* Isentropic flow - verifies the Riemann invariant are properly advected See following article for more detail W. Zhang & A. I. MacFadyen "RAM: A Relativistic Adaptive mesh refinement Hydrodynamics Code" Astrophys. Journ. Supp. Ser. 164:255-279 (2006) */ #include <iostream> #include <fstream> #include <vector> #include "srhd_sim.hpp" #include "ideal_gas.hpp" #include "imgrs.hpp" #include "van_leer.hpp" #include "rigid_wall.hpp" #include "universal_error.hpp" #include "diagnostics.hpp" #include "main_loop.hpp" #include "hdf5_snapshot.hpp" #ifdef PARALLEL #include "parallel_helper.hpp" #endif // PARALLEL using namespace std; namespace { class density_distribution { private: const double dref; const double alpha; const double l; public: density_distribution(double idref, double ialpha, double il): dref(idref),alpha(ialpha),l(il) {} double operator()(double x) const { const double f = pow(pow(x/l,2)-1,4)*(abs(x)<l); return dref*(1+alpha*f); } }; class pressure_distribution { private: const double k; const double g; const density_distribution& rdd; public: pressure_distribution (double ik, double ig, const density_distribution& irdd): k(ik),g(ig), rdd(irdd) {} double operator()(double x) const { const double d = rdd(x); return k*pow(d,g); } }; double riemann_invariant(double g, double d, double p, double v, double s) { const double cs = IdealGas(g).dp2ba(d,p); return atanh(v)+s*(2/sqrt(g-1))* atanh(cs/sqrt(g-1)); } class velocity_distribution { private: const double jm; const double g; const density_distribution& rdd; const pressure_distribution& rpd; public: velocity_distribution (double ijm, double ig, const density_distribution& irdd, const pressure_distribution& irpd): jm(ijm), g(ig), rdd(irdd), rpd(irpd) {} double operator()(double x) const { const double d = rdd(x); const double p = rpd(x); const double aux = jm - riemann_invariant(g, d, p, 0, -1); return tanh(aux); } }; class InitialConditions { public: InitialConditions(double g, double far_away=-10): dd_(1,1,0.3), dp_(100,g,dd_), dv_(riemann_invariant(g, dd_(far_away), dp_(far_away), 0,-1), g,dd_,dp_) {} density_distribution const& getDensity(void) { return dd_; } pressure_distribution const& getPressure(void) { return dp_; } velocity_distribution const& getVelocity(void) { return dv_; } private: const density_distribution dd_; const pressure_distribution dp_; const velocity_distribution dv_; }; class SimData { public: SimData(void): eos_(5./3.), rs_(eos_.getAdiabaticIndex()), sr_(), bc_(rs_), geometry_(), sim_(linspace(-0.35,1.35,200), InitialConditions(eos_.getAdiabaticIndex()).getDensity(), InitialConditions(eos_.getAdiabaticIndex()).getPressure(), InitialConditions(eos_.getAdiabaticIndex()).getVelocity(), bc_,bc_, eos_, rs_, sr_, geometry_) {} auto& getSim(void) { return sim_; } private: const IdealGas eos_; const IdealGasRiemannSolver rs_; VanLeer<simple_vector, simple_vector> sr_; const RigidWall<simple_vector> bc_; const Planar geometry_; SRHDSimulation<simple_vector, simple_vector> sim_; }; } int main() { #ifdef PARALLEL MPI_Init(NULL, NULL); #endif //PARALLEL SimData sim_data; auto& sim = sim_data.getSim(); #ifdef PARALLEL write_hdf5_snapshot(sim, "initial_"+int2str(get_mpi_rank())+".h5"); #else write_hdf5_snapshot(sim, "initial.h5"); #endif // PARALLEL main_loop(sim, SafeTimeTermination<simple_vector, simple_vector>(0.8,1e6), #ifdef PARALLEL &SRHDSimulation::timeAdvance, #else &SRHDSimulation<simple_vector, simple_vector>::timeAdvance2ndOrder, #endif // PARALLEL WriteTime<simple_vector, simple_vector>("time.txt")); #ifdef PARALLEL write_hdf5_snapshot(sim, "final_"+int2str(get_mpi_rank())+".h5"); #else write_hdf5_snapshot(sim, "final.h5"); #endif // PARALLEL ofstream("test_terminated_normally.res").close(); #ifdef PARALLEL MPI_Finalize(); #endif // PARALLEL return 0; }
[ "almog.yalin@gmail.com" ]
almog.yalin@gmail.com
b9cd07aedacf0adf7985e78a1092ea4f6e01980c
e65a4dbfbfb0e54e59787ba7741efee12f7687f3
/net-im/sayaka/files/patch-src_UString.cpp
d0280d03a2f15eb404104f3f708cdcc8de8fb7b8
[ "BSD-2-Clause" ]
permissive
freebsd/freebsd-ports
86f2e89d43913412c4f6b2be3e255bc0945eac12
605a2983f245ac63f5420e023e7dce56898ad801
refs/heads/main
2023-08-30T21:46:28.720924
2023-08-30T19:33:44
2023-08-30T19:33:44
1,803,961
916
918
NOASSERTION
2023-09-08T04:06:26
2011-05-26T11:15:35
null
UTF-8
C++
false
false
260
cpp
--- src/UString.cpp.orig 2021-03-18 09:51:03 UTC +++ src/UString.cpp @@ -25,6 +25,7 @@ #include "UString.h" #include <array> +#include <cerrno> #include <cstring> // 出力文字コードが UTF-8 以外 (iconv による変換が必要) なら true。
[ "danfe@FreeBSD.org" ]
danfe@FreeBSD.org
f9df8b02af5d57070407b98d9ce8e0f74275d070
09a97f23f59c74b620f0eb87dd8fd6aed68ab9ed
/Data Structures/Range Minimum Query/RMQ.cpp
67c5cd4388e176520c276beb3d44ffc358bff221
[]
no_license
dragan224/Algorithms
a94dc63652d0223787d3d8780957bb17aa696b6c
47d10bfdec0a07e941c43fedbeba8b3f7dbabc19
refs/heads/master
2020-05-19T17:46:11.171288
2014-02-17T14:57:26
2014-02-17T14:57:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
802
cpp
#include <iostream> #include <cstdio> #include <cmath> using namespace std; const int maxN = 100224; const int maxLog = 18; struct RMQ { int table[maxN][maxLog]; void build(int arr[], int n) { for (int i = 0; i < n; i++) { table[i][0] = arr[i]; } for (int k = 1; k < maxLog; k++) { int step = 1 << k-1; for (int i = 0; i < n; i++) { table[i][k] = table[i][k - 1]; if (i + step < n) { table[i][k] = min(table[i][k], table[i + step][k - 1]); } } } } int query(int l, int r) { int k = log((double)(r - l)) / log(2.0) + 0.00000224; return min(table[l][k], table[r - (1 << k) + 1][k]); } }; int main() { return 0; }
[ "dmarkovic13@raf.edu.rs" ]
dmarkovic13@raf.edu.rs
e93989406fd999ca9fc8a34cc1e7ed90723366eb
014109f0c01f6b11f3a874f81f6251a25873616e
/JUCE Synth/Audio Plug-in Synth/Source/SynthVoice.h
c577d50ad88d80839b22022fdb0fe2e16e1d7699
[]
no_license
succculent/resynth
d73fc49af4054e955784c9c47140c31bbedf7568
750429797867f8d441961897a98a4e0b8184a653
refs/heads/master
2020-12-19T09:56:44.970626
2020-06-12T22:09:40
2020-06-12T22:09:40
235,700,925
3
0
null
null
null
null
UTF-8
C++
false
false
2,261
h
/* ============================================================================== SynthVoice.h Created: 26 May 2020 4:58:33pm Author: Lorand Cheng ============================================================================== */ #pragma once #include <JuceHeader.h> #include "SynthSound.h" #include "maximilian.h" class SynthVoice : public SynthesiserVoice { public: bool canPlaySound(SynthesiserSound *sound) { return dynamic_cast<SynthSound*>(sound) != nullptr; } //======================================== void startNote(int midiNoteNumber, float velocity, SynthesiserSound *sound, int currentPitchWheelPosition) { env1.trigger = 1; level = velocity; frequency = MidiMessage::getMidiNoteInHertz(midiNoteNumber); } //======================================== void stopNote(float velocity, bool allowTailOff) { env1.trigger = 0; allowTailOff = true; //if(velocity == 0) clearCurrentNote(); } //======================================== void renderNextBlock(AudioBuffer<float> &outputBuffer, int startSample, int numSamples) { env1.setAttack(2000); env1.setDecay(500); env1.setSustain(0.8); env1.setRelease(2000); for(int sample = 0; sample < numSamples; sample++) { double wave = osc1.square(frequency); wave = env1.adsr(wave, env1.trigger) * level; wave = filter.lores(wave, 200, 0.1); for(int channel = 0; channel < outputBuffer.getNumChannels(); channel++) { outputBuffer.addSample(channel, startSample, wave); } startSample++; } } //======================================== void pitchWheelMoved(int newPitchWheelValue) { } //======================================== void controllerMoved(int controllerNumber, int newControllerValue) { } //======================================== private: double level; double frequency; maxiOsc osc1; maxiEnv env1; maxiFilter filter; };
[ "lfcheng@usc.edu" ]
lfcheng@usc.edu
bbd821adbc247c093dbfa58115eb1dad5e059600
a65c77b44164b2c69dfe4bfa2772d18ae8e0cce2
/0contest/CF_100864/pJ.cpp
e5ce1aad1e03379bacff7bb77484613e7435316b
[]
no_license
dl8sd11/online-judge
553422b55080e49e6bd9b38834ccf1076fb95395
5ef8e3c5390e54381683f62f88d03629e1355d1d
refs/heads/master
2021-12-22T15:13:34.279988
2021-12-13T06:45:49
2021-12-13T06:45:49
111,268,306
1
6
null
null
null
null
UTF-8
C++
false
false
4,630
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef pair<int, ll> pil; typedef pair<ll, int> pli; typedef pair<double, double> pdd; #define SQ(i) ((i)*(i)) #define MEM(a, b) memset(a, (b), sizeof(a)) #define SZ(i) static_cast<int>(i.size()) #define FOR(i, j, k, in) for (int i=j; i < (k) ; i+=in) #define RFOR(i, j, k, in) for (int i=j; i >= (k) ; i-=in) #define REP(i, j) FOR(i, 0, j, 1) #define REP1(i, j) FOR(i, 1, j+1, 1) #define RREP(i, j) RFOR(i, j, 0, 1) #define ALL(_a) _a.begin(), _a.end() #define mp make_pair #define pb push_back #define eb emplace_back #define X first #define Y second template<typename T, typename S> istream &operator >> (istream &is, pair<T, S> &p) { return is >> p.X >> p.Y; } #ifdef tmd #define TIME(i) Timer i(#i) #define debug(...) do {\ fprintf(stderr, "%s - %d (%s) = ", __PRETTY_FUNCTION__, __LINE__, #__VA_ARGS__);\ _do(__VA_ARGS__);\ }while(0) template<typename T> void _do(T &&_x) {cerr<<_x<<endl;} template<typename T,typename ...S> void _do(T &&_x, S &&..._t) {cerr <<_x <<" ,"; _do(_t...);} template<typename _a,typename _b> ostream& operator << (ostream &_s, const pair<_a, _b> &_p) {return _s << "(" << _p.X << "," << _p.Y << ")";} template<typename It> ostream& _OUTC(ostream &_s, It _ita, It _itb) { _s << "{"; for (It _it=_ita; _it != _itb; _it++) { _s <<(_it == _ita?"":",")<< *_it; } _s << "}"; return _s; } template<typename _a> ostream &operator << (ostream &_s, const vector<_a> &_c) {return _OUTC(_s,ALL(_c));} template<typename _a, size_t _b> ostream &operator << (ostream &_s, const array<_a,_b> &_c) {return _OUTC(_s, ALL(_c));} template<typename _a> ostream &operator << (ostream &_s, const deque<_a> &_c) {return _OUTC(_s, ALL(_c));} template<typename _a,typename _b> ostream &operator << (ostream &_s, const map<_a,_b> &_c) {return _OUTC(_s,ALL(_c));} template<typename _t> void pary(_t _a,_t _b){_OUTC(cerr,_a,_b);cerr<<endl;} #define IOS() class Timer { private: string scope_name; chrono::high_resolution_clock::time_point start_time; public: Timer (string name) : scope_name(name) { start_time = chrono::high_resolution_clock::now(); } ~Timer () { auto stop_time = chrono::high_resolution_clock::now(); auto length = chrono::duration_cast<chrono::microseconds>(stop_time - start_time).count(); double mlength = double(length) * 0.001; debug(scope_name, mlength); } }; #else #define TIME(i) #define debug(...) #define pary(...) #define endl '\n' #define IOS() ios_base::sync_with_stdio(0);cin.tie(0) #endif const ll MOD = 1000000007; const ll INF = 0x3f3f3f3f3f3f3f3f; const int iNF = 0x3f3f3f3f; const ll MAXN = 402; char w[MAXN][MAXN]; char ans[MAXN][MAXN]; vector<int> ch[MAXN], cv[MAXN]; signed main () { TIME(main); freopen("japanese.in", "r", stdin); freopen("japanese.out", "w", stdout); int n, m; cin >> n >> m; for (int i=0; i<n; i++) { for (int j=0; j<m; j++) { char c; cin >> c; w[i][j] = c == 'X'; } } for (int i=0; i<n; i++) { int cnt = w[i][0]; for (int j=1; j<=m; j++) { if (w[i][j-1] == 1 && w[i][j] == 0) { ch[i].eb(cnt); cnt = 0; } if (w[i][j]) { cnt++; } } } for (int j=0; j<m; j++) { int cnt = w[0][j]; for (int i=1; i<=n; i++) { if (w[i-1][j] == 1 && w[i][j] == 0) { cv[j].eb(cnt); cnt = 0; } if (w[i][j]) { cnt++; } } } int mxh = 0, mxv = 0; for (int i=0; i<n; i++) { mxh = max(mxh, SZ(ch[i])); } for (int i=0; i<m; i++) { mxv = max(mxv, SZ(cv[i])); } for (int i=0; i<mxv+n; i++) { for (int j=0; j<mxh+m; j++) { ans[i][j] = '.'; } } for (int i=0; i<mxv; i++) { for (int j=0; j<mxh; j++) { ans[i][j] = '*'; } } for (int i=0; i<n; i++) { for (int j=0; j<mxh; j++) { ans[i+mxv][mxh-1-j] = j < SZ(ch[i]) ? ch[i][SZ(ch[i])-1-j]+'0' : '_'; } } for (int j=0; j<m; j++) { for (int i=0; i<mxv; i++) { ans[mxv-1-i][j+mxh] = i < SZ(cv[j]) ? cv[j][SZ(cv[j])-1-i]+'0' : '_'; } } for (int i=0; i<mxv+n; i++) { for (int j=0; j<mxh+m; j++) { cout << ans[i][j]; } cout << endl; } return 0; }
[ "tmd910607@gmail.com" ]
tmd910607@gmail.com
20410b069efa600949182194315d5f80bddd7dcc
aa924bbb174676c00dfef9b976790a01506bd37e
/Sources/NodeEngine/NE_OrderedMap.hpp
178c764695c698cb113079b8b03ed753cb9d3481
[ "MIT" ]
permissive
kovacsv/VisualScriptEngine
5b3b8b7b6999082b0f916034a83d6e9675510ed6
185a451e2391fbff0bb4dd5929e8634517382c4e
refs/heads/master
2023-03-15T19:00:48.535709
2021-12-17T15:47:51
2021-12-17T15:47:51
113,492,822
156
32
MIT
2023-02-24T16:07:36
2017-12-07T19:57:56
C++
UTF-8
C++
false
false
5,884
hpp
#ifndef NE_ORDEREDMAP_HPP #define NE_ORDEREDMAP_HPP #include "NE_Debug.hpp" #include <utility> #include <list> #include <unordered_map> #include <functional> #include <algorithm> namespace NE { template <typename Key, typename Value> class OrderedMap { public: OrderedMap (); OrderedMap (const OrderedMap& rhs); OrderedMap (OrderedMap&& rhs); ~OrderedMap (); OrderedMap& operator= (const OrderedMap& rhs); OrderedMap& operator= (OrderedMap&& rhs); bool IsEmpty () const; bool Contains (const Key& key) const; size_t Count () const; Value& GetValue (const Key& key); const Value& GetValue (const Key& key) const; bool Insert (const Key& key, const Value& value); bool InsertBefore (const Key& key, const Value& value, const Key& nextKey); bool InsertAfter (const Key& key, const Value& value, const Key& prevKey); void MakeSorted (); bool Erase (const Key& key); void Clear (); void Enumerate (const std::function<bool (Value&)>& processor); void Enumerate (const std::function<bool (const Value&)>& processor) const; private: using KeyValue = std::pair<Key, Value>; using List = std::list<KeyValue>; using Iterator = typename List::iterator; List valueList; std::unordered_map<Key, Iterator> keyToValueMap; }; template <typename Key, typename Value> OrderedMap<Key, Value>::OrderedMap () : valueList (), keyToValueMap () { } template <typename Key, typename Value> OrderedMap<Key, Value>::OrderedMap (const OrderedMap& rhs) : valueList (rhs.valueList), keyToValueMap () { for (auto it = valueList.begin (); it != valueList.end (); ++it) { const KeyValue& keyValue = *it; keyToValueMap.insert ({ keyValue.first, it }); } } template <typename Key, typename Value> OrderedMap<Key, Value>::OrderedMap (OrderedMap&& rhs) : valueList (std::move (rhs.valueList)), keyToValueMap (std::move (rhs.keyToValueMap)) { } template <typename Key, typename Value> OrderedMap<Key, Value>::~OrderedMap () { } template <typename Key, typename Value> OrderedMap<Key, Value>& OrderedMap<Key, Value>::operator= (const OrderedMap& rhs) { if (this != &rhs) { valueList = rhs.valueList; keyToValueMap.clear (); for (auto it = valueList.begin (); it != valueList.end (); ++it) { const KeyValue& keyValue = *it; keyToValueMap.insert ({ keyValue.first, it }); } } return *this; } template <typename Key, typename Value> OrderedMap<Key, Value>& OrderedMap<Key, Value>::operator= (OrderedMap&& rhs) { if (this != &rhs) { valueList = std::move (rhs.valueList); keyToValueMap = std::move (rhs.keyToValueMap); } return *this; } template <typename Key, typename Value> bool OrderedMap<Key, Value>::IsEmpty () const { return keyToValueMap.empty (); } template <typename Key, typename Value> bool OrderedMap<Key, Value>::Contains (const Key& key) const { return keyToValueMap.find (key) != keyToValueMap.end (); } template <typename Key, typename Value> size_t OrderedMap<Key, Value>::Count () const { return keyToValueMap.size (); } template <typename Key, typename Value> Value& OrderedMap<Key, Value>::GetValue (const Key& key) { Iterator& iterator = keyToValueMap.at (key); KeyValue& keyValue = *iterator; return keyValue.second; } template <typename Key, typename Value> const Value& OrderedMap<Key, Value>::GetValue (const Key& key) const { const Iterator& iterator = keyToValueMap.at (key); const KeyValue& keyValue = *iterator; return keyValue.second; } template <typename Key, typename Value> bool OrderedMap<Key, Value>::Insert (const Key& key, const Value& value) { if (DBGERROR (keyToValueMap.find (key) != keyToValueMap.end ())) { return false; } auto inserted = valueList.insert (valueList.end (), { key, value } ); keyToValueMap.insert ({ key, inserted }); return true; } template <typename Key, typename Value> bool OrderedMap<Key, Value>::InsertBefore (const Key& key, const Value& value, const Key& nextKey) { if (DBGERROR (keyToValueMap.find (key) != keyToValueMap.end ())) { return false; } auto foundNextValue = keyToValueMap.find (nextKey); if (DBGERROR (foundNextValue == keyToValueMap.end ())) { return false; } auto inserted = valueList.insert (foundNextValue->second, { key, value }); keyToValueMap.insert ({ key, inserted }); return true; } template <typename Key, typename Value> bool OrderedMap<Key, Value>::InsertAfter (const Key& key, const Value& value, const Key& prevKey) { if (DBGERROR (keyToValueMap.find (key) != keyToValueMap.end ())) { return false; } auto foundPrevValue = keyToValueMap.find (prevKey); if (DBGERROR (foundPrevValue == keyToValueMap.end ())) { return false; } auto inserted = valueList.insert (std::next (foundPrevValue->second), { key, value }); keyToValueMap.insert ({ key, inserted }); return true; } template <typename Key, typename Value> void OrderedMap<Key, Value>::MakeSorted () { valueList.sort ([&] (const KeyValue& a, const KeyValue& b) { return a.first < b.first; }); } template <typename Key, typename Value> bool OrderedMap<Key, Value>::Erase (const Key& key) { auto foundInMap = keyToValueMap.find (key); if (DBGERROR (foundInMap == keyToValueMap.end ())) { return false; } valueList.erase (foundInMap->second); keyToValueMap.erase (key); return true; } template <typename Key, typename Value> void OrderedMap<Key, Value>::Clear () { valueList.clear (); keyToValueMap.clear (); } template <typename Key, typename Value> void OrderedMap<Key, Value>::Enumerate (const std::function<bool (Value&)>& processor) { for (KeyValue& keyValue : valueList) { if (!processor (keyValue.second)) { break; } } } template <typename Key, typename Value> void OrderedMap<Key, Value>::Enumerate (const std::function<bool (const Value&)>& processor) const { for (const KeyValue& keyValue : valueList) { if (!processor (keyValue.second)) { break; } } } } #endif
[ "viktorkovacs@gmail.com" ]
viktorkovacs@gmail.com
7cbe5da861b01c38eb081fa3c4cb8dc58cad5336
07e7f955514da0fbaf5e5df457055a85ee9b6e18
/RtspWriteToFile/CRtspRecorder.cpp
401330dea991fa3ef6cc759b9247dcbf32848f90
[]
no_license
lineCode/FFmpegTest
2d1f9a2907805750fdc3eb178868d98b5642552d
cc67a17994a90101b1214f7692fea7a7de1ffb86
refs/heads/master
2021-01-09T19:55:46.629592
2018-08-29T08:10:31
2018-08-29T08:10:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,106
cpp
#include "CRtspRecorder.h" CRtspRecorder::CRtspRecorder(PCHAR input_url, PCHAR output_file) : CBaseRtsp(input_url) { _output_file = output_file; } CRtspRecorder::~CRtspRecorder() { } BOOL CRtspRecorder::Start() { bool verbose = false; VSInput* input = open_input("rtsp", _input_url, verbose); VSOutput* output = open_output("mp4", _output_file, input, verbose); while (true) { AVPacket* packet = av_packet_alloc(); av_init_packet(packet); auto readRes = read_packet(input, packet, verbose); if (readRes == -1) { continue; } if (readRes == 0) { continue; } if (write_packet(input, output, packet, verbose) > 0) { //all ok; }; av_packet_free(&packet); } destroy_input(input); destroy_output(output); } // We change the packet's pts, dts, duration, pos. // // We do not unref it. // // Returns: // -1 if error // 1 if we wrote the packet int CRtspRecorder::write_packet(const struct VSInput * const input, struct VSOutput * const output, AVPacket * const pkt, const bool verbose) { if (!input || !output || !pkt) { printf("%s\n", strerror(EINVAL)); return -1; } AVStream * const in_stream = input->format_ctx->streams[pkt->stream_index]; if (!in_stream) { printf("input stream not found with stream index %d\n", pkt->stream_index); return -1; } // If there are multiple input streams, then the stream index on the packet // may not match the stream index in our output. We need to ensure the index // matches. Note by this point we have checked that it is indeed a packet // from the stream we want (we do this when reading the packet). // // As we only ever have a single output stream (one, video), the index will // be 0. if (pkt->stream_index != 0) { if (verbose) { printf("updating packet stream index to 0 (from %d)\n", pkt->stream_index); } pkt->stream_index = 0; } AVStream * const out_stream = output->format_ctx->streams[pkt->stream_index]; if (!out_stream) { printf("output stream not found with stream index %d\n", pkt->stream_index); return -1; } // It is possible that the input is not well formed. Its dts (decompression // timestamp) may fluctuate. av_write_frame() says that the dts must be // strictly increasing. // // Packets from such inputs might look like: // // in: pts:18750 pts_time:0.208333 dts:18750 dts_time:0.208333 duration:3750 duration_time:0.0416667 stream_index:1 // in: pts:0 pts_time:0 dts:0 dts_time:0 duration:3750 duration_time:0.0416667 stream_index:1 // // dts here is 18750 and then 0. // // If we try to write the second packet as is, we'll see this error: // [mp4 @ 0x10f1ae0] Application provided invalid, non monotonically increasing dts to muxer in stream 1: 18750 >= 0 // // This is apparently a fairly common problem. In ffmpeg.c (as of ffmpeg // 3.2.4 at least) there is logic to rewrite the dts and warn if it happens. // Let's do the same. Note my logic is a little different here. bool fix_dts = pkt->dts != AV_NOPTS_VALUE && output->last_dts != AV_NOPTS_VALUE && pkt->dts <= output->last_dts; // It is also possible for input streams to include a packet with // dts/pts=NOPTS after packets with dts/pts set. These won't be caught by the // prior case. If we try to send these to the encoder however, we'll generate // the same error (non monotonically increasing DTS) since the output packet // will have dts/pts=0. fix_dts |= pkt->dts == AV_NOPTS_VALUE && output->last_dts != AV_NOPTS_VALUE; if (fix_dts) { int64_t const next_dts = output->last_dts + 1; if (verbose) { printf("Warning: Non-monotonous DTS in input stream. Previous: %" PRId64 " current: %" PRId64 ". changing to %" PRId64 ".\n", output->last_dts, pkt->dts, next_dts); } // We also apparently (ffmpeg.c does this too) need to update the pts. // Otherwise we see an error like: // // [mp4 @ 0x555e6825ea60] pts (3780) < dts (22531) in stream 0 if (pkt->pts != AV_NOPTS_VALUE && pkt->pts >= pkt->dts) { pkt->pts = FFMAX(pkt->pts, next_dts); } // In the case where pkt->dts was AV_NOPTS_VALUE, pkt->pts can be // AV_NOPTS_VALUE too which we fix as well. if (pkt->pts == AV_NOPTS_VALUE) { pkt->pts = next_dts; } pkt->dts = next_dts; } if (pkt->pts == AV_NOPTS_VALUE) { pkt->pts = 0; } else { pkt->pts = av_rescale_q_rnd(pkt->pts, in_stream->time_base, out_stream->time_base, AV_ROUND_PASS_MINMAX); } if (pkt->dts == AV_NOPTS_VALUE) { pkt->dts = 0; } else { pkt->dts = av_rescale_q_rnd(pkt->dts, in_stream->time_base, out_stream->time_base, AV_ROUND_PASS_MINMAX); } pkt->duration = av_rescale_q(pkt->duration, in_stream->time_base, out_stream->time_base); pkt->pos = -1; // Track last dts we see (see where we use it for why). output->last_dts = pkt->dts; // Write encoded frame (as a packet). // av_interleaved_write_frame() works too, but I don't think it is needed. // Using av_write_frame() skips buffering. const int write_res = av_write_frame(output->format_ctx, pkt); if (write_res != 0) { //printf("unable to write frame: %s\n", av_err2str(write_res)); return -1; } return 1; }
[ "prohoroven83@mail.ru" ]
prohoroven83@mail.ru
6d272e137888a592913b47f120422d7f7cadc9a9
b269392cc4727b226e15b3f08e9efb41a7f4b048
/CodeForces/CodeForces 1213B.cpp
4eac27dcd5cfafc5c03ba1d0e17ed79681b09847
[]
no_license
ThoseBygones/ACM_Code
edbc31b95077e75d3b17277d843cc24b6223cc0c
2e8afd599b8065ae52b925653f6ea79c51a1818f
refs/heads/master
2022-11-12T08:23:55.232349
2022-10-30T14:17:23
2022-10-30T14:17:23
91,112,483
1
0
null
null
null
null
UTF-8
C++
false
false
1,799
cpp
/* ******************************************************************************** * Author: ThoseBygones * Version: V1.0 * Date: 2020-01-01 * Subject: ACM-ICPC * Language: C/C++11 * OJ: CodeForces * Algorithm: ******************************************************************************** * Algo-Description: ******************************************************************************** */ #include <bits/stdc++.h> //For CodeForces only using namespace std; template<class T> inline T sqr(T x) { return x * x; } typedef long long LL; typedef unsigned long long ULL; typedef long double LD; typedef pair<int, int> PII; typedef pair<PII, int> PIII; typedef pair<LL, LL> PLL; typedef pair<LL, int> PLI; typedef pair<LD, LD> PDD; #define MP make_pair #define PB push_back #define sz(x) ((int)(x).size()) #define clr(ar,val) memset(ar, val, sizeof(ar)) #define istr stringstream #define FOR(i,n) for(int i=0;i<(n);++i) #define forIt(mp,it) for(__typeof(mp.begin()) it = mp.begin();it!=mp.end();it++) const double EPS = 1e-6; const int INF = 0x3fffffff; const LL LINF = INF * 1ll * INF; const double PI = acos(-1.0); #define lson l,mid,rt<<1 #define rson mid+1,r,rt<<1|1 #define lowbit(u) (u&(-u)) #define MAXN 10005 int main() { int t; scanf("%d",&t); while(t--) { int n; scanf("%d",&n); deque<int> dq; int ans = 0; for(int i=0; i<n; i++) { int x; scanf("%d",&x); if(!dq.empty()) //单调队列非空 { while(!dq.empty() && dq.back() > x) { dq.pop_back(); ans++; } } dq.push_back(x); } printf("%d\n",ans); } return 0; }
[ "1273789365@qq.com" ]
1273789365@qq.com
ea19803b4dfd8adc021e085dbf52ae13cdcd7aca
2e422acfa15846823bb4105c312f301e9cb2a740
/Roottest/JunoARCon/include/NeutrinoSepctrum.hh
96f33061096b8e15c592ba91ce2446a60d8eb15c
[]
no_license
Jinnan-Zhang/CodeEx
2443f37b56c5ceef83b3c5729b33b2eb7bcaed95
32fdea95b4bb0266d38c435cb2c08ba2f0c4a1dd
refs/heads/master
2022-05-02T06:12:33.978802
2022-03-25T02:37:42
2022-03-25T02:37:42
220,944,459
0
3
null
null
null
null
UTF-8
C++
false
false
1,515
hh
#ifndef NeutrinoSpectrum_hh #define NeutrinoSepctrum_hh #include <TF1.h> class TF1; class NeutrinoSpectrum { public: NeutrinoSpectrum(); ~NeutrinoSpectrum(); //void SetEnergyResolution(double E_Re){Energy_resolution=E_Re;} void SetProtonMassRatio(double ra){MassRatioOfProton=ra;} void SetRunTime(double RTinDay){RunTime=RTinDay;} void SetLSMass(double m_inkg){MassOfLS=m_inkg;} void SetBaseLine(double L_inkm){BaseLine=L_inkm;}//L in km double GetBaseLine(){return BaseLine;} double GetEfficiency(double *E_nu,double *par={0}); double Spectrum0(double *E_nu,double *par); double operator()(double *E_nu,double *par); // { // ReactorNuFlux *myflux=new ReactorNuFlux(); // IBDCrossSection *myCS=new IBDCrossSection(); // OscillationFunction *myOSP=new OscillationFunction(); // TF1* EnergySmearing=new TF1("EnergySmearing","gaus",-100.,100.); // EnergySmearing->SetParameters(1./(sqrt(2.*TMath::Pi()*E[0])*Energy_resolution),0,Energy_resolution*sqrt(E[0])); // } private: double RunTime; //double Energy_resolution; double DetectionEfficiency; double MassOfLS;//in kg double MassOfPronton_kg; double MassRatioOfProton; double DeltaM31_sq; double BaseLine;//in km double NumOfProton; }; #endif
[ "zhangjinnan14@ucas.edu.cn" ]
zhangjinnan14@ucas.edu.cn
6667e044b326c474cf97624e73f923e7b8675a9a
bb5474b59b5fc0be8bcc3f02ac5b29b54f025c1e
/referlib/server.cpp
f5b9210c5257e684d0d8f421bab507e23380068a
[]
no_license
suzuren/gamelearning
15165185388b62c14b8e9e64019a8d6d891e5e84
317036868ad85177f8658bf71e8dbad7131e98cb
refs/heads/master
2021-05-10T11:02:29.467047
2021-01-29T09:15:32
2021-01-29T09:15:32
118,399,936
1
0
null
null
null
null
UTF-8
C++
false
false
5,832
cpp
#include <functional> #include <string> #include <map> #include <stdlib.h> #include <stdio.h> #include <assert.h> #include <unistd.h> #include <sys/types.h> #include <sys/file.h> #include <signal.h> #include <errno.h> #include <ctype.h> #include <syslog.h> #include <sys/stat.h> #include <sys/socket.h> #include <sys/epoll.h> #include <fcntl.h> #include <sys/ioctl.h> #include <netdb.h> #include <arpa/inet.h> #include <stdint.h> #include <sys/time.h> #include <time.h> #include "eventmanager.h" #include "iobuffer.h" #include "notification.h" #include "tcp.h" using epoll_threadpool::EventManager; using epoll_threadpool::IOBuffer; using epoll_threadpool::Notification; using epoll_threadpool::TcpSocket; using epoll_threadpool::TcpListenSocket; using namespace std; using namespace std::tr1; using namespace std::tr1::placeholders; #define TCP_PROTO "tcp" #define LOG_FILE "./server.log" #define PID_FILE "//server.pid" #define MAXEVENTS 64 void Sleep(unsigned int msec) { timespec tm; tm.tv_sec = msec / 1000; tm.tv_nsec = msec % 1000 * 1000000; nanosleep(&tm, 0); } unsigned long long getTickCount64() { timespec _spec; clock_gettime(CLOCK_MONOTONIC, &_spec); unsigned long long uTick = _spec.tv_sec * 1000 + _spec.tv_nsec / 1000 / 1000; return uTick; } void errout(const char *msg) { if (msg) { printf("%s\n", msg); } exit(1); } char * get_curdir() { static char buf[256] = { 0 }; int count = readlink("/proc/self/exe", buf, sizeof(buf)); char * p = strrchr(buf, '/'); if (p != NULL) { *(p + 1) = 0; } return buf; } char * get_exename() { static char buf[256] = { 0 }; int count = readlink("/proc/self/exe", buf, sizeof(buf)); return buf; } void daemonize() { char szCurDir[256] = { 0 }; getcwd(szCurDir, sizeof(szCurDir)); pid_t pid; if ((pid = fork()) < 0) { errout("fork error\n"); } else if (pid != 0) { exit(0); } setsid(); signal(SIGTTOU, SIG_IGN); signal(SIGTTIN, SIG_IGN); signal(SIGTSTP, SIG_IGN); struct sigaction sig; sig.sa_handler = SIG_IGN; sig.sa_flags = 0; sigemptyset(&sig.sa_mask); sigaction(SIGHUP, &sig, NULL); chdir(szCurDir); } static int check_pid(const char *pidfile) { char pidfilebuf[256] = { 0 }; int count = readlink("/proc/self/exe", pidfilebuf, sizeof(pidfilebuf)); char * p = strrchr(pidfilebuf, '/'); if (p != NULL) { *(p + 1) = 0; } unsigned int len = strlen(pidfilebuf); sprintf(pidfilebuf + len, "%s", pidfile); int pid = 0; FILE *f = fopen((const char *)pidfilebuf, "r"); if (f == NULL) { return 0; } int n = fscanf(f, "%d", &pid); fclose(f); if (n != 1 || pid == 0 || pid == getpid()) { return 0; } if (kill(pid, 0) && errno == ESRCH) { return 0; } return pid; } static int write_pid(const char *pidfile) { char pidfilebuf[256] = { 0 }; int count = readlink("/proc/self/exe", pidfilebuf, sizeof(pidfilebuf)); char * p = strrchr(pidfilebuf, '/'); if (p != NULL) { *(p + 1) = 0; } unsigned int len = strlen(pidfilebuf); sprintf(pidfilebuf + len, "%s", pidfile); FILE *f; int pid = 0; int fd = open((const char *)pidfilebuf, O_RDWR | O_CREAT, 0644); if (fd == -1) { fprintf(stderr, "Can't create pidfile [%s].\n", pidfile); return 0; } f = fdopen(fd, "r+"); if (f == NULL) { fprintf(stderr, "Can't open pidfile [%s].\n", pidfile); return 0; } if (flock(fd, LOCK_EX | LOCK_NB) == -1) { int n = fscanf(f, "%d", &pid); fclose(f); if (n != 1) { fprintf(stderr, "Can't lock and read pidfile.\n"); } else { fprintf(stderr, "Can't lock pidfile, lock is held by pid %d.\n", pid); } return 0; } pid = getpid(); if (!fprintf(f, "%d\n", pid)) { fprintf(stderr, "Can't write pid.\n"); close(fd); return 0; } fflush(f); return pid; } shared_ptr<TcpListenSocket> createListenSocket(EventManager *em, int &port) { shared_ptr<TcpListenSocket> s; while (!s) { s = TcpListenSocket::create(em, port); } return s; } static map<int, shared_ptr<TcpSocket> > sockets; void OnReceiveCallback(IOBuffer* iobuf) { printf("OnReceiveCallback - size:%d\n", iobuf->size()); iobuf->print_data(); map<int, shared_ptr<TcpSocket> >::iterator it_socket = sockets.begin(); for (; it_socket != sockets.end(); it_socket++) { printf("it_socket.first:%d\n", it_socket->first); shared_ptr<TcpSocket> socket = it_socket->second; socket->write(iobuf); } } void OnDisconnectCallback() { //sockets.erase(fd()); printf("socket disconnect ...\n"); } void OnAcceptCallback(shared_ptr<TcpSocket> socket) { printf("accent socket - fd:%d\n", socket->fd()); if (sockets.find(socket->fd()) == sockets.end()) { socket->setReceiveCallback(OnReceiveCallback); socket->setDisconnectCallback(OnDisconnectCallback); socket->start(); sockets[socket->fd()] = socket; } else { //sockets[socket->fd()] = socket; } } int main(int argc, char *argv[]) { printf("hello server!\n"); //daemonize(); //int pid = check_pid(PID_FILE); //if (pid) //{ // fprintf(stderr, "server is already running, pid = %d.\n", pid); // return 1; //} //pid = write_pid(PID_FILE); //if (pid == 0) //{ // return 1; //} // --- EventManager em; em.start(4); int port = 60933; shared_ptr<TcpListenSocket> pListenSocket = createListenSocket(&em, port); assert(pListenSocket != NULL); int fd = pListenSocket->fd(); printf("server listen success.port:%d,fd:%d!\n", port, fd); pListenSocket->setAcceptCallback(OnAcceptCallback); // --- unsigned long long startTime = 0; unsigned long long endTime = 0; unsigned long long sleepTime = 0; while (true) { startTime = getTickCount64(); // doing some endTime = getTickCount64(); sleepTime = endTime - startTime; if (sleepTime > (100 - 10)) { sleepTime = 10; } else { sleepTime = 100 - sleepTime; } Sleep(sleepTime); } printf("server shutdown ...\n"); return 0; }
[ "root@sucer.pc" ]
root@sucer.pc
e90233c2eeceba2c30ac20593f8062a160d3f672
db664039f507f8625cd4d34b405918613eadde4a
/battletank/Source/Battletank/Private/Aprojectile.cpp
7c6d2197c334420d008c9b88ed74aaf3653374ee
[]
no_license
subramanian252/battletank
d0316ef8867b5f065c458dcae62a303f105601e3
b8162f020e938358b7c170edb500680f811726f8
refs/heads/master
2020-07-21T22:18:34.887933
2019-09-07T15:55:07
2019-09-07T15:55:07
202,686,097
0
0
null
null
null
null
UTF-8
C++
false
false
2,369
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Aprojectile.h" // Sets default values AAprojectile::AAprojectile() { // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it. PrimaryActorTick.bCanEverTick = true; Collisionmesh = CreateDefaultSubobject<UStaticMeshComponent>(FName("collisionmesh")); SetRootComponent(Collisionmesh); Collisionmesh->SetNotifyRigidBodyCollision(true); Collisionmesh->SetVisibility(false); Launchblast = CreateDefaultSubobject<UParticleSystemComponent>(FName("launchblast")); Launchblast->AttachToComponent(RootComponent, FAttachmentTransformRules::KeepRelativeTransform); ProjectileMovement= CreateDefaultSubobject<UProjectileMovementComponent>(FName("ProjectileMovement")); ProjectileMovement->bAutoActivate = false; ImpactBlast = CreateDefaultSubobject<UParticleSystemComponent>(FName("impactblast")); ImpactBlast->AttachToComponent(RootComponent,FAttachmentTransformRules::KeepRelativeTransform); ImpactBlast->bAutoActivate = false; ExplosionForce= CreateDefaultSubobject<URadialForceComponent>(FName("explosionforce")); ExplosionForce -> AttachToComponent(RootComponent, FAttachmentTransformRules::KeepRelativeTransform); } // Called when the game starts or when spawned void AAprojectile::BeginPlay() { Super::BeginPlay(); Collisionmesh->OnComponentHit.AddDynamic(this, &AAprojectile::OnHit); } void AAprojectile::OnHit(UPrimitiveComponent* HitComponent, AActor* OtherActor, UPrimitiveComponent* OtherComponent, FVector NormalImpulse, const FHitResult& Hit) { Launchblast->Deactivate(); ImpactBlast->Activate(); ExplosionForce->FireImpulse(); SetRootComponent(ImpactBlast); Collisionmesh->DestroyComponent(); UGameplayStatics::ApplyRadialDamage(this, projectiledamage, GetActorLocation(), ExplosionForce->Radius, UDamageType::StaticClass(), TArray<AActor*>()); FTimerHandle timer; GetWorld()->GetTimerManager().SetTimer(timer, this, &AAprojectile::TimerExpire, delaytime, false); } // Called every frame void AAprojectile::Tick(float DeltaTime) { Super::Tick(DeltaTime); } void AAprojectile::launchprojectile(float speed) { ProjectileMovement->SetVelocityInLocalSpace(FVector::ForwardVector*speed); ProjectileMovement->Activate(); } void AAprojectile::TimerExpire() { Destroy(); }
[ "suryasubramanian252@gmail.com" ]
suryasubramanian252@gmail.com
b673021f8d405efca70298e78a487706876db2fb
b19a7758ecdb1d6db61d5f5698925f868fe06f1e
/test/price/provider/pixie/messages/ack_message_test.cpp
60e3775ca22551a7a1afe2a102f9cac9885d8cfb
[ "Apache-2.0" ]
permissive
bidfx/bidfx-api-cpp
c531d595e711b891b17c7796fe116cacb8fc3095
3d938c9f61057033612a869a9c530392991dca0b
refs/heads/master
2023-08-31T15:37:02.503457
2023-08-24T16:36:57
2023-08-24T16:36:57
207,352,970
5
2
null
2023-09-14T15:45:55
2019-09-09T16:21:43
C++
UTF-8
C++
false
false
2,234
cpp
/** Copyright 2019 BidFX 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 "src/price/provider/pixie/messages/ack_message.h" #include "test/tools/varint_test.h" #include "gtest/gtest.h" namespace bidfx_public_api::price::pixie { using bidfx_public_api::price::pixie::AckMessage; using bidfx_public_api::tools::ByteBuffer; using bidfx_public_api::tools::HexEncoderDecoder; const std::string kEncodedMessageV1 = "4187ad4be89997de9729b09b97de9729b19b97de9729"; const std::string kEncodedMessageV2 = kEncodedMessageV1 + "9a05"; AckMessage ackMessage = AckMessage(1234567L, 1415120801000L, 1415120801200L, 1415120801201L, 666L); TEST(AckMessageTest, TestCannotConstructWithNegativeHandlingDuration) { ASSERT_THROW(AckMessage(0, 0, 0, 0, -1234), std::invalid_argument); } TEST(AckMessageTest, TestEncode) { ByteBuffer buffer = ackMessage.Encode(3); ASSERT_EQ(kEncodedMessageV2, HexEncoderDecoder::StreamAsHex(buffer, 24)); } TEST(AckMessageTest, TestEncodeV1) { ByteBuffer buffer = ackMessage.Encode(1); ASSERT_EQ(kEncodedMessageV1, HexEncoderDecoder::StreamAsHex(buffer, 22)); } TEST(AckMessageTest, ToString) { ASSERT_EQ( "Ack(revision=1234567, revisionTime=20141104170641000, priceReceivedTime=20141104170641200, ackTime=20141104170641201, handlingDuration=666us)", ackMessage.ToString()); } TEST(AckMessageTest, TestEqualsSelf) { EXPECT_EQ(ackMessage, ackMessage); } TEST(AckMessageTest, TestEqualsSimilar) { AckMessage newMessage = AckMessage(1234567, 1415120801000L, 1415120801200L, 1415120801201L, 666L); EXPECT_EQ(ackMessage, newMessage); EXPECT_EQ(std::hash<AckMessage>()(ackMessage), std::hash<AckMessage>()(newMessage)); } }
[ "Liam.Asman@tradingscreen.com" ]
Liam.Asman@tradingscreen.com
4481b8d9fa8144d4975033a988364cd12e1c3e78
88c2d0c1cec0f6da396ca7c28ba1395eda45e20d
/src/CobremsGeneration.hh
8568963307c1d93a0349033d0bf90c243605a05d
[]
no_license
JeffersonLab/HDGeant4
9b51d8dbbbc8156cc1c07ef1c3e65c47f5725473
e4c3b03164d4640a4e27ca1e31ed923a7f7e276a
refs/heads/master
2023-05-06T12:43:29.490835
2023-02-27T23:02:48
2023-02-27T23:02:48
82,930,986
3
5
null
2022-04-12T15:12:35
2017-02-23T13:42:10
C++
UTF-8
C++
false
false
9,832
hh
// // CobremsGeneration class header // // author: richard.t.jones at uconn.edu // version: july 27, 2015 // // notes: // // This class computes differential rates and polarization factors // for coherent bremsstrahlung by an electron beam passing through // a crystal radiator. A beamline geometry similar to that in Hall D // at Jefferson Lab is assumed, consisting of a single radiator // followed by a collimator located some distance away. Rates are // computed for both the pre-collimated and post-collimated beams. // // This code was ported from cobrems.f, written in Fortran 77. // // units: // Any length is in m; energy,momentum,mass in GeV (c=1); angles in // radians; time in seconds; current in microAmps. #ifndef CobremsGeneration_h #define CobremsGeneration_h 1 #include <string> #include <vector> #if BOOST_PYTHON_WRAPPING #include <boost/python.hpp> #endif class CobremsGeneration { public: CobremsGeneration(double Emax_GeV, double Epeak_GeV); CobremsGeneration(const CobremsGeneration &src); CobremsGeneration &operator=(const CobremsGeneration &src); ~CobremsGeneration(); void setBeamEnergy(double Ebeam_GeV); void setBeamErms(double Erms_GeV); void setBeamEmittance(double emit_m_r); void setCollimatorSpotrms(double spotrms_m); void setCollimatorDistance(double distance_m); void setCollimatorDiameter(double diameter_m); void setTargetThickness(double thickness_m); void setTargetCrystal(std::string crystal); void setCoherentEdge(double Epeak_GeV); void setTargetThetax(double thetax); void setTargetThetay(double thetay); void setTargetThetaz(double thetaz); void setTargetOrientation(double thetax, double thetay, double thetaz); void setPhotonEnergyMin(double Emin_GeV); void RotateTarget(double thetax, double thetay, double thetaz); void setCollimatedFlag(bool flag); void setPolarizedFlag(bool flag); double getBeamEnergy() const { return fBeamEnergy; // (GeV) } double getBeamErms() const { return fBeamErms; // (GeV) } double getBeamEmittance() const { return fBeamEmittance; // (m rad) } double getCollimatorSpotrms() const { return fCollimatorSpotrms; // (m) } double getCollimatorDistance() const { return fCollimatorDistance; // (m) } double getCollimatorDiameter() const { return fCollimatorDiameter; // (m) } double getTargetThickness() const { return fTargetThickness; // (m) } std::string getTargetCrystal() const { return fTargetCrystal.name; } int getTargetCrystalNsites() const { return fTargetCrystal.nsites; } double getTargetCrystalAtomicNumber() const { return fTargetCrystal.Z; } double getTargetCrystalAtomicWeight() const { return fTargetCrystal.A; // (amu) } double getTargetCrystalDensity() const { return fTargetCrystal.density; // (g/cm^3) } double getTargetCrystalLatticeConstant() const { return fTargetCrystal.lattice_constant; // (m) } double getTargetCrystalRadiationLength() const { return fTargetCrystal.radiation_length; // (m) } double getTargetCrystalDebyeWallerConst() const { return fTargetCrystal.Debye_Waller_const; // (1/GeV^2) } double getTargetCrystalMosaicSpread() const { return fTargetCrystal.mosaic_spread; // (rad) } double getTargetCrystalBetaFF() const { return fTargetCrystal.betaFF; // (1/GeV^2) } double getTargetThetax() const { return fTargetThetax; // (rad) } double getTargetThetay() const { return fTargetThetay; // (rad) } double getTargetThetaz() const { return fTargetThetaz; // (rad) } double getPhotonEnergyMin() const { return fPhotonEnergyMin; // (GeV) } bool getCollimatedFlag() const { return fCollimatedFlag; } bool getPolarizedFlag() const { return fPolarizedFlag; } double getTargetRadiationLength_PDG(); double getTargetRadiationLength_Schiff(); double getTargetDebyeWallerConstant(double DebyeT_K, double T_K); void applyBeamCrystalConvolution(int nbins, double *xvalues, double *yvalues); #if BOOST_PYTHON_WRAPPING typedef boost::python::object pyobject; void pyApplyBeamCrystalConvolution(int nbins, pyobject xarr, pyobject yarr); #endif void printBeamlineInfo(); void printTargetCrystalInfo(); double CoherentEnhancement(double x); double Rate_dNtdx(double x); double Rate_dNtdx(double x, double distance_m, double diameter_m); double Rate_dNtdk(double k_GeV); double Rate_dNcdx(double x); double Rate_dNcdx(double x, double distance_m, double diameter_m); double Rate_dNcdxdp(double x, double phi); double Rate_dNidx(double x); double Rate_dNBidx(double x); double Rate_dNidxdt2(double x, double theta2); double Rate_para(double x, double theta2, double phi); double Rate_ortho(double x, double theta2, double phi); double Polarization(double x, double theta2); double Polarization(double x, double theta2, double phi); double AbremsPolarization(double x, double theta2, double phi); double Acceptance(double theta2, double phi, double xshift_m, double yshift_m); double Acceptance(double theta2); double Sigma2MS(double thickness_m); double Sigma2MS_Kaune(double thickness_m); double Sigma2MS_PDG(double thickness_m); double Sigma2MS_Geant(double thickness_m); double Sigma2MS_Hanson(double thickness_m); // some math and physical constants static const double dpi; static const double me; static const double alpha; static const double hbarc; // statistical record from last sum over reciprocal lattice std::vector<double> fQ2theta2; std::vector<double> fQ2weight; private: void resetTargetOrientation(); void updateTargetOrientation(); // description of the radiator crystal lattice, here configured for diamond // but may be customized to describe any regular crystal struct lattice_vector { double x; double y; double z; lattice_vector() : x(0), y(0), z(0) {} lattice_vector(double ux, double uy, double uz) : x(ux), y(uy), z(uz) {} lattice_vector(const lattice_vector &src) : x(src.x), y(src.y), z(src.z) {} lattice_vector &operator=(const lattice_vector &src) { x = src.x; y = src.y; z = src.z; return *this; } }; struct crystal_parameters_t { std::string name; int nsites; double Z; double A; // amu double density; // g/cm^3 double lattice_constant; // m double radiation_length; // m double Debye_Waller_const; // 1/GeV^2 double mosaic_spread; // rms radians double betaFF; // 1/GeV^2 std::vector<lattice_vector> ucell_site; lattice_vector primaryHKL; } fTargetCrystal; double fTargetThickness; // orientation of the radiator with respect to the beam axis double fTargetThetax; // the "small" angle double fTargetThetay; // the "large" angle double fTargetThetaz; double fTargetRmatrix[3][3]; // description of the beam at the radiator double fBeamEnergy; // GeV double fBeamErms; // GeV double fBeamEmittance; // m radians double fCollimatorSpotrms; // m double fCollimatorDistance; // m double fCollimatorDiameter; // m // flags to select kind of flux to be computed bool fCollimatedFlag; bool fPolarizedFlag; // parameters controlling Monte Carlo generation of photons double fPhotonEnergyMin; // GeV }; inline void CobremsGeneration::setBeamEmittance(double emit_m_r) { fBeamEmittance = emit_m_r; } inline void CobremsGeneration::setBeamEnergy(double Ebeam_GeV) { fBeamEnergy = Ebeam_GeV; } inline void CobremsGeneration::setBeamErms(double Erms_GeV) { fBeamErms = Erms_GeV; } inline void CobremsGeneration::setCollimatorSpotrms(double spotrms_m) { fCollimatorSpotrms = spotrms_m; } inline void CobremsGeneration::setCollimatorDistance(double distance_m) { fCollimatorDistance = distance_m; } inline void CobremsGeneration::setCollimatorDiameter(double diameter_m) { fCollimatorDiameter = diameter_m; } inline void CobremsGeneration::setTargetThickness(double thickness_m) { fTargetThickness = thickness_m; } inline void CobremsGeneration::setTargetThetax(double thetax) { fTargetThetax = thetax; updateTargetOrientation(); } inline void CobremsGeneration::setTargetThetay(double thetay) { fTargetThetay = thetay; updateTargetOrientation(); } inline void CobremsGeneration::setTargetThetaz(double thetaz) { fTargetThetaz = thetaz; updateTargetOrientation(); } inline void CobremsGeneration::setTargetOrientation(double thetax, double thetay, double thetaz) { fTargetThetax = thetax; fTargetThetay = thetay; fTargetThetaz = thetaz; updateTargetOrientation(); } inline void CobremsGeneration::setPhotonEnergyMin(double Emin_GeV) { fPhotonEnergyMin = Emin_GeV; } inline void CobremsGeneration::setCollimatedFlag(bool flag) { fCollimatedFlag = flag; } inline void CobremsGeneration::setPolarizedFlag(bool flag) { fPolarizedFlag = flag; } inline void CobremsGeneration::resetTargetOrientation() { fTargetRmatrix[0][0] = 1; fTargetRmatrix[0][1] = 0; fTargetRmatrix[0][2] = 0; fTargetRmatrix[1][0] = 0; fTargetRmatrix[1][1] = 1; fTargetRmatrix[1][2] = 0; fTargetRmatrix[2][0] = 0; fTargetRmatrix[2][1] = 0; fTargetRmatrix[2][2] = 1; } #endif
[ "rjones30@gmail.com" ]
rjones30@gmail.com
e9bb57a17485fa4fb89827c24e6eca2fd9007c5d
50b7980236b960b133c91c6d653fb334d904252c
/SDK/BP_BaseProgressActor_functions.cpp
86af9f045c264f39e848e25613664be61dad2921
[]
no_license
wyverns1/mordhau_sdk
c5fa2978203f6c3d405a011c06c39274f52549d1
43693f2102efc684c1d27fb5b4a0abfa67c1f596
refs/heads/master
2020-06-04T00:55:40.096978
2019-06-13T17:12:36
2019-06-13T17:12:36
191,802,239
0
0
null
null
null
null
UTF-8
C++
false
false
3,318
cpp
// Name: MORDHAU, Version: 1.0.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.h" namespace SDK { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------------------------- // Function BP_BaseProgressActor.BP_BaseProgressActor_C.ProgressUpdatedInternal // (Public, BlueprintCallable, BlueprintEvent) // Parameters: // float Progress (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData) void ABP_BaseProgressActor_C::ProgressUpdatedInternal(float Progress) { static auto fn = UObject::FindObject<UFunction>("Function BP_BaseProgressActor.BP_BaseProgressActor_C.ProgressUpdatedInternal"); ABP_BaseProgressActor_C_ProgressUpdatedInternal_Params params; params.Progress = Progress; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function BP_BaseProgressActor.BP_BaseProgressActor_C.ProgressUpdated // (Public, BlueprintCallable, BlueprintEvent) // Parameters: // float Progress (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData) void ABP_BaseProgressActor_C::ProgressUpdated(float Progress) { static auto fn = UObject::FindObject<UFunction>("Function BP_BaseProgressActor.BP_BaseProgressActor_C.ProgressUpdated"); ABP_BaseProgressActor_C_ProgressUpdated_Params params; params.Progress = Progress; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function BP_BaseProgressActor.BP_BaseProgressActor_C.UserConstructionScript // (Event, Public, BlueprintCallable, BlueprintEvent) void ABP_BaseProgressActor_C::UserConstructionScript() { static auto fn = UObject::FindObject<UFunction>("Function BP_BaseProgressActor.BP_BaseProgressActor_C.UserConstructionScript"); ABP_BaseProgressActor_C_UserConstructionScript_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function BP_BaseProgressActor.BP_BaseProgressActor_C.ReceiveBeginPlay // (Event, Protected, BlueprintEvent) void ABP_BaseProgressActor_C::ReceiveBeginPlay() { static auto fn = UObject::FindObject<UFunction>("Function BP_BaseProgressActor.BP_BaseProgressActor_C.ReceiveBeginPlay"); ABP_BaseProgressActor_C_ReceiveBeginPlay_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function BP_BaseProgressActor.BP_BaseProgressActor_C.ExecuteUbergraph_BP_BaseProgressActor // () // Parameters: // int EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData) void ABP_BaseProgressActor_C::ExecuteUbergraph_BP_BaseProgressActor(int EntryPoint) { static auto fn = UObject::FindObject<UFunction>("Function BP_BaseProgressActor.BP_BaseProgressActor_C.ExecuteUbergraph_BP_BaseProgressActor"); ABP_BaseProgressActor_C_ExecuteUbergraph_BP_BaseProgressActor_Params params; params.EntryPoint = EntryPoint; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "jay50@pitt.edu" ]
jay50@pitt.edu
a11dfec0e65906d0ea33f01862f70b83609e8fac
c0826c9e991ab8ff35d4a6baf3a0bd49131e8395
/UserEvent.pb.cc
c82c30b164a1bcb3c8b43c8592138e23df520c33
[ "MIT" ]
permissive
GregoryHlavac/GameAnalyticsPP
0f74c217e917693941e4c1d68cba95e07eb7d073
93f6673af68c071a84be78ef663455d5aee38528
refs/heads/master
2020-06-13T04:56:43.029211
2014-03-01T20:25:21
2014-03-01T20:25:21
null
0
0
null
null
null
null
UTF-8
C++
false
true
18,125
cc
#include "stdafx.h" // Generated by the protocol buffer compiler. DO NOT EDIT! // source: UserEvent.proto #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "UserEvent.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/wire_format_lite_inl.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/generated_message_reflection.h> #include <google/protobuf/reflection_ops.h> #include <google/protobuf/wire_format.h> // @@protoc_insertion_point(includes) namespace ProtocolBuffers { namespace GameAnalytics { namespace { const ::google::protobuf::Descriptor* UserEvent_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* UserEvent_reflection_ = NULL; } // namespace void protobuf_AssignDesc_UserEvent_2eproto() { protobuf_AddDesc_UserEvent_2eproto(); const ::google::protobuf::FileDescriptor* file = ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName( "UserEvent.proto"); GOOGLE_CHECK(file != NULL); UserEvent_descriptor_ = file->message_type(0); static const int UserEvent_offsets_[1] = { }; UserEvent_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( UserEvent_descriptor_, UserEvent::default_instance_, UserEvent_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(UserEvent, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(UserEvent, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(UserEvent)); } namespace { GOOGLE_PROTOBUF_DECLARE_ONCE(protobuf_AssignDescriptors_once_); inline void protobuf_AssignDescriptorsOnce() { ::google::protobuf::GoogleOnceInit(&protobuf_AssignDescriptors_once_, &protobuf_AssignDesc_UserEvent_2eproto); } void protobuf_RegisterTypes(const ::std::string&) { protobuf_AssignDescriptorsOnce(); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( UserEvent_descriptor_, &UserEvent::default_instance()); } } // namespace void protobuf_ShutdownFile_UserEvent_2eproto() { delete UserEvent::default_instance_; delete UserEvent_reflection_; } void protobuf_AddDesc_UserEvent_2eproto() { static bool already_here = false; if (already_here) return; already_here = true; GOOGLE_PROTOBUF_VERIFY_VERSION; ::ProtocolBuffers::GameAnalytics::protobuf_AddDesc_Event_2eproto(); ::google::protobuf::DescriptorPool::InternalAddGeneratedFile( "\n\017UserEvent.proto\022\035ProtocolBuffers.GameA" "nalytics\032\013Event.proto\"\254\010\n\tUserEvent24\n\006g" "ender\022$.ProtocolBuffers.GameAnalytics.Ev" "ent\0303 \001(\t28\n\nbirth_year\022$.ProtocolBuffer" "s.GameAnalytics.Event\0304 \001(\0052:\n\014friend_co" "unt\022$.ProtocolBuffers.GameAnalytics.Even" "t\0305 \001(\00529\n\013facebook_id\022$.ProtocolBuffers" ".GameAnalytics.Event\0306 \001(\t2;\n\rgoogleplus" "_id\022$.ProtocolBuffers.GameAnalytics.Even" "t\0307 \001(\t24\n\006ios_id\022$.ProtocolBuffers.Game" "Analytics.Event\0308 \001(\t28\n\nandroid_id\022$.Pr" "otocolBuffers.GameAnalytics.Event\0309 \001(\t2" "8\n\nadtruth_id\022$.ProtocolBuffers.GameAnal" "ytics.Event\030: \001(\t26\n\010platform\022$.Protocol" "Buffers.GameAnalytics.Event\030; \001(\t24\n\006dev" "ice\022$.ProtocolBuffers.GameAnalytics.Even" "t\030< \001(\t26\n\010os_major\022$.ProtocolBuffers.Ga" "meAnalytics.Event\030= \001(\t26\n\010os_minor\022$.Pr" "otocolBuffers.GameAnalytics.Event\030> \001(\t2" "\?\n\021install_publisher\022$.ProtocolBuffers.G" "ameAnalytics.Event\030\? \001(\t2:\n\014install_site" "\022$.ProtocolBuffers.GameAnalytics.Event\030@" " \001(\t2>\n\020install_campaign\022$.ProtocolBuffe" "rs.GameAnalytics.Event\030A \001(\t2=\n\017install_" "adgroup\022$.ProtocolBuffers.GameAnalytics." "Event\030B \001(\t28\n\ninstall_ad\022$.ProtocolBuff" "ers.GameAnalytics.Event\030C \001(\t2=\n\017install" "_keyword\022$.ProtocolBuffers.GameAnalytics" ".Event\030D \001(\t", 1132); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "UserEvent.proto", &protobuf_RegisterTypes); UserEvent::default_instance_ = new UserEvent(); UserEvent::default_instance_->InitAsDefaultInstance(); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 51, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 52, 5, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 53, 5, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 54, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 55, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 56, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 57, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 58, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 59, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 60, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 61, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 62, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 63, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 64, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 65, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 66, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 67, 9, false, false); ::google::protobuf::internal::ExtensionSet::RegisterExtension( &::ProtocolBuffers::GameAnalytics::Event::default_instance(), 68, 9, false, false); ::google::protobuf::internal::OnShutdown(&protobuf_ShutdownFile_UserEvent_2eproto); } // Force AddDescriptors() to be called at static initialization time. struct StaticDescriptorInitializer_UserEvent_2eproto { StaticDescriptorInitializer_UserEvent_2eproto() { protobuf_AddDesc_UserEvent_2eproto(); } } static_descriptor_initializer_UserEvent_2eproto_; // =================================================================== #ifndef _MSC_VER #endif // !_MSC_VER const ::std::string UserEvent_gender_default(""); #ifndef _MSC_VER const int UserEvent::kGenderFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::gender(kGenderFieldNumber, UserEvent_gender_default); #ifndef _MSC_VER const int UserEvent::kBirthYearFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::PrimitiveTypeTraits< ::google::protobuf::int32 >, 5, false > UserEvent::birth_year(kBirthYearFieldNumber, 0); #ifndef _MSC_VER const int UserEvent::kFriendCountFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::PrimitiveTypeTraits< ::google::protobuf::int32 >, 5, false > UserEvent::friend_count(kFriendCountFieldNumber, 0); const ::std::string UserEvent_facebook_id_default(""); #ifndef _MSC_VER const int UserEvent::kFacebookIdFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::facebook_id(kFacebookIdFieldNumber, UserEvent_facebook_id_default); const ::std::string UserEvent_googleplus_id_default(""); #ifndef _MSC_VER const int UserEvent::kGoogleplusIdFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::googleplus_id(kGoogleplusIdFieldNumber, UserEvent_googleplus_id_default); const ::std::string UserEvent_ios_id_default(""); #ifndef _MSC_VER const int UserEvent::kIosIdFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::ios_id(kIosIdFieldNumber, UserEvent_ios_id_default); const ::std::string UserEvent_android_id_default(""); #ifndef _MSC_VER const int UserEvent::kAndroidIdFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::android_id(kAndroidIdFieldNumber, UserEvent_android_id_default); const ::std::string UserEvent_adtruth_id_default(""); #ifndef _MSC_VER const int UserEvent::kAdtruthIdFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::adtruth_id(kAdtruthIdFieldNumber, UserEvent_adtruth_id_default); const ::std::string UserEvent_platform_default(""); #ifndef _MSC_VER const int UserEvent::kPlatformFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::platform(kPlatformFieldNumber, UserEvent_platform_default); const ::std::string UserEvent_device_default(""); #ifndef _MSC_VER const int UserEvent::kDeviceFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::device(kDeviceFieldNumber, UserEvent_device_default); const ::std::string UserEvent_os_major_default(""); #ifndef _MSC_VER const int UserEvent::kOsMajorFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::os_major(kOsMajorFieldNumber, UserEvent_os_major_default); const ::std::string UserEvent_os_minor_default(""); #ifndef _MSC_VER const int UserEvent::kOsMinorFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::os_minor(kOsMinorFieldNumber, UserEvent_os_minor_default); const ::std::string UserEvent_install_publisher_default(""); #ifndef _MSC_VER const int UserEvent::kInstallPublisherFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::install_publisher(kInstallPublisherFieldNumber, UserEvent_install_publisher_default); const ::std::string UserEvent_install_site_default(""); #ifndef _MSC_VER const int UserEvent::kInstallSiteFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::install_site(kInstallSiteFieldNumber, UserEvent_install_site_default); const ::std::string UserEvent_install_campaign_default(""); #ifndef _MSC_VER const int UserEvent::kInstallCampaignFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::install_campaign(kInstallCampaignFieldNumber, UserEvent_install_campaign_default); const ::std::string UserEvent_install_adgroup_default(""); #ifndef _MSC_VER const int UserEvent::kInstallAdgroupFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::install_adgroup(kInstallAdgroupFieldNumber, UserEvent_install_adgroup_default); const ::std::string UserEvent_install_ad_default(""); #ifndef _MSC_VER const int UserEvent::kInstallAdFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::install_ad(kInstallAdFieldNumber, UserEvent_install_ad_default); const ::std::string UserEvent_install_keyword_default(""); #ifndef _MSC_VER const int UserEvent::kInstallKeywordFieldNumber; #endif ::google::protobuf::internal::ExtensionIdentifier< ::ProtocolBuffers::GameAnalytics::Event, ::google::protobuf::internal::StringTypeTraits, 9, false > UserEvent::install_keyword(kInstallKeywordFieldNumber, UserEvent_install_keyword_default); UserEvent::UserEvent() : ::google::protobuf::Message() { SharedCtor(); } void UserEvent::InitAsDefaultInstance() { } UserEvent::UserEvent(const UserEvent& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); } void UserEvent::SharedCtor() { _cached_size_ = 0; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } UserEvent::~UserEvent() { SharedDtor(); } void UserEvent::SharedDtor() { if (this != default_instance_) { } } void UserEvent::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* UserEvent::descriptor() { protobuf_AssignDescriptorsOnce(); return UserEvent_descriptor_; } const UserEvent& UserEvent::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_UserEvent_2eproto(); return *default_instance_; } UserEvent* UserEvent::default_instance_ = NULL; UserEvent* UserEvent::New() const { return new UserEvent; } void UserEvent::Clear() { ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool UserEvent::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) return false ::google::protobuf::uint32 tag; while ((tag = input->ReadTag()) != 0) { if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { return true; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); } return true; #undef DO_ } void UserEvent::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } } ::google::protobuf::uint8* UserEvent::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } return target; } int UserEvent::ByteSize() const { int total_size = 0; if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void UserEvent::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const UserEvent* source = ::google::protobuf::internal::dynamic_cast_if_available<const UserEvent*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void UserEvent::MergeFrom(const UserEvent& from) { GOOGLE_CHECK_NE(&from, this); mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void UserEvent::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void UserEvent::CopyFrom(const UserEvent& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool UserEvent::IsInitialized() const { return true; } void UserEvent::Swap(UserEvent* other) { if (other != this) { _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata UserEvent::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = UserEvent_descriptor_; metadata.reflection = UserEvent_reflection_; return metadata; } // @@protoc_insertion_point(namespace_scope) } // namespace GameAnalytics } // namespace ProtocolBuffers // @@protoc_insertion_point(global_scope)
[ "ghlavac@gmail.com" ]
ghlavac@gmail.com
11dc6468d5b76e2391c80af5ebba1d7a0a2d1325
de04af1d7243363169abdc7ca050b2c1a21fbe19
/leetcode/include/unique_binary.h
b7a66c7a4da5e413395ed183effb85939319e42e
[]
no_license
deare1300/algs
9ae5c0a3e94669082efb8cc806851bd033500de3
a9012b8bb1283d1078cafee8a30bb7383ba1c0a9
refs/heads/master
2020-11-26T21:11:01.274702
2014-09-22T09:59:38
2014-09-22T09:59:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
245
h
#ifndef UNIQUE_BINARY_H #define UNIQUE_BINARY_H class Unique_Binary { public: Unique_Binary(); virtual ~Unique_Binary(); int numTrees(int n); protected: private: }; #endif // UNIQUE_BINARY_H
[ "deare1300@163.com" ]
deare1300@163.com
d1aea3b2b6cf24abcfb8437c7365349568ba535b
ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c
/out/release/gen/third_party/blink/renderer/modules/webtransport/stream_abort_info.h
8a3a0b4961e0dfd459e5b9ea426ecd9ce7b394a2
[ "BSD-3-Clause" ]
permissive
xueqiya/chromium_src
5d20b4d3a2a0251c063a7fb9952195cda6d29e34
d4aa7a8f0e07cfaa448fcad8c12b29242a615103
refs/heads/main
2022-07-30T03:15:14.818330
2021-01-16T16:47:22
2021-01-16T16:47:22
330,115,551
1
0
null
null
null
null
UTF-8
C++
false
false
1,592
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file has been auto-generated from the Jinja2 template // third_party/blink/renderer/bindings/templates/dictionary_impl.h.tmpl // by the script code_generator_v8.py. // DO NOT MODIFY! // clang-format off #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBTRANSPORT_STREAM_ABORT_INFO_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBTRANSPORT_STREAM_ABORT_INFO_H_ #include "third_party/blink/renderer/bindings/core/v8/idl_dictionary_base.h" #include "third_party/blink/renderer/modules/modules_export.h" #include "third_party/blink/renderer/platform/heap/handle.h" namespace blink { class MODULES_EXPORT StreamAbortInfo : public IDLDictionaryBase { public: static StreamAbortInfo* Create() { return MakeGarbageCollected<StreamAbortInfo>(); } StreamAbortInfo(); virtual ~StreamAbortInfo(); bool hasErrorCode() const { return has_error_code_; } uint16_t errorCode() const { DCHECK(has_error_code_); return error_code_; } inline void setErrorCode(uint16_t); v8::Local<v8::Value> ToV8Impl(v8::Local<v8::Object>, v8::Isolate*) const override; void Trace(blink::Visitor*) override; private: bool has_error_code_ = false; uint16_t error_code_; friend class V8StreamAbortInfo; }; void StreamAbortInfo::setErrorCode(uint16_t value) { error_code_ = value; has_error_code_ = true; } } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBTRANSPORT_STREAM_ABORT_INFO_H_
[ "xueqi@zjmedia.net" ]
xueqi@zjmedia.net
1c22a5d09fb01cf7d7f306834f6487ffc8e9e2b9
d66a5bf33253c8eb0e2b9648b52f1a45449a250c
/과제/1주차/boj_1477.cpp
cffa1062f2ec7af6d13abb99766f015cf5fb020e
[]
no_license
mrgentle1/koss_algorithm
391205de364f2a73570ae3b1ecd65837a18d3e89
e4ed69e096d68687682bb1fe44fd381392226b8e
refs/heads/main
2023-06-27T21:09:06.504749
2021-08-07T07:05:53
2021-08-07T07:05:53
386,637,985
0
0
null
null
null
null
UTF-8
C++
false
false
637
cpp
#include <bits/stdc++.h> using namespace std; void solution(){ int n, m, l; int ans; cin >> n >> m >> l; vector<int> v(n); for(auto& i : v) cin >> i; v.push_back(0); v.push_back(l); sort(v.begin(), v.end()); int low = 0; int high = l; while (low <= high){ int cnt = 0; int mid = (low+high)/2; for(int i = 1; i < v.size(); i++){ int interval = v[i] - v[i-1]; if(interval > mid) cnt += (interval-1) / mid; } if(cnt <= m){ ans = mid; high = mid-1; } else{ low = mid+1; } } cout << ans << '\n'; } int main(){ ios::sync_with_stdio(0); cin.tie(0); solution(); return 0; }
[ "59019322+mrgentle1@users.noreply.github.com" ]
59019322+mrgentle1@users.noreply.github.com
f63895c87ebdfb471c75adde625e33d1c74c20b7
e393488a5829a15c03e97c67d465514191ec001d
/app/view/CTableView.cpp
b09bda336db52ff82d36fb42b0ce971a508b02ed
[ "MIT", "CC-BY-3.0" ]
permissive
katecpp/sheep_sweeper
95234eabb1dd21015b8dfd0909dc7d97f54c948e
aa2fa8262f09460fc4b5ceb45174fec315fd6460
refs/heads/master
2021-01-10T08:51:02.759454
2016-10-12T09:31:33
2016-10-12T09:31:33
47,219,635
4
2
null
null
null
null
UTF-8
C++
false
false
1,981
cpp
#include <view/CTableView.h> #include <view/CActiveDelegate.h> #include <QHeaderView> namespace SSw { CTableView::CTableView(QWidget *parent) : QTableView(parent), m_activeDelegate(), m_inactiveDelegate() { setShowGrid(false); horizontalHeader()->hide(); verticalHeader()->hide(); horizontalHeader()->setMinimumSectionSize(1); verticalHeader()->setMinimumSectionSize(1); setSelectionMode(QAbstractItemView::NoSelection); } void CTableView::mouseReleaseEvent(QMouseEvent* event) { QModelIndex index = indexAt(event->pos()); switch (event->button()) { case Qt::RightButton: { emit rightClicked(index); break; } case Qt::LeftButton: { if (event->buttons() & Qt::RightButton) { emit bothClicked(index); } else { QTableView::mouseReleaseEvent(event); } break; } default: { break; } } } void CTableView::mousePressEvent(QMouseEvent *event) { switch (event->button()) { case Qt::RightButton: { break; } case Qt::LeftButton: { QTableView::mousePressEvent(event); break; } default: { break; } } } void CTableView::adjustSizeToContents() { resizeColumnsToContents(); resizeRowsToContents(); int32_t h = rowHeight(1) * model()->rowCount() + 2; int32_t w = columnWidth(1) * model()->columnCount() + 2; setFixedSize(w, h); } void CTableView::activate() { reset(); setEnabled(true); setItemDelegate(&m_activeDelegate); } void CTableView::deactivate() { setItemDelegate(&m_inactiveDelegate); setDisabled(true); } } // namespace SSw
[ "kasia.macias@gmail.com" ]
kasia.macias@gmail.com
f9bd2689f9057d7e2262980da120172293295ef5
3c8cf4de6c08e21b2c10094ef20488e93d7a34be
/TktkGameProcessDirectX11AppendLib/TktkAppendDirectX11ComponentLib/inc/TktkDirectX11Wrapper/Input/Mouse/Mouse.h
fdc8132fa81866f61d98207bc56e254dbfc5ca32
[]
no_license
tktk2104/TktkLib
07762028c8a3a7378d7e82be8f1ed8c6a0cdc97c
2af549bfb8448ace9f9fee6c2225ea7d2e6329b8
refs/heads/master
2022-11-30T12:26:33.290941
2020-08-11T17:50:14
2020-08-11T17:50:14
213,307,835
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
522
h
#ifndef MOUSE_H_ #define MOUSE_H_ #include <TktkMath/Vector2.h> #include "MouseButtonType.h" namespace tktk { // 「MouseManager」の実装の一部を隠すためのクラス class Mouse { public: // 指定のボタンが押されているかを判定 static bool isPush(MouseButtonType button); // 指定のボタンが押され始めたかを判定 static bool isTrigger(MouseButtonType button); // マウスカーソルの座標を取得する static Vector2 mousePos(); }; } #endif // !MOUSE_H_
[ "taka.lalpedhuez@2104.gmail.com" ]
taka.lalpedhuez@2104.gmail.com
0bd2fb46ab1d4d7b6e46d541bddd7fc4d1f311a4
cdfde37ecd614fdb41e9306f9b90e14a664cea99
/src/qt/overviewpage.cpp
4735af28eba7df06e6730ae7104cd7b9c0079a29
[ "MIT" ]
permissive
digital50/PIVX-master-test-mod
12b0fd08c5ded9ff0978b20bf64395142d18ea69
57b70194b5c1277b87b537c2b92af4b597cf0224
refs/heads/master
2021-04-29T23:32:44.394988
2018-02-14T23:56:04
2018-02-14T23:56:04
121,557,911
0
0
null
null
null
null
UTF-8
C++
false
false
19,486
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The GoCoinMe developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "overviewpage.h" #include "ui_overviewpage.h" #include "bitcoinunits.h" #include "clientmodel.h" #include "guiconstants.h" #include "guiutil.h" #include "init.h" #include "obfuscation.h" #include "obfuscationconfig.h" #include "optionsmodel.h" #include "transactionfilterproxy.h" #include "transactionrecord.h" #include "transactiontablemodel.h" #include "walletmodel.h" #include <QAbstractItemDelegate> #include <QPainter> #include <QSettings> #include <QTimer> #define DECORATION_SIZE 48 #define ICON_OFFSET 16 #define NUM_ITEMS 9 extern CWallet* pwalletMain; class TxViewDelegate : public QAbstractItemDelegate { Q_OBJECT public: TxViewDelegate() : QAbstractItemDelegate(), unit(BitcoinUnits::PIV) { } inline void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const { painter->save(); QIcon icon = qvariant_cast<QIcon>(index.data(Qt::DecorationRole)); QRect mainRect = option.rect; mainRect.moveLeft(ICON_OFFSET); QRect decorationRect(mainRect.topLeft(), QSize(DECORATION_SIZE, DECORATION_SIZE)); int xspace = DECORATION_SIZE + 8; int ypad = 6; int halfheight = (mainRect.height() - 2 * ypad) / 2; QRect amountRect(mainRect.left() + xspace, mainRect.top() + ypad, mainRect.width() - xspace - ICON_OFFSET, halfheight); QRect addressRect(mainRect.left() + xspace, mainRect.top() + ypad + halfheight, mainRect.width() - xspace, halfheight); icon.paint(painter, decorationRect); QDateTime date = index.data(TransactionTableModel::DateRole).toDateTime(); QString address = index.data(Qt::DisplayRole).toString(); qint64 amount = index.data(TransactionTableModel::AmountRole).toLongLong(); bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool(); // Check transaction status int nStatus = index.data(TransactionTableModel::StatusRole).toInt(); bool fConflicted = false; if (nStatus == TransactionStatus::Conflicted || nStatus == TransactionStatus::NotAccepted) { fConflicted = true; // Most probably orphaned, but could have other reasons as well } bool fImmature = false; if (nStatus == TransactionStatus::Immature) { fImmature = true; } QVariant value = index.data(Qt::ForegroundRole); QColor foreground = COLOR_BLACK; if (value.canConvert<QBrush>()) { QBrush brush = qvariant_cast<QBrush>(value); foreground = brush.color(); } painter->setPen(foreground); QRect boundingRect; painter->drawText(addressRect, Qt::AlignLeft | Qt::AlignVCenter, address, &boundingRect); if (index.data(TransactionTableModel::WatchonlyRole).toBool()) { QIcon iconWatchonly = qvariant_cast<QIcon>(index.data(TransactionTableModel::WatchonlyDecorationRole)); QRect watchonlyRect(boundingRect.right() + 5, mainRect.top() + ypad + halfheight, 16, halfheight); iconWatchonly.paint(painter, watchonlyRect); } if(fConflicted) { // No need to check anything else for conflicted transactions foreground = COLOR_CONFLICTED; } else if (!confirmed || fImmature) { foreground = COLOR_UNCONFIRMED; } else if (amount < 0) { foreground = COLOR_NEGATIVE; } else { foreground = COLOR_BLACK; } painter->setPen(foreground); QString amountText = BitcoinUnits::formatWithUnit(unit, amount, true, BitcoinUnits::separatorAlways); if (!confirmed) { amountText = QString("[") + amountText + QString("]"); } painter->drawText(amountRect, Qt::AlignRight | Qt::AlignVCenter, amountText); painter->setPen(COLOR_BLACK); painter->drawText(amountRect, Qt::AlignLeft | Qt::AlignVCenter, GUIUtil::dateTimeStr(date)); painter->restore(); } inline QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const { return QSize(DECORATION_SIZE, DECORATION_SIZE); } int unit; }; #include "overviewpage.moc" OverviewPage::OverviewPage(QWidget* parent) : QWidget(parent), ui(new Ui::OverviewPage), clientModel(0), walletModel(0), currentBalance(-1), currentUnconfirmedBalance(-1), currentImmatureBalance(-1), currentZerocoinBalance(-1), currentUnconfirmedZerocoinBalance(-1), currentimmatureZerocoinBalance(-1), currentWatchOnlyBalance(-1), currentWatchUnconfBalance(-1), currentWatchImmatureBalance(-1), txdelegate(new TxViewDelegate()), filter(0) { nDisplayUnit = 0; // just make sure it's not unitialized ui->setupUi(this); // Recent transactions ui->listTransactions->setItemDelegate(txdelegate); ui->listTransactions->setIconSize(QSize(DECORATION_SIZE, DECORATION_SIZE)); ui->listTransactions->setMinimumHeight(NUM_ITEMS * (DECORATION_SIZE + 2)); ui->listTransactions->setAttribute(Qt::WA_MacShowFocusRect, false); connect(ui->listTransactions, SIGNAL(clicked(QModelIndex)), this, SLOT(handleTransactionClicked(QModelIndex))); // init "out of sync" warning labels ui->labelWalletStatus->setText("(" + tr("out of sync") + ")"); ui->labelTransactionsStatus->setText("(" + tr("out of sync") + ")"); // start with displaying the "out of sync" warnings showOutOfSyncWarning(true); } void OverviewPage::handleTransactionClicked(const QModelIndex& index) { if (filter) emit transactionClicked(filter->mapToSource(index)); } OverviewPage::~OverviewPage() { delete ui; } void OverviewPage::getPercentage(CAmount nUnlockedBalance, CAmount nZerocoinBalance, QString& sPIVPercentage, QString& szPIVPercentage) { int nPrecision = 2; double dzPercentage = 0.0; if (nZerocoinBalance <= 0){ dzPercentage = 0.0; } else{ if (nUnlockedBalance <= 0){ dzPercentage = 100.0; } else{ dzPercentage = 100.0 * (double)(nZerocoinBalance / (double)(nZerocoinBalance + nUnlockedBalance)); } } double dPercentage = 100.0 - dzPercentage; szPIVPercentage = "(" + QLocale(QLocale::system()).toString(dzPercentage, 'f', nPrecision) + " %)"; sPIVPercentage = "(" + QLocale(QLocale::system()).toString(dPercentage, 'f', nPrecision) + " %)"; } void OverviewPage::setBalance(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance, const CAmount& zerocoinBalance, const CAmount& unconfirmedZerocoinBalance, const CAmount& immatureZerocoinBalance, const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance) { currentBalance = balance; currentUnconfirmedBalance = unconfirmedBalance; currentImmatureBalance = immatureBalance; currentZerocoinBalance = zerocoinBalance; currentUnconfirmedZerocoinBalance = unconfirmedZerocoinBalance; currentimmatureZerocoinBalance = immatureZerocoinBalance; currentWatchOnlyBalance = watchOnlyBalance; currentWatchUnconfBalance = watchUnconfBalance; currentWatchImmatureBalance = watchImmatureBalance; CAmount nLockedBalance = 0; CAmount nWatchOnlyLockedBalance = 0; if (pwalletMain) { nLockedBalance = pwalletMain->GetLockedCoins(); nWatchOnlyLockedBalance = pwalletMain->GetLockedWatchOnlyBalance(); } // PIV Balance CAmount nTotalBalance = balance + unconfirmedBalance; CAmount pivAvailableBalance = balance - immatureBalance - nLockedBalance; CAmount nTotalWatchBalance = watchOnlyBalance + watchUnconfBalance + watchImmatureBalance; CAmount nUnlockedBalance = nTotalBalance - nLockedBalance; // zPIV Balance CAmount matureZerocoinBalance = zerocoinBalance - immatureZerocoinBalance; // Percentages QString szPercentage = ""; QString sPercentage = ""; getPercentage(nUnlockedBalance, zerocoinBalance, sPercentage, szPercentage); // Combined balances CAmount availableTotalBalance = pivAvailableBalance + matureZerocoinBalance; CAmount sumTotalBalance = nTotalBalance + zerocoinBalance; // PIV labels ui->labelBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, pivAvailableBalance, false, BitcoinUnits::separatorAlways)); ui->labelUnconfirmed->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, unconfirmedBalance, false, BitcoinUnits::separatorAlways)); ui->labelImmature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, immatureBalance, false, BitcoinUnits::separatorAlways)); ui->labelLockedBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, nLockedBalance, false, BitcoinUnits::separatorAlways)); ui->labelTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, nTotalBalance, false, BitcoinUnits::separatorAlways)); // Watchonly labels ui->labelWatchAvailable->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchOnlyBalance, false, BitcoinUnits::separatorAlways)); ui->labelWatchPending->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchUnconfBalance, false, BitcoinUnits::separatorAlways)); ui->labelWatchImmature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchImmatureBalance, false, BitcoinUnits::separatorAlways)); ui->labelWatchLocked->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, nWatchOnlyLockedBalance, false, BitcoinUnits::separatorAlways)); ui->labelWatchTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, nTotalWatchBalance, false, BitcoinUnits::separatorAlways)); // zPIV labels ui->labelzBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, zerocoinBalance, false, BitcoinUnits::separatorAlways)); ui->labelzBalanceUnconfirmed->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, unconfirmedZerocoinBalance, false, BitcoinUnits::separatorAlways)); ui->labelzBalanceMature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, matureZerocoinBalance, false, BitcoinUnits::separatorAlways)); ui->labelzBalanceImmature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, immatureZerocoinBalance, false, BitcoinUnits::separatorAlways)); // Combined labels ui->labelBalancez->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, availableTotalBalance, false, BitcoinUnits::separatorAlways)); ui->labelTotalz->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, sumTotalBalance, false, BitcoinUnits::separatorAlways)); // Percentage labels ui->labelPIVPercent->setText(sPercentage); ui->labelzPIVPercent->setText(szPercentage); // Adjust bubble-help according to AutoMint settings QString automintHelp = tr("Current percentage of zPIV.\nIf AutoMint is enabled this percentage will settle around the configured AutoMint percentage (default = 10%).\n"); bool fEnableZeromint = GetBoolArg("-enablezeromint", true); int nZeromintPercentage = GetArg("-zeromintpercentage", 10); if (fEnableZeromint) { automintHelp += tr("AutoMint is currently enabled and set to ") + QString::number(nZeromintPercentage) + "%.\n"; automintHelp += tr("To disable AutoMint add 'enablezeromint=0' in gocoinme.conf."); } else { automintHelp += tr("AutoMint is currently disabled.\nTo enable AutoMint change 'enablezeromint=0' to 'enablezeromint=1' in gocoinme.conf"); } // Only show most balances if they are non-zero for the sake of simplicity QSettings settings; bool settingShowAllBalances = !settings.value("fHideZeroBalances").toBool(); bool showSumAvailable = settingShowAllBalances || sumTotalBalance != availableTotalBalance; ui->labelBalanceTextz->setVisible(showSumAvailable); ui->labelBalancez->setVisible(showSumAvailable); bool showPIVAvailable = settingShowAllBalances || pivAvailableBalance != nTotalBalance; bool showWatchOnlyPIVAvailable = watchOnlyBalance != nTotalWatchBalance; bool showPIVPending = settingShowAllBalances || unconfirmedBalance != 0; bool showWatchOnlyPIVPending = watchUnconfBalance != 0; bool showPIVLocked = settingShowAllBalances || nLockedBalance != 0; bool showWatchOnlyPIVLocked = nWatchOnlyLockedBalance != 0; bool showImmature = settingShowAllBalances || immatureBalance != 0; bool showWatchOnlyImmature = watchImmatureBalance != 0; bool showWatchOnly = nTotalWatchBalance != 0; ui->labelBalance->setVisible(showPIVAvailable || showWatchOnlyPIVAvailable); ui->labelBalanceText->setVisible(showPIVAvailable || showWatchOnlyPIVAvailable); ui->labelWatchAvailable->setVisible(showPIVAvailable && showWatchOnly); ui->labelUnconfirmed->setVisible(showPIVPending || showWatchOnlyPIVPending); ui->labelPendingText->setVisible(showPIVPending || showWatchOnlyPIVPending); ui->labelWatchPending->setVisible(showPIVPending && showWatchOnly); ui->labelLockedBalance->setVisible(showPIVLocked || showWatchOnlyPIVLocked); ui->labelLockedBalanceText->setVisible(showPIVLocked || showWatchOnlyPIVLocked); ui->labelWatchLocked->setVisible(showPIVLocked && showWatchOnly); ui->labelImmature->setVisible(showImmature || showWatchOnlyImmature); // for symmetry reasons also show immature label when the watch-only one is shown ui->labelImmatureText->setVisible(showImmature || showWatchOnlyImmature); ui->labelWatchImmature->setVisible(showImmature && showWatchOnly); // show watch-only immature balance bool showzPIVAvailable = settingShowAllBalances || zerocoinBalance != matureZerocoinBalance; bool showzPIVUnconfirmed = settingShowAllBalances || unconfirmedZerocoinBalance != 0; bool showzPIVImmature = settingShowAllBalances || immatureZerocoinBalance != 0; ui->labelzBalanceMature->setVisible(showzPIVAvailable); ui->labelzBalanceMatureText->setVisible(showzPIVAvailable); ui->labelzBalanceUnconfirmed->setVisible(showzPIVUnconfirmed); ui->labelzBalanceUnconfirmedText->setVisible(showzPIVUnconfirmed); ui->labelzBalanceImmature->setVisible(showzPIVImmature); ui->labelzBalanceImmatureText->setVisible(showzPIVImmature); bool showPercentages = ! (zerocoinBalance == 0 && nTotalBalance == 0); ui->labelPIVPercent->setVisible(showPercentages); ui->labelzPIVPercent->setVisible(showPercentages); static int cachedTxLocks = 0; if (cachedTxLocks != nCompleteTXLocks) { cachedTxLocks = nCompleteTXLocks; ui->listTransactions->update(); } } // show/hide watch-only labels void OverviewPage::updateWatchOnlyLabels(bool showWatchOnly) { ui->labelSpendable->setVisible(showWatchOnly); // show spendable label (only when watch-only is active) ui->labelWatchonly->setVisible(showWatchOnly); // show watch-only label ui->labelWatchAvailable->setVisible(showWatchOnly); // show watch-only available balance ui->labelWatchPending->setVisible(showWatchOnly); // show watch-only pending balance ui->labelWatchLocked->setVisible(showWatchOnly); // show watch-only total balance ui->labelWatchTotal->setVisible(showWatchOnly); // show watch-only total balance if (!showWatchOnly) { ui->labelWatchImmature->hide(); } else { ui->labelBalance->setIndent(20); ui->labelUnconfirmed->setIndent(20); ui->labelLockedBalance->setIndent(20); ui->labelImmature->setIndent(20); ui->labelTotal->setIndent(20); } } void OverviewPage::setClientModel(ClientModel* model) { this->clientModel = model; if (model) { // Show warning if this is a prerelease version connect(model, SIGNAL(alertsChanged(QString)), this, SLOT(updateAlerts(QString))); updateAlerts(model->getStatusBarWarnings()); } } void OverviewPage::setWalletModel(WalletModel* model) { this->walletModel = model; if (model && model->getOptionsModel()) { // Set up transaction list filter = new TransactionFilterProxy(); filter->setSourceModel(model->getTransactionTableModel()); filter->setLimit(NUM_ITEMS); filter->setDynamicSortFilter(true); filter->setSortRole(Qt::EditRole); filter->setShowInactive(false); filter->sort(TransactionTableModel::Date, Qt::DescendingOrder); ui->listTransactions->setModel(filter); ui->listTransactions->setModelColumn(TransactionTableModel::ToAddress); // Keep up to date with wallet setBalance(model->getBalance(), model->getUnconfirmedBalance(), model->getImmatureBalance(), model->getZerocoinBalance(), model->getUnconfirmedZerocoinBalance(), model->getImmatureZerocoinBalance(), model->getWatchBalance(), model->getWatchUnconfirmedBalance(), model->getWatchImmatureBalance()); connect(model, SIGNAL(balanceChanged(CAmount, CAmount, CAmount, CAmount, CAmount, CAmount, CAmount, CAmount, CAmount)), this, SLOT(setBalance(CAmount, CAmount, CAmount, CAmount, CAmount, CAmount, CAmount, CAmount, CAmount))); connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); connect(model->getOptionsModel(), SIGNAL(hideZeroBalancesChanged(bool)), this, SLOT(updateDisplayUnit())); updateWatchOnlyLabels(model->haveWatchOnly()); connect(model, SIGNAL(notifyWatchonlyChanged(bool)), this, SLOT(updateWatchOnlyLabels(bool))); } // update the display unit, to not use the default ("PIV") updateDisplayUnit(); } void OverviewPage::updateDisplayUnit() { if (walletModel && walletModel->getOptionsModel()) { nDisplayUnit = walletModel->getOptionsModel()->getDisplayUnit(); if (currentBalance != -1) setBalance(currentBalance, currentUnconfirmedBalance, currentImmatureBalance, currentZerocoinBalance, currentUnconfirmedZerocoinBalance, currentimmatureZerocoinBalance, currentWatchOnlyBalance, currentWatchUnconfBalance, currentWatchImmatureBalance); // Update txdelegate->unit with the current unit txdelegate->unit = nDisplayUnit; ui->listTransactions->update(); } } void OverviewPage::updateAlerts(const QString& warnings) { this->ui->labelAlerts->setVisible(!warnings.isEmpty()); this->ui->labelAlerts->setText(warnings); } void OverviewPage::showOutOfSyncWarning(bool fShow) { ui->labelWalletStatus->setVisible(fShow); ui->labelTransactionsStatus->setVisible(fShow); }
[ "35665802+digital50@users.noreply.github.com" ]
35665802+digital50@users.noreply.github.com
90db4aeb269f1a1624ad48ae6d515925050110e2
8331c69d0ae0fb9ea038b5b8a517d66a2d94aaf4
/src/menu/ResultsMenu.cpp
60cbb6d212d21e104d705ef5bbeccd1f9ca4a495
[]
no_license
amng/TCPDumpParser
228079a9a73e34f1046fe166d95076e1a2e07a13
8413ab11bfdacc4a0a2d3155b1cf0da3a0121871
refs/heads/master
2022-09-20T13:05:44.903503
2020-05-28T12:51:33
2020-05-28T12:51:33
267,587,791
0
0
null
null
null
null
UTF-8
C++
false
false
4,001
cpp
#include <ios> #include <iomanip> #include <algorithm> #include "../../include/menu/MenusManager.hpp" #include "../../include/menu/ResultsMenu.hpp" ResultsMenu::ResultsMenu() { rebuildMenu(); } static const std::string WHITE_SQUARE = "\u25AD"; void ResultsMenu::rebuildMenu() { this->MultiChoiceMenu::rebuildMenu(); TCPDumpEntry::fetchResultsCount(); TCPDumpEntry::fetchResults(getMenuContextInstance()->getCurrentPage()); prompt = TCPDP_MENU_PROMPT::GENERIC_OPTION; if (getMenuContextInstance()->isNextPageAvailable()) { addMenuEntry(TCPDP_MENU_OPTION::NEXT_PAGE, []{ getMenuContextInstance()->nextPage(); showMenu(MenuType::TypeResultMenu); }); } if (getMenuContextInstance()->isPrevPageAvailable()) { addMenuEntry(TCPDP_MENU_OPTION::PREV_PAGE, []{ getMenuContextInstance()->previousPage(); showMenu(MenuType::TypeResultMenu); }); } addMenuEntry(TCPDP_MENU_OPTION::UPDATE_RESULTS, []{ showMenu(MenuType::TypeResultMenu); }); addMenuEntry(TCPDP_MENU_OPTION::BACK_MAIN_MENU, []{showMenu(MenuType::TypeMainMenu);}); addMenuEntry(TCPDP_MENU_OPTION::EXIT, []{ exit(0); }); } void drawCharacterNTimes(int num, std::string character) { for (int i = 0 ; i < num; i++) { std::cout << character; } } std::string getCroppedString(const std::string & s, size_t maxSize) { if (s.size() > maxSize) { return s.substr(0, maxSize-1) + "\u2026" + " "; } return s; } void printEntry(const std::unique_ptr<TCPDumpEntry> & entry ) { std::ios_base::fmtflags f( std::wcout.flags() ); std::cout << std::setw(1) << "\u25AF"; std::cout << " " << std::left << std::setw(29) << getCroppedString(entry->getTimestamp(), 28).c_str(); std::cout << std::setw(1) << "|"; std::cout << " " << std::left << std::setw(29) << getCroppedString(entry->getSrcIp(), 28).c_str(); std::cout << std::setw(1) << "|"; std::cout << " " << std::left << std::setw(29) << getCroppedString(entry->getDstIp(), 28).c_str(); std::cout << std::setw(1) << "|"; std::cout << " " << std::left << std::setw(49) << getCroppedString(entry->getLocation(), 48).c_str(); std::cout << std::setw(1) << "\u25AF"; std::wcout.flags( f ); } void printHeader() { std::ios_base::fmtflags f( std::wcout.flags() ); std::cout << std::setw(1) << "\u25AF"; std::cout << " " << std::left << std::setw(29) << "Timestamp"; std::cout << std::setw(1) << "|"; std::cout << " " << std::left << std::setw(29) << "Source IP"; std::cout << std::setw(1) << "|"; std::cout << " " << std::left << std::setw(29) << "Destination IP"; std::cout << std::setw(1) << "|"; std::cout << " " << std::left << std::setw(49) << "Location"; std::cout << std::setw(1) << "\u25AF"; std::wcout.flags( f ); } void ResultsMenu::preDisplay() { rebuildMenu(); std::ios_base::fmtflags f( std::wcout.flags() ); //std::wcout << "===== RESULTS ======" << std::endl; drawCharacterNTimes(145, WHITE_SQUARE); std::cout << std::endl; printHeader(); std::cout << std::endl; drawCharacterNTimes(145, WHITE_SQUARE); std::cout << std::endl; int i = 0; for (auto & entry : getMenuContextInstance()->getResults()) { printEntry(entry); std::cout << std::endl; if (i < getMenuContextInstance()->getResultsCount()-1) { drawCharacterNTimes(145, "-"); std::cout << std::endl; } i++; } drawCharacterNTimes(145, WHITE_SQUARE); std::wcout.flags( f ); std::cout << std::endl << "Page " << (getMenuContextInstance()->getCurrentPage()+1) << " out of " << getMenuContextInstance()->getPageCount(); if (!getMenuContextInstance()->allTasksFinished()) { std::cout << std::endl << "Fetching Data..." << std::endl; } std::wcout << std:: endl<< std:: endl; }
[ "arturngomes@gmail.com" ]
arturngomes@gmail.com
306e902d10c88d4f41000785f7c46cbd5ffc7a68
62664aed311b6f1e67895893ebbfc36d186f7053
/Modules/Simul/cpp/pdb_parser/pdb_input_parser.cpp
b67450c5f73a69386003d16cd4f3b26694e69f47
[]
no_license
mdobrychlop/pyry3d
0a9c332a530c11f1cdd891d379253d92f8d44cba
44ea539179e41545fbbf5c38f515e377934dbd67
refs/heads/master
2021-05-08T00:36:11.839372
2017-10-20T13:40:13
2017-10-20T13:40:13
107,682,963
2
0
null
null
null
null
UTF-8
C++
false
false
4,151
cpp
#include <iostream> #include <stdio.h> #include <string> #include <algorithm> #include <cstring> #include <sstream> #include <vector> #include "pdb_string_parser.hpp" pdb_line::pdb_line( std::string record_name, std::string atom_ids, std::string atom_name, std::string residue_name, std::string chain_identifiers, std::string residue_numbers, std::string coordsx, std::string coordsy, std::string coordsz, std::string occupancy, std::string temperature_factor, std::string elem_symbol): record_name(record_name), atom_ids(std::stoi(atom_ids)), residue_name(residue_name), atom_name(atom_name), chain_identifiers(chain_identifiers), residue_numbers(std::stoi(residue_numbers)), coordsx(std::stof(coordsx)), coordsy(std::stof(coordsy)), coordsz(std::stof(coordsz)), occupancy(std::stof(occupancy)), temperature_factor(std::stof(temperature_factor)), elem_symbol(elem_symbol) {} int parse_pdb(const std::string& pdb_string) { static std::vector<pdb_line> already_read; static size_t size = 0; static bool first_read = true; if (first_read) { already_read = parse_first_file(pdb_string); fill_all_array(already_read); // filling global arrs size = already_read.size(); } std::vector<point> coords(size); if (first_read) { coords = atom_coords; first_read = false; fill_res_to_ind_array(); } if (!size) { std::cerr<< "ERROR: already_read - vector with pdb_lines is empty\n"; return -1; } std::vector< std::vector<int> > vec_clashes_nr; std::vector< std::vector<int> > vec_all_clashes_dist; vec_clashes_nr.resize(chain_counter); vec_all_clashes_dist.resize(chain_counter); for (int i = 0; i < chain_counter; i++) { vec_clashes_nr[i] = std::vector<int>(chain_counter, 0); vec_all_clashes_dist[i] = std::vector<int>(chain_counter, 0); } complex created(coords, vec_clashes_nr, vec_all_clashes_dist); complexes.push_back(created); return size; } void fill_all_array(const std::vector<pdb_line>& already_read) { std::string prev_chain = "AA"; // name should be shorter string int prev_residue = -1; // starting from 1 size_t size = already_read.size(); for (unsigned int i = 0; i < size; i++) { atom_ids[i] = already_read[i].atom_ids; atom_names[i] = already_read[i].atom_name; chain_identifiers[i] = already_read[i].chain_identifiers; atom_coords[i].x = already_read[i].coordsx; atom_coords[i].y = already_read[i].coordsy; atom_coords[i].z = already_read[i].coordsz; atom_occupancies[i] = already_read[i].occupancy; atom_temp_factors[i] = already_read[i].temperature_factor; atom_elem_symbols[i] = already_read[i].elem_symbol; residue_name[i] = already_read[i].residue_name; int curr_residue = already_read[i].residue_numbers; residue_numbers[i] = already_read[i].residue_numbers; std::string curr_chain = chain_identifiers[i]; if ((prev_residue != curr_residue) || (params.representation.compare("sphere") == 0) || (curr_chain.compare(prev_chain))){ residue_indexes[residue_counter] = i; // keep first indexes of atoms if ((curr_chain.compare(prev_chain)) || (params.representation.compare("sphere") == 0)) { chain_indexes[chain_counter] = residue_counter; // keep first indexes of residues prev_chain = already_read[i].chain_identifiers; chain_counter++; } prev_residue = curr_residue; residue_counter++; } } } void fill_res_to_ind_array(){ /* this array is bit complicated. If you want to know where is residue_number X * from component Y, you just have to read residue_to_index[index_of_first_atom(Y) + * X -1 ] * Please note that when I'm using it, I don't subtract one, because I prepared * my residue_numbers earlier */ int comp_i = 0, curr_comp = 0; int comp = NEXT_COMPONENT(comp_i); for(int i = 0; i < atoms_number; ++i) residue_to_index[i] = -1; for(int i = 0; i < atoms_number; ++i){ if ( residue_to_index[residue_numbers[i] - 1 + curr_comp] == -1 ) /* then it is first atom of this residue */ residue_to_index[residue_numbers[i] - 1 + curr_comp] = i; if (i == comp - 1){ ++comp_i; curr_comp = comp; comp = NEXT_COMPONENT(comp_i); } } }
[ "mateusz.dobrychlop@gmail.com" ]
mateusz.dobrychlop@gmail.com
e2110add1541b8db49b9df661784a86a1011d604
4a294ae9ab5c62798b74d1a2ccc75624665296b3
/cpp/Debug/Generated Files/winrt/impl/Windows.Security.Authentication.Web.Provider.0.h
a67438b0a47e8f7a15355e62112c9cf24f20c20f
[]
no_license
dtakeda/w32-winrt-test
d204a8fb28d1a4ceadf8ab8448b6cae2350a1579
e70bf485ddc44d9389ed025a80fe65b4ec736bb6
refs/heads/main
2023-01-02T15:18:33.151156
2020-10-20T01:58:51
2020-10-20T01:58:51
305,547,430
0
0
null
null
null
null
UTF-8
C++
false
false
58,402
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.201008.2 #ifndef WINRT_Windows_Security_Authentication_Web_Provider_0_H #define WINRT_Windows_Security_Authentication_Web_Provider_0_H WINRT_EXPORT namespace winrt::Windows::Foundation { struct IAsyncAction; template <typename TResult> struct __declspec(empty_bases) IAsyncOperation; struct Uri; } WINRT_EXPORT namespace winrt::Windows::Foundation::Collections { template <typename K, typename V> struct __declspec(empty_bases) IMapView; template <typename T> struct __declspec(empty_bases) IVectorView; template <typename T> struct __declspec(empty_bases) IVector; } WINRT_EXPORT namespace winrt::Windows::Security::Authentication::Web { enum class TokenBindingKeyType : int32_t; } WINRT_EXPORT namespace winrt::Windows::Security::Authentication::Web::Core { struct WebProviderError; struct WebTokenRequest; struct WebTokenResponse; } WINRT_EXPORT namespace winrt::Windows::Security::Credentials { struct WebAccount; } WINRT_EXPORT namespace winrt::Windows::Security::Cryptography::Core { struct CryptographicKey; } WINRT_EXPORT namespace winrt::Windows::Storage::Streams { struct IBuffer; struct IRandomAccessStream; } WINRT_EXPORT namespace winrt::Windows::System { struct User; } WINRT_EXPORT namespace winrt::Windows::Web::Http { struct HttpCookie; } WINRT_EXPORT namespace winrt::Windows::Security::Authentication::Web::Provider { enum class WebAccountClientViewType : int32_t { IdOnly = 0, IdAndProperties = 1, }; enum class WebAccountProviderOperationKind : int32_t { RequestToken = 0, GetTokenSilently = 1, AddAccount = 2, ManageAccount = 3, DeleteAccount = 4, RetrieveCookies = 5, SignOutAccount = 6, }; enum class WebAccountScope : int32_t { PerUser = 0, PerApplication = 1, }; enum class WebAccountSelectionOptions : uint32_t { Default = 0, New = 0x1, }; struct IWebAccountClientView; struct IWebAccountClientViewFactory; struct IWebAccountManagerStatics; struct IWebAccountManagerStatics2; struct IWebAccountManagerStatics3; struct IWebAccountManagerStatics4; struct IWebAccountMapManagerStatics; struct IWebAccountProviderAddAccountOperation; struct IWebAccountProviderBaseReportOperation; struct IWebAccountProviderDeleteAccountOperation; struct IWebAccountProviderManageAccountOperation; struct IWebAccountProviderOperation; struct IWebAccountProviderRetrieveCookiesOperation; struct IWebAccountProviderSignOutAccountOperation; struct IWebAccountProviderSilentReportOperation; struct IWebAccountProviderTokenObjects; struct IWebAccountProviderTokenObjects2; struct IWebAccountProviderTokenOperation; struct IWebAccountProviderUIReportOperation; struct IWebAccountScopeManagerStatics; struct IWebProviderTokenRequest; struct IWebProviderTokenRequest2; struct IWebProviderTokenRequest3; struct IWebProviderTokenResponse; struct IWebProviderTokenResponseFactory; struct WebAccountClientView; struct WebAccountManager; struct WebAccountProviderAddAccountOperation; struct WebAccountProviderDeleteAccountOperation; struct WebAccountProviderGetTokenSilentOperation; struct WebAccountProviderManageAccountOperation; struct WebAccountProviderRequestTokenOperation; struct WebAccountProviderRetrieveCookiesOperation; struct WebAccountProviderSignOutAccountOperation; struct WebAccountProviderTriggerDetails; struct WebProviderTokenRequest; struct WebProviderTokenResponse; } namespace winrt::impl { template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountClientView>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountClientViewFactory>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics2>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics3>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics4>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountMapManagerStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderAddAccountOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderBaseReportOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderDeleteAccountOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderManageAccountOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderRetrieveCookiesOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSignOutAccountOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSilentReportOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects2>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountProviderUIReportOperation>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebAccountScopeManagerStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest2>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest3>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponse>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponseFactory>{ using type = interface_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountClientView>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountManager>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderAddAccountOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderDeleteAccountOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderGetTokenSilentOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderManageAccountOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderRequestTokenOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderRetrieveCookiesOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderSignOutAccountOperation>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderTriggerDetails>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebProviderTokenRequest>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebProviderTokenResponse>{ using type = class_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountClientViewType>{ using type = enum_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountProviderOperationKind>{ using type = enum_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountScope>{ using type = enum_category; }; template <> struct category<Windows::Security::Authentication::Web::Provider::WebAccountSelectionOptions>{ using type = enum_category; }; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountClientView> = L"Windows.Security.Authentication.Web.Provider.WebAccountClientView"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountManager> = L"Windows.Security.Authentication.Web.Provider.WebAccountManager"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderAddAccountOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderAddAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderDeleteAccountOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderDeleteAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderGetTokenSilentOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderGetTokenSilentOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderManageAccountOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderManageAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderRequestTokenOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderRequestTokenOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderRetrieveCookiesOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderRetrieveCookiesOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderSignOutAccountOperation> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderSignOutAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderTriggerDetails> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderTriggerDetails"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebProviderTokenRequest> = L"Windows.Security.Authentication.Web.Provider.WebProviderTokenRequest"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebProviderTokenResponse> = L"Windows.Security.Authentication.Web.Provider.WebProviderTokenResponse"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountClientViewType> = L"Windows.Security.Authentication.Web.Provider.WebAccountClientViewType"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountProviderOperationKind> = L"Windows.Security.Authentication.Web.Provider.WebAccountProviderOperationKind"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountScope> = L"Windows.Security.Authentication.Web.Provider.WebAccountScope"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::WebAccountSelectionOptions> = L"Windows.Security.Authentication.Web.Provider.WebAccountSelectionOptions"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountClientView> = L"Windows.Security.Authentication.Web.Provider.IWebAccountClientView"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountClientViewFactory> = L"Windows.Security.Authentication.Web.Provider.IWebAccountClientViewFactory"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics> = L"Windows.Security.Authentication.Web.Provider.IWebAccountManagerStatics"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics2> = L"Windows.Security.Authentication.Web.Provider.IWebAccountManagerStatics2"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics3> = L"Windows.Security.Authentication.Web.Provider.IWebAccountManagerStatics3"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics4> = L"Windows.Security.Authentication.Web.Provider.IWebAccountManagerStatics4"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountMapManagerStatics> = L"Windows.Security.Authentication.Web.Provider.IWebAccountMapManagerStatics"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderAddAccountOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderAddAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderBaseReportOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderBaseReportOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderDeleteAccountOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderDeleteAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderManageAccountOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderManageAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderRetrieveCookiesOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderRetrieveCookiesOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSignOutAccountOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderSignOutAccountOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSilentReportOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderSilentReportOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderTokenObjects"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects2> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderTokenObjects2"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderTokenOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderUIReportOperation> = L"Windows.Security.Authentication.Web.Provider.IWebAccountProviderUIReportOperation"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebAccountScopeManagerStatics> = L"Windows.Security.Authentication.Web.Provider.IWebAccountScopeManagerStatics"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest> = L"Windows.Security.Authentication.Web.Provider.IWebProviderTokenRequest"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest2> = L"Windows.Security.Authentication.Web.Provider.IWebProviderTokenRequest2"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest3> = L"Windows.Security.Authentication.Web.Provider.IWebProviderTokenRequest3"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponse> = L"Windows.Security.Authentication.Web.Provider.IWebProviderTokenResponse"; template <> inline constexpr auto& name_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponseFactory> = L"Windows.Security.Authentication.Web.Provider.IWebProviderTokenResponseFactory"; template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountClientView>{ 0xE7BD66BA,0x0BC7,0x4C66,{ 0xBF,0xD4,0x65,0xD3,0x08,0x2C,0xBC,0xA8 } }; // E7BD66BA-0BC7-4C66-BFD4-65D3082CBCA8 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountClientViewFactory>{ 0x616D16A4,0xDE22,0x4855,{ 0xA3,0x26,0x06,0xCE,0xBF,0x2A,0x3F,0x23 } }; // 616D16A4-DE22-4855-A326-06CEBF2A3F23 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics>{ 0xB2E8E1A6,0xD49A,0x4032,{ 0x84,0xBF,0x1A,0x28,0x47,0x74,0x7B,0xF1 } }; // B2E8E1A6-D49A-4032-84BF-1A2847747BF1 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics2>{ 0x68A7A829,0x2D5F,0x4653,{ 0x8B,0xB0,0xBD,0x2F,0xA6,0xBD,0x2D,0x87 } }; // 68A7A829-2D5F-4653-8BB0-BD2FA6BD2D87 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics3>{ 0xDD4523A6,0x8A4F,0x4AA2,{ 0xB1,0x5E,0x03,0xF5,0x50,0xAF,0x13,0x59 } }; // DD4523A6-8A4F-4AA2-B15E-03F550AF1359 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics4>{ 0x59EBC2D2,0xF7DB,0x412F,{ 0xBC,0x3F,0xF2,0xFE,0xA0,0x44,0x30,0xB4 } }; // 59EBC2D2-F7DB-412F-BC3F-F2FEA04430B4 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountMapManagerStatics>{ 0xE8FA446F,0x3A1B,0x48A4,{ 0x8E,0x90,0x1E,0x59,0xCA,0x6F,0x54,0xDB } }; // E8FA446F-3A1B-48A4-8E90-1E59CA6F54DB template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderAddAccountOperation>{ 0x73EBDCCF,0x4378,0x4C79,{ 0x93,0x35,0xA5,0xD7,0xAB,0x81,0x59,0x4E } }; // 73EBDCCF-4378-4C79-9335-A5D7AB81594E template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderBaseReportOperation>{ 0xBBA4ACBB,0x993B,0x4D57,{ 0xBB,0xE4,0x14,0x21,0xE3,0x66,0x8B,0x4C } }; // BBA4ACBB-993B-4D57-BBE4-1421E3668B4C template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderDeleteAccountOperation>{ 0x0ABB48B8,0x9E01,0x49C9,{ 0xA3,0x55,0x7D,0x48,0xCA,0xF7,0xD6,0xCA } }; // 0ABB48B8-9E01-49C9-A355-7D48CAF7D6CA template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderManageAccountOperation>{ 0xED20DC5C,0xD21B,0x463E,{ 0xA9,0xB7,0xC1,0xFD,0x0E,0xDA,0xE9,0x78 } }; // ED20DC5C-D21B-463E-A9B7-C1FD0EDAE978 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderOperation>{ 0x6D5D2426,0x10B1,0x419A,{ 0xA4,0x4E,0xF9,0xC5,0x16,0x15,0x74,0xE6 } }; // 6D5D2426-10B1-419A-A44E-F9C5161574E6 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderRetrieveCookiesOperation>{ 0x5A040441,0x0FA3,0x4AB1,{ 0xA0,0x1C,0x20,0xB1,0x10,0x35,0x85,0x94 } }; // 5A040441-0FA3-4AB1-A01C-20B110358594 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSignOutAccountOperation>{ 0xB890E21D,0x0C55,0x47BC,{ 0x8C,0x72,0x04,0xA6,0xFC,0x7C,0xAC,0x07 } }; // B890E21D-0C55-47BC-8C72-04A6FC7CAC07 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSilentReportOperation>{ 0xE0B545F8,0x3B0F,0x44DA,{ 0x92,0x4C,0x7B,0x18,0xBA,0xAA,0x62,0xA9 } }; // E0B545F8-3B0F-44DA-924C-7B18BAAA62A9 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects>{ 0x408F284B,0x1328,0x42DB,{ 0x89,0xA4,0x0B,0xCE,0x7A,0x71,0x7D,0x8E } }; // 408F284B-1328-42DB-89A4-0BCE7A717D8E template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects2>{ 0x1020B893,0x5CA5,0x4FFF,{ 0x95,0xFB,0xB8,0x20,0x27,0x3F,0xC3,0x95 } }; // 1020B893-5CA5-4FFF-95FB-B820273FC395 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation>{ 0x95C613BE,0x2034,0x4C38,{ 0x94,0x34,0xD2,0x6C,0x14,0xB2,0xB4,0xB2 } }; // 95C613BE-2034-4C38-9434-D26C14B2B4B2 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountProviderUIReportOperation>{ 0x28FF92D3,0x8F80,0x42FB,{ 0x94,0x4F,0xB2,0x10,0x7B,0xBD,0x42,0xE6 } }; // 28FF92D3-8F80-42FB-944F-B2107BBD42E6 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebAccountScopeManagerStatics>{ 0x5C6CE37C,0x12B2,0x423A,{ 0xBF,0x3D,0x85,0xB8,0xD7,0xE5,0x36,0x56 } }; // 5C6CE37C-12B2-423A-BF3D-85B8D7E53656 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest>{ 0x1E18778B,0x8805,0x454B,{ 0x9F,0x11,0x46,0x8D,0x2A,0xF1,0x09,0x5A } }; // 1E18778B-8805-454B-9F11-468D2AF1095A template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest2>{ 0xB5D72E4C,0x10B1,0x4AA6,{ 0x88,0xB1,0x0B,0x6C,0x9E,0x0C,0x1E,0x46 } }; // B5D72E4C-10B1-4AA6-88B1-0B6C9E0C1E46 template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest3>{ 0x1B2716AA,0x4289,0x446E,{ 0x92,0x56,0xDA,0xFB,0x6F,0x66,0xA5,0x1E } }; // 1B2716AA-4289-446E-9256-DAFB6F66A51E template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponse>{ 0xEF213793,0xEF55,0x4186,{ 0xB7,0xCE,0x8C,0xB2,0xE7,0xF9,0x84,0x9E } }; // EF213793-EF55-4186-B7CE-8CB2E7F9849E template <> inline constexpr guid guid_v<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponseFactory>{ 0xFA49D99A,0x25BA,0x4077,{ 0x9C,0xFA,0x9D,0xB4,0xDE,0xA7,0xB7,0x1A } }; // FA49D99A-25BA-4077-9CFA-9DB4DEA7B71A template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountClientView>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountClientView; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderAddAccountOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderAddAccountOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderDeleteAccountOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderDeleteAccountOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderGetTokenSilentOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderManageAccountOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderManageAccountOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderRequestTokenOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderRetrieveCookiesOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderRetrieveCookiesOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderSignOutAccountOperation>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderSignOutAccountOperation; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebAccountProviderTriggerDetails>{ using type = Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebProviderTokenRequest>{ using type = Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest; }; template <> struct default_interface<Windows::Security::Authentication::Web::Provider::WebProviderTokenResponse>{ using type = Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponse; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountClientView> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_ApplicationCallbackUri(void**) noexcept = 0; virtual int32_t __stdcall get_Type(int32_t*) noexcept = 0; virtual int32_t __stdcall get_AccountPairwiseId(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountClientViewFactory> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall Create(int32_t, void*, void**) noexcept = 0; virtual int32_t __stdcall CreateWithPairwiseId(int32_t, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall UpdateWebAccountPropertiesAsync(void*, void*, void*, void**) noexcept = 0; virtual int32_t __stdcall AddWebAccountAsync(void*, void*, void*, void**) noexcept = 0; virtual int32_t __stdcall DeleteWebAccountAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall FindAllProviderWebAccountsAsync(void**) noexcept = 0; virtual int32_t __stdcall PushCookiesAsync(void*, void*, void**) noexcept = 0; virtual int32_t __stdcall SetViewAsync(void*, void*, void**) noexcept = 0; virtual int32_t __stdcall ClearViewAsync(void*, void*, void**) noexcept = 0; virtual int32_t __stdcall GetViewsAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall SetWebAccountPictureAsync(void*, void*, void**) noexcept = 0; virtual int32_t __stdcall ClearWebAccountPictureAsync(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall PullCookiesAsync(void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics3> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall FindAllProviderWebAccountsForUserAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall AddWebAccountForUserAsync(void*, void*, void*, void*, void**) noexcept = 0; virtual int32_t __stdcall AddWebAccountWithScopeForUserAsync(void*, void*, void*, void*, int32_t, void**) noexcept = 0; virtual int32_t __stdcall AddWebAccountWithScopeAndMapForUserAsync(void*, void*, void*, void*, int32_t, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics4> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall InvalidateAppCacheForAllAccountsAsync(void**) noexcept = 0; virtual int32_t __stdcall InvalidateAppCacheForAccountAsync(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountMapManagerStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall AddWebAccountWithScopeAndMapAsync(void*, void*, void*, int32_t, void*, void**) noexcept = 0; virtual int32_t __stdcall SetPerAppToPerUserAccountAsync(void*, void*, void**) noexcept = 0; virtual int32_t __stdcall GetPerUserFromPerAppAccountAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall ClearPerUserFromPerAppAccountAsync(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderAddAccountOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall ReportCompleted() noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderBaseReportOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall ReportCompleted() noexcept = 0; virtual int32_t __stdcall ReportError(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderDeleteAccountOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_WebAccount(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderManageAccountOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_WebAccount(void**) noexcept = 0; virtual int32_t __stdcall ReportCompleted() noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Kind(int32_t*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderRetrieveCookiesOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Context(void**) noexcept = 0; virtual int32_t __stdcall get_Cookies(void**) noexcept = 0; virtual int32_t __stdcall put_Uri(void*) noexcept = 0; virtual int32_t __stdcall get_Uri(void**) noexcept = 0; virtual int32_t __stdcall get_ApplicationCallbackUri(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSignOutAccountOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_WebAccount(void**) noexcept = 0; virtual int32_t __stdcall get_ApplicationCallbackUri(void**) noexcept = 0; virtual int32_t __stdcall get_ClientId(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSilentReportOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall ReportUserInteractionRequired() noexcept = 0; virtual int32_t __stdcall ReportUserInteractionRequiredWithError(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Operation(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_User(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_ProviderRequest(void**) noexcept = 0; virtual int32_t __stdcall get_ProviderResponses(void**) noexcept = 0; virtual int32_t __stdcall put_CacheExpirationTime(int64_t) noexcept = 0; virtual int32_t __stdcall get_CacheExpirationTime(int64_t*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountProviderUIReportOperation> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall ReportUserCanceled() noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebAccountScopeManagerStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall AddWebAccountWithScopeAsync(void*, void*, void*, int32_t, void**) noexcept = 0; virtual int32_t __stdcall SetScopeAsync(void*, int32_t, void**) noexcept = 0; virtual int32_t __stdcall GetScope(void*, int32_t*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_ClientRequest(void**) noexcept = 0; virtual int32_t __stdcall get_WebAccounts(void**) noexcept = 0; virtual int32_t __stdcall get_WebAccountSelectionOptions(uint32_t*) noexcept = 0; virtual int32_t __stdcall get_ApplicationCallbackUri(void**) noexcept = 0; virtual int32_t __stdcall GetApplicationTokenBindingKeyAsync(int32_t, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall GetApplicationTokenBindingKeyIdAsync(int32_t, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest3> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_ApplicationPackageFamilyName(void**) noexcept = 0; virtual int32_t __stdcall get_ApplicationProcessName(void**) noexcept = 0; virtual int32_t __stdcall CheckApplicationForCapabilityAsync(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponse> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_ClientResponse(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponseFactory> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall Create(void*, void**) noexcept = 0; }; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountClientView { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Uri) ApplicationCallbackUri() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebAccountClientViewType) Type() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) AccountPairwiseId() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountClientView> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountClientView<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountClientViewFactory { WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebAccountClientView) Create(Windows::Security::Authentication::Web::Provider::WebAccountClientViewType const& viewType, Windows::Foundation::Uri const& applicationCallbackUri) const; WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebAccountClientView) CreateWithPairwiseId(Windows::Security::Authentication::Web::Provider::WebAccountClientViewType const& viewType, Windows::Foundation::Uri const& applicationCallbackUri, param::hstring const& accountPairwiseId) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountClientViewFactory> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountClientViewFactory<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) UpdateWebAccountPropertiesAsync(Windows::Security::Credentials::WebAccount const& webAccount, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& additionalProperties) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) AddWebAccountAsync(param::hstring const& webAccountId, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& props) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) DeleteWebAccountAsync(Windows::Security::Credentials::WebAccount const& webAccount) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Security::Credentials::WebAccount>>) FindAllProviderWebAccountsAsync() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) PushCookiesAsync(Windows::Foundation::Uri const& uri, param::async_vector_view<Windows::Web::Http::HttpCookie> const& cookies) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) SetViewAsync(Windows::Security::Credentials::WebAccount const& webAccount, Windows::Security::Authentication::Web::Provider::WebAccountClientView const& view) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ClearViewAsync(Windows::Security::Credentials::WebAccount const& webAccount, Windows::Foundation::Uri const& applicationCallbackUri) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Security::Authentication::Web::Provider::WebAccountClientView>>) GetViewsAsync(Windows::Security::Credentials::WebAccount const& webAccount) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) SetWebAccountPictureAsync(Windows::Security::Credentials::WebAccount const& webAccount, Windows::Storage::Streams::IRandomAccessStream const& webAccountPicture) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ClearWebAccountPictureAsync(Windows::Security::Credentials::WebAccount const& webAccount) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics2 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) PullCookiesAsync(param::hstring const& uriString, param::hstring const& callerPFN) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics2> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics2<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics3 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Security::Credentials::WebAccount>>) FindAllProviderWebAccountsForUserAsync(Windows::System::User const& user) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) AddWebAccountForUserAsync(Windows::System::User const& user, param::hstring const& webAccountId, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& props) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) AddWebAccountForUserAsync(Windows::System::User const& user, param::hstring const& webAccountId, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& props, Windows::Security::Authentication::Web::Provider::WebAccountScope const& scope) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) AddWebAccountForUserAsync(Windows::System::User const& user, param::hstring const& webAccountId, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& props, Windows::Security::Authentication::Web::Provider::WebAccountScope const& scope, param::hstring const& perUserWebAccountId) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics3> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics3<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics4 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) InvalidateAppCacheForAllAccountsAsync() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) InvalidateAppCacheForAccountAsync(Windows::Security::Credentials::WebAccount const& webAccount) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountManagerStatics4> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountManagerStatics4<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountMapManagerStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) AddWebAccountAsync(param::hstring const& webAccountId, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& props, Windows::Security::Authentication::Web::Provider::WebAccountScope const& scope, param::hstring const& perUserWebAccountId) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) SetPerAppToPerUserAccountAsync(Windows::Security::Credentials::WebAccount const& perAppAccount, param::hstring const& perUserWebAccountId) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) GetPerUserFromPerAppAccountAsync(Windows::Security::Credentials::WebAccount const& perAppAccount) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ClearPerUserFromPerAppAccountAsync(Windows::Security::Credentials::WebAccount const& perAppAccount) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountMapManagerStatics> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountMapManagerStatics<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderAddAccountOperation { WINRT_IMPL_AUTO(void) ReportCompleted() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderAddAccountOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderAddAccountOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderBaseReportOperation { WINRT_IMPL_AUTO(void) ReportCompleted() const; WINRT_IMPL_AUTO(void) ReportError(Windows::Security::Authentication::Web::Core::WebProviderError const& value) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderBaseReportOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderBaseReportOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderDeleteAccountOperation { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Credentials::WebAccount) WebAccount() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderDeleteAccountOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderDeleteAccountOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderManageAccountOperation { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Credentials::WebAccount) WebAccount() const; WINRT_IMPL_AUTO(void) ReportCompleted() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderManageAccountOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderManageAccountOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderOperation { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebAccountProviderOperationKind) Kind() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderRetrieveCookiesOperation { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Uri) Context() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<Windows::Web::Http::HttpCookie>) Cookies() const; WINRT_IMPL_AUTO(void) Uri(Windows::Foundation::Uri const& uri) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Uri) Uri() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Uri) ApplicationCallbackUri() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderRetrieveCookiesOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderRetrieveCookiesOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderSignOutAccountOperation { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Credentials::WebAccount) WebAccount() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Uri) ApplicationCallbackUri() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) ClientId() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSignOutAccountOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderSignOutAccountOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderSilentReportOperation { WINRT_IMPL_AUTO(void) ReportUserInteractionRequired() const; WINRT_IMPL_AUTO(void) ReportUserInteractionRequired(Windows::Security::Authentication::Web::Core::WebProviderError const& value) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderSilentReportOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderSilentReportOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderTokenObjects { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::IWebAccountProviderOperation) Operation() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderTokenObjects<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderTokenObjects2 { [[nodiscard]] WINRT_IMPL_AUTO(Windows::System::User) User() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenObjects2> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderTokenObjects2<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderTokenOperation { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebProviderTokenRequest) ProviderRequest() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<Windows::Security::Authentication::Web::Provider::WebProviderTokenResponse>) ProviderResponses() const; WINRT_IMPL_AUTO(void) CacheExpirationTime(Windows::Foundation::DateTime const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::DateTime) CacheExpirationTime() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderTokenOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderTokenOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderUIReportOperation { WINRT_IMPL_AUTO(void) ReportUserCanceled() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountProviderUIReportOperation> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountProviderUIReportOperation<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebAccountScopeManagerStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Credentials::WebAccount>) AddWebAccountAsync(param::hstring const& webAccountId, param::hstring const& webAccountUserName, param::async_map_view<hstring, hstring> const& props, Windows::Security::Authentication::Web::Provider::WebAccountScope const& scope) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) SetScopeAsync(Windows::Security::Credentials::WebAccount const& webAccount, Windows::Security::Authentication::Web::Provider::WebAccountScope const& scope) const; WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebAccountScope) GetScope(Windows::Security::Credentials::WebAccount const& webAccount) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebAccountScopeManagerStatics> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebAccountScopeManagerStatics<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenRequest { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Core::WebTokenRequest) ClientRequest() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Credentials::WebAccount>) WebAccounts() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebAccountSelectionOptions) WebAccountSelectionOptions() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Uri) ApplicationCallbackUri() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Cryptography::Core::CryptographicKey>) GetApplicationTokenBindingKeyAsync(Windows::Security::Authentication::Web::TokenBindingKeyType const& keyType, Windows::Foundation::Uri const& target) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenRequest<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenRequest2 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Storage::Streams::IBuffer>) GetApplicationTokenBindingKeyIdAsync(Windows::Security::Authentication::Web::TokenBindingKeyType const& keyType, Windows::Foundation::Uri const& target) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest2> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenRequest2<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenRequest3 { [[nodiscard]] WINRT_IMPL_AUTO(hstring) ApplicationPackageFamilyName() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) ApplicationProcessName() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<bool>) CheckApplicationForCapabilityAsync(param::hstring const& capabilityName) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebProviderTokenRequest3> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenRequest3<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenResponse { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Core::WebTokenResponse) ClientResponse() const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponse> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenResponse<D>; }; template <typename D> struct consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenResponseFactory { WINRT_IMPL_AUTO(Windows::Security::Authentication::Web::Provider::WebProviderTokenResponse) Create(Windows::Security::Authentication::Web::Core::WebTokenResponse const& webTokenResponse) const; }; template <> struct consume<Windows::Security::Authentication::Web::Provider::IWebProviderTokenResponseFactory> { template <typename D> using type = consume_Windows_Security_Authentication_Web_Provider_IWebProviderTokenResponseFactory<D>; }; } #endif
[ "dtakeda@yamaha.com" ]
dtakeda@yamaha.com
4a450a552beacd7554af282762f66775cb0d2f26
87aba51b1f708b47d78b5c4180baf731d752e26d
/Replication/DataFileSystem/PRODUCT_SOURCE_CODE/chromium/cc/CCAppendQuadsData.h
2a199672d707c1a4971d39673dea27d82d2ff322
[]
no_license
jstavr/Architecture-Relation-Evaluator
12c225941e9a4942e83eb6d78f778c3cf5275363
c63c056ee6737a3d90fac628f2bc50b85c6bd0dc
refs/heads/master
2020-12-31T05:10:08.774893
2016-05-14T16:09:40
2016-05-14T16:09:40
58,766,508
0
0
null
null
null
null
UTF-8
C++
false
false
572
h
// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CCAppendQuadsData_h #define CCAppendQuadsData_h namespace cc { struct CCAppendQuadsData { CCAppendQuadsData() : hadOcclusionFromOutsideTargetSurface(false) , hadMissingTiles(false) { } // Set by the QuadCuller. bool hadOcclusionFromOutsideTargetSurface; // Set by the layer appending quads. bool hadMissingTiles; }; } #endif // CCCCAppendQuadsData_h
[ "jstavr2@gmail.com" ]
jstavr2@gmail.com
ea3c55553ab7de5bc5e03f2194970c223d2d170d
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14721/function14721_schedule_26/function14721_schedule_26.cpp
da3afa5ed284ff7d94f2d0a3dc89fcd37fc828df
[]
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,550
cpp
#include <tiramisu/tiramisu.h> using namespace tiramisu; int main(int argc, char **argv){ tiramisu::init("function14721_schedule_26"); constant c0("c0", 128), c1("c1", 64), c2("c2", 64), c3("c3", 128); var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i3("i3", 0, c3), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06"); input input00("input00", {i0, i1, i3}, p_int32); input input01("input01", {i0, i1}, p_int32); input input02("input02", {i1, i2}, p_int32); input input03("input03", {i2}, p_int32); input input04("input04", {i0}, p_int32); computation comp0("comp0", {i0, i1, i2, i3}, input00(i0, i1, i3) + input01(i0, i1) * input02(i1, i2) * input03(i2) + input04(i0)); comp0.tile(i0, i1, i2, 64, 32, 32, i01, i02, i03, i04, i05, i06); comp0.parallelize(i01); buffer buf00("buf00", {128, 64, 128}, p_int32, a_input); buffer buf01("buf01", {128, 64}, p_int32, a_input); buffer buf02("buf02", {64, 64}, p_int32, a_input); buffer buf03("buf03", {64}, p_int32, a_input); buffer buf04("buf04", {128}, p_int32, a_input); buffer buf0("buf0", {128, 64, 64, 128}, 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/function14721/function14721_schedule_26/function14721_schedule_26.o"); return 0; }
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
bb984b49adabf7084cede86d0d7c7989186ae69f
c39a642616f50bed60c2afa0c197c41bc7d53b57
/demoFlightDisplays1/SpdLines.cpp
74105e558790079b299479b1caa99933ac6931ef
[]
no_license
wangfeilong321/OpenEaaglesExamples
e1dc23ec38837ea137cd6c41c95e1192fa6fc2c5
e2ca52aadd0c4b991ab16aa9891935e5f1f8e5ff
refs/heads/master
2020-12-24T12:00:49.712347
2016-06-14T19:46:30
2016-06-14T19:46:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,087
cpp
#include "SpdLines.h" #include "openeaagles/base/Number.h" #include <GL/glu.h> using namespace oe; IMPLEMENT_SUBCLASS(SpdLines, "SpdLines") EMPTY_SERIALIZER(SpdLines) EMPTY_DELETEDATA(SpdLines) BEGIN_SLOTTABLE(SpdLines) "isAlt", // draw for the altitude scale (instead of making a new class) "isBackground", // do we draw the background? END_SLOTTABLE(SpdLines) BEGIN_SLOT_MAP(SpdLines) ON_SLOT(1, setSlotIsAlt, base::Number) ON_SLOT(2, setSlotDrawBack, base::Number) END_SLOT_MAP() SpdLines::SpdLines() { STANDARD_CONSTRUCTOR() isAlt = false; drawBack = true; } void SpdLines::copyData(const SpdLines& org, const bool) { // copy baseclass stuff first BaseClass::copyData(org); isAlt = org.isAlt; drawBack = org.drawBack; } bool SpdLines::setIsAlt(const bool newIsAlt) { isAlt = newIsAlt; return true; } bool SpdLines::setDrawBack(const bool newDB) { drawBack = newDB; return true; } void SpdLines::drawFunc() { GLfloat ocolor[4]; GLfloat lw; glGetFloatv(GL_CURRENT_COLOR, ocolor); glGetFloatv(GL_LINE_WIDTH, &lw); BEGIN_DLIST if (!isAlt) { double startPoint = 0; // now step through and draw all the lines (100 of them) // draw the big lines first glLineWidth(2); for (int i = 0; i < 51; i++) { glPushMatrix(); glBegin(GL_LINES); lcVertex2(0.6, startPoint); lcVertex2(0.48, startPoint); glEnd(); glPopMatrix(); // move up to the next line startPoint += 0.9; } // now draw the small lines startPoint = 0.45; for (int i = 0; i < 50; i++) { glPushMatrix(); glBegin(GL_LINES); lcVertex2(0.6, startPoint); lcVertex2(0.52, startPoint); glEnd(); glPopMatrix(); // move up to the next line startPoint += 0.9; } if (drawBack) { glLineWidth(1); glColor3f(0, 0, 0); // make the polygon last glPushMatrix(); glBegin(GL_POLYGON); glVertex2f(0.0f, 15.0f); glVertex2f(0.0f, -15.0f); glVertex2f(0.6f, -15.0f); glVertex2f(0.6f, 15.0f); glEnd(); glPopMatrix(); } } else { // if we are drawing the altitude lines double startPoint = 0; // now step through and draw all the lines (approx 280 of them, gets us to about 55,800 feet) // draw the big lines first glLineWidth(2); for (int i = 0; i < 281; i++) { glPushMatrix(); glBegin(GL_LINES); lcVertex2(0, startPoint); lcVertex2(0.12, startPoint); glEnd(); glPopMatrix(); // move up to the next line startPoint += 0.9; } // now draw the small lines startPoint = 0.45; for (int i = 0; i < 280; i++) { glPushMatrix(); glBegin(GL_LINES); lcVertex2(0, startPoint); lcVertex2(0.08, startPoint); glEnd(); glPopMatrix(); // move up to the next line startPoint += 0.9; } if (drawBack) { glLineWidth(1); glColor3f(0, 0, 0); // make the polygon last glPushMatrix(); glBegin(GL_POLYGON); glVertex2f(0, 15); glVertex2f(0, -15); glVertex2f(0.879f, -15); glVertex2f(0.879f, 15); glEnd(); glPopMatrix(); } } END_DLIST glColor4fv(ocolor); glLineWidth(lw); } bool SpdLines::setSlotIsAlt(const base::Number* const newAltFlag) { bool ok = false; if (newAltFlag != nullptr) ok = setIsAlt(newAltFlag->getBoolean()); return ok; } //------------------------------------------------------------------------------ // sets our draw background flag //------------------------------------------------------------------------------ bool SpdLines::setSlotDrawBack(const base::Number* const newDB) { bool ok = false; if (newDB != nullptr) ok = setDrawBack(newDB->getBoolean()); return ok; } base::Object* SpdLines::getSlotByIndex(const int si) { return BaseClass::getSlotByIndex(si); }
[ "doug@openeaagles.org" ]
doug@openeaagles.org
c4f5cc9ff5044d0274938134c111ef723026fd38
6612c256537ad20c7cb9bbb4ca8f881cd77908ab
/src/Moj_1/TouchGFX/generated/images/src/button_up_pressed.cpp
9c75cec280f9e48998fe0519d837f027a9a3f43c
[]
no_license
SzymonKwiecinski/Implementation-of-the-HMI-panel-on-a-discovery-kit-containing-a-STM32-microcontroller
14abb0d177cced04e9c4d780f03e25bab64e238d
ca695bbe32fe6549da07a3cd7255789b32eeb92b
refs/heads/main
2023-08-29T09:03:46.784748
2021-10-17T11:45:12
2021-10-17T11:45:12
315,503,458
0
0
null
2021-10-17T11:35:57
2020-11-24T03:04:07
C
UTF-8
C++
false
false
177,072
cpp
// -alpha_dither yes -dither 2 -non_opaque_image_format ARGB8888 -opaque_image_format RGB565 0x7a0b671d // Generated by imageconverter. Please, do not edit! #include <touchgfx/hal/Config.hpp> LOCATION_EXTFLASH_PRAGMA KEEP extern const unsigned char _button_up_pressed[] LOCATION_EXTFLASH_ATTRIBUTE = // 130x56 ARGB8888 pixels. { 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x50, 0x4c, 0x40, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x68, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x68, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x38, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x58, 0x58, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x58, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x30, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x48, 0x48, 0x40, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x50, 0x4c, 0x40, 0xff, 0x60, 0x58, 0x50, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x30, 0x30, 0x28, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x48, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x30, 0x2c, 0x28, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x18, 0x14, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x18, 0x14, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x58, 0x54, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x48, 0x44, 0x38, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x30, 0x30, 0x28, 0xff, 0x18, 0x14, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x18, 0x18, 0x08, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x1c, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x20, 0x10, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x1c, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x1c, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x1c, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x18, 0x18, 0x08, 0xff, 0x18, 0x14, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x38, 0x30, 0x28, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x38, 0x34, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x28, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x18, 0x18, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x18, 0x18, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x58, 0x58, 0x50, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x18, 0x18, 0x10, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x30, 0x2c, 0x28, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x20, 0x18, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x20, 0x10, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x18, 0x10, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x10, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x20, 0x1c, 0x10, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x20, 0x1c, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x30, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x38, 0x34, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x38, 0x30, 0xff, 0x38, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x20, 0x20, 0x10, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x20, 0x20, 0x18, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x28, 0x50, 0x60, 0xff, 0x28, 0x50, 0x58, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x48, 0x48, 0x40, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x30, 0x44, 0x40, 0xff, 0x08, 0x78, 0xb0, 0xff, 0x08, 0x78, 0xb0, 0xff, 0x38, 0x40, 0x40, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x38, 0x34, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x30, 0xff, 0x10, 0x70, 0xa0, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x10, 0x70, 0xa0, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x18, 0x64, 0x88, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x20, 0x60, 0x80, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x28, 0x50, 0x60, 0xff, 0x08, 0x7c, 0xb8, 0xff, 0x08, 0x94, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x94, 0xe0, 0xff, 0x08, 0x7c, 0xb8, 0xff, 0x28, 0x50, 0x58, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x30, 0x44, 0x40, 0xff, 0x08, 0x78, 0xb0, 0xff, 0x08, 0x90, 0xd8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x90, 0xd8, 0xff, 0x08, 0x78, 0xb0, 0xff, 0x38, 0x40, 0x40, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x20, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x10, 0x70, 0xa0, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x10, 0x70, 0xa0, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x58, 0x50, 0xff, 0x38, 0x38, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x18, 0x64, 0x88, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x10, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x20, 0x60, 0x80, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x28, 0x54, 0x60, 0xff, 0x08, 0x7c, 0xb8, 0xff, 0x08, 0x94, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x10, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x94, 0xe0, 0xff, 0x08, 0x7c, 0xb8, 0xff, 0x28, 0x50, 0x60, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x38, 0x44, 0x40, 0xff, 0x08, 0x78, 0xb8, 0xff, 0x08, 0x90, 0xd8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x10, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x90, 0xd0, 0xff, 0x08, 0x78, 0xb0, 0xff, 0x38, 0x44, 0x40, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x10, 0x74, 0xa8, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x84, 0xc8, 0xff, 0x10, 0x70, 0xa8, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x58, 0x50, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x18, 0x64, 0x88, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x10, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x20, 0x64, 0x80, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x30, 0x54, 0x60, 0xff, 0x08, 0x7c, 0xb8, 0xff, 0x08, 0x94, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x10, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x10, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x94, 0xe0, 0xff, 0x08, 0x7c, 0xb8, 0xff, 0x30, 0x54, 0x60, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x40, 0x40, 0x38, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x38, 0x48, 0x40, 0xff, 0x08, 0x78, 0xb8, 0xff, 0x08, 0x90, 0xd8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x10, 0x98, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x8c, 0xd8, 0xff, 0x08, 0x78, 0xb8, 0xff, 0x38, 0x48, 0x40, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x20, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x28, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x10, 0x70, 0xa8, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x10, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x10, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x88, 0xc8, 0xff, 0x10, 0x70, 0xa0, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x70, 0x6c, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x20, 0x64, 0x88, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe0, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x10, 0x9c, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x98, 0xe0, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x9c, 0xe8, 0xff, 0x08, 0x98, 0xe8, 0xff, 0x08, 0x80, 0xc0, 0xff, 0x20, 0x64, 0x88, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x60, 0x58, 0x48, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x68, 0x64, 0x50, 0xff, 0x70, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x68, 0x64, 0x50, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x50, 0xff, 0x68, 0x64, 0x50, 0xff, 0x70, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x58, 0x48, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x58, 0x50, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x58, 0x50, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x40, 0x40, 0x38, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x38, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x60, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x48, 0x40, 0x28, 0xff, 0x40, 0x40, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x40, 0x28, 0xff, 0x48, 0x40, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x40, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x24, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x70, 0x68, 0x60, 0xff, 0x60, 0x58, 0x50, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x30, 0x24, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x48, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x3c, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x40, 0x38, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x40, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x38, 0x30, 0xff, 0x28, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x20, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x48, 0x44, 0x38, 0xff, 0x38, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x38, 0x34, 0x28, 0xff, 0x28, 0x20, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x34, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x28, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x38, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x20, 0x18, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x68, 0x60, 0x58, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x50, 0x48, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x34, 0x30, 0xff, 0x28, 0x28, 0x20, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x28, 0x18, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x38, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x30, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x30, 0x28, 0x20, 0xff, 0x28, 0x28, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x28, 0x24, 0x18, 0xff, 0x30, 0x2c, 0x20, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x58, 0x58, 0x50, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x58, 0x54, 0x50, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x50, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x58, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x50, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x58, 0x54, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x58, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x58, 0x50, 0x48, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x38, 0x38, 0x30, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x44, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x50, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x58, 0x50, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x58, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x58, 0x54, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x50, 0x50, 0x48, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x40, 0x40, 0x38, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x40, 0x3c, 0x30, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x40, 0x40, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x48, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x40, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x40, 0x44, 0x38, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x38, 0xff, 0x48, 0x48, 0x38, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x58, 0x4c, 0x48, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x48, 0x44, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x4c, 0x40, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x40, 0x38, 0xff, 0x48, 0x48, 0x40, 0xff, 0x48, 0x44, 0x38, 0xff, 0x48, 0x44, 0x38, 0xff, 0x50, 0x48, 0x40, 0xff, 0x50, 0x50, 0x48, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x58, 0x50, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x58, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x60, 0x58, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x60, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x70, 0x68, 0x60, 0xff, 0x68, 0x64, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x60, 0x58, 0xff, 0x60, 0x60, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x64, 0x58, 0xff, 0x68, 0x68, 0x60, 0xff, 0x68, 0x64, 0x58, 0xff, 0x58, 0x58, 0x48, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x58, 0x50, 0x48, 0xff, 0x58, 0x58, 0x48, 0xff, 0x58, 0x58, 0x50, 0xff, 0x50, 0x50, 0x48, 0xff, 0x58, 0x50, 0x48, 0xff, 0x50, 0x50, 0x48, 0xff, 0x58, 0x58, 0x48, 0xff, 0x58, 0x58, 0x50, 0xff, 0x58, 0x50, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x50, 0x48, 0xff, 0x58, 0x50, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x58, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x58, 0x50, 0x48, 0xff, 0x58, 0x58, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x54, 0x50, 0xff, 0x58, 0x54, 0x50, 0xff, 0x58, 0x50, 0x48, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x58, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x58, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x54, 0x48, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x58, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x48, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x58, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x60, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x58, 0x48, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x60, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x58, 0x58, 0x48, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x60, 0x58, 0x50, 0xff, 0x60, 0x5c, 0x58, 0xff, 0x60, 0x5c, 0x50, 0xff, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00, 0x68, 0x78, 0xa8, 0x00 };
[ "kwiecinskji@gmail.com" ]
kwiecinskji@gmail.com
0c681f432a7fa6246777120802e2015817955b3b
30e5500d92004cb7f50ce9c6e07345f2eeb0a190
/Set05/ques6.cpp
aeac044c89827c4a8cb63a99ce4775f3c0b480e3
[]
no_license
pranavkutty/CS-CP
49dbe84017c6e06f44cbef92bd5387decb951343
9925a4dcfb69101331ec64c3f11e572fe2447086
refs/heads/master
2023-08-21T20:04:20.568699
2021-09-16T14:26:00
2021-09-16T14:26:00
379,631,574
0
0
null
null
null
null
UTF-8
C++
false
false
1,105
cpp
// merge k sorted linked lists // https://leetcode.com/problems/merge-k-sorted-lists/ ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { if(l1==NULL) return l2; if(l2==NULL) return l1; ListNode* l3; if(l1->val<=l2->val){ l3 = l1; l1 = l1->next; } else{ l3 = l2; l2 = l2->next; } ListNode *l3Head = l3; while(l1!=NULL && l2!=NULL){ if(l1->val<=l2->val){ l3->next = l1; l1 = l1->next; } else{ l3->next = l2; l2 = l2->next; } l3 = l3->next; } while(l1!=NULL){ l3->next = l1; l1 = l1->next; l3 = l3->next; } while(l2!=NULL){ l3->next = l2; l2 = l2->next; l3 = l3->next; } return l3Head; } ListNode* mergeKLists(vector<ListNode*>& lists) { while(lists.size()>1){ lists[0] = mergeTwoLists(lists[0],lists[1]); lists.erase(lists.begin()+1); } if(lists.size()==0) return NULL; return lists[0]; }
[ "pranavkutty13@gmail.com" ]
pranavkutty13@gmail.com
cdb0f7f2a4849a00859541df8c5f0f9822239266
359614ba9ed7605ca3f49d7be1a9691984ca00df
/ExperimentImg/MatCImage.cpp
1cb66df067f91d822dceaa4e5e6e54c7504ea532
[ "Apache-2.0" ]
permissive
scgakki/CV-Experimental
f6f524c2fec12ded158431d76e0932b2d77b0317
abb7ebd9fa4e20746e55ead839fd41d8f434f2d7
refs/heads/master
2021-05-19T04:17:51.161688
2020-04-12T12:33:59
2020-04-12T12:33:59
251,524,711
0
0
null
null
null
null
GB18030
C++
false
false
5,801
cpp
#include "stdafx.h" #include "pch.h" #include "MatCImage.h" // 实现cv::Mat 结构到 CImage结构的转化 void MatCImage::MatToCImage(Mat& mat, CImage& cimage) { if (0 == mat.total()) { return; } int nChannels = mat.channels(); if ((1 != nChannels) && (3 != nChannels)) { return; } int nWidth = mat.cols; int nHeight = mat.rows; //重建cimage cimage.Destroy(); //这一步是防止重复利用造成内存问题 cimage.Create(nWidth, nHeight, 8 * nChannels); //默认图像像素单通道占用1个字节 //拷贝数据 uchar* pucRow; //指向数据区的行指针 uchar* pucImage = (uchar*)cimage.GetBits(); //指向数据区的指针 int nStep = cimage.GetPitch(); //每行的字节数,注意这个返回值有正有负 // 如果是1个通道的图像(灰度图像) DIB格式才需要对调色板设置 // CImage中内置了调色板,我们要对他进行赋值: if (1 == nChannels) //对于单通道的图像需要初始化调色板 { RGBQUAD* rgbquadColorTable; int nMaxColors = 256; rgbquadColorTable = new RGBQUAD[nMaxColors]; //这里可以通过CI.GetMaxColorTableEntries()得到大小(如果你是CI.Load读入图像的话) cimage.GetColorTable(0, nMaxColors, rgbquadColorTable); //这里是取得指针 for (int nColor = 0; nColor < nMaxColors; nColor++) { //BYTE和uchar一回事,但MFC中都用它 rgbquadColorTable[nColor].rgbBlue = (uchar)nColor; // (BYTE)nColor rgbquadColorTable[nColor].rgbGreen = (uchar)nColor; rgbquadColorTable[nColor].rgbRed = (uchar)nColor; } cimage.SetColorTable(0, nMaxColors, rgbquadColorTable); delete[]rgbquadColorTable; } for (int nRow = 0; nRow < nHeight; nRow++) { pucRow = (mat.ptr<uchar>(nRow)); for (int nCol = 0; nCol < nWidth; nCol++) { if (1 == nChannels) { *(pucImage + nRow * nStep + nCol) = pucRow[nCol]; } else if (3 == nChannels) { for (int nCha = 0; nCha < 3; nCha++) { *(pucImage + nRow * nStep + nCol * 3 + nCha) = pucRow[nCol * 3 + nCha]; } } } } } void MatCImage::CImageToMat(CImage& cimage, Mat& mat) { if (true == cimage.IsNull()) { return; } int nChannels = cimage.GetBPP() / 8; if ((1 != nChannels) && (3 != nChannels)) { return; } int nWidth = cimage.GetWidth(); int nHeight = cimage.GetHeight(); //重建mat if (1 == nChannels) { mat.create(nHeight, nWidth, CV_8UC1); } else if (3 == nChannels) { mat.create(nHeight, nWidth, CV_8UC3); } //拷贝数据 uchar* pucRow; //指向数据区的行指针 uchar* pucImage = (uchar*)cimage.GetBits(); //指向数据区的指针 int nStep = cimage.GetPitch(); //每行的字节数,注意这个返回值有正有负 for (int nRow = 0; nRow < nHeight; nRow++) { pucRow = (mat.ptr<uchar>(nRow)); for (int nCol = 0; nCol < nWidth; nCol++) { if (1 == nChannels) { pucRow[nCol] = *(pucImage + nRow * nStep + nCol); } else if (3 == nChannels) { for (int nCha = 0; nCha < 3; nCha++) { pucRow[nCol * 3 + nCha] = *(pucImage + nRow * nStep + nCol * 3 + nCha); } } } } } // VS默认工程是Unicode编码(宽字节),有时需要ANSI,即单字节,实现宽到单的转化 string MatCImage::CString2StdString(const CString& cstr) { CT2A str(cstr); return string(str.m_psz); } // 显示图像到指定窗口 void MatCImage::DisplayImage(CWnd* m_pMyWnd, const CImage& image) { CDC *m_pDC = m_pMyWnd->GetDC();//获取窗口所拥有的设备上下文,用于显示图像 m_pMyWnd->UpdateWindow(); CRect rc; // m_pMyWnd->GetWindowRect(&rc); /*InvalidateRect(m_pMyWnd->m_hWnd,&rc,true);*/ int nwidth = rc.Width(); int nheight = rc.Height(); int fixed_width = min(image.GetWidth(), nwidth); int fixed_height = min(image.GetHeight(), nheight); double ratio_w = fixed_width / (double)image.GetWidth(); double ratio_h = fixed_height / (double)image.GetHeight(); double ratio = min(ratio_w, ratio_h); int show_width = (int)(image.GetWidth() * ratio); int show_height = (int)(image.GetHeight() * ratio); int offsetx = (nwidth - show_width) / 2; int offsety = (nheight - show_height) / 2; ::SetStretchBltMode(m_pDC->GetSafeHdc(), COLORONCOLOR);//设置位图的伸缩模式 image.StretchBlt(m_pDC->GetSafeHdc(), offsetx, offsety, show_width, show_height, 0, 0, image.GetWidth(), image.GetHeight(), SRCCOPY); } void MatCImage::DisplayImageEx(CWnd* pWnd, const CImage& image) { CDC *m_pDC = pWnd->GetDC();//获取窗口所拥有的设备上下文,用于显示图像 pWnd->UpdateWindow(); CRect rc; //客户区大小 //CRect rc1; pWnd->GetWindowRect(&rc); //ScreenToClient(&rc); ::SetStretchBltMode(m_pDC->GetSafeHdc(), COLORONCOLOR);//设置位图的伸缩模式 image.StretchBlt(m_pDC->GetSafeHdc(), 0, 0, rc.Width() - 1, rc.Height() - 1, 0, 0, image.GetWidth(), image.GetHeight(), SRCCOPY); } // 格式转换,AWX云图转到可以显示的opencv支持的格式 Mat MatCImage::AWX2Mat(CString filePath) { CFile fp; Mat mat; fp.Open(filePath, CFile::modeRead); ULONGLONG flength = fp.GetLength(); if (2475700 == flength) { mat.create(1300, 1900, CV_8UC1); } else if (1444803 == flength) { mat.create(1201, 1201, CV_8UC1); } LONGLONG size = mat.rows * mat.cols; LONGLONG sizebuff = fp.Seek(-size, CFile::end); uchar *pSource = new uchar[size]; fp.Read(pSource, size); fp.Close(); for (int i = 0; i < mat.rows; i++) { uchar * ps = mat.ptr<uchar>(i); for (int j = 0; j < mat.cols; j++) { ps[j] = *(pSource + i * mat.cols + j); } } delete pSource; return mat; }
[ "36230930+scgakki@users.noreply.github.com" ]
36230930+scgakki@users.noreply.github.com
1d4d2545f4e9d8750f178fea2bbe0764f3160d11
e5614c36fd324f2e214ff05aaf2bf7230443e0b5
/LightOJ/1375 - LCM Extreme.cpp
4ff19ce18357a88692e1164d5bbac9fd57696ceb
[]
no_license
njrafi/Competitive-Programming-Solutions
a9cd3ceae430e6b672c02076f80ecb94065ff6d8
86d167c355813157b0a0a8382b6f8538f29d4599
refs/heads/master
2020-07-30T22:18:46.473308
2019-10-06T18:12:36
2019-10-06T18:12:36
210,377,979
0
0
null
null
null
null
UTF-8
C++
false
false
3,387
cpp
#include <bits/stdc++.h> #ifndef ONLINE_JUDGE #define gc getchar #define pc putchar #else #define gc getchar_unlocked #define pc putchar_unlocked #endif using namespace std; #define vi vector<int> #define si set<int> #define vs vector<string> #define pii pair<int, int> #define vpi vector<pii> #define pri priority_queue<int> #define rev_pri priority_queue<int, vector<int>, greater<int>> #define mpi map<int, int> #define i64 unsigned long long int #define endl '\n' #define pi acos(-1) #define all(v) v.begin(), v.end() #define pb push_back #define mp make_pair #define mod 1000000007 #define inf INT_MAX / 2 #define infll LLONG_MAX / 3 #define For(i, n) for (int i = 0; i < n; i++) #define Fre(i, a, b) for (int i = a; i < b; i++) #define sf(n) scanf("%d", &n) #define sff(a, b) scanf("%d %d", &a, &b) #define sfff(a, b, c) scanf("%d %d %d", &a, &b, &c) #define pfn(n) printf("%d\n", n) #define pfs(n) printf("%d ", n) #define eps 1e-8 #define ff first #define ss second #define mem(a, b) memset(a, b, sizeof(a)) #define READ freopen("in.txt", "r", stdin) #define WRITE freopen("out.txt", "w", stdout) #define sz size() #define dbg(i) printf("yo %d\n", i) #define foreach(i, c) for (__typeof((c).begin()) i = (c).begin(); i != (c).end(); i++) #define sqr(a) (a) * (a) #define clr clear() #define CASE(a) printf("Case %d: ", a) //int dx[] = {0,1,0,-1,1,1,-1,-1}; //int dy[] = {1,0,-1,0,1,-1,-1,1}; //i64 gcd(i64 a,i64 b){if(!b)return a;return gcd(b,a%b);} inline void fastRead(int *a) { register char c = 0; while (c < 33) c = gc(); *a = 0; while (c > 33) { *a = *a * 10 + c - '0'; c = gc(); } } inline void fastWrite(i64 a) { char snum[20]; int i = 0; do { snum[i++] = a % 10 + 48; a = a / 10; } while (a != 0); i = i - 1; while (i >= 0) pc(snum[i--]); pc('\n'); } //i64 bigmod(i64 num,i64 n){if(n==0)return 1;i64 x=bigmod(num,n/2);x=x*x%mod;if(n%2==1)x=x*num%mod;return x;} //i64 modinverse(i64 num){return bigmod(num,mod-2)%mod;} //i64 po(i64 a,i64 b){i64 ans=1;while(b--)ans *= a;return ans;} //i64 ncr(i64 n,i64 r){if(n==r)return 1;if(r==1)return n;if(dp[n][r]!=-1)return dp[n][r];return dp[n][r]=ncr(n-1,r)+ncr(n-1,r-1);} // bit manipulations //bool checkbit(int mask,int bit){return mask & (1<<bit);} //int setbit(int mask,int bit){ return mask (1<<bit) ; } //int clearbit(int mask,int bit){return mask & ~(1<<bit);} //int togglebit(int mask,int bit){return mask ^ (1<<bit);} #define mxn 3000006 i64 res[mxn]; i64 phi[mxn]; //i64 cum[mxn]; bool ispr[mxn]; void sieve() { int gg = 0; for (int i = 1; i < mxn; i++) for (int j = i; j < mxn; j += i) res[j] += phi[i] * i; res[0] = 0; Fre(i, 1, mxn) { res[i]++; res[i] /= 2; res[i] *= (i64)i; // cout << i << " " << res[i] << " "; res[i] += res[i - 1] - i; // cout << res[i] << endl; } } void sievephi() { For(i, mxn) phi[i] = (i64)i; Fre(i, 2, mxn) if (!ispr[i]) for (int j = i; j < mxn; j += i) { ispr[j] = 1; phi[j] = (phi[j] / i) * (i - 1); } } int main() { sievephi(); sieve(); // assert(1==2); int t, n, cs = 1; sf(t); while (t--) { fastRead(&n); CASE(cs++); fastWrite(res[n]); } return 0; }
[ "njrafibd@gmail.com" ]
njrafibd@gmail.com
5faea5996536bdbccd4bdb559f53c2fd33934569
e6d52e97bc3f0881a71c48674259b0641727c2ce
/src/jsi/SBjsiLogger.hpp
e4505f46f8337511d268faf33e3725bcadc2837b
[]
no_license
bldcm/OpenVXI
3fe841e0dcfc434aa2624ca5d76a23c430dea6a4
86287f27a4509c0c4702102926a412126d5e5bdd
refs/heads/master
2020-06-10T04:33:56.728050
2019-06-24T21:48:40
2019-06-24T21:48:40
193,583,399
0
0
null
null
null
null
UTF-8
C++
false
false
4,141
hpp
/***************************************************************************** ***************************************************************************** * * $Id: SBjsiLogger.hpp,v 1.1.2.2 2003/10/06 19:19:17 mpanacci Exp $ * * SBjsiLogger - logging class for SBjsi * * This provides logging definitions for SBjsi use of VXIlog, along * with some convenience macros. * ***************************************************************************** ****************************************************************************/ /****************License************************************************ * * Copyright 2000-2003. ScanSoft, Inc. * * Use of this software is subject to notices and obligations set forth * in the SpeechWorks Public License - Software Version 1.2 which is * included with this software. * * ScanSoft is a registered trademark of ScanSoft, Inc., and OpenSpeech, * SpeechWorks and the SpeechWorks logo are registered trademarks or * trademarks of SpeechWorks International, Inc. in the United States * and other countries. * ***********************************************************************/ /* -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8 */ #ifndef _SBJSI_LOGGER_H__ #define _SBJSI_LOGGER_H__ #include "VXIheaderPrefix.h" /* For SYMBOL_EXPORT_CPP_DECL */ #include "VXIlog.h" /* Logging engine */ #include "SBjsiString.hpp" /* For SBinetString */ #include <stdarg.h> /* For variable argument list */ /* Base class for logging */ class SBjsiLogger { protected: // Constructor and destructor SBjsiLogger (const VXIchar *moduleName, VXIlogInterface *log, VXIunsigned diagTagBase) : _moduleName(moduleName), _log(log), _diagTagBase(diagTagBase) { } virtual ~SBjsiLogger( ) { } // Set the log interface when unavailable at construct time void SetLog (VXIlogInterface *log, VXIunsigned diagTagBase) { _log = log; _diagTagBase = diagTagBase; } public: // Accessor VXIlogInterface *GetLog( ) { return _log; } VXIunsigned GetDiagBase( ) const { return _diagTagBase; } VXIbool DiagIsEnabled (VXIunsigned tag) const; // Logging methods VXIlogResult Error (VXIunsigned errorID, const VXIchar *format, ...) const; VXIlogResult Error (VXIlogInterface *log, VXIunsigned errorID, const VXIchar *format, ...) const; static VXIlogResult Error (VXIlogInterface *log, const VXIchar *moduleName, VXIunsigned errorID, const VXIchar *format, ...); VXIlogResult Diag (VXIunsigned tag, const VXIchar *subtag, const VXIchar *format, ...) const; VXIlogResult Diag (VXIlogInterface *log, VXIunsigned tag, const VXIchar *subtag, const VXIchar *format, ...) const; static VXIlogResult Diag (VXIlogInterface *log, VXIunsigned diagTagBase, VXIunsigned tag, const VXIchar *subtag, const VXIchar *format, ...); VXIlogResult VDiag (VXIunsigned tag, const VXIchar *subtag, const VXIchar *format, va_list args) const; private: SBjsiString _moduleName; VXIlogInterface *_log; VXIunsigned _diagTagBase; }; /* Logging object for conveniently logging function entrance/exit */ class SBjsiLogFunc { public: /* Constructor and destructor */ SBjsiLogFunc (VXIlogInterface *log, VXIunsigned tag, const VXIchar *func, const int *rcvar, const VXIchar *format = NULL, ...) : _log(log), _tag(tag), _func(func), _rcvar(rcvar) { if ( _log ) { va_list ap; va_start (ap, format); _log->VDiagnostic (_log, _tag, _func, format, ap); va_end (ap); } } ~SBjsiLogFunc( ) { if ( _log ) { if ( _rcvar ) _log->Diagnostic (_log, _tag, _func, L"exiting, returned %d", *_rcvar); else _log->Diagnostic (_log, _tag, _func, L"exiting"); } } private: VXIlogInterface *_log; VXIunsigned _tag; const VXIchar *_func; const int *_rcvar; }; #include "VXIheaderSuffix.h" #endif /* define _SBJSI_LOGGER_H__ */
[ "cm.build@kofax.com" ]
cm.build@kofax.com
f50a2a62da7e2735dcba58c7e08552b1725f85c1
6f1190c83e14502f10c853605510898c34fda7f7
/distributed_hardcoded_streaming_engine/main_simple.cpp
dc58990954766dfc1e258339aa719ab6cffb65e4
[]
no_license
hpides/mp-ddsp-ws20
9cb7b3b5f746bfdfca7f510dc84b580761aed848
1fb1e80e1581a46230e31d7f3dfe092620ef7254
refs/heads/master
2023-04-06T01:17:30.480484
2021-05-04T09:58:25
2021-05-04T09:58:25
363,420,676
2
0
null
null
null
null
UTF-8
C++
false
false
5,575
cpp
#include <cmath> #include <cstdint> #include <iostream> #include <mpi.h> #include <mutex> #include <thread> inline uint64_t getCurrentUnixTimestampInMilliseconds() { const auto t = std::chrono::system_clock::now(); return std::chrono::duration_cast<std::chrono::milliseconds>(t.time_since_epoch()).count(); } struct MPIConfig { int MPIRank, MPISize, providedThreadSupportLevel; MPI_Datatype MPIAdTupleType, MPICheckoutTupleType; }; struct AdTuple { int adId; int userId; double cost; uint64_t eventTime; uint64_t processingTime; uint64_t numTuple; }; struct CheckoutTuple { uint64_t purchaseId; int userId; int adId; double value; uint64_t eventTime; uint64_t processingTime; }; enum MPI_Tag { AD_TUPLE, CHECKOUT_TUPLE }; void runAdThreadTCPReceiver(MPIConfig mpiConfig) { uint64_t sendCount = 0; MPI_Request forwardingRequest; while (true) { AdTuple adTuple{ .adId = rand(), .userId = 1, .cost = 0.5, .eventTime = getCurrentUnixTimestampInMilliseconds(), .processingTime = getCurrentUnixTimestampInMilliseconds(), .numTuple = 1}; if (int designatedRank = adTuple.adId % mpiConfig.MPISize; designatedRank != mpiConfig.MPIRank) { if (forwardingRequest != nullptr) { MPI_Wait(&forwardingRequest, MPI_STATUS_IGNORE); } MPI_Isend(&adTuple, 1, mpiConfig.MPIAdTupleType, designatedRank, MPI_Tag::AD_TUPLE, MPI_COMM_WORLD, &forwardingRequest); } if (++sendCount % 100000 == 0) { std::cout << "Ad processed " << sendCount << " tuple." << std::endl; } } } void runCheckoutThreadTCPReceiver(MPIConfig mpiConfig) { uint64_t sendCount = 0; MPI_Request forwardingRequest; while (true) { CheckoutTuple checkoutTuple{ .purchaseId = 1, .userId = 1, .adId = rand(), .value = 0.5, .eventTime = getCurrentUnixTimestampInMilliseconds(), .processingTime = getCurrentUnixTimestampInMilliseconds()}; if (int designatedRank = checkoutTuple.adId % mpiConfig.MPISize; designatedRank != mpiConfig.MPIRank) { if (forwardingRequest != nullptr) { MPI_Wait(&forwardingRequest, MPI_STATUS_IGNORE); } MPI_Isend( &checkoutTuple, 1, mpiConfig.MPICheckoutTupleType, designatedRank, MPI_Tag::CHECKOUT_TUPLE, MPI_COMM_WORLD, &forwardingRequest); } if (++sendCount % 100000 == 0) { std::cout << "Checkout processed " << sendCount << " tuple." << std::endl; } } } void runAdThreadMPIReceiver(MPIConfig mpiConfig) { AdTuple adTuple; std::cout << "ad Receiver says: " << sizeof(adTuple) << std::endl; while (true) MPI_Recv(&adTuple, 1, mpiConfig.MPIAdTupleType, MPI_ANY_SOURCE, MPI_Tag::AD_TUPLE, MPI_COMM_WORLD, MPI_STATUS_IGNORE); } void runCheckoutThreadMPIReceiver(MPIConfig mpiConfig) { CheckoutTuple checkoutTuple; std::cout << "checkout Receiver says: " << sizeof(checkoutTuple) << std::endl; while (true) MPI_Recv( &checkoutTuple, 1, mpiConfig.MPICheckoutTupleType, MPI_ANY_SOURCE, MPI_Tag::CHECKOUT_TUPLE, MPI_COMM_WORLD, MPI_STATUS_IGNORE); } MPI_Datatype createMPICheckoutTupleType() { const int nitems = 6; int blocklengths[] = {8, 4, 4, 8, 8, 8}; MPI_Datatype types[] = {MPI_UINT64_T, MPI_INT, MPI_INT, MPI_DOUBLE, MPI_UINT64_T, MPI_UINT64_T}; MPI_Datatype MPICheckoutTupleType; MPI_Aint offsets[] = { offsetof(CheckoutTuple, purchaseId), offsetof(CheckoutTuple, userId), offsetof(CheckoutTuple, adId), offsetof(CheckoutTuple, value), offsetof(CheckoutTuple, eventTime), offsetof(CheckoutTuple, processingTime)}; MPI_Type_create_struct(nitems, blocklengths, offsets, types, &MPICheckoutTupleType); MPI_Type_commit(&MPICheckoutTupleType); return MPICheckoutTupleType; } MPI_Datatype createMPIAdTupleType() { const int nitems = 6; int blocklengths[] = {4, 4, 8, 8, 8, 8}; MPI_Datatype types[] = {MPI_INT, MPI_INT, MPI_DOUBLE, MPI_UINT64_T, MPI_UINT64_T, MPI_UINT64_T}; MPI_Datatype MPIAdTupleType; MPI_Aint offsets[] = { offsetof(AdTuple, adId), offsetof(AdTuple, userId), offsetof(AdTuple, cost), offsetof(AdTuple, eventTime), offsetof(AdTuple, processingTime), offsetof(AdTuple, numTuple)}; MPI_Type_create_struct(nitems, blocklengths, offsets, types, &MPIAdTupleType); MPI_Type_commit(&MPIAdTupleType); return MPIAdTupleType; } int main(int argc, char** argv) { MPIConfig mpiConfig{}; MPI_Init_thread(&argc, &argv, MPI_THREAD_MULTIPLE, &mpiConfig.providedThreadSupportLevel); MPI_Comm_rank(MPI_COMM_WORLD, &mpiConfig.MPIRank); MPI_Comm_size(MPI_COMM_WORLD, &mpiConfig.MPISize); mpiConfig.MPIAdTupleType = createMPIAdTupleType(); mpiConfig.MPICheckoutTupleType = createMPICheckoutTupleType(); std::thread adThreadTCPReceiver([&] { runAdThreadTCPReceiver(mpiConfig); }); std::thread adThreadMPIReceiver([&] { runAdThreadMPIReceiver(mpiConfig); }); std::thread checkoutThreadTCPReceiver([&] { runCheckoutThreadTCPReceiver(mpiConfig); }); std::thread checkoutThreadMPIReceiver([&] { runCheckoutThreadMPIReceiver(mpiConfig); }); adThreadTCPReceiver.join(); }
[ "ivan.ilic@student.hpi.de" ]
ivan.ilic@student.hpi.de
a3a0f0da08a6abc7efdc41afe5c62d67a5c60a3a
ee59f750afa7b7b3f2724c07c8d50cd2e3985a89
/Assignment3/Source/vr02_lag_cpp/Cube.h
193170b48e5608dd9a3707f84d3b734368abe411
[]
no_license
bigfabbro/VirtualReality
cd81f2679ad34d72df8517998b57eff872eafd15
28adbd0401972250990021fb732d50526312c744
refs/heads/master
2020-08-29T12:54:10.032564
2019-12-12T14:20:25
2019-12-12T14:20:25
218,037,232
0
0
null
null
null
null
UTF-8
C++
false
false
816
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "Cube.generated.h" UCLASS() class VR02_LAG_CPP_API ACube : public AActor { GENERATED_BODY() public: // Sets default values for this actor's properties ACube(); UPROPERTY(EditAnywhere, BlueprintReadWrite, category= "Movement") float rangeMin; UPROPERTY(EditAnywhere, BlueprintReadWrite, category = "Movement") float rangeMax; UPROPERTY(EditAnywhere, BlueprintReadWrite, category = "Movement") float speed; bool direction; UStaticMeshComponent* StaticMesh; protected: // Called when the game starts or when spawned virtual void BeginPlay() override; public: // Called every frame virtual void Tick(float DeltaTime) override; };
[ "bigfabbro93@gmail.com" ]
bigfabbro93@gmail.com
f3cda3fb6111191859c9d040caf2ab55df0afe11
8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a
/3rdParty/boost/1.78.0/boost/compute/utility/dim.hpp
210c09cf6e390ce1a38c815ffa0ebb2c306dd34f
[ "BSL-1.0", "Apache-2.0", "BSD-3-Clause", "ICU", "Zlib", "GPL-1.0-or-later", "OpenSSL", "ISC", "LicenseRef-scancode-gutenberg-2020", "MIT", "GPL-2.0-only", "CC0-1.0", "LicenseRef-scancode-autoconf-simple-exception", "LicenseRef-scancode-pcre", "Bison-exception-2.2", "LicenseRef-scancode...
permissive
arangodb/arangodb
0980625e76c56a2449d90dcb8d8f2c485e28a83b
43c40535cee37fc7349a21793dc33b1833735af5
refs/heads/devel
2023-08-31T09:34:47.451950
2023-08-31T07:25:02
2023-08-31T07:25:02
2,649,214
13,385
982
Apache-2.0
2023-09-14T17:02:16
2011-10-26T06:42:00
C++
UTF-8
C++
false
false
2,186
hpp
//---------------------------------------------------------------------------// // Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com> // // Distributed under the Boost Software License, Version 1.0 // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // // See http://boostorg.github.com/compute for more information. //---------------------------------------------------------------------------// #ifndef BOOST_COMPUTE_UTILITY_DIM_HPP #define BOOST_COMPUTE_UTILITY_DIM_HPP #include <boost/compute/config.hpp> #include <boost/compute/utility/extents.hpp> namespace boost { namespace compute { #ifndef BOOST_COMPUTE_NO_VARIADIC_TEMPLATES /// The variadic \c dim() function provides a concise syntax for creating /// \ref extents objects. /// /// For example, /// \code /// extents<2> region = dim(640, 480); // region == (640, 480) /// \endcode /// /// \see \ref extents "extents<N>" template<class... Args> inline extents<sizeof...(Args)> dim(Args... args) { return extents<sizeof...(Args)>({ static_cast<size_t>(args)... }); } #if BOOST_WORKAROUND(BOOST_MSVC, <= 1800) // for some inexplicable reason passing one parameter to 'dim' variadic template // generates compile error on msvc 2013 update 4 template<class T> inline extents<1> dim(T arg) { return extents<1>(static_cast<size_t>(arg)); } #endif // BOOST_WORKAROUND(BOOST_MSVC, <= 1800) #else // dim() function definitions for non-c++11 compilers #define BOOST_COMPUTE_DETAIL_ASSIGN_DIM(z, n, var) \ var[n] = BOOST_PP_CAT(e, n); #define BOOST_COMPUTE_DETAIL_DEFINE_DIM(z, n, var) \ inline extents<n> dim(BOOST_PP_ENUM_PARAMS(n, size_t e)) \ { \ extents<n> exts; \ BOOST_PP_REPEAT(n, BOOST_COMPUTE_DETAIL_ASSIGN_DIM, exts) \ return exts; \ } BOOST_PP_REPEAT(BOOST_COMPUTE_MAX_ARITY, BOOST_COMPUTE_DETAIL_DEFINE_DIM, ~) #undef BOOST_COMPUTE_DETAIL_ASSIGN_DIM #undef BOOST_COMPUTE_DETAIL_DEFINE_DIM #endif // BOOST_COMPUTE_NO_VARIADIC_TEMPLATES /// \internal_ template<size_t N> inline extents<N> dim() { return extents<N>(); } } // end compute namespace } // end boost namespace #endif // BOOST_COMPUTE_UTILITY_DIM_HPP
[ "frank@arangodb.com" ]
frank@arangodb.com
a8a09817f27fd610ff10cf1f5a6d711ce7f335b8
c653562db86103993add80d2206ffb7c525e89b8
/1005.cpp
597739ff643c307be42f032ded0115512301a50e
[]
no_license
lsqypro/PTA-Basic
9d1157a2a6977472ade7602de8b0def3cca6acbf
36fe52030fdf89661b6294a46e84fddae2f214a4
refs/heads/master
2022-11-28T01:04:54.186472
2020-08-13T00:11:35
2020-08-13T00:11:35
285,648,276
1
0
null
null
null
null
UTF-8
C++
false
false
1,322
cpp
// // Created by lsqy on 2020/8/6. // /* 1005 继续(3n+1)猜想 (25分) * 耗时:24:25.10 * 计算每一次输入数值所覆盖的数,n = (3 * n + 1) 可能导致n变大 */ #include <iostream> #include <cstdlib> using namespace std; int n; int input[100] = {0}; int key[101] = {0}; // n = (3 * n + 1) 可能导致n变大 void calc(int value) { bool first = true; while (value != 1) { // 记录被value“覆盖”的数 if (!first && value < 101 ) { key[value] = 1; } first = false; if (value % 2 == 0) { value /= 2; } else { value = (3 * value + 1) / 2; } } } int compare(const void *a, const void *b) { return *(int *)a < *(int *)b; } int main(void) { cin >> n; for (int i = 0; i < n; ++i) { cin >> input[i]; } // 从大到小排序 qsort(input, n, sizeof(int), compare); // 计算每一个输入的数所覆盖的值 for (int i = 0; i < n; ++i) { calc(input[i]); } // 从大到小输出 bool first = true; for (int j = 0; j < n; ++j) { if (key[input[j]] == 0) { if (!first) { cout << " "; } first = false; cout << input[j]; } } return 0; }
[ "lsqypro@qq.com" ]
lsqypro@qq.com
2352a1a15b1dffaba3e75bea13e0374deac52c3e
5be76ee3bac0211e551b6809912e66c0138831f0
/ffmpegdemo/Chapter2.cpp
a409a64d2db0b75f8f7b66df8dc885e10f25efc4
[ "MIT" ]
permissive
DuckDeck/ffmpegdemo
f831812f838a11c1fc4d9caab5cb87860ffd5349
b0630b9824a8593e9f4a3bb214539bac1a792fa1
refs/heads/master
2020-03-26T18:05:39.948746
2019-12-21T00:11:18
2019-12-21T00:11:18
145,195,868
1
0
null
null
null
null
GB18030
C++
false
false
2,887
cpp
#include <opencv2/opencv.hpp> #include "stdafx.h" #include <opencv2/highgui.hpp> #include <iostream> using namespace cv; using namespace std; //视频 void playVideo() { namedWindow("Video", WINDOW_AUTOSIZE); VideoCapture cap; cap.open("asset/test.mp4"); Mat frame; for (;;) { cap >> frame; if (frame.empty()) break; imshow("Video", frame); if (waitKey(33) >= 0)break; } } int g_slider_position = 0; int g_run = 1, g_dontset = 0; VideoCapture g_cap; void onTrackbarSilde(int pos, void *) { g_cap.set(CAP_PROP_POS_FRAMES, pos); if (!g_dontset) { g_run = 1; } g_dontset = 0; } void playVideoWithDrag() { namedWindow("Video", WINDOW_AUTOSIZE); g_cap.open("asset/face.mp4"); int frames = g_cap.get(CAP_PROP_FRAME_COUNT); int tmpw = g_cap.get(CAP_PROP_FRAME_WIDTH); int tmph = g_cap.get(CAP_PROP_FRAME_HEIGHT); cout << "Video has " << frames << "frames of dimensions (" << tmpw << "," << tmph << ")." << endl; createTrackbar("Position", "Video", &g_slider_position, frames, onTrackbarSilde); Mat frame; for (;;) { if (g_run != 0) { g_cap >> frame; if (frame.empty()) { break; } int current_pos = g_cap.get(CAP_PROP_POS_FRAMES); //获取到当前frame g_dontset = 1; setTrackbarPos("Position", "Video", current_pos); imshow("Video", frame); g_run -= 1; } char c = waitKey(10); if (c == 's') { g_run = 1; cout << "Single step ,run = " << g_run << endl; } if (c == 'r') { g_run = -1; cout << "Run mode ,run = " << g_run << endl; } if (c == 27) { break; } } } void openCamera() { namedWindow("Video", WINDOW_AUTOSIZE); VideoCapture cap; cap.open(-1); //死活打不开摄像头 ,文件也打不开? 不是死活打不开,是没有用代码展示出来 //好像还是不行 if (!cap.isOpened()) { std::cerr << "Could not open capture" << endl; } Mat frame; for (;;) { cap >> frame; if (frame.empty()) break; imshow("Video", frame); if (waitKey(33) >= 0)break; } } void writeAVIFile(){ namedWindow("Write AVI", WINDOW_AUTOSIZE); namedWindow("Log Polar", WINDOW_AUTOSIZE); g_cap.open("asset/test.mp4"); double fps = g_cap.get(CAP_PROP_FPS); Size size((int)g_cap.get(CAP_PROP_FRAME_WIDTH), (int)g_cap.get(CAP_PROP_FRAME_HEIGHT)); VideoWriter vWriter; vWriter.open("assert/test1.mp4", CAP_OPENCV_MJPEG, fps, size,true); //报错写不出来,可能是格式不支持 Mat logpolar_frame, bgr_frame; for (;;) { g_cap >> bgr_frame; if (bgr_frame.empty())break; imshow("Write AVI", bgr_frame); logPolar(bgr_frame, logpolar_frame, Point2f(bgr_frame.cols / 2, bgr_frame.rows / 2), 100, WARP_FILL_OUTLIERS); imshow("Log Polar", logpolar_frame); vWriter << logpolar_frame; if (waitKey(33) >= 0)break; } g_cap.release(); } int learnOpenCV1() { //playVideo(); //playVideoWithDrag(); //openCamera(); writeAVIFile(); waitKey(0); return 0; }
[ "3421902@qq.com" ]
3421902@qq.com
ea14680135c7479d480b2ffd60a87513f453a985
db938fd7dc8178601adb5b73191ce128d8f4d25d
/helpers/md5/src/md5.hpp
a9bdc7b3523972252d4d15ee983d08eacf973ecb
[ "MIT" ]
permissive
joeferg425/RECTFDEMOS
8ecfdc39cbab841210e880927aa09ddeee99e7f1
0d8ff9f6e17d7d201719dc129a866ee2d0af8915
refs/heads/main
2023-08-12T10:36:47.614332
2021-10-13T01:12:20
2021-10-13T01:12:20
372,689,952
0
0
null
null
null
null
UTF-8
C++
false
false
5,542
hpp
// originally from https://gist.github.com/creationix/4710780 #ifndef __MD5__ #define __MD5__ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> // #define ROUNDS 1 // leftrotate function definition #define LEFTROTATE(x, c) (((x) << (c)) | ((x) >> (32 - (c)))) // These vars will contain the hash void md5(uint8_t *initial_msg, size_t initial_len, uint8_t *hash) { // Message (to prepare) uint8_t *msg = NULL; // Note: All variables are unsigned 32 bit and wrap modulo 2^32 when calculating // r specifies the per-round shift amounts uint32_t r[] = { 7, 12, 17, 22, 7, 12, 17, 22, 7, 12, 17, 22, 7, 12, 17, 22, 5, 9, 14, 20, 5, 9, 14, 20, 5, 9, 14, 20, 5, 9, 14, 20, 4, 11, 16, 23, 4, 11, 16, 23, 4, 11, 16, 23, 4, 11, 16, 23, 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21 }; // Use binary integer part of the sines of integers (in radians) as constants// Initialize variables: uint32_t k[] = { 0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501, 0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821, 0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, 0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8, 0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a, 0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70, 0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x04881d05, 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665, 0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1, 0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391 }; *(uint32_t*)&hash[ 0] = 0x67452301; *(uint32_t*)&hash[ 4] = 0xefcdab89; *(uint32_t*)&hash[ 8] = 0x98badcfe; *(uint32_t*)&hash[12] = 0x10325476; // Pre-processing: adding a single 1 bit //append "1" bit to message /* Notice: the input bytes are considered as bits strings, where the first bit is the most significant bit of the byte.[37] */ // Pre-processing: padding with zeros //append "0" bit until message length in bit ≡ 448 (mod 512) //append length mod (2 pow 64) to message int new_len = (((((initial_len + 8) / 64) + 1) * 64) - 8); // also appends "0" bits // (we alloc also 64 extra bytes...) msg = (uint8_t*)calloc((new_len + 64), 1); memcpy(msg, initial_msg, initial_len); // write the "1" bit msg[initial_len] = 128; // note, we append the len uint32_t bits_len = (8 * initial_len); // in bits at the end of the buffer memcpy(msg + new_len, &bits_len, 4); // Process the message in successive 512-bit chunks: //for each 512-bit chunk of message: int offset; for(offset = 0; offset < new_len; offset += (512 / 8)) { // break chunk into sixteen 32-bit words w[j], 0 ≤ j ≤ 15 uint32_t *w = (uint32_t *) (msg + offset); #ifdef DEBUG printf("offset: %d %x\n", offset, offset); int j; for(j =0; j < 64; j++) printf("%x ", ((uint8_t *) w)[j]); puts(""); #endif // Initialize hash value for this chunk: uint32_t a = *(uint32_t*)&hash[ 0]; uint32_t b = *(uint32_t*)&hash[ 4]; uint32_t c = *(uint32_t*)&hash[ 8]; uint32_t d = *(uint32_t*)&hash[12]; // Main loop: uint32_t i; for(i = 0; i < 64; i++) { #ifdef ROUNDS uint8_t *p; printf("%i: ", i); p=(uint8_t *)&a; printf("%2.2X%2.2X%2.2X%2.2X ", p[0], p[1], p[2], p[3], a); p=(uint8_t *)&b; printf("%2.2X%2.2X%2.2X%2.2X ", p[0], p[1], p[2], p[3], b); p=(uint8_t *)&c; printf("%2.2X%2.2X%2.2X%2.2X ", p[0], p[1], p[2], p[3], c); p=(uint8_t *)&d; printf("%2.2X%2.2X%2.2X%2.2X", p[0], p[1], p[2], p[3], d); puts(""); #endif uint32_t f, g; if (i < 16) { f = (b & c) | ((~b) & d); g = i; } else if (i < 32) { f = (d & b) | ((~d) & c); g = (5*i + 1) % 16; } else if (i < 48) { f = b ^ c ^ d; g = (3*i + 5) % 16; } else { f = c ^ (b | (~d)); g = (7*i) % 16; } #ifdef ROUNDS printf("f=%x g=%d w[g]=%x\n", f, g, w[g]); #endif uint32_t temp = d; d = c; c = b; #ifdef DEBUG printf("rotateLeft(%x + %x + %x + %x, %d)\n", a, f, k[i], w[g], r[i]); #endif b = b + LEFTROTATE((a + f + k[i] + w[g]), r[i]); a = temp; } // Add this chunk's hash to result so far: *(uint32_t*)&hash[ 0] += a; *(uint32_t*)&hash[ 4] += b; *(uint32_t*)&hash[ 8] += c; *(uint32_t*)&hash[12] += d; } // cleanup free(msg); } #endif
[ "57824882+joeferg425@users.noreply.github.com" ]
57824882+joeferg425@users.noreply.github.com
bec1fb1042fee051591c0bced71d46fdec45c34f
7738dc7b139b6841c885c7bd1c199e523507ad11
/src/ChiJPsiGFinder.cpp
d16020f30b4a3c2064669427782c7d30a5e1bd9d
[]
no_license
magania/b_finder
8343b44888f70736432dafefa1d8bbaca8a8dc95
9f6155530a37009da417de79a2b2ce11d6435a14
refs/heads/master
2020-05-19T04:42:40.734515
2012-08-24T00:24:39
2012-08-24T00:24:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,831
cpp
/* * ChiJPsiGFinder.cpp * * Created on: Aug 31, 2009 * Author: magania */ #include "ChiJPsiGFinder.h" ChiJPsiGFinder::ChiJPsiGFinder(TTree &tree, JPsiFinder& jpsi_finder, GammaFinder& gamma_finder) : chi_saver("chi",tree, false, false), vrt_saver("chi_vrt",tree) { _jpsi_finder = &jpsi_finder; _gamma_finder = &gamma_finder; index = -1; tree.Branch("chi_index", &index, "chi_index/D"); tree.Branch("chi_mass", &masa, "chi_mass/D"); } ChiJPsiGFinder::~ChiJPsiGFinder() { } void ChiJPsiGFinder::clean(){ chi.clear(); vtx.clear(); jpsi.clear(); gamma.clear(); mass.clear(); _boxp.clear(); _boxv.clear(); } int ChiJPsiGFinder::find(){ clean(); _jpsi_finder->begin(); _gamma_finder->begin(); while (_jpsi_finder->next()) while (_gamma_finder->next()){ Ptl *jpsi_ptl = &_jpsi_finder->getJPsi(); Ptl *mu_plus_ptl = &_jpsi_finder->getMuPlus(); Ptl *mu_minus_ptl = &_jpsi_finder->getMuMinus(); Ptl *gamma_ptl = &_gamma_finder->getGamma(); Ptl *e_plus_ptl = &_gamma_finder->getEPlus(); Ptl *e_minus_ptl = &_gamma_finder->getEMinus(); if(mu_plus_ptl == e_plus_ptl || mu_minus_ptl == e_minus_ptl) continue; /* -- chi vertex -- */ TrkLst track_list; track_list.push_back(mu_plus_ptl); track_list.push_back(mu_minus_ptl); track_list.push_back(gamma_ptl); Vrt *chi_vrt = _boxv.newVrt(); if (!chi_vrt->fill(_jpsi_finder->getJPsi().decayVertex()->x(), &track_list)) continue; if (!chi_vrt->filter()) continue; if (chi_vrt->size() != 3) continue; /* -- Construct new particle (Chi) from these 4 tracks -- */ Ptl* chi_ptl = _boxp.newPtl(); if (!chi_ptl->combine(chi_vrt, 0)) continue; /* -- mass of Chi and uncertainty --*/ vector<PType> types(3); types[0] = AA::MU_PLUS; types[1] = AA::MU_MINUS; types[2] = AA::GAMMA_STAR; double mchi, vmchi, emchi; chi_ptl->mass(types, mchi, vmchi); emchi = sqrt(fabs(vmchi)); /* -- cut on B mass -- */ if ( mchi < MASS_CHI_MIN || MASS_CHI_MAX < mchi) continue; chi.push_back(chi_ptl); vtx.push_back(chi_vrt); mass.push_back(mchi); jpsi.push_back(_jpsi_finder->getIndex()); gamma.push_back(_gamma_finder->getIndex()); } return chi.size(); } void ChiJPsiGFinder::begin(){ index = -1; } bool ChiJPsiGFinder::next(){ if (++index < chi.size()) return true; else index=-1; return false; } int ChiJPsiGFinder::getIndex(){ return index; } void ChiJPsiGFinder::setIndex(int i){ if ( i > chi.size() || i < 0){ std::cout << "ChiJPsiGFinder: Error seting index " << i << " max: " << chi.size() << std::endl; exit(EXIT_FAILURE); } else { index = i; } } AA::Ptl& ChiJPsiGFinder::getJPsi(){ _jpsi_finder->setIndex(jpsi[index]); return _jpsi_finder->getJPsi(); } AA::Ptl& ChiJPsiGFinder::getMuPlus(){ _jpsi_finder->setIndex(jpsi[index]); return _jpsi_finder->getMuPlus(); } AA::Ptl& ChiJPsiGFinder::getMuMinus(){ _jpsi_finder->setIndex(jpsi[index]); return _jpsi_finder->getMuMinus(); } AA::Ptl& ChiJPsiGFinder::getGamma(){ _gamma_finder->setIndex(gamma[index]); return _gamma_finder->getGamma(); } AA::Ptl& ChiJPsiGFinder::getEPlus(){ _gamma_finder->setIndex(gamma[index]); return _gamma_finder->getEPlus(); } AA::Ptl& ChiJPsiGFinder::getEMinus(){ _gamma_finder->setIndex(gamma[index]); return _gamma_finder->getEMinus(); } AA::Ptl& ChiJPsiGFinder::getChi(){ return *chi[index]; } AA::Vrt& ChiJPsiGFinder::getVrt(){ return *vtx[index]; } double ChiJPsiGFinder::getMass(){ return mass[index]; } void ChiJPsiGFinder::fill(){ _jpsi_finder->setIndex(jpsi[index]); _gamma_finder->setIndex(gamma[index]); _jpsi_finder->fill(); _gamma_finder->fill(); chi_saver.fill(getChi()); vrt_saver.fill(getVrt()); masa = getMass(); }
[ "magania@gmail.com" ]
magania@gmail.com
4e4e6b0787cba4799b7175c6879bd93e3811100b
f2ad82525768c2a45edcbd59ce22445b36b3403b
/xtt/lib/xtt/gtk/xtt_xcolwind_gtk.h
9fdd3fe72cf8660ddc8fcc7229f79021d45e91c7
[]
no_license
jordibrus/proview
55fdf2623ff7b46f0ccfce1bcdce4543457a9d9a
29f5e0cc6dab430593c1d6bf95dd5077d6732953
refs/heads/master
2021-01-18T00:18:45.670513
2013-11-16T20:03:39
2013-11-16T20:03:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,051
h
/* * Proview Open Source Process Control. * Copyright (C) 2005-2013 SSAB EMEA AB. * * This file is part of Proview. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Proview. If not, see <http://www.gnu.org/licenses/> * * Linking Proview statically or dynamically with other modules is * making a combined work based on Proview. Thus, the terms and * conditions of the GNU General Public License cover the whole * combination. * * In addition, as a special exception, the copyright holders of * Proview give you permission to, from the build function in the * Proview Configurator, combine Proview with modules generated by the * Proview PLC Editor to a PLC program, regardless of the license * terms of these modules. You may copy and distribute the resulting * combined work under the terms of your choice, provided that every * copy of the combined work is accompanied by a complete copy of * the source code of Proview (the version used to produce the * combined work), being distributed under the terms of the GNU * General Public License plus this exception. */ #ifndef xtt_xcolwind_gtk_h #define xtt_xcolwind_gtk_h /* xtt_xcolwind_gtk.h -- Collect window */ #ifndef xtt_xcolwind_h # include "xtt_xcolwind.h" #endif #ifndef cow_wow_gtk_h # include "cow_wow_gtk.h" #endif class XColWindGtk : public XColWind { public: XColWindGtk ( GtkWidget *xa_parent_wid, void *xa_parent_ctx, pwr_sAttrRef *xa_objar, char *xa_title, int xa_advanced_user, xcolwind_eType xa_type, int *xa_sts); ~XColWindGtk(); GtkWidget *parent_wid; GtkWidget *brow_widget; GtkWidget *form_widget; GtkWidget *toplevel; GtkWidget *msg_label; GtkWidget *cmd_prompt; GtkWidget *cmd_input; GtkWidget *cmd_scrolledinput; GtkWidget *cmd_scrolledtextview; GtkWidget *cmd_scrolled_ok; GtkWidget *cmd_scrolled_ca; GtkTextBuffer *cmd_scrolled_buffer; GtkWidget *pane; static CoWowRecall value_recall; CoWowEntryGtk *cmd_entry; CoWowFocusTimerGtk focustimer; int input_max_length; void message( char severity, const char *message); void set_prompt( const char *prompt); void change_value( int set_focus); int open_changevalue( char *name); void change_value_close(); void pop(); void set_title( char *title); void set_window_size( int w, int h); void get_window_size( int *w, int *h); void print(); static void activate_open( GtkWidget *w, gpointer data); static void activate_save( GtkWidget *w, gpointer data); static void activate_saveas( GtkWidget *w, gpointer data); static void activate_insert( GtkWidget *w, gpointer data); static void activate_delete( GtkWidget *w, gpointer data); static void activate_print( GtkWidget *w, gpointer data); static void activate_moveup( GtkWidget *w, gpointer data); static void activate_movedown( GtkWidget *w, gpointer data); static void activate_change_value( GtkWidget *w, gpointer data); static void activate_close_changeval( GtkWidget *w, gpointer data); static void activate_exit( GtkWidget *w, gpointer data); static void activate_display_object( GtkWidget *w, gpointer data); static void activate_show_cross( GtkWidget *w, gpointer data); static void activate_open_classgraph( GtkWidget *w, gpointer data); static void activate_open_plc( GtkWidget *w, gpointer data); static void activate_zoomin( GtkWidget *w, gpointer data); static void activate_zoomout( GtkWidget *w, gpointer data); static void activate_zoomreset( GtkWidget *w, gpointer data); static void activate_scantime1(GtkWidget *w, gpointer data); static void activate_scantime2(GtkWidget *w, gpointer data); static void activate_scantime3(GtkWidget *w, gpointer data); static void activate_scantime4(GtkWidget *w, gpointer data); static void activate_scantime5(GtkWidget *w, gpointer data); static void activate_help( GtkWidget *w, gpointer data); static gboolean action_inputfocus( GtkWidget *w, GdkEvent *event, gpointer data); static void valchanged_cmd_input( GtkWidget *w, gpointer data); static void activate_cmd_input( GtkWidget *w, gpointer data); static void activate_cmd_scrolled_ok( GtkWidget *w, gpointer data); static void activate_cmd_scrolled_ca( GtkWidget *w, gpointer data); static void action_text_inserted( GtkTextBuffer *w, GtkTextIter *iter, gchar *str, gint len, gpointer data); }; #endif
[ "claes.sjofors@proview.se" ]
claes.sjofors@proview.se
11368118d7e88ad39f99e384e13aeb3e29f04315
2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0
/fuzzedpackages/anomaly/src/find_best_option.cpp
06238ddaa5b82bc2d6ea27de52c4b4c4d365067d
[]
no_license
akhikolla/testpackages
62ccaeed866e2194652b65e7360987b3b20df7e7
01259c3543febc89955ea5b79f3a08d3afe57e95
refs/heads/master
2023-02-18T03:50:28.288006
2021-01-18T13:23:32
2021-01-18T13:23:32
329,981,898
7
1
null
null
null
null
UTF-8
C++
false
false
1,618
cpp
#include <math.h> #include <stdlib.h> #include <float.h> #include "Functions.h" namespace anomalymv { void find_best_option(struct orderedobservationlist *list, int ii, int n, int p, int l, int minseglength, double *penaltycomponent, double penaltyanomaly, struct position_saving *savingvector) { int jj = 0, option = 0, bestcut = 0; struct orderedobservationlist *current = NULL; double cost_pt_anom, cost_coll_anom, mincost, extra, obs; mincost = list[ii].optimalcostofprevious; current = list[0].next; while ((current->numberofobservation) < (ii - minseglength + 2) ) { cost_coll_anom = current->costofstartingsegment; if (cost_coll_anom < mincost) { mincost = cost_coll_anom; option = 2; bestcut = current->numberofobservation - 1; } current = current->next; } cost_pt_anom = list[ii].optimalcostofprevious; for (jj = 0; jj < p; jj++) { obs = list[ii].observationsquared[jj]; if (obs <= DBL_MIN) { obs = DBL_MIN; } extra = penaltyanomaly + log(obs) + 1 - obs; if (extra < 0) { cost_pt_anom = cost_pt_anom + extra; } } if (cost_pt_anom < mincost) { mincost = cost_pt_anom; option = 1; } list[ii].option = option; list[ii].optimalcost = mincost; list[ii+1].optimalcostofprevious = mincost; list[ii].optimalcut = &(list[ii-1]); if (option == 2) { list[ii].optimalcut = &(list[bestcut]); collective_anom_parameters(list,ii,p,l,minseglength,penaltycomponent,savingvector); } if (option == 1) { point_anom_parameters(list,ii,p,penaltyanomaly); } } } // namespace anomalymv
[ "akhilakollasrinu424jf@gmail.com" ]
akhilakollasrinu424jf@gmail.com
deef5f63b31629494d9e6e4dfa8fe89c949820af
5a58b0b1d38fab26992377e6009447d5b9120c84
/git/Tema4/converter.h
62fcd034b9cc274913fe497a5ae65dff4daf245a
[]
no_license
iliemihai/EGC
a0256d88a28f4b3b500b974570c60ba032e16874
7aa935d6941ad838d26f29248b571914f13fe57b
refs/heads/master
2016-09-06T09:53:11.455131
2014-01-20T12:42:02
2014-01-20T12:42:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,931
h
#ifndef CONVERTER_H #define CONVERTER_H #include <sstream> #include <string> #include <cstdarg> #include <iostream> class Converter { public: Converter(); ~Converter(); /************************************************************************/ /* Konwertuje zmienna do stringa */ /************************************************************************/ template <class T> static std::string toString(T & _type) { std::string out; std::stringstream ss; ss<<_type; ss>>out; ss.clear(); return out; } /************************************************************************/ /* Konwertuje stringa do zmiennej, szablon potrzebuje informacji o typie*/ /************************************************************************/ template <class T> static T fromString(std::string & _string) { T out; std::stringstream ss; ss<<_string; ss>>out; ss.clear(); return out; } /************************************************************************/ /* Wypełnia tablicę podanymi danymi, length = ilosc danych */ /************************************************************************/ template <class T> static void setArray(T * array, int length, ...) { va_list ap; va_start(ap, length); for (int i=0; i<length; i++) { array[i] = va_arg(ap,T); } va_end(ap); } /************************************************************************/ /* Specjalizacja na float'a, z jakis powodow funkcja wariadyczna kastuje*/ /* floaty na double */ /************************************************************************/ template <> static void setArray<float>(float * array, int length, ...) { va_list ap; va_start(ap, length); for (int i=0; i<length; i++) { array[i] = va_arg(ap,double); } va_end(ap); } }; #endif
[ "https://github.com/iliemihai" ]
https://github.com/iliemihai
016ca6090929f3c981e4f1e34d9c17a35a94487f
054b91080c719c55d0d65ff33c4f92857a3fdfc8
/introduction_to_C++_programming/day7/zipcode/distance.cpp
7b996fe34af79db43a7bd146e6b5057e3f99c1f8
[]
no_license
researcherben/course-notes
14f7e893b0e7c1001e318d540f6bca77565a65fe
47475bde72978e34bd26cd80f402d07c4283f22a
refs/heads/master
2021-01-20T15:44:37.829360
2016-08-05T14:27:40
2016-08-05T14:27:40
60,696,470
1
0
null
null
null
null
UTF-8
C++
false
false
771
cpp
#include <cmath> #define PI 3.14159265 #define RADIUS_OF_EARTH 3963.1 // radius of earth in miles inline double toRadians (double degrees) { return degrees * PI / 180.0; } // Compute distance in miles between two points on Earth, with // coordinates specified in degrees. // Note: West longitudes and South latitudes have negative values double globeDistance (double lat1, double long1, double lat2, double long2) { double a1 = toRadians(lat1); double b1 = toRadians(long1); double a2 = toRadians(lat2); double b2 = toRadians(long2); return acos( cos(a1) * cos(b1) * cos(a2) * cos(b2) + cos(a1)* sin(b1)* cos(a2)* sin(b2) + sin(a1) * sin(a2) ) * RADIUS_OF_EARTH; }
[ "ben.is.located@gmail.com" ]
ben.is.located@gmail.com
a43b3cfc3744cf5fa9ab8845c3b1bba3a79bac30
cf6ae38d4adf41e3eb219b8ac477aa7ca7c7d18a
/trunk/libs/interprocess/doc/code/doc_named_condition_shared_data.hpp
d61934f4739375f639647c826da07b034e3dafce
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
ryppl/boost-history
a560df2bc79ffc7640f09d258599891dbbb8f6d0
934c80ff671f3afeb72b38d5fdf4396acc2dc58c
HEAD
2016-09-07T08:08:33.930543
2011-07-10T13:15:08
2011-07-10T13:15:08
3,539,914
1
0
null
null
null
null
UTF-8
C++
false
false
687
hpp
#include <boost/interprocess/sync/interprocess_mutex.hpp> #include <boost/interprocess/sync/interprocess_condition.hpp> struct trace_queue { enum { LineSize = 100 }; trace_queue() : message_in(false) {} //Mutex to protect access to the queue boost::interprocess::interprocess_mutex mutex; //Condition to wait when the queue is empty boost::interprocess::interprocess_condition cond_empty; //Condition to wait when the queue is full boost::interprocess::interprocess_condition cond_full; //Items to fill char items[LineSize]; //Is there any message bool message_in; };
[ "doug.gregor@gmail.com" ]
doug.gregor@gmail.com
6b31965565508756316066f07061eb575909827e
ece30e7058d8bd42bc13c54560228bd7add50358
/DataCollector/mozilla/xulrunner-sdk/include/mozilla/dom/mobilemessage/Types.h
e629a500fc02552d3c96f7d2a27fb13861011cd2
[ "Apache-2.0" ]
permissive
andrasigneczi/TravelOptimizer
b0fe4d53f6494d40ba4e8b98cc293cb5451542ee
b08805f97f0823fd28975a36db67193386aceb22
refs/heads/master
2022-07-22T02:07:32.619451
2018-12-03T13:58:21
2018-12-03T13:58:21
53,926,539
1
0
Apache-2.0
2022-07-06T20:05:38
2016-03-15T08:16:59
C++
UTF-8
C++
false
false
3,714
h
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef mozilla_dom_mobilemessage_Types_h #define mozilla_dom_mobilemessage_Types_h #include "IPCMessageUtils.h" namespace mozilla { namespace dom { namespace mobilemessage { // For MmsMessageData.state and SmsMessageData.deliveryState // Please keep the following files in sync with enum below: // mobile/android/base/GeckoSmsManager.java enum DeliveryState { eDeliveryState_Sent = 0, eDeliveryState_Received, eDeliveryState_Sending, eDeliveryState_Error, eDeliveryState_Unknown, eDeliveryState_NotDownloaded, // This state should stay at the end. eDeliveryState_EndGuard }; // For {Mms,Sms}MessageData.deliveryStatus. enum DeliveryStatus { eDeliveryStatus_NotApplicable = 0, eDeliveryStatus_Success, eDeliveryStatus_Pending, eDeliveryStatus_Error, eDeliveryStatus_Reject, eDeliveryStatus_Manual, // This state should stay at the end. eDeliveryStatus_EndGuard }; // For MmsMessageData.readStatus. enum ReadStatus { eReadStatus_NotApplicable = 0, eReadStatus_Success, eReadStatus_Pending, eReadStatus_Error, // This state should stay at the end. eReadStatus_EndGuard }; // For {Mms,Sms}MessageData.messageClass. enum MessageClass { eMessageClass_Normal = 0, eMessageClass_Class0, eMessageClass_Class1, eMessageClass_Class2, eMessageClass_Class3, // This state should stay at the end. eMessageClass_EndGuard }; // For ThreadData. enum MessageType { eMessageType_SMS = 0, eMessageType_MMS, // This state should stay at the end. eMessageType_EndGuard }; } // namespace mobilemessage } // namespace dom } // namespace mozilla namespace IPC { /** * Delivery state serializer. */ template <> struct ParamTraits<mozilla::dom::mobilemessage::DeliveryState> : public ContiguousEnumSerializer< mozilla::dom::mobilemessage::DeliveryState, mozilla::dom::mobilemessage::eDeliveryState_Sent, mozilla::dom::mobilemessage::eDeliveryState_EndGuard> {}; /** * Delivery status serializer. */ template <> struct ParamTraits<mozilla::dom::mobilemessage::DeliveryStatus> : public ContiguousEnumSerializer< mozilla::dom::mobilemessage::DeliveryStatus, mozilla::dom::mobilemessage::eDeliveryStatus_NotApplicable, mozilla::dom::mobilemessage::eDeliveryStatus_EndGuard> {}; /** * Read status serializer. */ template <> struct ParamTraits<mozilla::dom::mobilemessage::ReadStatus> : public ContiguousEnumSerializer< mozilla::dom::mobilemessage::ReadStatus, mozilla::dom::mobilemessage::eReadStatus_NotApplicable, mozilla::dom::mobilemessage::eReadStatus_EndGuard> {}; /** * Message class serializer. */ template <> struct ParamTraits<mozilla::dom::mobilemessage::MessageClass> : public ContiguousEnumSerializer< mozilla::dom::mobilemessage::MessageClass, mozilla::dom::mobilemessage::eMessageClass_Normal, mozilla::dom::mobilemessage::eMessageClass_EndGuard> {}; /** * MessageType class serializer. */ template <> struct ParamTraits<mozilla::dom::mobilemessage::MessageType> : public ContiguousEnumSerializer< mozilla::dom::mobilemessage::MessageType, mozilla::dom::mobilemessage::eMessageType_SMS, mozilla::dom::mobilemessage::eMessageType_EndGuard> {}; } // namespace IPC #endif // mozilla_dom_mobilemessage_Types_h
[ "andras.igneczi@doclerholding.com" ]
andras.igneczi@doclerholding.com
21cdd3fb47d2bac7e35c0a1e234c6cbbb73ac7a9
a8020c6cb6e0b481687ea88b0f1e73d0a2b10a37
/salarysheet.h
7af7359fd937443a9f9c79d9eff825a8a727db91
[]
no_license
sailendraw/MontesorryManagementSystem
7fdef328d27c325a1d47d32679385ad2de8aaea7
210cc8b3868a6e448b538550dbc1ca4d211ccff8
refs/heads/master
2016-08-05T02:29:23.506955
2014-11-08T12:03:33
2014-11-08T12:03:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
671
h
#ifndef SALARYSHEET_H #define SALARYSHEET_H #include <QWidget> #include "qtrpt.h" namespace Ui { class salarysheet; } class salarysheet : public QWidget { Q_OBJECT public: explicit salarysheet(QWidget *parent = 0); void display(); ~salarysheet(); private slots: void on_month_currentTextChanged(const QString &arg1); void on_month_currentIndexChanged(const QString &arg1); void on_stafflist_currentIndexChanged(const QString &arg1); void on_pushButton_3_clicked(); void setValue(int &recNo, QString &paramName, QVariant &paramValue, int reportPage); private: Ui::salarysheet *ui; QtRPT *report; }; #endif // SALARYSHEET_H
[ "sailendra.mzr@gmail.com" ]
sailendra.mzr@gmail.com
555ae40cf97a15d12ff0aea6767da175fb5ce4f9
ea3b88a242669a53d0b8cf475fdd9db3ed22493e
/PWGLF/SPECTRA/ChargedHadrons/dNdPt/AliAnalysisTaskSpectraV0M.cxx
c26f89bf31ae85a702002c5e4fc84c9f6f356dc3
[]
permissive
ppanasta/AliPhysics
cba8cde2e5f7c718fa7eac78a0681e8c6e147577
226101b9595c8c4bad885016e6b8ede56eb9ad9b
refs/heads/master
2021-01-16T04:59:23.838008
2020-02-25T10:51:38
2020-02-25T10:51:38
242,980,339
1
0
BSD-3-Clause
2020-02-25T11:10:33
2020-02-25T11:10:32
null
UTF-8
C++
false
false
5,978
cxx
#include <iostream> #include "TChain.h" #include "TH1F.h" #include "TList.h" #include "TRandom.h" #include "TRandom3.h" #include "TGeoGlobalMagField.h" #include "AliAnalysisTask.h" #include "AliAnalysisManager.h" #include "AliESDEvent.h" #include "AliESDInputHandler.h" #include "AliESDtrack.h" #include "AliAODEvent.h" #include "AliHeader.h" #include "AliMCEvent.h" #include "AliGenEventHeader.h" #include "AliESDtrackCuts.h" #include "AlidNdPtTools.h" #include "AliAnalysisTaskMKBase.h" #include "AliAnalysisTaskSpectraV0M.h" class AliAnalysisTaskSpectraV0M; using namespace std; /// \cond CLASSIMP ClassImp(AliAnalysisTaskSpectraV0M) /// \endcond //_____________________________________________________________________________ AliAnalysisTaskSpectraV0M::AliAnalysisTaskSpectraV0M() : AliAnalysisTaskMKBase() , fHistEffCont(0) , fHistTrack(0) , fHistEvent(0) { // default contructor } //_____________________________________________________________________________ AliAnalysisTaskSpectraV0M::AliAnalysisTaskSpectraV0M(const char* name) : AliAnalysisTaskMKBase(name) , fHistEffCont(0) , fHistTrack(0) , fHistEvent(0) { // constructor } //_____________________________________________________________________________ AliAnalysisTaskSpectraV0M::~AliAnalysisTaskSpectraV0M() { // destructor } //_____________________________________________________________________________ void AliAnalysisTaskSpectraV0M::AddOutput() { AddAxis("cent"); AddAxis("nAcc","mult6kcoarse"); AddAxis("MCpT","pt"); AddAxis("MCQ",3,-1.5,1.5); AddAxis("MCpid",10,-0.5,9.5); // 0=e, 1=mu, 2=pi, 3=K, 4=p, 6=sigmaP, 7=sigmaM, 8=xi, 9=omega, 5=other AddAxis("MCinfo",4,-0.5,3.5); // 0=prim, 1=decay 2=material, 3=genprim fHistEffCont = CreateHist("fHistEffCont"); fOutputList->Add(fHistEffCont); AddAxis("cent"); AddAxis("multV0","mult6kfine"); AddAxis("pt"); fHistTrack = CreateHist("fHistTrack"); fOutputList->Add(fHistTrack); AddAxis("cent"); AddAxis("multV0","mult6kfine"); AddAxis("nAcc","mult6kcoarse"); fHistEvent = CreateHist("fHistEvent"); fOutputList->Add(fHistEvent); } //_____________________________________________________________________________ Bool_t AliAnalysisTaskSpectraV0M::IsEventSelected() { return fIsAcceptedAliEventCuts; } //_____________________________________________________________________________ void AliAnalysisTaskSpectraV0M::AnaEvent() { LoopOverAllTracks(); // if (fIsMC) LoopOverAllParticles(); FillHist(fHistEvent, fMultPercentileV0M, fMultV0MmultSelection, fNTracksAcc); } //_____________________________________________________________________________ void AliAnalysisTaskSpectraV0M::AnaTrack(Int_t flag) { if (!fAcceptTrackM) return; FillHist(fHistTrack, fMultPercentileV0M, fMultV0MmultSelection, fPt); } //_____________________________________________________________________________ void AliAnalysisTaskSpectraV0M::AnaTrackMC(Int_t flag) { if (!fAcceptTrackM) return; if (fMCParticleType==AlidNdPtTools::kOther) { Log("RecTrack.PDG.",fMCPDGCode); } if (TMath::Abs(fMCQ > 1)) { Log("RecTrack.Q>1.PDG.",fMCPDGCode); } FillHist(fHistEffCont, fMultPercentileV0M, fNTracksAcc, fMCPt, fMCChargeSign, fMCParticleType, fMCProdcutionType); } //_____________________________________________________________________________ void AliAnalysisTaskSpectraV0M::AnaParticleMC(Int_t flag) { if (!fMCisPrim) return; if (!fMCIsCharged) return; if (TMath::Abs(fMCEta) > 0.8) return; if (fMCParticleType==AlidNdPtTools::kOther) { Log("GenPrim.PDG.",fMCPDGCode); } if (TMath::Abs(fMCQ > 1)) { Log("GenPrim.Q>1.PDG.",fMCPDGCode); } FillHist(fHistEffCont, fMultPercentileV0M, fNTracksAcc, fMCPt, fMCChargeSign, fMCParticleType, 3); } //_____________________________________________________________________________ AliAnalysisTaskSpectraV0M* AliAnalysisTaskSpectraV0M::AddTaskSpectraV0M(const char* name, const char* outfile) { AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager(); if (!mgr) { ::Error("AddTaskSpectraV0M", "No analysis manager to connect to."); return 0; } // Check the analysis type using the event handlers connected to the analysis manager. //============================================================================== if (!mgr->GetInputEventHandler()) { ::Error("AddTaskSpectraV0M", "This task requires an input event handler"); return NULL; } // Setup output file //=========================================================================== TString fileName = AliAnalysisManager::GetCommonFileName(); fileName += ":"; fileName += name; // create a subfolder in the file if (outfile) { // if a finename is given, use that one fileName = TString(outfile); } // create the task //=========================================================================== AliAnalysisTaskSpectraV0M *task = new AliAnalysisTaskSpectraV0M(name); if (!task) { return 0; } // configure the task //=========================================================================== task->SelectCollisionCandidates(AliVEvent::kAnyINT); task->SetESDtrackCutsM(AlidNdPtTools::CreateESDtrackCuts("defaultEta08")); // task->SetESDtrackCuts(0,AlidNdPtTools::CreateESDtrackCuts("defaultEta08")); // attach the task to the manager and configure in and ouput //=========================================================================== mgr->AddTask(task); mgr->ConnectInput(task,0,mgr->GetCommonInputContainer()); mgr->ConnectOutput(task,1,mgr->CreateContainer(name, TList::Class(), AliAnalysisManager::kOutputContainer, fileName.Data())); return task; }
[ "michael.linus.knichel@cern.ch" ]
michael.linus.knichel@cern.ch
c55965e7d3385a3571c0d4db0ba464f9e2f6000b
9eec0e4a53c8fc0a42b22f99fd5ca18233a1c1ff
/socodery/backup/inheritance/inheritBaseMemInit.cpp
ea462e609877a098e74ef0cea082947f7a53d55c
[]
no_license
ansrivas/codes
1b3139411e879e8b13ae3508f7793beffd1c36bd
36693d7aaefdc894b200f4d2a9937ac2137f3146
refs/heads/master
2021-01-13T01:27:40.877798
2013-10-25T09:38:59
2013-10-25T09:38:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
718
cpp
#include <iostream> using namespace std; class BaseClass { int i, j; public: //BaseClass(){;} BaseClass(int x, int y) { cout << "in base constructor\n"; i = x; j = y; } void showij() { cout << "in base class\n" ; cout << i << ' ' << j << '\n'; } }; class DerivedClass : public BaseClass { int k; public: // DerivedClass(){;} DerivedClass(int a, int b, int c) : k(a), BaseClass(b, c) { cout << "in derived constructor\n"; k = a; } void show() { cout << k << ' '; showij(); } /*void showij() { cout << "in derived class\n" ; }*/ }; int main() { DerivedClass ob(1, 2, 3); ob.showij(); //DerivedClass x; /* ob.show(); */ return 0; }
[ "best.ankur@gmail.com" ]
best.ankur@gmail.com
ac6f964462121c3c1ce5e1db08eea12c7dd84365
f2367d2c97b70ab1dd8e72a26f13cf341c9c5df0
/lab5/Codes/FSSB/FSSB.cpp
dbc9b23f4221a39929106fabbbd797a199166e37
[]
no_license
MitchellHansen/optimization-algorithms
85e872c4e2e11a63c1b2df31ac5fd40fd0c5ab9b
d1a836995bf19b475947ab964072243eca9e38fa
refs/heads/main
2020-06-21T05:54:45.629471
2017-01-13T05:13:46
2017-01-13T05:13:46
74,801,656
0
0
null
null
null
null
UTF-8
C++
false
false
2,700
cpp
/** * @brief Flow shop with blocking * @author doc. MSc. Donald Davendra Ph.D. * @date 3.10.2013 * * This is a simple class to calculate the makespan of the flowshop with blocking schedule. */ /*! \file FSSB.h \brief A FSSB header file. */ #include "FSSB.h" #include <stdlib.h> #include <iostream> #include <fstream> #include <cmath> using namespace std; cFSSB::cFSSB(){ ifstream infile; infile.open("fss.txt"); if(!infile.is_open()) { cout << "Error Opening File.\n"; exit(1); } else { infile >> m_Machines; infile >> m_Jobs; m_ProcessTime = new float*[m_Machines]; for (int i = 0; i < m_Machines; i++) { m_ProcessTime[i] = new float[m_Jobs]; } for (int i = 0; i < (m_Machines); i++) { for (int j = 0; j < m_Jobs; j++) { infile >> m_ProcessTime[i][j]; } } m_CompletionTime = new float*[m_Machines]; for (int i = 0; i < m_Machines; i++) { m_CompletionTime[i] = new float[m_Jobs]; } } infile.close(); } cFSSB::~cFSSB(){ for (int i = 0; i < m_Machines; i++) { delete [] m_ProcessTime[i]; } delete [] m_ProcessTime; for (int i = 0; i < m_Machines; i++) { delete [] m_CompletionTime[i]; } delete [] m_CompletionTime; } int cFSSB::GetMachines(){ return m_Machines; } int cFSSB::GetJobs(){ return m_Jobs; } float cFSSB::Makespan(int *Schedule){ Initialize(); // Calculate processing time for all jobs on first machine m_CompletionTime[0][0] = m_ProcessTime[0][Schedule[0]-1]; for (int i = 1; i < m_Machines; i++) { m_CompletionTime[i][0] = (m_CompletionTime[i-1][0] + m_ProcessTime[i][Schedule[0]-1]); } // Calculate for each subsequent job for (int i = 1; i < m_Jobs; i++) { for (int j = 0; j < m_Machines; j++) { if(j == 0){ m_CompletionTime[j][i] = m_CompletionTime[j][i-1] + m_ProcessTime[j][Schedule[i]-1]; } else{ if(m_CompletionTime[j-1][i] < m_CompletionTime[j][i-1]){ m_CompletionTime[j-1][i] = m_CompletionTime[j][i-1]; } m_CompletionTime[j][i] = m_CompletionTime[j-1][i] + m_ProcessTime[j][Schedule[i]-1]; } } } // Return the makespan. return m_CompletionTime[m_Machines-1][m_Jobs-1]; } void cFSSB::Initialize(){ for (int i = 0; i < m_Machines; i++) { for (int j = 0; j < m_Jobs; j++) { m_CompletionTime[i][j] = 0; } } }
[ "mitchellhansen0@gmail.com" ]
mitchellhansen0@gmail.com
88def7a1a28c9b0e80a4f380d7ed7aa5c6705b5e
25566712584db250f7419007954351b63ad8a516
/History.h
d5f209c61e2a9c98de0e9f0a6d888140af4991a6
[]
no_license
rjadroncik/Shadow-Studio
2cd69c29b05a40559a714c96cbc44ea6c01a7c06
8df941457f6a7b2890480ad25ee764fad27ce63d
refs/heads/master
2021-01-18T22:37:09.492427
2016-10-20T19:49:33
2016-10-20T19:49:33
27,828,580
0
0
null
null
null
null
UTF-8
C++
false
false
482
h
// History.h: interface for the CHistory class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_HISTORY_H__07B6E81F_AC2D_4A52_90DB_A3CC08D0BD92__INCLUDED_) #define AFX_HISTORY_H__07B6E81F_AC2D_4A52_90DB_A3CC08D0BD92__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CHistory { public: CHistory(); virtual ~CHistory(); }; #endif // !defined(AFX_HISTORY_H__07B6E81F_AC2D_4A52_90DB_A3CC08D0BD92__INCLUDED_)
[ "roman.jadroncik@gmail.com" ]
roman.jadroncik@gmail.com
eabd8c7c627f28030078e69dfb3354993b5ae949
7924247523ffc4c8ad89f725756a4ec1056f6479
/LINK_LIST/heap.cpp
b09d724a95b2c20770a91ebb44630d50527ad1c2
[]
no_license
badhon1512/DataStructure
cacba7268a8de567189da51ad5dca8c6cb4dfd4a
1d076087944f1b58584824a0a520fed88bbbdbb5
refs/heads/main
2023-03-13T13:55:49.905555
2021-03-04T12:27:08
2021-03-04T12:27:08
344,465,494
0
0
null
null
null
null
UTF-8
C++
false
false
1,498
cpp
#include<iostream> using namespace std; int left(int i) { return 2*i; } int right(int i) { return 2 * i + 1; } int root(int i) { return i/2; } int maxHeap(int h[], int heapSize) { int i,p; for(i=heapSize;i>1;i--) { p=root(i); cout<<"i= "<<i<<"\n"<<"p= "<<p<<"\n"<<"h[i]= "<<h[i]<<"\n"<<"h[p]= "<<endl; if(h[p]<h[i]) { return 0; } } return 1; } void maxHeapify(int heap[],int heapSize, int i) { int l, r, largest, t; l=left(i); r=right(i); if(l<=heapSize&&heap[l]>heap[i]) { largest = l; } else { largest = i; } if(r<=heapSize&&heap[r]>heap[largest]) { largest=r; } if(largest!=i) { t=heap[i]; heap[i]=heap[largest]; heap[largest]=t; maxHeapify(heap,heapSize,largest); } } void buildMaxHeap(int heap[],int heapSize) { int i; for(i=heapSize/2;i>=1;i--) { maxHeapify(heap,heapSize,i); } } void printHeap(int heap[], int heapSize) { int i; for(i=1;i<=heapSize;i++) { cout<<heap[i]<<" "; } cout<<"\n"<<endl; } int main() { int h,i,r; cout<<"enter size"<<endl; cin>>h; int H[h]; for(i=1;i<=h;i++) { cin>>H[i]; } cout<<endl; for(i=0;i<=h;i++) { cout<<H[i]<<" "; } cout<<endl; printHeap(H,h); //maxHeapify(H,h,3); buildMaxHeap(H,h); printHeap(H,h); return 0; }
[ "badhon1512@gmail.com" ]
badhon1512@gmail.com
cd86e3757a093a2c50f7c9351ef9b247dcb927bb
6530fc1675fee3e7d1662f86b6e4e3a2f298eb01
/PanelBoeing-build-desktop-Qt_4_8_2__System__Release/moc_mcp23017.cpp
65e39380d9b4d7d63e21d336b396ec744a4d1a95
[]
no_license
ALGUS-Savunma-ve-Havacilik/PanelBoeing
6ee7832afbdb1ef638294971e55b409a9400a11f
9e831f913d91b94c87af633c1b9a4504d03b1193
refs/heads/master
2020-04-26T14:52:52.343368
2015-02-05T19:18:55
2015-02-05T19:18:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,337
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'mcp23017.h' ** ** Created: Wed Apr 30 15:12:11 2014 ** by: The Qt Meta Object Compiler version 63 (Qt 4.8.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../Qtraspberrylib/mcp23017.h" #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'mcp23017.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 63 #error "This file was generated using the moc from 4.8.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 static const uint qt_meta_data_Mcp23017[] = { // content: 6, // revision 0, // classname 0, 0, // classinfo 2, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 2, // signalCount // signals: signature, parameters, type, tag, flags 9, 29, 35, 35, 0x05, 36, 29, 35, 35, 0x05, 0 // eod }; static const char qt_meta_stringdata_Mcp23017[] = { "Mcp23017\0interrupt_A(quint8)\0value\0\0" "interrupt_B(quint8)\0" }; void Mcp23017::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { Q_ASSERT(staticMetaObject.cast(_o)); Mcp23017 *_t = static_cast<Mcp23017 *>(_o); switch (_id) { case 0: _t->interrupt_A((*reinterpret_cast< quint8(*)>(_a[1]))); break; case 1: _t->interrupt_B((*reinterpret_cast< quint8(*)>(_a[1]))); break; default: ; } } } const QMetaObjectExtraData Mcp23017::staticMetaObjectExtraData = { 0, qt_static_metacall }; const QMetaObject Mcp23017::staticMetaObject = { { &QObject::staticMetaObject, qt_meta_stringdata_Mcp23017, qt_meta_data_Mcp23017, &staticMetaObjectExtraData } }; #ifdef Q_NO_DATA_RELOCATION const QMetaObject &Mcp23017::getStaticMetaObject() { return staticMetaObject; } #endif //Q_NO_DATA_RELOCATION const QMetaObject *Mcp23017::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; } void *Mcp23017::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_Mcp23017)) return static_cast<void*>(const_cast< Mcp23017*>(this)); return QObject::qt_metacast(_clname); } int Mcp23017::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QObject::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 2) qt_static_metacall(this, _c, _id, _a); _id -= 2; } return _id; } // SIGNAL 0 void Mcp23017::interrupt_A(quint8 _t1) { void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) }; QMetaObject::activate(this, &staticMetaObject, 0, _a); } // SIGNAL 1 void Mcp23017::interrupt_B(quint8 _t1) { void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) }; QMetaObject::activate(this, &staticMetaObject, 1, _a); } QT_END_MOC_NAMESPACE
[ "saul_alejandro_r@hotmail.com" ]
saul_alejandro_r@hotmail.com
cfca0b19f0f6e52f75d47c3b59625af16b54481b
2885e54c807bd70b8eb0cd2bc3ffd5ce51bd66cc
/2007-PIR-Drone Trirotor acrobate/Projet/Informatique/CNES/marmottes-9.8/src/Senseur.cpp
a2bbbaf88ee5d6d87facc79c554bbca9101e02b4
[]
no_license
crubier/my-personal-projects
622b09ce6d9c846b905fe135892a178c1a0c554b
8cd26b212b0c61f3d5bbe2de82d49891f3f3602a
refs/heads/master
2021-09-12T23:09:14.097634
2018-04-22T07:45:42
2018-04-22T07:45:42
130,488,289
1
0
null
null
null
null
ISO-8859-1
C++
false
false
5,876
cpp
/////////////////////////////////////////////////////////////////////////////// //$<AM-V1.0> // //$Type // DEF // //$Projet // Marmottes // //$Application // Marmottes // //$Nom //> Senseur.cpp // //$Resume // fichier d'implantation de la classe Senseur // //$Description // Module de définition de la classe // //$Contenu //> class Senseur //> operator =() //> respecterMesures() //> convertirMesures() //> nouveauRepere() //> criteresControlabilite() //> calage() //> modeliseConsigne() // //$Historique // $Log: Senseur.cpp,v $ // Revision 2.14 2003/02/04 16:37:05 marmottes // DM-ID 17 Mise à jour de l'extension du fichier dans le bandeau // // Revision 2.13 2002/01/17 09:26:19 marmottes // correction de spécifications throw // // Revision 2.12 2001/04/04 12:24:53 luc // ajout de la méthode criteresControlabilite // // Revision 2.11 2000/10/02 13:16:29 luc // remplacement d'attributs entiers en booléens // // Revision 2.10 2000/03/30 17:01:20 luc // ajout du copyright CNES // // Revision 2.9 1999/08/20 07:37:28 filaire // Correction de certaines erreurs dues au passage aux exceptions // Changement de signatures des méthodes "throw" // // Revision 2.8 1999/08/06 13:32:15 filaire // Passage à la gestion des erreurs par les exceptions // // Revision 2.7 1998/06/24 20:02:34 luc // élimination des variables statiques RCS // modification du format des en-têtes // // Revision 2.6 1998/04/26 18:25:26 luc // inversion de la convention de nommage des attributs // // Revision 2.5 1997/09/23 09:29:01 luc // ajout d'une gestion des unités de consigne et de mesure // interne au senseur // // Revision 2.4 1997/08/20 08:41:58 luc // ajout d'un en-tête de fichier // utilisation de ChaineSimple // déplacement de constructeurs dans le .h (simplifiés grâce à ChaineSimple) // implantation d'une version générique de la méthode modeliseConsigne // // Revision 2.3 1997/04/27 19:36:34 luc // inversion des codes de retour // changement des règles de nommage // passage de SCCS à RCS // // Revision 2.2 1996/09/11 17:43:04 luc // ajout du nom du senseur dans l'instance // // Revision 2.1 1996/07/31 17:21:34 luc // ajout d'une possibilité de modifier le repère senseur à l'exécution // // Revision 1.1 1994/12/23 11:00:13 luc // Initial revision // //$Version // $Id: Senseur.cpp,v 2.14 2003/02/04 16:37:05 marmottes Exp $ // //$Auteur // L. Maisonobe CNES // Copyright (C) 2000 CNES //$<> /////////////////////////////////////////////////////////////////////////////// #include "marmottes/Senseur.h" Senseur& Senseur::operator = (const Senseur& s) { if (&s != this) // protection contre x = x { nom_ = s.nom_; repereBase_ = s.repereBase_; repere_ = s.repere_; axeCalage_ = s.axeCalage_; precision_ = s.precision_; convertirConsignes_ = s.convertirConsignes_; convertirMesures_ = s.convertirMesures_; valeurConsigne_ = s.valeurConsigne_; } return *this; } void Senseur::respecterMesures () { // implantation de la méthode virtuelle dans la classe de base // ATTENTION : bien que cette méthode soit implantée, elle est virtuelle pure // les classes dérivées DOIVENT fournir également une implantation // qui peut éventuellement faire appel à cette implantation de base convertirMesures_ = false; } void Senseur::convertirMesures () { // implantation de la méthode virtuelle dans la classe de base // ATTENTION : bien que cette méthode soit implantée, elle est virtuelle pure // les classes dérivées DOIVENT fournir également une implantation // qui peut éventuellement faire appel à cette implantation de base convertirMesures_ = true; } void Senseur::nouveauRepere (const RotDBL& nouveau) { // rotation du senseur // les coordonnées de axeCalage_ sont (et restent en permanence) // exprimées dans le repère de base : on ne les touche donc pas // modification du repère courant repere_ = nouveau; } void Senseur::criteresControlabilite (const Etat& etat, codeAstre *ptrInhibant, codeAstre *ptrEclipsant, double *ptrEcartFrontiere, bool *ptrAmplitudeSignificative) throw (MarmottesErreurs, CantorErreurs) { // calcul des critères de contrôlabilité // l'implémentation par défaut consiste à dire que tout est parfait *ptrInhibant = nonSignificatif; *ptrEclipsant = nonSignificatif; *ptrEcartFrontiere = +1.0; *ptrAmplitudeSignificative = false; } void Senseur::calage (double c) throw (MarmottesErreurs) { // rotation du senseur autour d'un axe de calage prévu if (axeCalage_.norme () < 0.5) throw MarmottesErreurs (MarmottesErreurs::calage_interdit); // remise à zéro du repère nouveauRepere (repereBase_); // prise en compte du calage nouveauRepere (RotDBL (axeCalage_, -c) (repereBase_)); } void Senseur::modeliseConsigne (const Etat&, double valeur) throw (CantorErreurs, MarmottesErreurs) { // implantation de la méthode virtuelle dans la classe de base // ATTENTION : bien que cette méthode soit implantée, elle est virtuelle pure // les classes dérivées DOIVENT fournir également une implantation // qui peut éventuellement faire appel à cette implantation de base valeurConsigne_ = valeur; }
[ "vincent.lecrubier@gmail.com" ]
vincent.lecrubier@gmail.com
c53f10c5fe7bf7b90d287980a4e7430164fd376b
e89be39fe4d4f54b1b27d8b4584b24f00594725e
/libraries/SDCard/sdcard.cpp
cc2aceb2a5fbd79f94844fa33f7717f377057a7e
[]
no_license
RobotEdh/RobotMicroControl
1dddf057cf3f6aa37026ac6b9c0ccafca8374936
a48b604741dbf3a1e17914e3a12d597cfc00fa81
refs/heads/master
2021-06-27T06:36:11.495105
2020-10-14T20:32:07
2020-10-14T20:32:07
161,914,561
0
2
null
null
null
null
UTF-8
C++
false
false
2,859
cpp
#include <sdcard.h> Sd2Card card; // SD Card SdVolume volume; // SD Volume SdFile root; // SD Root int initSDCard(void){ if (!card.init(SPI_HALF_SPEED, SS_CS_Pin)) //Set SCK rate to F_CPU/4 (mode 1) { Serial.println("Error Init SD-Card"); return SDCARD_ERROR; } else { // initialize a FAT volume if (!volume.init(&card)) { Serial.println("Error Init Volume in SD-Card"); return SDCARD_ERROR; } else { // Open volume if (!root.openRoot(&volume)) { Serial.println("Error Open Volume in SD-Card"); return SDCARD_ERROR; } else { return SUCCESS; } } } } int infoSDCard(void){ Serial.print("SD-Card type is "); switch(card.type()){ case SD_CARD_TYPE_SD1: Serial.print("SD1"); break; case SD_CARD_TYPE_SD2: Serial.print("SD2"); break; case SD_CARD_TYPE_SDHC: Serial.print("SDHC"); break; default: Serial.println("Unknown"); } cid_t cid; if (!card.readCID(&cid)) { Serial.print("\nError Open read CID of SD-Card"); return SDCARD_ERROR; } Serial.print("\nManufacturer ID: "); Serial.print(cid.mid, HEX); Serial.print("\nOEM/Application ID: "); Serial.print(cid.oid[0]); Serial.print(cid.oid[1]); Serial.print("\nProduct name: "); for (uint8_t i = 0; i < 5; i++) { Serial.print(cid.pnm[i]); } Serial.print("\nProduct revision: "); Serial.print(cid.prv_m, DEC); Serial.print("."); Serial.print(cid.prv_n, DEC); Serial.print("\nProduct serial number: "); Serial.print(cid.psn); Serial.print("\nManufacturing date: "); Serial.print(cid.mdt_month); Serial.print('/'); Serial.print(2000 + (10*cid.mdt_year_high) + cid.mdt_year_low); // print the type and size of the first FAT-type volume Serial.print("\nVolume type is FAT"); Serial.print(volume.fatType(), DEC); uint32_t volumesize; volumesize = volume.blocksPerCluster(); // clusters are collections of blocks volumesize *= volume.clusterCount(); // we'll have a lot of clusters volumesize /= 2; // SD card blocks are always 512 bytes (2 blocks are 1KB) Serial.print("Volume size (Kb): "); Serial.println(volumesize); Serial.print("Volume size (Mb): "); volumesize /= 1024; Serial.println(volumesize); Serial.print("Volume size (Gb): "); Serial.println((float)volumesize / 1024.0); // list all files in the card with date and size Serial.println("\nFiles found on the card (name, date and size in bytes): "); root.openRoot(volume); // list all files in the card with date and size root.ls(LS_R | LS_DATE | LS_SIZE); Serial.println(""); return 0; }
[ "eric.delahoupliere@free.fr" ]
eric.delahoupliere@free.fr
f2c7762da082347263226fa2d891c4999d582798
b37f97a79555d77f39aff73633bda8a5b469c6fe
/test01/addperson.h
81375797f5191c98cd49e04cf71428516d0365e7
[]
no_license
OrangeQing/practice
1f9b3b49aaa626b7e192e4fae1a7966b0a0e1f93
4ce45e2ad838621e1f910c47211ed55da9c0d38b
refs/heads/master
2022-03-22T21:04:23.379428
2019-11-03T00:51:42
2019-11-03T00:51:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
307
h
#ifndef ADDPERSON_H #define ADDPERSON_H namespace Ui { class AddPerson; } class AddPerson : public QDialog { Q_OBJECT public: explicit AddPerson(QWidget *parent = 0); ~AddPerson(); private slots: void on_cancelBtn_clicked(); private: Ui::AddPerson *ui; }; #endif // ADDPERSON_H
[ "1240091086@qq.com" ]
1240091086@qq.com
211a5f2e5df4cb9e90471f1ff43b1338a7bd12d3
883a861de477922a4559974e759b399770735229
/src/exe/dummy_to_json.cpp
5328d7f40c801d3b746a42bc8a74e05de9df82a0
[ "MIT" ]
permissive
JasonThomasData/neural_net_cpp
302b17b103d0fcc39ed3cb11cf78e00a7d522d71
0d6d042ea00fa778befa488f2e38c914d5f26cdf
refs/heads/master
2022-05-01T20:32:50.239735
2022-03-26T11:16:06
2022-03-26T11:16:06
86,955,627
1
1
null
2017-08-02T07:52:43
2017-04-02T01:52:56
C++
UTF-8
C++
false
false
1,166
cpp
#include <fstream> #include <iostream> #include <string> #include "../../lib/json.hpp" #include "../data_converter/data_converter.h" #include "../json_io/json_io.h" int main(int argc, char** argv) { if(argc != 4 || (std::string(argv[3]) != "training" && std::string(argv[3]) != "new_data")) { std::cout<< "Parse two file locations to convert and the type of document (training/new_data), like ./convert_data path/to/in path/to/out training"<< std::endl; std::exit(1); } else { std::string in_path = std::string(argv[1]); std::string out_path = std::string(argv[2]); std::string document_type = std::string(argv[3]); std::ifstream original_data = DataConverter::read_file(in_path); nlohmann::json out_data; if (document_type == "training") { out_data = DataConverter::convert_training_data_to_json(original_data); } else { out_data = DataConverter::convert_new_data_to_json(original_data); } JsonIO::save_json_data(out_path, out_data); std::cout<< "Data saved at "<< out_path<< std::endl; } }
[ "john@john.john" ]
john@john.john
9a69eb6ed8de686796c2fae701e4c4b86ca1b99d
75667c69371e560e00846993e0594198ba5b0271
/lantern/src/math_common.cpp
4bc780363756125f61b51695845b516d881d092e
[ "MIT" ]
permissive
fredlim/lantern
028237401f73ccbe30c28dea1d8712c33bb283b8
ae968506925f6e28498d0b54850030c47e6a7031
refs/heads/master
2023-03-18T00:22:15.644336
2015-11-21T12:42:51
2015-11-21T12:42:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
402
cpp
#include "math_common.h" using namespace lantern; float lantern::triangle_2d_area( float const x0, float const y0, float const x1, float const y1, float const x2, float const y2) { return std::abs(0.5f * (x0 * (y1 - y2) + x1 * (y2 - y0) + x2 * (y0 - y1))); } float lantern::clamp(float const value, float const from, float const to) { return (value > to ? to : (value < from ? from : value)); }
[ "loreglean@gmail.com" ]
loreglean@gmail.com
8011bc188eeaecee4409c05c678882801aeb6c36
71bd19d1587e8736f9645736a1e61552ae0d543a
/src/C_iterate.h
eb794c4e18ee44d41409e364c972fce7ddd26696
[]
no_license
cran/cnaOpt
55acd34c2ca18f083abee6d7d7722cca356445a6
c6e0b904714713f05f6e3d0989ff841d0646f661
refs/heads/master
2023-03-18T01:38:03.279181
2022-07-08T13:00:11
2022-07-08T13:00:11
236,573,536
0
0
null
null
null
null
UTF-8
C++
false
false
430
h
// void show(dblIteratorList x); // void show(std::vector<double> x); dblIteratorList getStarts(dblList x); dblIteratorList getEnds(dblList x); void increase(dblIteratorList& ii, int& changed, const dblIteratorList& _starts_, const dblIteratorList& _ends_, int pos = -1); bool finished(dblIteratorList ii, const dblIteratorList _ends_); long long int ll(dblList x);
[ "csardi.gabor+cran@gmail.com" ]
csardi.gabor+cran@gmail.com
f01b947ac78a5c294a042d5e637f10640bf3b82e
7ecf0f2287bd5561d76571d41a51623e4566f75c
/SFML/PauseState.cpp
8e6fb4eaffc09e32bce959fbf7a7cf1fc8f8b13b
[]
no_license
jeffOttar/SFML
8794ef2f0ccf95e47cc83e1e10e649fb1fbcc110
32ff327505eb475c9b23f54b599e071a805f8302
refs/heads/master
2021-09-28T07:38:53.329978
2018-10-05T14:23:14
2018-10-05T14:23:14
151,723,442
0
0
null
null
null
null
UTF-8
C++
false
false
2,766
cpp
/** * @file * @author Jeff Ottar- * @version 1.0 * * * @section DESCRIPTION * < > * * * @section LICENSE * * * Copyright 2018 * 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. * * @section Academic Integrity * I certify that this work is solely my own and complies with * NBCC Academic Integrity Policy (policy 1111) */ #include "PauseState.h" #include "Utility.h" #include "FontManager.h" PauseState::PauseState(GEX::StateStack & stack, Context context) : State(stack, context), _backgroundSprite(), _pausedText(), _instructionText() { //set up the paused text _pausedText.setFont(GEX::FontManager::getInstance().get(GEX::FontID::Main)); _pausedText.setString("Game Paused"); _pausedText.setCharacterSize(80); centerOrigin(_pausedText); //set up the instruction text _instructionText.setFont(GEX::FontManager::getInstance().get(GEX::FontID::Main)); _instructionText.setString("(Press Backspace to return to the main menu)"); centerOrigin(_instructionText); //set position of the text sf::Vector2f viewSize = context.window->getView().getSize(); _pausedText.setPosition(0.5f * viewSize.x, 0.4f * viewSize.y); _instructionText.setPosition(0.5f * viewSize.x, 0.6f * viewSize.y); } void PauseState::draw() { sf::RenderWindow& window = *getContext().window; window.setView(window.getDefaultView()); sf::RectangleShape backgroundShape; backgroundShape.setFillColor(sf::Color(0, 0, 0, 150)); backgroundShape.setSize(window.getView().getSize()); window.draw(backgroundShape); window.draw(_pausedText); window.draw(_instructionText); } bool PauseState::update(sf::Time dt) { return false; } bool PauseState::handleEvent(const sf::Event & event) { if (event.type != sf::Event::KeyPressed) { return false; } if (event.key.code == sf::Keyboard::Escape) { //if you press escape return to the game by popping the stack with the pausestate on it requestStackPop(); } if (event.key.code == sf::Keyboard::BackSpace) { //clear the stack and go to the menu if backspace pressed requestStackClear(); requestStackPush(GEX::StateID::Menu); } return false; }
[ "jeffery1299@hotmail.com" ]
jeffery1299@hotmail.com
1eb481df74005172cfdba7a79d56b4a122062dd9
44ab57520bb1a9b48045cb1ee9baee8816b44a5b
/AssistTesting/Code/Editor/ModelEditor/ModelEditorAssistTesting/TestingLib.cpp
6438cc93932a95dfea8452a79ac4174a09410c59
[ "BSD-3-Clause" ]
permissive
WuyangPeng/Engine
d5d81fd4ec18795679ce99552ab9809f3b205409
738fde5660449e87ccd4f4878f7bf2a443ae9f1f
refs/heads/master
2023-08-17T17:01:41.765963
2023-08-16T07:27:05
2023-08-16T07:27:05
246,266,843
10
0
null
null
null
null
GB18030
C++
false
false
281
cpp
/// Copyright (c) 2010-2023 /// Threading Core Render Engine /// /// 作者:彭武阳,彭晔恩,彭晔泽 /// 联系作者:94458936@qq.com /// /// 标准:std:c++20 /// 版本:0.9.1.2 (2023/07/31 19:55) #include "System/SystemLib.h" #include "CoreTools/CoreToolsLib.h"
[ "94458936@qq.com" ]
94458936@qq.com
fc5eb2f92f9397e62adfd382def1b767ee5ace11
7e824dc4b0044129c95d51480b3514fb9a64acc7
/QT/tutoriale/68 - QTcpServer using multiple threads/MultiServer/main.cpp
20a99cf9b4bdab8204002cf3bddab8e4c7825159
[]
no_license
morariu05/TAP
3b97964fa3fb687ef7aa9ab13a82086b9458fda4
0ac56f91783b68d63134efdd12bf381ccb5639e1
refs/heads/master
2023-03-25T01:13:31.470612
2021-03-21T21:56:53
2021-03-21T21:56:53
350,127,947
0
0
null
null
null
null
UTF-8
C++
false
false
201
cpp
#include <QtCore/QCoreApplication> #include "myserver.h" int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); MyServer Server; Server.StartServer(); return a.exec(); }
[ "morariumadalina05@gmail.com" ]
morariumadalina05@gmail.com
08a4b38a8bbb32d55ab4fe43a3e653186f033179
3f75df57ae155e3eaada2885b12b78a63bbc43a1
/source/Geometry/CGA/src/TRKFTDHit.cc
cd3d792873fddc40f8b12c314638ad762cb8563a
[]
no_license
nkxuyin/mokka-cepc
52bb13455b6fc5961de678ad7cb695f754e49a47
61ce9f792a4cb8883f0d1cd1391884444b372dc0
refs/heads/master
2021-01-20T10:42:00.982704
2015-02-11T12:59:43
2015-02-11T12:59:43
24,243,983
0
1
null
null
null
null
UTF-8
C++
false
false
4,790
cc
#include "TRKFTDHit.hh" // Basic C #include <assert.h> // Basic Mokka classes #include "Control.hh" // Geant4 classes #include "G4VVisManager.hh" #include "G4VisAttributes.hh" #include "G4Colour.hh" #include "G4Circle.hh" // LCIO classes #ifdef LCIO_MODE #include <lcio.h> #include <IMPL/LCFlagImpl.h> #include <UTIL/CellIDEncoder.h> #include <UTIL/ILDConf.h> #endif G4Allocator<TRKFTDHit> TRKFTDHitAllocator; // // Copy constructor // TRKFTDHit::TRKFTDHit(const TRKFTDHit &right) #ifdef LCIO_MODE : VHit( LCIO::SIMTRACKERHIT ) #else : VHit() #endif { _iLayer = right._iLayer; _iSide = right._iSide; _iLadder = right._iLadder; _iSensor = right._iSensor; _PID = right._PID; _PDG = right._PDG; _Pos = right._Pos; _Momentum = right._Momentum; _Time = right._Time; _DepEnergy = right._DepEnergy; _stepLength= right._stepLength; } // // Operator = // const TRKFTDHit& TRKFTDHit::operator=(const TRKFTDHit &right) { #ifdef LCIO_MODE ((VHit*)this)->operator=(right); #endif _iLayer = right._iLayer; _iSide = right._iSide; _iLadder = right._iLadder; _iSensor = right._iSensor; _PID = right._PID; _PDG = right._PDG; _Pos = right._Pos; _Momentum = right._Momentum; _Time = right._Time; _DepEnergy = right._DepEnergy; _stepLength= right._stepLength; return *this; } // // Operator == // int TRKFTDHit::operator==(const TRKFTDHit &right) const { return ((_iLayer == right._iLayer ) && (_iSide == right._iSide ) && (_iLadder == right._iLadder ) && (_iSensor == right._iSensor ) && (_PID == right._PID ) && (_PDG == right._PDG ) && (_Pos == right._Pos ) && (_Momentum == right._Momentum ) && (_Time == right._Time ) && (_DepEnergy == right._DepEnergy ) && (_stepLength== right._stepLength)); } // // Draw a hit // void TRKFTDHit::Draw() { G4VVisManager* vVisManager = G4VVisManager::GetConcreteInstance(); if(vVisManager) { G4Colour colour(((GetPID()%2)+1.)/2.,((GetPID()%3)+1.)/3.,1.); G4VisAttributes attribs(colour); G4Circle circle; circle.SetPosition(G4Point3D(_Pos.getX(),_Pos.getY(),_Pos.getZ())); circle.SetScreenDiameter (2.0); circle.SetFillStyle (G4Circle::filled); circle.SetVisAttributes(attribs); // vVisManager->Draw(circle); } } // // Print // void TRKFTDHit::Print() {} // // Save the hit into a text file // void TRKFTDHit::Save(FILE *oFile) { if(oFile) { fprintf(oFile,"nL:%d hPos[mm]:%7.2f %7.2f %7.2f vecP[GeV]:%7.2f %7.2f %7.2f time[ns]:%7.2f PID:%d PDG:%d depE[keV]:%15e\n", _iLayer, _Pos.getX()/mm, _Pos.getY()/mm, _Pos.getZ()/mm, _Momentum.getX()/GeV, _Momentum.getY()/GeV, _Momentum.getZ()/GeV, _Time/ns, _PID, _PDG, _DepEnergy/keV); } } // // Load the hit from a text file // G4bool TRKFTDHit::Load(FILE *iFile) { double X,Y,Z, Px,Py,Pz, Time, EDep; int iLayer, iSide, iLadder, iSensor, PID, PDG; G4bool readStatus = 0; readStatus = (fscanf(iFile,"%d %d %d %d %lf %lf %lf %lf %lf %lf %lf %d %d %lf", &iLayer, &iSide, &iLadder, &iSensor, &X,&Y,&Z, &Px,&Py,&Pz, &Time, &PID, &PDG, &EDep) == 13); return readStatus; } // // Save the hit into a lcio file // #ifdef LCIO_MODE void TRKFTDHit::Save(LCCollectionVec* aLCCollectionVec) { // Set flag - barrel detectors-- NO LCFlagImpl aFlag(0); //aFlag.setBit( LCIO::THBIT_BARREL ); //aLCCollectionVec->setFlag( aFlag.getFlag() ); // Set flag - momentum and step length will be saved #ifdef MOKKA_SETMOMENTUM aFlag.setBit( LCIO::THBIT_MOMENTUM ); aLCCollectionVec->setFlag( aFlag.getFlag() ); #endif // Create cellID encoder //CellIDEncoder<SimTrackerHitImpl> cellIDEnc( "layer:7,ladder:5,sensor:4" ,aLCCollectionVec ) ; ILDCellIDEncoder<SimTrackerHitImpl> cellIDEnc( aLCCollectionVec ); // Set hit position G4double hitPos[3]; hitPos[0] = _Pos.getX()/mm; hitPos[1] = _Pos.getY()/mm; hitPos[2] = _Pos.getZ()/mm; // Create a new LCIO SimTracker hit SimTrackerHitImpl * hit = new SimTrackerHitImpl; hit->setEDep(GetEDep()/GeV); hit->setPosition(hitPos); hit->setTime(GetTime()/ns); hit->setMomentum(_Momentum.getX()/GeV,_Momentum.getY()/GeV,_Momentum.getZ()/GeV); hit->setPathLength(_stepLength/mm); cellIDEnc[ILDCellID0::subdet] = ILDDetID::FTD; cellIDEnc[ILDCellID0::side] = _iSide; cellIDEnc[ILDCellID0::layer] = _iLayer; cellIDEnc[ILDCellID0::module] = _iLadder; cellIDEnc[ILDCellID0::sensor] = _iSensor; cellIDEnc.setCellID(hit); // Set particle that has interacted in the detector #ifdef MOKKA_SETMCPART hit->setMCParticle( dynamic_cast<MCParticle*>(Control::MCParticleMap[_PID])); #else hit->setMCParticle(NULL); #endif // Put the hit into LCIO collection aLCCollectionVec->push_back( hit ); } #endif
[ "xuyin@nankai.edu.cn" ]
xuyin@nankai.edu.cn
c6de8fea499f51ddeb9f5d0ab87ac471cddfaa32
6f833427da2ae06e12e7cddbe2f275aedd8310de
/Lesson 6 - Inheritance/006 - multiple inheritance/main.cpp
f87e197420a61315c050c34a2772a358698b6724
[ "MIT" ]
permissive
YuilTripathee/CPP_programming
2331c770426d0f5ca96582281c2a745556d380f2
93301a3b9300605bdc61de2d1c6c2e96d11586a5
refs/heads/master
2022-02-28T06:28:12.890300
2019-11-02T01:39:38
2019-11-02T01:39:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
828
cpp
/* Academic Sport |__________| | Result */ // code: #include <iostream> using namespace std; class Academic { protected: char name[20]; int m1, m2; public: void GetData1() { cout << "Enter name, mark1 and mark2: "; cin >> name >> m1 >> m2; } }; class Sport { protected: int m3; public: void GetData2() { cout << "Enter sports mark3: "; cin >> m3; } }; class Result : public Academic, public Sport { int tot; public: void ShowData() { tot = m1 + m2 + m3; cout << "Name: " << name << endl; cout << "Total: " << tot << endl; } }; main() { Result r; r.GetData1(); r.GetData2(); r.ShowData(); }
[ "yuiltripathee79@gmail.com" ]
yuiltripathee79@gmail.com
742365f4d57f5e2fbfe6ea67326e7f3fc5197464
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/libstdc++-v3/testsuite/21_strings/basic_string_view/types/1.cc
e58a79c5b9b8cfe6a96ac8094f34731eeab1e8e3
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C++
false
false
1,175
cc
// // Copyright (C) 2013-2022 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. // // { dg-do compile { target c++17 } } #include <string_view> struct T { typedef std::string_view String_view; typedef String_view::iterator iterator; typedef String_view::const_iterator const_iterator; char t(iterator f) { return *f; } char t(const_iterator f) const { return *f; } }; void f() { std::string_view s; T t; T::const_iterator i = s.begin(); t.t(i); }
[ "rink@rink.nu" ]
rink@rink.nu
6b17791a459279a2756a741f1ed46e4613c5499e
be7ee28aa3149dd6045f74b0fec2ac0b3a855e4e
/1110.delete-nodes-and-return-forest.cpp
8bdc713577121db817d2afebad0d78df2f76aebb
[]
no_license
Okamoto-001/GoGoGo
a56ee2e6fa055a1a7a6d9497a4af53a04190eb42
383a0d05037b239ec3e4b4104dce41733c9aca19
refs/heads/master
2020-09-16T19:56:31.892313
2020-01-27T04:05:00
2020-01-27T04:05:00
223,874,412
1
0
null
null
null
null
UTF-8
C++
false
false
1,363
cpp
/* * @lc app=leetcode id=1110 lang=cpp * * [1110] Delete Nodes And Return Forest * * https://leetcode.com/problems/delete-nodes-and-return-forest/description/ * * algorithms * Medium (64.87%) * Likes: 593 * Dislikes: 22 * Total Accepted: 31.8K * Total Submissions: 48.9K * Testcase Example: '[1,2,3,4,5,6,7]\n[3,5]' * * Given the root of a binary tree, each node in the tree has a distinct * value. * * After deleting all nodes with a value in to_delete, we are left with a * forest (a disjoint union of trees). * * Return the roots of the trees in the remaining forest.  You may return the * result in any order. * * * Example 1: * * * * * Input: root = [1,2,3,4,5,6,7], to_delete = [3,5] * Output: [[1,2,null,4],[6],[7]] * * * * Constraints: * * * The number of nodes in the given tree is at most 1000. * Each node has a distinct value between 1 and 1000. * to_delete.length <= 1000 * to_delete contains distinct values between 1 and 1000. * */ // @lc code=start /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: vector<TreeNode*> delNodes(TreeNode* root, vector<int>& to_delete) { } }; // @lc code=end
[ "xwcheng497@gmail.com" ]
xwcheng497@gmail.com
f4cec2218f92a29bfc98e84cf99cce6375ecefca
7f88f6ef7fe43cdcfe41984a8952f876dec1cd47
/16927.cpp
402fcc4b51fa27f2fa41aeb3f43333dcc6109c7b
[]
no_license
skleee/boj-ps
7498ca4b1fc892caafec6a6620bd9968aff0f6f0
818e36754d20c2dccfcf641a7d47dd1f0c087fd1
refs/heads/master
2020-07-25T22:14:10.971137
2020-03-08T17:11:38
2020-03-08T17:11:38
208,439,076
2
0
null
null
null
null
UTF-8
C++
false
false
1,149
cpp
#include <iostream> #include <algorithm> #pragma warning(disable:4996) /* 16927. 배열돌리기2 */ using namespace std; int N, M, R, map[300][300]; void rotate() { int group = min(M, N) / 2; // 그룹의 개수 for (int k = 0; k < group; k++) { int rtcnt = R % ((N + M - 2 - 4 * k) * 2); // 그룹 안 숫자의 개수 while (rtcnt--) { int tmp = map[k][k]; for (int i = k + 1; i < M - k; i++) { map[k][i - 1] = map[k][i]; // top } for (int i = k + 1; i < N - k; i++) { map[i - 1][M - k - 1] = map[i][M - k - 1]; // right } for (int i = M - k - 2; i >= k; i--) { map[N - k - 1][i + 1] = map[N - k - 1][i]; // bottom } for (int i = N - k - 2; i > k; i--) { map[i + 1][k] = map[i][k]; // left } map[k + 1][k] = tmp; } } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL);cout.tie(NULL); cin >> N >> M >> R; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { int a; cin >> a; map[i][j] = a; } } rotate(); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { cout << map[i][j] << " "; } cout << "\n"; } cout << "\n"; return 0; }
[ "leesk1027@gmail.com" ]
leesk1027@gmail.com