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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
be3525c14c35033da57e7c8aa80a560f355ad330 | 56ee04007eac69701f0bb4421046eb558b24f6d6 | /ttpc2019/d.cpp | c79bc4fee32a763ebc2de77546b69ec924ae6ac7 | [] | no_license | tsuba3/atcoder | e5789515d96079a386843f744f0cf594ec663a24 | d397e98686cae982b431c098ec288d2994c33152 | refs/heads/master | 2021-07-01T21:31:45.429120 | 2021-02-20T13:40:24 | 2021-02-20T13:40:24 | 224,573,527 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,832 | cpp | /* _
_ooOoo_
o8888888o
88" . "88
(| -_- |)
O\ = /O
____/`---'\____
.' \\| |// `.
/ \\||| : |||// \
/ _||||| -:- |||||_ \
| | \\\ - /'| | |
| \_| `\`---'// |_/ |
\ .-\__ `-. -'__/-. /
___`. .' /--.--\ `. .'___
."" '< `.___\_<|>_/___.' _> \"".
| | : `- \`. ;`. _/; .'/ / .' ; |
\ \ `-. \_\_`. _.'_/_/ -' _.' /
===========`-.`___`-.__\ \___ /__.-'_.'_.-'================
Please give me AC.
*/
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <numeric>
#include <string>
#include <sstream>
#include <complex>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <utility>
using namespace std;
using int64 = long long;
using uint64 = unsigned long long;
using vi = vector<int>;
using vl = vector<int64>;
using pii = pair<int, int>;
using pll = pair<int64, int64>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define all(v) (v).begin(), (v).end()
#define print(x) cout << (x) << '\n'
#define print2(x, y) cout << (x) << ' ' << (y) << '\n'
#define print3(x, y, z) cout << (x) << ' ' << (y) << ' ' << (z) << '\n'
#define printn(v) rep(i, (v).size() - 1) cout << (v)[i] << ' '; cout << (v)[n - 1] << '\n';
#define debug(x) cerr << #x << ": " << (x) << '\n'
#define debug2(x, y) cerr << #x << ": " << (x) << ", " << #y << ": " << (y) << '\n'
#define debug3(x, y, z) cerr << #x << ": " << (x) << ", " << #y << ": " << (y) << ", " << #z << ": " << (z) << '\n'
#define dbg(v) for (size_t _ = 0; _ < v.size(); ++_){cerr << #v << "[" << _ << "] : " << v[_] << '\n';}
// constant
const int INF = (1<<30) - 1;
const int64 INF64 = (1LL<<62) - 1;
// End of template.
bool is_prime(int x) {
if (x < 2) return false;
if (x == 2) return true;
else if (x % 2 == 0) return false;
for (int i = 3; i < int(sqrt(x)); i += 2) {
if (x % i == 0) {
return false;
}
}
return true;
}
int main(){
cout << fixed << setprecision(15);
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
int x[200100];
cin >> n;
rep(i, n) cin >> x[i];
rep(i, n) {
if (x[i] == 7) x[i] = 3;
if (is_prime(x[i] - 2)) {
x[i] = 2
} else {
x[i] = 1;
}
}
int c[4];
rep(i, 4) c[i] = 0;
rep(i, n) c[x[i]] += 1;
c[1] %= 2;
// x[i] から1を引くか全部引く
return 0;
}
| [
"tsubasa.afe@gmail.com"
] | tsubasa.afe@gmail.com |
3882a89115cba38829f6489f37a91e46cd2109fd | 8af5843b9d0c467cce1fc75a103dd33854d661eb | /Ares/Memory.cpp | b666d659bcef215c382dc87b807b160e46afc350 | [] | no_license | Slyvred/Ares | b754942b1fcc92ff2bbd70da2b620ae7bb763c96 | 5327f5e17480532fa89efa408908214bc5e41508 | refs/heads/master | 2023-04-23T16:21:44.790809 | 2021-05-16T16:52:53 | 2021-05-16T16:52:53 | 367,937,835 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,645 | cpp | #include "Memory.h"
#include "PATTERN SCANNER/PatternScanner.h"
#include "SDK/netvars_manager.h"
namespace signatures
{
//std::ptrdiff_t dwForceJump;
//std::ptrdiff_t dwForceAttack;
std::ptrdiff_t dwGlowObjectManager;
std::ptrdiff_t m_bDormant;
std::ptrdiff_t dwClientState;
//std::ptrdiff_t dwClientState_ViewAngles;
std::ptrdiff_t dwClientState_GetLocalPlayer;
}
namespace netvars
{
std::ptrdiff_t m_iTeamNum;
std::ptrdiff_t m_iGlowIndex;
std::ptrdiff_t m_iHealth;
std::ptrdiff_t m_iCrosshairId;
std::ptrdiff_t m_bIsDefusing;
std::ptrdiff_t m_bIsScoped;
std::ptrdiff_t m_bSpotted;
std::ptrdiff_t m_flFlashDuration;
std::ptrdiff_t m_flFlashMaxAlpha;
std::ptrdiff_t m_fFlags;
std::ptrdiff_t m_bGunGameImmunity;
//std::ptrdiff_t m_bHasDefuser;
std::ptrdiff_t m_lifeState;
std::ptrdiff_t m_iAccountID;
std::ptrdiff_t m_flFallbackWear;
std::ptrdiff_t m_nFallbackPaintKit;
std::ptrdiff_t m_iItemIDHigh;
std::ptrdiff_t m_iEntityQuality;
std::ptrdiff_t m_iItemDefinitionIndex;
std::ptrdiff_t m_hActiveWeapon;
std::ptrdiff_t m_hMyWeapons;
std::ptrdiff_t m_nModelIndex;
std::ptrdiff_t m_szCustomName;
std::ptrdiff_t m_OriginalOwnerXuidLow;
std::ptrdiff_t m_nFallbackStatTrak;
std::ptrdiff_t m_nFallbackSeed;
std::ptrdiff_t m_hViewModel;
std::ptrdiff_t m_clrRender;
std::ptrdiff_t m_iShotsFired;
std::ptrdiff_t m_aimPunchAngle;
std::ptrdiff_t m_iViewModelIndex;
std::ptrdiff_t m_hMyWearables;
std::ptrdiff_t m_vecVelocity;
std::ptrdiff_t m_vecOrigin;
std::ptrdiff_t m_bInitialized;
std::ptrdiff_t m_bSpottedByMask;
//std::ptrdiff_t m_nForceBone;
std::ptrdiff_t m_dwBoneMatrix;
std::ptrdiff_t m_vecViewOffset;
std::ptrdiff_t m_nMoveType;
}
void GetSignatures()
{
//signatures::dwForceJump = Scan("client.dll", "\x8B\x0D\x00\x00\x00\x00\x8B\xD6\x8B\xC1\x83\xCA\x02", "xx????xxxxxxx", 0x2, 0);
//signatures::dwForceAttack = Scan("client.dll", "\x89\x0D\x00\x00\x00\x00\x8B\x0D\x00\x00\x00\x00\x8B\xF2\x8B\xC1\x83\xCE\x04", "xx????xx????xxxxxxx", 0x2, 0);
signatures::m_bDormant = Scan("client.dll", "\x8A\x81\x00\x00\x00\x00\xC3\x32\xC0", "xx????xxx", 0x2, 0x8) & 0xFF;
signatures::dwGlowObjectManager = Scan("client.dll", "\xA1\x00\x00\x00\x00\xA8\x01\x75\x4B", "x????xxxx", 0x1, 0x4);
signatures::dwClientState = Scan("engine.dll", "\xA1\x00\x00\x00\x00\x33\xD2\x6A\x00\x6A\x00\x33\xC9\x89\xB0", "x????xxx?x?xxxx", 0x1, 0);
//signatures::dwClientState_ViewAngles = Scan("engine.dll", "\xF3\x0F\x11\x80\x00\x00\x00\x00\xD9\x46\x04\xD9\x05", "xxxx????xxxxx", 0x4, 0) & 0xFFFF;
signatures::dwClientState_GetLocalPlayer = Scan("engine.dll", "\x8B\x80\x00\x00\x00\x00\x40\xC3", "xx????xx", 0x2, 0) & 0xFFFF;
}
void GetNetvars(ClientClass* clientClass)
{
netvars::m_iTeamNum = GetNetvarOffset("DT_BasePlayer", "m_iTeamNum", clientClass);
netvars::m_iHealth = GetNetvarOffset("DT_BasePlayer", "m_iHealth", clientClass);
netvars::m_bSpotted = GetNetvarOffset("DT_BasePlayer", "m_bSpotted", clientClass);
netvars::m_hViewModel = GetNetvarOffset("DT_BasePlayer", "m_hViewModel[0]", clientClass);
netvars::m_aimPunchAngle = GetNetvarOffset("DT_BasePlayer", "m_aimPunchAngle", clientClass);
netvars::m_vecOrigin = GetNetvarOffset("DT_BasePlayer", "m_vecOrigin", clientClass);
netvars::m_clrRender = GetNetvarOffset("DT_BaseEntity", "m_clrRender", clientClass);
netvars::m_bSpottedByMask = GetNetvarOffset("DT_BaseEntity", "m_bSpottedByMask", clientClass);
netvars::m_fFlags = GetNetvarOffset("DT_CSPlayer", "m_fFlags", clientClass);
netvars::m_bIsScoped = GetNetvarOffset("DT_CSPlayer", "m_bIsScoped", clientClass);
netvars::m_bGunGameImmunity = GetNetvarOffset("DT_CSPlayer", "m_bGunGameImmunity", clientClass);
//netvars::m_bHasDefuser = GetNetvarOffset("DT_CSPlayer", "m_bHasDefuser", clientClass);
netvars::m_flFlashDuration = GetNetvarOffset("DT_CSPlayer", "m_flFlashDuration", clientClass);
netvars::m_flFlashMaxAlpha = GetNetvarOffset("DT_CSPlayer", "m_flFlashMaxAlpha", clientClass);
netvars::m_bIsDefusing = GetNetvarOffset("DT_CSPlayer", "m_bIsDefusing", clientClass);
netvars::m_lifeState = GetNetvarOffset("DT_CSPlayer", "m_lifeState", clientClass);
netvars::m_vecVelocity = GetNetvarOffset("DT_CSPlayer", "m_vecVelocity[0]", clientClass);
netvars::m_vecViewOffset = GetNetvarOffset("DT_CSPlayer", "m_vecViewOffset[0]", clientClass);
netvars::m_iShotsFired = GetNetvarOffset("DT_CSPlayer", "m_iShotsFired", clientClass);
netvars::m_iCrosshairId = GetNetvarOffset("DT_CSPlayer", "m_bHasDefuser", clientClass) + 92;
netvars::m_iGlowIndex = GetNetvarOffset("DT_CSPlayer", "m_flFlashDuration", clientClass) + 24;
netvars::m_dwBoneMatrix = GetNetvarOffset("DT_BaseAnimating", "m_nForceBone", clientClass) + 28;
netvars::m_iAccountID = GetNetvarOffset("DT_BaseAttributableItem", "m_iAccountID", clientClass);
netvars::m_flFallbackWear = GetNetvarOffset("DT_BaseAttributableItem", "m_flFallbackWear", clientClass);
netvars::m_nFallbackPaintKit = GetNetvarOffset("DT_BaseAttributableItem", "m_nFallbackPaintKit", clientClass);
netvars::m_iItemIDHigh = GetNetvarOffset("DT_BaseAttributableItem", "m_iItemIDHigh", clientClass);
netvars::m_iEntityQuality = GetNetvarOffset("DT_BaseAttributableItem", "m_iEntityQuality", clientClass);
netvars::m_iItemDefinitionIndex = GetNetvarOffset("DT_BaseAttributableItem", "m_iItemDefinitionIndex", clientClass);
netvars::m_szCustomName = GetNetvarOffset("DT_BaseAttributableItem", "m_szCustomName", clientClass);
netvars::m_OriginalOwnerXuidLow = GetNetvarOffset("DT_BaseAttributableItem", "m_OriginalOwnerXuidLow", clientClass);
netvars::m_nFallbackStatTrak = GetNetvarOffset("DT_BaseAttributableItem", "m_nFallbackStatTrak", clientClass);
netvars::m_nFallbackSeed = GetNetvarOffset("DT_BaseAttributableItem", "m_nFallbackSeed", clientClass);
netvars::m_iAccountID = GetNetvarOffset("DT_BaseAttributableItem", "m_iAccountID", clientClass);
netvars::m_bInitialized = GetNetvarOffset("DT_BaseAttributableItem", "m_bInitialized", clientClass);
netvars::m_hActiveWeapon = GetNetvarOffset("DT_BaseCombatCharacter", "m_hActiveWeapon", clientClass);
netvars::m_hMyWeapons = GetNetvarOffset("DT_BaseCombatCharacter", "m_hMyWeapons", clientClass);
netvars::m_hMyWearables = GetNetvarOffset("DT_BaseCombatCharacter", "m_hMyWearables", clientClass);
netvars::m_nModelIndex = GetNetvarOffset("DT_BaseViewModel", "m_nModelIndex", clientClass);
//netvars::m_nForceBone = GetNetvarOffset("DT_BaseAnimating", "m_nForceBone", clientClass);
netvars::m_iViewModelIndex = GetNetvarOffset("DT_BaseCombatWeapon", "m_iViewModelIndex", clientClass);
netvars::m_nMoveType = GetNetvarOffset("DT_BaseEntity", "m_nRenderMode", clientClass) + 1;
} | [
"remihage2003@gmail.com"
] | remihage2003@gmail.com |
47c57aa96265ec422782fcf8eed1f5987ad4f5f8 | 34b3623dbd185b9d8e6bc5af787ff656ebb8f837 | /finalProject/results/test/test_height/wedge05/8.5/U | 99d399495a12f74c1b986fb15f34f2e2ac4b6907 | [] | no_license | kenneth-meyer/COE347 | 6426252133cdb94582b49337d44bdc5759d96cda | a4f1e5f3322031690a180d0815cc8272b6f89726 | refs/heads/master | 2023-04-25T04:03:37.617189 | 2021-05-16T02:40:23 | 2021-05-16T02:40:23 | 339,565,109 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 699,223 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "8.5";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
20933
(
(0.997096 -0.000335643 -8.82502e-23)
(0.98806 -0.000895794 2.3391e-21)
(1.02082 -0.00257342 -3.10599e-22)
(1.00027 -1.81472e-05 4.31085e-25)
(1.00079 -0.00704803 4.91594e-23)
(1.00056 -0.00746516 -4.7585e-23)
(1.02975 -0.122066 -8.49655e-22)
(1.07819 0.0528986 -3.52968e-20)
(1.00637 -0.0611348 -2.25325e-21)
(1.08231 0.053687 2.5233e-20)
(1.03833 -0.110337 -2.05622e-21)
(1.1601 0.0999143 -1.6753e-21)
(0.991448 -0.0401126 -5.55029e-22)
(0.997067 -0.00039543 6.57064e-23)
(0.996865 -0.00282011 3.07328e-22)
(1.00026 -2.66003e-05 6.3255e-25)
(1.21943 -0.020908 3.86185e-21)
(1.08782 0.000584675 -2.04775e-20)
(1.00526 -0.0912883 -2.05892e-21)
(0.990307 -0.000450183 -2.05301e-21)
(1.01543 -0.0702179 2.3603e-21)
(1.15619 0.0990954 -2.81501e-21)
(1.08392 0.0582191 -1.91506e-20)
(1.09941 -0.145095 -9.92359e-22)
(1.01907 -0.000851029 1.68219e-23)
(0.996089 0.0629959 -5.06733e-20)
(1.00723 -0.00206487 -1.79249e-22)
(0.997651 -0.0430379 1.60056e-21)
(1.13942 -0.139967 -4.32416e-22)
(1.00711 -0.0923147 6.85479e-21)
(0.999097 -0.00180916 -4.15453e-24)
(0.949728 0.014234 7.69565e-20)
(1.10778 0.0915476 1.59374e-20)
(0.995455 -0.0253787 1.68163e-22)
(1.00009 -0.0013279 6.59702e-24)
(0.999149 -0.00194544 -1.42678e-23)
(1.0721 0.0671171 -3.75381e-20)
(0.999846 -5.19621e-06 2.57987e-24)
(1.01181 -0.0146986 -2.12651e-22)
(1.09567 0.00215448 -7.3875e-21)
(1.03164 -0.00651419 7.28624e-23)
(1.08061 0.109306 2.68986e-20)
(1.02687 0.0319887 -1.4959e-20)
(1.00652 -0.00248047 1.49428e-22)
(0.995785 0.0606 1.99324e-20)
(0.974677 -0.00170109 1.346e-21)
(1.0738 0.0059903 -5.42186e-20)
(1.20308 0.0483135 -9.53731e-21)
(0.999647 -9.1541e-05 6.59268e-24)
(0.982445 -0.0356512 4.24696e-22)
(1.00002 -0.00140651 -1.70132e-23)
(1.0575 -0.00665073 6.95144e-21)
(1.14539 -0.0898049 -4.53288e-21)
(1.0004 -0.00306086 -1.49896e-23)
(1.17699 -0.0938904 5.71825e-22)
(0.961703 -0.0160407 -6.28723e-22)
(0.985558 -0.0242939 1.02535e-22)
(0.999009 -0.0023204 9.01679e-24)
(1.00887 -0.0360565 -5.78261e-22)
(1.2159 -0.0168704 -2.80627e-21)
(0.979692 0.0234736 4.20326e-20)
(0.969291 -0.00456154 2.03658e-21)
(0.991285 -0.00314849 -5.35862e-22)
(1.09222 0.0535148 -1.6891e-21)
(0.999394 -0.000111211 -4.35165e-23)
(0.996857 -0.00645906 3.27596e-24)
(0.997352 0.0433852 1.27817e-21)
(0.996488 -0.00675359 1.50048e-22)
(1.09275 -0.0582368 8.5701e-21)
(1.0003 0.0640259 1.88903e-20)
(1.03154 -0.0318394 2.61668e-21)
(1.22291 -0.0472744 3.65003e-21)
(0.997167 -0.00281064 -5.93573e-23)
(0.98973 -0.0298103 2.2042e-21)
(0.999587 0.0149385 -1.90815e-20)
(1.05811 -0.0644171 -2.54559e-21)
(1.00044 0.0598869 8.82509e-21)
(0.96001 -0.00525623 5.50191e-22)
(1.09447 0.000878126 4.59939e-21)
(1.0033 0.0252359 2.81998e-20)
(0.997564 -0.00669538 3.60313e-22)
(1.00187 -0.00356623 2.64023e-23)
(1.12444 -0.140109 3.81104e-22)
(1.00706 -0.059245 1.86496e-21)
(0.971005 -0.00364652 -2.24368e-21)
(1.02496 0.0300496 7.22268e-20)
(0.99341 -0.0374423 -1.04859e-21)
(0.923729 0.0439989 7.13998e-21)
(1.08944 0.0495784 -1.56933e-20)
(0.986001 0.0641564 3.18143e-20)
(1.08413 0.0199916 -2.14781e-20)
(1.00031 -4.77642e-05 -1.72382e-24)
(1.00005 -0.000252269 4.17722e-24)
(0.949448 0.0051944 -2.14012e-20)
(1.20774 0.043184 4.84806e-21)
(0.99178 -0.00327383 -3.36107e-22)
(0.957677 0.00333371 3.27884e-20)
(0.99974 -0.0036676 2.78682e-23)
(1.04161 -0.106724 -7.0107e-22)
(1.05444 0.01156 -1.98426e-20)
(0.983854 0.0659167 -9.41465e-20)
(0.982066 -0.00923073 1.63072e-22)
(0.977506 0.0609071 -1.02776e-19)
(1.13479 -0.0808326 -9.30147e-21)
(1.07875 -0.00188506 -1.52775e-20)
(1.07774 -0.0626273 -6.04253e-21)
(1.01801 0.0712577 3.63946e-20)
(1.12496 -0.0663096 -6.50494e-21)
(0.98727 -0.0005606 -2.5593e-21)
(1.03 0.0810421 8.40878e-21)
(1.14576 -0.143347 -1.22387e-21)
(1.02615 -0.121535 -2.05113e-21)
(0.984702 -0.0193887 1.04574e-21)
(1.02606 -0.0166508 -1.96317e-21)
(1.05942 -0.0593949 -1.64254e-21)
(1.00009 -5.34474e-05 -3.35544e-25)
(1.03774 0.0528798 3.57366e-20)
(0.997975 -0.00625908 -1.32393e-22)
(1.12861 -0.0900255 -1.29825e-21)
(1.00296 0.0222801 -6.67621e-20)
(1.00031 -2.90817e-05 -3.36052e-25)
(1.02412 -0.0730737 9.11351e-22)
(1.10935 0.0158145 -9.89514e-21)
(1.00963 -0.0411348 -8.27702e-22)
(0.995302 -0.0240943 -2.31302e-22)
(1.08844 0.00190799 1.08145e-20)
(1.13161 0.103461 -4.04859e-20)
(0.997432 -0.0414768 1.35751e-21)
(0.945277 0.0167967 -2.23531e-20)
(1.03455 0.0545336 1.89843e-20)
(0.994839 -0.0477481 -1.26443e-21)
(0.982139 -0.0343828 -1.27192e-21)
(1.03167 -0.00336145 9.77063e-22)
(1.01119 -0.0134529 4.75909e-22)
(1.01446 0.0668169 -4.92915e-20)
(1.07576 -0.00450954 -4.55103e-21)
(1.18356 0.0615461 -1.15203e-20)
(1.0177 -0.0706478 -1.04481e-21)
(0.986113 -0.00908644 1.42741e-21)
(0.99672 -0.0627573 5.37201e-21)
(1.02125 -0.0753323 2.60327e-22)
(0.988619 -0.0307913 -2.15582e-21)
(1.22279 -0.0571103 2.95708e-21)
(0.975325 0.0662453 -3.22467e-20)
(1.16072 -0.00591713 6.42067e-21)
(1.01371 0.0688324 4.44446e-20)
(1.11029 0.11363 -3.99376e-21)
(0.976513 -0.00999755 -1.42984e-21)
(1.1381 0.0966881 -2.85527e-20)
(1.00809 -0.00275384 3.96348e-22)
(0.975873 -0.00925467 2.89359e-21)
(1.00141 0.0627891 2.28499e-21)
(1.00007 -0.00021177 -2.60165e-24)
(1.00581 -0.0549339 7.33543e-22)
(1.00181 -0.00319865 -5.49729e-23)
(1.10728 0.115633 2.229e-20)
(1.02219 0.03158 -7.76096e-21)
(1.09566 -0.141782 3.88912e-21)
(0.958915 -0.0184166 1.13368e-21)
(0.990855 -0.0410787 1.18267e-21)
(1.18153 -0.101392 -9.65454e-22)
(1.03296 -0.118086 1.25031e-21)
(0.998978 -0.00214888 -1.21602e-23)
(1.15849 -0.00148458 -9.83523e-21)
(1.08876 -0.00251809 -2.24863e-21)
(0.926677 0.0454608 1.69137e-20)
(0.98303 -0.00929783 1.13834e-21)
(1.11891 -0.145123 1.70736e-22)
(1.05492 -0.0657578 2.9365e-21)
(1.07304 0.0642468 -2.20871e-20)
(1.18781 0.0612712 3.69844e-21)
(0.992066 0.0486845 1.98037e-20)
(1.04445 0.0951568 5.73392e-20)
(0.993231 -0.022327 4.32684e-23)
(0.919651 0.0142195 -2.51712e-20)
(1.11147 0.0927414 1.97572e-20)
(0.997068 -0.000697917 9.9268e-23)
(0.989276 0.00710849 -4.99053e-20)
(1.06414 -0.0581855 -5.46381e-23)
(1.02498 0.0840533 1.58469e-20)
(1.01063 0.0729392 -2.24943e-20)
(0.999787 -9.80709e-06 -3.27312e-24)
(0.972829 0.0471996 1.43181e-21)
(1.04333 0.0830443 4.84125e-20)
(0.989756 -0.000700458 1.32817e-22)
(0.954737 -0.0139186 6.6243e-21)
(1.03109 -0.0297304 -1.76398e-21)
(1.05898 0.00804318 -5.03657e-21)
(1.12985 -0.084774 2.70137e-21)
(0.949108 0.0381413 2.26221e-20)
(1.13021 0.100066 -1.3748e-20)
(1.19156 -0.0332269 4.37005e-21)
(1.05153 0.00825519 4.01466e-20)
(1.09214 -0.0535535 6.98178e-21)
(0.959844 -0.0192172 2.77095e-21)
(1.16008 0.0738279 -1.9077e-20)
(0.973661 0.0495278 -1.56188e-21)
(1.20005 0.0148078 -1.5529e-20)
(0.991791 -0.000283922 1.64229e-23)
(0.945981 0.0379741 -2.20715e-20)
(1.17738 0.0397496 -2.68109e-20)
(1.18947 -0.0743637 -2.45834e-21)
(1.14467 -0.0841847 6.48798e-21)
(0.955219 0.0426995 -2.73541e-20)
(0.967338 0.0439452 6.45036e-20)
(0.975063 -0.0203586 -1.08438e-21)
(1.00165 -0.0307884 -1.05204e-22)
(1.05757 -0.00393844 -9.57585e-22)
(0.962449 -0.0171665 -2.83298e-21)
(0.998541 -0.000150915 -1.12646e-22)
(0.998602 0.0445364 -9.46509e-21)
(0.989391 0.0183811 -1.79347e-20)
(0.9766 -0.0122909 2.05869e-21)
(0.969251 -0.0276412 1.40432e-21)
(1.02646 0.0817852 2.46126e-20)
(0.999051 0.0199071 2.88489e-20)
(0.998246 -7.33412e-05 3.68691e-22)
(1.00177 0.0208275 -4.51525e-20)
(1.12869 -0.0623642 -3.13619e-21)
(1.01202 -0.0118324 -1.07295e-21)
(1.00533 -0.044438 1.22395e-22)
(1.02426 0.050214 -3.80549e-21)
(0.96928 0.0732428 3.00022e-20)
(1.08219 0.0175427 2.839e-20)
(1.031 0.0778473 -4.03251e-20)
(0.985166 -0.0090939 -2.41555e-21)
(1.0032 -0.030354 -4.15079e-22)
(1.00012 -6.08485e-05 5.26758e-27)
(0.998735 -5.48686e-05 -1.24751e-22)
(1.00067 -0.00592584 9.56463e-23)
(1.10754 0.0137037 4.75067e-21)
(1.10189 -0.0904346 1.03832e-21)
(1.01952 0.0692871 -4.64716e-20)
(1.0029 -0.0730796 1.50578e-21)
(1.01813 0.0255117 2.76436e-20)
(0.994412 -0.0361345 -1.90329e-22)
(1.07311 -0.059798 4.29234e-21)
(0.993668 0.0475937 3.53392e-20)
(0.951265 0.00403062 1.10417e-19)
(1.02518 0.0474883 6.56538e-20)
(1.00217 0.0580911 -5.43401e-20)
(0.96802 -0.0271663 -1.26581e-21)
(1.07722 0.0977618 -1.62573e-20)
(1.01034 -0.0398881 8.76946e-22)
(1.08086 -0.00329053 3.04715e-20)
(0.99783 -0.00567907 -2.57207e-22)
(1.21041 -0.0874177 2.84432e-21)
(1.13362 -0.0415585 1.50268e-20)
(1.06441 -0.0201257 1.08657e-20)
(0.999658 -6.73976e-05 -8.03742e-24)
(0.985459 -0.000783426 2.9662e-21)
(0.966642 0.0747908 -4.61355e-20)
(1.12962 0.0355039 7.17895e-20)
(1.01136 -0.0159127 6.28376e-22)
(0.980315 -0.0386018 -2.17269e-21)
(1.09751 -0.0868682 -6.26542e-22)
(1.05583 -0.130957 2.71889e-21)
(1.07727 0.10832 -3.32748e-21)
(0.997527 -0.0620242 -1.44998e-21)
(0.97087 -0.00208606 -2.42081e-21)
(0.999503 -0.0487661 1.71817e-21)
(0.995775 -0.0214065 -2.29712e-22)
(0.999281 -9.2083e-05 5.23294e-24)
(0.993648 -0.0345524 9.54984e-22)
(1.03579 -0.118213 -6.60974e-22)
(0.974733 0.063765 6.12252e-20)
(1.21426 0.0185002 7.72984e-21)
(0.985885 -0.0184578 -2.07872e-21)
(1.01644 0.0267522 -4.26267e-20)
(0.968816 0.0469245 -7.63936e-21)
(0.993943 -0.0388603 2.2898e-22)
(1.00055 -0.000216252 1.64415e-23)
(1.00526 -0.0570546 -1.35274e-21)
(0.997316 0.0409449 1.09424e-20)
(1.19239 -0.117406 4.9368e-22)
(0.981147 0.0217473 -6.35878e-20)
(1.00005 -6.32948e-05 3.61193e-25)
(0.970802 -0.0300202 2.27848e-21)
(1.03608 0.0948481 4.63227e-21)
(0.999529 0.0202447 5.88814e-20)
(1.02465 -0.0546687 5.41612e-23)
(0.986516 -0.0231853 1.24868e-21)
(0.956806 0.0681229 4.87675e-20)
(1.18414 -0.0609624 -1.17557e-21)
(1.18545 -0.0362022 -3.3193e-21)
(0.980224 0.0616722 4.24165e-20)
(0.951438 0.0424715 -4.61103e-21)
(0.993012 -0.0401796 -6.33338e-22)
(1.03479 0.0967349 -2.92943e-20)
(1.11265 -0.00693583 -1.4845e-20)
(1.00462 0.0252306 -7.70578e-20)
(1.04856 0.0582807 2.20709e-20)
(1.00057 -0.000161921 -2.26045e-23)
(1.22055 0.0203052 -6.75232e-21)
(1.06781 0.0617978 1.32994e-20)
(0.996851 -0.000634824 3.1983e-22)
(1.00188 -0.0770307 -5.90492e-22)
(1.18827 0.0187458 -5.92818e-21)
(1.10825 -0.138156 -5.12832e-22)
(1.17545 0.0347069 1.50982e-20)
(1.13767 -0.0258736 -8.25401e-21)
(1.00011 -0.000132479 2.97534e-25)
(0.999775 -0.00260939 7.64003e-23)
(0.987273 0.0725307 -7.55839e-20)
(1.00138 -0.0104155 -3.38387e-23)
(1.01002 -0.0917374 -1.50669e-21)
(0.995538 -0.0514263 1.97167e-22)
(1.15361 0.0947143 -1.57327e-20)
(0.972166 -0.00448635 -4.01837e-22)
(1.02584 0.0860935 2.80528e-20)
(1.15269 0.0106214 2.01677e-20)
(0.997752 -0.0491815 1.08231e-21)
(0.958012 -0.00620084 -1.55274e-21)
(1.07666 0.0612828 2.40047e-21)
(1.15101 0.0715597 1.39684e-20)
(1.00007 -0.000135838 -6.11507e-25)
(0.983701 0.0457655 6.31778e-20)
(1.03397 0.0570676 9.61783e-21)
(0.992613 0.0143688 -1.55102e-20)
(1.17965 -0.0861219 1.51614e-21)
(0.999391 -8.7276e-05 3.42297e-23)
(0.957637 0.0656751 -3.20103e-21)
(0.997877 -0.00398346 -2.92412e-22)
(0.99686 -0.0380422 3.73874e-22)
(1.15658 0.0700445 -5.83968e-21)
(1.19332 0.0132062 1.93112e-21)
(0.988405 -0.0404429 -1.81355e-21)
(1.18316 -0.0691984 -4.14058e-21)
(1.02037 0.0299314 1.09686e-20)
(0.95123 0.00499186 4.02364e-20)
(1.00865 0.0661448 -5.82101e-20)
(1.13173 0.0160964 -2.21225e-20)
(0.913363 0.0186385 5.42239e-21)
(1.0003 -1.6711e-05 3.61594e-25)
(0.994196 -0.0211669 -2.90214e-22)
(1.00009 0.0146007 7.78756e-20)
(1.14628 -0.119455 -1.37047e-22)
(1.06742 0.0588827 -3.13762e-20)
(0.991286 -0.0300871 -8.39597e-22)
(0.997647 0.0591743 5.38816e-20)
(1.14026 -0.00319315 1.2827e-20)
(1.00024 -0.00282661 2.07602e-23)
(1.13607 -0.00674588 -1.1231e-20)
(1.03789 0.0490388 -4.60524e-20)
(1.11685 -0.123261 7.22936e-23)
(0.972685 0.00664539 -1.15571e-20)
(1.04797 0.086802 6.98992e-21)
(0.999465 -0.000287331 -7.76754e-24)
(1.02764 -0.015011 -3.47031e-21)
(1.10106 0.0766154 1.70364e-20)
(1.0881 -4.44143e-05 3.89682e-20)
(0.997483 -0.000138995 -3.78458e-22)
(1.04523 0.0926335 -5.13787e-20)
(1.01056 -0.035514 -1.17988e-23)
(0.915796 0.0447842 -3.09798e-21)
(1.01844 -0.0742229 -1.76654e-21)
(0.975922 -0.011327 9.2196e-22)
(0.986221 -0.000863694 -2.62271e-21)
(1.00956 0.0684728 6.50381e-20)
(1.04344 0.0809467 -7.74427e-20)
(0.973422 -0.00286117 1.04271e-21)
(1.0753 0.0566991 8.63864e-21)
(0.985664 0.0612078 -1.84326e-20)
(1.00146 -0.0112033 -1.34285e-23)
(1.03669 0.00448774 1.14309e-20)
(1.01961 0.0123665 -3.12054e-20)
(0.909274 0.0271466 3.58268e-20)
(0.998167 -0.00333534 9.13974e-23)
(1.13539 0.0773596 -3.07804e-20)
(1.12911 -0.0451597 -4.57188e-21)
(0.960253 -0.0157332 -1.00812e-21)
(0.999599 -6.22872e-05 8.12385e-24)
(0.999726 0.00864568 4.66477e-20)
(1.08173 0.112068 1.57483e-20)
(1.19489 -0.00602343 -3.51483e-20)
(0.99345 0.0723869 -1.95502e-20)
(1.12754 0.0187775 1.12443e-20)
(0.98431 -0.0240675 8.71073e-22)
(1.0797 0.0945962 -1.21377e-20)
(1.08827 -0.00140548 -7.29138e-21)
(1.12461 0.032846 2.01736e-20)
(0.916464 0.0289399 -9.35085e-20)
(1.02001 -0.0650528 4.09003e-22)
(1.16401 0.062976 7.75298e-21)
(0.991639 0.0171656 -4.06316e-20)
(0.979375 -0.0392401 1.99449e-21)
(1.10782 -0.0147588 1.09433e-21)
(1.04661 -0.107089 1.58604e-21)
(1.10326 0.0730856 -7.51795e-21)
(0.993075 -0.000214907 -3.90938e-21)
(1.07844 0.00679928 -6.30015e-21)
(1.19584 0.00024375 1.49779e-20)
(1.16614 0.0585339 2.01135e-20)
(1.00106 -0.00359923 -3.56942e-23)
(1.07096 0.00523776 5.72831e-20)
(0.997009 0.0140115 -3.89351e-20)
(1.03962 0.0346337 8.30692e-20)
(1.10871 -0.134593 -1.72941e-21)
(0.99661 -0.0202123 5.04226e-22)
(0.957578 0.0394533 -3.19546e-20)
(0.951959 0.0160909 -8.25264e-20)
(0.998199 -0.00532013 -6.02881e-23)
(0.971992 -0.0293306 1.07849e-21)
(1.0139 0.0502929 8.61068e-21)
(1.01324 -0.096132 -1.20618e-21)
(1.06834 -0.0620816 -3.58712e-21)
(1.07635 0.10461 5.05288e-20)
(0.988046 -0.000596291 3.27002e-21)
(0.902602 0.0247545 6.0726e-20)
(1.02581 -0.0489851 7.79901e-23)
(1.12695 0.0831466 9.55502e-21)
(0.993411 -0.00787217 1.3599e-22)
(0.995189 0.0131602 -1.65938e-20)
(1.05056 0.0847841 -1.44543e-20)
(1.06481 -0.0155238 -1.07008e-20)
(1.07837 -0.0675424 1.46054e-21)
(1.19288 -0.0278883 -7.25556e-21)
(1.17546 0.0437084 2.89056e-21)
(0.999883 -0.00398869 -4.90625e-24)
(1.01151 0.0414877 -1.59386e-20)
(1.22923 -0.0425917 -8.04992e-21)
(1.08554 0.0494061 3.84071e-20)
(0.918814 0.0467076 9.35195e-20)
(1.18823 -0.0832812 -1.53206e-21)
(1.05211 -0.0565753 5.20243e-21)
(1.00043 -0.00642105 -9.75088e-23)
(1.20383 0.0545 1.97801e-20)
(1.20533 0.00955125 9.25026e-21)
(0.983641 -0.0190014 3.66142e-21)
(1.06449 0.0955998 -4.50155e-21)
(1.00007 -0.0010778 -2.46874e-23)
(0.983187 -0.031842 -4.41e-22)
(1.01134 -0.0106474 1.53436e-21)
(1.17779 -0.0564239 -6.77086e-22)
(0.994478 -0.0331955 8.2115e-22)
(0.999668 -0.000120496 -2.81553e-24)
(0.993946 -0.0426375 2.27642e-21)
(1.16549 0.0730576 -1.0152e-20)
(1.11711 -0.13006 -3.13078e-22)
(1.03607 -0.0516823 2.09552e-22)
(0.973977 -0.0209117 -2.15591e-21)
(1.18171 0.0177484 -1.94215e-20)
(1.13271 -0.0230602 1.23016e-20)
(0.984598 -0.0403967 -9.71422e-22)
(0.955485 -0.0086935 4.91771e-21)
(1.00084 -0.00377216 4.73088e-24)
(1.09747 -0.060731 -9.11721e-21)
(1.021 -0.103464 -1.65721e-22)
(1.00911 -0.00230352 -3.16348e-22)
(1.02706 -0.0522228 -8.74123e-22)
(1.14713 0.0682318 -2.17112e-20)
(1.04111 0.0321765 -5.09329e-20)
(1.16227 0.00542427 4.57853e-21)
(0.999423 -0.000249522 -3.18826e-23)
(0.95239 0.0719456 -7.06701e-20)
(1.00923 -0.00123959 -1.19644e-21)
(1.00001 -0.00116699 2.9706e-23)
(1.03 -0.00795813 2.97728e-21)
(0.974761 -0.029399 -1.72474e-21)
(1.00944 -0.0672588 1.53952e-22)
(0.969249 0.0409835 -3.81181e-20)
(1.01881 -0.0403708 -8.66843e-23)
(1.10889 -0.00612796 -6.61067e-21)
(1.01784 -0.0898994 2.30836e-21)
(1.01566 -0.0914025 -3.23097e-21)
(1.0788 0.101792 -3.50407e-20)
(0.99832 -0.0384548 -5.45349e-22)
(0.99711 -0.059259 1.06209e-21)
(1.00318 -0.075803 1.22609e-21)
(0.999631 -3.95271e-05 -1.61755e-23)
(1.13401 -0.0743476 6.12713e-21)
(0.945153 0.0693315 -6.82502e-21)
(1.05783 -0.126607 6.12456e-22)
(0.97374 -0.0364674 -4.30261e-22)
(1.06421 0.0916518 -6.26952e-22)
(0.98903 -0.0382179 -1.90451e-22)
(1.04847 0.0548847 -1.83868e-20)
(1.13998 0.0995562 -3.37461e-21)
(0.997539 -0.00426982 4.47399e-22)
(0.998511 -0.000218138 9.06879e-23)
(1.03097 0.0520543 5.64135e-21)
(0.925924 0.0553394 3.05237e-20)
(1.04597 -0.124984 1.93951e-22)
(1.11504 0.108034 5.04058e-21)
(1.17467 0.0764319 -2.84775e-20)
(0.977661 -0.0324676 -7.02566e-22)
(0.977743 -0.0339784 -1.62063e-21)
(1.01502 0.0525286 -2.38216e-21)
(1.07589 -0.00831033 6.77041e-21)
(1.12446 -0.133483 8.60309e-22)
(1.0496 -0.1025 -8.36435e-22)
(0.97646 -0.00178541 9.83611e-23)
(1.04708 -0.0109575 5.49409e-21)
(0.954454 0.0231457 -1.42726e-20)
(1.10823 0.0060665 -3.88721e-20)
(1.00028 -5.60183e-05 -1.29271e-24)
(0.97641 0.0586687 6.62582e-20)
(1.02779 -0.0465911 1.71694e-21)
(1.0104 -0.0684426 1.71488e-21)
(1.03861 0.0939098 -2.68181e-20)
(1.01351 -0.0175492 1.36871e-21)
(0.992828 -0.00757794 -4.02413e-22)
(0.9995 -0.000398137 -1.54619e-23)
(1.12102 -0.0546393 5.2918e-21)
(0.97483 -0.0163872 -1.80666e-21)
(1.00029 -2.3576e-05 -9.22337e-25)
(1.11734 0.109947 -1.23839e-20)
(1.19478 -0.110767 5.35725e-22)
(1.00994 0.0403012 -2.74726e-20)
(0.999283 -0.000128739 1.21759e-23)
(1.00031 -0.00336091 -5.64357e-24)
(0.988284 -0.0391903 -8.58732e-22)
(1.00002 -4.90862e-05 -2.78354e-26)
(1.04658 -0.128723 -1.02192e-21)
(1.13898 -0.131706 -2.00011e-22)
(0.999871 -0.00337051 1.73019e-23)
(1.00815 -0.0541555 -4.6378e-22)
(0.955864 -0.0137138 1.53897e-21)
(1.03837 0.0851541 -2.76961e-21)
(0.991999 0.0715253 1.58835e-20)
(0.997833 -0.0036361 9.2454e-23)
(1.00256 -0.000869192 -7.60076e-23)
(1.0007 -0.0719023 -3.442e-21)
(0.988911 0.0653068 5.03607e-20)
(1.00446 -0.0250241 2.13965e-22)
(0.984538 0.0429892 -1.81035e-21)
(0.986875 -0.00982566 -1.58189e-22)
(0.91204 0.037684 -2.55359e-20)
(1.03182 0.0104504 -6.19821e-21)
(1.10494 0.0469819 -4.11343e-20)
(0.933884 0.0450853 -2.78777e-20)
(1.22745 -0.0326368 -4.27393e-22)
(0.992205 -0.00270399 -1.94821e-22)
(1.12298 -0.0443967 4.19137e-21)
(1.00767 -0.0257835 -3.39974e-23)
(0.993654 0.0648388 1.28556e-20)
(1.01409 0.0454582 3.74072e-20)
(0.976937 -0.0074508 1.13065e-21)
(1.20426 -0.0830436 -4.43003e-21)
(1.09638 -0.0193917 -1.1132e-21)
(1.04988 -0.0599495 1.45597e-21)
(0.994876 -0.000336451 -4.11608e-22)
(1.20989 -0.0959552 -2.79774e-21)
(1.00027 -1.43373e-07 -7.08771e-25)
(1.03627 0.0825716 1.67612e-20)
(0.953917 -0.0130317 -6.09617e-21)
(0.996359 -0.047605 -3.64819e-22)
(0.998175 -0.0231717 3.96226e-22)
(1.00688 -0.0436891 1.44949e-21)
(1.12457 0.0792436 2.9483e-21)
(1.15973 0.0100907 -1.75399e-20)
(0.997834 -8.18929e-05 4.45251e-22)
(1.02095 -0.0387714 1.14803e-21)
(0.999912 -9.68866e-05 2.32304e-24)
(0.911524 0.0354667 1.92465e-20)
(0.95776 0.0209409 2.94714e-20)
(0.995778 -0.00106559 -2.19964e-22)
(0.979686 -0.0110396 -1.08241e-21)
(1.02706 -0.0286954 2.06206e-21)
(1.01546 0.0477658 1.60707e-20)
(0.956421 -0.0194516 -2.87689e-21)
(1.17694 0.0798176 -6.24207e-21)
(0.975297 -0.0371631 4.37582e-22)
(1.00555 0.0657824 -1.16975e-21)
(1.10786 0.0502814 -4.66932e-21)
(0.974269 -0.0177339 -1.18587e-21)
(0.907624 0.0203484 -3.8929e-20)
(1.04096 -0.00194076 -5.3027e-21)
(1.01181 0.0695843 -3.48128e-20)
(0.995041 -0.0109779 5.83095e-23)
(1.02236 -0.109763 5.08964e-21)
(0.975921 0.00416425 -9.7002e-20)
(1.01235 -0.0323385 -3.40016e-22)
(0.924675 0.0586181 -1.37893e-20)
(1.02236 0.0556613 2.05693e-21)
(0.913113 0.0225944 -9.40723e-21)
(0.992701 -0.00276386 1.14632e-22)
(0.99131 -0.000665363 1.03834e-21)
(1.02369 -0.0697178 -3.35025e-22)
(1.13262 -0.0355804 -2.03528e-20)
(1.01259 -0.0174395 -1.5028e-21)
(1.02298 -0.063003 -9.24745e-23)
(1.00882 0.0615836 3.16732e-21)
(1.00488 0.0711454 1.07128e-20)
(1.03327 0.00156223 7.3339e-24)
(0.991 0.0637208 -3.59658e-20)
(0.931355 0.0620402 7.56805e-21)
(1.10579 0.0882424 3.11658e-20)
(0.998661 0.00974004 -6.66265e-20)
(1.03662 0.0266255 -1.59146e-20)
(1.00454 -0.0134659 2.33507e-22)
(1.02878 0.0535677 -1.84298e-21)
(0.995976 -0.0588786 -9.17159e-22)
(0.976462 -0.0362812 1.14739e-21)
(0.99903 -0.00106185 1.21426e-23)
(1.04498 -0.0598109 -3.68203e-21)
(1.08738 -0.115893 -2.3147e-22)
(1.06516 0.0315506 1.37932e-20)
(1.06531 -0.00631149 1.30284e-20)
(1.00269 0.0241612 5.5231e-21)
(1.00845 -0.0375812 5.28241e-22)
(1.09892 -0.0117767 6.38683e-21)
(1.00408 0.0194358 -6.4659e-21)
(1.00864 -0.0270448 -2.61482e-22)
(1.07579 -0.0705524 -3.21993e-21)
(0.999942 -0.000118482 -5.57111e-25)
(1.0004 -0.000187809 -2.87041e-24)
(1.06424 0.0288441 -1.90261e-23)
(0.997106 -0.0510867 -1.06491e-21)
(0.980594 -0.0338524 1.75698e-21)
(1.00044 -0.000175244 4.58344e-24)
(1.00017 -0.00235752 1.06464e-23)
(1.09613 -0.022681 -1.9903e-21)
(0.999436 -7.86717e-05 -2.05027e-23)
(1.20548 0.0360512 -9.2973e-22)
(0.909833 0.0293917 4.91839e-20)
(1.11057 0.109796 1.87241e-21)
(1.09136 0.0577665 -1.09179e-21)
(0.972786 -0.00742134 -1.83604e-21)
(1.02343 0.0740262 1.28014e-20)
(1.19801 0.059017 -9.93673e-21)
(1.00474 -0.023334 -1.21333e-23)
(0.980333 -0.0121025 -1.02243e-21)
(0.998159 -0.00309205 6.26698e-25)
(0.999451 -0.000361659 8.72041e-24)
(1.00156 -0.00380338 1.5411e-23)
(0.998745 -0.0246167 3.62208e-22)
(1.03389 -0.109504 2.19118e-21)
(1.07915 0.0710098 4.41071e-20)
(1.15431 -0.0361791 4.15325e-21)
(0.963558 -0.00387202 3.95232e-22)
(0.999917 -5.90923e-05 -6.51857e-25)
(1.00168 0.0406387 3.66821e-20)
(1.20922 -0.0167261 -1.34782e-20)
(1.21402 -0.0615806 -2.06563e-21)
(1.01416 -0.0332252 3.99991e-22)
(1.17955 0.0592487 1.34892e-20)
(1.04352 -0.0620591 6.36924e-22)
(0.98088 -0.00094975 -3.04138e-22)
(1.00292 0.0184945 3.25981e-20)
(0.976223 0.000931273 -1.23652e-19)
(1.0522 0.103399 -3.58639e-20)
(0.987927 -0.000458428 -2.21398e-21)
(1.05016 0.102702 2.77146e-20)
(0.971175 -0.00559528 7.4397e-22)
(0.991037 -0.0357557 -1.06785e-21)
(1.09877 0.102774 -3.46098e-20)
(1.00025 -6.85276e-05 -2.25433e-24)
(0.993589 -0.0236226 -1.83166e-22)
(1.13473 0.0814305 1.04803e-20)
(1.10279 0.0799631 3.6381e-20)
(0.97539 -0.018957 -3.19228e-22)
(1.01829 0.047851 2.45141e-21)
(0.972014 0.0749757 -3.12194e-21)
(1.0129 0.0227539 -7.53772e-20)
(0.973449 -0.0301512 2.65232e-21)
(0.956586 -0.00852982 -2.27026e-21)
(1.03889 -0.0489149 9.60602e-22)
(1.09216 -0.00129919 1.08524e-21)
(1.0184 0.0103954 -1.85792e-20)
(0.996219 -0.00137634 -7.0113e-23)
(0.97626 0.0089102 -3.62274e-20)
(0.996281 -0.0363541 1.97231e-21)
(1.02587 -0.109657 -3.37252e-21)
(1.12043 -0.039784 4.39284e-21)
(0.949971 0.073391 1.00505e-19)
(1.0801 0.0750909 -3.64582e-20)
(1.01175 0.0456397 -3.93034e-20)
(1.14665 -0.127361 3.3307e-23)
(0.958993 0.00242335 -5.45608e-20)
(0.976263 -0.016139 1.82684e-21)
(0.991997 -0.0344514 7.66797e-22)
(0.923376 0.0111223 1.88254e-20)
(1.06216 -0.0222226 -3.53911e-21)
(1.0343 -0.101626 -4.00629e-22)
(1.0129 0.0643175 -8.02482e-21)
(1.0044 0.0632361 -2.43879e-20)
(0.98441 -0.0307826 -1.59357e-21)
(1.02247 0.01365 -4.20647e-20)
(0.98934 0.0679678 -6.68711e-21)
(1.00503 0.0586592 3.18929e-20)
(1.0312 0.0869696 1.06568e-20)
(1.01007 0.0643488 5.1577e-20)
(1.04552 0.0601965 -2.8599e-20)
(0.989003 -0.00349769 7.5112e-22)
(0.977267 -0.017291 2.11587e-21)
(1.00246 -0.00601488 1.63438e-23)
(1.01155 -0.0900797 3.69259e-21)
(0.993765 0.0188857 -9.40346e-21)
(1.01568 -0.0951594 2.14368e-21)
(1.14976 0.0770321 -9.42213e-22)
(1.12449 0.0431837 -2.56851e-20)
(0.981436 -0.0388889 1.17684e-21)
(1.19916 0.0344291 1.19749e-23)
(1.14059 0.0926199 -1.06096e-20)
(0.991698 0.00884902 -2.83979e-21)
(1.19061 0.0257566 7.47652e-21)
(0.999892 -0.00284358 -7.1204e-24)
(1.04967 -0.0110217 2.16288e-22)
(0.990696 -0.0384778 5.27873e-22)
(1.19193 -0.0573409 1.22463e-22)
(1.20693 -0.0571983 5.13339e-21)
(1.01827 -0.100945 7.39121e-22)
(1.03209 0.0834856 6.02254e-21)
(0.982705 0.0732636 5.30205e-20)
(1.14342 -0.0223547 9.04183e-21)
(0.996449 0.00952969 2.95044e-20)
(0.923941 0.0524875 -3.39549e-20)
(0.997986 -0.000133655 -9.85803e-23)
(1.00279 -0.000900909 1.20351e-23)
(0.997593 -0.00468628 -2.00539e-22)
(0.978034 -0.0077846 4.23244e-22)
(1.06498 0.0669952 -2.27302e-20)
(0.925032 0.0126425 -4.09082e-20)
(1.11021 0.00940742 3.34765e-20)
(1.02456 0.0791935 7.63129e-21)
(0.987257 -0.0190593 -9.85735e-22)
(1.05776 0.0958374 4.73202e-20)
(1.0548 0.10114 1.51067e-20)
(1.18992 -0.102558 -3.34763e-22)
(0.966 -0.0111585 2.05353e-21)
(0.95729 -0.0184778 1.74176e-21)
(1.15335 0.080536 2.73365e-21)
(1.0108 -0.0331526 -6.16455e-25)
(1.15328 -0.0317523 5.8599e-21)
(0.97898 -0.0315834 3.68756e-22)
(0.96506 -0.0316189 -4.01e-21)
(1.01753 0.0665378 5.73994e-20)
(0.993496 -0.00235727 4.00707e-22)
(1.02167 -0.0443348 2.02768e-22)
(1.00596 0.0700527 2.66619e-20)
(1.19723 0.0272866 3.39589e-20)
(0.955541 0.0628312 1.15501e-20)
(1.01446 -0.0649281 -6.44189e-22)
(1.03551 0.00899298 2.03809e-20)
(1.19882 -0.0618311 -4.54992e-21)
(1.00203 -0.0538513 3.63526e-22)
(0.978358 0.00691644 -1.33725e-20)
(0.987652 0.000554401 8.028e-20)
(0.991402 0.0226335 -1.4592e-20)
(0.996601 -0.0262556 -9.65071e-22)
(0.943363 0.0153856 4.51215e-20)
(0.974769 -0.0278375 1.36866e-21)
(0.980811 0.055124 1.60541e-21)
(1.09626 -0.0494986 -2.81144e-21)
(0.990114 0.0348775 -8.29015e-21)
(0.988483 -0.0368039 6.74361e-22)
(1.00006 -0.000175247 3.6139e-25)
(0.989717 0.0306631 2.74587e-20)
(0.978912 0.0496817 3.1686e-20)
(0.982623 0.05973 -5.0786e-20)
(0.990167 0.0266416 -3.20031e-20)
(1.05931 0.00481305 -7.43902e-20)
(1.10555 -0.0127803 -6.28189e-22)
(1.05587 0.0581888 -5.61611e-20)
(1.03201 -0.0984597 8.7553e-22)
(0.996085 0.0174568 9.63221e-20)
(1.01811 0.0428661 -4.89059e-20)
(1.2034 -0.0204647 1.644e-20)
(1.06841 -0.0081473 -1.37218e-20)
(0.98933 -0.00332938 4.26563e-22)
(1.23317 -0.0281071 1.6406e-21)
(1.02238 0.0687492 -9.82334e-21)
(0.965013 -0.0252292 1.17799e-22)
(0.969861 -0.00483141 -2.33712e-21)
(0.989782 0.00482625 -1.91379e-20)
(0.986533 0.0377018 -5.86903e-20)
(0.994091 -0.0415636 -9.00047e-22)
(0.992728 0.0406351 4.30445e-20)
(1.02013 -0.106989 1.23337e-21)
(1.17875 0.0540336 -2.23239e-20)
(0.992231 -0.000386983 -9.32213e-22)
(0.98261 0.0406918 -3.29173e-20)
(0.978208 0.0442986 8.35453e-20)
(0.919898 0.0318263 7.60104e-20)
(0.986928 0.0698229 6.92846e-20)
(0.996679 -0.000422655 -1.1078e-22)
(0.987474 -0.0205851 6.4759e-22)
(0.9989 -0.00109528 -1.04619e-22)
(0.999378 -0.056424 -3.29253e-21)
(0.955 0.0498425 -1.64387e-20)
(1.10249 0.064413 -5.25446e-20)
(1.02881 0.0755139 -5.67418e-22)
(0.965334 -0.0304404 2.64613e-21)
(1.03687 0.0291213 5.00556e-20)
(1.02875 -0.0279447 -2.36055e-21)
(0.955038 0.0566465 2.38192e-20)
(1.06803 -0.075812 9.65614e-22)
(0.994266 0.0077985 3.26523e-20)
(0.992487 -0.00038022 -5.52036e-22)
(0.961163 0.0467922 -5.5518e-20)
(0.949278 0.0600696 -6.62301e-20)
(0.986225 -0.0215715 -1.65024e-21)
(1.14774 0.0321425 1.34458e-20)
(0.961738 0.0400739 -5.5439e-20)
(0.996371 -0.000616816 5.24931e-22)
(0.93587 0.0312352 -8.63656e-21)
(1.03676 -0.0546828 -3.9839e-22)
(0.995989 -0.000463804 -1.64531e-22)
(0.965011 -0.012199 -1.43333e-21)
(1.01189 0.0722123 -3.39002e-20)
(1.12275 0.0572339 -3.24756e-20)
(1.00809 -0.0759082 1.68992e-21)
(0.996592 0.0700879 2.71324e-21)
(0.946109 0.0667678 4.3727e-21)
(1.05469 0.0977032 -5.12583e-20)
(1.0439 -0.0080427 -2.66409e-21)
(1.00103 -0.0502172 5.94431e-22)
(1.11913 -0.0497741 -5.73423e-21)
(0.987416 0.0423881 4.83228e-20)
(0.943709 0.0310412 -4.99291e-21)
(0.913648 0.0310904 4.92538e-21)
(1.10129 0.0558093 8.13458e-21)
(1.00076 -0.00809621 1.12802e-23)
(0.974651 -0.00204519 3.02594e-22)
(1.02422 0.0709933 -3.48424e-20)
(1.0018 -0.00625563 -3.86729e-24)
(0.987624 -0.00496416 -7.78952e-24)
(1.00283 -0.00974009 1.29944e-23)
(0.996335 -0.0229062 -4.88226e-22)
(1.06635 -0.111568 6.51843e-22)
(1.13795 -0.11642 1.62804e-22)
(0.972841 0.0593513 -7.38672e-20)
(1.01632 -0.0367154 4.37426e-24)
(0.999166 -0.000881997 7.02266e-23)
(1.02307 0.0448497 -7.48278e-22)
(1.11908 0.0797884 2.62262e-20)
(1.0019 -0.00989944 -1.01056e-23)
(1.15828 0.0638732 -1.67928e-20)
(1.00153 -0.0010604 -6.12297e-24)
(1.11495 0.0435241 2.78232e-21)
(1.01278 0.0239724 5.27684e-20)
(0.990907 0.0390353 -8.34734e-20)
(1.11054 -0.119208 8.22868e-24)
(1.13383 0.0326275 -1.78894e-20)
(0.995731 -0.0112043 -1.00374e-22)
(1.09266 -0.0768588 -6.73866e-22)
(0.996035 -0.00165997 -3.21346e-23)
(0.985125 0.0478285 -8.56081e-20)
(0.971553 0.0579063 2.29121e-20)
(1.1635 -0.122655 -4.06353e-22)
(1.13193 -0.128487 4.95652e-23)
(1.10218 -0.129898 1.62497e-21)
(1.0262 -0.0645267 1.22634e-22)
(0.994008 0.0673263 5.76057e-21)
(1.02836 -0.0588994 -1.44125e-22)
(1.08323 -0.105319 -1.23672e-22)
(1.055 -0.12163 -7.03068e-22)
(1.08769 -0.0674966 3.43168e-21)
(0.928064 0.0316167 4.18702e-20)
(1.10327 -0.143306 -3.72765e-21)
(1.19066 0.00539492 -2.26661e-21)
(0.986698 0.014085 1.66979e-20)
(0.994099 -0.000471248 5.34419e-22)
(1.15116 0.0149572 8.2447e-21)
(1.03018 -0.0530012 6.43556e-22)
(1.05547 -0.111889 1.10612e-21)
(0.996109 -0.0011021 1.8128e-23)
(0.999855 -0.0024133 -2.5176e-23)
(0.931606 0.0386682 -7.14213e-20)
(1.04349 0.0313326 3.86452e-20)
(1.15994 -0.129211 -9.89457e-23)
(1.23118 -0.00394097 3.60692e-21)
(1.04459 0.0529384 -2.07736e-20)
(0.995259 0.0396658 -6.80572e-21)
(1.02001 0.0455423 1.49597e-20)
(1.17469 -0.0725447 4.56871e-21)
(0.98926 -0.0411437 1.97106e-21)
(0.997171 -0.034865 -5.08529e-22)
(0.99162 -0.0372306 -1.41361e-22)
(1.02876 0.0462945 -5.00881e-20)
(0.971968 -0.00598248 2.09327e-21)
(1.00454 -0.0511208 7.83927e-22)
(0.999646 -3.95366e-05 4.50029e-24)
(0.978612 -0.0169432 -3.56063e-21)
(0.998023 -0.000640677 8.71954e-24)
(1.08214 -0.117775 1.99027e-22)
(1.00799 0.0702947 -3.17014e-20)
(1.03903 -0.101522 4.55721e-22)
(0.988057 0.0596425 3.0869e-21)
(0.993004 0.0594073 -7.85802e-20)
(0.976407 -0.0348122 -2.07317e-22)
(0.990574 -0.023013 1.58808e-22)
(0.923317 0.0391429 3.55938e-20)
(1.04138 0.0549539 1.23939e-20)
(1.13821 -0.0318364 1.97404e-20)
(0.989884 -0.0255311 -7.6797e-22)
(1.05766 0.0921944 1.65749e-20)
(1.00001 -0.0468351 -6.4608e-22)
(1.06288 0.0569808 6.06116e-21)
(0.931424 0.0425227 1.71506e-20)
(1.08353 0.106336 -3.59239e-20)
(0.973795 -0.00656692 1.8266e-21)
(0.989245 -0.0281262 -1.53386e-21)
(1.00568 0.0396416 -5.56249e-20)
(0.981767 -0.0366844 3.218e-21)
(1.02134 -0.0911155 -3.6142e-21)
(1.00409 -0.0532582 -7.15984e-22)
(0.966719 0.0500915 2.1327e-20)
(0.985944 -0.0313109 2.29366e-21)
(1.20255 -0.0263985 4.03027e-21)
(1.06088 0.0900271 3.6372e-20)
(1.10557 0.0999261 2.37119e-20)
(1.00277 0.00879875 1.64374e-20)
(1.02162 -0.0467283 4.48174e-24)
(1.08992 0.101107 2.76665e-20)
(1.02268 -0.0599269 2.49095e-22)
(0.987345 0.0175078 -5.80817e-21)
(1.04714 -0.115989 -2.78958e-21)
(1.14858 0.0953823 1.9805e-20)
(1.01735 -0.0603579 -2.04483e-22)
(1.01191 -0.0602334 -4.81855e-22)
(0.99906 -0.000915267 -2.88538e-23)
(0.997839 -0.000625026 8.55011e-24)
(1.00099 -0.00012112 1.34317e-23)
(0.968139 0.067606 5.56692e-20)
(1.0138 -0.0675459 -9.59468e-22)
(1.0522 0.0605859 9.09464e-21)
(1.18039 0.0498931 -3.23752e-22)
(1.0862 -0.0849669 2.42957e-21)
(1.05523 -0.102529 1.72542e-21)
(1.10054 0.0686563 4.82042e-20)
(0.923071 0.0156716 4.29524e-20)
(0.961554 0.0650982 -2.59562e-20)
(1.0797 -0.0944525 8.33729e-22)
(1.1101 0.0679243 1.61791e-20)
(1.03146 -0.0474625 -2.19698e-21)
(1.19463 0.0393182 -8.03559e-21)
(0.971918 -0.00394169 8.32014e-23)
(1.11996 0.0357384 -2.12674e-20)
(0.969502 -0.0293173 -1.81025e-21)
(1.00134 -0.00580797 -3.56645e-24)
(1.01745 0.00580544 9.11974e-21)
(0.994085 -0.0488898 3.46365e-21)
(1.01251 -0.00874721 -1.37588e-21)
(0.967786 0.0377403 -2.64087e-20)
(1.0189 0.0735627 -3.83397e-20)
(0.984336 0.0687419 -5.50181e-20)
(1.0448 -0.00411248 -4.3594e-21)
(1.2068 -0.0486536 -1.21226e-20)
(0.993707 -0.0197995 3.22818e-22)
(1.09958 0.0604334 1.58962e-20)
(1.08247 -0.05938 8.00518e-22)
(1.0003 -6.98279e-05 3.87288e-24)
(0.958491 0.0101295 -3.17966e-20)
(1.1771 0.0705203 1.47326e-20)
(1.11816 0.0712374 -9.87707e-21)
(1.2162 -0.00202928 -3.4822e-21)
(0.999683 -2.14133e-05 -6.09768e-24)
(0.998211 -0.0202593 6.13974e-22)
(1.00161 -0.00126676 3.22437e-23)
(1.12665 0.0746482 -2.05618e-20)
(1.00028 -0.001322 -7.11303e-26)
(0.996111 -0.0331881 -8.92799e-22)
(1.01589 -0.0320147 2.62726e-22)
(0.994962 -0.0443507 -5.46892e-22)
(0.951272 0.0303899 -6.77262e-20)
(0.99989 -4.50428e-05 1.25398e-24)
(1.00146 -0.055927 -5.46659e-22)
(0.958267 -0.0122623 -1.29944e-21)
(0.961034 0.00246349 4.22394e-20)
(1.01692 -0.00173212 -6.37027e-22)
(0.999984 -6.23561e-05 -1.10373e-25)
(1.09832 -0.117858 -1.10837e-22)
(1.09111 0.000908072 -1.86522e-20)
(1.03448 0.0769503 -2.18028e-20)
(0.988814 -0.0210678 4.11988e-22)
(0.991311 -0.0205318 -3.497e-22)
(1.01277 -0.0442572 -1.58349e-22)
(1.02751 0.0702548 6.20695e-20)
(0.990312 -0.0270391 6.86105e-22)
(1.09957 0.047901 1.29832e-20)
(1.15231 -0.113555 -2.10693e-22)
(1.12401 -0.118538 3.50937e-22)
(1.10259 -0.00326409 -1.42025e-20)
(1.04799 0.104399 2.29942e-21)
(1.10616 -0.00832634 9.56287e-21)
(1.11623 0.0759134 -4.10523e-21)
(0.995804 -0.000784584 1.66627e-23)
(1.02131 0.0796456 5.99352e-21)
(0.945233 0.0530146 5.96376e-20)
(0.987475 -0.0115653 4.72962e-22)
(1.06759 0.0895023 -9.77877e-22)
(1.00089 -0.0640299 2.57714e-21)
(0.937279 0.0452538 3.77973e-20)
(0.949147 0.0458588 -2.35326e-21)
(1.06347 -0.106869 -1.19166e-21)
(1.19621 0.0460557 -1.16761e-21)
(1.2133 0.0442866 -4.69295e-21)
(1.05165 0.0526287 2.70474e-20)
(1.00005 -0.000708667 4.04938e-24)
(0.993328 0.0214861 6.49759e-20)
(0.933663 0.00720206 1.59572e-20)
(0.99303 -0.00231607 1.33013e-22)
(1.15567 0.0898166 -1.11168e-20)
(1.10315 0.103029 -3.60751e-20)
(1.00078 -0.00299034 3.81603e-24)
(1.00077 -0.000169904 3.08448e-23)
(0.984147 -0.0129285 2.03219e-21)
(0.919027 0.0234221 1.26588e-20)
(1.00135 -0.0245453 5.53461e-22)
(1.00771 -0.0634542 -8.75673e-22)
(0.990738 0.0609623 1.85906e-20)
(1.00346 -0.0104354 -3.47948e-23)
(1.05546 0.0542573 -7.23074e-21)
(0.98284 0.0565754 4.36318e-21)
(0.986694 -0.0287584 -1.69862e-22)
(0.962571 0.0561059 6.91806e-20)
(0.986113 -0.037805 2.46189e-21)
(0.990959 -0.0244829 6.61411e-22)
(0.98138 0.0517997 -9.50958e-21)
(1.09817 0.0523802 -2.52862e-20)
(1.00132 0.00596659 -3.52221e-20)
(0.995585 -0.000697435 -1.5723e-22)
(0.985083 0.0741783 -7.75487e-21)
(1.13095 0.0839517 4.04364e-20)
(0.990988 0.0326194 -5.3606e-21)
(1.01098 -0.0866549 8.63728e-22)
(1.00078 -0.0215204 1.85261e-22)
(1.1519 0.0857518 -1.12153e-21)
(0.958177 0.0168348 7.17184e-21)
(0.979928 0.0464347 -6.10908e-20)
(0.956324 0.0354913 -5.9519e-21)
(0.989356 0.0215735 2.3335e-20)
(1.21399 -0.0432187 9.1486e-21)
(0.96731 -0.0139151 2.51486e-21)
(1.1894 -0.00942818 4.09896e-21)
(1.0412 0.0472395 2.14735e-20)
(0.991 0.0285929 9.70171e-20)
(0.939978 0.0287529 -2.12347e-20)
(0.980428 -0.0322618 -1.10551e-21)
(1.06243 0.00958297 -3.91486e-20)
(0.975558 0.000757662 3.54491e-20)
(1.006 0.0612357 7.8802e-21)
(1.00084 -0.00265076 -4.59371e-24)
(0.965491 -0.0237305 2.54497e-21)
(0.981464 -0.0101171 -5.4252e-22)
(1.148 0.0629532 2.24163e-21)
(1.09778 -0.0801598 -6.13747e-22)
(0.981443 0.000864379 1.56246e-20)
(1.07934 0.0252544 -2.12438e-20)
(0.998799 0.0131059 -4.00469e-20)
(1.10451 -0.00108256 1.4956e-20)
(1.09304 -0.0706492 -4.34669e-21)
(0.991699 0.0249267 1.26834e-20)
(1.18531 -0.0443795 -2.38337e-21)
(1.0252 0.00872533 -2.36515e-20)
(1.08845 -0.109194 -1.46989e-23)
(1.17886 0.011659 -1.12155e-21)
(1.00359 -0.028515 3.71435e-22)
(1.07876 -0.107697 -2.90147e-23)
(1.01368 -0.0814778 -3.46861e-21)
(0.956456 0.00420275 -4.26748e-20)
(1.01081 -0.0771077 -2.99799e-21)
(0.989433 -0.0355846 -7.16836e-23)
(1.17015 -0.0595734 4.52715e-21)
(1.10652 0.0421671 4.95456e-20)
(1.17967 0.0295302 1.06555e-20)
(0.987048 -0.0302346 -1.67311e-21)
(1.12763 -0.0256885 1.78039e-21)
(1.0492 -0.0525874 -2.23437e-21)
(1.0274 -0.0900553 -1.01487e-21)
(1.03127 0.0484587 -2.395e-20)
(1.08021 0.00556099 -2.23914e-20)
(1.01361 0.0409744 -3.222e-20)
(1.15982 -0.115425 1.11653e-22)
(0.988945 0.00118141 -7.9143e-20)
(1.0473 -0.0980554 -4.9335e-22)
(1.0005 -0.00202562 1.80188e-24)
(0.99909 -0.0217029 -9.02437e-22)
(1.02696 -0.0436331 -1.05767e-21)
(1.10371 -0.122238 5.07316e-22)
(1.13112 -0.121752 -2.93187e-22)
(1.00689 -0.0133391 -3.05674e-22)
(1.09696 0.0987749 4.26169e-20)
(0.95707 0.0465688 -1.94374e-22)
(1.14094 0.0751897 1.42516e-20)
(1.13713 -0.013476 -4.29806e-21)
(1.02899 -0.0623814 3.63083e-22)
(1.01729 -0.0862623 -4.55418e-22)
(1.07133 0.0917051 5.13281e-20)
(1.03113 -0.0564168 4.6076e-22)
(0.932248 0.0289849 6.52628e-20)
(1.09292 0.0980123 -4.67715e-20)
(1.01139 -0.00951176 -6.47245e-22)
(0.983693 -0.0218153 -2.11408e-21)
(1.1018 -0.0504864 -7.70541e-21)
(1.08407 -0.0984813 -7.57503e-23)
(0.998881 -0.0346946 1.16498e-21)
(1.02199 -0.0538367 -1.29366e-22)
(1.0875 -0.061661 4.44428e-22)
(1.05818 -0.116667 -6.4589e-23)
(1.09994 0.095044 -3.31561e-20)
(0.94754 0.0287872 1.58827e-20)
(0.974657 0.0443417 -1.00485e-19)
(1.1182 0.102067 -1.91364e-20)
(0.997343 -6.6981e-05 -4.07071e-22)
(0.983423 -0.0331803 1.10933e-21)
(0.997303 -0.000521078 -2.10715e-22)
(0.995989 -0.0188757 -3.04063e-22)
(1.02042 0.0269328 2.82626e-20)
(0.990706 -0.000522251 9.83935e-22)
(1.0348 0.0468842 2.72481e-20)
(1.03997 -0.0934461 3.23277e-22)
(0.991673 -0.0219636 -3.97613e-22)
(0.957073 0.0596801 2.29889e-20)
(0.951442 0.0632207 5.46196e-20)
(1.00067 -0.00217686 -2.429e-24)
(0.98758 0.035161 -1.52401e-20)
(0.977496 0.0558461 3.66461e-20)
(1.1539 0.0604112 2.01655e-20)
(1.02362 -0.0397494 6.66301e-22)
(1.11074 0.0404062 -5.48328e-20)
(1.01414 0.0115825 3.58115e-20)
(0.951165 0.0567109 -1.50854e-20)
(1.05862 0.0517876 1.6326e-20)
(1.06297 -0.0975732 -7.77752e-23)
(0.956919 0.0533358 -5.09886e-20)
(1.09966 -0.00820345 2.52699e-20)
(1.01742 -0.0636521 1.10039e-21)
(1.0118 -0.06291 5.43705e-22)
(1.07414 -0.106 -2.33945e-22)
(0.945199 0.0600917 -7.98472e-21)
(1.03245 -0.0505418 2.04099e-21)
(0.983705 0.0380323 1.98987e-20)
(1.08721 0.0927245 -3.12582e-20)
(0.963852 0.0683277 -1.6004e-20)
(1.07881 -0.0761563 -1.72118e-21)
(1.03929 0.00459178 2.67246e-20)
(1.05716 0.0845447 -6.89817e-21)
(1.05812 -0.107105 2.08484e-22)
(0.979546 0.0410562 -4.34929e-20)
(1.127 -0.0557346 -5.53162e-21)
(0.964028 0.0371358 9.96108e-20)
(1.0007 -0.000198046 -3.60181e-23)
(1.07503 0.0891006 -6.65531e-20)
(1.02315 0.00665698 3.62598e-20)
(1.04726 0.0791603 5.12794e-20)
(1.00164 -0.00693924 1.31214e-24)
(1.18901 -0.021304 2.75643e-21)
(0.998095 -0.00485791 8.34732e-23)
(0.983674 -0.0397226 2.56429e-22)
(1.07079 0.0559004 3.49219e-20)
(0.993632 -0.0316571 -3.62786e-22)
(1.05442 0.0654786 7.33688e-20)
(1.07394 0.0974389 -2.91736e-20)
(0.919522 0.0369165 -6.56273e-20)
(1.05619 -0.0557184 2.29787e-22)
(0.963232 0.0435955 2.93574e-20)
(1.04242 -0.049245 1.47932e-21)
(1.0373 -0.0453867 -9.58936e-22)
(1.18326 0.00478512 2.74752e-20)
(0.988207 0.0396517 5.31763e-20)
(1.17013 0.0459165 7.81908e-21)
(1.17843 -0.0482332 5.35022e-22)
(1.13254 -0.0167593 -3.61439e-21)
(1.02565 0.0762667 6.3589e-21)
(1.00363 -0.0140655 -1.78515e-23)
(0.924388 0.0291804 -4.21401e-21)
(1.00457 -0.00995056 -7.2398e-24)
(1.16074 -0.0696045 -2.26156e-21)
(1.19895 0.0642515 -3.68094e-21)
(0.977879 -0.0122667 -2.06832e-21)
(0.998438 0.00644352 -4.77532e-20)
(1.02041 -0.0683281 -2.98391e-22)
(0.972889 0.0412236 6.4152e-20)
(1.00091 0.0104825 1.34849e-20)
(1.12422 0.027545 -1.22361e-20)
(1.12221 -0.0340397 -6.66227e-21)
(1.14186 0.0701684 -8.36284e-21)
(1.00034 -0.00252976 -1.3228e-23)
(1.11366 -0.0406351 -9.68329e-22)
(0.970126 0.0694222 -3.43638e-20)
(0.997947 -0.0549507 9.48415e-22)
(1.13786 -0.069947 1.93858e-21)
(1.08431 0.0956978 8.68949e-21)
(1.17747 0.0233505 3.0951e-22)
(1.08668 -0.051312 -3.10959e-21)
(1.12713 -0.0321587 3.4724e-21)
(0.986628 -0.0108668 1.3405e-21)
(0.952756 0.00937271 -7.10357e-20)
(0.984126 -0.0293442 1.15189e-21)
(1.18027 -0.000582118 -1.78446e-20)
(1.16876 -0.067464 -2.32077e-21)
(0.968169 -0.0302532 -5.89879e-22)
(0.991578 0.0366383 5.11444e-20)
(0.918004 0.020427 4.47106e-20)
(0.97291 -0.0178463 1.64969e-21)
(1.02196 -0.0950482 1.15653e-21)
(1.00801 -0.00360848 -2.64041e-22)
(1.12892 0.000165122 1.59453e-21)
(1.00091 -0.00207039 -3.46576e-23)
(1.15464 0.0552617 -1.57412e-20)
(0.949048 0.0532011 -1.72873e-20)
(0.96084 0.0533163 -4.51387e-22)
(1.04436 -0.0528788 -2.05005e-21)
(1.11132 0.0351371 3.80471e-20)
(1.00015 -0.000696689 -2.62367e-24)
(0.97491 -0.0325136 1.86182e-21)
(1.0205 0.081836 -4.07538e-20)
(1.02051 -0.0361868 -1.30949e-21)
(1.09193 0.0449986 -1.31912e-20)
(0.979594 -0.0179138 -1.04964e-21)
(0.93281 0.0591383 8.53841e-21)
(1.02858 0.0927656 -1.7754e-20)
(1.02647 -0.0992764 -2.35808e-21)
(1.02421 -0.0426858 -6.04561e-22)
(1.00849 -0.0518073 -5.54161e-22)
(0.92724 0.0486325 -6.06117e-20)
(0.981707 -0.0312875 2.01735e-21)
(0.998861 -0.00253154 -1.4267e-22)
(0.980207 -0.00236908 2.46558e-22)
(1.13714 0.0433676 9.94931e-21)
(1.04173 -0.0975773 -1.00505e-22)
(0.978502 -0.0110348 4.08048e-21)
(1.16431 0.0539618 -7.69783e-21)
(0.959246 0.00436787 -6.22546e-20)
(1.03949 -0.11454 -1.9429e-21)
(0.935846 0.0363048 -1.56732e-20)
(0.911802 0.0456416 -4.32053e-20)
(0.991893 -0.0315694 1.48916e-22)
(1.12599 -0.072176 -3.10701e-21)
(1.00058 -0.00138954 4.80847e-25)
(0.996296 -0.000313699 -6.75692e-23)
(1.07621 -0.0794793 3.15073e-21)
(1.00047 -0.0522929 -1.50247e-21)
(0.927908 0.0364869 2.84512e-20)
(0.983461 -0.0167471 1.63651e-22)
(0.994297 -0.000524491 -1.49994e-22)
(1.0292 0.0319044 1.06709e-20)
(1.01099 -0.0801108 2.61447e-21)
(1.01942 0.0499785 -2.68025e-21)
(0.993022 -0.000333922 -1.05219e-21)
(1.22818 -0.00719304 -3.56199e-21)
(1.03372 0.0895597 1.20488e-20)
(1.01766 0.00339605 2.88071e-20)
(1.01858 -0.0970988 -1.1271e-21)
(1.00261 -0.038767 4.2292e-22)
(1.01386 -0.0847993 4.15587e-22)
(0.999468 0.0398325 -1.26594e-20)
(0.9815 -0.0297912 -1.9929e-21)
(1.07309 0.022445 3.12467e-20)
(0.979271 -0.0362931 2.24233e-21)
(0.994568 -0.0187272 -6.52959e-23)
(0.976208 -0.0317122 -2.10223e-21)
(1.00352 -0.0221439 -1.06851e-22)
(0.997462 -0.00801775 -1.05003e-22)
(1.05012 -0.121352 6.47076e-22)
(1.04935 -0.112021 -2.54664e-21)
(1.19836 -0.0703877 5.42915e-21)
(1.01367 -0.00327686 -7.75686e-22)
(1.14358 0.0307574 1.21384e-20)
(0.997333 -0.00247439 -1.93105e-22)
(0.978863 -0.030079 2.06024e-21)
(1.0238 -0.0887909 1.39629e-21)
(0.984957 -0.0210867 -3.63539e-22)
(1.02536 -0.0578729 -1.55018e-22)
(0.95201 0.0343693 6.41257e-20)
(1.0868 -0.0295671 -4.70647e-21)
(0.998919 -0.0457318 -8.49676e-22)
(1.01656 -0.0392875 2.31927e-22)
(1.00353 0.0389948 1.34642e-20)
(0.997121 -0.000936751 9.63632e-23)
(1.02025 0.0210477 1.13075e-19)
(1.14953 -0.0776725 -1.62638e-21)
(1.20224 0.0223189 -5.72267e-21)
(0.991284 -0.000532475 4.57847e-22)
(1.02141 0.0541817 -2.87092e-20)
(1.06708 0.00704049 5.25565e-20)
(0.972329 -0.0340352 -1.69408e-21)
(1.01987 -0.0586848 -4.98196e-22)
(1.01476 -0.0588549 -2.34614e-22)
(1.05923 0.0598079 3.63391e-21)
(1.00006 -0.000875698 -3.67662e-24)
(1.02055 0.00827799 -1.47257e-20)
(1.00876 0.0725834 2.53093e-20)
(1.01373 -0.0288837 -1.16704e-23)
(1.08732 -0.0791369 6.31021e-22)
(1.12829 0.0245 1.24795e-20)
(1.09054 0.00108195 -1.82592e-20)
(1.03564 -0.0924236 1.8182e-22)
(1.15829 0.0793681 2.82961e-20)
(1.02099 0.0748998 1.67139e-20)
(0.981225 -0.0161953 -2.35448e-21)
(1.02956 0.00380649 3.74912e-20)
(0.973686 -0.0347989 3.23081e-21)
(1.04765 -0.0328387 -1.66958e-21)
(1.04017 0.0240698 2.05244e-20)
(0.952809 0.0693545 -4.85656e-20)
(1.10512 -0.0456251 -7.05118e-21)
(1.00583 -0.0140989 -1.32634e-22)
(0.992285 0.043161 2.67725e-21)
(1.06092 0.0977809 1.40582e-20)
(0.979304 -0.0191828 8.78633e-22)
(0.996228 -0.0551879 1.59906e-22)
(1.05148 -0.132066 -4.31491e-21)
(1.03794 -0.00376792 8.11926e-21)
(0.979 -0.0156341 1.56276e-21)
(0.991201 -0.00449938 1.40928e-22)
(1.00282 0.0305787 -5.26981e-20)
(1.09543 -0.131557 -3.3979e-22)
(1.08116 -0.0871226 -2.59748e-21)
(1.01034 0.0594261 -1.84412e-20)
(1.07447 -0.0958821 -2.10896e-22)
(0.987075 -0.0365676 1.90766e-22)
(1.10984 0.100884 -4.46379e-21)
(0.994228 -0.00197497 -4.92798e-23)
(1.12 0.04067 1.45928e-20)
(1.02795 0.0255056 2.39866e-20)
(1.13602 -0.0540369 1.08848e-20)
(1.04822 0.0911439 6.56765e-20)
(0.992274 -0.0195169 1.49131e-21)
(0.955417 0.0141875 1.23152e-20)
(1.0576 -0.0980106 -4.3978e-22)
(1.00002 -0.000959906 7.21078e-24)
(0.99978 -4.63024e-06 1.45203e-24)
(1.21208 0.0112186 -1.12012e-20)
(1.00038 -0.00145102 -3.14154e-24)
(0.989906 -0.0201175 9.51547e-22)
(1.12422 0.0479053 2.40185e-20)
(1.07021 -0.0789724 1.44655e-22)
(1.00338 -0.0115773 4.06916e-23)
(1.00294 -0.049639 -8.16244e-22)
(0.989111 -0.0225814 -1.24907e-21)
(1.10713 0.0639138 2.04008e-20)
(0.999346 0.00242559 -1.10659e-20)
(0.998801 -0.000405517 8.8841e-23)
(0.985878 -0.0170046 -2.06444e-22)
(1.03375 -0.0449678 1.36852e-21)
(1.05186 0.0634964 -2.35285e-20)
(1.00445 -0.0806853 1.01268e-22)
(0.988046 -0.0236018 -7.51155e-22)
(0.976779 -0.0148113 -9.96823e-22)
(1.10114 -0.0140808 -2.7457e-21)
(1.10431 0.0958727 6.92662e-21)
(0.999995 -0.0250979 -3.00651e-22)
(0.987861 -0.00699662 -7.35999e-22)
(1.15825 -0.0771809 2.22303e-21)
(1.02164 0.0510504 1.51071e-20)
(1.0165 0.0815912 -4.76292e-20)
(1.16612 0.0826112 -9.65935e-21)
(1.02262 0.0225844 -8.06103e-20)
(0.980872 0.0647831 2.56285e-20)
(1.00565 -0.0262947 -8.5e-23)
(1.04453 0.0492252 -5.32604e-20)
(1.08924 -0.000446487 2.77891e-20)
(1.11092 -0.0458296 7.08402e-21)
(0.980897 -0.0175398 3.45074e-21)
(1.08223 -0.0543704 1.32175e-21)
(0.940678 0.00497022 -4.02825e-21)
(1.0182 -0.0353168 -7.17679e-22)
(1.0716 -0.101601 5.23377e-23)
(0.970614 -0.026742 4.56087e-22)
(1.0297 0.0725261 5.56098e-20)
(0.985026 -0.00721794 6.70239e-24)
(1.00055 -0.00500107 -7.00669e-24)
(0.976168 -0.0301783 -5.96944e-22)
(0.97226 -0.0325566 -2.02086e-21)
(0.994439 -0.00236374 -1.96219e-22)
(0.998375 0.00285865 3.47698e-20)
(1.09147 0.0935716 0)
(1.05409 0.0865554 2.71544e-20)
(1.00663 0.0567226 2.69768e-20)
(1.01583 0.010093 -5.46883e-20)
(0.980333 -0.00264793 8.81282e-22)
(1.10148 0.0153411 3.61483e-21)
(1.05219 0.00498552 -3.83428e-20)
(1.18275 -0.00774998 -5.13771e-21)
(0.99955 0.00606903 -2.08047e-20)
(1.115 0.0671965 -6.95008e-22)
(1.09058 0.104778 -1.02777e-20)
(0.999855 -5.26203e-05 -8.50241e-25)
(1.06235 0.0533092 1.53675e-20)
(1.0097 -0.0640897 9.91264e-22)
(1.12305 0.0703166 -1.30595e-20)
(1.07865 0.0905304 5.77466e-21)
(1.04286 -0.116744 3.48326e-21)
(1.10299 -0.00660625 -3.43308e-20)
(1.13065 -0.00537414 -1.31204e-20)
(0.987791 -0.0277329 1.62439e-21)
(0.989776 -0.0047242 1.18673e-22)
(1.2086 0.0240166 -1.74581e-20)
(1.13142 0.0736198 3.50433e-20)
(0.962653 0.0029251 5.98164e-20)
(1.1329 0.0963284 3.6219e-20)
(1.00001 -0.0002601 2.50851e-24)
(1.06718 0.0257974 1.35138e-20)
(0.984763 -0.0163409 1.04666e-22)
(1.08255 0.102655 -2.22204e-20)
(1.10829 0.0724829 -2.63473e-20)
(0.983612 -0.00641467 -1.15784e-21)
(0.985245 -0.0283223 8.85176e-23)
(1.06059 0.0862406 1.57067e-20)
(0.99177 0.0690276 5.84051e-21)
(1.15949 0.0518392 1.3917e-20)
(0.956491 -0.0208869 2.32253e-21)
(0.974563 -0.0138008 2.0474e-21)
(1.08029 0.00830601 7.02455e-20)
(1.03365 0.0250332 -1.63817e-20)
(0.970781 -0.0251711 9.81482e-22)
(1.00723 0.037833 1.681e-20)
(0.977943 -0.0196349 -7.04107e-22)
(1.11567 0.0330534 1.78334e-20)
(1.11123 -0.0581306 1.95865e-21)
(0.983275 0.00149224 9.03733e-20)
(0.999136 -0.00164984 1.72255e-23)
(1.00223 -0.00192683 -2.05227e-23)
(0.994522 -0.00556515 -2.27515e-22)
(0.972339 -0.0127159 -2.49393e-21)
(1.16364 -0.0828686 -3.19585e-21)
(0.978192 -0.00279234 -2.16242e-21)
(1.05059 0.0809379 -1.39402e-21)
(1.01607 0.0793516 2.76521e-20)
(1.01026 -0.000644235 1.23543e-21)
(1.09382 0.0725778 9.23953e-21)
(1.01177 -0.00498193 -5.55178e-22)
(0.98229 -0.00546792 1.87921e-21)
(0.999833 -3.90514e-05 -1.84184e-26)
(1.09657 0.0443669 5.97284e-22)
(1.00171 -0.0226845 -1.57317e-22)
(1.10498 0.107178 -4.72688e-20)
(0.999748 -5.00839e-05 5.85771e-24)
(1.03049 0.0271601 -8.25034e-21)
(0.959484 -0.0110311 4.54223e-21)
(1.00021 0.00632188 2.56331e-20)
(1.20483 -0.0745888 7.00473e-21)
(0.999976 0.00814373 -2.40448e-20)
(0.968019 -0.0246004 -4.45411e-22)
(0.986554 -0.00800685 -2.08942e-22)
(0.998726 -0.000186209 9.38547e-23)
(0.989337 0.0733534 8.12143e-20)
(0.979307 -0.0347931 -2.50446e-21)
(1.18779 0.0373212 -8.53932e-22)
(1.13369 0.0436997 1.98119e-21)
(1.01408 -0.00161649 -3.94143e-22)
(1.00069 0.0122702 3.4475e-21)
(0.985991 -0.00717753 -1.19152e-21)
(1.0178 -0.032819 1.04372e-21)
(0.970293 -0.0115295 -1.38064e-21)
(0.993737 -0.00280187 -2.37103e-22)
(0.98792 0.0123888 6.51903e-22)
(0.994042 -0.00567302 6.63993e-22)
(0.973935 -0.0150668 -7.50805e-22)
(0.982484 -0.0157931 -9.14089e-22)
(0.999937 -0.000155178 8.16643e-25)
(0.979629 -0.00490485 7.9505e-22)
(1.00084 0.0192733 1.38626e-20)
(1.0011 -6.3257e-05 -4.23575e-23)
(0.961949 -0.0216761 -6.04467e-22)
(1.00297 -0.00885736 -3.05113e-23)
(0.998332 -0.00413663 1.39384e-22)
(1.01557 0.0213481 6.84892e-20)
(1.22865 -0.0614672 5.5892e-21)
(1.14813 -0.0122894 -1.02999e-20)
(1.03009 -0.069614 1.00258e-22)
(1.00115 -0.00251283 -4.74519e-23)
(1.00273 -0.0256213 1.31421e-22)
(1.21896 -0.028677 -1.05547e-20)
(0.968431 -0.0101057 3.33305e-21)
(1.0022 -0.00163551 8.89705e-23)
(0.984557 -0.0064077 1.37636e-21)
(1.07734 0.0225297 -1.22939e-20)
(1.00021 -0.000768245 5.54797e-25)
(0.971675 -0.00708929 8.12697e-22)
(1.19904 -0.0447271 5.74495e-21)
(1.12936 0.04066 -4.68781e-20)
(0.99606 0.0680858 9.83144e-21)
(0.982819 -0.00142862 1.75589e-22)
(1.00735 -0.00103771 4.24989e-23)
(0.956895 -0.010627 -2.88856e-22)
(1.00664 -0.0503513 9.52987e-22)
(1.04043 0.078364 -5.23281e-20)
(1.01563 0.0711289 1.39364e-20)
(0.984791 0.00473305 -3.75682e-20)
(0.999727 -4.84185e-05 4.73772e-24)
(1.11262 0.0502857 3.72272e-21)
(0.973566 -0.0254335 -3.19639e-22)
(0.972376 -0.0188056 3.97044e-23)
(1.0969 0.105869 2.27751e-20)
(0.988777 -0.0321748 8.0242e-22)
(0.983227 -0.00555795 2.24632e-22)
(0.979304 -0.00358892 -2.2389e-22)
(0.995644 -0.0141843 7.67423e-23)
(0.9781 -0.0146199 -2.94579e-22)
(0.980297 -0.0153086 -2.61583e-22)
(0.980663 -0.0061158 1.25847e-21)
(1.00303 -0.00639026 1.74645e-22)
(1.02883 -0.00162679 4.18155e-21)
(1.02644 0.00152285 -3.47619e-20)
(1.01548 -0.000752101 1.36761e-21)
(1.06366 0.00203689 5.71041e-20)
(1.08311 -0.0008341 -4.4428e-20)
(1.07148 -0.0022362 3.11675e-20)
(1.07883 0.00234574 -2.32788e-21)
(1.08944 -0.000571278 -3.03573e-20)
(1.04783 0.00267667 4.36476e-23)
(1.0482 -0.00164362 -3.96952e-22)
(1.06065 0.101131 1.04326e-20)
(1.00063 -0.00245894 4.05005e-24)
(0.997643 -0.0261802 -6.12903e-23)
(1.07116 0.0949765 3.62957e-20)
(0.97273 -0.0370326 -2.8051e-21)
(1.0109 0.00768603 1.41893e-20)
(1.02342 0.00346795 -3.55564e-20)
(0.986069 -0.0258552 3.4203e-22)
(0.962526 -0.0200537 8.97512e-22)
(1.00031 -0.000738366 3.66216e-24)
(0.967002 -0.00853697 -2.71132e-22)
(1.2086 -0.00344304 6.21978e-21)
(0.975392 -0.00461576 5.61848e-22)
(0.976198 -0.00330348 -2.30664e-21)
(0.972872 -0.00844933 -7.99698e-22)
(0.977401 -0.00404651 2.86894e-22)
(0.961185 -0.00835139 1.45621e-21)
(0.982671 -0.0288418 1.15145e-21)
(0.980498 -0.00512592 1.06526e-21)
(0.990189 -0.0052727 1.67073e-22)
(0.961054 -0.0273063 -1.95794e-21)
(1.04831 0.0101872 -1.19903e-20)
(0.963776 -0.00761546 1.55525e-21)
(0.995174 -0.00128941 -1.5118e-22)
(0.958628 -0.0138278 2.53599e-21)
(1.00452 -0.0122319 -9.70728e-23)
(0.958574 -0.00923838 2.86155e-21)
(1.01432 0.0618278 3.00257e-20)
(1.01542 0.0432327 3.28739e-20)
(1.10903 0.0592042 -1.13945e-20)
(0.973537 0.0689385 9.00451e-20)
(1.01344 -0.0266863 -5.71533e-22)
(1.10883 -0.0795383 7.48509e-21)
(0.967431 -0.0113462 -1.48355e-21)
(1.00375 -0.00847782 -2.38852e-22)
(0.996913 -0.00798091 -1.77527e-22)
(0.99967 -0.000377704 5.69181e-24)
(0.999758 -3.1368e-05 -2.9734e-25)
(1.1135 0.0586538 2.25532e-20)
(1.17315 0.0665546 2.22197e-20)
(0.999618 -0.000407059 -9.15683e-24)
(1.09925 -0.110945 -3.73828e-24)
(1.09962 -0.00173168 -1.32575e-20)
(1.08187 0.0120157 -5.10025e-22)
(0.999592 -0.0622321 -2.5336e-21)
(0.978955 -0.0020718 6.01509e-22)
(1.01557 -0.0296326 -1.31817e-22)
(0.996485 -0.00743888 -3.17144e-22)
(1.00242 -0.00149442 -1.9184e-22)
(1.00036 -0.00547327 -8.66888e-24)
(0.959623 -0.009496 -9.87995e-22)
(1.0098 -0.0585029 7.46636e-22)
(0.980532 0.00080411 3.70744e-20)
(1.00454 -0.00894541 1.4409e-22)
(1.01017 -0.0558439 -3.70016e-22)
(0.975924 -0.0136892 -1.94738e-21)
(0.980085 -0.029197 -4.74616e-22)
(0.982085 -0.00203686 -9.68477e-22)
(0.979608 -0.00110571 1.58536e-21)
(1.00092 -0.0018317 2.00272e-23)
(0.979907 -0.00388645 -6.0539e-22)
(0.987405 -0.0262282 -1.24794e-21)
(0.962221 -0.00870424 -3.88183e-21)
(1.00227 -0.0597531 -4.64816e-22)
(1.19137 0.0570345 1.1915e-20)
(0.978469 -0.00882202 1.59113e-21)
(1.09587 0.0763826 3.43497e-21)
(0.966317 -0.00681922 1.03205e-21)
(0.9949 -0.00162295 -7.6669e-23)
(1.12113 -0.0767749 1.06113e-20)
(1.01266 0.0058732 -1.49021e-20)
(1.01913 0.0402084 -2.95293e-20)
(1.05357 0.0149228 9.71054e-21)
(1.03462 -0.00171419 -3.27469e-21)
(1.11095 -0.111896 5.71081e-22)
(1.03357 -0.0671344 -2.58346e-22)
(1.14998 -0.105675 1.2539e-21)
(0.984546 -0.0375345 2.69056e-21)
(1.13638 -0.109075 -4.76168e-22)
(0.964958 -0.0210652 -1.78936e-21)
(1.12329 -0.111286 -7.17388e-23)
(0.988451 -0.001406 -3.96337e-22)
(1.0013 -0.0199039 -1.84957e-22)
(0.999867 -0.000145753 -4.85439e-24)
(1.09381 -0.0164891 -3.1808e-21)
(0.990929 -0.000996815 3.89713e-22)
(0.998746 -0.000140318 -1.05925e-22)
(1.0143 -0.0357782 -1.65797e-22)
(0.946411 0.0102506 2.53305e-20)
(0.977667 -0.0209331 6.12429e-22)
(1.06627 -0.121338 1.20841e-21)
(0.962093 0.00935558 9.62255e-21)
(0.966984 0.00257843 3.23353e-20)
(0.976663 -0.00246053 -2.54689e-21)
(0.990311 0.000342647 -1.17438e-20)
(0.992868 0.000372714 1.23977e-20)
(1.037 0.0794577 3.70416e-20)
(1.00133 -0.00856913 -2.55788e-24)
(1.17563 -0.109699 9.31194e-22)
(0.988814 0.000464137 -6.86737e-20)
(0.998152 -0.000474344 5.25267e-24)
(0.999131 -0.00131534 -1.65297e-22)
(1.00799 -0.0238995 1.29913e-22)
(0.971678 -0.01153 -1.64588e-21)
(0.987815 -0.00554684 1.57269e-22)
(1.04253 -0.0562307 2.54361e-21)
(0.973788 -0.0126169 2.8692e-21)
(0.964753 -0.00793052 -2.87826e-22)
(0.968635 -0.00372547 -7.02812e-22)
(1.01082 -0.0435526 1.64273e-22)
(0.999734 -1.44346e-05 -9.43625e-24)
(0.998834 -0.0584203 2.4324e-22)
(0.987361 -0.00626616 -6.31746e-23)
(0.927901 0.0141055 3.73657e-21)
(0.9749 -0.00262607 2.80855e-21)
(0.978387 -0.00306155 5.31694e-22)
(0.93897 0.00733291 -3.77608e-20)
(0.992122 -0.00382773 7.36319e-23)
(0.984784 0.00052293 8.63245e-20)
(0.959144 0.0327013 2.43184e-20)
(1.03356 0.0317219 -2.51438e-20)
(0.976377 -0.00356318 3.32576e-21)
(0.923707 0.0214736 1.00863e-19)
(1.14889 0.00536266 -1.12633e-20)
(1.00453 0.0673149 6.69624e-21)
(1.03709 -0.0335388 2.03686e-21)
(1.00006 -0.0015701 -1.3321e-23)
(1.00386 -0.0205649 -6.8286e-23)
(1.02337 -0.0488177 4.12854e-22)
(1.08549 -0.0253339 3.27487e-21)
(0.999451 0.00425344 9.47856e-20)
(0.995676 -0.00164818 4.20752e-22)
(1.00059 -0.00121976 1.18855e-23)
(0.969787 -0.0102382 -1.76617e-21)
(0.999552 -0.00051382 -3.68759e-23)
(1.15252 -0.131068 -2.50346e-22)
(1.08361 0.0136349 -3.55949e-20)
(0.999564 -0.000372081 1.6022e-23)
(1.02268 0.0254469 3.2783e-21)
(1.00303 -0.0637321 -4.52836e-22)
(0.993798 -0.00640583 -6.02391e-22)
(0.973407 -0.0269685 3.14577e-21)
(0.978545 -0.00224798 6.09999e-22)
(1.16145 0.0830377 1.12353e-20)
(0.991815 -0.00443551 3.80428e-22)
(0.954764 0.0273914 5.55752e-20)
(1.0024 -0.000332167 7.07206e-24)
(0.977271 0.0232955 -7.47321e-20)
(1.0123 -0.0036988 -4.28089e-23)
(0.969662 -0.0150672 7.8652e-23)
(0.999693 -3.8334e-05 6.07725e-24)
(0.955634 -0.00794211 -1.45887e-21)
(0.998868 -0.0189439 -4.18584e-22)
(0.958508 -0.0073168 2.09953e-21)
(1.00208 0.0428028 -1.99281e-20)
(0.989333 0.0441324 -6.12301e-21)
(0.999744 -9.3473e-05 -2.44123e-24)
(0.957236 0.00708152 1.02797e-19)
(0.977437 -0.0293761 -2.13054e-21)
(1.00146 -0.00524214 2.43798e-24)
(1.00402 -0.0405626 1.25034e-21)
(0.974555 0.0384113 -1.22911e-20)
(1.09328 -0.136472 -5.45841e-22)
(0.998293 -0.000485606 1.16209e-24)
(0.999282 -0.00140832 1.0085e-23)
(1.00143 -0.00268702 4.90927e-23)
(1.00055 -0.00179691 -2.99519e-25)
(0.999459 -0.000154727 -1.24217e-24)
(0.998763 -0.00295739 -5.71534e-23)
(0.978386 0.000922233 3.0676e-21)
(0.998979 -0.000324303 7.43542e-23)
(0.995082 -0.00198455 -1.00502e-22)
(1.01908 -0.0428926 -1.05311e-22)
(0.938964 0.0561218 4.68178e-20)
(0.909189 0.0415181 3.62245e-20)
(0.99249 -0.00053873 5.09783e-22)
(0.973507 -0.0317716 -1.43705e-21)
(1.02404 0.0417509 4.94188e-21)
(0.98899 0.000181574 4.3914e-20)
(0.97788 -0.0370511 -3.80345e-21)
(0.968199 -0.00879326 -3.88641e-22)
(0.99983 -0.00015161 -7.72852e-25)
(1.04925 -0.0292804 7.13018e-22)
(0.994439 0.000650848 5.49646e-20)
(1.01228 0.00312755 1.01234e-20)
(1.00114 -0.00222072 2.76102e-23)
(0.974095 -0.00546202 -1.8586e-21)
(0.969625 -0.0242881 -6.32194e-22)
(0.969883 0.0350019 3.80484e-20)
(1.02527 -0.1026 2.39592e-21)
(0.988367 -0.0182528 -1.2881e-22)
(0.985277 -0.0124484 -7.44306e-22)
(0.984576 -0.00808542 5.82238e-22)
(1.01305 -0.047084 1.46654e-22)
(1.01453 0.0383777 5.71445e-20)
(0.99955 -0.000208912 3.12191e-23)
(0.966298 0.0559978 -4.61969e-20)
(0.994874 -0.00235565 -1.66552e-22)
(0.943119 0.0493256 4.65558e-21)
(0.998545 -0.00347302 -2.15028e-23)
(0.96285 0.0620816 1.42965e-20)
(0.976108 -0.00488494 2.1752e-22)
(1.10703 -0.0193514 1.01192e-20)
(1.00005 -0.036019 -2.81811e-22)
(0.999719 -3.17176e-05 -6.41458e-24)
(1.00137 -8.84523e-05 1.94792e-23)
(0.988761 -0.00687281 9.35965e-22)
(0.977794 -0.00989531 -3.50532e-22)
(0.996736 -0.0177323 1.4556e-22)
(1.00074 -0.00150246 -1.09866e-23)
(1.00373 -0.00758902 1.50814e-22)
(0.99442 -0.00119784 -1.67898e-22)
(0.972406 -0.024526 -4.396e-21)
(1.00074 -0.00171036 -7.49355e-24)
(0.978898 -0.00680255 -4.28216e-22)
(0.979964 -0.00695832 -2.17908e-21)
(1.00248 -0.00536699 -1.30994e-22)
(1.09679 -0.00646695 2.13108e-20)
(1.00001 -0.00189587 7.47233e-24)
(1.0202 0.0183846 -4.80796e-20)
(0.967246 -0.00717805 -1.09658e-21)
(1.00512 -0.0280391 5.08903e-23)
(1.00555 -0.0104637 2.56944e-22)
(1.07309 -0.130011 8.39925e-22)
(0.932725 0.0518683 1.73561e-20)
(0.981663 -0.00624634 -1.72562e-21)
(0.987509 -0.00787875 -1.38745e-22)
(0.987924 -0.00953361 3.13388e-22)
(0.964408 -0.0225514 2.39207e-21)
(0.97621 -0.00273751 1.28475e-21)
(1.04161 0.0583049 1.08706e-20)
(1.00202 0.0152781 3.77554e-21)
(1.01056 -0.00510468 3.47948e-22)
(0.978065 -0.00432516 -1.06189e-21)
(1.0914 -0.0891467 -2.90917e-21)
(1.09003 9.62293e-05 -2.58286e-21)
(0.96888 0.063923 -3.00498e-20)
(0.959841 -0.0139823 -1.98166e-22)
(1.03522 0.0317337 -3.39739e-20)
(1.00034 0.0130415 4.58941e-20)
(0.999748 -0.000117683 5.529e-24)
(0.97079 -0.0317384 -6.30574e-22)
(0.974013 -0.00307226 -1.79371e-21)
(1.00237 -0.00216965 5.63264e-23)
(0.998333 -0.000208356 1.15026e-22)
(0.998107 -0.000792706 -2.55776e-23)
(1.00185 -0.000472359 3.81235e-23)
(0.988691 -0.00161474 4.09251e-22)
(0.98911 -0.00605759 -2.63782e-22)
(1.01668 -0.0136505 -2.16613e-21)
(0.992325 -0.0287778 8.32694e-22)
(1.03661 -0.0277019 -3.53997e-22)
(1.1254 0.0993341 2.53895e-20)
(1.06593 -0.101665 1.49317e-22)
(1.02949 0.0429183 -4.22074e-20)
(1.18633 0.0725747 2.36305e-20)
(1.03111 -0.113474 1.58283e-21)
(0.999703 -2.59794e-05 -6.07292e-27)
(1.00123 -0.000157955 1.41688e-23)
(0.988073 0.0568288 -1.93127e-20)
(0.998622 -0.00384507 -9.22779e-23)
(0.967003 -0.0233857 -1.04984e-21)
(0.998364 -0.000643331 4.10197e-23)
(0.960737 -0.0112863 2.33439e-21)
(0.983178 -0.0114027 2.88051e-22)
(1.05564 0.0022314 6.29503e-20)
(1.08805 -0.0194836 2.05961e-21)
(0.951845 0.00768652 -1.76896e-20)
(1.00048 -0.000990818 -2.51316e-24)
(1.00106 -0.00320254 6.43219e-24)
(0.964676 -0.00629168 3.62517e-22)
(1.1152 0.104923 -3.05394e-20)
(1.00599 -0.00193413 -1.08134e-22)
(0.961676 0.0151729 -1.85183e-20)
(1.18641 0.076146 -2.14088e-20)
(0.978552 -0.00161539 2.59156e-21)
(0.987473 -0.000775595 -2.62132e-22)
(1.01979 -0.0842143 5.50697e-22)
(1.02229 -0.00271507 -1.51587e-21)
(1.0453 0.063327 -8.89715e-21)
(1.06141 -0.00788274 -7.04619e-21)
(0.983969 0.022948 2.62435e-20)
(0.959149 -0.0167795 -1.30769e-21)
(0.999561 -0.000783818 4.32222e-24)
(0.996722 -0.00312368 -1.66082e-22)
(0.983599 -0.00817264 -1.37203e-21)
(1.00036 -0.000145921 -7.70796e-24)
(0.998996 -0.00136592 8.24924e-23)
(0.993794 -0.00194486 -4.41197e-22)
(0.987128 -0.0163047 2.77622e-22)
(1.01481 -0.0135282 9.36111e-22)
(0.963996 -0.0172472 3.20851e-22)
(0.999635 -0.000234908 8.85004e-25)
(0.964081 -0.0198962 -1.02049e-21)
(1.03239 -0.0949599 3.1531e-22)
(0.999981 -0.000105051 -2.44329e-24)
(0.999518 -0.000171279 3.71338e-24)
(1.00595 -0.000833163 7.55252e-22)
(1.00101 -0.000435602 -1.02063e-23)
(0.999376 -0.000907266 -5.68605e-23)
(0.997416 -0.0116947 5.36725e-22)
(1.05438 -0.0252403 3.33697e-21)
(1.00155 -0.000708635 -1.00648e-22)
(1.08846 -0.0225767 1.75218e-20)
(0.982157 -0.00234635 7.35801e-22)
(1.01536 0.0187972 -6.5466e-20)
(0.968453 -0.0152642 -7.92266e-22)
(1.01626 -0.0796497 -1.45733e-21)
(0.999758 -7.25809e-05 -3.14659e-24)
(1.01312 -0.0754381 -5.74176e-22)
(0.977947 -0.0384505 1.39395e-21)
(1.01445 -0.0405944 1.08269e-23)
(0.989901 -0.00597606 1.08036e-22)
(0.99973 -1.78114e-05 1.55454e-25)
(0.9909 -0.0051938 -3.78947e-22)
(0.999526 -0.000265363 -2.86072e-23)
(1.03029 -0.0873904 -9.39465e-22)
(1.20323 0.0023968 -1.68172e-20)
(1.13745 0.0236172 2.86427e-20)
(1.03806 -0.12311 9.54398e-22)
(1.00047 -0.00113042 -5.49131e-24)
(1.07437 -0.0102112 -1.84292e-20)
(1.0923 -0.120078 -4.66347e-22)
(1.01868 0.0641173 -5.19262e-20)
(1.06443 0.0642295 1.85987e-20)
(1.04107 0.0960721 1.19536e-20)
(0.99635 -0.000832736 -4.04329e-22)
(0.9927 -0.0038067 -1.37812e-21)
(0.998729 -0.000511771 -6.52766e-23)
(0.989834 -0.00138894 -1.7649e-22)
(0.982139 0.0705475 -1.38199e-20)
(1.03509 0.0435559 3.4783e-20)
(0.997206 -0.00496435 6.42243e-23)
(0.997826 -0.00744413 -1.12716e-22)
(1.07101 0.0258622 -4.48855e-20)
(1.02784 0.0224885 3.63225e-20)
(0.951187 0.0497121 2.53658e-20)
(1.00026 -0.000954491 -2.47795e-24)
(0.994208 -0.00278669 5.21925e-22)
(0.988491 -0.0111678 -5.03387e-22)
(0.999815 -0.000177409 5.29889e-24)
(1.00023 -0.00106994 7.19338e-25)
(0.999603 -0.00020129 -2.2966e-24)
(1.00208 -0.00825398 2.89723e-23)
(0.997241 -0.00547335 -3.64202e-22)
(1.01796 0.0225376 -7.17501e-20)
(1.015 -0.0482597 -6.66463e-23)
(1.00014 -0.00185566 -3.68866e-23)
(1.0127 -0.000731841 -7.79181e-22)
(1.00137 -0.00206594 1.00183e-22)
(1.21822 0.00521642 1.01659e-20)
(1.00829 -0.000568527 9.06795e-22)
(1.10839 0.107048 3.51463e-20)
(1.00176 -0.00250119 6.93925e-23)
(1.10421 0.0124357 -3.13967e-21)
(0.974941 -0.0340254 -4.11745e-22)
(0.959382 -0.00763691 -6.33788e-22)
(1.14474 0.0786415 -1.86059e-20)
(1.16756 0.0677265 -2.11679e-20)
(1.00039 -0.000799672 1.30931e-25)
(1.1271 0.0558805 -1.48217e-21)
(0.967948 0.0583256 3.05112e-20)
(0.967469 -0.0259081 -3.74879e-22)
(1.0004 0.00484655 7.00956e-20)
(0.96015 -0.00586552 5.14523e-23)
(0.991018 -0.001178 -8.40588e-22)
(1.00217 0.0290277 2.06704e-20)
(0.99842 -0.00453646 -4.16022e-23)
(1.05149 0.0962682 -1.12699e-21)
(0.995473 -0.00197745 -1.38116e-22)
(1.07047 -0.070782 -3.07295e-21)
(1.04992 -0.0939452 -6.33467e-23)
(0.989733 -0.00124533 -1.93867e-22)
(0.977782 -0.00540114 -1.66281e-21)
(1.00113 -0.0017188 2.99159e-23)
(0.999484 -0.000958114 -2.65304e-23)
(1.0526 -0.0289364 -2.60055e-21)
(0.999734 -7.29864e-06 5.41119e-25)
(0.982061 -0.0071749 -1.20509e-21)
(0.964069 -0.00592206 -3.78666e-22)
(0.962815 0.0499669 6.17019e-20)
(1.05144 -0.0637088 -1.73431e-21)
(1.00526 -0.000264512 -2.58837e-23)
(1.01484 0.00136018 -4.02839e-21)
(0.999802 -4.40289e-05 -2.96809e-25)
(1.00074 -0.00114258 -3.25043e-23)
(1.02941 -0.0413003 -7.4494e-22)
(0.998797 -0.00322922 7.8995e-23)
(0.971945 0.0628004 1.4842e-20)
(0.996523 -0.00139486 -1.96327e-22)
(1.00091 -0.00140891 -1.1198e-23)
(0.976842 -0.00621132 1.51762e-21)
(1.14103 0.0150373 6.69051e-21)
(0.995809 -0.0408866 -1.30836e-21)
(1.0019 -0.000248914 1.79737e-23)
(0.999526 -2.77576e-05 1.60307e-23)
(1.18615 0.0307903 -4.42738e-21)
(1.01381 -0.0118474 2.28537e-22)
(1.0006 -0.000925215 1.84194e-24)
(0.992815 0.056813 9.42458e-20)
(0.93942 0.0491143 -2.10187e-20)
(1.002 -0.00504073 3.84673e-23)
(1.13086 -0.0523158 -4.4499e-21)
(1.0003 -0.00466321 -4.15609e-23)
(1.00029 0.00579713 -5.81697e-20)
(0.999152 -0.00115717 3.72095e-23)
(0.994501 -0.00159412 6.78901e-22)
(0.999671 -0.000318211 -1.54587e-23)
(0.999784 -3.00266e-05 1.16185e-24)
(1.04302 -0.089515 -6.22171e-23)
(1.0061 -0.0046697 -2.85797e-22)
(1.00163 -0.000535947 -2.50288e-23)
(1.07626 -0.133926 -1.73899e-21)
(0.998992 -0.00276781 1.2913e-22)
(1.06506 -0.0927619 6.76173e-22)
(0.999585 -2.78714e-05 -3.10997e-24)
(0.999393 -0.00116585 3.98262e-24)
(1.01482 -0.00438912 1.33995e-21)
(1.00067 0.0273579 -1.30705e-20)
(0.9941 0.0447696 2.30636e-21)
(1.02566 -0.0378719 5.66078e-22)
(1.06294 0.103247 6.39416e-21)
(1.14287 -0.0161351 -5.47648e-21)
(0.99971 -6.91408e-05 -6.95976e-24)
(1.02048 0.00152447 -1.52005e-20)
(0.996875 -0.015429 3.70751e-22)
(1.0027 -0.000168897 -8.07115e-24)
(1.00632 -0.00542721 -2.67564e-22)
(1.19234 -0.049009 2.09612e-21)
(0.999408 -0.0013155 -6.85435e-23)
(1.07344 -0.0541513 6.02778e-22)
(0.997362 -0.000955075 -7.41401e-23)
(1.01257 -0.0547488 -1.55586e-22)
(1.14547 0.091717 5.22179e-20)
(0.976033 -0.00819341 -1.35245e-21)
(0.981499 -0.00801541 1.16442e-21)
(1.16848 0.0768405 3.36909e-20)
(1.06311 0.038577 1.33821e-20)
(1.13861 0.0347306 1.20438e-20)
(1.00013 -9.72832e-05 -1.17185e-26)
(0.999954 -4.88205e-05 4.82732e-25)
(0.980335 -0.00193305 1.08608e-22)
(1.11689 0.0981235 -2.36844e-20)
(0.994114 -0.00746977 -3.31276e-22)
(1.0047 -0.0883015 -1.28943e-22)
(0.999079 -0.000334054 -3.68393e-23)
(1.02496 0.01197 4.85696e-20)
(1.20439 -0.0997737 4.15518e-22)
(1.00069 0.0286537 2.52909e-20)
(1.08539 0.0997538 4.67699e-20)
(0.989245 -0.000514476 7.91116e-22)
(1.1046 0.0203617 2.50885e-20)
(0.998281 -0.000791644 4.5359e-23)
(1.00987 0.00156294 -4.06548e-23)
(1.18083 -0.0203151 5.43047e-21)
(0.972044 -0.0276318 -3.17654e-21)
(0.999489 -0.000475319 2.45972e-23)
(1.00171 -0.000108181 4.50323e-24)
(0.997166 -9.26551e-05 -2.32528e-21)
(0.996752 -9.35039e-05 1.47672e-21)
(0.996808 -0.000106527 4.63253e-22)
(0.997016 -3.02015e-05 -5.48395e-22)
(1.10483 0.00549128 8.95415e-21)
(0.997854 -6.25738e-05 -6.1406e-22)
(1.09578 0.0689101 -4.89604e-20)
(1.00035 -0.00163999 1.33714e-24)
(1.00669 -0.000468668 -8.32489e-22)
(0.998515 -0.000639323 9.97112e-23)
(1.19021 0.0508293 -7.77512e-21)
(1.06543 -0.0531679 4.03714e-21)
(1.00676 -0.0121065 1.99522e-22)
(0.999896 -0.00016994 4.39942e-24)
(1.05781 -0.0511993 1.80469e-21)
(1.11139 0.0765787 -2.10193e-20)
(0.996155 -7.95449e-05 5.2649e-22)
(1.05095 -0.0487641 3.48346e-21)
(1.0447 -0.0456714 2.52622e-21)
(1.12761 -0.0145142 7.86361e-21)
(1.03931 -0.0424695 7.63227e-23)
(0.999289 -0.00158616 2.44428e-23)
(1.00101 -0.000673371 -1.46751e-23)
(1.00933 0.0383672 1.32016e-20)
(0.997932 0.0475505 1.28814e-20)
(0.987546 0.030868 -1.42069e-20)
(1.00038 -0.000916904 1.13031e-24)
(0.995493 0.0374038 6.68661e-20)
(1.00141 0.0181155 1.04425e-20)
(0.99616 0.048932 -4.30708e-20)
(0.995171 -0.000943084 1.62186e-22)
(0.999135 -0.000254035 2.99374e-23)
(1.00049 -0.000746706 1.75473e-23)
(1.09843 0.0911775 -1.40366e-20)
(1.05127 0.0488281 -4.05778e-21)
(1.03197 -0.105861 1.11269e-21)
(0.962981 -0.0228495 -3.027e-21)
(0.995957 -8.0334e-05 5.26248e-23)
(0.986226 -0.0131699 5.78275e-22)
(1.15118 -0.000734848 -1.13248e-21)
(0.994074 -0.000178025 1.63678e-21)
(0.991349 -0.00068179 -1.32615e-21)
(1.04121 0.0437334 1.63547e-20)
(1.00232 -0.000593682 -2.11177e-23)
(0.994435 -0.000208957 -1.03152e-21)
(0.999849 -5.63453e-06 -1.32189e-23)
(0.993484 -0.000181273 1.6604e-21)
(0.995927 0.0248137 1.94948e-20)
(0.994365 -0.0505353 -3.51097e-22)
(1.00018 -0.0016912 1.79344e-23)
(0.999749 -1.94508e-05 -5.49177e-25)
(0.976249 0.0508336 1.94313e-20)
(1.02345 0.065863 7.89025e-20)
(1.17805 -0.0323397 -3.95961e-21)
(1.12372 0.0955209 3.02531e-20)
(0.994451 -0.000159978 7.8442e-22)
(1.17177 -0.044157 -3.61024e-21)
(0.99393 -0.000158173 6.62742e-24)
(1.16429 -0.0550185 -5.44077e-21)
(1.15578 -0.0642564 2.10798e-21)
(1.14587 -0.0707456 -4.46867e-21)
(1.13082 0.092298 -6.65114e-21)
(0.993562 -6.22066e-05 2.27921e-21)
(1.16474 0.0428788 6.97814e-21)
(1.00001 -0.00078622 -2.46849e-24)
(0.998937 0.0296103 6.76633e-20)
(1.00601 -0.0401212 -6.3011e-22)
(0.996554 -0.014423 -3.30496e-22)
(1.03932 0.0909018 4.90894e-21)
(1.03368 -0.022621 9.94443e-22)
(0.987326 -0.0126955 3.82228e-23)
(0.995967 -9.24756e-05 3.41879e-21)
(1.21235 -0.033667 9.48586e-21)
(1.1196 0.0255201 1.12125e-20)
(1.02247 -0.0345306 2.38155e-22)
(0.999763 -1.70947e-05 -4.28513e-24)
(1.02879 0.00729356 -1.79334e-20)
(1.00089 -4.98925e-05 2.27878e-25)
(0.986109 -0.0143717 -2.98225e-22)
(1.12322 -0.0227995 -7.06578e-21)
(0.999498 -0.00108382 3.69649e-23)
(0.992984 -0.000795346 5.44765e-22)
(1.00214 -0.000140165 -1.13239e-22)
(0.961385 -0.00659416 -1.07739e-21)
(0.992329 -0.000117876 -7.48218e-22)
(1.11774 -0.0300226 -2.13013e-20)
(0.998917 -0.00041284 -1.11555e-22)
(1.11082 -0.0363597 4.05336e-21)
(0.994497 -0.0303281 -1.09019e-21)
(1.10297 -0.040992 1.18842e-20)
(1.09471 -0.0444022 6.69226e-21)
(0.984989 -0.00565968 -7.28793e-22)
(0.974859 -0.00687819 1.28e-21)
(1.08616 -0.0463427 1.02429e-21)
(0.968756 -0.00398568 -3.72524e-21)
(0.99685 -9.27151e-05 -2.14698e-21)
(0.99726 -6.3608e-05 3.27032e-22)
(1.06962 0.0516557 -4.36248e-21)
(0.996596 -2.90377e-05 -3.00979e-21)
(0.997562 -9.2078e-05 9.91915e-22)
(0.999624 -0.000286923 7.51637e-25)
(0.972536 -0.0151671 -5.71691e-22)
(0.966302 -0.0327788 2.3526e-21)
(0.999615 -0.000478761 4.51967e-23)
(1.08599 0.0887114 1.70735e-20)
(1.00921 0.0570045 -4.51954e-20)
(0.965832 -0.0096042 6.10837e-22)
(0.97436 -0.00407503 -9.86613e-22)
(0.982126 -0.00458659 8.77485e-22)
(0.995833 -0.00013633 1.10727e-21)
(0.999207 -0.000260439 -4.77972e-23)
(1.00279 -0.0195256 3.77525e-23)
(0.99488 -0.000873619 4.23736e-23)
(1.06807 -0.0136421 -4.35969e-21)
(0.999572 -0.000888343 1.95972e-23)
(1.02708 -0.0187695 3.11583e-21)
(0.962002 -0.0101267 -4.94838e-21)
(0.992152 -0.000134209 4.78053e-22)
(1.00153 -0.000201063 1.93467e-23)
(0.999637 -0.000724514 2.24272e-24)
(1.08184 0.0675922 -5.25384e-20)
(0.994099 -0.00117772 4.19273e-22)
(1.16887 0.0332487 -2.36286e-20)
(1.05799 0.0479751 6.12243e-21)
(1.01455 -0.0430527 4.25888e-25)
(0.962454 -0.0245632 1.76564e-21)
(0.99616 -5.41585e-05 9.18793e-22)
(0.999531 -8.52784e-05 -4.58884e-24)
(1.171 0.0222835 -1.39526e-22)
(0.963147 -0.00525338 -5.60984e-22)
(0.991905 -0.000166889 -1.12486e-21)
(1.17229 0.0111859 1.972e-20)
(1.13787 0.0666838 5.26344e-21)
(1.00001 -0.000122934 2.52405e-24)
(1.17255 -0.000181476 1.5911e-20)
(1.10259 0.038682 5.72219e-20)
(0.99947 -0.000740939 -5.12396e-23)
(1.12262 0.0173831 5.82379e-21)
(0.983677 -0.00988075 -7.51404e-22)
(1.03915 -0.0564859 6.60968e-22)
(1.03354 0.0219603 -1.14554e-20)
(0.992985 -0.00328211 1.11862e-21)
(1.00043 -8.92929e-05 -7.17409e-24)
(1.00018 -0.000865442 3.80406e-24)
(1.06726 0.0857323 -5.51749e-20)
(1.166 -0.108202 -2.32936e-21)
(0.99111 -0.0329529 -5.17556e-22)
(0.995961 -8.79249e-05 -1.16341e-21)
(0.981081 -0.00323399 1.2545e-21)
(0.997885 -5.68806e-05 -2.6301e-22)
(0.992824 -0.0172725 -6.03307e-23)
(0.967179 -0.00558178 -5.18459e-22)
(1.12394 0.00846771 -1.30468e-20)
(0.985454 0.0216941 -5.83234e-20)
(0.951105 0.0212665 6.74691e-21)
(1.02628 0.0524762 -2.01901e-20)
(0.999627 -0.000635307 1.8592e-23)
(1.0803 0.0623759 4.36371e-21)
(1.12349 0.00036287 4.78909e-21)
(0.979752 -0.00890115 -2.8646e-21)
(0.991748 -0.000213109 -1.92274e-21)
(1.07645 0.0490326 -3.17384e-20)
(0.960952 -0.0127629 3.33025e-22)
(1.18415 -0.119801 -1.27942e-21)
(0.999276 -0.000961313 1.17797e-22)
(0.98538 -0.00045519 -1.36437e-21)
(1.05111 0.0926903 1.78809e-20)
(0.999677 -0.000218301 -3.04334e-24)
(1.02503 -0.0960714 2.17404e-21)
(0.988168 -0.00856682 -3.21835e-22)
(1.10312 -0.0769002 -5.52702e-21)
(1.00106 -0.000328594 -1.16233e-23)
(1.02841 0.0673582 2.81653e-20)
(0.961573 -0.0188902 2.383e-21)
(1.03518 0.0738042 7.16401e-21)
(0.974423 -0.009483 -7.95095e-22)
(0.983559 -0.000838176 3.46132e-21)
(1.01959 -0.0313679 -8.66495e-22)
(0.998419 -0.000357539 -2.25858e-23)
(1.03942 0.0207433 4.77915e-21)
(0.984925 -0.0149088 -1.18947e-21)
(0.995704 -0.000153805 -9.3861e-22)
(0.999875 -0.000108956 3.3559e-24)
(1.09399 -0.106948 2.53517e-22)
(1.06588 -0.033948 -4.62512e-21)
(1.14378 0.0596232 3.85623e-20)
(0.990195 -0.0133947 9.93783e-22)
(1.00017 -0.0021542 -1.93686e-23)
(1.10765 0.0324882 1.29489e-21)
(0.999808 -9.23265e-05 3.02628e-24)
(1.08329 0.0455203 -4.68677e-20)
(1.14955 0.051982 -4.72665e-21)
(1.00072 -0.000984837 1.77e-23)
(1.07297 0.0294389 3.6532e-20)
(1.00791 -0.0728741 -1.09723e-21)
(0.99969 -0.000586101 -3.59101e-23)
(0.985503 -0.0112789 -7.7925e-22)
(0.99968 -1.81171e-05 1.10327e-23)
(1.00134 -0.00181287 -6.35095e-23)
(1.00648 -0.0227162 -1.23208e-22)
(1.07429 0.0847127 -3.80428e-20)
(0.986122 -0.0326277 -1.45551e-21)
(1.00167 -0.0021704 -4.73937e-23)
(1.00551 -0.0714633 2.06334e-21)
(0.983772 -0.00181535 -1.08603e-21)
(1.04543 0.0189508 -2.32153e-20)
(0.997205 0.0564237 1.31416e-20)
(1.00059 -0.000796045 -7.27987e-24)
(0.989635 -0.0187432 -7.20908e-22)
(0.998455 -4.56762e-05 4.66076e-22)
(0.987035 -0.00468507 -1.96997e-22)
(1.05703 0.0806983 -5.55154e-20)
(1.03833 -0.0306951 2.03993e-21)
(1.00089 -0.00121426 1.79081e-23)
(1.08952 0.0415572 -1.28288e-20)
(1.16893 0.0857909 -2.60569e-20)
(1.00062 0.00265712 8.68355e-21)
(0.994087 -0.0174934 -1.03347e-22)
(1.00131 -0.000427399 -2.0207e-23)
(1.08857 0.0728739 -5.18721e-20)
(1.00246 -0.0119368 2.73176e-23)
(0.966039 -0.00361884 3.60081e-22)
(1.03831 -0.0248479 -1.3304e-21)
(0.984184 0.00284202 -2.69336e-20)
(1.00296 -0.057568 1.03977e-21)
(0.983325 -0.0123516 -5.91041e-22)
(1.00109 -0.00149205 -7.92245e-24)
(0.993238 -0.00638066 3.61449e-22)
(0.983628 0.00611882 9.34289e-20)
(0.966367 -0.01423 -2.63171e-21)
(0.940416 0.0241327 -1.46469e-20)
(1.09812 0.0135109 1.24544e-20)
(0.988654 -0.0101608 8.31563e-22)
(0.999576 -2.51195e-05 -7.64173e-23)
(0.995532 -0.039269 -6.98623e-22)
(1.03254 -0.063375 3.44639e-23)
(1.00044 -4.20758e-05 5.44153e-24)
(0.987144 -0.0150388 9.14488e-22)
(0.998432 0.000457654 2.17626e-20)
(1.00015 -4.163e-05 0)
(1.00388 -0.0437719 -5.52423e-22)
(0.986309 0.00960168 9.45027e-21)
(0.999713 -1.52796e-05 2.24967e-23)
(0.988256 -0.0169001 2.40015e-21)
(1.00048 -2.35553e-05 -1.24273e-25)
(0.997506 -0.000764587 9.68713e-23)
(1.00046 -0.000130899 -2.77968e-23)
(1.07141 -0.0279713 6.65968e-21)
(1.01145 -0.0259939 4.19493e-22)
(0.997471 -0.000568446 1.07171e-22)
(1.06336 -0.116767 -2.01631e-21)
(0.998974 -0.00151398 9.28098e-24)
(1.00027 -0.000317503 -3.43563e-25)
(1.00037 -3.37931e-05 -1.91388e-23)
(0.999715 -0.000291952 -4.31035e-24)
(1.00188 -0.0463 1.1186e-21)
(1.00041 -1.85322e-05 3.13843e-24)
(0.999467 -2.51332e-05 3.9034e-23)
(1.04553 -0.0657773 -7.99856e-23)
(0.996886 -0.0317237 -8.50078e-23)
(0.943429 0.0349456 2.29396e-21)
(1.06673 -0.00453668 -1.36409e-20)
(1.00034 -0.0187775 -7.36987e-23)
(0.998459 -4.60594e-05 -3.90173e-22)
(1.00024 -3.35466e-05 -6.44825e-26)
(0.98397 -0.014172 -3.89158e-22)
(1.00035 -1.50606e-05 2.03292e-23)
(1.09302 -0.00159718 -2.27032e-22)
(1.04102 0.0748711 2.6541e-20)
(0.996958 -0.00116088 -1.32485e-22)
(1.00894 -0.0449495 -5.74724e-22)
(0.998112 -0.0177488 -4.31062e-22)
(1.11218 -0.013806 5.34292e-21)
(1.00301 -0.00714886 -1.37484e-22)
(0.92584 0.0242301 -1.07514e-19)
(1.0029 -0.00188582 7.91064e-23)
(0.999347 -3.45048e-05 1.49635e-24)
(1.0716 0.0189963 -9.91578e-21)
(1.01771 -0.0121831 4.87268e-22)
(1.00032 -0.000287509 3.99202e-25)
(0.974945 -0.0248487 1.71195e-21)
(1.025 0.0270786 -4.37534e-20)
(0.999649 -2.11658e-05 -1.94552e-25)
(1.0474 0.0755643 3.6056e-20)
(1.01764 0.0170424 2.52004e-20)
(0.980638 -0.0141097 1.30376e-21)
(0.976078 -0.0271228 -1.18449e-21)
(0.999344 0.0375737 -1.03223e-19)
(0.983578 -0.0107172 2.86503e-22)
(0.999121 -2.98802e-05 -3.75666e-23)
(0.966508 -0.020807 7.83776e-22)
(1.09382 0.106461 -7.84855e-22)
(1.0949 -0.00112099 3.18663e-20)
(0.985796 -0.0401436 1.50664e-22)
(0.999473 -0.00064425 -3.28473e-23)
(0.997756 0.017887 -3.52791e-20)
(0.999526 -2.52425e-05 4.15403e-23)
(1.03394 -0.02773 -2.83591e-21)
(0.998541 -3.88167e-05 2.97121e-22)
(0.998966 -7.80501e-05 2.35034e-22)
(0.964255 0.0739573 8.47327e-20)
(1.00161 -0.00422914 9.76347e-24)
(1.0002 -0.000173395 -9.98263e-25)
(0.974429 -0.0114039 -1.4527e-21)
(1.10589 0.0551576 1.40408e-20)
(0.938796 0.0176731 3.57389e-20)
(1.02519 0.0211167 4.66506e-20)
(0.97839 0.000499368 -1.16627e-20)
(0.993484 -0.00327089 -4.71239e-22)
(0.962886 0.0337616 -5.66557e-20)
(0.999289 -0.000727906 7.25058e-23)
(1.06217 0.0347766 -1.6429e-20)
(0.998828 -6.54242e-05 -5.17353e-22)
(0.998595 -0.000508842 -5.01304e-23)
(1.10128 0.0189468 3.42213e-20)
(0.991758 -0.0273404 8.99988e-22)
(1.09641 -0.0031583 3.54053e-21)
(1.00017 -0.000614378 1.78383e-24)
(0.962299 -0.0276765 -2.0113e-23)
(0.937098 0.0155929 -7.7481e-20)
(0.988503 -0.0251709 6.53294e-22)
(1.11437 -0.0747871 -7.59937e-21)
(1.00302 -0.00505469 9.46641e-23)
(0.999444 -2.77638e-05 2.06711e-22)
(1.14708 0.087019 -1.92186e-20)
(1.00351 -0.00312549 -1.97842e-22)
(0.967988 -0.0167055 5.07493e-22)
(1.00031 -0.00023653 1.43749e-24)
(0.999669 -0.0377169 1.19844e-23)
(0.999544 -0.000129889 -1.26182e-23)
(0.987816 0.000213308 -6.51762e-20)
(0.97873 -0.00567001 2.60784e-22)
(0.969383 -0.00772744 8.71384e-22)
(1.09525 -0.0127068 -7.17389e-21)
(1.10522 -0.108179 7.99636e-22)
(1.09524 0.00893011 -1.86275e-20)
(1.05434 0.0905299 -1.44589e-20)
(1.00052 -0.000112087 2.1677e-23)
(1.15399 -0.0929035 2.92678e-21)
(1.08025 0.00224729 -3.99022e-20)
(1.01742 0.0379817 -6.78351e-20)
(0.934973 0.00989167 -9.1132e-21)
(0.999791 -7.2274e-05 -5.64779e-24)
(1.14215 -0.103553 4.76431e-22)
(1.11705 -0.108275 -1.0246e-21)
(0.999256 -4.21299e-05 -1.06344e-22)
(1.07378 0.0044957 6.02224e-20)
(1.06641 0.00308719 -4.4795e-20)
(1.12921 -0.106647 8.01231e-22)
(0.993574 0.00050694 5.1349e-20)
(1.10321 0.00237613 -1.88228e-20)
(1.11536 0.0477333 1.66155e-20)
(0.983096 -0.00721707 -3.87711e-22)
(1.03054 0.0130917 3.31034e-20)
(0.965669 -0.0043541 -1.33579e-23)
(1.00033 -0.00117652 4.01638e-25)
(1.00023 -0.000155447 4.64374e-24)
(1.00027 -0.000376585 3.96406e-25)
(0.999466 -3.04799e-05 1.05495e-23)
(1.00207 -0.00299887 8.62964e-23)
(0.974165 -0.00369547 1.52614e-21)
(1.00025 -9.89147e-05 1.70861e-24)
(1.00149 -0.000383665 2.39491e-23)
(1.01259 -0.00611571 3.37221e-22)
(0.999656 -0.000155584 -4.51253e-24)
(1.09339 0.0652913 3.31832e-20)
(1.02654 -0.0676281 -2.32149e-22)
(0.999847 -8.43157e-05 -4.01179e-24)
(0.943073 0.0563359 -2.9971e-20)
(1.00073 -0.00053003 -9.70941e-24)
(0.999681 -0.000510025 1.36794e-24)
(0.997989 0.0642485 7.73535e-21)
(0.927338 0.0169123 -2.17867e-20)
(0.957003 -0.0121762 -1.49417e-21)
(0.999859 -0.0269122 -3.10006e-23)
(0.999804 0.0296713 -1.73753e-20)
(0.988761 -0.00436642 4.85997e-23)
(0.966258 0.00603735 -3.47556e-21)
(1.0902 -0.016293 -3.61469e-21)
(0.999397 -0.000594183 -1.20355e-23)
(1.00857 -0.0850886 -4.10004e-21)
(1.01072 -0.0508089 8.18884e-22)
(1.00445 -0.00712282 -9.71693e-23)
(1.00119 -0.000292289 8.55846e-23)
(1.04653 0.0978877 -2.50468e-20)
(1.00005 -0.000107732 2.39189e-25)
(1.00059 -2.9828e-05 -2.81385e-23)
(0.977789 0.0384894 5.51516e-20)
(0.999395 -3.47793e-05 -4.19787e-23)
(1.00368 -0.0060158 2.51171e-22)
(1.00394 -0.0614325 5.37817e-22)
(0.973375 -0.00513136 -3.966e-22)
(0.966623 -0.00534519 -3.10418e-22)
(1.00031 -0.000641717 -2.04351e-24)
(1.14699 -0.00552356 7.72614e-21)
(0.968541 -0.00325675 5.72855e-22)
(1.00036 -0.000115797 1.07304e-23)
(0.967974 -0.0125684 -4.78048e-22)
(0.997518 -0.000311065 -5.22771e-24)
(1.06561 0.0220629 -7.0671e-20)
(0.999683 -0.000177919 3.32699e-24)
(0.999716 -0.000242662 2.66724e-24)
(0.99793 -0.000186576 7.82308e-23)
(0.996282 0.000675639 3.03904e-20)
(0.989115 -0.00477575 4.92647e-22)
(0.993536 -0.00106055 7.16213e-22)
(0.998149 -0.00165252 -1.40993e-22)
(1.00319 -0.00351375 1.31156e-22)
(0.993426 0.0254986 2.94284e-20)
(1.01766 -0.00893818 1.80389e-21)
(1.13328 0.0267803 -6.89445e-21)
(1.0021 0.0468161 -2.64315e-20)
(0.998663 -0.000285124 -4.69393e-23)
(0.960825 0.0594466 -6.82754e-21)
(1.01303 0.0595123 -1.45145e-20)
(0.992815 -0.000461371 1.02121e-21)
(1.00629 -0.0799244 -2.01222e-21)
(1.00068 -0.000432389 4.69262e-24)
(0.975875 -0.00598151 -1.55265e-21)
(0.963094 0.0116826 -4.7644e-20)
(1.00538 -0.00840213 4.30159e-22)
(0.999304 -4.32342e-05 3.53873e-23)
(1.00028 -0.000112151 3.12877e-24)
(0.962032 -0.00696512 1.6025e-21)
(0.997047 -0.000102666 -3.31993e-22)
(0.999208 -4.62979e-05 2.11542e-23)
(1.00048 -0.000640674 -5.60133e-24)
(0.95844 0.0288233 -3.04334e-20)
(1.00019 -0.00021556 1.7211e-24)
(1.02205 0.039619 5.51219e-20)
(0.999559 -0.0328493 -1.75406e-21)
(1.0063 -0.0857914 -1.09331e-21)
(1.0003 -0.000149498 -7.35394e-24)
(1.03778 -0.0780341 3.75349e-23)
(1.00118 -0.00439056 -5.82316e-25)
(0.995905 0.03021 3.03158e-20)
(0.99308 0.0288198 -4.12295e-20)
(1.16285 0.0969284 1.00143e-20)
(0.999266 -0.00281375 1.72444e-23)
(0.968649 -0.0342888 -4.48728e-22)
(1.02309 -0.085444 -1.6935e-21)
(1.0978 0.0100873 -9.09547e-21)
(1.1079 -0.00175662 2.01749e-20)
(1.09538 0.0608411 -3.08144e-20)
(1.01385 -0.102725 -4.28672e-21)
(1.01012 -0.0714737 -1.99158e-21)
(0.967759 -0.00254565 1.70756e-21)
(0.99938 -0.000790336 5.62679e-23)
(0.99934 -0.00236845 -6.23517e-23)
(0.999099 -4.82633e-05 -8.23128e-23)
(0.998894 -0.0046453 -2.52117e-23)
(0.999169 -0.00331229 1.42057e-22)
(0.999045 -0.00393878 -6.67331e-23)
(0.997472 -0.00308964 -3.01479e-23)
(0.997126 -7.98285e-05 1.70706e-22)
(0.983965 -0.000637642 -2.40879e-21)
(0.998548 -0.00878061 -5.42051e-23)
(0.997122 -0.00365543 9.97877e-23)
(0.962995 -0.00481872 5.33245e-22)
(0.999627 -0.00112234 -1.9254e-23)
(0.998751 -0.00543812 -4.55595e-22)
(1.00009 -0.000439771 -2.02228e-25)
(0.902998 0.028191 -6.35942e-20)
(1.08643 -1.95195e-05 1.41919e-20)
(0.9985 -0.00749069 -4.05832e-23)
(1.00649 -0.0098222 -4.1209e-22)
(0.998609 -0.00636879 -6.19306e-23)
(1.00007 -0.000339022 -1.26433e-24)
(0.999564 -0.00135891 -4.84081e-23)
(0.996316 -0.0049846 -1.31061e-22)
(0.996773 -0.00428785 1.79486e-22)
(0.971106 -0.0348047 9.70588e-22)
(1.00023 -0.000116347 -3.09913e-24)
(0.959882 -0.00475434 5.11992e-21)
(0.999383 -0.00198394 -8.4289e-23)
(0.999002 -4.7879e-05 -7.1211e-23)
(1.00025 -0.000590026 -9.89408e-26)
(0.963275 -0.0104338 3.02731e-21)
(0.98774 -0.0431079 1.98758e-21)
(0.995824 -0.00578313 2.2091e-22)
(0.985809 0.0553608 4.10648e-20)
(1.0023 -0.0274353 -1.16207e-22)
(1.02714 0.0407749 -4.30984e-20)
(0.980576 -0.0416453 1.08255e-21)
(0.97313 0.03551 -6.92871e-22)
(0.951541 -0.0127511 -6.77579e-21)
(0.951618 -0.0154628 -2.58334e-21)
(0.952433 -0.0182985 0)
(0.953569 -0.0209974 -3.31912e-21)
(0.954997 -0.0234048 1.03752e-21)
(0.956566 -0.0258187 -2.62784e-21)
(0.958379 -0.0280143 0)
(0.999681 -0.000921876 -3.2312e-23)
(0.960299 -0.0300794 -5.37226e-21)
(0.962384 -0.0320481 4.58911e-21)
(0.99386 0.0361279 -4.77325e-20)
(0.966511 -0.0355206 -2.81972e-22)
(1.08317 -0.0753445 -1.29857e-21)
(0.97338 -0.0394629 -1.63641e-21)
(0.999506 -0.00164572 2.8551e-23)
(1.03442 -0.0883652 -3.81655e-22)
(0.980387 -0.00796209 2.11608e-21)
(1.00026 -0.000173096 -2.80333e-24)
(0.998313 -0.0101795 3.03015e-23)
(0.999828 -0.000383451 -8.19574e-24)
(0.997657 -0.0024781 5.39232e-23)
(1.07223 -0.0321143 3.23111e-21)
(0.998887 -5.75179e-05 -8.67192e-23)
(1.13513 0.104682 4.92834e-20)
(1.01058 0.0252885 7.34644e-21)
(0.991129 -0.00996208 -4.33348e-22)
(1.00273 -0.00152674 1.14712e-22)
(0.969141 -0.00285241 1.0116e-21)
(1.00776 -0.0113894 6.87645e-22)
(0.994716 -0.00780976 -2.14797e-24)
(0.992863 -0.0127574 6.99994e-22)
(0.968791 -0.00616781 1.73145e-21)
(0.999424 -0.000187753 8.43389e-24)
(0.937121 0.0523588 6.54415e-22)
(0.981606 -0.00350808 -6.68367e-22)
(0.983109 -0.017907 -1.3917e-21)
(0.998217 -0.0117393 2.21146e-22)
(0.998733 -6.62143e-05 -1.10042e-23)
(0.995344 -0.0067424 6.48449e-22)
(0.995687 -0.00230688 -3.63668e-22)
(0.952213 -0.00992112 -4.50865e-21)
(0.99409 -0.00899299 3.3659e-22)
(0.997087 -0.00138941 -2.27708e-22)
(0.997462 -9.55023e-05 -5.11193e-22)
(1.15731 -0.0213181 -1.85104e-20)
(1.00017 -0.000365147 -7.52381e-26)
(0.999727 -0.000752477 -4.63044e-23)
(0.998149 -0.0134918 4.84108e-22)
(1.03503 -0.0085719 -3.60592e-21)
(0.996663 -0.0016399 -5.79011e-23)
(0.99511 -0.00270953 -4.14825e-22)
(0.996212 -0.00194899 -4.74057e-22)
(1.00026 -0.000217643 -4.08814e-24)
(1.00056 -0.000580119 5.98236e-24)
(1.00109 -0.00489067 -1.21105e-25)
(1.0006 -0.000280057 5.92468e-24)
(0.997472 -0.00116185 -1.84207e-22)
(0.994477 -0.00316736 4.73055e-23)
(0.994924 -0.00058938 -2.86741e-22)
(0.996909 0.0315156 -1.81014e-20)
(0.9986 -0.00076218 -1.83009e-23)
(0.995539 -0.00133372 5.2021e-22)
(0.998523 -7.84078e-05 7.24699e-23)
(1.00201 -0.00450233 1.05927e-23)
(1.0004 -0.000599479 1.73243e-24)
(1.00053 -0.000486914 -1.22798e-23)
(1.08731 0.10745 9.09675e-21)
(0.99812 -0.015497 -3.29128e-22)
(1.02127 0.0876351 -1.60278e-20)
(0.993028 -0.00427597 5.30419e-22)
(0.998378 -0.000928421 -1.84807e-22)
(1.00023 -0.000289695 -1.78951e-24)
(1.03259 0.0417103 9.26397e-20)
(1.05492 -0.0938593 1.49468e-22)
(1.00056 -0.000342734 -8.53364e-24)
(0.999767 -0.000609466 1.66266e-23)
(0.999727 -0.000403677 -1.15669e-23)
(0.986446 -0.00629412 5.36006e-22)
(0.993784 -0.00369101 1.13979e-21)
(1.22477 0.00742655 -1.00579e-20)
(0.999616 -0.00016342 2.07403e-24)
(1.01482 -0.0561283 -2.82859e-23)
(0.998799 -0.00062019 7.34923e-23)
(0.996691 -0.00114452 1.30296e-22)
(0.998124 -0.00111851 2.19761e-22)
(0.992201 -0.00494482 6.33283e-22)
(1.00333 -0.00262206 -8.99778e-24)
(1.00443 -0.0654702 -1.18888e-22)
(0.999708 0.0271129 -9.34862e-20)
(0.968903 -0.0369681 0)
(0.984275 -0.00346627 5.85998e-22)
(0.999193 -0.000759107 -9.69261e-23)
(0.999764 -0.000313221 -1.06875e-23)
(0.96283 -0.0144186 3.3863e-21)
(1.00011 -0.000381304 -8.51329e-25)
(1.03255 -0.0418785 -1.1393e-22)
(0.993351 -0.000886227 -2.93545e-22)
(0.992374 -0.00114549 -7.14062e-23)
(1.00084 -0.000898762 -8.85436e-24)
(0.996151 -0.016468 -3.48862e-22)
(0.989307 -0.00748414 2.90378e-22)
(1.04163 -0.122191 -1.75591e-21)
(0.998973 -0.000504067 5.10342e-23)
(1.00023 -0.00023919 -1.39986e-25)
(0.974041 -0.00861954 2.41555e-21)
(0.999124 -0.000409632 1.85165e-23)
(0.991308 -0.00569453 -2.1564e-22)
(0.990405 -0.00170933 -1.82253e-22)
(0.991357 -0.00144922 5.20263e-22)
(0.99975 -0.00022159 3.25163e-25)
(0.969143 0.00353696 -2.51152e-20)
(0.999246 -0.000331929 -3.03604e-23)
(0.961402 0.00184112 1.35491e-20)
(0.991108 -0.0128453 -2.12761e-21)
(0.989272 -0.00204464 -7.68558e-22)
(1.01145 -0.00144291 -2.65578e-23)
(1.00018 -0.000310816 7.63907e-25)
(1.00012 -0.000556995 -4.05388e-24)
(1.10988 -0.0544887 2.95516e-21)
(1.0006 -0.000422623 -1.0251e-23)
(1.07047 -0.0916543 -1.31625e-22)
(0.999663 -0.00125057 3.0449e-23)
(1.23329 -0.0191209 1.00415e-20)
(0.990369 -0.00653231 1.74893e-22)
(0.999583 -6.12812e-05 -6.50344e-24)
(0.999877 -0.000703006 -3.84945e-24)
(1.00562 -0.0115578 -2.21758e-22)
(0.96648 0.0616196 -2.69172e-20)
(0.99971 -0.00103278 2.78797e-23)
(0.984921 -0.026887 3.49838e-22)
(1.0098 -0.00414051 1.48606e-23)
(1.00381 0.0472829 4.17841e-20)
(0.982982 -0.0424497 0)
(1.01921 -0.0807615 1.30967e-21)
(1.00014 -0.000487566 1.38428e-24)
(1.16206 -0.0892337 5.86231e-22)
(0.987079 -0.00137017 -1.34659e-22)
(1.0642 -0.126126 -2.0953e-21)
(1.01732 -0.0468926 -4.57332e-23)
(1.00052 -5.7826e-05 9.83655e-24)
(1.01636 -0.0167947 -6.58007e-22)
(0.945098 0.00983694 -6.4703e-20)
(1.01579 -0.0765884 1.33163e-21)
(1.00217 -0.00746902 1.45926e-23)
(0.986984 -0.00177057 -6.39963e-23)
(0.999734 -0.000468116 5.57306e-24)
(1.00472 0.00107195 -5.09855e-20)
(1.00305 0.0370191 3.47437e-20)
(0.999859 -0.000345653 1.66523e-24)
(0.997583 -0.000224802 -1.80961e-22)
(1.07305 0.10382 -1.94745e-20)
(0.999752 -0.00084652 2.74452e-23)
(0.993437 -0.0103253 -9.47978e-22)
(0.99977 -0.000367563 1.62718e-23)
(0.999618 -0.00151104 4.10064e-23)
(0.996345 -0.0444327 -5.07456e-22)
(0.972595 -0.0230737 1.07429e-21)
(1.09067 -0.126427 -1.41031e-21)
(1.07787 -0.0518291 -1.2498e-21)
(0.999431 -0.002598 2.07593e-23)
(1.00001 -0.000636448 -2.86513e-24)
(0.999787 -0.000688646 7.9908e-24)
(1.03011 -0.0724004 1.99294e-22)
(1.01254 -0.0393159 -4.18533e-23)
(1.07204 0.0325177 -2.30172e-20)
(0.98474 -0.00986847 -1.80216e-22)
(0.999843 -0.00044063 8.20974e-24)
(1.01712 0.0617501 2.00391e-21)
(1.00463 -0.0161575 -1.78301e-23)
(0.998315 -0.00180473 1.18771e-23)
(0.967464 -0.0327162 -8.70631e-22)
(0.988158 -0.00225733 2.16462e-22)
(0.999369 -0.00307906 -7.16077e-23)
(0.999857 -0.000863434 -2.76209e-24)
(1.01722 -0.028334 5.89356e-22)
(0.997797 -0.00297279 -8.64824e-23)
(0.992367 -0.0248525 7.04282e-22)
(1.00004 -0.000567462 -3.53187e-24)
(0.999467 -0.00218661 9.0067e-23)
(1.06579 0.0106027 -1.20933e-20)
(0.992671 -0.009945 -7.39398e-22)
(1.0746 0.110673 2.64952e-20)
(0.979401 0.0697708 9.70773e-21)
(1.00984 -0.0163346 -2.56892e-22)
(1.0059 -0.0155525 -7.91319e-23)
(1.01219 -0.10074 1.82662e-21)
(0.991903 -0.0104267 -2.78382e-23)
(0.946339 0.0721634 3.13748e-20)
(1.01753 -0.0154716 3.62375e-22)
(0.996597 -0.000854926 -1.78732e-22)
(1.00015 -0.000231674 -4.10657e-25)
(1.0408 0.0991216 -7.93901e-20)
(0.9591 0.00790158 9.42031e-21)
(1.11293 0.0974762 -1.15441e-20)
(1.1779 -0.0129035 1.0538e-20)
(0.967482 -0.0219374 -8.92478e-22)
(0.999922 -0.000635943 -2.37488e-23)
(0.9658 -0.00468929 -1.55919e-21)
(0.999525 -0.00181859 -2.83013e-23)
(1.00155 -0.00166436 -7.5072e-23)
(0.985516 -0.00164373 8.93781e-22)
(1.03058 0.0204927 -1.49537e-20)
(0.982421 -0.0273857 -1.79679e-22)
(0.999815 -0.00126616 -4.84984e-24)
(1.00359 -0.00531105 2.12056e-23)
(0.999281 -0.00364548 -9.32373e-23)
(1.12689 -0.00910348 8.68608e-21)
(1.03594 0.0591839 -6.98945e-20)
(1.00647 -0.0380192 2.50736e-22)
(0.971271 -0.00289028 2.92632e-21)
(0.999177 -0.00430915 1.22401e-22)
(0.998452 -0.00238204 1.58455e-22)
(0.997917 -0.0017295 2.74815e-22)
(0.989525 0.000291371 -1.42497e-20)
(1.00503 -0.00383061 -6.48753e-23)
(0.998549 -0.000383232 4.06388e-23)
(0.999268 -0.000472016 -5.16976e-23)
(0.998576 -3.03514e-05 2.30641e-22)
(0.979844 -0.0131912 -9.45204e-22)
(1.11487 -0.0106943 1.15417e-20)
(0.99596 -0.012307 2.17774e-22)
(1.00541 -0.0200366 -5.66123e-23)
(1.00316 -0.0370557 -1.22998e-21)
(0.999589 -0.000129884 -1.59879e-23)
(1.01673 -0.0104915 -6.00802e-23)
(1.05872 0.107852 2.96856e-20)
(0.963982 -0.0035278 -2.65556e-21)
(0.998011 -0.000963291 -1.15826e-22)
(1.02148 -0.0219117 -5.4844e-22)
(1.02271 0.0168077 -8.99161e-21)
(0.999044 -0.00505996 1.71694e-22)
(1.13644 0.018565 -3.16721e-20)
(1.00151 0.0555519 3.45647e-20)
(1.00135 -0.000719302 4.5596e-23)
(1.00009 -0.0002915 1.19422e-24)
(1.159 0.0462095 -1.03955e-20)
(1.06714 0.0970903 -3.71524e-20)
(1.11575 0.0282589 -3.02025e-20)
(1.09419 0.0904273 3.11368e-20)
(0.976968 -0.0390644 -1.66431e-21)
(0.997712 -0.000788031 -1.64162e-22)
(1.00065 -0.000608758 -1.16393e-23)
(1.03821 0.041949 -1.86541e-20)
(0.996937 -7.53413e-05 1.25379e-21)
(1.00295 -0.00445778 -1.48347e-22)
(0.985354 -0.0428285 -3.20661e-21)
(0.988261 -0.01333 -1.77665e-21)
(1.04766 -0.0898071 4.28992e-22)
(0.967054 -0.0193825 2.52177e-22)
(0.998931 -0.00593641 3.40253e-22)
(1.00068 -0.000724865 -1.49171e-24)
(1.04778 0.0471524 7.97843e-20)
(1.00434 -0.00630559 -2.30368e-22)
(0.963464 -0.0118365 -1.73252e-22)
(0.99408 0.0272858 -1.43962e-20)
(0.983568 -0.0230962 1.8441e-21)
(1.0018 0.0317801 2.06334e-20)
(0.999887 -7.22499e-06 -1.31914e-25)
(0.964542 -0.00929054 -9.18037e-22)
(1.00692 0.0261984 7.29635e-20)
(0.937434 0.0220532 1.15764e-19)
(1.02846 -0.0385167 -8.97144e-23)
(0.996791 -0.0124653 -3.77412e-22)
(0.989331 -0.0117756 -2.20048e-22)
(0.998742 -0.000744753 -7.34584e-23)
(0.998873 -0.00816773 1.15566e-23)
(1.01829 0.0826163 8.67795e-21)
(1.01701 -0.0188328 -9.87143e-22)
(0.977398 -0.0278863 2.74174e-21)
(0.998862 -0.00697671 1.54639e-22)
(0.99854 -0.000906681 8.36461e-23)
(0.99785 -0.00269585 1.7858e-22)
(1.00523 -0.00745816 -1.40201e-22)
(0.999079 -0.000498338 -1.41576e-23)
(1.06559 0.0504974 -4.43981e-20)
(0.999213 -0.000404501 1.91237e-23)
(1.02499 -0.0352904 -5.00941e-22)
(0.997425 -0.0034719 -9.68687e-23)
(0.99332 -0.00148261 -1.33009e-22)
(0.998834 -0.000849977 -1.10944e-22)
(1.1167 0.0627432 -4.36707e-21)
(1.04463 0.102853 -6.22267e-20)
(0.952221 -0.0137249 4.87361e-21)
(0.952776 -0.0164811 1.13274e-21)
(0.953775 -0.0193038 1.60817e-21)
(0.998922 -0.000609679 9.11366e-24)
(1.00625 -0.00315579 -8.29219e-22)
(0.999325 -0.00032161 -2.91463e-24)
(0.955006 -0.0218538 6.98168e-22)
(0.956472 -0.024186 8.01524e-22)
(1.07944 0.0185688 4.33863e-20)
(1.02455 0.0554268 8.87527e-21)
(0.958136 -0.0264679 1.36995e-21)
(1.09814 0.0399911 4.92104e-22)
(0.98271 -0.00292077 1.38251e-21)
(1.04155 -0.0781195 5.61573e-23)
(0.983616 -0.00406244 1.60497e-22)
(0.959876 -0.0284765 2.78966e-21)
(1.10376 0.114183 -3.44719e-20)
(1.13291 0.0682754 -1.15639e-20)
(0.961997 -0.0305155 2.55528e-22)
(0.996005 -0.000147471 3.59041e-23)
(1.0092 0.0237723 -3.49312e-20)
(1.08194 0.0876628 3.61298e-20)
(0.998842 -0.00944562 -7.26792e-23)
(1.00026 -0.000511503 1.63258e-24)
(0.997815 -0.00045664 7.82515e-23)
(0.965458 0.0310895 -3.36242e-20)
(0.999732 -0.00220177 1.6615e-23)
(1.00021 -0.000402825 -1.12428e-24)
(0.997132 -0.00409017 -1.53816e-22)
(0.997354 -0.00137603 1.55155e-22)
(0.99831 -0.00109393 5.25332e-23)
(1.00337 -0.00184483 -7.23921e-23)
(0.996954 -0.00163622 2.38078e-22)
(1.01465 -0.0104764 -9.92795e-22)
(1.10026 0.00249465 2.54675e-20)
(0.998717 -0.0527385 1.40974e-21)
(1.0002 -0.000467892 -3.17893e-25)
(0.971966 -0.0162662 -1.42738e-21)
(0.973892 -0.0225381 3.365e-21)
(0.98132 -0.0044143 -1.38502e-21)
(0.975088 -0.0234091 -4.43624e-21)
(0.952559 -0.011083 5.45992e-21)
(0.997704 -0.00115735 -6.84609e-23)
(0.996773 -0.000281283 1.69869e-22)
(0.996759 -0.00473597 1.24959e-22)
(1.00094 -0.0278472 4.77242e-22)
(1.02866 0.087999 -3.21003e-20)
(0.99653 -0.00191418 2.17478e-22)
(0.996295 -0.00549745 -4.93225e-23)
(1.06967 -0.0514288 5.93463e-22)
(1.00014 -0.000278417 -1.74209e-26)
(0.980013 0.00279375 2.13845e-20)
(1.03694 0.0887632 1.38618e-20)
(0.976152 -0.0256755 -1.10031e-21)
(0.996056 -0.00227389 5.29613e-22)
(0.999725 -0.00309984 -6.8643e-23)
(0.995518 -0.00267038 1.29513e-22)
(0.999911 -0.000784781 -3.93824e-24)
(1.01311 0.0176443 3.93882e-20)
(1.14459 -0.0402218 -1.37167e-20)
(0.998702 -0.00184886 -5.59076e-23)
(1.06203 -0.0501161 -3.93127e-21)
(0.999708 -1.97716e-05 -3.22408e-24)
(1.05506 -0.0480816 -6.89642e-22)
(0.998507 -0.00172364 4.06577e-23)
(1.0486 -0.0454956 -4.287e-21)
(1.04283 -0.0425272 -4.55804e-21)
(0.990437 0.0555781 -6.77093e-20)
(0.983808 -0.00211542 -1.02861e-21)
(0.999573 -0.000305821 -6.43175e-24)
(0.998704 -0.0109215 2.79005e-23)
(1.0063 -0.00875962 2.22443e-22)
(1.07926 0.0128686 -2.53914e-20)
(1.06368 0.0841076 -8.33421e-20)
(0.962341 -0.0130288 6.57399e-22)
(1.03649 0.0198088 3.55319e-21)
(0.966092 0.00413881 -6.36386e-20)
(1.00607 -0.0311033 2.50021e-22)
(0.99382 -0.0289409 -2.75712e-22)
(1.0406 0.0104665 -5.47777e-20)
(0.994926 -0.00311364 5.74273e-23)
(1.17695 -0.0248165 -7.18046e-21)
(0.973201 0.00885548 1.02231e-19)
(1.05433 0.0465399 -1.66533e-20)
(0.985976 -0.00559564 1.30697e-21)
(1.04212 0.0181563 -1.77502e-20)
(0.99584 -0.00641269 -4.61423e-22)
(0.994069 -0.000317911 -9.36609e-22)
(0.998199 -0.00145943 2.473e-23)
(0.997836 -0.00134244 1.99573e-23)
(0.968079 -0.0355158 -1.64842e-22)
(0.999727 -9.1193e-06 1.7731e-24)
(1.17166 -0.0368018 1.16758e-20)
(1.16522 -0.0475705 3.57316e-21)
(1.15758 -0.0574573 2.88309e-21)
(1.14883 -0.0651761 -1.2439e-21)
(0.982735 -0.0145914 -3.69815e-22)
(1.12343 -0.0174176 6.0639e-21)
(1.0008 -0.000757738 6.07635e-24)
(0.998681 -0.0126158 -1.44526e-22)
(1.11967 0.0948709 1.68504e-21)
(0.989057 -0.00834 -6.34997e-22)
(0.999714 -0.000163325 -8.58328e-24)
(0.996747 -0.00216738 -1.23903e-22)
(0.994281 -0.00361806 -2.48706e-22)
(0.982366 -0.00091803 1.14595e-21)
(0.999817 -0.00055479 1.73929e-23)
(0.986828 -0.00146694 -1.17802e-22)
(1.03648 -0.022239 -7.31062e-22)
(0.933307 0.00871467 -3.83484e-20)
(1.11872 -0.0248721 2.73194e-21)
(1.01113 0.0210748 4.69152e-20)
(1.13963 0.00166887 -6.29913e-21)
(0.94721 0.0034619 0)
(1.11283 -0.0312807 1.21828e-20)
(1.10566 -0.0365803 -5.77584e-21)
(0.998871 0.00164539 5.18415e-20)
(0.978573 0.0669867 1.70932e-20)
(0.994769 -0.000153381 1.44388e-21)
(1.12632 0.0919238 2.00215e-20)
(0.9998 -0.000487899 -1.26817e-23)
(1.06817 -0.0258148 -4.71713e-21)
(1.09793 -0.0405011 -8.72055e-21)
(0.993573 -0.00418693 -5.27565e-22)
(1.08985 -0.0430748 -2.36775e-21)
(1.01922 -0.0291574 -1.04881e-22)
(0.981812 -0.0413482 -9.53156e-22)
(0.998685 -0.0144565 -6.09907e-22)
(0.995323 -0.00745201 -7.04457e-23)
(0.992803 -0.00482721 -8.49946e-22)
(1.00245 -0.0042231 -1.2146e-23)
(0.994747 -0.0085301 -8.54209e-23)
(1.04923 0.0983773 -4.25651e-20)
(1.02185 -0.0321182 -4.20075e-22)
(1.00968 -0.0178865 -2.22451e-22)
(1.00167 -0.000881475 9.09279e-23)
(0.996529 -0.000130854 2.92171e-21)
(1.00975 -0.0230811 3.50373e-23)
(0.997526 0.0365807 3.71673e-20)
(0.999632 -0.00434357 -1.04293e-22)
(1.05378 0.0790072 -3.26278e-20)
(0.992779 -0.0262316 -6.78118e-22)
(0.984095 -0.0360329 1.47485e-21)
(1.16465 0.0374887 -1.00152e-20)
(1.11899 0.0207801 -1.04736e-21)
(0.989957 -0.043397 0)
(0.965323 -0.00313854 -1.56397e-21)
(1.0041 -0.00318904 1.82602e-22)
(1.0073 0.00327713 2.73867e-20)
(1.0725 0.0484458 4.48881e-20)
(1.10108 0.0878787 -2.85312e-20)
(1.02682 -0.0031402 -6.30597e-21)
(1.00108 -0.000565584 1.61575e-23)
(1.16708 0.0269888 -3.05997e-21)
(1.16868 0.0164611 5.43749e-21)
(1.00363 -0.00225308 -2.87667e-22)
(0.999458 -0.000102943 9.79688e-24)
(0.99805 -0.00130879 -2.36814e-22)
(0.992675 -0.00121718 1.82602e-23)
(1.16929 0.00558252 -4.82099e-21)
(1.00354 -0.00147792 3.96805e-26)
(1.14359 0.0832312 3.47211e-20)
(0.991966 -0.00557494 -3.75731e-22)
(1.00647 0.0359458 -4.339e-21)
(1.03284 0.0716158 -4.10408e-20)
(1.01269 -0.0521479 -8.20847e-23)
(1.00052 0.00360751 1.97532e-20)
(0.999748 -0.000182754 9.86283e-24)
(0.98809 0.00330718 2.10853e-20)
(0.995673 0.0717838 -1.1086e-20)
(0.995759 -0.00298135 -1.77035e-22)
(1.12171 0.0129358 -1.12462e-20)
(0.963569 -0.0256034 -2.27233e-21)
(1.00755 -0.0102293 -8.91815e-23)
(0.924172 0.00929039 7.64219e-21)
(1.00395 -0.00423235 1.0315e-22)
(0.995949 -0.000143693 -1.31727e-22)
(1.21059 0.0311546 1.15025e-20)
(0.999892 -0.0005666 1.95155e-23)
(0.991708 -0.00151305 9.25348e-23)
(1.04864 0.015435 5.31646e-20)
(1.01776 0.0308743 -3.05415e-20)
(0.993845 -0.0130984 -2.33029e-22)
(0.980973 -0.00156552 4.77546e-22)
(1.12127 0.00434171 4.01244e-20)
(0.997806 -0.000969609 2.48215e-22)
(1.07914 0.0454909 2.47201e-20)
(1.0406 0.00231771 -4.29003e-20)
(0.990776 -0.00181796 -7.02078e-22)
(1.05981 -0.0325212 2.5318e-21)
(0.999541 -0.0069781 1.31359e-23)
(0.98968 -0.0021826 1.20431e-21)
(1.00044 -0.000389719 2.31856e-24)
(1.00064 -6.96645e-05 1.52821e-23)
(0.997492 -0.00158835 -6.33614e-23)
(0.994144 -0.00981386 3.58523e-24)
(1.03745 -0.00706273 2.41546e-21)
(0.991083 -0.00637453 1.24257e-22)
(1.19471 0.0685749 3.92063e-20)
(0.999267 -0.00110209 -5.23459e-23)
(0.985616 -0.00213734 2.02672e-21)
(1.03138 -0.0199385 9.86143e-22)
(1.1035 0.0343338 -5.73151e-20)
(0.956042 -0.010381 8.01351e-22)
(1.00532 -0.00451134 4.46289e-22)
(1.05243 0.0354267 2.18349e-20)
(1.0034 -0.00409119 -1.57847e-22)
(1.00003 -0.00044857 2.30957e-24)
(0.996822 -0.00577419 3.89981e-22)
(0.998725 -0.0165637 1.10253e-21)
(0.964764 -0.018436 1.6671e-21)
(0.995718 -3.93865e-05 -4.05311e-22)
(0.990121 -0.00729894 -3.42681e-22)
(1.00413 -0.00487482 -1.40598e-22)
(1.08546 0.0418562 7.71411e-20)
(1.13888 0.0615794 -1.48518e-20)
(1.10338 -0.0204832 5.88298e-21)
(0.987282 -0.00192894 6.62406e-22)
(1.02156 0.0636995 -3.45214e-20)
(0.988621 -0.00246298 1.68935e-22)
(0.9901 -0.0041392 -5.48706e-22)
(1.09404 0.0263829 1.45843e-20)
(0.910079 0.0166985 6.82982e-24)
(1.01605 0.0291794 6.39634e-21)
(1.00543 -0.0032114 4.18267e-22)
(0.970556 -0.00803812 -3.60981e-21)
(1.01498 -0.0254687 1.27454e-21)
(0.982503 -0.0211122 -1.95326e-21)
(0.984639 -0.00490452 6.30572e-22)
(1.14444 0.0545503 -1.87232e-20)
(0.902285 0.0405305 -9.55698e-20)
(0.988207 -0.0144727 7.00679e-22)
(1.01142 -0.095186 1.41089e-21)
(1.09488 0.00561924 7.96329e-21)
(0.999893 -2.82751e-06 4.97013e-24)
(0.992078 -0.0133401 5.11317e-22)
(1.00064 -0.000140867 2.87551e-23)
(0.994576 -0.00399543 -5.93774e-23)
(1.00109 0.0364393 1.68686e-20)
(1.07745 0.0159058 4.81434e-20)
(1.00029 -0.0020475 8.13875e-24)
(1.00744 0.0111697 -2.63404e-20)
(0.971388 -0.0221688 2.9024e-21)
(0.99957 -0.00508899 -1.28314e-22)
(0.986681 -0.0423202 5.32141e-22)
(0.994923 -0.0163531 1.7321e-22)
(0.999551 -0.000600114 5.22669e-23)
(0.992495 -0.00173576 1.51561e-22)
(0.981853 -0.0137708 -1.54726e-21)
(0.993148 -0.00526828 -2.1486e-22)
(1.07403 0.0157193 -4.05685e-20)
(0.916623 0.059584 -5.68051e-20)
(1.01438 0.0728113 -4.52472e-20)
(1.09505 -0.100519 9.21145e-22)
(1.10256 -0.0704692 -4.45327e-22)
(0.910584 0.0533232 4.64736e-20)
(0.99489 0.0554518 -2.54138e-20)
(0.921889 0.065429 8.99372e-20)
(1.00046 -0.000463827 8.38189e-24)
(0.985381 -0.00184015 3.0378e-22)
(1.02584 -0.0829606 -1.39139e-22)
(0.904736 0.0481095 -1.11319e-20)
(0.92818 0.0692742 3.56028e-20)
(1.13176 0.0121216 -2.11208e-20)
(1.07044 0.0833231 6.91991e-20)
(1.02329 -0.0200883 -1.33981e-21)
(0.934571 0.0730474 -9.84726e-21)
(1.05468 -0.000874126 9.88616e-23)
(1.00561 -0.018488 5.31645e-23)
(1.08559 -0.00180852 1.7399e-20)
(0.940929 0.0756637 5.37041e-20)
(0.990716 -0.00232979 -2.61053e-22)
(0.986916 -0.00255418 8.27878e-22)
(1.06779 0.0187479 3.86885e-20)
(0.946749 0.077999 -4.3534e-20)
(1.02632 0.0651994 -6.4731e-20)
(1.10264 0.110239 4.23667e-20)
(1.07102 -0.0155907 1.58625e-20)
(0.952837 0.0790301 -9.16671e-21)
(0.999983 -0.0085075 1.97183e-22)
(0.96053 -0.0220557 1.73175e-21)
(0.947466 0.0236604 -2.22356e-20)
(1.0031 -0.0180936 1.28122e-22)
(0.991914 -0.0182519 -1.20421e-21)
(1.02236 -0.0179982 3.27749e-22)
(0.958622 0.079888 1.35803e-20)
(0.999731 -0.0144053 2.02145e-22)
(1.01331 0.0363726 -4.35568e-20)
(0.964109 0.0800629 0)
(0.999976 -0.000183177 3.63981e-24)
(1.07396 -0.0401548 2.68553e-21)
(1.00335 -0.0476383 -4.41514e-22)
(0.999617 -0.0109204 1.06827e-22)
(1.00438 -0.00375348 -4.07386e-23)
(1.00445 0.00807343 -1.18623e-20)
(0.968102 0.0526627 1.66563e-20)
(1.09091 -0.0308682 9.16008e-21)
(1.04219 0.0899958 -5.33184e-21)
(1.12128 0.0617523 4.10572e-20)
(0.969809 -0.0340629 9.07684e-22)
(0.999898 -0.00095686 4.9197e-24)
(0.999833 -0.00105154 1.10796e-23)
(0.983532 -0.0264438 -5.78271e-22)
(1.00023 -6.18042e-05 1.95594e-25)
(1.08641 0.0683942 8.90514e-20)
(1.03571 -0.0744345 -2.2111e-22)
(0.995399 -0.00880738 9.74448e-23)
(0.991908 -0.0474229 -2.22033e-21)
(1.23317 0.0263335 -9.82468e-22)
(1.15511 -0.152737 7.55519e-23)
(1.01664 -0.111957 5.70862e-22)
(1.11546 -0.158574 -1.80668e-21)
(1.0312 0.100494 -4.66539e-20)
(1.00687 -0.0965913 -9.41575e-22)
(1.19483 -0.131802 1.86173e-22)
(1.03152 -0.126492 2.46846e-21)
(0.993782 -0.0612074 3.48157e-21)
(1.19563 0.0775088 -5.4883e-21)
(1.00032 -0.0833424 3.44728e-21)
(1.07729 0.115989 -1.03179e-21)
(1.04438 0.107875 -2.954e-20)
(1.02053 0.0916174 3.24906e-20)
(1.24312 -0.0103419 -5.35044e-21)
(1.08035 -0.15379 -4.35344e-24)
(1.01216 0.0822214 -3.71064e-21)
(0.996356 -0.071296 -1.25515e-21)
(1.22585 -0.0965717 -1.17511e-21)
(1.21532 0.0551967 1.44945e-20)
(1.1532 0.103634 -2.96175e-20)
(1.06012 0.1131 -3.31022e-20)
(1.09472 0.117533 -3.44515e-21)
(1.00976 0.0791612 4.76595e-20)
(1.13343 0.111636 3.34815e-22)
(1.17435 0.093164 3.33052e-22)
(0.992376 -0.0524853 -6.88679e-22)
(1.05218 -0.141569 -2.50099e-21)
(1.11379 0.115592 -4.67372e-20)
(1.00757 0.0761554 3.13486e-20)
(1.24098 -0.053343 3.81552e-21)
(0.998583 -0.0793859 -9.37787e-22)
(0.998026 -0.0751779 -8.48686e-23)
(1.06076 -0.146118 2.09931e-21)
(1.09158 -0.156313 -2.26087e-21)
(1.07021 -0.150377 3.69585e-22)
(1.12796 -0.157579 5.52276e-24)
(1.03823 -0.131425 2.93434e-22)
(1.10262 -0.15817 -4.64583e-23)
(1.14158 -0.156053 1.14784e-22)
(0.985953 -0.00229707 -6.05541e-22)
(1.24382 -0.0380067 2.75676e-21)
(1.00032 -0.000406891 1.68959e-24)
(0.969457 0.079718 -6.22971e-20)
(1.20894 0.0641284 -4.73833e-21)
(1.18159 0.0886243 1.68009e-20)
(0.996265 -0.000157777 1.16512e-22)
(0.999849 -8.30493e-06 -2.84526e-24)
(1.03839 0.0726822 4.12934e-20)
(0.996015 -0.0303469 -6.78179e-22)
(0.992759 -0.0553469 1.03947e-22)
(0.991577 -0.00683481 -6.88714e-22)
(0.999815 -4.44674e-06 6.12488e-26)
(0.987451 -0.00342501 7.12428e-23)
(1.06552 0.114559 7.89803e-21)
(0.974577 0.0796935 -8.58069e-20)
(0.992918 -0.00182699 -1.37208e-22)
(1.00593 -0.00686107 -1.8069e-23)
(0.990235 -0.0113318 -1.00001e-21)
(1.02408 0.0946065 -3.14617e-20)
(1.00017 -4.92973e-05 0)
(0.999881 -0.00115911 1.25197e-23)
(1.02282 -0.0105369 -9.72262e-22)
(0.99847 -0.0315608 5.47758e-22)
(1.04364 -0.0818733 -3.11878e-23)
(0.968928 -0.0178196 -2.66096e-21)
(1.09404 -0.00764161 -1.1838e-20)
(0.981127 -0.0268793 9.71779e-22)
(1.04435 0.0734426 -5.72096e-22)
(1.02427 -0.0247562 -2.08368e-21)
(0.979221 0.0790928 -2.34412e-20)
(1.0112 -0.00270702 -8.75773e-22)
(1.00022 -4.10463e-05 -2.34532e-25)
(0.998862 0.073865 9.16543e-20)
(1.11806 -0.0644675 6.6512e-21)
(0.984281 -0.0419668 1.646e-21)
(0.999823 -0.000212552 -3.7515e-24)
(0.978638 -0.0133066 1.61987e-21)
(1.02745 0.0975617 -1.27837e-21)
(1.03773 -0.0606498 -1.56658e-21)
(0.993689 -0.00153759 -2.06128e-22)
(0.983659 0.0783844 6.93429e-20)
(1.00316 0.0277394 3.43511e-20)
(0.999239 -0.000557841 4.12797e-24)
(1.05433 0.029498 -1.52324e-20)
(1.02778 -0.113247 -1.85233e-21)
(0.987457 -0.00270752 7.68553e-23)
(0.999906 -0.000450582 -9.57493e-24)
(0.980744 0.0748909 -4.0958e-20)
(0.930221 0.0220633 3.86825e-20)
(0.973173 -0.00184578 3.02388e-22)
(1.08774 0.00954194 -2.62775e-20)
(0.99342 -0.00866411 9.25624e-22)
(1.01273 0.0154184 2.9591e-20)
(1.04117 -0.0855054 -1.93195e-22)
(0.987937 0.0774923 6.62047e-20)
(0.990633 -0.0178825 7.77503e-22)
(1.01034 0.0481573 1.47945e-20)
(0.989252 -0.0128313 1.25189e-21)
(0.99935 -0.000454614 3.36152e-23)
(1.00002 -0.000347453 -3.65042e-25)
(1.01022 -0.0271552 3.1548e-22)
(1.00448 -0.0176084 -2.48026e-23)
(0.966788 -0.0168769 -3.73606e-22)
(1.14075 -0.0441277 2.53995e-21)
(1.12223 0.10316 -1.58595e-20)
(0.998768 -0.000310453 -4.37913e-23)
(1.21354 -0.0703684 -6.64664e-21)
(1.00706 -0.0178531 1.97605e-22)
(1.09162 0.0202263 3.96182e-20)
(1.04964 -0.0355304 2.91509e-22)
(1.0057 0.0542627 8.18097e-21)
(0.998155 -8.88221e-05 -5.01535e-22)
(1.00666 -0.0210297 7.89713e-23)
(1.0008 -8.97837e-05 5.07071e-25)
(0.997746 -0.00156576 4.43796e-23)
(1.00968 -0.0210529 9.81388e-24)
(0.94552 0.0455958 -1.1963e-20)
(1.04745 0.0434809 4.04097e-20)
(0.991101 -0.0118498 1.46903e-21)
(1.01045 0.0144197 2.12391e-20)
(0.997093 -0.0460435 2.71092e-22)
(0.968443 -0.0191723 3.32636e-21)
(1.02619 -0.0124547 8.35289e-22)
(1.03764 -0.0394269 4.5077e-21)
(0.993913 -0.0452045 -1.17126e-21)
(1.00466 -0.000486688 -1.07458e-22)
(1.07791 -0.0469801 -5.26567e-21)
(0.998499 -0.00284097 -2.81243e-22)
(1.00033 -0.000477501 -3.40401e-24)
(0.976876 -0.0185407 4.49984e-22)
(1.00907 -0.0118007 -3.62489e-22)
(0.983206 0.0174544 -3.62511e-20)
(0.995353 -0.000308121 1.42033e-22)
(1.06831 0.0684606 -3.84518e-21)
(1.0841 -0.0183649 8.18659e-21)
(0.988866 -0.0426162 -9.40064e-22)
(0.998532 -0.0015325 -7.68198e-23)
(1.00038 -0.000369438 1.90097e-24)
(1.02515 0.0183291 -2.29096e-20)
(1.00296 -0.000351998 -8.74541e-23)
(1.06098 0.0453175 -4.26266e-20)
(0.997068 -0.0108069 -2.99661e-22)
(1.01107 0.0190048 -6.50777e-20)
(1.00758 0.0244916 -2.45376e-20)
(0.969984 -0.0226948 7.60023e-22)
(1.00039 -0.000512681 -3.01489e-24)
(0.993996 0.0304152 -2.70667e-20)
(0.993519 -0.011224 4.02752e-22)
(0.995199 -0.00042303 -8.54173e-23)
(1.09127 0.0239152 -7.73148e-20)
(0.992772 -0.0117598 -2.05382e-22)
(1.17118 -0.0118693 1.6998e-20)
(0.99931 -0.000625176 -3.64304e-23)
(1.08916 0.0652094 -5.76406e-20)
(1.00846 -0.0094831 2.69798e-22)
(0.998793 -0.000990177 5.07229e-23)
(1.06857 0.0722542 3.64766e-20)
(1.00093 0.0444173 -1.80092e-20)
(0.999373 -0.000379158 2.98885e-23)
(1.00735 -0.0413841 -2.20536e-22)
(0.998381 -0.00140913 1.09145e-23)
(0.982389 -0.00067124 -2.16517e-21)
(1.08175 -0.0242896 -2.42752e-21)
(0.999129 0.0548449 -4.77776e-20)
(1.0394 -0.0365365 1.74499e-21)
(1.05175 0.0322318 1.82178e-21)
(0.961042 0.0227534 -5.32114e-20)
(0.999931 -0.000508341 -3.61686e-24)
(1.04807 -0.066819 -7.89737e-23)
(0.98363 -0.038379 -3.61759e-21)
(1.0048 -0.00173379 2.94542e-22)
(1.12067 -0.00337937 -1.19512e-20)
(1.05173 -0.0226553 1.35737e-21)
(1.05594 -0.0182796 3.80532e-21)
(1.0084 -0.014005 -3.83339e-22)
(1.06134 -0.0130121 -1.20287e-21)
(1.01087 -0.0483242 -1.22869e-21)
(0.998959 -0.000819145 4.77613e-23)
(0.997561 0.0222948 -6.81268e-20)
(0.999143 -0.000577103 -1.58798e-23)
(1.11699 -0.0900803 -1.40149e-21)
(1.0099 0.0120033 5.25442e-20)
(0.994214 -0.00677911 3.6714e-22)
(1.19502 -0.0877096 8.79321e-22)
(1.08334 0.00958054 -4.41073e-20)
(0.976436 -0.0214217 -2.65766e-22)
(0.998432 -0.00122636 2.64692e-23)
(1.0094 0.0221003 -2.26728e-20)
(1.10801 0.0279287 9.44401e-22)
(1.01015 -0.0031228 9.07103e-22)
(1.05782 -0.0305377 9.71267e-22)
(1.00204 -0.00266569 -3.79065e-23)
(1.00712 -0.0163033 -1.00376e-23)
(1.04702 -0.0267193 2.3398e-21)
(0.99979 -0.000239048 1.15066e-23)
(0.991841 0.076417 -3.68757e-20)
(0.989541 -0.00982849 1.79006e-22)
(0.991919 -0.0113396 -1.45273e-22)
(1.03973 -0.0129952 1.65589e-21)
(0.999684 -5.92039e-05 1.47814e-25)
(0.987129 0.000932591 -4.80147e-20)
(1.00778 0.0211315 9.72309e-20)
(1.00001 -0.000167717 -4.84597e-24)
(1.00202 -0.000651614 -1.06501e-22)
(0.998998 -0.000700415 2.53197e-23)
(1.00027 -0.00402044 -1.67917e-23)
(1.05236 0.108879 1.16758e-21)
(0.999804 -0.00468072 1.35645e-22)
(1.0016 0.0239716 3.71608e-20)
(0.973873 -0.0104873 1.14057e-21)
(0.964731 0.0278112 3.13321e-20)
(0.964416 0.0174065 6.40039e-20)
(1.00033 -2.36381e-05 -1.09506e-23)
(0.998643 -0.00102558 1.41589e-22)
(1.0196 -0.00880534 -4.21497e-22)
(0.992575 0.000472441 -8.83566e-20)
(1.00942 -0.0132708 -3.63647e-22)
(1.01298 0.0321173 -4.29299e-21)
(1.09517 0.03673 -8.61866e-21)
(1.00824 -0.0202793 -3.37009e-22)
(0.977482 0.000561839 -6.35475e-21)
(1.17711 -0.116465 4.84363e-22)
(1.04164 0.00839788 7.82754e-21)
(1.08176 -0.00599397 -1.0213e-20)
(0.980729 -0.000823236 5.25725e-21)
(1.0604 -0.0728286 1.03264e-21)
(1.00867 -0.0153933 6.29156e-22)
(1.06697 -0.066873 1.67955e-21)
(0.96658 0.01049 -1.36297e-20)
(1.03456 -0.0340456 -2.39245e-21)
(0.996712 0.0241255 8.49081e-20)
(0.981076 0.0187697 -5.16446e-21)
(0.978607 0.0137416 2.61078e-20)
(0.981181 -0.0230971 2.49373e-21)
(1.07127 0.115487 7.33347e-23)
(0.997639 -8.92368e-05 -2.06602e-23)
(1.05422 -0.0776807 2.86088e-22)
(0.977394 -0.0250448 2.02403e-21)
(1.1143 -0.14379 2.69506e-21)
(1.01649 -0.00397596 3.47551e-23)
(1.09375 0.0796388 -1.23733e-20)
(1.01183 0.0251136 4.42249e-20)
(0.970669 -0.00920479 -6.83157e-22)
(1.00449 0.0356419 -6.25818e-20)
(0.979347 -0.0407318 2.43963e-21)
(1.0851 0.00209329 -1.30869e-20)
(1.07739 0.0820782 4.15751e-20)
(0.999844 -0.000296346 -1.26063e-23)
(0.974153 0.0303475 -1.72635e-20)
(1.00504 -0.0365723 -1.71942e-23)
(0.9903 -0.0103817 4.18204e-22)
(0.974734 -0.00208223 1.66495e-22)
(1.00628 0.0417621 -2.78798e-20)
(1 -0.000508602 -6.72552e-25)
(0.979936 -0.0277672 -8.30695e-22)
(1.01108 0.0367143 5.40104e-20)
(1.09751 -0.0679732 2.61865e-21)
(1.00195 0.0723351 2.05154e-20)
(1.03595 0.0165094 -4.08775e-21)
(1.00185 -0.0356004 3.08752e-23)
(0.997776 -0.000160176 3.42853e-22)
(1.09017 -0.0964237 -6.62134e-22)
(0.999997 -0.000399111 -5.69623e-24)
(1.03939 -0.0626963 1.69749e-22)
(1.00627 -0.0770313 4.02681e-22)
(0.927819 0.0622939 1.19952e-20)
(0.982115 -0.00169315 -3.45783e-22)
(1.03545 -0.0814507 4.0774e-22)
(1.03318 0.0381697 -1.01381e-19)
(1.01686 -0.0262059 -3.81601e-22)
(0.989674 0.000172299 7.54691e-22)
(0.996902 -8.21171e-05 -2.30277e-22)
(1.23751 0.014853 -1.82732e-21)
(1.01394 -0.0088482 9.03142e-23)
(1.03944 0.0601956 -1.16563e-20)
(0.99732 -8.62438e-05 2.35143e-22)
(1.01118 -0.0238976 -1.59909e-23)
(0.985469 -0.000630652 -2.48781e-21)
(1.0041 -0.00223836 3.7235e-22)
(1.01564 -0.0200907 -3.87032e-22)
(1.00451 -0.0315802 2.11361e-22)
(1.07429 -0.013368 -8.4172e-21)
(1.05059 0.0738421 -4.21096e-20)
(1.00158 0.0263721 3.20415e-20)
(0.991731 0.00135626 -2.06055e-20)
(0.968804 0.0319909 3.70164e-21)
(1.06015 0.0413954 2.34816e-20)
(1.03879 0.100417 8.35093e-20)
(1.02289 0.036966 -6.66478e-20)
(0.949226 0.00701906 -5.75451e-21)
(1.01444 0.0339382 -8.28961e-21)
(1.15529 -0.100429 1.31592e-21)
(0.900248 0.0327439 1.5901e-23)
(1.04212 -0.0155934 -1.82239e-21)
(1.00509 0.0163931 -1.93741e-20)
(0.996643 -0.00247416 3.91958e-22)
(1.00045 -0.0042924 1.85271e-23)
(0.933012 0.0245147 -5.87443e-20)
(0.9986 -0.002551 -1.90958e-23)
(0.990559 0.0125358 9.25275e-20)
(1.00017 -0.000152579 2.07492e-24)
(1.06339 0.0803015 -1.3529e-20)
(1.0478 -0.0818613 -4.04232e-23)
(1.0044 -0.00272792 -2.9083e-22)
(1.07708 -0.0378112 -6.39326e-21)
(1.0196 -0.0122634 1.86622e-21)
(1.06208 -0.0889574 -1.24924e-21)
(0.974839 -0.00140869 -6.02932e-21)
(0.96964 -0.00654457 -1.0456e-21)
(1.182 0.0695676 4.20358e-21)
(0.999555 -0.00596922 7.07455e-23)
(1.01138 0.0501737 -1.60657e-20)
(0.999962 -0.00906715 8.88798e-23)
(1.03439 -0.0114584 5.52503e-21)
(0.999109 -0.000676741 -6.90673e-24)
(1.00098 -0.000939593 5.70695e-23)
(1.03569 -0.0168354 -4.70334e-21)
(1.03234 -0.0249582 -6.75645e-22)
(0.989701 -0.00893111 -9.16152e-22)
(0.978548 -0.0012615 3.0173e-23)
(0.99894 -0.000108316 -6.09587e-23)
(1.01413 -0.0060032 3.15713e-22)
(1.04745 -0.0739831 -3.02327e-23)
(0.976371 0.0123443 1.14254e-20)
(1.02751 0.0904719 4.20396e-20)
(1.10712 -0.0668915 7.7507e-21)
(1.10071 -0.0982379 -1.58989e-21)
(1.0039 0.0337864 4.29864e-20)
(1.05662 0.0401761 -3.05665e-20)
(1.22591 0.0163978 1.27166e-20)
(1.1175 0.0836822 -6.98366e-21)
(1.10454 0.0254702 -1.13336e-20)
(1.00675 -0.00392065 4.18495e-22)
(0.99194 -0.00101074 -4.2659e-22)
(1.04265 -0.0363821 -4.77268e-21)
(0.999411 -0.00050837 5.67189e-24)
(1.05857 0.0337835 5.46879e-21)
(1.03355 0.0685042 -6.27874e-21)
(1.0293 -0.0839623 1.78731e-22)
(0.996278 -0.0025558 -4.15004e-22)
(0.99093 -0.00348898 1.08768e-21)
(0.978029 -0.0412493 -2.77668e-21)
(0.931625 0.0152385 -7.25213e-21)
(0.997231 0.0212583 -2.16041e-20)
(0.985621 -0.000805483 5.02999e-23)
(1.02196 -0.0239833 2.82036e-22)
(0.996144 -0.00291138 1.25314e-22)
(0.998594 -0.00118612 -1.2845e-22)
(1.03174 -0.0121555 -1.56312e-21)
(0.995885 -0.000381648 2.67062e-22)
(1.09338 -0.0103652 1.06964e-20)
(1.04425 0.0418868 -4.37158e-20)
(1.11323 -0.068963 -6.98166e-21)
(1.10564 -0.101717 8.86885e-22)
(0.983705 0.033482 -2.97151e-20)
(0.982264 0.035948 4.79867e-20)
(0.99442 0.0339228 2.16013e-20)
(1.12813 -0.10092 -1.97126e-21)
(0.997676 -0.00041855 -4.08519e-23)
(1.08453 -0.0369108 -7.72567e-21)
(0.995617 -0.00337288 3.66706e-22)
(1.0808 -0.0136671 8.64393e-23)
(1.00544 0.0263994 -3.16302e-20)
(0.944354 0.0218383 3.52071e-20)
(1.06037 0.0277245 7.43853e-21)
(0.989727 -0.0330078 4.1404e-23)
(0.9998 -0.00550484 -6.29574e-23)
(1.03088 0.0934094 1.06779e-20)
(1.09946 0.00540968 -1.89975e-20)
(0.968935 -0.0216506 -2.57595e-21)
(0.995168 -0.00478886 -1.44948e-23)
(0.999822 -0.00644034 9.81029e-23)
(1.025 -0.0796371 2.04088e-21)
(0.9359 0.00603911 -1.49274e-20)
(1.01475 -0.0163822 1.41125e-21)
(1.07962 -0.0308938 5.84326e-22)
(1.10084 0.0271992 -7.77364e-21)
(1.07501 -0.0253578 3.03976e-21)
(1.00462 0.0278646 -4.97638e-20)
(1.00648 -0.029385 -1.69037e-22)
(1.00663 0.015099 1.44037e-20)
(0.987573 0.0226815 2.06301e-20)
(1.04149 -0.0245413 5.49657e-21)
(1.01719 -0.054665 1.24534e-22)
(1.00501 -0.00263871 7.42212e-23)
(1.00782 0.0275984 -4.28879e-20)
(1.04217 -0.0303589 -1.86843e-21)
(1.00498 -0.00577795 -3.41409e-22)
(0.988034 -0.000861535 -1.00849e-21)
(1.08563 0.00385367 3.69335e-21)
(1.01376 0.0299211 2.61197e-20)
(1.06228 0.0216454 -3.32338e-20)
(0.979156 0.0287094 1.0451e-19)
(0.989293 -0.0162092 -6.07562e-24)
(1.0008 -0.0175013 -9.93194e-23)
(1.00772 0.0343517 7.53953e-21)
(1.08179 -0.0444108 -6.44262e-22)
(1.09132 0.112375 1.94227e-20)
(1.01463 -0.0234097 -1.4428e-21)
(0.995184 -0.00344776 -1.54901e-22)
(1.00116 -0.0325026 7.81204e-23)
(1.04015 0.105169 1.65674e-20)
(1.09794 0.0208793 -1.54546e-20)
(0.998562 -4.90615e-05 -2.25493e-22)
(1.00548 -0.034745 -8.98874e-23)
(1.02593 -0.00466018 1.72715e-21)
(1.10671 -0.0891908 2.69906e-21)
(0.957612 -0.00581306 1.10739e-21)
(1.09527 0.0152254 -3.50429e-20)
(1.16868 -0.00568295 -1.46978e-20)
(0.979882 0.00425966 4.68997e-20)
(0.961275 0.026456 -2.15773e-20)
(1.01848 -0.024805 4.89157e-22)
(1.02073 -0.0105653 2.54597e-22)
(1.09128 0.0376057 -3.11489e-20)
(1.07665 0.0778989 2.41445e-20)
(1.09283 0.0103564 3.07702e-21)
(1.00828 -0.0186675 -1.0259e-22)
(0.958658 0.0736993 -1.02298e-20)
(0.984664 -0.0011972 -1.22566e-22)
(1.17327 -0.0797946 1.0908e-21)
(1.00528 0.0293103 -4.95587e-20)
(0.932427 0.0177617 -5.49602e-20)
(1.01676 0.086376 7.30666e-20)
(1.06358 -0.0316904 2.96433e-21)
(0.970222 0.0177882 -1.74056e-20)
(1.05375 0.0427199 3.13766e-20)
(1.00036 -6.41148e-05 -4.61755e-24)
(1.00432 0.0307315 -1.94477e-20)
(0.965939 -0.0158396 2.53017e-21)
(1.1475 -0.0242743 2.03183e-21)
(1.00186 -0.00199176 1.06603e-22)
(1.03708 -0.0850962 -8.77465e-23)
(0.99502 -0.00390939 -2.35549e-22)
(0.986077 0.0526029 -8.74567e-20)
(0.98498 -0.00056224 -2.97758e-21)
(0.994381 -0.00453848 4.05325e-22)
(1.22053 -0.00683745 -9.71628e-21)
(1.02053 -0.00694055 -3.93281e-22)
(1.00096 -0.000228476 -3.07659e-23)
(0.999872 -0.00163755 2.73469e-23)
(0.970984 -0.00216411 4.82897e-21)
(1.02177 -0.0786224 -5.07657e-22)
(0.992046 -0.00214299 1.7102e-22)
(0.918222 0.0123936 -2.89166e-20)
(1.00045 -0.0153834 -5.43334e-23)
(0.966821 -0.0296712 1.0572e-21)
(1.03454 -0.0393144 -3.4609e-21)
(1.00478 -0.00505765 3.32188e-22)
(0.95391 -0.00835064 1.48422e-21)
(1.00048 0.000769781 -6.89219e-21)
(1.0013 0.000589658 -6.63176e-25)
(1.07694 -0.0842615 2.13328e-21)
(0.982862 -0.00393206 -7.8007e-22)
(1.08584 0.00824814 -1.78604e-20)
(1.0647 0.0464995 -2.88052e-20)
(1.07265 0.0125048 -2.21421e-20)
(1.0194 -0.01573 1.01869e-21)
(1.14284 -0.0339296 1.11998e-20)
(1.00125 -0.000846942 1.87987e-23)
(1.00324 0.053829 1.97803e-20)
(1.01956 -0.0557412 -6.11038e-23)
(1.00002 -0.0164664 -1.67296e-22)
(0.976072 0.0181966 -4.2374e-21)
(0.993897 -0.00461479 -1.45131e-22)
(1.07747 0.0417768 -2.4008e-20)
(1.06996 -0.0346359 -4.15819e-21)
(0.999939 -0.000400249 6.47637e-24)
(1.00758 -0.0324585 -4.03268e-22)
(1.12226 -0.00789074 -9.89641e-22)
(1.11193 0.0259515 -3.51545e-21)
(1.003 -0.00256089 2.03508e-23)
(1.07294 0.076564 -4.16613e-20)
(0.994607 -0.000300056 3.48496e-22)
(1.00709 -0.0342973 5.02105e-22)
(1.05032 0.0413102 -4.27586e-20)
(1.09252 -0.00534111 -1.98212e-22)
(1.05011 -0.0857151 -1.72947e-23)
(1.03266 -0.0746926 3.39339e-22)
(1.09368 0.00121329 -7.9856e-21)
(0.993666 -0.00520696 1.20672e-22)
(0.993083 0.0324233 -7.62039e-20)
(1.04434 -0.13733 -1.2462e-21)
(1.02703 -0.033153 1.20754e-21)
(0.971139 0.0295814 2.40526e-20)
(1.01494 -0.0509278 1.79501e-22)
(1.0024 -0.0338265 8.38077e-22)
(1.11639 -0.00265804 -2.97246e-21)
(0.975452 -0.0384327 2.38112e-22)
(0.975087 0.0329862 6.95509e-21)
(0.999989 -0.00030633 1.76509e-24)
(1.13774 0.0884371 -1.14197e-20)
(1.07019 -0.0468356 1.34139e-21)
(1.02466 -0.117081 9.24482e-22)
(1.05647 -0.0443 5.51042e-22)
(1.00894 -0.0470808 5.48733e-22)
(1.04459 -0.0393372 1.42042e-21)
(1.0577 0.0305777 1.97573e-22)
(1.02384 -0.0124028 -6.35933e-22)
(1.10016 0.0314716 -9.73635e-21)
(1.0751 0.0700665 -3.71362e-21)
(1.11507 -0.0218168 6.53803e-21)
(1.00269 0.026513 1.81702e-20)
(1.08891 -0.0384312 5.09239e-21)
(1.10327 -0.0324078 -5.86425e-21)
(1.06831 -0.0216704 -2.14297e-20)
(1.15186 -0.0520303 2.44937e-21)
(1.16941 -0.0230064 -3.74797e-22)
(1.11687 0.0119535 2.33163e-20)
(1.00852 0.00703649 -5.85702e-20)
(1.00506 0.0323998 -2.02617e-20)
(1.08386 -0.0152106 -1.13411e-20)
(1.00691 -0.0480241 -2.39673e-22)
(1.05582 0.0365793 7.79256e-21)
(1.2297 0.00435559 4.44685e-21)
(1.08128 -0.0207602 -1.2918e-20)
(1.03778 -0.019357 6.0984e-21)
(1.11665 -0.0593858 4.17e-21)
(1.12465 0.0654089 1.09196e-20)
(1.16256 0.0157834 -1.56496e-20)
(1.0011 0.00827494 -4.41066e-20)
(0.991174 -0.0024123 2.96208e-22)
(1.15855 0.035111 4.02495e-20)
(1.04065 -0.00928197 -5.91361e-21)
(0.978635 -0.0271337 -2.0655e-21)
(1.00037 -0.000307932 -3.73399e-24)
(1.01886 -0.0192947 6.9741e-22)
(0.983873 0.0510064 1.16223e-21)
(0.99021 -0.0144496 -9.52296e-22)
(0.989921 -0.00369137 1.16456e-22)
(0.995736 -0.00409821 9.78901e-23)
(1.05239 -0.0191636 -6.41579e-21)
(0.905297 0.0430738 8.46848e-20)
(1.03005 0.061437 5.00928e-20)
(1.05758 -0.0149539 1.13497e-20)
(1.06008 0.0787083 4.46438e-20)
(0.991595 -0.00202942 -3.45673e-22)
(1.00572 -0.00600601 4.47545e-23)
(1.03237 -0.0172992 1.16158e-21)
(1.04832 -0.0235086 -5.17492e-21)
(1.13502 0.0581446 7.05348e-21)
(1.05947 0.0245212 4.61188e-20)
(0.999691 0.0258186 -6.90027e-20)
(1.00215 -0.0171943 -4.53966e-23)
(1.0611 0.0181125 2.00884e-20)
(1.12421 0.0876229 -4.43071e-20)
(1.08676 0.0126583 1.88237e-20)
(0.994309 -0.000869446 -3.5199e-22)
(1.01085 0.0547726 -4.42345e-20)
(1.00049 -0.000337659 1.88411e-23)
(1.07401 -0.0447646 1.01589e-20)
(1.09969 0.0839151 -7.23261e-22)
(0.915625 0.0548399 2.45355e-20)
(0.920736 0.0611265 1.26499e-20)
(1.044 0.100535 5.72347e-20)
(1.01797 -0.0227482 9.6097e-22)
(1.015 -0.00736017 2.202e-22)
(1.08124 0.0835025 -6.11096e-20)
(0.909487 0.0495217 -1.05082e-19)
(0.926148 0.0657203 -9.65362e-20)
(1.06189 -0.0680229 1.53347e-21)
(1.05599 -0.0734535 -1.18218e-21)
(1.18479 0.0483201 -1.00089e-20)
(0.986499 -0.0388629 -3.15797e-21)
(0.932292 0.0693325 1.90152e-20)
(1.08868 0.0858513 -6.38173e-21)
(1.13854 -0.0597091 -5.64754e-21)
(1.02057 -0.0140848 -1.67825e-21)
(1.00292 -0.00124114 2.17471e-22)
(1.00706 -0.00810846 -4.1179e-22)
(0.93877 0.072647 -2.37626e-20)
(0.9846 -0.00269225 -1.82054e-21)
(1.06617 0.103015 -4.07928e-21)
(0.989246 -0.0150573 -2.85732e-22)
(0.944375 0.075251 -2.14865e-20)
(1.00067 -0.00027477 -9.92358e-24)
(1.16723 -0.016898 -2.17223e-20)
(1.03677 -0.0137492 -4.62708e-21)
(1.00003 0.00641571 -3.63906e-20)
(0.950053 0.0768909 4.45263e-20)
(1.05869 -0.0208979 2.08767e-21)
(0.95566 0.0777842 -1.3367e-20)
(1.03135 0.0665039 -6.67544e-20)
(1.05372 0.0755028 4.48209e-20)
(0.990445 -0.0167062 -1.66429e-21)
(1.02026 -0.0177124 2.14128e-22)
(0.961389 0.078432 -1.10123e-20)
(1.0195 -0.021305 2.95527e-22)
(1.00115 0.0253282 -2.65061e-20)
(1.06663 0.0397281 -1.07577e-20)
(1.09765 0.024872 4.65716e-22)
(1.06985 0.0792762 8.17569e-21)
(1.04989 -0.0779284 5.98381e-23)
(1.08346 0.0767434 5.19599e-20)
(1.0122 -0.0298908 -3.51719e-23)
(1.09502 0.0188437 5.46856e-20)
(1.00271 0.0675826 3.56095e-20)
(1.20524 -0.0321841 -1.65801e-21)
(0.952405 0.00307844 1.16515e-20)
(0.964099 0.0208437 -3.62523e-20)
(1.00033 -0.000166546 -4.18371e-25)
(1.09246 0.0135023 1.87431e-20)
(0.987964 0.0260199 -1.92404e-20)
(1.01714 -0.0443074 6.169e-23)
(1.04428 -0.03312 -4.98796e-22)
(1.00737 0.0522779 3.4902e-20)
(0.997643 0.0345522 4.64168e-20)
(1.00679 -0.00709364 1.79253e-22)
(1.09057 0.00866402 -5.06634e-21)
(1.14557 0.0166238 -1.77596e-20)
(0.966864 0.0784336 3.62316e-20)
(1.08378 -0.0323447 1.27638e-21)
(0.999796 -0.000283674 -6.16809e-24)
(1.08147 -0.0105709 1.98724e-21)
(0.967587 0.0159232 -4.7787e-20)
(0.992806 -0.00690071 -1.05171e-22)
(1.04316 0.024717 -1.417e-21)
(0.996743 -0.028945 1.40697e-21)
(1.07889 -0.0269358 -2.9488e-21)
(1.01183 0.0799736 5.20811e-21)
(1.00948 0.0768931 -3.99836e-20)
(1.0005 -0.0808623 -2.10646e-22)
(0.998339 -0.0731177 3.05754e-21)
(0.999372 -0.0769054 -1.75595e-21)
(1.05743 -0.141204 1.76188e-21)
(1.08692 -0.151948 1.28193e-21)
(1.07617 -0.149307 8.3129e-23)
(1.12117 -0.154815 2.54067e-21)
(1.03602 -0.126778 -1.78614e-21)
(1.10901 -0.154945 1.93802e-21)
(1.06652 -0.145556 -2.70098e-21)
(1.09759 -0.154526 -3.20052e-22)
(1.14744 -0.150817 1.03168e-22)
(1.13382 -0.153006 -2.25172e-21)
(1.23801 -0.04511 -4.50279e-21)
(1.22933 -0.0166352 -9.16844e-21)
(1.00266 -0.00273928 1.49567e-23)
(1.13965 -0.0958124 3.4832e-21)
(1.20961 0.0574551 -4.25899e-21)
(1.17666 0.0887289 2.18058e-20)
(1.002 -0.0874066 4.90436e-22)
(0.995856 0.0050111 -2.99916e-20)
(0.993397 -0.0537234 1.07756e-21)
(0.996047 -0.000126337 -2.38809e-21)
(0.969596 0.00551167 5.4853e-20)
(1.09637 0.0327808 1.89471e-20)
(0.997522 0.00130672 -7.10047e-20)
(1.04358 -0.0272979 -4.75425e-21)
(1.10088 0.116773 5.21402e-20)
(1.09334 0.0301344 -4.61133e-21)
(0.950216 0.0660629 1.64238e-20)
(1.06319 0.112343 1.66828e-20)
(0.999913 -0.000351346 3.47899e-24)
(0.987325 -0.0331152 4.16352e-22)
(0.988391 -0.000939944 3.10305e-23)
(0.963782 -0.0324804 -2.19349e-21)
(0.965712 -0.0341616 -1.3904e-21)
(0.971908 0.0783513 7.16283e-20)
(1.10019 0.00788587 1.17755e-21)
(1.03893 0.0694509 3.66412e-20)
(0.991494 -0.000238517 3.94409e-21)
(1.02318 0.0921613 2.36363e-20)
(1.00092 0.0221239 3.87988e-20)
(1.03191 -0.0810057 -1.18356e-21)
(0.999699 -2.17225e-05 -1.12608e-23)
(0.976357 0.0280519 -8.25937e-20)
(0.990474 0.0529998 2.9522e-20)
(1.04971 0.0378175 -1.41999e-20)
(0.98144 0.0124647 -5.49268e-20)
(1.10869 0.01895 -2.7893e-20)
(0.991463 -0.00754648 4.60791e-22)
(0.969381 -0.020236 1.75759e-21)
(0.992389 -0.0431081 5.43886e-22)
(1.03017 0.0979138 4.62611e-20)
(0.989959 0.000235278 -1.15122e-20)
(0.97673 0.0781798 5.58555e-20)
(1.0098 0.0344132 7.79016e-20)
(0.99814 -0.000347073 -1.05717e-22)
(1.04381 -0.0741071 -7.19823e-22)
(0.997861 -0.000255297 -2.1276e-23)
(0.986317 -0.00376093 1.10793e-21)
(0.979157 -6.84139e-05 -2.85547e-24)
(1.13065 0.0038609 -1.44918e-21)
(1.01846 0.0592222 -5.18128e-20)
(1.14724 0.0992316 -3.09461e-20)
(0.991209 -0.00913133 1.14735e-21)
(1.0266 0.0951306 -2.32242e-20)
(1.04576 0.0857051 -1.02161e-20)
(1.0722 0.0734068 4.93564e-20)
(1.0306 -0.0147858 2.47127e-21)
(1.01293 -0.0226787 1.29983e-21)
(0.992657 -0.000208324 1.09945e-22)
(1.00117 -0.0390466 2.51054e-22)
(1.02716 0.0623106 4.13405e-21)
(0.973248 0.0162056 -8.90979e-21)
(1.0065 0.0500062 -5.66292e-20)
(1.14962 0.0468931 -1.34649e-20)
(1.00872 0.0158675 -1.42063e-20)
(0.981207 0.0775284 -2.43986e-20)
(1.02059 0.0857746 2.41714e-20)
(1.0235 -0.0163216 2.29594e-21)
(0.998927 -0.000147929 1.7287e-23)
(0.998699 0.0524167 -1.14035e-20)
(1.02776 -0.105804 9.16889e-22)
(0.980802 0.026879 -4.81816e-20)
(1.03311 0.0921112 -3.21386e-22)
(1.00808 -0.00834455 6.5812e-22)
(0.98187 -0.000780857 3.62078e-21)
(0.97839 0.0171342 -6.98604e-21)
(1.00524 -0.0468533 6.78271e-23)
(1.07472 0.113927 -2.72107e-20)
(0.985541 0.0767756 -6.44655e-20)
(1.23212 0.0191714 -3.12558e-21)
(1.01452 0.085459 -3.13593e-20)
(1.00947 -0.00967366 -5.59958e-22)
(1.00044 -0.0695601 7.9608e-22)
(0.991295 -0.0425551 -7.4828e-22)
(1.01085 0.032505 -8.78708e-20)
(0.973228 -0.00185555 3.78273e-21)
(1.07779 0.0289459 6.49532e-21)
(1.0686 0.113426 -3.22425e-20)
(0.943621 0.062886 1.0023e-20)
(0.998461 -7.6219e-05 -2.55986e-22)
(1.05732 0.10261 1.14108e-20)
(1.00103 -0.013382 -6.05091e-23)
(1.14551 0.044787 4.58973e-21)
(1.11447 0.0902325 -9.24707e-21)
(1.14227 0.0253491 -2.11678e-20)
(1.02764 0.0378626 9.63786e-21)
(1.06639 0.0780328 2.78562e-20)
(1.04946 0.109466 1.38422e-20)
(0.999849 -0.001786 -1.90487e-23)
(0.998669 -0.0404381 -5.60752e-22)
(0.968392 0.0127447 1.36823e-20)
(1.00088 -0.000668061 -2.50465e-24)
(1.08132 -0.0396511 1.0358e-20)
(1.08871 0.117681 0)
(0.981384 -0.0120335 7.76637e-22)
(0.995587 0.075487 1.61182e-20)
(0.998666 -0.0272925 -6.10309e-23)
(0.981009 -0.00123586 -2.42106e-21)
(1.01697 -0.0520032 -4.49467e-23)
(1.003 -0.00063194 1.73474e-22)
(1.01383 -0.106346 2.42222e-21)
(1.01688 0.0334078 2.01263e-20)
(1.00812 0.0480407 1.24946e-20)
(0.954462 0.00252685 -3.09864e-20)
(0.998377 0.0273675 1.76188e-20)
(1.01613 -0.022158 -7.73351e-22)
(1.00103 -0.00111156 -4.75859e-23)
(0.970239 -0.0139217 -1.70468e-21)
(0.962861 0.0708029 -4.57874e-20)
(0.989678 0.0758099 -1.31182e-20)
(1.00147 -0.00143114 -8.68288e-23)
(1.00011 -0.0656743 -2.48397e-21)
(0.969586 -0.0125844 2.00123e-21)
(1.06589 0.0743727 -2.81677e-20)
(0.995763 0.0273891 5.25317e-20)
(0.916369 0.0390799 -2.95577e-20)
(1.01846 0.0353469 2.33403e-20)
(1.03065 0.058246 -3.50074e-20)
(0.993801 -0.0464505 -1.41585e-21)
(1.02599 -0.0232023 -1.35679e-21)
(1.00409 -0.0333866 3.12027e-23)
(0.999783 -0.00152259 -2.79642e-23)
(0.939035 0.00621263 -8.64711e-21)
(1.05676 -0.0812409 -1.95711e-24)
(1.03652 0.067467 6.47866e-21)
(1.04272 0.105018 7.92961e-21)
(1.03777 0.0108108 1.60755e-21)
(0.978601 -0.0257749 1.82087e-21)
(1.02134 -0.116495 7.70614e-22)
(1.0494 -0.137332 -6.03029e-22)
(1.0424 -0.132019 3.97186e-21)
(0.974193 0.0742886 1.2503e-20)
(0.989715 -0.00267681 -2.39716e-22)
(1.00598 -0.0654523 4.38933e-22)
(0.998281 -0.00286121 2.54886e-22)
(1.01673 -0.0073291 -7.88903e-22)
(1.0926 0.00577899 1.98563e-20)
(1.06396 -0.0843981 2.67367e-23)
(1.00686 0.0325141 2.69471e-20)
(0.975911 -0.00179792 -1.26628e-21)
(0.98459 0.00884671 -6.69737e-20)
(0.999373 -0.000162896 -3.34311e-23)
(0.994879 -0.0101043 -8.67846e-22)
(0.968286 -0.0315446 -2.03619e-22)
(1.00559 0.0183035 5.5938e-21)
(1.11689 -0.101936 -2.19293e-21)
(1.02099 -0.0276739 6.84834e-23)
(1.15907 -0.0107628 -2.02256e-20)
(1.1324 0.0495739 -1.82803e-20)
(1.08872 0.0184933 2.54554e-20)
(1.12675 0.11346 1.50041e-20)
(1.00274 -0.0034312 -4.75823e-23)
(0.990698 -0.00784181 8.78831e-22)
(0.999661 -2.22511e-05 7.62394e-24)
(1.01761 0.0527696 -1.41665e-20)
(1.07822 -0.143549 2.26302e-21)
(1.15959 0.0889551 -1.13621e-20)
(0.990393 0.0484143 -1.98796e-20)
(1.0001 0.0484026 1.47628e-20)
(0.996394 -0.0106433 -1.87793e-23)
(0.998275 -2.59212e-05 -7.00919e-22)
(1.03814 0.0391458 2.50877e-20)
(1.13914 0.0845904 2.18441e-21)
(1.00751 0.0192355 -5.87347e-20)
(0.999265 -0.00019536 -2.52637e-23)
(0.990546 -0.00863496 -3.0435e-22)
(1.0092 0.0179872 2.75086e-20)
(0.988316 0.0516553 4.26793e-20)
(0.972532 -0.0383494 2.54127e-21)
(0.964784 -0.0158699 -3.62553e-22)
(1.00743 -0.00410558 1.31566e-22)
(0.97674 -0.00134924 -1.31465e-21)
(0.994854 -0.0144815 4.32067e-22)
(0.974752 -0.039385 5.53907e-22)
(0.9962 0.03353 2.42867e-20)
(0.972038 -0.00941124 1.32881e-21)
(0.983168 -0.00312383 -4.0982e-22)
(0.994702 -0.0048945 -1.11867e-22)
(1.15992 -0.0442137 6.14473e-21)
(0.99993 0.0722092 -5.42819e-20)
(1.03476 -0.0609407 7.35993e-22)
(0.994924 -0.0534603 2.1103e-21)
(0.982712 0.031519 2.64911e-20)
(0.988511 -0.00067921 6.16541e-22)
(1.1329 -0.144155 8.57871e-22)
(1.05983 -0.136153 -4.18306e-22)
(0.961312 -0.0247138 2.01961e-22)
(1.09896 0.109643 1.47343e-20)
(0.996623 -0.000129654 -1.88928e-22)
(1.1536 -0.0202505 1.42159e-20)
(0.980328 -0.00999609 -1.09392e-21)
(1.00981 0.0525167 -4.75854e-20)
(1.00456 -0.000875525 3.72746e-22)
(1.00994 -0.0108963 -9.52729e-22)
(0.99748 -0.00200554 2.08961e-25)
(0.984207 -0.002555 -4.74552e-22)
(0.999776 -9.14112e-06 1.36019e-23)
(1.13981 0.109734 3.30343e-20)
(1.06405 0.109191 6.91877e-20)
(0.995838 -0.00774749 -9.82948e-23)
(0.999938 -0.000309249 4.65535e-24)
(0.997236 -0.00222963 2.04841e-22)
(1.03072 0.036396 3.88023e-20)
(0.970267 -0.0370583 1.64819e-21)
(0.985878 -0.00430244 -7.11442e-22)
(1.12818 0.0507485 -4.16501e-21)
(1.08947 0.00391132 2.11103e-20)
(1.09145 0.115974 -8.29174e-21)
(1.0256 0.0361612 1.23223e-20)
(1.19118 0.0677122 -2.6854e-20)
(1.12205 -0.081653 -1.30286e-21)
(1.00038 0.0248808 -1.7965e-20)
(0.991923 -0.0499092 -2.22447e-21)
(1.05723 -0.0894344 2.87301e-22)
(1.02112 0.0349014 1.98892e-20)
(1.0002 -3.64195e-05 0)
(1.03565 0.0989145 -1.61661e-20)
(1.12944 0.110553 -2.13767e-21)
(1.00558 0.0733538 -1.64033e-20)
(1.12926 0.0643198 -1.41885e-20)
(1.10376 -0.0542125 6.42926e-21)
(1.01272 -0.0727137 3.32517e-22)
(1.00013 -0.000163126 -6.86996e-25)
(0.990331 -0.000472501 -8.40082e-22)
(1.03209 0.0634423 7.7703e-20)
(1.00125 -0.000559472 1.23844e-23)
(1.07817 -0.114428 1.04756e-21)
(1.1706 -0.123297 4.38997e-22)
(0.98246 -0.0199092 1.03752e-21)
(0.968699 0.00768072 9.96349e-21)
(1.00975 -0.100983 -1.45775e-21)
(1.0569 0.10597 -1.01962e-20)
(1.01528 0.00713973 3.69466e-20)
(1.03569 0.0373407 8.01522e-20)
(0.992045 -0.0079864 6.03251e-22)
(1.14704 0.106945 3.93255e-20)
(1.20616 -0.00951236 6.55945e-21)
(0.979346 0.0358486 -2.89081e-20)
(0.999548 -0.0081008 -2.54329e-22)
(0.954639 -0.00713031 -3.44228e-21)
(1.06004 0.0628083 2.95251e-20)
(1.00891 -0.0813178 1.1384e-21)
(0.996933 0.073725 -4.16904e-20)
(0.998234 -0.000147802 -3.33982e-23)
(1.10615 0.0811284 -6.13505e-20)
(1.00434 -0.00182565 -3.22579e-22)
(1.07786 -0.0154928 1.39196e-20)
(0.930802 0.0547928 -5.80745e-20)
(1.11073 0.103551 5.02204e-21)
(1.17448 0.0617594 -1.66682e-21)
(1.05029 -0.0419327 -9.24185e-22)
(1.13272 -0.0950882 -2.12319e-21)
(1.06304 -0.0459668 9.32486e-22)
(0.992615 -0.048664 1.08383e-21)
(0.992861 -0.0511103 2.92693e-22)
(0.986215 0.00105701 6.33061e-20)
(1.00006 0.00592213 -1.18291e-20)
(0.937148 0.0590943 1.17344e-20)
(1.11323 -0.049617 -9.3243e-21)
(1.11461 0.00137852 -6.50513e-21)
(1.00493 -0.00129553 -3.98794e-22)
(1.1491 0.0371203 -1.96182e-20)
(1.24043 -0.0166148 1.64414e-21)
(1.09242 -0.0236264 -2.24233e-20)
(0.997389 -0.00179878 8.2483e-23)
(1.03016 -0.0366411 1.6319e-21)
(1.24088 -0.0303969 6.56092e-21)
(1.09101 0.00654495 6.66861e-21)
(1.07176 -0.0867394 1.03902e-21)
(0.977473 -0.0236905 -1.97838e-21)
(0.999724 -0.0018751 2.18887e-23)
(1.16528 -0.0339717 -4.00365e-21)
(0.979925 0.0310912 -6.86614e-20)
(1.07675 -0.0334037 -1.2436e-21)
(1.00055 -0.060144 3.38884e-21)
(0.994574 0.0243608 -1.35611e-19)
(1.10948 -0.0274238 -1.62449e-20)
(1.09618 -0.0360051 8.80026e-21)
(0.992922 -0.00582508 2.19818e-22)
(0.972749 0.0548133 4.36679e-20)
(1.00051 -0.00368272 2.54407e-23)
(1.02728 -0.0108326 1.37395e-21)
(1.06883 0.0328815 6.21241e-21)
(0.993408 0.074887 -2.30964e-20)
(1.04089 0.0850497 -3.11337e-20)
(0.959342 -0.0210033 -4.46978e-21)
(1.22765 0.0305618 1.78379e-20)
(1.094 -0.00322607 -2.54813e-20)
(0.983747 -0.00487558 -8.6281e-22)
(1.00371 0.011879 -2.00003e-20)
(1.08811 0.110869 -1.95707e-21)
(0.9848 -0.010737 9.29562e-22)
(1.02256 -0.0142565 -2.38266e-21)
(1.00166 -0.0151247 5.09855e-23)
(1.00143 -0.0029878 1.62416e-24)
(1.24549 -0.0238136 -1.20705e-21)
(0.998004 -0.00225617 1.31018e-22)
(1.00579 0.0128439 -8.76488e-21)
(1.15292 -0.014261 8.29295e-21)
(0.982123 -0.0236953 2.82646e-23)
(1.11701 0.00466055 1.9097e-20)
(1.14861 -0.0302886 4.87078e-22)
(0.999605 -9.84535e-05 2.79906e-23)
(1.13568 -0.0639153 -2.1182e-22)
(1.06306 -0.0761021 -2.20309e-21)
(1.16125 0.0256434 4.84349e-20)
(0.965166 -0.0133951 1.02102e-22)
(0.982175 -0.0401471 4.9763e-22)
(0.999895 0.000243335 -2.97345e-20)
(0.940242 0.0101394 -3.65602e-20)
(1.08298 0.00314657 -4.78866e-21)
(1.1958 -0.0959674 9.92869e-22)
(1.11116 -0.0987591 -4.63051e-22)
(1.07116 0.0444019 -1.30056e-20)
(0.97774 0.0716731 6.71632e-20)
(1.19722 0.073051 -1.92581e-20)
(1.20389 0.0664719 -1.22641e-20)
(1.00253 -0.0796448 -1.15121e-21)
(1.01118 0.075585 2.18265e-20)
(1.09927 0.000336021 -1.56412e-20)
(1.02962 -0.0250225 4.02973e-21)
(1.08745 0.0822772 -2.99748e-20)
(1.16952 0.0506533 -3.50912e-21)
(0.976286 -0.0228512 2.47044e-21)
(1.02832 -0.0230175 8.65213e-22)
(1.07047 -0.11144 1.5338e-22)
(1.02045 -0.0254628 -1.56894e-21)
(1.00085 0.0345528 -1.49758e-20)
(0.919188 0.0512372 -8.59314e-21)
(1.00246 -0.0159495 -4.1478e-23)
(1.14145 0.106845 -3.03545e-20)
(1.0024 0.0123523 9.37062e-21)
(1.12195 -0.0985451 1.31046e-21)
(1.0408 -0.0188662 -3.66335e-22)
(1.01462 0.0138689 -1.40225e-20)
(1.19187 -0.0165012 2.57279e-21)
(1.07169 -0.120586 -5.59286e-22)
(1.00226 0.0334698 -8.65098e-20)
(1.07112 -0.019619 8.91952e-21)
(1.11523 0.0193987 -3.53587e-20)
(1.08469 0.0238998 3.32927e-21)
(0.971744 -0.0138002 1.62976e-21)
(1.10988 -0.083935 -2.65507e-21)
(1.00088 -0.0118538 -1.13545e-22)
(1.01 -0.00603355 -7.04795e-22)
(1.11948 0.0541381 4.02648e-20)
(1.00083 -0.000542839 2.99076e-23)
(1.08431 -0.0697595 1.78687e-21)
(0.998869 -0.000224876 9.17287e-23)
(1.00322 -0.0418921 -1.40407e-21)
(0.903509 0.0360271 1.06556e-19)
(1.22841 0.0372851 -1.10032e-20)
(0.993516 -9.52082e-05 -1.99914e-22)
(1.00727 0.0739681 -3.30099e-20)
(0.983777 0.0145657 9.87644e-20)
(1.23887 -0.00491422 9.703e-21)
(1.02803 -0.0929349 -2.81199e-22)
(0.998956 -0.00024834 1.61758e-23)
(1.04281 -0.0214035 -3.49796e-21)
(1.00007 -0.0118052 1.83865e-22)
(1.02406 -0.00867999 -7.38084e-23)
(0.966641 -0.00330942 2.2094e-21)
(1.00108 -0.000829685 -1.30669e-24)
(1.00502 0.0238806 3.11737e-20)
(1.07485 -0.0214452 -6.72864e-21)
(0.985815 -0.000405614 -6.11566e-22)
(0.998064 0.0284674 -9.05162e-20)
(1.08908 0.0149021 -1.30828e-20)
(1.06141 -0.0392402 6.41313e-21)
(0.996711 -0.0691238 -8.22971e-22)
(0.985162 -0.0349776 -7.54899e-23)
(1.22595 -0.0873106 -8.12847e-22)
(0.991698 -0.045141 1.11927e-21)
(1.00089 -0.000442516 -2.64792e-23)
(1.14423 0.105527 -2.25064e-20)
(0.975136 0.0714888 -2.94376e-20)
(1.0005 -0.0295717 -8.18147e-22)
(0.966198 -0.0183117 -8.93799e-22)
(1.15346 -0.0463583 5.74809e-21)
(0.996979 -0.00210839 -1.27223e-22)
(0.986254 -0.0030918 -9.7173e-22)
(0.99087 -0.00411417 4.19383e-23)
(0.991968 -0.00877443 -1.34143e-21)
(1.18658 -0.133025 -1.19996e-21)
(1.02258 -0.00672414 -1.7741e-21)
(1.01452 0.0570849 -2.79107e-20)
(1.14507 -0.0599148 5.47466e-21)
(0.981249 -0.0218766 -9.97955e-22)
(1.05441 -0.0312202 4.07483e-21)
(1.19771 -0.124072 2.3242e-22)
(1.05758 0.0171346 -1.69381e-20)
(1.0739 0.0412997 -4.12101e-21)
(0.970062 0.020656 1.02824e-19)
(0.986449 0.0294303 -2.52804e-20)
(0.939895 0.041524 -6.13038e-21)
(0.999223 -0.0439295 -4.73349e-22)
(0.999974 -0.000226142 1.03668e-25)
(1.04813 -0.0390289 5.63993e-21)
(1.0603 -0.0433701 -3.07532e-21)
(0.96333 -0.0269761 -6.24223e-22)
(1.00129 -0.0127486 5.53804e-23)
(0.994294 -0.0596787 -1.70504e-21)
(1.00031 -8.71623e-06 3.43799e-26)
(1.11387 0.0848354 3.19105e-20)
(0.98818 -0.00433834 1.53687e-22)
(1.05467 -0.085583 1.16911e-22)
(1.02937 -0.0336826 -2.16631e-21)
(1.09202 -0.0352067 -8.10721e-21)
(1.10531 -0.0280493 8.35618e-21)
(0.972402 -0.0104391 -8.44594e-23)
(1.0248 -0.0269501 1.78514e-21)
(1.05407 -0.0414271 -1.87375e-21)
(0.993736 -0.0566451 3.28443e-21)
(1.20305 0.0718588 3.62198e-20)
(1.06684 -0.0444526 -7.70237e-21)
(0.99219 -0.00660127 6.05964e-22)
(1.12764 0.00833814 -5.09147e-21)
(1.06278 0.0155026 5.21956e-21)
(0.998046 -0.00207474 -2.47519e-22)
(0.972595 0.0221777 -6.71612e-21)
(1.18187 0.0801451 -1.05575e-20)
(0.985095 -0.00428048 -1.17071e-22)
(1.16994 0.0933844 -3.37359e-20)
(1.11081 -0.0229729 3.40764e-21)
(1.09898 -0.0322648 5.42131e-21)
(1.1307 0.0595329 -1.48418e-20)
(1.23636 0.00788513 -9.8336e-21)
(1.1593 0.0202214 -1.00497e-20)
(1.16435 -0.0277781 -5.13669e-23)
(1.2181 -0.100777 1.90482e-22)
(1.11428 0.015001 4.20273e-21)
(0.99271 -0.000723673 7.16984e-22)
(1.00018 -0.000117297 -2.07093e-24)
(1.11531 0.00836979 -2.50201e-20)
(1.00641 0.0233497 -2.51743e-20)
(1.19071 0.0783949 -1.30271e-20)
(1.03315 -0.0368051 -3.48551e-22)
(1.04468 0.0701034 2.87307e-20)
(1.18385 0.0844248 -3.52856e-20)
(1.06759 0.0436232 6.17687e-20)
(0.988525 -0.00307301 -1.05454e-21)
(0.971134 -0.0361553 5.49529e-22)
(0.972771 0.0248735 -6.97778e-20)
(0.99409 -0.0265373 1.14911e-21)
(0.979655 -0.00170338 -3.47806e-22)
(0.980356 -0.0369 -4.60372e-22)
(1.01106 -0.0185788 9.38105e-22)
(0.99698 -0.000221884 9.76835e-23)
(1.15731 0.0298314 -4.83559e-20)
(1.0012 -0.00116531 -1.24642e-23)
(1.01774 -0.00533479 4.82216e-22)
(1.03073 0.0294469 4.28309e-20)
(0.978169 0.0334295 -2.16921e-21)
(0.994305 -0.0115542 -4.83077e-23)
(1.10059 -0.017983 3.19187e-21)
(1.04601 -0.0208129 2.86856e-21)
(1.11691 0.113682 1.84893e-20)
(1.03618 0.0347046 2.74208e-20)
(1.06891 0.0126388 -5.02901e-21)
(1.07779 -0.0191283 1.52854e-20)
(1.12836 0.106989 -2.48475e-20)
(1.0226 0.0608722 1.9273e-20)
(1.14336 0.00579857 1.30331e-20)
(0.994647 0.0527434 5.35346e-20)
(1.06122 -0.0808016 -2.32848e-22)
(0.999828 -0.0102972 1.7619e-23)
(1.00011 -0.0135156 -3.64233e-24)
(1.11207 0.0221639 1.83958e-20)
(1.16051 -0.146852 2.18141e-22)
(1.09284 0.0865972 -5.15478e-21)
(1.08022 0.115156 -1.37215e-20)
(1.05113 -0.00364163 5.51271e-21)
(1.00372 -0.0154849 1.21224e-23)
(0.981755 0.000486431 1.60052e-20)
(1.0003 -1.60244e-05 -1.16326e-24)
(1.14984 -0.0414629 -1.93735e-21)
(1.04607 0.0217774 3.12712e-20)
(1.034 0.100838 1.83658e-20)
(1.01075 0.0440247 3.09577e-20)
(1.00557 -0.00130827 6.91119e-23)
(0.994571 -0.0278575 1.11667e-21)
(0.976959 -0.0403481 -3.23814e-24)
(1.00034 -7.19968e-05 9.6187e-25)
(0.998468 -5.02741e-05 3.37143e-22)
(1.00177 -0.001726 5.12236e-23)
(0.992525 -0.0162923 2.66929e-22)
(0.994888 -0.0625355 -3.01018e-21)
(1.058 0.110894 4.12613e-20)
(1.21663 0.0495462 5.87456e-21)
(0.995395 -0.0128977 -3.97038e-22)
(0.991385 -0.015949 4.83342e-22)
(1.23673 -0.060068 -4.85945e-21)
(0.955984 0.07475 -3.77423e-20)
(1.00228 -0.00251301 -9.50315e-23)
(0.983926 -0.00144269 -7.07775e-22)
(1.03789 0.0148119 -3.07883e-21)
(0.999192 -0.000116816 -1.7554e-23)
(1.04558 0.00514328 1.18909e-20)
(0.957704 -0.0149419 -2.68174e-21)
(1.00016 -9.73527e-05 5.47165e-25)
(0.964216 -0.0340893 2.89014e-21)
(1.01266 -0.0209193 -9.98997e-22)
(0.995869 -0.00841965 -9.83997e-23)
(0.99601 -0.00429528 -5.74297e-22)
(1.00331 -0.00118255 -1.52252e-22)
(1.24197 0.00266959 2.09899e-21)
(0.999252 0.0338077 5.69752e-21)
(1.22195 0.0282783 9.77125e-21)
(0.981916 -0.00148329 -6.75503e-22)
(1.01343 0.0549258 5.5608e-20)
(1.0037 -0.000679965 2.44422e-22)
(1.04241 -0.0681317 -2.24039e-22)
(1.00407 0.00585486 4.70801e-20)
(1.02753 0.0168999 -1.6363e-20)
(1.03301 0.0152665 -6.39981e-21)
(1.00674 0.00520167 4.57976e-21)
(1.00969 0.0307142 -2.05972e-20)
(1.16003 -0.0378148 2.69695e-21)
(0.997992 -0.000329031 4.56949e-23)
(0.985602 -0.00298461 -1.03142e-21)
(1.01984 0.0894071 -1.44716e-20)
(1.11582 -0.017561 -1.64143e-20)
(1.08296 0.0254944 8.97675e-21)
(1.09538 0.0833782 2.34819e-20)
(1.06621 0.0159542 2.09405e-20)
(1.08709 0.0759506 5.55127e-21)
(1.0649 -0.0278867 -5.26058e-21)
(1.17433 0.0849384 1.14833e-20)
(1.01869 0.0548204 -1.14056e-20)
(1.0798 0.0386093 1.49288e-20)
(0.995207 -0.000649249 4.65896e-22)
(1.00785 0.0308374 9.72194e-21)
(1.00451 0.0212605 1.75039e-20)
(0.986408 0.0334382 1.6015e-20)
(1.00173 -0.0680543 1.94042e-25)
(0.989325 -0.00104922 6.82145e-22)
(0.993433 -0.000478745 5.49344e-22)
(1.02469 0.0902371 -5.86596e-20)
(0.988975 0.046199 -3.21222e-20)
(1.00256 -0.00303777 -9.72206e-23)
(1.01402 -0.0196739 5.45915e-22)
(0.995992 -0.0278521 -3.01935e-22)
(1.13599 0.0535595 1.53723e-20)
(0.995054 -0.0677214 -1.55281e-22)
(1.1404 0.0516934 4.39773e-21)
(1.02593 -0.0309133 -3.94987e-22)
(1.00072 -2.95523e-05 0)
(0.996544 0.0286058 -5.15941e-20)
(1.04196 0.0681506 -6.84741e-20)
(1.08546 -0.0132624 1.05679e-20)
(0.957777 -0.0233758 1.51253e-21)
(1.09255 0.00264174 3.02659e-20)
(1.02755 0.0136487 -9.37388e-21)
(1.1193 -0.0107795 5.30349e-21)
(1.08891 -0.008135 2.08979e-21)
(1.08469 -0.0108513 -2.23343e-20)
(1.0111 -0.0202233 -1.44394e-22)
(0.980268 -0.0199807 -1.08164e-21)
(0.986266 -0.00098738 5.45018e-22)
(1.23364 -0.0829199 1.38283e-21)
(0.996496 0.0515118 2.51869e-20)
(1.01725 0.0571744 5.58642e-20)
(1.09712 0.00397408 -1.44529e-20)
(1.04384 0.038218 -1.13822e-20)
(0.992552 0.0518397 -1.0205e-19)
(1.11965 -0.0156701 4.56557e-21)
(1.11671 -0.0856547 -5.4075e-21)
(1.00134 -0.00102286 2.09784e-23)
(1.00729 0.0459965 -7.9842e-20)
(0.999748 0.00011256 1.16131e-20)
(1.02336 -0.0306716 1.01386e-21)
(1.04935 -0.0707732 -3.27805e-22)
(1.08347 0.0386505 1.77886e-20)
(1.11811 0.0911231 -6.87388e-21)
(1.15396 0.0386744 -3.20195e-21)
(0.970085 0.00233988 6.62772e-20)
(1.00439 0.0496925 4.46133e-20)
(0.986852 -0.0411537 1.35982e-21)
(1.08828 -0.0101832 -9.62149e-21)
(1.02529 0.0603318 3.9983e-21)
(0.985269 -0.00059985 2.10552e-21)
(0.999711 -8.63057e-05 5.5204e-24)
(0.993145 -0.0146678 5.5346e-22)
(1.05344 0.106733 3.10544e-21)
(0.998721 -0.00130394 -1.13679e-22)
(0.998276 -0.00200038 3.40494e-24)
(1.02614 -0.00855254 -3.50363e-22)
(1.00281 -0.0137851 5.4173e-23)
(1.0211 0.0589993 3.02892e-20)
(1.03841 0.102893 -4.05512e-20)
(1.1218 -0.0927324 1.53455e-21)
(1.02686 -0.0742495 -1.47393e-21)
(1.01831 0.0852598 -3.90211e-20)
(0.99951 -7.1318e-05 1.93861e-23)
(1.15878 -0.0262479 3.16173e-22)
(1.00049 -0.000227643 -9.51842e-24)
(1.00073 -0.000355036 9.91165e-24)
(1.16355 -0.102163 2.49217e-21)
(1.02194 0.083728 -4.32042e-20)
(0.978732 -0.0230852 2.6204e-21)
(1.18287 -0.14121 6.0825e-22)
(1.01957 -0.00523209 1.55822e-22)
(1.02977 -0.0101453 -7.33434e-22)
(1.00695 0.0292972 5.23124e-20)
(1.0295 -0.0205034 -1.36544e-21)
(0.993342 -0.0154308 -1.02647e-21)
(0.936174 0.0115881 5.64289e-20)
(1.04411 0.0274506 -2.93504e-20)
(1.01394 -0.0147301 -4.91298e-22)
(1.00948 0.0275438 5.24774e-20)
(0.999322 -0.000208235 4.42566e-23)
(1.01899 -0.0479052 -1.76797e-23)
(1.02292 -0.028361 5.12999e-23)
(1.04522 -0.0151268 -3.98915e-21)
(0.998707 -0.00207447 4.65297e-23)
(1.10238 -0.0245571 -1.48377e-20)
(0.969853 -0.0322868 -1.19887e-21)
(1.08434 -0.127617 2.20691e-22)
(0.973609 0.0137497 8.09052e-20)
(0.998499 -0.00217602 -2.21288e-22)
(1.20715 -0.121967 -3.72021e-22)
(0.999104 -8.71646e-05 3.88093e-23)
(0.999737 -3.89909e-06 -5.0873e-25)
(0.995309 -0.00421855 -2.36418e-22)
(1.14709 -0.0531599 -1.11164e-20)
(1.12366 0.106334 3.08702e-20)
(0.986644 -0.0353463 -1.26135e-21)
(1.00125 -0.00137348 7.79985e-23)
(0.995508 -0.00954438 3.35343e-22)
(0.991254 -0.0149394 9.28611e-22)
(1.11068 0.0018179 -1.34823e-20)
(1.01475 0.0255111 -9.91503e-21)
(0.965858 -0.0260919 1.86727e-21)
(1.21912 -0.0830597 1.00624e-21)
(0.99031 -0.00273187 -2.35784e-22)
(1.06197 0.107007 -5.08837e-20)
(1.00125 -0.0091745 8.36172e-24)
(0.997853 -0.00875097 3.21405e-22)
(0.998878 0.0227783 -3.72405e-21)
(1.04231 0.0648859 -1.8247e-22)
(1.05599 0.0235512 3.23164e-20)
(1.00029 0.0199764 -6.05855e-20)
(1.0026 0.0513515 2.45595e-20)
(1.07255 0.0381699 2.51373e-20)
(0.992363 -0.0444174 -1.7042e-21)
(0.992983 -0.0582483 -3.15961e-21)
(0.970685 -0.0164213 -1.38331e-21)
(1.1028 0.00854601 2.68294e-20)
(1.10969 0.0800445 2.26817e-20)
(0.995415 -0.0567174 -2.4154e-21)
(1.06285 -0.00148114 -1.10453e-21)
(0.998861 -0.00125482 1.26063e-22)
(0.999702 -1.03354e-05 7.33054e-28)
(1.07504 -0.124496 9.33721e-22)
(1.07461 -0.139324 -7.33563e-22)
(1.01768 0.0779201 1.14839e-21)
(0.959324 0.0712245 1.04654e-20)
(1.0117 0.010548 -8.78561e-20)
(1.04641 0.0131533 2.03284e-21)
(0.985399 0.0189073 6.27857e-20)
(1.14077 0.0109329 1.35375e-20)
(0.971357 0.0527475 -3.38684e-20)
(0.977914 -0.00134884 -1.21229e-21)
(0.995633 -0.000333255 3.17538e-22)
(1.06514 -0.135558 1.92914e-22)
(1.08577 0.11601 1.15277e-20)
(1.06869 -0.140259 -1.84152e-22)
(1.00333 0.0152804 -2.01547e-20)
(1.00238 -0.00376621 4.90737e-23)
(1.09676 0.112079 -3.4295e-21)
(1.15442 0.0437647 2.30134e-20)
(0.988737 -0.00555849 -3.81715e-22)
(0.958071 -0.0163028 2.25059e-21)
(0.999542 -3.23024e-05 3.27783e-24)
(1.14517 0.0408489 6.32358e-21)
(0.943773 0.0420428 5.30964e-20)
(1.12312 0.112639 -5.09401e-20)
(1.00055 0.0507862 -4.3026e-20)
(1.09067 -0.0103483 -6.77837e-21)
(0.992659 -0.00919395 4.20118e-22)
(1.0136 0.0785206 5.16477e-21)
(0.984865 -0.0336827 -5.05818e-22)
(0.998166 -0.000200691 1.87805e-24)
(1.21655 0.0327989 9.16602e-21)
(0.990808 -0.00052807 1.09833e-21)
(0.994895 -0.00584019 -2.66981e-22)
(1.14416 0.100499 2.02604e-20)
(1.00233 -0.00114705 5.95146e-23)
(1.05985 0.0751572 -7.85556e-21)
(0.988017 -0.0012369 1.56727e-22)
(1.16742 0.0978112 -2.47038e-22)
(1.00712 -0.00562851 4.72907e-22)
(1.00208 -0.0844577 -2.81042e-21)
(1.00294 0.0021338 3.63305e-20)
(1.09738 0.115496 -5.84447e-21)
(0.999088 -0.0298816 6.08982e-22)
(0.999915 -0.000271924 -4.60229e-24)
(0.999069 0.0704022 1.98499e-22)
(0.997304 -0.0134802 -1.08327e-22)
(0.971578 -0.0209201 -2.03194e-21)
(1.03616 -0.0679929 -1.09297e-22)
(0.992097 -0.000367865 -8.39348e-22)
(1.08251 -0.132987 2.43566e-21)
(0.997651 -0.010129 3.39656e-22)
(1.21775 -0.110103 7.79837e-22)
(1.00092 -0.00416921 6.24222e-24)
(1.01053 -0.00715727 -3.84838e-22)
(0.981526 -0.019381 4.37194e-22)
(0.99498 -0.000450362 5.43679e-23)
(0.995465 -0.00501435 -2.9222e-22)
(1.02353 -0.00113412 4.04407e-21)
(1.06787 0.100469 -5.57081e-21)
(1.13828 0.103277 -1.57243e-20)
(1.02131 -0.0513215 9.99937e-23)
(1.18896 0.0838957 3.52513e-20)
(1.13298 0.0890297 -1.21024e-21)
(1.0003 -0.000101403 2.8543e-24)
(1.0006 -0.043433 -3.97047e-23)
(0.999747 -1.26066e-05 8.2588e-24)
(0.999927 -0.000237181 8.65917e-24)
(0.945163 0.00774385 2.9978e-20)
(0.996456 -0.00410945 -3.17567e-23)
(0.971317 0.0117498 -5.43521e-20)
(0.994868 -0.00648031 -2.15537e-22)
(1.09048 -0.00510635 3.38446e-21)
(1.06932 0.0375545 -3.00517e-20)
(0.994763 0.0225913 9.3477e-21)
(0.999799 -0.000121319 -3.07331e-24)
(0.980989 -0.0256206 -3.17953e-22)
(1.00375 -0.000380299 1.20337e-22)
(1.08709 -0.00692976 -9.48915e-22)
(1.13465 0.003999 -8.17487e-21)
(0.999117 -0.000192299 4.85804e-23)
(0.995428 -0.00558359 2.09168e-22)
(1.04602 0.0363369 2.33538e-20)
(0.970539 0.026785 -2.01939e-20)
(0.970158 -0.0176491 3.42088e-21)
(0.999035 -0.000179498 -8.67584e-23)
(0.985601 -0.00122996 -6.96764e-22)
(1.08633 -0.00480882 1.23948e-20)
(1.01434 0.0831133 -1.54255e-20)
(1.05484 -0.0124468 -8.17154e-21)
(0.967465 0.0255228 1.01106e-20)
(1.06848 0.000743509 0)
(0.954065 -0.0159034 -4.86066e-21)
(1.04811 0.0652387 8.16957e-21)
(0.999084 -0.000117997 -9.45832e-24)
(1.0471 -0.0177183 4.16339e-21)
(0.957853 -0.0216818 -8.21756e-22)
(1.12031 0.115292 2.56579e-20)
(1.07824 0.0350706 -1.16415e-20)
(1.16762 -0.0951507 -2.13288e-21)
(1.00018 -7.03842e-05 -1.42094e-25)
(1.21956 -0.0743658 -4.93522e-21)
(1.01266 -0.0367856 -1.88121e-24)
(1.04112 0.0157357 -2.27245e-20)
(0.996847 -0.00352262 -1.01512e-22)
(0.999865 -5.77577e-06 -2.3037e-24)
(1.00135 0.00322043 9.1872e-21)
(1.00398 -0.00138373 3.97556e-23)
(1.22316 0.0408537 -3.65827e-21)
(0.989465 -0.000865803 -8.52117e-22)
(1.04113 0.0370348 -1.01374e-19)
(1.00033 -0.00021502 1.91146e-24)
(1.00274 -0.00213316 8.86492e-23)
(1.01187 -0.00729132 1.52932e-21)
(0.967197 0.0225262 4.69641e-21)
(0.971306 -0.00255847 -1.9884e-21)
(0.99989 -0.000205617 -1.28684e-23)
(0.974954 -0.00773023 -3.09274e-21)
(0.981896 -0.0112182 1.49247e-21)
(0.96407 -0.0145051 -2.50466e-21)
(1.03376 -0.0572545 -1.21326e-21)
(1.03697 0.0645145 2.92085e-20)
(0.996573 -0.000355873 -1.66997e-23)
(0.984968 -0.00355111 -3.23659e-23)
(0.995979 -0.00479708 2.84442e-22)
(1.01901 -0.0505812 1.02802e-23)
(1.08274 0.117609 1.68468e-20)
(1.0805 0.000382627 -3.37309e-20)
(1.00012 -0.000205359 3.4028e-25)
(0.981703 -0.0182129 5.69142e-22)
(1.18441 0.0409615 8.88147e-21)
(1.04863 0.031229 1.13877e-20)
(0.989008 -0.000371793 -2.92433e-22)
(1.08962 0.0792815 5.39165e-20)
(0.975571 0.0206886 -2.50809e-20)
(1.01326 0.0763722 2.57669e-21)
(0.991909 -0.000888324 5.01068e-22)
(1.08388 -0.142388 -3.27262e-21)
(1.00039 -0.00022537 9.64295e-24)
(1.04736 0.107274 3.06684e-21)
(1.10221 -0.0592139 3.86727e-21)
(1.0042 -0.000157277 -2.27748e-22)
(0.982543 -0.00114045 8.37561e-22)
(1.19894 -0.0383647 2.21134e-21)
(1.03526 0.103387 4.75449e-20)
(1.16953 -0.14827 2.68836e-21)
(1.00543 0.0457094 1.78753e-20)
(0.975974 0.054154 -1.09975e-19)
(0.992133 -0.0142961 -1.10501e-21)
(0.999953 0.022844 -1.18343e-20)
(1.16751 0.0904899 2.38588e-20)
(1.0004 -9.74857e-05 1.22895e-23)
(0.953798 -0.0105564 -2.69753e-21)
(1.05664 0.0736661 -2.33997e-20)
(1.04793 0.0685086 2.13517e-20)
(1.05016 -0.0169792 2.52796e-21)
(1.20911 -0.113265 2.68672e-22)
(1.00334 -0.000116071 1.86271e-22)
(0.988978 -0.0344856 1.13529e-21)
(1.0108 -0.0292751 1.2355e-22)
(1.0547 0.111596 -1.29913e-20)
(0.999516 -1.24029e-05 2.13969e-23)
(1.00056 -0.0101509 1.10606e-23)
(0.972799 -0.0202646 -5.46377e-22)
(1.02609 0.0575948 -1.52571e-20)
(0.986544 0.0267962 -1.88089e-20)
(1.12164 0.10954 -1.17665e-22)
(1.04166 -0.0712594 -3.83672e-23)
(1.11521 0.0554169 -1.31979e-20)
(1.02745 -0.00657104 2.07649e-22)
(1.02013 0.0777793 -5.6565e-21)
(0.98757 -0.034322 -1.48882e-22)
(0.938914 0.0379071 -3.18646e-20)
(1.01662 -0.108246 -7.98371e-22)
(0.995533 -0.0658295 6.01955e-22)
(1.00192 -0.000880279 5.5203e-23)
(1.14145 -0.0499772 -6.10201e-21)
(0.978838 -0.0218234 -7.52874e-22)
(1.17402 -0.141381 -6.67497e-22)
(0.962814 -0.0294792 -4.71782e-21)
(1.03489 0.0626695 -3.88137e-20)
(0.965525 -0.0276054 2.26526e-21)
(1.01227 0.0285103 -3.40218e-20)
(0.97654 0.0757072 -4.2508e-20)
(0.99234 -0.00594614 -3.21566e-22)
(0.999869 -0.00137792 -4.8093e-24)
(1.06263 0.0730436 3.15455e-20)
(0.975663 -0.0407725 0)
(0.994086 -0.0644635 5.79121e-22)
(1.08558 -0.13681 -2.75006e-21)
(1.05547 -0.0374545 2.23359e-21)
(0.997665 -0.00206879 4.84996e-23)
(1.06855 -0.0835327 -3.26884e-22)
(0.986173 -0.000608742 -6.16798e-22)
(0.960637 -0.0259593 4.21454e-21)
(1.13968 0.0395554 -1.80262e-22)
(0.986281 -0.00495692 -1.27336e-21)
(0.970985 -0.038568 -2.44953e-21)
(1.05352 -0.0704468 2.29274e-21)
(0.95453 -0.0114205 -7.67819e-22)
(1.23316 -0.0744387 1.97091e-22)
(1.06902 0.110688 2.39138e-21)
(0.998833 -0.00158125 7.78657e-23)
(0.999836 -0.00743278 5.49207e-23)
(1.22715 -0.0707161 8.34571e-22)
(1.0972 -0.028876 2.01063e-21)
(0.998627 0.0228791 -7.63418e-20)
(0.982122 -0.0248175 -4.20989e-22)
(1.21806 0.0391012 -2.27162e-20)
(1.08522 0.0352511 -3.72301e-20)
(1.00337 -0.0678226 -9.06438e-22)
(0.994059 -0.000805405 -7.52388e-22)
(0.992716 0.00284226 -1.73256e-20)
(1.22323 0.047284 -7.38733e-21)
(0.999245 -6.78029e-05 3.14872e-23)
(1.01041 0.0290334 4.01534e-20)
(1.0273 -0.0775023 3.05096e-22)
(1.05707 -0.0246618 -1.13819e-20)
(1.0301 0.0179714 7.37866e-21)
(1.02015 -0.11294 -2.04669e-21)
(1.00258 0.00396655 -3.1256e-20)
(1.00021 -0.000105064 4.72542e-24)
(0.93156 0.0491757 -3.51931e-21)
(0.966677 -0.0282672 -2.06006e-21)
(0.998685 -0.00147353 1.41159e-22)
(0.998496 -0.000120588 3.06584e-23)
(1.00232 -0.0127671 -1.83092e-23)
(1.04913 0.0230805 -1.84087e-20)
(0.964216 -0.0294833 2.64695e-21)
(0.987242 0.047985 1.89048e-20)
(1.00654 0.0220565 -2.40803e-20)
(0.986993 -0.00388544 -1.62578e-21)
(0.971021 -0.0188086 4.92062e-22)
(1.05469 0.0209477 -9.91258e-21)
(1.0937 -0.0281948 1.93616e-22)
(0.970836 -0.00312529 4.78212e-21)
(0.979828 -0.0250302 -1.32067e-21)
(1.00046 -0.000274945 -7.34411e-24)
(0.997866 -0.00192124 -2.80325e-22)
(1.04999 0.025978 -2.48214e-20)
(1.00899 -0.00434406 6.8004e-22)
(1.02394 0.0881864 3.63582e-21)
(1.05321 -0.034954 -3.37742e-21)
(0.997753 -0.00228577 -5.09949e-23)
(0.998836 -0.00176854 2.58886e-23)
(1.2404 -0.0690958 1.11728e-21)
(1.00214 -0.0447595 -5.2682e-23)
(1.09366 0.110856 -2.28654e-21)
(1.08958 -0.00491814 -3.69933e-21)
(0.996253 -0.00352244 -1.0014e-22)
(0.999773 -0.000166032 -7.47572e-24)
(1.00663 0.00924267 7.52869e-20)
(0.994608 -0.0155315 1.08436e-22)
(0.99445 -0.0125134 1.03745e-21)
(1.03983 0.0631387 -2.37062e-20)
(0.99853 -0.0660595 1.08776e-21)
(0.995141 -0.000244023 -6.92799e-22)
(1.08869 0.0346222 3.37014e-20)
(1.07333 -0.11584 -5.5392e-22)
(1.02873 0.0565555 3.7562e-20)
(1.08549 0.113094 -3.48014e-20)
(1.06201 -0.0257413 4.4678e-21)
(1.05124 0.0164781 -3.42746e-20)
(1.15224 0.0283235 1.86736e-20)
(0.978419 0.00281371 1.48477e-20)
(1.09343 -0.00365478 1.75603e-20)
(0.993945 -0.0138777 -2.97954e-22)
(0.955146 -0.0168856 5.55215e-21)
(1.00448 0.0224564 1.12492e-19)
(0.999352 -0.00026288 1.42502e-23)
(1.00908 -0.0319812 5.70423e-23)
(1.08008 0.0319126 -3.84636e-21)
(1.00016 0.0134914 -3.00604e-20)
(0.999787 -0.00207286 5.64028e-25)
(0.999715 -0.000135079 1.04613e-23)
(0.959875 0.00167108 -4.55143e-21)
(1.07078 -0.0385499 -5.20247e-21)
(0.982845 0.0274073 4.80105e-20)
(0.97509 0.00341249 -8.58659e-20)
(1.06739 -0.130522 3.82507e-21)
(0.982093 -0.0128687 1.87492e-21)
(1.01714 0.0148816 9.02285e-20)
(1.0011 -0.0418536 2.35661e-22)
(1.00082 -0.000344721 8.15372e-24)
(1.00983 -0.00788976 8.64075e-22)
(1.01711 0.0888028 -2.60603e-20)
(0.999517 -0.0126241 -2.03744e-22)
(1.08748 0.028503 1.31941e-20)
(0.999773 -0.000133256 4.23811e-25)
(0.97861 0.0742547 -4.09429e-21)
(1.12053 0.0874299 2.86916e-21)
(1.06474 -0.0382246 -3.67776e-21)
(1.05075 0.0704704 -7.65133e-20)
(1.13579 0.10931 3.08802e-20)
(0.987926 -0.00353943 1.39444e-21)
(1.00524 -0.0692723 -2.27873e-22)
(0.994816 0.00126786 3.73337e-21)
(0.996709 -0.00926903 1.48698e-23)
(0.983339 -0.025259 -2.70144e-23)
(1.00204 -0.00110109 -1.14849e-22)
(0.939982 0.0123723 -5.91954e-21)
(0.95907 -0.0255985 7.19729e-22)
(1.03733 -0.0716458 9.50893e-23)
(0.964505 0.00364086 -1.59551e-20)
(0.996482 -0.00369359 1.3931e-22)
(0.999865 -0.000269587 6.14588e-24)
(0.980145 -0.0211614 1.26689e-21)
(0.9798 0.00084829 1.39142e-20)
(0.995851 -0.0036295 3.46122e-23)
(0.956021 -0.0164928 2.09995e-21)
(0.998279 -0.0684781 -2.50212e-21)
(1.00086 -0.000257514 -4.29125e-24)
(1.08463 0.0291978 -1.14893e-20)
(0.938926 0.00882472 -1.3149e-20)
(1.10788 0.0853942 -3.5508e-20)
(0.997086 -0.00180889 -1.06316e-22)
(1.00738 -0.00650263 -5.52979e-22)
(0.999456 -0.00951842 6.0268e-23)
(1.08354 -0.00913917 5.74451e-21)
(1.00044 -0.040591 3.37324e-22)
(1.00041 -0.000271999 7.14196e-24)
(0.970564 -0.0199981 9.2357e-22)
(0.985236 -0.000695942 -2.22848e-21)
(1.08597 -0.00716621 -2.59672e-22)
(1.05508 -0.00969853 -4.39448e-21)
(0.983887 -0.000787835 -3.99213e-21)
(1.07152 0.109257 1.19397e-20)
(1.20372 -0.108659 -1.53083e-21)
(1.11126 0.0831952 -3.46839e-20)
(1.04265 0.0877795 7.77725e-21)
(1.09003 0.0312446 -3.0293e-20)
(1.00284 0.0708757 -9.07442e-21)
(0.954889 -0.0186992 -2.9864e-21)
(0.975761 0.0257762 8.87322e-20)
(0.997159 -0.0650941 -2.07619e-21)
(1.10892 -0.149071 6.35952e-23)
(0.998111 -0.0288013 -7.00338e-22)
(1.17076 -0.13628 -4.9234e-22)
(0.999206 0.02511 1.18111e-19)
(0.996367 -0.00313889 3.20865e-22)
(0.999691 -0.000116978 8.74015e-24)
(0.940252 0.0695571 2.23326e-20)
(1.12016 0.0497362 -5.83748e-20)
(0.980653 0.00800608 5.78758e-20)
(0.997348 -0.00938967 -4.04234e-22)
(1.02321 -0.00501347 -2.63255e-21)
(1.06736 -0.0407353 3.42209e-21)
(0.975145 -0.0016991 -8.63367e-22)
(1.08813 -0.146217 1.73262e-21)
(1.0457 0.0333938 -3.37122e-20)
(1.0887 -0.0137705 3.98092e-21)
(1.00935 -0.0301149 1.20868e-25)
(1.00896 -0.0975046 -2.57186e-22)
(0.933994 0.0662795 1.30727e-20)
(1.02524 -0.0205449 1.16131e-21)
(1.18226 -0.128514 1.01388e-22)
(1.06674 0.108571 -5.17797e-20)
(0.963174 0.00181862 9.64179e-21)
(0.994826 0.00361908 3.39385e-20)
(1.08311 0.0320144 1.44536e-21)
(1.1502 0.103045 2.99308e-20)
(1.04506 0.00719433 1.93224e-22)
(1.00339 -0.000843609 -1.05418e-22)
(1.01498 0.0749529 1.13592e-20)
(1.03065 -0.0781219 8.47189e-22)
(1.0886 0.0248383 1.10001e-20)
(0.999857 -0.00022496 7.14595e-24)
(0.998225 0.0314179 2.18613e-20)
(1.01014 -0.00892305 -5.22657e-22)
(1.05336 0.0266393 -7.28637e-21)
(1.05894 -0.0367146 -1.22179e-21)
(1.08315 -0.00926395 1.88742e-20)
(0.998095 -0.00261957 5.02535e-23)
(1.00869 -0.00764928 -5.01749e-22)
(0.992437 -0.0465904 1.67235e-21)
(1.0621 0.0697095 3.11726e-20)
(0.982458 0.0102082 -1.67274e-21)
(1.16261 0.0918102 3.26214e-20)
(0.988453 -0.000353582 -7.16783e-22)
(0.906878 0.0335147 -4.61165e-20)
(1.08379 0.0814829 3.65873e-20)
(1.03037 0.0340277 -1.31476e-20)
(0.956584 -0.014956 -2.44393e-21)
(1.05895 -0.0272125 6.02299e-21)
(1.00811 0.0422495 3.83243e-20)
(1.00792 -0.0290045 -1.8516e-23)
(1.16196 -0.0162954 2.08267e-20)
(1.00061 0.0314826 1.83846e-20)
(0.998159 -0.00243031 7.32834e-23)
(1.15232 -0.138845 1.3024e-21)
(0.99775 0.0667003 5.72147e-20)
(1.15903 -0.141406 -1.15403e-21)
(0.958981 -0.0240769 -1.91288e-21)
(1.17422 -0.129547 4.56567e-22)
(1.0052 -0.00218343 -1.13118e-22)
(0.938147 0.0660425 -6.5429e-20)
(1.0002 -7.57484e-05 1.5187e-24)
(1.03884 -0.0660769 -1.72302e-22)
(1.03152 0.0963884 5.02431e-20)
(1.00193 -0.00153972 2.67063e-23)
(1.10638 -0.0626427 -8.66609e-21)
(1.0678 0.105598 1.90043e-20)
(0.961471 0.0758309 -1.8018e-20)
(0.996192 -0.0097769 4.96737e-22)
(1.09279 0.00520512 -3.15535e-20)
(1.0003 -2.44483e-05 2.61813e-24)
(1.09907 -0.0249883 6.26027e-22)
(1.07488 0.0348261 -3.76692e-20)
(1.07101 0.106083 3.14659e-20)
(0.979845 -0.023795 -4.38201e-22)
(0.983887 0.0295169 3.37958e-20)
(1.11121 -0.0937605 2.51305e-21)
(1.15411 0.0197024 -4.89507e-21)
(1.08061 -0.123458 2.16136e-22)
(1.00833 -0.00667449 1.81246e-22)
(0.99614 -0.000571839 5.07023e-23)
(1.00186 -0.00131373 -8.14458e-23)
(0.996503 -0.00859506 -4.20238e-22)
(0.964554 -0.0279652 -2.77753e-21)
(1.01696 0.075466 3.29781e-20)
(0.982382 -0.0379864 -2.15056e-21)
(1.00764 -0.00507486 3.39178e-22)
(0.993927 -0.000408229 -1.70535e-22)
(1.17136 0.0582579 -1.73408e-21)
(0.960211 -0.0234829 6.91792e-22)
(1.20023 -0.010531 1.29481e-20)
(0.99998 -0.00205298 3.3331e-23)
(1.04781 0.0285213 -4.19842e-21)
(1.00701 -0.0677418 1.56379e-21)
(0.996431 0.0263488 2.95261e-21)
(1.15108 0.0238108 -9.37923e-21)
(0.998521 0.00108403 9.50418e-21)
(1.00411 -0.0835665 2.08288e-21)
(0.998119 0.0254075 -1.65169e-20)
(0.997716 0.0246895 -9.35236e-21)
(1.14087 0.0476798 -2.24374e-20)
(1.05643 0.0708103 -4.11024e-20)
(0.98849 0.0493929 -1.46729e-20)
(0.997719 0.0265631 6.77239e-20)
(1.05377 0.0691337 8.8571e-20)
(1.00891 -0.00596762 9.20668e-22)
(0.99998 0.0690806 3.09165e-20)
(1.00409 -0.0010219 -3.54597e-22)
(1.0019 0.0692183 -4.99087e-20)
(0.990426 -0.0032588 4.58704e-22)
(1.05921 0.0686458 -1.14159e-20)
(1.05177 0.0207013 6.98646e-20)
(1.00464 0.0435078 5.74118e-20)
(0.939491 0.0631558 -1.01706e-20)
(1.05115 -0.0138822 8.61924e-21)
(1.16363 -0.136001 2.14464e-22)
(1.17338 0.0537376 -1.89216e-21)
(1.00033 -0.00010029 -1.79932e-24)
(1.19833 -0.0165157 -7.16584e-21)
(1.04352 0.013469 3.96786e-21)
(1.07184 0.100952 -1.16539e-20)
(1.05127 -0.00800529 -3.98167e-21)
(0.999315 0.0321239 1.94442e-20)
(0.999536 0.0674487 -7.79925e-20)
(0.984548 0.0257047 6.43585e-21)
(1.0018 -0.0142743 -1.21237e-22)
(1.01246 0.0268075 4.54646e-20)
(1.14625 0.0220453 8.57551e-21)
(1.00851 -0.00514204 -5.78521e-22)
(1.13574 0.0090589 1.21409e-20)
(1.0006 -0.00942449 -2.5211e-22)
(0.999562 -3.08241e-05 2.19151e-23)
(1.00865 0.0442873 2.28431e-20)
(1.00107 0.0661589 -5.86408e-21)
(1.05804 0.0657651 2.02949e-20)
(0.957033 -0.0171285 -2.20652e-21)
(1.08775 0.0593637 1.38773e-20)
(1.17951 0.208304 -4.8837e-21)
(0.293843 -0.457689 1.38163e-20)
(0.0990122 0.0217712 3.37169e-21)
(0.934167 0.00575021 -4.05558e-20)
(1.36739 0.0451806 1.22858e-21)
(0.473098 -0.0516127 -1.45389e-20)
(1.42547 -0.371849 9.30098e-22)
(0.539945 0.259867 -5.70602e-20)
(0.0436864 0.000217833 3.47987e-21)
(1.09323 0.177566 3.97333e-21)
(0.937624 -0.577904 2.64352e-21)
(0.895754 -9.86753e-05 7.12994e-22)
(0.797696 -0.137918 2.01605e-20)
(0.82914 0.00043879 1.25492e-21)
(1.1088 0.214484 -1.49166e-20)
(1.11532 0.213537 -2.16769e-20)
(0.892984 0.0196157 5.43809e-20)
(1.02443 0.107392 -2.35739e-20)
(0.123782 0.029586 1.89878e-21)
(1.3623 0.0542723 -2.41883e-21)
(1.11514 0.212226 2.39575e-20)
(0.898958 0.00851428 -5.2069e-20)
(1.18556 0.207136 1.25873e-20)
(1.07355 0.190562 2.50769e-21)
(0.465253 -0.588649 1.81101e-20)
(0.575801 -0.551944 -4.51285e-20)
(0.409407 -0.00384054 -7.66833e-22)
(0.101782 0.020956 3.1819e-21)
(0.350356 -0.00531749 -2.15764e-21)
(0.933123 -0.685233 -7.25877e-22)
(1.43975 -0.246154 -2.22055e-21)
(1.00315 0.149044 3.26257e-22)
(0.861016 -0.0673332 -4.96596e-21)
(0.374643 -0.109191 -7.19333e-21)
(0.307089 0.063107 -2.21636e-22)
(0.139153 0.0324581 -5.6419e-22)
(0.728837 0.218319 8.89924e-21)
(0.102873 0.0229958 -4.04984e-21)
(0.356331 -0.117854 8.97189e-21)
(0.14036 -0.000784463 -1.17996e-20)
(0.940796 -0.593717 -2.4826e-20)
(1.25017 0.155524 1.11706e-20)
(0.114877 0.0232737 -2.65524e-21)
(0.354778 0.0745938 -2.06763e-21)
(0.666807 0.140038 -9.9098e-22)
(1.24091 0.0507103 -5.20013e-22)
(1.09353 0.221218 1.18622e-20)
(0.107709 0.000292593 2.25972e-20)
(0.908421 0.250408 -3.73397e-20)
(0.131451 0.00046825 6.05254e-21)
(0.141679 -0.000159224 -8.33819e-21)
(0.790107 0.0024071 1.99826e-20)
(0.101107 0.0220892 2.72915e-21)
(1.43018 -0.258302 1.56445e-21)
(0.723392 0.00325648 2.56524e-21)
(1.1173 0.215817 -1.49299e-20)
(1.10371 0.216909 -9.56934e-21)
(0.969862 -0.000891374 -3.76829e-21)
(0.748259 -0.00285894 2.89974e-21)
(0.767321 0.161356 -4.1677e-21)
(1.25284 -0.376788 1.447e-20)
(0.806562 -0.108657 -1.42878e-20)
(0.177168 0.0015101 -2.53253e-20)
(0.952796 -0.681388 -7.17152e-21)
(0.880524 -0.0120012 2.79094e-20)
(0.110001 0.0264049 8.81192e-21)
(0.871476 0.160123 -4.14002e-20)
(0.00846003 -0.0964265 1.27926e-20)
(1.18861 0.206043 -1.25549e-20)
(0.721258 -0.00253484 -4.6394e-21)
(1.08217 0.152473 4.72225e-20)
(0.718906 0.151057 1.66589e-22)
(0.808908 -0.11312 2.08084e-20)
(0.145849 0.0330093 -6.7976e-21)
(1.4844 -0.121191 -1.08524e-20)
(0.843903 0.00285548 1.82084e-20)
(0.736076 0.156246 -1.79059e-20)
(1.00261 0.146165 5.44237e-22)
(0.729365 0.151794 6.13592e-21)
(0.918381 0.00422934 2.44171e-20)
(0.126156 0.0276968 8.30627e-22)
(0.920843 -0.000336384 3.58422e-20)
(0.135204 0.0319146 1.90669e-20)
(1.49011 -0.127313 -1.12013e-20)
(1.06703 0.215202 -6.41797e-21)
(1.04685 -0.167925 8.03798e-21)
(0.92671 3.29829e-05 3.73427e-21)
(1.08233 0.21591 4.74361e-21)
(0.788118 0.171215 7.01648e-21)
(0.713259 0.150469 -3.19188e-21)
(1.22825 -0.142262 -8.67426e-22)
(0.983589 0.106703 1.36795e-20)
(0.840878 0.140265 -3.04722e-21)
(0.423922 -0.000213478 -3.25012e-23)
(0.0333385 0.0075077 1.31542e-20)
(0.830333 0.0134825 -2.88917e-20)
(0.130582 -0.00110078 7.61247e-21)
(0.143624 0.00334235 -2.91934e-20)
(0.300182 -0.00276681 1.64858e-21)
(0.79843 0.168741 -7.87633e-22)
(0.362797 0.0691847 3.45534e-22)
(0.452166 0.000744264 2.3376e-20)
(1.1252 0.176963 2.44555e-21)
(0.421094 -0.000639963 -2.70542e-21)
(1.01592 0.11078 -2.18859e-20)
(0.427012 -6.76238e-06 2.54536e-22)
(1.13234 -0.436544 8.07404e-21)
(0.0024633 -0.0802948 1.33848e-20)
(1.02393 0.104691 4.74272e-20)
(0.458674 0.000710184 1.14842e-21)
(1.43616 -0.355928 1.19294e-21)
(0.219459 0.0506196 6.07737e-21)
(0.15712 -0.00220211 -6.66976e-21)
(0.45805 0.00143401 -2.48549e-20)
(0.426534 -0.00061549 2.60348e-20)
(0.652473 0.137996 -4.93734e-21)
(0.804163 -0.126981 7.74914e-22)
(0.371732 -0.22242 -6.40318e-21)
(0.144852 -0.0031181 1.19124e-20)
(0.898579 0.163691 5.14865e-20)
(1.09681 -0.313095 -4.40282e-21)
(0.121582 0.0255212 -6.24106e-21)
(1.25494 -0.403554 -8.81566e-21)
(0.100943 0.0228877 2.10172e-21)
(0.801891 -0.122044 2.96561e-22)
(0.394432 -0.575937 -2.71771e-20)
(1.08808 0.193141 -7.81553e-21)
(0.151728 -0.000632004 3.91007e-21)
(0.373105 -0.000241704 8.80035e-21)
(1.0843 -0.31699 2.72887e-21)
(0.390248 -0.219194 -5.68607e-21)
(0.95629 -0.00187815 4.49814e-21)
(0.86881 0.000351833 4.34689e-21)
(0.936802 0.0943562 4.00545e-21)
(0.134045 0.0305453 -1.75808e-21)
(0.842127 0.00198222 -2.27033e-20)
(0.999819 0.0813927 -2.56581e-20)
(0.152847 -0.00157506 -8.48087e-21)
(1.14237 -0.205473 -2.38471e-21)
(0.0459017 0.000613337 -1.48558e-20)
(1.18552 0.200697 -8.15758e-21)
(0.114405 0.000502585 -7.21841e-22)
(0.213144 0.00205025 2.07925e-20)
(1.3185 -0.312439 1.15923e-20)
(1.09525 0.213549 -9.9874e-22)
(0.128823 0.0293822 5.14926e-21)
(0.00398624 -0.0998258 -6.15068e-21)
(0.132153 0.0266942 2.08309e-21)
(0.157771 0.00208023 -3.81587e-21)
(0.732701 0.156412 -1.47298e-20)
(0.947789 -0.00334293 -3.59223e-21)
(0.254625 -0.302323 -2.73817e-21)
(0.796813 0.0204194 8.2783e-21)
(1.10043 0.177098 -9.94004e-21)
(0.365761 0.0797199 -1.30208e-20)
(0.233972 -0.00345757 2.37827e-21)
(1.07969 0.149591 -6.84557e-20)
(0.630855 0.134131 7.6569e-21)
(0.567713 -0.423912 -1.75078e-20)
(1.09282 0.220107 3.7008e-20)
(0.13555 0.0297713 -5.53171e-23)
(1.02487 0.23611 -4.32579e-21)
(1.20762 0.161264 3.87874e-21)
(1.0647 0.208998 1.74313e-20)
(1.10547 0.216242 -1.85614e-21)
(0.889121 0.0201571 -2.31611e-20)
(1.27812 0.00253882 7.73737e-21)
(0.173131 0.0419843 1.11318e-20)
(0.471061 -0.0497051 -2.59667e-20)
(1.09401 0.176714 6.26392e-21)
(0.943597 -0.0940007 1.06602e-20)
(1.28546 0.00346148 -5.88228e-21)
(0.123005 0.0271094 -4.18011e-21)
(0.746262 0.135092 2.34611e-21)
(0.141014 0.0300891 -7.42203e-21)
(0.587211 -0.568909 4.34333e-20)
(0.839651 0.187195 1.47062e-20)
(1.09191 0.178319 6.81902e-22)
(0.877999 0.153167 2.18858e-20)
(1.30134 0.161053 -1.71144e-21)
(1.20822 0.165076 5.79634e-21)
(0.706386 0.157021 -4.95538e-20)
(0.809511 0.207502 -2.23733e-20)
(0.147471 0.0020342 -5.62217e-21)
(0.775433 0.158221 -1.09358e-20)
(0.39326 0.0848011 9.96558e-24)
(1.28625 -0.328777 4.52842e-21)
(0.950007 0.298347 -1.5919e-20)
(0.121596 -0.000635021 9.4695e-21)
(0.946091 -0.0958751 -2.81669e-21)
(0.30159 0.0685618 1.81855e-20)
(0.856135 -0.08234 -1.93981e-21)
(0.263389 -0.424117 -2.28482e-20)
(0.207853 -0.00138131 -3.23358e-21)
(1.09584 0.220508 5.07302e-20)
(0.935822 0.00037945 -4.28787e-20)
(0.808365 0.204578 1.29161e-20)
(0.859243 0.2158 2.84446e-21)
(0.377173 -0.00145895 -3.34583e-22)
(1.049 -0.173335 -4.1442e-21)
(0.91829 0.0791941 3.72421e-20)
(0.693933 0.129287 -1.63145e-22)
(1.47644 -0.0706856 4.07716e-22)
(0.924198 0.00219731 7.71887e-22)
(0.121032 0.0295283 1.25802e-20)
(1.06231 0.150399 -5.31601e-21)
(0.445645 -0.568721 -8.14253e-21)
(1.47731 -0.0951379 9.38628e-21)
(0.244596 -0.00338919 -4.4185e-20)
(0.412751 0.0895565 6.13414e-22)
(0.366874 8.65651e-05 2.21784e-20)
(0.388537 -0.000705782 -1.34993e-22)
(0.491572 -0.00136223 -8.53039e-21)
(0.122506 0.0268937 6.00748e-22)
(0.98355 0.109974 3.53727e-20)
(0.861948 -0.0842415 2.96843e-21)
(1.03933 0.250131 1.60933e-20)
(0.103347 0.0256888 -1.86188e-20)
(0.918636 0.00124162 -1.92194e-20)
(0.897553 0.00808135 -2.64795e-20)
(0.833648 0.208868 -2.11003e-21)
(0.413348 -0.578916 -9.42776e-21)
(0.882914 0.0729044 -2.51983e-20)
(0.439077 -0.0441051 -6.56126e-21)
(1.24055 0.0566473 3.7771e-21)
(1.17171 0.11113 -5.15366e-20)
(1.00844 -0.523731 -1.64146e-21)
(0.408487 -0.000693281 4.24156e-20)
(0.382575 0.000426591 -1.97552e-20)
(1.12752 0.185832 2.8073e-21)
(0.114966 0.0258911 2.31254e-21)
(0.537127 0.120151 -9.18834e-21)
(0.754559 -0.00104922 7.6579e-21)
(1.00409 0.0865868 -2.71849e-20)
(0.912201 -0.00745677 -3.94529e-20)
(1.44343 -0.171782 2.58859e-21)
(0.328239 -0.000582594 8.08601e-22)
(0.0151265 -0.160208 4.90298e-21)
(0.16539 0.0335349 1.39587e-20)
(0.771175 0.0136585 -2.52307e-20)
(0.108459 -0.000315306 -1.90081e-20)
(0.935118 -0.000323449 1.65796e-20)
(0.957498 0.155681 -2.47793e-21)
(0.25575 -0.00151946 -8.98772e-21)
(0.802717 0.30516 -1.67275e-20)
(0.166781 0.00102605 3.26675e-21)
(0.0130922 -0.122936 1.22729e-20)
(0.808136 0.180939 -4.88486e-21)
(0.113898 -0.00209078 -7.68619e-21)
(1.03627 0.242636 1.6705e-20)
(1.10619 0.185258 -2.98696e-20)
(0.992311 0.0886739 1.26379e-20)
(0.889879 0.00296068 9.1659e-22)
(0.1355 0.0357879 -2.12332e-20)
(1.09141 0.216968 9.90187e-21)
(0.940925 0.157384 -3.81461e-20)
(-0.000536712 -0.0452877 1.54225e-20)
(0.887535 0.0730213 2.77306e-20)
(0.427637 0.0015062 3.16758e-20)
(0.98837 0.199873 4.73599e-20)
(1.06042 0.236343 -3.83118e-20)
(0.738457 -0.00148522 1.77549e-20)
(0.405365 -0.573762 -3.18507e-22)
(0.39828 -0.00185894 -1.06138e-20)
(0.449632 -0.0505648 1.93692e-20)
(0.334068 -0.00208338 -1.08335e-21)
(0.873986 0.16839 -2.20463e-22)
(0.858641 0.0129027 4.57879e-20)
(1.02286 0.190571 -1.86668e-20)
(0.169358 0.00186863 1.04105e-20)
(1.23163 0.160218 5.19209e-21)
(1.08982 0.195135 4.44901e-21)
(0.714008 0.00119663 2.82932e-21)
(0.270594 -0.0480973 1.82957e-20)
(0.960886 0.153335 1.17267e-20)
(1.19607 0.201386 6.29844e-21)
(0.162545 0.00153731 -8.04727e-21)
(1.08134 0.210492 -9.14524e-22)
(1.09364 0.220242 -7.54975e-21)
(1.08047 -0.171918 3.77666e-21)
(0.00947942 -0.132972 3.38772e-20)
(0.776377 -0.00525725 -4.7234e-20)
(0.946821 0.297869 -3.84313e-21)
(1.01853 0.108522 -2.31929e-20)
(1.02274 0.239707 -6.34846e-20)
(0.940807 0.0951344 1.06753e-20)
(0.950879 -0.081189 -4.26216e-21)
(1.12846 -0.422078 -1.47492e-20)
(0.149398 -0.00215742 1.91969e-21)
(0.951957 -0.0790967 -3.00205e-21)
(1.22049 0.185015 -4.24759e-21)
(0.826929 0.248929 3.47623e-20)
(0.925038 -0.0523281 8.45674e-21)
(0.239003 0.0527136 -1.74259e-21)
(0.33074 -0.000658475 2.45921e-21)
(0.847299 -0.0971936 2.43361e-21)
(0.902145 0.169764 -7.88677e-20)
(1.45003 -0.182534 1.51047e-21)
(0.43744 -0.000295954 -6.5474e-21)
(0.398424 -0.000868582 -1.36935e-21)
(0.257675 0.0583871 -2.56011e-21)
(0.12799 0.0286798 4.09684e-21)
(0.402531 0.00308242 7.02346e-21)
(1.08908 0.204521 8.69624e-21)
(0.948183 -0.101413 3.5572e-21)
(0.762637 -0.00213236 -1.21543e-20)
(0.412083 -0.0847982 -3.03762e-21)
(1.31738 0.156557 -2.67075e-21)
(0.154631 -0.299336 -1.7601e-20)
(0.160553 0.000374856 1.811e-20)
(0.430136 0.00207531 2.98053e-21)
(0.775173 -0.588373 1.16831e-21)
(0.0168594 -0.00636472 -6.08291e-21)
(0.620953 0.0478917 6.20831e-20)
(1.056 0.148116 -2.33994e-20)
(0.921596 0.000227015 -3.06932e-22)
(0.817718 -0.000561494 -1.78444e-20)
(0.129064 0.0004968 1.27899e-20)
(0.35916 0.0712518 1.31368e-21)
(0.784311 0.172952 -1.94446e-20)
(0.683386 0.331518 -5.86176e-20)
(0.111059 0.0262176 3.05612e-21)
(0.0702562 5.21973e-05 -1.35875e-21)
(1.13569 0.152348 1.11163e-21)
(1.05639 -0.175324 3.3299e-21)
(1.17139 0.21008 -3.76552e-22)
(1.06229 0.234033 -5.04753e-21)
(0.337687 -0.00205685 -1.07835e-21)
(1.16821 0.109515 4.77695e-20)
(0.860574 0.00866825 2.69917e-20)
(1.38884 -0.0725091 6.62846e-22)
(0.992975 0.251428 6.6167e-21)
(0.145736 -0.182628 3.09754e-20)
(0.151144 -0.00114552 -8.90942e-21)
(0.919561 -0.000683309 3.18102e-22)
(0.0879657 -0.319702 1.29908e-20)
(0.917033 0.00852435 -5.82427e-20)
(0.121663 -0.000421563 5.73133e-22)
(0.94181 -0.428608 -1.21541e-21)
(0.0262653 0.00214614 6.92286e-21)
(0.138729 0.00152824 1.89495e-20)
(0.511116 -0.635777 4.93157e-21)
(0.633249 0.138429 -1.41487e-20)
(0.835311 0.050571 2.21775e-20)
(-0.000589574 -0.0330432 2.29951e-22)
(0.577567 -0.586662 8.98613e-21)
(1.39981 -0.0709363 -1.63195e-21)
(0.447286 -0.00185689 2.2561e-21)
(0.129765 0.028387 7.26506e-21)
(1.15262 0.183397 1.15374e-21)
(0.996966 -0.518241 5.93455e-22)
(0.496706 0.111608 6.17114e-21)
(1.0976 0.178737 -2.95322e-20)
(0.752928 -0.00534305 1.37697e-20)
(0.156446 0.00226371 1.01592e-20)
(1.13524 0.149318 -3.0906e-21)
(0.428414 -0.000988541 -1.02888e-20)
(0.235511 0.00189271 -6.915e-21)
(1.00614 0.0856585 1.28981e-20)
(0.0113859 -0.13761 -3.6446e-20)
(0.944043 0.161542 1.20503e-20)
(0.448708 -0.0526177 2.59668e-20)
(0.245357 -0.053914 -1.45146e-20)
(0.163953 -0.295333 1.07305e-20)
(0.581514 0.129783 -4.51354e-21)
(0.0257117 0.00565811 5.28872e-22)
(0.950993 0.208593 3.43848e-20)
(0.134796 -0.00124369 2.13185e-21)
(0.813721 -0.28739 8.18358e-21)
(0.691789 0.207094 -9.77789e-21)
(0.168468 -0.0065919 3.45359e-20)
(0.334977 -0.00075657 -4.17702e-21)
(1.30635 -0.311182 -3.0143e-21)
(0.107691 0.0182807 -8.36485e-21)
(0.155217 0.0383815 -1.61055e-21)
(0.839694 0.0504222 -8.04587e-20)
(0.271007 -0.301081 7.13119e-21)
(1.06104 -0.17243 -6.70667e-21)
(0.840483 -0.0359038 -9.26788e-22)
(0.125046 0.0268736 -3.6069e-21)
(0.154302 -0.00155111 3.57568e-21)
(0.400133 -0.00113058 1.3654e-21)
(0.350142 -0.000264865 -2.47081e-23)
(0.136203 0.028415 1.02055e-21)
(1.13637 -0.212114 3.3724e-21)
(1.0421 0.24276 -7.29925e-21)
(0.966945 0.155652 1.16476e-21)
(0.205921 6.74899e-05 3.27062e-21)
(0.819402 0.176535 -4.10938e-21)
(1.17158 0.175211 8.93575e-22)
(1.02035 0.187409 -3.137e-20)
(0.970364 0.15362 2.51067e-20)
(1.22849 0.157308 -1.55309e-21)
(0.235637 -0.000602988 5.01738e-21)
(0.809793 0.00704208 2.51871e-20)
(1.20222 0.200949 6.01841e-21)
(0.475755 0.150975 -9.71441e-21)
(0.496233 -0.00155021 2.12421e-21)
(0.469233 0.104023 -4.78297e-22)
(0.82918 -0.327077 6.76506e-21)
(0.751844 0.231563 -2.59003e-20)
(1.11507 0.21497 7.70313e-21)
(0.431744 0.00100408 -2.88144e-20)
(0.757507 -0.00434199 -2.13808e-20)
(0.19131 0.000680472 4.30382e-21)
(1.09628 0.220193 -3.53393e-20)
(0.372108 -0.0011857 -3.42617e-20)
(0.341323 0.00136884 1.96406e-20)
(1.24635 0.158645 -7.11359e-21)
(0.128313 0.00120602 -3.9705e-21)
(0.853447 0.0113545 -2.66397e-20)
(1.08738 0.202678 -2.24235e-21)
(0.441469 0.000649422 -4.67681e-21)
(0.631201 0.299018 -1.81598e-20)
(1.05301 0.14908 2.53211e-20)
(1.05885 0.151234 3.59997e-20)
(0.656235 0.328766 8.67438e-22)
(0.948811 -0.0151183 -7.84413e-22)
(1.08977 0.220398 1.04284e-20)
(0.955236 0.211554 -5.83822e-20)
(0.176706 0.0372202 7.99113e-21)
(0.211349 0.000691024 -6.27657e-23)
(0.517088 -0.616549 -1.38124e-20)
(0.941612 -0.120393 -1.02481e-20)
(0.982878 -0.000495998 -8.17444e-21)
(0.595802 -0.605223 -2.35011e-21)
(0.432484 0.0021741 -1.80659e-21)
(0.761729 -0.567028 -9.50524e-21)
(0.242079 0.0499242 3.19168e-22)
(0.829998 0.0168203 -2.4232e-20)
(0.756635 0.000618299 1.09415e-20)
(0.120817 0.0292723 2.84272e-21)
(0.15225 -0.000689055 3.67014e-22)
(0.306789 0.0605326 -9.92134e-22)
(0.109092 0.0249177 5.15882e-21)
(1.23321 -0.148294 5.96487e-22)
(0.249207 -0.0032851 -5.00722e-22)
(0.994289 0.247647 5.50975e-20)
(0.172448 0.0389505 2.96943e-21)
(0.817661 0.314019 1.86495e-20)
(1.06152 -0.194659 5.73859e-21)
(1.03342 0.214791 2.18212e-20)
(0.987221 -0.000496562 2.03701e-21)
(1.00007 0.0793921 2.81419e-20)
(0.389007 -0.0932859 1.73541e-20)
(0.898026 0.253698 -3.76521e-21)
(1.09535 0.220615 3.65577e-20)
(0.233035 0.0475396 -3.05932e-21)
(1.04323 0.216906 -1.23524e-20)
(0.994756 0.0877956 1.26223e-21)
(0.917315 -0.0559328 3.59307e-21)
(0.278142 0.000169742 2.55202e-20)
(1.02009 0.117581 -3.60945e-20)
(0.593855 0.123684 4.15253e-21)
(1.12093 0.215434 -6.3158e-22)
(0.976986 -0.00171732 -8.75334e-20)
(0.83077 0.258549 -1.54523e-20)
(0.164867 0.000242316 1.80114e-20)
(1.23295 0.0612472 1.14954e-20)
(0.232153 -0.0127206 -3.62979e-20)
(0.099344 0.0216105 -2.1928e-21)
(0.465861 -0.562309 1.19932e-20)
(0.637077 0.136627 -2.41082e-21)
(1.46312 -0.298655 -3.03361e-20)
(0.405123 -0.0013828 1.58341e-20)
(0.633412 0.308966 2.22693e-20)
(0.720045 0.1856 1.24738e-20)
(0.57774 0.276603 8.89725e-21)
(0.598176 0.121815 -3.81922e-21)
(0.0947038 0.0240837 3.89129e-21)
(0.764111 0.164506 1.371e-21)
(0.994201 -9.98867e-05 1.83379e-22)
(1.14451 -0.444367 1.13362e-20)
(0.920468 -0.184261 -7.30175e-21)
(1.05096 0.236464 -9.53242e-21)
(0.766203 0.16181 -3.59765e-21)
(1.05301 0.218644 1.93481e-20)
(0.139239 0.0317169 5.09719e-21)
(1.05619 0.239249 2.78946e-20)
(0.696172 0.149255 -7.47526e-22)
(0.160265 0.0456955 1.39862e-20)
(0.209715 0.00222269 5.26985e-21)
(0.422735 0.0831977 3.59564e-22)
(0.921046 0.0773738 -3.87708e-20)
(0.350166 0.077672 -6.87566e-21)
(0.737414 -0.0125861 5.72192e-20)
(0.612326 -0.460842 9.25767e-22)
(1.04295 0.247676 -1.41075e-20)
(1.10754 0.197847 4.11742e-21)
(0.945679 -0.0996767 -4.47794e-21)
(0.131534 0.000575201 -4.33272e-21)
(0.847346 -0.0642408 6.20598e-21)
(0.147466 0.0361535 3.27472e-21)
(0.8964 0.000228526 -3.38408e-21)
(0.0213905 -0.17884 1.11325e-20)
(1.01976 0.115124 4.96937e-20)
(1.0857 0.216633 -1.97305e-20)
(1.02534 0.195974 8.99179e-22)
(0.856364 0.182692 -1.36001e-20)
(0.923722 0.00383874 -7.33597e-21)
(1.199 0.187819 3.06945e-21)
(0.695998 0.142357 -3.83053e-21)
(1.01403 0.096367 1.17699e-20)
(1.01749 0.105759 5.51379e-20)
(0.674724 0.145766 1.62857e-20)
(0.917444 0.254574 1.10619e-21)
(1.20836 0.0889689 6.52831e-21)
(0.655712 0.0660554 6.20008e-21)
(1.10055 0.218786 -8.3252e-21)
(0.739996 -0.00279206 2.21843e-20)
(0.857015 -0.0648172 6.53902e-21)
(0.294502 0.0209422 1.28136e-20)
(0.987015 -0.000367718 7.90178e-20)
(0.128211 0.0298544 -1.19997e-20)
(0.143936 0.031294 -1.11215e-22)
(0.220503 0.0464047 -6.17555e-22)
(0.220229 0.00347121 1.63951e-21)
(0.393972 0.00131139 -6.35158e-21)
(0.205157 0.0461542 -6.11521e-21)
(0.441095 -0.00458468 -1.11618e-20)
(0.829884 0.136904 -2.77561e-21)
(0.81814 -0.00603889 1.69963e-21)
(0.301323 -0.00193267 -4.4437e-20)
(0.0128152 -0.129907 -8.47428e-21)
(0.144999 -0.00311657 -3.17641e-23)
(1.06656 0.160179 -3.70703e-20)
(0.184978 -0.00236962 2.25888e-20)
(1.39388 -0.1513 2.45243e-21)
(0.931614 -0.418831 -6.3029e-21)
(0.443798 -0.036307 1.5611e-20)
(0.415808 0.0111322 -2.12908e-20)
(1.04453 0.21702 -1.89114e-20)
(0.825584 0.178375 1.42532e-20)
(0.802436 0.168551 3.80531e-21)
(0.492826 -0.62374 1.70516e-20)
(0.563121 -0.621012 1.94542e-20)
(0.609457 0.133097 9.73369e-21)
(0.963511 0.206978 -2.32065e-20)
(0.139059 0.0315147 -4.70726e-21)
(1.1862 0.205014 -1.85108e-20)
(1.09892 0.213362 -1.79744e-21)
(0.111259 0.0278938 -1.69461e-20)
(1.05182 0.198763 -6.43661e-21)
(0.288514 0.0550783 -8.78471e-22)
(0.42365 -0.00277282 2.15434e-20)
(0.102031 -0.000404949 2.16318e-21)
(0.596336 0.224021 2.88572e-20)
(0.449027 -0.592064 -2.74336e-20)
(0.611176 0.13701 9.39044e-21)
(0.132394 -0.191056 -2.43475e-20)
(0.334662 -0.302104 4.65908e-21)
(0.197325 0.0480638 -3.2059e-22)
(0.00925601 -0.137337 3.58931e-20)
(0.327768 0.000989948 -4.30773e-21)
(0.425392 -0.000199774 6.54498e-21)
(0.160797 0.000722433 1.42801e-20)
(0.865495 -0.101683 8.07674e-21)
(1.08253 0.120898 -2.56627e-20)
(1.09018 0.221453 -1.72307e-20)
(0.65261 0.293767 -4.4048e-20)
(0.688459 0.145728 -1.31114e-21)
(0.468808 -0.0410382 -2.27356e-20)
(0.223378 -0.000945657 -1.31724e-21)
(0.255783 -0.000758851 3.29991e-21)
(0.748909 -0.000288082 1.39537e-20)
(0.707583 -0.00030035 -2.34009e-20)
(0.790097 -0.138205 -9.89728e-21)
(1.09255 0.211072 -5.65898e-21)
(1.35832 -0.366903 -2.01696e-21)
(0.920819 -0.0386878 -7.40314e-21)
(0.970805 -0.000976876 -1.54093e-20)
(0.410346 -0.000888577 3.21845e-20)
(1.00322 0.244799 -1.37467e-20)
(-4.51526e-05 -0.0246843 3.79629e-21)
(0.164614 0.0444215 3.20849e-22)
(0.2649 0.0606346 -1.06265e-20)
(1.07382 -0.59669 3.96511e-20)
(0.0866394 -0.00947833 -1.18195e-20)
(0.0599509 -0.154782 -5.24695e-21)
(0.762959 -0.00835929 -3.55283e-20)
(0.963244 -0.393349 2.18288e-21)
(0.206683 0.0463798 -5.02994e-21)
(1.20969 0.0847171 -1.31451e-20)
(0.44764 -0.006286 -2.05505e-21)
(1.18373 0.206526 2.20772e-20)
(0.693937 0.146924 7.78218e-21)
(0.0991244 0.0205013 -5.42319e-21)
(0.746064 0.160998 6.81028e-22)
(0.918292 -0.0402097 4.40165e-21)
(0.364026 -0.361192 -7.29118e-21)
(1.01378 0.0941827 -1.15714e-21)
(0.919692 -0.190605 -7.7263e-21)
(1.04757 0.207977 -1.43554e-20)
(0.104322 -0.220017 3.91799e-21)
(0.880615 0.0558694 1.82853e-20)
(0.633773 0.0829328 -2.01596e-20)
(1.04738 0.210686 -2.4292e-21)
(0.983138 0.0867128 1.56161e-20)
(0.685864 0.143701 3.25968e-20)
(0.234892 0.0518275 1.46477e-20)
(1.00954 0.202258 -4.32328e-21)
(0.118685 0.0253978 1.01001e-21)
(1.13916 0.175206 -9.96122e-22)
(0.294023 0.000925871 -2.28292e-21)
(0.71547 0.141563 2.0811e-20)
(0.805802 -0.18616 -3.16099e-21)
(0.93101 -0.338992 -1.18632e-20)
(0.928447 3.40458e-05 -3.53263e-20)
(1.1914 0.20143 -8.50344e-21)
(0.561721 -0.194774 1.44742e-20)
(0.323804 0.011041 4.23496e-22)
(0.769744 -0.00325256 2.50464e-20)
(0.859644 -0.100272 -2.82188e-21)
(0.370434 0.0739944 -1.67751e-21)
(0.679587 0.148789 -4.04029e-21)
(0.209298 0.048498 5.54798e-21)
(0.988664 -0.160781 -4.97709e-21)
(1.34506 0.0836132 -5.66717e-21)
(0.921476 -0.0481358 1.48334e-21)
(0.147764 6.06623e-05 -5.29562e-21)
(1.26252 -0.224858 4.44828e-21)
(1.28933 0.131747 -7.83665e-21)
(0.0130857 -0.148969 -2.75296e-20)
(0.875876 -0.0979322 -1.10094e-20)
(0.453434 -0.00400783 -3.58102e-20)
(1.08609 0.205262 -2.01527e-20)
(0.649166 0.0344712 -6.16251e-20)
(1.32041 -0.312666 1.15949e-20)
(0.0835319 0.0191552 1.44418e-20)
(1.23732 0.160389 6.30666e-21)
(0.735222 0.144877 -1.00413e-20)
(1.24054 0.156835 2.82763e-21)
(0.297062 -0.000609089 -2.45236e-21)
(1.15024 0.208489 4.73318e-21)
(1.19001 0.205807 -5.55807e-21)
(1.08079 0.220555 -8.10422e-21)
(0.203944 0.0448731 -2.14238e-21)
(0.140108 -0.00160709 -4.94202e-22)
(0.923601 0.000430104 8.96051e-21)
(0.94717 -0.016027 1.55753e-21)
(0.984284 0.0408294 -2.88057e-21)
(0.921068 3.89712e-05 2.54505e-20)
(0.082649 -0.127161 -3.13738e-20)
(1.23248 0.0661734 -1.14154e-20)
(0.838807 -0.0130343 -3.69105e-21)
(1.10439 0.218533 6.38276e-21)
(0.449775 -0.00122063 -9.75933e-21)
(1.25065 -0.226471 4.13516e-23)
(0.810781 -0.183034 1.44752e-20)
(0.155603 0.0327814 1.16674e-21)
(1.10868 0.216353 7.57707e-21)
(1.02853 0.144926 5.94514e-21)
(0.433504 0.0952078 -4.35707e-21)
(1.05455 0.220516 2.39584e-20)
(0.0916623 0.00705213 -1.4179e-20)
(0.685264 -0.00559433 -1.63354e-20)
(0.941058 -0.000775869 8.34626e-21)
(0.941203 0.00105765 -3.7329e-20)
(0.861054 -0.0726011 -2.54602e-21)
(0.463159 0.148858 1.42511e-20)
(0.842048 -0.0323929 1.80923e-21)
(1.07416 -0.1726 -3.82842e-21)
(0.249155 -0.00223367 -5.52134e-21)
(0.822706 -0.0057835 1.07173e-20)
(0.130405 0.00200768 -4.95147e-21)
(0.922186 0.208863 -1.01528e-20)
(1.13467 0.176267 -1.24124e-20)
(0.971566 -0.000944274 -1.10397e-20)
(1.00408 0.199228 -6.35132e-21)
(0.825863 0.172179 -3.95301e-21)
(0.976351 -0.00116722 2.23591e-21)
(0.40355 0.00133065 -4.58437e-21)
(0.967045 0.210088 -8.58077e-21)
(0.986204 -9.32386e-05 1.15674e-20)
(1.12787 0.125902 -2.07844e-20)
(0.799263 -0.289308 1.04182e-20)
(1.00908 -0.672026 -3.64626e-20)
(0.724328 -0.00119059 -1.42105e-21)
(0.458925 -0.00198397 1.82228e-20)
(0.300215 0.001633 1.89867e-20)
(0.276908 0.00125373 -2.83153e-20)
(1.05105 0.237896 2.22719e-20)
(0.870522 -0.00742725 1.12308e-20)
(0.521232 0.262228 3.10345e-20)
(1.04594 0.209182 -5.65588e-21)
(0.104124 0.0233673 -2.16777e-21)
(0.159115 0.0363535 -4.58672e-21)
(1.29428 0.134374 1.04724e-20)
(0.45248 -0.000391007 2.34088e-20)
(1.00512 0.240298 -2.22051e-20)
(0.412214 -0.00229442 3.34088e-21)
(0.776985 0.151991 7.25863e-22)
(0.12065 0.0279491 2.28451e-21)
(0.105762 -0.346824 2.22181e-20)
(0.875916 0.145231 1.39626e-20)
(0.259356 0.0576043 -2.11187e-22)
(0.591838 -0.459733 5.56019e-21)
(0.33204 0.00236222 -1.79539e-21)
(0.484183 0.00163669 -1.76988e-20)
(0.446053 0.000159951 -1.00432e-20)
(0.769276 0.00027534 -2.05408e-20)
(1.00751 0.200832 8.76336e-21)
(1.05016 0.142335 5.60751e-21)
(1.13143 0.210783 2.63306e-20)
(0.897452 0.000208246 -1.3543e-20)
(0.448761 -0.543767 1.75646e-20)
(0.860674 0.00832199 3.88812e-20)
(-0.00083685 -0.0323005 -7.18239e-21)
(0.20328 0.002719 -9.61699e-21)
(0.691142 0.147532 1.56804e-20)
(0.604273 0.210766 -2.10019e-20)
(1.07132 0.155097 -4.66742e-20)
(1.01854 0.104209 4.04339e-20)
(0.774934 -0.276432 -2.51629e-20)
(0.841529 0.00648067 7.23783e-22)
(1.06805 0.228569 -4.31833e-22)
(0.988883 0.166134 1.99237e-20)
(1.46268 -0.0204165 2.12189e-22)
(0.480043 -0.000728014 -1.1077e-21)
(1.03095 0.143427 -6.15835e-22)
(0.0661725 0.00125159 2.73185e-21)
(0.0690225 -0.00106351 -5.49691e-21)
(0.117083 0.0257656 -1.69576e-21)
(1.10843 0.211991 -7.89918e-21)
(0.931444 -0.00366545 -2.85137e-20)
(0.159994 0.000377689 1.19743e-20)
(0.921427 -0.0452236 -5.26485e-21)
(1.08622 0.175179 -1.6576e-20)
(1.14897 0.209696 -4.97236e-21)
(0.275364 0.0634796 2.51078e-20)
(1.07236 0.219813 -1.13885e-20)
(1.08953 -0.290875 -1.45133e-21)
(0.155811 -0.000750075 -4.67433e-21)
(0.484774 0.0540906 5.9882e-20)
(1.01633 0.113498 5.79608e-21)
(0.131161 0.000778481 -3.90058e-21)
(0.694376 -0.0158812 4.20724e-20)
(0.511283 0.00214395 9.03079e-23)
(1.18727 -0.165321 1.98292e-21)
(1.09478 -0.281526 -7.18607e-22)
(0.398979 0.0657725 1.4277e-20)
(0.175593 0.0390757 -9.05884e-21)
(0.507133 0.00200395 -3.73814e-21)
(0.204071 -0.00272713 -1.22819e-21)
(0.973312 -0.000562632 -1.15549e-20)
(0.820255 -0.315389 -1.01422e-20)
(1.03968 -0.155344 -1.08499e-20)
(0.496533 -0.139361 -1.53678e-20)
(0.792014 0.213402 -4.55272e-21)
(0.20482 -0.00221435 -4.45341e-21)
(0.938239 -0.118189 6.57502e-21)
(0.134042 0.0307606 4.05181e-21)
(0.0856095 -0.137336 4.31735e-20)
(0.246868 0.00129953 6.45307e-21)
(1.21786 0.0934457 -1.12845e-20)
(1.01573 0.193623 2.70926e-21)
(0.152313 -0.262992 6.90895e-21)
(0.551448 -0.187044 -1.3295e-20)
(1.39812 -0.133767 -2.85987e-21)
(0.912591 0.00689915 -7.80131e-21)
(0.583975 -0.411456 -2.47817e-20)
(0.129287 0.0303398 1.18339e-21)
(0.123405 -0.000381948 -4.116e-22)
(0.12948 0.00100501 1.50518e-21)
(0.286455 0.0635005 -6.54486e-21)
(0.685309 0.166975 -4.55789e-21)
(0.356788 -0.495112 9.19594e-23)
(0.965774 -0.00169951 1.74373e-20)
(0.873287 -0.00645433 -2.48361e-20)
(1.08802 0.177376 -1.61374e-21)
(0.928466 -0.000117222 -4.85354e-21)
(0.92879 -0.000460027 -2.12921e-20)
(0.727719 0.153626 -2.36708e-22)
(0.86324 -0.0895956 1.50312e-20)
(0.952763 0.0907627 -3.14505e-20)
(0.751681 0.00120994 -5.35316e-20)
(0.949931 0.0905212 6.98615e-21)
(0.104107 -0.0581985 -2.72263e-20)
(0.859146 -0.0107798 1.84567e-20)
(0.936699 0.209776 8.41975e-21)
(0.819811 0.17954 2.90942e-23)
(1.05444 0.239686 2.74791e-20)
(0.672442 0.164861 -5.99649e-21)
(1.06641 0.231548 3.99381e-20)
(0.38972 0.00182405 -8.71158e-21)
(0.145664 0.0320686 -6.26523e-23)
(0.0525748 0.0111926 -3.57967e-21)
(0.926119 -0.244548 -9.42016e-21)
(0.0535573 0.0130199 -1.71175e-20)
(0.367981 -0.549787 1.36012e-20)
(0.201696 0.0435562 1.3353e-21)
(0.305932 0.0642039 6.87636e-22)
(0.855539 -0.076644 -3.9733e-21)
(0.232029 0.0523797 1.74116e-21)
(0.939337 -0.258464 -7.05704e-21)
(1.05835 0.210121 -3.69667e-21)
(0.611521 -0.419034 1.36341e-20)
(0.157402 -0.000322614 -1.37833e-20)
(0.184813 0.042734 -1.46376e-20)
(0.569326 -0.221084 -1.05624e-20)
(0.114018 0.0275406 -1.78789e-21)
(0.305041 0.0683114 -5.4614e-21)
(0.2541 0.0551423 1.33573e-21)
(1.06977 0.159378 1.18036e-20)
(0.441684 0.0469389 6.60155e-21)
(1.11372 0.174906 -1.43168e-20)
(0.108816 -0.000275452 2.22116e-20)
(0.93635 0.250941 1.89754e-20)
(0.684398 -0.238307 1.30268e-21)
(1.00016 -0.363164 -8.70719e-21)
(0.974414 0.000343472 1.48863e-20)
(0.731434 0.000224952 5.80769e-20)
(0.802972 -0.143434 1.14639e-20)
(0.417084 -0.000147102 -1.84016e-20)
(1.05248 0.140726 -2.09818e-20)
(0.974535 0.00386945 -3.16777e-20)
(0.348344 0.0779019 6.57031e-21)
(0.814479 0.164765 4.54288e-22)
(1.3171 -0.0480638 -3.64572e-22)
(0.155566 -0.000995965 -1.45418e-21)
(0.152392 -0.00109491 -3.25622e-21)
(0.795555 0.166866 4.66779e-21)
(0.730788 0.000836805 2.04819e-20)
(1.12483 0.123939 5.93287e-21)
(0.432061 0.0754249 1.49539e-22)
(0.366936 0.0810534 1.18815e-20)
(0.923221 0.000511715 2.74689e-20)
(0.871261 -0.00851095 -1.70173e-20)
(0.903049 0.0681472 3.78976e-21)
(0.124472 -0.000237511 5.7493e-21)
(0.262712 -0.000623575 -3.34127e-21)
(0.91769 -0.241902 8.04963e-21)
(0.921275 0.149334 2.51191e-20)
(0.676651 -0.248964 -2.42596e-20)
(0.125139 -0.000747755 -2.06245e-22)
(0.728548 -0.012152 -5.10565e-20)
(0.123087 0.0270567 1.13021e-21)
(1.3609 0.0746425 -1.99685e-21)
(0.908359 -0.00500439 -6.27957e-21)
(0.0198674 -0.145756 -1.47349e-20)
(0.558547 -0.212154 -4.44659e-21)
(0.944956 -0.000305559 4.88715e-20)
(1.02733 -0.664276 3.50596e-20)
(0.0624453 -0.273235 -2.31473e-20)
(0.404654 0.0481478 -9.84439e-22)
(0.990604 7.94081e-05 1.41585e-21)
(0.927256 0.24836 -8.00904e-20)
(0.432251 0.00217993 2.20506e-21)
(0.998654 -0.637764 1.97642e-20)
(1.19597 0.204894 -8.58563e-21)
(0.922919 -0.0545587 -5.10276e-21)
(0.5684 -0.442533 3.22128e-20)
(0.927713 0.00440272 4.14214e-20)
(0.947131 -0.250893 -2.71133e-21)
(0.752811 -0.00025911 -4.06147e-20)
(1.05485 -0.1969 -2.25637e-21)
(0.112947 0.0237306 -1.25645e-20)
(0.0905453 0.0210127 -5.30149e-22)
(1.13287 0.188763 1.79243e-20)
(0.947467 -0.00077764 -8.92054e-21)
(0.39498 0.00146733 8.43618e-21)
(0.231224 -0.00142565 -3.31998e-21)
(1.06445 0.203127 8.8431e-21)
(0.646796 0.277941 2.27955e-20)
(0.10711 0.0221216 -7.01997e-21)
(0.25076 0.0258424 -1.74077e-21)
(0.888635 0.00730123 4.95438e-20)
(0.394971 0.000289027 2.0768e-20)
(0.990328 -0.0474862 1.0821e-22)
(0.42795 0.00232129 -8.23453e-21)
(0.987436 0.199159 2.07482e-21)
(0.0104119 -0.127031 1.54715e-20)
(0.94848 0.000460675 5.37765e-21)
(0.871868 0.00585742 5.02344e-21)
(0.543997 -0.603414 2.2723e-21)
(0.161067 -0.00193704 2.12437e-21)
(1.07972 0.173409 4.64713e-20)
(0.83464 0.0147275 4.02137e-20)
(0.732026 0.156225 6.15977e-21)
(0.919135 -0.000653005 5.63512e-21)
(0.150206 0.0333757 1.26942e-21)
(0.490255 0.0018157 1.91588e-20)
(0.0870905 0.0201222 9.89917e-21)
(0.935978 -0.000336741 -1.16844e-20)
(0.10516 5.89596e-06 -1.02763e-21)
(1.22092 0.199105 9.88823e-21)
(1.13559 0.182619 -4.04117e-20)
(0.831376 -0.375446 5.72217e-21)
(0.757984 0.163185 -2.1634e-21)
(0.372545 0.000308191 1.19384e-20)
(0.704147 -0.00601395 4.58856e-20)
(1.37455 0.114453 -9.15514e-23)
(0.121429 0.0280648 -1.23491e-20)
(0.456514 -0.03982 -4.29567e-20)
(1.10892 0.184178 9.5611e-21)
(0.319633 -0.000334168 -1.77508e-20)
(1.00642 0.092813 1.12962e-20)
(0.429231 -0.000261117 1.47121e-20)
(0.14783 -0.00200661 2.09716e-21)
(1.23131 -0.131852 1.07349e-21)
(0.124967 -0.366725 2.01891e-20)
(1.36655 0.0654781 3.61413e-21)
(0.993474 0.204447 1.07202e-20)
(0.297751 -0.0935776 2.05197e-20)
(1.45639 -0.0236918 1.022e-21)
(0.824143 0.231974 -3.03021e-20)
(0.975654 0.0290222 3.88767e-22)
(0.108973 0.0235601 5.5983e-22)
(1.20844 0.202594 2.39683e-20)
(0.123482 -0.000140541 1.02191e-20)
(0.850953 -0.0675724 -2.02477e-20)
(0.251191 0.0556935 1.19078e-21)
(0.826294 -0.0759422 -1.49217e-20)
(0.848653 -0.103661 -3.05381e-21)
(0.812305 -0.17049 3.50311e-21)
(0.924644 -0.0494856 -2.13049e-21)
(0.0397007 -0.0729453 1.17182e-20)
(0.143165 0.00297207 -2.58666e-20)
(0.840546 0.131404 6.07337e-20)
(1.02355 -0.614011 -1.11434e-20)
(1.20723 0.181533 -4.60946e-22)
(0.00454496 -0.0802217 2.1762e-22)
(0.998814 -0.116944 -3.3209e-21)
(0.189372 0.0487099 -2.82955e-21)
(0.687082 0.00208807 2.20717e-20)
(0.629608 0.283489 -4.5544e-21)
(0.481693 -0.536757 2.33701e-20)
(0.986434 0.19497 -4.56421e-20)
(0.922467 -0.000939781 7.60146e-21)
(1.45594 -0.316922 2.84322e-20)
(0.75641 0.159049 -5.63822e-20)
(0.759971 0.159057 9.30666e-22)
(1.18335 -0.174099 -2.0232e-21)
(0.43714 0.00223848 7.74773e-21)
(0.945772 -0.00245626 -7.32164e-21)
(1.12544 0.186236 -3.40126e-20)
(0.378002 0.0875755 -8.43427e-22)
(0.130724 0.000755287 -8.74943e-22)
(0.163014 -0.276708 -6.15724e-21)
(0.318005 -0.0573447 2.02044e-20)
(0.107752 0.0243221 -8.12439e-21)
(0.922926 -0.0035776 5.12789e-21)
(0.544579 0.122337 -1.27623e-20)
(0.799484 0.211936 -2.93494e-20)
(0.456884 -0.00229803 4.54241e-21)
(0.473698 0.00150266 3.71956e-21)
(0.12849 0.000145087 -8.82513e-21)
(0.889778 0.163152 -3.74143e-20)
(0.162961 0.03758 -6.57447e-21)
(0.141812 -0.00270515 9.96274e-22)
(0.345213 -0.34274 -8.87198e-21)
(1.10701 -0.193967 -6.30978e-21)
(0.995948 0.0982251 2.12501e-20)
(1.42518 -0.279209 1.57672e-21)
(0.682567 0.00107225 1.04356e-20)
(1.02883 0.177688 4.36679e-20)
(0.516536 -0.0407657 1.13399e-21)
(0.950817 -0.000363835 1.03133e-20)
(1.12831 0.212191 -2.72609e-21)
(0.728155 -0.00155522 2.93018e-21)
(0.496696 -0.152381 -7.45814e-21)
(0.402263 -0.00341289 -1.65531e-21)
(0.19568 0.0439395 1.02685e-20)
(0.823286 0.130548 4.74688e-20)
(0.512944 0.113953 1.20312e-20)
(1.0083 0.210022 -3.27911e-21)
(1.07259 0.20228 -2.48551e-21)
(1.37834 0.108102 -2.75352e-22)
(1.07956 0.122426 1.97256e-20)
(0.314828 -0.302051 -1.57859e-20)
(0.241406 -0.000552203 9.85444e-21)
(1.26002 0.101383 -1.47259e-20)
(1.22339 0.0948083 1.75871e-21)
(0.0753227 -0.159243 -1.75441e-20)
(0.1626 0.0342598 -1.1577e-20)
(0.742858 -1.63374e-05 1.84139e-20)
(0.788471 -0.0329425 -5.54481e-21)
(1.15402 0.211099 -8.365e-21)
(-0.000112198 -0.0343904 8.94713e-21)
(0.973839 -0.377255 -1.50077e-20)
(0.226132 0.0515945 3.04087e-21)
(0.830618 -0.0744785 1.03307e-20)
(0.487989 0.00282763 6.83244e-21)
(0.797258 0.02422 -1.92284e-20)
(0.711584 0.00255772 -2.66661e-20)
(0.735348 0.157552 2.81645e-21)
(0.331842 0.000434673 -1.23324e-20)
(0.800976 0.28073 -1.38949e-20)
(1.12182 0.152192 3.68272e-21)
(1.18024 0.207436 -5.54299e-22)
(0.692967 0.000802911 -3.06838e-21)
(0.405981 -0.00260648 -3.99616e-21)
(0.147849 -0.232793 2.81654e-20)
(0.210736 0.0401872 1.02826e-21)
(1.1749 -0.409329 8.62235e-22)
(0.984929 0.169614 -1.83691e-20)
(1.11603 0.174319 1.05549e-20)
(0.877678 -0.102816 8.63981e-21)
(0.121147 0.0280683 -1.23298e-21)
(0.399684 0.00125889 -1.62642e-21)
(0.130002 4.96361e-05 -4.9527e-21)
(1.28566 -0.155859 -3.17695e-21)
(1.09287 0.220721 -2.07735e-20)
(0.852252 -0.0927165 -8.13869e-21)
(0.172948 0.0378256 -6.49211e-21)
(1.35048 0.0747033 -6.04356e-22)
(1.09353 0.213099 1.63322e-21)
(0.18882 0.0423533 -7.20805e-21)
(0.919161 -0.0536201 8.72105e-21)
(0.86572 0.134215 5.14355e-20)
(0.629893 0.0152211 4.0672e-20)
(0.997976 0.0822724 6.4902e-21)
(0.535918 -0.631683 -2.48044e-20)
(0.933276 -0.00508083 -8.89156e-21)
(0.192906 -0.0201863 -6.129e-20)
(0.179091 0.0409029 3.13883e-21)
(1.00861 0.205012 8.25628e-21)
(0.319912 0.0723673 4.46999e-21)
(0.70636 0.00135847 -8.74566e-21)
(0.658195 -0.484647 -2.5467e-20)
(0.514299 0.0784803 -3.95934e-22)
(0.241295 0.0529808 3.04318e-21)
(1.21021 0.201361 -1.22783e-20)
(1.10123 -0.188385 9.85919e-21)
(0.970991 -0.0429512 3.60402e-21)
(1.24535 0.102848 2.72837e-21)
(0.807067 -0.166338 2.55609e-21)
(1.14055 -0.540556 1.40125e-20)
(0.636096 -0.484256 1.44807e-20)
(1.2869 -0.0818328 -8.26297e-22)
(0.970669 -0.0420326 -3.54706e-21)
(1.10598 -0.201174 4.49383e-21)
(0.297944 0.000248676 -1.69799e-20)
(0.708068 0.151841 -2.03785e-20)
(1.00718 0.265668 9.15988e-21)
(0.697722 -0.00169867 -5.76369e-21)
(1.25073 0.149895 9.59933e-21)
(0.147782 -0.00181632 -1.27942e-21)
(0.753494 -0.00242424 1.20162e-21)
(0.540173 0.120461 -8.6145e-21)
(0.682121 0.134491 2.0268e-22)
(0.226099 0.0532893 6.87388e-21)
(0.714319 0.00144959 4.12726e-21)
(0.949155 -0.000259039 -3.4295e-21)
(0.112269 -0.000452187 -9.18251e-22)
(0.476579 -0.626626 -8.26178e-21)
(0.859967 0.19306 2.40857e-21)
(0.35878 0.0777864 -1.2626e-20)
(1.16045 0.140943 3.82012e-22)
(0.239492 0.00232333 4.65191e-21)
(1.07458 0.154393 1.92846e-20)
(0.497177 0.288594 -2.37885e-20)
(0.934715 -0.000545887 1.24966e-20)
(0.289675 -0.00157619 -4.66617e-21)
(1.24748 0.193499 -6.71611e-22)
(0.27823 0.062395 -4.66289e-21)
(0.867017 0.13777 8.32304e-22)
(0.719176 -0.00189856 -8.67319e-21)
(0.819551 -0.0201696 -1.42854e-20)
(1.16371 0.17052 -7.74614e-21)
(1.13698 0.180507 3.73387e-20)
(0.0497786 -0.250405 -1.65549e-20)
(1.13098 0.186892 -3.73653e-21)
(0.70685 0.0035392 -2.43313e-20)
(0.112044 -0.000383204 -8.5292e-21)
(0.898391 0.001285 -2.71197e-20)
(1.05592 0.221727 2.78549e-20)
(0.970394 0.290045 2.69586e-21)
(0.163088 0.00028843 3.36292e-21)
(0.895125 -0.00150672 5.99897e-20)
(0.289436 -0.323468 3.19563e-21)
(0.316193 -0.106023 6.29766e-22)
(1.21956 0.18065 -5.47434e-21)
(0.990446 0.190001 6.21269e-20)
(0.845521 0.26172 1.95872e-20)
(0.124217 0.0326714 1.14677e-20)
(0.299962 0.0670928 5.92445e-21)
(0.181986 0.0402943 -2.41342e-21)
(0.0971843 -0.0684392 -2.31557e-20)
(0.69286 0.159547 2.61795e-20)
(0.735225 0.159118 2.31719e-20)
(0.798888 0.0214747 -3.07034e-20)
(0.887484 0.117586 9.13954e-22)
(0.132827 0.0303617 4.1914e-21)
(0.96545 0.261377 1.42537e-20)
(0.50962 0.0585277 -5.10565e-20)
(0.74418 0.0208783 -6.74668e-20)
(1.0736 0.121249 1.63238e-20)
(1.17809 -0.425214 7.32128e-21)
(0.346214 -0.0512186 1.19647e-21)
(1.27426 -0.00668395 -2.98404e-21)
(0.913926 0.212013 -1.80901e-21)
(1.40256 0.00175572 2.42576e-22)
(0.829133 -0.0164406 8.67347e-21)
(0.729148 0.00199477 3.5066e-20)
(0.00613897 -0.114203 -1.56467e-20)
(0.241585 -0.00023519 -5.27073e-21)
(1.08527 -0.177483 -8.26988e-22)
(0.23447 0.00213133 6.86833e-21)
(0.818668 -0.273407 2.0513e-21)
(0.88346 0.0509059 -3.34188e-20)
(0.934965 0.000391724 -5.90875e-21)
(1.09865 0.21887 -4.24081e-20)
(1.17828 0.142528 8.98624e-21)
(1.17568 0.103638 2.19675e-21)
(0.953421 -0.00737479 2.11212e-22)
(0.306636 -0.531709 1.95508e-20)
(1.22066 0.089344 -4.23123e-22)
(0.301737 0.0664428 -4.06753e-21)
(1.0269 0.174863 8.26826e-21)
(0.226302 0.0497607 9.96171e-21)
(1.26739 -0.0078 4.67596e-22)
(1.06273 0.210732 1.96361e-20)
(0.823791 -0.0846508 3.28603e-21)
(1.34593 0.112601 -2.1329e-21)
(0.855321 0.257356 -3.16543e-20)
(0.444882 0.000798668 -1.47736e-21)
(1.04121 0.208307 1.69154e-20)
(1.10217 0.217032 -1.34531e-20)
(0.99298 0.10584 7.18672e-21)
(1.02796 0.206756 1.13863e-20)
(0.714016 0.00240558 -8.73073e-23)
(0.942159 -0.000933541 -1.23007e-20)
(0.516107 -0.00413404 6.37924e-22)
(0.116028 0.0262216 -6.10554e-22)
(0.934308 0.158338 -2.86986e-20)
(0.25201 0.0521909 5.46912e-22)
(0.319789 0.0710451 6.32133e-21)
(0.948106 0.000147269 5.75485e-21)
(1.04246 0.167547 -5.34437e-20)
(0.904044 0.192455 2.58553e-20)
(0.217006 0.0469631 -4.26074e-21)
(0.136894 0.00225845 -1.83705e-23)
(0.106076 -0.000354206 -1.63751e-23)
(0.12353 -0.000331215 -1.43452e-20)
(0.719029 -0.00305952 -1.89171e-22)
(1.19843 -0.16419 1.34703e-21)
(0.89432 0.26003 -2.44799e-20)
(0.173663 0.0381096 7.20658e-21)
(0.994505 -0.585271 1.10772e-20)
(0.724985 0.00107345 -8.58134e-21)
(1.13224 0.175856 -1.2422e-21)
(0.993023 -0.000281013 -1.64647e-21)
(0.0586204 -0.26889 8.28945e-21)
(0.154669 0.000135646 4.45654e-21)
(0.443143 0.0667027 -1.51803e-22)
(0.99474 -0.0880752 -3.20628e-21)
(0.9634 0.2902 -4.48147e-21)
(1.18405 0.18352 2.55839e-21)
(1.28618 -0.074468 2.46207e-22)
(1.41841 0.0707613 -2.96748e-22)
(0.893004 0.146762 2.44294e-21)
(0.24531 -0.000855794 1.16572e-22)
(0.90684 -0.00147648 1.92036e-21)
(0.703715 0.00313009 -1.83809e-21)
(0.889456 0.0227674 2.13118e-20)
(0.763046 -0.0026065 -5.26089e-23)
(1.04974 0.220719 -2.81638e-20)
(0.562286 -0.161065 9.51056e-21)
(0.662828 -0.390651 -2.15046e-20)
(1.14533 0.20015 -3.31621e-21)
(0.905687 0.0610353 1.28487e-22)
(1.03961 0.168614 4.6255e-20)
(1.04879 0.170307 -3.95116e-20)
(0.385887 -0.358341 2.13035e-20)
(0.654521 0.0900986 3.64104e-20)
(0.42276 0.00235655 -3.47385e-21)
(1.0818 0.175535 -5.29574e-20)
(0.938841 -0.00229667 1.85145e-21)
(0.884629 0.00198946 9.16373e-21)
(1.08062 0.199755 9.71848e-21)
(0.305646 -0.525236 -5.1217e-21)
(0.478641 3.51765e-05 -3.46318e-21)
(0.223985 0.00187769 6.08514e-23)
(1.18366 0.204837 9.28805e-21)
(0.884206 -0.00218457 -1.66284e-20)
(0.970179 0.28924 -1.0418e-20)
(0.725789 0.000606191 3.34967e-21)
(1.08206 0.201528 1.78099e-20)
(0.322075 0.00156374 -1.11677e-21)
(0.844668 0.0581415 -2.65413e-20)
(0.205716 0.00177343 -4.14552e-21)
(0.109427 0.0226813 4.24719e-21)
(0.549734 0.111714 1.15122e-21)
(1.07595 0.150395 3.31958e-20)
(0.200657 0.0404111 -7.66638e-22)
(1.17872 0.173824 3.46857e-21)
(0.562454 0.115548 3.84226e-21)
(1.00276 0.268268 -2.91657e-20)
(0.148411 0.000334204 1.40315e-20)
(0.122291 -0.00114187 -2.87789e-21)
(0.813911 0.158914 3.42665e-21)
(0.79343 0.169733 2.68248e-21)
(0.869846 -0.00418396 -5.90642e-20)
(1.10851 0.216851 -1.79622e-20)
(0.991024 -0.349114 -2.51385e-21)
(0.895815 0.00876755 -2.62956e-20)
(1.19216 0.165897 6.03289e-21)
(1.06586 0.22724 -9.31811e-21)
(1.26648 -0.0487824 -6.67999e-21)
(1.01585 0.20545 1.84884e-20)
(0.886886 0.0360091 -3.21111e-20)
(0.327317 0.000550258 1.39307e-21)
(0.188681 0.00247805 5.99034e-22)
(0.87758 0.00371481 -4.71607e-21)
(1.39721 -0.285708 -5.66352e-21)
(1.20187 0.203285 -2.19318e-20)
(1.16066 0.144681 6.16601e-21)
(0.236113 0.000891241 8.41941e-22)
(0.898951 0.00105781 1.20145e-20)
(0.473837 -0.000472849 8.52936e-21)
(1.08668 0.215533 -1.06139e-20)
(0.736875 0.169224 5.07085e-21)
(1.03903 0.205918 2.43742e-20)
(0.865341 0.187431 -2.62562e-22)
(-0.000111176 -0.0273368 -1.53441e-20)
(0.940203 0.274046 -6.68042e-21)
(0.11202 0.0246561 2.58497e-21)
(1.45471 -0.105889 5.17179e-21)
(0.690112 0.0791867 -1.88182e-20)
(0.99356 0.0965567 2.93772e-20)
(0.218236 0.0486855 1.55716e-21)
(0.81194 0.221636 9.17129e-21)
(0.910575 -0.160296 -8.95062e-22)
(1.26876 -0.208231 -1.00663e-20)
(1.32443 -0.0551282 4.80407e-22)
(1.29714 -0.159582 2.65682e-21)
(1.04581 0.171137 5.76981e-20)
(0.188046 0.0418281 -4.39602e-21)
(0.625696 -0.403274 -1.2404e-20)
(0.236874 0.0508285 6.11826e-21)
(0.71331 0.125779 2.88393e-20)
(1.00032 -0.119889 -6.74015e-21)
(0.848696 0.0351877 -4.77292e-20)
(0.399463 0.000754064 -3.75615e-21)
(0.314537 0.0696559 -2.20084e-21)
(0.236735 0.051429 5.41378e-22)
(0.333539 0.00262753 -3.39403e-20)
(0.993533 0.167471 -2.9718e-20)
(0.312517 0.00134048 1.3935e-20)
(0.0495861 0.0112863 -3.43291e-21)
(0.406964 0.00188418 4.51318e-21)
(0.0512138 0.0115151 -5.21642e-21)
(0.228704 0.000763476 2.09122e-20)
(0.45714 0.00145253 3.63954e-21)
(1.3416 0.109383 4.7732e-21)
(0.986617 0.00155569 3.51033e-20)
(0.524979 -0.035816 1.00515e-20)
(0.752282 0.172834 -7.40293e-21)
(0.701723 0.156052 1.36217e-20)
(0.412389 0.000510475 2.1896e-21)
(0.946402 -0.0135443 -3.42026e-21)
(0.847001 -0.254753 -5.77289e-21)
(1.33292 0.114918 -1.0069e-20)
(0.850906 0.182884 -1.4791e-20)
(1.23771 0.185244 3.85827e-21)
(0.381353 0.000760991 -4.1537e-21)
(0.366296 0.0728616 3.73824e-22)
(0.636588 0.092785 -9.35148e-22)
(1.08529 0.122762 -4.0151e-20)
(0.47869 0.0130558 -1.89591e-21)
(0.423134 0.00263251 1.72643e-20)
(0.0562435 -0.264318 4.30138e-21)
(0.567393 0.125325 1.26016e-20)
(0.397693 0.00110261 2.60946e-20)
(0.899874 0.178129 4.51854e-20)
(0.147297 0.029751 -5.39415e-22)
(0.724951 0.112208 -6.03832e-20)
(0.881338 0.186756 1.75312e-20)
(0.916914 0.140685 1.85549e-21)
(0.156832 -0.245303 -2.81141e-20)
(0.652277 0.0149362 -4.0208e-20)
(0.451095 0.000932051 7.00325e-21)
(0.481194 -0.0137615 1.21445e-20)
(0.210251 0.0467645 2.88636e-21)
(0.835299 0.00314596 4.39231e-21)
(0.981786 0.085026 -1.1592e-20)
(0.940693 -0.000377529 -1.73208e-20)
(0.0948598 0.0217849 6.21558e-21)
(1.29814 -0.292853 -4.21538e-21)
(0.749689 0.247825 -1.63319e-20)
(0.928636 0.213412 -5.09175e-20)
(0.419009 0.10496 -1.67769e-20)
(0.234633 0.0588522 1.50584e-20)
(0.947588 -0.0123572 3.45231e-23)
(0.943243 -0.00294688 3.65173e-21)
(0.203905 0.0441929 -3.40691e-21)
(0.653117 0.317273 -1.01754e-20)
(0.143046 0.00046959 2.47624e-22)
(0.931196 0.153915 3.18257e-20)
(0.198959 -0.000997524 2.83088e-20)
(1.15555 0.204713 -9.77714e-21)
(0.729853 0.0571076 -9.79339e-20)
(0.415773 0.0964322 4.74384e-23)
(0.723296 0.185348 6.23478e-21)
(0.99664 0.128896 5.0919e-20)
(0.819077 -0.0858183 2.29238e-21)
(0.925566 -0.000100288 8.76361e-21)
(1.15847 0.201364 3.45561e-21)
(1.32808 0.112641 4.28206e-21)
(0.817543 0.134357 -5.20566e-20)
(0.917197 -0.157825 -6.01126e-21)
(0.988734 0.185392 -3.3669e-20)
(0.41105 -0.00337145 -6.36958e-21)
(0.576871 -0.159144 -9.75524e-21)
(0.186307 0.0423499 -1.50908e-21)
(1.13988 -0.195521 3.39926e-21)
(0.154616 -0.000127518 -1.40215e-20)
(0.935555 -0.194234 -1.78066e-20)
(1.24864 0.191441 -4.99609e-21)
(1.25889 0.106055 1.71721e-20)
(1.34815 0.0929766 1.13468e-21)
(0.256627 0.0547825 3.75367e-21)
(0.50177 -0.56039 -8.37107e-21)
(0.619794 -0.0292426 2.83929e-20)
(0.367398 -0.562368 4.18762e-20)
(0.353529 0.0761132 1.95719e-21)
(1.28254 0.0738729 -8.42121e-21)
(0.783982 0.282937 1.09566e-21)
(0.375387 0.000380837 -1.24196e-20)
(0.991567 -0.098094 2.58296e-21)
(0.210741 -0.000818026 -7.07008e-21)
(0.854172 0.152081 -7.53979e-22)
(0.913841 -0.323098 1.46466e-21)
(0.824269 -0.0544473 -6.15656e-21)
(0.770236 0.00141426 -2.47819e-20)
(0.985527 0.203541 1.28728e-20)
(0.853215 0.00774296 -1.51106e-20)
(1.21886 0.178358 5.60595e-21)
(0.100865 -0.000729471 3.85799e-21)
(0.325693 0.071351 8.65563e-21)
(0.357899 0.0791382 4.00225e-21)
(0.35056 -0.320504 2.38973e-20)
(1.11206 0.215607 2.51624e-20)
(0.107744 0.0247815 2.79802e-21)
(1.10341 0.183255 4.67172e-20)
(0.669259 0.195858 1.88528e-20)
(1.06622 0.22122 2.74793e-20)
(0.344603 -0.130422 1.64919e-20)
(1.10839 0.206518 -1.72904e-21)
(0.732705 -0.000269709 1.05603e-20)
(0.408578 0.203296 -2.09122e-20)
(0.337472 -0.345881 2.61731e-20)
(0.846328 -0.00565828 -1.07592e-20)
(0.75277 -0.00148137 -2.29316e-21)
(0.867098 0.142504 -3.69374e-20)
(0.917462 0.00586732 6.29683e-21)
(0.380287 0.00184446 -7.76206e-21)
(0.684424 0.0897877 4.8899e-20)
(0.670475 -0.276604 2.02108e-20)
(0.138903 0.0339244 -3.63792e-22)
(0.680759 0.0323375 -6.50988e-20)
(0.1108 0.0253861 3.55168e-21)
(0.79862 0.00182869 1.25326e-20)
(1.10021 0.219646 -1.70597e-20)
(0.442201 -0.00988167 -1.33968e-21)
(0.928282 -2.47532e-05 -2.54488e-20)
(0.383931 0.0852907 1.84119e-21)
(0.742335 0.0848107 3.38843e-21)
(1.24683 0.107674 -3.22159e-21)
(0.750254 0.00178221 -5.9948e-21)
(1.45656 -0.301467 9.70363e-21)
(0.740101 -0.00369353 -3.31494e-20)
(0.939479 -0.000936073 5.28461e-21)
(0.760952 -0.018712 -1.24547e-20)
(1.03873 -0.242019 1.04422e-20)
(0.998351 -0.357552 1.89855e-22)
(0.384863 0.000358362 -2.48691e-21)
(0.612203 -0.0275813 4.12356e-21)
(0.98982 -0.0466502 9.50603e-22)
(0.739878 0.1662 -2.01876e-20)
(0.442543 -0.0028386 8.0966e-21)
(0.494484 0.0423345 -3.62501e-20)
(1.18392 0.201169 -7.85307e-21)
(0.701859 -0.241976 -4.32496e-22)
(0.963239 0.255181 -1.66325e-20)
(0.925068 -0.325149 -1.4642e-20)
(0.1073 -0.345653 1.46568e-20)
(0.714733 0.163787 5.77365e-21)
(0.709577 -0.00264808 1.07329e-20)
(0.83919 0.0588623 -2.60889e-20)
(0.172392 0.0404416 -2.80348e-21)
(0.927135 -0.00219938 1.46076e-20)
(0.459858 -0.00058466 4.06066e-21)
(0.833336 0.136486 -3.46372e-20)
(1.00063 -0.572753 -1.2882e-20)
(0.307096 -0.323695 2.07249e-20)
(0.449269 0.11591 2.14587e-20)
(0.767579 -0.289644 -2.81388e-21)
(1.0552 0.213311 3.40315e-21)
(0.0235992 -0.181541 -1.40971e-21)
(0.956587 0.00234644 5.53107e-20)
(0.797565 0.145104 -3.55678e-21)
(1.04987 0.22217 -2.03475e-20)
(0.352332 -0.000675207 9.85403e-22)
(0.190915 0.0420477 -1.8765e-21)
(0.740514 -0.0350868 4.19867e-21)
(0.451268 -0.0010063 6.6913e-22)
(0.36222 -0.000262901 4.06944e-21)
(0.530638 0.148046 -1.8224e-20)
(0.549603 0.0135986 -2.23257e-20)
(0.695446 0.327929 -1.7728e-20)
(0.187529 0.0393871 1.18371e-21)
(0.841024 0.12147 -5.17997e-20)
(1.34999 -0.387329 6.33687e-21)
(1.03117 0.138734 1.29878e-20)
(0.498791 -0.114865 -2.87951e-20)
(0.946181 -0.647852 1.4633e-20)
(0.924333 0.143487 -6.66514e-20)
(1.10995 0.18008 3.64773e-20)
(1.17882 0.169933 -1.15838e-20)
(0.942274 0.213359 -1.71556e-20)
(0.743537 0.194191 -2.95786e-20)
(0.953004 0.246946 1.52115e-20)
(0.962048 -0.00124711 1.12439e-20)
(0.39286 0.00292785 -2.30932e-20)
(0.992749 -0.377121 7.43407e-21)
(1.15843 0.209978 -3.74961e-22)
(0.118648 0.025753 -5.19756e-21)
(0.368387 0.00130833 -4.40885e-20)
(0.653783 0.0548372 -1.95486e-20)
(0.224275 0.0614547 9.69988e-21)
(0.772125 0.162135 3.18847e-21)
(1.12033 0.154405 6.34809e-21)
(0.00090333 -0.0690566 1.36589e-21)
(1.07665 0.120092 9.59757e-21)
(0.986898 -0.250997 2.10858e-21)
(0.967466 -0.00219614 2.79628e-21)
(0.751776 -0.000457458 3.8871e-21)
(0.0399532 -0.0647163 -1.02272e-20)
(1.04436 -0.249645 9.88732e-21)
(1.09473 -0.638645 1.66307e-20)
(0.25778 0.0579519 -7.25793e-21)
(1.05308 0.21906 -1.09682e-20)
(0.473119 -0.00043829 -4.1243e-20)
(0.445247 -0.000717453 3.37844e-21)
(0.222049 -0.0330033 2.31794e-20)
(0.435477 0.071753 1.17354e-22)
(0.21833 0.0480827 9.91739e-22)
(0.9582 0.0935584 -5.5682e-21)
(1.13542 0.206721 1.38784e-20)
(0.158659 0.0365166 1.31637e-20)
(0.549109 0.113523 -2.56536e-21)
(1.0668 0.123146 -3.75122e-20)
(0.29976 0.066159 -1.7227e-21)
(1.19798 0.131201 1.29778e-20)
(0.234496 -0.447863 -5.32187e-21)
(0.130891 -0.366466 -1.19178e-20)
(1.02157 0.103275 -6.669e-21)
(1.11264 0.213089 -3.27927e-20)
(0.354524 0.0792727 -2.17241e-21)
(0.954165 0.116195 -4.91014e-22)
(0.203399 0.0418666 -6.00201e-22)
(0.651682 0.301411 -2.82639e-20)
(1.11247 0.17925 -3.86186e-20)
(0.916598 -0.0100127 3.21386e-21)
(1.18035 -0.541713 -1.75863e-20)
(0.0114484 -0.146679 -1.55851e-20)
(0.451596 -0.010809 -1.5042e-21)
(1.09701 0.201718 -3.65745e-21)
(0.258921 0.0667439 -4.45604e-21)
(1.12751 0.187957 2.24569e-20)
(0.954642 0.254134 -2.78263e-20)
(0.852538 0.181328 1.17094e-19)
(0.267816 0.0589801 3.54711e-21)
(0.988662 -0.0655473 -1.63186e-21)
(0.673265 0.0779956 -3.03638e-20)
(0.457849 0.000898324 1.03179e-20)
(0.195938 -0.00177283 -2.51967e-20)
(1.27781 -0.330507 9.43799e-21)
(0.855146 0.0318435 4.95692e-20)
(0.17428 0.035237 7.07889e-22)
(0.537847 0.153519 -5.04039e-21)
(1.3839 -0.088527 2.54574e-21)
(0.860477 0.000454949 -7.96738e-21)
(0.835118 0.238454 -2.38251e-20)
(1.19962 0.0908933 3.08737e-20)
(1.00638 0.0905494 -1.07458e-20)
(0.430292 -0.596353 -8.32556e-21)
(0.00442107 -0.0839604 4.67432e-21)
(0.869523 0.0016186 -1.1305e-20)
(0.283358 0.0626135 9.71152e-22)
(0.840709 -0.0433776 -1.32267e-20)
(1.39718 -0.413157 -8.11414e-22)
(0.291576 0.0637775 -2.50012e-21)
(0.717787 0.2641 -1.09762e-20)
(1.04869 0.238296 2.98668e-20)
(0.465771 0.00157503 -2.52374e-21)
(0.813954 -0.249117 1.16081e-20)
(0.936762 -0.00178197 3.98649e-21)
(0.284425 0.0582905 3.35169e-21)
(1.05219 0.191819 5.04896e-21)
(0.706054 -0.000923199 -6.30409e-21)
(0.7553 -0.0291996 1.1635e-20)
(0.00654472 -0.078471 -6.65239e-21)
(1.34952 0.137794 -1.75089e-21)
(0.427003 0.0875038 -5.99639e-21)
(0.330243 -0.000701965 1.24931e-20)
(0.201294 0.00048132 -5.12183e-21)
(0.470828 -0.000210608 -1.23787e-22)
(0.962004 -0.00318472 -4.05654e-21)
(0.472478 -0.011699 -2.07025e-20)
(0.977065 0.204049 7.34105e-21)
(0.815001 0.159699 5.93424e-21)
(0.509583 -0.00544173 2.06869e-21)
(1.1886 0.204838 -1.55539e-21)
(0.224407 -0.00122752 4.88168e-21)
(0.759814 0.165863 1.46693e-20)
(0.841028 0.00913062 8.25227e-21)
(1.16782 0.164201 -4.11101e-22)
(0.432168 0.0847769 -3.38394e-22)
(0.648875 -0.0543295 8.37013e-21)
(0.752312 -0.000559423 2.10186e-20)
(1.40238 -0.311238 -7.97265e-21)
(0.285523 -0.000403182 -6.0065e-21)
(1.3475 -0.356325 -4.56873e-21)
(0.710938 0.0646472 1.62879e-20)
(0.65118 -0.406882 2.73621e-20)
(0.440759 0.00111313 -2.73447e-21)
(1.03331 0.252002 5.50309e-20)
(0.457841 -0.591513 -6.1931e-21)
(1.16293 0.173881 9.68272e-21)
(0.459155 -0.000172253 -9.46773e-21)
(0.990566 0.0978027 -1.61143e-20)
(1.09992 -0.180673 -1.26355e-21)
(0.815851 -0.382558 -1.48226e-21)
(0.482819 0.0021207 -2.23587e-20)
(0.0994172 0.0232519 7.04105e-21)
(0.858551 0.174066 -6.36471e-20)
(0.890957 0.0320421 2.90734e-20)
(0.146099 -0.393013 -3.79698e-20)
(0.456824 6.124e-05 5.65545e-21)
(0.849385 -0.560834 7.70856e-21)
(0.898453 0.158719 3.82866e-21)
(0.49088 -0.000145378 3.43378e-20)
(0.4526 -0.000122465 3.71778e-22)
(1.25717 0.141764 5.75317e-21)
(1.26261 0.187907 -1.22031e-21)
(0.706809 -0.00108318 4.25412e-22)
(0.675015 0.000793535 2.89929e-20)
(0.76995 0.163752 5.38045e-21)
(0.227431 -0.292144 -8.55554e-21)
(0.713635 0.142596 -7.52025e-21)
(1.26383 0.138125 -5.11381e-21)
(0.960183 -0.00207214 5.28594e-21)
(0.0311727 -0.198359 -1.14246e-21)
(0.985148 0.204448 -3.72794e-21)
(1.09138 0.216355 6.88811e-22)
(0.883237 0.207908 -5.05159e-21)
(1.17657 0.145496 -1.09787e-20)
(0.908302 0.104659 -9.54379e-20)
(0.123294 -8.07294e-05 8.15905e-21)
(0.54356 -0.542407 -7.12611e-21)
(0.684786 3.91347e-05 7.61914e-22)
(0.493861 0.00297962 8.20438e-22)
(0.56869 0.0122536 1.62532e-20)
(0.107599 0.0239809 5.17123e-22)
(0.38588 0.00597952 1.7485e-20)
(0.866092 -0.00772424 1.24311e-20)
(0.513934 0.00125137 1.38171e-22)
(1.20336 0.0918833 -2.81099e-20)
(1.01234 0.229381 -6.00116e-20)
(0.874885 0.223196 1.69753e-20)
(0.781855 0.0131655 1.42507e-20)
(0.430689 0.0936611 3.01181e-21)
(0.667494 0.142813 1.34182e-21)
(0.820373 0.00328134 9.84125e-21)
(0.897043 0.00290129 -4.25884e-21)
(0.993057 0.102745 4.36977e-20)
(0.932007 -0.00585999 -4.74281e-21)
(0.915018 -0.171773 -1.2134e-20)
(0.308497 0.0821285 1.58452e-21)
(0.170623 0.0394291 -2.43044e-21)
(0.148291 0.0322464 4.58174e-21)
(0.073027 -0.147073 -6.96585e-21)
(1.37047 -0.0905532 -5.82772e-22)
(1.27378 0.00813083 6.87325e-21)
(0.372727 -0.434663 1.92485e-20)
(0.688564 0.245783 3.07312e-20)
(0.867217 0.20326 3.45181e-21)
(0.160263 0.0357288 9.86727e-21)
(1.14012 -0.275717 -1.0069e-20)
(1.1878 0.174911 -1.13365e-20)
(0.855783 0.00224033 -1.52792e-20)
(0.81074 0.143104 1.19231e-21)
(0.943608 -2.28293e-06 3.40235e-20)
(0.956892 -0.00102616 -6.73626e-21)
(0.863664 0.0112907 -2.9195e-22)
(1.31237 0.166535 -8.35376e-21)
(0.740396 0.156633 -3.32847e-21)
(1.03036 0.214184 4.04668e-21)
(0.9365 0.000419269 -8.78702e-21)
(0.892045 -0.000512536 2.83627e-21)
(0.923186 -0.369489 -9.71062e-21)
(0.949529 0.00263293 -7.09333e-20)
(0.208338 -0.0024485 1.42098e-21)
(0.157695 -0.000151578 -2.92219e-21)
(0.179632 -0.282578 1.7474e-21)
(0.311622 0.0633241 -1.45556e-21)
(0.745325 -0.0260387 1.16177e-20)
(1.18141 0.175651 -3.89893e-21)
(0.821515 0.171923 4.09375e-20)
(0.223565 0.0478654 1.42442e-21)
(0.804467 0.0189417 2.47852e-20)
(0.277683 -0.102604 -4.99398e-21)
(0.804077 0.222933 2.14371e-20)
(0.779168 0.204012 1.81869e-20)
(0.512161 0.118799 -2.25109e-20)
(1.38184 -0.300386 1.25134e-20)
(0.919326 0.00104755 2.81096e-20)
(1.04519 0.240471 -1.69033e-20)
(0.0269091 -0.1065 -2.45547e-20)
(0.960102 0.0947169 2.71416e-20)
(1.02919 0.136735 -2.43251e-20)
(0.841183 0.316463 1.93809e-20)
(0.623783 -0.0329212 5.42159e-22)
(0.212851 0.0653624 -1.23747e-20)
(0.958316 -0.25336 -3.1882e-21)
(1.06487 0.153042 4.73027e-21)
(0.178014 -0.0201387 -2.85543e-20)
(0.938515 -0.373094 -1.17357e-20)
(0.775072 0.173171 -1.75951e-20)
(0.408893 0.00108521 -6.99314e-21)
(0.940374 -0.00418572 6.65952e-22)
(0.115169 0.0247393 -9.42329e-23)
(0.975892 0.264672 -1.73e-20)
(1.38868 -0.119634 1.09334e-21)
(0.162725 -0.00247647 -1.1849e-20)
(0.127666 -0.000353545 -1.83843e-20)
(1.02918 -0.639434 9.43555e-21)
(0.796638 0.170449 -5.97406e-21)
(0.971745 0.000203662 5.63042e-20)
(0.806568 0.298125 4.1331e-20)
(1.28003 -0.207767 7.29711e-21)
(0.830177 0.180272 2.34562e-22)
(1.18397 0.181158 1.07371e-20)
(0.88033 -0.00297222 -1.26576e-20)
(1.22751 0.185659 -2.23658e-21)
(1.29257 -0.331724 -1.92621e-20)
(0.943815 -0.197188 -2.69315e-22)
(0.766033 0.24888 5.00497e-21)
(0.679166 -0.000215211 -5.01285e-21)
(0.0888575 0.0192918 1.58155e-21)
(0.809645 0.170219 1.68443e-20)
(0.789353 -0.275754 -4.28979e-21)
(0.988384 0.0959224 -1.38717e-20)
(1.04989 0.212133 -2.2815e-20)
(0.266415 0.0820057 -8.0934e-21)
(0.170717 0.0377394 -9.35006e-23)
(0.49656 -0.636393 -3.19217e-20)
(1.06707 0.223801 -4.68718e-20)
(0.942001 0.000561805 -1.16142e-20)
(0.920996 -0.00121047 -2.19171e-20)
(0.637788 -0.0548884 1.06003e-21)
(0.274959 0.059921 -6.85215e-21)
(1.39133 0.00635607 -2.5226e-21)
(1.001 0.209217 2.3662e-21)
(1.19039 0.168781 6.54468e-21)
(0.375218 0.0772183 -1.07652e-21)
(1.26759 0.140877 1.60243e-20)
(1.03523 0.207245 -2.49496e-20)
(0.927541 -0.000259956 -1.51329e-20)
(1.24577 0.146733 -1.35794e-20)
(0.849465 0.162941 -4.58716e-21)
(0.926883 0.0837667 -3.83711e-20)
(0.947688 -0.00169721 -1.931e-20)
(0.974193 0.208267 7.16112e-21)
(0.918212 -0.0435245 -3.3219e-22)
(0.0114998 -0.06865 1.90091e-20)
(0.74772 0.0011003 1.67882e-20)
(0.351864 0.0754139 -3.33035e-21)
(0.318913 0.00173356 5.11418e-21)
(0.536049 0.119119 -2.27032e-21)
(0.123065 0.0263602 3.1685e-21)
(0.20431 -0.00128535 -1.38278e-20)
(1.21896 0.199871 1.14306e-20)
(0.709903 -0.231933 -5.14982e-21)
(0.00255606 -0.0809363 5.05255e-21)
(1.02723 0.212717 -4.66668e-21)
(0.531525 0.122108 -6.79836e-21)
(1.28895 -0.194716 -8.453e-21)
(0.354743 -0.426388 -5.32816e-21)
(1.25654 0.0154899 8.21363e-21)
(0.411738 0.0896183 3.61299e-22)
(1.3986 -0.269571 -9.23661e-22)
(0.570824 0.151709 1.16147e-20)
(0.14934 -0.00182846 9.95843e-21)
(1.16036 0.168128 -1.25033e-20)
(0.518368 0.113486 -1.03365e-20)
(0.998342 -0.335715 5.79706e-21)
(0.319209 0.0686609 4.61678e-21)
(0.786427 0.241876 1.90421e-20)
(0.857231 0.179759 -7.751e-21)
(0.442981 0.0952874 1.77665e-21)
(0.487029 0.0949639 -1.76637e-21)
(0.912925 -0.000289338 1.88036e-20)
(0.845601 0.178954 -3.14744e-21)
(1.13999 0.128014 2.4959e-20)
(0.160921 0.000176348 -2.75585e-21)
(0.835602 -0.25773 -2.07981e-21)
(0.412461 0.0874479 5.15063e-22)
(0.891759 0.212182 -1.32012e-21)
(0.247294 0.00291645 3.12697e-21)
(0.119535 0.0256574 4.79064e-21)
(0.871943 0.128863 -1.68052e-20)
(0.320091 -0.000530696 -2.2654e-21)
(0.653261 -0.371023 -3.0861e-21)
(0.978473 0.286044 -2.12473e-20)
(0.137598 0.0310479 -7.84963e-22)
(0.387337 -0.000964397 -1.96853e-20)
(1.14226 0.127702 3.28442e-21)
(0.074961 -0.296017 2.78889e-20)
(0.835982 -0.195445 -1.12257e-21)
(1.25333 0.139208 -5.44455e-21)
(0.14536 0.0400729 -7.35121e-21)
(0.886468 0.000755202 -2.48277e-20)
(1.31266 0.165193 6.46719e-21)
(1.28024 0.0799944 -5.40233e-22)
(1.17106 0.170536 -1.76383e-20)
(0.713037 0.157694 1.69782e-20)
(0.000185107 -0.0329623 -1.55715e-20)
(1.16549 -0.437296 -2.69078e-20)
(0.59475 0.270934 -3.89706e-21)
(0.531076 0.140963 -1.38224e-20)
(1.22805 0.197216 -1.3496e-21)
(0.359916 0.0762912 3.19286e-21)
(1.26197 0.0137117 -1.46939e-20)
(0.425648 -0.268869 -3.49005e-21)
(0.67266 0.00086509 2.66645e-21)
(1.14309 0.213133 2.34007e-21)
(0.328781 0.0722912 -6.70029e-21)
(1.02088 0.205129 -5.03148e-20)
(0.495186 0.00243581 1.25872e-21)
(0.796334 -0.0279012 7.23659e-21)
(0.895837 0.194548 -3.56244e-21)
(0.924615 0.00434738 4.99286e-21)
(0.848637 0.313008 -1.79451e-20)
(0.659946 0.119149 -3.82686e-20)
(0.979029 0.152883 -2.17816e-20)
(0.937595 0.259164 4.5705e-21)
(0.744839 -0.0592622 -1.31644e-21)
(0.429237 0.100342 -3.56855e-21)
(1.17114 0.174176 -1.01233e-20)
(0.195951 0.0457444 -2.69907e-21)
(0.128681 0.000242319 -1.59125e-20)
(0.25406 -0.0929394 5.29766e-20)
(1.28697 -0.18386 5.99712e-21)
(0.754326 -0.0563652 -4.99429e-21)
(0.451447 0.102278 -1.29328e-21)
(0.95278 0.118892 -1.75214e-20)
(0.559718 0.122712 -2.66751e-21)
(0.945457 -0.00629826 -1.00067e-22)
(0.376916 0.0818443 3.85778e-21)
(1.08486 0.152385 3.37881e-20)
(0.102265 0.022607 -5.77861e-21)
(1.16774 0.168475 2.69406e-20)
(0.350608 0.0757582 1.34127e-21)
(0.140486 0.0325492 -1.0955e-20)
(1.00449 -0.423531 1.26134e-20)
(0.423929 0.093789 7.81265e-21)
(0.525539 -0.0497052 -2.65388e-20)
(0.0259769 -0.135276 -2.50828e-22)
(0.588322 0.0860108 -3.89551e-22)
(1.0727 0.124792 -2.86664e-21)
(1.17158 0.161909 6.38498e-21)
(0.112772 0.024806 -3.62118e-21)
(0.210098 0.0474761 -3.42737e-21)
(0.439053 0.101562 1.31582e-20)
(1.46334 -0.116406 -4.70937e-21)
(0.288898 0.0622368 -4.99064e-21)
(0.932463 0.00259672 -4.41639e-20)
(0.975235 -0.00112563 -1.72153e-21)
(0.139356 0.0301043 1.30254e-21)
(0.362797 0.0589428 6.65773e-22)
(0.990307 0.0873129 -4.49875e-20)
(0.851828 0.239483 1.21587e-20)
(0.825639 0.246688 -3.39266e-20)
(0.134491 0.0308334 6.11121e-21)
(0.141086 -0.00881886 4.95293e-20)
(0.0407161 -0.180363 1.66488e-20)
(0.663513 0.134066 -3.98336e-21)
(0.0936206 0.0203333 1.53721e-21)
(0.915093 0.00154072 -2.74296e-20)
(0.361911 -0.210228 8.82879e-21)
(1.15063 -0.171259 -3.08145e-21)
(0.237688 0.00171698 1.03056e-21)
(0.15238 -0.000959707 -1.76982e-21)
(1.24585 -0.346582 7.29676e-21)
(0.101648 -0.333268 1.57199e-20)
(0.839379 -0.170586 2.40209e-21)
(0.239303 0.000472542 -9.39957e-22)
(1.072 -0.161375 -1.6816e-21)
(1.35636 -0.247442 5.87804e-21)
(0.885168 0.243869 9.80213e-21)
(0.967277 -0.00109992 -1.05034e-20)
(1.33073 0.14492 4.01343e-22)
(0.573197 0.131745 2.10064e-20)
(0.11527 0.0259833 4.4989e-21)
(1.06422 0.124166 1.06185e-20)
(0.709164 0.0350984 -6.10307e-21)
(0.130531 0.0302953 -4.75886e-21)
(0.764906 -0.0256971 -1.36381e-20)
(0.327362 0.0241121 -1.35561e-20)
(0.728911 0.157171 -3.40479e-21)
(0.701067 0.139451 -5.4061e-21)
(0.926224 -0.000197061 -1.59924e-20)
(0.718293 -0.00261812 -2.25926e-20)
(0.220597 -0.000406694 3.47295e-21)
(0.97306 0.260917 -1.83834e-20)
(0.111704 0.0270387 -3.05464e-21)
(1.04162 0.196399 -1.85451e-21)
(0.289321 0.0601741 1.59481e-21)
(1.04015 0.191501 -6.17362e-22)
(0.245559 -0.00271235 -2.01166e-22)
(1.34778 -0.32894 -1.22525e-20)
(1.18404 0.20401 2.51923e-20)
(0.854456 -0.0556323 -1.28429e-20)
(1.05141 -0.622594 -1.46987e-20)
(0.402586 0.0888661 -2.66121e-21)
(0.124782 0.0292801 -4.32548e-22)
(1.35898 0.102049 -4.82384e-21)
(1.08406 0.203359 -9.69115e-21)
(0.328511 0.00114301 -3.15486e-21)
(0.411203 0.0861508 5.20787e-22)
(1.17526 0.168019 -1.117e-20)
(0.412025 -0.118257 -1.16882e-20)
(0.429635 0.0852075 -2.63694e-21)
(0.661421 0.107374 7.88941e-20)
(0.956178 -0.00343775 -1.04728e-21)
(0.410851 -0.504018 -3.78961e-21)
(0.175588 0.00147839 -2.9067e-21)
(1.07068 0.221218 -1.67002e-20)
(1.08025 0.221325 2.4639e-20)
(0.802331 0.0407108 -2.8802e-21)
(0.461667 0.112641 -8.4689e-21)
(0.720166 0.328821 -7.67423e-20)
(0.722942 0.000844515 -9.40442e-22)
(1.24599 0.0463908 -1.30405e-20)
(1.11863 0.215747 -8.36079e-21)
(0.849469 -0.579731 -8.40286e-22)
(0.972749 -1.8672e-05 1.41784e-20)
(0.629327 -0.640147 -1.07233e-21)
(1.0696 -0.176983 -3.35888e-22)
(0.993325 -0.0867772 -3.27655e-22)
(1.20237 -0.463451 7.1724e-22)
(1.1148 0.206109 3.83788e-21)
(1.03404 0.190662 1.69604e-21)
(0.832743 0.167742 3.34588e-21)
(0.909285 -0.166713 1.59168e-20)
(0.934943 0.00417173 6.83333e-20)
(1.0466 0.203657 1.42511e-21)
(0.525925 0.0670329 1.77381e-21)
(0.97886 -0.0474299 -1.03576e-21)
(0.930825 -0.00540144 7.80845e-21)
(0.970581 -0.00168225 -3.5806e-21)
(0.0513711 0.0138752 -1.36688e-20)
(1.02154 -0.236261 5.76599e-21)
(0.369278 -0.0389311 -2.10439e-20)
(0.986921 0.105229 -8.08814e-21)
(0.721969 0.000387037 -9.03735e-22)
(0.903229 0.103048 8.68627e-20)
(0.357559 0.0787867 -1.42818e-20)
(0.894138 0.165423 -1.18004e-21)
(1.09511 0.127579 3.22203e-21)
(0.738554 0.143377 2.08792e-21)
(0.298837 0.0492671 -8.59777e-22)
(0.219012 0.0548727 -8.3304e-21)
(0.356264 0.000214401 7.54777e-21)
(1.18216 0.205641 -1.92429e-20)
(0.832509 -0.00962032 4.43011e-21)
(0.843827 -0.326076 -6.88517e-21)
(1.09169 0.217804 -3.75893e-21)
(1.06286 0.214664 2.47805e-20)
(0.29907 0.0641933 -5.17695e-21)
(0.194566 0.0442149 8.33938e-21)
(0.40557 -0.272817 -1.40139e-20)
(0.28379 0.0269064 -4.50476e-20)
(0.366582 0.000119653 -2.20142e-22)
(1.18811 0.178355 -7.28945e-21)
(0.128365 -0.0018594 2.37015e-21)
(1.01835 0.203677 4.97172e-20)
(0.807999 -0.0172215 1.39319e-20)
(0.239958 0.0534481 -2.39472e-21)
(0.924571 -0.000628957 -1.5051e-21)
(0.843489 0.177906 1.61679e-20)
(1.19518 0.1343 -2.89052e-20)
(0.488669 0.100462 2.59282e-21)
(0.272424 0.0606784 -2.95569e-21)
(1.28803 0.125382 -8.30644e-21)
(0.940484 0.00247725 1.35212e-19)
(0.0101943 -0.126143 -2.05673e-20)
(0.383651 0.000988653 2.28054e-20)
(0.358521 0.000560802 -6.72478e-21)
(0.828584 0.226723 -5.70119e-20)
(0.728231 0.097006 3.28832e-20)
(1.29627 0.173345 3.97855e-21)
(0.740878 0.148438 3.67154e-21)
(0.906641 0.0107732 5.02671e-20)
(0.691437 -0.00209867 2.28371e-20)
(0.942195 -0.000110593 3.31084e-21)
(0.942505 0.000189612 3.31902e-20)
(1.11741 -0.277965 -1.02539e-21)
(0.0404942 -0.172441 -1.39322e-20)
(0.881633 0.00157728 1.99241e-20)
(1.09728 0.214738 6.27146e-21)
(0.768043 -0.318084 -1.18293e-20)
(0.979118 -0.0483957 -1.51453e-22)
(0.496818 0.00517134 -2.01033e-20)
(0.400057 -0.000279707 -7.39465e-21)
(0.762142 0.23743 -1.49362e-20)
(0.283329 0.0620391 -1.05269e-20)
(0.702787 -0.0526646 5.01212e-21)
(1.09504 -0.168031 2.76406e-21)
(1.16487 0.175944 -2.07809e-21)
(1.0856 0.220723 -3.02544e-20)
(0.78772 0.0780868 1.15872e-20)
(0.999864 0.127056 -6.68438e-21)
(0.900804 -0.055894 -6.41706e-21)
(1.40764 0.0880272 2.10263e-22)
(0.727418 0.162156 -1.70787e-20)
(0.238584 0.0506399 1.18722e-21)
(1.30596 -0.275037 1.90135e-21)
(1.02726 0.108799 9.09599e-21)
(0.803799 0.155928 -8.83774e-21)
(0.841716 0.18612 5.78425e-22)
(0.423603 0.0149785 4.18183e-21)
(0.00416282 -0.0902845 1.27173e-20)
(0.951167 -0.00226444 1.23307e-21)
(0.711881 -0.375317 3.53503e-21)
(0.073227 -0.294361 -2.74291e-20)
(0.968239 -0.0409111 1.84494e-21)
(0.142661 0.000345155 4.56862e-21)
(0.848325 -0.170423 -9.28189e-21)
(0.833666 -0.35768 1.38174e-20)
(0.31038 -0.0796806 -2.11329e-20)
(0.460178 -0.000491028 -1.83836e-20)
(0.421564 -0.000910374 2.48036e-20)
(1.08647 0.212805 1.14631e-20)
(0.966741 -0.000992669 2.87347e-20)
(0.426129 0.0886657 1.74064e-21)
(0.890548 0.199069 1.57129e-20)
(0.870586 0.184983 4.57653e-21)
(0.983327 -0.0506111 -9.36947e-22)
(0.748612 0.0016426 2.07206e-20)
(0.84907 0.11705 4.35126e-20)
(0.836023 0.155985 2.01388e-22)
(0.146303 0.0308641 -9.28332e-22)
(1.08649 0.221857 8.14665e-21)
(0.405618 0.0878952 4.66453e-21)
(0.901999 -0.0532121 9.2756e-21)
(0.517507 0.197037 1.9438e-20)
(1.07747 -0.649891 1.96554e-21)
(1.1239 0.171191 1.95741e-20)
(0.00397091 -0.0767609 -1.3379e-20)
(0.080606 0.0183225 8.78748e-21)
(0.757019 0.203278 -1.68273e-20)
(0.853862 0.195155 -1.38574e-20)
(1.0935 -0.175161 3.17764e-21)
(0.924211 0.000478817 -2.47171e-20)
(0.11849 -0.000897545 2.55958e-21)
(1.37278 0.0241481 -1.58559e-21)
(0.987575 -0.0516454 -1.40605e-21)
(0.360483 0.0755951 4.19218e-21)
(0.387942 0.000606026 2.79779e-21)
(1.31628 0.100089 -9.80074e-21)
(0.00618747 -0.0714355 1.2404e-20)
(0.152307 0.0342434 3.13304e-21)
(0.595533 0.188665 3.08603e-20)
(0.506298 0.000616068 -1.55152e-20)
(1.02975 -0.155133 -2.75736e-21)
(0.772458 0.00193269 -1.61651e-20)
(0.907582 -0.307948 -1.96203e-20)
(0.863705 0.000880824 3.94279e-20)
(0.951395 -0.00856875 -1.02174e-21)
(0.309304 0.0680567 9.22228e-22)
(0.943876 0.000865734 -4.12425e-21)
(0.427997 -0.0721706 -1.45738e-20)
(0.728809 0.269437 -1.49514e-20)
(0.417503 0.00151492 4.19528e-21)
(0.391569 0.000447682 1.82365e-20)
(8.28338e-05 -0.0550618 4.21955e-21)
(0.401897 0.000380629 -5.19549e-22)
(0.267496 -0.498626 -2.26707e-20)
(0.0289584 -0.176683 -2.42054e-20)
(0.393698 0.000557375 -3.55972e-21)
(0.842068 -0.0471423 6.54002e-22)
(0.913956 -0.178307 6.96106e-21)
(0.903587 0.0694248 -3.79333e-20)
(0.968727 -0.041917 -2.62777e-21)
(1.49103 -0.109014 1.04954e-20)
(0.961401 -0.00175947 4.35281e-21)
(0.496399 0.108685 7.316e-21)
(0.534031 0.300141 -2.56504e-20)
(0.480637 0.093489 -3.84698e-23)
(0.852387 0.0643387 8.84128e-20)
(1.09514 0.130478 -4.09431e-20)
(1.34153 -0.238103 2.66497e-21)
(0.939146 0.00101458 1.61551e-20)
(0.940312 -0.135842 6.37747e-21)
(0.200791 -0.452252 1.65533e-20)
(0.165868 0.0390401 -3.48904e-22)
(0.796987 0.23878 -7.7988e-21)
(1.03302 0.207181 -1.58187e-20)
(0.751014 0.0862736 -8.19823e-21)
(0.948447 0.267462 3.82376e-20)
(0.243214 0.0546158 2.76361e-21)
(0.973332 0.000103298 5.62552e-21)
(0.900581 0.00692233 -4.70518e-21)
(0.10822 -0.0772034 1.71706e-20)
(0.822517 -0.0503563 -2.96226e-21)
(0.74152 0.235523 1.53224e-20)
(0.157406 0.00186148 2.20469e-21)
(1.0645 0.206285 1.77207e-21)
(0.807856 0.0967397 6.49533e-21)
(1.0938 0.158385 -4.65302e-20)
(0.808104 0.00114635 2.34789e-20)
(0.687894 0.151567 -2.86584e-20)
(0.870317 -0.0967056 7.26546e-21)
(0.462116 0.101298 3.09599e-21)
(0.365231 0.0733536 -1.03918e-21)
(0.521825 0.11108 -1.18678e-20)
(0.840996 0.169564 -4.14194e-21)
(0.0569264 -0.218036 -9.86939e-21)
(0.834762 -0.0456395 -3.77915e-21)
(0.705596 0.169637 2.77453e-21)
(1.23679 0.194307 -4.17107e-21)
(0.399848 0.0862741 4.24845e-21)
(0.967079 0.00168067 3.46697e-20)
(0.919337 -0.0314826 2.03539e-21)
(0.98231 -0.0511474 1.54938e-21)
(1.40365 0.0808891 5.15174e-22)
(1.11767 0.147447 -9.08601e-22)
(0.18805 0.0414114 -1.24342e-20)
(0.654452 -0.272074 -1.02217e-20)
(0.697628 -0.00048169 3.45315e-21)
(0.369914 0.0720037 2.88139e-22)
(0.74495 0.156091 -5.73787e-21)
(0.91387 0.182313 6.41411e-20)
(0.116248 0.0241142 3.99384e-21)
(0.255338 0.0239884 7.26612e-21)
(0.438675 0.0910053 4.19472e-21)
(0.452376 0.0983016 1.29494e-20)
(0.00849527 -0.114933 3.56069e-20)
(1.08494 0.0595663 1.41494e-21)
(0.481146 -0.127154 1.62564e-20)
(0.350933 0.0755513 1.20338e-21)
(0.695477 0.151826 9.6911e-21)
(0.921111 -0.000452562 -1.80325e-20)
(1.18337 0.203279 -7.13918e-21)
(0.521557 0.00251157 8.0964e-21)
(0.86689 -0.00508541 2.40853e-20)
(0.551767 -0.173957 -8.15424e-21)
(0.963388 -0.200094 2.43e-21)
(0.94993 -0.191796 3.93434e-21)
(0.485678 0.000583718 1.78399e-22)
(1.19323 -0.45302 6.70017e-21)
(0.863942 -0.369861 8.60635e-21)
(0.889067 -0.672896 1.7122e-20)
(0.593487 -0.0366224 -2.50034e-22)
(1.21613 -0.144324 3.84841e-22)
(0.502823 -0.000948869 1.7853e-20)
(1.19878 -0.567112 -1.72271e-20)
(0.443168 0.223212 -4.94764e-21)
(0.850085 -0.242408 -1.97753e-20)
(0.45818 0.0996565 1.90337e-20)
(0.935519 0.00231485 -2.68449e-20)
(0.924464 0.154452 5.755e-21)
(0.806278 0.16415 1.28496e-20)
(1.22322 0.18762 -2.56739e-21)
(0.859572 0.150431 -3.67868e-21)
(1.21152 0.153632 2.6897e-20)
(1.19172 0.194221 -3.05596e-20)
(0.955176 0.12242 2.20988e-20)
(0.200385 0.0428329 1.79997e-21)
(1.18806 0.206481 5.63731e-21)
(0.860793 -0.239323 9.55674e-21)
(0.66992 0.160953 1.50613e-20)
(0.344155 0.0773372 1.06692e-20)
(1.33586 0.153428 2.46696e-21)
(0.875901 0.207347 -5.37587e-21)
(0.745606 0.154407 1.67e-21)
(0.195704 -0.000779895 5.77133e-21)
(0.99111 -0.0746482 -1.17572e-22)
(0.739735 -0.0227216 2.8632e-21)
(1.01482 0.224402 -1.36961e-20)
(0.9484 0.00105217 -1.16191e-20)
(0.996214 -0.439396 -1.81967e-20)
(0.734819 -0.00174649 -1.01933e-21)
(0.877014 0.0109399 6.35624e-20)
(1.28323 0.144192 -6.1831e-22)
(0.886274 0.192005 9.97235e-21)
(0.597894 0.230635 -3.82953e-21)
(1.16686 -0.569581 -2.55066e-21)
(0.399699 -0.0341627 7.77991e-21)
(0.777926 0.0886499 6.55449e-20)
(0.923023 -0.000998999 2.87701e-21)
(0.865786 0.0157737 4.79017e-20)
(0.935819 2.87808e-05 8.36196e-21)
(0.0599235 0.0108889 6.19517e-21)
(0.231792 0.00152966 -9.49076e-22)
(0.924935 -0.000534034 -1.83069e-20)
(0.392532 0.00216586 1.17542e-21)
(0.943384 0.151289 1.3727e-20)
(1.23489 0.147773 -2.79239e-20)
(0.930964 -0.196038 1.56499e-20)
(1.02525 -0.655904 -1.1434e-20)
(0.204292 0.0457191 -2.9732e-21)
(0.278359 -0.000200287 -3.09313e-21)
(0.891317 -0.000314406 -2.71353e-20)
(0.754905 0.0288756 3.61742e-20)
(0.231226 0.0572937 -1.08076e-20)
(0.532148 -0.162816 1.46233e-21)
(1.02471 -0.227081 -1.17872e-20)
(0.622112 -0.603837 -8.63375e-21)
(1.2501 0.0125528 -8.07393e-21)
(0.388506 0.209134 5.02619e-20)
(1.04781 0.207552 -8.22268e-21)
(1.14347 0.173716 -1.87573e-20)
(0.731703 0.0628317 5.37722e-20)
(0.0159863 -0.151906 -7.43602e-22)
(1.1569 0.116087 -6.5276e-21)
(0.25485 -5.99326e-05 -6.55557e-21)
(1.08442 0.220727 -2.40147e-20)
(0.949609 0.00185571 2.55935e-22)
(1.20739 -0.567218 -1.53045e-20)
(0.949977 -0.0161681 -5.52492e-25)
(1.03591 0.16534 -1.60132e-20)
(0.0957789 0.0220209 -7.3398e-22)
(0.81242 0.00866315 -2.55876e-20)
(0.224217 -0.476312 -3.91018e-20)
(0.339693 -0.00275393 2.43231e-20)
(1.07177 0.215637 -2.9194e-20)
(1.06468 0.177863 -1.84415e-20)
(0.946738 -0.00205401 4.26745e-20)
(1.1485 0.207414 -7.7034e-21)
(0.902374 0.000715648 -1.67877e-21)
(1.11703 0.213651 -5.93838e-21)
(0.341613 0.0760647 1.55379e-21)
(0.401599 -0.236278 3.29826e-21)
(0.947579 -0.00110805 7.16599e-21)
(0.838324 0.179008 -9.14824e-21)
(0.696647 0.172722 1.13947e-20)
(0.972407 -0.000468393 8.17443e-20)
(0.385164 0.0884388 3.76509e-21)
(0.808916 -0.261385 -1.63093e-20)
(0.805948 0.000591394 -6.12135e-21)
(0.930525 0.273303 5.60729e-21)
(1.26889 -0.0575146 7.04129e-21)
(0.625519 0.249731 5.11405e-20)
(0.780911 0.00125476 -1.53914e-20)
(1.11785 0.12442 -1.81099e-21)
(0.921989 -0.0080909 1.96296e-21)
(0.08337 -0.307471 -2.11922e-20)
(0.820588 0.0204197 -1.95543e-20)
(0.294971 0.0590187 -1.15606e-21)
(1.28119 0.124085 7.37369e-21)
(0.903902 0.0653938 -2.53757e-21)
(0.940975 -0.0176395 -3.28429e-21)
(0.868073 0.175686 2.5341e-20)
(0.928936 -0.256147 1.56107e-20)
(1.2466 0.142383 2.05023e-21)
(0.967921 -0.000193069 -3.19059e-21)
(1.07328 0.147509 -2.64777e-21)
(0.874488 -0.688898 8.51556e-21)
(0.192576 0.0454839 -1.21003e-21)
(1.09946 0.197785 -2.13562e-21)
(0.892886 -0.682651 4.32489e-21)
(0.754338 0.149711 4.70412e-21)
(0.860021 0.286116 -3.46415e-20)
(0.848895 -0.692106 -9.62625e-21)
(0.797703 0.111167 -2.98669e-20)
(0.894368 0.189078 -5.49317e-21)
(0.95973 0.12195 -4.49694e-20)
(0.79844 0.178006 -3.4499e-21)
(0.990497 -0.0569752 -2.02707e-21)
(1.22266 0.0696249 1.38223e-20)
(0.924255 -0.000316108 3.29591e-21)
(0.941057 -0.0727817 3.34101e-21)
(0.491845 0.0940919 4.47041e-22)
(1.27885 0.14768 9.45527e-21)
(0.623198 -0.442205 3.39389e-21)
(1.35843 -0.242545 -7.71017e-21)
(0.502625 0.12067 -1.47034e-20)
(0.145989 0.0309716 -5.15723e-23)
(0.808841 0.172678 6.56322e-21)
(0.307515 -0.0502171 -9.19049e-21)
(1.14363 0.16995 3.91461e-21)
(0.192125 0.0424361 -9.87968e-21)
(0.211131 -0.00114962 2.97358e-21)
(0.806799 0.319917 6.99814e-22)
(0.331361 0.00172558 -4.98051e-21)
(0.830444 -0.0518172 -3.67268e-21)
(1.09173 0.15803 1.12957e-20)
(1.36438 0.034818 3.91875e-22)
(1.10135 0.203772 1.05669e-20)
(0.9747 -0.00112556 6.26871e-22)
(1.26045 0.189343 5.59564e-21)
(0.00985388 -0.135492 -8.54037e-21)
(0.200134 -0.00107061 -6.96005e-22)
(0.296484 0.0613098 2.20403e-22)
(0.942368 -0.000228384 -2.86289e-21)
(0.467208 0.10856 1.7637e-21)
(0.959406 0.241208 -6.94269e-20)
(0.687527 -0.0361775 -1.0765e-20)
(0.259508 0.0578975 2.65661e-21)
(0.00419468 -0.107143 -6.96818e-21)
(0.266383 -0.486029 7.41927e-21)
(0.205609 -0.000116612 1.27075e-21)
(0.438116 0.0992967 1.18471e-20)
(0.000450812 -0.0689326 -9.10629e-21)
(1.20243 0.203361 5.13953e-21)
(1.13184 -0.282226 1.00163e-20)
(0.410907 -0.331398 -4.14993e-20)
(0.367186 0.0607326 7.91468e-23)
(0.935688 0.151971 -9.71624e-22)
(0.885047 0.126555 -2.06526e-20)
(0.434829 0.0840182 -6.70151e-22)
(0.820243 0.172741 -1.19421e-20)
(1.43584 0.0365714 -2.82371e-21)
(0.473609 0.097643 -3.99976e-20)
(0.803929 0.106563 -4.72319e-20)
(0.892824 -0.00123445 5.29634e-22)
(0.882735 0.188642 -5.32894e-21)
(0.786783 -0.34735 -2.09012e-21)
(0.202709 0.00229441 1.01424e-20)
(0.986865 -0.0655153 2.02384e-21)
(0.374552 0.0807324 1.09914e-20)
(1.10403 -0.593651 5.86887e-21)
(1.35079 0.0548986 -1.16486e-21)
(0.0796712 0.018091 4.5741e-21)
(0.936108 -0.133161 2.43004e-21)
(0.535109 -0.390724 1.58959e-20)
(0.828564 0.165263 7.23672e-21)
(0.924353 0.133155 1.29935e-20)
(0.830641 0.184321 4.31858e-21)
(0.268293 0.0601748 -1.63282e-21)
(1.15324 0.114981 -6.95762e-21)
(0.358717 0.000757562 1.07474e-20)
(0.854618 -0.687635 1.24447e-20)
(0.0235417 -0.123507 -1.35993e-20)
(1.20402 -0.476671 3.35771e-20)
(0.76059 -0.0178171 1.35398e-20)
(1.16043 0.112494 2.22845e-20)
(0.945051 -0.143955 -6.55441e-21)
(0.406663 0.0914043 -7.35673e-21)
(1.05597 0.212272 3.15767e-21)
(1.08766 -0.0173535 -1.65471e-21)
(0.906602 0.184251 -3.37637e-20)
(0.857945 -0.025283 1.23479e-20)
(0.463358 -0.472844 1.52955e-20)
(1.40871 0.0897441 -4.04051e-22)
(0.586106 0.134962 -2.57207e-21)
(0.650595 0.145806 -4.33253e-21)
(1.08732 -0.611762 7.59934e-21)
(0.478631 0.0971351 -1.13453e-21)
(1.35719 0.0940457 2.53227e-21)
(0.226933 0.000717409 -5.26667e-21)
(0.202736 0.041849 1.25072e-21)
(0.956493 -0.0468605 4.53127e-22)
(0.872047 0.185232 -1.47103e-21)
(0.921334 0.138249 3.22153e-20)
(1.10081 0.173472 2.3461e-20)
(0.955346 -0.00133217 -5.36113e-21)
(1.39404 -0.103846 -2.07929e-21)
(0.972879 0.00234506 6.47023e-20)
(1.3356 0.0838089 -3.39126e-21)
(0.990923 -0.323158 1.38638e-20)
(1.38149 -0.155865 -5.3112e-21)
(1.22452 0.149295 5.74488e-21)
(0.989728 -0.067093 -8.41694e-22)
(0.227617 0.0498096 -5.53929e-22)
(0.413088 0.0904838 4.66292e-21)
(0.369547 0.0022408 -1.95536e-21)
(0.130529 0.031903 4.04268e-21)
(0.848924 0.177256 8.37128e-21)
(1.15803 0.181638 2.25228e-20)
(0.189901 0.0422919 1.35954e-21)
(1.23979 -0.329526 -1.17928e-21)
(0.85233 -0.163008 3.95445e-22)
(1.21025 -0.13709 2.98186e-22)
(1.25695 0.0854142 -1.34074e-20)
(0.880301 0.161591 -3.15769e-21)
(0.975558 0.155466 -7.07922e-21)
(1.09385 0.221629 -5.0112e-21)
(1.10169 0.200671 -5.21913e-20)
(0.108921 0.00176328 2.13036e-21)
(0.142841 0.031309 -1.17166e-21)
(0.888282 -0.00327115 -8.08937e-21)
(0.856426 -0.037776 -8.98587e-21)
(0.50192 0.114865 2.78241e-21)
(0.376571 0.00103019 -6.26937e-22)
(0.800104 0.0385424 -6.08273e-20)
(0.883704 0.170337 6.25684e-20)
(0.667227 -0.215674 6.55307e-21)
(0.813572 0.0874126 2.67145e-21)
(1.06385 0.157366 2.33509e-20)
(0.849789 0.270234 -2.15664e-20)
(0.366547 0.103872 -1.09356e-20)
(0.371984 0.0734644 2.05346e-21)
(0.60276 -0.0379852 -8.93311e-21)
(0.300754 0.0668904 6.23879e-22)
(1.06293 0.171598 -2.1547e-20)
(0.351118 0.0722296 4.48986e-21)
(0.622715 0.267412 -3.44325e-21)
(0.430937 0.0952787 -3.43028e-21)
(0.331415 0.00116284 -1.56418e-20)
(0.3458 0.00184319 3.76885e-21)
(0.479142 -0.0138935 5.98136e-20)
(0.870405 0.203214 -2.82893e-20)
(0.993413 -0.0958712 -1.05376e-21)
(0.679414 0.0410077 4.19222e-20)
(1.14862 0.184823 1.72375e-20)
(0.532809 0.0417945 4.05723e-20)
(0.204944 -0.00247752 -2.76184e-21)
(0.436883 0.0820106 2.81371e-22)
(1.19686 -0.392273 -9.76311e-21)
(0.274177 0.00118146 1.25643e-20)
(1.06576 -0.649989 -1.70247e-20)
(0.748888 0.0021423 -3.21493e-20)
(0.974385 0.000462576 -1.25272e-20)
(0.970287 -0.000969992 -1.79247e-21)
(0.973968 0.000211331 -3.38754e-20)
(0.973318 6.04971e-05 -3.6745e-20)
(0.973289 0.000206593 -2.41454e-20)
(0.974627 0.000464172 3.16518e-20)
(0.976279 -0.000131791 -4.66742e-23)
(0.97301 -0.000163069 2.22452e-20)
(0.973629 0.000319338 4.62834e-21)
(0.974882 -0.000246109 1.43891e-20)
(0.974802 0.00017805 4.08254e-21)
(0.973519 -5.80659e-05 -3.06222e-20)
(0.976567 -3.71166e-05 -3.13222e-20)
(0.97315 -2.59375e-05 -2.30962e-21)
(0.975911 -0.00027741 4.83442e-20)
(0.974896 -0.00072874 -1.93799e-20)
(0.975107 0.000219842 7.30817e-21)
(0.97342 0.000130145 7.76511e-22)
(0.971917 0.00104654 -2.02725e-21)
(0.584688 0.306296 -2.51416e-20)
(0.974119 -0.000308161 -4.10559e-20)
(0.389684 0.0863137 -1.0578e-20)
(0.249761 0.0530556 5.0248e-23)
(0.535193 0.170293 -4.92622e-21)
(0.389267 0.00244332 -3.10548e-20)
(0.481385 -0.0354938 1.31762e-20)
(0.364041 0.00134545 -1.37137e-20)
(0.85982 0.0177378 3.57282e-21)
(0.587144 -0.213442 -1.31633e-20)
(0.846204 0.0652467 -1.19615e-19)
(0.787841 -0.0218911 -1.49119e-20)
(0.0819261 0.0183577 -6.2505e-22)
(0.954009 -0.0578069 1.95773e-21)
(0.800863 -0.0096632 -1.40452e-20)
(1.19572 -0.373522 4.66386e-21)
(1.10371 0.179219 3.34254e-20)
(0.934167 0.000833667 -4.88082e-20)
(0.757245 0.160376 -2.4782e-21)
(0.408663 0.0692444 -1.91672e-20)
(1.187 0.16083 9.34435e-21)
(0.831774 -0.270709 3.86767e-21)
(0.147412 0.00143446 5.88721e-21)
(0.83396 0.2606 2.49193e-20)
(0.958266 0.268156 2.61205e-21)
(1.19621 0.198676 6.0567e-21)
(0.300455 0.00085318 -1.07508e-21)
(0.594647 0.12268 -5.21401e-22)
(1.09879 -0.187953 1.72774e-21)
(0.91629 -0.00422524 -5.90682e-21)
(0.945098 0.000968579 -1.33889e-20)
(0.118598 -0.121446 5.38991e-21)
(0.628674 0.211976 -3.40055e-20)
(0.236464 -0.459811 4.85629e-21)
(0.832224 0.162321 -1.88044e-22)
(1.07061 0.231425 -6.00943e-21)
(0.708288 0.0122296 -1.1075e-21)
(0.987052 0.282114 2.84135e-20)
(0.311281 0.00292508 6.43746e-21)
(0.925424 -0.0757055 -2.91475e-21)
(0.992446 0.180924 2.11803e-20)
(0.776379 -0.303978 5.75499e-21)
(0.923878 0.000103907 -1.9344e-20)
(1.16474 0.204969 1.20945e-20)
(0.851071 0.176979 1.66626e-20)
(0.314513 0.00144192 -2.60962e-22)
(0.2991 0.0214844 -1.27039e-20)
(0.200964 0.00563369 -3.13156e-20)
(0.132778 -0.381552 3.93936e-20)
(0.563954 0.120053 3.92377e-20)
(0.432312 -0.24901 3.72371e-21)
(0.291613 0.00157225 1.34918e-21)
(0.135448 -0.367769 -1.33725e-20)
(1.2669 -0.551291 -4.98843e-21)
(0.326994 0.00267741 -2.82671e-20)
(0.305387 0.00188907 -1.25691e-20)
(0.425867 0.0945297 -7.75624e-22)
(0.237996 0.0526277 -3.62327e-21)
(0.609629 0.134194 1.92749e-20)
(0.673368 0.241984 -1.14402e-20)
(1.19385 0.190812 1.58693e-20)
(0.122447 0.0244342 8.03118e-22)
(0.440773 -0.000284514 -9.47181e-22)
(0.204997 0.0572647 -2.19132e-20)
(0.428336 -0.369569 -2.20737e-20)
(0.616964 -0.0837745 1.82931e-20)
(0.600174 -0.153953 -6.79812e-22)
(0.936842 -0.00611992 6.03232e-21)
(0.489946 0.00308221 -3.22681e-21)
(0.922291 -0.673712 2.22487e-20)
(1.09342 0.15109 -2.67482e-20)
(0.825024 -0.195612 5.74636e-21)
(0.793849 0.156598 -8.55036e-22)
(0.523072 0.169553 -9.63133e-21)
(0.215447 0.0482067 -7.25263e-22)
(0.422662 0.00311289 -1.02066e-21)
(1.18014 0.131827 2.61945e-21)
(1.44113 0.0436963 -5.34057e-21)
(1.26304 -0.45551 -6.03253e-21)
(0.396747 -0.464208 -1.85141e-20)
(0.389699 -0.335413 2.80977e-21)
(0.835015 -0.178466 1.20254e-20)
(0.99584 0.101228 -3.37291e-20)
(0.935523 0.0909785 3.50613e-20)
(0.591019 0.213332 -8.11245e-21)
(0.523483 -0.0210563 -5.82222e-21)
(0.0945303 0.0214168 -2.30757e-21)
(1.16394 0.134367 -2.51796e-20)
(1.25196 0.028172 1.95751e-21)
(1.23997 0.150227 1.99344e-20)
(0.698541 0.153115 2.27751e-20)
(0.522064 0.115014 -9.1011e-21)
(0.394181 0.00486579 -7.07214e-21)
(0.109369 0.0244888 1.16613e-20)
(0.914294 -0.0554824 -1.42864e-21)
(0.207898 0.0461178 -3.18577e-21)
(0.885895 0.232494 -7.46646e-21)
(0.475685 0.103446 -4.35365e-21)
(0.871521 0.192147 1.24114e-20)
(0.142984 -0.00018745 -3.2088e-20)
(0.866945 -0.0209649 2.1004e-21)
(0.176746 0.040181 -5.8526e-21)
(1.07283 0.211874 -6.25381e-22)
(0.448425 -0.383776 -4.49452e-22)
(0.316167 0.103649 -9.29727e-21)
(0.187971 0.0421451 8.09039e-21)
(0.127476 0.0279313 -2.00399e-21)
(1.1621 0.207246 -6.77859e-21)
(0.123733 -0.000221755 7.07128e-21)
(0.883955 0.184687 4.89399e-21)
(0.90032 0.251257 6.51077e-21)
(0.259591 0.00150807 1.77975e-20)
(0.531092 0.157153 -8.95581e-20)
(0.179453 0.00067676 4.76246e-21)
(1.36991 0.12858 8.97736e-22)
(0.58802 -0.0476219 -1.75065e-20)
(0.105821 -0.334429 1.07092e-20)
(0.242227 0.0535778 1.88439e-21)
(0.881404 0.20066 9.03874e-21)
(1.07775 0.214297 2.57981e-20)
(0.936876 0.000846461 2.74135e-20)
(0.341269 0.0738033 -1.66403e-21)
(1.46827 -0.0110154 -1.10244e-21)
(1.23623 -0.423589 -5.19112e-21)
(0.93145 0.197071 3.05012e-20)
(0.448247 -0.0406024 -1.53518e-20)
(1.39436 -0.351091 -8.59739e-21)
(1.01175 0.219893 -2.77253e-20)
(1.3854 -0.258367 1.42847e-20)
(0.527383 0.0452635 -1.87725e-20)
(0.371644 0.0785962 4.45247e-21)
(0.887145 0.000491207 2.10134e-20)
(0.549376 -0.0453913 -9.89811e-21)
(1.22921 0.151727 -5.07029e-21)
(0.871096 0.183536 -5.06964e-22)
(0.813384 -0.0138802 -1.36709e-20)
(0.848445 0.175468 6.49867e-21)
(0.415385 -0.288871 1.31637e-20)
(1.2225 0.197691 -1.09796e-20)
(0.945299 -0.0561025 8.54759e-22)
(1.13881 0.143165 2.2818e-20)
(0.391502 0.0238051 -7.72731e-21)
(0.730587 -0.00203851 2.47847e-21)
(0.54808 0.297368 9.21598e-21)
(0.423024 0.103607 1.80558e-21)
(0.406017 -0.37497 -3.18308e-20)
(0.993349 0.278288 6.0055e-21)
(1.1028 0.219061 2.78534e-20)
(0.402898 0.0883509 3.45748e-21)
(0.213529 -0.000105725 6.95298e-21)
(1.26959 0.109116 -1.43292e-21)
(0.60197 -0.13864 2.2433e-20)
(0.307413 0.0111454 -1.06709e-20)
(0.328283 0.0694417 2.37857e-21)
(0.977041 -0.0470076 1.13507e-21)
(0.384677 0.0850078 1.08455e-21)
(0.668979 0.0416112 1.16412e-20)
(1.12091 0.149108 -1.24502e-20)
(0.806674 0.270222 3.71887e-21)
(1.25968 -0.557235 3.30827e-21)
(0.895243 0.222386 2.17091e-20)
(0.277366 -0.0234703 6.44294e-20)
(0.949839 0.150566 2.4709e-20)
(0.937372 0.20117 -1.24137e-20)
(0.122693 0.0089453 1.54341e-21)
(0.257261 0.0536213 -9.79835e-22)
(0.309876 0.000815354 3.73913e-21)
(0.760029 -0.00567079 9.89353e-22)
(0.905241 -0.573015 9.66587e-21)
(0.96753 0.242371 -1.16862e-20)
(0.378663 0.00110912 -5.70825e-21)
(0.879707 0.131556 -3.47428e-20)
(1.20289 -0.24371 -1.73781e-21)
(0.269994 0.059552 -4.25618e-22)
(0.413076 0.000852276 8.58517e-21)
(0.757465 0.1362 -2.69261e-22)
(0.466772 0.121672 2.57367e-21)
(0.718889 -0.00442822 1.54028e-20)
(0.80249 0.158171 -1.89655e-21)
(0.358108 0.00243502 5.04082e-21)
(0.408586 0.00109598 1.14866e-20)
(0.253353 0.0536037 -4.26762e-22)
(0.349521 0.0739514 2.22777e-21)
(0.94386 0.000295358 -1.26888e-21)
(0.60789 -0.148931 -8.25189e-21)
(0.929073 -0.000602918 1.82464e-20)
(0.921142 0.000827174 -6.40573e-21)
(0.731587 0.241349 -1.78179e-20)
(1.12445 0.212732 -3.79627e-20)
(0.417229 0.00195852 7.84201e-21)
(0.498753 0.197756 -2.766e-20)
(1.22723 0.0572818 1.51059e-20)
(0.238841 -0.285219 7.38044e-22)
(0.849537 -0.0578577 4.32772e-21)
(0.809309 0.169675 7.76418e-21)
(1.1175 0.143745 -3.01251e-20)
(1.28312 0.180177 3.94537e-21)
(1.37632 -0.176547 -9.95263e-22)
(0.727662 0.00956237 -2.5401e-21)
(0.525928 -0.258787 -2.88254e-20)
(0.820893 0.000725014 -3.07862e-20)
(1.02395 0.201359 -1.1617e-21)
(0.36797 -0.000988786 -6.68518e-22)
(0.652986 0.142007 5.73121e-21)
(0.419754 -7.33884e-07 3.96169e-22)
(0.88329 0.00905706 5.41639e-21)
(0.620612 0.249633 5.05091e-22)
(0.284187 -0.00183858 1.85168e-20)
(0.454936 -0.0642754 1.73264e-20)
(0.487759 0.0492238 2.38523e-20)
(0.4958 0.00131956 -1.5879e-20)
(0.110382 0.0266931 7.82473e-21)
(1.16431 0.138389 -1.90357e-22)
(1.06187 0.175123 1.63703e-20)
(0.348795 -0.00065101 8.81476e-22)
(0.386172 -0.0006605 5.17814e-21)
(1.3804 0.0256644 2.90901e-21)
(0.716487 0.127576 -9.42227e-22)
(0.598443 -0.222189 -6.7824e-21)
(1.09122 0.189384 -6.51439e-20)
(0.728676 0.154402 7.61882e-21)
(0.960438 -0.00268107 7.38358e-22)
(0.426655 0.00247452 -1.8217e-20)
(0.87462 0.0897235 -1.03794e-21)
(0.35953 0.00088213 -2.97076e-23)
(0.401951 0.000327206 3.51106e-20)
(1.21204 0.157784 3.29829e-21)
(0.380452 -0.000466562 1.94372e-20)
(0.335216 0.00112365 -5.97798e-21)
(0.309001 -0.000681856 -1.02403e-21)
(0.484279 0.286786 4.94603e-20)
(0.262447 0.00176657 5.43923e-21)
(0.921198 -0.03586 6.59588e-21)
(1.27218 0.0824899 1.84573e-20)
(0.386756 0.0818729 3.31801e-22)
(1.09042 0.192476 3.90802e-20)
(0.313446 0.066921 3.53952e-22)
(0.981607 0.18903 -3.49431e-21)
(0.990915 0.176168 2.72012e-20)
(1.279 0.117897 -1.7533e-20)
(0.860355 -0.422001 -1.65191e-20)
(0.704272 -0.0313799 2.61518e-21)
(0.783771 0.149939 -3.78507e-21)
(0.298637 -0.00159252 7.06636e-21)
(0.484592 0.150358 -5.5664e-20)
(1.12707 0.152022 -3.20407e-20)
(1.03313 0.166664 1.85895e-20)
(1.04923 0.0384848 -3.33961e-21)
(1.09215 0.214741 1.35952e-20)
(0.282789 0.0530258 -1.33843e-22)
(0.339477 -0.00335354 2.35489e-21)
(0.351341 0.0773116 -1.04574e-21)
(0.681267 -0.266169 2.56104e-20)
(0.797961 -0.0156606 -5.14774e-21)
(0.331859 -0.000958967 1.24312e-21)
(0.575561 0.240426 2.26121e-20)
(0.127287 0.0283595 1.60537e-21)
(1.07064 0.221878 2.07418e-20)
(0.107035 0.0257557 -4.13899e-21)
(0.823035 0.00154429 -6.73755e-21)
(0.443537 -0.00213249 9.26292e-21)
(0.493067 0.000757175 6.12111e-21)
(0.41721 0.121611 9.21033e-21)
(1.28993 0.17733 5.64857e-21)
(0.992048 0.231531 1.80562e-20)
(0.0192616 -0.136401 -2.52018e-20)
(0.466554 0.0558615 -2.32773e-20)
(0.332425 0.000727713 6.01678e-21)
(0.0343315 -0.199165 -2.46274e-20)
(0.440817 0.0683799 3.50325e-24)
(0.0280843 -0.159854 1.29704e-20)
(0.291774 0.0653935 4.23161e-22)
(0.860422 0.237859 -1.50376e-20)
(1.08934 0.208065 -4.1445e-21)
(0.963264 -0.0480655 -2.78194e-21)
(0.951136 -0.0300658 3.67522e-21)
(1.09384 0.147432 5.97727e-20)
(0.412032 0.15046 -5.0485e-21)
(0.514166 -0.174435 1.1893e-20)
(0.92257 0.00818288 -6.21476e-20)
(1.12428 0.168833 1.99015e-20)
(0.607969 0.226717 -1.3722e-20)
(1.33127 0.0760691 3.99095e-21)
(0.909671 0.0126503 9.5812e-20)
(0.970077 0.00124882 -8.30721e-20)
(0.574452 0.155664 4.70691e-21)
(0.109928 0.0234817 -6.38298e-21)
(1.011 0.195865 4.21387e-21)
(0.684151 0.309293 1.02052e-20)
(0.99971 0.156276 4.93793e-21)
(1.0504 0.114698 2.64718e-20)
(0.297094 0.059503 -2.41488e-22)
(0.32753 -0.00137485 6.9894e-21)
(0.909701 0.00551182 2.60348e-20)
(0.161389 -0.414796 -2.52608e-20)
(0.792894 0.0545614 3.07488e-21)
(0.778238 0.242485 -3.58653e-20)
(0.788604 0.0523714 -4.68138e-21)
(1.16745 0.207857 1.39304e-20)
(0.501111 0.0020506 2.61742e-21)
(0.701237 0.320929 -1.54882e-20)
(0.523634 0.229207 1.75478e-20)
(0.0967363 0.023762 8.83362e-21)
(0.948748 -0.00500071 3.87342e-21)
(0.879022 -0.00652705 4.35696e-20)
(1.23375 0.185913 7.99002e-21)
(0.284994 -0.000155654 -4.32643e-21)
(0.879035 0.00119849 3.12877e-20)
(0.361939 0.0795812 1.20213e-20)
(0.851591 -0.0394593 1.57568e-21)
(0.704534 0.000465567 8.89462e-21)
(0.728295 0.0973213 -2.69618e-21)
(0.939398 -0.00263065 1.74671e-20)
(0.47081 0.103617 -7.19483e-21)
(0.850032 0.108225 -4.10613e-20)
(0.0851219 0.0170801 4.87339e-21)
(0.718024 0.154926 1.13611e-21)
(0.663625 0.148019 -3.47903e-21)
(0.370074 0.0739928 5.30626e-22)
(0.464703 0.0490269 -1.13843e-23)
(1.22396 0.144191 1.22774e-20)
(0.893114 0.00781244 6.75077e-20)
(0.456779 0.0947633 -4.41292e-21)
(0.482792 0.00266155 1.14031e-20)
(0.939645 -0.000808873 4.31033e-21)
(0.363084 0.000980366 -3.90689e-22)
(0.368476 0.0714748 7.23331e-22)
(0.519281 -0.0402245 2.76238e-20)
(0.361391 0.0617974 2.83578e-22)
(0.976078 -0.0475932 -1.32403e-21)
(0.929201 0.265609 -3.17949e-20)
(1.1606 0.16433 -8.05344e-21)
(1.24113 0.194894 -2.54801e-21)
(0.561467 -0.018835 4.62017e-21)
(0.587668 -0.142453 1.01679e-20)
(0.86436 0.0983136 -4.7628e-22)
(1.17528 0.163924 2.33876e-20)
(1.05944 -0.0592451 2.22399e-21)
(0.936862 -0.67895 1.05201e-20)
(1.06609 0.201175 -2.04628e-20)
(0.789339 0.232953 6.04494e-20)
(0.550759 0.104357 -5.10406e-20)
(0.67892 0.134269 -2.45241e-21)
(0.826083 -0.247268 3.75247e-21)
(1.06781 -0.156042 4.48367e-22)
(0.576688 0.184669 1.05507e-20)
(0.716948 0.000159918 -1.64185e-20)
(0.934953 -0.0280448 -1.10108e-21)
(1.08903 0.183426 -2.86607e-20)
(0.0890278 -0.0353215 -6.82426e-21)
(1.03078 -0.151073 4.95063e-22)
(0.444979 -0.00233069 -9.15046e-22)
(0.5044 -0.000280435 8.56e-22)
(0.543602 0.217436 -1.37253e-21)
(1.15639 -0.490959 -4.57968e-21)
(0.730399 0.325139 1.30962e-20)
(1.18995 0.133688 -1.77345e-20)
(0.191822 -0.00240141 -7.15175e-21)
(1.15993 0.179544 -1.67013e-20)
(0.430355 0.096545 -8.69299e-21)
(1.12132 0.199132 -2.38758e-21)
(0.710233 0.259925 -9.36887e-21)
(0.810902 0.000625324 -8.04796e-21)
(0.919837 0.00649621 -7.66689e-20)
(0.283529 0.0516066 -1.26755e-21)
(0.924992 0.000121721 -7.84275e-22)
(0.920377 -0.00266202 -6.35706e-21)
(0.693338 0.139101 7.08156e-21)
(0.336324 -0.0119031 -7.77384e-21)
(0.515927 0.00946263 1.30433e-20)
(0.816588 0.0942496 3.99133e-21)
(0.892886 0.160442 4.15751e-22)
(0.653996 0.0969723 1.98337e-21)
(0.972876 -0.0431696 -1.95401e-21)
(1.13952 0.119972 -1.27838e-20)
(0.214596 0.0461438 1.43007e-21)
(0.208467 0.0464113 4.28272e-22)
(0.971188 -0.409195 5.3113e-21)
(1.12291 0.213751 2.77218e-20)
(1.06531 0.204927 -1.48062e-20)
(0.106171 0.0235561 2.83421e-21)
(0.479182 0.000228221 1.08579e-20)
(0.792326 0.101487 2.61066e-21)
(0.00796214 -0.11944 -5.12858e-21)
(0.543686 0.103868 1.53748e-21)
(0.512851 9.21601e-05 -1.08832e-20)
(1.4495 0.0229428 1.16831e-21)
(0.233691 -0.000318568 1.73445e-20)
(0.95186 0.14551 1.17343e-20)
(0.479223 0.000129748 -7.93691e-21)
(1.2305 -0.51114 1.03082e-20)
(0.805264 -2.30568e-05 -5.72431e-21)
(0.601051 -0.163986 -8.03321e-21)
(0.50903 0.00252563 1.4482e-20)
(0.93247 0.189421 -7.42416e-20)
(0.925299 0.000172239 -1.02033e-20)
(0.966537 -0.000285523 1.30178e-20)
(0.0054862 -0.105556 2.45188e-20)
(1.18646 0.156553 -1.70265e-20)
(0.930788 -0.000473943 3.57882e-20)
(0.433871 0.0834634 2.68695e-22)
(0.519935 0.00180597 4.72164e-21)
(1.19649 0.203054 2.57762e-20)
(0.259479 0.00370149 -5.87754e-21)
(0.975207 0.000923683 6.76458e-20)
(1.08289 0.211607 1.22011e-20)
(1.10682 0.148771 -2.64728e-20)
(0.541869 -0.00583019 -1.89258e-20)
(0.290573 -0.00111606 4.73001e-21)
(0.436162 0.000425425 -3.69403e-22)
(0.458655 -0.000117652 6.48974e-21)
(0.437206 0.081848 -3.25672e-22)
(0.473636 0.000542975 -3.62723e-23)
(0.507378 0.000783341 9.21466e-21)
(0.912183 -0.00471616 -3.57589e-20)
(1.25603 0.0397351 8.16876e-21)
(0.946256 -0.11801 -4.21104e-21)
(0.389112 -0.114871 -7.66467e-21)
(0.764179 -0.027012 -4.02252e-20)
(0.093026 0.020396 -2.95571e-21)
(0.502308 0.0178971 -4.75021e-20)
(0.627075 0.143713 -1.39625e-20)
(0.258227 0.00193445 -3.42485e-21)
(0.925071 -0.088178 -1.04567e-20)
(0.470748 -0.00295728 -4.03581e-21)
(0.490894 0.000339773 -1.78929e-21)
(0.509907 0.00284694 4.14267e-21)
(0.758446 -0.494896 -6.35658e-21)
(0.518584 0.0751419 8.86677e-23)
(0.924787 0.00429553 2.96072e-20)
(1.13255 -0.614125 -6.32466e-21)
(0.683707 0.195793 -2.90999e-20)
(0.843388 0.175785 1.06165e-21)
(0.930569 0.0853796 1.59129e-20)
(0.133153 0.00818864 4.60919e-22)
(0.315965 0.0709486 -9.88177e-22)
(0.543404 -0.00612105 3.26421e-20)
(0.534507 -0.173183 -9.12599e-21)
(0.941849 -0.0158061 3.63709e-21)
(0.928749 -0.479595 -6.05755e-21)
(0.942053 -0.00106985 2.06811e-20)
(0.655375 -0.0807906 -4.93316e-21)
(0.873829 0.00183476 1.94811e-20)
(0.827548 0.173821 -3.49796e-21)
(0.531945 0.180384 -2.11683e-20)
(1.00814 0.184715 -3.00655e-21)
(1.0744 0.14388 -1.9719e-20)
(1.43029 0.05506 3.76073e-21)
(0.457686 -0.000783543 1.41631e-22)
(0.469981 -0.00234757 -4.66118e-23)
(0.496533 -0.00077449 7.31387e-22)
(1.05281 -0.272463 -2.39648e-20)
(0.510322 0.000620933 1.30052e-21)
(0.615351 0.256029 -3.36016e-20)
(0.00808441 -0.0432175 9.05377e-21)
(-0.000217552 -0.0245286 2.35088e-20)
(1.11017 -0.28393 1.13767e-21)
(0.942828 -0.00469799 -5.64772e-21)
(1.22758 0.0703131 -4.34534e-21)
(0.5396 0.00653166 -3.15306e-20)
(0.486158 0.0244719 1.75444e-20)
(1.2491 -0.0807703 -1.42227e-22)
(0.25015 -0.490663 1.58203e-20)
(0.349362 0.128941 2.39924e-21)
(0.922308 0.101103 2.0692e-22)
(0.945459 0.00225733 6.30686e-20)
(1.2572 -0.0316805 2.7545e-21)
(0.538707 -0.00598305 1.52279e-20)
(0.699171 -0.000869582 1.94968e-20)
(0.314149 0.0701915 8.11455e-21)
(0.32344 0.0859737 -3.07649e-21)
(0.523306 0.00106058 -1.9597e-20)
(0.0250863 -0.0989371 2.11136e-21)
(0.243188 -0.00250909 -1.57035e-21)
(0.434524 0.00216345 -9.88658e-22)
(0.466501 0.00127013 1.71437e-21)
(0.477299 -4.18027e-05 4.02537e-21)
(0.48356 -0.000725299 -1.05782e-20)
(0.496469 -0.00046233 3.19099e-21)
(0.515563 0.0025743 -1.84382e-20)
(0.819907 -0.00118285 -2.51812e-20)
(0.312347 0.00119542 1.21621e-21)
(0.962212 -0.425149 -7.69525e-21)
(0.843429 0.256866 1.6462e-20)
(0.5336 0.0013475 5.49299e-21)
(0.528374 -0.00124016 -4.41425e-20)
(1.18157 0.172863 1.67426e-21)
(0.514785 0.00242096 -4.79275e-22)
(0.813685 0.172729 7.49664e-21)
(1.02229 0.119462 2.10101e-20)
(1.25381 -0.0641977 -3.5555e-21)
(0.465802 0.000463364 -8.85716e-21)
(0.488946 -0.00025494 3.37921e-21)
(0.934089 -0.00316289 9.74084e-20)
(0.516999 0.0026058 -2.68072e-20)
(0.00496717 -0.0121497 -1.40566e-20)
(0.511267 0.00107282 2.52115e-20)
(0.495825 -0.00094393 1.07048e-20)
(0.49451 -4.48346e-05 -3.62173e-23)
(1.13731 -0.177446 4.24897e-21)
(0.452838 0.000354875 -8.54112e-21)
(0.452007 -0.00340898 2.86784e-22)
(0.491051 -9.28513e-05 -2.61712e-20)
(0.469926 -0.000111152 1.85496e-20)
(0.484912 -0.000877868 -8.40616e-21)
(0.466249 -0.00235461 -8.06807e-21)
(0.572371 0.125344 -2.11844e-20)
(0.778466 7.53652e-05 1.36763e-20)
(0.882317 0.000254488 5.49909e-20)
(0.972998 0.236719 6.00814e-20)
(0.461455 0.172505 9.83391e-22)
(0.270984 0.0035046 -4.19081e-21)
(0.573709 0.180823 -6.13341e-20)
(0.778202 0.000574 -6.78921e-21)
(0.641536 0.276118 3.04959e-21)
(1.0039 0.089043 9.63059e-21)
(0.787486 -0.00510088 -2.16331e-21)
(0.551983 -0.0489137 3.58698e-20)
(0.50844 0.089072 -1.60724e-22)
(0.244173 0.108917 -6.93271e-21)
(0.338998 0.00158935 9.3635e-21)
(1.04186 0.239041 4.33737e-20)
(1.08038 -0.634539 -1.41164e-20)
(1.08406 0.213371 -1.64743e-20)
(0.752487 0.00115756 2.63593e-21)
(1.14903 0.181132 1.44332e-20)
(0.461179 0.0956349 -1.96019e-21)
(0.249852 0.0514863 2.0201e-22)
(0.373154 0.0729634 1.39656e-21)
(1.07307 0.213549 1.52279e-20)
(0.604458 -0.0856149 -2.07675e-20)
(0.385092 0.0816426 -1.20616e-21)
(0.397148 0.0874934 1.27371e-20)
(0.796377 0.257455 -9.89105e-21)
(0.439081 0.0409802 1.43749e-20)
(0.775861 0.000617475 -1.76558e-21)
(0.179836 0.041646 -2.45987e-21)
(0.314297 0.0622633 3.37063e-22)
(0.279607 0.00151898 -1.32689e-23)
(0.873204 0.0104728 -8.0495e-20)
(0.638907 0.194994 6.18178e-20)
(1.34582 0.0655125 2.64823e-21)
(0.669494 0.211185 1.74915e-20)
(0.965112 -0.245008 1.12181e-20)
(1.35658 0.136771 -2.38652e-21)
(0.701092 0.220554 5.12385e-21)
(0.840415 -0.18693 -1.20108e-20)
(0.918151 -0.151786 1.0667e-20)
(0.315924 0.0667656 -3.75943e-21)
(0.946413 -0.0583201 -2.165e-21)
(0.731055 0.223559 5.34359e-20)
(0.768765 0.134811 1.30384e-21)
(0.723893 -0.619868 -2.87594e-20)
(1.20916 -0.25615 -7.71183e-21)
(0.355992 0.000759821 9.51064e-21)
(0.388783 0.000708451 -1.81515e-21)
(1.29415 0.175465 -5.31396e-21)
(0.584392 -0.170138 1.53883e-20)
(0.421777 0.00249356 -4.55579e-22)
(0.142176 0.0183239 1.41605e-20)
(0.534734 0.109284 -5.9176e-21)
(0.913016 -0.0500062 3.57142e-21)
(0.75971 0.223522 4.72134e-20)
(0.990879 0.0946232 7.65529e-22)
(0.296454 0.000582132 7.73869e-21)
(1.00426 0.257411 -2.2274e-20)
(0.940134 0.000437558 1.35697e-20)
(1.27548 -0.060224 1.11462e-21)
(0.695696 0.150905 1.07816e-21)
(0.257031 0.0553286 1.80896e-21)
(1.13632 -0.169311 -3.52508e-21)
(0.857937 -0.058639 8.83673e-21)
(1.30801 0.0987165 -3.14097e-21)
(0.546439 -0.00846431 4.99589e-20)
(0.524679 -0.0781477 1.09306e-21)
(0.170874 -0.235986 -1.00509e-20)
(0.262965 0.0569711 2.80938e-21)
(0.61369 0.170888 9.27383e-21)
(1.24508 0.0247357 9.85702e-21)
(0.248987 0.000765511 8.32982e-21)
(0.506395 0.0900444 2.36829e-20)
(0.371683 0.0765877 2.82884e-21)
(0.27359 0.000682372 -3.28147e-21)
(0.88965 -4.69768e-05 -2.71662e-20)
(0.480451 -0.00202845 -6.37248e-21)
(0.796952 0.00263551 -1.09486e-20)
(1.00194 -0.0932975 -9.32888e-23)
(0.37065 0.00137922 -4.07002e-21)
(0.654994 0.120512 2.64982e-22)
(0.555163 0.144144 4.2236e-20)
(0.268564 0.0108946 1.55671e-20)
(0.909802 0.197837 5.28234e-20)
(0.445315 0.102387 3.03471e-21)
(0.911925 -0.285556 -3.28833e-21)
(0.596887 -0.650822 9.86367e-21)
(0.199261 0.0461376 5.37427e-22)
(0.941164 0.0867091 1.46319e-20)
(0.229513 0.000344231 -1.84651e-21)
(0.112554 -0.000873523 8.53283e-21)
(0.336633 -0.000186996 1.06451e-20)
(0.307763 0.000415152 -4.79663e-21)
(0.290263 -0.00213579 -1.17155e-21)
(0.596054 0.112383 2.98028e-22)
(1.10556 0.213419 -5.55414e-21)
(0.753638 -0.51492 4.02374e-21)
(0.847235 -0.0451776 2.50333e-21)
(0.708696 0.128264 1.53413e-23)
(1.35402 -0.26804 1.56715e-22)
(0.856634 -0.00449971 -6.45073e-20)
(1.06781 -0.33562 -2.82028e-22)
(0.947082 0.260579 -4.38865e-20)
(0.668773 0.13699 -2.4293e-20)
(0.293976 0.00249202 2.8056e-20)
(0.440091 0.00121832 -1.20977e-20)
(0.27138 0.00177042 8.10891e-21)
(1.02185 -0.147353 -1.13628e-21)
(0.527743 -0.000287137 -1.26891e-20)
(0.848902 0.0422902 -4.11656e-20)
(0.431724 0.0862017 9.31559e-22)
(1.05965 -0.325694 1.43849e-20)
(0.0850681 -0.313685 3.73537e-21)
(0.43317 0.00175614 -3.71561e-22)
(0.153799 -0.00140961 2.89202e-22)
(0.485021 0.0204237 1.0144e-21)
(0.274045 0.0829394 6.46111e-21)
(0.933085 -0.0268379 -1.2299e-21)
(0.765151 0.135417 -1.1303e-23)
(1.09427 0.219736 -2.51068e-20)
(0.942405 -0.0750012 -1.04128e-21)
(0.522976 -0.0107635 -3.06249e-20)
(0.817769 -0.11412 -3.37777e-21)
(0.859246 0.17143 -1.33984e-20)
(0.785817 0.2196 -4.42898e-20)
(0.47241 0.00168778 -1.17616e-20)
(0.985373 0.0968368 6.91796e-21)
(1.24689 0.19305 -2.42946e-21)
(0.486946 -0.000882584 -8.95923e-22)
(1.10728 0.174018 -1.70686e-20)
(0.31054 0.0628089 -6.94994e-22)
(0.585346 0.152988 -3.58985e-20)
(1.3757 -0.432281 6.36629e-21)
(0.795711 0.0782804 -3.4523e-21)
(0.726506 0.0797182 -4.81357e-21)
(0.27237 0.0037215 -2.09263e-21)
(0.949424 -0.029379 -3.55255e-21)
(1.16671 -0.163575 2.41777e-21)
(1.18202 -0.157059 -2.03054e-21)
(0.654913 -0.22354 1.11436e-20)
(1.4208 0.0730859 6.24098e-22)
(0.242304 0.0530385 -3.941e-21)
(1.38426 -0.01681 2.61728e-22)
(0.37014 0.126369 -2.95246e-21)
(0.925808 0.114137 1.7511e-20)
(0.0274111 -0.151564 -3.19322e-21)
(0.355123 0.0273445 2.04541e-20)
(1.12666 0.21356 1.46244e-20)
(0.516053 -0.550294 1.37308e-20)
(0.423417 0.00156312 -7.7754e-21)
(0.47071 0.00102611 -7.82308e-21)
(0.943718 0.000986407 4.32701e-21)
(0.816195 0.142546 3.09529e-22)
(1.01225 -0.133275 -6.46995e-22)
(0.973672 -0.265578 1.17144e-21)
(0.43386 0.0834684 -6.60592e-23)
(0.885752 0.184143 -1.02593e-20)
(0.56493 0.11798 -5.11883e-21)
(0.710902 0.0420318 -5.94517e-20)
(0.563209 0.040242 1.92071e-21)
(0.666291 0.133816 4.30921e-22)
(0.260126 0.0582674 2.51937e-21)
(-0.000885511 -0.0448063 2.81902e-21)
(1.19291 0.201991 1.48659e-20)
(0.234498 0.0506733 1.96539e-21)
(0.868624 -0.000428296 2.96608e-20)
(0.746356 -0.0784987 -1.10901e-20)
(1.1814 0.179747 -6.45862e-22)
(1.09017 -0.271911 2.10828e-21)
(0.0353196 -0.214449 3.33064e-20)
(0.964546 0.00137918 -1.93798e-20)
(0.306475 0.105322 1.02787e-20)
(1.01477 0.192717 2.72583e-21)
(0.943248 -0.0515084 3.28774e-23)
(1.00329 0.128338 -3.28404e-20)
(1.35011 0.142765 8.02529e-22)
(0.512481 0.108238 2.30409e-21)
(0.193423 0.0440072 2.4056e-22)
(0.24664 0.0558303 2.20343e-22)
(0.725223 0.1413 1.53223e-21)
(0.475921 0.0022837 -5.89151e-21)
(0.866247 0.00037193 -2.78346e-20)
(0.636836 0.30849 1.69544e-20)
(0.96954 0.248474 2.35945e-20)
(0.897383 0.195075 4.10577e-21)
(0.30262 -0.00110098 1.32397e-20)
(0.766514 0.147137 -5.32962e-21)
(1.36744 -0.277251 6.15673e-22)
(0.261339 -0.00259205 -8.38808e-21)
(0.122842 0.0276992 5.44577e-21)
(0.0935254 0.0205512 1.9305e-21)
(0.618562 0.126208 -1.12217e-21)
(1.47531 -0.0393117 5.06757e-21)
(0.71767 0.205743 -2.15976e-21)
(0.0173045 -0.118689 -2.30707e-20)
(0.0992242 -0.0204038 1.91969e-20)
(0.343587 0.0744849 1.33856e-21)
(1.23665 0.181708 -2.02901e-20)
(0.426496 -0.340328 -6.23521e-21)
(0.719864 0.140748 4.52523e-21)
(0.150524 -0.401026 1.72401e-20)
(0.293658 0.063401 -4.39019e-21)
(0.251661 -0.000206707 -2.94421e-20)
(1.30795 0.0996785 5.90524e-21)
(1.02739 0.191121 -9.27099e-21)
(1.0816 -0.556646 7.9171e-21)
(1.07157 0.205875 3.92703e-20)
(0.0992159 -0.0868945 -1.69175e-20)
(0.489878 0.0955019 -1.92585e-21)
(0.326566 0.00126059 -9.92968e-21)
(0.346965 -0.00121334 -1.82332e-20)
(0.50964 0.14105 4.76367e-20)
(0.532269 -0.102896 4.29352e-21)
(0.228735 0.00287819 -3.13388e-20)
(1.13709 0.173614 1.70679e-20)
(0.423869 -0.000636392 6.91158e-22)
(0.478727 0.000159151 5.09476e-22)
(0.245881 -0.000928322 -1.70642e-21)
(0.142693 0.0330275 -1.08246e-22)
(0.790405 -0.444292 -1.24454e-20)
(1.0871 -0.58634 -1.51332e-20)
(0.984083 0.0917248 -4.18307e-20)
(0.506702 0.000167684 -4.5079e-21)
(0.479436 -0.00104879 1.54887e-20)
(0.512061 0.154271 -2.12532e-20)
(0.975207 -0.000798789 -7.12686e-21)
(1.24654 0.189473 -2.46033e-21)
(0.922193 -0.00355098 -6.08435e-21)
(0.398375 0.0840593 -3.09787e-22)
(0.208168 0.0462444 -8.32965e-21)
(1.49037 -0.165443 -5.39751e-21)
(0.957258 0.00162337 -6.73878e-20)
(0.629457 0.12728 5.60665e-21)
(0.690046 0.10787 -6.07059e-20)
(0.587442 0.18375 -1.45376e-20)
(0.105599 0.0240129 -3.03951e-21)
(1.29861 0.173186 -3.07419e-21)
(0.299281 0.00209394 1.83384e-21)
(0.738709 0.143137 1.9451e-21)
(0.921041 -0.0884637 9.00572e-21)
(0.512517 -0.00552785 4.3393e-21)
(0.275253 -0.44718 -5.08016e-21)
(0.227761 0.0504054 4.72951e-21)
(0.208605 0.0471449 -5.52235e-21)
(0.368215 0.0160954 -3.1782e-21)
(0.396582 0.00100141 -5.49635e-21)
(0.437257 0.0943779 -6.83555e-21)
(0.131303 -0.143387 1.01192e-20)
(1.20747 -0.443934 2.58479e-21)
(0.926134 0.000689658 9.83168e-21)
(0.86609 0.000887764 5.93149e-22)
(0.420886 0.0844102 8.80393e-22)
(0.146727 -0.392806 2.41405e-20)
(0.297364 0.0027799 4.94729e-20)
(0.275077 0.00206154 1.71577e-20)
(0.411232 5.12151e-05 4.09037e-21)
(0.445481 -0.00024678 5.36976e-21)
(0.280717 -0.0563987 1.05861e-20)
(0.496401 0.000714011 -1.82185e-22)
(0.734951 0.0433555 1.42951e-20)
(1.11709 0.0171913 1.01495e-20)
(0.755404 -0.0752429 -9.12458e-23)
(0.665502 -0.355986 6.59508e-21)
(0.953517 0.001695 -8.20129e-20)
(0.236289 0.0532966 7.80563e-22)
(0.927102 0.00625964 -1.86945e-20)
(0.264852 0.053755 5.38757e-21)
(0.993715 -0.408298 5.32686e-21)
(0.998988 0.151918 -3.12416e-20)
(0.169082 -0.42069 -6.38387e-21)
(1.28164 0.0699764 -1.29931e-21)
(0.493374 0.10686 -7.47608e-21)
(0.72226 0.144051 7.41433e-21)
(0.934679 0.13344 5.02902e-23)
(0.870021 0.148376 1.92148e-21)
(1.27239 0.183876 -5.04341e-21)
(0.570812 -0.655539 1.98096e-20)
(0.764569 0.0749131 6.69418e-21)
(1.01525 0.187441 -3.46246e-21)
(1.1664 0.105464 -1.84121e-20)
(0.942315 0.0821428 1.29396e-20)
(0.858127 -0.0945176 2.47039e-22)
(0.658265 0.21292 3.39294e-20)
(0.307502 0.0670059 -4.47384e-22)
(0.430838 0.124354 -3.2404e-21)
(0.492315 0.00142177 1.05535e-23)
(0.297156 0.0655779 -3.29171e-22)
(1.25577 0.0970449 -3.56847e-21)
(0.453504 -0.00480615 1.3392e-20)
(0.744088 0.0683662 -8.20811e-20)
(1.18159 0.0971434 5.84644e-21)
(0.461265 0.00193267 -1.17061e-20)
(0.395524 0.00158852 4.05462e-21)
(0.301343 0.000259593 1.57087e-20)
(0.371009 -0.000586595 -1.61654e-20)
(0.16171 0.033764 3.30498e-21)
(0.329249 0.000659352 -6.76932e-21)
(0.27746 -0.00289293 -7.58837e-21)
(0.356888 0.0748749 -2.76075e-21)
(0.236053 0.000255966 9.72903e-21)
(0.449642 0.0280026 -2.0468e-20)
(1.04484 -0.499724 -2.8814e-21)
(0.783657 0.156822 2.81468e-21)
(0.485841 0.00259873 1.13284e-20)
(0.730095 0.139891 5.20719e-20)
(0.0615291 -0.209127 2.33115e-20)
(1.04364 -0.465967 -1.17619e-20)
(0.638151 0.242853 4.54262e-21)
(0.422477 0.000561461 -5.31717e-21)
(0.439177 0.000352542 -6.05691e-23)
(0.461045 0.000122985 1.08164e-20)
(0.510279 -0.358255 -4.6577e-21)
(1.26745 0.186528 3.37882e-21)
(1.10215 0.195104 -1.19336e-20)
(1.37604 0.121189 -7.78016e-22)
(0.34505 0.0945587 1.0011e-20)
(1.25547 -0.405147 3.52665e-21)
(0.807644 0.131305 1.38752e-20)
(1.28691 -0.446061 -1.02897e-20)
(1.03245 -0.403076 -1.78034e-20)
(1.03789 -0.43382 -1.0263e-20)
(0.490018 -0.346001 3.83321e-21)
(0.884254 -0.69008 9.78174e-21)
(0.92387 -0.662705 -1.80792e-20)
(1.22753 0.197456 3.5601e-21)
(0.907336 0.0622725 1.66105e-20)
(0.62127 -0.0395379 1.6426e-20)
(0.866042 0.000667485 3.44083e-21)
(0.735576 0.151096 -6.43469e-22)
(0.788693 0.099359 7.33128e-20)
(0.00685226 -0.110408 3.56294e-21)
(0.257507 0.0569151 4.00179e-22)
(0.59818 0.0766559 -4.84798e-22)
(0.724983 -0.234438 -2.84326e-21)
(0.869858 0.242384 -3.06184e-20)
(0.112502 0.025983 -7.20621e-23)
(1.13109 -0.00923427 -3.01356e-21)
(0.640767 -0.676495 -1.49193e-20)
(0.287916 0.00162519 2.33974e-23)
(0.356565 -0.00119166 -3.05743e-21)
(0.703767 -0.688253 2.31704e-20)
(0.381492 0.0108819 1.19867e-20)
(0.76056 -0.690765 -2.72783e-20)
(0.298762 -0.0722174 -3.17108e-20)
(0.854087 0.00167158 -1.2405e-20)
(0.944607 -0.00292545 9.49659e-21)
(1.23351 -0.382057 -3.28798e-21)
(0.193526 0.0403108 2.33992e-21)
(1.19814 0.165252 -1.5952e-20)
(1.06202 0.2294 2.11003e-20)
(0.585159 0.118644 -3.65059e-21)
(0.282814 0.00744949 7.74237e-21)
(0.269169 -0.00185817 -1.14483e-21)
(0.750257 0.0710173 8.65252e-20)
(1.19207 -0.585342 -3.67859e-21)
(0.554779 0.12065 8.74329e-21)
(1.06388 0.235182 4.36368e-20)
(0.361127 -0.000758335 1.33314e-20)
(0.0037655 -0.0875837 9.81579e-22)
(1.08115 0.221088 2.84044e-20)
(0.915021 -0.298597 2.40859e-20)
(0.818247 0.154108 -1.20675e-21)
(0.405332 0.0152248 2.20691e-21)
(0.399605 0.0869792 7.06411e-22)
(1.34183 -0.219075 -8.43363e-21)
(1.25106 -0.554724 1.55178e-21)
(0.679776 0.136379 -5.63704e-21)
(0.753428 -0.0625507 1.51795e-20)
(0.427587 0.00163912 8.45857e-21)
(0.909475 0.237737 -5.49519e-21)
(0.809173 -0.684164 -2.90752e-20)
(0.665478 0.0875209 9.87319e-22)
(1.10991 -0.0519753 -2.65097e-22)
(-2.70403e-05 -0.0474202 -1.59193e-20)
(1.2645 0.185236 5.44199e-21)
(0.449958 0.0934504 3.71887e-21)
(0.283345 0.00185038 -9.00632e-22)
(0.391695 -0.000484152 9.93786e-22)
(0.215491 0.0435826 -4.08831e-21)
(1.30071 -0.482731 7.54492e-21)
(0.0900871 -0.21598 -3.5249e-21)
(0.28623 0.0632513 -1.83552e-21)
(0.0654256 0.00261988 7.27213e-21)
(0.246836 -0.00305249 -2.32791e-22)
(1.15841 -0.39956 1.38377e-20)
(1.0281 -0.374001 -1.37985e-20)
(0.190026 0.0406 6.64308e-22)
(1.07939 0.192867 5.66886e-21)
(0.563599 0.0663089 4.79818e-20)
(1.41599 -0.233341 -1.56103e-21)
(1.10521 0.203781 3.65129e-21)
(0.313185 0.0644735 3.6504e-22)
(0.772089 0.076417 4.02857e-20)
(0.123435 0.0278844 1.27737e-21)
(0.642286 0.126164 2.69056e-22)
(1.1744 0.207104 4.9091e-21)
(0.25511 -0.126787 -1.42939e-20)
(0.435178 -0.0562676 -5.64355e-20)
(0.376677 0.0792225 -8.82005e-22)
(1.1388 0.21179 2.26707e-20)
(0.208995 -0.00148283 2.12725e-21)
(0.302443 -0.00162735 -1.63871e-21)
(0.260623 -0.506829 -3.4035e-21)
(0.98325 0.0946995 5.16946e-20)
(0.418112 0.0875022 -4.69423e-21)
(0.801646 0.16448 -3.7099e-21)
(0.72254 0.241594 -4.12579e-21)
(1.08465 0.225256 -9.95164e-21)
(0.278475 0.060632 -1.40477e-20)
(1.16418 0.113575 -7.79252e-21)
(0.125412 -0.0107656 6.53833e-21)
(1.03781 -0.640844 3.4055e-21)
(0.944176 0.24504 3.66729e-20)
(0.495774 0.101787 1.9192e-21)
(0.85588 -0.00817053 1.77835e-20)
(1.05704 -0.325366 -5.90269e-21)
(0.513731 -0.00564642 -6.92668e-20)
(1.45838 0.013644 3.73966e-21)
(0.91693 -0.00487018 -8.84623e-20)
(1.13827 0.115995 6.07364e-20)
(0.952819 -0.0560245 -2.68326e-21)
(1.07766 -0.525152 1.08877e-20)
(0.799858 -0.0087547 -1.83365e-20)
(1.20687 0.151854 -6.14683e-21)
(0.983427 0.000573963 -1.94404e-20)
(0.87718 0.190788 -6.66079e-21)
(0.804011 0.273112 4.22393e-21)
(0.390068 0.00140739 -3.67659e-21)
(0.444286 -0.480244 2.3816e-21)
(1.10826 -0.243928 1.68456e-20)
(0.278299 0.0634057 -9.11719e-21)
(0.474486 0.275813 1.34845e-20)
(0.364022 -0.00163883 1.08114e-20)
(1.06483 0.21968 -3.39783e-21)
(0.713652 -0.0507462 2.93575e-20)
(0.967398 -0.00166519 -7.93014e-20)
(1.09666 0.207679 -1.31525e-21)
(0.958744 1.493e-05 -8.18776e-20)
(0.999211 0.143272 -1.31137e-20)
(0.263706 0.00200018 9.99091e-22)
(0.923874 -0.28503 6.54809e-21)
(1.10172 -0.42156 -1.17191e-20)
(1.24094 -0.479903 -7.41544e-21)
(0.756422 0.0419609 -2.20084e-20)
(1.0718 0.231486 1.88202e-20)
(0.802955 -0.00133375 -2.32409e-21)
(0.92729 -0.437358 -1.24042e-20)
(0.123334 0.0281096 6.56371e-21)
(1.19358 0.204867 -7.40772e-21)
(0.17963 0.0385299 2.78004e-23)
(0.0268474 -0.195194 -5.77592e-21)
(0.456013 0.000519257 -1.81395e-21)
(0.388987 -0.000534523 -9.16694e-21)
(0.131096 0.026824 6.24477e-21)
(1.21977 0.198851 -3.25225e-21)
(0.301699 -0.000156969 -5.35597e-21)
(1.1313 0.118535 1.08834e-20)
(1.11372 -0.595595 -9.38349e-21)
(1.03389 0.240252 -1.11126e-20)
(0.901835 0.0556491 -1.98112e-20)
(0.444143 0.269413 -2.91156e-20)
(0.776322 0.265573 -3.15107e-21)
(0.369899 0.0817622 -9.51761e-21)
(0.323889 -0.553247 1.53894e-20)
(0.325628 0.07008 -7.94296e-21)
(0.46584 -0.0678803 2.07245e-20)
(0.212504 0.0465835 -2.65682e-21)
(0.381118 0.00103331 -1.85732e-21)
(0.97344 -0.0469032 -8.39639e-23)
(1.28868 -0.514126 -8.21592e-22)
(0.150207 0.0324149 9.85016e-22)
(0.62974 0.198096 -5.93874e-21)
(1.17517 -0.175901 3.75955e-21)
(0.347729 0.0759414 1.12262e-22)
(0.69899 0.144726 -3.10287e-21)
(0.71288 -0.0453034 -1.23031e-20)
(0.293609 0.0658296 3.64413e-21)
(0.775204 0.175257 -1.08273e-20)
(0.689977 -0.19339 -9.00789e-21)
(0.0604571 -0.200678 -1.43496e-20)
(0.211304 -0.458563 -3.27196e-21)
(0.555936 0.169138 -1.52989e-20)
(1.24923 0.09691 -4.0282e-21)
(1.14705 0.212433 9.47742e-22)
(0.918823 -0.0340614 -3.45972e-22)
(0.796506 0.00223162 5.26665e-21)
(0.800248 0.168699 -1.34874e-20)
(1.28635 0.178806 2.54884e-21)
(0.523742 0.0402017 -1.59531e-20)
(0.0150045 -0.0773296 -8.14113e-21)
(1.0778 0.213826 5.27803e-21)
(1.09314 0.214729 9.06441e-22)
(0.997812 -0.310585 -7.90025e-21)
(0.558343 0.310353 2.26784e-21)
(1.21754 -0.418246 3.14762e-21)
(0.966886 0.00126223 -5.92154e-20)
(0.791943 0.167222 -1.94978e-21)
(0.633475 0.137543 -9.70143e-21)
(0.985187 0.231565 -1.1558e-20)
(1.37088 0.00335409 -2.97247e-21)
(1.36268 0.134277 -1.8834e-22)
(0.263995 0.0663985 2.13348e-21)
(0.776416 0.16407 1.61698e-20)
(0.706935 0.152954 1.4409e-20)
(0.27762 0.0737391 3.30639e-21)
(0.232897 0.0497009 -6.25393e-21)
(1.45876 0.00367347 2.58901e-21)
(0.981698 0.000675014 -1.90216e-20)
(0.355616 0.0054454 -1.06991e-20)
(0.278543 0.0606378 3.88461e-21)
(0.770953 0.152526 1.33792e-21)
(1.19936 0.185401 2.17085e-20)
(0.387851 0.000133545 7.96416e-21)
(0.296584 0.0657193 -4.04406e-21)
(0.408269 0.0859565 -3.4757e-21)
(0.738737 0.126195 -7.66156e-20)
(1.12135 0.213512 2.29721e-21)
(0.891309 -0.100154 2.47539e-21)
(0.536894 0.0618103 1.37668e-21)
(1.05962 0.227712 -5.02787e-21)
(1.00848 0.260079 1.41827e-20)
(1.13914 -0.124415 -1.04342e-21)
(0.164099 -0.000760969 9.99391e-22)
(0.307164 0.0682486 -2.6752e-21)
(1.26405 0.171954 4.52352e-21)
(0.697288 0.226844 -9.13952e-21)
(1.1345 0.197561 -2.66075e-21)
(1.14589 0.142536 -3.20764e-21)
(0.289952 0.0629785 2.53808e-21)
(0.54758 0.108646 -4.19057e-21)
(1.08249 0.212496 1.70917e-21)
(1.1618 0.210149 -6.56566e-21)
(0.489012 -0.039765 1.02013e-20)
(0.349679 0.0778323 -4.96112e-21)
(1.36637 -0.133391 3.7881e-21)
(1.07784 0.167642 1.08683e-20)
(0.775825 0.166356 -9.3399e-21)
(0.272384 0.0621718 -5.21277e-21)
(0.296823 0.000130688 -3.59129e-20)
(0.268565 -0.000113961 -1.19214e-20)
(0.380096 0.0835608 -1.01716e-20)
(0.922598 0.118243 -1.60693e-20)
(0.924324 -0.0101731 -9.01527e-22)
(0.0134294 -0.131812 -1.5755e-20)
(0.0213441 -0.18084 9.02076e-21)
(0.924577 -0.000105154 -2.20468e-20)
(0.995834 0.225828 8.43668e-21)
(0.00150295 -0.0581365 -8.64435e-21)
(0.468231 -0.000242 -1.87917e-20)
(0.78521 0.225589 7.16921e-21)
(1.24038 0.194441 -6.91442e-22)
(0.0312873 -0.208908 9.23913e-21)
(0.36034 0.0790002 -2.55854e-21)
(0.116492 -0.292347 5.32004e-21)
(0.499699 0.00271487 2.53991e-20)
(0.481212 0.0381474 5.31743e-21)
(0.355892 -9.77776e-05 -1.59405e-22)
(1.16506 0.207073 3.15787e-21)
(0.527404 -0.048667 7.45366e-21)
(1.10208 -0.165215 1.33058e-22)
(1.05197 0.240282 6.05879e-21)
(0.8014 -0.317303 1.12182e-20)
(0.72881 0.205062 -2.07096e-20)
(0.982148 0.0897381 2.17748e-20)
(0.834927 0.243912 3.16728e-20)
(0.36282 0.0812446 5.03034e-21)
(0.666552 0.183627 -4.12536e-21)
(1.03271 0.228994 1.00281e-20)
(0.941653 -0.0535025 1.76377e-21)
(0.931858 0.00611877 -7.88948e-20)
(0.600783 0.16226 1.66656e-20)
(0.75593 0.252646 -1.37993e-20)
(0.318566 0.0699609 -3.60195e-21)
(0.863419 0.00701276 -2.2455e-20)
(0.392475 0.0856724 4.97877e-21)
(0.791526 -0.694777 2.54982e-20)
(0.534474 0.129901 1.00556e-20)
(0.840458 0.180738 -3.55926e-21)
(0.337024 0.0743678 -6.65796e-21)
(1.11096 0.121458 1.97358e-20)
(1.18705 0.205817 1.39643e-20)
(0.302362 -0.00146214 -2.55867e-20)
(1.32132 0.0922522 5.16511e-21)
(1.14134 0.206103 8.13507e-21)
(0.0108527 -0.142919 -1.83738e-21)
(1.04879 0.229963 -2.13827e-20)
(0.459424 -0.000372107 -1.88738e-21)
(0.896368 -0.0105087 -7.76485e-22)
(0.746467 0.16073 1.2435e-20)
(1.35368 -0.189666 4.6868e-21)
(0.261696 0.0569447 2.78114e-21)
(0.780822 0.158987 -1.11835e-22)
(0.376419 0.0828222 -4.31733e-22)
(0.901688 0.096733 -4.43079e-20)
(0.621684 -0.144054 1.27868e-20)
(0.286145 -0.148784 1.21163e-20)
(0.0642226 -0.273343 2.63971e-20)
(1.10786 0.216033 -1.05871e-20)
(0.370427 0.0730435 1.4826e-21)
(0.153668 0.0325372 -1.04078e-20)
(0.405974 -0.00592399 -1.15132e-20)
(0.249986 0.071838 1.4052e-20)
(1.21206 -0.35938 3.14057e-21)
(1.12214 0.215296 9.52043e-21)
(0.233824 0.00289892 3.16431e-21)
(1.46675 -0.00562387 -5.86101e-21)
(0.466749 2.84544e-05 -3.44405e-22)
(0.863367 -0.228319 9.15467e-21)
(0.478392 0.140265 -5.31593e-21)
(0.999491 -0.0915112 -5.0276e-21)
(0.48018 0.00362679 -8.32737e-21)
(0.676765 -0.0711922 1.15425e-20)
(0.239046 0.0515101 1.52593e-20)
(1.12376 -0.391915 -6.23667e-21)
(1.07912 0.205813 4.20742e-21)
(1.12772 0.204995 -8.69626e-21)
(0.0430115 -0.232974 -3.54626e-20)
(0.342887 0.0753191 6.73495e-21)
(0.705825 -0.503772 7.33409e-21)
(0.0912158 -0.315999 -2.09277e-21)
(0.577335 0.0970481 -1.33807e-22)
(0.481214 0.0321523 1.1606e-20)
(0.685537 0.0650748 1.06244e-20)
(0.221854 0.0538204 -3.28312e-21)
(0.808656 0.172154 -7.6309e-21)
(1.02133 -0.389888 1.56093e-20)
(0.0785299 -0.25271 3.27764e-20)
(1.23401 0.190695 1.52883e-21)
(0.398564 0.000982616 2.76284e-21)
(1.29545 0.106215 1.22625e-20)
(0.553798 -0.00976318 2.31086e-20)
(0.941857 0.000980466 -2.37675e-21)
(0.692039 0.151037 2.74712e-21)
(0.607878 0.318428 3.23209e-20)
(1.02518 -0.420209 1.40359e-20)
(0.247354 0.0522779 1.66973e-21)
(0.499977 0.117545 1.83605e-22)
(0.216279 0.0476968 -6.23326e-21)
(0.660001 -0.0911955 -1.32637e-20)
(0.675323 0.287107 7.96518e-21)
(1.09163 0.122782 2.67241e-20)
(1.14027 0.210609 -2.76355e-21)
(1.06282 -0.186738 1.69361e-21)
(0.936895 -0.0315786 2.17378e-21)
(1.18307 0.167468 1.61111e-20)
(0.949914 -0.140938 1.31125e-20)
(0.374119 0.083602 -9.13333e-21)
(0.367555 0.0810666 6.34367e-21)
(1.14033 0.16816 1.3692e-20)
(0.757853 0.163914 7.93468e-21)
(0.821348 0.102084 1.89783e-20)
(0.782145 0.329393 4.2957e-20)
(1.10066 -0.566615 3.93673e-21)
(-0.000495763 -0.0525461 -9.40674e-22)
(0.433655 0.0835398 -3.24148e-23)
(1.03029 -0.451505 2.88489e-20)
(1.31156 -0.030939 -5.96681e-21)
(1.38273 -0.0011439 2.74487e-21)
(0.46608 0.251796 -2.21862e-20)
(0.429449 -0.346878 3.89653e-20)
(0.241759 0.0553384 1.82632e-21)
(1.06039 0.168786 -3.1339e-21)
(0.266723 -0.000402362 -1.25568e-20)
(0.644213 -0.654014 1.79402e-20)
(1.48725 -0.193066 7.2695e-22)
(0.365185 0.0811254 4.86716e-21)
(0.804155 0.0884181 6.39102e-20)
(0.8437 0.151596 -4.05311e-20)
(0.470264 0.10638 5.59203e-21)
(0.23573 0.0538732 8.48026e-21)
(0.425583 0.00148745 4.61923e-22)
(0.242971 0.0552573 -6.49969e-21)
(0.453006 0.0997746 4.56054e-21)
(1.33561 0.0668141 -3.96015e-21)
(0.692119 -0.619869 6.99319e-21)
(0.502712 0.00256186 -2.34243e-20)
(0.529889 0.116477 1.05491e-20)
(1.41466 -0.383782 6.46092e-21)
(0.465736 -0.000594647 -5.5106e-22)
(0.21624 0.046923 -1.71073e-22)
(0.952351 0.154705 3.32952e-20)
(0.719922 4.51417e-05 4.91437e-20)
(1.13162 0.213252 2.73334e-20)
(1.06354 0.217567 -1.95182e-21)
(0.257112 -0.0265203 -2.16817e-20)
(1.37212 0.126894 1.37055e-21)
(1.03767 0.214225 -5.33376e-21)
(0.319139 -0.546189 5.76544e-21)
(0.136494 0.00224733 7.01235e-22)
(1.08469 0.219008 -1.15504e-20)
(1.03237 -0.485036 1.3253e-20)
(1.18153 -0.111649 1.15471e-21)
(0.50635 0.113111 -1.14719e-20)
(0.792946 0.148369 1.36098e-21)
(1.09887 0.218806 1.50047e-20)
(0.883754 0.00911049 -2.93875e-20)
(0.412894 0.0902723 -1.01371e-21)
(0.981227 0.111603 2.10865e-20)
(1.32554 -0.247568 6.88391e-21)
(0.667681 0.0427528 -1.12609e-20)
(0.776446 -0.332403 2.20579e-20)
(0.831643 0.165021 9.59218e-21)
(0.327734 0.071991 -3.25165e-21)
(1.2439 -0.539943 8.33752e-21)
(0.820555 0.176843 2.87952e-20)
(1.2695 0.128235 6.3859e-21)
(0.222752 -0.330153 3.78051e-20)
(0.891156 0.147384 -1.15504e-21)
(0.494907 0.0931043 -1.77459e-21)
(1.13628 -0.580038 -7.25319e-21)
(1.36366 -0.38186 -5.34342e-22)
(0.403472 0.0887144 7.65823e-21)
(0.327039 0.0735038 1.24517e-20)
(0.411589 0.0888511 -1.85439e-22)
(0.626047 0.054876 3.03702e-23)
(0.867525 0.179389 1.93715e-20)
(0.784721 0.0660759 -1.1391e-19)
(1.14009 0.213024 1.09463e-21)
(0.394747 0.110629 -5.71175e-21)
(1.15258 0.179687 6.75805e-21)
(1.17258 0.137367 7.01633e-21)
(1.12252 0.213447 -9.59939e-21)
(1.27857 0.181295 -3.30387e-22)
(0.205342 0.0456454 -4.88445e-21)
(0.0208089 -0.155452 3.3073e-21)
(0.700129 0.11055 4.84261e-20)
(1.14995 0.173881 2.25906e-20)
(1.3549 -0.460939 6.01684e-21)
(0.817424 0.179777 -1.14618e-20)
(0.937875 0.1314 -7.13483e-22)
(0.817866 0.113354 5.91011e-21)
(0.48785 0.000584027 7.84206e-21)
(1.0467 0.207919 -3.56817e-20)
(1.04377 0.0965998 6.4275e-22)
(0.399705 0.00105774 1.84563e-20)
(0.935281 0.00605449 -1.8926e-20)
(0.09787 -0.302003 -1.12094e-20)
(1.01599 -0.130419 -4.78006e-21)
(0.980595 0.237237 -3.88066e-20)
(1.11499 0.215361 -3.18612e-20)
(1.24578 -0.473706 5.02909e-21)
(1.10878 0.217494 1.84939e-20)
(0.0139688 -0.0398713 -1.20158e-22)
(0.444998 0.0982752 1.29733e-20)
(0.288769 0.0626229 1.05495e-21)
(1.15734 0.211172 -1.17299e-20)
(1.0431 0.223431 6.19619e-21)
(0.326839 0.0730351 -2.02071e-21)
(1.04931 0.11721 2.33387e-20)
(0.224564 0.00130364 5.4561e-21)
(0.972581 0.000498967 -2.24973e-21)
(0.97289 0.000637286 1.86878e-20)
(0.975069 -0.000163292 3.76304e-20)
(0.972609 -0.000665622 2.33169e-20)
(0.975568 0.000139079 2.7475e-20)
(0.975228 0.000237379 3.10964e-20)
(0.973465 0.00076183 -7.44485e-21)
(0.975099 -9.76022e-05 -8.99414e-21)
(0.97521 0.000221681 4.68282e-21)
(0.971643 0.000698932 7.91349e-21)
(0.97271 0.000284742 1.1706e-20)
(0.973131 0.000419466 -3.92925e-23)
(0.973958 -4.33048e-05 2.02302e-21)
(0.974497 -0.00055678 5.35607e-21)
(0.972245 -0.00127174 -4.74598e-20)
(0.975798 0.000556151 1.24988e-20)
(0.973957 -0.000142595 5.17701e-20)
(0.973066 -0.000296315 9.14583e-22)
(0.975959 4.52622e-05 1.57548e-22)
(0.535425 0.103603 1.01131e-21)
(0.97245 0.00119542 2.26507e-20)
(1.47594 -0.0327183 -5.17704e-21)
(1.33036 0.0923971 3.54199e-21)
(1.23844 0.137782 4.90783e-21)
(0.776287 0.00146812 1.78876e-20)
(1.30936 0.0719248 5.47481e-21)
(0.461552 0.0999114 -1.48229e-20)
(1.26336 -0.34916 2.97361e-21)
(1.11745 0.208435 -1.05484e-20)
(1.23809 -0.545994 1.68714e-20)
(1.14515 0.189612 9.58673e-21)
(0.656056 0.32069 -1.51334e-20)
(0.907648 0.207272 -4.71694e-20)
(0.519706 0.190601 5.07699e-20)
(0.176196 -0.429776 -1.3953e-20)
(0.418544 0.000966259 -2.23972e-21)
(0.570706 0.116974 2.52534e-21)
(0.850096 -0.670448 -7.82895e-21)
(1.20298 0.202769 2.00827e-20)
(0.851125 0.050541 -5.55114e-20)
(0.998091 -0.405371 2.68901e-20)
(0.849902 0.136079 -2.50984e-20)
(0.663476 0.268316 5.23924e-20)
(1.11748 0.120704 -7.3327e-21)
(0.0253689 -0.0244449 4.98093e-21)
(0.855474 0.180471 -3.28184e-21)
(0.51747 0.106794 3.47521e-21)
(1.0977 0.171172 -8.78572e-21)
(0.803196 -0.347104 3.32032e-21)
(0.169864 0.0369655 2.11645e-21)
(0.923717 0.200061 2.19934e-20)
(1.00809 0.271097 2.70592e-20)
(0.412537 0.0922869 -2.28303e-20)
(1.35197 -0.418894 -5.9032e-21)
(0.391329 -0.589759 -3.41192e-20)
(1.00924 0.254761 7.64193e-21)
(1.0681 0.2115 -1.67395e-21)
(0.956689 0.19067 -5.99494e-20)
(0.162653 0.000449293 -1.66031e-20)
(1.04775 0.203946 6.20965e-21)
(0.789072 -0.00184966 -1.73288e-20)
(0.737812 0.0360914 1.57864e-20)
(1.16098 0.209862 1.1867e-21)
(0.92989 0.0012355 -4.1859e-20)
(0.320544 0.000867288 -2.83254e-21)
(0.712666 0.0357422 3.92285e-20)
(0.146751 -0.000496285 -5.73367e-21)
(0.85098 0.145428 2.55831e-20)
(1.12184 0.212496 -3.21254e-22)
(0.850055 0.192755 -8.29833e-21)
(1.01913 0.260846 -1.68626e-20)
(0.583868 0.0902538 -7.02879e-22)
(1.05755 0.206329 -4.11089e-21)
(-0.000189747 -0.0515609 -1.87176e-20)
(1.38017 0.119881 6.2315e-22)
(0.199829 0.0481564 -4.15732e-21)
(1.07071 0.073956 -1.49503e-21)
(0.0554978 -0.22358 2.48697e-20)
(1.01752 -0.361227 1.28596e-20)
(0.880662 0.18631 -4.09051e-21)
(1.03121 0.233793 -1.78071e-20)
(1.3031 0.106844 -1.04799e-20)
(0.850496 0.228289 -8.59063e-21)
(0.310906 0.0639291 1.33826e-21)
(0.83997 0.165198 -5.08293e-21)
(0.505966 0.0920064 -2.08511e-22)
(0.513814 0.111882 7.08585e-21)
(0.227735 0.0488731 -3.65519e-21)
(0.949522 -0.360173 9.34063e-21)
(0.385006 0.0835003 2.80733e-21)
(1.21644 0.195883 4.61995e-21)
(0.250605 0.054411 1.57054e-21)
(0.175726 0.0403015 5.87495e-21)
(0.788089 0.163552 8.01088e-22)
(1.09249 -0.537179 -1.54951e-20)
(0.50654 0.109698 2.57669e-21)
(0.282827 0.0717493 -3.21563e-21)
(0.832727 0.190441 2.98506e-21)
(0.814342 0.225097 2.97759e-20)
(0.953977 -0.0538046 2.25026e-21)
(0.972314 0.000246743 1.53428e-20)
(0.760166 0.0365963 1.2635e-20)
(1.08042 0.170117 3.25373e-20)
(0.680929 -0.639923 5.88293e-22)
(0.241529 0.0620478 5.05322e-21)
(1.08578 0.126625 -1.33088e-20)
(0.989071 0.0928053 -1.99941e-20)
(0.216889 0.0527457 -1.57416e-20)
(1.01679 0.259103 -5.06811e-21)
(1.25826 -0.5409 2.3166e-21)
(0.95521 0.084708 -1.06036e-19)
(0.215415 -0.000921226 1.68992e-21)
(0.603162 0.112473 -5.62733e-22)
(0.68366 0.143402 -5.01806e-21)
(0.978566 0.147926 1.61413e-20)
(0.943013 -0.344031 -4.06581e-24)
(0.940118 0.302406 -1.41367e-20)
(0.511406 0.105526 5.9804e-21)
(1.2155 0.1505 -4.24064e-21)
(1.12118 0.126136 3.4193e-20)
(0.374008 0.0805277 1.12286e-21)
(0.992876 0.123027 -4.0953e-20)
(0.339704 0.0734221 -7.15664e-22)
(1.35666 -0.207273 -7.86584e-21)
(0.809987 0.213531 -3.28765e-20)
(0.600518 0.130272 5.74007e-21)
(0.489362 -0.538749 -5.71535e-21)
(0.863431 0.185326 1.90484e-21)
(0.187547 0.0427883 5.57961e-21)
(0.675935 0.146317 -1.58312e-20)
(0.401951 0.152928 -1.30497e-20)
(0.0293687 -0.184521 -1.24013e-20)
(1.25252 -0.385456 4.45498e-22)
(0.902805 0.0164452 -1.05915e-19)
(1.45221 -0.0482007 -9.06956e-22)
(0.213685 -0.467813 2.22902e-20)
(0.00241594 -0.0441638 1.19309e-22)
(0.96141 -0.00228929 -3.24408e-20)
(1.075 0.229119 -6.93556e-21)
(0.492426 -0.00084007 2.63585e-21)
(0.546629 -0.101808 -8.94719e-21)
(0.771091 -0.106193 -8.69557e-22)
(1.27554 -0.406973 -1.72765e-20)
(0.343956 0.0755881 8.12304e-21)
(1.00137 -0.102896 -4.56317e-21)
(1.02208 -0.212042 -4.33682e-21)
(0.212194 0.0493981 5.97777e-21)
(1.28597 0.178012 3.21564e-21)
(1.08358 0.214548 -2.63242e-20)
(0.490716 -0.485323 2.41821e-20)
(1.1976 0.201001 -2.5432e-20)
(0.326386 -0.523752 3.68802e-21)
(0.265898 0.0572113 1.59759e-21)
(0.423958 0.0911729 9.46969e-21)
(0.747388 0.160971 5.98601e-21)
(1.26026 -0.511909 -6.28177e-22)
(0.548851 0.103985 8.34898e-22)
(0.743807 0.0243233 7.1273e-20)
(1.27566 0.130002 -1.05488e-20)
(0.992415 -0.101257 1.42119e-22)
(0.990866 -0.299033 8.7691e-23)
(1.18641 0.198295 -6.72152e-21)
(0.745991 0.157455 -4.90161e-21)
(0.241443 0.0483148 -5.2916e-24)
(1.19859 0.153098 -2.80045e-20)
(0.841503 -0.00540686 -3.38124e-20)
(1.20634 0.200939 2.71047e-21)
(0.225503 0.0489 6.02588e-21)
(1.19083 0.162349 -2.92619e-20)
(0.447557 0.0973321 1.66484e-21)
(0.258125 0.0554729 -4.39652e-22)
(0.493412 0.0940304 -2.05292e-21)
(1.23336 0.194409 -6.84108e-21)
(0.815433 0.23401 -2.41643e-21)
(0.504445 0.0164209 -1.12487e-20)
(0.91453 -0.141612 5.9409e-21)
(0.520423 0.00198938 3.76977e-20)
(1.02341 -0.346798 5.49995e-21)
(0.791143 0.0672457 2.18285e-20)
(0.477929 0.0945461 -2.73282e-22)
(0.612428 -0.661614 -3.62602e-20)
(1.12139 0.213614 -1.27891e-20)
(0.454649 0.00101696 4.92591e-21)
(0.97041 0.000782667 -4.6264e-20)
(0.8159 0.165092 -4.40819e-22)
(1.154 0.208584 -4.29562e-22)
(0.414486 -0.00114409 2.20639e-21)
(0.636344 -0.0722316 3.27398e-21)
(1.23043 -0.363181 -1.21261e-20)
(0.715611 0.150182 1.13125e-20)
(1.22893 -0.218411 5.60325e-21)
(0.916931 0.154408 -1.31346e-21)
(0.839631 0.176224 -4.85678e-21)
(1.10094 0.215896 2.4682e-21)
(0.150816 0.0339591 -1.37506e-21)
(0.452252 0.0947178 1.63993e-21)
(0.86212 0.15989 5.10461e-21)
(0.239722 0.05409 -1.84864e-21)
(0.762777 -0.110831 -2.42569e-21)
(0.810396 0.159319 -7.11796e-21)
(0.418573 0.0866124 3.6825e-21)
(0.339226 0.13111 -4.5174e-21)
(1.17784 -0.366448 -8.21607e-21)
(0.0172944 -0.160191 1.96279e-20)
(0.88336 0.00964034 -2.45054e-20)
(0.390857 0.0847648 1.32133e-22)
(0.480139 0.105099 1.0661e-21)
(0.813031 0.166047 6.19026e-21)
(0.600994 0.132006 3.80214e-21)
(1.16943 0.208242 -1.05497e-20)
(1.11765 0.215556 5.08505e-22)
(0.334084 0.0713069 -2.24674e-21)
(0.482641 0.000214173 -5.4646e-21)
(0.356545 0.0749951 -3.17071e-22)
(0.53885 -0.410782 -2.87526e-20)
(1.29551 0.0864593 4.77152e-21)
(1.29061 0.176736 -4.2675e-21)
(0.326789 0.0738643 -1.06099e-20)
(1.10027 0.213222 -5.18208e-21)
(0.393242 0.0826647 -1.65925e-21)
(0.275691 0.0602859 -1.08637e-21)
(0.590867 0.129395 8.79477e-21)
(1.24513 0.192545 -6.79025e-22)
(0.577214 0.12582 5.4318e-22)
(0.980402 0.168145 7.51984e-21)
(0.0830249 -0.25071 -3.20948e-20)
(1.23918 0.194645 -8.22657e-21)
(0.829696 0.0994519 -4.75704e-22)
(0.828739 0.174264 2.16857e-21)
(0.335181 0.0732542 4.25364e-21)
(1.38844 0.0861664 2.41168e-21)
(1.47423 -0.226062 -4.14318e-21)
(0.232261 0.0520339 4.31271e-21)
(1.07636 0.225701 9.71981e-21)
(1.13014 0.213404 -4.20955e-21)
(0.962577 -0.55893 -6.24456e-21)
(1.15404 0.199216 -1.88376e-21)
(0.976064 0.160864 -2.70523e-21)
(0.817303 0.170236 -7.64819e-21)
(1.17909 0.161545 -3.27746e-21)
(0.998099 -0.100946 1.2787e-21)
(0.76258 0.214969 3.91622e-21)
(0.512918 0.234612 -1.97588e-21)
(0.246869 0.0602238 1.18914e-20)
(0.939583 -0.00235496 -7.64914e-21)
(1.12927 0.214118 -4.56971e-21)
(0.972785 0.00106688 -3.72109e-20)
(1.01671 0.207885 -2.37982e-21)
(0.245476 -0.00151378 -8.83479e-22)
(1.13955 -0.602307 2.64497e-20)
(0.299357 0.0642238 1.55638e-21)
(0.424916 0.00132517 -2.27401e-21)
(0.0377896 -0.215803 -1.28083e-20)
(0.750432 0.00113485 9.38271e-21)
(1.13106 0.209488 3.47924e-21)
(0.860372 0.250538 2.30126e-20)
(0.460259 -0.0206588 5.22867e-21)
(0.541671 0.103714 -2.49053e-22)
(0.856775 0.12182 5.69471e-21)
(1.09026 0.216492 1.16199e-20)
(0.52322 0.00243535 6.01504e-21)
(0.537052 -0.0789429 2.39653e-20)
(0.0221679 -0.171162 -2.08654e-20)
(0.855925 0.18001 1.84567e-21)
(0.950912 -0.019036 1.3204e-21)
(0.549776 0.136765 -6.7355e-21)
(1.24916 0.085459 -1.16785e-21)
(1.1049 0.20937 1.12256e-20)
(0.22701 0.0490353 1.35734e-22)
(0.520282 0.00318157 3.30547e-21)
(0.840231 0.177852 -1.22176e-20)
(1.18204 -0.589357 -3.71101e-21)
(0.856004 0.0341076 -5.37074e-20)
(0.519973 0.113702 -3.27172e-21)
(0.813978 0.173328 1.8318e-20)
(0.14848 -0.13397 -1.58973e-21)
(1.23913 0.192487 -4.38477e-22)
(0.196146 0.0429237 8.81235e-22)
(1.06228 0.234492 -3.02212e-20)
(0.188592 0.042498 3.34494e-21)
(0.332243 0.0731424 1.04407e-21)
(0.852985 -0.00525185 -1.70095e-21)
(0.46198 0.101284 6.94469e-21)
(0.46666 -0.0259588 -3.17427e-20)
(0.427414 0.0936957 -6.01893e-21)
(0.857122 0.130528 6.24089e-20)
(0.841307 0.175107 -9.59605e-21)
(0.892343 0.0522099 -1.66144e-20)
(1.22463 0.198095 -9.99358e-21)
(0.83241 0.173563 -4.4068e-21)
(0.36887 -0.384999 3.01105e-21)
(0.349056 0.0773277 1.47637e-20)
(0.421808 0.0920288 -5.85686e-21)
(0.782626 0.167407 -2.10608e-21)
(0.841626 0.169298 -4.02977e-21)
(0.237908 0.05125 -1.66868e-21)
(0.870961 0.120966 -3.7105e-20)
(0.449074 -0.009731 -1.40861e-20)
(0.922205 -0.276516 1.38408e-20)
(0.259067 0.0588115 -6.53622e-21)
(0.93025 0.133168 4.53623e-21)
(0.866837 0.18144 1.18913e-20)
(1.26603 -0.0315518 5.4437e-22)
(0.742372 0.16232 -6.19942e-21)
(1.07756 0.208277 1.46965e-20)
(1.1643 0.162214 -9.56943e-21)
(0.308511 0.067737 -8.91084e-21)
(0.640132 0.140356 -2.7964e-20)
(0.116343 -0.000908519 3.88565e-21)
(0.70374 0.194256 1.57397e-20)
(0.743374 0.147252 4.05708e-21)
(0.357646 0.218435 4.00871e-21)
(1.16058 -0.377324 8.10971e-22)
(0.000650508 -0.0771696 4.29343e-21)
(0.646103 -0.0629177 -6.18349e-21)
(0.453516 0.136995 4.72227e-22)
(0.320077 0.0710488 -3.56719e-23)
(0.400064 0.000750749 1.63611e-21)
(0.451387 0.000605701 1.05004e-20)
(0.44434 0.0982685 -1.08397e-20)
(0.872397 0.197412 2.07537e-20)
(0.879191 0.181994 -1.73927e-20)
(0.991544 -0.646523 -8.72149e-22)
(-0.00059618 -0.0521344 3.76556e-21)
(0.743736 0.331813 4.04937e-20)
(0.125263 -0.360527 9.07683e-21)
(0.21264 0.050148 -3.29897e-23)
(1.01909 -0.220047 4.15166e-21)
(1.06118 -0.156456 -3.1486e-22)
(0.962451 -0.264242 6.79225e-21)
(1.26226 -0.185351 -3.61534e-21)
(0.502196 0.130125 -5.0512e-21)
(0.00326026 -0.105418 -1.42965e-21)
(1.05495 0.215964 1.12327e-20)
(0.664005 0.144969 2.28114e-21)
(1.07773 0.218327 4.27963e-21)
(0.681976 -0.0635027 -2.3314e-20)
(0.314753 0.0693562 2.20583e-21)
(0.197591 0.0459843 1.71418e-20)
(0.868404 0.180988 -2.35103e-21)
(0.496261 0.124101 1.44379e-20)
(0.896228 -0.0195293 -4.53365e-21)
(0.853305 0.0431624 5.87002e-20)
(1.27896 -0.295873 9.421e-21)
(1.11103 0.213398 6.84388e-21)
(1.48891 -0.147324 -3.12601e-21)
(0.150658 -0.340318 -1.67648e-20)
(0.806403 0.125656 -3.00383e-20)
(0.768195 -0.346742 -3.61636e-20)
(1.09427 0.21896 6.62424e-21)
(0.819053 0.170476 -8.39016e-21)
(0.639226 0.172995 -7.77542e-21)
(1.14687 0.168085 -1.79715e-20)
(0.773549 0.171052 1.106e-20)
(0.731196 0.158823 -1.82033e-20)
(0.215977 -0.0019471 1.05627e-21)
(0.949963 -0.120382 8.46008e-21)
(1.21996 0.152411 -9.3848e-21)
(0.248759 0.0618699 3.67559e-21)
(0.42104 0.0937264 -1.52871e-20)
(0.515854 0.123275 -1.81474e-21)
(0.164579 0.0338752 -3.34098e-21)
(0.41048 0.0912436 1.01725e-20)
(0.201048 0.0446794 -6.92023e-21)
(0.766295 -0.685741 8.2088e-21)
(1.03661 0.128898 -1.63777e-20)
(1.14629 0.179321 -2.49704e-20)
(0.286772 0.0741447 -7.12322e-21)
(0.58574 0.128076 1.37354e-20)
(1.04535 0.206641 2.5649e-21)
(0.867192 0.18338 -1.21366e-20)
(0.52987 0.115389 -3.80468e-21)
(0.171371 0.0376546 1.14892e-22)
(0.000489881 -0.0739209 -1.17023e-20)
(1.20712 0.201504 -3.07556e-20)
(0.741101 -0.117339 -6.79192e-21)
(1.11714 -0.629658 3.06024e-20)
(1.20302 0.154893 8.36423e-21)
(1.28366 0.111791 8.81845e-21)
(1.10602 0.217826 -6.19638e-21)
(0.0115002 -0.0947976 2.39608e-20)
(1.14924 0.140079 -3.32999e-20)
(1.05804 -0.151434 2.14208e-21)
(1.01367 0.204523 2.06066e-20)
(0.625023 0.141349 3.41754e-21)
(0.480455 0.111413 -2.37279e-21)
(0.347536 0.0781613 2.95179e-21)
(0.405396 0.0917636 4.92954e-21)
(1.13372 0.168194 2.23887e-20)
(1.00568 0.220281 -2.02647e-21)
(1.46199 -0.0475058 -6.80821e-21)
(0.899902 0.149173 -1.84747e-20)
(0.0106674 -0.0967832 1.37417e-20)
(0.569665 0.129639 -1.94984e-20)
(0.0160493 -0.108605 1.70425e-20)
(1.19669 0.183257 -1.15683e-20)
(0.454691 0.103536 -1.60419e-21)
(1.48494 -0.0701113 -1.117e-21)
(1.32259 -0.015245 1.89584e-21)
(0.876081 0.25924 -1.40931e-21)
(1.07596 0.200826 5.51007e-20)
(1.04448 0.235744 8.99908e-21)
(1.27145 0.184976 -5.16784e-21)
(0.497039 -0.000399986 -2.51893e-21)
(1.05529 0.173183 4.24318e-20)
(0.487046 0.110949 -7.01157e-21)
(0.45799 0.108638 -7.24133e-21)
(0.288768 0.0644672 -1.39688e-20)
(0.795105 0.17128 -2.04452e-20)
(0.713204 -0.687597 -1.93877e-21)
(0.875931 0.188639 6.86158e-21)
(0.0147284 -0.12161 -1.45876e-20)
(1.09648 0.200982 -1.12306e-21)
(0.792044 0.182113 -1.48631e-21)
(1.14283 0.184562 -8.31775e-21)
(0.46611 0.103941 -2.28167e-21)
(1.1182 0.0755826 -1.13186e-21)
(1.22146 -0.327485 1.47584e-21)
(0.953216 -0.332666 -6.0578e-21)
(0.173463 0.0375429 8.30567e-21)
(0.84 0.274544 -4.32108e-21)
(0.396518 -0.000727106 5.6819e-21)
(1.01722 0.142281 -3.89202e-21)
(0.93884 -0.0303264 6.65066e-21)
(0.594122 0.143696 -2.82871e-20)
(0.963326 -0.660254 6.47379e-21)
(0.389866 0.0854905 4.92015e-21)
(0.811605 -0.676017 1.17811e-21)
(0.56898 0.0823784 -3.55609e-20)
(1.18727 -0.566484 -7.08277e-21)
(1.02202 0.195381 3.38426e-20)
(0.843735 0.178938 5.01724e-21)
(0.870192 0.190806 2.18945e-20)
(1.11382 0.216095 2.04236e-20)
(1.24587 0.0913126 2.11409e-20)
(1.13689 0.211361 -2.52287e-20)
(1.16474 0.207538 1.08352e-20)
(0.973731 -0.441323 -1.11211e-20)
(0.586719 -0.663262 -1.16241e-20)
(1.17172 0.206902 -8.56324e-21)
(1.07358 0.229938 -3.12905e-20)
(1.31282 -0.0201353 6.76272e-21)
(0.748628 0.172654 3.04873e-21)
(0.488606 -0.07307 8.47175e-21)
(0.653408 -0.68032 -1.57172e-20)
(1.16556 0.020375 -6.44159e-21)
(0.873437 -0.225205 -8.2521e-21)
(1.13128 0.209664 -1.96032e-20)
(0.288087 0.0640306 5.23856e-21)
(1.1108 0.172418 2.49854e-20)
(0.79356 0.174214 -1.16433e-20)
(1.00514 0.230247 4.54073e-20)
(0.4567 -0.450652 -3.39142e-20)
(1.05667 0.235162 2.17036e-20)
(1.12253 -0.178302 4.0013e-21)
(0.0144625 -0.0317077 1.31239e-20)
(0.000736594 -0.0759161 -1.07716e-20)
(0.529453 -0.521267 4.1828e-20)
(1.11867 0.213468 -1.10657e-20)
(0.280753 0.0630633 -7.69065e-22)
(0.182101 0.0387446 3.66148e-21)
(0.402751 -0.200125 1.7853e-21)
(-9.05882e-05 -0.0337882 -5.04486e-21)
(1.18318 0.163661 -5.0053e-21)
(1.10421 0.171933 1.41578e-20)
(0.519603 0.127172 -1.2581e-21)
(0.881684 0.200259 -1.49647e-20)
(1.05427 0.23326 1.96349e-20)
(0.498408 0.109205 1.97825e-20)
(1.09115 0.170333 -1.35736e-20)
(0.326718 0.0718815 1.80849e-21)
(0.183262 -0.438337 1.41703e-20)
(1.06686 0.17068 4.20834e-21)
(0.671637 -0.0881181 -2.1128e-20)
(1.15326 0.176017 -6.5063e-21)
(0.275354 -0.515213 6.25627e-21)
(0.9567 -0.0337112 -2.91572e-21)
(0.96889 0.000468508 4.41043e-20)
(1.07513 0.229602 3.09354e-21)
(1.16901 0.20651 -2.54479e-20)
(0.92842 -0.00827658 -1.02023e-22)
(0.893476 0.241969 -9.98829e-21)
(0.302053 -0.469794 1.8506e-20)
(1.15852 0.206535 -1.91936e-20)
(1.11869 0.212428 1.888e-20)
(1.19305 0.185076 8.28071e-21)
(1.22837 0.140423 -1.34653e-20)
(0.968786 0.00059802 3.13723e-20)
(0.934655 -0.00209917 -8.14622e-21)
(0.20968 0.0510713 -6.37513e-21)
(0.383672 -0.402934 7.71431e-21)
(0.877545 0.234768 -5.70339e-21)
(1.13779 0.210088 1.77245e-20)
(0.0329786 -0.183759 -2.36507e-20)
(1.26018 0.078754 -1.07789e-20)
(0.221097 -7.23012e-05 1.18831e-20)
(0.455494 -0.000569224 6.1358e-21)
(0.863655 0.117298 -2.44318e-20)
(0.930279 0.15281 -2.70219e-21)
(0.621911 0.0595684 -5.64103e-20)
(0.853798 0.183703 -1.48569e-21)
(0.270836 -0.120311 4.24468e-21)
(0.37361 -0.000906988 -2.08876e-20)
(0.129282 -0.337867 -3.62918e-21)
(0.00303021 -0.0781214 2.89214e-20)
(0.958142 -0.125144 -4.72646e-21)
(0.11617 -0.357715 3.48932e-22)
(1.14517 -0.368195 -4.93615e-21)
(0.861609 -0.0325229 4.27668e-21)
(1.1567 0.169899 1.45829e-20)
(0.811421 0.0777836 -3.52526e-20)
(1.16272 0.205438 1.40199e-20)
(1.01422 -0.334596 -1.15182e-21)
(0.374495 0.0849121 2.90112e-21)
(0.399972 0.0369342 1.33096e-20)
(0.255673 0.0571402 2.62726e-21)
(0.348266 -0.566434 4.46053e-20)
(0.344164 -0.0190161 -1.53778e-20)
(0.284091 -0.526387 -1.41807e-20)
(0.967059 0.00123736 -1.24869e-21)
(1.06858 0.15215 1.62905e-21)
(0.443732 -0.00403736 3.23765e-21)
(1.17521 0.130002 2.08772e-21)
(0.812053 0.18578 -4.54755e-21)
(0.453215 0.0204434 -2.04719e-20)
(0.910907 0.228445 -8.77561e-21)
(1.06026 0.237314 -2.91575e-20)
(0.480435 0.0939821 -5.86358e-23)
(0.508381 0.111039 3.30296e-21)
(0.000419582 -0.0708616 -1.38847e-20)
(0.856717 0.246103 5.34037e-20)
(0.975467 0.00107538 3.21463e-20)
(0.758148 0.0999291 4.51613e-20)
(0.963128 0.00102625 2.95995e-20)
(0.908866 0.00539374 -5.65026e-20)
(0.944671 0.197472 -1.51279e-20)
(1.1105 0.147207 9.81234e-21)
(0.462509 -0.000285222 -9.62061e-22)
(0.76699 0.060059 -2.05764e-20)
(0.550918 -0.654743 2.79428e-21)
(0.485342 0.114683 8.44151e-21)
(1.07746 0.226634 -1.08935e-20)
(0.849214 0.186305 -2.00471e-20)
(0.18548 0.0451205 -1.67499e-21)
(0.847118 -0.599778 1.79317e-20)
(1.05569 0.229778 -1.31052e-20)
(1.4552 0.0173533 -1.22916e-21)
(0.96083 0.111023 -4.88471e-20)
(0.0197978 -0.174532 9.1906e-21)
(0.0293537 -0.204101 -3.66244e-20)
(1.32197 -0.268972 -6.46927e-21)
(1.15014 0.170042 5.40816e-21)
(0.345094 -0.143064 -2.68392e-20)
(1.1286 0.154207 7.7559e-21)
(0.792883 -0.631457 4.03443e-21)
(1.07234 0.229767 1.70088e-20)
(1.14564 0.186327 2.91181e-20)
(0.554479 0.142474 1.01606e-20)
(0.159437 0.0372927 2.21111e-21)
(0.222841 0.050071 -2.81633e-21)
(1.15975 0.132667 2.16062e-20)
(0.172717 0.0385144 3.74107e-21)
(0.992895 0.126631 3.90746e-20)
(0.747833 -0.052817 2.31618e-20)
(0.693884 -0.465564 1.3875e-20)
(0.704074 -0.66697 -1.38897e-20)
(0.240412 0.0533695 -2.71283e-21)
(1.00197 -0.675063 -3.6995e-21)
(0.04076 -0.230568 1.21141e-20)
(1.19027 0.153915 3.41417e-21)
(0.211333 0.0482924 -7.66056e-21)
(0.66963 -0.674677 1.85106e-20)
(1.05281 -0.66015 -2.71303e-20)
(1.23944 0.0912484 -1.84651e-20)
(1.06832 0.23346 1.25485e-20)
(0.555452 0.124464 2.62745e-20)
(0.878491 0.0192142 8.05276e-21)
(0.453787 0.101552 6.28892e-21)
(0.586523 0.116333 5.07297e-21)
(0.870298 0.0224877 -2.78949e-20)
(0.865973 0.224238 -9.89033e-21)
(0.116064 -0.135769 7.17254e-22)
(1.42869 0.063452 1.64306e-21)
(1.13698 0.17018 -1.59453e-20)
(0.449742 -0.0801363 -2.49723e-20)
(0.553759 0.1028 -1.83799e-21)
(0.98308 0.136575 7.84411e-24)
(1.38457 -0.186113 1.28815e-20)
(0.336801 -0.509633 -6.89982e-22)
(0.0154034 -0.0856699 -1.65551e-20)
(1.40083 0.0995377 -3.00676e-22)
(0.00240289 -0.0757859 -2.281e-20)
(1.34571 0.146768 -2.19287e-21)
(0.987048 0.0909297 6.10836e-20)
(0.479021 0.00102628 6.99484e-21)
(0.452645 -0.00045379 -1.38853e-20)
(0.974519 -0.0465672 8.1359e-22)
(0.0399841 -0.201879 3.08177e-20)
(0.578567 -0.0902192 1.01531e-22)
(0.302426 0.0778978 -6.37862e-21)
(0.10304 -0.000135429 -1.00235e-21)
(0.862738 0.196348 -1.65897e-20)
(0.338576 -0.555687 1.4031e-20)
(1.31009 -0.503281 -7.86048e-21)
(0.670321 -0.0524235 -2.79374e-21)
(0.508872 -0.0267266 1.03462e-20)
(0.602984 -0.0422865 -7.76758e-21)
(0.803829 -0.00212188 -4.99898e-21)
(0.47454 -0.053486 -1.73281e-20)
(0.408448 0.093768 -3.0557e-21)
(1.07802 0.222781 -7.70963e-21)
(0.601857 -0.0459743 -4.58466e-21)
(0.153881 -0.39747 -1.66992e-21)
(1.00472 0.121725 -1.39902e-22)
(1.06938 0.173269 -1.40733e-20)
(0.712236 0.0558628 -8.18916e-21)
(0.900495 0.165342 -4.52126e-21)
(0.00065298 -0.0787016 -7.7226e-21)
(0.821428 0.0848416 -1.15538e-20)
(0.493341 0.108578 -7.65266e-21)
(1.27171 -0.0409803 4.41097e-21)
(0.525976 0.108344 1.54635e-21)
(1.3844 -0.263336 -8.94758e-21)
(0.837786 0.171319 6.36499e-21)
(1.0687 0.233309 1.18809e-20)
(1.3637 0.132551 1.94519e-21)
(0.338263 0.10725 -5.17269e-21)
(0.948397 -0.183856 -7.95586e-22)
(0.197329 0.0444437 -4.61033e-21)
(0.930926 0.143206 1.51075e-20)
(1.03847 0.241402 -3.84533e-20)
(0.499534 -0.50969 -2.74654e-20)
(0.866455 0.173334 1.31268e-21)
(0.9944 0.277919 1.8459e-20)
(1.05405 0.166438 2.4698e-20)
(0.974047 0.15738 1.47114e-21)
(0.528201 0.115111 1.47723e-21)
(0.852197 -0.148812 1.74793e-21)
(0.85679 -0.263286 -8.88457e-21)
(0.867614 0.178307 -3.90686e-21)
(0.253551 0.0564969 -2.97199e-21)
(1.13497 0.14134 -1.95287e-20)
(0.885125 0.170431 -2.23561e-22)
(0.0168082 -0.153586 2.87367e-21)
(0.230755 0.0511748 1.98256e-21)
(0.906039 0.172126 -4.49723e-21)
(1.09423 0.172647 1.86906e-20)
(1.04004 -0.15021 -5.60676e-21)
(0.0285409 -0.0121979 -4.01158e-21)
(0.863787 0.167349 4.00722e-22)
(0.986437 0.000172195 -1.53887e-20)
(0.987465 0.00011156 -1.04558e-21)
(0.988882 0.00030184 -1.17927e-20)
(0.986195 -5.62528e-05 -1.63374e-20)
(0.988871 7.18708e-05 -2.64033e-20)
(0.989578 -3.00279e-05 -9.4999e-21)
(0.988182 -0.000157819 -3.28177e-20)
(0.986755 -0.000179914 2.38397e-21)
(0.987444 3.97836e-05 5.79178e-21)
(0.989041 9.40123e-05 1.71113e-20)
(0.988445 -0.000230766 -7.84676e-22)
(0.987579 3.93481e-05 -3.93324e-21)
(0.988862 -1.58069e-05 1.24559e-20)
(0.986612 -0.000557815 -2.03217e-21)
(0.988607 0.000217772 -4.0861e-21)
(0.98847 -5.85698e-05 -1.68323e-20)
(0.987694 -2.17697e-05 5.30159e-21)
(0.989648 1.12426e-05 1.41966e-20)
(0.987642 0.000242885 -2.13749e-22)
(0.986715 8.99996e-05 -1.84207e-20)
(0.979079 -0.0010361 -1.87277e-20)
(0.986031 -0.000652884 -1.09134e-20)
(0.988819 -0.000277429 1.72796e-20)
(0.988546 0.000198242 2.34846e-20)
(0.985618 2.64941e-05 4.0399e-22)
(0.98621 0.000177751 -1.69516e-20)
(0.98879 -0.000260034 -2.45866e-21)
(0.987969 0.000235069 -4.3903e-21)
(0.988108 -0.000232192 -1.33053e-21)
(0.986932 0.000365277 1.05467e-21)
(0.987821 5.37982e-05 2.56007e-21)
(0.988997 -5.02e-05 -3.50282e-21)
(0.989424 -2.76799e-05 -1.24995e-21)
(0.988071 -4.4419e-05 1.457e-20)
(1.33785 0.151726 -1.26365e-21)
(0.734871 -0.670404 3.39004e-20)
(0.0163682 -0.164804 8.60552e-21)
(0.547152 0.111271 1.92154e-21)
(0.946188 -0.0747389 1.39806e-22)
(0.878414 -0.00408456 6.71297e-21)
(1.00791 0.133171 -1.52245e-20)
(1.18373 0.128397 -3.29369e-20)
(0.0901784 -0.318925 -2.66019e-20)
(0.860745 0.178611 -2.14803e-21)
(0.867346 0.171531 6.7454e-22)
(0.634946 -0.0642135 -1.29232e-21)
(1.17168 0.132932 3.57869e-20)
(1.39974 0.100435 -1.66901e-22)
(0.896604 0.183847 -1.20342e-20)
(0.865305 0.173484 -2.76638e-21)
(0.0778772 -0.293423 1.18588e-20)
(0.31806 0.0697353 -5.47436e-21)
(0.272961 0.0601942 3.06467e-21)
(0.743885 -0.652677 -3.48852e-21)
(0.784226 0.160078 -3.74376e-21)
(1.37193 -0.454247 -1.47452e-20)
(0.20583 0.0465358 -8.99984e-21)
(0.762284 0.163854 -7.71498e-21)
(0.291112 0.0646397 3.74156e-21)
(0.166923 0.0341924 5.80062e-21)
(0.804741 0.0686744 -3.55145e-20)
(0.874775 0.161425 2.2918e-21)
(1.30751 0.16742 2.79298e-21)
(0.866205 -0.0310717 -1.26708e-22)
(0.00773563 -0.129119 6.33795e-21)
(0.962666 0.00159195 -4.04342e-20)
(0.482225 0.105022 1.11786e-20)
(0.954046 -0.127662 -6.8646e-21)
(0.543495 -0.149746 -5.39502e-21)
(0.379853 0.0835544 -4.46031e-21)
(0.902086 0.229631 3.24935e-21)
(0.0212199 -0.162415 3.26818e-20)
(0.892083 0.17668 9.30893e-21)
(0.702408 0.267484 -5.08735e-21)
(0.169787 0.00851947 9.02725e-21)
(0.222775 0.0502711 2.42256e-21)
(0.910764 0.188876 -1.88257e-21)
(0.769835 0.32311 -3.30876e-20)
(0.911151 0.143566 1.36752e-20)
(0.430325 0.0894339 -3.25198e-21)
(0.780077 0.164219 3.55037e-21)
(0.221808 0.0489544 9.97795e-21)
(0.90414 0.143066 2.65393e-20)
(0.899186 0.187566 -7.05675e-21)
(0.970129 -0.309971 4.72682e-21)
(1.2414 -0.0960848 2.53314e-21)
(0.916174 0.166588 -4.06021e-21)
(0.894653 0.185542 1.85004e-20)
(1.32021 0.0872326 -3.73846e-21)
(0.0538863 -0.252696 -1.33279e-20)
(0.865674 0.18343 -7.18464e-21)
(0.193591 0.0443122 4.29328e-21)
(0.884824 0.185989 -5.12651e-21)
(1.15618 0.135408 -9.77222e-21)
(0.977121 0.000645123 1.09428e-20)
(0.46965 0.097168 4.0593e-22)
(0.640336 0.146092 2.96375e-21)
(1.07619 0.221523 -1.72103e-20)
(1.06156 0.23742 -8.79655e-21)
(1.26058 0.186739 1.08512e-20)
(0.503818 0.110538 -1.32804e-21)
(0.99742 0.152025 2.31493e-21)
(1.33475 -0.475604 -7.75506e-21)
(0.508654 0.104359 1.92367e-21)
(1.33084 0.0993497 1.63598e-21)
(0.934483 0.165792 8.82445e-22)
(0.977687 0.249127 -8.55432e-21)
(0.201464 0.0462826 8.43707e-21)
(1.15362 0.168056 -1.0759e-20)
(0.306475 -0.487492 -2.44972e-20)
(0.933981 0.171624 -1.57912e-21)
(0.430306 -0.435622 -3.70072e-21)
(0.78267 0.256931 5.88566e-20)
(1.28042 0.178972 -6.84596e-21)
(1.22286 -0.124596 1.11712e-22)
(1.21933 0.197239 -2.90669e-20)
(0.412309 -0.103876 -1.48603e-20)
(0.884202 0.319383 1.52496e-20)
(1.16747 0.131445 -3.42374e-20)
(1.05663 0.169517 1.57026e-20)
(0.850411 0.0160112 2.97946e-20)
(0.377037 0.0838321 1.86451e-21)
(0.901401 0.13671 9.14467e-21)
(0.13107 -0.271728 -4.18776e-20)
(0.911136 0.16858 -4.90239e-21)
(0.230533 0.0520366 -6.83649e-21)
(0.98567 0.000730885 -1.10624e-20)
(0.848059 -0.155638 1.47986e-21)
(0.143825 0.0322197 -7.83985e-23)
(0.465487 -0.0496062 4.07212e-20)
(0.914236 0.149409 2.88504e-21)
(0.684752 0.170727 -1.3776e-20)
(1.25664 -0.047461 9.05837e-22)
(1.11389 0.149632 -2.85487e-20)
(0.10802 -0.335838 -2.67954e-20)
(0.490382 0.106484 1.03807e-20)
(1.21708 -0.39701 1.26261e-20)
(0.271035 0.0600781 4.98281e-21)
(0.846339 -0.0372927 8.57822e-21)
(1.30612 0.166083 -1.27897e-21)
(1.15241 0.133772 9.47532e-21)
(1.31492 -0.450439 1.44209e-20)
(0.833174 0.0901949 -2.46102e-20)
(1.23493 0.192429 1.43244e-20)
(0.408023 -0.0402847 -1.20361e-21)
(0.886817 0.155056 5.15597e-20)
(1.2018 0.201313 -1.28268e-20)
(0.190884 0.042845 5.05701e-21)
(0.763073 -0.00205575 1.06316e-20)
(0.201968 0.044481 -1.44872e-21)
(0.992319 -0.678239 1.29936e-20)
(0.997328 -0.287562 2.16772e-21)
(0.75567 0.0517375 4.39887e-20)
(0.907296 0.191108 -5.12038e-21)
(1.14207 0.140848 -9.01936e-21)
(1.05366 0.241052 -3.71085e-20)
(1.19785 0.176525 -1.75166e-21)
(1.08717 0.217925 -1.13975e-20)
(0.89278 0.189757 -1.53636e-22)
(0.50227 -0.0223523 3.72008e-20)
(0.819992 0.28321 -1.98459e-20)
(0.381508 -0.13083 8.46095e-22)
(0.000361291 -0.069998 1.56096e-20)
(0.914153 0.195308 -8.58166e-21)
(0.246828 0.0548856 4.50753e-21)
(0.681832 0.0585816 3.93184e-20)
(0.527817 -0.0654257 -3.65891e-23)
(1.18119 0.203328 -1.76091e-20)
(0.222193 0.0504628 5.60738e-21)
(0.795944 0.0892496 -8.53443e-20)
(0.251911 0.0568604 -7.87119e-21)
(0.56765 0.144171 1.13712e-20)
(1.08244 0.218102 1.15635e-21)
(0.685425 -0.101053 -9.49469e-21)
(0.747904 0.0998385 4.51361e-21)
(0.601203 0.298909 8.90268e-21)
(0.000312787 -0.0678909 1.49749e-20)
(0.912068 0.132318 -1.88053e-20)
(0.672703 0.122051 -2.498e-21)
(0.891092 0.196634 -7.45476e-21)
(0.525979 0.11623 -9.5502e-21)
(0.235093 0.0529111 -2.51551e-21)
(0.662815 0.263776 -2.96851e-20)
(0.907628 0.197793 1.80331e-21)
(1.08899 0.223691 -3.45603e-20)
(0.94798 -0.318388 7.01638e-21)
(1.23315 -0.110839 -7.0039e-23)
(1.16571 0.206189 4.22328e-21)
(1.31365 0.165595 2.87577e-21)
(0.360643 -0.385149 4.81753e-21)
(1.10388 0.14663 2.96818e-20)
(1.1547 -0.583965 -6.77913e-21)
(0.236861 0.000876455 -9.66644e-21)
(0.00187085 -0.0951046 9.41536e-21)
(0.925605 -0.53904 -2.46558e-20)
(1.25611 -0.0166768 1.14668e-20)
(1.19366 0.200057 -1.63596e-20)
(0.90463 0.221962 -2.38257e-20)
(0.541722 -0.0315151 -2.93329e-21)
(0.20255 0.0423839 3.01535e-22)
(1.04561 0.197065 4.36186e-21)
(0.199807 -0.00302326 5.46736e-21)
(1.1967 -0.147411 8.99834e-22)
(1.15075 -0.166817 -1.54093e-21)
(0.900675 0.206433 -1.11056e-20)
(0.542228 -0.137293 7.59068e-21)
(0.917154 0.206409 7.9236e-21)
(0.500567 -0.0887579 8.72765e-21)
(0.181872 -0.220014 -4.46919e-21)
(0.899998 0.00654017 9.9957e-20)
(0.0187303 -0.14338 2.10832e-20)
(1.13158 0.143602 2.41734e-20)
(-6.40662e-05 -0.0661036 4.85914e-21)
(0.840828 0.155118 -3.79085e-21)
(1.06978 0.199814 3.83192e-20)
(0.482032 0.000139461 1.02335e-21)
(1.00629 0.125857 -7.26874e-21)
(0.329595 0.0902979 1.77723e-21)
(0.462371 -0.0828075 -6.98301e-21)
(1.21655 0.199459 -5.58587e-21)
(0.933365 0.137993 -6.9169e-21)
(0.0136678 -0.112621 1.24538e-20)
(1.19049 0.183369 -1.04847e-20)
(0.681304 0.147836 -3.59377e-21)
(0.186782 -0.43143 -1.75034e-20)
(1.09083 0.145272 -8.00046e-20)
(1.08553 0.216565 1.72186e-20)
(1.12806 0.141816 -3.45771e-20)
(0.49946 0.153387 1.37493e-20)
(0.605896 -0.0330131 3.42705e-20)
(0.344225 -0.564315 -1.88941e-20)
(0.544298 0.118791 -5.37171e-22)
(0.717771 0.0762526 7.30603e-20)
(1.01058 0.130695 -4.5507e-20)
(0.845508 0.184628 9.78346e-21)
(1.44378 -0.0585484 -7.2522e-22)
(1.14469 0.206963 2.28376e-20)
(1.06962 0.148333 -1.03061e-20)
(0.861271 0.0368916 2.44703e-20)
(1.25112 -0.313644 -6.72066e-22)
(0.865154 0.0289557 -6.61175e-21)
(0.463925 -0.09799 -1.5328e-20)
(0.927741 0.221752 1.68184e-20)
(1.11428 0.141754 4.34117e-20)
(1.15846 0.205059 7.34636e-21)
(0.0109007 -0.0867688 -1.34111e-20)
(0.254306 -0.481773 -1.78179e-21)
(0.738015 -0.47979 4.79763e-21)
(0.735707 0.266723 -3.22288e-20)
(0.751126 0.124561 5.30923e-20)
(0.75225 0.187805 -1.02445e-21)
(0.919769 -0.264284 4.7124e-23)
(1.04452 0.244392 2.26347e-20)
(0.903266 0.15553 -2.40855e-20)
(0.724834 0.156825 -1.14399e-20)
(1.4423 -0.11553 5.03633e-21)
(1.03455 0.131783 -3.49081e-20)
(0.227885 0.000985868 -3.08284e-22)
(0.905528 0.260823 -2.26381e-20)
(1.10026 0.148285 -2.95123e-20)
(0.668855 0.13899 -5.11132e-21)
(0.988895 -0.0571173 -2.2896e-21)
(0.393371 0.0836731 -2.77554e-21)
(1.26963 -0.312575 -5.95822e-21)
(0.514633 -0.114743 -2.1133e-20)
(6.30568e-05 -0.0473747 3.88553e-21)
(0.855332 0.164504 -1.69965e-20)
(0.434148 0.000273562 1.1254e-20)
(0.622822 0.136505 -2.47415e-21)
(1.47482 -0.26348 5.6478e-21)
(1.432 -0.358079 -5.95047e-21)
(1.21006 -0.231922 7.08823e-21)
(0.952889 -0.0521444 2.37635e-21)
(1.06708 0.145602 -2.61593e-20)
(0.962484 0.000377531 -1.18506e-23)
(0.802547 0.0580018 1.70328e-20)
(0.917043 0.235883 3.19552e-22)
(1.2396 0.0364464 -3.28771e-21)
(0.500598 -0.0750929 2.30129e-20)
(0.729568 -0.00297581 1.71148e-20)
(0.897051 -0.00890045 -7.38662e-20)
(1.1243 0.20895 -4.25735e-20)
(0.999928 0.21188 2.74159e-20)
(0.821818 0.0321656 7.73343e-20)
(0.931277 -0.0674799 1.60409e-21)
(0.0946495 -0.327222 1.35106e-20)
(0.923292 0.244239 1.42278e-20)
(0.857764 0.000182216 2.28863e-20)
(1.09916 0.216184 5.13481e-21)
(1.04391 -0.14582 6.14697e-21)
(1.03588 0.108023 3.87645e-21)
(1.10798 0.212127 -5.32635e-20)
(0.915928 0.00483064 3.6764e-20)
(1.07034 0.219029 1.05338e-20)
(1.42698 -0.214043 3.15597e-21)
(0.161487 -0.156998 -1.75109e-20)
(0.825785 0.161356 3.34694e-21)
(0.247565 -0.0020397 -7.12752e-22)
(0.983335 0.00080315 -1.21851e-21)
(0.341641 -0.030432 -1.17122e-20)
(0.01342 -0.155516 6.27958e-21)
(1.3879 0.0754965 -4.61289e-21)
(0.863804 0.109234 3.41621e-20)
(0.261467 0.0692312 -1.33184e-20)
(0.328284 0.0722537 -2.32705e-21)
(0.926692 0.184828 5.79516e-20)
(0.028755 -0.169535 2.22437e-20)
(1.09724 0.14601 1.40648e-20)
(0.363959 0.0811937 -5.45189e-21)
(1.17149 0.191336 -2.73381e-21)
(0.926853 0.239425 4.74616e-20)
(1.04115 0.229814 3.51358e-20)
(0.951588 -0.0839891 4.17886e-22)
(0.424977 -0.0894314 2.12401e-20)
(0.493309 0.0486502 -9.27897e-21)
(1.00055 0.274748 -1.62684e-20)
(0.956867 0.144277 -1.0869e-20)
(1.01318 0.141389 -8.90921e-21)
(1.15959 0.206091 -2.14309e-21)
(0.867967 -0.259105 4.80579e-21)
(0.774306 -0.669298 -7.51127e-21)
(0.146153 -0.166401 4.31551e-21)
(1.08713 0.146982 4.92243e-20)
(0.943121 0.237184 2.01603e-22)
(0.229505 0.00239394 7.20189e-21)
(0.929265 -0.000259001 1.93711e-20)
(0.2522 0.000977644 3.48829e-21)
(0.944017 -0.047318 -3.38907e-22)
(0.75942 0.00263358 -4.75237e-21)
(0.881635 0.139252 1.19818e-20)
(0.399557 0.0888702 7.29256e-21)
(0.0178298 -0.170624 -2.60002e-20)
(0.950461 -0.152604 5.79487e-22)
(0.259276 0.00125054 -5.18081e-21)
(0.935138 0.00117798 -1.94835e-21)
(0.94321 -0.000534215 6.41941e-21)
(0.772871 -0.0973658 -5.54132e-21)
(0.960742 0.294424 -4.09283e-20)
(0.327991 0.00176352 -1.06989e-20)
(1.01977 -0.198151 -2.73095e-21)
(0.362338 -0.143637 2.40729e-20)
(0.130768 -0.0904586 -1.6196e-22)
(0.0137673 -0.151197 -4.2845e-21)
(0.278014 0.0585508 4.46769e-21)
(0.862063 0.1576 3.02012e-20)
(0.696446 -0.097188 1.12349e-20)
(1.10161 -0.617555 7.05295e-21)
(0.335835 0.00328909 2.83915e-21)
(0.944948 -0.00144661 7.54145e-21)
(0.968886 0.196168 -2.98908e-20)
(0.00873652 -0.102036 1.38923e-20)
(1.12228 -0.170193 -5.61761e-22)
(0.834086 -0.0418356 -3.4215e-21)
(0.957738 0.234074 8.39072e-20)
(0.97087 0.230229 -1.63621e-20)
(0.251901 0.00186444 6.71936e-22)
(0.982622 0.225695 7.01036e-20)
(0.946382 0.00220973 -4.18095e-20)
(0.33103 -0.535787 -3.29544e-20)
(1.09629 -0.410125 1.55411e-20)
(1.01039 0.144555 -5.71213e-20)
(1.00415 -0.101327 -3.11777e-21)
(0.961227 0.0882021 -1.27562e-20)
(1.03799 -0.614113 8.09947e-21)
(0.555348 -0.124243 3.5678e-22)
(0.409769 0.0893207 -3.9456e-21)
(0.341961 -0.557416 1.93637e-20)
(1.36958 -0.421534 1.48698e-20)
(0.248009 0.0506109 -1.2641e-22)
(1.0403 0.250563 -1.32085e-20)
(0.308339 0.0912195 -1.57851e-20)
(0.884303 -0.0450175 5.57412e-21)
(1.16005 0.179797 -7.3843e-21)
(0.198474 -0.205925 -1.64712e-20)
(0.451123 -0.244817 2.45771e-21)
(0.121605 0.0262217 6.12287e-21)
(0.554545 -2.01137e-05 3.75047e-21)
(1.05621 -0.382267 2.46167e-20)
(0.94779 0.140917 -1.64995e-20)
(0.208076 0.0443848 1.08451e-20)
(0.919054 -0.549696 -2.14819e-20)
(0.939123 0.186635 4.80015e-20)
(0.954027 -0.179144 -4.70814e-21)
(1.00155 -0.0963177 3.03243e-22)
(1.20238 -0.155058 -2.91285e-22)
(0.617891 0.173409 -1.68103e-22)
(1.27421 -0.16486 4.3867e-21)
(0.610624 -0.0247358 -5.94439e-21)
(1.4876 -0.0822064 1.11586e-20)
(0.141861 0.0334635 -3.84301e-21)
(1.08416 0.144611 -3.53891e-22)
(1.015 0.135242 4.76272e-20)
(1.00291 0.2711 -2.69614e-20)
(1.18909 0.0919778 -1.89293e-20)
(0.21295 -0.00215913 1.75943e-21)
(0.538196 0.000594461 4.54e-21)
(0.779471 0.0350759 1.00638e-20)
(0.272533 0.00114652 8.18995e-22)
(1.08047 0.21667 1.88373e-20)
(0.44182 0.0956621 -6.77838e-21)
(0.993165 0.220556 7.4767e-21)
(1.053 0.227837 1.33364e-20)
(1.06375 0.181437 -2.11502e-20)
(0.382054 0.041926 -6.87178e-23)
(0.0323654 -0.137314 1.98876e-20)
(0.919369 0.0692776 -8.73499e-21)
(0.570951 0.000220616 2.57952e-20)
(0.963598 0.000699584 -9.86823e-23)
(1.21322 -0.127658 -4.06109e-22)
(1.09884 0.199138 1.10806e-20)
(1.41545 -0.0850142 1.99599e-21)
(0.942104 -0.00285955 -3.09726e-22)
(1.01223 0.13786 2.03413e-20)
(1.20033 -0.138778 -1.3591e-22)
(1.14315 -0.163946 4.29372e-21)
(0.921648 0.127933 -6.31052e-21)
(1.01687 -0.20541 -3.30077e-21)
(0.957287 -0.0484567 -2.86564e-23)
(0.321923 -0.0201999 -2.02489e-20)
(0.42324 0.0920826 3.74168e-22)
(1.37093 -0.213808 7.52046e-21)
(0.857391 -0.0412106 8.06e-21)
(0.510736 0.294238 -6.21923e-20)
(1.23339 -0.100916 -1.13094e-21)
(1.17172 0.146207 -2.64727e-20)
(1.30512 -0.516656 6.4252e-22)
(0.888109 -0.0431332 6.65837e-21)
(0.927908 -0.0671833 5.00763e-21)
(0.965652 0.144974 -2.10687e-20)
(0.939035 0.137479 -5.78701e-20)
(0.577794 0.0103997 -1.28423e-20)
(1.0137 0.267479 9.18262e-21)
(0.865682 -0.284253 7.71764e-21)
(1.26485 0.186731 -5.81827e-21)
(0.907356 0.0148811 -1.71302e-20)
(0.45844 0.0965049 -7.92063e-21)
(1.16857 0.144006 2.34391e-20)
(0.34693 -0.530249 -1.00831e-20)
(1.0567 0.234963 -4.98466e-22)
(1.13731 0.213043 -7.10118e-22)
(1.29082 0.112596 -2.42536e-21)
(0.46429 0.102045 4.74681e-21)
(1.02009 -0.320928 -4.04858e-21)
(1.01372 0.17516 -2.1645e-20)
(0.811871 -0.0211309 2.67942e-20)
(1.01861 0.254319 -1.91794e-20)
(0.843686 0.102672 1.55043e-20)
(0.10228 0.0237103 7.702e-21)
(1.19687 0.201712 8.38188e-21)
(1.2083 -0.341562 -2.38311e-21)
(0.494495 -0.0595366 -1.20621e-20)
(0.487585 -0.0871143 -2.32493e-20)
(1.0718 0.141188 2.78939e-20)
(0.83997 -0.295876 1.32288e-20)
(0.934663 -0.449698 2.51649e-21)
(0.267548 0.0672504 1.15667e-20)
(0.954173 -0.113778 -9.27157e-22)
(0.671792 0.257889 3.85858e-20)
(1.04385 -0.328648 6.89262e-21)
(0.824361 0.000892619 4.54204e-22)
(0.876793 -0.279059 3.22788e-21)
(0.838326 0.000919041 -1.06695e-20)
(1.04576 0.22771 2.52511e-20)
(1.02045 0.263459 -4.21407e-21)
(0.965685 0.117443 -4.69436e-20)
(0.366063 -0.571452 -1.09299e-20)
(0.9237 -0.0403646 1.8803e-21)
(1.12849 -0.375559 5.98677e-21)
(0.519899 -0.00129619 -1.44074e-21)
(0.131303 -0.00667604 -3.57965e-20)
(0.538927 7.35009e-05 2.14065e-21)
(0.97156 -0.0606009 -9.08033e-22)
(1.25279 -0.0388844 2.1946e-21)
(0.553041 0.00149475 -3.00027e-21)
(0.0291575 -0.0881764 9.81203e-21)
(0.87785 -0.266495 7.30199e-21)
(0.817965 0.32549 6.53976e-22)
(0.950963 0.187369 8.38288e-21)
(0.950269 -0.0904316 -6.53487e-21)
(0.361533 -0.0447694 3.69095e-20)
(1.02541 0.258991 3.54489e-20)
(0.831811 -0.014024 5.99292e-21)
(0.944959 0.190521 6.9915e-21)
(0.539189 -0.0668391 -1.86954e-20)
(0.611405 0.202768 3.76893e-21)
(0.970554 -0.0571665 -2.93234e-21)
(0.511187 0.0855642 3.75891e-23)
(0.0293262 -0.0790998 -1.35386e-20)
(0.947904 -0.0889445 -3.06894e-22)
(0.356507 -0.0581359 4.75826e-21)
(1.23423 0.142313 -8.11053e-21)
(1.13382 0.212639 5.67692e-21)
(1.01411 0.131665 -2.68784e-20)
(0.700838 0.236473 2.65167e-20)
(0.85182 -0.000178843 -5.58088e-21)
(0.247987 0.0535383 4.27741e-21)
(0.206331 0.00292215 -7.99137e-22)
(0.779869 0.16743 4.35588e-21)
(0.176193 0.000682171 5.1275e-21)
(0.825538 -0.299961 -1.12831e-20)
(0.565424 -0.0898015 1.17008e-20)
(1.21718 0.199024 1.5514e-20)
(0.264413 0.0572415 8.517e-22)
(0.927587 -0.0153599 -4.73835e-21)
(1.27508 -0.17882 -4.35586e-21)
(0.100436 -0.0398853 -3.34165e-20)
(0.680795 0.148797 2.08119e-21)
(0.567217 0.00273473 1.57348e-20)
(0.952535 -0.0957292 8.23148e-21)
(0.73284 0.158486 -1.23962e-21)
(1.44492 -0.0771193 3.75178e-21)
(0.845887 0.0941005 -2.6002e-20)
(0.260861 0.0595087 -1.99799e-21)
(0.764582 0.164316 -6.67154e-21)
(0.313072 0.0673444 4.64475e-21)
(0.89707 0.0487648 1.92788e-20)
(0.231864 -0.00284319 3.04968e-21)
(0.899991 -0.0185111 1.82961e-21)
(0.807776 0.174029 -9.63223e-21)
(1.14659 0.175683 -6.79123e-21)
(0.505587 -0.0465821 -1.57967e-21)
(0.820074 0.00126893 -1.28886e-20)
(0.672589 -0.0238936 -2.21479e-20)
(1.14492 0.113704 -1.69058e-21)
(0.747023 -0.226229 1.63718e-20)
(0.622091 0.135365 8.85667e-21)
(0.691624 0.161232 -2.11005e-20)
(0.798439 0.170141 3.37472e-22)
(0.790212 0.166941 1.18859e-20)
(0.526004 -0.0908165 -1.69744e-20)
(0.190855 0.040669 1.00655e-21)
(0.309286 -0.0140808 1.9083e-20)
(1.11491 0.215226 1.17261e-20)
(0.28997 -0.000219725 -4.96923e-21)
(0.00234417 -0.0967222 1.50357e-20)
(0.291171 -0.0352758 -2.84204e-20)
(0.70611 0.00214317 1.67884e-20)
(0.903872 0.192783 2.74002e-21)
(0.266643 0.0616317 4.88667e-21)
(0.807044 0.178054 1.20445e-20)
(0.189959 0.0394218 -3.96008e-21)
(0.948798 0.0839387 -5.55924e-20)
(0.393886 -0.591486 2.47405e-21)
(1.19467 0.155986 8.83209e-21)
(0.892129 0.253622 2.01752e-20)
(0.282042 0.0628608 -9.35597e-21)
(0.964052 -0.000231771 9.28314e-22)
(0.415978 0.091739 5.76199e-21)
(0.962238 0.187214 1.53541e-20)
(0.965758 0.00267169 1.03303e-20)
(0.322069 0.00398895 4.11762e-21)
(0.583659 -0.108656 1.49057e-20)
(1.14783 0.207561 3.54334e-21)
(0.506612 -0.0054896 4.15744e-21)
(0.372895 0.101302 2.33509e-21)
(1.00592 0.270413 1.19596e-20)
(0.413887 0.0911381 2.10916e-21)
(0.361307 0.0795914 9.60895e-21)
(0.916028 0.174285 -3.65141e-20)
(0.580259 0.0210777 -3.64583e-21)
(1.09181 0.198262 -1.42686e-21)
(0.5731 -0.0995281 -1.87315e-20)
(0.837179 0.0281763 -7.8666e-20)
(0.959497 0.273551 1.02561e-20)
(0.735997 0.19467 2.1058e-20)
(1.23599 0.0965661 3.16719e-21)
(0.969263 0.000979416 1.45468e-20)
(1.244 0.0172641 1.39319e-20)
(0.219791 0.0495861 -1.40444e-22)
(0.822443 0.188611 4.57494e-21)
(0.898319 -0.0170031 3.39366e-22)
(0.953501 -0.207756 1.35075e-21)
(1.00375 -0.163917 -2.93335e-21)
(0.440109 0.0962147 -1.15183e-20)
(0.268532 0.0586577 2.57143e-21)
(1.14261 0.208127 -1.05907e-20)
(1.00573 0.220611 -3.06423e-21)
(0.974202 0.145804 -5.67493e-21)
(0.193585 0.0432744 -1.04023e-21)
(0.947314 -0.07656 -1.3632e-22)
(0.735189 0.0920711 -2.50535e-21)
(0.935316 0.0799877 1.22809e-20)
(0.158087 0.0382229 -2.88685e-21)
(0.650597 -0.112618 -2.6424e-20)
(0.712531 -0.599938 7.46565e-21)
(0.285354 0.00197815 -1.6185e-20)
(0.264284 0.00149055 -7.83189e-23)
(0.509265 -0.00112621 -6.93594e-21)
(0.525811 -0.0011677 -1.40368e-20)
(0.539066 -0.00060847 2.09876e-22)
(0.552735 0.000423487 1.30972e-22)
(1.12457 0.119906 5.60581e-21)
(0.542421 -0.113996 -6.13399e-21)
(0.565382 0.000534492 -1.19326e-20)
(1.02078 0.171703 1.06188e-20)
(0.823092 -0.108727 1.44281e-20)
(1.02177 -0.162093 1.03642e-20)
(0.945312 -0.150138 -3.78663e-22)
(0.305392 0.0680628 -7.44044e-21)
(0.559877 0.0176786 4.97728e-22)
(0.665823 -0.0233407 -2.81426e-20)
(1.24784 -0.0710132 1.80151e-21)
(0.917233 0.102837 6.75796e-20)
(1.00208 0.235967 1.78721e-20)
(0.840318 0.173466 -4.62337e-21)
(0.864486 0.0137022 5.86706e-20)
(0.946009 0.0810693 2.41088e-20)
(1.05803 0.221996 4.21268e-21)
(0.726184 0.149132 -1.47845e-21)
(0.945554 0.115401 1.66811e-20)
(0.851664 -0.0356486 -1.79437e-21)
(0.944298 -0.239941 -6.5851e-21)
(0.938523 -0.00974207 -3.62682e-21)
(0.388511 0.0860392 -3.37002e-21)
(0.238869 0.0513907 -8.05079e-22)
(0.244293 0.0559154 -5.87863e-21)
(1.14231 0.212794 7.72192e-22)
(0.621236 0.126274 3.59946e-22)
(0.609111 -0.0193119 4.96273e-20)
(0.807259 0.0459983 -4.21825e-21)
(1.1112 0.124975 -5.19437e-20)
(1.34127 0.148577 -3.15582e-22)
(0.587286 0.161101 -9.58878e-21)
(0.539257 -0.0910065 3.66821e-22)
(0.433266 -0.00732632 5.36762e-21)
(0.735601 0.333464 4.78394e-20)
(0.908837 0.203381 9.06526e-22)
(0.408011 0.0891614 1.04282e-20)
(0.611422 0.139036 -2.88158e-21)
(1.169 0.207876 -6.773e-22)
(1.12102 0.141856 -3.01451e-20)
(0.762249 0.16944 -1.41698e-20)
(0.914263 0.0686527 3.6252e-20)
(0.466001 0.101511 -2.06546e-21)
(0.950615 -0.111466 1.00524e-21)
(0.862729 0.044242 -4.33471e-21)
(0.577662 -0.00120112 1.25252e-20)
(0.320323 0.0700412 -8.55134e-21)
(1.09759 0.215175 1.39453e-20)
(1.12799 0.209219 -4.2853e-21)
(0.555168 0.128532 1.5768e-20)
(1.23825 0.192697 8.99652e-21)
(0.58939 0.130308 3.78998e-22)
(1.10302 0.216366 5.03532e-21)
(1.04256 0.193967 6.14331e-21)
(0.420216 -0.602328 -7.77655e-21)
(1.14309 0.181062 -7.84069e-22)
(0.497774 0.107955 2.01073e-22)
(1.12808 0.213946 -1.36438e-20)
(1.25075 -0.00930585 -6.38667e-21)
(1.39451 0.0658312 -2.65843e-21)
(1.17428 0.101527 -3.02893e-20)
(0.888755 -0.261131 -2.80323e-21)
(0.628457 0.137283 1.88802e-20)
(1.01636 0.171308 7.26696e-21)
(0.92696 -0.0786042 5.58377e-21)
(1.37174 -0.0241128 9.28434e-22)
(0.502287 -0.00392498 4.89501e-20)
(0.988917 -0.558303 3.35237e-21)
(1.43362 -0.0858801 -6.26715e-21)
(0.396297 0.085967 -2.12645e-22)
(0.973405 -0.000132916 -3.54837e-20)
(1.22083 0.0599051 -2.02008e-20)
(0.738254 0.155825 -2.07909e-21)
(0.249787 0.0563784 -3.92993e-21)
(0.578305 0.125104 2.88248e-21)
(0.391914 0.0884349 -1.33105e-20)
(0.291016 -0.00893958 -2.5688e-20)
(0.536489 0.134551 2.97646e-21)
(0.547223 -0.0455198 -2.0733e-20)
(0.590214 -0.196606 1.67512e-20)
(1.10493 0.218339 -1.68381e-20)
(1.44215 -0.328994 4.38366e-21)
(1.09816 0.12249 -6.70769e-20)
(0.449858 0.101379 -1.06827e-20)
(0.781117 0.18028 1.21989e-21)
(0.689666 0.311215 1.42005e-20)
(1.22158 0.198574 -6.4508e-21)
(0.164877 0.0371107 -2.65301e-22)
(0.565331 0.123337 1.70522e-21)
(0.459258 0.099214 -1.4595e-20)
(0.900215 0.199959 -2.21857e-20)
(1.36109 -0.00428224 9.31453e-22)
(0.573623 0.124662 -1.19683e-20)
(0.237088 0.0525167 -3.07716e-21)
(0.217933 -0.00162283 -1.75603e-21)
(0.334333 0.0748502 -2.53024e-21)
(0.246629 0.0515422 -1.29376e-21)
(0.961387 -0.235033 1.57988e-20)
(0.300469 0.0662922 -1.33197e-20)
(0.229868 0.053714 -2.0105e-21)
(1.42827 -0.176613 -5.84246e-21)
(1.3217 -0.482161 -1.56821e-20)
(1.14887 0.136288 2.00392e-21)
(1.30573 0.169465 -3.59704e-21)
(1.34452 0.0465888 -1.0484e-21)
(0.674072 -0.623318 -2.06869e-20)
(1.08153 0.219209 -1.39747e-21)
(1.08253 0.222266 3.31218e-21)
(0.274995 0.0611445 1.20403e-21)
(0.216851 0.0484827 -6.75457e-21)
(0.622722 -0.101166 -1.55201e-20)
(1.06054 0.218219 -1.08829e-20)
(0.516705 0.112243 -1.00088e-20)
(0.982115 -0.636839 1.12399e-20)
(0.508401 0.111176 9.58771e-22)
(0.939121 -0.00161706 4.5709e-22)
(0.957944 -0.111756 -2.41491e-21)
(0.249235 -0.25559 -3.1542e-20)
(1.09788 0.204366 -3.88099e-21)
(0.281748 -0.000596194 -8.59202e-22)
(0.202883 0.0445592 -3.91356e-21)
(0.244886 0.0549218 2.6688e-21)
(0.962145 0.125124 6.03554e-20)
(0.46866 0.10168 6.25148e-21)
(0.967916 -0.000995243 8.92662e-21)
(0.390613 0.0824652 -1.39141e-22)
(1.02069 -0.132101 7.17958e-21)
(0.484829 0.104772 2.84675e-21)
(0.205601 0.0471912 -6.74208e-21)
(0.274461 -0.00115555 -8.5688e-21)
(0.245101 0.00256469 5.94375e-21)
(0.889342 -0.24948 8.36172e-21)
(0.25568 0.00177392 1.58028e-21)
(0.366108 0.0806294 1.962e-21)
(0.274975 0.0597501 5.14004e-21)
(0.0690753 -0.180535 2.10856e-20)
(1.10488 -0.259152 -3.00694e-21)
(0.693751 -0.0819141 -8.85695e-21)
(0.509614 0.110556 6.62479e-21)
(0.295087 0.0639272 -4.68105e-21)
(0.881128 0.195319 1.23665e-21)
(1.08618 0.196826 1.59325e-20)
(0.523928 -0.00363308 -1.32262e-21)
(0.530183 -0.00358943 2.52486e-21)
(0.53892 -0.00224924 3.46036e-21)
(0.548778 9.3486e-05 4.29051e-21)
(0.55778 0.00212659 1.09987e-20)
(0.882972 -0.103824 -1.1582e-21)
(0.124725 -0.031315 -1.53689e-20)
(0.942458 0.141802 1.05e-20)
(0.638163 0.136916 9.22998e-21)
(0.635702 -0.107382 2.4204e-20)
(0.567352 0.00322545 -7.7715e-21)
(0.162357 0.0356104 -1.42773e-21)
(0.534248 0.115575 -2.00272e-21)
(1.23401 0.0401209 -1.66694e-20)
(0.612317 -0.0937614 -6.42174e-21)
(0.234437 0.0539054 3.78892e-21)
(1.12456 0.143949 1.77372e-20)
(1.35054 -0.131411 -4.87743e-21)
(0.970963 0.112842 -2.25937e-20)
(1.34547 -0.158334 -6.47198e-21)
(0.578339 -0.186372 -1.29971e-20)
(0.236389 0.0521638 5.85347e-21)
(1.39224 0.0549714 4.96166e-22)
(0.605783 0.0708723 -2.8833e-22)
(0.279043 -0.00186055 -5.15459e-21)
(0.822144 0.0348138 -1.0928e-21)
(0.802523 -0.0579356 2.05047e-22)
(0.607319 -0.0137555 2.37606e-20)
(0.214366 0.0486644 2.76478e-21)
(0.404545 -0.000722074 1.49175e-21)
(0.96237 -0.0466892 -1.63858e-21)
(0.567498 -0.0573446 3.70271e-20)
(0.762561 -0.0660946 -1.15032e-20)
(0.556938 0.120062 8.86112e-21)
(0.976045 -0.322575 -9.30754e-21)
(0.640342 0.0421318 -3.03769e-21)
(0.961866 0.00120823 7.46034e-20)
(0.352268 0.0930555 -1.75511e-21)
(0.799422 -0.694276 8.30888e-21)
(0.876194 -0.548387 4.66337e-21)
(0.221065 0.0490102 1.7785e-20)
(1.2924 0.0997239 -5.61359e-21)
(0.770102 0.154823 5.66504e-20)
(1.31754 0.0851422 -3.60576e-21)
(1.30463 0.092958 6.23108e-21)
(0.433801 0.0844346 3.21594e-21)
(0.24071 -0.000414794 9.60383e-21)
(0.918627 -0.651342 1.06425e-20)
(0.886182 0.316251 1.5193e-20)
(1.40899 -0.357913 6.19554e-21)
(0.672048 -0.0966243 1.87498e-20)
(0.576326 0.00361735 -1.08886e-21)
(0.25622 0.0571992 6.47632e-21)
(1.00577 0.122241 6.95617e-20)
(0.377683 -0.015235 1.95924e-20)
(0.892174 0.128627 -6.43282e-20)
(1.30564 -0.0518299 1.54052e-21)
(1.12519 0.213442 1.78341e-20)
(0.232217 0.0512248 3.06291e-21)
(0.655207 0.183612 2.50004e-20)
(1.01476 -0.275443 -1.00466e-22)
(0.486106 -0.00777048 2.16296e-20)
(0.310459 0.0655942 -2.32851e-21)
(0.960857 0.147215 -1.23723e-22)
(0.742733 0.217542 2.45041e-20)
(0.139065 -0.0172809 1.52445e-20)
(0.898998 0.19642 2.05108e-21)
(0.510329 0.113488 1.43748e-20)
(0.490552 0.107818 5.35021e-21)
(0.943697 0.00205672 3.0756e-22)
(0.75924 0.145819 2.85882e-21)
(1.08819 0.201637 -1.85788e-21)
(0.203787 0.0023712 1.22935e-20)
(0.604966 0.130125 -1.1932e-20)
(1.1108 0.143587 2.65943e-20)
(0.86569 -0.000705944 8.05249e-20)
(1.19149 0.0871102 2.50379e-21)
(0.908616 0.205391 -1.86182e-20)
(0.941284 0.280575 2.58853e-20)
(0.806506 0.253506 -2.20651e-20)
(0.736905 0.112634 2.23321e-20)
(0.867791 0.262615 -6.13454e-21)
(0.898761 0.189452 1.888e-20)
(0.905208 0.19413 -6.09481e-21)
(0.876772 0.109196 1.88744e-20)
(0.990956 -0.276842 1.60337e-21)
(0.949837 -0.125201 7.44765e-21)
(1.06454 0.222043 6.30664e-20)
(0.718114 0.095089 -1.08987e-20)
(0.320066 0.000320002 1.01871e-20)
(0.875294 0.184209 3.47975e-21)
(0.56191 -0.0684953 -1.16607e-21)
(0.622962 0.162993 1.28851e-20)
(1.06112 0.194717 -1.31573e-21)
(0.684597 -0.0767237 1.61516e-20)
(0.273555 -0.00214576 -9.63635e-21)
(0.8743 0.182926 3.09397e-21)
(0.434085 0.095686 -5.69152e-22)
(0.767023 0.164453 1.47073e-20)
(1.20633 0.0747994 -8.93374e-21)
(0.240212 0.00206078 -5.86697e-21)
(0.46714 -0.625709 5.09307e-20)
(1.14844 0.209432 -6.46829e-21)
(0.137014 -0.00233978 -1.00132e-20)
(0.696075 0.302592 -4.72521e-21)
(0.796502 0.21005 2.52883e-20)
(0.667446 -0.624427 9.84902e-21)
(0.823495 0.170711 6.20626e-21)
(0.297776 -0.00244634 -2.62265e-21)
(0.890272 0.186093 -8.65394e-21)
(0.853954 0.283262 8.40629e-21)
(0.561208 0.119197 -1.322e-21)
(0.713138 -0.483812 -2.02777e-20)
(0.698096 0.00107404 -1.06745e-21)
(0.561473 -0.0793794 1.22463e-20)
(0.562134 0.115486 6.52481e-21)
(0.649202 0.215382 -1.98047e-20)
(1.11519 -0.182381 -5.39787e-21)
(0.976292 0.108388 5.10608e-20)
(0.399652 0.0895141 -1.12359e-20)
(1.10576 0.213354 3.39866e-21)
(0.944065 -0.00020069 -2.3985e-20)
(0.00800591 -0.094133 5.48204e-21)
(0.730603 0.177141 -1.85104e-20)
(0.299712 -0.000777046 1.93378e-20)
(1.12522 0.210092 -7.40257e-21)
(0.646852 0.140638 8.85198e-21)
(0.834851 0.0183162 -3.44921e-20)
(1.25796 0.189076 -5.40351e-21)
(0.960369 -0.00381966 7.13847e-22)
(0.97981 0.162515 1.73035e-20)
(0.592619 0.112489 -2.47112e-21)
(0.105842 0.0261198 7.77293e-21)
(0.50522 -0.0010741 -2.92884e-21)
(0.5159 -0.000803764 4.06555e-22)
(0.622157 -0.290806 2.73019e-20)
(0.522642 -3.81396e-05 1.7268e-23)
(0.525734 -0.000849441 3.45803e-22)
(1.26798 0.122151 -1.50212e-21)
(0.531409 -0.00187608 -3.28509e-22)
(0.54548 -0.00181723 1.4858e-22)
(0.55344 -0.00156259 -6.78343e-22)
(0.561413 -0.00073442 -3.55279e-22)
(0.901796 0.187615 -6.78706e-22)
(0.602615 -0.0089133 5.18281e-20)
(0.9575 -0.193982 1.5573e-20)
(0.26677 -0.00398834 1.60643e-20)
(0.56865 0.000710608 1.71622e-21)
(0.284141 0.0800961 -1.31213e-20)
(0.919604 0.221622 -1.57201e-20)
(1.00277 0.0847666 -1.77632e-21)
(1.25686 0.126021 2.17365e-20)
(1.07401 0.207966 -4.63139e-20)
(0.755501 0.00234507 -4.17429e-21)
(1.24668 0.129449 -2.24182e-21)
(0.964819 0.110568 7.71498e-20)
(0.86057 0.181834 6.95904e-21)
(1.09889 0.2095 -2.52541e-21)
(0.987572 -0.0530308 -1.7177e-21)
(0.857291 0.17741 1.6558e-20)
(1.31922 0.135567 4.57716e-23)
(0.950006 -0.09402 -9.99978e-22)
(1.0724 0.202063 -4.54011e-20)
(0.671144 0.0816713 -1.08837e-21)
(1.16198 0.104924 2.29009e-20)
(0.318253 -0.00350751 -1.24862e-21)
(0.973097 -0.044277 1.42188e-21)
(1.07758 0.228348 -4.23641e-21)
(1.0718 0.230946 -1.23683e-20)
(0.96124 0.0847985 -3.87512e-20)
(1.00234 0.225715 -5.03705e-20)
(0.891952 0.0776259 7.98837e-20)
(1.33872 -0.185376 2.23661e-21)
(0.263159 -0.00366892 1.78652e-20)
(0.724967 0.335958 -7.36041e-21)
(1.17312 -0.156128 1.28808e-21)
(0.0305623 -0.155227 -2.04658e-21)
(0.450731 0.0990853 -4.78936e-21)
(1.20915 0.197004 1.98545e-22)
(1.0489 0.160744 1.84953e-20)
(0.775238 0.227228 -2.23607e-20)
(0.948602 0.0821371 1.10962e-21)
(0.704799 -0.08618 1.07641e-20)
(1.20092 0.201713 -2.83851e-21)
(1.04107 -0.166201 -1.45248e-21)
(1.07674 0.197166 1.67286e-20)
(1.23668 0.132124 1.85795e-20)
(0.257479 -0.00268748 1.5349e-20)
(1.20329 0.15926 -1.05472e-20)
(0.467346 0.247996 5.06391e-20)
(1.08868 -0.504533 -7.62368e-21)
(1.11435 -0.363976 -1.14604e-20)
(0.472895 0.101943 -3.20454e-21)
(0.897258 0.0434485 1.92166e-22)
(0.969049 -0.00147474 -3.29114e-21)
(0.573406 0.00191212 -2.40049e-21)
(0.989736 5.65857e-05 8.5307e-22)
(0.987462 0.000124647 -1.58843e-20)
(0.989267 0.000199563 -1.62103e-20)
(0.988549 2.30495e-05 -3.48953e-22)
(0.989504 2.76631e-05 -2.59101e-20)
(0.98752 -0.000101186 -3.50435e-21)
(0.988361 0.000239965 2.35255e-20)
(0.989266 0.000195414 -1.43957e-20)
(0.98816 -6.52535e-05 -9.55449e-21)
(0.988195 0.00015033 -3.81019e-21)
(0.985205 -0.000205595 1.23629e-21)
(0.988726 1.22594e-05 5.65089e-21)
(0.989799 4.56385e-05 3.03833e-21)
(0.98944 -4.15869e-05 9.84025e-22)
(0.989177 7.74683e-06 -7.06059e-21)
(0.98902 -0.000548286 1.61521e-20)
(0.989368 -0.000171352 -1.90721e-22)
(0.989846 3.91051e-05 -5.90068e-20)
(0.987629 6.70129e-05 -6.1507e-21)
(0.819727 -0.122638 -9.44489e-21)
(0.649125 0.100979 1.33016e-22)
(0.888359 0.182086 3.77114e-21)
(0.988107 0.000318732 -1.77347e-20)
(0.229141 0.0498703 -3.40151e-21)
(1.17678 0.0972687 8.7203e-21)
(0.589879 0.110411 9.70861e-21)
(0.963619 0.199916 4.09891e-20)
(1.09618 0.217721 -4.17194e-21)
(1.03823 0.195029 9.95135e-21)
(0.607035 0.154819 -1.37007e-20)
(1.01954 0.13958 2.85414e-21)
(0.71931 0.153539 -2.49069e-21)
(0.94069 -0.00934743 -3.2905e-21)
(1.00419 0.132175 5.22449e-20)
(0.124566 0.0282964 2.29411e-21)
(0.329646 0.0856004 -1.47482e-20)
(0.242964 -0.000349471 4.30237e-22)
(0.610007 -0.173825 -9.15912e-21)
(0.503531 0.104788 -2.74421e-21)
(0.771823 0.214534 -9.39168e-21)
(0.369322 0.0748895 1.68933e-21)
(1.07049 0.208798 -2.0014e-21)
(0.229268 0.00117552 2.02829e-20)
(0.629421 0.136724 2.24586e-21)
(1.31484 0.117543 1.19318e-20)
(1.48144 -0.199649 -1.04818e-20)
(0.616446 0.13431 -1.60224e-21)
(0.681497 -0.681531 1.2602e-20)
(0.864242 -0.155585 1.38195e-20)
(0.578379 -0.0467448 2.13927e-20)
(1.2306 -0.243554 2.62385e-21)
(0.926712 -0.0445699 2.32941e-21)
(0.852423 0.189445 -7.89508e-21)
(0.0404156 -0.194642 -3.12712e-20)
(0.392062 0.0862348 -1.93463e-20)
(0.226782 0.000177418 9.42275e-21)
(0.95599 -0.0942004 -3.00307e-21)
(0.730726 -0.0924306 1.1467e-20)
(0.522319 -0.0343627 3.75461e-21)
(0.676413 0.240238 -1.10551e-20)
(0.0862991 -0.281806 5.22036e-21)
(0.458466 -0.0048789 2.9474e-20)
(0.904413 0.0180996 7.73161e-24)
(1.32799 -0.212074 4.49351e-21)
(0.768718 0.088212 -8.60428e-20)
(0.58967 0.147349 1.35705e-20)
(0.597921 -0.00630827 1.26144e-20)
(0.961584 -0.00365656 5.60418e-21)
(0.259146 -0.10326 -6.03679e-21)
(0.39644 0.0870332 4.28726e-22)
(0.0611325 -0.186697 -2.89472e-20)
(0.31582 0.00103546 -7.68713e-22)
(1.13438 0.115284 -2.83205e-20)
(0.804684 -0.0625479 -3.73315e-22)
(1.21487 0.145782 1.45335e-20)
(1.06112 0.121848 3.24978e-20)
(1.08271 0.198139 -1.62463e-20)
(0.455555 0.0667925 -2.2976e-20)
(0.858647 -0.00150154 -1.26771e-20)
(0.854515 0.172868 2.46904e-21)
(0.777747 0.170409 -1.7074e-21)
(1.08084 0.14575 -5.00883e-20)
(1.03525 0.191713 -4.96516e-20)
(0.954802 -0.541688 2.47167e-20)
(0.780992 0.166744 7.10943e-21)
(0.981472 -0.00026051 3.7887e-22)
(0.363562 0.0704701 4.01696e-20)
(1.07856 -0.159936 5.09556e-21)
(0.629323 -0.130075 -1.98889e-20)
(0.858136 0.172026 9.89625e-21)
(0.945493 -0.205268 -4.34938e-21)
(0.783677 0.18179 1.76182e-20)
(1.0339 -0.225322 1.12497e-20)
(0.658046 0.120341 -4.36592e-22)
(0.469739 -0.354209 1.02214e-20)
(1.03834 0.207138 2.83501e-21)
(0.420152 -0.0325405 2.50539e-20)
(0.325904 0.0692499 3.58207e-21)
(1.14807 0.110415 -2.40611e-20)
(1.20625 0.147239 -1.09858e-20)
(0.881671 -0.232086 -6.19318e-21)
(0.385373 0.0811829 -2.41061e-21)
(0.855458 -0.000865793 -7.9232e-20)
(1.18022 0.198538 5.43202e-21)
(0.987108 0.000305786 1.91332e-20)
(1.14144 0.207871 2.30101e-21)
(0.968231 -0.000934154 9.28222e-21)
(1.01681 0.129042 3.14505e-20)
(0.786507 -0.000953038 2.81866e-22)
(0.444395 0.0925546 1.89048e-21)
(0.648196 -0.103709 2.60456e-22)
(0.500537 0.000326423 5.07556e-22)
(0.499295 0.00158252 -5.59043e-22)
(0.842427 -0.280914 -9.44567e-21)
(0.717264 -0.0896666 1.53677e-21)
(0.507417 0.000136182 7.25222e-21)
(0.517668 0.000834982 -1.56867e-21)
(0.523779 0.000906384 2.48481e-21)
(0.530366 0.000523131 5.25649e-21)
(0.534992 0.000238252 -2.33835e-21)
(1.10519 0.213605 3.71731e-20)
(0.539108 9.87209e-05 3.97224e-21)
(0.540926 -0.000813346 -6.79747e-21)
(0.54247 -0.00122454 -4.74003e-21)
(0.552197 -0.00127144 -1.45119e-20)
(0.552958 -0.000842848 1.94114e-20)
(0.703181 -0.446567 9.14939e-21)
(1.07289 0.223373 -5.97094e-21)
(0.559122 -0.000939922 -4.15517e-21)
(0.569277 0.00137777 -3.65685e-21)
(0.597794 -0.00599294 3.30561e-20)
(0.57543 0.00215213 1.71006e-20)
(0.581355 0.00245022 7.52694e-21)
(0.790389 0.158496 -7.20075e-21)
(1.05536 0.163038 1.29176e-20)
(1.17715 0.204416 4.00337e-21)
(0.586808 0.00168296 -8.0899e-21)
(0.849093 -0.000375353 -1.97043e-20)
(0.75256 0.00203891 1.72403e-21)
(1.0779 0.142903 4.7538e-20)
(0.444421 0.0971438 2.8579e-21)
(0.472436 0.102902 -1.84726e-20)
(1.19799 0.148679 2.0696e-20)
(0.95238 0.111356 2.9323e-20)
(1.07483 -0.096352 2.35854e-21)
(0.440143 -0.0353165 1.56828e-20)
(0.839986 -0.00181922 4.42081e-21)
(1.12128 0.210043 4.24532e-20)
(1.26677 0.166276 -5.86651e-21)
(1.0616 0.165136 -2.86599e-20)
(0.648277 -0.0314581 -3.57382e-21)
(1.00243 0.120875 -9.69688e-20)
(1.16842 -0.0753886 1.02274e-20)
(1.06788 0.167148 1.65666e-21)
(1.01234 0.12469 -8.07444e-20)
(1.00728 -0.106595 5.57753e-22)
(0.556547 -0.112217 1.54627e-20)
(1.11538 -0.16612 -2.80877e-21)
(0.884198 0.175889 1.94316e-21)
(0.309044 0.07871 -4.97898e-21)
(0.348279 0.076795 3.48418e-22)
(1.15483 0.20599 1.06686e-20)
(0.772101 0.166647 -8.99445e-21)
(1.48965 -0.120939 -1.55082e-20)
(1.10119 0.120444 6.24748e-20)
(1.21454 0.198592 7.33648e-21)
(0.860705 -0.162638 -1.40021e-20)
(0.444973 0.0977901 1.43499e-21)
(0.984769 -0.000859378 5.30584e-20)
(0.915575 0.24665 -8.66792e-22)
(0.592916 -0.0064135 -3.00888e-21)
(0.596846 0.00521978 1.99068e-22)
(1.47999 -0.046887 -2.51991e-23)
(1.02309 0.167983 1.29722e-20)
(0.591835 0.00114444 1.16745e-20)
(0.179221 0.00142054 1.56781e-20)
(0.814716 -0.507325 1.59079e-21)
(0.744733 0.216364 -3.407e-20)
(1.17274 0.187705 2.10069e-20)
(0.950719 0.200901 2.27409e-21)
(0.572546 0.139951 2.48127e-20)
(0.905317 0.0879288 1.49452e-20)
(0.830289 -0.004015 4.78989e-20)
(1.04215 -0.155929 1.3294e-21)
(0.566954 -0.659823 -1.19521e-20)
(0.544883 -0.0227996 -1.25282e-20)
(0.0336029 -0.168415 1.17245e-21)
(1.22957 0.194216 -4.16612e-21)
(0.355154 0.0600737 -4.81357e-22)
(0.469862 0.0972257 4.02847e-21)
(0.454603 0.0581922 -5.57497e-22)
(0.906478 0.0572147 -3.79837e-21)
(0.28039 -0.00186411 3.61538e-21)
(0.891409 -0.0231721 2.06367e-21)
(0.410158 0.068272 2.05495e-20)
(0.237938 -0.000756185 -8.53616e-22)
(1.18942 0.201066 -2.64595e-20)
(0.56699 -0.237024 1.4566e-20)
(0.296767 0.000988801 -1.47837e-20)
(0.419524 0.0830888 -1.93419e-21)
(0.856141 0.166623 -3.84979e-21)
(0.591962 -0.00489573 -1.65416e-20)
(0.309037 -0.379343 1.09071e-20)
(0.851135 0.17653 -6.657e-21)
(1.17894 0.157292 -1.03978e-20)
(0.990996 -0.256692 -6.18905e-21)
(1.12085 0.118236 0)
(0.878209 0.169739 -2.32621e-21)
(0.886203 -0.00369178 -4.46896e-21)
(0.484824 0.109772 1.757e-20)
(1.0546 0.224362 -1.85746e-20)
(1.31251 -0.237786 -1.61221e-21)
(0.956925 -0.161185 6.80223e-22)
(0.843429 0.110769 2.18038e-21)
(0.849672 -0.658694 2.74893e-20)
(1.09316 0.195135 -3.21621e-20)
(0.834212 0.147654 3.71055e-20)
(1.25437 0.188712 5.42265e-21)
(1.09485 0.216381 -2.13273e-20)
(0.253998 -0.441374 2.76401e-21)
(0.291835 0.0723722 -4.70216e-21)
(0.587638 -0.00182393 -3.39588e-20)
(0.392369 0.0890246 1.71822e-20)
(0.433631 0.0836044 -1.53568e-21)
(0.992249 -0.488174 -6.92253e-21)
(0.716939 0.213653 2.35813e-20)
(0.909919 0.240202 5.91093e-20)
(0.502634 0.108591 -3.90381e-21)
(0.888624 0.193829 -1.49406e-20)
(1.18426 0.184034 1.83773e-20)
(0.829727 0.183079 -6.23313e-21)
(0.632363 0.175875 1.22122e-20)
(0.244368 -0.00273986 -7.91616e-22)
(0.979935 0.000901363 -1.1189e-20)
(0.827335 -0.124643 8.66806e-21)
(0.58164 0.000322071 -1.80332e-20)
(0.586806 -0.00014545 4.8009e-21)
(0.658275 0.193993 -1.98649e-20)
(0.686237 0.20903 -2.24474e-20)
(0.945955 0.000223238 -2.4793e-20)
(0.918107 -0.0269154 1.122e-20)
(0.715615 -0.018087 2.55242e-20)
(1.27366 0.181872 7.37417e-21)
(0.831626 0.220289 1.85349e-20)
(0.699217 -0.0347272 -1.75976e-20)
(1.06076 0.223967 -2.66566e-20)
(0.0126555 -0.143248 -1.59913e-20)
(0.575858 0.00149851 2.32101e-21)
(0.555835 0.133547 -4.26096e-21)
(0.980703 0.000655593 1.99775e-21)
(0.586361 -0.0978458 1.89688e-20)
(0.792576 -0.303535 -5.85087e-21)
(0.573597 0.00269827 -2.30041e-20)
(1.17145 0.157768 -2.07774e-20)
(0.950607 -0.0244971 -1.90557e-21)
(0.857139 0.057249 -1.60034e-20)
(0.538943 0.127702 -1.34192e-20)
(0.977246 -0.228793 8.45354e-21)
(0.571508 0.00210855 -2.8881e-20)
(0.628929 -0.153368 -2.52974e-20)
(0.494794 0.0932291 -1.33662e-21)
(0.957985 -0.120484 -6.05247e-21)
(0.84279 0.192941 7.07745e-21)
(0.5678 0.000618013 4.96331e-21)
(0.569292 -0.121924 -3.33106e-20)
(0.5657 -0.000256671 9.60023e-21)
(0.945278 -0.00134672 5.8764e-21)
(0.558473 0.000135479 1.18001e-20)
(0.971209 -0.000739627 -2.72757e-21)
(0.557937 0.00224955 7.83688e-21)
(0.559327 0.00282294 -9.14723e-21)
(0.51411 0.000439558 5.92099e-21)
(0.514117 0.000226842 -1.69284e-20)
(0.553829 0.000586181 6.33923e-21)
(0.511085 0.000465839 -9.04241e-21)
(0.513873 -0.0021717 1.65631e-20)
(0.520225 -0.000890261 -6.04456e-21)
(0.549148 0.00174192 3.55994e-20)
(0.524632 0.000216328 -1.75079e-20)
(0.526489 0.000331791 -1.81156e-20)
(0.525856 0.0003006 -9.93781e-21)
(0.55157 0.000125449 2.21683e-20)
(0.526394 -0.00128643 -3.73154e-21)
(0.529152 -0.00246769 1.31695e-20)
(0.550154 -0.000440219 2.87392e-20)
(0.538328 -0.00233798 2.45924e-20)
(0.546677 -0.0011303 -1.09383e-20)
(0.542478 -0.00198647 -1.77649e-20)
(0.313919 -0.0994257 2.12852e-20)
(0.721062 -0.00307439 -6.67217e-22)
(0.521927 0.122506 -5.0314e-21)
(0.703309 0.00172204 1.1214e-21)
(0.42735 -0.10686 -1.14712e-21)
(1.35518 0.139288 4.96119e-21)
(1.07076 0.11883 2.78638e-20)
(1.25552 0.0968779 1.52359e-20)
(0.189885 4.6661e-05 6.40033e-21)
(1.39123 0.109804 2.78493e-21)
(1.44667 0.0342647 3.60686e-22)
(0.486908 -0.632652 -2.56342e-20)
(0.758348 -0.0812123 3.65821e-21)
(0.273572 0.0669974 1.02258e-20)
(0.865214 -0.0133961 -1.12007e-20)
(0.754308 -0.216267 -2.70518e-20)
(1.32951 0.157099 -1.12442e-20)
(0.198218 0.0433786 1.06688e-21)
(1.14591 0.212836 2.16725e-21)
(1.02387 0.22717 -2.87482e-20)
(1.05542 -0.596614 2.88504e-21)
(1.3002 0.171096 5.5491e-21)
(1.08507 0.16552 -1.70247e-20)
(0.423883 0.0965318 -2.90208e-21)
(0.523709 -0.000748399 -1.87591e-20)
(0.552326 0.212589 -1.98785e-20)
(1.41926 0.0764935 -1.56015e-22)
(0.897919 0.26391 1.40067e-20)
(0.444068 0.0960741 -2.23469e-21)
(0.492438 0.10645 -5.54841e-21)
(0.801097 -0.00264905 2.01132e-20)
(0.891748 -0.00161438 2.53621e-21)
(0.816443 -0.00269887 2.45777e-21)
(0.809468 -0.00286559 -1.15799e-20)
(0.818106 -0.00262562 1.68556e-20)
(0.821427 -0.00157155 3.18819e-20)
(0.822243 -0.000251342 6.92972e-21)
(1.06357 0.146361 -6.31459e-21)
(0.801281 0.000170931 1.83373e-21)
(0.823693 -0.000308226 -1.35434e-20)
(0.981395 -0.237829 6.88803e-21)
(0.899838 0.172151 3.82771e-21)
(1.04041 0.110365 4.911e-20)
(1.28319 0.118153 -1.87327e-21)
(0.824202 -3.45934e-05 3.25975e-20)
(0.502744 0.119114 2.16055e-20)
(1.04426 0.248175 3.86691e-20)
(0.732742 -0.22426 -7.93467e-22)
(1.06824 0.142016 -4.10356e-21)
(0.951553 -0.232938 -1.06915e-20)
(0.622584 0.126158 -1.9477e-21)
(1.09176 0.166065 -3.18075e-20)
(0.994778 0.172241 9.7185e-21)
(0.38865 0.0842973 -4.77675e-21)
(1.06531 0.235303 -2.46333e-20)
(0.512793 0.116671 -3.75128e-21)
(0.809574 0.171839 -1.98519e-21)
(0.86215 -0.0393686 -3.24535e-21)
(0.928054 -0.0136396 -1.69583e-21)
(1.23857 0.08152 -3.15493e-21)
(0.428501 7.90408e-05 7.02483e-22)
(1.14698 0.164293 -1.04856e-20)
(0.928946 -0.0427823 1.27442e-21)
(0.239508 -0.00104865 -3.03428e-21)
(1.14038 0.164382 -3.12079e-20)
(1.16431 0.15821 9.32985e-21)
(0.967234 0.113475 -2.05323e-20)
(0.259934 0.0616725 -5.61243e-21)
(0.294311 0.0616574 -4.56297e-21)
(1.11058 0.215052 -2.36069e-21)
(1.08856 0.120954 2.39642e-22)
(0.44473 0.0964284 4.69764e-21)
(0.708223 0.00151655 3.36447e-21)
(0.530536 0.121359 1.82846e-21)
(0.495888 0.113143 4.39503e-22)
(0.533231 0.103798 -3.98864e-22)
(0.481058 0.109824 -5.65863e-21)
(0.271239 -0.000442695 -4.13602e-21)
(0.892139 0.148293 -2.06372e-22)
(0.875111 0.147814 2.91126e-21)
(0.814286 0.268681 4.08148e-20)
(1.04336 0.109989 2.46482e-20)
(1.134 0.164261 -5.03842e-21)
(0.909497 -0.0251459 3.4797e-21)
(0.824251 0.000231113 -1.00972e-20)
(0.874532 0.31154 2.8305e-20)
(1.00122 0.275102 -1.03247e-20)
(0.664724 0.150162 2.08044e-20)
(0.896217 -0.00332131 -2.77813e-20)
(1.3495 0.013593 1.26786e-22)
(0.730058 -0.0268437 1.10713e-20)
(0.877908 -0.00116205 1.11681e-21)
(0.964591 -0.218556 -1.28821e-20)
(0.894248 -0.00919892 -7.33562e-21)
(0.647081 -0.559712 4.23448e-21)
(0.730915 0.322324 5.10594e-20)
(0.245281 0.057408 -3.94638e-21)
(0.340607 0.0428828 -8.60756e-21)
(0.736164 -0.041132 -1.42877e-20)
(0.927849 -0.173337 -1.00425e-20)
(0.956573 -0.308319 -6.5852e-21)
(0.862257 -0.00125735 8.05254e-21)
(0.740244 -0.0884789 -5.73784e-21)
(1.11111 0.168999 -4.1151e-20)
(0.268235 -0.000428874 -1.52093e-21)
(0.343108 -0.00152882 3.23189e-20)
(0.910296 0.165958 4.98978e-22)
(0.318367 -0.000285422 3.74572e-21)
(1.02179 0.232289 1.38418e-20)
(0.24204 0.000596875 3.70023e-21)
(0.926933 0.172431 2.38158e-21)
(0.955768 -0.216519 1.20478e-20)
(1.09814 0.167473 -1.01474e-20)
(1.10454 0.168266 -3.34934e-20)
(0.321512 0.0684225 -2.46958e-21)
(1.35093 -0.105115 -1.40393e-21)
(0.580533 0.00232054 1.86852e-21)
(1.12751 0.164266 -1.52625e-20)
(0.137203 0.000743024 -1.89021e-21)
(1.07728 0.157462 -9.36572e-21)
(1.02392 -0.129047 1.92376e-21)
(1.15047 0.0432558 2.66563e-22)
(0.23107 0.0527549 -2.26083e-21)
(0.950512 -0.00376803 -8.41569e-22)
(0.980716 0.0010198 2.97753e-21)
(0.27691 -0.00110682 7.82959e-22)
(0.975812 -0.00099493 2.91868e-21)
(0.2293 -0.00309286 9.73319e-21)
(1.39241 -0.0408477 -1.72109e-21)
(0.770648 -0.0833096 -9.03533e-21)
(0.695294 -0.0740009 1.6185e-20)
(0.793708 -0.0730527 7.88026e-22)
(0.905588 0.131468 -1.24938e-20)
(0.172012 0.0399803 -6.50572e-21)
(1.36502 -0.0650496 -2.0894e-23)
(0.715039 -0.0350017 2.73466e-20)
(0.218026 0.0493226 1.34884e-20)
(0.921808 -0.168824 6.06735e-21)
(1.14704 0.208961 9.17361e-21)
(0.947826 0.111419 3.15528e-21)
(0.685743 -0.0247541 -2.88881e-20)
(0.970037 -0.0591554 -5.50849e-21)
(0.454503 0.0679215 2.25713e-20)
(0.704253 -0.0786885 -3.45942e-20)
(0.345949 -0.175465 -8.49852e-22)
(1.18867 0.178732 1.44145e-21)
(1.07727 0.218333 -8.49637e-21)
(0.851567 0.197306 1.25469e-20)
(1.26702 -0.536553 -1.86465e-20)
(0.475711 0.0956598 -2.06251e-23)
(0.414721 0.0851316 1.04357e-21)
(0.96799 0.189816 3.62803e-20)
(1.03787 0.227085 -4.07048e-20)
(1.10516 0.0878409 -1.61098e-21)
(0.744714 -0.0946616 -1.73842e-22)
(1.32981 0.0588864 2.83485e-21)
(0.541663 0.0261687 -1.76756e-20)
(1.31223 -0.387361 -1.13224e-20)
(1.03998 -0.200568 5.22527e-21)
(0.668106 -0.466434 3.90364e-21)
(0.858536 0.187884 -7.45179e-21)
(0.345421 0.000969672 -3.64691e-21)
(0.662266 -0.0091841 -3.72996e-20)
(0.541699 0.00438531 4.43328e-21)
(0.353185 0.0741359 -4.07724e-21)
(0.550675 -0.358014 -7.67975e-21)
(0.309389 0.0634952 1.62339e-21)
(0.940513 -0.173376 -3.90409e-21)
(1.13769 -0.407712 -8.02628e-21)
(0.932796 0.0768059 -1.4844e-22)
(0.915673 0.127392 -1.90722e-20)
(0.915503 -0.0486457 9.92191e-22)
(1.05784 0.224118 2.16526e-20)
(-0.000408354 -0.0256526 -3.24936e-22)
(0.663224 -0.427505 -2.53354e-20)
(0.891184 -0.0258199 2.71818e-21)
(0.824924 -1.23957e-05 -2.47258e-22)
(0.825366 -0.00064537 -5.94001e-21)
(0.826481 -0.000478307 -2.62316e-22)
(0.826446 -0.00103533 -1.08349e-20)
(0.82208 -0.00151577 -1.71186e-20)
(0.815643 -0.00271227 1.42808e-20)
(0.818216 -0.000233237 1.96017e-21)
(0.824577 -0.000485935 -5.79901e-21)
(0.823221 1.97254e-05 3.63141e-21)
(0.970116 0.148042 -3.49154e-20)
(0.952783 -0.172048 -2.01269e-20)
(0.911366 0.155568 4.05917e-21)
(1.00443 0.199625 4.67588e-21)
(1.3015 -0.0344951 1.95391e-21)
(0.727194 -0.0858387 -1.44845e-20)
(0.816232 -0.136657 3.9943e-21)
(0.685975 0.280477 5.79796e-21)
(0.967761 0.158502 6.11119e-22)
(0.928926 0.166406 2.80965e-21)
(0.555197 0.102547 1.76076e-21)
(0.97771 -0.298669 -1.51615e-21)
(0.954183 -0.0295861 -5.19772e-22)
(0.577808 0.117907 1.27691e-21)
(0.236434 -0.487517 8.10315e-21)
(0.596997 -0.106314 -4.36809e-21)
(0.594974 -0.537482 7.49517e-22)
(0.41462 -0.599936 -1.05288e-20)
(0.767152 -0.0470888 5.88739e-22)
(0.85777 0.000565145 -6.35202e-20)
(0.826543 0.141512 -4.29082e-22)
(0.814483 -0.0639657 -2.09486e-22)
(0.306675 -0.00161194 -1.20911e-21)
(0.920789 -0.025769 1.56734e-21)
(1.25244 -0.023638 -9.17097e-21)
(0.824077 0.155159 2.67196e-21)
(0.898846 -0.0210296 2.29962e-21)
(0.790047 -0.0372865 -2.00654e-20)
(0.970093 -0.00181755 -2.2731e-21)
(0.518187 0.00416189 2.31705e-20)
(0.476505 -0.441854 5.51343e-21)
(0.967755 -0.22748 -1.24292e-20)
(0.296934 0.0636749 5.1792e-22)
(0.708846 0.154318 4.21842e-21)
(0.551136 0.103493 -2.92886e-22)
(0.821491 0.000496457 4.69649e-21)
(0.872042 0.317109 3.43888e-21)
(0.824564 -0.138358 -4.35052e-21)
(0.505142 -0.0618165 2.56246e-21)
(1.29306 -0.26127 -8.70151e-22)
(0.974244 -0.348836 2.65229e-22)
(1.12897 -0.165927 6.885e-22)
(0.745536 -0.0288845 3.42931e-20)
(1.05801 0.239482 2.73483e-20)
(0.943236 -0.00541314 -5.39601e-21)
(0.60555 0.112229 -1.06872e-21)
(0.237076 0.0504775 2.14877e-21)
(0.405889 -0.397184 4.16665e-20)
(0.995847 0.107544 -4.36949e-20)
(0.194417 0.0448133 -1.27989e-20)
(0.819236 0.181232 1.01788e-22)
(0.635239 -0.0980333 1.26318e-20)
(0.590434 -0.00317425 -7.13179e-21)
(0.320045 -0.0300346 2.74009e-20)
(1.28111 0.105408 2.95173e-21)
(1.12422 0.213551 -2.589e-21)
(0.330347 -0.000551842 4.98904e-20)
(0.940283 -0.141464 -1.6715e-21)
(1.01037 -0.108392 -4.66631e-21)
(1.31752 0.109812 -4.57865e-22)
(0.622151 0.130614 3.18565e-21)
(0.994611 0.128288 4.77673e-22)
(0.573893 0.0987255 -1.0209e-23)
(0.816384 -0.0981953 -1.48095e-20)
(0.701699 -0.661275 -9.51358e-21)
(0.990841 0.154777 1.53287e-21)
(1.24069 -0.0863176 -3.61642e-22)
(0.829856 -0.132275 4.43818e-21)
(0.90737 -0.0100377 -7.90513e-21)
(0.779261 0.0174959 4.10275e-21)
(1.46148 -0.275102 -5.60633e-22)
(0.707775 -0.647535 -7.73698e-21)
(0.715051 -0.0826276 -3.2778e-20)
(1.07707 -0.239811 -3.66457e-23)
(0.976103 0.139157 1.80689e-22)
(0.509568 -0.475998 -8.45604e-21)
(1.25039 -0.0547924 8.56783e-22)
(1.17742 0.182049 1.73847e-21)
(0.767251 -0.0922614 8.47313e-21)
(0.955479 -0.0349776 -2.79882e-21)
(0.808258 -0.00196253 -3.84403e-21)
(0.882718 0.0607177 -2.87253e-20)
(0.952122 -0.0235441 -1.66624e-21)
(0.832937 0.191432 3.13932e-21)
(0.80088 -0.0699076 -4.96045e-21)
(0.923827 -0.043364 -2.64789e-21)
(0.860146 -0.148897 -2.64745e-21)
(0.727208 0.169574 8.18803e-22)
(0.459241 -0.53482 -4.75476e-20)
(0.996695 -0.266527 -6.80744e-21)
(1.05908 0.116311 2.06041e-20)
(1.07054 0.196165 1.67166e-20)
(0.912495 -0.0241325 6.43158e-22)
(1.00288 0.215396 3.06443e-20)
(0.811753 0.0688264 7.19257e-21)
(1.23911 0.0289537 4.60822e-22)
(0.197822 -0.449311 4.81348e-21)
(0.758055 0.0550426 -1.96145e-20)
(0.778614 -0.0797775 6.4926e-21)
(0.284 0.0614487 9.46694e-21)
(0.769742 0.162364 1.11261e-20)
(0.88151 -0.0424628 -3.47309e-21)
(1.08683 0.193596 -5.73643e-21)
(0.330162 0.0705802 5.90426e-21)
(0.908765 -0.0129162 5.19161e-21)
(0.811548 -0.0597055 1.50428e-20)
(0.471636 0.00156389 9.44059e-21)
(0.548379 -0.50909 3.2985e-22)
(1.02942 0.225717 -5.60768e-21)
(0.972307 0.00128456 -8.81837e-21)
(1.0315 0.105588 -1.97844e-21)
(0.904075 -0.0661167 4.51966e-21)
(1.22833 0.197138 -2.0245e-21)
(0.437948 -0.000410394 -1.71531e-20)
(0.900864 -0.0801646 -2.75296e-21)
(0.942744 -0.00211941 1.84959e-21)
(0.696125 0.0906409 -1.10495e-19)
(0.77243 0.0624217 2.92452e-20)
(0.964387 -0.169722 1.91529e-21)
(0.578465 -0.0885931 1.54606e-20)
(0.393916 0.0865104 -1.61139e-20)
(0.426654 -0.0240503 -2.16794e-20)
(0.625197 -0.120493 -5.77474e-21)
(1.00855 0.120085 -4.18532e-20)
(0.812684 -0.0185268 -1.02468e-20)
(0.699938 -0.104548 3.881e-21)
(0.624785 -0.0913448 -9.01532e-21)
(0.975524 -0.246239 -1.41766e-20)
(0.926597 -0.00220052 3.92461e-20)
(1.14456 0.20839 -3.154e-20)
(1.03014 0.122729 -2.93393e-21)
(0.709956 -0.00301632 4.58773e-22)
(0.832825 -0.00077629 -3.35873e-22)
(0.841455 -0.00159063 -3.62104e-22)
(0.79752 -0.0316881 1.26875e-20)
(0.792006 0.179459 -1.65906e-22)
(1.38536 0.111826 -1.81824e-22)
(0.831901 -0.00207889 6.50121e-23)
(0.976188 -0.000994127 2.14526e-21)
(0.16759 -0.413087 1.62259e-20)
(0.822503 -0.101198 -7.33667e-22)
(1.02278 0.251648 8.23091e-21)
(0.766781 -0.0778419 1.78934e-20)
(0.208112 -0.408768 5.1373e-21)
(0.979023 -0.212974 -1.90923e-21)
(0.883829 0.11941 3.33603e-20)
(1.01881 -0.123393 -3.38144e-21)
(1.04446 -0.370588 1.04257e-20)
(0.143362 0.00185627 2.05964e-20)
(0.837715 -0.133618 -1.75745e-20)
(0.303826 0.0688774 -1.85815e-21)
(0.17089 -0.350184 -1.12248e-20)
(0.0512731 -0.162411 -4.3337e-21)
(1.04964 0.243207 3.41345e-20)
(0.304965 -2.34619e-05 1.81977e-21)
(0.302425 0.00146503 -7.72218e-21)
(0.272284 -0.0023389 -4.86067e-21)
(0.944901 -0.0433178 1.72612e-21)
(1.22727 0.134965 -2.04583e-22)
(0.965586 -0.361534 -2.42261e-21)
(0.903943 0.00714546 -1.7967e-20)
(0.232868 0.0661803 6.21616e-21)
(0.0478226 -0.233193 -1.66535e-20)
(0.819142 0.0769423 4.87266e-20)
(1.02074 0.22262 -1.48092e-21)
(0.69833 0.177202 7.51048e-21)
(1.1718 0.203431 -5.0373e-22)
(0.762408 -0.059961 -1.4719e-21)
(0.95663 -0.061881 -5.32276e-21)
(1.00269 -0.391993 -9.91726e-21)
(0.780238 -0.066234 6.66672e-21)
(1.22437 -0.114843 -1.7293e-22)
(0.144479 -0.0967078 5.75262e-22)
(1.03656 -0.14035 -9.08435e-22)
(0.884645 -0.0168033 3.68568e-22)
(0.585033 0.00261845 -1.8008e-21)
(0.832819 -0.0556185 7.56569e-21)
(0.783072 -0.0846662 -5.51062e-21)
(0.750083 -0.634066 -4.02667e-21)
(0.829906 -0.000956518 2.0696e-22)
(0.894277 0.135489 5.99078e-20)
(0.891281 0.238019 2.86086e-20)
(0.949724 -0.135401 -3.07188e-21)
(0.849189 -0.0487749 -1.2195e-21)
(0.898984 -0.0125648 4.76046e-21)
(0.804683 -0.0742266 -3.75375e-22)
(0.939608 0.0792314 -4.91188e-20)
(1.01541 -0.126005 8.94477e-22)
(0.310578 -0.000806922 2.42726e-22)
(0.986761 0.281883 -4.21831e-20)
(0.805694 0.00238638 -2.33042e-22)
(0.68074 -0.5058 1.0696e-20)
(0.879384 -0.0269614 2.6234e-21)
(1.15752 -0.160822 -6.51658e-22)
(1.1871 -0.148084 1.76482e-22)
(0.395097 0.0893766 -1.12413e-20)
(1.24025 0.108041 1.9967e-21)
(0.887471 -0.02442 8.17046e-22)
(0.390651 -0.475165 1.92048e-20)
(1.04932 -0.146361 -2.18764e-21)
(0.74418 -0.460053 -5.98647e-21)
(1.00711 -0.103024 5.02395e-21)
(0.715273 -0.10721 -1.62726e-20)
(0.714846 0.160364 1.43815e-20)
(0.00736842 -0.0888936 -3.19837e-20)
(0.866066 -0.0344051 -1.49235e-21)
(0.242985 -0.00187602 1.22029e-20)
(0.782758 -0.0714254 1.54198e-21)
(1.03638 -0.216767 -8.33821e-22)
(0.996099 0.121184 4.73384e-20)
(0.919244 0.00973187 -2.57451e-20)
(0.777525 0.163358 1.45454e-20)
(0.46979 0.00880122 3.06937e-20)
(0.779485 0.149153 1.12435e-22)
(0.45085 0.0988561 -1.37601e-20)
(0.795292 -0.0606938 2.09183e-20)
(0.962986 -0.188569 -1.54853e-20)
(1.14779 -0.560676 -5.11876e-21)
(0.829309 0.0832584 9.32056e-21)
(0.591704 0.11968 -3.50203e-21)
(0.901929 -0.0225941 -2.40994e-21)
(0.706501 -0.575952 -9.74366e-21)
(0.137604 -0.0370252 -1.69362e-20)
(1.22297 -0.231644 -5.84776e-21)
(0.971699 -0.671832 -1.07243e-20)
(0.866807 0.0302752 8.40585e-20)
(0.314564 0.0651138 1.67256e-21)
(1.00125 -0.106425 1.94959e-21)
(1.00974 0.127017 2.48172e-21)
(0.977427 0.0880529 -3.18269e-22)
(1.19001 0.149617 -5.76718e-21)
(0.64211 -0.12567 3.71678e-20)
(0.871331 -0.0358803 1.77595e-21)
(0.683269 -0.0931441 1.99734e-20)
(0.892017 -0.0138831 -7.05366e-22)
(1.14036 0.212152 -9.60294e-22)
(0.662593 -0.108736 -5.78831e-21)
(0.820824 -0.061099 1.2524e-21)
(0.0441444 -0.214934 2.50499e-20)
(0.883968 -0.0311691 -1.88002e-21)
(0.772717 -0.0512779 -7.03661e-21)
(1.27314 0.18216 2.06166e-21)
(0.138496 -0.0762711 -6.69562e-22)
(0.0290425 -0.183684 2.83774e-20)
(0.458369 0.0799935 8.6002e-20)
(1.18398 0.0923767 5.14431e-21)
(0.970345 -0.190209 -3.03949e-21)
(1.12487 0.210247 3.71584e-20)
(0.998609 0.105933 2.44468e-20)
(0.215996 -0.00216047 3.04387e-21)
(0.911477 -0.0199261 -3.3083e-21)
(0.838619 -0.0531102 7.49973e-21)
(0.814344 0.314908 6.74986e-22)
(0.960747 -0.151291 1.49408e-21)
(0.954053 -0.118232 -2.41259e-21)
(0.899279 -0.244158 -1.32744e-20)
(0.958795 -0.134978 -4.61097e-22)
(0.958059 -0.16769 6.74791e-21)
(0.216995 -0.00115272 -3.71619e-21)
(0.185354 -0.309444 8.26173e-22)
(0.914611 -0.021191 -2.1597e-21)
(0.882878 -0.0190296 5.84688e-21)
(0.958447 0.082975 9.28498e-20)
(0.876452 0.0213799 -1.40475e-21)
(0.879209 -0.0298569 4.54362e-21)
(0.888319 -0.0160485 -8.21442e-21)
(0.870571 -0.0328214 -6.70654e-21)
(0.953161 -0.00466783 -7.90963e-22)
(0.520111 0.118759 2.10675e-20)
(1.07871 0.16415 1.1506e-20)
(0.854107 -0.0466315 -2.56233e-21)
(0.91005 -0.0161893 1.04752e-20)
(0.0210207 -0.132759 2.83613e-20)
(0.574162 0.00271558 -1.23312e-21)
(0.961037 -0.181316 -6.18159e-21)
(0.70455 0.224579 1.89918e-20)
(1.17686 0.185888 -5.24225e-21)
(0.973289 -0.000479568 -2.38277e-20)
(1.12587 0.182749 9.32228e-21)
(1.0209 0.133693 1.36822e-20)
(0.964755 -0.00100737 1.36788e-20)
(0.918145 -0.0222258 2.54283e-21)
(0.894568 0.191316 1.46321e-20)
(0.0246095 -0.185907 3.4817e-21)
(1.05201 -0.151449 -3.62234e-21)
(1.04248 0.158079 1.95094e-20)
(0.144522 -0.37867 -4.22201e-21)
(0.93421 -0.169893 8.76518e-21)
(1.0287 0.254931 -3.65688e-20)
(0.961748 -0.157205 -1.40003e-21)
(1.00404 0.105752 -5.64958e-20)
(1.14103 0.112855 -1.29304e-20)
(1.19497 0.11606 1.18006e-21)
(0.66116 -0.0827294 2.46208e-20)
(1.02098 0.214772 -1.01094e-20)
(0.955519 -0.0285004 2.09811e-21)
(0.697559 0.151088 -3.45991e-23)
(0.547424 0.126002 -1.90892e-20)
(0.687372 0.325629 6.4329e-21)
(0.0187683 -0.165407 -9.1662e-21)
(0.869844 -0.247118 1.57291e-21)
(1.06004 -0.428324 4.18269e-21)
(0.940353 0.147163 -1.78082e-20)
(1.15722 0.15834 3.05173e-20)
(0.29374 0.00398248 1.19418e-20)
(0.833374 0.168114 -1.14711e-21)
(1.12766 0.117363 -1.0503e-20)
(1.10848 -0.169736 -2.94628e-22)
(0.74071 0.336569 2.48034e-20)
(0.731546 0.00122467 2.72166e-20)
(0.307618 0.000156974 2.92574e-21)
(0.984557 0.000447944 2.66079e-20)
(0.946359 -0.169384 9.3012e-21)
(0.244725 0.00154914 -5.11175e-21)
(0.841052 0.088029 -3.69225e-20)
(0.943291 -0.0450072 -2.56261e-21)
(0.967573 -0.159097 -2.92711e-21)
(0.605631 -0.189792 1.07894e-20)
(0.955038 -0.101511 4.56952e-21)
(0.905644 -0.0152222 -1.18647e-20)
(0.181338 0.0425502 5.43647e-21)
(0.924892 -0.00658735 1.8407e-21)
(1.14833 0.212231 -1.5385e-20)
(1.02067 0.223404 6.31273e-20)
(0.902298 -0.0201323 1.54672e-20)
(1.00418 -0.108279 1.6949e-21)
(0.7703 0.178933 -6.52958e-21)
(0.875673 -0.0342399 -6.78158e-21)
(0.000603045 -0.0626136 8.41871e-21)
(1.1764 0.138655 3.36217e-21)
(0.901382 0.0508511 4.00418e-20)
(0.679433 0.154525 4.67774e-21)
(0.95796 -0.00350336 6.37581e-22)
(0.841679 0.229518 1.24498e-20)
(0.880228 -0.243052 1.5124e-21)
(0.950841 -0.107374 -9.07317e-21)
(0.923871 0.109185 3.26211e-20)
(0.00171692 -0.0923582 3.61282e-21)
(0.777536 0.153668 -5.5999e-22)
(0.421853 -0.000521501 -2.5743e-21)
(0.987552 -0.00017344 1.0513e-21)
(0.857411 0.10471 2.68402e-20)
(1.08113 0.222092 2.87367e-20)
(0.914391 -0.019123 -9.15797e-22)
(0.573948 -0.0787988 -4.32355e-21)
(0.00176202 -0.0735935 -9.78552e-21)
(0.00606954 -0.123535 -3.34465e-21)
(0.833435 0.115601 4.7904e-20)
(1.01164 -0.309671 -9.46045e-22)
(1.14985 0.118418 -1.00674e-20)
(0.836453 0.183123 2.60192e-21)
(0.0401976 -0.215535 -3.11694e-21)
(1.22551 0.19803 2.91144e-21)
(0.824405 0.119751 -2.60436e-20)
(1.20435 -0.172278 -4.82311e-21)
(0.917404 -0.0203045 2.09855e-21)
(0.171082 0.0367657 -5.44873e-21)
(-1.8831e-05 -0.0643714 8.64506e-21)
(0.967581 -0.334732 8.17858e-21)
(1.05408 0.223889 3.81356e-20)
(1.05765 0.144176 -2.74092e-20)
(0.905216 -0.0216575 -6.62824e-21)
(0.865111 0.0376767 -1.46578e-20)
(1.01117 -0.12014 5.55112e-21)
(0.92192 -0.0230557 1.43939e-21)
(0.908818 -0.0185033 3.32563e-21)
(0.860294 0.148844 -1.22518e-20)
(1.03046 -0.210458 6.00358e-21)
(1.1694 0.101378 1.83838e-20)
(0.932845 -0.00305575 -4.89262e-21)
(1.12095 0.164113 -2.04334e-20)
(0.94106 -0.180999 1.82848e-20)
(0.399943 -0.133968 -2.66442e-20)
(0.710685 -0.100419 1.57666e-20)
(0.808172 0.0591031 5.29406e-20)
(0.759376 0.111707 -3.40193e-20)
(0.233972 0.049534 1.23442e-21)
(0.623855 -0.167952 1.7488e-20)
(0.0310439 -0.199453 3.23613e-20)
(0.894894 -0.0246575 -5.79435e-22)
(1.06045 0.213015 3.30922e-20)
(0.83549 0.105985 3.73441e-21)
(1.03912 0.22387 -2.28976e-20)
(0.927484 -0.180669 2.46531e-21)
(0.887877 -0.0297679 -5.8578e-21)
(0.0532632 -0.235251 1.64154e-20)
(0.962406 -0.127229 -1.20646e-21)
(0.821828 -0.154 -5.33271e-21)
(0.852954 -0.135449 -2.35397e-21)
(0.933023 -0.0649369 -3.27845e-21)
(0.948148 -0.00149413 -1.28557e-21)
(0.870413 -0.021563 3.15768e-21)
(0.596557 0.000742362 7.97062e-21)
(1.06811 0.224331 -3.50141e-21)
(0.920803 -0.0212757 -7.91244e-21)
(1.21432 0.17921 9.9086e-22)
(0.966342 0.140129 2.99536e-20)
(0.10557 0.0245564 -1.92386e-21)
(0.810386 0.047957 5.49329e-20)
(0.928562 0.00595043 -7.60652e-20)
(0.311012 -0.000535764 -1.15145e-20)
(1.00603 -0.229453 4.16144e-21)
(0.926101 -0.035946 3.3579e-22)
(0.899878 0.202526 -5.3245e-21)
(1.02743 -0.19677 8.01312e-21)
(0.855193 -0.0281098 -1.39537e-20)
(0.00161193 -0.0601761 -9.76011e-21)
(0.982682 -0.221147 -2.87102e-21)
(1.09482 0.120821 3.25492e-20)
(0.842571 -0.127578 9.00942e-21)
(0.79796 -0.00131212 -1.81124e-20)
(0.985447 -0.162941 -1.20568e-22)
(0.738367 -0.0276595 -2.11932e-20)
(0.841572 -0.0567538 2.47402e-21)
(0.824475 -0.0651088 -9.38424e-23)
(0.379975 0.0830561 8.45338e-21)
(0.596631 -0.117103 2.71634e-20)
(1.26978 -0.282148 -1.9619e-21)
(0.395113 -0.0515982 2.74574e-20)
(0.329154 0.19075 -2.62211e-20)
(0.385739 -0.0517533 8.56785e-21)
(0.971036 -0.00160134 4.04398e-21)
(0.959558 -0.0329005 8.44943e-22)
(0.637566 0.18628 4.40874e-21)
(0.971067 -0.000559582 9.70881e-22)
(0.914471 0.161508 -2.94611e-20)
(1.06185 -0.167358 9.47413e-22)
(0.706673 0.146 7.95984e-21)
(1.06114 0.143611 -2.08495e-21)
(1.39475 -0.419746 2.50573e-21)
(0.958056 -0.107631 1.37226e-21)
(0.959385 -0.000602515 -1.06757e-21)
(1.15409 0.210523 7.96837e-21)
(0.407605 0.000392289 3.60807e-21)
(0.725656 -0.102865 5.15061e-21)
(0.872948 0.233222 3.85876e-20)
(0.905531 -0.0239695 -4.11985e-21)
(0.944691 -0.00756302 4.27698e-21)
(0.856524 -0.0498271 1.44083e-21)
(0.374889 0.0215539 -3.2498e-20)
(0.977381 0.105286 -3.27381e-20)
(0.00177199 -0.0897355 3.17562e-21)
(0.968874 -0.001123 2.82961e-20)
(0.778141 -0.111065 -9.24539e-21)
(0.954193 -0.132708 1.47825e-21)
(1.1785 0.194209 -1.04032e-20)
(0.0930558 0.0221756 -2.31206e-21)
(0.954896 -0.143373 -1.24235e-20)
(0.611965 -0.124276 -1.50793e-20)
(0.870414 0.10555 -3.86131e-20)
(0.877106 -0.0371033 8.41562e-21)
(0.895355 -0.0272115 -1.63853e-21)
(1.07269 -0.492488 1.46397e-21)
(1.17016 0.206289 -1.78836e-21)
(0.95806 0.138589 3.22869e-20)
(0.863782 -0.042534 6.59246e-22)
(0.964287 -0.0028119 3.72529e-21)
(0.518191 0.10707 3.95075e-22)
(1.13021 -0.182344 -2.96129e-21)
(1.15714 0.162229 2.58159e-20)
(0.00169789 -0.086956 -1.45687e-20)
(0.854811 -0.275935 1.01562e-20)
(0.932653 -0.0703582 -4.4698e-21)
(0.915478 -0.0054643 1.85126e-21)
(0.776199 -0.0451073 2.32605e-20)
(0.828642 -0.0964354 7.34881e-21)
(0.0895367 -0.167355 -2.87259e-20)
(0.88909 -0.0323933 -7.83209e-22)
(1.0299 -0.134634 4.60753e-21)
(1.06035 0.232945 -4.45333e-20)
(0.966082 -0.176337 4.06649e-21)
(0.959315 -0.140233 1.51276e-20)
(0.928348 0.000371092 -6.9112e-21)
(1.00016 -0.113531 5.29326e-21)
(0.916116 -0.0148817 4.15235e-21)
(0.272071 -0.0789138 1.76158e-20)
(0.420558 -0.233688 -2.49837e-20)
(1.37718 -0.0616068 -2.45471e-22)
(0.914732 0.137995 1.25646e-21)
(0.386685 0.0853587 -1.14533e-20)
(0.936063 -0.0704596 3.56251e-21)
(0.0169746 -0.103076 -1.47831e-20)
(0.172642 -0.335619 1.93171e-20)
(0.929022 -0.00378071 -3.03116e-21)
(1.14807 0.200219 1.21811e-20)
(1.02664 0.10253 1.19502e-20)
(1.04072 -0.232094 -1.30687e-20)
(0.975777 -0.132329 1.28362e-21)
(0.881956 0.000854337 1.52064e-20)
(0.100311 -0.291566 -3.20765e-20)
(0.380875 0.126911 1.00437e-20)
(0.881622 -0.00974832 -7.36238e-21)
(0.96161 -0.113851 -1.73276e-22)
(0.74271 -0.647081 1.47415e-20)
(0.901647 -0.554873 -5.34291e-21)
(0.569017 0.170766 1.20539e-20)
(0.90231 -0.0728536 4.64102e-21)
(0.103891 0.0220695 6.67148e-21)
(0.972968 -0.0547405 4.3488e-21)
(0.938838 -0.0279842 5.50006e-22)
(0.128472 -0.376027 -2.83661e-20)
(1.01848 0.136138 2.49114e-22)
(1.19646 -0.547432 8.13146e-22)
(1.0348 -0.135722 -2.45693e-21)
(0.824872 0.00163497 -1.49817e-20)
(0.449867 0.0988373 -1.50846e-20)
(1.00863 -0.455002 -6.79104e-22)
(0.285762 -0.000578405 2.16833e-21)
(1.02502 -0.166448 2.87597e-21)
(0.898067 -0.00861638 7.60886e-21)
(0.70797 0.0367144 -3.20119e-20)
(1.20845 -0.583092 9.1701e-21)
(0.118541 0.0370613 -3.58591e-21)
(0.954517 -0.000804395 -9.41123e-21)
(0.757139 -0.0207725 1.50566e-20)
(0.921408 -0.0071988 8.85546e-21)
(0.236653 3.71144e-05 -7.09884e-21)
(0.996373 -0.229767 -1.17087e-20)
(0.952323 0.0830021 9.85614e-20)
(1.0039 0.102749 1.79076e-20)
(0.939189 -0.00586805 1.75481e-21)
(0.805129 0.235985 5.43086e-21)
(1.13093 -0.191858 1.69252e-21)
(0.64006 -0.0309625 1.08365e-20)
(0.291468 0.0662126 -3.17163e-21)
(0.830985 -0.111459 6.09621e-21)
(0.553582 0.11244 1.01292e-21)
(1.12377 0.207836 1.06614e-20)
(0.706125 0.140332 1.34195e-21)
(0.954741 -0.105446 2.32425e-21)
(0.972931 -0.197528 -7.7014e-21)
(0.072481 -0.259969 3.37546e-20)
(0.0425334 -0.197462 1.50902e-21)
(1.20853 0.201704 1.38087e-20)
(0.4761 0.0979677 -2.9533e-21)
(0.913192 -0.147337 -8.57121e-21)
(0.97777 -0.000794244 -7.17893e-23)
(0.94952 0.135999 -1.01731e-20)
(0.514858 0.105704 5.11502e-23)
(1.29528 -0.410203 1.00583e-20)
(0.911957 -0.131781 1.54107e-21)
(0.0872748 0.0193466 8.30393e-21)
(0.905782 -0.0597028 4.58876e-21)
(1.0341 0.105323 1.67699e-20)
(0.145982 0.0326634 6.38814e-21)
(0.184847 -0.000894938 -5.22534e-21)
(0.0493265 -0.176426 2.70009e-20)
(1.22254 0.1984 1.37182e-20)
(0.95637 -0.090775 -1.97371e-21)
(1.09358 0.200478 1.27907e-20)
(0.986236 0.138975 -2.62118e-20)
(0.928638 -0.0399936 -2.94465e-21)
(0.969102 -0.165158 6.90941e-21)
(0.173585 0.0425119 -7.86522e-21)
(0.714561 -0.676713 1.80284e-20)
(0.899031 -0.096218 -1.0952e-21)
(0.706306 -0.00480271 3.45966e-20)
(0.755741 0.135624 1.94441e-20)
(0.75929 0.00175929 -2.32216e-20)
(0.770876 -0.0634068 2.15865e-20)
(0.957633 -0.0595807 -4.47833e-21)
(0.190288 -0.320864 6.86692e-21)
(0.744408 -0.0722235 -6.34088e-21)
(0.247582 0.0535665 -6.21806e-21)
(0.0479243 -0.247554 1.51268e-20)
(0.00296448 -0.0562047 1.0328e-22)
(0.532327 -0.016029 -2.0423e-20)
(1.00125 0.101296 3.36835e-20)
(1.02183 0.256239 2.91847e-20)
(0.011487 -0.120219 1.57438e-21)
(1.22111 -0.208701 -4.46474e-21)
(0.671873 0.146677 -4.44467e-21)
(0.179966 0.0403148 -1.9652e-21)
(0.160775 0.0344207 2.99264e-21)
(0.736139 0.0109953 1.87695e-20)
(0.926808 -0.0846203 -2.24922e-21)
(0.805997 0.329563 1.0942e-20)
(0.947243 -0.0499918 -7.48434e-21)
(1.18088 -0.290044 5.40857e-21)
(0.922524 -0.0274479 1.75774e-21)
(0.952197 -0.0995049 9.83816e-22)
(0.967637 -0.203656 -1.0742e-21)
(1.00711 -0.118395 -1.97291e-21)
(1.18551 0.173657 4.928e-21)
(0.959898 -0.0593152 -9.44461e-22)
(0.914765 -0.00830979 -1.59278e-21)
(1.17712 -0.275995 -1.00789e-21)
(0.0357568 -0.0250553 -2.01494e-20)
(0.194703 -0.431793 2.69397e-20)
(1.1451 0.212648 -1.47829e-21)
(0.323447 0.0747284 1.79345e-21)
(0.996511 -0.247216 -2.16905e-21)
(0.943045 -0.00276996 -7.67773e-21)
(0.667425 -0.199496 -1.79915e-21)
(0.903755 -0.0767886 4.13572e-21)
(0.876384 -0.0252287 5.31593e-22)
(0.994914 -0.158659 -1.7355e-21)
(0.244575 -0.00251851 -2.09547e-21)
(0.909477 -0.00350118 -7.22144e-21)
(0.871832 -0.118834 -1.05145e-20)
(0.514935 -0.0493047 9.77942e-21)
(1.03099 0.192615 4.55264e-20)
(0.949587 -0.050242 3.66431e-21)
(0.148596 -0.351141 -2.97002e-21)
(1.00025 -0.126942 1.74851e-21)
(0.686461 -0.0437831 -2.35194e-20)
(0.863871 -0.142379 -6.52207e-21)
(0.941184 0.132609 7.27065e-21)
(0.753661 -0.0907306 -5.44966e-21)
(1.05643 -0.182622 -4.87335e-21)
(0.827366 -0.0202188 5.20097e-21)
(0.942322 0.00366555 2.02529e-19)
(0.886793 -0.0181568 1.7365e-21)
(0.937597 -0.0678095 1.48828e-21)
(1.19174 0.188902 -1.45616e-20)
(0.906948 -0.0632638 5.77988e-21)
(0.953985 -0.0853919 -1.21212e-21)
(0.707273 0.0332548 2.38269e-20)
(0.99148 -0.12754 2.76657e-21)
(0.961766 -0.118132 4.42035e-21)
(0.958836 -0.0962851 -2.3042e-21)
(0.946391 -0.0477642 5.32267e-21)
(0.0220312 -0.0919266 -7.60811e-21)
(0.95854 -0.0998957 4.05513e-22)
(0.836796 -0.10632 -7.43314e-21)
(1.08061 0.156733 4.14684e-21)
(0.466052 0.019072 4.74257e-21)
(0.987767 -0.000193016 5.69096e-21)
(0.82251 0.00188326 1.38425e-22)
(0.974765 -0.0541999 -4.09997e-21)
(0.990572 -0.0766007 8.52267e-22)
(1.44834 -0.147447 3.71919e-21)
(0.459719 -0.00289096 4.62842e-21)
(0.780744 -0.0493062 -2.14685e-20)
(0.959384 -0.0554201 3.4506e-21)
(1.04181 -0.14092 -3.23318e-21)
(0.578175 -0.0580053 -1.23717e-20)
(0.805513 0.156826 3.24702e-21)
(0.19232 -0.340631 -4.52185e-21)
(0.972378 0.109004 -3.15792e-20)
(0.912382 0.0637267 -1.29741e-20)
(0.202253 0.000594005 6.62379e-21)
(1.24813 0.191084 -7.05953e-21)
(0.971103 -0.0626888 6.87995e-22)
(0.755227 0.00260913 -2.21832e-20)
(1.16348 -0.272547 -1.37857e-21)
(0.98388 -0.000360819 -7.08316e-22)
(1.01442 -0.117786 -3.02623e-21)
(0.868691 -0.0912221 -1.80257e-20)
(0.338205 0.0750002 -1.72691e-21)
(0.945384 -0.00488423 -1.14385e-21)
(0.737316 0.171422 1.4872e-20)
(0.96289 -0.132055 -3.78715e-22)
(0.48373 0.106132 1.14657e-20)
(0.960546 -0.0633711 -2.7544e-21)
(0.958439 -0.00479439 4.1601e-23)
(0.869042 0.248047 -1.67057e-20)
(1.01237 0.266988 7.14898e-21)
(0.699404 -0.00727666 8.59873e-21)
(0.991825 -0.221664 5.53059e-22)
(0.891065 -0.0454115 -2.0482e-21)
(0.798764 0.165996 1.97679e-21)
(0.928256 0.177669 -4.2165e-20)
(0.866145 -0.0748251 9.08549e-21)
(0.97578 -0.0709148 4.34281e-21)
(0.595222 0.133753 9.10949e-22)
(1.15097 -0.508849 -1.41593e-20)
(0.966896 0.0847118 4.66696e-20)
(0.79758 -0.0359795 -1.38073e-20)
(0.573594 -0.0685138 1.33264e-20)
(0.889274 -0.0389601 -6.6672e-21)
(0.97652 -0.000807176 -5.20297e-21)
(0.947453 -0.00615842 1.83902e-21)
(0.909078 -0.014478 -4.22224e-21)
(1.14379 0.2127 8.52318e-21)
(1.01993 0.129926 -6.01614e-21)
(0.949758 -0.0132584 2.28184e-23)
(1.02344 0.140249 -1.31704e-21)
(0.969734 -0.053802 -1.84272e-21)
(0.918945 -0.0142838 -8.06411e-21)
(0.961351 -0.0611219 1.75805e-21)
(0.870881 -0.0123591 1.43031e-20)
(0.932827 -0.0123841 6.38681e-23)
(1.03076 0.105527 -8.20881e-21)
(0.986566 -0.000309311 -4.43868e-21)
(1.00636 0.143678 1.7829e-20)
(0.790645 -0.0810988 8.42344e-21)
(0.751283 -0.317486 -3.11941e-21)
(0.902579 -0.128331 4.55965e-21)
(0.978094 -0.000606254 2.18055e-20)
(0.867423 -0.0107677 -6.52097e-21)
(0.919828 -0.00941701 1.71562e-21)
(0.834803 -0.0223808 1.23728e-20)
(0.934548 -0.00530392 -2.8476e-21)
(0.953713 -0.0260688 1.88603e-21)
(1.01579 0.125598 3.39448e-20)
(1.02681 0.122457 3.30935e-20)
(0.872678 -0.0139613 3.70988e-22)
(0.486161 0.106341 2.43012e-22)
(0.488626 0.00233247 -1.41147e-20)
(1.43977 -0.135591 -7.29019e-21)
(0.95406 -0.00321292 3.97127e-21)
(0.99757 -0.086946 5.38125e-21)
(0.971611 -0.0533711 -3.0735e-21)
(0.954152 -0.0621517 -2.1268e-21)
(1.23736 -0.194321 3.86567e-21)
(0.869001 -0.433155 1.49958e-20)
(1.19777 0.189112 1.05015e-20)
(0.900344 0.0848073 -4.10822e-21)
(0.299069 0.0650142 4.29157e-22)
(0.952139 -0.0217825 -3.88222e-26)
(0.675694 0.140102 -5.66457e-23)
(1.00872 0.136855 -2.24605e-20)
(0.0050509 -0.0512403 9.53269e-21)
(1.05144 -0.162115 5.7953e-21)
(0.715465 -0.0560759 1.75133e-20)
(0.776875 0.0392307 -7.23204e-20)
(0.950081 -0.0463879 -9.35073e-22)
(0.901754 -0.0922361 2.69537e-21)
(0.926373 -0.0304848 -1.23663e-20)
(0.385302 -0.021657 1.47941e-20)
(0.875599 -0.113397 -2.33643e-21)
(1.03501 0.125809 4.15524e-20)
(0.924435 -0.0220722 5.0692e-21)
(1.01171 0.121254 7.54983e-20)
(0.924964 -0.0263121 1.11632e-22)
(0.953713 -0.088779 5.39639e-21)
(1.02588 0.222417 -7.31868e-21)
(0.972507 -0.0013202 1.76663e-21)
(0.91371 -0.0261394 -6.92471e-21)
(0.698957 0.125824 4.22607e-21)
(1.24525 -0.526273 3.4626e-21)
(0.641176 0.227712 -8.31872e-21)
(0.940055 -0.220418 -1.60246e-21)
(0.76411 0.00695453 -1.96663e-20)
(0.333515 0.0737357 -7.07235e-21)
(0.811648 -0.0709584 -1.31364e-20)
(1.03873 0.107845 -5.79008e-20)
(1.01394 -0.11383 3.40971e-21)
(0.584198 -0.131022 -2.83455e-20)
(0.141861 -0.330585 -4.46835e-21)
(0.888582 -0.0217168 2.46022e-21)
(0.759646 -0.171772 7.90646e-21)
(1.00798 -0.13131 -2.15725e-21)
(1.10535 0.215536 -1.70331e-20)
(0.826662 0.0010403 1.61887e-21)
(0.371219 0.0823537 7.05131e-21)
(0.957467 -0.0307696 3.55279e-22)
(0.856622 0.050594 7.3787e-20)
(0.987984 0.161061 -3.49601e-20)
(0.964104 0.0832318 -1.74635e-20)
(0.918502 -0.0045977 7.14675e-21)
(1.08724 0.224093 -2.08234e-20)
(0.406594 0.0907023 4.88177e-21)
(0.748874 0.00143226 -6.42818e-21)
(0.960764 -0.05722 -1.00835e-21)
(1.02369 0.14881 -2.85163e-20)
(1.43239 -0.104663 -2.736e-21)
(1.0303 0.255942 -1.20557e-20)
(0.914042 -0.00896014 3.92636e-22)
(1.13287 0.213444 1.86225e-21)
(1.17681 -0.348703 5.2749e-21)
(0.917131 -0.00814616 -6.34632e-22)
(0.916571 -0.0250684 -5.58124e-21)
(0.207697 0.015384 6.27369e-21)
(0.954762 -0.00447767 4.61119e-21)
(0.87462 -0.0208361 2.16742e-21)
(0.928399 -0.0345376 3.47894e-21)
(0.885874 0.187296 -2.09912e-21)
(0.926326 0.0796924 -6.25331e-21)
(0.89116 -0.228062 -4.87087e-21)
(0.356169 0.0779386 4.56307e-21)
(1.14625 -0.621799 -2.23129e-20)
(0.975736 -0.0445217 -5.82557e-22)
(0.932909 0.128394 9.32508e-21)
(0.701207 -0.260435 -1.6849e-20)
(0.966238 0.106952 -2.88707e-20)
(1.01144 -0.237448 -7.05951e-21)
(0.72108 -0.0179899 2.40233e-21)
(1.00124 0.0983533 -3.73489e-20)
(1.00563 0.139558 -9.80149e-21)
(0.898867 -0.0260601 1.14091e-21)
(0.987275 0.102181 1.36923e-20)
(1.16549 0.205691 7.03416e-22)
(0.908668 -0.0229945 8.38696e-22)
(0.192676 0.0447944 3.70135e-21)
(0.874473 0.180457 7.84242e-22)
(1.05586 -0.418011 5.53559e-21)
(0.998356 -0.0976072 2.79022e-21)
(1.15741 -0.472546 -6.3259e-21)
(0.490966 -0.0129037 3.54561e-20)
(0.926103 -0.0387734 -2.01416e-22)
(0.416386 -0.067646 1.94555e-20)
(0.905167 -0.0697253 2.75162e-21)
(0.611455 0.132047 -5.12096e-21)
(0.972408 0.0842897 -5.40955e-20)
(1.01984 0.263805 3.75446e-20)
(0.87739 -0.013211 -2.47104e-21)
(1.42083 -0.196002 -7.1655e-21)
(0.881224 -0.0354471 -2.75221e-21)
(1.02764 -0.243966 3.78726e-22)
(0.780651 -0.0932518 1.27184e-20)
(1.02589 0.259915 -3.75407e-20)
(0.974382 0.14099 4.50516e-20)
(0.450311 0.000110911 -2.55848e-21)
(0.338373 -0.0715677 -9.6542e-21)
(0.840636 -0.0214294 7.84554e-21)
(1.20046 0.12325 -1.56159e-20)
(0.771876 0.213765 -6.25962e-21)
(0.813794 -0.12846 -1.14396e-20)
(0.902443 -0.0842379 -3.69562e-21)
(0.97508 -0.0612415 1.34936e-21)
(1.07409 0.168668 -2.38288e-21)
(1.02584 -0.273868 4.10396e-21)
(1.24373 -0.29861 4.66145e-21)
(1.13898 0.146766 1.96547e-20)
(0.922575 -0.16223 1.09533e-20)
(0.981533 0.100916 -9.15312e-20)
(0.846608 -0.0543788 -2.20875e-21)
(0.555181 0.121936 -1.25523e-20)
(1.28088 0.0609986 -2.73882e-21)
(0.945821 -0.0518814 4.09128e-22)
(0.408543 0.113824 -4.31276e-22)
(0.41796 0.0914045 -4.51842e-21)
(0.95431 0.10772 -2.34226e-20)
(0.938354 -0.293105 1.31342e-21)
(0.975629 -0.078412 1.20257e-21)
(0.991703 0.0832437 5.12159e-21)
(1.00242 0.192914 -9.26728e-21)
(0.899722 -0.0878649 2.15329e-21)
(0.58286 0.0413561 -2.72943e-20)
(1.02287 -0.124817 1.87032e-21)
(0.941631 -0.0381184 1.58245e-21)
(0.908327 -0.0570765 1.70505e-21)
(0.839197 0.176147 -6.6182e-21)
(1.09756 0.218506 -1.59713e-20)
(0.84702 -0.0337028 6.70937e-22)
(0.973404 -0.000317707 -4.25631e-21)
(0.959121 -0.0312508 -3.5172e-21)
(0.935941 -0.00729345 1.3555e-21)
(0.830089 -0.0622294 -7.16139e-21)
(0.860941 -0.0263965 5.21505e-21)
(1.08655 -0.566076 -1.52128e-20)
(0.745093 -0.0396682 5.23568e-21)
(0.819589 -0.0169569 -4.56017e-21)
(0.977354 -0.0585138 1.94075e-22)
(0.832672 -0.118756 -1.019e-20)
(0.341577 0.0763723 1.11928e-20)
(0.897836 0.0593315 2.55614e-20)
(0.77728 -0.119442 3.60498e-21)
(0.0824942 -0.189696 1.24262e-20)
(0.785636 -0.0250899 -4.14825e-21)
(1.07809 0.228027 2.75726e-20)
(0.450557 0.0976013 7.22053e-21)
(0.423209 -0.199179 1.18799e-20)
(1.01331 0.225862 1.61234e-20)
(0.868359 -0.0406344 2.17468e-21)
(0.955524 -0.078919 -4.16178e-22)
(1.29213 -0.498032 9.82563e-22)
(0.177827 -0.163133 -7.54945e-21)
(0.0887036 0.019847 -1.13974e-20)
(0.82837 0.000685859 2.39104e-21)
(0.973378 -0.0770948 -3.37358e-21)
(1.107 0.177714 -1.82103e-20)
(0.752011 0.00218367 -1.41251e-21)
(0.966562 -0.00251766 -4.29065e-21)
(0.97567 -0.0811299 -1.44929e-21)
(0.825063 0.175498 -1.11746e-20)
(0.964046 -0.0366686 -2.60978e-21)
(0.155545 0.0346512 1.20127e-20)
(0.441541 0.0978179 -4.94637e-21)
(0.955296 -0.0267774 -7.09012e-21)
(0.961762 -0.034865 -3.13694e-23)
(1.06532 0.195653 2.76197e-21)
(0.462503 -0.000514644 -5.55681e-22)
(0.423395 -7.22572e-05 -1.06507e-20)
(0.892807 -0.0309877 -1.4677e-21)
(0.955294 0.0880461 5.18132e-20)
(0.877103 0.11646 4.59216e-20)
(0.955761 -0.00307605 -6.46645e-21)
(0.992454 -0.00021099 -5.84995e-21)
(0.371749 0.00247604 -6.78323e-21)
(0.939971 0.179945 -3.21185e-20)
(0.358908 -0.512401 3.38351e-20)
(0.961551 -0.105758 1.15949e-21)
(0.883331 -0.028425 2.47637e-21)
(0.985116 -0.000484658 -4.06959e-20)
(0.960115 0.0697467 6.09089e-22)
(0.650719 0.173303 7.37207e-21)
(0.993864 -7.89125e-05 -4.13722e-21)
(1.14181 0.136467 -7.04048e-21)
(0.433856 0.096304 8.04864e-21)
(0.928725 -0.15939 -1.82318e-21)
(1.11685 0.215327 -9.14488e-21)
(0.827549 -0.146582 2.90341e-21)
(1.27291 -0.54492 3.02662e-21)
(0.950574 -0.0521428 -4.2677e-21)
(0.939206 -0.0235459 -2.04574e-21)
(1.03281 -0.202568 -8.68062e-21)
(0.612501 0.151741 8.24531e-20)
(0.539789 0.000474986 4.87854e-24)
(0.980283 -0.000340783 2.15592e-21)
(0.935163 -0.0117792 1.95046e-22)
(0.511934 -0.379342 -7.48167e-23)
(0.386943 0.0855065 -3.88742e-21)
(0.860378 -0.135925 6.38184e-22)
(0.950916 -0.0483499 2.61148e-21)
(0.760022 -0.011386 -4.16691e-21)
(0.980726 0.10444 1.42734e-20)
(0.792627 0.169582 1.75265e-21)
(0.558815 -0.147701 2.23257e-20)
(0.322781 0.07127 3.7394e-21)
(1.07324 0.17226 3.73386e-21)
(0.956484 -0.000973547 1.43303e-20)
(0.849975 -0.128662 -1.59734e-21)
(0.946513 -0.00731538 4.1673e-21)
(0.936181 -0.0651645 6.58202e-22)
(1.14241 0.212601 -6.52675e-21)
(0.960266 -0.0534507 2.84322e-21)
(0.861322 -0.0476976 2.1983e-21)
(0.976097 -0.0430172 -7.83893e-22)
(0.877437 -0.0443727 -5.75198e-22)
(0.351152 0.108817 6.41356e-21)
(0.983216 -0.000282757 -5.42931e-22)
(0.675784 0.146637 9.44212e-21)
(0.977088 -0.0604631 -4.30406e-21)
(0.945129 -0.000745624 2.86716e-21)
(0.973013 0.000799941 -2.37531e-20)
(0.973325 0.000258243 -3.09213e-20)
(0.6986 0.264365 8.00753e-21)
(0.517731 0.141467 1.49898e-20)
(0.524409 0.04768 8.30414e-20)
(1.25216 -0.177854 3.49121e-21)
(0.91822 -0.0127593 2.30517e-21)
(0.263567 -0.0142668 2.13107e-21)
(0.961494 0.117943 4.44308e-20)
(1.02626 -0.146317 -5.66353e-21)
(0.917229 -0.116425 -5.58919e-22)
(0.97489 0.0826664 2.96537e-22)
(0.953602 -0.0243189 3.42587e-21)
(0.450479 -0.0957129 -5.07067e-21)
(0.942587 -0.0301002 -1.92598e-21)
(0.657109 -0.178104 5.9121e-21)
(0.364684 0.231935 1.87874e-20)
(0.911901 -0.0177319 -4.67398e-21)
(0.647976 -0.0702783 -1.38653e-20)
(1.0252 0.119442 -3.39051e-20)
(0.97048 -0.211735 -3.30004e-21)
(0.951097 -0.158863 -3.19655e-21)
(0.840142 -0.120473 1.98184e-21)
(0.278505 0.00128127 7.42511e-21)
(0.805231 0.173557 -5.17172e-21)
(1.08439 -0.651351 1.16114e-20)
(0.917566 -0.130472 2.39227e-21)
(0.865426 -0.118282 5.84967e-21)
(1.02847 -0.130145 -1.80689e-21)
(0.999529 0.12291 1.00825e-20)
(0.911902 0.299922 -9.20512e-21)
(0.94242 -0.0491544 -1.10037e-21)
(0.976168 -0.0554366 4.58151e-21)
(0.993942 0.0935181 -3.11497e-20)
(0.940704 -0.0268934 -4.10835e-22)
(1.01045 -0.112094 1.80656e-21)
(0.147529 0.0332799 9.82058e-21)
(0.908346 -0.127444 -9.20401e-21)
(0.872113 -0.0264089 9.1358e-22)
(0.999674 -0.0885685 8.3645e-22)
(1.20351 -0.221226 -1.53009e-21)
(0.993407 -0.00013748 5.07411e-21)
(1.10419 0.143095 -3.78933e-21)
(0.482059 0.103658 7.26257e-21)
(0.988174 -2.95214e-05 -1.70756e-21)
(0.980157 -0.000565243 1.04402e-21)
(0.933742 -0.0076081 -7.74969e-22)
(0.742772 -0.692043 -1.39103e-20)
(0.246262 0.0565772 -2.37607e-20)
(0.89143 0.202657 7.70936e-21)
(0.970686 -0.0869714 -8.80142e-22)
(0.854983 -0.0106019 -1.75597e-24)
(0.980465 -0.000434509 4.12205e-21)
(0.973304 0.000572312 -1.82022e-20)
(0.972593 -0.00084149 -2.32629e-20)
(0.301714 0.0668149 -4.30397e-21)
(0.790372 -0.0683392 -1.62023e-20)
(0.866814 -0.0797139 -8.52934e-21)
(0.994325 -0.000104177 -2.89557e-22)
(1.11443 0.137953 -1.08681e-21)
(0.268967 -0.496187 -1.59095e-20)
(0.984672 -0.048529 -1.64959e-21)
(1.01867 0.0934359 1.38933e-20)
(0.940824 -0.067749 6.55768e-23)
(1.01816 -0.11933 3.58859e-22)
(0.756834 -0.00236705 9.40791e-22)
(0.980195 -0.100728 5.66437e-21)
(0.887813 -0.286739 -8.73922e-21)
(0.303992 -0.116178 -6.98155e-21)
(0.919545 0.187231 -1.13864e-20)
(0.825709 -0.161879 6.08362e-21)
(1.00417 -0.0980785 1.44825e-21)
(0.881277 0.193675 3.87803e-21)
(1.33523 -0.462856 1.25814e-20)
(0.947143 -0.0438432 -1.56156e-21)
(0.236226 0.0536684 6.96408e-21)
(0.857754 0.181498 4.75815e-21)
(0.97877 -0.0436865 -3.8227e-22)
(1.33651 -0.279413 4.56645e-21)
(0.0221841 -0.0423923 1.5018e-20)
(0.239805 -0.0749075 -1.25913e-20)
(0.80333 0.176124 2.34082e-20)
(0.94786 -0.105346 5.87825e-21)
(0.522701 0.0294469 4.28004e-21)
(1.01598 0.0926251 6.80814e-21)
(0.19569 -0.186833 1.66229e-20)
(0.535469 -0.0532984 -9.32815e-21)
(0.992517 -6.41221e-05 9.28693e-22)
(0.916957 0.20802 -4.9865e-21)
(0.798561 -0.000793713 5.70181e-20)
(0.0953762 0.0209574 -8.17874e-22)
(1.20005 0.167735 -1.5157e-20)
(1.13472 0.137537 -5.33905e-21)
(0.99803 -0.0843125 -1.53736e-21)
(0.835758 -0.0994837 -1.71375e-21)
(0.810049 0.0243043 8.17214e-20)
(1.02626 -0.670021 -3.1854e-20)
(0.908492 0.198987 -1.70064e-21)
(0.903975 -0.0107772 3.22655e-21)
(0.991983 -0.000196837 -4.83891e-21)
(0.168645 0.0392776 -1.51844e-21)
(0.816098 -0.0527898 1.65965e-21)
(0.530166 -0.0372949 3.59772e-20)
(0.769157 0.332992 -2.1634e-20)
(1.18241 0.123535 -2.10865e-20)
(0.751146 -0.133331 2.0426e-21)
(0.951235 0.18104 1.28054e-20)
(0.855615 -0.0128744 -2.46953e-20)
(0.425765 0.093988 4.59748e-21)
(0.927223 -0.0474444 4.45742e-21)
(0.752349 -0.665818 -1.80887e-20)
(1.12797 0.138066 5.48841e-20)
(0.930845 -0.0384004 3.19002e-21)
(0.95695 -0.084045 4.64801e-23)
(1.12113 0.138191 5.26082e-20)
(0.896707 -0.307715 4.74724e-21)
(0.95713 -0.0290926 2.80265e-21)
(0.680718 -0.0508656 -5.3087e-21)
(0.424419 0.0933261 4.81927e-21)
(0.849963 -0.620812 2.22981e-20)
(0.875153 -0.0283133 7.66382e-21)
(1.00854 0.0870952 -3.26191e-20)
(0.975849 -0.0573261 -1.50604e-21)
(0.94336 -0.0366565 -6.02427e-21)
(0.961218 -0.0332741 1.88417e-21)
(0.82962 0.175471 2.86419e-21)
(0.249592 0.0556562 8.38943e-21)
(0.942811 -0.000914107 -5.12299e-21)
(0.451121 0.0986888 5.82525e-21)
(0.915202 0.197383 -1.05739e-20)
(0.884021 -5.28417e-05 5.51282e-21)
(0.963429 -0.0351553 -1.69838e-21)
(1.15185 0.129919 8.353e-21)
(0.75624 -0.186111 1.06401e-20)
(1.0115 -0.124268 -3.38375e-21)
(0.953627 -0.044973 -2.79399e-21)
(0.798769 -0.647404 -2.66714e-21)
(1.26872 0.126417 2.02191e-21)
(1.1667 0.127111 3.38658e-21)
(0.934812 -0.236797 1.13106e-20)
(0.871491 -0.00297693 -9.14979e-22)
(1.17439 0.125585 5.65066e-21)
(0.35738 0.00211219 1.69962e-20)
(0.454577 0.0990153 -8.48183e-21)
(0.848655 -0.141724 -1.23773e-20)
(0.980228 -0.0432775 -3.57267e-23)
(1.15663 0.174041 -2.87143e-20)
(1.15919 0.128566 2.47368e-20)
(0.899867 -0.0284554 -1.1026e-20)
(0.819819 0.187584 -1.88233e-20)
(0.935036 0.23428 4.31346e-20)
(0.960792 -0.000439873 -6.33672e-22)
(0.607412 0.127468 1.88329e-22)
(0.38744 0.104645 -5.84533e-21)
(0.840626 -0.0186062 -1.43644e-20)
(0.870917 -0.508005 1.28083e-20)
(0.485225 0.00267277 -4.73515e-21)
(0.262548 0.057582 -4.15581e-21)
(0.944727 -0.0331285 -1.18498e-22)
(0.484048 0.000490764 -2.08459e-21)
(1.10173 0.215128 -4.84601e-22)
(0.163772 -0.140792 -3.93738e-21)
(1.23419 0.0468813 9.79757e-21)
(0.27407 0.0614514 4.03931e-21)
(1.26138 0.0392173 -1.65109e-20)
(0.972511 -0.0566138 9.94033e-22)
(0.178134 -0.180656 1.05276e-20)
(0.216985 -0.211457 -2.04544e-20)
(0.201318 -0.378535 -6.80852e-21)
(0.47764 0.103874 1.51315e-20)
(1.19065 0.121307 -3.51237e-20)
(0.650048 0.150587 -1.53039e-20)
(0.866014 0.122321 -5.01402e-23)
(1.0913 0.1417 -1.82659e-20)
(0.990347 -0.00023402 1.82282e-21)
(0.855997 0.0167711 -9.60817e-20)
(0.988114 -0.000227918 6.66465e-22)
(0.291101 0.0645078 2.66224e-21)
(0.352567 0.10033 1.08784e-20)
(1.26382 -0.159795 -2.6457e-21)
(1.14637 -0.350988 1.32923e-21)
(1.04209 -0.192902 4.3015e-22)
(0.917705 -0.0163235 4.48218e-21)
(1.09771 0.142437 -1.79666e-20)
(0.97896 -0.276517 3.11119e-21)
(0.434019 0.0941153 1.11654e-20)
(0.977885 -0.0547734 -1.63679e-21)
(0.976198 -0.000239387 -3.9335e-21)
(0.906879 -0.0168832 -7.36353e-21)
(0.822209 -0.0241507 7.60716e-21)
(1.08497 0.140223 -3.57163e-20)
(0.910377 0.191951 -1.71682e-20)
(0.424424 0.0929265 1.78549e-20)
(0.933941 -0.0107873 1.67622e-21)
(0.965178 -0.147657 1.45836e-21)
(0.024917 -0.191548 4.58607e-21)
(0.982015 -0.0467421 -1.58957e-21)
(1.10548 -0.247758 -3.52348e-21)
(1.05286 0.160049 -6.70958e-22)
(0.252117 0.057895 1.46063e-21)
(0.628533 -0.0425124 -6.54502e-21)
(0.85491 -0.0142247 -6.17947e-21)
(0.533837 0.115843 1.69646e-20)
(1.0047 -0.621021 1.83621e-21)
(0.922389 -0.0694982 4.96214e-21)
(0.593438 0.319282 -1.85792e-20)
(0.29008 -0.495799 -2.59392e-22)
(-6.72321e-05 -0.0463708 -4.80855e-21)
(0.959445 -0.0894586 8.08652e-21)
(0.965112 -0.111653 6.75428e-21)
(0.949952 0.232022 -2.01263e-20)
(0.963536 0.228872 -5.66666e-20)
(0.975786 0.224962 -4.47314e-20)
(0.986731 0.220313 -1.41663e-20)
(0.984808 -0.0470742 -3.20481e-21)
(1.00503 -0.213735 -1.0645e-20)
(0.268068 0.0608786 -2.21141e-21)
(0.331528 0.0721553 6.84485e-21)
(0.917305 0.201733 -3.71814e-21)
(0.977717 -0.0425972 2.6965e-21)
(0.31726 0.0698289 -7.1683e-22)
(0.97915 -0.0577399 -5.79657e-22)
(0.92556 0.211756 2.24214e-20)
(1.35496 -0.451802 -1.27264e-20)
(0.925815 0.204732 -8.18298e-21)
(0.255981 0.0583483 6.38797e-21)
(0.283159 0.063127 9.93641e-21)
(1.39747 -0.39093 -1.10789e-20)
(1.25549 0.0729113 -8.92672e-21)
(0.934743 -0.0472825 -7.78848e-22)
(0.902452 -0.0119605 1.43736e-21)
(0.382537 0.0835613 -5.50412e-21)
(0.546136 0.306556 2.09468e-20)
(0.470562 0.101705 -9.37737e-21)
(1.00422 0.0803158 3.76897e-20)
(0.308042 0.0677277 -2.28975e-21)
(1.27229 -0.139727 -1.78714e-21)
(0.454618 0.100055 -5.82954e-21)
(0.933622 0.207955 -4.80237e-21)
(1.04649 0.157636 -3.32786e-20)
(1.0624 0.139987 1.63964e-20)
(0.284102 0.0629577 -6.51754e-21)
(0.296456 0.0666375 -2.69735e-21)
(1.22798 0.050325 -7.01885e-21)
(0.926707 -0.102261 1.04387e-20)
(0.99088 -0.000250793 6.95378e-21)
(0.954563 -0.0737699 -3.91518e-21)
(0.676724 -0.0443228 2.74558e-21)
(0.509879 0.111559 1.24456e-20)
(0.941147 0.21084 1.381e-20)
(0.706949 0.17897 -3.68544e-21)
(0.924785 0.200176 -4.8358e-21)
(0.727656 -0.444411 -5.29837e-21)
(0.966416 -0.0382395 -2.63018e-21)
(0.724653 -0.0335706 -1.22472e-20)
(0.826996 0.0215677 -4.72113e-20)
(1.07865 0.139251 -8.99077e-21)
(0.883 -0.0211035 -8.58825e-21)
(0.978576 0.188001 -2.62122e-20)
(0.265487 0.0597268 -6.21144e-21)
(1.00377 -0.112355 -3.95182e-21)
(0.281053 0.0632321 -9.06019e-22)
(0.986126 -0.0464675 3.85501e-21)
(0.163265 -0.191064 -1.96395e-20)
(1.23624 0.085839 -2.16086e-20)
(0.934198 0.216465 -6.85332e-21)
(1.24573 0.0799914 1.22594e-20)
(0.374132 -0.0450877 4.40446e-21)
(0.772288 -0.0691517 -2.03536e-20)
(0.815308 -0.025176 -1.36596e-20)
(1.02939 0.10288 1.18399e-20)
(0.973599 -0.0599422 3.59513e-21)
(0.96961 0.0828707 -1.5176e-20)
(1.12657 0.214939 4.81845e-21)
(0.89574 -0.0145451 -2.03424e-22)
(0.933815 0.202664 -9.68403e-21)
(0.963739 -0.0395049 3.70437e-21)
(0.998645 0.0776114 -6.70767e-20)
(1.11744 0.209817 4.61991e-21)
(0.987461 -0.0472213 -2.67629e-21)
(1.26546 0.064709 -1.85961e-21)
(0.977883 -0.0770712 -3.39686e-21)
(0.941245 0.221128 5.3928e-21)
(0.977862 -0.0697711 -3.20565e-21)
(0.926112 0.22678 -5.36405e-21)
(0.888871 0.186777 -5.68713e-21)
(0.870555 -0.0435847 -6.41669e-22)
(1.0808 0.226962 -5.2802e-20)
(0.986008 -0.0494375 -2.12945e-22)
(0.870391 -0.0241755 -3.34779e-21)
(0.495718 0.107189 9.51348e-21)
(1.10071 0.213531 -2.70964e-20)
(0.634659 0.163952 -7.49968e-21)
(0.986243 -0.045053 -1.9178e-21)
(1.21631 -0.311454 1.91365e-21)
(1.24095 -0.127373 3.32245e-22)
(0.919179 -0.0921992 -2.45301e-21)
(0.589878 0.126658 -4.39563e-21)
(1.08013 0.19595 -1.01376e-20)
(0.96571 -0.03681 6.85839e-21)
(0.948178 -0.08586 -2.34874e-21)
(0.038473 -0.0935801 -1.43448e-20)
(0.544464 0.118094 -9.60053e-21)
(0.984004 -0.206072 4.5074e-21)
(0.521128 0.112663 -2.56187e-21)
(0.746602 -0.00239756 1.80482e-21)
(1.01569 0.179106 -5.09177e-20)
(0.940391 -0.00821146 -3.35287e-21)
(0.934875 -0.0304842 2.25117e-21)
(0.915489 -0.0115817 -1.21684e-21)
(0.973279 -0.085461 -2.4269e-21)
(1.08657 -0.246596 5.97048e-22)
(0.761945 0.184697 -1.44959e-20)
(0.966188 -0.124506 5.75933e-21)
(0.991449 -0.238315 5.7705e-21)
(0.961987 0.181155 1.55879e-20)
(0.980218 -0.256207 6.81484e-21)
(0.990871 0.0804681 -2.95801e-20)
(0.487014 0.134013 -1.07866e-20)
(0.928418 -0.00691027 4.23486e-21)
(0.855047 0.0706356 -4.95236e-20)
(0.567394 0.122422 -2.18911e-21)
(0.290259 0.00095518 8.62065e-22)
(0.889488 0.141064 -5.0182e-20)
(0.749688 0.165466 -1.67638e-20)
(1.00864 -0.206256 1.37852e-20)
(1.04019 -0.645918 1.19296e-20)
(0.789964 0.108714 4.04909e-20)
(0.850375 -0.0110978 1.07497e-20)
(0.987473 -0.0486519 -4.15954e-22)
(0.924469 -0.000566936 7.48093e-21)
(1.12262 0.214684 1.32046e-20)
(0.98357 -0.0461247 2.86725e-21)
(0.996867 0.215363 -8.19251e-20)
(0.984066 -0.000326892 2.96898e-21)
(0.904106 0.189062 -6.16469e-21)
(0.921158 0.194844 3.89452e-21)
(0.229439 -0.417276 9.47595e-22)
(0.551477 0.120348 1.48825e-20)
(1.02862 0.230059 -1.04348e-20)
(0.965192 -0.00234834 -1.54527e-21)
(1.24071 0.193019 4.17686e-22)
(1.07406 0.194871 -5.83275e-21)
(1.05909 0.162329 -2.89483e-21)
(0.618497 0.15644 -1.62441e-21)
(1.07277 0.137723 -8.3671e-22)
(0.914822 -0.579751 -1.87753e-20)
(0.792288 -0.217306 8.12832e-21)
(0.375644 0.0857519 7.45267e-21)
(0.529157 0.115714 1.65413e-21)
(1.02575 0.0995923 -3.78865e-20)
(0.503106 0.108858 -3.68952e-21)
(1.06525 0.164351 4.30327e-20)
(0.985948 -0.000342448 1.91591e-21)
(0.931522 0.197634 9.44841e-21)
(0.202773 0.0432112 7.88086e-21)
(1.07155 0.166178 -3.21471e-20)
(0.89197 -0.00848683 -6.09257e-21)
(0.975175 -0.184624 1.15524e-21)
(0.360646 -0.0321742 1.20959e-21)
(0.940743 0.200081 1.56975e-20)
(0.955456 -0.149085 3.12269e-21)
(0.943026 -0.0344504 -1.63889e-21)
(0.947191 -0.639071 -2.25285e-20)
(0.568616 0.125475 3.92656e-21)
(0.641974 -0.147981 2.27568e-21)
(1.27861 -0.120051 -6.16051e-22)
(0.923806 -0.0117474 1.1833e-20)
(0.9282 -0.098181 -7.4992e-21)
(0.987522 0.220776 -7.22831e-21)
(0.930026 -0.0146326 3.45688e-21)
(0.882981 -0.649596 -1.01029e-20)
(1.05898 0.232176 9.74356e-23)
(0.773178 0.190228 1.08113e-20)
(0.942583 -0.0128637 -2.64979e-21)
(0.726377 0.309225 2.9771e-20)
(0.961982 -0.0947894 -1.36258e-21)
(0.971876 -0.154935 3.24096e-21)
(0.959231 -0.0518453 -3.93771e-21)
(0.985465 0.212481 8.19019e-21)
(0.528569 0.114733 -1.76076e-20)
(0.924926 0.194436 9.99826e-21)
(0.365418 0.0967021 5.98828e-21)
(0.99974 0.0756948 2.10468e-22)
(0.928486 -0.0318607 3.80395e-21)
(1.37393 -0.422665 -7.9178e-21)
(1.11358 0.209726 -1.28755e-20)
(0.987593 -0.0444798 3.98241e-23)
(0.936106 0.19627 -3.29893e-21)
(0.645595 0.120725 2.60594e-21)
(0.995071 0.0791548 -3.55683e-20)
(0.986525 0.0818132 -1.30324e-20)
(1.07784 -0.230581 -5.1708e-21)
(0.980997 -0.0457925 -1.65881e-21)
(1.13798 0.207537 -1.10182e-20)
(0.413625 0.0922035 -5.11449e-21)
(0.897954 -0.0320393 8.2112e-21)
(0.972355 -0.000219055 1.16934e-21)
(0.926778 -0.0278198 1.00786e-20)
(0.56284 0.03581 2.30218e-21)
(0.984188 0.0812169 5.75463e-23)
(0.983792 -0.0447375 -1.86241e-23)
(0.869924 0.00212977 -8.18395e-22)
(0.154778 0.0353722 -7.46849e-21)
(0.985495 -0.000152681 5.56916e-21)
(0.944673 -0.0123486 -3.12832e-22)
(0.949204 -0.0274079 -1.95243e-21)
(0.973253 -0.0825477 -7.13227e-22)
(0.295572 0.00243193 -7.17914e-21)
(0.857731 -0.0162131 -1.47513e-20)
(0.819989 0.306587 4.31623e-20)
(0.925789 -0.0236995 -7.34017e-21)
(1.10925 0.209525 3.63292e-20)
(1.15132 0.205077 4.35319e-20)
(0.931889 0.232647 4.07135e-22)
(0.49763 0.00254475 -5.55756e-21)
(0.901134 0.189749 -1.13028e-20)
(0.968131 -0.0382696 -1.70418e-23)
(0.428247 -0.412506 -4.19653e-21)
(0.939558 -0.0215263 4.74796e-21)
(0.323748 -0.472586 2.61196e-20)
(1.17249 -0.498107 2.67729e-21)
(0.992529 0.0786179 1.68517e-20)
(0.925886 -0.0195066 -4.71519e-21)
(0.913281 0.192404 1.66771e-20)
(0.777324 0.166338 -5.15192e-21)
(1.01479 -0.153115 -2.04468e-21)
(0.688558 -0.428056 -7.07428e-21)
(0.601367 0.149073 -2.97683e-20)
(0.996382 0.0776401 4.11281e-20)
(0.778994 -0.0551992 -8.79818e-23)
(0.812327 -0.0292719 1.10888e-20)
(0.985143 -0.0442293 2.19973e-21)
(0.886851 -0.0994578 3.16642e-21)
(0.91705 0.19053 1.30227e-20)
(0.92823 -0.109904 1.31949e-20)
(1.08744 0.171751 1.87879e-20)
(0.96827 -0.00191088 1.98618e-21)
(0.975239 -0.0419597 7.01541e-24)
(0.982712 -0.0438144 3.32757e-23)
(0.993588 -0.0741287 -3.80966e-22)
(0.282929 -0.126532 -5.43092e-21)
(1.34715 0.0359794 -1.63363e-21)
(0.753825 -0.00468467 -2.90085e-20)
(0.981329 -0.0442843 -2.20194e-21)
(0.932259 -0.0974641 7.67163e-21)
(0.828429 0.00204255 -5.09408e-21)
(0.988544 0.0798252 4.11613e-20)
(0.658462 0.142253 -2.08505e-20)
(1.09895 0.195816 6.88031e-21)
(0.931177 -0.0907056 8.25901e-21)
(1.07325 -0.214112 7.92115e-21)
(0.449289 -0.405987 -8.42591e-21)
(0.995369 -0.0759081 1.38797e-21)
(1.09621 0.213719 -1.74181e-20)
(1.04766 0.245518 -1.74996e-20)
(0.64133 0.324579 6.85858e-21)
(0.705498 -0.0581603 -6.03993e-21)
(0.947684 0.225773 3.97381e-21)
(0.982814 -0.000373818 2.77455e-21)
(0.548637 0.11969 7.46898e-21)
(1.36132 -0.0168638 -1.56968e-22)
(0.924797 0.123343 -1.78887e-20)
(0.820791 -0.186789 -8.72936e-21)
(0.864258 -0.129883 3.85267e-21)
(0.992662 -0.0703333 1.63798e-21)
(0.937583 0.239962 -6.12575e-21)
(0.641784 0.13963 1.35682e-20)
(0.783089 0.195535 -1.9266e-20)
(0.99419 -0.0719376 -1.35515e-21)
(0.0954985 -0.307998 1.13768e-20)
(1.28325 -0.101118 9.47752e-23)
(0.306729 0.000584827 -7.9403e-22)
(0.849697 -0.0147407 1.15399e-20)
(1.37046 -0.0380647 -2.24328e-22)
(0.724534 -0.0721999 1.57384e-20)
(0.724798 0.124885 8.6257e-22)
(0.979261 -0.0942184 6.62497e-21)
(0.982815 -0.0985268 -4.74621e-21)
(1.02976 -0.189637 1.18686e-21)
(0.922097 -0.115466 -5.3416e-23)
(0.917028 0.191408 9.17486e-21)
(0.99321 -0.0682047 -3.6346e-21)
(0.777623 0.045429 -1.70767e-20)
(1.36459 -0.104191 1.43869e-21)
(0.979346 -0.0558732 -3.19021e-21)
(1.07315 0.22752 -2.73371e-20)
(0.79409 -0.0558043 -1.12584e-20)
(0.991864 -0.066696 3.54026e-21)
(1.34115 -0.143766 4.05576e-21)
(0.891864 -0.00726729 3.26672e-21)
(0.807101 0.163813 5.89284e-21)
(0.992539 -0.064745 -4.55925e-21)
(0.728832 -0.67879 1.24252e-20)
(1.0962 0.153088 3.42568e-20)
(0.0597487 -0.0927716 2.36489e-21)
(0.791967 -0.041742 1.86239e-20)
(1.29652 0.0928887 -1.81111e-22)
(0.609855 -0.114109 1.41038e-20)
(1.0155 0.0900435 1.22661e-20)
(0.992013 -0.0614991 1.99542e-21)
(1.13414 0.207128 -2.65947e-20)
(0.975724 -0.0733031 4.67841e-21)
(0.372482 -0.318392 -1.04548e-20)
(0.930643 -0.0843846 7.40858e-22)
(0.998072 -0.153752 1.66588e-21)
(0.991313 -0.0632915 2.41081e-21)
(1.01276 0.0867865 2.90143e-20)
(1.14758 0.204467 1.05941e-20)
(1.13029 0.20676 3.23536e-21)
(0.930692 -0.0357613 -4.27425e-21)
(1.12625 0.206443 -3.78425e-20)
(0.486417 0.00264663 6.07962e-21)
(0.202769 0.0452042 -1.46531e-21)
(0.450419 -0.340379 9.96054e-21)
(0.00947563 -0.071174 8.96026e-21)
(0.342994 0.0893937 1.56433e-20)
(1.01033 0.0835977 4.44239e-20)
(1.08293 -0.164689 -2.57543e-21)
(1.09146 0.213699 -3.77203e-20)
(0.979206 -0.129081 2.50078e-21)
(0.931222 0.19306 5.70848e-21)
(0.438414 -0.509738 2.18743e-20)
(0.722265 -0.15048 1.56773e-20)
(1.17701 0.192224 -2.30201e-21)
(0.960707 -0.0437327 3.04291e-21)
(0.956515 -0.0760669 -2.1513e-21)
(0.752158 -0.124568 2.48887e-22)
(0.973461 -0.0745294 -1.55335e-21)
(1.17373 0.203946 1.7849e-20)
(0.989124 -0.158129 2.97953e-21)
(1.01308 0.0890709 -4.54193e-20)
(1.32193 0.0767467 -1.12352e-21)
(1.12516 -0.247503 2.14881e-21)
(0.753027 0.258384 6.41745e-21)
(0.990675 -0.0526528 4.63312e-22)
(0.876319 0.181602 -7.99083e-21)
(0.584593 0.142077 -8.14847e-21)
(0.910689 0.155553 1.19661e-20)
(1.33512 -0.169482 1.16471e-21)
(1.30897 0.0853662 4.51949e-21)
(0.868808 -0.0484285 -1.2228e-21)
(0.961648 -0.101949 -1.41274e-21)
(1.2914 -0.388119 1.56971e-20)
(1.08878 0.163872 4.3332e-20)
(0.148766 0.0310147 -2.80506e-22)
(0.429289 0.057808 5.15863e-21)
(0.749733 -0.0342604 -1.281e-22)
(1.0105 0.0858952 -4.66531e-20)
(0.614798 -0.214551 -2.82361e-20)
(0.951475 -0.0446666 -4.42612e-21)
(0.283627 0.032439 1.39872e-22)
(0.709379 -0.0636165 -3.1114e-20)
(0.981143 -0.000361019 -2.45281e-21)
(0.00617464 -0.0997692 -2.09417e-20)
(0.951052 -0.00577136 -7.03746e-21)
(0.862887 -0.0289281 5.15209e-21)
(0.568341 0.136144 1.38667e-20)
(1.24073 0.127883 -5.19608e-21)
(1.1855 0.200477 -1.84801e-20)
(1.00774 -0.126743 4.38088e-21)
(0.980611 -0.0588114 -1.60145e-21)
(0.551549 0.130651 1.2358e-20)
(1.34423 -0.117873 3.03806e-21)
(0.947865 -0.046013 2.90877e-21)
(1.00613 -0.149207 -6.74446e-21)
(1.0561 0.132122 -9.87377e-21)
(0.300469 -0.281403 -8.71064e-21)
(1.25091 0.124895 -1.04337e-20)
(0.940919 -0.0444027 -3.15444e-21)
(0.93431 -0.162995 -3.06713e-21)
(1.27229 0.116959 -3.07441e-21)
(0.550998 -0.0262739 -2.89041e-20)
(1.08224 0.163106 -2.02363e-20)
(0.1558 0.0334778 1.31239e-21)
(0.879047 0.00039102 1.52822e-20)
(1.08657 0.213641 2.42228e-20)
(0.902755 0.184157 -9.77143e-22)
(0.97783 -0.0745215 -4.247e-21)
(0.324805 0.0817308 3.75114e-21)
(0.596976 0.204055 6.28322e-21)
(0.535081 0.126286 -1.16555e-20)
(1.35064 0.00158543 -8.98371e-22)
(0.844737 0.287696 -1.78538e-20)
(0.940861 -0.024694 4.06909e-24)
(1.26131 0.120879 -7.83148e-21)
(1.33315 0.0494001 5.40225e-21)
(0.682354 -0.56007 5.09759e-21)
(1.07852 0.180137 -4.68226e-21)
(0.944503 -0.0310051 3.37986e-22)
(0.740899 -0.104613 1.59099e-20)
(0.972135 -0.0516246 -2.48315e-22)
(0.940802 -0.0313201 -2.18682e-21)
(0.984574 0.100001 -2.6848e-20)
(0.416877 -0.603547 -1.69542e-20)
(0.438302 -0.0302232 -2.95574e-20)
(0.942526 -0.0279357 3.67516e-22)
(1.3607 -0.0784243 -1.46578e-21)
(0.170719 0.0375826 8.20616e-21)
(0.998747 0.0968243 4.28929e-20)
(0.958059 -0.0420098 -8.9275e-22)
(1.40858 -0.376098 6.04043e-21)
(1.21897 0.142358 -1.1781e-20)
(1.21015 0.143998 8.26145e-21)
(1.28526 0.099454 -2.39587e-21)
(0.942827 0.194302 -1.20725e-20)
(1.20174 0.145568 -2.12569e-21)
(1.04881 -0.156573 -3.65413e-21)
(0.963616 -0.0606971 -8.06245e-22)
(0.373162 0.0786429 -6.52726e-24)
(0.887019 -0.0364773 6.69912e-22)
(0.543003 0.124094 7.09529e-21)
(0.616524 -0.67232 2.53749e-20)
(0.75498 -0.00130588 -1.54116e-20)
(0.996044 0.117566 9.61162e-22)
(1.32684 -0.19566 3.99483e-22)
(0.912048 -0.000221933 -3.74563e-20)
(1.09498 0.164866 1.04417e-20)
(0.89938 -0.233416 9.65124e-21)
(0.934009 0.147842 -3.73633e-20)
(1.17002 0.20343 -6.61422e-21)
(0.948637 -0.0422203 -7.3351e-22)
(1.00449 0.215532 -1.09171e-20)
(0.3621 -0.161676 -5.66169e-21)
(1.07161 0.21847 -2.68537e-20)
(0.885942 0.000537352 3.767e-21)
(0.306832 0.0763222 -6.86168e-21)
(0.926915 -0.00981909 -8.53872e-21)
(0.824474 -0.551442 -1.08625e-20)
(0.920922 0.25549 -1.44773e-20)
(0.518678 0.120939 -2.21436e-20)
(1.02183 -0.137095 1.55056e-21)
(0.626632 -0.0369471 1.83789e-20)
(1.16173 0.202126 -1.59153e-20)
(0.95751 -0.0810893 6.3993e-21)
(0.963311 -0.0513287 3.43876e-21)
(0.324718 0.000446912 -2.1744e-21)
(0.114612 0.0259851 -3.29819e-21)
(0.936658 -0.0454507 4.27242e-21)
(0.954888 -0.043302 -5.02941e-22)
(0.160787 0.0459689 1.03904e-20)
(0.222492 -0.230226 6.83488e-21)
(0.525551 0.12003 3.55888e-21)
(0.962778 -0.00140629 5.91326e-21)
(0.241991 -0.234382 2.13222e-20)
(1.08135 0.213571 4.18207e-20)
(0.892935 -0.0372957 2.78407e-21)
(1.16602 0.202871 1.22149e-20)
(0.948939 -0.223098 -1.8606e-21)
(1.11667 -0.343129 -1.44162e-20)
(0.928081 0.191046 -2.53489e-22)
(0.96292 -0.0569031 8.79962e-22)
(1.31424 -0.220838 -5.85943e-21)
(0.8955 0.184805 9.95309e-21)
(1.05822 -0.162248 -1.1e-21)
(0.458022 -0.000480984 -1.47068e-20)
(0.627487 -0.542114 -1.17803e-20)
(0.912375 0.187444 -2.95115e-21)
(1.18257 0.154789 2.01168e-20)
(0.835927 -0.147555 1.17014e-21)
(1.19077 0.179773 -6.37366e-21)
(1.08976 -0.163082 0)
(1.19912 0.118762 -1.15981e-20)
(0.985479 -0.0562621 -1.3116e-21)
(0.994161 0.206304 3.64302e-21)
(1.12922 0.181365 -4.08848e-20)
(1.11429 0.167256 3.06152e-20)
(0.156953 -0.316634 -2.80352e-20)
(1.00672 -0.114401 1.82653e-21)
(0.509824 0.116576 -2.08017e-21)
(1.00407 0.223412 -1.63469e-20)
(0.495379 0.113071 2.70848e-21)
(0.99526 0.0854404 4.56818e-20)
(0.854498 0.226639 7.5524e-20)
(1.10788 0.166774 3.30765e-20)
(0.955173 0.000848756 6.31073e-21)
(1.21138 0.198297 -2.21628e-21)
(1.17502 0.155342 2.11436e-20)
(1.02652 0.227466 2.21039e-21)
(1.03444 -0.318391 7.43571e-21)
(0.290795 0.0701462 -2.87385e-21)
(0.97515 -0.05246 -5.96012e-21)
(1.10157 0.166066 1.16507e-20)
(1.29885 -0.0446497 -1.29137e-21)
(0.317722 0.0697423 -1.29678e-22)
(1.2313 0.130856 8.36285e-21)
(0.964949 -0.107687 5.64972e-21)
(1.15037 0.162293 -8.63671e-21)
(0.875468 0.177223 7.47371e-21)
(1.23416 0.179294 6.81566e-21)
(0.750685 0.179169 -1.75895e-20)
(0.986329 0.134964 1.87791e-20)
(1.1437 0.162409 1.67651e-20)
(0.894634 -0.0434413 -4.90365e-21)
(0.822436 -0.0717296 1.09766e-20)
(1.20563 0.124374 1.1302e-20)
(0.8629 -0.0561008 1.87874e-21)
(1.42441 0.0195188 -5.43633e-23)
(0.979881 -0.000391354 9.72347e-21)
(0.420232 -0.121324 1.78065e-20)
(1.13717 0.162494 1.37012e-20)
(1.22523 0.193836 -2.26207e-21)
(0.897492 -0.0492192 -8.16601e-21)
(0.275884 0.0653276 4.07544e-21)
(0.923267 -0.0637141 -1.24892e-21)
(0.978135 -0.0530254 -8.53319e-22)
(0.270435 -0.51543 2.59732e-20)
(1.13068 0.162344 1.11739e-20)
(0.681181 -0.221974 -1.09728e-20)
(0.534704 -0.64915 6.95148e-21)
(1.19382 0.146956 -2.24794e-20)
(0.321707 0.00183385 -7.11691e-21)
(0.299232 0.00131669 -5.16531e-21)
(0.993938 -0.000131995 -4.12428e-21)
(0.261725 0.0610226 -6.63384e-22)
(0.990311 -0.000234291 4.75872e-21)
(1.30488 -0.507801 7.60636e-21)
(0.186658 0.0435584 -9.65896e-21)
(1.16784 0.155948 -4.33994e-21)
(0.758802 -0.0963558 1.76617e-20)
(0.560655 0.128915 9.09914e-21)
(1.22266 0.166544 -2.61443e-20)
(0.896919 0.123821 7.18374e-21)
(1.10823 -0.323369 -5.62247e-21)
(0.24687 0.0567491 -4.03273e-21)
(0.933543 -0.0596244 1.70734e-22)
(0.771521 -0.0413155 4.64673e-21)
(1.43496 -0.326475 4.4866e-21)
(0.57845 -0.516343 6.61944e-22)
(1.02504 0.214895 -2.08857e-22)
(0.936998 -0.026877 -3.04733e-21)
(0.800251 -0.00794403 -3.95617e-21)
(0.267597 -0.260311 2.70856e-20)
(1.01505 0.209391 3.92139e-21)
(1.25971 -0.198358 7.10213e-21)
(0.93674 0.189913 7.16089e-21)
(0.989659 0.128637 -2.45144e-20)
(0.959645 -0.201858 3.17553e-21)
(0.814609 -0.652965 -1.22283e-20)
(0.733714 -0.0466969 -1.20451e-20)
(0.87325 -0.086873 -7.60175e-21)
(0.964255 -0.142248 -9.05662e-21)
(0.257093 -0.000168796 1.72795e-21)
(1.27587 0.0555533 2.88468e-21)
(0.920258 -0.0723742 2.47911e-21)
(0.880637 0.175588 5.08528e-21)
(1.12525 0.197681 -8.97531e-21)
(0.00433106 -0.0388788 3.20361e-21)
(0.866301 -0.0639402 -6.77003e-22)
(1.28932 0.0590423 6.07954e-21)
(0.946459 -0.113678 -5.4906e-21)
(0.912898 0.186719 -1.72516e-20)
(0.992983 -0.000152575 -6.74235e-21)
(0.980885 -0.055175 5.16464e-23)
(0.941302 -0.000745209 2.33296e-21)
(1.20716 0.197994 2.71617e-20)
(0.985501 -0.0580676 -7.84525e-22)
(0.109557 -0.330076 2.2882e-21)
(0.691473 0.156612 9.66655e-22)
(0.000502665 -0.0785339 1.58542e-20)
(1.12816 0.21068 3.28817e-21)
(0.983724 -0.0589175 4.40452e-22)
(1.19786 0.196815 1.79217e-20)
(0.93812 -0.211264 -1.13037e-20)
(1.05006 0.207899 -1.07126e-20)
(1.10493 0.196014 -3.48406e-20)
(0.970029 0.106358 6.21016e-20)
(0.768027 -0.0314204 1.78398e-21)
(0.973879 -0.0511988 4.55621e-21)
(1.08511 0.22142 -2.82902e-20)
(0.67941 -0.1917 -1.1329e-20)
(1.20251 0.197634 1.83031e-20)
(0.502288 -0.4539 -2.21509e-21)
(0.954621 0.114914 -7.80229e-21)
(1.01233 0.192138 -4.39815e-20)
(1.12428 0.162415 3.69838e-20)
(1.16033 -0.259822 -5.46307e-21)
(0.894435 0.182848 6.75311e-21)
(0.735793 0.146637 7.01056e-21)
(0.915169 0.0925556 -2.78083e-22)
(1.24152 -0.216538 -8.84944e-21)
(0.870833 -0.0711255 -5.36659e-22)
(1.22791 0.175029 -1.13353e-20)
(0.979586 -0.0524316 3.10423e-21)
(0.99183 0.0918311 3.97754e-21)
(0.959803 -0.0862845 -1.71155e-21)
(0.879986 -0.0932422 9.06049e-21)
(0.871213 -0.142269 -9.1603e-22)
(1.4793 -0.242953 -2.67826e-21)
(1.18006 0.204924 7.61812e-21)
(1.16072 0.156219 -6.83739e-21)
(0.971051 -0.100003 -2.73445e-21)
(0.999975 0.187405 9.88985e-21)
(0.991658 -0.000167968 6.48442e-21)
(0.832045 -0.0182856 -6.24211e-20)
(0.505269 -0.102192 1.4805e-20)
(0.472483 -0.419774 8.60254e-21)
(0.982446 -0.0561691 5.05341e-21)
(0.872029 -0.155029 -5.38543e-21)
(0.906745 0.179381 -3.32609e-21)
(1.25034 0.188602 -4.71224e-21)
(0.937798 -0.0626727 -2.17702e-21)
(1.29706 -0.244598 5.05815e-21)
(0.843652 -0.108511 5.24088e-21)
(0.982378 -0.0579793 1.17424e-21)
(0.981678 -0.000892669 -8.92509e-21)
(1.23593 0.174818 1.02971e-20)
(0.0564048 -0.252084 -3.47472e-21)
(1.12441 0.200663 -2.18844e-22)
(0.874079 -0.529346 5.04882e-21)
(0.40366 0.000131258 -7.85888e-21)
(0.748618 0.203827 3.11944e-20)
(0.458583 0.0996077 -4.71849e-21)
(0.85609 0.159356 4.11038e-21)
(0.962432 -0.0532487 2.58901e-21)
(1.07196 0.223504 -8.20501e-21)
(0.849699 -0.186238 9.14471e-23)
(1.00733 0.205945 6.67631e-21)
(0.9676 -0.0460444 -3.24621e-21)
(0.965724 -0.12006 -4.38381e-21)
(0.990211 0.100901 -1.80015e-20)
(0.256033 -0.456598 -5.78337e-21)
(1.15364 0.164182 -1.53742e-21)
(1.00089 0.238333 -8.13653e-21)
(0.840445 -0.0882766 -1.38185e-21)
(1.11507 0.215972 -1.76929e-20)
(0.921132 -0.0663078 -9.34687e-21)
(0.537669 -0.486698 5.2923e-21)
(0.898621 -0.104904 -2.87217e-21)
(0.989177 -0.000305413 -4.16633e-21)
(0.603936 -0.341307 2.78611e-21)
(0.962213 -0.0914272 -5.02293e-21)
(1.24055 0.188412 1.74298e-20)
(1.00641 0.10119 2.01546e-21)
(0.380729 -0.181494 9.52134e-22)
(0.970353 0.110351 1.64415e-21)
(0.906687 -0.0847442 3.42395e-21)
(1.2681 0.182068 4.45598e-21)
(0.987253 -0.000117061 -1.0488e-20)
(0.929184 -0.153086 7.8595e-22)
(0.785422 -0.106482 -1.33245e-20)
(0.971996 0.00108489 3.23451e-20)
(0.881598 -0.113924 -5.44271e-22)
(0.717891 0.313478 -2.35157e-20)
(0.881082 -0.124533 1.18186e-21)
(0.365481 0.0825534 1.3049e-20)
(0.906154 -0.0924924 4.84643e-22)
(0.981706 -0.0675117 -2.12927e-21)
(0.520021 -0.00156017 -1.82147e-20)
(1.10582 0.217872 2.78435e-20)
(0.987053 -0.00033508 -8.86712e-22)
(0.907645 -0.0774435 -1.074e-20)
(0.908943 -0.0705587 2.27034e-21)
(0.91041 -0.0640933 -7.75294e-21)
(1.13161 0.147297 -1.61208e-20)
(0.341342 -0.413041 1.27406e-20)
(0.97985 -0.0709303 -3.27132e-21)
(0.937034 -0.033991 -2.55283e-21)
(0.965324 -0.0511424 -1.09024e-21)
(1.00367 -0.15384 -7.30828e-22)
(1.29416 0.172359 1.1337e-20)
(0.460766 -0.620426 2.67014e-20)
(0.194155 0.0406308 -1.96382e-21)
(0.903197 -0.0272844 7.92885e-21)
(0.976673 -0.0961599 -6.30858e-21)
(0.985324 -0.000349644 -8.57167e-21)
(0.967946 -0.0490905 -1.32776e-21)
(0.976788 -0.0519084 2.51753e-21)
(0.977125 -0.050177 -1.24167e-21)
(0.845179 -0.0773627 9.21732e-21)
(0.922584 -0.016799 3.62318e-21)
(1.06547 0.218389 1.3174e-20)
(0.923626 -0.110841 -7.91646e-21)
(1.45006 -0.275552 -9.33666e-21)
(0.501621 0.254496 -1.2216e-20)
(0.970662 0.13834 -2.54227e-20)
(0.983779 0.202548 1.22993e-20)
(0.0117448 -0.106623 1.81809e-20)
(0.902093 0.178821 2.09567e-21)
(0.0228965 -0.143851 -3.94395e-20)
(1.03624 0.135176 1.20276e-20)
(0.920894 0.0994148 -5.75474e-20)
(0.972865 -0.17792 -2.89827e-21)
(1.48153 -0.0655964 -1.29412e-20)
(0.634702 -0.0287463 2.11247e-21)
(0.929582 -0.105541 7.07257e-22)
(0.678036 -0.112741 -2.04325e-21)
(0.145821 0.032362 2.64758e-21)
(0.918811 0.235846 2.68653e-21)
(0.964332 -0.0585829 3.92431e-22)
(0.0210307 -0.167949 5.56283e-21)
(0.98696 0.236324 6.00029e-21)
(0.677952 0.319976 3.96804e-20)
(0.52957 -0.347833 2.28019e-20)
(0.924043 -0.149307 -3.7584e-21)
(0.988542 -0.0510259 1.03983e-21)
(0.9996 0.173335 1.68394e-20)
(0.820166 -0.204739 2.21485e-21)
(0.65426 0.140645 4.4694e-21)
(1.03941 0.195184 -9.9824e-21)
(0.912118 -0.0582045 1.83879e-21)
(1.24566 0.188544 -1.51013e-20)
(0.556934 -0.0439675 -7.26994e-21)
(0.127479 -0.346402 6.06536e-21)
(0.942146 -0.0652564 -2.5105e-21)
(0.948385 -0.00403205 6.04759e-21)
(0.87245 0.19859 1.18949e-20)
(0.883928 0.172096 3.56297e-21)
(0.571774 -0.0131612 3.99314e-20)
(0.992232 -0.206577 1.12716e-20)
(0.942276 0.247756 1.42193e-20)
(1.00693 -0.246867 2.0345e-21)
(0.380435 -0.163374 2.38278e-21)
(0.98225 -0.0953884 -7.05063e-21)
(0.980704 -0.198661 1.27893e-20)
(1.06933 0.198052 7.63441e-21)
(0.744298 0.0269348 -1.4263e-20)
(0.95814 -0.063783 1.05232e-21)
(1.12941 -0.554599 -5.11359e-21)
(1.20687 0.129253 1.18492e-21)
(0.981019 -0.0534225 -1.31663e-21)
(0.933585 -0.0937005 -1.11132e-20)
(0.845739 0.161939 -2.97784e-20)
(0.886997 -0.000389576 -7.02684e-20)
(1.11137 0.216402 -5.17846e-21)
(0.384962 -0.52383 -1.23313e-20)
(0.839559 -0.155298 5.66403e-21)
(0.856075 0.190676 -7.29208e-20)
(0.959942 -0.0422007 -2.98817e-21)
(0.793753 -0.331955 1.22281e-21)
(0.978771 0.00126262 -2.33057e-20)
(1.21162 0.193965 1.21493e-21)
(0.0259157 -0.192641 -1.35768e-20)
(0.87489 -0.0416494 -3.82699e-21)
(0.860848 0.18926 -1.22976e-20)
(0.970981 -0.0783562 -1.52933e-21)
(1.0021 0.117327 4.01176e-20)
(0.591476 0.000139904 -1.45273e-20)
(0.895618 0.0348879 5.87845e-20)
(0.874727 -0.0231143 -1.04814e-22)
(1.33749 0.128529 -3.4822e-23)
(0.919744 -0.520795 1.80222e-20)
(0.962666 0.137093 1.34441e-20)
(0.4999 0.0623874 8.94866e-22)
(1.05768 0.210267 -7.22541e-21)
(0.281312 0.000290826 1.67863e-20)
(0.862794 -0.0156858 5.87121e-21)
(1.01654 0.262602 4.03855e-20)
(1.28745 0.173397 -8.5071e-21)
(1.3228 0.159078 -2.53805e-21)
(0.932631 -0.0872428 -7.7508e-21)
(0.958492 0.107582 -2.07114e-21)
(0.354814 0.000948206 7.84845e-22)
(0.0087281 -0.136138 2.71711e-20)
(0.910011 0.17451 -2.39116e-21)
(0.983756 -0.0553778 -9.29607e-22)
(0.187683 -0.236569 2.76495e-20)
(0.227357 -0.477167 -2.27496e-20)
(0.60202 0.12697 -7.14954e-22)
(0.983469 -0.0663158 4.69702e-22)
(1.03664 0.123138 2.93299e-20)
(0.940455 -0.00466084 2.53393e-21)
(0.923253 0.172685 3.2697e-20)
(0.956956 -0.0435487 -1.95355e-21)
(0.950761 -0.0426743 2.00617e-21)
(1.16578 -0.26831 4.84036e-22)
(0.954794 -0.0381286 9.6054e-22)
(0.909274 -0.0104678 -1.46468e-21)
(1.1602 0.190373 -2.57192e-20)
(0.69162 -0.197833 1.66206e-20)
(0.19221 -0.439462 -5.0854e-21)
(1.00382 0.0969052 -1.78835e-20)
(0.575075 0.000282009 8.61185e-23)
(0.98018 -0.0782594 1.27174e-21)
(1.03185 0.12012 8.44995e-22)
(0.996315 -0.213952 1.68117e-21)
(0.00295474 -0.0847403 1.08368e-21)
(0.846382 -0.0179983 1.23872e-21)
(0.970877 -0.0965913 -4.06663e-21)
(0.872891 0.274862 8.56228e-21)
(0.966237 -0.0662985 1.31056e-21)
(0.641133 -0.079525 3.24855e-20)
(0.932673 0.182079 -3.42694e-21)
(1.10925 0.217184 -6.47501e-21)
(1.0268 0.116818 -4.59191e-21)
(0.926021 -0.0698749 -1.09476e-21)
(5.17769e-05 -0.0549517 -4.96353e-21)
(0.00250466 -0.101689 -1.09735e-20)
(0.687793 0.183474 -9.3027e-22)
(1.11918 0.212714 9.07145e-21)
(0.963237 -0.0693846 -1.73654e-21)
(1.34665 0.143674 -1.51631e-21)
(0.699664 -0.313167 -2.563e-21)
(0.322836 0.0943607 1.65792e-20)
(1.05897 0.218054 2.67361e-21)
(0.907279 -0.0400701 -3.10704e-21)
(0.979922 -0.073244 2.2342e-21)
(0.368326 0.072738 -4.66267e-22)
(0.93917 -0.046156 1.3185e-21)
(0.000319034 -0.0715674 -4.53452e-21)
(1.04689 0.223452 -3.11096e-20)
(1.1046 -0.337934 1.31649e-20)
(0.970906 -0.0502176 -2.23614e-21)
(1.19755 0.179428 -2.45791e-21)
(0.804466 -0.216657 -1.7292e-20)
(0.276059 -0.0017045 3.43005e-22)
(0.983744 -0.0706844 -1.04976e-21)
(0.702487 -0.189706 3.39015e-20)
(0.954484 0.134999 -2.679e-20)
(0.558421 0.00140228 -1.47349e-20)
(0.93853 -0.00421001 -5.7173e-21)
(0.954647 -0.0665888 2.85026e-22)
(0.946569 -0.0675127 5.73903e-21)
(0.945447 -0.0373852 4.4215e-21)
(1.09029 0.223048 7.7463e-21)
(0.668471 -0.0594888 -1.50155e-20)
(0.669283 -0.171175 -1.12865e-20)
(0.970004 -0.044411 2.31671e-21)
(0.922868 -0.00726175 -3.62492e-21)
(0.981457 -0.000779343 2.88523e-21)
(1.17043 0.208825 -1.93905e-20)
(0.932465 0.176858 -5.54492e-21)
(0.909293 0.177494 4.32757e-21)
(0.930111 -0.0162779 6.28011e-21)
(0.956235 -0.0319441 -3.41378e-21)
(0.968644 -0.0473914 -1.15447e-21)
(1.00822 -0.541363 -1.3635e-20)
(0.894453 -0.0334326 2.54613e-21)
(0.307001 0.144132 1.74229e-20)
(1.00191 0.085153 7.99336e-21)
(0.685622 0.147831 1.51486e-20)
(0.969145 -0.0556937 -1.93306e-21)
(0.928451 -0.0532837 -2.53987e-21)
(0.978115 -0.0824082 2.67653e-21)
(1.1301 -0.504635 9.03841e-21)
(1.00675 -0.168959 7.60368e-21)
(1.04447 0.200882 -7.00811e-20)
(0.746733 0.161804 4.79992e-21)
(0.905797 -0.00750858 -3.8573e-21)
(0.883143 -0.0381315 7.9333e-22)
(0.725727 -0.0652718 1.7702e-21)
(0.744981 -0.182611 -8.26431e-21)
(0.968345 -0.0444837 1.40794e-21)
(0.970487 -0.149389 -4.3917e-21)
(0.931829 -0.00898392 -1.03881e-21)
(0.886388 -0.0117773 -7.93614e-21)
(0.981809 -0.0697036 3.53621e-21)
(1.29449 0.0652007 5.31609e-21)
(0.567823 -0.345978 -1.31565e-22)
(0.963695 -0.0548856 -1.10004e-21)
(0.397167 -0.184396 8.26677e-21)
(0.950872 -0.0694624 -7.26546e-22)
(0.964867 -0.100183 5.5587e-22)
(0.867749 -0.0168494 4.0454e-21)
(0.945318 -0.127698 -4.02453e-21)
(0.975884 -0.0868369 3.47586e-21)
(0.931725 -0.0620379 2.44611e-21)
(1.38132 0.117405 -2.83086e-21)
(1.31531 0.160967 -1.22352e-20)
(0.970449 -0.12623 1.27807e-21)
(0.871173 -0.130154 -2.65951e-21)
(0.909257 -0.260251 3.56529e-21)
(0.968442 -0.0523236 1.59849e-21)
(0.825321 -0.531779 2.14354e-20)
(0.0511872 -0.232068 -1.31956e-20)
(0.630163 -0.0399491 2.99589e-21)
(0.977576 -0.156312 5.79458e-21)
(0.957339 -0.00112228 -2.37137e-20)
(0.929954 -0.0483849 -3.33457e-21)
(1.00803 0.116648 -1.18839e-21)
(0.16525 -0.403869 6.84523e-21)
(0.27963 -0.280053 -2.05326e-20)
(0.818857 -0.0282739 -1.85447e-21)
(0.83616 -0.000710579 -1.19927e-20)
(0.852215 0.000576654 7.8246e-21)
(0.9691 -0.050529 2.87299e-21)
(0.39742 -0.149616 1.55463e-20)
(0.986899 -0.115581 -4.57464e-21)
(0.23338 0.000299827 9.40154e-22)
(0.89314 0.0261436 -6.67326e-20)
(0.9463 0.132035 8.88825e-21)
(0.946692 -0.0339016 -5.14625e-22)
(0.941587 -0.0205796 4.63617e-21)
(0.955458 -0.0712245 3.71174e-21)
(0.539785 -0.00127878 -5.69816e-21)
(0.559689 -0.000288165 1.80596e-20)
(0.865988 0.00026745 1.2861e-21)
(1.27664 -0.265977 3.82811e-21)
(0.574349 0.000909801 -1.46359e-20)
(0.940369 -0.00643985 1.11229e-21)
(0.874676 -0.124406 9.0136e-21)
(0.593855 -0.375005 2.37354e-20)
(0.692882 -0.21219 1.12501e-21)
(0.967923 -0.0916813 2.06119e-21)
(0.949217 -0.00452788 1.19977e-21)
(0.140432 0.0305249 6.40087e-22)
(0.587858 0.00212546 6.59091e-21)
(0.940721 -0.0627989 -2.43998e-21)
(1.20367 0.202946 -1.06779e-20)
(0.989477 0.215868 3.04408e-20)
(0.719238 -0.0610457 2.5442e-20)
(1.04711 0.24088 5.85136e-21)
(1.48304 -0.155924 3.16848e-21)
(0.942959 -0.0216785 -1.5927e-22)
(1.40832 0.0884443 3.00011e-22)
(0.858165 -0.0302732 -3.19411e-21)
(0.926591 -0.0641845 -4.91604e-21)
(0.958942 -0.0681479 6.95183e-22)
(0.439849 0.0963833 1.58692e-20)
(0.934631 -0.0133858 -1.10529e-21)
(0.864207 -0.0506607 3.82546e-21)
(0.931561 -0.043783 -4.18574e-21)
(0.936528 -0.0599885 2.80158e-22)
(0.0179326 -0.112516 1.52698e-20)
(1.02138 0.16449 -6.07308e-21)
(0.109815 0.0234798 -9.39661e-21)
(0.962611 -0.0719106 6.0175e-22)
(1.48385 -0.0827597 6.50145e-21)
(0.84874 -0.0228642 -7.78849e-21)
(0.953344 0.177632 -3.54063e-21)
(0.970813 -0.667772 -2.14769e-20)
(0.987252 -0.0812831 2.37294e-21)
(1.05034 -0.399048 -9.43348e-21)
(0.614572 0.00786903 1.29372e-20)
(0.933257 -0.0394558 3.14066e-21)
(0.692954 -0.025058 6.05082e-21)
(1.10784 -0.177422 1.84573e-21)
(0.781945 -0.173 4.3794e-22)
(0.88468 -0.0106239 -1.73267e-21)
(0.607331 0.000212446 -1.10392e-20)
(0.925143 0.264451 1.59883e-20)
(0.831556 -0.0260692 -6.22384e-21)
(1.37116 0.123696 -2.58279e-21)
(1.03159 0.125689 -3.28331e-20)
(0.70611 -0.0411524 2.04839e-20)
(0.872169 -0.0815115 4.60184e-21)
(1.24286 0.192342 8.05797e-21)
(0.913931 0.0772991 1.71755e-20)
(0.373103 0.166731 1.20924e-20)
(0.203562 0.0436998 9.10239e-22)
(1.46471 -0.229193 -1.14505e-20)
(0.939442 -0.0108695 -2.47525e-21)
(0.757264 -0.0251245 1.17566e-20)
(0.666789 0.141752 1.3722e-21)
(0.293613 2.79359e-05 7.79762e-22)
(0.965166 -0.0623844 8.02245e-22)
(0.359362 0.00358595 -3.00664e-21)
(0.764288 -0.177978 -1.09689e-20)
(0.958131 -0.0706763 -1.25657e-21)
(1.43396 0.0511343 -1.05372e-21)
(0.889147 0.115118 -6.78359e-22)
(0.811572 -0.0333811 -5.77033e-22)
(0.953678 -0.0690578 -1.02755e-22)
(1.46977 -0.0186541 -2.19067e-21)
(0.596863 0.0142946 -1.44175e-20)
(1.01999 -0.152411 8.76691e-21)
(1.0117 -0.148768 6.20487e-21)
(0.279613 -0.0427655 -3.4247e-20)
(0.770863 0.023802 1.5783e-20)
(0.973487 -0.0915582 -2.2808e-21)
(0.715792 -0.0682803 9.063e-21)
(1.03675 -0.187918 -1.01962e-21)
(0.570495 -0.133522 -2.73998e-20)
(0.765703 -0.00225451 -5.80617e-21)
(0.949284 -0.067279 -4.65222e-21)
(0.842757 -0.0654037 -7.48417e-21)
(0.382339 -0.0407316 -2.31263e-20)
(0.197829 -0.327136 -8.29324e-21)
(0.982846 -0.0819678 -3.39676e-22)
(0.144902 -0.369924 -1.76026e-20)
(0.945024 -0.0651318 5.22612e-21)
(0.93284 -0.0343326 2.44843e-21)
(0.761882 0.00127732 -4.44391e-22)
(1.24354 0.174801 9.53745e-21)
(0.965689 -0.0686701 -6.31575e-21)
(1.20352 -0.196992 -1.4869e-22)
(0.962759 -0.0409208 -1.09086e-21)
(0.746848 -0.110264 2.58877e-21)
(0.430708 -0.214656 7.58036e-21)
(0.895393 -0.0395599 6.46121e-21)
(0.985904 -0.099555 2.61465e-22)
(0.897563 -0.0454136 -7.29048e-22)
(0.362186 -0.0280216 2.63413e-20)
(0.962179 -0.0651968 7.84758e-21)
(0.966491 -0.0526456 3.31306e-22)
(0.633771 -0.0217901 -5.83364e-20)
(0.778425 -0.657875 -1.62085e-20)
(0.946267 -0.0627832 5.86679e-22)
(1.01214 0.10654 -5.57563e-21)
(0.834176 0.114804 -8.87958e-22)
(0.965772 -0.0545587 2.37703e-21)
(0.0482889 -0.21322 -9.0954e-21)
(0.7136 0.193863 -2.7616e-21)
(0.967377 -0.0618265 1.56811e-21)
(0.943009 0.170836 -2.95364e-21)
(1.24934 -0.557113 1.31637e-20)
(0.971238 -0.130815 -9.17926e-21)
(0.770377 0.151445 1.91602e-22)
(1.108 0.214536 8.60761e-21)
(0.736624 0.000961711 6.10328e-21)
(0.978878 -0.0911145 -2.98314e-21)
(0.737168 0.30303 -1.69165e-20)
(0.999692 0.0861675 -4.06485e-20)
(0.964526 -0.064628 -2.20813e-21)
(0.840685 -0.140979 1.50094e-20)
(0.938226 0.128254 5.45829e-20)
(0.675975 0.157031 -8.09425e-22)
(0.521782 0.00209907 6.66658e-21)
(0.658275 -0.338095 -2.43212e-21)
(0.999338 0.0886207 1.58005e-20)
(0.919938 -0.0175796 -1.04963e-20)
(0.945136 -0.0189153 -2.24842e-21)
(1.45746 0.00470543 4.13564e-22)
(0.311245 -0.00186822 1.38602e-21)
(0.284321 0.000514056 1.39153e-20)
(0.272915 -0.000406809 -8.9607e-21)
(0.982273 -0.0768371 4.65629e-21)
(0.911521 -0.0676939 1.06355e-20)
(0.910223 -0.0742925 -8.21785e-21)
(0.952873 -0.0377118 5.54921e-21)
(0.866593 -0.0587017 -6.00898e-21)
(0.332424 0.000359211 -3.00706e-20)
(0.909201 -0.0813056 1.08433e-20)
(0.641449 0.139669 -5.52127e-21)
(0.95733 -0.0402622 4.23457e-21)
(0.874568 -0.136063 8.58963e-21)
(0.816076 -0.0750199 -2.88006e-21)
(0.944479 -0.00874962 -3.67017e-21)
(0.530048 0.000431522 -1.63127e-20)
(0.996651 0.0924027 -5.77885e-20)
(0.550197 -0.000581594 1.3841e-20)
(0.561407 -0.00115812 1.75805e-20)
(0.640168 0.121527 -3.2414e-21)
(0.988893 -0.52443 2.9593e-20)
(0.573728 -0.000480117 -3.41064e-21)
(0.951651 -0.295665 -3.05564e-21)
(0.908558 -0.0887165 -5.42718e-21)
(0.99611 -0.139984 2.25639e-21)
(0.587054 0.000641281 5.09761e-21)
(1.06722 0.22242 -2.37988e-20)
(0.735174 0.161118 5.35256e-21)
(0.841076 -0.0949773 -1.60707e-21)
(0.945306 -0.132893 -2.67433e-21)
(0.925266 -0.017801 6.5131e-21)
(0.0917947 0.0197444 3.01775e-21)
(0.954169 -0.0414722 5.52593e-21)
(0.980376 -0.0808771 -2.97813e-21)
(0.979453 -0.16194 1.81206e-21)
(1.0388 -0.343811 -8.06394e-21)
(0.927096 0.105442 -1.41367e-20)
(0.845184 -0.115057 3.52827e-22)
(0.725548 0.152448 -1.38531e-20)
(0.599852 -0.0005036 -6.95162e-22)
(0.7505 -0.153275 -1.80528e-20)
(0.328286 -0.157185 1.91237e-20)
(0.853357 0.0915478 -5.35778e-20)
(0.275885 0.0586205 3.41483e-21)
(0.942672 -0.023739 8.73393e-22)
(0.918785 0.108173 1.96548e-20)
(0.87771 -0.00065273 2.07252e-20)
(1.29064 0.15597 -3.89295e-21)
(0.539589 0.157952 2.94789e-21)
(1.41924 0.00870805 -3.71185e-22)
(1.11799 -0.348834 -7.25101e-21)
(0.960674 0.171268 4.20981e-21)
(0.960867 -0.0032186 -2.31375e-21)
(0.971597 -0.107257 4.99696e-21)
(0.948031 -0.0401291 2.1829e-21)
(1.07823 -0.293678 1.16894e-20)
(0.932454 -0.0568217 1.12039e-21)
(0.870535 -0.0661666 -3.04425e-21)
(0.970705 -0.0900725 8.313e-22)
(0.946133 -0.0298134 5.47618e-21)
(0.878427 -0.0882788 -3.24922e-21)
(0.786561 -0.22797 1.32979e-20)
(0.0566018 -0.0289758 -1.0095e-20)
(0.985886 -0.000185013 7.45185e-21)
(1.01471 0.167533 -1.04928e-20)
(0.602071 0.00287754 -1.56897e-20)
(0.954057 -0.00187443 -8.31731e-22)
(0.91297 -0.0613392 6.98955e-21)
(1.08015 -0.331792 -1.48289e-21)
(1.29324 0.119052 5.58806e-21)
(0.899604 0.0126117 -2.10392e-20)
(0.978306 -0.0852261 -4.59656e-21)
(0.987541 -0.0943227 -2.6566e-21)
(0.927342 -0.0585842 7.67859e-21)
(0.901285 -0.100544 -3.5047e-21)
(0.771049 0.176937 2.06725e-20)
(0.101112 -0.159186 7.90337e-21)
(0.944309 -0.0410872 -7.433e-21)
(0.641716 0.128921 3.38307e-21)
(0.961461 -0.0675862 5.94464e-21)
(0.960826 -0.0800676 -4.92241e-21)
(0.884226 -0.119186 1.23367e-21)
(0.987214 -0.000239936 2.32528e-21)
(0.952145 -0.041095 -6.17058e-21)
(0.94034 -0.0420204 4.94404e-21)
(1.05503 0.196545 -6.05479e-21)
(1.00367 -0.186651 7.40879e-21)
(0.567378 0.0140581 8.21556e-21)
(0.936105 -0.0429229 -3.88039e-21)
(1.07079 -0.223671 -9.70514e-21)
(0.922002 -0.0603989 3.59221e-21)
(1.22089 0.164131 1.7304e-20)
(0.984852 -0.0804055 3.01416e-21)
(0.968032 -0.101944 -6.75009e-21)
(0.946166 -0.0153261 -3.55922e-21)
(0.921041 0.279976 3.60324e-20)
(0.909875 0.0849092 6.51321e-21)
(0.965154 -0.0899659 -2.82941e-21)
(0.931072 -0.00667619 1.03234e-20)
(0.995418 -0.102452 -1.63768e-21)
(0.916493 -0.0621704 -1.36375e-20)
(0.0489291 -0.0877578 1.57715e-20)
(0.743389 -0.302483 -1.24248e-20)
(0.983337 -0.000389694 -2.77943e-21)
(0.978275 0.0931551 5.83871e-20)
(0.647702 -0.134421 -2.60664e-20)
(0.930555 -0.0511497 -2.56605e-21)
(0.731905 -0.155584 -1.52424e-20)
(0.89925 -0.0137213 5.39818e-21)
(0.106479 0.0228162 4.65547e-21)
(0.972836 0.176039 7.61819e-22)
(0.346494 -0.019609 6.06526e-21)
(0.934601 -0.280226 -6.59477e-21)
(0.929063 -0.0266944 3.27571e-21)
(0.97461 -0.105058 -5.38251e-21)
(0.97608 -0.0898381 5.024e-21)
(0.934975 -0.100501 5.22581e-21)
(1.00632 0.0983214 -2.49809e-20)
(0.712401 -0.157048 1.71718e-20)
(0.11484 -0.316545 2.49576e-20)
(0.315889 -0.000306398 -7.09928e-22)
(0.87517 -0.148317 1.57866e-21)
(1.03672 0.187803 -3.96436e-20)
(0.79679 0.0347245 2.08723e-20)
(0.794963 -0.0153282 -6.22847e-21)
(0.96614 -0.0492938 -1.68163e-22)
(0.901563 -0.118599 -8.05007e-22)
(0.990026 -0.0919976 -5.3397e-21)
(0.8763 -0.00774525 6.42293e-20)
(0.926328 -0.0112542 9.65692e-21)
(0.955428 -0.0399546 -5.14848e-21)
(0.92829 -0.0186743 -5.09204e-21)
(0.730999 -0.109079 -1.53412e-20)
(0.942397 -0.080064 -2.8328e-21)
(1.49084 -0.157138 1.88624e-21)
(0.934878 0.175649 -2.64727e-20)
(0.899063 -0.267275 -6.17511e-21)
(0.302933 -0.00185387 4.8901e-21)
(0.785372 -0.124632 1.08456e-20)
(0.973989 -0.057984 3.99946e-21)
(0.736 -0.1907 6.69557e-21)
(0.853337 -0.17815 -1.07192e-21)
(0.927749 -0.127243 -7.17906e-21)
(0.834956 -0.162375 -6.40955e-21)
(0.795499 -0.262793 1.64087e-20)
(0.979172 0.0985014 3.9221e-20)
(0.974225 -0.10152 6.69252e-21)
(0.937576 -0.0834977 -6.86436e-21)
(0.932082 -0.0464647 9.22707e-21)
(0.786356 -0.097658 2.67235e-21)
(0.979359 0.0903093 -5.76325e-20)
(0.919068 -0.125255 -7.9987e-21)
(0.947048 -0.0359742 2.83059e-21)
(0.98464 -0.0933665 8.38005e-21)
(0.262912 -0.0692508 1.6575e-20)
(0.198479 -0.0007082 3.70798e-21)
(0.385175 -0.552961 4.13512e-20)
(0.933627 -0.0420479 -3.05352e-21)
(0.588516 -0.35398 1.29982e-21)
(0.914076 -0.0749046 1.81789e-21)
(0.353685 0.078727 5.69667e-21)
(0.835863 0.216721 3.56575e-20)
(0.968198 -0.105621 -4.35135e-21)
(0.309552 -0.000818338 1.79281e-20)
(0.994024 0.138068 6.14406e-20)
(0.264117 0.000521776 -2.94429e-21)
(0.535315 -0.373727 -2.17738e-20)
(0.0477624 -0.194892 2.67396e-20)
(0.284614 0.00154464 -3.74963e-21)
(0.685796 -0.358371 -6.40273e-21)
(0.295286 -0.000141968 -8.98423e-21)
(0.848636 -0.44271 1.59615e-20)
(0.601714 0.121775 2.42467e-20)
(0.633289 -0.0164159 5.9967e-21)
(0.942089 -0.0404161 6.41894e-21)
(0.945922 -0.0395398 3.89705e-22)
(1.16865 0.140513 1.20452e-20)
(0.546525 -0.00423344 -4.22876e-21)
(0.55506 -0.00389516 2.26859e-21)
(0.562901 -0.003178 -9.15843e-21)
(0.94811 0.163058 5.17472e-22)
(0.572167 -0.00114891 -2.62837e-21)
(0.581107 0.00125286 -8.51372e-21)
(0.590225 0.002862 9.60274e-23)
(0.84545 -0.0843314 1.14854e-21)
(0.876954 0.256754 1.29806e-20)
(1.32657 -0.364719 4.21191e-21)
(0.616828 -0.198916 1.90588e-20)
(0.00174296 -0.0667997 3.24906e-21)
(0.982071 -0.0743188 -1.68818e-21)
(0.96113 -0.0019617 -2.79745e-21)
(0.910244 -0.0383837 -5.25571e-21)
(0.910273 -0.12231 9.39214e-22)
(0.307479 -0.000974727 8.1233e-21)
(1.02253 0.113007 1.10798e-20)
(0.284425 0.00191041 1.53868e-20)
(0.851246 -0.351822 -8.86181e-21)
(1.10763 0.141442 -1.63049e-20)
(0.964917 -0.0966516 5.61535e-21)
(0.00251849 -0.0983853 -3.73713e-21)
(0.376493 0.0372366 1.52754e-21)
(0.910033 -0.663871 1.70412e-20)
(0.167941 0.0397055 1.63872e-20)
(0.599588 0.0036031 7.58989e-21)
(1.01371 -0.179867 6.66965e-21)
(1.0369 -0.544913 -4.36953e-21)
(0.0922625 -0.182094 2.76496e-21)
(0.970908 -0.0455867 -2.59352e-22)
(1.26723 0.0774738 3.22722e-21)
(0.938212 -0.0577366 -7.86308e-21)
(0.957245 -0.0661807 -3.5319e-21)
(0.997038 0.0895611 2.27335e-20)
(0.734691 -0.0757143 -2.89475e-21)
(0.850135 -0.0738847 1.24717e-20)
(0.929322 -0.0562333 -2.15724e-21)
(1.15747 0.210825 3.1159e-20)
(0.826222 -0.00243933 1.21337e-20)
(0.896841 -0.00789339 -2.99791e-22)
(1.24879 0.179898 4.67621e-21)
(0.946342 -0.0108036 -1.19593e-21)
(0.237845 0.0532381 1.08505e-20)
(0.333292 -0.0132999 -9.24632e-21)
(0.923987 -0.0579952 -4.98272e-21)
(0.971467 -0.0485967 5.6712e-21)
(0.000753451 -0.0694328 -4.44516e-21)
(1.11321 -0.495255 6.31e-21)
(0.935299 -0.0378949 3.75839e-21)
(0.745541 -0.249599 1.38518e-20)
(0.918711 -0.0597988 -1.28451e-21)
(1.03551 0.253617 2.27223e-20)
(1.02389 0.159778 -1.12438e-21)
(0.612459 -0.00233048 6.23404e-22)
(0.940002 -0.159712 1.07336e-20)
(0.189538 0.00166398 -5.22798e-21)
(0.989255 -0.11291 4.71478e-21)
(0.990962 0.190516 -4.76352e-21)
(0.972867 0.18602 -3.73529e-21)
(0.686962 -0.00326245 2.92184e-21)
(0.978116 -0.124694 -4.14283e-21)
(1.01499 0.23314 5.63712e-20)
(0.96747 -0.133934 4.52183e-21)
(0.752522 0.154387 -1.1532e-20)
(0.394577 -0.586054 -1.15497e-20)
(1.16823 0.17663 1.83358e-20)
(0.912891 -0.0400972 7.50641e-21)
(0.938003 -0.0412563 -2.02543e-21)
(0.474412 0.00901825 6.4591e-21)
(0.928534 -0.0616385 -5.06966e-21)
(0.936272 -0.086782 7.78615e-21)
(0.939146 -0.0349435 1.76166e-21)
(0.945866 -0.0796118 -4.61705e-21)
(0.862969 0.056898 4.06341e-20)
(0.977836 0.285073 -1.56849e-20)
(0.819243 0.203743 1.07896e-20)
(0.00247742 -0.095137 1.15004e-21)
(1.09604 -0.242062 -7.18355e-21)
(0.995905 -0.0827348 1.58291e-22)
(0.966474 -0.058141 -3.55331e-21)
(0.578097 -0.387688 1.77544e-20)
(0.831709 -0.0155754 -6.03182e-21)
(1.19629 -0.0327881 6.95846e-21)
(0.985244 -0.192438 -1.90983e-21)
(0.983975 -0.0729469 -6.26083e-22)
(0.800119 -0.0225179 4.94716e-21)
(1.1296 0.214124 -2.74166e-21)
(0.961153 0.293239 2.86065e-20)
(0.931155 -0.112933 -8.358e-21)
(1.14501 0.134342 -7.18474e-21)
(0.96922 -0.117518 7.62924e-21)
(0.882661 0.105556 -2.52741e-20)
(0.975094 0.0936631 2.02767e-21)
(1.00636 0.0835966 -1.63022e-20)
(0.835983 0.0314651 5.72289e-20)
(1.23768 0.177531 4.65017e-21)
(0.912379 -0.00994075 -1.87858e-22)
(0.867619 0.0446802 1.74684e-20)
(0.959316 -0.0753234 2.80311e-21)
(0.932388 -0.0156037 3.41805e-21)
(0.985434 -0.122587 5.39643e-21)
(1.06579 0.139306 1.10514e-20)
(1.15339 0.211611 8.34567e-21)
(1.36752 0.102448 -1.1868e-21)
(1.127 0.214923 1.95062e-21)
(1.22509 0.174854 -3.42824e-21)
(0.925702 -0.00655613 5.83026e-21)
(0.970268 -0.047177 -5.3374e-22)
(0.33572 -0.00120157 2.70113e-21)
(0.982334 -0.000438247 -8.04618e-21)
(1.08828 0.186883 3.85478e-20)
(0.978347 -0.000408077 7.38182e-21)
(0.941629 0.301501 4.68773e-20)
(0.497099 -0.00258507 9.77891e-22)
(0.782715 -7.30275e-05 -2.59544e-21)
(0.984543 -0.0778765 -5.97818e-21)
(0.93671 -0.0144109 3.90176e-21)
(1.08801 0.214204 3.70208e-21)
(1.05265 0.198719 -4.75038e-21)
(0.945096 -0.00976258 -5.20435e-21)
(0.597592 -0.0674198 1.36041e-22)
(0.981227 0.169362 3.33978e-22)
(0.631945 -0.0113315 -6.42569e-20)
(0.521012 0.0366022 -2.53728e-20)
(1.26604 0.174551 -1.62619e-21)
(1.32573 0.121532 -2.23448e-22)
(0.912804 -0.0888525 7.25445e-21)
(0.911536 0.293718 -3.42251e-21)
(0.314695 -0.00687405 4.0975e-20)
(0.998908 0.0939471 -1.92322e-20)
(0.923755 -0.034502 8.06648e-21)
(0.579206 -0.245951 -4.67298e-22)
(1.21238 0.171318 -1.72318e-23)
(1.32767 -0.262139 1.32425e-20)
(0.992287 -0.120069 5.09478e-21)
(0.97528 -0.16665 -7.56078e-21)
(0.897152 0.0755108 -1.18192e-20)
(1.23506 -0.136709 7.19927e-21)
(1.04367 0.190174 3.17296e-20)
(1.18827 0.129405 9.68538e-21)
(0.946033 0.177478 -2.09072e-20)
(0.991883 0.277032 4.42741e-21)
(0.922343 -0.102999 2.36479e-21)
(0.944754 -0.0208591 4.72282e-21)
(0.760813 0.00016705 -5.14986e-21)
(0.934102 -0.00850855 -1.71272e-21)
(0.905995 -0.100593 4.3531e-21)
(0.277847 -0.414668 1.97267e-20)
(0.925404 -0.118998 -2.1934e-21)
(0.032232 -0.205903 -2.58477e-20)
(0.933846 -0.104577 1.24134e-21)
(1.18433 0.205317 1.28807e-20)
(0.939454 -0.0373055 -5.70081e-21)
(0.908337 -0.0965025 -3.46413e-21)
(0.931163 -0.0102323 -1.92492e-21)
(1.02803 0.161693 -1.51189e-20)
(0.641425 -0.285136 -3.11378e-20)
(0.936757 -0.0128666 -2.92621e-21)
(0.727043 0.283385 3.77974e-20)
(0.84794 -0.461864 4.26189e-21)
(0.276098 -0.142045 -6.74601e-21)
(0.0407019 -0.221937 1.34043e-20)
(1.01614 0.147254 6.53296e-22)
(0.545815 -0.055077 -2.42235e-20)
(0.920329 0.30949 -6.52547e-20)
(0.406357 0.241503 -1.03883e-20)
(0.856998 -0.0187662 7.79317e-21)
(0.930866 -0.135597 -4.35366e-21)
(0.890225 -0.0113905 -6.97617e-22)
(0.959998 -0.0726392 -1.88274e-21)
(0.96791 -0.09496 7.32024e-22)
(1.0579 0.210498 -2.13279e-20)
(0.942405 -0.00620059 -2.66426e-21)
(0.52911 0.000838094 4.18148e-21)
(0.541849 -0.000197138 2.7963e-21)
(0.548715 -0.0004842 -1.89705e-21)
(0.554775 -0.000787595 -7.07317e-22)
(0.900967 -0.0435183 -2.1865e-21)
(0.553186 -0.00160599 1.0471e-21)
(0.872484 -0.0160501 -1.49527e-21)
(0.569707 -0.00135181 3.69896e-22)
(0.577236 -0.00214358 3.25074e-22)
(0.941174 -0.0829976 -5.15669e-22)
(0.585104 -0.00159852 -2.26942e-22)
(0.592655 -0.00036284 7.25561e-22)
(0.950855 -0.00424557 2.94175e-21)
(0.904055 -0.0454148 2.10962e-21)
(0.308063 -0.00276427 3.29963e-21)
(0.121261 0.0278433 -1.33161e-20)
(0.882127 -0.0843657 9.72557e-22)
(0.598662 0.00151863 -1.1625e-21)
(0.893246 0.0403593 -6.58705e-20)
(0.830352 -0.235542 4.03307e-21)
(0.85179 -0.0197386 -1.05038e-20)
(0.801575 0.185111 -3.7011e-21)
(1.00389 0.268972 -1.18853e-20)
(0.182637 0.0410105 -3.415e-21)
(0.679864 0.300302 -1.92322e-20)
(0.874646 0.00104674 1.51299e-20)
(0.307053 0.0682484 -7.28348e-21)
(0.967955 -0.0597132 6.18093e-21)
(0.968775 -0.113415 -1.09515e-20)
(0.821872 0.00172319 5.35654e-21)
(0.989858 0.132923 6.37003e-21)
(0.876173 -0.0779843 3.00127e-21)
(1.1772 0.0626615 2.33315e-21)
(0.854108 -0.0218887 3.87878e-21)
(0.0527385 -0.240857 -1.89931e-20)
(0.192846 0.0431168 -2.74604e-21)
(1.19127 -0.336931 -1.56679e-21)
(0.925574 -0.0143127 -1.13368e-21)
(0.609209 0.00323915 -1.11977e-21)
(0.925155 0.209085 2.61818e-20)
(1.43486 -0.00944937 -1.33158e-21)
(1.24889 0.00447491 1.65506e-21)
(0.968108 -0.0854244 2.31092e-21)
(0.00317756 -0.0629495 3.13549e-21)
(0.976894 -0.137025 2.59552e-21)
(0.973912 -0.123335 2.91843e-21)
(0.981288 -0.121622 -5.96582e-21)
(0.874782 -0.0632018 -2.01234e-21)
(0.915295 -0.013303 -2.69063e-21)
(0.300057 -0.00396304 -2.10533e-20)
(1.03713 0.135797 -1.21321e-24)
(0.26585 0.0613634 1.14254e-20)
(0.886685 -0.0642059 -5.74438e-21)
(0.915598 -0.0385449 -9.53334e-22)
(0.974413 -0.000671059 -9.69434e-22)
(0.420136 -0.0180739 1.20302e-20)
(0.786489 0.17485 2.04932e-20)
(0.252492 0.0563951 -1.28248e-20)
(0.875451 -0.0730171 3.23438e-21)
(1.11481 -0.242234 1.17173e-21)
(1.10406 0.189098 1.30884e-21)
(0.999009 0.115777 3.23524e-20)
(0.85873 -0.210556 -4.51397e-21)
(0.837399 -0.0250633 -3.93235e-21)
(0.878904 -0.0652027 -5.80935e-21)
(1.43916 -0.101022 -1.66433e-21)
(1.07298 -0.441694 7.5453e-22)
(0.799204 -0.0401522 -2.87589e-21)
(0.917141 0.200229 2.87942e-21)
(0.988191 -0.119381 -4.96103e-21)
(0.974746 0.102353 -1.42632e-20)
(0.878907 -0.174661 1.70815e-21)
(0.861393 -0.123834 -4.99436e-21)
(1.10687 -0.468672 -4.53802e-21)
(0.882023 -0.000929395 2.87646e-21)
(0.889165 -0.165608 -1.72009e-21)
(0.626982 -0.00751889 -4.03055e-20)
(0.29549 -0.00436202 1.07776e-22)
(0.953365 0.00197669 3.66338e-20)
(0.290389 -0.00390737 -2.07558e-20)
(0.901355 0.234864 9.13428e-21)
(0.884602 -0.022903 -5.83001e-21)
(1.23929 0.19408 6.10908e-22)
(0.334823 0.000398316 4.41972e-22)
(1.47291 -0.247838 6.71766e-21)
(0.971807 -0.000835743 1.50074e-21)
(0.901152 -0.10931 -6.11318e-21)
(1.00689 -0.180379 -5.51997e-21)
(0.90186 -0.169082 -4.95052e-21)
(0.688429 -0.0686462 -1.79765e-20)
(0.792427 -0.110733 -7.29214e-21)
(0.907103 -0.0434956 8.41813e-21)
(0.97528 -0.000864417 5.21306e-20)
(0.975074 -0.000533041 -9.50162e-21)
(0.941387 -0.0104911 -2.36684e-24)
(1.0042 -0.199518 1.14021e-20)
(0.164508 0.0413592 -7.20242e-21)
(0.861418 0.0695131 1.56353e-20)
(1.06603 0.117025 -6.92153e-22)
(0.869144 -0.414321 -8.52801e-22)
(1.22197 0.00143755 -3.38606e-21)
(0.211021 0.0465053 4.89551e-20)
(0.809878 -0.205326 9.01845e-21)
(0.283692 -0.00137886 -1.1792e-20)
(0.956744 0.178205 -4.96468e-21)
(0.996372 -0.19966 -1.43347e-20)
(0.262827 0.000193088 -1.10506e-20)
(1.19103 -0.598877 1.37439e-20)
(0.816865 0.171352 -3.0156e-21)
(0.259089 1.22218e-05 -1.3468e-21)
(0.264311 0.0587003 -1.23052e-20)
(0.882707 -0.0624055 -3.11028e-21)
(0.967123 -0.056136 -1.21683e-21)
(0.423058 0.0960667 2.23033e-22)
(0.851211 -0.0866047 5.04856e-21)
(0.934729 -0.150256 -4.31161e-21)
(0.929862 0.00126688 1.92119e-21)
(0.884353 -0.129973 -1.05329e-20)
(0.893062 -0.114138 -8.12539e-22)
(0.25394 -0.00115551 -1.42256e-20)
(0.945768 -0.162716 -3.21898e-21)
(0.87687 -0.00155982 3.7595e-20)
(0.947852 0.0872661 8.05438e-21)
(0.937581 -0.0388137 -1.82064e-21)
(0.982952 0.183872 3.01287e-20)
(0.38203 0.0830551 -5.03864e-21)
(0.986942 -0.152925 5.51208e-22)
(0.305962 0.0679784 3.26302e-21)
(0.92397 0.198203 1.08087e-20)
(0.935043 -0.0353979 4.89106e-22)
(1.10361 0.212195 1.2214e-20)
(0.865674 -0.00122853 8.87011e-21)
(0.201587 0.000716508 -4.21313e-21)
(1.04965 0.152976 -1.68721e-22)
(1.01449 0.253807 4.76859e-20)
(0.848326 -0.025585 -6.42354e-21)
(0.872165 0.00025395 2.6836e-20)
(0.881362 -0.135808 -1.04551e-20)
(0.967386 -0.000570908 4.71255e-21)
(0.0225827 -0.101211 5.4779e-21)
(0.650185 -0.156313 6.52188e-21)
(0.232151 0.0513901 6.5673e-21)
(1.19698 0.0867969 4.96844e-21)
(0.697397 -0.269735 6.27576e-22)
(0.1229 -0.000317085 1.49887e-21)
(0.624157 -0.00553192 -2.58426e-20)
(0.657001 0.14275 -7.57745e-21)
(0.818124 -0.0321081 5.77167e-21)
(0.881867 -0.385865 3.38525e-20)
(1.12999 -0.632568 2.5812e-20)
(0.803558 0.178116 -5.3456e-22)
(0.57775 0.0219162 1.37223e-20)
(0.968312 -0.138899 3.60092e-21)
(0.520775 -0.00110946 -2.563e-23)
(0.530888 0.000261565 -6.83853e-21)
(0.528859 0.00016774 2.44257e-21)
(0.54241 0.000805224 -1.36374e-21)
(0.548418 0.000860847 -7.23841e-22)
(0.853075 -0.00241404 -4.27075e-20)
(0.555288 0.000668113 -4.69806e-21)
(0.560588 0.000424718 -2.55356e-21)
(0.890228 -0.119196 6.24671e-21)
(0.565086 0.000256928 -1.91413e-21)
(0.568266 -0.000308102 1.45576e-21)
(0.571054 -0.00167595 6.33734e-21)
(0.571297 -0.00143683 2.74381e-21)
(0.584141 -0.0011433 3.30568e-21)
(0.580471 -0.0013404 -8.46541e-21)
(0.592934 0.000812039 1.70302e-20)
(0.600117 0.0014253 -1.78698e-20)
(0.607213 0.00211136 -1.20847e-20)
(0.276227 0.0623238 3.8477e-21)
(0.847648 -0.00318617 3.72908e-22)
(1.01447 0.118904 -4.24782e-20)
(0.612944 0.00213479 8.57565e-21)
(1.06013 0.137199 -3.65678e-20)
(0.96142 -0.0772427 3.57073e-21)
(0.988291 -0.0972409 -1.17027e-21)
(0.288488 0.0646274 -1.18055e-20)
(0.825432 0.175124 -1.37276e-21)
(0.830595 -0.0296073 4.47915e-22)
(0.617925 0.00140355 -7.92431e-21)
(1.2049 0.0805989 -3.86428e-21)
(0.973678 -0.0947567 9.79698e-22)
(0.320478 0.00720752 -7.22328e-21)
(0.547249 0.118657 -3.98073e-21)
(0.946264 -0.00843294 4.03221e-21)
(0.26198 0.0497271 3.307e-22)
(0.968872 0.094451 5.47458e-20)
(1.0095 -0.286842 -7.66952e-21)
(0.921915 -0.0301559 -4.79937e-21)
(0.924126 -0.123941 1.48962e-20)
(1.08208 0.137938 3.37086e-20)
(0.39547 0.0871592 -5.64259e-21)
(0.965911 -0.080817 8.70641e-21)
(1.12039 0.208694 -2.04869e-20)
(1.36075 0.088596 6.4163e-22)
(0.623789 -0.00642584 -1.43455e-20)
(0.000486799 -0.0560895 -1.15138e-20)
(1.25271 -0.283693 -6.30845e-21)
(1.0156 0.228403 5.05696e-21)
(0.995638 -0.148961 7.08085e-21)
(0.869651 0.0180583 -7.84631e-20)
(0.982298 -0.185706 1.36764e-20)
(1.38013 -0.0469684 -1.50965e-22)
(0.602747 0.00206666 5.21945e-21)
(0.332047 0.0726878 1.09732e-20)
(0.919053 0.19337 6.17865e-22)
(0.438715 0.095659 -1.97916e-20)
(1.13484 0.204683 4.47484e-22)
(0.611607 0.111274 2.34334e-21)
(0.930129 -0.117605 5.46102e-21)
(1.00342 -0.144892 6.84628e-21)
(1.00287 0.169623 -1.51852e-20)
(1.03518 0.253952 1.03192e-20)
(1.07605 0.136862 -3.88315e-20)
(1.26382 -0.015947 4.12575e-21)
(0.946816 -0.00935756 -2.57817e-21)
(0.792794 -0.174839 -1.39993e-20)
(1.07038 -0.656242 8.08442e-21)
(1.08816 0.139087 4.42605e-20)
(0.933695 0.226352 2.47849e-20)
(0.953089 -0.0645644 -4.75266e-21)
(0.915528 -0.121361 2.0259e-21)
(0.685851 -0.676189 2.05062e-22)
(0.62068 -0.00580147 -1.3261e-20)
(1.35359 0.0751028 8.97974e-23)
(0.876594 -0.161203 5.35301e-22)
(0.994615 -0.0783966 2.06435e-21)
(0.734169 -0.0690263 -1.52862e-21)
(0.700233 0.056151 -3.06667e-21)
(1.07497 0.216735 6.1408e-21)
(0.934691 -0.185145 -1.84933e-20)
(1.009 0.102467 6.01445e-20)
(0.875551 -0.215254 -2.30658e-21)
(0.930282 0.123709 3.51175e-20)
(0.981368 -0.152015 -9.06236e-21)
(0.906974 -0.118057 -1.68146e-21)
(1.22523 -0.197105 5.68732e-21)
(1.336 0.134241 1.9938e-21)
(0.977353 -0.172801 2.01582e-21)
(0.244271 -0.000877922 -1.46628e-21)
(0.880207 -0.0114918 -2.32833e-21)
(0.618446 -0.00384051 5.58596e-20)
(1.11565 -0.265986 1.44768e-21)
(0.466028 -0.421555 -4.01656e-20)
(0.998581 0.195952 -2.96264e-20)
(0.779743 0.168365 9.35064e-22)
(0.898545 -0.156997 -8.76519e-22)
(0.612879 -0.00111707 5.19173e-20)
(0.855599 -0.194003 1.44657e-20)
(0.902152 -0.204917 -6.24785e-21)
(0.973154 -0.119091 1.97365e-21)
(1.10113 0.140895 -2.3458e-20)
(0.990017 0.107396 -5.14148e-21)
(0.337089 -0.0910306 -1.75951e-20)
(0.936555 0.00351846 -2.26685e-20)
(1.0948 0.140255 5.04624e-20)
(1.081 0.225907 -1.37976e-20)
(0.606942 0.000469401 -4.94277e-20)
(1.209 -0.21028 2.38463e-21)
(0.932227 -0.401551 2.90352e-21)
(0.950415 -0.0648295 -1.05359e-21)
(0.12202 -0.363295 -2.82782e-20)
(1.1178 0.136147 -3.41207e-20)
(0.939929 -0.153435 -6.71143e-22)
(0.626357 -0.222646 4.00359e-21)
(0.602995 0.00199857 2.20025e-20)
(1.19712 0.167315 3.35091e-21)
(0.792389 0.168741 9.39754e-21)
(0.865464 -0.169518 9.46841e-21)
(1.02214 0.151502 -2.36421e-20)
(0.600736 0.00274578 5.75963e-20)
(0.898614 -0.114034 8.96695e-22)
(0.522948 0.114355 -5.90882e-21)
(0.0798133 0.018935 5.02255e-21)
(0.597606 0.00104067 1.83387e-20)
(0.883575 0.23098 1.13923e-20)
(0.401495 0.0873141 -6.50562e-21)
(0.943521 0.0926547 6.65215e-21)
(0.59495 -9.25923e-05 -4.48416e-20)
(0.836518 -0.0283331 2.92464e-21)
(1.14118 0.206478 3.28286e-21)
(0.0700514 -0.264271 -3.24125e-20)
(0.593701 0.000421805 1.73571e-20)
(0.79113 -0.0270965 -1.29267e-20)
(0.583007 0.00119185 -3.4283e-20)
(0.405143 -0.551028 -2.46825e-21)
(0.588364 0.00234683 3.46452e-20)
(0.542622 0.000562328 5.57889e-21)
(0.587525 0.00238557 -3.43574e-20)
(0.542907 0.00040882 -1.1209e-20)
(0.542753 5.57775e-05 2.26452e-20)
(0.539507 -0.000699984 -1.55926e-20)
(0.547968 -0.000684341 4.05586e-21)
(1.44078 0.0463239 2.46826e-21)
(0.577679 0.0012015 -1.75736e-20)
(0.55058 -0.000343864 7.22741e-22)
(0.553933 0.00037093 2.75338e-20)
(0.554911 0.000528347 2.46033e-20)
(0.579843 0.000405784 -5.0053e-20)
(0.556197 -0.00110258 -1.08767e-20)
(0.552614 -0.00222556 2.11837e-20)
(0.578969 -0.000412155 -4.63414e-21)
(0.565154 -0.00225685 -3.93832e-20)
(0.576584 -0.00116885 -1.77649e-20)
(0.568473 -0.00279425 7.88489e-21)
(0.572611 -0.00213895 -1.91011e-21)
(1.24147 0.1794 9.42728e-21)
(0.983196 -0.0847145 -4.08335e-22)
(0.488796 0.202247 2.23991e-20)
(1.1161 0.215258 -1.95471e-20)
(0.00528963 -0.0575705 5.00628e-21)
(0.775779 -0.0298941 1.39044e-21)
(1.00994 -0.221064 1.18484e-22)
(0.925032 -0.000815679 2.90249e-21)
(0.981282 -0.0892876 -2.42247e-21)
(1.02492 -0.184138 1.09157e-20)
(0.40424 0.0882405 1.76498e-21)
(0.638217 -0.333746 -8.18911e-21)
(1.04297 0.248114 -3.45847e-20)
(1.13828 0.134871 2.08808e-20)
(0.892262 -0.218016 -5.1991e-21)
(1.26476 0.186711 7.49261e-21)
(0.968261 -0.0824436 -7.8052e-21)
(1.12455 0.136188 -4.67262e-20)
(0.898313 0.188343 1.70384e-21)
(1.01505 -0.192015 -3.84261e-21)
(0.823979 -0.000744686 -2.06739e-20)
(0.825045 -0.0026943 9.82047e-21)
(0.822197 0.0023983 -4.12847e-20)
(0.837696 -0.00266049 -3.12438e-21)
(0.838467 -0.00186747 -1.835e-20)
(0.840897 -0.00189169 -1.94526e-20)
(0.844562 -0.00105859 -9.84789e-21)
(0.844313 -0.000468795 -1.01024e-20)
(0.846267 -0.000436952 -3.98233e-21)
(1.02567 0.113929 6.43701e-21)
(0.949016 -0.0626817 4.01287e-21)
(1.03435 0.158511 1.09533e-20)
(0.69672 -0.34321 -2.58667e-20)
(0.0432129 -0.180241 -3.98247e-20)
(0.96896 -0.0633535 3.44184e-22)
(0.0735092 -0.0859845 8.45136e-21)
(0.992714 -0.192941 -1.07003e-20)
(0.846236 -6.31736e-05 -6.64832e-21)
(0.622018 0.000884328 -9.42584e-21)
(0.604782 0.0897091 1.18112e-20)
(0.819129 0.00944943 -3.02039e-21)
(0.792514 -0.119853 -3.2502e-21)
(0.928131 -0.0227234 1.81118e-21)
(0.775005 -0.180726 1.8597e-21)
(0.854355 -0.122971 7.65034e-21)
(0.800613 -0.0160799 1.24639e-20)
(0.67987 -0.177959 1.6447e-20)
(1.15469 0.204215 -1.51679e-20)
(0.920405 -0.0156452 8.74253e-21)
(0.392666 -0.532028 -2.70325e-20)
(0.984074 -0.0903572 3.69022e-22)
(0.921516 -0.0955348 8.90742e-21)
(0.880938 -0.0795281 -7.45293e-21)
(0.541528 0.118263 -1.48496e-21)
(1.00144 0.107433 -1.43702e-21)
(1.13127 0.135903 -1.05339e-20)
(1.25155 0.0354297 6.77397e-21)
(1.07107 0.23026 2.75745e-20)
(0.972008 -0.111053 2.3987e-21)
(0.337923 -0.000785451 2.23441e-20)
(0.9185 -0.0111143 -4.06599e-21)
(0.756225 -0.105489 -7.79369e-21)
(0.964072 0.104029 -1.64978e-20)
(0.951527 -0.0391498 5.71004e-21)
(0.617235 -0.381554 3.72403e-21)
(0.962735 -0.0850079 -1.13726e-21)
(0.913344 0.190296 3.86577e-21)
(0.489713 0.108068 3.95962e-21)
(0.309016 -0.00117107 1.03794e-20)
(0.262899 -0.0022505 2.16076e-21)
(0.033031 -0.0355556 1.93587e-21)
(0.949515 -0.0386428 -1.39825e-21)
(0.903416 0.125366 1.2044e-20)
(0.890667 -0.12959 1.12879e-20)
(0.980174 0.095396 -1.36816e-20)
(0.986904 0.1153 3.35488e-20)
(0.754114 0.160479 2.40156e-21)
(0.862195 -0.177201 9.8164e-21)
(1.00588 -0.140537 -7.1921e-21)
(1.01141 0.10095 -1.52657e-20)
(1.05228 -0.459545 1.53981e-22)
(0.990246 -0.14851 -5.85236e-21)
(1.42885 -0.145786 -1.06214e-20)
(0.998356 0.255303 -7.60279e-21)
(0.751812 -0.289306 2.28616e-21)
(0.998437 -0.144734 -4.19346e-21)
(0.714362 -0.194705 -2.48669e-20)
(0.706358 -0.21682 2.72353e-21)
(0.35244 -0.493051 -1.20408e-20)
(1.03042 0.117201 1.57734e-20)
(0.00853143 -0.0506399 -2.276e-20)
(0.404267 -0.00057482 2.55129e-22)
(0.12134 -0.000847884 1.84636e-21)
(0.980916 -0.0864198 3.96862e-21)
(0.160932 0.0353066 1.35129e-21)
(0.96647 -0.0021178 -1.44812e-21)
(1.03918 0.222575 -4.71835e-20)
(0.934348 -0.0546063 8.8431e-21)
(1.0049 0.115359 1.91562e-21)
(0.886917 -0.0200594 3.47415e-21)
(0.967085 0.0882249 6.14923e-21)
(0.886898 -0.172958 -2.87115e-21)
(0.979423 0.126133 2.39364e-20)
(0.523842 -0.511434 1.90128e-20)
(0.0538674 -0.0149018 1.14329e-20)
(0.793381 0.00185428 -5.90606e-21)
(0.842184 -0.204185 2.54349e-22)
(0.479643 0.105941 -5.48774e-21)
(0.806976 -0.0215928 1.01476e-20)
(1.03508 0.12026 -2.5719e-20)
(0.0953267 -0.293081 -4.65525e-21)
(0.527471 0.0685659 -8.67118e-20)
(1.15526 0.127064 -4.40859e-20)
(0.138681 0.030458 -6.10174e-21)
(0.866029 0.225442 1.86481e-20)
(1.11636 0.208525 -8.40521e-21)
(0.633289 0.107259 3.64716e-23)
(0.933081 0.212249 -1.68711e-20)
(0.814953 -0.402594 1.35583e-20)
(1.09915 0.212277 2.99281e-22)
(0.774083 0.142433 -2.45374e-20)
(0.925763 0.202789 1.17365e-20)
(1.06977 -0.183204 -3.34933e-21)
(0.925838 0.191865 -7.33996e-21)
(0.985773 -0.0692526 -1.94546e-21)
(1.16123 -0.341825 -8.57167e-21)
(1.16263 0.125677 1.0945e-22)
(0.301898 -0.00222633 3.6089e-21)
(0.935404 -0.0498831 -2.58746e-21)
(1.00684 0.107042 5.27324e-20)
(1.28517 0.175311 4.18405e-22)
(0.968465 -0.0656066 -3.7302e-21)
(1.13257 0.212012 9.46397e-22)
(0.846699 -0.00037871 -5.23918e-21)
(0.847836 -0.000196085 1.08006e-20)
(0.847572 -0.000405396 1.7979e-21)
(0.84808 -0.00112596 1.69034e-20)
(0.839197 -0.00202242 4.26413e-21)
(0.838216 -0.0013231 -2.11453e-20)
(0.846667 -0.000804123 8.66849e-21)
(0.838092 0.000320988 1.56494e-20)
(0.845799 -0.000310742 -2.75382e-21)
(1.17789 0.122264 1.16872e-20)
(0.937196 -0.0551251 1.92155e-21)
(0.383271 0.0138267 1.09246e-20)
(1.17767 0.202817 -4.49977e-21)
(1.1121 0.208265 -1.05547e-20)
(1.1701 0.124155 -1.39055e-20)
(0.933955 0.205524 3.28856e-21)
(0.941672 0.208472 -2.19623e-21)
(1.07154 0.226489 1.38422e-21)
(0.607541 -0.0487643 6.28652e-22)
(0.8443 0.000114844 -3.82581e-21)
(0.948793 0.211452 3.30803e-21)
(0.309704 9.3792e-06 2.32308e-20)
(1.21049 0.183688 6.39585e-21)
(1.0107 0.11453 -7.03983e-21)
(0.266607 0.0611928 -1.16261e-20)
(0.530406 0.11333 5.80484e-21)
(0.965334 -0.0868362 1.16277e-21)
(0.578829 -0.29572 1.50435e-20)
(1.18586 0.120052 5.1258e-20)
(1.03918 0.0572818 1.627e-23)
(1.13265 0.213326 -8.76796e-21)
(0.932882 0.201098 1.30362e-20)
(0.629294 -0.672812 1.71443e-20)
(0.828507 0.176574 1.40215e-20)
(0.766518 -0.0236452 -1.03975e-20)
(0.84693 0.00057448 1.61715e-20)
(1.05021 0.146437 1.89502e-20)
(0.532448 0.108045 -1.72263e-21)
(0.925545 0.166038 -3.46841e-20)
(0.941553 0.216523 5.74046e-22)
(0.938648 0.11117 -2.41253e-20)
(1.11542 0.214026 -4.99008e-23)
(1.0076 -0.192721 -5.60944e-21)
(1.09442 0.212289 6.02832e-20)
(1.24029 -0.182252 -7.96246e-21)
(0.86924 -0.683269 -6.96235e-21)
(1.01254 -0.158261 4.98286e-21)
(0.707659 0.0239702 8.26877e-20)
(1.02708 -0.177487 1.57721e-21)
(0.624504 -0.347497 4.65547e-21)
(1.17622 -0.545024 1.03176e-20)
(0.899896 -0.0342746 -2.47872e-21)
(0.282646 0.0648139 7.6213e-21)
(0.0510142 -0.168847 -2.43502e-20)
(1.14792 -0.25605 -3.87576e-21)
(0.941733 0.203678 4.98126e-21)
(1.0214 0.100528 -4.74301e-20)
(0.297953 0.0673376 -6.87276e-21)
(0.917612 -0.065668 1.25489e-20)
(0.948065 0.2209 1.19427e-21)
(1.04517 0.138186 -6.32954e-20)
(0.280417 0.0629207 4.41208e-22)
(1.0178 -0.185323 -5.25584e-21)
(0.00749389 -0.0202986 -1.86024e-20)
(0.975892 0.0991661 -3.60106e-20)
(0.313086 0.0702538 7.7216e-21)
(0.456216 0.129201 -2.90275e-20)
(0.164453 -0.088519 1.35642e-20)
(1.18956 0.199231 3.31172e-20)
(0.904646 -0.0382682 4.70944e-22)
(0.896645 -0.163821 2.04915e-21)
(1.08954 0.212206 -2.84186e-22)
(0.695446 -0.0306634 -1.16442e-21)
(0.94903 -0.0366233 -4.58641e-21)
(0.987815 -0.168625 -4.81018e-21)
(1.07535 -0.197392 9.42313e-22)
(1.19702 0.12684 -2.29076e-21)
(1.04022 0.154655 -5.03039e-21)
(0.963113 -0.0819842 -4.17964e-21)
(0.689084 -0.327013 2.45467e-20)
(0.933471 -0.0518993 -4.32277e-21)
(0.786582 -0.0583365 -1.51331e-20)
(1.0341 0.231844 -1.14969e-20)
(0.79337 0.145141 1.05949e-20)
(1.34544 0.0586898 -4.5261e-21)
(0.0619245 0.0239303 2.96949e-21)
(0.295986 0.0666941 -3.00672e-22)
(0.0453779 0.0147972 2.98083e-21)
(1.00917 0.105376 -2.40492e-20)
(0.0365185 0.0105035 -2.05432e-22)
(0.873701 -0.168453 -4.84081e-21)
(0.0024731 -0.0128844 2.80048e-20)
(0.241763 0.0551291 6.79637e-21)
(0.0340754 0.00899484 -5.44239e-21)
(0.997159 0.164063 4.51006e-20)
(0.783692 0.191536 9.08682e-21)
(0.596543 -0.237911 2.26839e-20)
(1.31898 0.163481 7.3453e-21)
(0.0329504 0.00802484 9.78556e-21)
(0.68571 -0.391946 4.21956e-20)
(0.800613 -0.00290447 -1.18121e-20)
(1.08448 0.212085 -3.27569e-20)
(0.0331345 0.00830419 -9.05833e-21)
(0.938923 -0.0994162 3.22648e-21)
(0.97627 -0.0644514 1.08562e-21)
(0.943239 -0.111467 3.64428e-21)
(0.885102 0.182839 -1.82399e-21)
(0.0296304 0.00751952 9.05202e-21)
(1.0147 0.217445 -1.44271e-20)
(0.713966 0.154129 -8.5249e-21)
(1.07606 0.16148 -1.21461e-20)
(0.663221 -0.032209 -6.78128e-21)
(1.15734 0.191671 -3.86261e-20)
(0.0265864 0.00632853 4.12232e-21)
(0.852173 -0.11664 -8.77669e-21)
(0.0669489 -0.15728 1.46806e-20)
(0.884196 -0.160013 -3.67914e-22)
(0.0256118 0.00623914 -6.0822e-21)
(0.929801 0.195941 -6.65686e-21)
(0.527725 0.0025683 -5.56935e-24)
(0.10888 0.0423561 -6.34071e-21)
(0.899204 -0.12368 -1.2283e-21)
(0.0238889 0.00537114 -2.83611e-21)
(0.905328 -0.155195 3.9889e-21)
(0.868399 -0.208308 -3.9613e-21)
(1.00318 0.233295 -2.1553e-20)
(0.878099 0.248792 -4.12466e-20)
(0.798205 -0.025519 -2.37607e-21)
(0.00106314 -0.00856783 0)
(1.22389 -0.528228 9.59399e-21)
(0.030294 0.00664405 1.04783e-20)
(1.27828 0.0683943 1.10567e-20)
(0.983029 0.243159 -7.45565e-21)
(0.879314 -0.06987 7.34097e-21)
(0.0248836 0.00568095 -3.07416e-21)
(1.13734 0.206077 1.40056e-20)
(0.852138 -0.202805 2.24942e-21)
(0.564272 0.122739 -1.55285e-20)
(0.621857 -0.0161712 1.21638e-20)
(0.949073 0.000152482 -2.30767e-21)
(0.772434 0.18581 2.2145e-20)
(1.41969 -0.161117 -2.84525e-21)
(0.429035 0.0934503 5.34467e-21)
(1.06902 0.216649 1.11309e-20)
(0.0242714 0.00573538 2.20212e-21)
(0.952544 -0.0289549 5.47074e-22)
(0.948865 0.201032 -1.64751e-20)
(0.0229963 0.00532246 -5.85117e-21)
(0.93989 0.198592 1.04473e-20)
(0.905538 0.0931989 -2.86746e-20)
(1.03339 0.229375 -5.14216e-21)
(0.709723 -0.0235975 1.64916e-20)
(0.0240082 0.00483505 -5.09817e-21)
(1.05109 0.221616 -4.43203e-20)
(0.91522 -0.068444 -6.33518e-21)
(1.15083 0.203475 -1.21395e-20)
(1.12921 0.205324 2.43657e-20)
(0.859813 -0.000949439 -9.50072e-22)
(0.581763 0.127593 -1.9331e-20)
(0.858361 -0.00145375 -1.0881e-22)
(0.929618 -0.0241823 -5.97146e-21)
(1.02183 0.109602 -3.6659e-20)
(0.026948 0.00673001 5.08653e-21)
(1.13334 0.205676 -1.19237e-21)
(0.000503154 -0.00650138 0)
(0.761551 0.283466 1.98411e-21)
(0.0252882 0.00600746 9.77004e-21)
(1.08735 0.2238 -4.86785e-21)
(0.6793 -0.0574322 1.23387e-20)
(0.852637 -0.00119004 -5.02993e-22)
(0.91649 -0.0718759 1.8477e-21)
(0.913203 0.186049 -2.64944e-21)
(0.598083 0.132685 3.40162e-21)
(0.0215186 0.00515094 -2.62185e-21)
(0.00100569 -0.0574326 -1.60911e-20)
(0.780495 0.00317803 3.35827e-20)
(0.929215 -0.0202663 1.81567e-23)
(0.952249 0.104207 6.04325e-20)
(1.32724 0.155576 8.9166e-22)
(0.991807 0.158034 1.20311e-21)
(0.876303 -0.18245 3.46753e-21)
(1.04492 0.125821 -4.41877e-20)
(1.15935 0.211155 -2.55583e-21)
(0.0203963 0.00450667 -4.82748e-21)
(1.05977 -0.239648 -4.49327e-21)
(0.349537 0.183006 -5.63893e-21)
(0.787041 -0.154523 5.64819e-21)
(0.557942 0.0313669 1.97409e-20)
(0.844204 0.00124936 -1.88311e-21)
(0.0262124 0.00577645 -5.82352e-21)
(1.01261 0.109468 -2.5787e-21)
(1.08358 -0.185339 -4.90942e-21)
(0.954824 0.225379 -5.58487e-21)
(0.338887 -0.00130864 4.17901e-22)
(0.0223303 0.00509572 1.27045e-20)
(0.974957 -0.000367674 -4.16863e-21)
(0.975391 -0.000501063 8.47825e-21)
(0.767863 -0.45492 -1.06068e-20)
(0.875982 0.286703 -1.26091e-20)
(0.125202 0.0268397 -4.97072e-21)
(1.08423 0.191266 -9.21548e-21)
(0.944022 0.197634 1.66183e-21)
(1.02006 0.179174 5.73337e-20)
(0.0201988 0.00477931 -3.94872e-21)
(0.000275642 -0.00588694 0)
(0.992736 -0.131455 -4.72766e-21)
(1.0583 0.239392 -3.06403e-20)
(0.0192885 0.00449465 -3.94676e-21)
(0.741218 -0.14886 4.41891e-21)
(1.21601 0.19681 1.89381e-20)
(1.15939 0.209604 -1.1509e-21)
(1.0677 0.193696 -1.17405e-20)
(0.792373 0.196904 -1.08974e-20)
(0.928191 0.252898 6.6748e-22)
(1.19412 0.117663 2.1807e-20)
(0.0207438 0.00449379 -1.50145e-21)
(1.02387 0.193396 -3.1142e-21)
(1.10229 0.194218 -4.23264e-21)
(1.06323 0.198727 2.35138e-20)
(0.648825 -0.0860005 -4.08786e-20)
(0.96964 -0.00147734 2.39436e-21)
(0.913249 -0.104318 6.15548e-21)
(0.475048 0.104013 1.92213e-21)
(0.0223503 0.00508464 -2.25227e-22)
(0.965786 0.0947205 -7.69748e-22)
(0.509855 -0.296024 -1.22191e-20)
(1.02806 0.18946 -8.08877e-21)
(0.933156 0.19587 -1.53083e-20)
(0.487148 -0.178608 8.13123e-21)
(0.264083 0.0592937 1.20454e-20)
(0.0213107 0.00488092 -4.4025e-22)
(0.909908 -0.201341 -1.12408e-21)
(0.98743 0.198239 2.49296e-21)
(1.40596 -0.00929784 -1.96659e-23)
(0.0212373 0.00460809 9.82193e-22)
(1.28824 0.162485 8.89395e-23)
(0.0228516 0.00482947 -6.13589e-21)
(0.986771 0.151938 3.47693e-20)
(0.995124 0.207527 -1.8575e-20)
(0.000178956 -0.00544161 0)
(0.676631 -0.680233 1.93286e-20)
(0.884847 -0.21213 1.18042e-20)
(0.924229 -0.0131284 -7.61752e-21)
(0.022503 0.00517205 -5.87724e-21)
(0.827344 -0.215202 -3.65501e-21)
(0.915572 -0.0450799 5.99434e-21)
(0.774192 0.130836 -5.44157e-22)
(0.986277 -0.0884107 -1.48227e-22)
(0.89883 -0.0379225 3.30905e-21)
(1.00457 0.112051 4.51548e-20)
(0.0230512 0.00529538 -1.01375e-21)
(1.23025 0.192137 6.19616e-21)
(0.93898 0.231644 -7.88782e-21)
(1.1175 0.214968 2.94175e-21)
(1.15899 0.108513 -7.20913e-21)
(0.747857 -0.390655 1.70029e-21)
(0.938208 -0.02034 -2.16112e-21)
(0.911069 0.190996 7.15304e-21)
(0.729529 0.334506 -6.34793e-20)
(0.221228 -0.00154894 8.08432e-21)
(0.779114 -0.162982 -3.33807e-22)
(1.00019 0.218229 -1.36596e-20)
(0.0214152 0.00486786 -5.86125e-21)
(0.16198 -0.0677505 2.93033e-20)
(0.532837 -0.00362396 1.04595e-20)
(0.926819 0.299185 -2.27974e-20)
(0.0229355 0.00485962 2.25868e-21)
(0.901328 -0.214065 -7.32443e-21)
(0.13165 -0.329129 3.75938e-20)
(0.0250584 0.00574901 1.84295e-21)
(0.993035 0.115774 -5.6198e-22)
(0.541486 0.117904 5.49835e-22)
(0.764881 0.336402 -1.86077e-20)
(0.982122 0.145614 7.85253e-21)
(1.06271 0.216348 4.53841e-21)
(0.022973 0.00529775 -3.51163e-21)
(0.973879 0.096725 3.53696e-20)
(0.11055 -0.00134548 3.23571e-21)
(1.01733 0.164131 -3.55343e-21)
(1.23039 0.0859555 1.95736e-20)
(1.00841 0.270026 -4.2773e-20)
(0.922359 0.193655 -3.27424e-21)
(0.0224303 0.00507793 -2.05808e-23)
(3.08077e-05 -0.00529399 0)
(1.36929 -0.14837 -4.81901e-21)
(0.900419 0.00761017 -6.19914e-20)
(0.914701 0.0872952 2.1214e-20)
(0.0218333 0.00478027 -6.50783e-21)
(0.945763 0.107646 1.57854e-20)
(0.996345 -0.0955921 -1.29011e-21)
(0.74268 0.320057 -2.07092e-20)
(1.42272 -0.0764399 4.6997e-21)
(0.886757 -0.0516123 1.32442e-21)
(0.0240045 0.00518901 2.51452e-22)
(0.882362 -0.147616 8.37999e-21)
(0.7312 -0.248584 -3.7626e-21)
(0.944694 0.238052 1.14914e-20)
(0.702935 -0.151459 -2.94164e-22)
(0.022882 0.00538903 4.22332e-21)
(0.556427 0.120671 1.64448e-20)
(1.24861 0.073829 2.68142e-21)
(0.678668 0.137926 -5.95524e-21)
(0.703208 -0.00950301 -3.18988e-20)
(0.73092 0.144894 -2.08378e-21)
(0.0233347 0.0053877 3.74133e-21)
(0.659774 0.134632 -2.57936e-21)
(1.22703 -0.297886 -4.43145e-21)
(1.2437 -0.24331 4.75255e-21)
(0.486749 0.10522 -5.70873e-21)
(0.022425 0.00499934 1.60323e-21)
(1.05694 0.208466 -4.12593e-21)
(0.0810933 0.0182568 -1.13045e-20)
(0.893313 -0.124143 -5.25199e-21)
(0.810651 0.150943 3.45921e-20)
(0.769425 -0.160211 8.65551e-22)
(0.970957 -0.000677524 -5.2063e-21)
(1.23915 0.0802354 -1.03863e-21)
(0.0275715 0.00627874 4.75111e-21)
(0.925934 0.192763 -1.86596e-21)
(1.08037 -0.473091 1.0175e-21)
(-3.2928e-05 -0.00516381 -3.34129e-21)
(0.0211831 0.00512159 5.73528e-21)
(1.25798 0.0660865 4.68573e-22)
(0.925585 -0.00864448 -7.85993e-21)
(1.25313 -0.165784 1.73323e-22)
(0.612116 -0.0754475 7.79423e-21)
(0.51203 0.110116 4.68147e-21)
(0.204289 -0.0004882 1.40417e-21)
(0.0215258 0.00492903 -4.45429e-22)
(0.996557 -0.186698 2.16104e-21)
(0.811047 -0.22689 2.07305e-20)
(1.38298 0.0554169 2.51969e-21)
(0.0205503 0.00447018 4.87815e-21)
(1.02366 0.161057 4.56382e-21)
(1.04957 0.122566 -4.93438e-20)
(0.982462 0.132551 -3.80271e-21)
(0.0220165 0.00504569 1.83656e-21)
(0.971296 0.102932 -6.946e-20)
(1.04859 0.209709 6.73625e-21)
(1.48582 -0.21336 7.97028e-21)
(0.884347 0.178044 -4.2218e-21)
(0.775877 0.00210447 6.9668e-21)
(1.39919 -0.229824 -1.10662e-20)
(1.01479 0.208431 3.75012e-21)
(0.907759 -0.0282881 -1.98623e-21)
(0.316166 -0.534289 3.37459e-20)
(0.808784 -0.00634499 -1.26855e-20)
(0.985677 -0.0856553 3.29749e-22)
(0.761839 -0.1673 7.811e-21)
(0.020246 0.004566 -7.136e-21)
(1.02209 0.182249 -1.82639e-20)
(0.764373 0.156665 -4.52113e-21)
(0.458839 -0.226877 2.02802e-20)
(0.919898 0.0944529 -2.29352e-21)
(0.0200376 0.00435419 -2.96416e-21)
(0.895393 0.117344 6.4128e-20)
(-1.20024e-05 -0.0052367 1.31232e-20)
(0.339665 -0.000289318 -2.49742e-21)
(0.894301 -0.0163679 -3.99098e-21)
(0.90519 -0.0136651 5.14072e-21)
(0.0226315 0.00467503 -4.29134e-21)
(0.85061 -0.000224536 -5.27285e-22)
(0.978442 0.138927 -7.08283e-20)
(1.06965 0.125795 2.58904e-20)
(1.17384 0.202306 2.297e-21)
(0.264581 -0.00212017 -4.31608e-21)
(0.881625 0.27089 -4.95553e-21)
(0.0212343 0.00458369 4.97501e-21)
(1.04372 0.220845 3.871e-20)
(0.768556 -0.124413 -1.30764e-21)
(1.00719 0.110147 -7.28663e-20)
(0.561085 0.122399 -6.17819e-21)
(0.0286367 0.00630162 -2.46534e-21)
(0.482469 0.1056 -5.19363e-21)
(0.963909 -0.000887405 4.94737e-20)
(0.0232543 0.005291 -1.36544e-21)
(0.314454 0.0707032 2.28427e-22)
(0.82139 -0.345811 -2.55277e-20)
(0.241375 -0.000562935 3.72542e-22)
(0.66642 0.154848 1.46963e-20)
(1.17475 0.209184 -1.33424e-20)
(0.0233023 0.00544486 -3.23624e-21)
(1.15196 0.111216 3.29034e-20)
(0.32921 -0.0372282 -4.34988e-20)
(1.3379 0.126268 -3.96278e-21)
(1.27038 -0.504208 -6.89832e-21)
(1.01733 0.256166 -5.35789e-20)
(1.08424 0.197148 3.38957e-21)
(0.98309 -0.114734 2.07823e-21)
(0.483796 0.10567 5.37563e-21)
(1.16531 0.201052 -1.61465e-20)
(1.16973 0.20173 1.11042e-20)
(0.936749 0.287021 1.73967e-20)
(0.0226065 0.00557953 2.03244e-21)
(0.92273 -0.0186227 3.79982e-22)
(0.939524 0.194403 -1.28238e-20)
(0.751662 -0.16375 1.07816e-21)
(1.13143 0.214419 9.31187e-22)
(0.993096 0.112459 7.90671e-21)
(1.31459 -0.473504 7.60993e-21)
(0.1774 0.000315033 5.97031e-21)
(1.19068 0.142169 -4.18043e-22)
(0.471219 0.104003 4.09044e-21)
(0.647258 0.129005 1.82892e-22)
(1.0391 -0.180407 1.61164e-21)
(1.25615 0.1865 -9.48793e-21)
(1.19511 0.204437 4.70922e-21)
(0.595401 0.0455683 1.59126e-20)
(0.0241344 0.0051189 2.72975e-21)
(0.898932 0.268697 4.24249e-20)
(0.838067 -0.213931 -4.379e-21)
(0.888516 0.305894 -9.54299e-21)
(1.09686 -0.212775 5.57916e-21)
(1.06782 -0.283743 -6.93039e-21)
(1.20969 0.200798 -7.49961e-21)
(0.889448 0.176916 -9.03701e-21)
(0.162061 -0.0477656 -2.35784e-20)
(0.0222163 0.0051755 2.14306e-21)
(0.926743 -0.0125141 5.52424e-21)
(0.977045 -0.0994409 -1.40911e-21)
(0.998594 0.102845 2.81604e-20)
(0.633587 -0.176762 -1.45054e-20)
(1.02337 0.20853 5.39145e-21)
(1.01383 0.115661 4.31913e-20)
(0.932785 -0.031756 -5.50445e-21)
(1.26278 -0.147209 1.35386e-21)
(0.0215322 0.00482352 5.12414e-21)
(0.210126 -0.243591 -1.57385e-20)
(0.512268 0.000435789 1.0485e-20)
(0.0243488 0.00528846 -5.64728e-21)
(0.908472 -0.104657 3.32e-21)
(0.773132 -0.228058 -2.61219e-21)
(0.97214 0.180351 -2.0793e-20)
(0.938936 -0.0530497 -1.52133e-21)
(0.743108 -0.171033 7.3767e-21)
(0.822622 -0.225777 -1.8821e-20)
(1.07682 -0.18813 2.9495e-21)
(0.220205 -0.00119913 2.27498e-20)
(0.672122 -0.0313226 1.46909e-20)
(0.026846 0.00570653 6.6657e-22)
(1.26338 0.163634 1.27064e-21)
(1.02873 0.203108 -6.59535e-21)
(0.73821 -0.572194 2.53686e-21)
(1.09143 0.185114 4.65851e-21)
(0.950704 -0.0263434 -4.65663e-21)
(0.754214 0.163336 2.22725e-21)
(1.0079 0.241145 3.93917e-20)
(1.27447 0.179433 -1.54401e-21)
(0.646759 -0.170295 8.32422e-21)
(0.446805 -0.153098 3.64899e-20)
(0.0299544 0.00698338 -1.13352e-21)
(0.919056 -0.0852188 -5.32018e-21)
(1.14384 0.212969 -6.93644e-21)
(1.08846 0.1989 -1.92839e-20)
(1.26946 0.154852 -8.00179e-21)
(1.05199 -0.301199 -1.66077e-21)
(0.915596 0.180438 -1.15417e-21)
(0.58331 0.126644 -6.67051e-21)
(1.24664 0.156758 -3.15471e-22)
(0.529035 0.113985 4.77835e-21)
(0.987738 -0.0839311 -1.27632e-21)
(0.022303 0.00473741 6.0571e-21)
(1.06689 0.135932 4.31776e-21)
(0.810434 0.247414 1.3287e-20)
(1.2135 0.170452 -1.77438e-21)
(0.56022 0.030825 -3.46112e-20)
(0.907361 -0.00652456 -7.71486e-21)
(0.0248642 0.00504262 2.205e-21)
(1.33124 -0.0210513 -1.40575e-21)
(0.691196 -0.170768 -8.55677e-21)
(0.0261197 0.0061219 9.83359e-22)
(1.26803 0.0573728 2.00901e-22)
(0.925694 0.100763 4.66744e-20)
(0.547303 -0.0422255 -9.26032e-21)
(0.318191 -0.133384 9.79266e-21)
(1.11766 0.161882 3.45011e-20)
(0.439966 -0.28368 1.04765e-20)
(0.67975 -0.596562 -2.56076e-20)
(0.41472 -0.167012 -6.5239e-21)
(0.974744 -0.0632528 -1.91108e-21)
(0.929079 -0.00376406 5.65045e-21)
(0.0233074 0.00548408 1.2348e-22)
(0.024736 0.00528447 1.1401e-21)
(0.23761 0.000886249 -8.1988e-21)
(0.679768 0.135758 5.1373e-21)
(0.880097 0.0781734 1.75422e-21)
(0.912207 0.101287 3.69005e-20)
(-3.86143e-05 -0.00557323 8.00215e-21)
(0.362895 0.0535345 -1.75871e-20)
(0.0258645 0.00582023 3.26752e-21)
(0.802595 -0.0820406 5.62148e-21)
(0.729809 0.181229 -1.2733e-20)
(0.779247 0.00271632 2.46408e-21)
(0.025942 0.00594691 1.70793e-21)
(0.767201 0.160325 5.5272e-21)
(1.27007 -0.128054 1.70851e-21)
(0.91409 -0.112609 6.98929e-22)
(0.942706 -0.0115063 3.03159e-21)
(0.701939 -0.1766 -1.83944e-20)
(0.986217 0.126605 2.49398e-21)
(1.26587 0.0324471 8.31597e-21)
(0.0265507 0.00632118 5.33749e-21)
(1.39907 0.00732197 -9.02209e-22)
(0.89958 -0.28032 -4.92429e-21)
(0.469896 -0.376279 -6.22751e-21)
(1.4329 -0.0505893 3.44998e-21)
(0.84911 -0.000508726 -1.02727e-20)
(0.73261 -0.16678 6.84946e-22)
(0.78669 -0.0529579 1.29509e-20)
(0.935011 -0.0165114 3.29909e-21)
(1.17444 0.180164 -6.76688e-21)
(0.338065 0.0728777 -2.29827e-22)
(0.575427 0.133554 7.92855e-21)
(0.549794 0.125732 -1.25486e-20)
(0.796171 0.174596 -1.4371e-20)
(0.975564 0.000266566 -1.09055e-20)
(0.975075 0.000523842 -2.76847e-21)
(0.304386 -0.0161704 3.27306e-21)
(0.832454 -0.694646 -3.80247e-20)
(0.858716 0.0967319 -4.39564e-20)
(0.938743 -0.0138682 -8.79359e-22)
(0.671361 -0.157904 -2.58622e-20)
(1.21769 0.117884 3.19483e-21)
(0.163926 -0.0288488 2.53095e-20)
(0.0247275 0.00528586 -3.16945e-21)
(-4.56774e-05 -0.0056921 -1.92092e-20)
(0.960281 0.104203 -3.36988e-22)
(0.884483 -0.0761266 -2.31776e-21)
(1.25636 0.17189 1.77441e-21)
(0.662472 -0.150473 2.89251e-20)
(0.888427 0.0494824 -7.90105e-21)
(1.05598 0.117029 -1.70885e-20)
(0.946599 0.000900793 2.07352e-21)
(1.30111 0.168761 -8.95643e-22)
(0.782734 -0.488258 -2.00601e-21)
(0.185006 -0.374279 -1.2879e-20)
(0.449454 -0.212287 -2.10234e-21)
(0.0217181 0.00479236 5.69393e-22)
(0.986203 0.14747 -3.7611e-20)
(1.33284 0.1239 8.32809e-21)
(0.946322 0.100271 -1.53511e-21)
(0.938111 -0.00870693 -2.25053e-21)
(0.0250074 0.00531646 -4.71497e-21)
(0.809904 -0.102048 3.0271e-21)
(1.37955 0.0750872 5.03507e-21)
(0.899364 0.311035 3.02512e-21)
(0.207279 -0.00080234 -1.13161e-21)
(0.985446 -0.0670772 -1.16947e-21)
(0.38056 -0.000966667 2.78539e-21)
(0.0250436 0.00565875 -1.26628e-21)
(1.0848 0.222373 -1.69044e-20)
(0.915982 0.00627428 -1.28177e-20)
(0.951031 0.195139 5.95193e-21)
(0.43581 -0.182586 1.02618e-20)
(1.35396 -0.436754 -8.94566e-21)
(0.989678 0.120992 3.36885e-21)
(0.875592 0.0252178 -9.54261e-20)
(0.72306 -0.174209 8.77436e-22)
(1.11664 0.190429 1.31243e-20)
(1.21186 0.196462 -1.56945e-20)
(0.703149 0.128128 1.23359e-21)
(-5.52862e-05 -0.00597822 0)
(1.04642 0.194291 -2.75938e-21)
(1.12007 0.185691 3.13903e-20)
(1.12348 0.180994 8.27689e-22)
(1.15382 0.156419 -3.63698e-21)
(0.940989 -0.0335866 5.53788e-22)
(0.623129 0.134841 4.27291e-21)
(0.716301 -0.207729 -6.92541e-21)
(0.0233932 0.00554492 -1.36988e-21)
(0.994663 0.150425 5.63473e-20)
(0.724345 -0.186412 -1.07393e-20)
(0.76032 -0.60453 -4.20163e-21)
(0.168747 -0.00934141 2.69586e-21)
(0.024876 0.00538429 3.36345e-21)
(0.426109 -0.0509788 1.59101e-20)
(1.32322 -0.505341 1.64464e-20)
(1.11124 0.135966 -5.65516e-21)
(0.991095 0.153514 1.05244e-20)
(0.629489 0.134989 -2.8281e-22)
(0.712402 -0.169229 -1.15317e-20)
(0.903471 0.186568 -3.44791e-21)
(0.936575 0.191886 -1.75126e-22)
(0.965644 0.100615 -2.78795e-20)
(1.19162 0.0959463 1.71448e-20)
(1.24364 0.13855 -7.13423e-21)
(0.994963 0.261012 -2.68228e-21)
(0.920798 0.189044 7.61466e-23)
(0.0278267 0.00679998 1.57792e-21)
(1.20211 0.195539 -1.10317e-20)
(1.20709 0.196122 -1.96605e-20)
(0.891644 0.172669 7.23437e-21)
(0.938428 -0.0892171 2.23441e-21)
(0.707215 0.152022 4.47346e-21)
(0.75957 0.156401 -2.5102e-21)
(1.36792 0.0153593 2.01843e-22)
(-3.58584e-05 -0.00646635 -3.65387e-21)
(1.07861 0.126241 -6.89355e-20)
(1.22206 0.196131 3.52926e-21)
(1.13229 -0.342398 1.15784e-20)
(0.906234 -0.109098 -4.29078e-22)
(0.545362 0.113035 -2.21938e-21)
(0.791992 0.184301 2.30965e-20)
(0.0300686 0.0063625 -1.24319e-21)
(1.19456 0.177572 6.05489e-21)
(0.970391 -0.000567386 -8.55885e-21)
(0.428224 0.0894745 -2.78585e-21)
(0.32052 0.0667297 6.17049e-22)
(1.02282 0.236789 -4.86596e-21)
(0.805793 -0.23799 -1.0726e-20)
(-5.09812e-05 -0.00618474 0)
(0.650828 0.138298 2.95162e-21)
(0.459596 -0.195688 1.5038e-20)
(1.13299 0.196956 9.95982e-21)
(0.849375 -0.521136 -2.23869e-21)
(1.2086 0.177479 2.03154e-20)
(0.0293331 0.0065087 -2.62726e-21)
(0.125171 0.0281995 6.97771e-21)
(0.834153 0.0746105 -6.33625e-23)
(0.930908 -0.0280097 3.69026e-21)
(1.1888 0.20457 -1.09094e-20)
(1.30169 0.168268 1.25409e-21)
(0.742677 -0.0447221 -1.10495e-20)
(0.983677 0.241961 5.81756e-21)
(1.04003 0.123102 2.37771e-20)
(0.785535 -0.630296 1.92374e-20)
(0.60258 0.138029 -1.47154e-20)
(0.0241989 0.00541605 2.91769e-21)
(1.11324 0.195024 -2.46209e-20)
(0.304826 0.0698785 1.17533e-20)
(-3.88811e-05 -0.00722676 1.27298e-20)
(1.15948 -0.199912 7.06579e-21)
(1.27559 -0.109494 1.00692e-22)
(0.0258826 0.00552274 -4.44273e-22)
(1.42607 -0.285383 1.15397e-21)
(0.0267462 0.0059676 3.62677e-22)
(0.982149 0.141147 1.81512e-20)
(1.03995 0.128941 -1.92224e-20)
(1.18568 0.147503 -4.28743e-21)
(0.793166 -0.238838 -1.22992e-20)
(0.654113 0.149509 2.69595e-20)
(0.783845 -0.00152437 -5.60253e-23)
(0.914811 0.175213 3.42865e-21)
(1.33079 0.15431 4.35931e-21)
(0.883609 -0.0715144 2.5182e-21)
(0.937308 -0.0929324 9.54232e-22)
(1.17025 0.185691 -1.7328e-20)
(1.08118 -0.211141 7.40131e-22)
(0.752597 -0.238564 -1.01778e-20)
(0.971173 0.133881 -3.57184e-20)
(-4.17361e-05 -0.00644289 0)
(0.826373 -0.0183966 4.13175e-21)
(0.250751 0.0827155 -6.50518e-21)
(0.0250806 0.00589276 8.25694e-22)
(0.682828 -0.151671 -1.88778e-20)
(0.0303713 0.00709607 1.64108e-21)
(0.0257068 0.00560198 1.1182e-21)
(0.350357 -0.077773 5.94797e-21)
(0.782563 0.107121 -2.00135e-21)
(1.10452 0.199144 5.09153e-20)
(0.878181 0.297226 1.40385e-20)
(1.03109 0.220992 -6.88397e-23)
(0.0266167 0.00600342 3.05472e-21)
(1.03508 0.207866 6.89653e-21)
(0.0280397 0.00640247 -2.58818e-21)
(1.04588 0.22526 -6.49135e-21)
(0.704997 0.160228 -2.21933e-20)
(0.949208 0.245387 -1.24836e-20)
(1.10187 -0.503474 -2.00544e-20)
(0.027021 0.00589711 -3.2747e-21)
(0.406212 0.0285527 3.2599e-20)
(0.735524 -0.016252 2.88752e-20)
(0.885133 -0.141287 4.13164e-21)
(1.03993 0.135168 2.42306e-20)
(1.03017 0.21669 -4.04996e-22)
(0.996108 0.159439 -4.76399e-20)
(0.750133 0.175529 -1.15461e-21)
(1.21168 0.179638 -2.51119e-20)
(0.027119 0.00616379 -1.36292e-22)
(0.171226 -0.109248 -3.58324e-21)
(1.0066 0.201307 1.66322e-20)
(0.894251 -0.0516365 2.84489e-21)
(1.06015 0.21132 -1.39551e-21)
(0.932847 -0.0171714 -5.5628e-22)
(1.22197 0.133458 9.57545e-24)
(0.943242 -0.271355 2.03998e-21)
(0.567055 0.101152 1.62842e-23)
(1.35479 0.137473 -7.31224e-21)
(1.06031 0.225395 -4.73802e-21)
(0.0260555 0.00569377 2.04936e-21)
(0.820274 0.0599695 -2.57566e-20)
(1.01415 0.261005 -2.76828e-20)
(0.980751 -0.10408 9.79452e-21)
(1.00151 0.165205 1.07363e-20)
(1.18186 0.123182 -1.3429e-21)
(1.0348 -0.175506 -8.48522e-21)
(1.03035 0.15872 -4.05724e-20)
(0.621959 -0.043249 1.47703e-20)
(1.41118 -0.234606 -1.85426e-20)
(0.978661 0.13447 3.04336e-20)
(1.07307 0.22488 4.78672e-20)
(0.894201 0.0316847 -7.60036e-20)
(0.974446 -0.145577 2.57733e-21)
(0.618551 0.133492 -9.58976e-22)
(0.943487 0.191063 3.83167e-21)
(0.989875 0.117394 4.5581e-21)
(0.661251 0.141849 -2.77508e-21)
(1.04085 0.187038 7.62617e-21)
(1.0878 -0.226271 3.54898e-21)
(0.357102 0.0810782 -1.55248e-21)
(0.78012 0.133251 5.59172e-23)
(0.0282165 0.00611925 -7.89439e-22)
(0.986367 0.122707 4.87463e-21)
(0.901166 0.0792501 4.36151e-20)
(1.3667 0.111528 -1.46223e-21)
(1.09178 0.182365 -4.12432e-20)
(1.02916 0.224551 5.2085e-20)
(0.836847 -0.0143163 8.32603e-21)
(1.2327 0.172436 7.45153e-21)
(0.939813 -0.0952317 -5.71472e-21)
(0.028374 0.00646476 -4.24235e-21)
(0.163776 -0.209959 2.60982e-20)
(0.0275332 0.00599843 2.23025e-21)
(1.10826 0.216211 -4.57575e-21)
(0.0207839 -0.0743308 -6.69724e-21)
(1.24579 0.186348 6.4963e-21)
(0.511754 -0.214212 -2.12417e-20)
(1.38949 -0.394694 -5.22889e-21)
(1.27356 0.10454 1.2964e-21)
(0.0280769 0.0060723 -1.64298e-21)
(0.0272754 0.0060886 1.21097e-22)
(1.04965 0.195892 -9.93886e-21)
(0.73445 -0.0515937 -7.2196e-21)
(0.451396 -0.555479 -5.30743e-21)
(0.938222 0.176778 -6.69753e-21)
(0.0297147 0.00664726 8.2427e-22)
(0.921949 0.187332 7.14205e-21)
(0.943959 -0.000700542 9.29092e-21)
(0.955997 0.130351 -1.59561e-20)
(0.773583 -0.250943 -9.82975e-21)
(0.940793 -0.0119364 2.47255e-21)
(1.10129 0.219132 -1.73991e-20)
(1.00641 0.204758 -1.21998e-20)
(0.390509 -0.473156 -5.68995e-21)
(0.666456 -0.117065 2.18757e-20)
(0.903978 0.182826 -4.64623e-21)
(0.855612 -0.220428 -1.82826e-21)
(0.72835 0.164385 9.96342e-21)
(0.886715 -0.153153 -1.39413e-21)
(0.893686 -0.151854 -7.68997e-21)
(1.00573 0.214025 -2.94582e-21)
(0.484995 -0.206577 3.46091e-20)
(1.18805 0.206253 2.13525e-21)
(1.34326 -0.0935813 3.95507e-22)
(1.43093 -0.329538 2.27475e-20)
(1.01284 -0.255603 -2.25997e-21)
(1.33974 0.0179665 -5.14895e-22)
(1.16169 0.210643 -1.47223e-21)
(0.0267677 0.00587024 9.38805e-22)
(0.0305027 0.00681424 -1.82656e-21)
(1.25118 0.186442 4.67414e-21)
(1.04578 0.21273 1.30877e-20)
(1.15247 -0.174705 2.32144e-22)
(0.752238 -0.262696 -2.02082e-21)
(0.0296823 0.0068117 -7.29996e-22)
(1.32041 0.0605592 -3.24399e-21)
(0.8884 0.108584 1.05246e-20)
(0.985705 0.0863237 -4.2461e-20)
(1.356 -0.0554449 2.46303e-22)
(0.622416 0.133141 -1.175e-20)
(-8.18505e-05 -0.00701626 -8.25266e-21)
(0.982685 0.128424 3.3493e-20)
(1.02282 0.218445 1.65083e-20)
(0.986086 0.174866 -8.26124e-21)
(0.0311708 0.0074719 -2.82032e-22)
(1.07388 -0.306942 2.40391e-21)
(1.31913 -0.0370265 4.67659e-21)
(1.39037 0.108678 -1.188e-21)
(0.383086 0.160516 -1.53759e-21)
(0.823472 0.0402838 -4.48969e-20)
(1.05417 0.15644 2.43551e-20)
(0.12412 -0.00050665 5.37727e-22)
(-1.11082e-05 -0.00654546 -1.73623e-20)
(0.845243 0.3014 -9.73926e-21)
(0.994317 0.210181 4.30641e-20)
(1.01478 0.214277 -7.887e-20)
(0.884317 -0.404745 -5.87811e-21)
(0.841408 -0.233505 1.19324e-20)
(0.927314 -0.0911722 5.11621e-21)
(1.00593 0.210441 -2.62429e-20)
(1.08389 0.224539 5.34853e-21)
(1.03991 0.141355 -4.41807e-21)
(0.971605 -0.000567226 4.33982e-21)
(0.0293854 0.00654145 -3.22471e-22)
(0.457304 -0.610948 3.43568e-20)
(0.955519 0.214164 -1.31384e-21)
(0.780385 0.134183 3.93394e-23)
(0.89518 -0.516179 -3.40937e-20)
(0.503363 0.0929558 2.87015e-22)
(1.03631 0.154719 -1.10795e-20)
(1.24046 0.172445 -1.21917e-20)
(1.08213 -0.202496 -7.72118e-21)
(0.532609 -0.0154076 -6.34477e-20)
(0.0305289 0.00650399 -2.0244e-21)
(0.961318 0.177511 -2.63135e-22)
(1.08522 0.212287 1.29952e-20)
(1.28483 -0.0565865 -1.02434e-21)
(0.909072 -0.113244 7.94262e-21)
(1.0592 0.131483 1.47475e-20)
(0.0274575 0.00629967 3.17079e-22)
(0.807601 0.153018 -5.34239e-21)
(0.130345 -0.298826 -1.71656e-20)
(0.943578 -0.107432 -7.99855e-21)
(1.12493 0.204965 2.3486e-20)
(0.915989 0.00959796 3.33915e-20)
(0.728676 -0.273752 -6.69141e-21)
(1.29408 0.169937 -4.98022e-21)
(1.41713 0.0768779 1.50767e-22)
(0.630743 -0.191806 2.89138e-20)
(0.0274835 0.00620333 4.67056e-22)
(0.88226 0.0849625 6.04311e-20)
(0.177864 0.00977028 -3.60266e-20)
(0.949985 0.205936 -9.41315e-21)
(0.0263921 0.00618475 -3.26731e-21)
(0.9106 0.180136 -2.33523e-21)
(1.01631 0.23477 -6.40117e-22)
(0.779914 0.0481385 1.39245e-20)
(1.07252 0.162396 3.94221e-21)
(1.41901 -0.348253 -1.28335e-21)
(0.504704 -0.576118 3.80773e-21)
(0.9621 0.16965 -8.42228e-21)
(1.21233 0.102849 8.73944e-22)
(0.937307 -0.506567 -3.47503e-21)
(0.93811 -0.0505284 -5.75678e-21)
(1.04005 0.14807 -3.43967e-20)
(0.0354156 0.00787819 -5.77808e-22)
(0.756403 -0.0264368 2.42016e-20)
(0.894526 -0.0180539 -1.16548e-21)
(1.08043 0.225064 2.88898e-20)
(1.10482 0.209536 -9.78506e-21)
(1.03409 0.184538 6.50662e-20)
(0.698306 -0.410376 -1.7084e-20)
(0.0349857 0.00755065 -1.5218e-21)
(1.11641 0.211704 -6.90158e-21)
(0.760504 0.157727 4.17565e-21)
(0.921389 0.160927 2.27938e-20)
(0.954538 -0.0314263 4.18663e-21)
(0.800322 -0.00500548 -2.25948e-20)
(0.0352373 0.00775944 -9.58897e-22)
(0.227271 -0.318345 8.30292e-21)
(0.787146 -0.25057 6.18667e-21)
(0.812979 0.00082603 -2.05156e-21)
(0.0216732 0.00452287 3.61221e-21)
(0.995276 0.200646 4.42129e-21)
(1.4423 0.0365288 -1.79746e-21)
(0.949157 0.171086 -1.81381e-21)
(0.900414 -0.133757 6.04529e-21)
(0.0349732 0.00747238 6.15256e-22)
(0.947561 -0.0266278 2.25829e-21)
(0.966964 0.177993 5.41015e-20)
(0.0476615 -0.121613 1.18343e-20)
(0.815113 -0.0485742 -1.4087e-20)
(0.930729 -0.0305614 -4.77101e-22)
(0.539823 -0.219698 1.97303e-20)
(0.434217 0.255914 5.56053e-21)
(0.0362408 0.00783131 -1.25622e-22)
(0.945957 0.000624342 1.03804e-22)
(0.624027 -0.35085 1.61698e-20)
(0.766746 -0.262977 5.43199e-21)
(0.588368 -0.0219939 -2.33582e-21)
(0.990465 0.242978 -3.16575e-20)
(1.04511 -0.280038 1.08715e-21)
(0.915188 0.112103 6.75349e-21)
(0.417154 0.0933052 6.90565e-21)
(0.967167 0.161212 4.01026e-20)
(0.605051 -0.00857663 -1.97644e-20)
(0.703036 -0.284659 1.16526e-20)
(1.09055 0.222823 1.28377e-20)
(0.98416 0.214531 -1.27079e-20)
(0.744386 -0.274912 1.7362e-21)
(0.73354 -0.689138 2.78411e-20)
(1.43907 -0.297902 -3.84016e-21)
(0.694235 -0.115737 -1.54108e-20)
(1.30489 -0.0144519 -5.99936e-21)
(1.03032 0.257117 -1.35215e-21)
(0.903253 -0.0070537 -1.65812e-21)
(0.166101 -0.373651 -9.09565e-21)
(0.0448021 0.00874818 -6.26111e-22)
(0.931469 -0.019448 4.82123e-21)
(0.855714 0.0837808 1.04917e-20)
(1.07029 0.13514 5.26012e-21)
(1.34137 -0.00428517 2.31408e-21)
(0.882836 0.0980939 2.69805e-20)
(0.372281 -0.000285192 -1.7221e-21)
(1.29426 -0.0277214 1.05015e-21)
(1.11131 0.132309 2.35955e-20)
(-0.000101418 -0.00662348 1.24913e-20)
(1.11985 0.214951 9.1029e-21)
(1.11006 0.214754 3.19986e-20)
(0.0399067 0.0077973 1.56619e-21)
(1.06519 -0.460708 -4.71026e-21)
(0.948098 0.104059 1.34022e-20)
(0.989191 -0.0891074 7.11771e-21)
(0.0471851 0.00838777 1.24461e-21)
(0.67601 -0.294008 -7.32207e-21)
(1.07448 0.130837 -4.52558e-21)
(1.21095 0.111813 -1.35693e-20)
(0.507457 -0.602982 1.96376e-20)
(0.0657626 -0.202123 -1.47279e-20)
(0.301189 0.0833513 9.71455e-21)
(1.30852 -0.0696776 -6.96381e-22)
(0.987819 0.209796 1.84404e-20)
(0.347156 0.00349577 -4.27281e-21)
(1.22289 0.118986 5.5351e-21)
(1.0102 0.111352 5.49231e-20)
(0.0543628 0.00894175 2.74039e-21)
(0.959804 0.229716 -2.3361e-20)
(0.54844 0.117243 3.34734e-21)
(1.47572 -0.0388227 4.18867e-21)
(0.979653 -0.146869 -3.36862e-21)
(0.414284 -0.151336 -2.30387e-21)
(0.954418 0.199554 5.47216e-21)
(0.842048 0.315042 -2.74199e-20)
(0.190261 0.0423697 1.82777e-21)
(1.09359 0.212354 -8.74559e-21)
(1.32063 0.119309 -1.40434e-20)
(0.0632428 0.0053227 -5.70131e-21)
(0.598943 0.0775391 3.39415e-20)
(0.945981 -0.0237719 2.93227e-21)
(0.0656171 -0.166657 2.26826e-20)
(0.414147 0.0902448 -5.44355e-22)
(0.685694 0.137482 -3.47467e-21)
(0.212165 -0.365012 2.96766e-21)
(1.00745 0.170411 -1.426e-21)
(1.19193 0.204815 -7.48032e-21)
(0.188536 -0.372008 1.9793e-20)
(0.973206 -0.140518 -2.11263e-21)
(1.00369 0.15775 -7.92772e-21)
(1.43947 0.00110379 -1.05613e-21)
(0.915953 -0.108041 -7.50955e-21)
(0.177929 -0.0944069 5.56792e-22)
(1.00708 0.191784 1.79228e-22)
(0.493097 0.10578 1.99139e-21)
(0.858315 0.321289 -4.3098e-20)
(0.719501 -0.286681 -2.79809e-20)
(1.32268 0.156649 1.5975e-21)
(0.296613 -0.41577 8.70754e-21)
(0.758811 0.332715 -7.65981e-21)
(0.967197 0.170907 -3.21469e-21)
(1.48559 -0.10688 1.06122e-20)
(1.28143 0.0220933 5.41143e-21)
(1.05442 0.119696 -6.07915e-22)
(0.513128 -0.151647 2.18291e-20)
(0.67156 0.20524 2.29943e-21)
(0.625097 -0.279745 1.45203e-20)
(0.598568 0.00204488 1.09595e-20)
(0.931899 0.164818 -2.23378e-20)
(0.65268 -0.0770654 4.37091e-20)
(1.47898 -0.181317 7.89601e-21)
(0.69286 -0.297201 2.42773e-21)
(0.848333 0.217336 -3.68032e-20)
(1.13007 0.212795 -3.50233e-21)
(1.31434 0.000513124 -3.68771e-21)
(0.599878 -0.0581516 -6.05791e-21)
(0.840125 0.324835 -1.19413e-20)
(0.446351 -0.0205236 -5.78742e-20)
(1.12153 0.215094 1.5834e-20)
(0.626769 0.188988 1.30004e-20)
(1.36309 -0.177233 -3.58893e-21)
(0.132973 -0.257874 -1.92394e-20)
(1.09634 -0.231955 2.31872e-21)
(0.981811 0.178746 -1.74387e-20)
(0.959227 0.146333 -2.35582e-21)
(1.00808 0.183069 -1.14125e-20)
(0.596257 -0.0144271 1.10152e-20)
(0.646363 -0.302477 6.70242e-21)
(0.948824 0.0971085 -3.47076e-20)
(1.05319 -0.531022 -1.70241e-20)
(1.04201 0.151221 -9.89198e-21)
(0.664101 -0.306848 -7.47028e-21)
(0.795808 -0.0455419 -1.00388e-20)
(1.00915 0.174712 5.75904e-21)
(0.986795 0.209365 -3.06661e-20)
(1.01034 0.166928 1.83321e-20)
(0.93157 -0.0113705 1.84435e-22)
(0.448905 -0.48168 -2.48006e-20)
(0.0413042 0.00933721 6.30068e-23)
(0.940927 0.182441 -2.9507e-21)
(1.28761 0.0375352 -6.661e-21)
(1.14351 0.204031 -3.19848e-20)
(0.932299 0.261518 -8.38975e-21)
(1.04171 0.125889 -7.71611e-21)
(0.941281 0.107342 4.28225e-20)
(0.922 0.287128 1.63961e-20)
(1.03418 0.211028 -1.60773e-20)
(1.07678 0.198777 1.89651e-21)
(0.664033 -0.0133621 8.7198e-21)
(0.426543 -0.00681572 -1.94058e-20)
(0.969261 0.100253 2.93746e-20)
(0.991611 -0.0584246 -4.53829e-22)
(1.00616 0.178554 4.06535e-20)
(0.788786 0.160627 1.06821e-20)
(0.874881 -0.0584243 4.60606e-21)
(0.268715 -0.473792 -2.70775e-20)
(0.901418 -0.0399618 -2.89887e-21)
(0.864983 0.0627795 -1.09369e-20)
(0.770235 -0.0346196 1.49043e-21)
(1.18982 -0.242727 -3.66612e-21)
(0.937185 -0.0246064 -2.9494e-23)
(1.13435 -0.240465 -8.24964e-22)
(0.937823 0.194998 -6.7684e-21)
(0.986348 -0.0738975 1.79586e-21)
(0.917351 0.177714 -1.87757e-21)
(0.975699 0.127777 -2.56639e-20)
(0.986661 -0.0763916 3.23393e-21)
(0.307161 0.0683734 1.47677e-20)
(0.831284 0.206097 -3.06283e-20)
(1.04655 0.122655 4.81525e-20)
(1.1597 0.204719 -5.38863e-21)
(0.298741 0.0662542 4.51345e-21)
(0.816148 0.19248 -4.8117e-20)
(0.757078 -0.00816824 -2.18797e-20)
(0.0297176 0.00619601 5.6569e-22)
(0.49039 0.108992 -3.93455e-22)
(1.15742 0.201437 1.74523e-20)
(1.11441 -0.386981 -2.05217e-20)
(0.0868896 -0.205862 1.78148e-21)
(1.04176 0.132083 3.60219e-20)
(0.867623 0.0506779 -4.59165e-20)
(0.510928 0.112246 1.32358e-21)
(0.350909 -0.0972344 -6.51935e-21)
(0.438881 0.0959629 -4.31959e-21)
(1.37955 0.115903 1.71399e-21)
(0.453499 -0.181122 -3.70173e-20)
(1.06137 0.133944 1.60881e-21)
(0.762131 -0.0362796 2.76343e-21)
(0.936366 0.169282 5.89285e-20)
(0.599935 -0.0764334 -1.61792e-20)
(0.86778 -0.1841 -1.06033e-21)
(0.873395 0.039189 -6.46529e-20)
(0.996546 0.132135 -4.57061e-20)
(0.795195 -0.00246825 1.21119e-20)
(0.930904 0.114729 -8.25111e-20)
(0.680004 0.00223876 -1.13438e-20)
(1.01405 0.263978 -1.43621e-20)
(1.02832 0.154985 1.80554e-20)
(0.727798 -0.519831 -6.23929e-21)
(0.957009 0.172331 2.25765e-20)
(1.08402 0.225348 3.36992e-20)
(0.864814 -0.192435 -2.05027e-20)
(0.767717 0.132826 -5.1075e-20)
(1.04947 0.128343 -3.10952e-20)
(0.343175 0.0788455 3.36738e-21)
(0.528774 -0.208776 -1.75188e-20)
(1.20012 -0.30842 -4.15703e-21)
(0.470596 0.132815 2.46529e-20)
(1.17436 0.208163 -3.32195e-21)
(0.933136 0.119312 -6.76984e-21)
(0.946722 -0.0540663 -4.04028e-21)
(1.19706 0.194728 -4.83538e-21)
(1.28675 -0.369571 -1.50866e-20)
(0.944348 0.00071815 -1.13784e-20)
(0.954807 0.161228 -1.57406e-21)
(0.887175 -0.0685112 -5.32799e-22)
(1.01573 0.16046 -7.59769e-21)
(1.06766 0.119958 -3.67902e-20)
(1.00497 0.187203 5.7027e-21)
(0.886445 -0.0556181 2.02224e-21)
(0.397672 0.208372 -1.02281e-20)
(1.45272 -0.253135 1.47958e-20)
(1.00345 0.205835 1.59283e-20)
(0.611175 -0.0576383 -6.04225e-21)
(0.852918 0.181053 -1.01603e-20)
(1.08086 0.192419 1.20879e-20)
(0.965541 -0.0396341 -2.54689e-21)
(1.07175 0.187311 7.47347e-21)
(0.282857 0.0608836 5.68693e-22)
(0.819039 -0.00891898 3.84555e-21)
(0.204928 -0.224658 3.75956e-21)
(1.08312 0.159457 1.74738e-20)
(0.432192 -0.167181 -2.54073e-20)
(1.03109 0.158019 9.12624e-23)
(0.477118 -0.19301 -2.79398e-20)
(0.741303 0.16037 1.50713e-20)
(0.30107 0.00123972 9.2377e-21)
(0.804068 -0.105621 1.10452e-20)
(0.17413 -0.0738974 -3.421e-20)
(1.24119 -0.115812 -2.88508e-22)
(0.499949 0.195151 1.41064e-20)
(0.0259387 -0.13177 -2.82101e-20)
(0.502505 -0.202383 1.72328e-20)
(0.995887 0.110808 5.9421e-20)
(1.39336 -0.0236042 -1.4565e-22)
(0.799849 0.00272969 5.74125e-20)
(0.0382553 -0.10402 1.96073e-20)
(1.00409 0.196272 4.26626e-20)
(1.0346 0.236277 7.35254e-21)
(0.837424 0.178792 -4.54999e-21)
(1.01129 0.0980483 6.45559e-21)
(1.03863 0.250945 9.9401e-21)
(0.559212 0.030992 -2.74683e-20)
(0.930969 0.000254723 2.57203e-21)
(0.231656 -0.197709 2.73642e-20)
(0.6921 -0.158115 2.28e-20)
(1.04169 0.138163 2.25472e-20)
(0.933776 0.110729 6.97843e-20)
(1.2541 -0.00122278 -4.71424e-21)
(0.998887 0.112401 -5.41812e-20)
(1.00801 0.263936 -9.38413e-21)
(0.584673 0.113116 7.64366e-23)
(0.828298 -0.0116632 -1.39833e-20)
(0.191897 0.0286472 -8.18254e-21)
(1.11434 0.163523 -5.1036e-20)
(1.10195 0.162554 -6.91975e-22)
(0.976341 -0.116397 1.12286e-21)
(0.341463 -0.244285 9.96329e-21)
(0.459208 0.0928356 9.31073e-23)
(0.632876 -0.315495 -3.63806e-21)
(0.476624 0.110113 -1.177e-20)
(0.213236 -0.173008 -2.0973e-20)
(0.594837 -0.499821 1.34411e-22)
(0.997538 -0.163831 -3.51519e-21)
(0.974872 0.198184 -7.31699e-21)
(0.292523 0.0629978 2.50978e-21)
(0.296718 0.0607682 2.35904e-23)
(0.951913 0.294168 -3.70284e-20)
(0.567012 0.123259 -4.80615e-21)
(1.1734 0.193373 2.04674e-20)
(0.984178 0.280329 -1.96386e-20)
(1.33628 0.111235 5.69704e-22)
(0.819625 -0.0186759 -5.23163e-21)
(0.199989 -0.00206086 -8.65072e-21)
(1.11459 0.130364 -3.31668e-20)
(0.710987 -0.117847 7.21288e-21)
(0.656238 0.166645 6.66912e-22)
(0.194224 -0.152161 1.02619e-20)
(0.180989 -0.130966 1.00676e-20)
(1.2025 0.101722 -7.67286e-21)
(1.05441 -0.288228 -5.2883e-22)
(0.969371 0.288302 2.49895e-20)
(1.12208 -0.525784 -7.29777e-21)
(1.23998 0.186144 -1.79954e-20)
(1.03591 0.21956 5.00848e-20)
(0.659952 -0.129581 -2.83388e-20)
(1.46404 -0.0128375 2.536e-21)
(0.952136 0.296327 2.9406e-20)
(0.72426 0.154931 9.69256e-22)
(0.502596 0.284575 1.20395e-20)
(0.0134051 0.0140587 2.60091e-20)
(0.941389 -0.125429 1.13757e-20)
(0.943934 0.195316 -4.76101e-21)
(0.970861 -0.0811184 4.32269e-21)
(0.975631 -0.112503 2.26265e-21)
(0.96878 -0.0768849 6.05152e-21)
(1.1746 -0.210418 3.32727e-21)
(0.364198 0.0815256 2.08202e-21)
(1.08856 -0.216681 -1.2297e-20)
(0.961892 0.221968 4.39493e-20)
(0.878257 -0.338372 1.06135e-20)
(0.871958 -0.0511536 7.32158e-21)
(0.641156 -0.0026593 -1.55067e-22)
(0.884983 0.282401 -7.02025e-21)
(0.896751 0.0955041 8.85636e-21)
(0.614547 -0.309621 1.61668e-20)
(0.0581759 -0.104358 2.32707e-20)
(0.932405 0.304381 -1.58172e-20)
(0.451378 -0.500881 -7.75312e-21)
(0.996439 0.191008 -3.77444e-20)
(0.0845916 -0.229333 -8.85075e-21)
(0.0999182 0.0226993 -3.98823e-21)
(1.10644 0.218057 -1.27804e-20)
(0.996954 0.272105 -6.34678e-22)
(0.947771 0.119194 -4.54413e-20)
(0.850986 0.0254189 -5.4271e-20)
(0.622338 0.152311 -2.10969e-22)
(0.49093 0.142197 2.66513e-20)
(1.21754 0.103522 -1.30419e-20)
(0.93891 -0.0183963 -1.65064e-21)
(1.16893 -0.315525 1.97427e-20)
(0.975274 0.132114 1.64197e-20)
(0.958991 0.193826 -2.00007e-20)
(1.01715 0.249153 -5.45265e-21)
(1.07702 0.133384 1.25158e-20)
(1.22979 0.181505 1.92262e-20)
(0.554089 -0.378175 -9.50587e-21)
(0.601759 0.130295 3.59791e-21)
(0.174285 -0.0536224 -3.36154e-21)
(1.4093 0.0130157 2.38139e-22)
(0.426031 -0.451124 -6.66048e-21)
(1.21599 0.112713 -3.9065e-21)
(0.591804 0.141314 -1.20286e-20)
(0.394147 0.00284311 -5.20496e-21)
(0.913179 0.217273 -2.95204e-21)
(1.04841 0.112138 -2.1366e-21)
(0.584197 0.134173 -1.67283e-20)
(1.11352 0.215102 -1.15251e-20)
(1.02963 0.185044 -3.06203e-20)
(0.799343 0.0313712 6.59895e-20)
(0.607005 0.00526816 3.34025e-22)
(0.929155 0.0973218 -2.67363e-20)
(0.964348 -0.596394 1.24532e-20)
(0.931929 0.106302 2.51834e-21)
(0.820156 0.0798947 -4.75527e-21)
(0.562537 0.131297 1.22701e-20)
(0.652707 0.132992 -4.90439e-21)
(1.04596 0.131228 6.66775e-22)
(0.334272 0.0738511 3.95288e-21)
(1.06017 0.128321 -6.39908e-20)
(1.15462 0.211643 -2.11272e-21)
(0.751925 -0.00777242 2.00855e-20)
(0.521865 -0.44289 -1.26596e-20)
(0.580896 -0.314203 6.88342e-21)
(1.05211 0.217437 3.63548e-20)
(1.26389 0.133115 1.12665e-22)
(1.16898 -0.250801 -6.77237e-21)
(0.460836 0.102623 -1.00095e-20)
(0.958073 0.197165 -5.52695e-21)
(0.876197 -0.0489585 -2.34862e-21)
(0.931686 -4.01449e-05 3.9414e-20)
(1.13708 0.159201 1.89653e-20)
(1.02449 0.142934 7.5043e-23)
(0.845069 -0.222611 5.56905e-21)
(0.100078 0.0232807 4.86417e-21)
(0.95147 -0.0320421 7.32275e-22)
(0.976738 0.176913 -9.78111e-21)
(0.536828 0.12275 1.71799e-21)
(0.631035 -0.366964 -1.26089e-21)
(0.962285 0.163831 -4.4799e-20)
(0.214954 -0.00169359 -1.06914e-22)
(0.718835 0.126903 7.88741e-22)
(1.42351 -0.00504159 1.19417e-21)
(1.15037 0.158501 -1.72541e-20)
(0.108926 -0.000767797 -8.90412e-21)
(0.983573 0.11677 -2.73676e-21)
(1.1244 0.158872 -1.53085e-21)
(0.707388 -0.257992 1.97244e-20)
(0.209862 -0.00249825 -1.2116e-20)
(0.876883 -0.00979826 1.57893e-21)
(1.05602 0.215774 7.87724e-22)
(1.08081 0.223224 -1.16809e-20)
(1.14609 0.117399 1.89773e-20)
(1.03875 -0.304869 6.15739e-21)
(1.1076 0.208175 -2.37042e-20)
(0.767262 -0.0131728 1.16956e-20)
(1.04188 0.144738 -1.34109e-20)
(1.18154 0.205183 1.62588e-21)
(0.979088 0.175838 4.88152e-23)
(0.718652 0.175431 1.31666e-20)
(0.138495 0.00209131 -5.27377e-21)
(0.138763 0.0323824 4.82618e-21)
(1.12698 0.191402 -4.33349e-21)
(0.599675 -0.321782 -2.24524e-20)
(0.89327 0.105003 1.54315e-20)
(0.92684 -0.132442 3.3161e-21)
(0.717664 0.17125 1.10301e-20)
(1.2866 0.170914 7.05737e-21)
(0.963192 -0.00291115 -1.23857e-21)
(0.555722 0.102101 8.73465e-23)
(1.02796 0.217517 9.87649e-21)
(1.06145 0.118672 6.18429e-22)
(0.470082 0.169548 -1.11871e-21)
(0.379628 0.082615 -3.74899e-22)
(0.106706 -0.257161 -2.65519e-21)
(0.00366941 -0.00594177 1.61264e-20)
(0.822136 -0.00453161 -7.41194e-21)
(1.02973 0.212998 -1.99764e-21)
(0.766767 -0.23891 2.27375e-21)
(1.06456 0.133332 -2.32566e-20)
(0.975744 0.217784 9.70537e-21)
(0.979796 0.122163 1.87353e-20)
(0.2182 -0.365776 1.01022e-20)
(0.440667 0.121344 5.19659e-21)
(0.229705 -0.402279 -7.94393e-22)
(1.13387 0.213939 -8e-21)
(0.697479 0.149831 -6.24113e-21)
(0.971925 -0.286829 -5.83834e-21)
(0.778081 0.0995535 -2.7118e-20)
(0.00688193 -0.128587 -1.33552e-20)
(1.40658 -0.0615175 7.84961e-21)
(1.01973 0.213929 4.53037e-21)
(0.829022 -0.0889208 2.38105e-21)
(1.01185 0.21005 7.6875e-20)
(1.19147 0.0457657 -5.56763e-21)
(1.12744 0.213241 8.38845e-21)
(0.804558 0.153074 2.40247e-21)
(0.929365 0.18338 -3.70957e-21)
(0.783967 0.287263 -1.9266e-20)
(1.09325 0.221661 2.00848e-20)
(0.908118 -0.248858 3.62371e-22)
(1.12777 0.213719 7.18222e-21)
(0.296759 0.0668157 -1.37531e-22)
(0.93273 -0.227557 1.26598e-20)
(0.408128 0.0924129 4.93269e-21)
(0.378697 0.0835256 5.10038e-21)
(1.04748 0.233418 1.56746e-20)
(0.871122 -0.0560479 -7.08853e-21)
(0.717817 0.289603 -2.00992e-20)
(1.17571 -0.192327 2.39421e-21)
(0.812804 0.174028 5.41303e-21)
(0.290112 0.0673573 -1.45345e-20)
(1.07275 0.226171 1.70704e-20)
(0.878936 -0.0559252 -1.88982e-21)
(0.321824 0.0768135 4.19146e-21)
(1.06357 0.212537 3.9145e-21)
(0.545534 -0.316428 -1.11546e-20)
(1.10789 0.137744 1.56269e-20)
(0.60353 0.12138 -2.41022e-21)
(0.421199 0.0929148 -7.20056e-21)
(0.941225 -0.62618 8.00142e-21)
(1.09082 0.212838 -6.11156e-21)
(1.04785 -0.268868 5.99568e-21)
(1.0951 0.137067 2.27586e-20)
(0.930313 -0.14112 2.17282e-21)
(0.170314 0.0401514 -2.19226e-20)
(0.467076 0.101786 -5.48136e-21)
(0.176319 -0.034335 1.43465e-20)
(0.000530365 -0.00724497 2.09471e-20)
(0.350502 0.0766466 -9.00573e-21)
(0.972405 0.209831 -1.36947e-20)
(1.11129 0.204089 8.59008e-21)
(0.839262 0.196396 7.79043e-21)
(0.509236 -0.315972 1.46554e-20)
(1.08083 0.10807 2.47573e-21)
(0.957001 0.196823 -6.36936e-21)
(0.00860045 -0.0288734 2.65884e-20)
(0.371881 0.0949357 -1.53053e-21)
(1.18204 0.15026 8.40735e-21)
(0.000103048 -0.0072586 -2.73217e-20)
(0.724243 0.149962 -1.90176e-21)
(0.969284 -0.526053 5.83153e-21)
(0.617577 -0.0486071 -3.9409e-21)
(0.254302 -0.220428 -1.11501e-20)
(1.42449 -0.142587 4.78949e-21)
(0.982376 0.218031 -1.94718e-22)
(0.564694 -0.325679 -2.71392e-21)
(3.55854e-05 -0.00761022 -6.94935e-21)
(0.609128 0.131128 -3.59724e-21)
(0.527202 0.107368 4.9656e-21)
(1.03816 0.172661 5.63303e-20)
(1.16068 0.152384 -8.56176e-21)
(0.890273 -0.330025 7.28532e-21)
(0.66603 0.152059 3.28344e-22)
(0.870998 -0.199243 6.14907e-21)
(0.700317 0.148335 -4.17465e-21)
(1.06407 0.194955 8.4555e-22)
(0.472329 -0.311881 1.8606e-20)
(1.06854 0.190055 2.02925e-20)
(0.524421 0.113522 7.12926e-22)
(1.08239 0.185549 4.13374e-20)
(0.930987 -0.209319 1.65754e-20)
(0.980235 -0.117613 -2.85681e-21)
(0.609277 0.111588 -4.87424e-22)
(0.642624 0.150282 1.51995e-20)
(0.527959 -0.326958 -1.6001e-20)
(0.695367 0.152772 3.7963e-21)
(1.14673 0.202926 -3.56616e-21)
(0.959032 -0.00204853 -1.75912e-21)
(1.13237 -0.229848 1.6003e-21)
(0.571036 0.122692 6.81647e-21)
(1.0982 0.220017 3.3907e-21)
(0.924766 -0.143587 -9.17123e-21)
(0.47241 0.103261 8.09729e-22)
(1.06571 0.18753 -4.13518e-21)
(0.962628 0.18624 2.20361e-22)
(0.490431 -0.324721 -1.34889e-20)
(0.644333 0.139469 5.47998e-21)
(0.95473 -0.000466758 5.84111e-20)
(0.473965 0.104086 -4.07797e-21)
(0.918646 0.0847569 -5.36104e-20)
(0.821423 -0.16913 -8.93585e-21)
(0.511324 -0.126846 1.03011e-20)
(0.274386 -0.430396 -9.92622e-21)
(0.743978 -0.553826 8.3387e-21)
(0.452551 -0.318962 -1.28292e-20)
(1.08142 0.225719 -9.3037e-21)
(0.059022 -0.206934 3.52559e-20)
(0.00313504 -0.0881034 -5.36269e-23)
(0.996239 -0.08014 -2.76566e-21)
(0.0282236 -3.60711e-06 3.5892e-21)
(0.0296202 -1.76458e-05 2.50605e-21)
(0.0237601 5.38047e-05 -4.77314e-21)
(0.0293746 -0.000145661 -1.10836e-21)
(0.0351773 -0.000836109 8.61333e-21)
(0.0265924 0.000281509 1.51994e-21)
(0.0286653 1.93084e-05 -6.2655e-21)
(0.0313186 -0.000109995 6.40217e-22)
(0.0296714 -9.00644e-05 -2.39346e-21)
(0.0292204 -0.000257973 1.17236e-21)
(0.0304385 -6.35545e-06 1.35182e-20)
(0.0305853 -0.00019877 -4.48119e-23)
(0.0304973 -0.000173878 -5.82606e-21)
(0.0257906 -1.8527e-05 -1.16392e-22)
(0.0217433 -0.000407147 -4.9383e-21)
(0.0274875 0.000167199 -2.15007e-21)
(0.0351927 -3.53696e-05 2.11107e-21)
(0.0273871 -0.000379911 1.61214e-22)
(0.0300557 -0.000108991 1.76251e-21)
(0.0345609 0.000535936 -1.56281e-21)
(0.0291315 0.000167089 5.26499e-21)
(0.029196 2.19913e-06 5.85245e-21)
(0.0298445 0.000418596 -8.68969e-24)
(0.0262484 -0.0001037 -2.05144e-21)
(0.031408 7.57118e-05 5.72846e-22)
(0.0294061 1.02323e-05 -2.57779e-21)
(0.0264071 0.000213293 4.11558e-22)
(0.030319 0.000145904 -1.32726e-21)
(0.0306965 -0.000172596 2.69203e-21)
(0.0311463 7.22493e-05 -2.6994e-22)
(0.0260452 -1.45554e-05 -8.86097e-23)
(0.0277663 0.000323579 -1.09138e-22)
(0.0303972 -1.447e-05 -7.3086e-22)
(0.029769 0.000704846 6.05072e-21)
(0.0276395 -7.38282e-05 -1.58226e-20)
(0.0370831 -7.29777e-05 -3.14141e-22)
(0.0282045 0.000229445 6.91876e-23)
(0.0267872 0.00028997 -1.71817e-21)
(0.0284648 6.27e-05 2.49106e-23)
(0.0291634 6.99713e-05 -7.22917e-22)
(0.0303306 2.87263e-05 -9.15067e-22)
(0.0297687 0.000209774 -6.95726e-21)
(0.0293186 -0.000269661 7.89067e-21)
(0.0315227 -0.000177156 -2.25619e-21)
(0.0290504 -9.85213e-05 -4.97246e-21)
(0.0264002 -7.97065e-05 4.968e-21)
(0.0329228 -0.000884822 4.26424e-21)
(0.0276555 0.000187814 -7.10151e-21)
(0.0289714 -0.000366428 -4.91732e-22)
(0.0285624 0.000141682 -5.0466e-21)
(0.0447487 -0.00369013 -1.71802e-20)
(0.0269259 -0.000281935 -9.10745e-21)
(0.0241377 -1.30927e-05 -2.37673e-21)
(0.0279754 4.25279e-05 -4.35701e-22)
(0.029035 0.000532782 -2.93601e-21)
(0.0344975 4.22426e-05 -1.66597e-21)
(0.023289 -0.000108238 -1.10759e-20)
(0.0313533 -0.00040215 -2.86857e-20)
(0.0282767 1.94587e-05 -2.15528e-21)
(0.029576 -0.00046339 -1.31037e-20)
(0.028563 -5.94555e-05 -4.30446e-21)
(0.0291403 9.66573e-05 3.42676e-21)
(0.0285665 -0.000206852 -1.37231e-23)
(0.0271622 -0.000180191 1.85236e-21)
(0.0298325 0.000309853 -3.66432e-21)
(0.0293755 -4.70736e-05 9.4436e-22)
(0.0304321 6.80735e-05 -7.44528e-21)
(0.0281962 -3.41969e-05 -5.54407e-21)
(0.0285515 0.000200798 -2.87436e-21)
(0.0296553 -9.18421e-05 -5.16009e-21)
(0.0283855 -0.000151795 2.97445e-21)
(0.0295634 -0.000218834 -7.13416e-21)
(0.0309476 -0.000276124 1.64648e-21)
(0.0293346 -6.62115e-05 -8.51105e-21)
(0.0283006 2.95177e-05 6.52684e-24)
(0.0279827 -8.4461e-05 1.65819e-21)
(0.0275145 -1.56663e-06 1.07971e-20)
(0.0278137 -8.54912e-05 1.01132e-20)
(0.0320506 -0.000155035 -7.22351e-22)
(0.0288054 2.8705e-06 -1.24769e-20)
(0.0376334 0.000358521 -2.66169e-21)
(0.0288699 -9.56317e-05 8.82874e-22)
(0.0291573 8.29521e-05 -2.977e-21)
(0.041028 0.000518298 2.20119e-21)
(0.0382136 -0.000255742 -2.9106e-21)
(0.0338747 0.000181494 7.44444e-22)
(0.0318387 -0.000242001 -5.236e-21)
(0.0350289 0.000183565 5.38495e-21)
(0.03358 -0.00027784 9.23569e-21)
(0.0300452 0.00020237 -2.23555e-21)
(0.0340342 0.000349998 -1.78249e-20)
(0.0299037 -0.000118369 8.40047e-22)
(0.0230724 0.000489475 -4.73443e-22)
(0.0365258 -0.000326485 3.92837e-21)
(0.0290818 0.000232447 -9.77028e-21)
(0.027755 8.39001e-05 4.46697e-21)
(0.0253528 3.00019e-05 -1.26426e-20)
(0.0299757 -0.000186903 2.75452e-21)
(0.0286178 -0.000217148 1.72525e-23)
(0.030153 5.5513e-05 -9.33758e-21)
(0.0292175 -0.000149923 5.13441e-21)
(0.0297509 -4.09145e-05 4.9502e-21)
(0.029049 -0.000392588 1.21783e-20)
(0.030431 3.46674e-06 -1.9863e-21)
(0.0250115 -5.12847e-05 3.62383e-21)
(0.0309445 -0.000119938 3.81241e-21)
(0.0277733 0.000247413 3.34816e-21)
(0.0266083 -5.62291e-06 3.44649e-23)
(0.0297043 0.000183694 -5.16519e-22)
(0.0295363 0.000914151 -6.79862e-21)
(0.0255142 5.02464e-05 1.96556e-21)
(0.0314617 0.000180747 9.91048e-21)
(0.0310162 -2.0993e-05 -1.21091e-21)
(0.0301084 -0.00022849 -2.58342e-23)
(0.0272617 0.000238726 4.82244e-22)
(0.0280175 0.000263807 2.45647e-21)
(0.0322795 -0.000523381 -1.26094e-20)
(0.0381848 2.70049e-05 9.14622e-21)
(0.0322084 8.26466e-05 -8.73576e-21)
(0.0262795 0.000140889 -8.06212e-21)
(0.0289106 2.27747e-05 -5.67792e-21)
(0.0298755 0.000123365 9.17388e-22)
(0.0304662 0.000188729 3.29528e-22)
(1.11456 0.185103 -7.81609e-21)
(1.0422 0.183278 2.57491e-20)
(0.910278 -0.137151 -7.47601e-21)
(0.518156 0.111669 1.37679e-21)
(0.970754 0.0970856 2.00225e-20)
(1.08506 0.187993 -3.32148e-20)
(1.05172 0.219344 4.28946e-21)
(1.06797 0.207175 -3.25127e-21)
(0.753675 0.322032 5.91629e-21)
(1.25494 0.177512 -2.86866e-21)
(0.319939 -0.454059 -2.42639e-20)
(1.10768 0.119911 -2.20323e-20)
(0.249752 -0.202017 -2.19299e-20)
(0.50232 0.108704 5.30855e-21)
(0.10645 -0.190153 -1.1765e-20)
(0.772551 -0.435591 9.21138e-21)
(0.226691 -0.0866732 6.52981e-21)
(0.986507 -0.18003 -8.73258e-21)
(1.20947 -0.244411 -1.03427e-20)
(0.979543 0.210621 1.06105e-20)
(1.14549 -0.244424 4.09404e-22)
(0.991259 -0.139582 2.98705e-21)
(1.36847 0.122029 -1.12672e-21)
(0.953231 -0.0326285 -4.29232e-22)
(1.46159 -0.0555353 -3.96561e-23)
(0.849747 -0.386528 -1.07052e-20)
(1.0099 0.223179 3.29482e-20)
(0.786181 -0.468167 1.71628e-20)
(1.0395 0.17997 2.08319e-22)
(0.180358 -0.0154559 -3.01145e-21)
(1.03151 0.226847 1.03081e-20)
(0.735803 -0.00186743 -1.87972e-20)
(1.12909 0.20101 1.014e-20)
(1.10002 0.188753 -4.02483e-20)
(0.332227 -0.532122 -2.57013e-20)
(1.19307 0.142236 1.20297e-20)
(0.204909 0.043234 -1.89026e-21)
(0.685787 0.0157917 9.61107e-21)
(0.958308 -0.00282529 -6.90063e-22)
(0.816183 -0.638758 9.1776e-21)
(0.987689 0.16787 -1.12717e-21)
(0.435294 -0.304218 1.19978e-21)
(1.12205 0.206128 -1.43204e-20)
(0.594347 -0.284518 -4.50833e-21)
(0.865132 -0.361226 3.03613e-21)
(1.24462 0.175146 1.66181e-21)
(1.16083 0.200341 1.27287e-20)
(0.76165 0.180493 8.892e-22)
(1.18639 -0.265732 -3.32519e-21)
(1.04483 0.216503 -5.50666e-21)
(1.23367 0.172001 9.25452e-22)
(0.927968 0.00146587 -2.20258e-20)
(0.939258 0.00363895 -3.98905e-20)
(1.21802 0.137181 1.21222e-20)
(0.0860727 0.0195625 2.76129e-21)
(0.89583 -0.00630782 1.72059e-20)
(0.393434 0.000971881 2.15073e-22)
(0.200843 0.0041466 -3.68401e-21)
(0.0800416 -0.290357 -1.98733e-20)
(1.09736 0.182852 -3.09927e-20)
(0.704563 0.165962 1.02233e-20)
(1.05069 0.192022 6.43739e-21)
(0.221739 -0.334028 -1.05542e-21)
(1.21256 0.185947 -1.85654e-21)
(1.39482 0.0869104 1.26394e-21)
(1.07533 0.127181 3.85932e-20)
(1.19568 -0.29332 -3.66106e-21)
(1.09037 0.20925 -4.59391e-21)
(0.229717 -0.178173 2.32822e-21)
(1.30166 0.13031 -2.48024e-24)
(0.670425 -0.065835 -3.66616e-20)
(0.559837 -0.00162077 1.58034e-20)
(1.0478 0.18912 -2.70584e-20)
(1.16264 0.200195 -6.09863e-21)
(0.73913 -0.030197 -1.68168e-20)
(1.12623 0.202217 2.21042e-21)
(1.01083 0.215943 1.38826e-20)
(0.541175 -0.538487 -2.54821e-20)
(0.214494 -0.455481 -3.03876e-20)
(0.285097 0.0533802 -6.31771e-23)
(0.165093 -0.384571 6.47245e-22)
(1.11788 0.132247 3.87623e-20)
(0.777799 0.294839 -3.36345e-21)
(0.98322 0.232016 9.1604e-21)
(1.04961 -0.354585 -6.36262e-22)
(1.19118 -0.221294 -7.09463e-24)
(1.03698 0.250442 1.44754e-20)
(1.11322 0.205659 -5.00513e-21)
(0.415243 -0.309195 3.63776e-20)
(0.959623 -0.285561 -1.04747e-21)
(1.1079 0.194584 1.26776e-20)
(1.10982 0.199455 -5.61198e-21)
(0.481364 -0.625269 -3.1791e-20)
(1.07219 0.222094 2.03551e-20)
(1.21078 -0.0649503 -5.42331e-21)
(1.06512 0.234837 6.87261e-21)
(1.15175 0.199102 -5.4526e-21)
(0.506915 0.237013 1.78722e-20)
(0.0630454 -0.247763 1.07547e-20)
(0.378342 -0.296788 -9.98449e-21)
(1.20567 -0.281622 8.39938e-22)
(0.977073 0.000222192 -1.95549e-21)
(0.978458 -0.000715571 1.9676e-20)
(0.905325 -0.0348696 1.45398e-21)
(1.10011 0.20956 1.01306e-20)
(1.00162 0.110651 -7.27261e-20)
(0.134437 0.0303203 1.34171e-20)
(1.05719 -0.233139 4.28986e-21)
(0.343381 -0.281037 -1.29903e-20)
(0.515268 -0.624584 2.8391e-20)
(1.12809 0.196433 -1.72671e-20)
(0.772305 -0.548152 -1.05382e-20)
(1.00614 0.237088 -2.19821e-20)
(1.06506 -0.411789 -1.18418e-20)
(1.06259 0.162734 1.47436e-21)
(1.28157 0.0928239 1.26082e-21)
(0.764488 -0.586071 9.24641e-22)
(1.23916 0.122641 -1.66959e-20)
(0.816273 -0.0402052 2.06675e-21)
(0.321778 0.0713543 -9.485e-21)
(0.948057 0.213502 -1.4963e-20)
(1.24371 -0.177496 7.28757e-21)
(0.808503 -0.460471 -8.48824e-21)
(0.127699 -0.0704767 5.02434e-21)
(1.13937 -0.466086 7.62719e-22)
(1.45067 0.00873029 -1.45342e-21)
(1.22117 0.168287 -3.76148e-21)
(1.42903 0.0526646 4.18452e-22)
(0.212152 -0.15681 1.86325e-20)
(1.14273 0.197137 1.17111e-21)
(0.564001 -0.606634 1.85967e-21)
(0.0300177 -0.10814 -1.09404e-20)
(1.06081 0.226905 4.10722e-20)
(0.786235 0.137881 5.00687e-20)
(0.310514 -0.262737 9.30933e-22)
(0.963075 -0.037991 -4.21624e-21)
(1.00877 0.0967912 4.60377e-20)
(0.188057 0.0415541 -1.90672e-21)
(1.26951 0.110455 -4.09375e-21)
(0.733247 0.00260713 2.52946e-20)
(1.03369 0.237479 -2.59603e-20)
(0.185425 -0.11479 -2.89177e-21)
(0.965407 0.274055 -2.2379e-20)
(0.543935 -0.41459 2.41646e-20)
(0.39934 -0.293203 -6.30965e-21)
(0.00616835 -0.0381169 -7.02098e-21)
(0.99511 0.218254 -1.3597e-20)
(1.13115 0.132058 -1.02646e-20)
(0.822768 0.269149 2.58971e-20)
(0.827549 -0.00897594 -8.34977e-22)
(0.561474 -0.0323995 -1.91114e-20)
(0.871224 0.319007 -2.39485e-20)
(0.862374 0.0818233 1.3604e-20)
(0.94214 0.204869 1.97659e-20)
(0.829921 0.287134 2.6835e-20)
(0.933515 -0.00972333 4.57138e-23)
(0.964082 -0.0763195 -2.52328e-21)
(0.818454 0.00103541 -2.06853e-20)
(0.986334 0.204572 9.91536e-21)
(0.100416 0.0346955 2.00098e-21)
(0.364208 -0.280056 1.93041e-20)
(0.577828 0.125925 -1.42624e-21)
(0.417306 -0.46458 -4.85253e-21)
(0.978945 0.203624 -4.60879e-21)
(0.819064 -0.607829 1.64483e-20)
(0.0812577 0.0240874 3.58859e-21)
(0.188979 0.00392637 1.20321e-20)
(1.20073 0.202286 1.13738e-20)
(0.865141 -0.377885 -9.21972e-21)
(0.838895 0.197345 5.15437e-20)
(0.0712189 0.0190231 -4.12244e-21)
(0.0211937 -0.0509827 -1.07555e-20)
(0.621434 -0.00649921 2.40317e-20)
(1.00188 0.208218 1.55522e-20)
(0.0666523 0.0168913 3.49839e-21)
(0.0688656 -0.109768 3.2206e-21)
(1.47831 -0.141173 -2.60275e-21)
(1.12389 0.17778 -2.07494e-21)
(0.196573 -0.135994 8.39112e-21)
(1.11716 0.186961 5.64873e-21)
(1.13936 0.203559 1.52138e-20)
(0.282763 0.061144 -6.57897e-21)
(1.12054 0.182263 1.91372e-20)
(0.0647848 0.015869 9.89703e-21)
(0.154382 0.000329678 4.97871e-22)
(0.424233 0.09453 1.09478e-20)
(0.280671 -0.241791 -6.34942e-21)
(1.46212 -0.211309 6.74154e-21)
(0.820653 0.190915 5.09296e-21)
(0.615921 0.143181 1.90107e-21)
(1.13395 0.194027 5.29821e-21)
(0.0612592 0.0152061 -9.15415e-21)
(1.11376 0.191708 -1.04015e-20)
(0.7226 -0.260175 -1.13728e-20)
(0.912432 -0.0291056 6.3116e-21)
(0.331205 -0.263092 -1.92082e-20)
(1.09127 0.221646 -2.50746e-20)
(1.21553 0.126836 -2.15895e-20)
(1.16626 0.196065 1.76962e-21)
(0.511073 0.111451 7.18788e-21)
(1.05818 0.149937 4.55482e-23)
(1.07373 0.216358 1.99653e-20)
(0.869357 0.323367 4.58328e-20)
(0.455941 -0.111228 1.08169e-20)
(1.00596 0.180795 -2.91173e-22)
(1.04395 0.232346 1.70607e-21)
(0.0017561 -0.0244872 -2.05523e-20)
(0.135811 -0.319685 9.49683e-21)
(0.589746 0.134847 -5.58915e-21)
(0.969836 0.215092 -1.14351e-20)
(0.745603 0.201704 1.97365e-20)
(0.782329 0.182932 -3.74366e-21)
(1.1275 0.214472 -3.08563e-21)
(0.958422 -0.0341218 4.09853e-21)
(0.961226 0.220464 -4.44024e-21)
(0.638123 0.105598 1.18945e-22)
(1.13075 0.202617 -1.8121e-20)
(0.616321 0.140938 -1.17819e-22)
(0.956735 0.20962 1.10336e-20)
(1.15561 -0.620997 -2.27409e-20)
(1.05063 0.213824 -1.53989e-20)
(0.95557 -0.00308165 -5.71474e-21)
(0.894378 0.206994 1.82095e-20)
(0.0523849 0.0124767 -6.91735e-21)
(0.349314 0.0777967 -7.90779e-21)
(0.977203 0.232793 -2.17543e-22)
(1.02157 0.209949 -1.64387e-20)
(0.651912 -0.0463969 2.26482e-21)
(1.04109 0.176077 -3.02266e-20)
(0.0508173 0.0122315 7.05725e-21)
(0.849705 -0.404437 1.79472e-20)
(0.701289 0.0369492 1.31104e-20)
(1.31688 0.0692375 -4.11141e-21)
(0.641423 0.146594 -1.6079e-20)
(0.617856 0.130854 3.83342e-21)
(1.03667 0.245695 1.38998e-20)
(1.05605 0.225946 3.2185e-21)
(0.949621 -0.0181395 -1.95796e-21)
(0.0475775 -0.1101 -3.67868e-20)
(0.0527769 0.0116734 7.2562e-22)
(1.23618 -0.0250872 -5.01796e-21)
(0.974008 0.200486 5.90501e-21)
(0.687957 0.0660273 -4.87245e-22)
(0.802186 0.192882 -1.35705e-20)
(1.0412 0.22572 -1.15958e-20)
(0.383431 0.0871257 4.41703e-21)
(1.06906 0.225631 -3.3185e-20)
(0.953167 0.230157 8.18902e-21)
(0.48607 -0.453179 1.46851e-20)
(0.0521217 0.0112835 -1.87027e-21)
(1.1639 0.184933 3.90799e-21)
(0.958442 0.100694 2.07267e-22)
(0.985445 0.22349 -2.61684e-21)
(0.588867 0.127516 -1.48349e-20)
(1.15309 0.200759 1.32257e-21)
(1.10273 0.190705 6.09739e-20)
(0.173923 0.0385577 9.11542e-22)
(0.337159 -0.00052866 -2.13063e-20)
(1.28553 -0.234189 -5.7792e-21)
(0.877547 0.0397098 2.54256e-20)
(0.744306 -0.0309376 1.10794e-20)
(0.952178 0.196531 1.03424e-20)
(0.648536 -0.039432 -4.67678e-21)
(1.17012 -0.201108 -4.09279e-21)
(1.16574 0.190743 1.54887e-21)
(1.4073 -0.2916 4.11044e-21)
(1.17474 0.175997 -1.53348e-21)
(1.20252 0.114913 1.53154e-20)
(1.33832 0.0284583 8.13862e-21)
(0.666574 -0.137537 -3.1024e-21)
(0.0479201 0.0110003 -3.14666e-21)
(0.692755 0.157795 1.19444e-20)
(0.000921808 -0.0182194 0)
(0.243856 0.0565052 -2.88029e-20)
(1.30756 0.162457 9.62336e-21)
(1.3587 -0.0425257 7.49691e-22)
(0.942625 -0.0558664 2.45603e-21)
(0.889553 0.299213 -2.59387e-20)
(0.047187 0.0106693 1.34009e-20)
(1.1398 0.213359 -5.73663e-22)
(0.94648 0.198406 -1.53583e-20)
(1.06071 0.210241 -1.16031e-20)
(1.10456 0.217583 2.93154e-22)
(1.21943 0.0657862 1.76258e-20)
(0.561833 -0.287304 -7.95797e-21)
(1.11418 -0.232148 2.90012e-21)
(0.857254 0.296462 9.33961e-21)
(1.17102 0.182033 -1.16656e-20)
(0.891798 -0.140489 -7.97439e-21)
(0.9653 0.207787 1.44808e-20)
(1.33081 -0.117514 1.78764e-22)
(0.392491 -0.257014 4.2283e-21)
(0.716169 -0.0395915 1.15963e-20)
(1.16989 0.209765 1.40947e-20)
(0.300507 -0.243552 -2.16742e-20)
(1.03052 0.219422 -8.19605e-21)
(0.87895 -0.353155 1.12678e-21)
(0.741015 0.167617 1.72182e-20)
(0.264748 -0.189233 2.12176e-20)
(0.358766 0.0818075 1.76679e-21)
(0.579744 0.12589 1.0589e-21)
(1.32261 -0.166094 -1.1691e-22)
(0.957094 0.203356 1.50339e-21)
(1.20906 0.120641 -1.51702e-20)
(0.0497048 0.0116464 -5.14905e-21)
(0.634596 0.137217 1.5735e-20)
(0.324604 0.0731167 -1.08048e-20)
(1.13513 0.209692 -6.04336e-21)
(0.983231 0.120625 -7.52767e-21)
(0.0461774 0.0106467 -5.32447e-21)
(0.460964 0.104104 8.88447e-21)
(1.0447 0.21874 2.62674e-20)
(0.117982 -0.000874367 -1.69987e-20)
(0.796456 -0.409753 -8.96375e-21)
(1.14308 0.212394 2.16926e-22)
(1.05654 0.197433 4.60077e-20)
(1.34828 -0.0807192 -5.01812e-22)
(0.903198 -0.0328575 -5.90789e-21)
(0.411194 -0.528629 -2.24707e-20)
(1.28719 -0.0473506 6.81449e-22)
(1.16183 0.121415 3.01329e-20)
(0.934762 0.226083 -6.56187e-20)
(0.832189 -0.41325 -2.11344e-20)
(1.01856 0.173557 6.1848e-22)
(0.940739 0.115317 2.34824e-20)
(0.972636 0.228563 -4.80975e-21)
(0.900066 0.306056 1.93683e-20)
(1.37163 0.0761226 2.09508e-21)
(1.02305 0.216287 1.90704e-20)
(1.4454 -0.129094 1.54274e-20)
(0.864877 0.0748819 -5.96512e-20)
(0.94958 0.286898 -2.95531e-21)
(0.318155 0.0710042 -3.23782e-21)
(1.01524 0.187771 4.07971e-20)
(0.273558 -0.223605 -3.00358e-21)
(0.000418353 -0.0150627 0)
(0.0474448 0.0115292 -2.36597e-21)
(0.259942 -0.00171564 -1.95757e-21)
(1.01456 0.20648 7.58537e-21)
(0.00473572 -0.108637 -3.69504e-21)
(0.830974 -0.432742 -2.33332e-20)
(0.773273 0.334624 1.5413e-20)
(0.962263 0.241177 5.73108e-22)
(1.1929 0.196148 6.63399e-21)
(1.20915 0.173384 -1.87328e-20)
(0.965695 0.198268 1.25296e-20)
(0.0478041 0.00968177 -2.0397e-21)
(0.622629 0.136425 1.01168e-21)
(0.759326 0.296335 -2.80032e-20)
(0.789272 -0.614946 -5.06145e-21)
(0.0332987 -0.000130267 -1.1964e-22)
(0.954671 0.100402 7.17147e-21)
(0.402806 0.128164 2.2779e-20)
(1.21609 0.0647877 -1.02822e-22)
(0.754929 0.289297 1.15078e-20)
(0.640329 0.000505274 -2.88603e-20)
(0.408216 0.109671 8.14591e-21)
(0.702529 -0.04687 -2.86619e-21)
(1.17707 0.199391 -3.13992e-21)
(1.04802 0.153962 3.34498e-20)
(1.26759 -0.369231 2.14807e-22)
(0.0786064 -0.2127 8.75514e-21)
(0.965753 0.19954 -1.40976e-20)
(0.914952 -0.0924155 -1.05492e-21)
(1.07125 0.131708 1.24287e-20)
(0.0417326 0.00992417 5.64644e-21)
(0.928999 0.193754 4.5892e-21)
(0.684451 0.0164808 1.13584e-20)
(0.0287629 0.000120666 6.76933e-21)
(0.223095 0.106847 6.29581e-21)
(0.946009 0.255891 -7.98954e-21)
(1.03939 0.246786 2.69648e-20)
(0.0416105 0.00943442 7.75133e-21)
(0.966723 0.172294 -1.92987e-20)
(0.895046 -0.199782 1.33826e-21)
(0.77597 0.152989 -3.58008e-21)
(0.655529 -0.192127 -9.23904e-21)
(1.16777 0.197986 1.10428e-20)
(0.746133 0.00242686 1.07756e-21)
(1.02665 -0.138187 -3.45639e-21)
(0.964985 0.202805 -1.48605e-20)
(1.31706 -0.504492 3.0046e-21)
(0.248493 -0.322467 6.98345e-22)
(0.000366249 -0.013439 0)
(0.808698 -0.672814 7.87981e-21)
(1.40689 -0.394026 -1.63858e-20)
(0.0440368 0.0099266 3.44194e-21)
(1.10383 -0.464474 -2.22394e-21)
(0.209547 -0.380171 -6.23095e-21)
(0.797976 -0.000680203 2.73509e-21)
(0.964553 -0.0736486 -1.20097e-21)
(0.95164 -0.00227453 3.85931e-21)
(0.67242 0.000123592 -2.4001e-21)
(0.0435544 0.00977642 -7.22187e-21)
(0.970184 0.20195 -1.01088e-20)
(1.18816 -0.320242 3.54005e-21)
(1.18176 -0.253213 5.203e-21)
(0.398016 0.232328 -3.05885e-20)
(1.17673 0.117845 -1.51314e-20)
(1.20386 0.189659 -6.93652e-21)
(0.870834 0.0737597 1.07838e-19)
(0.566657 0.129845 1.81529e-21)
(0.994178 0.230461 2.44027e-21)
(0.801258 -0.0487131 -5.42559e-21)
(0.186722 -0.384884 2.2954e-21)
(0.0442533 0.00924292 2.31632e-21)
(1.25829 0.166549 -1.19039e-20)
(0.90075 0.293141 -1.13306e-20)
(1.00096 0.203119 -2.53628e-21)
(0.478289 0.103967 4.16328e-21)
(0.877333 0.09481 8.0345e-21)
(0.0455986 0.0104892 7.60689e-21)
(1.12042 -0.318466 8.5085e-21)
(0.801656 -0.520663 -2.68661e-20)
(0.108497 -0.000783646 -1.21335e-20)
(1.05464 0.21009 -1.36743e-20)
(1.02871 0.207575 8.05636e-21)
(1.10361 0.205244 7.17322e-22)
(0.0452216 0.0101417 1.05217e-20)
(1.20147 0.177283 2.96443e-21)
(1.26469 0.1579 -1.0015e-21)
(0.474169 -0.610956 1.39679e-21)
(0.950685 0.198282 7.95458e-21)
(0.523826 0.114299 6.95871e-21)
(0.0450827 0.0103719 2.32149e-21)
(1.21178 0.0731025 2.96648e-20)
(0.000413365 -0.050079 1.70482e-20)
(1.20043 -0.268048 4.94415e-21)
(1.22085 -0.283331 -3.6467e-21)
(1.36548 0.0605602 3.04859e-21)
(0.948503 0.00029738 7.25037e-21)
(1.40495 -0.165398 9.87802e-21)
(1.26823 0.179639 -1.41255e-20)
(0.85187 0.320276 2.71781e-20)
(0.0446612 0.00979071 -1.56358e-21)
(0.229226 0.00183391 1.33739e-20)
(0.529408 0.115413 -6.07898e-21)
(0.882601 0.0351413 6.79878e-20)
(8.47357e-05 -0.0123888 0)
(0.8498 0.0275351 1.72766e-20)
(0.371786 -0.000479261 1.79898e-20)
(1.20343 0.183482 1.1864e-20)
(1.08327 0.182019 1.87455e-20)
(0.331186 -0.00260366 2.38753e-22)
(0.609591 0.131342 -1.79595e-21)
(0.782748 0.312344 -2.00516e-20)
(0.046458 0.0104917 3.70707e-21)
(1.33777 0.146946 7.22001e-21)
(0.918154 0.263644 -1.09619e-20)
(0.633146 0.00345764 -1.34498e-20)
(0.810807 -0.440971 -1.30548e-21)
(0.879453 -0.0514402 -3.25931e-21)
(0.535754 0.052753 4.66987e-20)
(0.574917 0.123612 -8.61174e-21)
(0.5309 0.116173 -5.63237e-21)
(0.8709 0.0982342 2.30083e-20)
(1.1746 0.208799 -1.51721e-20)
(1.05173 0.202579 6.13418e-20)
(0.150439 -0.217403 -3.37024e-20)
(0.0468931 0.0107724 1.08424e-21)
(0.955375 0.19742 1.69512e-23)
(0.559323 0.119566 -1.93018e-21)
(0.873578 0.031461 -6.89286e-21)
(0.991231 -0.0555284 2.33937e-21)
(1.37909 0.0454162 -2.86719e-21)
(0.524203 -0.596277 -9.91472e-21)
(0.0453186 0.0101182 1.8019e-21)
(0.584164 0.117813 -5.05373e-21)
(0.917226 -0.0296892 -8.23194e-21)
(0.853491 0.309244 3.42038e-20)
(0.304167 -0.00277287 6.46803e-21)
(0.749669 0.148928 -1.71185e-20)
(1.19286 0.113304 3.5969e-20)
(1.05863 0.203903 -4.15292e-21)
(1.41169 -0.0835883 7.33219e-22)
(1.30574 0.0554995 -1.44226e-21)
(1.22069 0.128165 8.85681e-21)
(0.0447605 0.0100221 5.3614e-21)
(1.11358 0.199215 8.87243e-21)
(0.621491 -0.000312376 4.65268e-21)
(0.699428 0.150174 1.54979e-20)
(0.567264 0.12323 -8.21439e-22)
(0.0458885 0.00972775 8.23362e-23)
(0.662012 0.141472 -4.07768e-21)
(0.807155 0.300228 -1.31345e-20)
(0.734914 -0.426074 2.61501e-21)
(0.683834 -0.00268218 -2.76793e-20)
(1.23493 0.188207 -4.24001e-22)
(0.448017 -0.138855 -3.79199e-20)
(0.0470198 0.0111239 4.62406e-21)
(0.893292 0.317645 -1.50482e-20)
(0.939872 -0.0486147 -9.72749e-22)
(0.851565 0.078098 -2.08933e-20)
(1.13488 0.198728 -2.28712e-20)
(0.794101 -0.0936797 3.06046e-21)
(0.584621 0.126821 -6.53239e-21)
(1.04279 0.21071 -1.65731e-20)
(1.07716 0.197081 2.2382e-22)
(0.0456882 0.0104042 -1.29395e-20)
(0.989207 0.240656 3.73757e-21)
(-0.000138946 -0.011952 1.17143e-21)
(0.216629 -0.123324 -2.00866e-20)
(0.81303 -0.00950735 1.96461e-20)
(1.37698 0.0653052 -4.58996e-21)
(1.2159 0.193076 5.36218e-21)
(0.568185 0.120841 -2.85435e-21)
(0.0461137 0.0106633 5.32611e-21)
(1.42278 -0.0590477 -5.94913e-21)
(0.219998 0.0405211 -1.62715e-20)
(1.06783 0.232192 -4.8613e-20)
(1.00514 0.261558 -2.79888e-20)
(1.05039 0.167058 1.38582e-20)
(1.11208 0.201129 1.88262e-20)
(1.09831 0.220228 2.9694e-20)
(0.839088 0.168622 4.64987e-20)
(0.0481325 0.0112229 -4.44889e-21)
(1.10289 0.208111 -2.80173e-21)
(0.0368801 -0.223051 3.90924e-20)
(1.06812 -0.200226 7.24845e-22)
(1.20542 0.191914 -6.69959e-21)
(0.940604 0.12377 -6.3182e-20)
(1.00086 0.206445 1.11172e-21)
(0.0470404 0.0104364 -1.34175e-20)
(0.604783 0.131367 -1.48082e-20)
(0.921939 0.072829 -1.66361e-20)
(0.969108 0.199065 -1.84073e-21)
(1.08 0.225519 -3.22729e-21)
(0.945181 -0.000386918 2.11567e-20)
(0.999922 0.220757 -9.81024e-21)
(0.914875 0.00121436 -4.35624e-20)
(1.19482 0.173552 -4.72037e-21)
(1.31833 -0.348262 7.49422e-21)
(0.79433 0.332581 -1.74355e-20)
(0.043081 0.0100611 5.23744e-22)
(1.26025 0.155258 5.55893e-21)
(0.493526 -0.284362 -1.03876e-20)
(0.897894 -0.01551 2.23767e-21)
(0.732287 0.00291765 1.91262e-21)
(1.02395 0.224976 -2.35465e-20)
(0.608706 0.175139 -8.37267e-21)
(0.998106 0.234256 3.65807e-20)
(0.606809 0.0348754 6.50368e-21)
(0.669951 0.1191 7.76029e-22)
(0.0438107 0.0098483 -2.26704e-21)
(0.978335 0.0855719 3.87943e-20)
(1.31439 0.158445 3.50157e-21)
(0.0623024 -0.00758108 -4.71325e-22)
(1.20907 0.107122 -2.9548e-21)
(0.564369 0.122478 9.95571e-21)
(1.05949 0.200052 -4.13975e-20)
(0.895857 -0.145504 9.25563e-22)
(0.598134 0.0208359 -4.5659e-20)
(0.844543 0.0796735 3.38922e-20)
(1.0179 0.238257 3.21168e-20)
(0.987917 6.81096e-05 1.32205e-20)
(0.876412 0.0325738 -3.97682e-20)
(1.20987 0.0979024 -1.12818e-20)
(0.983866 -0.173838 7.36935e-21)
(0.0447018 0.00985612 -8.23644e-21)
(0.913443 0.12196 7.0748e-20)
(0.680164 0.145788 -7.82102e-21)
(0.571696 0.0444675 -2.62098e-20)
(-0.00015807 -0.0118407 -6.13354e-21)
(1.11038 0.196335 -2.79803e-21)
(0.73928 0.174064 5.03794e-21)
(1.3223 0.0158961 -3.29873e-21)
(0.0991309 -0.239823 3.49035e-21)
(1.09102 0.167294 3.43686e-22)
(1.24858 0.179437 -1.84848e-21)
(0.680192 0.159297 3.17069e-23)
(0.931586 -0.486813 3.10676e-20)
(1.10039 0.184786 -2.62969e-21)
(1.03034 0.205352 -2.30236e-21)
(0.91082 0.278505 -4.66205e-20)
(0.712509 0.00179118 -2.7225e-20)
(1.01226 -0.660506 -5.13071e-21)
(1.13012 0.198124 1.4515e-20)
(1.19044 0.1042 1.39025e-20)
(1.27805 0.0478116 -4.50118e-21)
(0.857547 0.167432 -4.45381e-21)
(0.945655 0.191736 4.59977e-21)
(1.29166 0.0512495 -1.0665e-20)
(4.85866e-05 -0.0554504 1.756e-20)
(0.86323 0.0222556 5.87495e-20)
(0.0428546 0.00963496 6.58041e-21)
(1.06154 0.206375 5.36337e-20)
(0.982288 0.278109 1.90563e-20)
(0.126 -0.268612 1.51695e-20)
(1.22914 0.187875 -1.43573e-21)
(1.39654 0.0982504 -2.03976e-21)
(1.09906 0.219045 1.68141e-20)
(0.951765 0.293855 -2.1706e-20)
(0.726584 0.143159 -5.01614e-21)
(0.0440554 0.00924074 3.29658e-21)
(1.28901 -0.0121094 -1.93987e-21)
(0.614678 0.00136722 -4.44575e-21)
(0.884791 -0.00145273 -2.53199e-20)
(1.02961 0.209899 1.2414e-20)
(0.903264 0.225336 2.1762e-20)
(0.77606 -0.528543 1.22742e-20)
(1.21792 -0.188837 1.94354e-21)
(0.0529685 -0.2515 -7.47489e-22)
(1.06376 0.220077 -6.7521e-21)
(1.28032 0.174068 -1.18809e-20)
(1.25021 0.181824 -1.96187e-21)
(0.0139173 -0.0550138 1.32566e-20)
(0.241709 0.000809575 6.56178e-22)
(0.98102 0.199875 7.04829e-21)
(0.527575 -0.287358 1.79203e-20)
(1.27671 0.151892 1.46223e-21)
(0.130134 -0.158512 1.39205e-20)
(1.22764 0.0804971 1.23113e-20)
(0.596113 0.127287 -4.81053e-21)
(0.909844 0.312347 4.82367e-20)
(0.048901 0.0108462 -6.90688e-21)
(0.252108 -0.408749 -2.21902e-20)
(0.347584 -0.515129 -1.45991e-20)
(1.34541 0.141486 3.18419e-21)
(1.25675 0.146783 1.98284e-21)
(1.03559 0.180507 -1.64304e-20)
(0.18631 0.0387692 2.1643e-21)
(0.202032 0.0226113 2.08072e-20)
(0.531089 0.115326 -5.80999e-21)
(0.0488542 0.0108188 -1.70658e-22)
(0.0502278 0.0114895 2.77632e-21)
(0.95219 0.194423 -1.02459e-20)
(0.830606 0.000565797 1.63194e-20)
(0.609882 -0.0664757 6.12063e-21)
(0.0497805 0.0116715 -1.65881e-21)
(0.999311 0.21371 -3.06918e-21)
(0.0474571 0.010255 1.37738e-21)
(0.296379 -0.434342 1.48666e-20)
(1.04557 0.150861 2.063e-20)
(0.34313 -0.454187 -2.24059e-20)
(1.24837 0.172179 2.59448e-22)
(1.15316 0.19621 8.46969e-23)
(1.10917 0.212819 2.43095e-20)
(0.954867 -0.273518 -8.03029e-21)
(0.565676 0.246436 -1.9339e-20)
(0.611225 -0.291467 -8.90346e-21)
(0.803712 -0.500581 1.49495e-21)
(0.945024 -0.0605512 3.206e-21)
(0.0467603 0.0118886 7.80731e-21)
(1.38519 -0.245051 6.7654e-21)
(0.152162 -0.118557 -1.64807e-21)
(0.999848 0.186602 7.49474e-21)
(1.02221 0.25945 2.38179e-20)
(0.59775 0.130265 -5.1714e-22)
(1.24437 0.0684278 -1.45051e-20)
(0.779034 0.335305 1.06147e-22)
(0.752472 0.169817 -1.36099e-20)
(1.47432 -0.0513779 -2.13174e-21)
(1.10522 -0.218183 5.90665e-21)
(0.639122 0.13748 -7.03396e-21)
(1.1424 0.20246 -8.3353e-22)
(1.24156 0.167506 -2.76367e-21)
(0.919143 0.183013 6.76904e-22)
(1.19971 0.191239 -1.02107e-20)
(0.262859 -0.449402 -9.49176e-21)
(0.0425398 0.00894388 -3.6067e-21)
(0.20145 0.0441068 -5.60212e-21)
(0.667941 0.177533 3.89471e-21)
(0.890114 -0.0615446 4.59649e-21)
(0.0435125 0.00975578 -4.52466e-21)
(0.986784 -0.126659 -6.71818e-21)
(0.0446558 0.0102588 -7.96825e-21)
(1.31455 0.0535092 3.63312e-21)
(0.562882 0.121643 -2.17621e-21)
(0.624234 -0.00371138 -1.23836e-20)
(0.688215 0.274415 -8.03591e-21)
(0.973421 0.189097 -3.85541e-21)
(0.882023 0.00267716 -2.76131e-21)
(0.0470537 0.0108351 1.98725e-21)
(1.06166 0.236818 2.31029e-20)
(0.910747 -0.626403 -1.49267e-20)
(0.847277 0.326946 -8.50728e-21)
(1.19501 0.192419 -9.07062e-22)
(0.467234 0.0352454 -4.68664e-21)
(1.29708 0.161181 -5.49011e-21)
(0.997561 0.205542 -6.31647e-20)
(0.957455 0.26888 1.29459e-20)
(0.976441 0.273295 -4.53623e-20)
(0.778086 0.002879 6.21398e-21)
(1.00844 0.256225 -2.98823e-20)
(1.42554 -0.00972 2.04931e-21)
(1.40497 0.0882078 7.28067e-22)
(1.16791 0.192701 -2.43724e-20)
(1.16675 0.187212 2.17373e-20)
(0.770698 0.000686389 1.67104e-20)
(1.12217 -0.30373 -9.51784e-22)
(1.02979 0.250676 -5.4033e-20)
(0.981642 -0.13824 -7.83507e-21)
(0.338869 0.0759913 -6.83845e-22)
(0.819543 -0.035569 1.05775e-21)
(0.909441 0.269463 -1.74949e-20)
(0.917858 0.195233 -1.02022e-20)
(0.940918 0.179755 -7.9225e-22)
(1.18455 -0.231375 3.31065e-21)
(0.883416 -0.0492841 -3.40781e-21)
(0.839612 0.0150339 2.32823e-20)
(1.28038 0.0316212 -1.43784e-21)
(0.6759 0.143127 3.844e-21)
(0.193069 0.0573687 6.14251e-21)
(0.954942 0.192046 5.50249e-21)
(1.13158 0.200538 -2.20642e-21)
(1.2994 0.163766 8.74632e-21)
(0.952847 0.253132 1.28907e-20)
(1.08617 0.216935 2.56192e-20)
(0.190819 0.0452196 -4.85868e-21)
(0.993325 -0.180574 -3.52806e-21)
(0.833914 0.00470825 1.7056e-20)
(0.174608 0.0388688 -3.29985e-21)
(1.08977 0.222698 -3.13581e-20)
(1.04019 0.212326 7.93791e-21)
(1.33133 0.0116603 -2.98827e-21)
(0.705263 0.025742 8.34333e-21)
(0.777894 -0.0259693 -1.11478e-20)
(0.580755 -0.597256 -7.04106e-21)
(1.00822 0.207808 -6.74588e-22)
(1.36071 0.129057 1.09088e-20)
(1.24944 0.119586 -1.35663e-21)
(1.15628 0.199694 -5.42064e-21)
(1.06574 0.215384 -5.33227e-21)
(0.95347 0.185423 7.35223e-21)
(0.966239 -0.0779986 2.78248e-22)
(1.0195 0.0959914 -5.38557e-20)
(0.580307 0.289573 -8.36249e-21)
(0.848895 0.237943 -8.42818e-20)
(1.133 -0.326767 -1.82016e-21)
(0.919555 -0.0786395 -2.64993e-21)
(0.0487805 0.00930564 -1.01308e-20)
(1.29615 -0.0181487 2.65158e-22)
(0.530684 -0.620398 -7.38298e-21)
(1.07913 0.211881 -1.39835e-20)
(0.462204 0.127344 1.43922e-20)
(1.47777 -0.0723662 -4.3422e-21)
(0.0497848 0.0114325 4.16147e-21)
(1.27472 0.0180956 -3.95997e-22)
(1.12194 0.202733 8.46381e-21)
(0.69262 0.112974 -1.62459e-22)
(1.30559 -0.00417655 -3.95261e-21)
(0.893641 -0.104734 4.78148e-21)
(0.136685 0.0293656 -6.05139e-21)
(0.0495116 0.011634 -1.27257e-21)
(1.2635 0.0519631 1.01744e-20)
(0.947912 -0.0305582 9.58077e-22)
(1.33988 0.136612 -1.23871e-20)
(0.616405 0.00225697 2.01482e-21)
(0.319818 0.00173192 1.69973e-20)
(0.048165 0.0107213 -1.37545e-21)
(1.32593 0.146928 -1.77681e-21)
(1.2998 -0.35142 1.07843e-20)
(1.2964 0.152073 -7.8746e-21)
(0.898758 0.312567 -2.56698e-21)
(0.998997 0.204076 -7.55413e-21)
(0.983177 -0.142896 -7.58176e-22)
(0.864612 0.0123563 -5.87096e-20)
(0.871462 0.184121 -1.02201e-19)
(0.0495521 0.0110149 2.06437e-23)
(0.585992 0.127639 6.81414e-21)
(0.825589 0.068263 -2.37587e-20)
(1.32855 0.149406 6.0743e-21)
(0.947007 0.185153 -1.05898e-20)
(0.876997 0.320875 -2.96189e-20)
(0.0495559 0.011174 2.54045e-21)
(0.392162 -0.0518258 -2.32633e-23)
(0.151297 0.0321749 6.6057e-21)
(1.01294 0.183436 -1.48443e-20)
(1.09415 0.188101 3.80037e-20)
(0.699779 0.334743 3.32906e-20)
(0.818712 0.0507688 -1.84819e-21)
(0.837895 0.218019 2.24369e-20)
(1.12265 -0.226147 -6.78374e-21)
(0.713651 0.154753 -5.31474e-21)
(0.960694 -0.0361386 9.43206e-22)
(1.11419 0.11921 -1.16757e-22)
(0.83188 -0.00161314 3.5247e-21)
(1.32285 -0.00452954 3.21638e-21)
(1.00517 0.253017 9.27171e-21)
(0.785204 -0.000303101 -5.19749e-21)
(0.83859 0.0229159 2.95091e-20)
(0.94912 0.264048 -5.45276e-21)
(0.116918 -0.329203 1.34763e-20)
(-8.45974e-05 -0.0120975 7.35085e-21)
(1.00603 0.190716 6.39305e-21)
(1.33091 -0.0948066 -6.69808e-22)
(0.0844087 -0.230116 -5.44675e-21)
(0.0458721 -0.162751 -1.78065e-20)
(0.905454 -0.34902 -1.33528e-20)
(1.21414 0.121763 1.07495e-20)
(0.763507 0.00139333 -7.16475e-21)
(0.787081 0.0238326 -6.11542e-21)
(0.990921 0.175613 4.34388e-21)
(1.20459 0.179471 -7.49514e-21)
(0.485984 0.100337 3.95041e-21)
(0.386258 -0.424207 -3.70643e-20)
(1.42112 0.0655329 -3.29818e-22)
(0.675591 0.145083 -3.55733e-21)
(1.20754 0.115861 -3.61246e-22)
(0.276885 0.159343 1.78756e-20)
(1.1195 -0.475456 8.08721e-21)
(1.32109 0.126809 -3.13495e-21)
(1.20594 0.185695 -1.90443e-20)
(0.64674 0.141069 -3.0082e-21)
(1.38438 0.106217 3.39436e-21)
(0.116982 -0.276677 -8.5983e-21)
(0.900266 0.285155 1.41307e-20)
(1.18561 -0.211009 2.12274e-21)
(0.833576 0.277782 -7.73084e-20)
(0.649662 0.23529 3.10853e-21)
(1.32476 0.136935 8.12417e-21)
(1.3419 0.100739 -3.35333e-23)
(1.37961 0.104924 -1.64016e-21)
(1.34418 -0.0589334 -1.57117e-22)
(0.941092 -0.0580434 7.6478e-21)
(0.760435 0.0232524 -5.89285e-21)
(0.188712 0.0443483 -3.5665e-21)
(0.978496 0.187033 -1.13734e-21)
(1.07482 0.191319 2.64646e-20)
(1.0628 0.196856 5.15367e-21)
(1.43072 -0.248762 2.49669e-21)
(0.458962 -0.278256 -1.07014e-20)
(0.603067 0.0015294 -8.83358e-22)
(0.771538 -0.0020702 -8.81398e-21)
(1.42814 -0.299027 -3.46258e-21)
(1.44378 0.0243451 7.76117e-22)
(0.368995 0.0775134 -4.79203e-24)
(0.905542 0.0139249 -3.13681e-20)
(0.94693 0.171357 1.62161e-20)
(1.10415 0.201039 -6.45149e-22)
(0.885523 0.0139691 7.47514e-20)
(0.464996 0.26344 -4.77138e-20)
(0.0295065 -0.0540125 -7.07947e-21)
(0.900196 -0.176222 -8.42695e-21)
(0.0474037 0.0105088 3.71182e-21)
(0.607115 0.118084 -3.51664e-22)
(1.25129 -0.142523 -1.90815e-22)
(0.11486 0.0259686 -2.59297e-21)
(1.04312 -0.53159 6.75938e-22)
(-0.00012449 -0.0122871 1.26772e-20)
(0.0488829 0.0107183 3.94122e-21)
(0.987486 0.272548 2.57582e-20)
(1.12303 0.203691 -1.05782e-20)
(0.910977 0.30948 -1.65993e-20)
(0.196169 -0.0665396 2.25798e-20)
(0.919712 -0.0996167 -1.42352e-20)
(1.4392 -0.29561 -1.73512e-21)
(0.952835 0.00234016 6.30444e-21)
(0.999451 0.181499 7.57842e-21)
(0.911639 0.300007 4.33873e-20)
(1.05154 0.153388 -5.72502e-20)
(0.896348 0.316891 -2.01726e-20)
(1.31287 -0.459255 -7.76282e-21)
(0.830347 0.00216977 2.56445e-21)
(0.480015 0.109256 -6.53597e-21)
(1.16223 0.168836 -3.85802e-21)
(1.24357 0.181761 -1.83715e-21)
(0.944671 -0.391445 -4.07045e-21)
(1.26748 -0.0734907 -8.16153e-22)
(0.970813 0.269739 -1.28398e-21)
(0.595264 -0.04298 1.84062e-20)
(0.953019 0.0973036 -4.2794e-20)
(0.996662 0.17551 -2.34369e-21)
(0.641538 -0.214733 -1.85365e-20)
(0.963514 0.198481 5.64999e-21)
(0.907726 -0.00303036 -2.43419e-21)
(0.334307 0.0717903 1.60528e-21)
(0.32712 0.00204561 -8.85288e-21)
(1.02402 0.260203 -5.96106e-21)
(0.88853 0.00157689 2.29142e-20)
(1.10644 0.203832 2.59951e-21)
(0.646712 0.0406781 -7.61277e-21)
(0.670262 -0.324121 1.6494e-20)
(1.47973 -0.11725 7.43498e-21)
(0.597134 0.129242 -2.06699e-21)
(1.0232 0.0989755 5.32134e-21)
(0.0486385 0.0109716 -1.84326e-21)
(0.000708814 -0.0682487 -1.93664e-21)
(0.651939 0.140433 -1.24538e-20)
(0.767916 0.00242803 3.17059e-21)
(1.06846 0.176801 6.47849e-21)
(1.25127 0.174558 -1.83418e-20)
(0.0523375 0.0123593 -2.70242e-21)
(0.698268 0.183533 -4.67493e-21)
(1.37424 0.0941357 2.49458e-22)
(0.626606 0.000807726 -1.48884e-20)
(0.655887 0.035991 -1.37463e-21)
(-8.23222e-05 -0.0125694 0)
(0.31834 0.00225264 -6.53203e-21)
(1.36396 0.0843411 3.07137e-22)
(0.972373 0.188159 1.49682e-21)
(0.925542 -0.00162694 -9.39415e-21)
(1.05038 0.235254 -1.10883e-20)
(1.46242 -0.0252929 2.10988e-21)
(0.12633 -0.0500845 1.88127e-20)
(1.25883 0.174399 6.24599e-21)
(1.46923 -0.187249 -1.3671e-21)
(1.26107 0.149754 2.86334e-21)
(0.882094 -0.188585 -1.05882e-21)
(0.625646 0.126056 1.56713e-21)
(1.069 0.226904 -4.44561e-21)
(1.1082 0.163132 -2.06669e-21)
(0.935564 -0.0234339 3.32643e-21)
(1.00005 -0.13012 -6.76296e-22)
(1.00925 0.174424 1.46745e-21)
(1.289 0.0192365 -7.52166e-21)
(1.31954 0.160757 -4.82156e-21)
(0.67728 0.152219 -1.86724e-21)
(0.912703 -0.0433435 -4.50362e-21)
(1.15656 0.210832 -1.17317e-20)
(0.100478 -0.14481 9.89182e-21)
(0.378592 0.000513623 -7.03334e-21)
(1.45404 -0.0196598 -1.69063e-21)
(0.758389 0.00337296 -2.9359e-21)
(0.831993 0.000236205 -3.3611e-22)
(0.395554 -0.0574774 2.88469e-20)
(1.15656 0.141384 4.06716e-22)
(0.652002 -0.444279 -8.5435e-21)
(0.870282 0.216304 -3.59363e-21)
(0.73063 0.160457 -1.91272e-21)
(0.781559 0.0445728 4.35888e-22)
(0.754195 0.164487 1.46323e-21)
(0.315161 -0.0500208 4.61355e-20)
(0.909422 -0.030315 3.29107e-21)
(0.904466 0.284934 9.89459e-21)
(-6.39054e-05 -0.0130499 2.28993e-21)
(0.0501616 0.0110324 -6.72144e-22)
(1.2124 0.0933431 1.39244e-20)
(1.11453 -0.190415 7.42089e-21)
(0.894239 -0.134612 -3.89392e-21)
(0.989458 -0.135412 6.30947e-21)
(1.04897 0.214895 -4.83295e-20)
(0.0525913 0.0116783 -7.6579e-22)
(0.609314 0.131533 1.27598e-20)
(0.766674 0.000917859 3.77955e-21)
(0.173704 0.038886 -7.94138e-21)
(-9.54804e-05 -0.0128514 0)
(1.01908 0.179888 4.11611e-21)
(0.0575747 0.0135142 1.57232e-21)
(0.920678 -0.107337 1.6227e-21)
(0.203748 -0.0270833 -1.39291e-20)
(1.02157 0.191232 5.53632e-21)
(1.45476 -0.0857772 3.66944e-22)
(0.94236 0.0996587 1.97194e-20)
(0.599907 0.138602 -5.49634e-22)
(0.212213 -0.408816 -6.10784e-21)
(0.0775356 -0.00871876 3.58315e-20)
(0.374731 -0.539383 -1.90157e-20)
(0.600423 0.0260714 9.47191e-21)
(1.38175 -0.384524 6.34325e-21)
(0.977505 0.200258 6.1083e-21)
(0.64076 0.136086 -9.30778e-21)
(1.13943 -0.533993 1.38606e-20)
(0.735587 0.0306198 2.01271e-20)
(0.655439 0.150001 5.32102e-21)
(0.956219 -0.00505319 -2.47291e-21)
(1.43905 -0.0251327 5.99846e-22)
(0.14157 0.0299171 -5.50094e-21)
(0.680734 0.146251 2.29685e-22)
(0.986267 -0.000312049 2.76656e-21)
(0.84614 0.00210631 -1.10603e-20)
(0.767099 0.327212 -4.67476e-21)
(0.210947 -0.00853065 -2.33981e-20)
(1.11449 0.126661 2.5824e-20)
(1.29176 -0.0648036 1.89232e-22)
(0.720301 -0.409346 -1.20692e-21)
(0.718991 0.151424 1.07225e-20)
(0.909789 0.270858 -3.36842e-21)
(0.0520699 0.0117667 8.21986e-22)
(0.565445 -0.0314494 -3.57641e-20)
(0.865551 0.0939816 2.60174e-20)
(0.662127 -0.659618 -3.70384e-20)
(0.691878 -0.541949 9.3458e-22)
(0.878838 0.0256442 2.02102e-20)
(0.0533577 0.0119302 -1.10214e-21)
(0.955244 -0.00596871 -3.76727e-21)
(1.10853 0.205367 -1.8453e-20)
(0.0528666 0.0121835 4.15367e-22)
(0.946804 6.84094e-05 2.25098e-20)
(1.30022 0.154654 1.23733e-21)
(0.72243 0.0138283 -1.52026e-20)
(1.0501 0.183566 -1.60496e-21)
(0.052601 0.0117463 -3.21526e-21)
(0.477224 -0.22303 -2.68136e-20)
(0.717073 -0.314988 -1.12814e-20)
(0.839595 0.00134189 6.56893e-21)
(0.411592 0.199095 9.12464e-21)
(0.913328 0.290715 -1.21029e-20)
(0.351288 -0.00263393 -1.06904e-21)
(1.29989 0.0490864 9.30184e-21)
(1.13874 -0.263657 5.59279e-21)
(0.784086 0.00900587 4.45259e-20)
(0.674416 0.174768 3.15563e-21)
(1.29791 0.145335 -3.8103e-21)
(0.788257 0.169182 -4.22504e-21)
(0.0532648 0.0119206 4.22057e-21)
(0.62346 0.0348141 -3.63376e-21)
(0.734354 0.00368512 -7.14418e-22)
(0.776566 0.00145111 1.67558e-21)
(1.332 0.00108498 -9.03324e-22)
(0.543745 0.116283 -2.77113e-21)
(0.904589 -0.029483 -1.75548e-21)
(1.27346 0.17451 -5.132e-21)
(1.2859 0.0455278 1.3645e-22)
(0.577666 0.136647 -8.43137e-21)
(0.0535477 0.0118736 -6.37889e-22)
(0.0540107 0.0118873 -1.40342e-21)
(1.10497 -0.227104 3.52975e-21)
(0.615805 0.133296 5.94658e-22)
(1.11134 0.188209 -6.9787e-21)
(0.938083 0.119508 -4.0065e-20)
(0.793517 -0.429252 1.06797e-20)
(0.885043 -0.109047 -1.20753e-21)
(1.03182 0.169934 -1.36062e-22)
(1.32921 0.139391 -5.37714e-21)
(0.960829 0.18794 8.50605e-21)
(0.750766 0.0301168 2.09463e-20)
(1.07211 0.188888 -1.31181e-20)
(0.949969 0.00035348 -2.69202e-20)
(0.413248 0.256827 -3.5145e-20)
(0.817776 0.148148 -2.49892e-20)
(0.841376 0.0733973 4.72528e-20)
(0.550758 0.125996 8.59829e-21)
(1.25764 0.169233 -3.82099e-21)
(0.653962 0.137217 -5.01206e-22)
(0.398429 -0.000627678 9.23609e-21)
(0.573371 -0.0335559 -9.10856e-21)
(1.06106 0.181954 -2.29807e-21)
(1.3261 0.129136 6.57467e-21)
(0.682426 0.0340342 -4.07935e-21)
(0.958459 -0.0388511 -4.89378e-21)
(1.45619 -0.270439 -1.53449e-20)
(1.08058 0.138506 -5.1105e-23)
(-0.000151766 -0.0143699 1.4776e-20)
(1.15562 0.201224 -6.50543e-21)
(0.29098 -0.480095 4.38844e-20)
(0.74246 0.000878118 -5.74015e-21)
(1.12364 0.186506 -5.65283e-21)
(0.644215 0.153786 -5.5761e-21)
(0.544683 -0.297728 1.36352e-21)
(0.917158 0.117452 -7.6973e-20)
(0.697724 0.288063 1.38485e-20)
(0.843483 0.00227547 -2.55903e-21)
(1.29471 0.15143 -2.60951e-21)
(1.14499 0.203933 5.56096e-21)
(0.99351 0.211688 -3.97484e-21)
(0.971411 -0.0731785 -4.71877e-21)
(0.762581 0.313946 -6.44485e-21)
(0.74019 0.0261935 -1.11915e-20)
(1.1437 0.158828 -4.25119e-20)
(0.956298 -0.0577368 2.4429e-22)
(0.726652 -0.301301 2.75837e-20)
(0.748348 0.00500589 1.94503e-21)
(0.899477 -0.00461968 -1.4797e-20)
(0.914824 -0.688493 1.07425e-20)
(0.0558281 0.0124018 1.54944e-21)
(0.906064 -0.0122762 -2.86424e-22)
(0.715624 0.141422 -2.73373e-21)
(1.31411 0.0102167 4.09703e-22)
(1.28616 0.173004 2.77713e-21)
(0.371476 -0.00133847 2.33486e-20)
(0.331588 -0.000407803 1.19315e-20)
(0.496148 0.0929255 7.91857e-22)
(0.699354 -0.0174618 9.60534e-22)
(0.95601 -0.036748 2.70788e-21)
(0.813415 0.290034 -2.22396e-20)
(0.054865 0.0122944 3.88117e-21)
(0.63869 0.0166549 3.34326e-20)
(1.07887 0.158376 5.19153e-22)
(0.0552361 0.0122238 2.78081e-21)
(1.18788 0.195654 7.74985e-21)
(0.93457 0.294773 -3.47968e-20)
(1.03924 0.194151 -1.63793e-21)
(0.138346 -0.112119 8.14013e-21)
(0.0533146 0.0120234 -3.27268e-21)
(0.0487317 -0.000874506 -1.52737e-20)
(0.850544 -0.0272562 5.79279e-21)
(0.0555878 0.0120925 -2.50389e-21)
(0.585594 -0.508285 -2.80191e-20)
(1.24325 0.186448 1.79812e-21)
(1.38122 0.0951559 -4.51937e-22)
(1.22527 0.191759 2.59623e-21)
(0.702079 0.332298 2.93175e-20)
(0.815523 -0.0163882 5.84027e-20)
(0.832555 0.0675887 2.03962e-20)
(1.0431 0.229998 1.38973e-20)
(1.34069 -0.374284 -8.65647e-21)
(0.0571367 0.0119638 1.72513e-22)
(1.10673 0.162945 -9.38189e-22)
(0.341518 -0.384991 6.05143e-22)
(1.29099 0.164839 4.22054e-21)
(0.37759 0.113551 -8.59186e-21)
(0.753803 0.00232937 -5.68202e-21)
(0.798583 -0.020465 -5.67688e-20)
(1.0666 0.172896 1.69865e-21)
(0.464012 -0.259229 -2.65012e-20)
(0.0947551 0.0211968 6.19287e-21)
(1.02751 0.211409 1.65584e-20)
(0.333956 0.0738415 1.51981e-20)
(0.48707 0.100092 3.04052e-21)
(0.674533 -0.0382119 -2.07171e-20)
(1.37312 0.0845362 -2.59874e-21)
(0.304961 0.0716513 2.37856e-21)
(0.64229 -0.199724 7.61077e-21)
(0.945956 -0.0277032 -5.86896e-21)
(0.237011 0.028094 -1.99146e-20)
(0.0541083 0.0119475 2.68043e-21)
(0.663435 0.141323 -1.13796e-20)
(0.540568 0.116751 -5.4944e-21)
(0.721244 -0.53928 -9.44907e-21)
(0.303599 -9.07066e-05 9.89909e-22)
(1.01561 0.204394 1.2333e-20)
(1.10593 0.148535 -4.26849e-22)
(0.846265 0.0016828 1.22641e-21)
(1.07193 0.142142 -3.17185e-22)
(0.706602 0.00119175 1.51873e-20)
(1.22724 -0.510013 -7.14752e-21)
(0.65663 0.0426902 9.60878e-21)
(0.91556 -0.0783525 1.52068e-21)
(0.756528 -0.422056 -1.23404e-20)
(1.14855 0.200274 7.16809e-21)
(0.680151 -0.0274173 4.09862e-20)
(0.0595797 0.0134909 1.8894e-21)
(0.244784 -0.000887569 2.72969e-21)
(0.973874 -0.0696952 -5.05342e-21)
(0.777945 0.00237699 4.12951e-21)
(0.765819 0.308253 2.48808e-20)
(1.45181 -0.0867453 -1.65362e-22)
(0.785868 0.176318 1.03252e-20)
(1.44894 -0.0307819 2.34298e-21)
(0.36866 0.0576202 5.94506e-21)
(1.40221 0.0660297 2.183e-21)
(0.206985 -0.00197653 4.95657e-21)
(0.929528 0.28256 1.27336e-21)
(0.993778 -0.0836289 1.26957e-21)
(1.43124 -0.034563 -2.0255e-21)
(0.061005 0.0149674 6.45687e-22)
(0.321485 -0.000908632 -6.25701e-21)
(0.971388 0.163834 -6.16024e-20)
(0.924277 0.00116231 1.44467e-21)
(0.944257 -0.0247519 -3.36616e-22)
(1.09861 0.205357 -6.45233e-22)
(0.957396 0.205362 1.53219e-20)
(1.03361 0.212977 5.12132e-21)
(1.1399 0.1648 2.00281e-21)
(1.10019 0.216929 1.69298e-20)
(0.879912 -0.196914 4.82207e-21)
(0.474701 -0.29186 1.34989e-20)
(1.26587 -0.080714 -1.92789e-22)
(0.854148 -0.0114536 2.49936e-20)
(0.653099 0.0245771 2.32812e-20)
(0.617047 -0.0138188 2.43368e-20)
(0.457579 -0.00482885 -2.60413e-20)
(1.39693 0.0634396 -4.02281e-22)
(0.57131 -0.480369 -1.23099e-21)
(0.789725 0.302583 1.13323e-20)
(0.928864 0.291227 1.83505e-20)
(0.694205 0.00109871 2.85027e-21)
(1.03598 0.147944 2.37291e-20)
(1.05521 0.164549 8.19333e-22)
(0.743641 -0.0491894 5.33255e-21)
(1.2056 0.164099 6.03792e-22)
(1.08545 0.185893 -1.72706e-21)
(1.1993 0.161861 6.78697e-21)
(0.823453 0.0516597 1.4473e-20)
(0.997931 0.190294 5.29134e-21)
(0.983533 -0.060774 -5.13551e-22)
(1.00791 -0.265923 2.36984e-21)
(0.101928 0.0209438 -3.30862e-22)
(0.848976 -0.000487411 -2.8267e-21)
(1.47403 -0.254829 4.02735e-21)
(1.08712 0.155514 -3.21087e-22)
(0.674395 0.135259 3.35858e-21)
(0.286969 0.060832 -1.89837e-21)
(0.93942 0.10312 -4.43303e-20)
(1.06032 0.158259 -2.08452e-21)
(1.34532 0.144164 2.57165e-22)
(0.419247 0.0876209 9.11922e-21)
(1.16786 -0.171084 -4.04745e-21)
(0.536812 0.110471 7.3226e-21)
(0.826376 0.0597801 5.14896e-20)
(1.14061 0.189177 5.34977e-21)
(0.770841 0.00107364 1.7288e-21)
(0.982127 -0.11112 -7.23812e-21)
(0.938557 -0.00771751 5.94638e-21)
(0.91432 -0.0309981 2.79415e-21)
(0.924042 -0.0317329 -1.84306e-21)
(0.159613 -0.000665281 1.50136e-21)
(0.780906 0.317784 4.41095e-21)
(1.04509 0.213516 5.8823e-21)
(0.526214 -0.138545 -1.76219e-20)
(0.910762 -0.380152 2.38747e-21)
(1.08729 0.220283 2.71798e-20)
(1.05221 0.136331 4.70781e-20)
(0.990143 0.202353 6.79027e-21)
(0.928693 0.0767794 1.75003e-20)
(1.04015 -0.261248 -1.49002e-20)
(1.1629 0.197315 -1.46516e-20)
(1.14106 0.150085 4.60283e-22)
(0.223152 0.0680633 1.37107e-20)
(0.699463 0.00195777 6.3753e-22)
(0.934198 0.0837449 -2.94277e-20)
(1.40462 -0.129851 6.59798e-21)
(0.659438 -0.528898 -1.30968e-20)
(0.232461 0.0494626 -1.45836e-21)
(1.26515 0.0507538 8.26347e-21)
(0.880828 0.275258 2.18324e-20)
(1.43897 -0.334932 -1.12279e-20)
(0.990036 -2.74884e-05 -1.04177e-20)
(0.902193 0.274539 3.17305e-21)
(0.631664 0.134924 6.95895e-22)
(0.550643 0.118682 -8.19857e-22)
(0.892774 0.18084 -7.89052e-21)
(0.435418 -0.123509 1.11856e-20)
(-0.00020612 -0.0141051 -1.12417e-20)
(0.118895 0.026075 -3.67535e-22)
(0.991403 0.223461 -1.20694e-20)
(0.58638 0.123166 -4.00275e-21)
(0.724881 0.001742 3.21035e-20)
(1.22977 0.125517 3.63785e-21)
(0.949316 3.37177e-05 4.63644e-20)
(1.46185 -0.144169 -5.20401e-21)
(0.935013 0.102481 -5.02023e-20)
(0.0345258 0.0023855 2.64237e-21)
(0.759244 0.00265366 -2.73678e-21)
(0.187162 -0.419973 2.29663e-20)
(0.627454 0.145601 1.45574e-20)
(0.0693927 0.01538 1.86956e-21)
(0.0595916 -0.22691 -2.02387e-20)
(1.24471 0.0292245 -6.12796e-21)
(0.802892 -0.0437174 1.1072e-20)
(0.772711 0.00218046 1.80363e-21)
(0.915039 -0.0851599 -1.83094e-21)
(0.588384 0.126959 1.24853e-21)
(0.725115 0.126438 -2.37181e-21)
(0.0699634 0.015133 1.28656e-21)
(0.952699 0.169161 -3.28409e-20)
(0.0902111 0.0196839 9.42427e-21)
(0.71741 -0.124189 9.1314e-22)
(0.704736 -0.00347941 1.32361e-20)
(0.867077 0.00160882 -1.00134e-21)
(1.02202 0.1577 2.67691e-20)
(0.760059 -0.0406478 6.41838e-22)
(0.235793 -0.00721435 -1.18204e-20)
(1.18553 -0.192279 -2.08891e-21)
(1.4083 0.0648002 -1.352e-21)
(0.541528 0.117215 -5.60587e-21)
(0.964063 0.0898676 -1.17744e-20)
(1.01889 0.242097 1.12314e-20)
(1.29413 0.167423 5.96084e-21)
(0.21798 0.000515096 9.70804e-22)
(0.993992 -0.124036 1.80679e-21)
(0.0704463 0.0150997 1.46981e-21)
(0.150688 -0.000704067 -1.79824e-22)
(0.47652 0.0984577 -2.85606e-21)
(1.26193 -0.0874703 2.57352e-21)
(0.396396 -0.000542568 -1.60839e-21)
(0.243749 0.0560897 -7.39683e-21)
(0.952345 -0.0358214 -6.53334e-21)
(0.687643 0.0202722 -1.92615e-20)
(1.05691 0.21178 -3.85169e-20)
(0.07182 0.0158129 -6.09593e-22)
(0.419903 0.00253269 2.47472e-21)
(1.15642 0.211526 -4.96139e-22)
(1.01634 -0.173776 -5.29861e-21)
(0.039191 -0.126121 8.78387e-21)
(0.501746 0.110045 1.58085e-21)
(0.957834 -0.0371126 1.32151e-21)
(1.00909 0.162792 -2.23956e-21)
(0.0690814 -0.269964 2.75104e-20)
(0.55123 -0.65155 2.15626e-20)
(0.092142 0.0421926 -4.09272e-21)
(0.880178 -0.636046 -1.0952e-20)
(0.392332 0.000199179 2.28823e-21)
(0.497606 0.10829 1.02006e-21)
(0.355268 0.0014878 -2.3687e-21)
(1.25871 0.00725647 6.69371e-21)
(0.611233 0.0389177 2.26022e-20)
(1.28494 -0.0453006 -5.60306e-21)
(1.47139 -0.130736 -2.88913e-21)
(0.942545 0.16744 3.44201e-20)
(0.317562 -6.07787e-05 -8.28109e-21)
(1.2093 0.139052 4.95887e-21)
(1.17864 0.163215 -3.26542e-22)
(0.934929 -0.315831 7.54932e-21)
(0.274947 -0.395165 -2.9639e-20)
(0.0628995 0.0126284 1.44542e-21)
(0.521611 0.103362 1.21522e-21)
(0.499136 0.107639 1.24084e-20)
(1.0698 0.213094 -3.81824e-21)
(0.000408696 -0.0481875 1.86977e-20)
(1.2383 0.160812 -2.52662e-21)
(1.08397 0.223562 9.14013e-21)
(0.826063 0.0419942 -1.42731e-20)
(1.27236 -0.122178 -1.18886e-20)
(0.454573 0.100871 -8.43111e-21)
(0.776777 -0.00202704 3.53253e-21)
(1.37212 0.11289 -2.15049e-21)
(0.782099 -0.0616879 -2.13772e-21)
(0.770373 -0.00544493 -5.75257e-20)
(0.111389 0.0462121 -1.46117e-20)
(0.237117 -0.0408575 1.82662e-20)
(0.933414 0.098276 3.20171e-20)
(1.00467 0.161968 3.84196e-20)
(1.02917 0.257016 -5.84792e-20)
(0.955708 0.261091 -2.14135e-20)
(0.116186 0.00123236 1.59872e-20)
(1.41847 -0.111284 -2.20088e-21)
(1.30274 0.123787 9.92678e-21)
(0.497695 0.0603016 -1.86877e-20)
(0.891167 0.0257553 6.9448e-20)
(0.085925 0.0165706 4.46514e-23)
(0.0577549 -0.128197 4.22614e-21)
(1.25639 0.181954 1.0696e-21)
(0.583784 0.0522796 -9.78327e-21)
(1.29593 0.0536461 -1.03744e-20)
(1.32495 -0.106101 3.7035e-22)
(0.225223 -0.000959234 -5.50925e-21)
(1.21613 -0.333553 -4.72649e-21)
(0.123252 -0.240146 1.05411e-20)
(1.43207 -0.17858 9.09685e-21)
(0.0877092 0.016736 -2.19305e-21)
(0.668347 -0.0384585 -4.43704e-20)
(0.912412 -0.0526736 -4.34627e-21)
(1.30588 0.159948 -6.50984e-21)
(0.594862 -0.0239876 -7.77059e-22)
(1.28792 -0.199704 -8.54473e-21)
(0.700992 0.000604555 1.56765e-20)
(0.959196 0.114606 7.24649e-20)
(1.18261 0.146957 1.44571e-22)
(0.960262 -0.0391119 1.88229e-21)
(0.496411 0.109565 3.17351e-21)
(0.706933 0.000256976 -5.61589e-22)
(0.298044 -0.00100748 6.7381e-21)
(0.960966 -0.0407509 8.31259e-22)
(0.0988733 0.018876 -2.85907e-21)
(0.00427347 -0.111522 -2.44733e-20)
(0.645726 0.000288849 1.18424e-20)
(1.38547 -0.181721 -2.17881e-20)
(1.03398 0.150948 -3.73311e-20)
(1.08024 0.224497 -4.78087e-21)
(0.989409 -3.75555e-05 -9.20516e-21)
(0.33816 0.0187942 4.62467e-21)
(1.31625 -0.0364378 4.38312e-21)
(0.37798 -0.0023228 7.95593e-22)
(0.485089 0.124778 1.61109e-21)
(0.115203 0.0179179 -8.77508e-22)
(0.595302 0.136831 1.57064e-20)
(0.71615 0.00204277 4.90255e-21)
(0.614629 0.00191617 2.83652e-20)
(0.845371 0.00212923 2.21037e-20)
(0.0771436 0.0178639 -2.64425e-22)
(0.528207 -0.0111885 -5.87345e-21)
(1.34055 -0.0715321 2.31943e-22)
(1.0637 0.231793 1.36744e-20)
(0.921402 -0.134327 1.20783e-21)
(1.35795 0.0417368 6.55847e-21)
(1.03382 -0.283038 -9.38503e-21)
(0.936754 0.183687 -8.85694e-22)
(0.949915 2.42807e-05 -2.33035e-20)
(0.953249 0.126853 -3.51043e-20)
(0.00367192 -0.0776378 -3.54055e-20)
(0.236864 0.0619201 -1.95913e-20)
(0.102112 0.0233313 -4.17333e-21)
(0.410791 0.0649204 -7.00622e-21)
(0.498099 0.0928977 5.71079e-22)
(1.02394 0.154716 2.82688e-20)
(0.986618 -0.102799 -6.10729e-21)
(0.284818 0.106075 5.57327e-21)
(0.901499 0.000268193 2.31145e-20)
(1.3224 -0.180435 1.11652e-21)
(0.622722 0.134522 -5.36655e-21)
(0.601167 -0.000949837 -2.55689e-20)
(0.629497 0.00105345 -1.22253e-20)
(0.950354 -0.000135683 -9.31631e-22)
(0.865289 0.324228 2.51737e-20)
(0.538231 0.115347 -9.53362e-21)
(1.07826 0.190139 -3.39418e-20)
(0.21758 0.048002 -3.13503e-21)
(1.10149 0.137407 1.85079e-20)
(1.12453 0.132324 -1.68311e-20)
(0.933443 0.191568 -6.60515e-21)
(0.764536 -0.0013116 -8.1719e-21)
(0.789581 0.000659114 1.77484e-20)
(1.20358 0.202656 2.1277e-20)
(0.676815 0.210298 9.20603e-23)
(0.564396 0.114685 4.14858e-21)
(0.612492 0.323936 1.33684e-20)
(0.890569 -0.0494423 5.29969e-21)
(0.643826 -0.0209908 -1.13592e-20)
(0.0703774 -0.0599959 -1.63599e-20)
(0.886524 -0.202957 4.57982e-21)
(1.3341 -0.297578 -7.91147e-21)
(1.27629 0.131157 -2.21863e-22)
(0.660209 0.00245371 7.45809e-21)
(1.05069 0.222709 -2.79908e-20)
(0.795948 -0.085873 8.29423e-22)
(0.778786 0.00112134 1.29578e-20)
(0.673329 -0.0157946 9.83615e-21)
(0.756981 0.115725 4.04737e-23)
(0.208263 -0.421632 -4.4032e-21)
(0.162978 0.0600411 5.69614e-21)
(1.41126 -0.198371 6.82706e-21)
(1.18259 0.107252 -2.87418e-20)
(0.593377 0.000648252 1.02097e-21)
(0.618447 -0.00110472 -4.18038e-21)
(0.641704 0.000334265 -1.41501e-20)
(1.01711 -0.297157 -5.11167e-21)
(1.03011 0.151403 7.02104e-20)
(0.224853 -0.43995 -5.00604e-22)
(0.0244983 -0.121125 3.51096e-20)
(0.648655 0.0145943 1.34833e-20)
(0.339375 -0.000523148 -1.91221e-20)
(1.33565 0.0389912 -4.00512e-21)
(0.67444 0.129174 -3.58912e-22)
(0.392836 0.0872878 -4.4067e-21)
(0.694384 0.0300858 2.2479e-20)
(0.97986 -0.0645114 -2.43201e-21)
(0.502648 0.105714 -7.66106e-21)
(0.776282 0.131316 1.89018e-21)
(1.01125 -0.486702 -1.28668e-20)
(0.120999 0.0261422 1.02354e-21)
(0.784344 -0.290534 -1.19482e-20)
(0.427503 0.236444 1.84928e-20)
(0.436928 0.0964784 -6.83083e-21)
(1.38881 0.0264861 -8.05965e-22)
(0.873286 -0.108236 -2.83501e-22)
(1.10526 0.161026 -1.08069e-20)
(0.223796 0.0488022 6.70265e-21)
(0.59723 -0.662842 -8.69523e-21)
(1.0178 0.157483 1.15944e-20)
(0.867562 -0.00191376 2.71412e-20)
(0.923584 0.0913471 -3.68137e-20)
(0.621301 0.112011 -5.94384e-20)
(0.665214 -0.00233849 4.53564e-21)
(1.46301 -0.278167 3.08009e-21)
(1.32643 0.0420407 5.1845e-21)
(0.994691 0.202452 -1.42882e-20)
(0.374562 0.000478216 1.34674e-21)
(1.40894 -0.0994797 3.35327e-21)
(0.656871 0.155805 -9.66989e-21)
(1.11146 0.161552 4.00188e-20)
(0.983962 -0.105199 -4.52179e-22)
(1.39439 0.0959461 3.46456e-22)
(0.339748 -0.000380104 -4.67723e-21)
(1.33578 0.144474 2.17836e-22)
(0.992779 0.140266 1.00436e-20)
(1.30266 -0.0629146 5.50526e-22)
(0.601654 -0.00423023 1.63402e-20)
(0.62561 -0.000953092 -5.31965e-21)
(0.643229 0.00294761 6.90744e-21)
(0.448619 0.122395 -9.44731e-21)
(1.01155 0.159848 -4.39255e-21)
(0.702286 -0.591903 2.75278e-20)
(0.808358 -0.0464784 -4.07056e-22)
(1.02105 0.206172 1.02502e-21)
(0.431931 -0.137806 -1.38565e-20)
(0.613595 0.110729 -6.12225e-23)
(1.26238 0.182015 1.40072e-20)
(1.44881 -0.00332719 1.58899e-21)
(0.671167 0.00463133 5.37989e-21)
(0.807758 -0.0851605 8.32255e-22)
(0.0047518 -0.117534 7.48119e-21)
(1.37304 -0.449484 3.49963e-21)
(0.556082 0.256334 4.09589e-21)
(0.585002 0.125687 1.23808e-21)
(1.04034 0.202096 1.67648e-20)
(1.30459 0.0781588 2.19816e-21)
(0.174381 0.0341032 4.52987e-22)
(0.867051 0.00102304 -5.8728e-21)
(-0.000118526 -0.0267446 1.32827e-20)
(0.84859 -0.501128 -1.53441e-20)
(0.763217 0.00739422 -3.68925e-20)
(1.01573 -0.162835 -3.43219e-21)
(0.538585 0.117635 -7.84365e-21)
(0.662051 0.00317029 2.19353e-21)
(0.94791 -0.0101388 5.93198e-21)
(1.35798 -0.200807 1.1207e-20)
(1.06712 0.212846 2.61966e-22)
(0.761011 -0.00109624 -4.58905e-21)
(1.20226 -0.200823 7.12615e-22)
(0.401347 -0.00101986 -1.97053e-20)
(0.360609 -5.60131e-05 4.57165e-21)
(0.592281 0.00166245 -4.00309e-21)
(0.610316 -0.000668535 -7.41217e-22)
(0.621207 -0.00149508 -4.61789e-23)
(1.26472 0.0277946 -9.75681e-21)
(0.637012 -0.00213628 4.7457e-22)
(0.653717 0.00133434 -7.51723e-22)
(1.20227 0.0794483 -8.69105e-22)
(0.295012 0.0660568 -9.27577e-21)
(0.678802 -0.00710163 -9.99526e-21)
(0.948922 0.224589 -2.79366e-21)
(0.838167 -0.0308271 -2.40481e-21)
(1.05101 0.13041 2.93553e-20)
(1.32831 -0.14157 1.65686e-21)
(0.750164 0.0219607 1.21673e-20)
(0.632489 0.0111438 -8.43044e-20)
(0.774631 0.301733 -1.5555e-20)
(0.13967 0.0548368 1.67033e-20)
(1.07566 0.228478 3.53889e-21)
(0.0736028 0.0311553 9.51215e-21)
(0.565468 -0.0249589 -5.20091e-20)
(0.483184 0.000181144 9.3434e-21)
(0.961308 -0.0377626 2.40629e-21)
(0.30377 0.0435496 -1.27296e-22)
(1.22477 0.109768 3.42004e-21)
(0.995729 0.0812246 1.36511e-20)
(0.948331 0.127389 1.62033e-20)
(0.665182 0.119782 1.03955e-21)
(0.67147 0.118851 -4.26168e-22)
(0.155213 0.0214164 1.02554e-20)
(1.22442 0.124289 -1.92756e-21)
(0.581012 0.000193957 -3.04337e-21)
(0.599257 0.000547058 -1.32329e-21)
(0.614454 0.000446961 -2.51335e-21)
(0.617039 -0.000533927 -2.70733e-21)
(1.3508 -0.0224216 -1.6635e-21)
(0.626508 -0.00122703 2.22942e-21)
(0.642321 -0.00152329 -3.90601e-21)
(0.827509 0.01725 -4.3843e-20)
(0.655728 0.000570576 -1.50824e-21)
(1.18509 0.198744 -4.63633e-22)
(0.641731 -0.522914 -6.68098e-21)
(0.672698 0.00147268 -8.45455e-22)
(1.07832 0.202863 -4.19388e-20)
(0.779419 0.0195226 4.36332e-21)
(0.239783 0.0457645 8.3614e-22)
(0.109881 -0.207051 -6.4347e-21)
(0.897954 0.0229001 5.75809e-20)
(0.0780675 -0.235229 -6.13424e-22)
(0.322919 -0.000713419 6.60238e-21)
(0.674726 -0.0063076 -2.14437e-20)
(0.270249 0.0559306 -3.88279e-21)
(1.00415 0.0819537 -4.58831e-20)
(0.956904 0.183021 7.70853e-22)
(0.219005 -0.00318432 -4.57138e-21)
(0.968108 0.00121185 3.77493e-21)
(1.39247 0.0972955 -1.68314e-21)
(0.237677 -0.354473 -7.88968e-21)
(0.159547 0.00113384 5.75851e-22)
(0.235577 0.00273568 -6.94981e-21)
(0.963222 0.212277 -1.08561e-20)
(0.663504 -0.00182407 -8.08693e-21)
(0.683087 -0.120355 -1.11247e-20)
(0.927346 -0.0728247 -2.24523e-21)
(0.0515769 0.0122669 3.02341e-21)
(0.738381 -0.0557178 2.05469e-21)
(0.654497 0.00242849 -1.88869e-20)
(0.612051 0.141209 -1.40359e-20)
(0.0423828 -0.232347 -5.76222e-21)
(0.00183222 -0.0841252 1.07016e-20)
(0.23394 -0.370917 1.38838e-20)
(1.00386 0.0942224 3.73598e-20)
(0.994628 0.236333 -1.02071e-20)
(0.64832 0.000477729 -3.80904e-20)
(0.642634 0.00267167 -1.49892e-20)
(0.600337 0.00080066 -5.47342e-21)
(0.601897 0.00033738 -3.36004e-21)
(0.641008 0.000163328 6.47283e-21)
(0.608463 0.00033273 7.52241e-21)
(0.610619 -0.00144279 -9.43677e-21)
(0.631351 -0.00233049 3.78111e-20)
(0.62114 -0.00345707 -1.24738e-21)
(0.681669 0.00189789 -1.11159e-20)
(0.868523 -0.000289464 1.93361e-20)
(0.881503 -0.0011605 -1.961e-20)
(0.882309 -0.000639794 8.87273e-21)
(1.0346 0.137981 -4.48276e-20)
(0.978592 -0.110006 5.02022e-21)
(0.205904 0.000379437 -7.57191e-21)
(0.474871 -0.57695 1.12908e-20)
(0.610142 0.0307591 1.70588e-20)
(0.661137 0.141996 3.8216e-21)
(0.971629 -0.0707484 4.32132e-22)
(0.327256 -0.00217537 -9.65946e-21)
(0.367558 -0.000893948 -1.18319e-20)
(0.602499 0.12374 -3.84957e-21)
(1.07901 0.186628 7.10784e-21)
(1.04334 0.184153 -5.20864e-21)
(1.05455 0.190931 1.61342e-20)
(0.969206 -0.000586722 -1.79145e-20)
(0.769124 -0.684244 -5.32051e-21)
(0.423743 -0.000312664 2.55402e-21)
(0.362864 -0.00491098 -7.44009e-21)
(0.928012 0.092803 9.21197e-21)
(1.11772 0.2059 -7.53662e-21)
(1.15022 0.151122 -1.30703e-20)
(0.00125175 -0.0477292 -6.59915e-21)
(0.605208 0.144016 2.16436e-20)
(0.883662 -0.000397507 5.40312e-21)
(0.88184 -3.38901e-05 6.94395e-22)
(0.708878 -0.422337 3.20099e-20)
(1.00161 0.0901817 -4.48162e-21)
(1.30012 0.119644 -5.45388e-21)
(0.912854 -0.0964068 2.12689e-22)
(0.682772 0.175355 2.09722e-20)
(1.16817 -0.21924 2.10016e-21)
(1.06659 -0.208473 -3.05942e-21)
(0.9286 -0.000998065 3.83114e-20)
(1.02357 0.240481 -4.43743e-20)
(0.576229 0.0476685 -2.75765e-20)
(0.616891 0.133927 8.47244e-22)
(0.966981 0.224499 -1.92283e-21)
(0.981022 0.220557 1.91555e-20)
(0.767917 -0.217542 1.05027e-20)
(1.14021 0.157056 8.25463e-21)
(0.100769 -0.214784 1.28195e-20)
(0.419371 -0.000148794 4.48255e-21)
(1.03541 0.221964 1.35445e-20)
(0.821556 0.00304021 1.74627e-20)
(1.46694 -0.043756 -1.19477e-21)
(0.695115 0.00826854 2.01997e-20)
(1.13509 0.203117 3.54244e-20)
(0.590818 0.138881 -1.37379e-20)
(0.770214 0.110583 2.49355e-20)
(0.907557 0.120828 -8.10688e-21)
(0.382368 -0.00351703 1.78516e-21)
(0.2685 0.000925033 4.976e-22)
(1.15366 -0.236503 -8.22712e-21)
(0.396703 -0.000780729 7.14075e-22)
(0.0338794 -0.140913 3.29684e-20)
(0.00471161 -0.0298188 -3.36647e-20)
(0.917987 0.310231 5.55216e-20)
(0.967032 -0.0727407 3.30261e-21)
(1.02991 -0.263265 7.7989e-21)
(0.625363 -0.237258 -9.70495e-21)
(1.14706 0.156711 3.22076e-20)
(0.563688 0.128972 -1.93351e-20)
(0.941564 -0.000643075 1.41277e-20)
(0.820027 0.00203301 -1.81459e-21)
(0.924425 -0.224783 -3.75056e-21)
(0.630203 0.148294 -9.59605e-21)
(1.18472 0.115766 6.24291e-21)
(1.32481 -0.501437 -1.93298e-20)
(1.09107 -0.191289 1.6664e-21)
(0.978301 0.211743 -1.63294e-20)
(0.724784 0.152857 1.07744e-20)
(0.601934 -0.00589367 3.66131e-20)
(0.283262 0.0386942 -7.12466e-21)
(1.09991 -0.618412 -1.5565e-20)
(0.0679362 -0.273489 9.44102e-21)
(0.867065 0.0867137 -1.38505e-21)
(0.856606 0.0202174 2.64792e-20)
(0.922851 0.0867791 7.67833e-20)
(0.873011 0.217097 5.37131e-21)
(1.22947 0.0958635 6.73196e-23)
(0.827732 -0.47127 -1.11594e-21)
(1.00123 0.177886 -2.75695e-20)
(0.949195 0.202603 -7.59085e-21)
(0.819938 0.00269051 -4.12386e-21)
(1.22279 0.156732 -4.90064e-22)
(0.739891 0.00132886 -2.59502e-21)
(1.09638 0.155608 3.95767e-20)
(1.062 0.188786 -2.93404e-20)
(1.03239 0.25335 -3.23145e-20)
(1.16504 -0.239067 1.5678e-20)
(0.0814159 0.0195334 4.28356e-22)
(0.870896 0.062037 6.46899e-20)
(0.402219 -0.0239105 5.59224e-20)
(0.851407 -0.30298 -4.18905e-21)
(0.539707 0.0555594 3.54406e-20)
(0.133326 -0.00103638 8.73167e-21)
(1.15427 0.210427 8.01965e-21)
(0.848285 0.0468682 3.88262e-21)
(0.797057 0.00130535 -2.07134e-20)
(0.89129 -0.00111227 6.10902e-20)
(0.453548 0.0614226 5.74722e-22)
(0.74777 -0.0224758 3.21633e-20)
(1.06712 0.211036 -8.12231e-21)
(0.82305 -0.000680561 9.15955e-21)
(0.776384 0.0249746 9.66069e-21)
(0.831663 0.195845 -6.21193e-21)
(0.494058 -0.410305 1.43842e-20)
(0.954462 0.216565 -7.78226e-21)
(1.21937 0.108776 3.78418e-21)
(1.14546 -0.180825 -6.78978e-21)
(0.99573 -7.53057e-05 -1.61239e-21)
(0.988207 -0.143689 -3.91012e-21)
(0.0680538 -0.121624 1.43173e-21)
(0.971924 0.204879 -3.50667e-21)
(0.93229 0.178645 -3.32788e-21)
(0.177276 0.0400141 -7.60052e-21)
(0.0504794 -0.0770982 -8.28483e-21)
(1.14985 0.089847 3.97523e-21)
(0.949164 0.20712 3.71833e-21)
(1.03539 -0.148685 5.13682e-21)
(0.955178 0.219922 3.05495e-20)
(0.377649 -0.0699348 -2.24152e-20)
(1.24332 0.118105 1.44263e-20)
(0.33694 0.0800947 3.08665e-21)
(0.812289 0.193683 2.18596e-20)
(1.21262 -0.153591 -2.23242e-21)
(1.05742 0.193667 -8.28418e-21)
(0.603964 0.138326 9.9513e-21)
(1.00653 -0.15861 -5.33594e-21)
(0.321455 0.0751387 -6.2811e-21)
(0.886486 0.293612 -5.92031e-21)
(0.895985 0.0863197 -7.25256e-21)
(0.775516 -0.145304 5.8635e-21)
(1.10573 0.189332 -4.96465e-20)
(0.853284 0.291352 1.66594e-20)
(1.31717 0.0447052 -4.31271e-21)
(1.1117 0.186443 1.41124e-21)
(0.967392 -0.00155914 -1.15861e-20)
(0.798962 0.259516 -3.09014e-20)
(1.09843 0.135388 -5.11187e-20)
(0.23703 -0.267292 2.46263e-20)
(1.04821 0.231283 -2.47493e-20)
(0.42988 0.040671 1.57178e-20)
(1.36631 -0.451317 1.34135e-20)
(0.658041 0.158733 2.62205e-21)
(0.957665 -0.0452064 -3.75881e-22)
(0.684773 0.00363925 1.69533e-21)
(0.95896 -0.0358136 -2.5154e-21)
(1.02089 0.123214 7.57593e-21)
(1.02476 0.179294 -4.41652e-21)
(0.977957 -0.106404 -4.39952e-21)
(0.164529 0.0385522 1.99888e-21)
(0.990899 -0.0600832 -1.78556e-22)
(0.226889 0.000453005 -4.49058e-21)
(1.04709 0.21946 -1.04884e-20)
(1.05814 0.175344 -7.15504e-22)
(1.05667 0.227528 1.16064e-21)
(0.623623 -0.503292 1.18478e-20)
(0.990339 -0.000366281 -2.52873e-21)
(0.106428 0.0237136 3.20659e-21)
(1.38118 0.00345576 4.93009e-21)
(0.108765 0.000358542 -2.10766e-20)
(1.03588 0.219567 3.39995e-20)
(0.955987 0.00150528 3.39432e-20)
(0.675232 0.000146936 -5.94548e-21)
(0.873774 0.0674765 -2.67784e-20)
(1.27089 0.0880213 -2.37769e-20)
(0.82684 -0.49139 1.84416e-20)
(1.08344 0.169152 -2.7382e-22)
(0.117745 -0.000333421 8.74424e-21)
(0.792189 0.187642 1.78985e-21)
(1.04242 0.227707 -1.96254e-20)
(0.945498 -0.00347275 -1.97967e-21)
(0.969037 -0.0742648 1.13363e-21)
(0.908422 -0.0334418 -4.39989e-21)
(0.67425 0.000749303 2.4223e-21)
(0.960173 0.200282 9.81971e-22)
(1.31918 0.151515 -9.17259e-21)
(0.868135 -0.000153627 -1.72304e-20)
(0.886592 0.0861581 6.85968e-21)
(0.81981 0.0029934 5.52614e-21)
(0.236847 -0.00275051 2.38634e-21)
(0.638364 -0.615484 1.46501e-20)
(0.578886 0.112617 2.20987e-21)
(0.880367 0.0158375 -8.48027e-20)
(1.10832 0.191162 2.57303e-21)
(0.205084 0.0321851 2.14206e-22)
(0.812171 0.00110837 -1.35313e-20)
(0.184532 0.0617569 -2.0735e-20)
(1.08523 0.208939 -6.36878e-21)
(0.726235 0.0294289 1.98057e-20)
(1.34542 0.119452 3.9943e-22)
(1.05144 -0.568001 -5.16728e-21)
(0.432027 0.147904 -2.28372e-20)
(0.807289 -0.020797 2.70917e-20)
(1.06121 0.192412 -1.65217e-20)
(1.00887 0.162867 -4.01769e-20)
(0.578728 0.132613 7.15282e-21)
(1.00239 0.164251 -8.45748e-22)
(0.752609 0.00131203 -2.61717e-20)
(1.1216 0.201896 -1.29225e-20)
(0.910089 0.0111556 1.67179e-20)
(0.882648 -0.0580798 1.41478e-20)
(0.671744 0.0317285 2.65397e-21)
(1.17261 0.198675 8.40828e-21)
(0.132569 0.059228 3.00196e-21)
(0.877047 0.298533 -2.34056e-22)
(1.12882 0.193376 -1.31791e-21)
(0.618202 0.133766 -2.87585e-21)
(0.676263 -0.00343069 -2.41753e-21)
(1.45457 0.000632712 5.59422e-21)
(0.540278 -0.638975 -2.09416e-20)
(0.94571 0.123506 5.00905e-20)
(0.82121 -0.00177961 6.74407e-21)
(0.0649 -0.222975 -1.40424e-20)
(0.586905 0.125833 1.06663e-20)
(0.909718 -0.624268 2.13177e-21)
(1.11896 0.192212 -1.65448e-20)
(1.12116 0.13038 1.60189e-21)
(0.991795 -0.082697 3.13832e-21)
(0.713083 0.106673 1.9243e-23)
(0.695576 -0.375579 -1.32816e-20)
(0.615668 -0.576259 -1.0405e-20)
(0.559868 0.120755 -7.70217e-21)
(0.972372 0.208462 -2.42411e-20)
(0.604561 0.287409 1.01452e-21)
(1.12237 0.187447 -2.88589e-20)
(1.34124 -0.0158771 3.01791e-21)
(0.0316331 -8.37072e-05 1.44281e-21)
(1.22271 -0.256872 5.56263e-21)
(1.10483 0.135754 1.06844e-20)
(0.768323 -0.151031 1.04958e-20)
(1.02696 0.218031 -1.27063e-20)
(0.212482 -0.446266 6.80873e-21)
(0.580583 0.125154 1.47528e-20)
(0.0670511 -0.244127 1.76751e-22)
(0.668563 0.00102956 3.27754e-21)
(0.775833 -0.0133635 2.2308e-20)
(0.640783 0.137197 2.95019e-21)
(0.725061 0.000972906 -4.1003e-20)
(0.81353 -0.00144394 6.35727e-22)
(0.11848 0.0275757 5.10951e-22)
(0.670875 0.00249162 -3.11399e-21)
(0.533952 0.115699 2.10317e-21)
(0.956177 0.200691 -2.96662e-21)
(0.726239 0.0262004 1.36492e-22)
(0.686307 -0.0334747 -1.3301e-20)
(0.514563 0.102541 -1.00868e-21)
(1.19112 -0.201478 -2.80511e-21)
(0.731117 0.157069 -2.47706e-20)
(0.813034 -0.0370467 -1.07083e-21)
(0.909875 0.110878 -1.66325e-20)
(0.600802 0.12829 -8.06622e-22)
(0.225893 0.0485445 -6.93592e-22)
(1.16016 -0.325313 2.0828e-21)
(1.02975 -0.295033 8.22041e-21)
(0.994155 -0.169187 6.23252e-21)
(0.186823 -0.409868 5.5791e-21)
(1.23352 0.121437 -5.86332e-22)
(0.678219 -0.132338 1.67142e-20)
(0.600267 0.13083 7.90395e-21)
(1.12787 0.130324 1.62557e-20)
(0.810243 0.00218459 -4.50007e-21)
(1.42797 0.0341149 6.45685e-21)
(0.665363 0.0014717 -9.94529e-22)
(0.679528 0.233084 2.59467e-21)
(0.936055 -0.0212666 -1.64651e-21)
(0.533931 0.238929 -8.33099e-21)
(0.14502 -0.00154261 2.69958e-20)
(0.511381 0.111921 5.5952e-21)
(1.11456 0.160492 -1.01719e-21)
(0.352125 0.0792728 -1.94714e-21)
(0.523649 -0.639725 -6.09665e-21)
(0.92227 0.29935 1.27314e-20)
(1.21196 0.130505 -4.53211e-21)
(0.00859284 0.000475106 -3.80951e-20)
(0.552435 0.119026 -5.14177e-21)
(1.09199 0.218094 1.9594e-21)
(0.923046 -0.216845 1.01219e-21)
(0.979865 -0.0664949 9.50269e-22)
(1.16091 0.210956 9.9516e-21)
(1.21313 0.135626 -9.46479e-21)
(0.858145 0.160953 3.75508e-21)
(1.35573 0.0311506 -7.47946e-22)
(1.17352 0.207473 2.27056e-20)
(1.17021 -0.300056 -1.09111e-21)
(1.00875 0.216949 1.59387e-20)
(0.811887 0.000601159 9.5578e-22)
(1.11597 0.204411 2.19847e-21)
(0.680273 0.000966097 -3.19478e-21)
(0.50802 0.110535 2.86515e-21)
(0.50725 0.109716 3.14046e-21)
(1.41482 -0.128558 -2.93149e-21)
(1.04994 0.210742 5.45388e-20)
(0.00156682 -0.0111887 -1.42037e-20)
(0.0885461 -0.3 -1.3642e-20)
(0.693757 -0.0363295 4.23715e-20)
(0.461817 0.101957 8.21438e-21)
(0.246053 0.00293674 7.05827e-23)
(0.774097 -0.481102 3.11224e-22)
(0.848264 -0.630961 -6.82871e-21)
(0.00915645 -0.0640058 -1.77384e-20)
(0.658681 0.25307 -4.30777e-20)
(1.42603 -0.367194 8.84998e-21)
(0.984947 -0.134622 -1.96894e-21)
(0.863204 -0.00537823 2.27355e-21)
(0.820326 0.00170628 -6.8085e-22)
(0.932093 -0.00117155 2.7919e-20)
(0.608305 0.122635 -2.97406e-21)
(0.987098 0.205558 6.53328e-21)
(0.957656 0.235247 1.0426e-20)
(0.889821 -0.0575099 -6.76391e-21)
(0.912979 0.107246 -5.1361e-22)
(1.13159 0.214763 6.37492e-21)
(0.79686 -0.560487 1.7564e-20)
(0.954782 -0.00531792 -2.71569e-21)
(0.0721762 -0.266539 -3.80031e-21)
(1.11499 0.181531 -1.08473e-20)
(0.838037 0.0352448 4.66409e-20)
(0.814368 0.3318 -1.30447e-20)
(0.980422 -0.0606711 -2.54696e-21)
(0.562308 -0.00619092 -1.48337e-20)
(0.976396 0.215346 -8.14871e-22)
(0.893958 -0.0551697 6.40883e-22)
(0.576204 -0.0164531 -1.64012e-20)
(0.882966 0.00191405 -4.63543e-21)
(0.251644 0.0561939 -4.33914e-21)
(2.49683e-05 -0.0130647 5.41935e-21)
(0.98254 -0.000146173 -2.32687e-21)
(1.32996 0.149996 1.06643e-21)
(0.946602 0.000557642 1.48062e-20)
(0.848295 -0.615698 7.15542e-21)
(2.24942e-06 -0.0137566 2.11617e-20)
(0.492966 0.111581 1.44602e-20)
(0.325042 0.064354 -1.85595e-20)
(0.754813 0.00162911 1.77806e-20)
(0.795946 0.0280811 9.24358e-22)
(0.94131 0.196107 6.16632e-21)
(1.03612 -0.561276 5.60727e-21)
(1.12052 0.204666 1.48703e-20)
(0.0306977 -0.118616 -2.61522e-20)
(0.434822 -0.569799 -6.86471e-22)
(0.316665 0.0785525 -9.15091e-21)
(0.970353 0.212655 4.586e-21)
(1.25265 0.0597503 8.0486e-21)
(1.00821 0.0826371 7.12807e-21)
(0.958041 -0.00416343 -2.06326e-21)
(0.932713 0.301751 8.1266e-22)
(0.681048 0.00109962 -9.70249e-22)
(0.169534 0.0633769 5.12405e-21)
(1.13363 0.201508 -1.60123e-20)
(0.745348 0.000926133 -9.89093e-22)
(1.02087 0.207455 -1.90641e-20)
(0.886672 0.222056 -1.99128e-20)
(0.186398 0.0694271 -8.02414e-21)
(0.441864 0.18028 6.21395e-21)
(0.7478 0.0780793 2.23578e-21)
(0.906377 -0.0524571 2.46381e-21)
(1.04596 -0.205962 5.48882e-22)
(0.0631554 0.0445828 -8.50545e-21)
(1.16927 0.11988 7.52643e-21)
(1.09766 -0.204765 4.97146e-22)
(1.0831 0.224628 3.783e-20)
(0.747422 0.00217678 -2.60974e-22)
(1.45133 0.0259397 2.56586e-23)
(1.13806 0.201984 -1.83217e-20)
(0.978387 0.228005 -5.24305e-21)
(1.05102 0.11962 -6.3583e-21)
(0.0909733 0.0208592 -9.55185e-22)
(0.945486 0.00101684 2.06067e-20)
(0.286314 0.0588974 1.1392e-20)
(0.908454 -0.0540474 -4.02943e-21)
(1.20349 0.132663 1.47598e-20)
(0.973311 0.224107 5.62751e-21)
(0.455059 0.220218 -2.16346e-20)
(0.570297 0.115305 -1.13219e-21)
(0.751532 -0.00264883 4.49611e-21)
(0.0566605 -0.0002678 -3.91627e-21)
(0.0587161 -4.17401e-05 -3.01119e-21)
(0.0559339 0.00173298 7.34539e-21)
(0.0575074 -6.25462e-05 7.49541e-21)
(0.0589204 0.000138068 -1.82865e-21)
(0.05572 -0.000286408 -6.1003e-21)
(0.0596959 -0.000260657 4.25864e-21)
(0.0597305 -0.000342733 1.14367e-21)
(0.0567356 0.00049042 -2.17261e-22)
(0.0549879 -0.00140209 4.03252e-21)
(0.0608824 -0.000409553 2.4978e-21)
(0.0594197 9.13667e-05 5.29404e-22)
(0.0554099 0.000114968 -4.0967e-22)
(0.0592171 -0.000215328 -1.62731e-20)
(0.0580002 5.12362e-05 -1.74877e-20)
(0.0570179 6.63597e-05 4.28996e-23)
(0.0629406 -0.000545972 6.80428e-21)
(0.0590982 -0.000442344 -5.0732e-22)
(0.0556559 0.00107661 -1.18801e-21)
(0.056995 -0.000214226 2.35504e-20)
(0.0616639 -8.79206e-05 -9.25882e-22)
(0.0614462 1.42119e-05 8.49227e-21)
(0.060156 7.2913e-05 -6.72589e-22)
(0.0553963 0.000187752 -4.67985e-21)
(0.0611345 -6.50305e-05 -2.63077e-21)
(0.0640707 0.000356832 5.15708e-21)
(0.0593831 -7.97652e-05 6.23658e-21)
(0.0562933 0.000597457 -1.87546e-23)
(0.0554035 -4.64222e-05 -5.48056e-21)
(0.0577846 0.000340555 -5.07444e-22)
(0.059235 -0.00039706 -7.26864e-21)
(0.055194 -0.00022976 1.02733e-20)
(0.0610371 0.000518512 5.78112e-21)
(0.0601897 -0.000945378 5.80505e-21)
(0.0592021 -0.000448537 1.01365e-20)
(0.0611476 -9.14659e-05 2.41199e-21)
(0.0582681 0.000224299 -2.69147e-21)
(0.0571119 9.37357e-06 3.00656e-21)
(0.05594 0.000315387 6.54382e-21)
(0.0564529 -0.000119954 3.18781e-21)
(0.0639392 -8.73464e-05 4.50444e-21)
(0.0643421 1.02234e-05 -2.54798e-21)
(0.0601369 0.00037546 -5.25643e-22)
(0.063472 -0.000446078 3.81152e-23)
(0.0577083 -0.000678557 9.59439e-21)
(0.0593735 0.000305274 -5.9616e-21)
(0.0559164 -6.67592e-06 9.16076e-22)
(0.0611266 -0.00049572 1.54991e-20)
(0.058617 0.000101001 8.13701e-21)
(0.0531558 0.000864724 -3.76985e-21)
(0.0596987 4.60172e-05 -1.30661e-20)
(0.0562557 0.000201962 1.2103e-21)
(0.0611524 -0.000114285 -3.57364e-21)
(0.0568054 0.000433454 -7.24539e-21)
(0.066689 -0.00142762 3.3278e-21)
(0.0606549 -3.97637e-05 -1.71356e-21)
(0.0578595 0.000420865 -6.63758e-21)
(0.0586852 -0.000485593 -5.574e-21)
(0.0587786 -3.46506e-05 6.91357e-22)
(0.0587298 -0.000258055 2.93382e-21)
(0.0594198 6.31569e-05 9.2571e-22)
(0.0513213 -0.00123256 3.78084e-21)
(0.0618324 0.000904984 -2.93048e-21)
(0.0569221 -0.000372005 7.6982e-21)
(0.0577821 2.1681e-05 -3.59395e-21)
(0.0557548 5.20375e-05 1.24579e-20)
(0.0569643 -0.000337024 4.76636e-21)
(0.0695576 0.00091271 -8.76464e-21)
(0.06228 -0.000444753 -8.55159e-21)
(0.0579248 0.000249788 1.63002e-20)
(0.0591015 -8.54433e-05 9.66695e-23)
(0.06087 -0.000372131 -7.07514e-21)
(0.0602766 0.000156964 -1.06652e-21)
(0.0589949 -0.000434494 9.29211e-21)
(0.0566086 -0.000121021 1.03724e-20)
(0.0595376 0.000686014 1.13736e-20)
(0.0552249 -0.000276517 4.01603e-21)
(0.0587503 5.07406e-05 -7.12301e-21)
(0.0583765 -0.00024081 -2.17183e-20)
(0.0583525 0.0001156 2.33891e-22)
(0.0590637 0.000111813 2.83357e-21)
(0.059847 9.67259e-05 -8.84504e-21)
(0.0576202 0.00071293 -2.31041e-22)
(0.0579974 -0.000268828 -1.92991e-20)
(0.0586913 0.000109572 6.39261e-21)
(0.060891 0.00139378 -1.98495e-21)
(0.0584739 2.65566e-05 -3.79802e-22)
(0.0626945 -0.000118564 -1.61759e-21)
(0.0556465 -7.42004e-05 -1.43005e-20)
(0.0558228 -8.19518e-05 7.46119e-21)
(0.0601927 0.000500733 3.00966e-20)
(0.058561 0.000664556 9.94722e-21)
(0.0574365 0.00035799 -5.39905e-21)
(0.0628644 0.000199595 1.34163e-22)
(0.0555839 -0.000106191 -9.62624e-21)
(0.0643766 -0.000558185 -1.86897e-21)
(0.0581834 -0.000679731 -3.07001e-22)
(0.0606827 0.000173269 1.60904e-21)
(0.0581515 0.000124672 6.66675e-21)
(0.0637933 -0.000721953 3.22186e-20)
(0.0598608 -0.000536019 2.45249e-21)
(0.0591254 4.23298e-05 9.06278e-21)
(0.0562735 0.000611717 2.05124e-20)
(0.0582435 0.000309954 5.08329e-21)
(0.0605466 0.000235954 6.57235e-21)
(0.0636435 0.000139797 1.4737e-20)
(0.0585593 0.000187011 1.02442e-21)
(0.059424 0.000386439 2.24645e-21)
(0.790951 -0.017235 7.81531e-21)
(1.30655 -0.0791128 -1.58573e-22)
(0.967658 0.220328 1.87789e-20)
(1.21076 0.19256 -1.6762e-20)
(0.00614687 -0.117215 1.45508e-20)
(1.0883 0.207624 5.37186e-22)
(0.981032 0.237212 -2.39634e-20)
(0.73111 -0.0279027 2.82541e-21)
(0.763319 0.0017126 -1.40769e-20)
(0.149901 0.000169995 2.789e-21)
(1.0478 0.228962 1.4533e-20)
(0.614621 0.110506 -5.03779e-23)
(0.754085 0.000925733 -1.9693e-20)
(0.74545 -0.00227358 -2.13304e-22)
(0.802187 0.18865 -2.57521e-20)
(1.03147 0.131407 -1.50935e-20)
(1.11118 0.189819 3.4866e-20)
(1.20102 -0.585812 1.32187e-20)
(1.03032 0.243076 2.12418e-20)
(0.877327 0.0452074 7.11082e-20)
(0.963703 0.210276 -7.13227e-21)
(0.952467 -0.00570707 -7.38517e-21)
(0.940758 -0.00726692 -6.47761e-21)
(1.1424 0.211703 8.72598e-21)
(1.02683 0.168193 -4.10902e-20)
(1.04706 0.227018 3.35699e-20)
(1.11369 0.144707 -1.31426e-22)
(1.03677 0.161803 -4.04815e-21)
(1.17132 0.208332 -2.53628e-22)
(0.872985 0.0506979 -1.36838e-21)
(1.28289 -0.14335 -1.28438e-21)
(0.991264 -0.000208262 2.16223e-24)
(1.07725 0.226879 1.61394e-20)
(0.896402 -0.191616 4.71762e-21)
(0.78072 0.0175761 -1.44713e-20)
(1.12819 0.149259 4.37574e-20)
(0.599563 0.129583 2.37214e-21)
(1.27822 0.0330098 9.97791e-21)
(1.13192 0.192197 3.43053e-21)
(1.25533 0.179546 -9.38861e-21)
(1.05569 0.14113 5.76903e-20)
(1.16249 0.192208 2.68294e-20)
(0.947485 -0.0246443 -2.42414e-21)
(1.35943 0.130585 -2.26541e-22)
(0.767957 -0.132518 1.40101e-20)
(1.29554 0.0348038 9.081e-21)
(1.01807 0.197486 -3.43974e-20)
(0.993523 0.257256 1.25947e-20)
(0.100991 -0.264159 -1.28777e-20)
(0.941915 0.221756 9.55836e-21)
(0.528332 0.273638 -1.27883e-20)
(0.799943 0.16318 -1.07721e-20)
(1.17021 0.209418 -4.85563e-23)
(0.953681 -0.0345075 -1.00698e-21)
(1.10703 0.200823 -1.61577e-20)
(0.983372 0.154474 -3.78279e-20)
(0.324085 0.0730668 1.4304e-20)
(0.101909 0.0206141 -1.1757e-21)
(1.32867 0.0321627 -8.25208e-21)
(0.0293416 -1.47026e-06 -7.76216e-21)
(0.807936 0.332883 -2.33321e-21)
(0.820556 -0.589761 -1.42352e-20)
(0.961502 0.216897 -2.57915e-21)
(0.729144 -0.211537 7.46228e-21)
(0.952747 0.192654 7.82368e-21)
(1.09696 0.190142 -1.28653e-20)
(0.0624082 -0.000456123 5.32151e-23)
(0.0618777 -2.33746e-05 -6.25568e-22)
(0.959146 0.195622 8.06672e-21)
(1.08516 0.225061 1.74143e-20)
(1.32333 -0.128615 -1.35614e-21)
(1.30822 0.0703116 -2.31183e-23)
(0.912575 0.280926 -1.0237e-20)
(1.29664 -0.075803 -2.21549e-21)
(0.712934 0.165622 -2.49059e-20)
(0.644293 0.137249 7.93407e-21)
(0.0561293 0.000352597 4.09689e-21)
(0.0543103 0.00102551 3.41663e-21)
(0.829777 0.2043 8.45212e-22)
(1.23353 0.168289 3.47181e-22)
(0.92239 0.303884 -2.62524e-21)
(0.777656 -0.689944 -2.66561e-20)
(1.18003 0.114578 -2.82495e-20)
(0.106616 -0.231965 1.86408e-22)
(1.0891 0.2002 -1.32162e-20)
(0.180747 0.0432875 3.92211e-21)
(0.817568 -0.681411 -1.65628e-20)
(0.792613 -0.00239229 4.96333e-23)
(0.143125 0.0299072 2.15948e-22)
(0.420359 0.000459948 1.10476e-20)
(0.905732 -0.181265 7.41871e-21)
(0.956917 0.207955 -1.15682e-20)
(0.559902 0.216684 6.1437e-20)
(0.320793 0.139967 7.73811e-21)
(0.253532 -0.392163 2.29795e-20)
(9.93414e-05 -0.0471986 -8.25774e-21)
(0.876424 -0.0184045 -1.16844e-20)
(0.976059 0.201518 -1.37755e-20)
(1.04866 0.210986 -2.71273e-21)
(0.666785 0.119447 9.5431e-22)
(0.0349809 -0.217928 -2.36023e-20)
(1.30301 0.0634576 -1.66558e-22)
(0.974239 -0.000123067 3.48953e-21)
(1.24594 0.164771 3.54455e-22)
(1.05387 0.209257 3.94791e-21)
(1.25241 0.0474873 6.86728e-21)
(0.979756 0.205655 1.19755e-20)
(1.17139 0.196772 -1.31877e-20)
(0.554771 0.274846 -1.65471e-21)
(1.03269 0.218042 -2.12509e-20)
(0.730116 0.304856 -3.53436e-21)
(1.18829 0.112154 -1.79539e-20)
(0.554098 0.120222 -8.37988e-21)
(0.581234 -0.480658 7.96857e-21)
(0.977305 0.203004 1.12031e-21)
(0.149207 0.00418079 -3.46616e-20)
(0.968482 0.23962 -3.3844e-22)
(1.37529 -0.319883 1.46638e-20)
(0.925692 -0.0950486 -8.34901e-21)
(0.909526 -0.0114051 -1.3294e-21)
(0.491434 -0.389316 -2.35315e-20)
(0.741891 0.00271714 6.09971e-23)
(1.34959 -0.0346395 -6.74299e-22)
(0.671037 -0.523864 -8.82638e-21)
(1.04527 0.112551 -3.77605e-20)
(1.31895 -0.152417 -9.85408e-22)
(0.518187 -0.24244 3.3745e-21)
(1.00584 0.0773125 -5.27571e-21)
(0.977029 -0.0455095 -3.71794e-21)
(1.17615 0.197536 -2.29071e-20)
(1.20671 -0.190589 -4.81923e-21)
(1.13553 0.101022 -3.10128e-21)
(0.615882 -0.0231778 -3.71713e-21)
(0.689722 -0.0025824 1.83224e-20)
(1.14963 0.188106 6.4774e-21)
(0.178459 0.00269428 3.64131e-21)
(0.27826 -0.172308 3.28504e-21)
(0.834664 0.329827 9.97585e-21)
(0.0789914 0.0450326 1.61639e-20)
(1.07581 0.213369 -1.45616e-22)
(1.38186 -0.205402 -6.63623e-21)
(0.920258 -0.139765 3.32352e-21)
(0.992939 -0.113459 -4.96763e-21)
(0.972483 0.203825 4.44549e-21)
(0.00711169 -0.10783 1.56615e-20)
(1.11793 0.180307 1.94343e-20)
(0.398306 -0.00112267 1.67064e-21)
(0.968193 0.20137 -1.17438e-20)
(0.359198 -0.00136305 -5.33311e-21)
(0.989986 0.0847474 1.81143e-20)
(1.32106 0.0257032 -1.80421e-21)
(0.874638 -0.00159585 -5.76347e-21)
(1.17254 -0.230006 -1.17131e-20)
(0.506086 -0.230721 3.65059e-21)
(1.18782 0.136895 3.1208e-20)
(0.842208 0.17925 -1.27635e-20)
(0.128824 0.057318 -5.15769e-21)
(1.24978 0.167018 -5.30081e-22)
(0.795825 -0.360439 8.18481e-21)
(1.12639 0.195536 -2.31358e-21)
(1.16515 0.118543 -7.3305e-21)
(0.942219 -0.0604319 -6.34506e-21)
(0.416711 -0.000820582 -4.97172e-22)
(1.13159 0.183374 2.54365e-20)
(1.0042 -0.120661 5.77723e-21)
(0.831016 0.00102523 5.77789e-21)
(0.983543 -0.13017 8.21342e-21)
(1.01046 0.228746 -4.70312e-21)
(0.931849 -0.0231759 -2.51007e-21)
(1.08798 0.219884 2.22636e-21)
(0.963895 0.092836 1.32649e-20)
(1.04003 0.247156 -1.58361e-20)
(1.25545 0.158384 -8.15793e-21)
(1.05371 0.11414 -2.78655e-20)
(0.367932 0.0630971 1.09127e-20)
(0.794028 -0.579486 1.13627e-20)
(0.14157 -0.00134053 6.56012e-23)
(0.545218 -0.45308 -8.25704e-21)
(0.91946 0.226218 3.93197e-20)
(0.984729 -0.108554 -1.19109e-21)
(1.23918 0.194409 5.8333e-21)
(0.84531 0.322208 2.54552e-20)
(0.874843 -0.00606797 1.69141e-21)
(0.90831 0.308307 8.29156e-21)
(0.959317 0.199332 7.50463e-21)
(0.800881 0.334073 1.77821e-20)
(0.98338 -0.0491557 3.19282e-21)
(1.29166 0.0723892 5.83077e-21)
(0.156971 -0.365733 -1.85562e-20)
(0.94241 0.296091 -3.41952e-21)
(0.554779 0.119153 -3.2573e-22)
(0.41834 0.0935057 1.44906e-21)
(0.0535303 -0.255152 3.28914e-21)
(0.849674 0.198925 -4.61739e-21)
(0.963847 0.201739 1.40295e-20)
(1.15302 0.141758 3.33819e-20)
(1.22827 0.105623 -3.42432e-21)
(0.853713 -0.338047 7.3839e-21)
(0.22432 0.0014317 -3.59183e-21)
(1.26987 -0.023709 -3.39375e-21)
(0.964313 0.234183 -6.41975e-21)
(0.288473 0.0621722 -1.68111e-21)
(0.867423 -0.107302 -4.64393e-21)
(0.750827 0.305829 4.09186e-20)
(0.865716 -0.00504696 1.05461e-20)
(0.96042 -0.00243825 -6.19951e-21)
(1.15356 -0.207296 -6.31056e-21)
(0.613668 0.13326 -4.3517e-21)
(1.02295 -0.254542 2.39646e-21)
(1.17266 0.11681 1.09967e-20)
(0.116656 0.0252628 -6.62234e-22)
(0.997005 -0.174789 -7.14466e-22)
(0.985923 0.187256 -5.92732e-21)
(1.1471 -0.188977 -4.38886e-21)
(1.38934 -0.425937 -4.94082e-21)
(0.530524 0.288159 5.0237e-21)
(1.2096 0.190457 2.27041e-20)
(0.432507 0.184591 1.77461e-21)
(1.28136 -0.0403897 1.23509e-21)
(0.372699 -0.259471 1.28616e-20)
(1.23806 0.101833 1.18568e-21)
(0.479302 -0.140009 1.71896e-20)
(0.819653 0.00109753 -2.23214e-20)
(1.18888 0.100368 1.57133e-20)
(1.22622 0.100179 2.85502e-20)
(0.0663461 -0.276017 1.0614e-20)
(1.1394 0.212222 1.5314e-21)
(0.151118 0.0340014 -2.60725e-21)
(0.0944088 -0.00956026 4.91112e-21)
(1.11093 0.201052 -9.47388e-21)
(0.884077 0.206354 -4.93822e-20)
(1.17282 -0.315382 3.6901e-21)
(0.0500272 0.0107329 -4.75509e-21)
(1.02352 -0.156399 -1.00641e-21)
(0.854904 -0.105278 1.11549e-20)
(1.11565 0.202581 -5.62202e-21)
(0.904321 -0.138481 -2.60784e-21)
(0.915253 -0.100042 4.14865e-21)
(0.85422 0.208122 2.87749e-20)
(1.21485 0.191007 -9.6735e-21)
(1.14594 -0.318853 9.29145e-21)
(1.37364 -0.120803 1.42902e-21)
(0.00108196 -0.0414228 1.44676e-20)
(1.11717 0.168902 -3.23908e-20)
(0.100607 0.0216984 3.82063e-21)
(0.465497 -0.126148 2.0904e-20)
(1.34532 -0.479791 5.45542e-22)
(0.560068 0.00798222 -2.33154e-20)
(1.14043 0.179262 -3.15095e-21)
(0.949821 0.197466 -1.28212e-20)
(1.45468 -0.308409 -7.36428e-21)
(1.13276 0.213656 -1.15906e-21)
(0.863885 0.310447 -1.83276e-20)
(0.221909 -0.014543 2.79496e-20)
(1.01307 0.212691 1.46247e-20)
(0.727926 -0.119091 1.41531e-20)
(0.96825 0.286114 -4.63813e-20)
(0.941191 -0.0145487 -3.65053e-21)
(0.150261 0.00150216 6.06138e-22)
(0.58951 0.11852 1.33527e-21)
(1.27103 -0.48708 1.01604e-20)
(0.994393 0.269776 -1.79458e-20)
(0.979574 -0.04614 1.16696e-21)
(0.942047 -0.0187549 -2.67959e-22)
(0.97707 -0.584906 2.88933e-21)
(0.99848 0.264197 2.91913e-20)
(0.441582 0.148039 2.61503e-20)
(1.05819 0.176201 -4.75718e-20)
(0.649133 0.146491 -1.00909e-22)
(1.34938 -0.424372 9.76502e-21)
(0.867818 -0.470503 2.85618e-22)
(1.03174 0.210593 1.09821e-21)
(0.98987 -0.000373732 -7.23376e-22)
(0.491356 0.0535949 -2.5655e-20)
(0.902461 -0.144153 7.59516e-21)
(0.974657 0.280622 4.25791e-21)
(0.821423 -0.0424634 1.67405e-20)
(0.896247 0.219679 -5.44873e-20)
(1.25452 0.164068 1.15756e-20)
(0.946379 -0.00548981 2.06284e-21)
(0.927492 0.222384 7.59527e-20)
(0.0612783 0.0136212 2.83182e-21)
(0.885842 0.177777 -1.25947e-20)
(0.424824 -0.000341967 -2.49472e-23)
(0.0590833 0.0133099 -5.93224e-22)
(1.20584 0.130796 -9.78672e-22)
(1.01284 -0.168721 -2.37899e-21)
(0.013834 -0.0622778 -1.35007e-21)
(0.967181 0.196875 -2.38005e-20)
(0.872032 -0.000323589 1.27021e-21)
(0.770714 0.0102626 5.81696e-21)
(0.942666 0.000821947 2.7582e-20)
(1.1586 0.210838 -7.54955e-21)
(0.95049 -0.0352804 -2.32761e-21)
(0.794714 0.317989 2.28512e-21)
(1.24634 0.0611772 -2.12215e-21)
(0.951777 -0.0741593 -1.94598e-21)
(0.936567 0.187519 -6.21712e-22)
(1.03578 0.209192 1.58506e-20)
(1.11553 0.196751 -3.39561e-21)
(0.102014 -0.000449295 8.82398e-23)
(1.06324 0.127633 -1.5196e-20)
(1.09156 0.19925 -1.95792e-21)
(0.700084 -0.122721 6.01786e-21)
(1.13205 0.154057 5.39831e-22)
(1.24919 0.165138 -2.8613e-21)
(0.910654 -0.0352804 -1.07838e-21)
(1.12463 0.200802 6.47916e-21)
(0.782448 4.84867e-05 3.39039e-21)
(0.101234 -0.000163805 -7.53008e-22)
(1.00197 0.134522 -1.66215e-20)
(0.904659 0.294965 -2.68503e-21)
(1.08799 0.190494 3.13891e-21)
(0.968895 -0.0395825 -1.01065e-21)
(1.4673 -0.102069 7.48816e-22)
(0.942307 -0.0701356 -1.34118e-21)
(1.23794 0.165556 4.00513e-21)
(1.16842 0.180322 1.72355e-20)
(0.0300901 0.00681995 -7.62481e-22)
(0.370145 -0.0532886 -2.51043e-20)
(0.964879 0.205856 -8.2863e-21)
(1.31052 0.0382093 -2.25899e-21)
(0.973693 -0.0420328 -3.00375e-22)
(0.948469 -0.00015341 -5.579e-22)
(0.214409 -0.00403853 1.51831e-20)
(0.889583 -0.000961502 -3.24718e-21)
(0.0672029 -0.0306994 -1.01744e-20)
(0.215283 -0.000800228 -1.08415e-21)
(0.553113 -0.475294 -9.92314e-21)
(0.198971 -0.0464841 -2.14532e-20)
(0.952307 -0.0270786 3.00335e-21)
(0.224131 0.00231848 -2.44394e-22)
(0.959672 0.288416 5.07672e-20)
(0.987328 0.272543 4.2212e-20)
(1.01102 0.0905744 2.16647e-20)
(1.04194 0.209534 -2.27148e-20)
(0.950651 -0.0763779 6.82095e-21)
(1.25546 0.0527825 -1.17357e-20)
(0.977972 0.214167 3.12439e-20)
(1.40937 -0.342208 -4.5965e-21)
(0.692703 0.190261 -1.88912e-20)
(0.70681 0.109411 -6.66022e-22)
(1.2619 0.179591 -7.55793e-21)
(0.592382 -0.031549 2.85978e-20)
(0.370164 -0.000266133 -2.54716e-22)
(0.948248 -0.0326065 -4.83226e-21)
(1.24488 -0.270378 -2.20961e-21)
(1.03448 0.14452 -2.57374e-21)
(1.22947 -0.27068 4.32661e-21)
(0.977455 0.0833925 1.99294e-20)
(0.933429 -0.0244838 5.48407e-21)
(0.03138 -0.000177601 1.23906e-21)
(0.386739 0.0867819 -3.19895e-21)
(1.26021 -0.124515 -2.54015e-22)
(0.898689 0.106866 -6.9879e-20)
(0.0199559 -0.0661343 1.34328e-20)
(1.13659 0.210727 2.1757e-20)
(0.619705 0.124243 -6.9315e-21)
(0.987788 0.200417 2.01576e-20)
(1.27356 0.157425 3.49073e-21)
(0.989929 0.110623 -3.72321e-20)
(1.16489 0.181893 -1.44299e-20)
(0.936482 -0.127935 -2.64052e-21)
(0.709249 0.150204 7.53189e-21)
(0.725245 -0.623697 -1.94213e-20)
(0.932755 -0.125262 -8.60431e-21)
(0.699782 0.150825 -4.58655e-21)
(0.74317 0.00281722 4.90233e-21)
(1.0552 0.135283 -1.06091e-20)
(0.808354 0.00133972 1.97575e-23)
(-8.58335e-05 -0.0119234 -1.41484e-20)
(0.00536856 -0.122102 1.15319e-20)
(0.979309 0.207039 -4.36912e-22)
(1.09843 0.199276 -2.16108e-21)
(1.05958 0.229959 9.33352e-21)
(1.2848 0.156439 -9.46679e-22)
(0.440989 0.0941305 -3.45681e-21)
(0.690088 0.000479505 -1.32472e-20)
(0.11107 -0.330408 -1.88256e-21)
(1.1367 0.193011 2.3547e-20)
(0.156199 0.0367161 -5.00865e-21)
(1.19627 0.139301 -1.43999e-20)
(0.258042 0.0446859 2.59194e-20)
(0.439663 0.117759 1.15796e-21)
(0.669573 0.00217286 2.61145e-22)
(0.606743 0.000687988 -4.76423e-21)
(1.30408 -0.0108355 -1.54518e-21)
(0.696066 -0.00277577 -5.52857e-21)
(1.15078 0.209701 -2.00704e-20)
(0.332879 0.0811235 8.40502e-22)
(1.17506 -0.456667 6.31031e-21)
(0.905648 -0.00268863 7.17901e-21)
(0.0404125 -0.137596 -1.95867e-20)
(0.74501 0.156639 5.04021e-21)
(0.973918 0.197784 6.04498e-21)
(1.02514 0.242971 5.55145e-20)
(0.676913 -0.0332025 3.24465e-20)
(0.852156 0.00159485 -5.07265e-21)
(0.950068 -0.0332561 6.26526e-21)
(0.96805 0.131232 2.05127e-20)
(1.15044 -0.225675 -3.18124e-21)
(0.757073 0.0683954 -1.14864e-21)
(0.308204 -0.142189 -6.45039e-21)
(1.0473 0.178705 7.82017e-22)
(0.798839 0.00176832 -1.08468e-21)
(0.523581 0.117105 -1.81078e-20)
(0.0273804 8.77587e-05 1.62164e-20)
(1.13962 0.212727 -1.66772e-21)
(1.0617 -0.310421 -8.05925e-21)
(0.808096 -0.0511109 2.37577e-21)
(0.962445 0.192271 -1.12114e-21)
(0.662164 0.000515917 -1.77052e-20)
(1.36298 0.101794 5.08298e-22)
(1.03946 0.167957 -1.03878e-21)
(1.17909 0.188032 1.59164e-20)
(0.956934 -0.00443073 6.10736e-21)
(0.691654 0.0027561 2.64255e-21)
(1.38089 -0.350628 -4.47311e-21)
(0.884422 -0.441637 -9.88284e-21)
(0.927795 -0.00612129 1.45454e-20)
(1.31577 -0.143785 1.46923e-21)
(0.450647 -0.000719948 -4.93531e-21)
(1.47455 -0.187362 1.22877e-20)
(0.782093 4.53175e-05 1.1246e-21)
(0.897624 -0.00424686 1.41544e-20)
(0.391233 0.116337 1.15288e-20)
(0.87438 0.0562842 -1.68835e-21)
(0.880433 0.215099 1.24483e-20)
(0.540891 0.11721 -1.2131e-20)
(0.121351 0.000902267 -1.33924e-21)
(1.07107 0.179312 2.00951e-20)
(0.0441531 0.00860068 -2.73396e-22)
(0.0520715 0.0116978 2.23449e-21)
(0.481836 0.10835 -6.19623e-21)
(0.0412975 0.0105835 -1.97592e-21)
(0.147424 -0.363448 -9.22404e-21)
(1.07329 0.211475 5.67342e-22)
(0.0495521 0.0127918 2.71774e-21)
(1.22011 0.191448 8.53393e-21)
(0.912339 0.221819 -5.5424e-20)
(1.09645 0.193934 3.85455e-20)
(0.747134 -0.00725825 6.76394e-20)
(1.25845 0.160888 2.43371e-21)
(1.22718 0.181755 -6.3481e-21)
(0.64408 0.00201109 4.6862e-21)
(0.604081 -6.43752e-05 9.63469e-22)
(-0.00010881 -0.0134753 -7.79754e-21)
(0.0607701 -0.000252049 -1.26096e-21)
(0.0611138 -4.96652e-05 -2.3588e-21)
(0.954656 0.094252 -6.52702e-21)
(1.22083 0.193451 -1.75379e-20)
(-9.85605e-06 -0.0471905 2.2305e-21)
(0.797003 -0.000920455 6.32841e-22)
(1.02535 0.255199 -1.78896e-22)
(1.08661 0.181081 3.32219e-20)
(0.617784 -0.000359198 1.47087e-20)
(1.10457 0.122043 -1.80869e-20)
(0.440742 0.134347 -2.12937e-21)
(0.960733 0.129412 -8.04714e-20)
(1.43035 0.0622401 -1.66626e-21)
(0.982069 0.0825659 -3.15496e-20)
(0.292533 -0.0472387 -4.83345e-20)
(0.667903 0.00816777 1.05462e-20)
(1.01429 0.196319 3.35632e-20)
(0.642016 0.025704 1.74907e-21)
(0.628701 0.000491797 -1.32104e-21)
(0.890448 -0.186253 9.99348e-22)
(0.871476 0.0034384 1.21869e-20)
(0.658339 0.00203165 -3.26704e-21)
(0.645374 0.0292186 -1.06048e-20)
(0.222434 0.0103828 -1.27148e-20)
(0.652157 -0.000895718 2.88724e-21)
(0.677642 -0.0211796 -1.43279e-20)
(1.18765 0.190971 -2.05199e-21)
(0.776378 0.162369 -8.76577e-21)
(0.609386 -0.000625757 4.24884e-21)
(0.92114 -0.0817631 1.42605e-21)
(0.949276 -0.0542286 6.05795e-21)
(0.931045 -0.00600983 -4.28459e-21)
(0.675789 0.000987289 -5.18919e-21)
(0.402117 -0.000538807 1.469e-20)
(0.515199 -0.163577 -8.46535e-21)
(0.967729 -0.609916 -2.69482e-21)
(0.120091 -0.000665145 -9.96486e-22)
(0.127372 0.000173555 -1.55596e-21)
(0.121061 -0.000905734 -9.85991e-22)
(0.115679 -0.00014778 -3.37648e-22)
(0.122748 0.000383964 3.94359e-21)
(0.112834 0.000675484 -1.88526e-23)
(0.123069 -0.000104748 3.70676e-21)
(0.11906 -0.00127095 7.0377e-21)
(0.118374 0.000313704 -5.64018e-22)
(0.116782 0.000539496 -1.30587e-20)
(0.371579 -0.00133857 -1.33004e-20)
(1.02257 0.209135 -1.33095e-20)
(0.652778 0.00349499 6.33076e-21)
(0.485414 0.265218 5.59516e-21)
(0.607562 -0.00379043 -8.82703e-21)
(0.63409 0.00116148 -4.1814e-21)
(1.02558 0.137711 5.81208e-20)
(0.910027 -0.4829 -2.12044e-20)
(1.1611 0.113425 -1.11708e-21)
(0.967462 -0.0702569 5.33516e-21)
(1.18275 -0.525732 -1.1153e-21)
(0.918704 -0.00856424 -3.93482e-21)
(0.217094 -0.00331542 -5.96953e-21)
(0.0361121 -0.152967 -2.4319e-20)
(0.814012 -0.00126425 4.18439e-20)
(0.0498387 0.00957525 2.11512e-21)
(1.00399 0.252045 3.13246e-20)
(1.41491 -0.318453 -3.5598e-21)
(0.0937506 0.0220866 7.28095e-22)
(0.3282 -0.554121 -1.87763e-20)
(0.0459597 0.0111335 4.93515e-22)
(0.597719 0.000186354 1.67021e-21)
(0.645738 -0.000826998 -3.53642e-21)
(0.629617 -0.00252018 -4.64215e-22)
(0.37814 0.0855227 1.55865e-20)
(0.858811 0.00105438 -3.84253e-20)
(0.945033 0.187731 -1.09279e-20)
(0.934992 -0.144311 8.18527e-22)
(0.909968 -0.0451008 2.22068e-21)
(0.678221 -0.0111022 5.3608e-20)
(0.258648 -0.358238 2.79625e-21)
(0.809641 0.00589243 -2.85386e-20)
(0.484047 -0.165839 2.389e-20)
(0.800592 0.328025 2.2138e-20)
(0.589324 -0.000223906 4.30762e-22)
(0.616829 0.000503308 -3.50664e-21)
(0.634732 -0.0018479 3.64559e-21)
(0.649117 -6.28721e-05 7.95069e-21)
(0.665474 0.00133034 2.16242e-20)
(0.83529 0.186697 -1.01081e-20)
(0.0682892 0.0149269 -5.48953e-22)
(0.357221 0.221465 -3.88198e-21)
(0.669228 -0.00457595 -3.45104e-20)
(1.17613 0.207731 1.72247e-21)
(0.1222 0.000760202 -2.29113e-21)
(0.599867 0.000724657 3.76439e-22)
(0.618941 -0.00294881 -2.41493e-20)
(0.625025 -0.0031414 5.71936e-21)
(0.644006 0.00162058 1.77051e-21)
(0.639113 -0.0010329 -3.12344e-20)
(1.28472 0.0865111 -9.81518e-21)
(-0.000121237 -0.0133266 3.05653e-22)
(0.344232 0.067139 2.39218e-22)
(0.953746 -0.00625978 -1.28262e-21)
(1.29024 -0.466324 -4.12882e-21)
(1.01295 -0.137406 1.08456e-21)
(0.9636 0.18324 -1.35445e-22)
(1.26739 0.165234 2.44952e-21)
(0.986669 -0.0590238 -8.51536e-22)
(0.719217 0.291632 1.57336e-20)
(1.32949 -0.435747 1.5896e-21)
(0.195983 -0.404105 3.10561e-20)
(0.0588635 -6.80697e-05 1.03563e-20)
(0.0584068 -1.44496e-05 -1.8344e-22)
(0.992977 0.134308 -3.26546e-20)
(0.965097 -0.047933 3.46252e-21)
(0.115899 -0.000248209 5.19184e-24)
(0.338791 0.000761939 4.82565e-21)
(0.927806 0.273504 -9.65012e-21)
(0.876446 -0.000990203 4.31181e-21)
(0.882327 0.028231 1.50179e-20)
(0.773574 0.120618 7.51529e-20)
(0.960316 -0.0499257 -4.3786e-21)
(1.21584 0.125088 2.2458e-21)
(0.16033 0.0371929 -4.66459e-21)
(0.80838 -0.0904533 1.01594e-20)
(0.684001 0.176722 -4.98291e-20)
(0.685542 -0.139454 3.40612e-21)
(0.76619 0.00120112 1.68089e-20)
(0.593933 0.122654 7.58678e-22)
(0.950819 -0.0104441 4.21173e-21)
(0.121808 0.0290435 1.17707e-20)
(0.184018 0.00189797 -8.57785e-22)
(0.967008 0.217754 9.77739e-21)
(1.13567 0.202342 -1.00066e-21)
(0.864769 0.208223 -5.86162e-20)
(1.36231 -0.399107 5.06844e-21)
(1.25022 -0.132178 1.61246e-22)
(0.525229 -0.568208 6.43247e-21)
(1.37078 -0.237375 2.89368e-21)
(1.47283 -0.216241 7.04352e-23)
(0.612632 0.131768 -8.75315e-21)
(1.03559 -0.56304 1.25156e-20)
(0.989877 -0.0444569 -1.4642e-21)
(0.0725564 -0.0421347 -1.47551e-20)
(0.0952587 0.0203893 -2.21469e-21)
(1.32566 0.158519 1.38513e-21)
(1.00352 -0.174882 -3.96983e-21)
(0.233013 -0.000435678 -3.76303e-21)
(0.97595 -0.049126 2.56737e-21)
(0.990578 -0.0451358 6.0698e-22)
(1.0844 0.16895 -4.25892e-20)
(1.46367 -0.174335 -1.4147e-20)
(1.05777 0.155619 7.35068e-21)
(0.692186 0.0235776 -7.04086e-21)
(0.223657 -0.000852383 -8.70102e-21)
(0.199203 0.000503141 -4.77276e-21)
(0.0859254 -0.301421 -1.15789e-20)
(1.05482 0.205281 -7.29706e-20)
(1.46073 -0.238243 -9.86392e-21)
(0.913636 -0.0338097 -1.72899e-21)
(0.409108 0.055125 -1.73623e-20)
(1.08501 0.132916 1.40744e-20)
(0.386544 0.00138219 -8.16566e-21)
(0.305876 -0.0386771 1.17772e-20)
(0.89297 0.20455 6.98281e-20)
(1.39119 -0.359902 2.83479e-21)
(0.6247 0.0485892 2.88861e-20)
(0.98851 -0.0464875 5.75763e-22)
(0.281634 -0.163812 -1.45342e-20)
(0.110692 0.0243263 -1.84416e-21)
(0.969821 -0.0693853 3.70211e-21)
(0.83378 -0.0649216 5.58701e-21)
(0.217574 0.000274972 -2.41829e-21)
(0.208559 0.0434466 1.2103e-21)
(0.179911 0.0687917 -2.23377e-20)
(0.620772 0.0489048 -2.06574e-20)
(0.362612 0.0795988 8.21964e-21)
(0.997507 -0.498369 -1.84824e-21)
(0.948276 -0.0109676 -1.60114e-21)
(0.180275 0.0408422 -2.19404e-21)
(0.0581143 0.0129405 2.93522e-22)
(0.990016 -0.0513398 1.57913e-21)
(0.72469 0.126342 8.71607e-22)
(-8.27586e-05 -0.0143757 -1.51582e-20)
(0.0593816 0.0130721 -1.70739e-22)
(0.470674 -0.112711 -1.98762e-20)
(0.7382 0.177765 2.88626e-20)
(0.210849 -0.0526434 4.88864e-21)
(0.126285 -0.0225064 -1.07519e-20)
(1.43638 0.0271557 -7.82139e-22)
(0.522856 0.024677 -4.75192e-21)
(0.981731 -0.061631 3.11663e-21)
(0.815842 -0.0914995 -2.02994e-20)
(0.944253 -0.0268329 7.9264e-22)
(1.39908 -0.0445241 2.92764e-21)
(1.05002 0.134389 1.5986e-20)
(1.44974 -0.19303 -2.71533e-22)
(1.31861 0.105547 1.54634e-20)
(0.0927135 0.0220505 -5.81775e-21)
(0.198445 0.0431152 -1.7924e-21)
(0.0598638 -0.000474823 -1.03654e-20)
(0.0610664 -0.000141975 7.69795e-21)
(0.000782834 -0.0488204 2.26301e-20)
(1.44882 -0.2266 1.94494e-20)
(0.969233 -0.00119661 2.14164e-21)
(0.882068 0.314515 3.50053e-20)
(0.979792 0.20076 8.98682e-21)
(1.04263 0.209329 3.0798e-21)
(0.913239 -0.0816937 -4.85551e-21)
(1.28501 -0.0301605 -1.50957e-22)
(1.07425 0.228277 1.36074e-20)
(1.04678 0.141281 4.79678e-20)
(0.97608 0.17133 2.46282e-20)
(0.946785 -0.0181458 2.17605e-21)
(0.865287 -0.00229393 -8.78564e-22)
(0.0763793 0.0161506 -5.08758e-21)
(1.03028 0.252436 1.42618e-20)
(0.660619 0.0382899 -4.13058e-20)
(0.0575286 0.000441405 -1.92355e-20)
(0.0527464 -0.00123885 1.08583e-22)
(0.967336 -7.00323e-05 8.32327e-21)
(0.233315 0.00419177 4.02009e-20)
(1.24769 -0.491575 -4.06797e-21)
(-3.22573e-05 -0.011692 -2.12358e-20)
(0.96902 0.126913 3.66407e-20)
(0.328602 -0.173194 -3.74362e-21)
(0.774296 -0.207724 -2.4413e-20)
(0.628327 0.0218317 -5.27403e-21)
(0.65789 0.330327 2.94381e-20)
(0.956137 0.18634 7.67766e-21)
(1.18063 0.198224 5.41677e-21)
(0.000400869 -0.0437378 -9.94423e-21)
(0.907887 -0.00655228 4.57882e-21)
(0.681926 0.00129084 -9.30495e-21)
(0.693623 0.000527416 1.27655e-20)
(0.734571 0.192344 -1.74356e-20)
(1.20083 0.140715 -1.69784e-20)
(0.957492 -0.00162416 1.07306e-22)
(1.03388 0.21186 2.52846e-21)
(0.95076 -0.0209289 -6.76645e-22)
(0.762032 -0.0438838 -3.09029e-20)
(0.43327 0.0904937 1.88333e-21)
(0.906909 -0.149143 1.32461e-21)
(0.777704 -0.0211589 -1.47309e-20)
(0.819239 0.171837 4.38438e-22)
(0.795579 -0.000811389 2.44509e-20)
(1.09322 0.207958 -1.91463e-21)
(1.09473 0.22146 5.95596e-22)
(1.06557 0.130066 8.41886e-20)
(1.07994 0.208383 -6.93907e-21)
(0.0437572 -0.237901 1.03945e-20)
(0.990091 -0.0539953 -3.17928e-21)
(0.891312 -0.497464 7.95461e-21)
(0.700655 0.00551021 -1.76853e-20)
(0.0455796 0.0103308 1.45647e-20)
(0.834558 -0.0854283 -4.80778e-22)
(0.0455564 0.0105079 -3.85982e-21)
(1.01708 0.22058 -7.32921e-21)
(0.057751 0.012822 8.24945e-22)
(1.35054 -0.478239 -9.00694e-21)
(1.15744 -0.217639 -3.58721e-22)
(0.997973 0.18187 -5.95266e-20)
(0.928112 0.182579 4.37603e-21)
(0.671048 0.000834832 -5.11754e-21)
(0.949121 -0.0236862 6.16612e-21)
(0.973028 -0.0482908 -4.68827e-21)
(0.839368 -0.205521 -1.86828e-21)
(0.140926 0.000780732 -2.11839e-20)
(0.379822 0.0840736 -7.85848e-22)
(0.215096 -0.0332086 1.56616e-20)
(0.0807508 0.0188323 -1.60781e-20)
(1.15367 0.152804 1.57905e-20)
(0.825458 -0.000379237 3.60933e-20)
(0.389809 -0.0755237 1.58865e-20)
(0.973326 0.194266 6.73797e-21)
(0.139649 0.031397 3.61341e-22)
(1.14081 0.175322 1.17051e-20)
(1.42966 0.0410534 7.10616e-23)
(0.373332 0.0831288 4.84299e-21)
(0.1163 -0.166919 -4.33525e-20)
(0.454068 0.0997232 -4.66952e-21)
(0.0911969 -0.0521965 3.82855e-20)
(0.188485 0.0427648 3.64008e-22)
(0.67694 0.00144087 -2.50044e-21)
(0.0370367 -0.153074 2.66154e-20)
(-0.000143025 -0.0263394 4.26692e-21)
(1.20435 0.137435 7.20011e-21)
(0.787364 0.325209 -1.57454e-20)
(0.869428 -0.490138 -3.50416e-21)
(0.725393 0.12425 4.97418e-22)
(1.09812 0.208205 -2.27107e-21)
(0.950956 0.271946 -9.4392e-21)
(0.696826 0.137928 6.77371e-22)
(0.449775 0.101791 1.433e-20)
(1.14175 0.202022 -6.66524e-21)
(0.864306 0.007543 -2.64369e-20)
(0.442841 0.0980792 7.6041e-21)
(0.915862 -0.0354949 -1.61789e-21)
(0.61571 -0.0364154 -6.59892e-20)
(0.337279 0.150888 -2.93403e-20)
(0.276571 -0.377696 1.81064e-20)
(0.0812989 0.0194377 4.28117e-21)
(0.399764 -0.590183 3.63787e-21)
(0.687602 0.00153894 4.82438e-21)
(0.689288 0.0267379 2.18201e-20)
(0.361794 -0.243773 -2.16181e-20)
(0.68335 -0.00384987 -1.51566e-20)
(0.873958 0.000231709 -1.13618e-21)
(0.247285 0.0225831 2.29165e-20)
(0.252748 -0.151933 -7.54251e-22)
(1.00869 0.09422 -1.35031e-20)
(0.0326744 0.00674018 1.01773e-22)
(0.57905 0.168292 -1.17122e-21)
(0.902996 -0.43668 2.52179e-21)
(0.949786 0.000497727 2.6121e-21)
(0.849812 0.00194193 1.73427e-20)
(0.210114 0.0638049 2.39072e-21)
(0.719059 -0.0114287 8.49669e-21)
(1.20623 -0.509786 8.98953e-21)
(1.04852 0.245262 -3.67998e-20)
(0.0033791 -0.0657433 -1.42002e-20)
(0.702986 0.000964047 -5.33663e-21)
(1.29334 0.142891 3.5958e-21)
(0.106084 0.0227605 9.13569e-21)
(0.616685 0.181592 -2.27959e-21)
(0.898876 0.209968 -3.81075e-20)
(1.31853 0.14175 6.53928e-21)
(1.18047 0.135243 -2.8903e-20)
(1.05506 0.214978 -1.59533e-20)
(0.25033 -0.00960814 1.57187e-20)
(0.0471054 0.00931351 -2.23004e-21)
(1.33789 -0.0962093 -6.3768e-21)
(1.08366 0.128737 3.30584e-20)
(1.25176 -0.264507 7.7741e-21)
(0.047901 0.0127788 -3.89641e-21)
(1.09475 -0.263338 1.94442e-21)
(0.862125 -0.00922537 -9.74556e-22)
(0.999031 0.191266 5.84325e-22)
(0.451288 0.0570103 2.05251e-20)
(1.19845 0.100911 -8.16242e-21)
(0.924132 0.00166631 2.67826e-22)
(1.1523 0.211151 1.03445e-20)
(1.12118 0.175879 -2.90073e-20)
(0.0475688 0.0110456 -6.28937e-21)
(0.683935 3.28382e-05 -3.36192e-21)
(0.698714 -0.0338208 -1.63254e-20)
(0.701075 -0.0288673 -1.92645e-20)
(0.00291832 -0.0332969 -3.26839e-21)
(0.686085 -0.000479313 1.03763e-22)
(0.971522 0.169286 2.43051e-21)
(0.0812179 0.0154009 4.67573e-22)
(0.786923 -0.208062 1.39842e-20)
(0.7637 0.114157 2.28705e-22)
(1.15072 0.122127 -4.44677e-21)
(0.0827484 0.0207772 2.79898e-21)
(1.25951 0.0896963 4.85111e-21)
(0.630092 0.135587 -1.30821e-20)
(0.203074 -0.000698117 -3.71466e-21)
(0.935824 -0.111344 2.32747e-21)
(0.938707 -0.113617 -1.35069e-21)
(1.31227 0.0292451 -1.426e-22)
(0.809493 -0.000467166 2.59644e-21)
(0.375822 -0.0883386 -9.66419e-21)
(0.213653 -0.0301513 -1.47916e-20)
(1.06876 0.129219 -4.47078e-20)
(0.688904 -0.000203545 1.5593e-20)
(1.27243 -0.237562 5.97272e-21)
(0.365474 0.0450494 -3.20634e-20)
(0.89236 -0.178522 5.62851e-21)
(0.624017 0.046645 -2.11663e-20)
(1.02287 -0.172818 6.23291e-21)
(0.936348 0.278717 -2.02309e-20)
(0.0291757 -0.0706976 0)
(0.0412175 0.00858013 -1.06512e-20)
(0.702013 -0.0237199 -2.24042e-20)
(0.609612 0.18494 -7.99879e-21)
(0.0750217 0.015494 5.13198e-21)
(0.0388918 0.00987362 -9.7561e-21)
(0.908262 -0.228243 4.15394e-21)
(1.05232 0.21301 -1.87528e-20)
(0.890551 -0.109461 5.82376e-21)
(0.608428 -0.245927 -3.15644e-20)
(0.076466 0.0195226 1.5605e-21)
(0.693243 0.164331 -5.36031e-21)
(0.759874 0.166925 -1.23227e-21)
(0.650421 0.143216 -1.43854e-20)
(0.181818 -0.34588 -8.5818e-21)
(1.29995 -0.172477 -3.5117e-21)
(0.464659 -0.15308 -2.12443e-22)
(0.0985173 0.0237802 -1.1601e-20)
(1.09182 0.12584 -6.61279e-20)
(1.43404 0.0157276 1.06856e-21)
(0.699092 0.00113022 -7.27386e-21)
(0.150453 0.0328045 -1.84457e-22)
(0.196565 -0.0347923 -1.48962e-20)
(1.11843 0.177053 -5.07493e-21)
(0.889112 0.216408 2.15072e-20)
(0.687083 -0.00117138 1.51093e-21)
(-0.000168328 -0.033509 2.97368e-21)
(0.240852 0.0515832 -8.84452e-22)
(0.975771 -0.000940775 -2.8214e-21)
(0.836413 0.000882323 9.17169e-21)
(0.946552 0.00039792 -7.65835e-22)
(0.835111 -0.0787785 -1.76279e-21)
(1.15626 0.194978 3.603e-20)
(0.934281 0.00165471 8.68345e-21)
(0.35622 0.0804376 -2.72932e-20)
(1.23804 -0.440685 4.26906e-21)
(0.890212 0.0674503 8.54652e-20)
(0.979747 -0.0509694 5.96386e-22)
(1.29244 0.0859314 6.84648e-21)
(0.635613 0.154818 5.27562e-21)
(0.0657898 -0.0697366 1.80863e-20)
(0.734819 -0.12478 -9.68662e-21)
(1.12067 0.215021 6.07489e-21)
(0.517159 -0.422055 1.99726e-20)
(0.336337 -0.40028 2.27269e-21)
(0.799121 -0.0977614 -4.70273e-21)
(0.925075 -0.081821 3.678e-21)
(0.787606 0.000801354 7.39595e-23)
(0.466464 0.21264 1.09159e-20)
(0.927077 0.000595928 6.41573e-21)
(0.928113 0.000395976 1.3357e-20)
(1.16409 -0.521267 2.1437e-22)
(1.04482 0.120148 9.9338e-21)
(0.156908 0.036986 -1.11323e-21)
(0.334189 0.00413332 2.44364e-21)
(0.429824 0.00865421 -2.34442e-20)
(0.114996 0.0255225 -9.61394e-21)
(0.0215048 0.00590757 3.59653e-22)
(0.303145 0.114677 2.4174e-20)
(1.22058 0.0995526 -1.80388e-20)
(1.40716 0.0483352 -3.52974e-21)
(1.03195 0.204236 -2.35088e-21)
(1.40416 0.0292846 5.44926e-22)
(1.04139 0.213518 1.8593e-20)
(0.971654 0.245592 1.02532e-20)
(0.464142 0.111217 5.27948e-21)
(1.29064 -0.24011 -8.58493e-21)
(0.761609 0.181486 2.75193e-20)
(0.918614 -0.0502139 -6.12612e-21)
(1.01116 0.0926807 -1.92795e-20)
(0.311112 0.0699632 1.08035e-20)
(0.905782 0.114722 4.82274e-20)
(0.47714 0.108744 -1.06516e-20)
(0.714438 0.170629 1.92725e-21)
(0.94858 0.00410788 2.86911e-21)
(0.161454 -0.394643 1.32808e-20)
(1.29593 0.0788474 -5.97232e-21)
(0.854585 -0.0241048 6.6855e-21)
(1.31832 0.145646 8.54572e-22)
(0.775094 -0.136734 -5.82377e-21)
(0.825058 0.184179 5.37893e-21)
(0.634994 -0.439853 -1.68249e-21)
(0.880228 -0.00572532 2.36368e-21)
(0.895038 0.0210406 1.02751e-19)
(1.00269 0.0739684 2.90795e-20)
(0.654401 0.140899 -4.86714e-22)
(0.326729 -0.435302 2.52305e-20)
(1.0877 -0.357392 3.74597e-21)
(0.824816 -0.0105264 -7.11499e-21)
(0.583899 0.301957 9.19625e-21)
(0.823946 0.296509 -3.24397e-20)
(0.835033 0.0601986 4.97956e-22)
(0.970187 -0.0670302 1.13373e-22)
(0.872821 -0.000207247 -7.54513e-21)
(0.751219 0.157943 -4.62604e-21)
(1.00413 0.0743649 1.38957e-22)
(0.917458 -0.0051844 4.32133e-21)
(1.30975 0.153231 -1.93265e-21)
(0.679057 0.00063841 -1.71646e-20)
(0.941661 0.291984 -3.74563e-20)
(0.256045 0.0475919 6.90966e-21)
(0.620979 0.14953 -2.03584e-20)
(-4.13872e-05 -0.00532874 -9.25585e-23)
(0.22231 -0.000351179 -8.47553e-22)
(0.129215 0.0302795 7.99004e-21)
(1.23013 0.0762694 6.21207e-21)
(0.264798 0.0383848 9.39815e-21)
(0.290818 0.0531706 1.86519e-20)
(0.894687 0.0904874 8.96054e-21)
(1.29091 0.0114287 -1.80621e-21)
(0.918755 -0.352418 -1.33116e-20)
(1.04686 0.14757 -4.46803e-20)
(1.35395 0.109934 7.46386e-21)
(0.662772 0.000200204 4.97534e-21)
(0.584695 0.0533076 2.69365e-21)
(0.510707 -0.00562917 2.689e-21)
(0.950247 -0.0603256 6.43891e-24)
(1.03256 0.240721 -2.35791e-20)
(0.132583 0.0326318 -5.82554e-21)
(1.08999 -0.199157 7.00319e-23)
(1.05359 0.180914 1.96506e-20)
(1.14621 0.146108 -3.02475e-20)
(0.321086 -0.0407487 3.29739e-20)
(0.649328 0.00029689 -1.91434e-20)
(0.115937 -0.00041405 -1.57453e-21)
(1.09832 0.125641 5.36031e-20)
(0.983727 -0.0537504 -2.04193e-21)
(0.673223 0.000797862 -7.22264e-21)
(0.684037 -0.00184038 -7.92296e-22)
(1.25298 -0.309539 -6.69653e-21)
(1.34632 -0.127904 7.70814e-21)
(-0.000141328 -0.0448105 -5.7978e-21)
(0.697301 -0.0170617 -5.78049e-21)
(0.988135 -0.109456 2.63432e-21)
(1.1178 0.171421 -1.29972e-20)
(0.682338 0.0115691 -8.30753e-21)
(0.481606 0.104667 -1.1893e-20)
(0.323546 0.0728467 -6.55011e-21)
(-9.81177e-05 -0.0265298 -6.80113e-21)
(0.64754 0.00122831 -2.25615e-20)
(1.12864 0.214239 1.07739e-20)
(0.637271 -0.000722145 -9.55482e-22)
(0.697456 -0.0138572 -2.33621e-20)
(0.640063 -0.000959216 3.2123e-22)
(0.682843 0.00324487 -7.76694e-21)
(0.0402012 0.00841553 -3.53927e-21)
(0.811259 0.198298 -1.78863e-20)
(1.35035 0.133365 -1.47034e-21)
(1.19571 0.198687 -4.58947e-21)
(0.696496 0.00185854 -3.60962e-22)
(0.0386184 0.0095095 4.76419e-21)
(0.637743 0.000423349 5.59173e-21)
(1.05 0.214787 7.83643e-21)
(0.95312 -0.0485234 -6.15532e-21)
(0.672921 -0.000136678 5.76195e-21)
(0.365525 -0.193929 7.95772e-21)
(1.16098 0.186537 -1.96684e-20)
(0.681656 0.00207828 -9.97501e-22)
(0.629618 -0.000177261 1.48212e-20)
(0.90082 -0.0504919 4.83739e-21)
(0.662954 0.00221992 4.20461e-21)
(0.714478 0.00188542 5.75149e-22)
(1.23816 0.0697417 1.42465e-21)
(1.10853 0.119157 1.01691e-21)
(0.927158 -0.000515434 1.90937e-20)
(0.900129 0.113121 1.21912e-20)
(0.641798 0.329136 -1.35284e-20)
(1.27315 0.174475 5.84549e-21)
(0.699153 0.00134422 4.0871e-21)
(0.633105 0.138186 -3.34647e-21)
(-0.000264856 -0.0122228 1.79637e-20)
(0.672875 0.0033204 -4.85256e-21)
(0.630125 -0.00396548 -1.20275e-21)
(0.654439 0.000104288 -5.9908e-22)
(0.621444 0.0444614 2.38094e-20)
(-5.31829e-05 -0.00678313 1.67399e-20)
(0.950086 -0.000249066 3.01298e-21)
(1.22997 0.165664 5.57861e-23)
(0.337252 -0.00260282 -5.65105e-21)
(0.328968 0.0603281 3.43162e-20)
(0.674594 -9.40221e-05 3.15526e-21)
(0.659203 -0.00259429 3.20909e-22)
(0.817743 -0.00136955 -5.36487e-22)
(1.13206 0.167115 4.97241e-22)
(0.563159 0.101147 9.09381e-24)
(1.02829 -0.142533 9.37668e-22)
(1.13219 0.213865 1.49417e-21)
(0.916162 -0.231778 -1.6039e-20)
(0.673272 0.00139165 2.072e-20)
(1.17925 0.20388 1.13286e-21)
(0.633946 0.000127967 3.73164e-21)
(0.701762 -0.00860348 -1.84493e-20)
(0.798232 -0.167267 -3.33389e-21)
(0.606596 0.000394849 1.72921e-20)
(1.06988 -0.166134 -2.1965e-22)
(0.622583 0.00130622 3.56251e-21)
(0.666829 -0.00181527 1.19505e-21)
(0.652024 -0.00221711 -8.22664e-23)
(0.110421 -0.281946 -1.32025e-20)
(0.269909 0.0706081 -7.68269e-21)
(0.116038 0.0234909 -2.7109e-21)
(1.02789 0.148446 -1.44503e-20)
(0.114213 -0.0983035 -2.27116e-21)
(1.11347 0.152289 -1.76082e-20)
(0.885678 0.304601 1.39677e-20)
(0.644864 4.70721e-05 1.00184e-20)
(0.66434 -0.00210036 6.06155e-23)
(0.774751 0.000366971 -2.06744e-20)
(0.678437 0.000238502 -6.59852e-21)
(0.540349 -0.00457525 -2.13614e-20)
(0.686444 0.333573 -5.44199e-20)
(0.831833 -0.0325415 -3.47247e-21)
(0.638465 0.132941 3.15588e-22)
(0.622775 -0.000461923 1.97031e-21)
(1.1169 0.201512 -1.99802e-20)
(0.873269 0.00233873 -3.22967e-21)
(0.69657 -0.00562355 2.85534e-20)
(0.987284 0.201937 -9.85137e-21)
(0.213636 -0.300213 -5.48331e-21)
(0.929779 -0.203558 -4.88502e-21)
(1.1541 -0.280903 7.56039e-21)
(0.615426 0.000640224 4.14605e-21)
(0.642113 0.000546362 -2.26417e-21)
(0.658021 -0.00153733 4.46886e-21)
(0.67146 -0.00137536 3.03869e-21)
(0.686295 0.000321156 -1.69291e-20)
(1.3965 0.0793538 -1.41675e-21)
(1.04088 0.201639 -1.06068e-20)
(0.691685 -0.00347919 2.30434e-20)
(0.0194866 0.00442769 -3.71397e-22)
(1.00784 0.226133 -1.58771e-20)
(0.241532 -0.000416312 1.22585e-21)
(0.330892 0.0534076 -2.96961e-20)
(1.01803 0.123388 -2.61135e-20)
(0.669236 0.0022948 -1.1052e-20)
(0.665738 -0.000657866 2.85726e-20)
(0.653836 -0.00336608 -1.22136e-21)
(0.647192 -0.00350094 2.27743e-20)
(0.852243 -0.314531 5.6913e-21)
(0.627009 0.00106314 2.94939e-20)
(0.668039 0.000735715 -2.34534e-20)
(0.641929 -0.00196591 -1.91811e-23)
(0.659895 -0.00188535 2.9305e-21)
(0.649447 -0.00370752 -1.51029e-20)
(0.640301 -0.0472419 -8.3846e-21)
(0.759191 -0.146821 -4.0927e-21)
(1.21548 0.177416 4.09583e-21)
(0.923195 -0.000535524 4.68647e-21)
(0.0272675 0.00587993 -9.03506e-24)
(0.355557 0.00105691 8.02045e-21)
(0.321239 0.0685936 -3.59592e-20)
(0.116324 0.000650573 -3.0912e-21)
(1.1813 0.200009 1.58719e-20)
(1.13473 0.210857 -4.96661e-23)
(0.642935 0.136709 -8.18819e-21)
(0.568526 0.310196 -5.56997e-21)
(0.662641 0.0176159 3.07796e-20)
(0.871319 0.00185409 9.19877e-22)
(0.567444 0.122944 8.79475e-22)
(1.11607 0.216092 1.69812e-20)
(1.00437 -0.133256 -8.00015e-22)
(1.07745 0.209766 3.16802e-21)
(0.838335 0.0440349 3.49792e-20)
(0.797117 0.000150232 1.60901e-21)
(0.58884 0.0494473 -5.0649e-20)
(0.145406 0.0279027 -2.07511e-20)
(0.577765 0.0533228 3.97927e-22)
(0.744852 -0.119243 -7.85545e-21)
(1.39352 0.04668 -1.05384e-21)
(1.09578 0.16174 1.81237e-20)
(1.31603 0.149011 6.11581e-21)
(1.03461 0.110241 1.14148e-20)
(1.15615 0.159006 4.1381e-22)
(0.990169 5.73877e-05 5.11105e-21)
(0.164356 0.0358785 -9.84824e-21)
(0.0602526 0.0131242 -2.4787e-22)
(1.04659 0.128458 1.73689e-20)
(0.168803 0.0381406 -3.95119e-21)
(0.103574 -0.000749662 8.115e-21)
(1.02227 0.247326 -3.29347e-20)
(0.16124 0.0377905 2.91915e-21)
(0.902436 0.304518 -4.12806e-20)
(1.12637 -0.258557 5.17335e-21)
(0.615939 0.133532 1.73688e-20)
(0.859753 -0.00226834 1.83712e-20)
(0.826982 0.153006 -2.26324e-20)
(0.953606 -0.000242404 -2.27783e-20)
(0.672655 0.00111795 3.69296e-21)
(0.797901 -0.0141743 9.90256e-22)
(0.98925 0.141137 -1.31645e-20)
(0.932597 -0.0208786 -5.37018e-21)
(1.00286 0.242488 -2.33334e-20)
(0.888426 0.00157946 4.66958e-21)
(0.869111 -0.0002304 -3.30546e-21)
(0.783496 0.00307905 -4.43459e-21)
(0.934836 0.270073 9.17648e-21)
(0.276257 0.0598424 -5.42579e-22)
(1.12184 0.190999 1.27488e-20)
(0.556711 0.101782 -8.47697e-22)
(1.04542 -0.179266 -4.71357e-21)
(0.890297 0.275191 -5.06247e-20)
(0.274632 0.0681307 1.10192e-20)
(1.0157 0.100992 4.34291e-20)
(0.852147 -0.259825 1.67716e-20)
(-0.000169542 -0.0134891 -2.11311e-20)
(0.897932 0.216697 -9.65768e-21)
(0.860523 0.00239126 -5.66159e-20)
(0.409016 0.00121576 7.18872e-21)
(1.15663 0.139163 -1.2391e-20)
(0.738182 -0.202504 7.70771e-21)
(0.750379 -0.346557 -2.51841e-21)
(0.643593 0.0257315 -1.49275e-20)
(0.0503655 0.0124562 3.71508e-21)
(0.679428 -0.00527005 8.61361e-21)
(0.0172084 0.00407035 2.60872e-21)
(1.21524 0.0759642 1.29886e-20)
(0.997948 -0.124077 -3.8572e-21)
(1.22684 0.17935 -4.53879e-21)
(0.0903561 0.0201838 -7.50877e-21)
(0.903624 -0.00495814 -6.3149e-22)
(0.4441 0.0989084 -1.66747e-21)
(0.0487678 0.00972902 -4.18338e-21)
(0.0487554 0.0103659 7.26043e-21)
(0.904306 -0.188753 -6.43859e-21)
(0.0462584 0.0102307 -4.62186e-22)
(0.950448 -0.00986116 -3.67154e-21)
(0.703099 -0.00199362 -6.7442e-22)
(0.959119 -0.509278 4.11098e-21)
(0.5851 -0.62179 -1.1359e-20)
(0.856878 -0.111331 -1.00818e-20)
(1.10814 0.130493 -1.69777e-20)
(1.13961 -0.223068 -1.77275e-22)
(0.0400101 0.00848055 3.23149e-21)
(1.00355 -0.136808 3.04948e-21)
(0.0388705 0.00963081 -1.01407e-21)
(0.99724 0.203204 -4.24156e-21)
(1.12964 0.178413 1.2274e-20)
(0.214511 0.000624119 -6.81169e-21)
(0.220003 -0.449211 2.31678e-21)
(0.28484 -0.481273 2.27339e-20)
(0.583445 0.124178 4.88285e-21)
(0.17933 0.040078 5.92657e-21)
(0.832934 -0.00539982 -1.97968e-20)
(0.217486 0.000193676 -8.31344e-22)
(0.610463 -0.660167 -3.60164e-20)
(0.942064 -0.0883219 2.15517e-21)
(0.354454 0.0799477 5.30971e-21)
(0.805406 0.189183 -4.65353e-20)
(1.41953 0.0318595 -3.54005e-22)
(0.657966 0.000726718 9.04249e-21)
(0.988166 -0.0587435 2.02485e-21)
(1.14033 -0.627224 -2.4803e-21)
(0.26335 -0.341289 -2.99598e-21)
(1.32096 0.0166879 1.38016e-21)
(0.753375 -0.37616 -7.13849e-21)
(0.893829 -0.000917344 1.93971e-20)
(1.20535 0.168097 1.63552e-20)
(1.16399 0.155503 -1.13253e-21)
(0.602565 0.27316 -2.69966e-20)
(0.751083 -0.00049518 4.33573e-20)
(1.01029 -0.140433 4.96672e-21)
(0.932425 0.293085 3.72626e-20)
(0.706808 0.14089 5.60159e-21)
(0.989259 0.000113638 3.97041e-20)
(0.983708 0.183315 4.4887e-21)
(1.19918 0.0817262 1.86953e-21)
(0.925813 0.00110622 2.12099e-20)
(0.206724 -0.000780918 1.55399e-21)
(0.658142 -0.0393907 2.21645e-20)
(0.949951 0.000753894 -5.20714e-20)
(0.646374 -0.00150392 -7.71366e-22)
(0.902506 -0.0588856 -8.89803e-21)
(1.0059 0.0794122 5.10807e-20)
(1.17758 0.202697 6.03692e-23)
(0.0531531 -0.157922 2.61974e-20)
(0.823935 0.318292 3.28323e-21)
(0.661524 -0.0326742 5.28003e-21)
(0.677766 0.147368 -4.10522e-21)
(1.02805 0.185168 -4.81685e-21)
(1.08088 0.128612 3.4223e-20)
(0.514803 -0.258857 -1.07478e-23)
(0.0211275 0.00413154 2.8197e-21)
(0.576148 0.227071 -4.92491e-20)
(1.03252 0.248297 -3.3346e-20)
(1.30626 0.150699 5.44601e-21)
(0.689614 -0.0316169 -2.9453e-21)
(0.736654 -0.0193525 -3.30972e-20)
(-2.8651e-05 -0.0551605 -1.03383e-20)
(0.919452 0.00114021 -2.95157e-20)
(1.0572 0.1798 5.3954e-21)
(1.29887 -0.525025 2.24531e-21)
(0.973856 0.219523 -1.27732e-20)
(0.635305 0.000386171 -2.35231e-21)
(0.948355 -0.000763351 -4.08931e-22)
(1.03317 0.177366 -1.23117e-20)
(6.94931e-06 -0.0327822 -4.98348e-21)
(0.892633 -0.359028 2.33429e-20)
(1.05244 -0.204177 1.28686e-21)
(1.11256 0.21311 6.26771e-21)
(-1.47456e-05 -0.00707177 1.36472e-23)
(0.00255578 -0.0914721 -7.07241e-23)
(0.599303 0.318985 -1.44193e-20)
(0.0857293 0.0163679 -5.43633e-21)
(0.986783 -0.000159488 4.12548e-20)
(0.72494 -0.330333 3.09328e-21)
(0.973368 0.000126607 -5.39419e-20)
(1.01373 0.102189 -4.10065e-20)
(0.949992 -0.00181169 -2.0707e-20)
(0.753948 0.160459 -2.02011e-21)
(0.840687 -0.0751433 -5.08858e-21)
(0.265923 0.00932116 -2.88911e-20)
(1.36012 0.118702 -6.03509e-21)
(0.891972 0.0571377 -9.67694e-21)
(0.29856 0.0667057 -1.07538e-20)
(0.910707 -0.19389 5.84131e-22)
(0.218053 0.068307 -2.38233e-20)
(0.680597 -0.0151881 1.32152e-20)
(0.317603 -0.121097 -2.38049e-20)
(0.672511 0.00377374 -5.74732e-21)
(1.13109 0.124668 2.39831e-21)
(0.652613 -0.237081 -6.22523e-21)
(0.924789 0.188069 -1.15158e-20)
(0.647877 0.138941 1.2984e-20)
(0.692818 0.00168621 -1.50819e-20)
(0.170798 0.0385907 2.32534e-21)
(1.02243 0.0965013 5.35109e-20)
(0.884554 0.000214737 4.04978e-21)
(0.265283 0.116059 7.79599e-21)
(0.361391 0.0901874 6.55278e-21)
(1.21154 -0.369388 -8.34747e-21)
(0.0259266 0.00531424 1.56529e-21)
(0.224065 0.0501583 -1.41485e-21)
(1.39962 -0.181097 -3.95088e-21)
(1.26506 0.00691482 7.5485e-21)
(0.750719 -0.205526 1.25477e-20)
(0.89251 0.0994332 -5.1626e-20)
(1.26663 -0.253398 -8.50661e-21)
(1.1509 0.186514 -4.00467e-20)
(0.347422 -0.00226831 -7.09977e-21)
(0.617089 0.130246 -2.43211e-22)
(0.115661 -0.00116257 -1.20014e-20)
(1.42536 0.0528832 -2.23932e-23)
(1.10803 0.215369 -5.40324e-21)
(0.909819 0.0803408 -7.59865e-24)
(1.15998 -0.177102 3.09335e-21)
(0.582311 -0.648853 3.07101e-20)
(0.156161 0.0080328 1.97654e-21)
(0.636682 0.00240136 1.44831e-21)
(0.020524 0.00495689 1.86294e-21)
(0.835474 -0.0344748 3.0942e-21)
(1.14181 0.211165 -2.15268e-20)
(0.0996926 0.0238421 3.63704e-22)
(1.0392 0.112768 6.01622e-20)
(0.118433 0.0245539 -3.82301e-21)
(1.05521 0.241348 1.60338e-20)
(0.671759 0.117322 -3.89217e-22)
(0.835803 -0.000609336 -2.8415e-21)
(0.602775 0.000493986 -4.60246e-21)
(0.792005 -0.198901 -4.03661e-21)
(0.578174 0.256631 2.37728e-21)
(0.768949 -0.0382928 3.26058e-21)
(0.99892 -0.0342811 -2.65825e-21)
(1.15804 0.196702 -2.88313e-20)
(0.657803 0.00111044 1.53493e-20)
(0.782503 0.000245566 -9.02297e-21)
(0.429777 0.099587 -1.71467e-21)
(0.719641 0.197917 -3.6622e-20)
(1.37549 0.0896025 -1.65088e-21)
(1.33271 -0.00452915 -1.69555e-21)
(0.841932 0.0191352 -7.69282e-21)
(0.66042 0.152754 2.15207e-20)
(1.01388 0.205723 -2.30563e-20)
(1.35747 0.127291 -4.87821e-21)
(1.09531 0.209583 -1.88948e-21)
(0.0831158 -0.0912862 2.59307e-20)
(0.887503 -0.00140929 -1.65584e-20)
(0.0440108 0.00832575 4.74753e-21)
(1.00148 0.092675 -4.85037e-21)
(0.24403 -0.482655 1.84566e-20)
(0.0454974 0.0106965 -4.38686e-21)
(1.02586 0.19836 -2.48738e-21)
(1.25244 -0.255205 3.7831e-21)
(0.729149 0.166507 -3.00267e-20)
(0.949157 -0.0217995 -6.78983e-21)
(1.26939 0.143508 -4.664e-24)
(0.865577 0.191793 3.23732e-20)
(1.08895 0.127792 3.90439e-20)
(0.98862 -0.0773729 -1.30044e-21)
(0.665116 0.167971 -2.07817e-20)
(-0.000142997 -0.0142695 -5.57361e-21)
(0.359727 0.0719548 -1.00516e-21)
(0.995681 0.144076 5.43422e-21)
(0.617591 -0.561713 7.75164e-21)
(1.29113 -0.00343078 1.56529e-21)
(0.628827 0.000818771 2.21716e-22)
(0.592567 0.128318 8.16505e-22)
(0.87206 -0.00183667 4.55761e-20)
(0.784463 0.16794 1.48355e-21)
(0.716225 -0.0232246 -6.82566e-21)
(1.08717 0.150078 -2.34592e-20)
(0.253348 0.00107049 -2.61768e-20)
(0.595548 2.816e-06 -7.24196e-22)
(1.03764 0.2391 3.93169e-20)
(1.40848 0.0558657 -4.60067e-22)
(0.766675 0.0159297 3.28186e-21)
(1.30203 0.0409374 1.00258e-21)
(0.624888 0.000344584 5.14433e-21)
(0.89455 -0.0957906 -6.87922e-21)
(1.40703 -0.40291 1.85016e-20)
(0.228532 -0.362717 -7.85946e-21)
(0.491085 -0.101133 1.00629e-20)
(0.957304 0.27605 4.64414e-21)
(0.971517 -0.000951743 1.12021e-20)
(1.06448 0.187665 -9.40206e-22)
(0.634995 -0.000299516 2.07042e-21)
(0.854275 -0.665156 -9.92049e-22)
(1.24563 -0.202391 5.83289e-22)
(1.40814 0.0772088 2.18941e-21)
(0.0727171 -0.00307743 3.70711e-20)
(0.0645845 -0.00306887 -1.47864e-20)
(0.647412 -0.00176609 -1.21649e-22)
(0.911178 0.0955336 4.28376e-20)
(0.433029 0.0968111 -1.62373e-20)
(0.708642 0.186649 2.4779e-20)
(0.332201 -0.228788 -3.20608e-21)
(0.637383 -0.0190872 2.10474e-20)
(0.636134 0.141256 7.5185e-21)
(0.888306 -0.0010289 -3.21335e-20)
(1.28934 -0.219558 4.81015e-21)
(0.411582 0.0910652 -6.32233e-21)
(0.0538934 -0.00104199 1.72566e-20)
(0.0534324 0.000895445 -8.67036e-21)
(1.13762 0.131502 -2.25112e-20)
(0.633325 -0.582473 -9.30518e-21)
(1.34667 0.131171 3.54411e-21)
(1.14796 0.212366 1.28129e-21)
(0.448407 0.105179 7.29089e-21)
(0.169099 0.0383481 -1.4308e-20)
(0.107378 0.00023563 -1.85542e-21)
(0.440454 0.092607 1.96635e-21)
(0.0207022 -0.0667103 9.26521e-21)
(0.229382 -0.0667542 -5.94712e-22)
(0.88405 0.020004 4.99933e-20)
(1.31321 0.112601 -2.1686e-21)
(0.504778 -0.176823 -1.63231e-20)
(0.94426 -0.0903277 -6.60204e-21)
(0.393993 0.0350332 1.42228e-21)
(0.606318 -0.000172083 1.08171e-21)
(0.891027 -0.181318 -3.27373e-21)
(0.674534 0.000131315 1.17357e-20)
(1.47206 -0.084062 -5.8156e-21)
(1.15393e-05 -0.0252452 -5.88862e-21)
(-8.65133e-05 -0.0330245 1.05876e-20)
(1.04596 0.182518 -7.70249e-20)
(0.440377 0.100222 -6.12703e-21)
(0.800054 -0.374782 -1.37146e-20)
(0.785647 0.00231084 -1.63667e-20)
(0.769879 0.000694183 -7.8081e-22)
(0.0552801 0.0128784 1.38111e-21)
(1.37783 -0.302998 -1.65129e-20)
(1.04697 0.135226 -2.11252e-20)
(0.937542 0.0873273 -2.94871e-20)
(1.31175 -0.176323 1.25047e-21)
(1.18121 0.104518 -5.12902e-21)
(0.514133 0.14695 5.96399e-21)
(0.59149 0.125599 -1.84119e-21)
(1.02153 0.210989 -1.34739e-20)
(0.978394 0.195765 -2.40864e-21)
(0.345428 -0.000276468 1.44668e-20)
(0.870842 -0.133833 -3.88173e-21)
(1.07159 0.227372 -3.6415e-20)
(0.652942 -0.0092536 1.12524e-21)
(0.648221 -0.000128256 -3.03523e-21)
(1.11966 0.200299 2.38524e-20)
(0.0580112 0.0325895 -1.98762e-20)
(0.309111 0.0081624 2.37456e-20)
(0.766684 -0.0128561 4.80956e-21)
(0.979823 0.193225 6.42852e-20)
(0.816287 0.0302714 -2.52197e-20)
(0.667201 0.00288661 2.79154e-20)
(0.205865 7.75514e-05 2.45799e-21)
(0.64989 0.161377 1.01635e-20)
(1.06005 -0.256986 3.70935e-21)
(0.509261 0.111743 2.04066e-21)
(1.16441 0.150172 9.8444e-21)
(0.218876 -0.000138653 1.41318e-20)
(0.249074 -0.165906 -5.11985e-21)
(0.618655 -0.00301104 1.06997e-20)
(1.14495 -0.303225 -3.92477e-21)
(1.02274 0.253483 4.37843e-20)
(0.717572 0.156341 4.48585e-21)
(0.325626 0.070746 2.18719e-21)
(1.02226 0.210168 4.65879e-20)
(1.16118 0.195466 2.73529e-20)
(0.797468 -0.0204229 1.56281e-20)
(0.903716 0.000253336 -2.24067e-20)
(0.814596 -0.152345 5.10258e-21)
(0.963635 0.132563 -1.4975e-20)
(0.243277 -0.142875 4.34816e-21)
(0.450688 0.0914275 -2.48665e-21)
(0.126087 -0.00239006 2.86048e-20)
(0.0941136 0.021485 5.96865e-21)
(1.15802 0.120199 -2.96652e-20)
(0.873098 0.285628 5.58325e-21)
(1.38084 -0.14739 -2.319e-21)
(1.15496 0.107821 -1.28649e-20)
(0.413678 -0.500523 -1.39776e-20)
(0.830066 0.141123 -8.37802e-22)
(0.637817 0.137228 1.1052e-21)
(1.13717 0.122494 1.26718e-20)
(0.752243 0.160704 -1.72558e-21)
(1.08892 0.160683 2.24005e-20)
(0.672416 0.146143 -9.84937e-21)
(0.779308 0.178333 5.80473e-21)
(0.138191 -0.310021 -2.43385e-20)
(0.845805 -0.00196349 3.91747e-21)
(0.872306 -0.00857187 -1.68352e-20)
(0.228146 0.0677087 2.08384e-20)
(0.636999 0.134389 4.44327e-21)
(1.04532 0.191193 9.43484e-21)
(0.967965 0.25521 -7.77989e-22)
(0.973627 0.269533 1.07946e-20)
(0.447733 0.0280068 -1.27635e-20)
(0.661162 0.143114 3.72369e-21)
(0.772567 0.275702 6.71146e-21)
(0.687287 -0.000795295 2.20587e-20)
(0.110322 0.00153846 8.89127e-21)
(1.23607 0.0759159 1.78374e-21)
(1.10068 -0.368757 1.11557e-20)
(0.182247 0.0381348 8.16756e-21)
(0.217227 0.000365249 -3.78593e-21)
(0.116415 0.000292254 6.20364e-22)
(0.868602 0.0021009 -1.37451e-21)
(0.0505241 -0.00108939 2.5441e-22)
(0.0525473 0.000628296 5.80152e-22)
(1.2566 -0.0841105 2.23144e-22)
(1.37395 0.102496 -3.11479e-22)
(-4.86842e-05 -0.0480623 6.16181e-22)
(0.996477 0.273661 4.69708e-20)
(1.13334 0.154745 -2.26956e-20)
(1.48568 -0.20476 3.53128e-22)
(0.874677 0.309932 -1.77555e-20)
(0.924888 0.00577591 -2.67051e-21)
(0.874272 0.0786071 -2.68855e-20)
(0.78321 0.119067 -4.94941e-20)
(0.548808 0.119446 1.80869e-20)
(0.782247 0.00194791 2.54356e-21)
(0.70435 -0.140215 -1.81879e-20)
(1.26115 -0.441565 8.6075e-21)
(0.559993 0.30137 1.25506e-20)
(0.0425782 -0.0367804 1.75791e-21)
(0.863413 -0.0144487 7.53269e-21)
(1.21537 -0.586701 9.05415e-23)
(0.308995 -0.00182304 -1.76746e-20)
(0.997776 0.0847158 4.76394e-20)
(0.253324 -0.00845921 -4.88527e-20)
(0.324916 -0.343715 1.50945e-20)
(0.965113 0.247918 -2.21472e-20)
(0.874483 0.000629147 -1.50142e-21)
(1.04855 -0.191033 -2.86736e-21)
(0.642213 0.00252815 -3.23223e-20)
(0.69657 -0.133975 1.55633e-20)
(0.492376 0.0992014 3.91784e-21)
(0.789217 0.127843 -2.56484e-20)
(0.976751 0.26657 4.43781e-21)
(0.892882 -0.00145115 -1.87183e-20)
(0.0876161 0.0197121 2.93601e-21)
(1.16425 0.146508 -5.91769e-21)
(0.177871 -0.249515 -5.70187e-21)
(0.992255 0.209517 9.55131e-21)
(1.18622 0.160096 -2.30281e-22)
(0.0558481 -0.000309484 -6.20453e-22)
(0.0617714 0.000388425 -4.62893e-21)
(1.2826 0.165833 1.89186e-20)
(0.904226 -0.643757 -2.93753e-20)
(1.22155 -0.177971 6.62201e-22)
(1.02441 0.000357694 3.46296e-21)
(0.652953 -0.666707 3.10637e-21)
(0.838046 0.0011135 4.51198e-21)
(0.206385 -0.0032017 -1.75394e-23)
(0.351842 0.0852607 -4.44449e-21)
(1.15544 -0.439478 8.9746e-22)
(0.796308 0.167137 -6.1234e-21)
(0.0550303 -6.10028e-05 6.45405e-22)
(0.0571865 -0.000744924 1.96118e-20)
(1.327 0.106273 -9.00807e-21)
(1.05976 0.216142 1.91823e-21)
(0.975151 0.180471 3.6903e-21)
(1.03762 0.18654 4.45065e-21)
(1.19174 0.1718 -2.67914e-21)
(1.02991 0.19704 9.0821e-21)
(0.353346 0.078151 -9.59268e-21)
(1.06923 0.216282 5.16568e-21)
(0.784638 -0.00021254 -2.29199e-21)
(1.02938 0.133138 -2.30119e-20)
(0.715054 -0.134236 1.64877e-20)
(0.933468 -0.000375677 -1.05495e-20)
(0.0229045 0.012804 3.05026e-20)
(1.19177 0.125583 1.7061e-20)
(0.796854 -0.00256606 -1.27831e-22)
(0.224467 -0.00182755 -1.24699e-20)
(1.10529 0.217095 2.72434e-20)
(0.0402431 0.00785035 -3.64712e-21)
(1.19643 0.109536 -3.19814e-20)
(0.621973 0.0233455 8.5616e-20)
(0.0416781 0.0103735 -9.89397e-22)
(0.659375 -0.0224696 -6.34959e-22)
(1.15077 0.203394 4.92358e-21)
(1.31406 0.139499 -6.81254e-21)
(4.82844e-05 -0.0248799 1.90386e-20)
(1.41637 -0.0322926 6.37797e-22)
(0.554476 0.109734 -1.72836e-22)
(1.01184 0.14801 2.5655e-20)
(0.113632 -0.000125257 3.10738e-21)
(0.0480794 0.0096345 1.47116e-21)
(0.486991 0.132233 1.87101e-20)
(1.17834 0.148899 5.38207e-21)
(0.0419669 0.0114775 -3.59243e-21)
(0.701076 0.149245 3.16063e-21)
(0.689886 0.147855 1.0069e-20)
(1.0947 0.184331 4.11699e-20)
(0.27672 0.00355308 9.31899e-21)
(0.947371 0.0936901 -2.52378e-20)
(1.31469 0.132193 -5.54873e-22)
(1.15978 -0.39823 4.13371e-21)
(0.30358 0.000987128 -4.50968e-21)
(0.203076 0.0448168 -5.53881e-21)
(1.10645 0.151845 -1.00516e-20)
(0.620504 -0.627924 3.95607e-21)
(0.976095 -0.0664508 2.92252e-21)
(1.11241 0.21688 -2.6622e-20)
(1.07561 0.174548 8.45428e-21)
(0.713134 0.151111 -1.0142e-20)
(1.26307 0.147884 1.49306e-21)
(-1.62066e-05 -0.00512109 1.58942e-22)
(0.833853 -0.0691159 -3.54749e-21)
(0.875458 -0.0180753 6.9778e-21)
(1.03724 0.215031 -7.50303e-21)
(0.960384 0.0981097 9.39547e-22)
(0.653855 0.141592 1.06732e-20)
(0.963052 -0.00144445 3.36889e-21)
(0.64596 0.161594 -1.47378e-20)
(0.983957 0.15957 4.4895e-20)
(0.923935 -0.00458956 4.80466e-21)
(0.102602 0.0240821 -2.46887e-22)
(0.789424 0.00161863 3.01451e-22)
(0.234035 -0.0971784 -2.93375e-20)
(1.30359 -0.431521 4.50752e-21)
(0.0434511 0.0105569 -1.90619e-21)
(0.92371 -0.00035351 2.74333e-22)
(0.805 -0.0959462 -8.26523e-21)
(0.563751 -0.580325 -8.96694e-21)
(0.821086 -0.0169611 1.04435e-20)
(0.970279 0.276337 1.2303e-20)
(0.949587 0.160531 1.68527e-20)
(0.963201 -0.00170732 3.53919e-21)
(0.636012 -0.244369 1.26809e-20)
(1.02985 0.107839 -6.13305e-20)
(0.550755 0.184844 9.96736e-21)
(0.192212 -0.00187978 -1.66632e-20)
(1.06649 0.184032 -4.76323e-21)
(0.0871097 0.0192292 -1.60032e-20)
(0.937971 -0.0171445 -8.52918e-22)
(1.11831 0.19555 7.05187e-21)
(0.84329 0.194349 1.20264e-20)
(1.08249 0.134917 -1.39322e-20)
(0.974031 -0.0674887 1.65894e-21)
(1.19495 0.105122 -4.00082e-21)
(0.0454213 0.00945325 -1.97872e-21)
(0.898911 -0.00091268 2.99527e-20)
(1.18841 0.190445 1.19437e-20)
(1.05758 -0.265961 -7.23306e-21)
(0.946111 -0.02184 -4.19266e-21)
(0.046433 0.0109393 -3.77928e-21)
(0.62931 0.00084937 -1.94747e-22)
(0.0900502 0.021533 -5.15478e-21)
(0.287069 -0.499606 -6.7664e-21)
(0.496302 -0.266102 2.23987e-20)
(0.967806 0.120135 2.29222e-20)
(1.05988 0.211453 -4.28965e-21)
(0.950184 -0.00034304 -5.72966e-22)
(0.149939 0.0344376 -8.11338e-21)
(0.132714 0.000309208 -1.4845e-21)
(0.125511 0.00041461 -3.10037e-22)
(0.110333 0.000461429 -8.93301e-21)
(0.117165 -0.000160306 -3.0367e-20)
(1.04328 0.244249 -6.21044e-21)
(1.34703 0.0208444 -7.03566e-21)
(0.784281 -0.131866 -1.1495e-20)
(0.993648 0.146758 -4.62014e-20)
(0.742048 -0.331446 1.88944e-20)
(1.0169 0.218614 1.80411e-20)
(0.0738711 0.016575 3.2989e-21)
(1.42314 -0.0491467 -1.12323e-20)
(0.816079 -0.000512109 -3.16512e-21)
(0.490593 0.0201093 5.27188e-21)
(0.620405 -0.000117989 -3.49829e-21)
(0.658733 0.000176994 -2.42468e-20)
(0.950525 0.148546 -1.30165e-21)
(0.557846 0.121252 4.36048e-21)
(0.115134 0.000848089 6.08447e-21)
(1.22251 -0.573762 -1.04385e-20)
(0.962498 -0.0437732 1.12461e-21)
(0.822948 -0.0382859 -8.61823e-21)
(1.09389 0.182821 -2.93253e-21)
(1.12742 0.157288 -5.82502e-21)
(0.629813 8.27527e-05 -2.6687e-21)
(1.26606 0.0453312 3.96506e-21)
(0.023712 0.0055496 1.10656e-21)
(0.692217 -0.00362972 -7.49206e-21)
(0.634058 -0.649314 3.31933e-20)
(0.693095 0.146434 -8.44179e-22)
(0.370169 0.0829563 -6.76376e-21)
(0.541528 0.0584457 -1.68997e-20)
(0.0723619 0.0144986 -1.53843e-22)
(-0.000167235 -0.0328131 -7.98712e-21)
(0.0581973 0.00199539 -1.50295e-21)
(0.282963 -0.193848 2.82226e-20)
(1.2493 -0.099913 3.99634e-22)
(1.07025 0.182851 -2.10944e-20)
(0.977937 0.110977 -6.34794e-20)
(0.93575 -0.0179126 -1.31741e-21)
(0.818046 0.0274244 -2.57554e-21)
(0.15784 0.0334048 3.62531e-21)
(1.18562 0.143896 -3.27344e-21)
(0.0446171 0.00605304 5.76309e-21)
(1.2926 -0.102882 1.73983e-22)
(0.183585 0.0401953 2.78789e-21)
(-8.0132e-05 -0.0116486 2.11803e-20)
(0.640582 -0.00343936 -7.45921e-21)
(1.47873 -0.22664 1.03397e-21)
(0.204543 0.000270344 -4.46847e-21)
(0.78789 0.000849442 -8.9921e-21)
(0.934791 -0.020001 -2.99268e-21)
(0.354949 -0.000990293 -1.30838e-20)
(0.343231 -0.00239825 6.15509e-21)
(0.987158 0.112115 -4.9631e-20)
(0.117551 -0.267318 1.23957e-20)
(1.06486 0.117551 -7.16126e-21)
(0.668554 0.00259958 1.41921e-20)
(0.225847 9.00502e-06 2.25405e-21)
(1.00764 0.24823 -1.15477e-20)
(0.715672 0.153227 -1.47082e-20)
(0.965756 -0.612494 3.51131e-21)
(0.638645 0.137593 -1.52317e-20)
(0.0136245 -0.090608 -1.58584e-20)
(0.0533482 0.0105343 1.0391e-21)
(0.591035 0.0342485 2.83286e-20)
(0.166084 0.0369373 4.79462e-21)
(0.803629 -0.0108866 7.54545e-21)
(0.952776 -0.0602076 3.09155e-21)
(0.0535589 0.0131526 -1.15024e-21)
(0.00571891 -0.0713247 -4.61752e-21)
(0.11979 0.0275538 2.98437e-21)
(1.12141 0.157133 -5.90269e-21)
(0.879218 0.0667673 1.72374e-20)
(1.02849 0.171032 -1.11328e-20)
(0.0545525 0.0109286 9.45271e-22)
(-2.19002e-05 -0.0265475 5.56884e-21)
(0.6452 0.124014 1.33292e-21)
(-0.000141689 -0.0255755 0)
(1.13034 0.211096 7.75677e-21)
(0.214748 0.000796559 -7.21425e-22)
(1.26332 0.110235 4.49154e-21)
(0.340103 0.0729893 -1.66959e-21)
(0.536302 -0.235186 2.66888e-21)
(0.346059 0.077077 5.98866e-21)
(1.25344 0.115358 3.67756e-21)
(1.06635 0.232653 1.05966e-20)
(1.27157 0.0994586 8.42594e-21)
(1.26977 0.069896 4.9429e-21)
(0.650589 0.139917 -4.17965e-21)
(0.443283 0.0485489 -1.81239e-20)
(0.13781 0.0275408 4.89643e-22)
(0.390063 0.00194181 1.47732e-20)
(0.878871 0.00216419 2.78548e-20)
(1.04598 0.117591 -5.3711e-20)
(0.978287 -0.0635044 3.95413e-21)
(1.08144 0.226564 4.25884e-21)
(0.00106327 -0.0492919 -1.28866e-20)
(0.957351 -0.0556003 -1.98539e-21)
(0.633871 0.146042 5.92067e-21)
(0.0242645 0.000269122 2.46228e-21)
(0.489538 0.100986 2.27497e-23)
(0.409999 0.106547 6.16565e-20)
(0.369738 0.14317 -3.31178e-20)
(0.187771 -0.267228 -2.2869e-21)
(1.05442 0.233532 -3.02344e-20)
(1.19852 0.17151 2.35221e-20)
(1.15302 0.17122 3.77848e-21)
(0.531208 0.113737 5.21028e-22)
(0.912659 -0.0826872 -7.38727e-22)
(1.03794 0.221612 -1.35208e-20)
(0.197792 -0.000607218 6.76254e-22)
(0.925615 -0.00511379 8.43299e-22)
(0.686223 -0.00367229 3.87152e-20)
(0.141962 0.0331351 8.96108e-21)
(0.825825 -0.000804932 -1.62026e-20)
(1.09201 -0.342237 -1.1436e-20)
(0.877908 -0.587277 3.0119e-21)
(0.407732 0.0542428 -5.15665e-21)
(0.0201729 0.00487237 1.29221e-21)
(0.0506248 0.000682718 -5.94131e-22)
(0.0497081 -0.000938866 5.28404e-22)
(1.22645 0.115012 -6.68388e-21)
(0.994549 -0.116891 -5.4028e-22)
(0.949008 -0.0583448 4.58138e-21)
(1.13389 0.157723 -1.78073e-20)
(0.0543625 0.013357 -1.00649e-21)
(0.661416 -0.24722 6.78152e-21)
(0.13875 0.0288072 -1.60031e-21)
(1.02849 0.205421 -5.18401e-21)
(0.443663 -0.00107347 6.56078e-21)
(0.996062 -5.29056e-05 2.06826e-21)
(0.220896 0.00187885 6.42816e-21)
(0.149719 0.00139579 -1.34927e-20)
(0.147872 0.00234994 -4.92505e-21)
(0.155544 -0.000246845 8.50969e-22)
(0.144983 0.00220388 5.30623e-22)
(0.147194 -0.0001018 1.88842e-20)
(0.382574 0.0958034 -5.62391e-21)
(0.645248 0.128194 7.55099e-21)
(0.206397 -0.00152487 1.06404e-20)
(0.482629 -0.253658 4.38145e-21)
(0.956037 -0.0537476 -1.42186e-21)
(0.517554 0.112736 -4.60293e-21)
(1.20447 0.106457 1.08645e-21)
(0.896346 0.0162239 2.8238e-20)
(0.366938 -0.471495 1.22513e-20)
(1.27897 -0.0913159 -1.1581e-22)
(1.09237 0.135187 9.6531e-21)
(1.01746 0.231008 -5.85596e-21)
(0.67437 0.00208538 -8.66684e-21)
(0.869746 0.199742 6.98215e-20)
(0.813351 0.170081 8.0452e-21)
(0.20758 0.0755408 3.71131e-21)
(0.881059 0.132074 -6.35702e-23)
(0.0822438 0.0179768 -6.52088e-21)
(1.30831 0.14373 -8.23839e-22)
(0.162231 0.0360864 8.92242e-21)
(0.0192518 0.00438948 -8.45151e-22)
(1.05877 0.123172 -2.36804e-20)
(0.874886 -0.000544523 2.07752e-20)
(0.63028 -0.593059 1.7575e-20)
(1.07294 0.185343 5.54945e-20)
(0.217896 -0.109709 1.90238e-20)
(0.993986 0.0834257 -8.24956e-20)
(1.15593 -0.294995 -8.20042e-21)
(0.60871 0.146752 1.39765e-20)
(1.26143 -0.000291547 -9.71321e-21)
(0.375775 0.110437 -5.36583e-21)
(0.966472 0.124272 -3.83125e-20)
(0.655157 0.14213 6.08055e-21)
(0.719723 0.00297297 -2.2428e-20)
(0.99245 0.269599 -3.39063e-20)
(0.97413 0.252489 1.20693e-20)
(0.11516 -0.000244421 -1.32311e-22)
(0.881861 -1.22272e-05 4.15142e-21)
(0.856962 0.276748 4.58558e-21)
(0.399684 -0.509176 1.20972e-20)
(0.987102 0.0839291 6.2575e-20)
(0.899858 0.001846 4.20326e-22)
(1.0018 0.201806 -1.87465e-20)
(1.25229 0.109599 -1.19248e-20)
(0.900568 -0.0651654 -5.09032e-21)
(0.861419 -0.00624118 -2.0532e-20)
(1.46835 -0.150269 -3.7143e-21)
(1.06579 0.229705 -1.87719e-20)
(0.759984 0.194675 -5.59504e-20)
(0.542213 -0.0289674 4.31515e-20)
(0.642314 0.128901 -6.31512e-21)
(0.97303 0.115253 1.29894e-20)
(0.605049 0.131644 2.21763e-21)
(1.15775 0.208966 1.76396e-21)
(0.0935162 0.0196179 3.2817e-21)
(0.578095 0.126107 -9.08923e-21)
(0.101501 0.0238899 -5.42217e-22)
(1.07766 0.206503 1.1667e-20)
(0.415245 0.10997 -4.26254e-21)
(0.421115 -0.0039 -1.77768e-21)
(0.838347 0.000622734 5.01607e-22)
(0.19499 0.042875 -1.86666e-21)
(0.901952 -0.000570248 -1.05922e-20)
(1.45015 -0.0470883 -1.49753e-22)
(0.932186 -0.0813056 -4.26771e-21)
(0.430153 0.259446 2.6398e-20)
(0.377562 0.0842199 6.62449e-21)
(0.223255 0.0500285 -3.98746e-21)
(1.1977 -0.598415 1.30089e-20)
(0.612277 0.131875 2.42918e-21)
(0.340566 -0.435859 -5.52714e-21)
(1.09289 -0.436733 3.83052e-21)
(0.993271 0.185756 4.20308e-22)
(0.114622 0.0257888 2.60957e-21)
(0.867299 -0.332333 -1.05971e-20)
(0.72689 0.167264 -8.06578e-21)
(0.834342 0.000452525 -1.60773e-21)
(0.525134 0.278776 1.43736e-22)
(0.0537037 -0.000176177 2.55462e-20)
(0.0553119 -0.00075029 4.62448e-21)
(0.663127 0.140725 -3.22105e-21)
(0.365973 0.0830097 3.7635e-21)
(0.735238 0.152215 5.08042e-20)
(0.921644 -0.0754716 -2.53254e-21)
(0.900765 7.02651e-05 -1.81305e-20)
(0.295699 -0.499876 -6.92755e-21)
(0.301409 0.0417176 -2.2668e-21)
(0.666089 0.143447 4.31716e-21)
(0.780407 0.201699 -2.30537e-20)
(1.03318 -0.15939 1.94166e-21)
(0.174059 0.0433774 8.38157e-21)
(0.254736 0.161658 -2.00066e-20)
(0.879915 0.289955 1.20121e-20)
(0.758815 -0.19647 7.36865e-22)
(1.14991 0.147709 3.35312e-20)
(0.940484 -0.00421238 -6.2528e-21)
(1.15999 0.191031 7.00308e-22)
(0.883477 0.000347882 7.88582e-21)
(1.10616 -0.395073 4.67982e-21)
(0.931628 9.08147e-05 -1.22766e-20)
(1.27393 0.0348386 4.71986e-22)
(0.728036 -0.392729 -8.09545e-21)
(0.58243 0.127076 1.21648e-21)
(0.398418 0.105329 6.15938e-21)
(0.703746 0.160498 -1.28032e-20)
(0.879668 -0.00103743 6.71622e-21)
(0.821202 0.0134431 -3.65356e-21)
(0.947823 -0.0209575 3.53376e-21)
(0.0629228 0.0134812 1.10429e-21)
(0.781446 -0.399378 1.4221e-21)
(0.98756 0.0884121 -1.65335e-20)
(0.887407 0.126452 -1.08666e-22)
(0.660224 0.141062 3.02175e-21)
(1.33822 -0.0393179 9.88055e-22)
(0.950818 0.279405 3.30202e-21)
(0.897056 -0.000691148 1.75095e-20)
(0.0899626 -0.276082 1.61507e-20)
(0.935782 -0.0810467 1.24106e-20)
(0.138517 0.0285978 1.31645e-21)
(0.227437 -0.144862 -1.37094e-20)
(0.987978 0.263837 -2.41694e-21)
(0.19634 0.00147954 -1.90138e-20)
(1.2715 0.171984 -1.12465e-20)
(1.26116 -0.0653068 -1.27318e-23)
(1.11484 0.199876 1.44231e-20)
(1.02721 0.181867 -3.1633e-21)
(0.946542 0.293351 5.51368e-20)
(0.396538 0.0897433 7.81164e-21)
(1.29598 -0.526765 2.60105e-22)
(0.906761 0.072522 -1.94244e-20)
(0.959687 -0.0453377 -1.55164e-21)
(0.958509 0.0897168 -1.82959e-20)
(1.2971 0.026235 6.20991e-21)
(0.152446 0.0311436 6.49182e-22)
(0.463779 0.103062 -1.71251e-21)
(0.855604 0.21036 -4.28652e-21)
(0.75504 0.175184 -9.23794e-22)
(0.990682 -0.0871551 -5.29734e-21)
(1.28881 -0.12257 2.16335e-21)
(0.794648 0.0155068 -3.2823e-20)
(0.877806 0.270707 1.52113e-20)
(0.931781 0.301567 4.75017e-20)
(0.639755 8.50464e-05 -3.83911e-22)
(0.950304 -0.0560836 -9.09649e-22)
(0.929781 -0.000438356 -1.6757e-20)
(0.966785 -0.679924 -4.36832e-21)
(1.29073 0.165988 2.43246e-21)
(0.954922 -0.00252468 -9.42372e-21)
(1.03682 0.141423 3.87438e-20)
(0.976949 8.66508e-05 -4.12779e-21)
(0.263497 -0.0144156 2.19884e-21)
(0.864792 -0.000435771 2.72872e-20)
(0.683434 -0.00105972 -5.32098e-21)
(0.903296 0.314197 1.48275e-20)
(0.989826 -0.0488275 -2.49463e-21)
(0.787923 0.165911 -7.95782e-21)
(0.450387 0.121225 3.99941e-21)
(1.2058 0.171746 1.57189e-20)
(0.896953 -0.0793806 2.00179e-21)
(0.80415 -0.197793 -9.31928e-21)
(0.999137 0.134578 2.16715e-20)
(0.953313 0.164002 -3.61251e-20)
(0.880329 -0.00122309 -2.92221e-20)
(0.939147 -0.0152318 6.82507e-21)
(0.0893319 0.0202978 -3.1862e-21)
(0.270179 0.156397 -8.58192e-22)
(1.11934 0.192179 -3.7339e-21)
(0.633588 -0.000932935 -6.12713e-22)
(1.01612 0.154095 -2.79227e-20)
(0.460089 0.100318 1.18103e-21)
(0.217796 0.00184248 -7.01687e-21)
(0.488103 -0.236249 -3.74916e-21)
(0.884784 -0.0942105 -4.77868e-21)
(0.895536 -0.0873205 -3.62987e-21)
(0.143183 0.0323557 -2.1725e-21)
(1.039 -0.159641 -1.20241e-21)
(0.954388 -0.0466854 3.66081e-21)
(0.536493 -0.021237 4.7107e-21)
(0.139785 -0.0552052 -4.27579e-21)
(0.480714 0.116564 -4.1404e-21)
(0.837838 0.00322245 -1.27049e-20)
(0.145368 0.00146818 7.85577e-22)
(0.478436 0.00137472 2.40281e-20)
(0.443381 -0.00273415 1.04044e-20)
(0.870427 -0.00133719 -5.43846e-21)
(0.977897 -0.0676738 -1.06852e-21)
(0.78644 -0.0306557 2.19218e-20)
(1.27804 0.154619 -1.53174e-20)
(0.460727 0.207065 -7.28552e-21)
(0.83463 0.00306404 4.58765e-21)
(0.176552 0.0381995 1.07377e-21)
(1.22904 0.153032 -1.48923e-22)
(1.07677 0.217079 -8.30257e-21)
(1.91661e-06 -0.00469408 -6.10364e-21)
(0.742512 0.182802 8.22046e-21)
(0.163288 0.0369528 -5.6292e-21)
(0.94961 -0.00699289 4.04121e-21)
(1.15136 0.194598 -3.42502e-21)
(0.215013 0.0560382 -1.23143e-20)
(0.723171 -0.140015 -2.0007e-20)
(1.27971 0.163408 -1.43095e-20)
(0.897248 -0.00123115 -2.12104e-20)
(1.27789 0.171194 -5.57818e-21)
(0.943667 0.0885332 7.11068e-21)
(0.877433 0.167036 2.02742e-21)
(0.422955 -0.0215657 -4.12656e-20)
(0.026904 0.0055514 -7.40368e-22)
(0.0868454 -0.0195019 8.69482e-21)
(0.681184 -0.0259635 3.25266e-20)
(0.992501 -0.0787749 3.29405e-21)
(0.21151 0.00159488 -7.04003e-21)
(1.12742 0.167247 2.81764e-21)
(1.15706 0.205404 -3.59332e-21)
(0.937276 -0.0780557 -1.78699e-22)
(0.213296 0.0370367 6.97269e-22)
(0.761252 -0.119396 -2.40263e-21)
(0.991988 0.199369 -7.36973e-21)
(0.957145 -0.0518452 5.42361e-23)
(1.21508 -0.170682 6.35872e-22)
(0.114131 -0.00710526 4.60641e-21)
(0.896691 -0.000465491 -3.87856e-21)
(0.624861 -0.000376822 -8.54407e-21)
(0.986513 -0.0555199 2.90561e-22)
(0.438598 -0.00193963 1.30263e-21)
(1.24416 -0.149325 -2.40895e-22)
(0.0277975 -0.00107082 2.27734e-22)
(0.637161 -0.471411 -6.49678e-21)
(1.10806 0.127007 2.81121e-20)
(0.901769 -0.000611224 -9.04228e-21)
(0.522042 0.184811 -3.17617e-20)
(1.41563 0.0661692 2.1421e-22)
(0.365976 -0.000786989 -8.90973e-22)
(1.40225 0.0770046 -2.10871e-21)
(1.00224 0.0788029 3.69833e-20)
(1.0399 0.178191 -1.23292e-21)
(0.68597 0.113899 -3.49237e-22)
(0.759498 0.147275 9.20915e-21)
(-5.93688e-05 -0.0252579 -2.03607e-21)
(0.663622 0.224562 -5.13098e-22)
(0.623174 0.131384 -1.07257e-20)
(0.54068 0.0573591 9.42481e-21)
(0.935626 0.000262015 5.12723e-21)
(0.839454 -0.000560068 5.67715e-21)
(0.149761 -0.000829037 -3.18596e-21)
(1.14821 0.195875 -1.44984e-20)
(0.155893 0.0496905 5.36863e-22)
(0.933919 0.00209275 -2.63248e-20)
(0.401304 -0.00117624 1.75664e-21)
(0.145573 0.000966162 1.41152e-20)
(0.898691 -0.0720252 -4.28911e-21)
(0.944788 -0.0135507 4.10917e-21)
(1.46388 -0.0750852 2.16221e-21)
(0.622554 7.33691e-05 -4.44082e-21)
(0.972654 -0.0640394 -8.37367e-22)
(0.84262 0.0144267 2.92405e-21)
(0.144036 -0.00172294 2.78042e-20)
(0.0283487 -0.0620547 1.10077e-20)
(0.000362 -0.0245735 -5.84973e-21)
(1.42791 0.0135981 -9.25732e-22)
(0.0158208 0.00365771 5.75736e-21)
(1.47284 -0.105841 -8.30385e-21)
(0.827878 -0.0440427 -5.75323e-21)
(0.335 -0.00181185 3.48188e-22)
(1.18742 0.185238 -9.581e-21)
(0.210231 -0.433315 -1.06643e-20)
(1.20955 -0.587642 -4.00206e-21)
(0.467 0.106357 -7.8603e-21)
(1.25853 -0.11401 -4.3464e-22)
(0.331277 -0.00104592 -1.40792e-20)
(1.36485 -0.294728 2.61985e-21)
(0.97257 0.086856 6.50739e-20)
(0.785867 -0.0120481 7.87515e-22)
(0.701083 0.149945 -3.66694e-21)
(0.208111 -0.0729658 1.19927e-20)
(0.501631 0.0121981 -4.56065e-21)
(1.39648 -0.100835 -7.99828e-22)
(0.427195 -0.00525379 -1.20524e-20)
(0.145114 0.0322436 5.62009e-21)
(0.772319 0.263832 -4.23211e-20)
(1.04148 0.120446 -4.33444e-20)
(1.12142 0.172711 1.11071e-20)
(1.19001 -0.183092 4.55261e-21)
(1.07644 0.184265 -2.80002e-20)
(0.000249157 -0.0317719 -1.76701e-20)
(0.548246 0.158764 -3.14874e-21)
(0.0508439 -0.14581 -2.5726e-20)
(0.0215335 -1.36336e-06 8.7858e-23)
(0.639811 0.130906 -3.40537e-22)
(0.71293 0.0163874 -5.39419e-20)
(0.00926492 -0.0806119 -3.11274e-22)
(0.989882 -0.0728533 -2.38368e-21)
(0.82446 0.0085524 2.66804e-21)
(0.600916 0.129706 2.52334e-21)
(0.339437 0.0765218 -7.19963e-21)
(0.343403 -0.00442437 9.89164e-21)
(0.117104 -0.182854 2.67973e-20)
(0.679862 0.00230395 3.06204e-20)
(0.431402 0.132959 -4.52883e-20)
(0.939637 0.192093 2.61417e-21)
(0.975582 -8.75617e-05 1.23538e-21)
(0.989784 -0.000187704 -1.29904e-21)
(1.15478 0.181699 1.25748e-20)
(0.193508 -0.00265241 1.19924e-21)
(0.21476 -0.00161604 3.00768e-21)
(0.10449 -0.000583053 3.06697e-21)
(1.28809 0.14659 1.15738e-20)
(0.648263 -0.00698855 5.39787e-21)
(1.15642 -0.191573 1.2635e-21)
(0.95941 -0.0484721 3.58246e-21)
(0.950743 -0.686772 8.76376e-22)
(0.390064 -0.00131981 -9.95384e-21)
(0.889134 0.168447 2.57498e-21)
(0.572116 0.122329 -2.77709e-21)
(1.02971 0.23251 2.10281e-20)
(0.364643 -0.00231132 2.65282e-20)
(0.979383 0.253692 2.29318e-20)
(1.11581 0.154399 2.59122e-20)
(0.738107 0.170774 2.27834e-21)
(0.117124 -7.61961e-05 -6.00304e-21)
(0.933434 -0.12021 -3.7995e-21)
(1.03528 -0.16983 1.31335e-21)
(0.56464 0.0539093 -4.42723e-21)
(0.960071 -0.00202124 6.9117e-21)
(-4.67832e-05 -0.00621916 1.27746e-20)
(1.30362 0.141236 1.30741e-21)
(0.886522 -0.0854498 -2.48359e-21)
(0.129625 -0.00368371 8.90219e-21)
(0.370098 -0.00406511 4.83222e-21)
(0.978478 -0.0615435 2.53593e-21)
(0.940937 -0.0778349 2.52261e-21)
(1.00807 0.0803925 -1.03176e-20)
(0.888259 -0.0903434 5.83502e-21)
(0.0904571 0.0212756 1.78817e-21)
(1.35334 -0.0545814 6.02517e-21)
(1.42149 -0.0290648 7.25891e-22)
(0.897267 0.000515965 1.83108e-20)
(0.190817 -0.00110799 1.23945e-21)
(0.898083 -0.000714483 -1.06678e-20)
(0.909033 0.000994053 5.55286e-21)
(0.102287 0.0251543 -7.89732e-21)
(0.990844 -0.00016293 -2.82373e-20)
(0.947636 -0.00335227 -8.08514e-21)
(0.931762 0.287356 -2.45051e-20)
(-8.18447e-05 -0.0142031 -1.17171e-20)
(1.13928 0.211516 -1.74451e-20)
(0.96835 0.194964 -6.3735e-21)
(0.118445 0.0258376 2.29917e-21)
(0.00153814 -0.0528103 -2.14762e-21)
(0.882117 -0.000588872 -2.54507e-21)
(1.15222 0.191475 2.02776e-20)
(0.243037 -0.0268299 2.0936e-20)
(0.701532 -0.00609231 -3.15495e-20)
(1.1007 0.217258 1.23038e-20)
(0.969539 0.0891005 1.75961e-20)
(1.14511 0.130757 3.0111e-20)
(0.119779 0.0277955 -1.02913e-20)
(1.07731 0.180477 1.07483e-20)
(1.15333 0.145281 -9.80885e-21)
(0.68817 0.147992 7.57496e-21)
(0.988297 0.266644 1.77384e-21)
(1.09639 -0.645808 -2.24939e-21)
(1.41044 0.034722 4.65692e-22)
(0.237544 0.0805599 1.48917e-21)
(0.201373 0.0015093 1.18551e-20)
(1.10494 0.13234 -3.53382e-20)
(1.10681 0.172961 -1.4175e-21)
(0.215033 0.0477133 1.49339e-21)
(0.931523 0.00117327 -1.91374e-21)
(1.23189 0.116125 6.67388e-21)
(0.886147 0.00102099 4.90146e-21)
(1.04313 0.235678 -1.45416e-21)
(0.464533 0.105305 1.83419e-20)
(0.715044 -0.344627 1.753e-20)
(0.381946 -0.00460629 5.50675e-21)
(0.29417 0.0627012 2.49059e-21)
(0.836024 0.0016989 -3.53829e-22)
(1.15717 0.150535 1.31354e-20)
(0.799325 0.00390244 -1.96849e-20)
(0.821772 0.198949 1.46234e-20)
(1.33008 -0.0325885 -1.25687e-21)
(1.07165 0.213059 -1.35745e-20)
(0.119925 -0.00193304 -1.03694e-20)
(0.154217 0.0361598 7.68348e-23)
(1.20021 -0.18198 3.54468e-21)
(0.362068 0.034632 6.54728e-21)
(0.146155 0.0014966 -5.2344e-22)
(0.893135 0.0166308 -5.58703e-20)
(0.892509 -0.091105 5.33121e-21)
(1.07353 0.217133 -8.79963e-21)
(1.14225 0.190933 3.06075e-21)
(1.05053 0.177783 1.14207e-20)
(0.854986 0.165265 -1.32933e-21)
(0.877509 0.0887537 -3.6557e-20)
(0.881915 0.211458 -1.59225e-21)
(0.1713 -0.395389 -2.37655e-21)
(0.267037 -0.0013264 -1.10603e-21)
(0.825762 -0.692605 -7.14435e-21)
(1.13767 0.197666 -1.44616e-20)
(1.333 0.0990271 -4.66395e-21)
(0.981613 -0.000796074 -5.94125e-21)
(0.951248 -0.00662154 3.50904e-21)
(0.415092 0.130387 -2.04517e-20)
(1.15494 -0.604704 -2.43426e-20)
(0.98713 0.253717 1.53894e-21)
(0.889732 -0.00621809 1.2638e-20)
(0.188662 -0.00163552 1.38523e-21)
(0.829344 0.13392 -8.62366e-23)
(0.863065 -0.112498 4.44143e-21)
(0.0171642 -0.0978179 -1.64911e-20)
(0.624887 0.00085419 -2.30578e-21)
(0.617919 0.141882 -8.77156e-21)
(0.82826 -0.0400469 8.9284e-21)
(0.290686 -0.0035421 6.27268e-21)
(0.186802 0.00137611 6.79879e-22)
(0.859849 -0.00645579 1.41088e-21)
(1.16552 0.194439 -6.4844e-21)
(0.000146097 -0.0327634 5.98014e-21)
(-0.000174734 -0.0269454 -2.38823e-20)
(1.30608 0.0142464 1.91788e-21)
(1.27189 0.169409 1.33316e-21)
(1.32822 -0.0742263 2.15505e-22)
(0.865248 -0.0130985 3.72447e-20)
(1.13257 0.121498 -4.79531e-20)
(0.625865 0.00170829 2.65103e-21)
(0.930903 -0.0730579 -6.92606e-21)
(0.21315 -0.00292114 3.98664e-21)
(0.956438 0.283208 2.17639e-20)
(0.983257 -0.0643067 3.01342e-21)
(0.786317 0.00105179 6.41743e-21)
(1.05537 0.238466 -1.60239e-20)
(0.770732 0.0192988 7.47312e-21)
(0.89143 0.190446 -8.53113e-21)
(0.0154555 0.00353853 -2.62644e-21)
(0.105948 0.02309 4.92554e-21)
(0.0107343 -0.0697581 1.28947e-20)
(0.31134 -0.241008 7.9759e-22)
(0.696374 0.145718 -3.63926e-21)
(0.901853 0.00559646 -1.49408e-20)
(0.397087 -0.00752426 1.23444e-21)
(0.974729 0.0885639 -4.2088e-20)
(1.07811 0.21251 -5.92358e-21)
(1.04764 0.233385 -1.97854e-20)
(1.13268 -0.297527 1.33996e-21)
(0.829143 -0.0001191 -3.36652e-21)
(0.218388 0.00203658 -6.43848e-23)
(0.830437 0.00148422 1.7825e-21)
(0.839607 0.328909 -2.90631e-20)
(0.837454 0.00159318 -1.10532e-20)
(0.473015 -0.00324905 -6.8846e-21)
(0.691077 0.146879 -8.79429e-22)
(0.778197 0.180546 1.58257e-21)
(1.12322 0.196088 1.00191e-20)
(0.814465 0.000791867 -4.58903e-22)
(-3.35895e-05 -0.00724029 1.56091e-20)
(0.669357 -0.0144219 1.06584e-20)
(0.927307 0.306507 -2.71243e-20)
(1.1597 0.210693 -5.39259e-21)
(0.655382 -0.590963 -1.93266e-20)
(0.620845 0.133757 7.98091e-21)
(0.11468 0.000413455 -8.91414e-21)
(0.760276 -0.000718214 5.17505e-21)
(0.904936 0.212474 -3.21298e-21)
(0.989391 -0.000107107 2.19458e-21)
(0.466209 -0.166197 -4.2118e-21)
(0.94593 -0.459105 4.63353e-22)
(0.307095 0.068372 -9.7385e-21)
(1.057 0.204022 -7.20598e-21)
(1.01859 -0.139494 -6.18358e-21)
(0.713798 0.244538 -9.52788e-22)
(0.763678 0.164526 6.64901e-21)
(0.972303 -0.0662069 7.65018e-24)
(1.35491 0.117644 8.94761e-21)
(1.34893 0.123663 -2.6006e-21)
(1.08549 0.209982 1.13852e-21)
(1.14706 0.198691 -1.33572e-20)
(1.02393 0.134159 -2.97298e-20)
(0.00526207 -0.104844 -4.41279e-21)
(0.898202 0.0632813 -6.5472e-21)
(1.04098 0.115398 -2.76126e-21)
(0.912166 0.0721959 -1.05352e-21)
(1.04412 0.11505 2.41695e-20)
(0.629436 0.14438 -3.54619e-21)
(0.991266 -0.0806454 -1.65148e-22)
(0.62959 0.000157977 1.99464e-20)
(0.875905 -0.31315 -9.8483e-22)
(1.2106 0.147886 -2.44549e-22)
(0.83513 -0.000853341 -6.56672e-21)
(1.40606 0.0443898 1.16717e-21)
(1.05433 0.24149 -1.3112e-20)
(0.369444 0.083563 3.7622e-21)
(0.630018 0.135952 -3.60896e-20)
(0.846154 0.273431 1.39005e-20)
(0.946786 -0.00340598 9.08503e-22)
(0.786581 0.00229915 -1.18909e-20)
(0.643739 0.000895437 -9.09927e-21)
(0.617926 0.109141 -6.54541e-22)
(0.297748 -0.181683 -2.25788e-20)
(1.30481 0.023074 -7.04955e-21)
(0.879072 0.199575 3.5688e-20)
(0.321331 0.191449 1.0542e-20)
(0.621581 0.108381 -7.76245e-23)
(0.77962 -0.00423741 4.60064e-21)
(1.13106 0.169693 -3.9289e-20)
(1.18379 0.100301 -8.64726e-21)
(0.949368 -0.0078585 3.55046e-21)
(0.358453 -0.00182265 2.07539e-21)
(0.643808 -0.000585809 -4.0175e-21)
(0.692894 0.137486 2.03375e-22)
(0.797488 0.181111 1.4655e-20)
(0.805601 0.0194213 -2.0975e-20)
(4.32999e-05 -0.0250212 -6.63009e-21)
(0.985861 0.207644 -1.97459e-21)
(0.878289 -0.0043981 2.99855e-20)
(0.707414 0.152356 4.56359e-21)
(0.178737 0.0400109 3.94639e-21)
(0.675042 0.144273 2.53414e-21)
(1.09969 -0.30142 1.23357e-20)
(0.0197977 0.00447197 -3.02248e-21)
(0.221822 0.00241519 -1.29581e-21)
(0.56145 -0.0132979 4.3618e-20)
(0.968128 -0.00117765 -4.20452e-21)
(0.801948 0.141991 -6.56208e-20)
(0.00211052 -0.0382802 -4.71821e-21)
(1.02216 0.124961 3.31691e-20)
(1.01265 0.231648 2.26134e-21)
(0.295559 -0.00912861 -2.32614e-20)
(0.839478 -0.0558022 2.83302e-23)
(0.140671 -0.00129892 2.34962e-20)
(0.943922 -0.0178864 2.59722e-21)
(0.400969 0.0999218 -1.0515e-20)
(0.145239 -0.00158207 3.60063e-22)
(1.03626 0.112957 -4.44813e-20)
(0.313195 -0.15527 -7.513e-22)
(0.928984 -0.000432069 -1.61282e-20)
(1.27897 0.17161 2.00395e-21)
(0.403192 0.08915 -1.70711e-21)
(1.27806 -0.0225969 -2.75882e-21)
(1.06578 0.21128 2.54569e-20)
(0.204928 0.0445656 1.97639e-21)
(1.03191 0.110359 1.4056e-20)
(0.640487 -0.00177245 4.79756e-22)
(0.749655 0.286935 -2.48314e-20)
(0.106051 -0.289374 1.96754e-20)
(0.971722 0.119312 -2.07155e-20)
(0.162067 -0.00450446 -2.70246e-20)
(1.30326 -0.214258 5.51356e-21)
(0.000210909 -0.0118344 1.57871e-21)
(-0.000123624 -0.03212 -7.33174e-21)
(1.02037 0.204395 9.16965e-21)
(0.999011 0.229788 9.09679e-21)
(0.208506 -0.00155302 5.10943e-21)
(0.0201726 -7.98657e-05 -2.16389e-22)
(0.176727 0.0447355 9.45252e-21)
(0.826913 -0.178398 -1.40737e-20)
(0.670521 -0.000500346 2.25876e-20)
(0.181602 -0.279075 -9.17816e-21)
(1.03994 0.233605 1.77428e-20)
(0.733379 -0.133973 -1.28826e-21)
(1.14721 0.191239 -1.23875e-20)
(0.851433 -0.00436197 -2.60001e-20)
(0.614787 0.218725 2.12729e-20)
(1.46164 -0.138602 6.93979e-21)
(1.14297 0.12078 -6.46812e-21)
(1.08708 0.133378 2.13374e-20)
(0.231143 0.00439212 -5.89043e-21)
(1.16954 0.201922 -1.06891e-22)
(1.26617 0.147005 6.43379e-21)
(1.00324 0.26296 -1.16162e-20)
(0.285474 0.0579739 -1.34667e-20)
(1.44341 -0.22725 -2.31808e-21)
(0.367983 -0.00179711 2.83592e-21)
(1.09569 -0.383341 1.14619e-20)
(0.687816 0.146854 6.88552e-21)
(0.151664 -0.000916613 -4.96643e-22)
(1.09243 0.132271 7.07431e-20)
(0.160248 0.0353914 -6.32971e-21)
(-9.32653e-05 -0.0250599 2.07124e-20)
(0.0530562 0.0115102 -2.3173e-21)
(0.194025 0.0401818 2.52578e-21)
(0.160903 0.0397274 -4.05776e-21)
(0.964381 0.195588 4.59882e-21)
(0.975669 -0.00080141 -1.35046e-21)
(1.04369 0.16438 -2.42854e-20)
(0.759261 -0.138193 1.00143e-21)
(0.112772 0.0251507 2.23496e-21)
(0.847949 -0.653631 1.33588e-20)
(0.643821 0.132724 2.81568e-21)
(0.984537 0.26988 -3.66372e-20)
(0.987775 -0.0726329 2.1579e-22)
(0.753282 -0.0117215 1.5997e-20)
(0.894605 0.00219052 -4.01866e-21)
(0.951186 -0.000657898 2.21978e-21)
(0.297506 0.0645176 -2.13801e-21)
(0.207888 0.0022785 -1.00278e-20)
(1.41272 -0.0325102 1.24332e-22)
(0.975799 0.259513 4.554e-22)
(0.143478 -0.000580655 6.87271e-21)
(0.884073 -0.000399555 -5.99487e-21)
(0.829922 0.326842 -3.36797e-20)
(0.2485 -0.491837 -1.27574e-20)
(0.0276379 -0.0003709 7.27873e-22)
(1.09376 0.217545 -9.4255e-21)
(0.0207997 0.00466879 -7.48252e-22)
(1.05397 0.19684 1.08699e-20)
(1.12046 0.197269 7.0252e-21)
(0.770121 0.00149275 -1.23676e-20)
(0.755223 -0.00260231 4.78373e-21)
(0.497228 0.107558 -7.31359e-21)
(0.479958 0.172111 4.36127e-20)
(0.826373 0.330066 3.55215e-20)
(0.341013 -0.214901 -2.78774e-21)
(0.786122 -0.0060699 4.54735e-20)
(0.0276094 -0.00020215 -1.0635e-20)
(0.548438 0.120057 3.37793e-22)
(1.07491 0.17819 -2.00436e-20)
(0.990931 -7.69113e-05 2.51284e-21)
(0.755016 -0.000214174 -1.70192e-21)
(0.410156 0.0925109 -8.97313e-21)
(0.491582 0.1045 3.47334e-21)
(1.20262 0.152412 -5.77221e-22)
(1.00205 0.0829627 1.05527e-20)
(1.06746 0.228239 8.97201e-21)
(0.199103 0.000859276 -1.38558e-20)
(0.900716 -0.000260658 -3.02509e-21)
(0.169908 0.0352207 -1.66529e-22)
(0.197029 0.0489841 -1.24588e-20)
(1.27708 0.135227 4.49076e-22)
(0.191405 0.0400777 -3.90325e-21)
(1.27465 0.166295 1.86028e-21)
(0.111327 -0.00046694 -1.97899e-20)
(0.113434 -0.000553088 -3.58323e-22)
(0.107528 0.0229908 2.41142e-21)
(1.15686 -0.617355 9.36475e-21)
(0.886085 0.0409233 4.72926e-21)
(0.704731 0.151327 2.42616e-20)
(0.0806511 -0.257803 -2.65399e-21)
(1.18702 0.108137 1.84671e-20)
(1.037 0.198687 2.99046e-20)
(0.724212 -0.0218872 -7.46097e-20)
(0.143836 0.000687475 -5.09438e-21)
(1.22192 -0.458045 -1.9772e-21)
(1.31151 -0.127123 5.81179e-22)
(0.253079 -0.0102945 3.06188e-21)
(0.882593 -0.000342977 1.04885e-20)
(1.163 0.179479 -8.12135e-21)
(0.922236 0.217555 -2.75984e-21)
(0.0941981 0.020395 -6.66391e-22)
(0.0856788 -0.252269 -9.94647e-21)
(0.208981 0.00379049 -5.28304e-21)
(0.271542 0.105928 -4.51294e-21)
(-0.000317858 -0.0266471 9.46488e-21)
(0.791956 -0.00212735 1.19688e-20)
(0.436413 0.0222097 -3.18123e-20)
(0.483433 0.16447 1.61139e-20)
(0.302953 -0.0245463 -7.31864e-21)
(0.989694 -0.103765 2.08522e-21)
(0.186288 -0.000930543 1.35544e-20)
(1.14043 0.186218 -9.43542e-21)
(0.770365 -0.0021803 -1.23654e-20)
(0.14523 0.000257061 -1.30015e-21)
(1.40247 -0.0191457 -5.47442e-23)
(0.879164 0.18516 -7.45795e-21)
(0.112693 -9.58272e-05 -1.55912e-21)
(1.11248 0.21066 1.82181e-22)
(0.770613 -0.198587 1.38491e-20)
(1.07045 -0.377534 -1.10999e-20)
(0.71991 0.246852 -4.38013e-21)
(0.889933 -0.0819544 -6.1389e-21)
(1.03233 -0.10569 -3.67336e-21)
(1.01562 0.265683 5.00189e-20)
(0.85622 -0.00186405 5.03498e-20)
(0.134139 -0.206246 -5.78167e-21)
(1.05686 -0.217847 -5.32558e-22)
(0.887153 0.0963166 -4.73865e-20)
(0.140997 -0.000494421 1.79317e-21)
(-0.000111127 -0.0322875 -8.48599e-21)
(0.954024 -0.050177 3.40145e-21)
(0.564329 0.12207 3.29696e-21)
(0.122196 -0.00104741 -1.0512e-20)
(1.03368 0.248351 2.97205e-20)
(1.03707 0.189927 -6.75745e-21)
(0.932327 -0.00049857 -6.50943e-21)
(0.150246 0.0330812 2.70197e-23)
(1.13939 0.199384 2.93531e-21)
(1.0427 0.234471 -3.27103e-21)
(1.11258 -0.214024 -6.7058e-21)
(1.18991 0.203921 -6.57035e-21)
(1.31111 0.167173 -3.03556e-21)
(1.11607 0.171488 1.37114e-21)
(0.0588535 -0.140167 7.72348e-21)
(0.764337 0.0127294 -3.36789e-20)
(0.762201 0.176703 -4.43908e-21)
(0.931046 0.0900555 -5.86117e-20)
(0.936639 -0.00410575 -3.47161e-21)
(0.527223 -0.126383 1.68778e-20)
(1.13745 0.190519 -1.32279e-20)
(1.14049 0.213744 -2.41775e-21)
(1.21322 0.166647 -5.42737e-21)
(0.148963 0.0327743 9.02596e-23)
(1.00868 0.249599 -9.87512e-21)
(0.913944 0.212167 -1.36289e-20)
(0.981651 -0.0634553 -1.31464e-21)
(1.18637 0.188647 -4.68599e-22)
(0.695221 0.133454 -5.27114e-22)
(0.985757 0.247679 1.1793e-20)
(0.0611613 -0.0034952 1.83993e-20)
(1.08788 0.223589 -2.56681e-20)
(0.891834 0.000507573 -1.28564e-20)
(1.03406 0.23406 2.10364e-20)
(0.384728 0.00187483 -1.85926e-21)
(1.16495 0.202382 2.04098e-21)
(1.01992 0.18547 1.93764e-21)
(1.21297 0.0674082 -3.17622e-20)
(0.81717 0.00122153 -1.59937e-20)
(1.1058 0.217418 1.02741e-21)
(0.298932 0.00263868 3.53542e-21)
(0.529188 -0.269998 -1.31948e-20)
(1.32159 -0.0662328 -7.92705e-23)
(1.03974 0.117743 8.36228e-21)
(1.27805 -0.422696 -5.42566e-21)
(0.710481 0.000243479 4.35673e-21)
(0.894838 0.0120558 6.09362e-20)
(0.931259 0.138906 -3.41329e-23)
(0.775822 -0.359684 1.19425e-20)
(1.31407 -0.190285 2.91704e-21)
(0.108065 0.0234696 -6.09185e-22)
(1.03057 -0.165421 -5.34965e-21)
(1.36375 -0.0837371 -9.25684e-22)
(0.861985 -0.00530985 -6.33123e-20)
(0.281226 -0.0279192 1.00264e-20)
(1.05914 0.186177 -1.46764e-22)
(1.41621 -0.249239 3.40108e-21)
(0.819063 -0.010827 -3.94055e-20)
(0.980893 -0.0503573 -1.99743e-21)
(1.06794 0.230315 2.96671e-21)
(0.72574 -0.00452218 -8.30663e-21)
(0.905429 0.0774842 -5.5787e-21)
(0.902079 0.000349655 1.92107e-20)
(0.895366 -0.375811 -6.74707e-21)
(1.22009 0.156591 4.60817e-21)
(0.723801 0.00293777 -1.79231e-21)
(1.03701 -0.513957 1.38603e-20)
(0.953963 0.000549018 1.40455e-20)
(0.511396 0.117163 4.72063e-21)
(1.41588 0.0549208 1.29558e-21)
(1.03465 0.173331 2.46025e-21)
(0.902684 -0.000241578 -1.76902e-21)
(0.981263 0.192025 -7.42769e-21)
(1.23256 -0.175366 2.05338e-21)
(0.811225 -0.143014 -7.89124e-21)
(1.13028 0.20382 9.04905e-21)
(0.935409 -0.0034455 6.51831e-21)
(0.907463 -0.609934 1.61408e-20)
(0.997127 -0.0924769 -1.69984e-21)
(1.33612 -0.0512859 2.19311e-22)
(1.10527 0.210961 6.91528e-21)
(0.181366 0.00148183 -1.05533e-21)
(0.59739 0.00629041 -1.93065e-20)
(1.16962 0.209879 1.4412e-20)
(1.04429 0.175358 -2.73549e-20)
(0.990823 -0.0499884 2.69262e-21)
(0.987402 -0.0699207 2.96809e-21)
(1.06954 -0.243675 5.75212e-21)
(0.578748 0.124941 7.42014e-22)
(0.964074 -0.00206182 -1.68124e-21)
(0.888554 -0.0773395 8.31777e-24)
(0.25704 0.0306092 3.72535e-20)
(0.740509 0.00285283 2.47079e-23)
(0.537608 0.22189 1.8805e-21)
(0.154427 -0.00279515 -1.21166e-20)
(0.66789 0.153258 -3.21741e-21)
(0.991113 5.68924e-05 1.09597e-21)
(0.721026 0.167489 -2.3815e-21)
(1.16482 0.136671 1.39105e-22)
(0.113065 0.0251663 7.93019e-21)
(0.899986 -0.000302647 -1.39613e-20)
(0.889318 -0.000658415 8.07013e-21)
(0.56178 0.020538 2.4573e-20)
(1.04774 0.16378 -2.42252e-21)
(1.12391 -0.196506 -4.67301e-21)
(0.683236 0.000455537 -1.53758e-20)
(0.893761 -0.0828366 5.95074e-21)
(0.84894 0.200985 -3.93325e-21)
(0.950999 -0.00752397 1.02592e-21)
(0.980163 -0.000302842 -1.64997e-21)
(1.05912 -0.210766 5.67439e-22)
(0.865535 0.210852 3.19132e-21)
(0.160144 0.0287007 -1.14138e-21)
(1.08117 0.217927 1.23411e-20)
(0.672547 -0.552851 1.17576e-20)
(0.855789 0.325358 -3.11554e-20)
(1.15453 0.123367 1.48367e-20)
(1.22745 0.0902761 5.62281e-21)
(0.929885 -0.000308318 -1.94471e-20)
(0.741504 0.262157 1.19196e-20)
(1.08089 0.179605 -2.01124e-20)
(0.818614 0.203811 2.23635e-21)
(1.06391 0.18064 2.59539e-22)
(1.07559 -0.361396 -9.24158e-21)
(0.214265 0.0453377 7.14231e-23)
(0.743544 0.159266 4.79043e-21)
(0.156544 0.035007 -1.44986e-20)
(0.201598 0.0427987 5.38199e-22)
(-0.000330366 -0.0334938 1.54076e-21)
(0.194184 -0.000399948 -5.14099e-21)
(1.22178 0.19754 3.44837e-21)
(1.06973 0.228707 3.66559e-20)
(0.554092 0.194757 -4.04738e-21)
(0.125346 0.0275121 6.01152e-22)
(0.932847 -9.32337e-05 1.057e-21)
(0.171233 0.0381457 -8.46667e-23)
(0.682283 9.62058e-06 1.74415e-20)
(1.10481 0.125359 -2.5955e-20)
(0.984944 -0.0530563 1.85589e-21)
(0.792491 -0.00288339 -3.05319e-20)
(1.01835 0.145377 2.7695e-21)
(0.0775239 -0.075427 1.21199e-20)
(0.289182 -0.528935 5.32738e-21)
(1.09541 0.127485 5.36858e-22)
(1.25019 -0.110363 5.1928e-22)
(0.988513 -0.0493025 8.94179e-22)
(0.965886 -0.0462002 2.57456e-21)
(0.929674 -0.00414209 4.69545e-20)
(0.996695 -0.132389 6.61481e-21)
(0.76768 0.160433 4.84222e-22)
(0.558809 0.192422 6.05915e-20)
(0.857786 0.20567 -6.70967e-21)
(0.878352 0.000834559 2.42804e-20)
(1.0994 0.160558 4.01145e-21)
(0.722805 0.156819 2.82112e-21)
(0.884845 0.0302112 -8.25747e-21)
(0.971384 -0.0408266 -1.32199e-21)
(0.353687 0.0800454 -7.37565e-21)
(0.357177 -0.0021523 -1.9706e-20)
(0.879405 -0.604564 -4.31545e-21)
(0.333141 0.215434 1.17031e-20)
(1.29995 -0.42067 -1.03308e-20)
(0.962337 -0.0498671 -1.73617e-21)
(0.191297 0.043067 8.83855e-22)
(0.994533 -0.0907742 5.15713e-21)
(0.476732 -0.000896566 3.42907e-21)
(0.77282 0.00237148 -1.28165e-20)
(1.26845 0.0206 -8.31449e-22)
(0.949873 -0.000182757 -2.781e-21)
(0.869678 -0.538788 4.1594e-21)
(0.899439 0.000521579 -3.75295e-21)
(0.347558 -0.0022991 4.74748e-22)
(0.74147 -0.13913 1.24538e-20)
(0.935886 -0.0757401 -4.24874e-21)
(0.643409 -0.640782 7.17955e-21)
(1.04104 0.16117 1.1086e-20)
(0.177107 0.0385484 -3.57571e-21)
(0.970567 -0.0394832 0)
(0.317377 -0.199973 8.72101e-21)
(0.981859 -0.0481227 -1.73812e-21)
(0.302067 -0.000767632 -8.68587e-22)
(1.48081 -0.141927 9.32641e-21)
(0.972857 -0.0406865 2.611e-21)
(1.392 0.0932212 6.03911e-22)
(0.947983 -0.0190012 1.74683e-22)
(0.122594 -9.51042e-05 1.12853e-21)
(1.02618 0.206715 -2.54154e-21)
(0.978477 -0.0449291 2.7724e-21)
(0.639664 -0.574098 9.81465e-21)
(0.932067 0.000666732 -5.64944e-21)
(0.877415 -0.000921733 2.27391e-20)
(1.2991 0.00880974 -3.44424e-21)
(0.19991 0.00260214 5.24062e-21)
(0.680111 0.148016 -2.79693e-21)
(1.09999 0.151243 1.58692e-21)
(0.641491 0.00864158 2.4701e-20)
(0.0152843 0.00353311 -2.9022e-21)
(0.605998 -0.000588218 -6.77258e-23)
(0.897736 -0.000749488 -1.64157e-20)
(0.596121 -0.64364 1.56327e-20)
(0.896693 -0.0108369 4.19031e-21)
(0.00626754 -0.112544 -1.52095e-20)
(0.846902 0.00256897 1.76751e-20)
(0.490595 -0.052424 1.35642e-21)
(0.57817 -0.261736 -1.16777e-20)
(0.985995 -0.0507871 -2.67423e-22)
(1.23585 0.111664 5.21725e-21)
(0.234135 0.0457998 8.67302e-23)
(0.784513 -0.00114058 1.10464e-20)
(0.103297 -0.0968793 6.27044e-21)
(0.119332 -0.00124328 2.10958e-20)
(0.135238 0.0279558 2.48934e-21)
(0.125498 0.0281121 2.63469e-21)
(0.785314 -0.00135826 1.24476e-21)
(0.840862 -0.0119272 -4.0068e-21)
(1.3027 -0.198743 -5.62166e-21)
(0.46353 0.103967 1.31774e-20)
(0.351149 1.49038e-05 -1.17613e-21)
(0.106671 0.0232074 -3.08206e-21)
(0.587274 0.126918 1.35376e-20)
(0.937446 -0.0729397 -4.83792e-21)
(0.988026 -0.0557392 4.14569e-22)
(0.93014 -0.301862 -9.78759e-21)
(0.497345 0.0621694 -1.24584e-20)
(0.832795 0.0444366 -3.18307e-20)
(0.651557 0.1301 1.63029e-21)
(0.774025 -0.00112523 -2.14175e-22)
(0.782425 -0.00338725 -5.50328e-21)
(1.02236 0.146168 4.67831e-21)
(0.386549 -0.0163214 -4.45058e-21)
(1.04476 0.144586 1.41455e-20)
(1.22317 0.181658 -4.14981e-22)
(1.35664 0.0187492 -1.67456e-21)
(0.681039 0.000631852 -2.59704e-20)
(0.10876 -0.000224452 -3.41699e-21)
(0.193637 0.00139922 2.2464e-21)
(0.880154 0.00137051 8.28627e-21)
(0.872892 -0.000465086 -4.66544e-21)
(1.05077 0.242661 -2.22596e-20)
(0.152488 0.033937 -6.34398e-21)
(1.17492 0.109123 -1.29052e-20)
(0.936357 -0.00308175 -2.22969e-20)
(0.876051 0.134994 2.51339e-22)
(0.628821 -0.00083045 -2.25796e-20)
(0.926855 -0.00624152 -6.64606e-21)
(1.00858 0.0892567 4.57622e-21)
(1.26666 -0.107107 -2.73474e-22)
(0.121928 -0.000419525 1.30358e-21)
(0.0795539 -0.220223 3.83947e-21)
(0.903805 0.0117774 4.45348e-20)
(1.00668 0.15152 -1.11742e-20)
(1.38929 -0.0153098 8.79059e-23)
(0.000207304 -0.0255979 1.83999e-20)
(0.696148 0.161371 1.12685e-20)
(0.969813 0.262502 9.35949e-21)
(0.570589 -0.630134 -4.55164e-20)
(0.188021 0.000114336 4.35047e-24)
(0.642363 0.323697 2.02438e-20)
(0.92751 -0.0035432 -4.17212e-20)
(0.114731 -0.000631721 1.38151e-21)
(1.1551 0.208247 -1.00647e-20)
(0.94547 -0.0698481 6.42288e-21)
(0.377695 0.0783326 -4.9853e-21)
(0.306842 0.0701018 -1.40691e-20)
(0.895589 -0.0752036 -1.61136e-21)
(1.25318 0.134986 -1.11386e-20)
(0.131837 0.0284148 -1.25374e-21)
(0.926459 0.07228 0)
(1.12389 0.192656 -3.22205e-20)
(1.35383 -0.468564 -5.42444e-21)
(0.19945 -0.00202176 -5.72508e-21)
(1.3071 -0.149649 1.33169e-22)
(1.257 0.0252866 -3.56419e-21)
(0.119052 -0.00156081 -1.27221e-21)
(0.106832 0.0223989 7.55579e-22)
(0.411091 0.0932621 7.93533e-21)
(0.989161 -0.0690932 -4.00447e-21)
(0.761113 -0.405786 1.26739e-20)
(0.990008 0.226936 -3.54105e-20)
(0.109843 0.0242191 9.91467e-21)
(0.63874 0.15929 -6.89982e-21)
(0.871871 -0.694324 -8.72652e-21)
(0.792553 -0.000547881 3.50182e-21)
(1.04379 -0.214458 -1.29756e-21)
(0.974286 -0.0496904 -1.53958e-21)
(0.112411 0.0249277 4.29842e-22)
(0.000202387 -0.0326598 -6.66362e-21)
(0.145343 -0.0019296 3.25367e-21)
(0.280331 -0.51807 2.91079e-21)
(0.284315 -0.343754 -9.60221e-22)
(0.895897 -0.000310797 3.9639e-20)
(0.139001 0.000637301 1.45844e-20)
(0.94713 -0.0723322 -8.69332e-21)
(0.996046 -8.26406e-05 -3.74673e-21)
(1.1828 0.141759 -9.74556e-21)
(0.930108 -0.342 1.39618e-20)
(0.794717 -0.00194947 -1.16031e-20)
(0.141003 0.000478599 -2.55654e-21)
(0.876754 -0.0007175 9.61915e-21)
(0.595093 -0.000228165 3.32325e-21)
(0.949834 0.280742 -1.90759e-20)
(1.0908 0.152312 5.58234e-21)
(0.0207002 0.00486561 -1.34506e-22)
(0.847038 -0.00767607 3.23397e-20)
(0.313228 0.0721805 -1.98444e-20)
(1.20481 0.195801 -8.26227e-21)
(0.318764 -0.0019004 -5.81124e-21)
(0.873515 0.0127259 6.47632e-20)
(0.314739 -0.185565 4.7452e-21)
(1.3067 -0.115538 -9.35102e-22)
(0.123466 -0.214188 1.11674e-20)
(0.88401 -0.00077065 1.61709e-20)
(1.05606 0.229152 -2.01894e-20)
(1.43752 0.0166035 -5.74767e-21)
(0.724631 0.165411 4.24031e-21)
(0.139654 0.00223269 -1.71573e-22)
(0.92358 0.305754 2.41498e-22)
(0.122754 0.00102033 7.62562e-21)
(1.03518 0.204894 -7.56228e-21)
(0.865355 -0.0195225 -6.14938e-21)
(1.17068 0.197698 9.21079e-21)
(0.0191958 -0.0137577 1.60817e-20)
(0.880468 0.00115147 -1.01707e-21)
(0.908141 -0.423711 2.99465e-21)
(0.111784 -0.00054153 -9.88437e-23)
(0.684612 0.000148965 5.982e-21)
(1.2716 0.163677 7.25326e-21)
(0.492183 0.164669 -6.67042e-21)
(0.000259994 -0.0333205 -4.56103e-21)
(0.670109 0.142558 -1.64441e-21)
(0.146644 -0.000366344 2.60464e-23)
(1.29939 -0.000326044 7.25425e-21)
(0.414046 -0.440547 2.82742e-20)
(0.379491 0.0850401 8.79443e-21)
(0.707381 -0.491088 -1.81429e-20)
(1.28751 -0.452058 -2.35307e-21)
(0.116194 -0.000599963 4.94995e-22)
(1.06007 0.182528 8.75157e-21)
(0.794081 0.183583 -1.02024e-20)
(1.30536 0.11219 2.92001e-21)
(0.914226 -0.00463731 1.25537e-20)
(1.05193 0.174037 -2.23911e-20)
(0.983852 0.213587 -4.96883e-21)
(0.984633 -0.0614934 -2.87777e-22)
(0.432554 0.100442 2.31126e-21)
(0.921117 0.000347132 -1.19878e-20)
(0.0403271 0.008271 1.5076e-21)
(0.483879 -0.516384 2.1675e-20)
(1.12793 -0.210942 -1.0331e-21)
(0.898626 -0.010879 -3.82592e-21)
(1.01849 -0.143898 2.57062e-21)
(0.929048 -0.000116949 -1.69162e-20)
(0.901278 -0.000780898 -6.85071e-21)
(1.11111 -0.296689 -1.11011e-20)
(1.03662 0.117867 -1.83574e-20)
(1.05557 0.187293 3.73908e-20)
(0.970254 0.0917436 -4.64439e-20)
(0.690736 0.000199181 6.15911e-22)
(0.218203 -0.287708 -3.45282e-21)
(0.950901 0.178828 -3.13219e-21)
(0.806825 -0.0119464 4.23944e-21)
(0.375309 -0.00518288 -1.42906e-20)
(1.0313 0.1943 2.27619e-22)
(0.678398 0.155517 -3.47616e-21)
(0.197457 0.00173293 9.18375e-21)
(0.811516 0.115536 1.75909e-20)
(0.86859 -0.00767866 -4.76932e-20)
(0.873144 0.00181983 -4.12081e-21)
(0.203013 0.00188052 -1.54105e-20)
(1.16775 0.152115 -2.42441e-20)
(1.18317 0.195055 4.98245e-21)
(0.691123 0.158872 -1.35041e-20)
(0.0169978 0.00359313 5.59572e-22)
(0.28586 -0.2101 -1.63479e-20)
(0.0985859 0.0239557 -5.65487e-21)
(0.347227 -0.00506134 -4.50906e-21)
(1.25823 0.130844 1.42199e-21)
(1.05441 0.23771 -8.69381e-21)
(1.05263 0.184485 -2.99899e-21)
(0.950024 -0.0717331 3.0109e-21)
(0.768368 0.269514 1.17336e-20)
(0.44439 0.0982467 -3.61437e-21)
(0.594737 0.000896547 -3.09961e-22)
(0.549003 -0.24532 -1.36025e-20)
(1.01783 0.151443 9.13618e-21)
(0.88526 -0.000139649 6.69775e-22)
(0.933151 7.46901e-06 -1.40964e-20)
(1.43721 -0.214607 3.64061e-22)
(1.24469 0.0388241 4.41708e-22)
(0.306021 0.0707152 -8.41763e-21)
(0.714758 -8.5544e-05 4.16202e-21)
(0.891924 -0.074187 3.62691e-21)
(0.790693 -0.000929369 1.837e-20)
(0.987961 0.260174 -2.96391e-21)
(0.922776 0.0134013 -2.69607e-21)
(0.908192 -0.218676 1.82103e-20)
(0.749898 0.00271109 4.63461e-22)
(0.889093 0.245551 -1.06874e-20)
(0.13307 0.0277263 -1.65962e-21)
(0.742532 0.000742812 -1.32156e-20)
(0.789046 0.282776 -1.37167e-20)
(0.969317 -0.480942 1.88411e-20)
(0.655463 0.131383 2.63229e-21)
(0.104214 0.022924 -2.68104e-22)
(1.26638 0.0978654 -1.03703e-20)
(0.894929 -0.0027743 -7.4129e-21)
(0.680742 -0.640564 1.66601e-20)
(0.00172354 -0.0195795 1.50502e-20)
(0.98971 -0.0635086 2.22404e-21)
(1.40738 -0.19665 2.18765e-21)
(0.112858 -0.000781616 -2.73218e-21)
(0.108247 -1.0795e-05 -5.73792e-21)
(0.977752 0.272135 1.85999e-20)
(1.17485 0.15197 1.83438e-20)
(0.826808 0.191151 4.4207e-21)
(0.996551 0.200497 -1.74605e-20)
(0.947769 7.863e-05 1.32624e-20)
(1.02697 0.209752 1.43793e-20)
(1.35667 -0.160846 5.01446e-21)
(0.205562 0.000528779 1.60984e-21)
(0.807098 0.186788 -1.25393e-20)
(0.9293 -0.0017215 4.60549e-21)
(1.14235 0.198235 -9.96476e-21)
(0.794581 -0.156805 -6.87843e-21)
(1.04986 0.244416 3.7438e-20)
(0.949479 0.0039853 9.14773e-21)
(0.992607 0.276969 -5.08046e-21)
(1.34388 0.12119 9.72989e-22)
(0.999683 0.205887 -1.5252e-20)
(0.119419 0.00145224 8.41705e-24)
(0.840145 0.200201 1.65727e-20)
(1.28045 0.175958 4.40294e-21)
(0.870728 -0.0180523 -1.20614e-20)
(1.08314 0.207181 2.97429e-20)
(0.724173 -0.360401 -2.40182e-20)
(1.38689 -0.328721 -1.11672e-21)
(0.97631 0.114679 1.16538e-21)
(0.69593 0.140829 1.63147e-21)
(0.336738 0.0771866 9.22477e-21)
(1.06715 0.21955 1.33928e-21)
(1.48268 -0.168544 -1.24313e-20)
(1.05319 -0.248158 -3.46485e-21)
(0.0949711 0.0196493 -3.20111e-22)
(0.540519 0.114377 6.60918e-21)
(0.968246 -0.00103942 -4.01144e-21)
(0.936601 -0.107223 -2.82018e-21)
(1.09106 0.222611 7.26424e-21)
(0.992284 -0.0924892 3.32193e-21)
(0.102281 0.0236396 -1.00667e-22)
(0.0194506 -4.23062e-05 -5.61162e-23)
(1.02243 0.174753 -1.55427e-20)
(0.745682 0.266905 3.66353e-20)
(0.426255 -0.00456726 1.91571e-20)
(0.139096 0.000365379 2.55081e-20)
(0.521303 0.134352 -1.19913e-20)
(0.982917 0.27789 -2.43954e-20)
(1.17838 0.19593 1.06982e-20)
(0.882916 -0.0139356 1.92784e-21)
(0.89822 -0.000310556 9.83591e-21)
(1.18573 0.16928 -4.6069e-21)
(1.01591 0.0977736 -2.57052e-20)
(0.875759 -0.0104279 4.22331e-20)
(0.503223 0.111533 1.07721e-20)
(0.136685 0.0327912 -1.43079e-21)
(1.14867 0.128544 2.59753e-21)
(0.788483 -0.191276 1.0115e-20)
(0.740679 0.187536 3.7588e-21)
(0.887354 -0.00113097 3.32527e-22)
(0.881664 0.0455206 -7.65973e-20)
(0.958084 -0.00222817 4.23254e-21)
(1.28467 0.147442 -8.97461e-22)
(0.425763 0.0966604 -7.51373e-21)
(1.24766 0.133471 7.68279e-21)
(1.25755 0.116976 4.98028e-23)
(0.777761 -0.189877 7.05119e-21)
(1.21744 0.187513 1.62903e-20)
(0.0956334 0.0228399 -6.73981e-21)
(0.951727 -0.00329931 -1.38659e-21)
(0.992057 0.205019 5.34899e-21)
(0.2238 -0.00120634 -6.27826e-21)
(0.109745 -0.114735 -2.49187e-20)
(1.05747 0.13771 -2.25944e-20)
(1.12447 0.146866 -2.34129e-20)
(1.20647 0.200731 -1.90356e-20)
(1.40583 0.0236362 9.4637e-22)
(0.178151 0.0566032 -1.8646e-21)
(1.19478 0.159345 2.17512e-20)
(0.11046 0.00112893 7.3473e-21)
(1.31656 -0.400456 8.91403e-21)
(0.0826885 0.0184416 -4.27115e-21)
(0.866173 0.0108668 3.68338e-22)
(0.00174604 -0.0313988 -2.88305e-21)
(0.817517 0.00115945 -3.84694e-20)
(0.11158 -0.000256717 1.23235e-20)
(0.652061 0.00171412 3.11149e-20)
(1.20176 -0.430237 -5.84915e-21)
(1.17606 0.104453 2.36659e-21)
(1.14687 0.153369 6.1301e-21)
(1.05105 0.124872 4.16481e-20)
(0.882872 0.261121 4.1571e-20)
(0.897465 -0.0681222 2.65093e-21)
(0.740254 0.014065 -1.58731e-20)
(0.889741 0.0428411 4.15964e-20)
(0.978437 -0.000629676 -2.67757e-22)
(1.01399 0.246026 8.66278e-21)
(0.706096 0.151501 2.56563e-21)
(0.643835 0.148243 -3.65377e-21)
(1.14292 0.148511 9.22773e-21)
(0.452683 0.181347 5.87185e-21)
(1.16225 -0.184854 3.07042e-21)
(0.322069 0.00312084 -1.55002e-20)
(0.967642 -0.453641 2.10578e-20)
(1.39632 0.0267454 -9.67606e-22)
(0.952497 -0.00271627 5.74159e-21)
(1.00466 -0.124948 -2.82561e-21)
(0.105291 -0.000233764 3.9529e-22)
(1.31988 0.150835 1.87878e-22)
(0.991353 0.245629 -1.10341e-20)
(0.721962 0.0173775 3.22118e-20)
(0.995629 0.226544 3.49198e-20)
(0.6796 0.00462561 4.71623e-21)
(0.489794 0.216876 1.41976e-20)
(0.833716 0.303992 -3.77556e-20)
(0.110066 0.024013 2.10308e-23)
(0.982548 -0.000358588 -8.5165e-22)
(0.990077 0.214136 2.04725e-20)
(0.200218 0.0440039 -1.2427e-21)
(1.48762 -0.177123 1.18407e-20)
(0.28525 0.063256 8.31915e-22)
(0.923463 -0.00262538 -4.51419e-21)
(1.10356 0.215412 -7.35564e-22)
(0.901985 -0.333538 -7.92906e-21)
(0.177845 -0.350038 1.88384e-20)
(1.07796 0.227274 -1.69255e-20)
(0.993703 0.26365 5.5653e-21)
(0.979564 0.0812017 0)
(0.000873812 -0.0281463 0)
(0.331617 -0.00207672 -7.12647e-22)
(0.222792 -0.00851651 -9.82966e-21)
(0.592739 -0.269595 1.28497e-20)
(0.957954 -0.074642 4.3952e-21)
(1.27025 0.14965 -2.09036e-21)
(1.37792 -0.0450711 -4.95259e-21)
(1.29988 0.131407 -2.78644e-21)
(1.13381 0.130192 -6.18806e-21)
(0.166236 0.0377556 -2.02805e-21)
(0.817919 0.00157074 4.56139e-21)
(0.983899 -0.000873593 1.33348e-22)
(0.916887 -0.213633 -5.1614e-21)
(0.335695 0.0724649 -1.8291e-21)
(0.890903 -0.0698887 1.5447e-21)
(0.351745 0.0787246 3.53142e-22)
(0.791164 -0.00999067 2.60595e-21)
(0.555318 0.153508 2.16249e-20)
(0.891068 0.0821911 -1.28222e-19)
(1.05006 -0.219716 -2.27805e-21)
(0.140569 -0.000413301 -3.14724e-21)
(1.12081 0.166786 -7.9938e-22)
(0.111446 0.0245853 1.12853e-20)
(0.160378 0.0389063 1.05567e-20)
(0.141629 0.00121726 7.50523e-21)
(1.43649 -0.00509459 -2.01721e-21)
(1.06299 -0.225523 1.09721e-20)
(0.192883 -0.296839 2.29697e-20)
(1.17134 0.150136 -8.75341e-21)
(0.995168 0.216007 -1.38332e-20)
(0.940943 -0.105505 5.20777e-21)
(0.917106 -0.452971 1.66247e-21)
(0.934055 -0.00161705 1.14518e-19)
(0.00295013 -0.056044 9.28517e-21)
(0.730166 0.283876 1.22524e-20)
(1.25964 0.116317 5.237e-21)
(0.832321 0.00681208 -1.69064e-20)
(0.222168 0.0453293 -1.23158e-21)
(0.0997579 0.0219172 -4.90915e-21)
(1.06408 0.199483 -2.39625e-21)
(0.0796097 -0.103647 -3.35602e-20)
(0.872071 1.19326e-05 -2.62092e-21)
(0.706002 -0.00287664 -6.16725e-22)
(1.31352 -0.105802 8.78686e-22)
(0.703869 0.151892 1.57837e-20)
(0.698264 -0.00264687 3.08983e-22)
(0.301917 -0.406555 -7.96324e-21)
(0.996133 -0.611358 -8.0624e-21)
(0.109074 -8.70503e-05 -3.12628e-21)
(0.0447677 0.0120774 4.84739e-21)
(1.00033 -0.468186 -1.4188e-20)
(0.838925 0.29271 1.25143e-20)
(0.238223 0.05373 3.44116e-21)
(0.0947094 0.0204837 -1.38826e-21)
(1.30323 -0.136963 -1.64644e-21)
(0.144148 0.0320181 1.01914e-21)
(0.140463 0.00166157 -2.46384e-22)
(0.186327 -0.000515571 3.34028e-21)
(0.230781 -0.00218476 2.64984e-21)
(1.01829 0.0975078 4.62608e-21)
(0.974567 -0.044937 2.15979e-21)
(0.138698 -0.000593553 7.59898e-21)
(0.980131 0.284328 5.77956e-20)
(0.323892 0.0740205 -4.88559e-21)
(0.340074 0.0776513 1.04393e-20)
(0.990899 -0.0707263 3.67645e-22)
(0.141385 0.000653328 1.4997e-20)
(1.04882 0.185563 1.51103e-20)
(1.29973 0.156086 6.80304e-22)
(0.926681 0.00124758 -3.09994e-20)
(0.705035 0.163095 -2.57476e-21)
(0.87786 -0.000240148 -2.61876e-21)
(0.949811 -0.0086871 -3.88554e-21)
(0.0895984 0.0211746 -6.72816e-21)
(0.131159 0.0271391 1.08508e-21)
(1.39682 -0.212343 8.2464e-21)
(1.23415 0.106622 -2.13604e-21)
(0.650218 0.243362 -2.49677e-20)
(0.770868 0.201498 1.75806e-22)
(1.26649 0.182058 9.18348e-22)
(0.116019 0.0251573 -3.44017e-23)
(1.28116 -0.0139579 -1.593e-21)
(0.542013 0.118827 -4.22106e-21)
(1.40223 -0.0586171 -1.5824e-21)
(1.0963 0.219375 -1.65119e-20)
(1.42217 0.0430382 -6.00269e-23)
(0.916611 -0.205339 4.0454e-21)
(0.0262492 0.0055268 -9.78711e-22)
(1.20102 0.110529 2.01668e-20)
(1.24177 0.112944 -1.59533e-21)
(0.000972022 -0.0485054 6.0409e-21)
(1.13722 0.125352 9.52009e-21)
(0.965885 -0.0434098 1.94703e-21)
(0.111756 0.00124099 -9.50578e-22)
(0.268963 0.0588122 -5.19576e-21)
(0.772509 -0.000360909 -4.64884e-20)
(0.19975 -0.000606517 8.5704e-21)
(0.207249 0.00250958 -7.94061e-21)
(0.837637 0.0257181 -3.57913e-20)
(0.766049 -0.0216372 2.04619e-20)
(0.741943 -0.36032 1.75221e-20)
(1.1464 0.194285 -6.64422e-21)
(0.864453 -0.295048 -3.15327e-21)
(0.924657 -9.4868e-05 2.73202e-22)
(0.963444 -0.042285 1.16226e-21)
(0.823978 0.135003 2.69289e-22)
(0.873075 0.0163881 -1.92688e-20)
(1.21856 -0.160514 1.3195e-21)
(0.42517 0.00236446 -8.67901e-21)
(0.965296 -0.0423411 -1.58007e-22)
(0.994618 -0.111104 -1.81493e-21)
(0.332963 -0.00106662 1.32804e-22)
(0.359262 0.00116061 -1.83708e-20)
(0.853258 -0.0112842 -5.52205e-21)
(0.932734 -0.000146419 3.03673e-21)
(0.879916 0.00230781 -1.31565e-20)
(0.902732 5.56631e-05 -2.66541e-21)
(1.12679 0.191614 6.36775e-21)
(0.571919 0.117435 -1.18249e-20)
(0.106308 0.000908277 6.31929e-23)
(1.14396 0.199877 7.75756e-21)
(0.117011 -0.000589378 2.66071e-21)
(0.14965 0.0329661 3.79019e-21)
(0.0895627 0.0202294 -9.2859e-21)
(1.2868 0.153697 -5.6415e-21)
(1.2219 0.137313 -1.03528e-22)
(0.332959 0.0713188 -3.46885e-21)
(1.13833 0.128996 4.12665e-22)
(0.974006 -0.494548 -3.27783e-21)
(0.887776 -0.318121 1.35902e-20)
(0.879824 0.000760466 1.3673e-21)
(0.984741 0.279137 2.293e-20)
(1.1514 0.191857 -3.37165e-21)
(0.941531 -0.10142 -9.40866e-21)
(0.830659 0.00266864 1.40038e-20)
(1.03403 -0.143263 -2.97439e-21)
(0.228637 0.000642297 -1.59304e-21)
(0.143794 -0.0013036 3.74843e-22)
(0.397698 0.0822005 6.03434e-21)
(0.816744 0.325524 2.70113e-21)
(0.110725 0.00052947 2.80268e-21)
(0.220366 0.0500364 4.29439e-21)
(1.27542 -0.0708128 -1.45704e-21)
(1.035 0.115063 5.00196e-21)
(0.94582 -0.476419 -1.42966e-20)
(0.912317 0.0334148 -3.74437e-21)
(0.97233 -0.00126589 -8.61469e-22)
(0.723353 -0.0134652 -9.88407e-21)
(1.01098 0.205302 -4.95522e-21)
(1.20449 0.202079 1.17785e-20)
(1.35493 -0.334806 -5.43519e-21)
(0.399547 0.169056 -6.27256e-21)
(0.892729 -0.000880424 -9.75156e-21)
(0.33518 0.0760083 -1.63091e-21)
(1.02464 0.143104 4.759e-21)
(0.445536 0.0990389 -3.83018e-21)
(0.990474 -0.107138 -1.941e-21)
(1.22148 0.185823 1.86175e-21)
(0.900574 -0.408726 -2.11506e-20)
(1.00143 0.0757513 3.25689e-20)
(0.649966 0.105718 -8.25025e-20)
(0.963274 -0.0450668 -1.65898e-21)
(0.67308 0.116204 5.07665e-22)
(0.796041 -0.182018 7.26586e-21)
(0.875549 -0.304142 2.88459e-21)
(1.35005 0.132134 1.368e-21)
(0.621199 0.127045 7.31868e-22)
(0.101863 0.0225293 -4.07514e-21)
(1.29651 -0.113978 -1.41039e-21)
(0.107449 0.000814379 -1.90467e-22)
(0.942689 -0.00143783 -6.49458e-21)
(0.808653 -0.157154 1.57325e-21)
(0.391846 0.0873852 -6.08379e-21)
(0.839993 -0.0698646 -2.82157e-22)
(0.905669 -0.000851278 1.94281e-22)
(1.11214 0.211517 2.00648e-20)
(0.814281 0.00243581 2.47378e-20)
(0.987239 -0.0620887 -4.80118e-21)
(0.988467 -0.0450894 2.25223e-21)
(0.808891 0.00227988 -3.53828e-22)
(0.179978 0.0416313 -5.10732e-22)
(0.305913 0.069812 -1.07786e-20)
(0.383333 0.0900361 -5.11343e-21)
(1.31251 0.140822 -1.11082e-21)
(0.19354 -0.000116908 -9.01585e-21)
(0.930576 -0.0786123 -2.34506e-21)
(0.0918348 0.0186327 -2.34773e-21)
(0.0237645 -0.000304255 -8.69295e-21)
(1.27313 0.0434006 1.2295e-21)
(0.377278 0.0896095 -1.46068e-21)
(0.00233488 -0.0409158 -1.80293e-21)
(1.10171 0.130508 7.69932e-20)
(1.02934 0.164827 -3.22178e-21)
(0.758011 0.000234927 -3.41135e-21)
(0.0404351 -0.0470812 4.12467e-21)
(1.17548 0.187705 -5.18286e-21)
(0.10805 0.00105451 7.52382e-24)
(1.44633 -0.199702 -7.32162e-21)
(0.953401 0.289377 -3.34762e-20)
(0.750338 0.00141293 -2.90318e-23)
(1.19619 0.0961281 -2.91794e-20)
(0.944721 -0.0378473 -8.14157e-21)
(0.88552 -0.00052388 -1.09359e-21)
(0.107554 -0.000711667 -6.3242e-23)
(0.00068186 -0.0303318 -3.05495e-21)
(1.12694 0.135806 -3.13384e-22)
(0.193408 0.000561329 -4.89939e-21)
(0.561596 -0.270886 3.56257e-21)
(0.731993 -0.00104128 2.78201e-20)
(1.15034 0.189966 -1.35955e-20)
(0.592488 0.128499 -1.33817e-21)
(0.90055 -0.00651377 1.08281e-20)
(0.93416 -0.000207585 2.05434e-21)
(1.38896 0.0183522 2.75595e-21)
(0.888055 0.0611406 -5.71714e-22)
(0.136687 0.000186359 7.43293e-22)
(1.4645 -0.172475 1.82263e-21)
(0.836176 0.000950453 -3.61823e-21)
(0.0630538 -0.0546918 2.45107e-21)
(0.982282 -0.0528514 5.45932e-22)
(0.934004 -0.00279025 -1.14043e-20)
(0.330826 0.0738269 3.34247e-21)
(0.818915 -0.0195785 -3.29905e-21)
(1.04082 -0.587449 5.10401e-21)
(0.34628 -0.00452451 1.1164e-20)
(0.797572 -0.548024 2.67427e-21)
(1.21604 0.184783 -4.91737e-21)
(0.234817 -0.0464454 -1.04524e-20)
(1.35674 0.125031 5.37461e-23)
(0.280765 -0.000997225 -1.93424e-21)
(0.989395 -0.00013176 -1.09137e-21)
(0.967689 -0.0433971 -4.38517e-21)
(0.812779 0.287283 1.34323e-20)
(0.666817 0.145754 -4.29309e-21)
(1.1434 0.195508 3.83541e-20)
(0.723885 0.145175 3.79961e-21)
(0.765936 0.1738 -4.45198e-21)
(1.03161 0.178034 2.19612e-21)
(0.931429 7.72935e-05 -8.33692e-21)
(0.000166488 -0.0267489 1.37707e-20)
(0.99248 0.251255 -4.11211e-21)
(0.085277 0.0192873 4.55834e-21)
(0.283034 0.063883 7.56059e-21)
(1.02524 0.124635 -1.32587e-20)
(1.08533 -0.254971 1.33186e-20)
(0.0629665 -0.0396844 7.6324e-21)
(0.0850081 0.0183763 4.32557e-21)
(0.144775 -0.0022913 -8.92271e-21)
(1.1176 0.215398 1.38788e-20)
(0.6371 0.19722 -3.65613e-20)
(0.243054 0.0541168 -7.099e-21)
(0.709931 -0.517991 2.81752e-20)
(1.06852 -0.253752 -3.03585e-21)
(0.772259 0.00135952 1.56717e-20)
(0.112683 0.000494558 -8.60858e-21)
(1.21639 0.1637 -5.63906e-21)
(0.9738 0.12143 3.03305e-20)
(1.39718 0.0459421 -1.97765e-21)
(0.272731 0.0586843 -1.29661e-21)
(0.74794 0.00089423 1.41944e-21)
(1.00338 0.246949 3.8005e-21)
(0.156711 0.0138984 -1.58852e-20)
(0.389054 0.0829915 -1.45317e-21)
(0.867361 0.300993 -1.79743e-20)
(0.0931776 0.0208598 2.6337e-21)
(0.509879 -0.188465 6.25701e-21)
(0.253756 -0.0334427 -1.76392e-20)
(0.281134 0.185853 -1.69771e-20)
(0.306103 -0.212373 -1.22354e-20)
(1.21996 0.0751125 3.33875e-21)
(1.36811 -0.0216382 4.16026e-21)
(0.986072 -0.000286048 1.72472e-20)
(0.369941 -0.00922891 1.70497e-20)
(0.978394 -0.0498333 3.33796e-21)
(0.988549 -0.062028 1.17806e-21)
(0.261155 0.000794481 -4.89647e-22)
(0.407642 -0.0139401 3.11913e-21)
(0.352554 0.0807586 2.56065e-21)
(0.134502 0.0388438 3.17107e-21)
(1.07987 0.227215 4.2681e-20)
(1.23484 -0.164852 -1.90354e-21)
(0.627443 0.135524 -4.79214e-21)
(0.912614 -0.00802187 5.38726e-21)
(0.777547 0.128951 -1.0267e-22)
(1.12636 0.176474 2.33737e-20)
(0.124255 0.0270818 -2.46431e-21)
(0.815914 -0.00119979 4.51643e-21)
(0.212247 -0.00590108 -1.13766e-20)
(1.04555 0.244954 1.12167e-20)
(0.623125 -0.265876 6.69774e-22)
(0.756053 -0.00222617 -1.27465e-20)
(1.01083 0.201248 -2.5284e-20)
(0.675849 -0.000406697 -1.17367e-20)
(0.54712 -0.261508 1.18313e-23)
(0.972895 0.125665 1.49702e-20)
(0.652157 0.140002 4.01104e-22)
(1.02585 0.209657 3.19179e-21)
(1.03196 0.115064 1.7271e-20)
(0.19084 0.0419078 -4.06918e-22)
(1.18652 0.193804 6.08299e-22)
(0.26348 0.00279962 3.51711e-21)
(1.15908 0.175549 2.34392e-20)
(1.2265 0.167682 4.1384e-21)
(0.99373 -0.000102875 -5.63591e-22)
(0.888994 -0.0143376 5.79297e-21)
(0.725842 -0.0192874 1.51486e-21)
(0.729629 0.000703597 -9.19835e-21)
(0.985948 0.25492 1.81785e-20)
(0.259949 -0.48725 1.2292e-20)
(1.15704 0.147074 -1.24868e-20)
(0.950431 -0.00191464 7.40425e-21)
(1.01198 0.198865 -2.45623e-21)
(0.373626 -0.00620409 1.53573e-20)
(0.00100343 -0.0375758 -1.7929e-20)
(0.847893 0.20503 -5.64895e-21)
(0.963183 0.195345 1.20427e-21)
(0.0906081 0.0200873 4.05477e-21)
(0.686202 0.147735 2.98723e-21)
(1.21627 0.172256 9.34334e-21)
(0.982327 -0.00485964 4.61289e-21)
(0.422704 -0.596346 -3.15506e-20)
(0.784626 -0.147508 -8.26164e-21)
(0.211723 0.0458354 -6.30145e-21)
(0.65135 -0.260656 -3.46081e-21)
(0.81401 0.188607 1.30636e-20)
(0.196919 -0.0866672 -5.32025e-21)
(0.140412 -0.00061127 -1.0033e-20)
(1.09856 0.132359 -4.5143e-20)
(0.480732 0.243719 2.62995e-20)
(1.01041 0.150702 2.00205e-20)
(0.998247 -0.136961 -9.90244e-22)
(0.739302 0.00224125 -1.18464e-21)
(0.148236 0.00195961 -5.96433e-21)
(0.680614 0.156881 1.56519e-20)
(0.998632 -0.10758 -1.04122e-22)
(1.06313 -0.350526 7.92472e-22)
(0.807749 -0.00672907 -3.96803e-20)
(0.898238 0.0261998 -1.84271e-20)
(1.33393 -0.401782 -2.28987e-22)
(0.243574 0.000710412 -2.39347e-21)
(1.05398 0.124876 1.44781e-20)
(1.10165 0.127389 -7.04011e-21)
(0.883554 0.000439438 -9.68508e-21)
(0.94356 -0.0152031 -1.35134e-21)
(0.798082 -0.106589 8.14311e-21)
(0.887185 -0.297624 -7.89781e-21)
(0.896405 0.0125595 -2.28838e-20)
(0.749189 -0.0171859 -1.71352e-20)
(0.775394 -0.00242751 -2.21556e-22)
(0.956105 0.181444 8.15081e-21)
(0.950533 0.28578 1.37436e-20)
(0.934083 -0.000743672 -2.39435e-22)
(0.626132 0.136999 5.6291e-21)
(0.966201 -0.0409063 2.38873e-21)
(0.27881 0.0608104 1.26848e-20)
(0.1061 -0.000655097 1.26714e-21)
(0.431713 0.098649 1.28353e-21)
(0.316158 0.0691697 -2.58641e-21)
(0.949254 -0.0124211 3.2318e-21)
(0.797063 0.163877 -1.06075e-20)
(0.415824 -0.00290244 2.24444e-21)
(1.00309 0.138584 1.76566e-20)
(0.347639 -0.188456 8.05929e-21)
(0.98401 0.199059 -5.08501e-21)
(1.2164 0.197254 -1.75003e-21)
(0.988815 -0.0799621 -4.64751e-21)
(0.849847 0.0318348 1.27503e-20)
(0.862005 0.0243353 -3.43842e-20)
(0.872222 0.0850099 2.93211e-20)
(0.393492 -0.0361861 -1.69664e-20)
(1.05571 0.121996 1.24053e-21)
(1.01188 0.218524 -2.39973e-20)
(0.0833567 0.0183854 6.48829e-21)
(0.942965 -0.0851141 -3.0041e-21)
(0.00386869 -0.0461968 1.02953e-20)
(0.33808 0.00447385 -3.47314e-21)
(0.333673 0.0178029 7.5823e-21)
(1.13735 -0.620754 -1.48549e-20)
(0.11479 -0.000422421 -2.90349e-20)
(0.854483 -0.0123146 -8.21609e-20)
(0.363097 0.080831 -3.34554e-21)
(0.743471 -0.015452 2.81188e-20)
(1.11308 -0.20644 -1.805e-21)
(1.01315 -0.145075 -6.81158e-22)
(1.04481 0.13198 -2.99086e-21)
(0.978773 0.18118 3.85516e-21)
(1.00606 0.207167 -2.10231e-21)
(0.914293 -0.69195 8.83556e-21)
(0.761118 0.149426 1.41701e-21)
(0.735311 -0.607245 -5.93183e-21)
(1.04848 -0.229015 1.29212e-20)
(0.732965 -0.00267652 1.44436e-23)
(1.13071 0.159692 1.38774e-20)
(0.71547 -0.375643 2.69859e-20)
(1.1817 0.193135 7.07565e-21)
(0.1166 0.0281752 5.37111e-21)
(1.0127 -0.594699 -1.03363e-20)
(0.410868 0.0986503 6.88942e-21)
(0.899697 -0.0619256 1.72139e-21)
(1.22553 0.173063 3.61918e-21)
(0.839766 -0.0611794 -2.57118e-21)
(0.889876 -0.000183136 4.72084e-23)
(0.999978 0.140344 3.32987e-21)
(0.783774 0.00106992 -2.74444e-22)
(0.783636 0.193292 8.19547e-21)
(0.670621 0.143415 -4.56508e-21)
(0.0008694 -0.0274407 1.4801e-20)
(0.0787915 0.0184832 -1.23909e-21)
(0.311452 -0.228536 3.45413e-20)
(1.09074 0.217275 -3.15408e-20)
(0.902698 -0.000168702 -1.70635e-20)
(0.92287 -0.00324365 1.43177e-20)
(0.526458 -0.184696 8.98354e-21)
(0.192623 -0.00140988 -8.81192e-22)
(0.00248969 -0.0352747 2.06071e-20)
(1.2496 0.136882 8.19483e-23)
(4.53585e-05 -0.0256677 8.69359e-21)
(0.699047 -7.62307e-05 -5.77478e-22)
(1.0755 0.212425 -1.66658e-21)
(1.20565 0.0977078 2.16293e-20)
(1.14003 0.153935 3.75524e-20)
(0.103591 0.0218405 5.99632e-21)
(0.905328 -0.000921648 4.81064e-23)
(0.954747 -0.00134742 1.96955e-21)
(0.794421 0.198275 2.14856e-21)
(0.138161 0.00174954 7.78292e-23)
(0.946253 -0.0842801 6.91225e-21)
(1.39309 0.035504 1.59118e-22)
(1.1081 0.217436 -2.21883e-20)
(0.500825 -0.0284244 -3.02495e-21)
(0.11751 -0.308561 -1.41282e-20)
(0.142386 -0.000350123 1.48399e-20)
(0.971625 -0.00081721 -7.16424e-22)
(1.01744 0.101582 -5.6002e-20)
(1.01041 0.156633 4.021e-20)
(0.880324 -0.000435772 1.5259e-20)
(1.06862 -0.27456 -3.43908e-21)
(0.297695 0.0676653 -5.5818e-21)
(0.0113128 -0.0763809 -2.27068e-20)
(0.759112 -0.000118891 -7.73424e-21)
(1.22294 0.080316 -3.10769e-20)
(0.140054 -0.00063133 1.16522e-20)
(0.649781 0.13193 -9.40687e-22)
(0.764786 -0.022344 3.5748e-20)
(0.215964 -0.258948 6.92018e-21)
(1.39159 -0.427288 -3.63653e-21)
(0.470534 -0.0230797 2.07272e-20)
(0.186133 0.039007 -6.25671e-21)
(0.0803119 -0.304802 5.75293e-21)
(0.205978 0.0445973 3.05858e-21)
(0.138998 -0.000663974 -3.51814e-21)
(0.426673 0.160844 9.68197e-21)
(0.947367 -0.0811902 6.31122e-21)
(0.894243 -0.0671078 -3.02729e-21)
(0.328011 0.0737552 1.28067e-21)
(0.109262 -5.94903e-05 1.00405e-20)
(0.109633 -0.000310699 -1.32152e-20)
(0.313478 -0.416081 8.12336e-21)
(0.200396 0.00102302 -3.76153e-22)
(1.29228 -0.1344 6.58274e-22)
(0.839379 0.036983 -4.3997e-20)
(1.01709 0.119783 3.51408e-20)
(1.28856 0.161273 2.55486e-21)
(0.189907 -0.000603995 -6.65588e-21)
(0.973645 0.0916092 -1.0398e-20)
(0.234328 0.0533884 -3.88459e-21)
(1.00657 0.155436 -2.59779e-21)
(1.10262 0.155974 -1.30546e-20)
(1.25964 0.180026 -4.79054e-21)
(1.03009 0.127851 2.16318e-20)
(1.25685 -0.0946741 -7.62044e-22)
(0.00797404 -0.0690469 1.93589e-20)
(1.08302 -0.387371 -1.05976e-20)
(0.725002 0.151876 -8.28833e-21)
(0.972178 -0.0455253 -2.4845e-21)
(0.923451 -0.194839 2.01031e-20)
(0.244731 0.000829033 1.24577e-20)
(0.814556 -0.0806336 7.0236e-21)
(1.08889 0.136555 -2.12341e-20)
(0.000261595 -0.0350862 -3.43206e-21)
(1.11458 0.216104 -4.25223e-21)
(0.018321 0.0040925 -4.46573e-23)
(0.880586 -0.0149491 4.43268e-21)
(0.608313 -0.259052 2.2155e-20)
(0.711723 0.000417019 1.03774e-20)
(0.370195 -0.492608 -3.1072e-21)
(0.534199 -0.195524 8.22141e-21)
(0.715228 0.155561 -1.5072e-20)
(0.137078 0.0307604 -4.58196e-21)
(0.0185545 0.00408488 -6.74976e-22)
(1.21096 -0.590061 1.06103e-20)
(0.314839 -0.398057 -6.41887e-21)
(0.1731 0.0362421 -8.00857e-21)
(1.18338 0.189884 -1.38652e-20)
(1.32431 -0.0855806 2.05646e-22)
(1.32784 0.140046 5.6183e-22)
(0.884226 0.0179183 -1.97125e-20)
(1.02519 0.129219 1.04384e-20)
(1.10922 0.153933 8.23034e-21)
(1.03065 0.112395 -2.09407e-20)
(0.71828 0.0190294 -1.35869e-20)
(0.0136852 0.00288192 -1.49001e-21)
(0.0653588 -0.279903 -1.20219e-21)
(0.265032 -0.173906 1.33137e-20)
(1.15528 0.190123 2.36277e-20)
(0.903833 -0.0480387 -8.67833e-22)
(1.20197 0.174087 -8.85576e-21)
(0.95831 0.161457 3.50076e-20)
(0.106968 -0.000760239 4.20824e-21)
(0.0149053 0.00320396 2.22287e-21)
(0.797498 0.123238 2.93999e-20)
(1.14315 0.151669 -1.25124e-20)
(1.32763 -0.331034 5.22696e-21)
(0.727015 0.000627782 2.08584e-21)
(0.87236 0.0204273 7.91552e-21)
(0.960428 -0.0467016 3.01936e-21)
(0.600643 -0.000767922 -1.23471e-21)
(0.956235 -0.0501979 1.66524e-22)
(0.977384 0.120242 -1.62728e-20)
(0.989751 -0.0845625 -7.13654e-22)
(0.00504059 -0.0616257 7.69324e-21)
(0.337168 -0.00910664 -1.33056e-20)
(0.0134637 0.00289366 -3.06841e-21)
(0.34558 0.0767356 7.69393e-22)
(1.05426 0.130054 2.22397e-21)
(1.26446 -0.0977117 5.92826e-22)
(0.713261 0.162502 -4.48573e-21)
(0.0884496 0.018429 -3.1297e-21)
(0.140381 0.000626603 -4.47816e-21)
(0.0889108 0.0201273 -3.07355e-21)
(0.342095 -0.109563 4.7301e-21)
(1.10547 0.158048 1.90383e-20)
(0.908591 -0.00731177 -6.0292e-21)
(1.14934 0.211608 5.30662e-21)
(0.914245 0.18753 1.20508e-20)
(0.0633005 -0.0168103 2.25045e-20)
(1.01395 0.10525 1.57421e-20)
(0.258805 0.0686736 1.08224e-20)
(0.195073 -0.000886912 2.85465e-20)
(1.08582 0.158519 -1.97978e-20)
(0.0165819 0.00429086 -8.25363e-23)
(0.134719 -0.283357 -1.47721e-20)
(0.99568 -0.105832 2.62638e-22)
(0.958638 0.284843 -1.82953e-21)
(0.9642 0.0983145 3.25819e-20)
(0.727778 -0.00311938 1.10398e-22)
(1.05032 -0.184962 5.63556e-21)
(1.13743 0.185248 6.6912e-21)
(1.03093 0.234618 -2.78872e-20)
(1.2286 -0.158533 -9.24494e-22)
(0.931384 0.000468958 1.58511e-21)
(0.903014 0.00165237 -1.90644e-21)
(0.0936699 -0.118177 5.08752e-21)
(0.0497978 -0.0576587 -1.45474e-20)
(0.895749 0.00143037 -2.17869e-21)
(1.1415 0.193795 -1.74957e-20)
(0.74946 0.160026 -1.97301e-21)
(1.02194 0.128385 -3.20943e-20)
(1.15381 0.185349 -1.20306e-20)
(1.03486 0.201068 1.59156e-21)
(0.662821 0.164819 -2.21074e-20)
(0.665281 0.144109 -8.55704e-21)
(0.629118 0.129931 -2.48211e-21)
(0.135602 -0.000699674 -2.82688e-21)
(0.705672 0.0170398 7.38013e-21)
(0.107025 -0.000268506 -2.02576e-21)
(0.988451 0.19538 6.75801e-21)
(0.0813566 0.0170716 4.40427e-21)
(1.0276 0.112052 1.70918e-20)
(0.796146 0.0197874 1.35872e-21)
(1.01626 0.212421 -1.19869e-20)
(0.866512 -0.319689 -1.62986e-20)
(1.05082 0.243524 -1.04747e-20)
(1.02674 0.127541 -1.19019e-20)
(1.26334 -0.551723 -8.59209e-21)
(1.02675 0.204664 8.04378e-21)
(0.989091 0.145506 -1.38957e-20)
(0.131341 0.0273484 -2.06555e-22)
(0.344295 0.0859819 9.08992e-22)
(0.74421 -0.00775845 -1.91137e-22)
(0.75966 0.173337 -2.12155e-20)
(0.067216 -0.283593 -1.03737e-20)
(1.00424 0.19917 3.74919e-21)
(1.17134 -0.185776 -1.0729e-21)
(1.03074 0.244477 -3.75346e-20)
(0.330933 -0.000823977 1.89722e-21)
(0.105467 -0.00130089 -4.52134e-21)
(1.24515 -0.160937 -2.12933e-21)
(1.11797 0.159316 -3.62958e-20)
(0.394555 0.00136136 -1.54334e-20)
(1.19166 -0.487028 -8.99656e-21)
(0.911149 -0.0035139 1.00482e-20)
(0.89812 0.0716849 1.79036e-20)
(0.376039 0.056443 -4.83836e-20)
(0.1345 -0.00161493 1.62996e-20)
(0.185457 0.00128698 -6.90346e-23)
(0.925926 -0.124294 4.04882e-21)
(0.448901 0.107815 -3.58877e-21)
(0.893481 -0.0630094 3.95811e-21)
(0.934143 -0.000682958 6.26179e-22)
(0.613175 -0.0015447 1.24171e-21)
(0.900316 0.00100231 9.46297e-23)
(0.000544424 -0.0216505 -1.53654e-21)
(1.44506 -0.0640287 5.69997e-21)
(0.905412 -0.467309 8.13217e-23)
(0.719169 -0.0015283 8.94885e-21)
(0.906791 -0.0497275 -4.07523e-21)
(0.712872 0.00349759 7.23716e-21)
(0.137943 0.0299651 -9.65068e-21)
(0.129936 -0.230241 -1.70191e-20)
(0.13558 0.00139518 2.10113e-20)
(0.362229 0.0850197 1.20727e-20)
(0.347962 -0.531187 3.65429e-20)
(1.05524 0.126737 -3.1037e-20)
(0.07614 0.0175928 4.76963e-22)
(1.26292 0.172597 1.47217e-21)
(1.24851 -0.565166 1.55215e-21)
(1.10301 0.153276 3.83931e-21)
(1.02178 0.247014 -1.9722e-21)
(1.38359 0.0370708 -1.99365e-21)
(0.135614 -0.000560936 3.94019e-21)
(0.177204 0.00190605 -4.32149e-21)
(0.144041 -0.000323243 1.48178e-21)
(1.07971 -0.405184 3.15364e-21)
(0.227742 -0.126397 1.47506e-20)
(0.209444 -0.0919922 -2.88839e-22)
(0.704001 0.152993 9.17497e-22)
(0.832772 0.124771 -9.19143e-23)
(0.305629 0.00391628 2.41266e-21)
(1.28344 0.136775 -1.53661e-20)
(0.190519 0.0417983 2.27476e-22)
(0.0872378 0.0203462 2.01707e-21)
(1.40393 -0.313383 8.5219e-21)
(1.01962 0.233873 2.75064e-21)
(0.723553 0.155002 8.78278e-21)
(0.18162 -0.0013192 5.83339e-21)
(0.673793 0.144618 -6.63236e-21)
(0.134846 0.00185214 -9.42718e-21)
(0.689235 0.00033141 2.51153e-21)
(0.632042 0.118876 5.66292e-20)
(0.986294 -0.0537802 2.54154e-22)
(0.159304 0.0448161 -8.61707e-21)
(1.28189 0.156976 1.62445e-20)
(0.882887 0.192131 1.66654e-20)
(0.379986 0.0995699 -1.29932e-20)
(1.27477 0.146061 -5.18534e-22)
(0.38576 0.0839965 1.02125e-20)
(0.393305 0.0929371 -1.85223e-21)
(1.03644 0.236299 -1.38515e-20)
(0.297437 -0.168857 9.26645e-21)
(1.15576 0.186851 2.0782e-20)
(0.0945997 0.0215792 -1.12853e-21)
(0.458839 -0.0154594 -1.18857e-20)
(1.22332 0.159112 -3.95169e-21)
(1.06047 0.228343 -9.21437e-21)
(0.179907 0.0361181 1.63875e-22)
(0.0445499 0.00873542 1.46083e-21)
(1.07965 0.132593 -1.2597e-20)
(0.978359 0.184224 5.90207e-21)
(0.536275 0.183139 -7.66432e-21)
(0.716958 0.000317683 -4.69312e-21)
(1.01056 0.211274 1.13223e-20)
(0.981533 0.11517 9.9957e-21)
(0.39148 -0.00218237 -2.49408e-22)
(0.711903 -0.00178191 4.05626e-22)
(0.799789 0.00519681 2.29137e-20)
(0.106433 0.000722085 -2.06875e-20)
(0.11119 -0.00151946 -3.06198e-21)
(0.750822 0.0109836 -3.19739e-20)
(0.892007 0.284089 6.72846e-21)
(0.20635 0.0584804 4.75761e-21)
(0.747499 0.17004 1.71339e-20)
(0.493292 0.108372 9.87446e-21)
(1.11518 0.157273 2.09616e-20)
(1.43163 -0.0263423 4.07182e-22)
(0.491629 -0.0200241 1.15749e-20)
(1.00593 0.202046 -1.98623e-21)
(0.282358 0.00778697 1.03764e-21)
(0.809844 -0.00303796 5.79475e-22)
(1.04484 0.239397 1.55322e-20)
(1.20854 -0.492581 -4.35229e-21)
(1.00466 0.186904 -1.02763e-20)
(1.27569 0.0928923 1.01217e-20)
(0.893692 0.00112144 1.61151e-20)
(1.03834 0.211173 1.566e-21)
(1.11177 0.158522 5.87071e-21)
(1.12126 -0.218304 4.98443e-22)
(0.102743 0.0249434 5.11298e-21)
(1.05843 0.1263 5.07245e-20)
(1.01842 0.245643 -1.87399e-20)
(0.00584816 -0.0518853 -2.10597e-20)
(1.00256 0.0773109 -4.8431e-20)
(0.993389 -0.107803 2.56331e-21)
(0.181843 0.105571 5.32917e-21)
(1.0553 0.231115 1.35298e-20)
(0.104502 -0.00107575 1.6465e-21)
(0.138619 0.00174118 -1.30049e-22)
(0.301117 -0.36275 2.56037e-20)
(1.13872 0.194877 -4.59364e-21)
(0.1628 0.030462 2.69454e-21)
(0.200892 -0.1067 -2.35169e-21)
(0.22063 -0.000716719 1.5199e-22)
(0.482376 -0.0316848 -7.71945e-21)
(0.0798778 0.016946 -4.29664e-21)
(1.18953 0.140935 1.05347e-20)
(0.14373 -0.000888796 3.06771e-21)
(0.196177 0.109961 1.01373e-20)
(0.944448 -0.0162754 9.86307e-22)
(0.187833 0.00124956 1.69575e-20)
(1.03667 0.220711 -8.29664e-21)
(1.03302 0.199815 -1.74406e-22)
(0.13874 0.00211185 6.40281e-22)
(0.183824 -0.00276211 -8.63448e-21)
(0.758098 0.172149 -1.07802e-20)
(0.106134 -7.23127e-06 -1.36289e-20)
(1.03126 0.220583 -3.79415e-21)
(0.430801 0.102124 -1.71505e-21)
(1.00431 0.0765591 -5.60602e-20)
(0.760016 5.02468e-06 3.75779e-21)
(1.1513 0.210621 -7.49777e-22)
(0.989672 0.274318 -4.47254e-21)
(0.320772 0.00200223 1.56992e-21)
(0.345677 0.180321 -1.40979e-20)
(0.120225 0.0317656 -7.8626e-21)
(1.02974 0.247102 5.041e-21)
(0.127177 -0.292469 4.03591e-20)
(0.146339 0.000864083 1.23428e-21)
(0.313158 -0.000783352 -2.30763e-21)
(0.615808 0.120033 -3.98733e-21)
(0.93228 -0.0757398 1.09343e-20)
(0.402424 0.0129539 8.91704e-21)
(0.296756 -0.379438 -2.76119e-20)
(1.41849 -0.0128392 1.90599e-22)
(0.388722 -0.00119052 8.97286e-21)
(0.349791 -0.00318591 6.95511e-21)
(0.250967 0.0619326 -1.64665e-21)
(0.189848 0.00238504 1.69328e-22)
(0.439762 -0.0044474 6.03603e-22)
(1.14783 0.211284 2.17781e-20)
(0.979451 -0.468783 -4.91798e-21)
(0.348346 0.00103606 -2.6679e-23)
(1.13653 0.193866 9.43717e-21)
(0.099715 0.0213317 -1.87675e-21)
(0.299245 0.0408302 -7.20648e-21)
(0.108179 0.000951525 3.39081e-21)
(0.102362 0.000709546 6.06113e-21)
(0.963163 0.288172 3.23437e-21)
(1.29512 0.137366 5.60913e-23)
(0.221039 -0.000348092 1.19368e-21)
(0.119248 0.0261711 3.8648e-21)
(0.185844 -0.000540066 1.68791e-21)
(0.791772 0.122255 1.22736e-22)
(0.733262 0.119291 2.74992e-22)
(1.21944 0.0845869 -8.42343e-21)
(1.01804 0.249666 9.53976e-21)
(1.29891 -0.095399 -4.13137e-22)
(0.8341 0.161049 6.9187e-21)
(0.00466181 -0.0190833 -1.32336e-20)
(1.02487 0.249791 2.27688e-20)
(1.45239 -0.212603 -4.58797e-21)
(0.135474 -0.00209417 5.57856e-21)
(2.61852e-05 -0.0447855 -6.50174e-21)
(0.334799 -0.20116 4.96612e-21)
(0.00391157 -0.0415708 -8.66576e-21)
(0.13646 -0.000766028 1.27199e-21)
(0.109028 0.0232996 -1.28066e-21)
(0.978155 0.116594 -2.52856e-20)
(1.10901 0.156493 -2.76844e-20)
(1.09214 0.203714 -1.64243e-20)
(1.41484 -0.0549729 4.84225e-21)
(0.244367 0.159822 -4.01436e-21)
(0.742258 -0.0218096 -2.81383e-20)
(0.767093 0.162143 1.14236e-20)
(0.764846 -0.000561657 1.50624e-20)
(0.0761389 0.0159191 4.46038e-21)
(0.419991 -0.00211832 -8.97797e-22)
(1.24347 0.143433 1.12297e-23)
(0.434062 0.0450825 5.65219e-21)
(0.0814201 0.0183503 1.75747e-21)
(1.36428 0.111644 1.6709e-22)
(0.129786 0.000925688 -2.37817e-22)
(0.769586 -0.373611 6.58881e-22)
(0.615658 0.318869 4.66414e-20)
(0.733975 -0.00317924 -1.02513e-20)
(0.337973 0.000574363 5.84936e-21)
(0.881674 -0.00654631 -1.51371e-20)
(1.00817 0.244983 -1.57552e-20)
(0.0698134 0.00681006 -1.50719e-20)
(0.722149 0.022262 -3.96408e-21)
(1.02263 0.243917 2.59271e-20)
(0.726762 0.00138761 -1.15909e-21)
(0.143363 -0.00152323 -2.00012e-21)
(0.390676 0.0953689 2.33669e-21)
(0.104079 0.0230745 -1.18619e-20)
(0.379842 0.00110868 -5.79696e-21)
(1.13015 0.172517 2.13771e-20)
(1.41116 -0.0404793 1.11435e-22)
(0.177318 0.000144757 8.85887e-21)
(0.107472 0.0235531 -5.97851e-22)
(0.0987557 6.47121e-05 -9.43029e-22)
(1.01824 0.197459 1.47705e-20)
(0.77028 -0.00310092 -1.68228e-22)
(0.88573 0.00165755 1.75477e-20)
(1.13571 0.188283 -9.19446e-21)
(0.141361 0.000278704 9.00147e-23)
(1.01592 0.241793 1.84607e-20)
(0.777547 0.00466264 2.04483e-20)
(0.110605 0.00146117 -1.09878e-22)
(1.30944 0.123814 -2.58758e-21)
(0.411701 0.0609885 1.12182e-20)
(1.15455 0.209381 1.47531e-20)
(0.997845 -0.110896 -6.90075e-22)
(0.835226 0.00118515 2.24366e-20)
(0.321138 -0.363491 -2.89172e-20)
(1.179 0.111233 2.12139e-20)
(0.876722 0.00033201 4.05788e-21)
(0.799269 0.120232 3.36285e-23)
(1.29657 -0.0845698 5.86475e-22)
(0.34964 0.0382863 9.8641e-21)
(0.22528 0.038176 8.40377e-23)
(0.693156 -0.00426066 -1.12886e-20)
(0.272004 -0.000714488 7.65321e-23)
(0.763295 0.00169952 -9.27473e-22)
(0.19686 -0.00304091 6.80312e-21)
(0.201619 -0.00238619 -1.60535e-21)
(1.08934 0.130879 -5.02002e-20)
(0.184967 0.0018242 7.18987e-21)
(0.128674 0.0283182 6.44978e-21)
(0.18431 -0.00113949 -3.03144e-21)
(1.08523 0.213019 1.7851e-21)
(0.104314 -0.0015029 -3.05542e-22)
(1.09393 0.205526 2.02287e-20)
(0.928412 -0.0028902 1.64195e-20)
(0.989464 -0.060255 1.15988e-21)
(0.636219 -0.256242 -2.7165e-21)
(0.60761 0.310603 -1.61009e-20)
(0.833097 0.128071 6.31786e-23)
(1.02103 0.220453 -4.35015e-22)
(1.10745 -0.449497 1.07182e-20)
(0.734704 -0.00314888 -3.03858e-24)
(1.32407 -0.425463 -2.89518e-22)
(0.188741 0.00175983 3.89702e-24)
(0.972859 0.277969 -2.02442e-21)
(1.01261 0.238419 -2.87655e-22)
(0.783095 -0.385367 7.42993e-21)
(0.736808 0.00399966 2.85246e-20)
(0.134007 0.00217891 4.1673e-21)
(0.896605 -0.0569107 -6.02376e-21)
(0.894797 0.0675488 -9.50274e-20)
(0.902647 0.010553 -3.7051e-20)
(0.735915 -0.000221621 -1.72925e-20)
(0.888771 0.0909792 -3.72003e-20)
(0.707377 -0.00187533 -8.81325e-21)
(1.21423 0.197108 2.90868e-21)
(0.973485 0.278861 3.07685e-20)
(0.308799 -0.00311276 8.99758e-22)
(1.08696 0.217362 1.15659e-20)
(0.295334 0.00310167 4.102e-21)
(0.132235 0.00113536 1.43896e-20)
(1.31038 0.13036 -6.84371e-22)
(0.715689 -0.000314851 5.66816e-22)
(0.371445 0.0293377 4.07561e-20)
(0.819029 -0.0160918 4.37952e-20)
(0.713952 -0.0027738 5.19621e-21)
(0.696201 -0.00405344 -2.18025e-20)
(0.10424 0.000920175 1.2876e-20)
(0.970629 0.190957 4.77193e-21)
(0.10357 0.00147077 1.99123e-21)
(1.22676 -0.47631 -4.09364e-21)
(1.00414 0.21042 -1.03551e-20)
(0.891043 0.0134486 4.47176e-20)
(0.102965 0.000874312 3.11548e-21)
(0.10613 0.000972079 -3.91771e-21)
(0.137388 -0.30098 1.04724e-20)
(0.8083 0.160139 1.22067e-20)
(1.09969 0.157319 -8.60697e-21)
(0.422803 0.0861454 -1.08605e-20)
(0.914337 -0.395137 1.80152e-20)
(0.108361 0.003019 1.62333e-21)
(0.909926 -0.0478676 -8.51052e-21)
(0.965566 0.279306 5.89352e-21)
(1.18381 0.137252 2.16516e-20)
(0.883906 -0.461307 -4.00566e-21)
(0.729358 0.155479 -4.99481e-21)
(0.278765 -0.000129415 1.96606e-22)
(0.129643 -8.39462e-05 7.31281e-22)
(0.964994 -0.0450026 5.59003e-22)
(0.181362 -0.00147069 -8.37116e-21)
(0.993488 0.19417 -2.97582e-22)
(0.698645 0.149342 -1.39284e-21)
(0.109541 0.00609404 3.6295e-21)
(0.128726 -0.000421758 6.92601e-22)
(0.960175 -0.00115649 -1.23845e-20)
(0.896486 -0.0607691 -1.00799e-21)
(0.7347 0.156446 4.66032e-21)
(1.148 0.124764 9.13822e-21)
(0.81636 0.00162658 -1.35423e-20)
(0.107223 0.0241342 3.83326e-21)
(1.14022 0.189404 1.28516e-20)
(0.356912 0.0823491 -6.99555e-21)
(1.34987 -0.306008 7.98286e-21)
(0.735745 -0.00153989 -5.23844e-22)
(1.01925 0.0997041 2.36089e-20)
(0.245007 -0.117934 -8.01157e-21)
(1.18169 0.187286 -3.10402e-22)
(1.025 0.202602 1.40405e-20)
(0.328903 -0.000168155 -1.14485e-20)
(0.00150964 -0.059431 -4.80794e-21)
(1.0323 0.170573 -1.3229e-20)
(0.988829 -0.0541384 5.42999e-22)
(0.308056 0.0350497 2.20269e-20)
(0.284604 -0.00139415 1.47064e-20)
(0.582954 0.242998 2.18842e-20)
(0.206818 -0.271006 8.30224e-21)
(0.844666 0.306037 4.22713e-20)
(0.736043 -0.00502268 7.49848e-21)
(1.30438 0.134974 -7.10999e-21)
(0.964076 -0.00170337 -4.07492e-22)
(0.762812 0.00437488 1.8136e-20)
(0.824955 -0.00543339 1.25021e-20)
(0.294085 0.000627229 -1.8985e-20)
(0.787807 -0.011259 -1.02283e-20)
(0.768242 -0.00303608 -1.31642e-20)
(1.30904 -0.0968324 -1.64299e-22)
(0.729342 0.120867 -1.58433e-22)
(0.602423 0.239948 -2.63725e-20)
(1.15878 0.185068 4.55794e-21)
(1.3139 -0.0872174 2.82102e-22)
(1.26535 0.0909362 -7.1577e-21)
(0.65866 0.136651 2.72007e-21)
(0.704457 0.149298 -2.89206e-21)
(0.929437 0.000501077 -2.24754e-20)
(0.751551 0.192495 4.25435e-21)
(0.660743 0.138109 -1.64966e-21)
(0.984919 -0.0514912 -7.88563e-22)
(0.801047 -0.152115 -8.97696e-21)
(0.144219 -0.174195 -7.42797e-22)
(0.980716 -0.0487797 1.10229e-21)
(0.331083 0.0479764 1.02947e-20)
(0.718119 -0.00498816 2.97956e-21)
(0.984634 -0.0633543 -3.43275e-21)
(-6.44588e-05 -0.052592 7.33832e-21)
(0.395571 0.0915186 -1.06094e-20)
(0.406956 -0.00701291 9.67784e-21)
(0.196906 -0.0011866 4.84702e-22)
(0.756414 -0.00434746 2.24335e-21)
(0.384735 -0.00313475 2.2342e-21)
(0.135219 -0.000674696 7.17698e-22)
(0.58053 0.167666 2.47831e-21)
(0.164553 -0.000451679 3.13175e-22)
(0.77986 0.126088 -9.01523e-23)
(0.287207 -0.00217898 1.33633e-21)
(0.718086 0.0063332 2.54881e-21)
(0.000389008 -0.0527799 2.85216e-21)
(1.34534 -0.325221 -4.19162e-21)
(1.09659 0.204171 -2.43992e-20)
(0.68962 0.137525 -3.62681e-21)
(0.187573 -0.000339073 -4.08146e-21)
(0.145073 0.0319838 9.70375e-22)
(0.886628 -0.00129728 2.15397e-21)
(1.02992 0.246772 3.1048e-21)
(0.30307 -0.00254019 -1.09312e-21)
(0.984493 0.261332 1.16759e-21)
(0.223385 -0.454338 -1.6088e-20)
(0.346865 -0.000702283 -1.93127e-21)
(0.00199034 -0.0571332 1.08568e-20)
(1.27119 -0.090337 5.27574e-22)
(1.04885 0.242604 -2.84731e-20)
(1.2732 0.140211 4.84705e-21)
(0.405975 -0.0444381 2.13324e-21)
(0.773822 -0.00972406 6.12055e-21)
(1.21453 0.0822256 4.4818e-21)
(1.12235 -0.203496 2.33994e-21)
(0.966965 0.282389 -1.31624e-20)
(1.14411 0.124061 -3.38376e-20)
(0.144216 0.0325319 1.39211e-21)
(0.14129 -0.000765719 -3.65618e-22)
(0.758464 0.161245 -1.96316e-21)
(0.810243 -0.00518117 4.16878e-20)
(0.802855 0.15747 -4.25323e-21)
(0.110045 0.0255276 -6.71722e-21)
(0.997682 0.137947 -3.00262e-20)
(0.990892 0.186011 -4.44034e-21)
(0.212401 0.00181471 -1.68256e-23)
(0.910893 -0.00606174 -4.74767e-21)
(0.986165 -0.063769 2.38873e-21)
(0.754588 -0.00467528 7.32318e-21)
(0.889266 -0.00236508 -4.53566e-20)
(0.755614 0.278488 1.41865e-21)
(1.17068 0.192637 -5.76017e-21)
(1.01625 0.14832 9.62426e-21)
(0.1522 0.0340197 -1.92723e-21)
(1.02592 0.131926 2.32787e-20)
(1.05069 0.239492 -2.06993e-20)
(0.297057 -0.00203518 -1.69805e-22)
(0.850095 0.00362846 -2.2871e-20)
(0.408364 0.0908792 6.19318e-21)
(0.885383 -0.0138939 2.38156e-21)
(0.87859 0.0010758 5.87559e-20)
(0.375711 -0.0190939 1.63505e-20)
(1.08992 0.154966 4.75587e-21)
(1.12678 0.173296 -2.27285e-20)
(0.891095 0.000537831 7.23859e-21)
(0.0910309 -0.107323 1.43444e-21)
(0.130862 -0.0018362 -5.89437e-21)
(0.152471 0.0363713 -4.60079e-21)
(0.188069 -0.000879737 -1.06442e-20)
(1.22203 0.17434 1.28319e-21)
(0.142961 -0.000593542 -4.08405e-21)
(1.21572 0.159337 -8.99149e-21)
(1.25699 0.182032 3.07359e-21)
(0.431555 -0.000604981 1.23852e-21)
(0.0489726 -0.0479042 1.39022e-20)
(0.280011 0.00101963 -8.24681e-22)
(0.903862 -0.00368574 -9.69603e-21)
(0.11149 0.0236183 -7.14823e-22)
(0.132446 0.000839795 1.98043e-21)
(1.01249 0.153908 1.96851e-20)
(0.98621 -0.0608627 4.5577e-21)
(0.366304 0.08171 -3.69506e-21)
(0.798798 -0.0190207 -4.01448e-20)
(1.23203 0.132271 -4.23455e-22)
(0.970199 0.284515 9.67744e-21)
(1.09917 0.217373 -1.22357e-20)
(0.194686 0.0410766 7.37043e-22)
(0.246443 0.0530866 8.63969e-21)
(0.197081 0.0351766 -7.98555e-22)
(0.134141 -0.00204514 -8.37792e-21)
(1.13373 0.12697 2.74443e-20)
(0.73239 0.158305 -6.55719e-21)
(0.273258 0.0440822 4.57821e-22)
(0.978631 0.282798 -3.36816e-20)
(0.865987 0.26178 -5.49235e-21)
(0.801455 0.00530277 -2.62347e-20)
(0.866822 0.270424 -1.06201e-20)
(1.0764 -0.25895 -8.04328e-21)
(0.922273 -0.202041 -9.07446e-21)
(0.00191258 -0.0243101 -1.60001e-20)
(0.771111 -0.525767 9.31141e-21)
(0.103761 0.0228011 -1.59162e-21)
(0.384407 0.0850546 -5.37815e-21)
(1.00643 0.186358 -3.85709e-21)
(1.1868 -0.601191 -2.62289e-21)
(1.07699 -0.269774 -7.24322e-21)
(1.11206 0.216977 -1.71852e-20)
(1.22409 0.196475 -3.92716e-21)
(0.140594 0.0297952 3.01176e-22)
(1.08665 0.155426 -1.6271e-20)
(0.857107 0.299027 1.0677e-21)
(0.0106375 -0.0213041 7.10923e-21)
(0.261657 0.058804 -2.51666e-21)
(1.21999 0.170997 -3.4328e-21)
(1.27 0.179822 -6.81434e-21)
(0.177745 0.00302691 -5.62541e-21)
(0.131895 0.00192664 1.6514e-21)
)
;
boundaryField
{
frontAndBack
{
type empty;
}
bottom
{
type fixedValue;
value uniform (1 0 0);
}
inlet
{
type uniformFixedValue;
uniformValue constant (1 0 0);
value uniform (1 0 0);
}
top
{
type slip;
}
outlet
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
14
(
(1.00009 -5.34474e-05 -3.35544e-25)
(1.00029 -2.3576e-05 -9.22337e-25)
(1.00002 -4.90862e-05 -2.78354e-26)
(1.00027 -1.43373e-07 -7.08771e-25)
(0.99989 -4.50428e-05 1.25398e-24)
(0.999833 -3.90514e-05 -1.84184e-26)
(0.999734 -7.29864e-06 5.41119e-25)
(0.999784 -3.00266e-05 1.16185e-24)
(0.999954 -4.88205e-05 4.82732e-25)
(0.999749 -1.94508e-05 -5.49177e-25)
(1.00015 -4.163e-05 0)
(1.00024 -3.35466e-05 -6.44825e-26)
(0.999815 -4.44674e-06 6.12488e-26)
(1.0002 -3.64195e-05 0)
)
;
}
car
{
type fixedValue;
value uniform (0 0 0);
}
}
// ************************************************************************* //
| [
"kmeyer299@gmail.com"
] | kmeyer299@gmail.com | |
92c6f10bc4fa66af178eb3cf2dfc64dbcdcbfe50 | 22011d72195a5675fa09c29a5374cc25d99505be | /source/game/progressbar.cpp | 64752b70a448e3b6b936eb57b7a9551dcb8f6545 | [] | no_license | mockthebear/burr-tower | 24844be9ea68dc82cc0f2c996233b39832ecca6f | 079753077950b12e1702cf752348f46ddd466b54 | refs/heads/master | 2020-03-17T22:13:18.558485 | 2018-05-18T19:07:29 | 2018-05-18T19:07:29 | 133,994,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,903 | cpp | #include "progressbar.hpp"
#include "../engine/renderhelp.hpp"
#include "../framework/geometry.hpp"
ProgressBar::ProgressBar(){
duration = 1.0f;
progress = 0.0f;
size = 32;
};
ProgressBar::ProgressBar(float duration,float start,int vfancy){
this->duration = duration;
this->progress = start;
onValue = false;
fancy = vfancy;
size = 32;
}
void ProgressBar::Reset(){
progress = 0;
};
void ProgressBar::SetValue(float mm){
mim = mm;
}
void ProgressBar::SetMinMax(float m1,float m2){
mim = m1;
mam = m2;
onValue = true;
}
bool ProgressBar::IsDone(){
if (!onValue)
return (progress >= duration);
else
return false;
};
float ProgressBar::GetPercent(){
if (!onValue)
return std::min(progress/duration,1.0f);
else
return std::min(mim/mam,1.0f);
};
void ProgressBar::Update(float dt){
if (!onValue)
progress += dt;
};
void ProgressBar::Render(GameObject *obj,Point offset){
if (obj && !IsDone()){
Rect outline(0,0,size,8);
Rect inside(0,0,size,8);
outline.CenterRectIn(obj->box);
inside.CenterRectIn(obj->box);
float perc = GetPercent();
inside.w = size * perc;
inside.y -= obj->box.h;
outline.y -= obj->box.h;
inside.y += offset.y;
inside.x += offset.x;
outline.y += offset.y;
outline.x += offset.x;
RenderHelp::DrawSquareColorA(inside,(1.0f-perc)*255,(perc)*255,0,255,false);
RenderHelp::DrawSquareColorA(outline,0,0,0,255,true);
if (fancy > 0){
for (int i=0;i<fancy;i++){
float posX = i/(float)fancy;
Point pos( outline.x + posX*outline.w, outline.y );
Point pos2( pos.x, outline.y + outline.h );
RenderHelp::DrawLineColor(pos,pos2,0,0,0,255);
}
}
}
};
| [
"matheus.mtb7@gmail.com"
] | matheus.mtb7@gmail.com |
9a806b8b66cdff6eee0b14f627f222da4f5173b6 | 6c2846f3e4af719409daf90601e57ac33ab2ba02 | /test/OpenMP/parallel_sections_if_messages.cpp | 8d36b6d5d3086d879d285383138d29b8df4e7ffe | [
"Apache-2.0",
"LLVM-exception",
"NCSA"
] | permissive | yangximi/clang | f419b19ae9e6afca42a5a624caa891e4ba27bc49 | 6ec62032be12de8de6c19c49155f33988d6d1315 | refs/heads/master | 2020-06-20T00:45:41.825310 | 2019-07-19T03:25:24 | 2019-07-19T03:25:24 | 196,913,958 | 0 | 0 | Apache-2.0 | 2019-07-15T03:01:24 | 2019-07-15T03:01:24 | null | UTF-8 | C++ | false | false | 5,515 | cpp | // RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=45 -ferror-limit 100 %s -Wuninitialized
// RUN: %clang_cc1 -verify -fopenmp-simd -fopenmp-version=45 -ferror-limit 100 %s -Wuninitialized
void foo() {
}
bool foobool(int argc) {
return argc;
}
struct S1; // expected-note {{declared here}}
template <class T, class S> // expected-note {{declared here}}
int tmain(T argc, S **argv) {
T z;
#pragma omp parallel sections if // expected-error {{expected '(' after 'if'}}
{
foo();
}
#pragma omp parallel sections if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if () // expected-error {{expected expression}}
{
foo();
}
#pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
{
foo();
}
#pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2])
{
foo();
}
#pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause}}
{
foo();
}
#pragma omp parallel sections if (S) // expected-error {{'S' does not refer to a value}}
{
foo();
}
#pragma omp parallel sections if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(argc + z)
{
foo();
}
#pragma omp parallel sections if(parallel : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc)
{
foo();
}
#pragma omp parallel sections if(parallel : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp parallel sections'}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc) if (parallel:argc) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause with 'parallel' name modifier}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc) if (argc) // expected-error {{no more 'if' clause is allowed}} expected-note {{previous clause with directive name modifier specified here}}
{
foo();
}
return 0;
}
int main(int argc, char **argv) {
int z;
#pragma omp parallel sections if // expected-error {{expected '(' after 'if'}}
{
foo();
}
#pragma omp parallel sections if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if () // expected-error {{expected expression}}
{
foo();
}
#pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
{
foo();
}
#pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2] + z)
{
foo();
}
#pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause}}
{
foo();
}
#pragma omp parallel sections if (S1) // expected-error {{'S1' does not refer to a value}}
{
foo();
}
#pragma omp parallel sections if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if (1 0) // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(if(tmain(argc, argv) // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(parallel : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc)
{
foo();
}
#pragma omp parallel sections if(parallel : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp parallel sections'}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc) if (parallel:argc) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause with 'parallel' name modifier}}
{
foo();
}
#pragma omp parallel sections if(parallel : argc) if (argc) // expected-error {{no more 'if' clause is allowed}} expected-note {{previous clause with directive name modifier specified here}}
{
foo();
}
return tmain(argc, argv);
}
| [
"a.bataev@hotmail.com"
] | a.bataev@hotmail.com |
eca8c9650052d98a83e0c82174b01229573f9ad9 | 6387e818cd8356fbae61733fed052aa6ab87d2d8 | /cses/repititions.cpp | a16708643287090cb2c3a43f6752dd2b12c5f9ef | [] | no_license | Wwar-lock/codes | 097935f214fa4b7ef6ebf575dc2d2a4e29b85efe | 46b42b1a69e82ce2fcc9d7f8d9f6b7d33dd85f97 | refs/heads/master | 2022-12-02T08:47:15.536239 | 2020-08-14T05:28:23 | 2020-08-14T05:28:23 | 275,018,110 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,820 | cpp | #include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstring>
#include <chrono>
#include <complex>
#define int long long int
#define pb push_back
#define vi vector<int>
#define vll vector<ll>
#define vvi vector < vi >
#define all(v) v.begin(),v.end()
#define pii pair<int,int>
#define pll pair<long long, long long>
#define mod 1000000007
#define inf 1000000000000000001
#define mp(x,y) make_pair(x,y)
#define mem(a,val) memset(a,val,sizeof(a))
#define eb emplace_back
#define ff first
#define ss second
#define el endl
#define MAX 100005
#define wl while
#define all(v) v.begin(),v.end()
#define rep(i,n) for (int i = 0; i < n; i++)
#define rep_1(i,n) for (int i = 1; i <= n; i++)
#define rep_it(it,mp) for(auto it=mp.begin();it!=mp.end();it++)
#define FOR(i,a,b) for (int i = a; i < b; i++)
#define REPD(i,n) for (int i = n-1; i >= 0; i--)
using namespace std;
#define NO_OF_CHARS 256
int longestUniqueSubsttr(string str)
{
int n = str.size();
int res = 0; // result
vector<int> lastIndex(NO_OF_CHARS, -1);
int i = 0;
for (int j = 0; j < n; j++) {
i = max(i, lastIndex[str[j]] + 1);
res = max(res, j - i + 1);
lastIndex[str[j]] = j;
}
return res;
}
int longestRepString(string s){
int n=s.size();
int count=0;
int res = s[0];
int curr=1;
rep(i,n){
if(i<n-1&&s[i]==s[i+1]){
curr++;
}
else{
if(curr>count){
count=curr;
res=s[i];
}
curr=1;
}
}
return count;
}
signed main(){
// #ifndef ONLINE_JUDGE
// freopen("input.txt","r", stdin);
// freopen("output.txt","w", stdout);
// #endif
// ios::sync_with_stdio(false);
// cin.tie(0), cout.tie(0);
string s;
cin>>s;
// cout<<s<<el;
cout<<longestRepString(s)<<el;
return 0;
} | [
"iit2017019@iiita.ac.in"
] | iit2017019@iiita.ac.in |
6316cf9b4dfe97ab0a5838f0f4ddb3924e149c27 | 5249c8dd7c31216a82dae856afb499de82437a6b | /Design_Pattern/Iterator/ProjectIterator.cpp | 18fa05bf6568b207df6913818f494c74ce90d5f7 | [] | no_license | w-x-me/Demon_Code | c24fbfe245be5d9646b744f4d99c934f99be5937 | a3071ed9c5c0c5453601d16e8e9a4641658d72d6 | refs/heads/master | 2020-03-27T05:52:57.500745 | 2018-11-29T01:17:18 | 2018-11-29T01:17:18 | 146,059,683 | 16 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 400 | cpp | #include "ProjectIterator.h"
CProjectIterator::CProjectIterator(vector<IProject *> pl) : m_projectList(pl)
{
m_currentItem = 0;
}
CProjectIterator::~CProjectIterator(void)
{
}
bool CProjectIterator::HasNext()
{
bool b = true;
if (m_currentItem >= m_projectList.size())
b = false;
return b;
}
IProject * CProjectIterator::Next()
{
IProject *pp = m_projectList.at(m_currentItem++);
return pp;
} | [
"985808898@qq.com"
] | 985808898@qq.com |
4d01fbebf649b9b766da40bc57eb541395bc50b8 | c77039b8e5bb2c5bafe48606df4cae994a73c880 | /tests/src/main.cpp | 032ab8bc41db1748088ab59da141dd5827b007be | [
"Apache-2.0"
] | permissive | rrsc/iot-cpp-sdk | 5d81b3fc141e4b08e632b32d078c27169a2dc2c5 | abb7d70b2364089495ac73adf2a992c0af6eaf8c | refs/heads/master | 2020-05-24T19:04:59.498606 | 2018-11-27T22:25:49 | 2018-11-27T22:25:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,595 | cpp | /*
* Copyright (c) 2018 AppDynamics LLC and its affiliates
*
* 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 <iostream>
#include <cgreen/cgreen.h>
using namespace cgreen;
//Declare all the tests
TestSuite* config_tests();
TestSuite* http_interface_tests();
TestSuite* json_serializer_tests();
TestSuite* network_event_tests();
TestSuite* error_event_tests();
TestSuite* custom_event_tests();
TestSuite* log_interface_tests();
TestSuite* utils_tests();
/**
* @brief create a test suite and run the tests
*/
int main(int argc, const char* argv[])
{
TestSuite* suite = create_test_suite();
add_suite(suite, config_tests());
add_suite(suite, http_interface_tests());
add_suite(suite, json_serializer_tests());
add_suite(suite, network_event_tests());
add_suite(suite, error_event_tests());
add_suite(suite, custom_event_tests());
add_suite(suite, log_interface_tests());
add_suite(suite, utils_tests());
if (argc > 1)
{
return run_single_test(suite, argv[1], create_text_reporter());
}
return run_test_suite(suite, create_text_reporter());
}
| [
"vaasu1234@gmail.com"
] | vaasu1234@gmail.com |
76dec33cf9cf48cb7a4e6b278cae2b1fe03c6ad1 | d14b5d78b72711e4614808051c0364b7bd5d6d98 | /third_party/llvm-subzero/include/llvm/Support/AlignOf.h | abd19afa22f062de6c7089942a6d7f1dedd7500f | [
"Apache-2.0",
"NCSA"
] | permissive | google/swiftshader | 76659addb1c12eb1477050fded1e7d067f2ed25b | 5be49d4aef266ae6dcc95085e1e3011dad0e7eb7 | refs/heads/master | 2023-07-21T23:19:29.415159 | 2023-07-21T19:58:29 | 2023-07-21T20:50:19 | 62,297,898 | 1,981 | 306 | Apache-2.0 | 2023-07-05T21:29:34 | 2016-06-30T09:25:24 | C++ | UTF-8 | C++ | false | false | 4,893 | h | //===--- AlignOf.h - Portable calculation of type alignment -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the AlignedCharArray and AlignedCharArrayUnion classes.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_SUPPORT_ALIGNOF_H
#define LLVM_SUPPORT_ALIGNOF_H
#include "llvm/Support/Compiler.h"
#include <cstddef>
namespace llvm {
/// \struct AlignedCharArray
/// \brief Helper for building an aligned character array type.
///
/// This template is used to explicitly build up a collection of aligned
/// character array types. We have to build these up using a macro and explicit
/// specialization to cope with MSVC (at least till 2015) where only an
/// integer literal can be used to specify an alignment constraint. Once built
/// up here, we can then begin to indirect between these using normal C++
/// template parameters.
// MSVC requires special handling here.
#ifndef _MSC_VER
template<std::size_t Alignment, std::size_t Size>
struct AlignedCharArray {
LLVM_ALIGNAS(Alignment) char buffer[Size];
};
#else // _MSC_VER
/// \brief Create a type with an aligned char buffer.
template<std::size_t Alignment, std::size_t Size>
struct AlignedCharArray;
// We provide special variations of this template for the most common
// alignments because __declspec(align(...)) doesn't actually work when it is
// a member of a by-value function argument in MSVC, even if the alignment
// request is something reasonably like 8-byte or 16-byte. Note that we can't
// even include the declspec with the union that forces the alignment because
// MSVC warns on the existence of the declspec despite the union member forcing
// proper alignment.
template<std::size_t Size>
struct AlignedCharArray<1, Size> {
union {
char aligned;
char buffer[Size];
};
};
template<std::size_t Size>
struct AlignedCharArray<2, Size> {
union {
short aligned;
char buffer[Size];
};
};
template<std::size_t Size>
struct AlignedCharArray<4, Size> {
union {
int aligned;
char buffer[Size];
};
};
template<std::size_t Size>
struct AlignedCharArray<8, Size> {
union {
double aligned;
char buffer[Size];
};
};
// The rest of these are provided with a __declspec(align(...)) and we simply
// can't pass them by-value as function arguments on MSVC.
#define LLVM_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(x) \
template<std::size_t Size> \
struct AlignedCharArray<x, Size> { \
__declspec(align(x)) char buffer[Size]; \
};
LLVM_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(16)
LLVM_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(32)
LLVM_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(64)
LLVM_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(128)
#undef LLVM_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT
#endif // _MSC_VER
namespace detail {
template <typename T1,
typename T2 = char, typename T3 = char, typename T4 = char,
typename T5 = char, typename T6 = char, typename T7 = char,
typename T8 = char, typename T9 = char, typename T10 = char>
class AlignerImpl {
T1 t1; T2 t2; T3 t3; T4 t4; T5 t5; T6 t6; T7 t7; T8 t8; T9 t9; T10 t10;
AlignerImpl() = delete;
};
template <typename T1,
typename T2 = char, typename T3 = char, typename T4 = char,
typename T5 = char, typename T6 = char, typename T7 = char,
typename T8 = char, typename T9 = char, typename T10 = char>
union SizerImpl {
char arr1[sizeof(T1)], arr2[sizeof(T2)], arr3[sizeof(T3)], arr4[sizeof(T4)],
arr5[sizeof(T5)], arr6[sizeof(T6)], arr7[sizeof(T7)], arr8[sizeof(T8)],
arr9[sizeof(T9)], arr10[sizeof(T10)];
};
} // end namespace detail
/// \brief This union template exposes a suitably aligned and sized character
/// array member which can hold elements of any of up to ten types.
///
/// These types may be arrays, structs, or any other types. The goal is to
/// expose a char array buffer member which can be used as suitable storage for
/// a placement new of any of these types. Support for more than ten types can
/// be added at the cost of more boilerplate.
template <typename T1,
typename T2 = char, typename T3 = char, typename T4 = char,
typename T5 = char, typename T6 = char, typename T7 = char,
typename T8 = char, typename T9 = char, typename T10 = char>
struct AlignedCharArrayUnion : llvm::AlignedCharArray<
alignof(llvm::detail::AlignerImpl<T1, T2, T3, T4, T5,
T6, T7, T8, T9, T10>),
sizeof(::llvm::detail::SizerImpl<T1, T2, T3, T4, T5,
T6, T7, T8, T9, T10>)> {
};
} // end namespace llvm
#endif // LLVM_SUPPORT_ALIGNOF_H
| [
"capn@google.com"
] | capn@google.com |
c979e5905bc5db2c1eee7e2c8acf7754f6ec4e33 | 873002d555745752657e3e25839f6653e73966a2 | /model/VideoRelationshipResource.cpp | b49e9f0d4508da2d33c86177de3f884b7822dbb9 | [] | no_license | knetikmedia/knetikcloud-cpprest-client | e7e739e382c02479b0a9aed8160d857414bd2fbf | 14afb57d62de064fb8b7a68823043cc0150465d6 | refs/heads/master | 2021-01-23T06:35:44.076177 | 2018-03-14T16:02:35 | 2018-03-14T16:02:35 | 86,382,044 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,902 | cpp | /**
* Knetik Platform API Documentation latest
* This is the spec for the Knetik API. Use this in conjunction with the documentation found at https://knetikcloud.com.
*
* OpenAPI spec version: latest
* Contact: support@knetik.com
*
* NOTE: This class is auto generated by the swagger code generator 2.3.0-SNAPSHOT.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
#include "VideoRelationshipResource.h"
namespace com {
namespace knetikcloud {
namespace client {
namespace model {
VideoRelationshipResource::VideoRelationshipResource()
{
m_FromIsSet = false;
m_Id = 0L;
m_IdIsSet = false;
m_Relationship_details = U("");
}
VideoRelationshipResource::~VideoRelationshipResource()
{
}
void VideoRelationshipResource::validate()
{
// TODO: implement validation
}
web::json::value VideoRelationshipResource::toJson() const
{
web::json::value val = web::json::value::object();
if(m_FromIsSet)
{
val[U("from")] = ModelBase::toJson(m_From);
}
if(m_IdIsSet)
{
val[U("id")] = ModelBase::toJson(m_Id);
}
val[U("relationship_details")] = ModelBase::toJson(m_Relationship_details);
val[U("to")] = ModelBase::toJson(m_To);
return val;
}
void VideoRelationshipResource::fromJson(web::json::value& val)
{
if(val.has_field(U("from")))
{
if(!val[U("from")].is_null())
{
std::shared_ptr<SimpleReferenceResource«long»> newItem(new SimpleReferenceResource«long»());
newItem->fromJson(val[U("from")]);
setFrom( newItem );
}
}
if(val.has_field(U("id")))
{
setId(ModelBase::int64_tFromJson(val[U("id")]));
}
setRelationshipDetails(ModelBase::stringFromJson(val[U("relationship_details")]));
std::shared_ptr<SimpleReferenceResource«long»> newTo(new SimpleReferenceResource«long»());
newTo->fromJson(val[U("to")]);
setTo( newTo );
}
void VideoRelationshipResource::toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix) const
{
utility::string_t namePrefix = prefix;
if(namePrefix.size() > 0 && namePrefix[namePrefix.size() - 1] != U('.'))
{
namePrefix += U(".");
}
if(m_FromIsSet)
{
if (m_From.get())
{
m_From->toMultipart(multipart, U("from."));
}
}
if(m_IdIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + U("id"), m_Id));
}
multipart->add(ModelBase::toHttpContent(namePrefix + U("relationship_details"), m_Relationship_details));
m_To->toMultipart(multipart, U("to."));
}
void VideoRelationshipResource::fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix)
{
utility::string_t namePrefix = prefix;
if(namePrefix.size() > 0 && namePrefix[namePrefix.size() - 1] != U('.'))
{
namePrefix += U(".");
}
if(multipart->hasContent(U("from")))
{
if(multipart->hasContent(U("from")))
{
std::shared_ptr<SimpleReferenceResource«long»> newItem(new SimpleReferenceResource«long»());
newItem->fromMultiPart(multipart, U("from."));
setFrom( newItem );
}
}
if(multipart->hasContent(U("id")))
{
setId(ModelBase::int64_tFromHttpContent(multipart->getContent(U("id"))));
}
setRelationshipDetails(ModelBase::stringFromHttpContent(multipart->getContent(U("relationship_details"))));
std::shared_ptr<SimpleReferenceResource«long»> newTo(new SimpleReferenceResource«long»());
newTo->fromMultiPart(multipart, U("to."));
setTo( newTo );
}
std::shared_ptr<SimpleReferenceResource«long»> VideoRelationshipResource::getFrom() const
{
return m_From;
}
void VideoRelationshipResource::setFrom(std::shared_ptr<SimpleReferenceResource«long»> value)
{
m_From = value;
m_FromIsSet = true;
}
bool VideoRelationshipResource::fromIsSet() const
{
return m_FromIsSet;
}
void VideoRelationshipResource::unsetFrom()
{
m_FromIsSet = false;
}
int64_t VideoRelationshipResource::getId() const
{
return m_Id;
}
void VideoRelationshipResource::setId(int64_t value)
{
m_Id = value;
m_IdIsSet = true;
}
bool VideoRelationshipResource::idIsSet() const
{
return m_IdIsSet;
}
void VideoRelationshipResource::unsetId()
{
m_IdIsSet = false;
}
utility::string_t VideoRelationshipResource::getRelationshipDetails() const
{
return m_Relationship_details;
}
void VideoRelationshipResource::setRelationshipDetails(utility::string_t value)
{
m_Relationship_details = value;
}
std::shared_ptr<SimpleReferenceResource«long»> VideoRelationshipResource::getTo() const
{
return m_To;
}
void VideoRelationshipResource::setTo(std::shared_ptr<SimpleReferenceResource«long»> value)
{
m_To = value;
}
}
}
}
}
| [
"shawn.stout@knetik.com"
] | shawn.stout@knetik.com |
28fff698402f682f8bc0de306929b9dc94e90640 | db6026ddf84d7457227c1d2d58fae8b0e6105855 | /luogu/P1948-Telephone Lines S.cpp | 1e08ada75d4145e3d17561a38b07868a0427d8b5 | [] | no_license | bbbiggest/12 | e67b1b4e9d26c97427e2ae544222906841244acc | 743deba4b20d2b998f05c1c4615514f0606c44c0 | refs/heads/master | 2021-10-31T16:15:25.314186 | 2021-09-26T13:49:06 | 2021-09-26T13:49:06 | 234,906,424 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,024 | cpp | // P1948 - Telephone Lines S
#include <iostream>
#include <vector>
#include <map>
#include <queue>
#include <algorithm>
using namespace std;
using P = pair<int, int>;
const int INF = 0x3fffffff;
const int MAX_K = 1000 + 1;
const int MAX_V = 1000 * MAX_K + 10;
struct edge
{
int to, cost;
edge() {}
edge(int _to, int _cost) : to(_to), cost(_cost) {}
};
int V;
vector<edge> G[MAX_V];
int d[MAX_V];
void dijkstra(int s)
{
priority_queue<P, vector<P>, greater<P> > que;
fill(d, d + V, INF);
d[s] = 0;
que.push(P(0, s));
while (!que.empty())
{
P p = que.top();
que.pop();
int v = p.second;
if (d[v] < p.first)
continue;
for (int i = 0; i < G[v].size(); ++i)
{
edge e = G[v][i];
if (d[e.to] > max(d[v], e.cost))
{
d[e.to] = max(d[v], e.cost);
que.push(P(d[e.to], e.to));
}
}
}
}
void add_edge(int from, int to, int cost)
{
G[from].push_back(edge(to, cost));
G[to].push_back(edge(from, cost));
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, m;
int k = 1;
while (cin >> n >> m >> k)
{
V = n * (k + 1) + 1;
int s = 1, t = n;
for (int i = 0; i <= V; ++i)
G[i].clear();
for (int i = 0; i < m; ++i)
{
int a, b, c;
cin >> a >> b >> c;
add_edge(a, b, c);
for (int j = 0; j < k; ++j)
{
add_edge(a + (j + 1) * n, b + (j + 1) * n, c);
G[a + j * n].push_back(edge(b + (j + 1) * n, 0));
G[b + j * n].push_back(edge(a + (j + 1) * n, 0));
}
}
for (int i = 0; i < k; ++i)
G[t + i * n].push_back(edge(t + (i + 1) * n, 0));
dijkstra(s);
if (d[t + n * k] < INF)
cout << d[t + n * k] << '\n';
else
cout << "-1\n";
}
cout.flush();
return 0;
} | [
"huangtengle@gmail.com"
] | huangtengle@gmail.com |
fa5609164e4dcbd2082f0dac207d89f42adf5b09 | 13d99d78cd8efcc9d0d134450f486bdd3faf460f | /ProyectoFinal/NodoArbol.h | de2484685033d6e8ba13ba1c71dd3540a4e39181 | [] | no_license | ProyectoFinal000/ProyectoFinal | 756cd04d0e15842c46d74bdaeb86e8dcc287d305 | 7da7b2901f2bc84d3eea1a5d38c63725f7119147 | refs/heads/master | 2016-09-06T06:56:55.769738 | 2015-07-10T03:20:57 | 2015-07-10T03:20:57 | 38,832,619 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 576 | h | #pragma once
#include "Lista.h"
template <typename T, template <class> class U>
class NodoArbol {
template <class T>
friend class ArbolBinario;
private:
Lista <T> actual;
NodoArbol <T, Lista>*padre;
NodoArbol <T, Lista>*hijos;
public:
NodoArbol(Lista<T> elementos){
this->actual = elementos;
padre = NULL;
hijos = NULL;
}
~NodoArbol() {
}
Lista<T> * NodoArbol::getNodoArbol(){
return actual;
}
Lista<T> * NodoArbol::getNodoArbolHijos(){
return hijos;
}
void NodoArbol::setHijos(Lista<T> * elementos){
hijos = new NodoArbol(elementos);
}
};
| [
"danijv-92@hotmail.com"
] | danijv-92@hotmail.com |
6c77a356db5fbc173054ccbabacfbadaf66ebafd | e6267643fb275f62ab2db70c2e1a6b6dd74b2758 | /VCECore/rgy_output.cpp | 91bb67780f04d385b9ef88bf20866c1a30237c1e | [
"MIT",
"Zlib",
"BSD-2-Clause"
] | permissive | smmzhang/VCEEnc | 77794eb4ae5af6a0abc85c1e62a6611d3999c729 | 8285cd996b57f65637bf4d2fec7655f53eb8a3c1 | refs/heads/master | 2023-04-26T14:22:04.553298 | 2021-05-23T11:25:41 | 2021-05-23T11:30:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 57,352 | cpp | // -----------------------------------------------------------------------------------------
// QSVEnc/NVEnc by rigaya
// -----------------------------------------------------------------------------------------
// The MIT License
//
// Copyright (c) 2011-2016 rigaya
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// ------------------------------------------------------------------------------------------
#include "rgy_output.h"
#include "rgy_bitstream.h"
#include "rgy_language.h"
#include <filesystem>
#if defined(_M_IX86) || defined(_M_X64) || defined(__x86_64)
#include <smmintrin.h>
#endif
#if ENCODER_QSV
static RGY_ERR WriteY4MHeader(FILE *fp, const VideoInfo *info) {
char buffer[256] = { 0 };
char *ptr = buffer;
uint32_t len = 0;
memcpy(ptr, "YUV4MPEG2 ", 10);
len += 10;
len += sprintf_s(ptr+len, sizeof(buffer)-len, "W%d H%d ", info->dstWidth, info->dstHeight);
len += sprintf_s(ptr+len, sizeof(buffer)-len, "F%d:%d ", info->fpsN, info->fpsD);
const char *picstruct = "Ip ";
if (info->picstruct & RGY_PICSTRUCT_TFF) {
picstruct = "It ";
} else if (info->picstruct & RGY_PICSTRUCT_BFF) {
picstruct = "Ib ";
}
strcpy_s(ptr+len, sizeof(buffer)-len, picstruct); len += 3;
len += sprintf_s(ptr+len, sizeof(buffer)-len, "A%d:%d ", info->sar[0], info->sar[1]);
strcpy_s(ptr+len, sizeof(buffer)-len, "C420mpeg2\n"); len += (mfxU32)strlen("C420mpeg2\n");
return (len == fwrite(buffer, 1, len, fp)) ? RGY_ERR_NONE : RGY_ERR_UNDEFINED_BEHAVIOR;
}
#endif //#if ENCODER_QSV
#define WRITE_CHECK(writtenBytes, expected) { \
if (writtenBytes != expected) { \
AddMessage(RGY_LOG_ERROR, _T("Error writing file.\nNot enough disk space!\n")); \
return RGY_ERR_UNDEFINED_BEHAVIOR; \
} }
RGYOutput::RGYOutput() :
m_encSatusInfo(),
m_fDest(),
m_outputIsStdout(false),
m_inited(false),
m_noOutput(false),
m_OutType(OUT_TYPE_BITSTREAM),
m_sourceHWMem(false),
m_y4mHeaderWritten(false),
m_strWriterName(),
m_strOutputInfo(),
m_VideoOutputInfo(),
m_printMes(),
m_outputBuffer(),
m_readBuffer(),
m_UVBuffer() {
}
RGYOutput::~RGYOutput() {
m_encSatusInfo.reset();
m_printMes.reset();
Close();
}
void RGYOutput::Close() {
AddMessage(RGY_LOG_DEBUG, _T("Closing...\n"));
if (m_fDest) {
m_fDest.reset();
AddMessage(RGY_LOG_DEBUG, _T("Closed file pointer.\n"));
}
m_encSatusInfo.reset();
m_outputBuffer.reset();
m_readBuffer.reset();
m_UVBuffer.reset();
m_noOutput = false;
m_inited = false;
m_sourceHWMem = false;
m_y4mHeaderWritten = false;
AddMessage(RGY_LOG_DEBUG, _T("Closed.\n"));
m_printMes.reset();
}
RGYOutputRaw::RGYOutputRaw() :
m_outputBuf2(),
m_seiNal()
#if ENABLE_AVSW_READER
, m_pBsfc()
#endif //#if ENABLE_AVSW_READER
{
m_strWriterName = _T("bitstream");
m_OutType = OUT_TYPE_BITSTREAM;
}
RGYOutputRaw::~RGYOutputRaw() {
#if ENABLE_AVSW_READER
m_pBsfc.reset();
#endif //#if ENABLE_AVSW_READER
}
#pragma warning (push)
#pragma warning (disable: 4127) //warning C4127: 条件式が定数です。
RGY_ERR RGYOutputRaw::Init(const TCHAR *strFileName, const VideoInfo *pVideoOutputInfo, const void *prm) {
UNREFERENCED_PARAMETER(pVideoOutputInfo);
RGYOutputRawPrm *rawPrm = (RGYOutputRawPrm *)prm;
if (!rawPrm->benchmark && _tcslen(strFileName) == 0) {
AddMessage(RGY_LOG_ERROR, _T("output filename not set.\n"));
return RGY_ERR_INVALID_PARAM;
}
if (rawPrm->benchmark) {
m_noOutput = true;
AddMessage(RGY_LOG_DEBUG, _T("no output for benchmark mode.\n"));
} else {
if (_tcscmp(strFileName, _T("-")) == 0) {
m_fDest.reset(stdout);
m_outputIsStdout = true;
AddMessage(RGY_LOG_DEBUG, _T("using stdout\n"));
} else {
CreateDirectoryRecursive(PathRemoveFileSpecFixed(strFileName).second.c_str());
FILE *fp = NULL;
int error = _tfopen_s(&fp, strFileName, _T("wb+"));
if (error != 0 || fp == NULL) {
AddMessage(RGY_LOG_ERROR, _T("failed to open output file \"%s\": %s\n"), strFileName, _tcserror(error));
return RGY_ERR_FILE_OPEN;
}
m_fDest.reset(fp);
AddMessage(RGY_LOG_DEBUG, _T("Opened file \"%s\"\n"), strFileName);
int bufferSizeByte = clamp(rawPrm->bufSizeMB, 0, RGY_OUTPUT_BUF_MB_MAX) * 1024 * 1024;
if (bufferSizeByte) {
void *ptr = nullptr;
bufferSizeByte = (int)malloc_degeneracy(&ptr, bufferSizeByte, 1024 * 1024);
if (bufferSizeByte) {
m_outputBuffer.reset((char*)ptr);
setvbuf(m_fDest.get(), m_outputBuffer.get(), _IOFBF, bufferSizeByte);
AddMessage(RGY_LOG_DEBUG, _T("Added %d MB output buffer.\n"), bufferSizeByte / (1024 * 1024));
}
}
}
#if ENABLE_AVSW_READER
if ((ENCODER_NVENC
&& (pVideoOutputInfo->codec == RGY_CODEC_H264 || pVideoOutputInfo->codec == RGY_CODEC_HEVC)
&& pVideoOutputInfo->sar[0] * pVideoOutputInfo->sar[1] > 0)
|| (ENCODER_QSV
&& pVideoOutputInfo->vui.chromaloc != 0)
|| (ENCODER_VCEENC
&& (pVideoOutputInfo->vui.format != 5
|| pVideoOutputInfo->vui.colorprim != 2
|| pVideoOutputInfo->vui.transfer != 2
|| pVideoOutputInfo->vui.matrix != 2
|| pVideoOutputInfo->vui.chromaloc != 0))) {
if (!check_avcodec_dll()) {
AddMessage(RGY_LOG_ERROR, error_mes_avcodec_dll_not_found());
return RGY_ERR_NULL_PTR;
}
const char *bsf_name = nullptr;
switch (pVideoOutputInfo->codec) {
case RGY_CODEC_H264: bsf_name = "h264_metadata"; break;
case RGY_CODEC_HEVC: bsf_name = "hevc_metadata"; break;
default:
break;
}
if (bsf_name == nullptr) {
AddMessage(RGY_LOG_ERROR, _T("invalid codec to set metadata filter.\n"));
return RGY_ERR_INVALID_CALL;
}
const auto bsf_tname = char_to_tstring(bsf_name);
AddMessage(RGY_LOG_DEBUG, _T("start initialize %s filter...\n"), bsf_tname.c_str());
auto filter = av_bsf_get_by_name(bsf_name);
if (filter == nullptr) {
AddMessage(RGY_LOG_ERROR, _T("failed to find %s.\n"), bsf_tname.c_str());
return RGY_ERR_NOT_FOUND;
}
unique_ptr<AVCodecParameters, RGYAVDeleter<AVCodecParameters>> codecpar(avcodec_parameters_alloc(), RGYAVDeleter<AVCodecParameters>(avcodec_parameters_free));
codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
codecpar->codec_id = getAVCodecId(pVideoOutputInfo->codec);
codecpar->width = pVideoOutputInfo->dstWidth;
codecpar->height = pVideoOutputInfo->dstHeight;
codecpar->format = csp_rgy_to_avpixfmt(pVideoOutputInfo->csp);
codecpar->level = pVideoOutputInfo->codecLevel;
codecpar->profile = pVideoOutputInfo->codecProfile;
codecpar->sample_aspect_ratio.num = pVideoOutputInfo->sar[0];
codecpar->sample_aspect_ratio.den = pVideoOutputInfo->sar[1];
codecpar->chroma_location = (AVChromaLocation)pVideoOutputInfo->vui.chromaloc;
codecpar->field_order = picstrcut_rgy_to_avfieldorder(pVideoOutputInfo->picstruct);
codecpar->video_delay = pVideoOutputInfo->videoDelay;
if (pVideoOutputInfo->vui.descriptpresent) {
codecpar->color_space = (AVColorSpace)pVideoOutputInfo->vui.matrix;
codecpar->color_primaries = (AVColorPrimaries)pVideoOutputInfo->vui.colorprim;
codecpar->color_range = (AVColorRange)pVideoOutputInfo->vui.colorrange;
codecpar->color_trc = (AVColorTransferCharacteristic)pVideoOutputInfo->vui.transfer;
}
int ret = 0;
AVBSFContext *bsfc = nullptr;
if (0 > (ret = av_bsf_alloc(filter, &bsfc))) {
AddMessage(RGY_LOG_ERROR, _T("failed to allocate memory for %s: %s.\n"), bsf_tname.c_str(), qsv_av_err2str(ret).c_str());
return RGY_ERR_NULL_PTR;
}
if (0 > (ret = avcodec_parameters_copy(bsfc->par_in, codecpar.get()))) {
AddMessage(RGY_LOG_ERROR, _T("failed to copy parameter for %s: %s.\n"), bsf_tname.c_str(), qsv_av_err2str(ret).c_str());
return RGY_ERR_UNKNOWN;
}
m_pBsfc = unique_ptr<AVBSFContext, RGYAVDeleter<AVBSFContext>>(bsfc, RGYAVDeleter<AVBSFContext>(av_bsf_free));
AVDictionary *bsfPrm = nullptr;
if (ENCODER_NVENC) {
char sar[128];
sprintf_s(sar, "%d/%d", pVideoOutputInfo->sar[0], pVideoOutputInfo->sar[1]);
av_dict_set(&bsfPrm, "sample_aspect_ratio", sar, 0);
AddMessage(RGY_LOG_DEBUG, _T("set sar %d:%d by %s filter\n"), pVideoOutputInfo->sar[0], pVideoOutputInfo->sar[1], bsf_tname.c_str());
}
if (ENCODER_VCEENC) {
if (pVideoOutputInfo->vui.format != 5 /*undef*/) {
av_dict_set_int(&bsfPrm, "video_format", pVideoOutputInfo->vui.format, 0);
AddMessage(RGY_LOG_DEBUG, _T("set video_format %d by %s filter\n"), pVideoOutputInfo->vui.format, bsf_tname.c_str());
}
if (pVideoOutputInfo->vui.colorprim != 2 /*undef*/) {
av_dict_set_int(&bsfPrm, "colour_primaries", pVideoOutputInfo->vui.colorprim, 0);
AddMessage(RGY_LOG_DEBUG, _T("set colorprim %d by %s filter\n"), pVideoOutputInfo->vui.colorprim, bsf_tname.c_str());
}
if (pVideoOutputInfo->vui.transfer != 2 /*undef*/) {
av_dict_set_int(&bsfPrm, "transfer_characteristics", pVideoOutputInfo->vui.transfer, 0);
AddMessage(RGY_LOG_DEBUG, _T("set transfer %d by %s filter\n"), pVideoOutputInfo->vui.transfer, bsf_tname.c_str());
}
if (pVideoOutputInfo->vui.matrix != 2 /*undef*/) {
av_dict_set_int(&bsfPrm, "matrix_coefficients", pVideoOutputInfo->vui.matrix, 0);
AddMessage(RGY_LOG_DEBUG, _T("set matrix %d by %s filter\n"), pVideoOutputInfo->vui.matrix, bsf_tname.c_str());
}
}
if (ENCODER_QSV || ENCODER_VCEENC) {
if (pVideoOutputInfo->vui.chromaloc != 0) {
av_dict_set_int(&bsfPrm, "chroma_sample_loc_type", pVideoOutputInfo->vui.chromaloc-1, 0);
AddMessage(RGY_LOG_DEBUG, _T("set chromaloc %d by %s filter\n"), pVideoOutputInfo->vui.chromaloc-1, bsf_tname.c_str());
}
}
if (0 > (ret = av_opt_set_dict2(m_pBsfc.get(), &bsfPrm, AV_OPT_SEARCH_CHILDREN))) {
AddMessage(RGY_LOG_ERROR, _T("failed to set parameters for %s: %s.\n"), bsf_tname.c_str(), qsv_av_err2str(ret).c_str());
return RGY_ERR_UNKNOWN;
}
if (0 > (ret = av_bsf_init(m_pBsfc.get()))) {
AddMessage(RGY_LOG_ERROR, _T("failed to init %s: %s.\n"), bsf_tname.c_str(), qsv_av_err2str(ret).c_str());
return RGY_ERR_UNKNOWN;
}
AddMessage(RGY_LOG_DEBUG, _T("initialized %s filter\n"), bsf_tname.c_str());
}
#endif //#if ENABLE_AVSW_READER
if (rawPrm->codecId == RGY_CODEC_HEVC && rawPrm->hedrsei != nullptr) {
AddMessage(RGY_LOG_DEBUG, char_to_tstring(rawPrm->hedrsei->print()));
m_seiNal = rawPrm->hedrsei->gen_nal();
}
}
m_inited = true;
return RGY_ERR_NONE;
}
#pragma warning (pop)
RGY_ERR RGYOutputRaw::WriteNextFrame(RGYBitstream *pBitstream) {
if (pBitstream == nullptr) {
AddMessage(RGY_LOG_ERROR, _T("Invalid call: WriteNextFrame\n"));
return RGY_ERR_NULL_PTR;
}
size_t nBytesWritten = 0;
if (!m_noOutput) {
#if ENABLE_AVSW_READER
if (m_pBsfc) {
uint8_t nal_type = 0;
std::vector<nal_info> nal_list;
if (m_VideoOutputInfo.codec == RGY_CODEC_HEVC) {
nal_type = NALU_HEVC_SPS;
nal_list = parse_nal_unit_hevc(pBitstream->data(), pBitstream->size());
} else if (m_VideoOutputInfo.codec == RGY_CODEC_H264) {
nal_type = NALU_H264_SPS;
nal_list = parse_nal_unit_h264(pBitstream->data(), pBitstream->size());
}
auto sps_nal = std::find_if(nal_list.begin(), nal_list.end(), [](nal_info info) { return info.type == NALU_HEVC_SPS; });
if (sps_nal != nal_list.end()) {
AVPacket pkt = { 0 };
av_init_packet(&pkt);
av_new_packet(&pkt, (int)sps_nal->size);
memcpy(pkt.data, sps_nal->ptr, sps_nal->size);
int ret = 0;
if (0 > (ret = av_bsf_send_packet(m_pBsfc.get(), &pkt))) {
av_packet_unref(&pkt);
AddMessage(RGY_LOG_ERROR, _T("failed to send packet to %s bitstream filter: %s.\n"),
char_to_tstring(m_pBsfc->filter->name).c_str(), qsv_av_err2str(ret).c_str());
return RGY_ERR_UNKNOWN;
}
ret = av_bsf_receive_packet(m_pBsfc.get(), &pkt);
if (ret == AVERROR(EAGAIN)) {
return RGY_ERR_NONE;
} else if ((ret < 0 && ret != AVERROR_EOF) || pkt.size < 0) {
AddMessage(RGY_LOG_ERROR, _T("failed to run %s bitstream filter: %s.\n"),
char_to_tstring(m_pBsfc->filter->name).c_str(), qsv_av_err2str(ret).c_str());
return RGY_ERR_UNKNOWN;
}
const auto new_data_size = pBitstream->size() + pkt.size - sps_nal->size;
const auto sps_nal_offset = sps_nal->ptr - pBitstream->data();
const auto next_nal_orig_offset = sps_nal_offset + sps_nal->size;
const auto next_nal_new_offset = sps_nal_offset + pkt.size;
const auto stream_orig_length = pBitstream->size();
if ((decltype(new_data_size))pBitstream->bufsize() < new_data_size) {
#if ENCODER_QSV
pBitstream->changeSize(new_data_size);
#else //NVEnc, VCEの場合はこうしないとメモリリークが発生する
const auto org_data_size = pBitstream->size();
m_outputBuf2.resize(new_data_size);
memcpy(m_outputBuf2.data(), pBitstream->data(), org_data_size);
pBitstream->release();
pBitstream->ref(m_outputBuf2.data(), m_outputBuf2.size());
#endif
} else if (pkt.size > (decltype(pkt.size))sps_nal->size) {
pBitstream->trim();
}
memmove(pBitstream->data() + next_nal_new_offset, pBitstream->data() + next_nal_orig_offset, stream_orig_length - next_nal_orig_offset);
memcpy(pBitstream->data() + sps_nal_offset, pkt.data, pkt.size);
pBitstream->setSize(new_data_size);
av_packet_unref(&pkt);
}
}
#endif //#if ENABLE_AVSW_READER
if (m_seiNal.size() > 0 && (pBitstream->frametype() & (RGY_FRAMETYPE_IDR|RGY_FRAMETYPE_xIDR)) != 0) {
const auto nal_list = parse_nal_unit_hevc(pBitstream->data(), pBitstream->size());
const auto hevc_vps_nal = std::find_if(nal_list.begin(), nal_list.end(), [](nal_info info) { return info.type == NALU_HEVC_VPS; });
const auto hevc_sps_nal = std::find_if(nal_list.begin(), nal_list.end(), [](nal_info info) { return info.type == NALU_HEVC_SPS; });
const auto hevc_pps_nal = std::find_if(nal_list.begin(), nal_list.end(), [](nal_info info) { return info.type == NALU_HEVC_PPS; });
const bool header_check = (nal_list.end() != hevc_vps_nal) && (nal_list.end() != hevc_sps_nal) && (nal_list.end() != hevc_pps_nal);
bool seiWritten = false;
if (!header_check) {
nBytesWritten += _fwrite_nolock(m_seiNal.data(), 1, m_seiNal.size(), m_fDest.get());
seiWritten = true;
}
for (size_t i = 0; i < nal_list.size(); i++) {
nBytesWritten += _fwrite_nolock(nal_list[i].ptr, 1, nal_list[i].size, m_fDest.get());
if (nal_list[i].type == NALU_HEVC_VPS || nal_list[i].type == NALU_HEVC_SPS || nal_list[i].type == NALU_HEVC_PPS) {
if (!seiWritten
&& i+1 < nal_list.size()
&& (nal_list[i+1].type != NALU_HEVC_VPS && nal_list[i+1].type != NALU_HEVC_SPS && nal_list[i+1].type != NALU_HEVC_PPS)) {
nBytesWritten += _fwrite_nolock(m_seiNal.data(), 1, m_seiNal.size(), m_fDest.get());
seiWritten = true;
}
}
}
} else {
nBytesWritten = _fwrite_nolock(pBitstream->data(), 1, pBitstream->size(), m_fDest.get());
WRITE_CHECK(nBytesWritten, pBitstream->size());
}
}
m_encSatusInfo->SetOutputData(pBitstream->frametype(), pBitstream->size(), 0);
pBitstream->setSize(0);
return RGY_ERR_NONE;
}
RGY_ERR RGYOutputRaw::WriteNextFrame(RGYFrame *pSurface) {
UNREFERENCED_PARAMETER(pSurface);
return RGY_ERR_UNSUPPORTED;
}
#if ENCODER_QSV
RGYOutFrame::RGYOutFrame() : m_bY4m(true) {
m_strWriterName = _T("yuv writer");
m_OutType = OUT_TYPE_SURFACE;
};
RGYOutFrame::~RGYOutFrame() {
};
RGY_ERR RGYOutFrame::Init(const TCHAR *strFileName, const VideoInfo *pVideoOutputInfo, const void *prm) {
UNREFERENCED_PARAMETER(pVideoOutputInfo);
if (_tcscmp(strFileName, _T("-")) == 0) {
m_fDest.reset(stdout);
m_outputIsStdout = true;
AddMessage(RGY_LOG_DEBUG, _T("using stdout\n"));
} else {
FILE *fp = NULL;
int error = _tfopen_s(&fp, strFileName, _T("wb"));
if (0 != error || fp == NULL) {
AddMessage(RGY_LOG_DEBUG, _T("failed to open file \"%s\": %s\n"), strFileName, _tcserror(error));
return RGY_ERR_NULL_PTR;
}
m_fDest.reset(fp);
}
YUVWriterParam *writerParam = (YUVWriterParam *)prm;
m_bY4m = writerParam->bY4m;
m_sourceHWMem = true;
m_inited = true;
return RGY_ERR_NONE;
}
RGY_ERR RGYOutFrame::WriteNextFrame(RGYBitstream *pBitstream) {
UNREFERENCED_PARAMETER(pBitstream);
return RGY_ERR_UNSUPPORTED;
}
RGY_ERR RGYOutFrame::WriteNextFrame(RGYFrame *pSurface) {
if (!m_fDest) {
return RGY_ERR_NULL_PTR;
}
if (m_sourceHWMem) {
if (m_readBuffer.get() == nullptr) {
m_readBuffer.reset((uint8_t *)_aligned_malloc(pSurface->pitch() + 128, 16));
}
}
if (m_bY4m) {
if (!m_y4mHeaderWritten) {
WriteY4MHeader(m_fDest.get(), &m_VideoOutputInfo);
m_y4mHeaderWritten = true;
}
WRITE_CHECK(fwrite("FRAME\n", 1, strlen("FRAME\n"), m_fDest.get()), strlen("FRAME\n"));
}
auto loadLineToBuffer = [](uint8_t *ptrBuf, uint8_t *ptrSrc, int pitch) {
#if defined(_M_IX86) || defined(_M_X64) || defined(__x86_64)
for (int i = 0; i < pitch; i += 128, ptrSrc += 128, ptrBuf += 128) {
__m128i x0 = _mm_stream_load_si128((__m128i *)(ptrSrc + 0));
__m128i x1 = _mm_stream_load_si128((__m128i *)(ptrSrc + 16));
__m128i x2 = _mm_stream_load_si128((__m128i *)(ptrSrc + 32));
__m128i x3 = _mm_stream_load_si128((__m128i *)(ptrSrc + 48));
__m128i x4 = _mm_stream_load_si128((__m128i *)(ptrSrc + 64));
__m128i x5 = _mm_stream_load_si128((__m128i *)(ptrSrc + 80));
__m128i x6 = _mm_stream_load_si128((__m128i *)(ptrSrc + 96));
__m128i x7 = _mm_stream_load_si128((__m128i *)(ptrSrc + 112));
_mm_store_si128((__m128i *)(ptrBuf + 0), x0);
_mm_store_si128((__m128i *)(ptrBuf + 16), x1);
_mm_store_si128((__m128i *)(ptrBuf + 32), x2);
_mm_store_si128((__m128i *)(ptrBuf + 48), x3);
_mm_store_si128((__m128i *)(ptrBuf + 64), x4);
_mm_store_si128((__m128i *)(ptrBuf + 80), x5);
_mm_store_si128((__m128i *)(ptrBuf + 96), x6);
_mm_store_si128((__m128i *)(ptrBuf + 112), x7);
}
#else
memcpy(ptrBuf, ptrSrc, pitch);
#endif
};
const uint32_t lumaWidthBytes = pSurface->width() << ((pSurface->csp() == RGY_CSP_P010) ? 1 : 0);
if ( pSurface->csp() == RGY_CSP_YV12
|| pSurface->csp() == RGY_CSP_NV12
|| pSurface->csp() == RGY_CSP_P010) {
const uint32_t cropOffset = pSurface->crop().e.up * pSurface->pitch() + pSurface->crop().e.left;
if (m_sourceHWMem) {
for (uint32_t j = 0; j < pSurface->height(); j++) {
uint8_t *ptrBuf = m_readBuffer.get();
uint8_t *ptrSrc = pSurface->ptrY() + (pSurface->crop().e.up + j) * pSurface->pitch();
loadLineToBuffer(ptrBuf, ptrSrc, pSurface->pitch());
WRITE_CHECK(fwrite(ptrBuf + pSurface->crop().e.left, 1, lumaWidthBytes, m_fDest.get()), lumaWidthBytes);
}
} else {
for (uint32_t j = 0; j < pSurface->height(); j++) {
WRITE_CHECK(fwrite(pSurface->ptrY() + cropOffset + j * pSurface->pitch(), 1, lumaWidthBytes, m_fDest.get()), lumaWidthBytes);
}
}
}
uint32_t frameSize = 0;
if (pSurface->csp() == RGY_CSP_YV12) {
frameSize = lumaWidthBytes * pSurface->height() * 3 / 2;
uint32_t uvPitch = pSurface->pitch() >> 1;
uint32_t uvWidth = pSurface->width() >> 1;
uint32_t uvHeight = pSurface->height() >> 1;
uint8_t *ptrBuf = m_readBuffer.get();
for (uint32_t i = 0; i < uvHeight; i++) {
loadLineToBuffer(ptrBuf, pSurface->ptrU() + (pSurface->crop().e.up + i) * uvPitch, uvPitch);
WRITE_CHECK(fwrite(ptrBuf + (pSurface->crop().e.left >> 1), 1, uvWidth, m_fDest.get()), uvWidth);
}
for (uint32_t i = 0; i < uvHeight; i++) {
loadLineToBuffer(ptrBuf, pSurface->ptrV() + (pSurface->crop().e.up + i) * uvPitch, uvPitch);
WRITE_CHECK(fwrite(ptrBuf + (pSurface->crop().e.left >> 1), 1, uvWidth, m_fDest.get()), uvWidth);
}
} else if (pSurface->csp() == RGY_CSP_NV12) {
frameSize = lumaWidthBytes * pSurface->height() * 3 / 2;
uint32_t uvWidth = pSurface->width() >> 1;
//uint32_t nv12Width = pSurface->width();
uint32_t uvHeight = pSurface->height() >> 1;
uint32_t uvFrameOffset = ALIGN16(uvWidth * uvHeight + 16);
if (m_UVBuffer.get() == nullptr) {
m_UVBuffer.reset((uint8_t *)_aligned_malloc(uvFrameOffset << 1, 32));
}
alignas(16) static const uint16_t MASK_LOW8[] = {
0x00ff, 0x00ff, 0x00ff, 0x00ff, 0x00ff, 0x00ff, 0x00ff, 0x00ff
};
const __m128i xMaskLow8 = _mm_load_si128((__m128i *)MASK_LOW8);
for (uint32_t j = 0; j < uvHeight; j++) {
uint8_t *ptrBuf = m_readBuffer.get();
uint8_t *ptrSrc = pSurface->ptrUV() + (pSurface->crop().e.up + j) * pSurface->pitch();
if (m_sourceHWMem) {
loadLineToBuffer(ptrBuf, ptrSrc, pSurface->pitch());
} else {
ptrBuf = ptrSrc;
}
uint8_t *ptrUV = ptrBuf + pSurface->crop().e.left;
uint8_t *ptrU = m_UVBuffer.get() + j * uvWidth;
uint8_t *ptrV = ptrU + uvFrameOffset;
#if defined(_M_IX86) || defined(_M_X64) || defined(__x86_64)
for (uint32_t i = 0; i < uvWidth; i += 16, ptrUV += 32, ptrU += 16, ptrV += 16) {
__m128i x0 = _mm_loadu_si128((__m128i *)(ptrUV + 0));
__m128i x1 = _mm_loadu_si128((__m128i *)(ptrUV + 16));
_mm_storeu_si128((__m128i *)ptrU, _mm_packus_epi16(_mm_and_si128(x0, xMaskLow8), _mm_and_si128(x1, xMaskLow8)));
_mm_storeu_si128((__m128i *)ptrV, _mm_packus_epi16(_mm_srli_epi16(x0, 8), _mm_srli_epi16(x1, 8)));
}
#else
for (uint32_t i = 0; i < uvWidth; i++) {
ptrU[i] = ptrUV[2*i+0];
ptrV[i] = ptrUV[2*i+1];
}
#endif
}
WRITE_CHECK(fwrite(m_UVBuffer.get(), 1, uvWidth * uvHeight, m_fDest.get()), uvWidth * uvHeight);
WRITE_CHECK(fwrite(m_UVBuffer.get() + uvFrameOffset, 1, uvWidth * uvHeight, m_fDest.get()), uvWidth * uvHeight);
} else if (pSurface->csp() == RGY_CSP_P010) {
frameSize = lumaWidthBytes * pSurface->height() * 3 / 2;
uint8_t *ptrBuf = m_readBuffer.get();
for (uint32_t i = 0; i < (uint32_t)(pSurface->height() >> 1); i++) {
loadLineToBuffer(ptrBuf, pSurface->ptrUV() + pSurface->crop().e.up * (pSurface->pitch() >> 1) + i * pSurface->pitch(), pSurface->pitch());
WRITE_CHECK(fwrite(ptrBuf + pSurface->crop().e.left, 1, (uint32_t)pSurface->width() << 1, m_fDest.get()), (uint32_t)pSurface->width() << 1);
}
} else if (pSurface->csp() == RGY_CSP_RGB32R
/*|| pSurface->csp() == 100 //DXGI_FORMAT_AYUV
|| pSurface->csp() == RGY_CSP_A2RGB10*/) {
frameSize = lumaWidthBytes * pSurface->height() * 4;
uint32_t w = pSurface->width();
uint32_t h = pSurface->height();
uint8_t *ptr = pSurface->ptrRGB() + pSurface->crop().e.left + pSurface->crop().e.up * pSurface->pitch();
for (uint32_t i = 0; i < h; i++) {
WRITE_CHECK(fwrite(ptr + i * pSurface->pitch(), 1, 4*w, m_fDest.get()), 4*w);
}
} else {
return RGY_ERR_INVALID_COLOR_FORMAT;
}
m_encSatusInfo->SetOutputData(frametype_enc_to_rgy(MFX_FRAMETYPE_IDR | MFX_FRAMETYPE_I), frameSize, 0);
return RGY_ERR_NONE;
}
#endif //#if ENCODER_QSV
#include "rgy_input_sm.h"
#include "rgy_input_avcodec.h"
#include "rgy_output_avcodec.h"
std::unique_ptr<HEVCHDRSei> createHEVCHDRSei(const std::string& maxCll, const std::string &masterDisplay, CspTransfer atcSei, const RGYInput *reader) {
auto hedrsei = std::make_unique<HEVCHDRSei>();
const AVMasteringDisplayMetadata *masteringDisplaySrc = nullptr;
const AVContentLightMetadata *contentLightSrc = nullptr;
{ auto avcodecReader = dynamic_cast<const RGYInputAvcodec *>(reader);
if (avcodecReader != nullptr) {
masteringDisplaySrc = avcodecReader->getMasteringDisplay();
contentLightSrc = avcodecReader->getContentLight();
}
}
int ret = 0;
if (maxCll == maxCLLSource) {
if (contentLightSrc != nullptr) {
hedrsei->set_maxcll(contentLightSrc->MaxCLL, contentLightSrc->MaxFALL);
}
} else {
ret = hedrsei->parse_maxcll(maxCll);
}
if (masterDisplay == masterDisplaySource) {
if (masteringDisplaySrc != nullptr) {
int masterdisplay[10];
masterdisplay[0] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->display_primaries[1][0], av_make_q(50000, 1))) + 0.5); //G
masterdisplay[1] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->display_primaries[1][1], av_make_q(50000, 1))) + 0.5); //G
masterdisplay[2] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->display_primaries[2][0], av_make_q(50000, 1))) + 0.5); //B
masterdisplay[3] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->display_primaries[2][1], av_make_q(50000, 1))) + 0.5); //B
masterdisplay[4] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->display_primaries[0][0], av_make_q(50000, 1))) + 0.5); //R
masterdisplay[5] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->display_primaries[0][1], av_make_q(50000, 1))) + 0.5); //R
masterdisplay[6] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->white_point[0], av_make_q(50000, 1))) + 0.5);
masterdisplay[7] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->white_point[1], av_make_q(50000, 1))) + 0.5);
masterdisplay[8] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->max_luminance, av_make_q(10000, 1))) + 0.5);
masterdisplay[9] = (int)(av_q2d(av_mul_q(masteringDisplaySrc->min_luminance, av_make_q(10000, 1))) + 0.5);
hedrsei->set_masterdisplay(masterdisplay);
}
} else {
ret = hedrsei->parse_masterdisplay(masterDisplay);
}
if (atcSei != RGY_TRANSFER_UNKNOWN) {
hedrsei->set_atcsei(atcSei);
}
if (ret) {
hedrsei.reset();
}
return hedrsei;
}
static bool audioSelected(const AudioSelect *sel, const AVDemuxStream *stream) {
if (sel->trackID == trackID(stream->trackId)) {
return true;
}
if (sel->trackID == TRACK_SELECT_BY_LANG && rgy_lang_equal(sel->lang, stream->lang)) {
return true;
}
if (sel->trackID == TRACK_SELECT_BY_CODEC && stream->stream != nullptr && avcodec_equal(sel->selectCodec, stream->stream->codecpar->codec_id)) {
return true;
}
return false;
};
static bool subSelected(const SubtitleSelect *sel, const AVDemuxStream *stream) {
if (sel->trackID == trackID(stream->trackId)) {
return true;
}
if (sel->trackID == TRACK_SELECT_BY_LANG && rgy_lang_equal(sel->lang, stream->lang)) {
return true;
}
if (sel->trackID == TRACK_SELECT_BY_CODEC && stream->stream != nullptr && avcodec_equal(sel->selectCodec, stream->stream->codecpar->codec_id)) {
return true;
}
return false;
};
static bool dataSelected(const DataSelect *sel, const AVDemuxStream *stream) {
if (sel->trackID == trackID(stream->trackId)) {
return true;
}
if (sel->trackID == TRACK_SELECT_BY_LANG && rgy_lang_equal(sel->lang, stream->lang)) {
return true;
}
if (sel->trackID == TRACK_SELECT_BY_CODEC && stream->stream != nullptr && avcodec_equal(sel->selectCodec, stream->stream->codecpar->codec_id)) {
return true;
}
return false;
};
RGY_ERR initWriters(
shared_ptr<RGYOutput> &pFileWriter,
vector<shared_ptr<RGYOutput>>& pFileWriterListAudio,
shared_ptr<RGYInput> &pFileReader,
vector<shared_ptr<RGYInput>> &otherReaders,
RGYParamCommon *common,
const VideoInfo *input,
const RGYParamControl *ctrl,
const VideoInfo outputVideoInfo,
const sTrimParam& trimParam,
const rgy_rational<int> outputTimebase,
#if ENABLE_AVSW_READER
const vector<unique_ptr<AVChapter>>& chapters,
#endif //#if ENABLE_AVSW_READER
const HEVCHDRSei *hedrsei,
const bool videoDtsUnavailable,
const bool benchmark,
shared_ptr<EncodeStatus> pStatus,
shared_ptr<CPerfMonitor> pPerfMonitor,
shared_ptr<RGYLog> log
) {
bool stdoutUsed = false;
#if ENABLE_AVSW_READER
vector<int> streamTrackUsed; //使用した音声/字幕のトラックIDを保存する
bool useH264ESOutput =
((common->muxOutputFormat.length() > 0 && 0 == _tcscmp(common->muxOutputFormat.c_str(), _T("raw")))) //--formatにrawが指定されている
|| std::filesystem::path(common->outputFilename).extension().empty() //拡張子がない
|| check_ext(common->outputFilename.c_str(), { ".m2v", ".264", ".h264", ".avc", ".avc1", ".x264", ".265", ".h265", ".hevc" }); //特定の拡張子
if (!useH264ESOutput && outputVideoInfo.codec != RGY_CODEC_UNKNOWN) {
common->AVMuxTarget |= RGY_MUX_VIDEO;
}
double inputFileDuration = 0.0;
{ auto pAVCodecReader = std::dynamic_pointer_cast<RGYInputAvcodec>(pFileReader);
if (pAVCodecReader != nullptr) {
//caption2ass用の解像度情報の提供
//これをしないと入力ファイルのデータをずっとバッファし続けるので注意
pAVCodecReader->setOutputVideoInfo(outputVideoInfo.dstWidth, outputVideoInfo.dstHeight,
outputVideoInfo.sar[0], outputVideoInfo.sar[1],
(common->AVMuxTarget & RGY_MUX_VIDEO) != 0);
inputFileDuration = pAVCodecReader->GetInputVideoDuration();
}
}
bool isAfs = false;
#if ENABLE_SM_READER
{ auto pReaderSM = std::dynamic_pointer_cast<RGYInputSM>(pFileReader);
if (pReaderSM) {
isAfs = pReaderSM->isAfs();
}
}
#endif //#if ENABLE_SM_READER
//if (inputParams->CodecId == MFX_CODEC_RAW) {
// inputParams->AVMuxTarget &= ~RGY_MUX_VIDEO;
//}
pStatus->Init(outputVideoInfo.fpsN, outputVideoInfo.fpsD, input->frames, inputFileDuration, trimParam, log, pPerfMonitor);
if (ctrl->perfMonitorSelect || ctrl->perfMonitorSelectMatplot) {
pPerfMonitor->SetEncStatus(pStatus);
}
bool audioCopyAll = false;
if (common->AVMuxTarget & RGY_MUX_VIDEO) {
log->write(RGY_LOG_DEBUG, _T("Output: Using avformat writer.\n"));
pFileWriter = std::make_shared<RGYOutputAvcodec>();
AvcodecWriterPrm writerPrm;
writerPrm.outputFormat = common->muxOutputFormat;
writerPrm.trimList = trimParam.list;
writerPrm.bVideoDtsUnavailable = videoDtsUnavailable;
writerPrm.threadOutput = ctrl->threadOutput;
writerPrm.threadAudio = ctrl->threadAudio;
writerPrm.bufSizeMB = ctrl->outputBufSizeMB;
writerPrm.audioResampler = common->audioResampler;
writerPrm.audioIgnoreDecodeError = common->audioIgnoreDecodeError;
writerPrm.queueInfo = (pPerfMonitor) ? pPerfMonitor->GetQueueInfoPtr() : nullptr;
writerPrm.muxVidTsLogFile = (ctrl->logMuxVidTsFile) ? ctrl->logMuxVidTsFile : _T("");
writerPrm.bitstreamTimebase = av_make_q(outputTimebase);
writerPrm.chapterNoTrim = common->chapterNoTrim;
writerPrm.HEVCHdrSei = hedrsei;
writerPrm.videoCodecTag = common->videoCodecTag;
writerPrm.videoMetadata = common->videoMetadata;
writerPrm.formatMetadata = common->formatMetadata;
writerPrm.afs = isAfs;
writerPrm.disableMp4Opt = common->disableMp4Opt;
writerPrm.muxOpt = common->muxOpt;
auto pAVCodecReader = std::dynamic_pointer_cast<RGYInputAvcodec>(pFileReader);
if (pAVCodecReader != nullptr) {
writerPrm.inputFormatMetadata = pAVCodecReader->GetInputFormatMetadata();
writerPrm.videoInputFirstKeyPts = pAVCodecReader->GetVideoFirstKeyPts();
writerPrm.videoInputStream = pAVCodecReader->GetInputVideoStream();
}
if (chapters.size() > 0 && (common->copyChapter || common->chapterFile.length() > 0)) {
writerPrm.chapterList.clear();
for (uint32_t i = 0; i < chapters.size(); i++) {
writerPrm.chapterList.push_back(chapters[i].get());
}
}
if (common->AVMuxTarget & (RGY_MUX_AUDIO | RGY_MUX_SUBTITLE)) {
log->write(RGY_LOG_DEBUG, _T("Output: Audio/Subtitle muxing enabled.\n"));
for (int i = 0; !audioCopyAll && i < common->nAudioSelectCount; i++) {
//トラック"0"が指定されていれば、すべてのトラックをコピーするということ
audioCopyAll = (common->ppAudioSelectList[i]->trackID == 0);
}
log->write(RGY_LOG_DEBUG, _T("Output: CopyAll=%s\n"), (audioCopyAll) ? _T("true") : _T("false"));
pAVCodecReader = std::dynamic_pointer_cast<RGYInputAvcodec>(pFileReader);
vector<AVDemuxStream> streamList = pFileReader->GetInputStreamInfo();
for (auto& stream : streamList) {
const auto streamMediaType = trackMediaType(stream.trackId);
//audio-fileで別ファイルとして抽出するものは除く
bool usedInAudioFile = false;
for (int i = 0; i < (int)common->nAudioSelectCount; i++) {
if (audioSelected(common->ppAudioSelectList[i], &stream)
&& common->ppAudioSelectList[i]->extractFilename.length() > 0) {
usedInAudioFile = true;
}
}
if (usedInAudioFile) {
continue;
}
const AudioSelect *pAudioSelect = nullptr;
if (streamMediaType == AVMEDIA_TYPE_AUDIO) {
for (int i = 0; i < (int)common->nAudioSelectCount; i++) {
if (audioSelected(common->ppAudioSelectList[i], &stream)
&& common->ppAudioSelectList[i]->extractFilename.length() == 0) {
pAudioSelect = common->ppAudioSelectList[i];
break;
}
}
if (pAudioSelect == nullptr) {
//一致するTrackIDがなければ、trackID = 0 (全指定)を探す
for (int i = 0; i < common->nAudioSelectCount; i++) {
if (common->ppAudioSelectList[i]->trackID == 0
&& common->ppAudioSelectList[i]->extractFilename.length() == 0) {
pAudioSelect = common->ppAudioSelectList[i];
break;
}
}
}
}
const SubtitleSelect *pSubtitleSelect = nullptr;
if (streamMediaType == AVMEDIA_TYPE_SUBTITLE) {
for (int i = 0; i < common->nSubtitleSelectCount; i++) {
if (subSelected(common->ppSubtitleSelectList[i], &stream)) {
pSubtitleSelect = common->ppSubtitleSelectList[i];
break;
}
}
if (pSubtitleSelect == nullptr) {
//一致するTrackIDがなければ、trackID = 0 (全指定)を探す
for (int i = 0; i < common->nSubtitleSelectCount; i++) {
if (common->ppSubtitleSelectList[i]->trackID == 0) {
pSubtitleSelect = common->ppSubtitleSelectList[i];
break;
}
}
}
}
const DataSelect *pDataSelect = nullptr;
if (streamMediaType == AVMEDIA_TYPE_DATA) {
for (int i = 0; i < common->nDataSelectCount; i++) {
if (dataSelected(common->ppDataSelectList[i], &stream)) {
pDataSelect = common->ppDataSelectList[i];
}
}
if (pSubtitleSelect == nullptr) {
//一致するTrackIDがなければ、trackID = 0 (全指定)を探す
for (int i = 0; i < common->nDataSelectCount; i++) {
if (common->ppDataSelectList[i]->trackID == 0) {
pDataSelect = common->ppDataSelectList[i];
break;
}
}
}
}
if (pAudioSelect != nullptr || audioCopyAll || streamMediaType != AVMEDIA_TYPE_AUDIO) {
streamTrackUsed.push_back(stream.trackId);
if (pSubtitleSelect == nullptr && streamMediaType == AVMEDIA_TYPE_SUBTITLE) {
continue;
}
AVOutputStreamPrm prm;
prm.src = stream;
//pAudioSelect == nullptrは "copyAllStreams" か 字幕ストリーム によるもの
if (pAudioSelect != nullptr) {
prm.decodeCodecPrm = pAudioSelect->decCodecPrm;
prm.bitrate = pAudioSelect->encBitrate;
prm.samplingRate = pAudioSelect->encSamplingRate;
prm.encodeCodec = pAudioSelect->encCodec;
prm.encodeCodecPrm = pAudioSelect->encCodecPrm;
prm.encodeCodecProfile = pAudioSelect->encCodecProfile;
prm.filter = pAudioSelect->filter;
prm.bsf = pAudioSelect->bsf;
prm.disposition = pAudioSelect->disposition;
prm.metadata = pAudioSelect->metadata;
}
if (pSubtitleSelect != nullptr) {
prm.encodeCodec = pSubtitleSelect->encCodec;
prm.encodeCodecPrm = pSubtitleSelect->encCodecPrm;
prm.asdata = pSubtitleSelect->asdata;
prm.bsf = pSubtitleSelect->bsf;
prm.disposition = pSubtitleSelect->disposition;
prm.metadata = pSubtitleSelect->metadata;
}
if (pDataSelect != nullptr) {
prm.disposition = pDataSelect->disposition;
prm.metadata = pDataSelect->metadata;
}
log->write(RGY_LOG_DEBUG, _T("Output: Added %s track#%d (stream idx %d) for mux, bitrate %d, codec: %s %s %s, bsf: %s, disposition: %s, metadata %s\n"),
char_to_tstring(av_get_media_type_string(streamMediaType)).c_str(),
stream.trackId, stream.index, prm.bitrate, prm.encodeCodec.c_str(),
prm.encodeCodecProfile.c_str(),
prm.encodeCodecPrm.c_str(),
prm.bsf.length() > 0 ? prm.bsf.c_str() : _T("<none>"),
prm.disposition.length() > 0 ? prm.disposition.c_str() : _T("<copy>"),
prm.metadata.size() > 0 ? print_metadata(prm.metadata).c_str() : _T("<copy>"));
writerPrm.inputStreamList.push_back(std::move(prm));
}
}
vector<AVDemuxStream> otherSrcStreams;
for (const auto &reader : otherReaders) {
if (reader->GetAudioTrackCount() > 0 || reader->GetSubtitleTrackCount() > 0) {
auto pAVCodecAudioReader = std::dynamic_pointer_cast<RGYInputAvcodec>(reader);
if (pAVCodecAudioReader) {
vector_cat(otherSrcStreams, pAVCodecAudioReader->GetInputStreamInfo());
}
//もしavqsvリーダーでないなら、音声リーダーから情報を取得する必要がある
if (pAVCodecReader == nullptr) {
writerPrm.videoInputFirstKeyPts = pAVCodecAudioReader->GetVideoFirstKeyPts();
writerPrm.videoInputStream = pAVCodecAudioReader->GetInputVideoStream();
}
}
}
for (auto &stream : otherSrcStreams) {
const auto streamMediaType = trackMediaType(stream.trackId);
if (stream.sourceFileIndex < 0) {
log->write(RGY_LOG_ERROR, _T("Internal Error, Invalid file index %d set for %s-source.\n"),
stream.sourceFileIndex, char_to_tstring(av_get_media_type_string(streamMediaType)).c_str());
return RGY_ERR_UNKNOWN;
}
//audio-fileで別ファイルとして抽出するものは除く
if (streamMediaType == AVMEDIA_TYPE_AUDIO) {
bool usedInAudioFile = false;
const auto& audsrc = common->audioSource[stream.sourceFileIndex];
for (const auto& audsel : audsrc.select) {
if (audioSelected(&audsel.second, &stream)
&& audsel.second.extractFilename.length() > 0) {
usedInAudioFile = true;
}
}
if (usedInAudioFile) {
continue;
}
}
const AudioSelect *pAudioSelect = nullptr;
if (streamMediaType == AVMEDIA_TYPE_AUDIO) {
if (stream.sourceFileIndex >= (int)common->audioSource.size()) {
log->write(RGY_LOG_ERROR, _T("Internal Error, Invalid file index %d set for audio-source.\n"), stream.sourceFileIndex);
return RGY_ERR_UNKNOWN;
}
const auto& audsrc = common->audioSource[stream.sourceFileIndex];
for (const auto &audsel : audsrc.select) {
if (audioSelected(&audsel.second, &stream)) {
pAudioSelect = &audsel.second;
break;
}
}
if (pAudioSelect == nullptr) {
//一致するTrackIDがなければ、trackID = 0 (全指定)を探す
for (const auto& audsel : audsrc.select) {
if (audsel.first == 0) {
pAudioSelect = &audsel.second;
break;
}
}
}
}
const SubtitleSelect *pSubtitleSelect = nullptr;
if (streamMediaType == AVMEDIA_TYPE_SUBTITLE) {
if (stream.sourceFileIndex >= (int)common->subSource.size()) {
log->write(RGY_LOG_ERROR, _T("Internal Error, Invalid file index %d set for audio-source.\n"), stream.sourceFileIndex);
return RGY_ERR_UNKNOWN;
}
const auto& subsrc = common->subSource[stream.sourceFileIndex];
for (const auto &subsel : subsrc.select) {
if (subSelected(&subsel.second, &stream)) {
pSubtitleSelect = &subsel.second;
break;
}
}
if (pSubtitleSelect == nullptr) {
//一致するTrackIDがなければ、trackID = 0 (全指定)を探す
for (const auto &subsel : subsrc.select) {
if (subsel.first == 0) {
pSubtitleSelect = &subsel.second;
break; //2重ループをbreak
}
}
}
}
if (pAudioSelect != nullptr || audioCopyAll || streamMediaType != AVMEDIA_TYPE_AUDIO) {
streamTrackUsed.push_back(stream.trackId);
AVOutputStreamPrm prm;
prm.src = stream;
//pAudioSelect == nullptrは "copyAllStreams" か 字幕ストリーム によるもの
if (pAudioSelect != nullptr) {
prm.decodeCodecPrm = pAudioSelect->decCodecPrm;
prm.bitrate = pAudioSelect->encBitrate;
prm.samplingRate = pAudioSelect->encSamplingRate;
prm.encodeCodec = pAudioSelect->encCodec;
prm.encodeCodecPrm = pAudioSelect->encCodecPrm;
prm.encodeCodecProfile = pAudioSelect->encCodecProfile;
prm.filter = pAudioSelect->filter;
prm.bsf = pAudioSelect->bsf;
prm.disposition = pAudioSelect->disposition;
prm.metadata = pAudioSelect->metadata;
}
if (pSubtitleSelect != nullptr) {
prm.encodeCodec = pSubtitleSelect->encCodec;
prm.encodeCodecPrm = pSubtitleSelect->encCodecPrm;
prm.asdata = pSubtitleSelect->asdata;
prm.disposition = pSubtitleSelect->disposition;
prm.metadata = pSubtitleSelect->metadata;
}
log->write(RGY_LOG_DEBUG, _T("Output: Added %s track#%d (stream idx %d) for mux, bitrate %d, codec: %s %s %s, bsf: %s, disposition: %s, metadata: %s\n"),
char_to_tstring(av_get_media_type_string(streamMediaType)).c_str(),
stream.trackId, stream.index, prm.bitrate, prm.encodeCodec.c_str(),
prm.encodeCodecProfile.c_str(),
prm.encodeCodecPrm.c_str(),
prm.bsf.length() > 0 ? prm.bsf.c_str() : _T("<none>"),
prm.disposition.length() > 0 ? prm.disposition.c_str() : _T("<copy>"),
prm.metadata.size() > 0 ? print_metadata(prm.metadata).c_str() : _T("<copy>"));
writerPrm.inputStreamList.push_back(std::move(prm));
}
}
vector_cat(streamList, otherSrcStreams);
}
auto sts = pFileWriter->Init(common->outputFilename.c_str(), &outputVideoInfo, &writerPrm, log, pStatus);
if (sts != RGY_ERR_NONE) {
log->write(RGY_LOG_ERROR, pFileWriter->GetOutputMessage());
return sts;
} else if (common->AVMuxTarget & (RGY_MUX_AUDIO | RGY_MUX_SUBTITLE)) {
pFileWriterListAudio.push_back(pFileWriter);
}
stdoutUsed = pFileWriter->outputStdout();
log->write(RGY_LOG_DEBUG, _T("Output: Initialized avformat writer%s.\n"), (stdoutUsed) ? _T("using stdout") : _T(""));
} else if (common->AVMuxTarget & (RGY_MUX_AUDIO | RGY_MUX_SUBTITLE)) {
log->write(RGY_LOG_ERROR, _T("Audio mux cannot be used alone, should be use with video mux.\n"));
return RGY_ERR_UNKNOWN;
} else {
#endif //ENABLE_AVSW_READER
#if ENCODER_QSV
if (outputVideoInfo.codec == RGY_CODEC_UNKNOWN) {
pFileWriter = std::make_shared<RGYOutFrame>();
YUVWriterParam param;
param.bY4m = true;
auto sts = pFileWriter->Init(common->outputFilename.c_str(), &outputVideoInfo, ¶m, log, pStatus);
if (sts != RGY_ERR_NONE) {
log->write(RGY_LOG_ERROR, pFileWriter->GetOutputMessage());
return sts;
}
stdoutUsed = pFileWriter->outputStdout();
log->write(RGY_LOG_DEBUG, _T("Output: Initialized yuv frame writer%s.\n"), (stdoutUsed) ? _T("using stdout") : _T(""));
} else
#endif
{
pFileWriter = std::make_shared<RGYOutputRaw>();
RGYOutputRawPrm rawPrm;
rawPrm.bufSizeMB = ctrl->outputBufSizeMB;
rawPrm.benchmark = benchmark;
rawPrm.codecId = outputVideoInfo.codec;
rawPrm.hedrsei = hedrsei;
auto sts = pFileWriter->Init(common->outputFilename.c_str(), &outputVideoInfo, &rawPrm, log, pStatus);
if (sts != RGY_ERR_NONE) {
log->write(RGY_LOG_ERROR, pFileWriter->GetOutputMessage());
return sts;
}
stdoutUsed = pFileWriter->outputStdout();
log->write(RGY_LOG_DEBUG, _T("Output: Initialized bitstream writer%s.\n"), (stdoutUsed) ? _T("using stdout") : _T(""));
}
#if ENABLE_AVSW_READER
}
//音声の抽出
if (common->nAudioSelectCount + common->nSubtitleSelectCount - (audioCopyAll ? 1 : 0) > (int)streamTrackUsed.size()) {
log->write(RGY_LOG_DEBUG, _T("Output: Audio file output enabled.\n"));
auto pAVCodecReader = std::dynamic_pointer_cast<RGYInputAvcodec>(pFileReader);
if (pAVCodecReader == nullptr) {
log->write(RGY_LOG_ERROR, _T("Audio output is only supported with transcoding (avhw/avsw reader).\n"));
return RGY_ERR_INVALID_PARAM;
} else {
auto inutAudioInfoList = pAVCodecReader->GetInputStreamInfo();
for (auto& audioTrack : inutAudioInfoList) {
bool bTrackAlreadyUsed = false;
for (auto usedTrack : streamTrackUsed) {
if (usedTrack == audioTrack.trackId) {
bTrackAlreadyUsed = true;
log->write(RGY_LOG_DEBUG, _T("Audio track #%d is already set to be muxed, so cannot be extracted to file.\n"), trackID(audioTrack.trackId));
break;
}
}
if (bTrackAlreadyUsed) {
continue;
}
const AudioSelect *pAudioSelect = nullptr;
for (int i = 0; i < (int)common->nAudioSelectCount; i++) {
if (audioSelected(common->ppAudioSelectList[i], &audioTrack)
&& common->ppAudioSelectList[i]->extractFilename.length() > 0) {
pAudioSelect = common->ppAudioSelectList[i];
}
}
if (pAudioSelect == nullptr) {
log->write(RGY_LOG_ERROR, _T("Audio track #%d is not used anyware, this should not happen.\n"), trackID(audioTrack.trackId));
return RGY_ERR_UNKNOWN;
}
log->write(RGY_LOG_DEBUG, _T("Output: Output audio track #%d (stream index %d) to \"%s\", format: %s, codec %s, bitrate %d\n"),
trackID(audioTrack.trackId), audioTrack.index, pAudioSelect->extractFilename.c_str(), pAudioSelect->extractFormat.c_str(), pAudioSelect->encCodec.c_str(), pAudioSelect->encBitrate);
AVOutputStreamPrm prm;
prm.src = audioTrack;
//pAudioSelect == nullptrは "copyAll" によるもの
prm.bitrate = pAudioSelect->encBitrate;
prm.filter = pAudioSelect->filter;
prm.encodeCodec = pAudioSelect->encCodec;
prm.samplingRate = pAudioSelect->encSamplingRate;
AvcodecWriterPrm writerAudioPrm;
writerAudioPrm.threadOutput = ctrl->threadOutput;
writerAudioPrm.threadAudio = ctrl->threadAudio;
writerAudioPrm.bufSizeMB = ctrl->outputBufSizeMB;
writerAudioPrm.outputFormat = pAudioSelect->extractFormat;
writerAudioPrm.audioIgnoreDecodeError = common->audioIgnoreDecodeError;
writerAudioPrm.audioResampler = common->audioResampler;
writerAudioPrm.inputStreamList.push_back(prm);
writerAudioPrm.trimList = trimParam.list;
writerAudioPrm.videoInputFirstKeyPts = pAVCodecReader->GetVideoFirstKeyPts();
writerAudioPrm.videoInputStream = pAVCodecReader->GetInputVideoStream();
writerAudioPrm.bitstreamTimebase = av_make_q(outputTimebase);
shared_ptr<RGYOutput> pWriter = std::make_shared<RGYOutputAvcodec>();
auto sts = pWriter->Init(pAudioSelect->extractFilename.c_str(), nullptr, &writerAudioPrm, log, pStatus);
if (sts != RGY_ERR_NONE) {
log->write(RGY_LOG_ERROR, pWriter->GetOutputMessage());
return sts;
}
log->write(RGY_LOG_DEBUG, _T("Output: Intialized audio output for track #%d.\n"), trackID(audioTrack.trackId));
bool audioStdout = pWriter->outputStdout();
if (stdoutUsed && audioStdout) {
log->write(RGY_LOG_ERROR, _T("Multiple stream outputs are set to stdout, please remove conflict.\n"));
return RGY_ERR_UNKNOWN;
}
stdoutUsed |= audioStdout;
pFileWriterListAudio.push_back(std::move(pWriter));
}
}
}
#endif //ENABLE_AVSW_READER
return RGY_ERR_NONE;
}
| [
"rigaya34589@live.jp"
] | rigaya34589@live.jp |
4a05b54953d81b7724c876799bd665dba03fafcf | 3e1ac5a6f5473c93fb9d4174ced2e721a7c1ff4c | /build/iOS/Preview/include/Uno.Time.Text.IPatternPart-1.h | 42d841bdeea701ee03f133d5115807fdaad2782f | [] | no_license | dream-plus/DreamPlus_popup | 49d42d313e9cf1c9bd5ffa01a42d4b7c2cf0c929 | 76bb86b1f2e36a513effbc4bc055efae78331746 | refs/heads/master | 2020-04-28T20:47:24.361319 | 2019-05-13T12:04:14 | 2019-05-13T12:04:14 | 175,556,703 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,760 | h | // This file was generated based on /usr/local/share/uno/Packages/UnoCore/1.9.0/Source/Uno/Time/Text/PatternPart.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
namespace g{
namespace Uno{
namespace Time{
namespace Text{
// internal abstract interface IPatternPart<T> :3
// {
uInterfaceType* IPatternPart_typeof();
struct IPatternPart
{
void(*fp_Read)(uObject*, uString*, int32_t*, void*, int32_t*);
void(*fp_get_SkipNextPartsCountIfThisNotSpecified)(uObject*, int32_t*);
void(*fp_Write)(uObject*, void*, uString**);
template<class T>
static int32_t Read(const uInterface& __this, uString* line, int32_t position, T value) { int32_t __retval; return __this.VTable<IPatternPart>()->fp_Read(__this, line, &position, uConstrain(__this->__type->GetBase(IPatternPart_typeof())->T(0), value), &__retval), __retval; }
static void Read_ex(const uInterface& __this, uString* line, int32_t* position, void* value, int32_t* __retval) { __this.VTable<IPatternPart>()->fp_Read(__this, line, position, value, __retval); }
static int32_t SkipNextPartsCountIfThisNotSpecified(const uInterface& __this) { int32_t __retval; return __this.VTable<IPatternPart>()->fp_get_SkipNextPartsCountIfThisNotSpecified(__this, &__retval), __retval; }
template<class T>
static uString* Write(const uInterface& __this, T value) { uString* __retval; return __this.VTable<IPatternPart>()->fp_Write(__this, uConstrain(__this->__type->GetBase(IPatternPart_typeof())->T(0), value), &__retval), __retval; }
static void Write_ex(const uInterface& __this, void* value, uString** __retval) { __this.VTable<IPatternPart>()->fp_Write(__this, value, __retval); }
};
// }
}}}} // ::g::Uno::Time::Text
| [
"cowodbs156@gmail.com"
] | cowodbs156@gmail.com |
8a1cf1cec6c931f6fc7e0d870a97734afacb8a2a | e56b41bedb756ab168341ee858a2e7a46227ce4e | /test/impl/oclint/ViolationSetTest.cpp | d233952c861d6900132055afb4df1da64e288d81 | [
"BSD-3-Clause"
] | permissive | halfhiddencode/oclint-04 | a0f383f5e6f2f8c675c21d43bc8370da0111e7c9 | 86d8a8f0d308ff312f0f16c1020087949436b1f1 | refs/heads/master | 2021-05-27T17:11:47.350669 | 2012-12-14T03:56:58 | 2012-12-14T03:56:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,389 | cpp | #include "oclint/exception/GenericException.h"
#include "oclint/Violation.h"
#include "oclint/ViolationSetTest.h"
#include "oclint/rule/MockRule.h"
void ViolationSetTest::setUp() {
_violationSet = new ViolationSet();
}
void ViolationSetTest::tearDown() {
delete _violationSet;
}
void ViolationSetTest::testNoViolation() {
TS_ASSERT_EQUALS(_violationSet->numberOfViolations(), 0);
}
void ViolationSetTest::testAddViolation() {
Violation violation(clang_getNullCursor(), new MockRule());
_violationSet->addViolation(violation);
TS_ASSERT_EQUALS(_violationSet->numberOfViolations(), 1);
}
void ViolationSetTest::testGetViolations() {
Violation violation(clang_getNullCursor(), new MockRule(), "violation description");
_violationSet->addViolation(violation);
const vector<Violation> violations = _violationSet->getViolations();
TS_ASSERT(clang_equalCursors(violations.at(0).cursor, clang_getNullCursor()));
TS_ASSERT_EQUALS(violations.at(0).description, "violation description");
}
void ViolationSetTest::testAddViolationWithAttributes() {
_violationSet->addViolation(clang_getNullCursor(), new MockRule(), "violation description");
const vector<Violation> violations = _violationSet->getViolations();
TS_ASSERT(clang_equalCursors(violations.at(0).cursor, clang_getNullCursor()));
TS_ASSERT_EQUALS(violations.at(0).description, "violation description");
}
| [
"longyi@chaione.com"
] | longyi@chaione.com |
4f007429c53477dda172ce7e89e9dee474d3674d | 2aa8fb23126fd9323f1ffaff58869dc888b50673 | /Lab1/TDDD04__Lab1_source_code./IStringFormatterTest.cpp | a20af535572ad37ea91248760beeeaedf8b1b692 | [] | no_license | medhanie-weldemariam-git/Software_Testing_Lab_Assignments | 1712097437e4f809aaa9299f98da2930a49bd024 | 0a6ee2a7225f8cd16c32e857b3b8e336b51c98d3 | refs/heads/master | 2021-07-23T07:12:45.467666 | 2017-11-02T18:37:57 | 2017-11-02T18:37:57 | 109,304,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,325 | cpp | #include "stdafx.h"
#include "CppUnitTest.h"
#include "main.cpp"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace TDDD04_lab1Btests
{
TEST_CLASS(IStringFormatterTest)
{
testIStringFormatter *formatter;
public:
TEST_METHOD_INITIALIZE(setUp)
{
formatter = new testIStringFormatter();
}
TEST_METHOD_CLEANUP(tearDown)
{
delete formatter;
}
TEST_METHOD(leftString)
{
//test for leftString
std::string test = "even";
std::string s = formatter->leftString(test, 10, '+');
Assert::AreEqual(std::string("even++++++"), s, L"not working");
s = formatter->leftString(test, 1, '-');
Assert::AreEqual(std::string("e"), s, L"not working");
s = formatter->leftString(test, 4, '-');
Assert::AreEqual(std::string("even"), s, L"not working");
s = formatter->leftString(test, 5, '-');
Assert::AreEqual(std::string("even-"), s, L"not working");
s = formatter->leftString(test, 5, '-');
Assert::AreNotEqual(std::string("even"), s, L"not working");
}
TEST_METHOD(rightString)
{
//test for rightString
std::string test = "even";
std::string s = formatter->rightString(test, 10, '+');
Assert::AreEqual(std::string("++++++even"), s, L"not working");
s = formatter->rightString(test, 1, '-');
Assert::AreEqual(std::string("n"), s, L"not working");
s = formatter->rightString(test, 4, '-');
Assert::AreEqual(std::string("even"), s, L"not working");
s = formatter->rightString(test, 2, '-');
Assert::AreEqual(std::string("en"), s, L"not working");
s = formatter->rightString(test, 5, '-');
Assert::AreEqual(std::string("-even"), s, L"not working");
s = formatter->rightString(test, 5, '-');
Assert::AreNotEqual(std::string("even"), s, L"not working");
}
TEST_METHOD(centerStringEven)
{
//test for CenterString and even stringlength
std::string test = "even";
std::string s = formatter->centerString(test, 2, '+');
Assert::AreEqual(std::string("ve"), s, L"not working");
s = formatter->centerString(test, 4, '+');
Assert::AreEqual(std::string("even"), s, L"not working");
s = formatter->centerString(test, 6, '+');
Assert::AreEqual(std::string("+even+"), s, L"not working");
s = formatter->centerString(test, 1, '+');
Assert::AreEqual(std::string("e"), s, L"not working");
s = formatter->centerString(test, 3, '+');
Assert::AreEqual(std::string("ven"), s, L"not working");
s = formatter->centerString(std::string("evennn"), 3, '+');
Assert::AreEqual(std::string("enn"), s, L"not working");
s = formatter->centerString(test, 5, '+');
Assert::AreEqual(std::string("even+"), s, L"not working");
s = formatter->centerString(test, 7, '+');
Assert::AreEqual(std::string("+even++"), s, L"not working");
}
TEST_METHOD(centerStringOdd)
{
//test for CenterString and odd stringlength
std::string test = "oddly";
std::string s = formatter->centerString(test, 1, '+');
Assert::AreEqual(std::string("d"), s, L"not working");
s = formatter->centerString(test, 3, '+');
Assert::AreEqual(std::string("ddl"), s, L"not working");
s = formatter->centerString(test, 7, '+');
Assert::AreEqual(std::string("+oddly+"), s, L"not working");
s = formatter->centerString(std::string("odd"), 2, '+');
Assert::AreEqual(std::string("dd"), s, L"not working");
s = formatter->centerString(std::string("odd"), 3, '+');
Assert::AreEqual(std::string("odd"), s, L"not working");
s = formatter->centerString(test, 4, '+');
Assert::AreEqual(std::string("ddly"), s, L"not working");
s = formatter->centerString(test, 6, '+');
Assert::AreEqual(std::string("oddly+"), s, L"not working");
s = formatter->centerString(test, 8, '+');
Assert::AreEqual(std::string("+oddly++"), s, L"not working");
s = formatter->centerString(std::string("odd"), 4, '*');
Assert::AreEqual(std::string("odd*"), s, L"not working");
s = formatter->centerString(std::string("odd"), 5, '*');
Assert::AreEqual(std::string("*odd*"), s, L"not working");
s = formatter->centerString(std::string("odd"), 6, '*');
Assert::AreEqual(std::string("*odd**"), s, L"not working");
}
};
} | [
"medwe277@student.liu.se"
] | medwe277@student.liu.se |
c3d26d2640f4ea8ab717a36ae5bd93311b57d860 | c436fc304da315ed7cfa4129faaba14d165a246e | /foundation/src/mysql/MySQLDB.h | 3ea78542b621f117bc4fc566954b774c6a24a025 | [] | no_license | wjbwstone/wstone | dae656ffff30616d85293bcc356ab7ab7cebd5ba | 25da4de6900e6cc34a96a3882f1307b7a9bbf8b0 | refs/heads/main | 2023-02-17T16:44:50.679974 | 2021-01-20T05:53:24 | 2021-01-20T05:53:24 | 330,961,566 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | h | #ifndef _LIBMYSQL_DB_2020_01_15_11_14_41_H
#define _LIBMYSQL_DB_2020_01_15_11_14_41_H
#include <helper/Types.h>
#include <helper/Uncopyable.h>
#include <foundation/src/mysql/inner/mysql.h>
namespace ws {
namespace mysql {
class Table;
class DBManager;
class DB {
kDisableCopyAssign(DB);
public:
explicit DB(DBManager* manger);
~DB();
public:
DBManager* getManager() { return _manger; }
bool busy() const { return _busy; }
void setBusy(bool val) { _busy = val; }
void setTransaction(u32 tid) { _tid = tid; }
bool transactioning(u32 tid) const { return _tid == tid; }
bool beginTrans() { return exec("start transaction"); }
bool commitTrans() { return 0 == mysql_commit(_mysql); }
bool rollbackTrans() { return 0 == mysql_rollback(_mysql); }
public:
void disconnect();
bool connect(const i8* h, const i8* u, const i8* w, u16 p);
ustring escape(const ustring& in);
Table* query(const i8* sql, u32 = 0xffffffff, i64* totals = nullptr);
bool exec(const i8* sql, u32 = 0xffffffff, i64* affectedRow = nullptr);
private:
ustring err();
i64 fetchTotals();
Table* buildTable();
void buildTableRow(Table* table, MYSQL_RES* result, u32 size);
void buildTableHeader(Table* table, MYSQL_FIELD* fields, u32 size);
private:
u32 _tid;
bool _busy;
MYSQL* _mysql;
DBManager* _manger;
};
typedef std::shared_ptr<DB> DBPtr;
}
}
#endif //_LIBMYSQL_DB_2020_01_15_11_14_41_H | [
"junbo.wen@enmotech.com"
] | junbo.wen@enmotech.com |
db45737339e84a3faf39ef7645e74e69e4f88da7 | d64658a6b8391e3faf5abbe029031222efa247b2 | /STL implementation/reg.cpp | 06e89e771b959efb2f8bba2dd29e8fd3dd2ec3f1 | [] | no_license | qyqx233/RegexImpl | 6617427c310d85c13f6b34846915d8b7e7f2cb00 | 5f69dc736fe5d267510dce46f4f9ec1b48348720 | refs/heads/master | 2022-02-20T02:15:27.896134 | 2012-12-28T15:28:15 | 2012-12-28T15:28:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,995 | cpp | #include <iostream>
#include <cstring>
#include <stack>
#include "state.h"
#include "ptrlist.h"
#include "frag.h"
#include "list.h"
using namespace std;
#ifndef REG_CPP_
#define REG_CPP_
State matchstate = { Match };
int nstate;
/*
* Convert infix regexp re to postfix notation.
* Insert . as explicit concatenation operator.
* Cheesy parser, return static buffer.
*/
string re2post(char *re)
{
int nalt, natom;
string buf = "";
struct {
int nalt;
int natom;
} paren[100], *p;
p = paren;
nalt = 0;
natom = 0;
for(; *re; re++)
{
switch(*re)
{
case '(':
if(natom > 1){
--natom;
buf += '.';
}
if(p >= paren+100)
return NULL;
p->nalt = nalt;
p->natom = natom;
p++;
nalt = 0;
natom = 0;
break;
case '|':
if(natom == 0)
return NULL;
while(--natom > 0)
buf += '.';
nalt++;
break;
case ')':
if(p == paren)
return NULL;
if(natom == 0)
return NULL;
while(--natom > 0)
buf += '.';
for(; nalt > 0; nalt--)
buf += '|';
--p;
nalt = p->nalt;
natom = p->natom;
natom++;
break;
case '*':
case '+':
case '?':
if(natom == 0)
return NULL;
buf += (*re);
break;
default:
if(natom > 1){
--natom;
buf += '.';
}
buf += (*re);
natom++;
break;
}
}
if(p != paren)
return NULL;
while(--natom > 0)
buf += '.';
for(; nalt > 0; nalt--)
buf += '|';
return buf;
}
State* post2nfa(string postfix)
{
stack<Frag> nfaStack;
Frag e1, e2, e;
State *s;
if(postfix == "")
return NULL;
for(int i; i < postfix.length(); i++)
{
char c = postfix[i];
switch(c)
{
default:
s = state(c, NULL, NULL);
nstate++;
nfaStack.push(frag(s, list1(&s->out)));
break;
case '.': // catenate
e2 = nfaStack.top();
nfaStack.pop();
e1 = nfaStack.top();
nfaStack.pop();
patch(e1.out, e2.start);
nfaStack.push(frag(e1.start, e2.out));
break;
case '|': // alternate
e2 = nfaStack.top();
nfaStack.pop();
e1 = nfaStack.top();
nfaStack.pop();
s = state(Split, e1.start, e2.start);
nstate++;
nfaStack.push(frag(s, append(e1.out, e2.out)));
break;
case '?': // zero or one
e = nfaStack.top();
nfaStack.pop();
s = state(Split, e.start, NULL);
nstate++;
nfaStack.push(frag(s, append(e.out, list1(&s->out1))));
break;
case '*': // zero or more
e = nfaStack.top();
nfaStack.pop();
s = state(Split, e.start, NULL);
nstate++;
patch(e.out, s);
nfaStack.push(frag(s, list1(&s->out1)));
break;
case '+': // one or more
e = nfaStack.top();
nfaStack.pop();
s = state(Split, e.start, NULL);
nstate++;
patch(e.out, s);
nfaStack.push(frag(e.start, list1(&s->out1)));
break;
}
}
e = nfaStack.top();
nfaStack.pop();
patch(e.out, &matchstate);
return e.start;
}
/* Check whether state list contains a match. */
int ismatch(List *l)
{
int i;
for(i=0; i<l->n; i++)
if(l->s[i] == &matchstate)
return 1;
return 0;
}
/* Run NFA to determine whether it matches s. */
int match(State *start, char *s)
{
int i, c;
List *clist, *nlist, *t;
clist = startlist(start, &l1);
nlist = &l2;
for(; *s; s++){
c = *s & 0xFF;
step(clist, c, nlist);
t = clist; clist = nlist; nlist = t; /* swap clist, nlist */
}
return ismatch(clist);
}
int main(int argc, char **argv)
{
string post;
State *start;
if(argc < 3)
{
cout << "usage: nfa regexp string...\n" << "\n";
return 1;
}
post = re2post(argv[1]);
cout << post << "\n";
if(post == "")
{
cout << "bad regexp: " << argv[1] << "\n";
return 1;
}
start = post2nfa(post);
if(start == NULL)
{
cout << "error in post2nfa: " << post << "\n";
return 1;
}
l1.s = new State*[nstate];
l2.s = new State*[nstate];
for(int i=2; i<argc; i++)
{
if(match(start, argv[i]))
{
cout << "Matches: " << argv[i] << "\n";
}
}
return 0;
}
#endif /* REG_CPP_ */ | [
"spiridon.g.alex@gmail.com"
] | spiridon.g.alex@gmail.com |
1ef9df71a3ee79ecf034825393021ef90cb2584c | 368f2a9226859033d64ade215e542e59eaeddc62 | /xface/stringbuilder.cpp | ea602f797b637984804f814c8bf5f64067041ef9 | [] | no_license | Pavelius/xface | a4c7e6994c72af65defa11bc4ca87480886d302f | a155909e3d9691d4029f19191009dd4c026c2dd8 | refs/heads/master | 2022-11-18T02:23:18.462447 | 2022-10-25T05:21:53 | 2022-10-25T05:21:53 | 145,845,610 | 2 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 10,476 | cpp | #include "crt.h"
#include "stringbuilder.h"
static const char spaces[] = " \n\t\r.,!?;:";
static const char* psnum16(const char* p, int& value) {
int result = 0;
const int radix = 16;
while(*p) {
char a = *p;
if(a >= '0' && a <= '9') {
result = result * radix;
result += a - '0';
} else if(a >= 'a' && a <= 'f') {
result = result * radix;
result += a - 'a' + 10;
} else if(a >= 'A' && a <= 'F') {
result = result * radix;
result += a - 'A' + 10;
} else
break;
p++;
}
value = result;
return p;
}
static const char* psnum10(const char* p, int& value) {
int result = 0;
const int radix = 10;
while(*p) {
char a = *p;
if(a >= '0' && a <= '9') {
result = result * radix;
result += a - '0';
} else
break;
p++;
}
value = result;
return p;
}
// Parse string to number
const char* stringbuilder::read(const char* p, int& value) {
value = 0;
if(!p)
return 0;
bool sign = false;
// Установка знака
if(*p == '-') {
sign = true;
p++;
}
// Перегрузка числовой системы
if(p[0] == '0' && p[1] == 'x') {
p += 2;
p = psnum16(p, value);
} else
p = psnum10(p, value);
if(sign)
value = -value;
return p;
}
static const char* word_end(const char* ps) {
while(*ps) {
for(auto e : spaces) {
if(*ps == e)
return ps;
}
ps++;
};
return ps;
}
static const char* skip_space(const char* ps) {
while(*ps) {
for(auto e : spaces) {
if(*ps != e)
return ps;
}
ps++;
};
return ps;
}
static inline bool is_space(char sym) {
for(auto e : spaces) {
if(sym == e)
return true;
}
return false;
}
const char* skipcr(const char* p) {
if(*p == '\n') {
p++;
if(*p == '\r')
p++;
} else if(*p == '\r') {
p++;
if(*p == '\n')
p++;
}
return p;
}
// Parse string to string (from c/json format)
const char* psstr(const char* p, char* r, char end_symbol) {
r[0] = 0;
if(!p)
return 0;
while(*p) {
if(*p == end_symbol) {
*r++ = 0;
return p + 1;
} else if(*p != '\\') {
*r++ = *p++;
continue;
}
p++;
int value;
switch(*p) {
case 'n':
*r++ = '\n';
p++;
break;
case 'r':
*r++ = '\r';
p++;
break;
case 't':
*r++ = '\t';
p++;
break;
case 'b':
*r++ = '\b';
p++;
break;
case 'f':
*r++ = '\f';
p++;
break;
case 'v':
*r++ = '\v';
p++;
break;
// Число в кодировке UNICODE
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
p = psnum10(p, value);
r = szput(r, value);
break;
// Число в кодировке UNICODE (16-ричная система)
case 'x': case 'u':
p = psnum16(p + 1, value);
r = szput(r, value);
break;
case '\n': case '\r':
// Перевод строки в конце
while(*p == '\n' || *p == '\r')
p = skipcr(p);
break;
default:
// Любой символ, который будет экранирован ( \', \", \\)
*r++ = *p++;
break;
}
}
return p;
}
bool szstart(const char* text, const char* name) {
while(*name) {
if(*name++ != *text++)
return false;
}
return true;
}
bool szmatch(const char* text, const char* name) {
while(*name) {
if(*name++ != *text++)
return false;
}
if(ischa(*text))
return false;
return true;
}
static bool szpmatch(const char* text, const char* s, const char* s2) {
while(true) {
const char* d = text;
while(s < s2) {
if(*d == 0)
return false;
unsigned char c = *s;
if(c == '?') {
s++;
d++;
} else if(c == '*') {
s++;
if(s == s2)
return true;
while(*d) {
if(*d == *s)
break;
d++;
}
} else {
if(*d++ != *s++)
return false;
}
}
return true;
}
}
bool szpmatch(const char* text, const char* pattern) {
const char* p = pattern;
while(true) {
const char* p2 = zchr(p, ',');
if(!p2)
p2 = zend(p);
if(szpmatch(text, p, p2))
return true;
if(*p2 == 0)
return false;
p = skipsp(p2 + 1);
}
}
struct stringbuilder::grammar {
const char* name;
const char* change;
unsigned name_size;
unsigned change_size;
constexpr grammar() : name(0), change(0), name_size(0), change_size(0) {}
constexpr grammar(const char* name, const char* change) :
name(name), change(change), name_size(zlen(name)), change_size(zlen(change)) {
}
operator bool() const { return name != 0; }
};
unsigned char stringbuilder::upper(unsigned char u) {
if(u >= 0x61 && u <= 0x7A)
return u - 0x61 + 0x41;
else if(u >= 0xE0)
return u - 0xE0 + 0xC0;
return u;
}
unsigned char stringbuilder::lower(unsigned char u) {
if(u >= 0x41 && u <= 0x5A)
return u - 0x41 + 0x61;
else if(u >= 0xC0 && u <= 0xDF)
return u - 0xC0 + 0xE0;
return u;
}
void stringbuilder::lower() {
for(auto p = pb; *p; p++)
*p = lower(*p);
}
void stringbuilder::upper() {
for(auto p = pb; *p; p++)
*p = upper(*p);
}
void stringbuilder::addidentifier(const char* identifier) {
addv("[-", 0);
addv(identifier, 0);
addv("]", 0);
}
const char* stringbuilder::read(const char* p, char* ps, const char* pe) {
if(*p == '(') {
p++;
while(*p && *p != ')') {
if(ps < pe)
*ps++ = *p;
}
if(*p == ')')
p++;
} else {
while(*p && (ischa(*p) || isnum(*p) || *p == '_')) {
if(ps < pe)
*ps++ = *p++;
else
break;
}
}
*ps = 0;
return p;
}
const char* stringbuilder::readvariable(const char* p) {
char temp[260];
p = read(p, temp, temp + sizeof(temp) - 1);
addidentifier(temp);
return p;
}
void stringbuilder::adduint(unsigned value, int precision, const int radix) {
char temp[32]; int i = 0;
if(!value)
temp[i++] = 0;
else {
while(value) {
temp[i++] = (value % radix);
value /= radix;
}
}
while(precision-- > i)
add("0");
while(i) {
auto v = temp[--i];
if(p < pe) {
if(v < 10)
*p++ = '0' + v;
else
*p++ = 'A' + (v - 10);
}
}
p[0] = 0;
}
void stringbuilder::addint(int value, int precision, const int radix) {
if(value < 0) {
add("-");
value = -value;
}
adduint(value, precision, radix);
}
const char* stringbuilder::readformat(const char* src, const char* vl) {
if(*src == '%') {
src++;
if(p < pe)
*p++ = '%';
*p = 0;
return src;
}
*p = 0;
char prefix = 0;
if(*src == '+' || *src == '-')
prefix = *src++;
if(*src >= '0' && *src <= '9') {
int pn = 0, pnp = 0;
if(isnum(*src))
src = psnum10(src, pn);
if(src[0] == '.' && isnum(src[1]))
src = psnum10(src + 1, pnp);
if(*src == 'i') {
src++;
auto value = ((int*)vl)[pn - 1];
if(prefix == '+' && value >= 0) {
if(p < pe)
*p++ = '+';
}
addint(value, pnp, 10);
} else if(*src == 'h') {
src++;
adduint((unsigned)(((int*)vl)[pn - 1]), pnp, 16);
} else {
if(((char**)vl)[pn - 1]) {
auto p0 = p;
auto p1 = ((char**)vl)[pn - 1];
while(*p1 && p < pe)
*p++ = *p1++;
if(p < pe)
*p = 0;
switch(prefix) {
case '-': *p0 = lower(*p0); break;
case '+': *p0 = upper(*p0); break;
default: break;
}
}
}
} else {
auto p0 = p;
src = readvariable(src);
switch(prefix) {
case '-': *p0 = lower(*p0); break;
case '+': *p0 = upper(*p0); break;
default: break;
}
}
return src;
}
void stringbuilder::addv(const char* src, const char* vl) {
if(!p)
return;
p[0] = 0;
if(!src)
return;
while(true) {
switch(*src) {
case 0: *p = 0; return;
case '%': src = readformat(src + 1, vl); break;
default:
if(p < pe)
*p++ = *src;
src++;
break;
}
}
}
void stringbuilder::addsep(char separator) {
if(p <= pb || p >= pe)
return;
if(p[-1] == separator)
return;
switch(separator) {
case ' ':
if(p[-1] == '\n' || p[-1] == '\t')
return;
break;
case '.':
if(p[-1] == '?' || p[-1] == '!' || p[-1] == ':')
return;
break;
}
*p++ = separator;
}
void stringbuilder::addx(char separator, const char* format, const char* format_param) {
if(!format || format[0] == 0)
return;
addsep(separator);
addv(format, format_param);
}
void stringbuilder::addx(const char* separator, const char* format, const char* format_param) {
if(!format || format[0] == 0)
return;
if(p != pb)
add(separator);
addv(format, format_param);
}
void stringbuilder::addicon(const char* id, int value) {
if(value < 0)
adds(":%1:[-%2i]", id, -value);
else
adds(":%1:%2i", id, value);
}
void stringbuilder::change(char s1, char s2) {
for(auto p = pb; p < pe; p++) {
if(*p == 0)
break;
if(*p == s1)
*p++ = s2;
}
}
void stringbuilder::change(const char* s1, const char* s2) {
if(!s1 || s1[0] == 0)
return;
auto n1 = zlen(s1);
auto n2 = zlen(s2);
for(auto p = pb; p < pe; p++) {
if(*p == 0)
break;
if(*p == s1[0]) {
auto n = this->pe - p;
if(n1 > n)
return;
if(memcmp(p, s1, n1) != 0)
continue;
auto c = n2;
if(c > (pe - this->p - 1))
c = pe - this->p - 1;
if(c > n1)
memmove(p + c, p + n1, pe - p - c);
memcpy(p, s2, n2);
p += n2 - 1;
}
}
}
void stringbuilder::add(const char* s, const grammar* source, const char* def) {
auto ps = skip_space(s);
while(*ps) {
auto pw = word_end(ps);
unsigned s1 = pw - ps;
auto found = false;
for(auto pg = source; *pg; pg++) {
auto s2 = pg->name_size;
if(pg->name_size > s1)
continue;
if(memcmp(pw - s2, pg->name, s2) == 0) {
auto s3 = pg->change_size;
memcpy(p, ps, s1 - s2);
memcpy(p + (s1 - s2), pg->change, s3);
p += (s1 - s2 + s3);
if(pw[0] == 0)
def = 0;
found = true;
break;
}
}
if(!found) {
memcpy(p, ps, pw - ps);
p += pw - ps;
}
ps = pw;
while(*ps) {
if(is_space(*ps))
*p++ = *ps++;
break;
}
}
p[0] = 0;
if(def)
add(def);
}
void stringbuilder::addof(const char* s) {
static grammar map[] = {{"ый", "ого"},
{"ий", "ого"},
{"ое", "ого"},
{"ая", "ой"},
{"би", "би"},
{"ты", "т"},
{"сы", "сов"},
{"ны", "н"},
{"а", "ы"},
{"ь", "и"},
{"о", "а"},
{"я", "и"},
{}};
add(s, map, "а");
}
void stringbuilder::addby(const char* s) {
static grammar map[] = {{"ая", "ой"},
{"ый", "ым"}, {"ое", "ым"}, {"ой", "ым"},
{"би", "би"},
{"ий", "им"},
{"ец", "цем"},
{"ки", "ками"},
{"й", "ем"}, {"ь", "ем"}, {"е", "ем"},
{"а", "ой"},
{"ч", "чем"},
{}};
add(s, map, "ом");
}
void stringbuilder::addto(const char* s) {
static grammar map[] = {{"а", "е"},
{"о", "у"},
{"ы", "ам"},
{}
};
add(s, map, "у");
} | [
"p000000000001@gmail.com"
] | p000000000001@gmail.com |
452f75d7222e7f73f9821773911a46b95419ff17 | 2f3bdbb4ec4e382a320a460aab6275bb61b3b31b | /Source/Ursine3D/include/Core/Audio/WWiseUtils/AkMultipleFileLocation.hpp | 6dd53df7ebbb73d8744d5e656ffe8a3b899b7d44 | [] | no_license | jjzhang166/Ursine3D | b23e88e87f6513d41968638c17412d2aab59484e | c5a806a7623bcd3c7a16dcd6b40033c2f912aad6 | refs/heads/master | 2023-03-22T18:25:51.138505 | 2018-05-17T01:21:47 | 2018-05-17T01:21:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,778 | hpp | //////////////////////////////////////////////////////////////////////
//
// AkFileLocationBase.cpp
//
// Basic file location resolving: Uses simple path concatenation logic.
// Exposes basic path functions for convenience.
// For more details on resolving file location, refer to section "File Location" inside
// "Going Further > Overriding Managers > Streaming / Stream Manager > Low-Level I/O"
// of the SDK documentation.
//
// Copyright (c) 2006 Audiokinetic Inc. / All Rights Reserved
//
//////////////////////////////////////////////////////////////////////
#include <AK/SoundEngine/Common/AkStreamMgrModule.h>
#ifdef AK_WIN
#include <AK/Plugin/AkMP3SourceFactory.h> // For MP3 Codec ID.
#endif
#include <AK/Tools/Common/AkPlatformFuncs.h>
#ifdef AK_SUPPORT_WCHAR
#include <wchar.h>
#endif //AK_SUPPORT_WCHAR
#include <stdio.h>
#include <AK/Tools/Common/AkAssert.h>
#include <AK/Tools/Common/AkObject.h>
#include "AkFileHelpers.h"
#define MAX_NUMBER_STRING_SIZE (10) // 4G
#define ID_TO_STRING_FORMAT_BANK AKTEXT("%u.bnk")
#define ID_TO_STRING_FORMAT_WEM AKTEXT("%u.wem")
#define MAX_EXTENSION_SIZE (4) // .xxx
#define MAX_FILETITLE_SIZE (MAX_NUMBER_STRING_SIZE+MAX_EXTENSION_SIZE+1) // null-terminated
template<class OPEN_POLICY>
CAkMultipleFileLocation<OPEN_POLICY>::CAkMultipleFileLocation()
{
}
template<class OPEN_POLICY>
void CAkMultipleFileLocation<OPEN_POLICY>::Term()
{
if (!m_Locations.IsEmpty())
{
FilePath *p = (*m_Locations.Begin());
while (p)
{
FilePath *next = p->pNextLightItem;
AkDelete(AK::StreamMgr::GetPoolID(), p);
p = next;
}
}
m_Locations.Term();
}
template<class OPEN_POLICY>
AKRESULT CAkMultipleFileLocation<OPEN_POLICY>::Open(
const AkOSChar* in_pszFileName, // File name.
AkOpenMode in_eOpenMode, // Open mode.
AkFileSystemFlags * in_pFlags, // Special flags. Can pass NULL.
bool in_bOverlapped, // Overlapped IO open
AkFileDesc & out_fileDesc // Returned file descriptor.
)
{
for(typename AkListBareLight<FilePath>::Iterator it = m_Locations.Begin(); it != m_Locations.End();++it)
{
// Get the full file path, using path concatenation logic.
AkOSChar szFullFilePath[AK_MAX_PATH];
if ( GetFullFilePath( in_pszFileName, in_pFlags, in_eOpenMode, szFullFilePath, (*it) ) == AK_Success )
{
AKRESULT res = OPEN_POLICY::Open(szFullFilePath, in_eOpenMode, in_bOverlapped, out_fileDesc);
if (res == AK_Success)
{
//These must be set by the OpenPolicy
AKASSERT(out_fileDesc.hFile != NULL );
AKASSERT(out_fileDesc.iFileSize != 0 && (in_eOpenMode == AK_OpenModeRead || in_eOpenMode == AK_OpenModeReadWrite) || !(in_eOpenMode == AK_OpenModeRead || in_eOpenMode == AK_OpenModeReadWrite));
return AK_Success;
}
}
}
return AK_Fail;
}
template<class OPEN_POLICY>
AKRESULT CAkMultipleFileLocation<OPEN_POLICY>::Open(
AkFileID in_fileID, // File ID.
AkOpenMode in_eOpenMode, // Open mode.
AkFileSystemFlags * in_pFlags, // Special flags. Can pass NULL.
bool in_bOverlapped, // Overlapped IO open
AkFileDesc & out_fileDesc // Returned file descriptor.
)
{
if ( !in_pFlags ||
!(in_pFlags->uCompanyID == AKCOMPANYID_AUDIOKINETIC || in_pFlags->uCompanyID == AKCOMPANYID_AUDIOKINETIC_EXTERNAL))
{
AKASSERT( !"Unhandled file type" );
return AK_Fail;
}
AkOSChar pszTitle[MAX_FILETITLE_SIZE+1];
if ( in_pFlags->uCodecID == AKCODECID_BANK )
AK_OSPRINTF( pszTitle, MAX_FILETITLE_SIZE, ID_TO_STRING_FORMAT_BANK, (unsigned int)in_fileID );
else
AK_OSPRINTF( pszTitle, MAX_FILETITLE_SIZE, ID_TO_STRING_FORMAT_WEM, (unsigned int)in_fileID );
return Open(pszTitle, in_eOpenMode, in_pFlags, in_bOverlapped, out_fileDesc);
}
// String overload.
// Returns AK_Success if input flags are supported and the resulting path is not too long.
// Returns AK_Fail otherwise.
template<class OPEN_POLICY>
AKRESULT CAkMultipleFileLocation<OPEN_POLICY>::GetFullFilePath(
const AkOSChar* in_pszFileName, // File name.
AkFileSystemFlags * in_pFlags, // Special flags. Can be NULL.
AkOpenMode in_eOpenMode, // File open mode (read, write, ...).
AkOSChar* out_pszFullFilePath, // Full file path.
FilePath* in_pBasePath // Base path to use, might be null
)
{
if ( !in_pszFileName )
{
AKASSERT( !"Invalid file name" );
return AK_InvalidParameter;
}
// Prepend string path (basic file system logic).
// Compute file name with file system paths.
size_t uiPathSize = AKPLATFORM::OsStrLen( in_pszFileName );
if ( uiPathSize >= AK_MAX_PATH )
{
AKASSERT( !"Input string too large" );
return AK_InvalidParameter;
}
if (in_pBasePath == NULL)
in_pBasePath = (*m_Locations.Begin());
AKPLATFORM::SafeStrCpy( out_pszFullFilePath, in_pBasePath->szPath, AK_MAX_PATH );
if ( in_pFlags && in_eOpenMode == AK_OpenModeRead )
{
// Add language directory name if needed.
if ( in_pFlags->bIsLanguageSpecific )
{
size_t uLanguageStrLen = AKPLATFORM::OsStrLen( AK::StreamMgr::GetCurrentLanguage() );
if ( uLanguageStrLen > 0 )
{
uiPathSize += ( uLanguageStrLen + 1 );
if ( uiPathSize >= AK_MAX_PATH )
{
AKASSERT( !"Path is too large" );
return AK_Fail;
}
AKPLATFORM::SafeStrCat( out_pszFullFilePath, AK::StreamMgr::GetCurrentLanguage(), AK_MAX_PATH );
AKPLATFORM::SafeStrCat( out_pszFullFilePath, AK_PATH_SEPARATOR, AK_MAX_PATH );
}
}
}
// Append file title.
uiPathSize += AKPLATFORM::OsStrLen( out_pszFullFilePath );
if ( uiPathSize >= AK_MAX_PATH )
{
AKASSERT( !"File name string too large" );
return AK_Fail;
}
AKPLATFORM::SafeStrCat( out_pszFullFilePath, in_pszFileName, AK_MAX_PATH );
return AK_Success;
}
template<class OPEN_POLICY>
AKRESULT CAkMultipleFileLocation<OPEN_POLICY>::AddBasePath(const AkOSChar* in_pszBasePath)
{
AkUInt32 len = (AkUInt32)AKPLATFORM::OsStrLen( in_pszBasePath ) + 1;
if ( len + AKPLATFORM::OsStrLen( AK::StreamMgr::GetCurrentLanguage() ) >= AK_MAX_PATH )
return AK_InvalidParameter;
FilePath * pPath = (FilePath*)AkAlloc(AK::StreamMgr::GetPoolID(), sizeof(FilePath) + sizeof(AkOSChar)*(len - 1));
if (pPath == NULL)
return AK_InsufficientMemory;
// Copy the base path EVEN if the directory does not exist.
AKPLATFORM::SafeStrCpy( pPath->szPath, in_pszBasePath, len );
pPath->pNextLightItem = NULL;
m_Locations.AddFirst(pPath);
AKRESULT eDirectoryResult = CAkFileHelpers::CheckDirectoryExists( in_pszBasePath );
if( eDirectoryResult == AK_Fail ) // AK_NotImplemented could be returned and should be ignored.
{
return AK_PathNotFound;
}
return AK_Success;
}
| [
"j.orion@digipen.edu"
] | j.orion@digipen.edu |
44b34a05e2ffdc5d3e08ac9022178b7f48c28e6f | 90af79681ba010c6a2a0f4da3f04c175c5805180 | /C++_Basic/005继承重载等/数据抽象.cpp | 7f6f29d80c35b2d19ecdaa057998fc9fd893d9d7 | [] | no_license | minxin126/C_Basic | a184c2e6902397dfff99e1406b912caa3a894a20 | 2225a66bd3826c81658a86f3cbee4bb70a3014c6 | refs/heads/master | 2021-07-14T20:23:14.691028 | 2020-06-26T14:10:13 | 2020-06-26T14:10:13 | 177,624,168 | 1 | 2 | null | 2019-03-29T16:49:51 | 2019-03-25T16:28:49 | C++ | GB18030 | C++ | false | false | 422 | cpp | #include <iostream>
using namespace std;
class Adder {
public:
// 构造函数
Adder(int i = 0)
{
total = i;
}
// 对外的接口
void addNum(int number)
{
total += number;
}
// 对外的接口
int getTotal()
{
return total;
};
private:
// 对外隐藏的数据
int total;
};
int main()
{
Adder a;
a.addNum(10);
a.addNum(20);
a.addNum(30);
cout << "Total " << a.getTotal() << endl;
return 0;
} | [
"359676107@qq.com"
] | 359676107@qq.com |
06e18d983e28dba0d738ec9e9ea8e27a658a1caa | 20bf501a502a1fc20a7e94f36acd42e1db382efc | /include/CarPlanner/MochaException.h | 05226e5619dcf4cd4633b1fe91ad6ceaf8294d5d | [
"Apache-2.0"
] | permissive | arpg/CarPlanner | cfc293b397e57ed062e670a101008686ef0f5a3d | 9ac17abfd94224fff4a527c1f1ef341ed2de5a3a | refs/heads/master | 2022-07-25T04:53:32.863558 | 2022-06-22T20:27:15 | 2022-06-22T20:27:15 | 31,984,011 | 7 | 4 | null | 2019-05-13T22:20:06 | 2015-03-10T21:57:00 | C++ | UTF-8 | C++ | false | false | 417 | h | /*
* MochaException.h
*
* Created on: Feb 6, 2012
* Author: nima
*/
#ifndef MOCHAEXCEPTION_H_
#define MOCHAEXCEPTION_H_
#include <iostream>
#include <exception>
using namespace std;
class MochaException : public exception
{
private:
const char *m_pWhat;
public:
MochaException(const char *what);
virtual ~MochaException() throw() ;
virtual const char* what();
};
#endif /* MOCHAEXCEPTION_H_ */
| [
"crheckman@gmail.com"
] | crheckman@gmail.com |
64dff092896a94fce288b956001f370758c7c929 | bc2eddcb43b2e995e838a839b13ece64686dd8fc | /Tile.h | 7fc3f6ce27f189406bfeba4938d8c4d8e609eb04 | [] | no_license | CyrilYao/APT-Assignment2 | f36259426c626972519c7c693a643f1548e906f9 | 5152b806f88e771912a0b37916cfa86f36ea96aa | refs/heads/master | 2020-05-17T22:02:39.208558 | 2019-05-12T12:52:10 | 2019-05-12T12:52:10 | 183,989,103 | 2 | 0 | null | 2019-05-12T12:56:02 | 2019-04-29T02:52:06 | C++ | UTF-8 | C++ | false | false | 222 | h |
#ifndef ASSIGN2_TILE_H
#define ASSIGN2_TILE_H
// Define a Colour type
typedef char Colour;
// Define a Shape type
typedef int Shape;
class Tile {
public:
Colour colour;
Shape shape;
};
#endif // ASSIGN2_TILE_H
| [
"Jacklee5230@hotmail.com"
] | Jacklee5230@hotmail.com |
1dd164cdf6d8a9235f63fd255958dc0135cc6a18 | 4aeb3d977ffbabae516da01d55974c3ebdb07cea | /BulletBash/enemy.h | 6e3031a597c92a845ce9273942687a3c6d3e8439 | [] | no_license | Samhenry97/BulletBash | ed57ff1efca899f5e884c8a46c286443cb40ef9d | 690ed2c10d1ee5192a1480901e8b99ccc9da5335 | refs/heads/master | 2021-06-16T08:11:53.848758 | 2021-03-10T21:31:31 | 2021-03-10T21:31:31 | 161,505,884 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,596 | h | #pragma once
#include "gameobject.h"
#include "gun.h"
class Enemy : public GameObject {
protected:
float speed, baseSpeed;
int health, maxHealth, hitDamage;
float damageClock, damageTime;
float knockAngle, knockSpeed;
float spawnClock, spawnTime;
float pathClock, pathTime;
std::vector<vec2i> path;
sf::RectangleShape gui;
Gun *gun;
public:
bool damaging, spawning, knocking, smart;
Enemy(vec2 pos);
virtual ~Enemy();
virtual void update();
virtual void render();
virtual void renderMinimap();
virtual void damage(int amt);
void pathfind();
bool dead();
};
class EBasic : public Enemy {
public:
EBasic(vec2 pos);
};
class EAlien : public Enemy {
public:
EAlien(vec2 pos);
};
class ESlime : public Enemy {
private:
int level;
public:
ESlime(vec2 pos);
ESlime(vec2 pos, int level);
~ESlime();
};
class EShell : public Enemy {
public:
EShell(vec2 pos);
};
class EChomp : public Enemy {
public:
EChomp(vec2 pos);
};
class Boss : public Enemy {
public:
Boss(vec2 pos);
void renderStatic();
};
class EEyeBoss : public Boss {
private:
float expClock, expTime, expAngle;
int expCount, expTotal;
bool exping;
public:
EEyeBoss(vec2 pos);
void update();
};
class ERamBoss : public Boss {
private:
float chargeAngle, chargeDist, chargeMax, chargeSpeed;
float restClock, restTime;
bool charging = false;
public:
ERamBoss(vec2 pos);
void update();
void damage(int amt);
};
template<typename T> Enemy* CREATE_ENEMY(vec2 pos) { return new T(pos); }
extern std::vector<Enemy*(*)(vec2 pos)> NORMAL_ENEMIES;
extern std::vector<Enemy*(*)(vec2 pos)> BOSS_ENEMIES; | [
"shenr124@students.bju.edu"
] | shenr124@students.bju.edu |
c439d8e421f6a9838afd90e744884bc14d779b9b | 2f4a2f89d4879a00c14b816a94c758a4ce5207bc | /gdw_project/gdw/uvm/include/uvm/lua.h | 9de316186e480a5710a0a0b9e178843722c66897 | [
"MIT"
] | permissive | GDW2018/GDW | 03c1d6646ed8aa054b6a7900972d209745f99c54 | a57cff2cf49a7f052d0dac0d2b532dfb82de4d0d | refs/heads/master | 2021-04-06T05:22:17.054128 | 2018-06-19T02:13:10 | 2018-06-19T02:13:10 | 125,323,129 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,985 | h | /*
** $Id: lua.h,v 1.329 2015/11/13 17:18:42 roberto Exp $
** Lua - A Scripting Language
** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
** See Copyright Notice at the end of this file
*/
#ifndef lua_h
#define lua_h
#include <stdarg.h>
#include <stddef.h>
#include "uvm/luaconf.h"
#define LUA_VERSION_MAJOR "1"
#define LUA_VERSION_MINOR "0"
#define LUA_VERSION_NUM 10
#define LUA_VERSION_RELEASE "0"
#define LUA_VERSION "glua " LUA_VERSION_MAJOR "." LUA_VERSION_MINOR
#define LUA_RELEASE LUA_VERSION "." LUA_VERSION_RELEASE
#define LUA_COPYRIGHT LUA_RELEASE " Copyright (C) 2017- UniteBitcoin"
#define LUA_AUTHORS "UniteBitcoin"
// size_t type length, use lua_Integer to fixed format in 64bit and 32bit
#define LUA_SIZE_T_TYPE lua_Integer
/* mark for precompiled code ('<esc>Glua') */
#define LUA_SIGNATURE "\x1bGlua"
/* option for multiple returns in 'lua_pcall' and 'lua_call' */
#define LUA_MULTRET (-1)
/*
** Pseudo-indices
** (-LUAI_MAXSTACK is the minimum valid index; we keep some free empty
** space after that to help overflow detection)
*/
#define LUA_REGISTRYINDEX (-LUAI_MAXSTACK - 1000)
#define lua_upvalueindex(i) (LUA_REGISTRYINDEX - (i))
/* thread status */
#define LUA_OK 0
#define LUA_YIELD 1
#define LUA_ERRRUN 2
#define LUA_ERRSYNTAX 3
#define LUA_ERRMEM 4
#define LUA_ERRGCMM 5
#define LUA_ERRERR 6
typedef struct lua_State lua_State;
/*
** basic types
*/
#define LUA_TNONE (-1)
#define LUA_TNIL 0
#define LUA_TBOOLEAN 1
#define LUA_TLIGHTUSERDATA 2
#define LUA_TNUMBER 3
#define LUA_TSTRING 4
#define LUA_TTABLE 5
#define LUA_TFUNCTION 6
#define LUA_TUSERDATA 7
#define LUA_TTHREAD 8
#define LUA_NUMTAGS 9
/* extend types */
#define LUA_TANY 101
/* end extend types */
/* minimum Lua stack available to a C function */
#define LUA_MINSTACK 20
/* predefined values in the registry */
#define LUA_RIDX_MAINTHREAD 1
#define LUA_RIDX_GLOBALS 2
#define LUA_RIDX_LAST LUA_RIDX_GLOBALS
/* type of numbers in Lua */
typedef LUA_NUMBER lua_Number;
/* type for integer functions */
typedef LUA_INTEGER lua_Integer;
/* unsigned integer type */
typedef LUA_UNSIGNED lua_Unsigned;
/* type for continuation-function contexts */
typedef LUA_KCONTEXT lua_KContext;
/*
** Type for C functions registered with Lua
*/
typedef int(*lua_CFunction) (lua_State *L);
/*
** Type for continuation functions
*/
typedef int(*lua_KFunction) (lua_State *L, int status, lua_KContext ctx);
/*
** Type for functions that read/write blocks when loading/dumping Lua chunks
*/
typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);
typedef int(*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud);
/*
** Type for memory-allocation functions
*/
typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
/*
** generic extra include file
*/
#if defined(LUA_USER_H)
#include LUA_USER_H
#endif
/*
** RCS ident string
*/
extern const char lua_ident[];
/*
** state manipulation
*/
LUA_API lua_State *(lua_newstate)(lua_Alloc f, void *ud);
LUA_API void (lua_close)(lua_State *L);
LUA_API lua_State *(lua_newthread)(lua_State *L);
LUA_API lua_CFunction(lua_atpanic) (lua_State *L, lua_CFunction panicf);
LUA_API const lua_Number *(lua_version)(lua_State *L);
/*
** basic stack manipulation
*/
LUA_API int (lua_absindex)(lua_State *L, int idx);
LUA_API int (lua_gettop)(lua_State *L);
LUA_API void (lua_settop)(lua_State *L, int idx);
LUA_API void (lua_pushvalue)(lua_State *L, int idx);
LUA_API void (lua_rotate)(lua_State *L, int idx, int n);
LUA_API void (lua_copy)(lua_State *L, int fromidx, int toidx);
LUA_API int (lua_checkstack)(lua_State *L, int n);
LUA_API void (lua_xmove)(lua_State *from, lua_State *to, int n);
/*
** access functions (stack -> C)
*/
LUA_API int (lua_isnumber)(lua_State *L, int idx);
LUA_API int (lua_isstring)(lua_State *L, int idx);
LUA_API int (lua_iscfunction)(lua_State *L, int idx);
LUA_API int (lua_isinteger)(lua_State *L, int idx);
LUA_API int (lua_isuserdata)(lua_State *L, int idx);
LUA_API int (lua_type)(lua_State *L, int idx);
LUA_API const char *(lua_typename)(lua_State *L, int tp);
LUA_API lua_Number(lua_tonumberx) (lua_State *L, int idx, int *isnum);
LUA_API lua_Integer(lua_tointegerx) (lua_State *L, int idx, int *isnum);
LUA_API int (lua_toboolean)(lua_State *L, int idx);
LUA_API const char *(lua_tolstring)(lua_State *L, int idx, size_t *len);
LUA_API size_t(lua_rawlen) (lua_State *L, int idx);
LUA_API lua_CFunction(lua_tocfunction) (lua_State *L, int idx);
LUA_API void *(lua_touserdata)(lua_State *L, int idx);
LUA_API lua_State *(lua_tothread)(lua_State *L, int idx);
LUA_API const void *(lua_topointer)(lua_State *L, int idx);
/*
** Comparison and arithmetic functions
*/
#define LUA_OPADD 0 /* ORDER TM, ORDER OP */
#define LUA_OPSUB 1
#define LUA_OPMUL 2
#define LUA_OPMOD 3
#define LUA_OPPOW 4
#define LUA_OPDIV 5
#define LUA_OPIDIV 6
#define LUA_OPBAND 7
#define LUA_OPBOR 8
#define LUA_OPBXOR 9
#define LUA_OPSHL 10
#define LUA_OPSHR 11
#define LUA_OPUNM 12
#define LUA_OPBNOT 13
LUA_API void (lua_arith)(lua_State *L, int op);
#define LUA_OPEQ 0
#define LUA_OPLT 1
#define LUA_OPLE 2
LUA_API int (lua_rawequal)(lua_State *L, int idx1, int idx2);
LUA_API int (lua_compare)(lua_State *L, int idx1, int idx2, int op);
/*
** push functions (C -> stack)
*/
LUA_API void (lua_pushnil)(lua_State *L);
LUA_API void (lua_pushnumber)(lua_State *L, lua_Number n);
LUA_API void (lua_pushinteger)(lua_State *L, lua_Integer n);
LUA_API const char *(lua_pushlstring)(lua_State *L, const char *s, size_t len);
LUA_API const char *(lua_pushstring)(lua_State *L, const char *s);
LUA_API const char *(lua_pushvfstring)(lua_State *L, const char *fmt,
va_list argp);
LUA_API const char *(lua_pushfstring)(lua_State *L, const char *fmt, ...);
LUA_API void (lua_pushcclosure)(lua_State *L, lua_CFunction fn, int n);
LUA_API void (lua_pushboolean)(lua_State *L, int b);
LUA_API void (lua_pushlightuserdata)(lua_State *L, void *p);
LUA_API int (lua_pushthread)(lua_State *L);
/*
** get functions (Lua -> stack)
*/
LUA_API int (lua_getglobal)(lua_State *L, const char *name);
LUA_API int (lua_gettable)(lua_State *L, int idx);
LUA_API int (lua_getfield)(lua_State *L, int idx, const char *k);
LUA_API int (lua_geti)(lua_State *L, int idx, lua_Integer n);
LUA_API int (lua_rawget)(lua_State *L, int idx);
LUA_API int (lua_rawgeti)(lua_State *L, int idx, lua_Integer n);
LUA_API int (lua_rawgetp)(lua_State *L, int idx, const void *p);
LUA_API void (lua_createtable)(lua_State *L, int narr, int nrec);
LUA_API void *(lua_newuserdata)(lua_State *L, size_t sz);
LUA_API int (lua_getmetatable)(lua_State *L, int objindex);
LUA_API int (lua_getuservalue)(lua_State *L, int idx);
/*
** set functions (stack -> Lua)
*/
LUA_API void (lua_setglobal)(lua_State *L, const char *name);
LUA_API void (lua_settable)(lua_State *L, int idx);
LUA_API void (lua_setfield)(lua_State *L, int idx, const char *k);
LUA_API void (lua_seti)(lua_State *L, int idx, lua_Integer n);
LUA_API void (lua_rawset)(lua_State *L, int idx);
LUA_API void (lua_rawseti)(lua_State *L, int idx, lua_Integer n);
LUA_API void (lua_rawsetp)(lua_State *L, int idx, const void *p);
LUA_API int (lua_setmetatable)(lua_State *L, int objindex);
LUA_API void (lua_setuservalue)(lua_State *L, int idx);
/*
** 'load' and 'call' functions (load and run Lua code)
*/
LUA_API void (lua_callk)(lua_State *L, int nargs, int nresults,
lua_KContext ctx, lua_KFunction k);
#define lua_call(L,n,r) lua_callk(L, (n), (r), 0, nullptr)
LUA_API int (lua_pcallk)(lua_State *L, int nargs, int nresults, int errfunc,
lua_KContext ctx, lua_KFunction k);
#define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, nullptr)
LUA_API int (lua_load)(lua_State *L, lua_Reader reader, void *dt,
const char *chunkname, const char *mode);
LUA_API int(lua_load_with_check)(lua_State *L, lua_Reader reader, void *dt,
const char *chunkname, const char *mode, const int check_type);
LUA_API int (lua_dump)(lua_State *L, lua_Writer writer, void *data, int strip);
/**
* util functions
*/
#define PRINT_OP_CODES 0
#define INSTRUCTIONS_LIMIT_LUA_STATE_MAP_KEY "instructions_limit"
#define INSTRUCTIONS_EXECUTED_COUNT_LUA_STATE_MAP_KEY "instructions_executed_count"
#define LUA_STATE_STOP_TO_RUN_IN_LVM_STATE_MAP_KEY "stop_in_lvm"
#define LUA_TABLE_MAP_LIST_STATE_MAP_KEY "uvm_table_map_list_in_memory_pool"
// state_mapAPIIDkey
#define GLUA_CONTRACT_API_CALL_STACK_STATE_MAP_KEY "uvm_contract_api_call_stack_state_map_key"
LUA_API int (lua_docompiledfile)(lua_State *L, const char *filename);
LUA_API int (lua_docompiled_bytestream)(lua_State *L, void *stream);
LUA_API int (lua_execute_contract_api)(lua_State *L, const char *contract_name,
const char *api_name, const char *arg1, std::string *result_json_string=nullptr);
LUA_API int (lua_execute_contract_api_by_address)(lua_State *L, const char *address,
const char *api_name, const char *arg1, std::string *result_json_string);
/*
** coroutine functions
*/
LUA_API int (lua_yieldk)(lua_State *L, int nresults, lua_KContext ctx,
lua_KFunction k);
LUA_API int (lua_resume)(lua_State *L, lua_State *from, int narg);
LUA_API int (lua_status)(lua_State *L);
LUA_API int (lua_isyieldable)(lua_State *L);
#define lua_yield(L,n) lua_yieldk(L, (n), 0, nullptr)
/*
** garbage-collection function and options
*/
#define LUA_GCSTOP 0
#define LUA_GCRESTART 1
#define LUA_GCCOLLECT 2
#define LUA_GCCOUNT 3
#define LUA_GCCOUNTB 4
#define LUA_GCSTEP 5
#define LUA_GCSETPAUSE 6
#define LUA_GCSETSTEPMUL 7
#define LUA_GCISRUNNING 9
#define UVM_CONTRACT_APIS_LIMIT 1024
#define UVM_CONTRACT_API_NAME_MAX_LENGTH 1024
LUA_API int (lua_gc)(lua_State *L, int what, int data);
/*
** miscellaneous functions
*/
LUA_API int (lua_error)(lua_State *L);
LUA_API int (lua_next)(lua_State *L, int idx);
LUA_API void (lua_concat)(lua_State *L, int n);
LUA_API void (lua_len)(lua_State *L, int idx);
LUA_API size_t(lua_stringtonumber) (lua_State *L, const char *s);
LUA_API lua_Alloc(lua_getallocf) (lua_State *L, void **ud);
LUA_API void (lua_setallocf)(lua_State *L, lua_Alloc f, void *ud);
/*
** {==============================================================
** some useful macros
** ===============================================================
*/
#define lua_getextraspace(L) ((void *)((char *)(L) - LUA_EXTRASPACE))
#define lua_tonumber(L,i) lua_tonumberx(L,(i),nullptr)
#define lua_tointeger(L,i) lua_tointegerx(L,(i),nullptr)
#define lua_pop(L,n) lua_settop(L, -(n)-1)
#define lua_newtable(L) lua_createtable(L, 0, 0)
#define lua_register(L,n,f) (lua_pushcfunction(L, (f)), lua_setglobal(L, (n)))
#define lua_pushcfunction(L,f) lua_pushcclosure(L, (f), 0)
#define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION)
#define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE)
#define lua_islightuserdata(L,n) (lua_type(L, (n)) == LUA_TLIGHTUSERDATA)
#define lua_isnil(L,n) (lua_type(L, (n)) == LUA_TNIL)
#define lua_isboolean(L,n) (lua_type(L, (n)) == LUA_TBOOLEAN)
#define lua_isthread(L,n) (lua_type(L, (n)) == LUA_TTHREAD)
#define lua_isnone(L,n) (lua_type(L, (n)) == LUA_TNONE)
#define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0)
#define lua_pushliteral(L, s) lua_pushstring(L, "" s)
#define lua_pushglobaltable(L) \
lua_rawgeti(L, LUA_REGISTRYINDEX, LUA_RIDX_GLOBALS)
#define lua_tostring(L,i) lua_tolstring(L, (i), nullptr)
#define lua_insert(L,idx) lua_rotate(L, (idx), 1)
#define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1))
#define lua_replace(L,idx) (lua_copy(L, -1, (idx)), lua_pop(L, 1))
/* }============================================================== */
/*
** {==============================================================
** compatibility macros for unsigned conversions
** ===============================================================
*/
#if defined(LUA_COMPAT_APIINTCASTS)
#define lua_pushunsigned(L,n) lua_pushinteger(L, (lua_Integer)(n))
#define lua_tounsignedx(L,i,is) ((lua_Unsigned)lua_tointegerx(L,i,is))
#define lua_tounsigned(L,i) lua_tounsignedx(L,(i),nullptr)
#endif
/* }============================================================== */
/*
** {======================================================================
** Debug API
** =======================================================================
*/
/*
** Event codes
*/
#define LUA_HOOKCALL 0
#define LUA_HOOKRET 1
#define LUA_HOOKLINE 2
#define LUA_HOOKCOUNT 3
#define LUA_HOOKTAILCALL 4
/*
** Event masks
*/
#define LUA_MASKCALL (1 << LUA_HOOKCALL)
#define LUA_MASKRET (1 << LUA_HOOKRET)
#define LUA_MASKLINE (1 << LUA_HOOKLINE)
#define LUA_MASKCOUNT (1 << LUA_HOOKCOUNT)
typedef struct lua_Debug lua_Debug; /* activation record */
/* Functions to be called by the debugger in specific events */
typedef void(*lua_Hook) (lua_State *L, lua_Debug *ar);
LUA_API int (lua_getstack)(lua_State *L, int level, lua_Debug *ar);
LUA_API int (lua_getinfo)(lua_State *L, const char *what, lua_Debug *ar);
LUA_API const char *(lua_getlocal)(lua_State *L, const lua_Debug *ar, int n);
LUA_API const char *(lua_setlocal)(lua_State *L, const lua_Debug *ar, int n);
LUA_API const char *(lua_getupvalue)(lua_State *L, int funcindex, int n);
LUA_API const char *(lua_setupvalue)(lua_State *L, int funcindex, int n);
LUA_API void *(lua_upvalueid)(lua_State *L, int fidx, int n);
LUA_API void (lua_upvaluejoin)(lua_State *L, int fidx1, int n1,
int fidx2, int n2);
LUA_API void (lua_sethook)(lua_State *L, lua_Hook func, int mask, int count);
LUA_API lua_Hook(lua_gethook) (lua_State *L);
LUA_API int (lua_gethookmask)(lua_State *L);
LUA_API int (lua_gethookcount)(lua_State *L);
LUA_API void (lua_set_compile_error)(lua_State *L, const char *msg);
LUA_API void (lua_set_run_error)(lua_State *L, const char *msg);
struct lua_Debug {
int event;
const char *name; /* (n) */
const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
const char *source; /* (S) */
int currentline; /* (l) */
int linedefined; /* (S) */
int lastlinedefined; /* (S) */
unsigned char nups; /* (u) number of upvalues */
unsigned char nparams;/* (u) number of parameters */
char isvararg; /* (u) */
char istailcall; /* (t) */
char short_src[LUA_IDSIZE]; /* (S) */
/* private part */
struct CallInfo *i_ci; /* active function */
};
/* }====================================================================== */
/******************************************************************************
* Copyright (C) 1994-2015 Lua.org, PUC-Rio.
*
* 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.
******************************************************************************/
#endif
| [
"panguoxing@youjindui.com"
] | panguoxing@youjindui.com |
69453925b3fd8c67970bd40320d70128a964d280 | cde72953df2205c2322aac3debf058bb31d4f5b9 | /win10.19042/System32/untfs.dll.cpp | 090daada4e96c3467411637fd6465a14e2a34ab6 | [] | no_license | v4nyl/dll-exports | 928355082725fbb6fcff47cd3ad83b7390c60c5a | 4ec04e0c8f713f6e9a61059d5d87abc5c7db16cf | refs/heads/main | 2023-03-30T13:49:47.617341 | 2021-04-10T20:01:34 | 2021-04-10T20:01:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,509 | cpp | #print comment(linker, "/export:??0NTFS_ATTRIBUTE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_ATTRIBUTE_DEFINITION_TABLE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_ATTRIBUTE_LIST@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_ATTRIBUTE_RECORD@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_BAD_CLUSTER_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_BITMAP@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_BITMAP_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_BOOT_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_CLUSTER_RUN@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_EXTENT_LIST@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_FILE_RECORD_SEGMENT@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_FRS_STRUCTURE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_INDEX_TREE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_LOG_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_MFT_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_MFT_INFO@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_REFLECTED_MASTER_FILE_TABLE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_SA@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_UPCASE_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_UPCASE_TABLE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??0NTFS_VOLUME_FILE@@QEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_ATTRIBUTE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_ATTRIBUTE_DEFINITION_TABLE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_ATTRIBUTE_LIST@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_ATTRIBUTE_RECORD@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_BAD_CLUSTER_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_BITMAP@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_BITMAP_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_BOOT_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_CLUSTER_RUN@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_EXTENT_LIST@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_FILE_RECORD_SEGMENT@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_FRS_STRUCTURE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_INDEX_TREE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_LOG_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_MFT_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_MFT_INFO@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_REFLECTED_MASTER_FILE_TABLE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_SA@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_UPCASE_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_UPCASE_TABLE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:??1NTFS_VOLUME_FILE@@UEAA@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?AddExtent@NTFS_EXTENT_LIST@@QEAAEVBIG_INT@@00@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?AddFileNameAttribute@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAU_FILE_NAME@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?AddSecurityDescriptor@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4_CANNED_SECURITY_TYPE@@PEAVNTFS_BITMAP@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?AddSecurityDescriptorData@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAXPEAPEAU_SECURITY_ENTRY@@KW4_CANNED_SECURITY_TYPE@@PEAVNTFS_BITMAP@@W4FIX_LEVEL@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?AllocateFileRecordSegment@NTFS_MASTER_FILE_TABLE@@QEAAEPEAVBIG_INT@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?CompareDupInfo@NTFS_MFT_INFO@@SAEPEAXPEAU_FILE_NAME@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?CompareFileName@NTFS_MFT_INFO@@SAEPEAXKPEAU_FILE_NAME@@PEAG@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ComputeDupInfoSignature@NTFS_MFT_INFO@@CAXPEAU_DUPLICATED_INFORMATION@@QEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ComputeFileNameSignature@NTFS_MFT_INFO@@CAXKPEAU_FILE_NAME@@QEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?CopyIterator@NTFS_INDEX_TREE@@QEAAEPEAV1@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Create@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEBU_STANDARD_INFORMATION@@G@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?CreateDataAttribute@NTFS_LOG_FILE@@QEAAEVBIG_INT@@KPEAVNTFS_BITMAP@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?CreateElementaryStructures@NTFS_SA@@QEAAEPEAVNTFS_BITMAP@@KKKKPEBVNUMBER_SET@@EEEEEKPEAVMESSAGE@@PEAUBIOS_PARAMETER_BLOCK@@PEBVWSTRING@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Extend@NTFS_MASTER_FILE_TABLE@@QEAAEK@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Flush@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_BITMAP@@PEAVNTFS_INDEX_TREE@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Flush@NTFS_MFT_FILE@@QEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?GetNext@NTFS_INDEX_TREE@@QEAAPEBU_INDEX_ENTRY@@PEAKPEAEE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?GetNextAttributeListEntry@NTFS_ATTRIBUTE_LIST@@QEBAPEBU_ATTRIBUTE_LIST_ENTRY@@PEBU2@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?GetNextAttributeRecord@NTFS_FRS_STRUCTURE@@QEAAPEAXPEBXPEAVMESSAGE@@PEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?GetRootFrsIndex@NTFS_SA@@SAEW4FIX_LEVEL@@PEAVNTFS_MFT_FILE@@PEAVNTFS_FILE_RECORD_SEGMENT@@PEAVNTFS_INDEX_TREE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?GrowSparse@NTFS_ATTRIBUTE@@UEAAEVBIG_INT@@PEAVNTFS_BITMAP@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_ATTRIBUTE@@QEAAEPEAVLOG_IO_DP_DRIVE@@KPEBVNTFS_EXTENT_LIST@@VBIG_INT@@2KPEBVWSTRING@@G@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_ATTRIBUTE@@QEAAEPEAVLOG_IO_DP_DRIVE@@KPEBXKKPEBVWSTRING@@G@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_ATTRIBUTE_DEFINITION_TABLE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_ATTRIBUTE_RECORD@@QEAAEPEAVIO_DP_DRIVE@@PEAX@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_BAD_CLUSTER_FILE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_BITMAP@@QEAAEVBIG_INT@@EPEAVLOG_IO_DP_DRIVE@@KE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_BITMAP_FILE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_BOOT_FILE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_CLUSTER_RUN@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@VBIG_INT@@KK@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_EXTENT_LIST@@QEAAEVBIG_INT@@0@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4FIX_LEVEL@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4FIX_LEVEL@@PEAVNTFS_FRS_STRUCTURE@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4FIX_LEVEL@@VBIG_INT@@KPEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4FIX_LEVEL@@VBIG_INT@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4FIX_LEVEL@@VBIG_INT@@PEAVNTFS_MFT_FILE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAU_FILE_RECORD_SEGMENT_HEADER@@PEAVNTFS_ATTRIBUTE@@VBIG_INT@@KK2KPEAVNTFS_UPCASE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@VBIG_INT@@K2KPEAVNTFS_UPCASE_TABLE@@K@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAVMEM@@PEAVNTFS_ATTRIBUTE@@VBIG_INT@@K2KPEAVNTFS_UPCASE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAVMEM@@PEAVNTFS_ATTRIBUTE@@VBIG_INT@@KK2KPEAVNTFS_UPCASE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_INDEX_TREE@@QEAAEKPEAVLOG_IO_DP_DRIVE@@KPEAVNTFS_BITMAP@@PEAVNTFS_UPCASE_TABLE@@KKKPEBVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_INDEX_TREE@@QEAAEPEAVLOG_IO_DP_DRIVE@@KPEAVNTFS_BITMAP@@PEAVNTFS_UPCASE_TABLE@@KPEAVNTFS_FILE_RECORD_SEGMENT@@PEBVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_LOG_FILE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_MFT_FILE@@QEAAEW4FIX_LEVEL@@PEAVLOG_IO_DP_DRIVE@@VBIG_INT@@KK2PEAVNTFS_BITMAP@@PEAVNTFS_UPCASE_TABLE@@PEAVNTFS_ATTRIBUTE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_MFT_INFO@@QEAAEVBIG_INT@@PEAVNTFS_UPCASE_TABLE@@EE_K@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_MFT_INFO@@QEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_REFLECTED_MASTER_FILE_TABLE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_SA@@QEAAEPEAVLOG_IO_DP_DRIVE@@PEAVMESSAGE@@VBIG_INT@@2KE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_UPCASE_FILE@@QEAAEW4FIX_LEVEL@@PEAVNTFS_MASTER_FILE_TABLE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_UPCASE_TABLE@@QEAAEPEAGK@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_UPCASE_TABLE@@QEAAEPEAVNTFS_ATTRIBUTE@@PEA_K@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_UPCASE_TABLE@@QEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Initialize@NTFS_VOLUME_FILE@@QEAAEPEAVLOG_IO_DP_DRIVE@@PEAVNTFS_MASTER_FILE_TABLE@@PEAVNTFS_FILE_RECORD_SEGMENT@@PEAVNTFS_INDEX_TREE@@PEAU_VOLUME_INFORMATION@@PEAVWSTRING@@W4FIX_LEVEL@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?InsertEntry@NTFS_INDEX_TREE@@QEAAEKPEAXU_MFT_SEGMENT_REFERENCE@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?InsertIntoFile@NTFS_ATTRIBUTE@@UEAAEPEAVNTFS_FILE_RECORD_SEGMENT@@PEAVNTFS_BITMAP@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?IsAllocated@NTFS_BITMAP@@QEBAEVBIG_INT@@0@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?IsAttributePresent@NTFS_FILE_RECORD_SEGMENT@@QEAAEKPEBVWSTRING@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?IsDosName@NTFS_SA@@SAEPEBU_FILE_NAME@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?IsFree@NTFS_BITMAP@@QEBAEVBIG_INT@@0@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?IsNtfsName@NTFS_SA@@SAEPEBU_FILE_NAME@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?MakeNonresident@NTFS_ATTRIBUTE@@UEAAEPEAVNTFS_BITMAP@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Prefetch@NTFS_ATTRIBUTE@@QEAAEVBIG_INT@@K@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Prefetch@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@0@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryAttribute@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAEKPEBVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryAttributeByOrdinal@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAEKK@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryAttributeList@NTFS_FRS_STRUCTURE@@QEAAEPEAVNTFS_ATTRIBUTE_LIST@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryAttributeListAttribute@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryClusterFactor@NTFS_SA@@QEBAKXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryClustersAllocated@NTFS_ATTRIBUTE@@QEBA?AVBIG_INT@@XZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryDefaultClustersPerIndexBuffer@NTFS_SA@@SAKPEBVDP_DRIVE@@K@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryDuplicatedInformation@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAU_DUPLICATED_INFORMATION@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryEntry@NTFS_INDEX_TREE@@QEAAEKPEAXKPEAPEAU_INDEX_ENTRY@@PEAPEAVNTFS_INDEX_BUFFER@@PEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryExtent@NTFS_EXTENT_LIST@@QEBAEKPEAVBIG_INT@@00@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryExtentList@NTFS_ATTRIBUTE_RECORD@@QEBAEPEAVNTFS_EXTENT_LIST@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryFileReference@NTFS_INDEX_TREE@@QEAAEKPEAXKPEAU_MFT_SEGMENT_REFERENCE@@PEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryFileSizes@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVBIG_INT@@0PEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryFlags@NTFS_MFT_INFO@@SAEPEAXG@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryFrsFromPath@NTFS_SA@@QEAAEW4FIX_LEVEL@@PEBVWSTRING@@PEAVNTFS_MASTER_FILE_TABLE@@PEAVNTFS_BITMAP@@PEAVNTFS_FILE_RECORD_SEGMENT@@PEAE5@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryLcnFromVcn@NTFS_EXTENT_LIST@@QEBAEVBIG_INT@@PEAV2@1@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryName@NTFS_ATTRIBUTE_RECORD@@QEBAEPEAVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryNextEntry@NTFS_ATTRIBUTE_LIST@@QEBAEPEAU_ATTR_LIST_CURR_ENTRY@@PEAKPEAVBIG_INT@@PEAU_MFT_SEGMENT_REFERENCE@@PEAGPEAVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryNumberOfExtents@NTFS_EXTENT_LIST@@QEBAKXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QuerySectorsInElementaryStructures@NTFS_SA@@SAKPEAVDP_DRIVE@@KKKKE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QuerySegmentReference@NTFS_MFT_INFO@@SA?AU_MFT_SEGMENT_REFERENCE@@PEAX@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?QueryVolumeFlagsAndLabel@NTFS_SA@@QEAAGPEAE00PEAVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Read@NTFS_ATTRIBUTE@@QEAAEPEAXVBIG_INT@@KPEAK@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Read@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Read@NTFS_FRS_STRUCTURE@@UEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Read@NTFS_MFT_FILE@@UEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Read@NTFS_SA@@QEAAEPEAVMESSAGE@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Read@NTFS_SA@@UEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ReadAgain@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ReadAt@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ReadList@NTFS_ATTRIBUTE_LIST@@QEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ReadNext@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ReadWithAltExtents@NTFS_ATTRIBUTE@@QEAAEPEAXVBIG_INT@@KPEAKPEAVNTFS_EXTENT_LIST@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Relocate@NTFS_CLUSTER_RUN@@QEAAXVBIG_INT@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ResetIterator@NTFS_INDEX_TREE@@QEAAEE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?ResetIterator@NTFS_INDEX_TREE@@QEAAEPEBU_INDEX_ENTRY@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Resize@NTFS_ATTRIBUTE@@UEAAEVBIG_INT@@PEAVNTFS_BITMAP@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?SafeQueryAttribute@NTFS_FRS_STRUCTURE@@QEAAEKPEAVNTFS_ATTRIBUTE@@0PEAVWSTRING@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Save@NTFS_INDEX_TREE@@QEAAEPEAVNTFS_FILE_RECORD_SEGMENT@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?SetSparse@NTFS_ATTRIBUTE@@UEAAEVBIG_INT@@PEAVNTFS_BITMAP@@E@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?SetVolumeFlag@NTFS_SA@@QEAAEGPEAE@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?TakeCensus@NTFS_SA@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@KPEAUNTFS_CENSUS_INFO@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Write@NTFS_ATTRIBUTE@@UEAAEPEBXVBIG_INT@@KPEAKPEAVNTFS_BITMAP@@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Write@NTFS_BITMAP@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAV1@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Write@NTFS_FILE_RECORD_SEGMENT@@UEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?Write@NTFS_FRS_STRUCTURE@@QEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?WriteModified@NTFS_BITMAP@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAV1@@Z=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:?WriteRemainingBootCode@NTFS_SA@@QEAAEXZ=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:Chkdsk=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:ChkdskEx=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:CreateFormatCorruptionRecordContext=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:DeleteFormatCorruptionRecordContext=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:Extend=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:Format=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:FormatCorruptionRecordA=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:FormatCorruptionRecordW=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:FormatEx=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:GetFilesystemInformation=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:NtfsUpcaseCompare=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:Recover=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:SetOriginalVolumeName=\"C:\\Windows\\System32\\untfs.dll\"")
#print comment(linker, "/export:SetWriteViewCacheVolumeName=\"C:\\Windows\\System32\\untfs.dll\"")
| [
"magnus@stubman.eu"
] | magnus@stubman.eu |
2ecb8023c275be3e58320b1c57cf7869f4da7702 | def39f068050b234df9f6909d4277f96b740f11c | /E-olimp/6940. Maximum Word Frequency .cpp | 84fa9291b49f3d64a206fe7cfae8a8ee3f54a667 | [] | no_license | azecoder/Problem-Solving | 41a9a4302c48c8de59412ab9175b253df99f1f28 | a920b7bac59830c7b798127f6eed0e2ab31a5fa2 | refs/heads/master | 2023-02-10T09:47:48.322849 | 2021-01-05T14:14:09 | 2021-01-05T14:14:09 | 157,236,604 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 525 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
#define size 1000
string a[size],c;
int i,cnt=1,maxx;
int main()
{
int n;
cin >> n;
for(i = 0; i < n; i ++) cin >> a[i];
sort(a, a+n);
for(i = 0; i < n; i ++)
if(a[i].compare(a[i+1]) == 0) cnt++;
else
{
if(cnt >= maxx)
{
maxx = cnt;
c = a[i];
}
cnt = 1;
}
cout << c << " " << maxx << endl;
return 0;
} | [
"tabriz.haji@gmail.com"
] | tabriz.haji@gmail.com |
a3d3a84417f5c7d950515262139858f23d1d88fa | 729649c905fd378d40bfd69a4bccd9ae5f5f0c1a | /srcs/level.cpp | b1a174fdbc9e56c4c28453941948a6dfd08bf910 | [] | no_license | OSGiftia/2DShootingGame | edd9499fc354c003cd291cfd0629643eecb7a478 | 2ca3f2cae74238c200c35e633de7e1cc052b683a | refs/heads/master | 2020-09-16T03:58:03.381145 | 2019-11-23T19:55:48 | 2019-11-23T19:55:48 | 223,516,603 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | cpp | #include <SDL.h>
#include "level.h"
#include "graphics.h"
Level::Level() {
//
}
Level::Level(Graphics &graphics, const std::string &filePath, int _width, int _height) : _size(_size.zero()) {
loadMap(graphics, filePath, _width, _height);
}
Level::~Level() {
//
}
void Level::loadMap( Graphics &graphics, const std::string &filePath, int _width, int _height) {
_backgroundTexture = SDL_CreateTextureFromSurface(graphics.getRenderer(), graphics.loadImage(filePath));
_size = Vector2(_width, _height);
}
void Level::update(int elapsedTime) {
//
}
void Level::draw(Graphics &graphics, int x, int y) {
SDL_Rect sourceRect = { 0, 0, _size.x, _size.y };
SDL_Rect destRect = { x, y, _size.x, _size.y };
graphics.blitSurface(_backgroundTexture, &sourceRect, &destRect);
}
| [
"gong141@purdue.edu"
] | gong141@purdue.edu |
ee0d7bbabe1e9195204fa19c60185d5dace68468 | 13b1c4b9dd1eb344a9c1c1467f0dc91f98b33150 | /Kattis - Fenwick Tree.cpp | 5a2c32b02c653b7c16f56205861cfc542abe04f5 | [] | no_license | willsenw/algods | 5ef4ba92b94e1760893945a3f962a850481a6108 | 050620fb8fd21538e60ef6c9a3aa3f2caad5967a | refs/heads/master | 2022-12-28T08:21:39.797704 | 2020-10-11T08:45:58 | 2020-10-11T08:45:58 | 285,851,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,486 | cpp | #include <cstdio>
#include <set>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#include <string>
using namespace std;
#define LL long long
LL ft[5000005];
int n,q;
string s;
int t[5000005], x[5000005], v[5000005];
void upd( int x, int v ){
while ( x <= n ){
ft[x] += v;
x += x & (-x);
}
}
LL query( int x ){
LL ans = 0;
while ( x ){
ans += ft[x];
x -= x & (-x);
}
return ans;
}
int lb( int m ){
return m;
}
int readint(){
int num = 0;
char c;
int sign = 1;
while ( true ){
c = getchar();
if ( c == '-' ) sign = -sign;
else if ( c >= '0' && c <='9' ) num = ( num * 10 ) + c - '0';
else break;
}
return num * sign;
}
char readchar(){
char c;
while ( true ){
c = getchar();
if ( c == '+' ) return c;
if ( c == '?' ) return c;
}
}
int main(){
// init();
// cin >> n >> q;
n = readint();
q = readint();
for ( int i = 0; i < q; i++ ){
char c = readchar();
getchar();
x[i] = readint();
if ( c == '+' ){
v[i] = readint();
t[i] = 0;
} else {
t[i] = 1;
}
}
for ( int i = 0; i < q; i++ ){
if ( t[i] == 0 ){
upd(lb(x[i]+1),v[i]);
} else {
if ( x[i] == 0 ) printf("0\n");
else printf("%lld\n",query(lb(x[i])));
}
}
return 0;
} | [
"willsen0123@gmail.com"
] | willsen0123@gmail.com |
8d700863fc36299da65703da1cc65032ab952136 | 9922edafddb080ccefb36858e5ffd1a106beae95 | /mdk/RealSpace3/RAnimationFileLoadImpl.h | 7b087bbe413b77a5f052d31e88f4d308fbe876df | [] | no_license | saerich/RaiderZ-Evolved-Develop | ee93f46d866ed0310107a07ad0a4a2db3a2fd529 | b2a20e2a5b058a330b2e18a3f0a45a10f71f2cb0 | refs/heads/master | 2023-02-25T15:43:26.276331 | 2021-02-04T01:37:25 | 2021-02-04T01:37:25 | 281,212,532 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,091 | h | #pragma once
#include "RFile.h"
namespace rs3 {
class RAnimationNode;
class RAnimationFileLoadImpl
{
public:
virtual bool LoadVertexAni(RFile &rf, RAnimationNode *pANode, DWORD dwVersion) = 0;
virtual bool LoadBoneAni(RFile &rf, RAnimationNode *pANode, DWORD dwVersion) = 0;
virtual bool LoadVisibilityKey(RFile &rf, RAnimationNode *pANode, DWORD dwVersion) = 0;
};
class RAnimationFileLoadImpl_v6 : public RAnimationFileLoadImpl
{
private:
virtual void LoadVertexAniBoundingBox(RFile &rf, RAnimationNode *pANode);
public:
virtual bool LoadVertexAni(RFile &rf, RAnimationNode *pANode, DWORD dwVersion);
virtual bool LoadBoneAni(RFile &rf, RAnimationNode *pANode, DWORD dwVersion);
virtual bool LoadVisibilityKey(RFile &rf, RAnimationNode *pANode, DWORD dwVersion);
};
class RAnimationFileLoadImpl_v7 : public RAnimationFileLoadImpl_v6
{
virtual void LoadVertexAniBoundingBox(RFile &rf, RAnimationNode *pANode);
};
class RAnimationFileLoadImpl_v9 : public RAnimationFileLoadImpl_v7
{
virtual bool LoadVisibilityKey(RFile &rf, RAnimationNode *pANode, DWORD dwVersion);
};
}; | [
"fabs1996@live.co.uk"
] | fabs1996@live.co.uk |
f0124080ebf2bc1ca6de8095aa9256af254c28d1 | e3133217f36aa384b33d6bfaba7999f6633587a2 | /calc1_0.cpp | 50ae12cba4817b8dd043e3854cdc121fd9f159d6 | [] | no_license | mnty4/calculator | 8b004b9e4a3f87f5322d27183f053648e5187589 | f3a9f575b816422759cf20868456f75f9e53b741 | refs/heads/master | 2023-06-23T04:06:58.922632 | 2021-07-18T11:19:15 | 2021-07-18T11:19:15 | 387,157,180 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,985 | cpp | /*****************************************
The grammar for input is:
Statement:
Expression
Print
Quit
Print:
;
Quit:
q
Expression:
Term
Expression + Term
Expression - Term
Term:
Primary
Term * Primary
Term / Primary
Primary:
Number
( Expression )
+ Primary
- Primary
Number:
floating-point-literal
Input comes in from cin through the Token_stream called ts
*****************************************/
#include "../std_lib_facilities.h"
void error(std::string str, std::string name) {
throw std::runtime_error(str+name);
}
class Answer {
public:
static double get() {
return ans;
}
static void set(double val) {
ans = val;
}
private:
static double ans;
};
class Variable {
public:
std::string name;
double value;
Variable(std::string n, double v) :name(n), value(v) {}
};
vector<Variable> var_table;
double getValue(std::string s) {
for(Variable var : var_table) {
if(var.name == s)
return var.value;
}
throw std::runtime_error("get: undefined variable");
}
void setValue(std::string s, double d) {
for(Variable var : var_table) {
if(var.name == s)
var.value = d;
return;
}
throw std::runtime_error("set undefined variable");
}
class Token {
public:
char kind;
double value;
string name;
Token(char ch)
:kind(ch) {}
Token(char ch, double val)
:kind(ch), value(val) {}
Token(char ch, string s)
:kind(ch), name(s) {}
};
const char number = '8';
const char quit = 'q';
const char print = ';';
const char let = 'L';
const char name = 'a';
const std::string prompt = "> ";
const std::string result = "= ";
const std::string declkey = "let";
class Token_stream {
public:
Token get();
void putback(Token t);
void ignore(char c);
private:
bool full { false };
Token buffer {'0'};
};
void Token_stream::putback(Token t) {
if(full) throw std::runtime_error("putback() into a full buffer");
buffer = t;
full = true;
};
Token Token_stream::get() {
if(full) {
full = false;
return buffer;
}
char ch;
std::cin>>ch;
switch(ch) {
case '+':
case '-':
case '*':
case '/':
case '!':
case '%':
case '(':
case ')':
case '{':
case '}':
case '=':
case print:
case quit:
return Token(ch);
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':
case '8': case '9': case '.':
{
std::cin.putback(ch);
double val;
std::cin>>val;
return Token(number, val);
}
default:
if(isalpha(ch)) {
std::string s;
s += ch;
while(std::cin.get(ch) && (isalpha(ch) || isdigit(ch))) s+= ch;
cin.putback(ch);
if(s == declkey) return Token(let);
return Token(name, s);
}
throw std::runtime_error("invalid token");
}
};
void Token_stream::ignore(char c) {
if(full && c == buffer.kind) {
full = false;
return;
}
char ch = 0;
while(std::cin>>ch)
if(ch == c) return;
}
Token_stream ts;
double Answer::ans = 0;
double expression();
bool is_declared(std::string var) {
for(int i = 0; i < var_table.size(); i++)
if(var_table[i].name == var) return true;
return false;
}
double define_name(std::string var, double val) {
if(is_declared(var)) std::runtime_error("declared already");
var_table.push_back(Variable(var, val));
return val;
}
double primary() {
Token t = ts.get();
switch(t.kind) {
case '(':
{
double d = expression();
t = ts.get();
if(t.kind != ')') throw std::runtime_error("')' expected");
return d;
}
case '{':
{
double d = expression();
t = ts.get();
if(t.kind != '}') throw std::runtime_error("'}' expected");
return d;
}
case number:
return t.value;
case '-':
return - primary();
case '+':
return primary();
case 'a':
{
if(!is_declared(t.name))
error("undefined name");
return getValue(t.name);
}
default:
throw std::runtime_error("primary expected");
}
}
double secondary() {
double left = primary();
Token t = ts.get();
if(t.kind == '!') {
int i = left;
if(i != left) throw std::runtime_error("expected integer before '!'");
left = 1;
for(; i > 0; i--)
left *= i;
return left;
}
else
ts.putback(t);
return left;
}
double term() {
double left = secondary();
Token t = ts.get();
while(true) {
switch(t.kind) {
case '*':
left *= secondary();
t = ts.get();
break;
case '/':
{ double d = secondary();
if(d == 0) throw std::runtime_error("divide by zero");
left /= d;
t = ts.get();
break;
}
case '%':
{
int i1 = narrow_cast<int>(left);
int i2 = narrow_cast<int>(secondary());
left = i1 % i2;
t = ts.get();
break;
}
default:
ts.putback(t);
return left;
}
}
}
double expression() {
double left = term();
Token t = ts.get();
while(true) {
switch (t.kind)
{
case '+':
left += term();
t = ts.get();
break;
case '-':
left -= term();
t = ts.get();
break;
default:
ts.putback(t);
return left;
}
}
}
double declaration() {
Token t = ts.get();
if(t.kind != name) std::runtime_error("name expected in declaration");
std::string var_name = t.name;
Token t2 = ts.get();
if(t2.kind != '=') std::runtime_error("= expected in declaration");
double d = expression();
define_name(var_name, d);
return d;
}
double statement() {
Token t = ts.get();
switch(t.kind) {
case let:
return declaration();
default:
ts.putback(t);
return expression();
}
}
void clean_up_mess() {
ts.ignore(print);
}
void calculate() {
while(std::cin) {
try {
std::cout<<prompt;
Token t = ts.get();
while (t.kind == print) t = ts.get();
if(t.kind == quit) {
return;
}
ts.putback(t);
std::cout<<result<<statement()<<std::endl;
}
catch (std::exception& e) {
std::cerr<<e.what()<<std::endl;
clean_up_mess();
}
}
}
int main() {
try {
define_name("pi", 3.1415926535);
define_name("e", 2.7182818284);
calculate();
keep_window_open();
return 0;
}
catch (std::exception& e) {
std::cerr<<"Exception: "<<e.what()<<std::endl;
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
keep_window_open();
return 1;
}
catch(...) {
std::cerr<<"Unknown exception\n";
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
keep_window_open();
return 2;
}
return 0;
} | [
"zenikyn@gmail.com"
] | zenikyn@gmail.com |
2a87f660cc9d213fab12bd5fefe825ae534a0dea | 8f50c262f89d3dc4f15f2f67eb76e686b8f808f5 | /MagneticField/MagFieldUtils/src/MagFieldCondReader.h | 96fbf4046fa379d3336cbaa046dc80b39330bdd6 | [
"Apache-2.0"
] | permissive | strigazi/athena | 2d099e6aab4a94ab8b636ae681736da4e13ac5c9 | 354f92551294f7be678aebcd7b9d67d2c4448176 | refs/heads/master | 2022-12-09T02:05:30.632208 | 2020-09-03T14:03:18 | 2020-09-03T14:03:18 | 292,587,480 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 838 | h | /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef MAGFIELDUTILS_MAGFIELDCONDREADER_H
#define MAGFIELDUTILS_MAGFIELDCONDREADER_H
#include "AthenaBaseComps/AthReentrantAlgorithm.h"
#include "MagFieldConditions/AtlasFieldCacheCondObj.h"
#include "StoreGate/ReadHandleKey.h"
namespace MagField {
/**
* Testing algorithm to read magnetic field
*/
class CondReader : public AthReentrantAlgorithm {
public:
CondReader(const std::string& name, ISvcLocator* pSvcLocator);
StatusCode initialize() override;
StatusCode execute(const EventContext& ctx) const override;
private:
SG::ReadCondHandleKey<AtlasFieldCacheCondObj> m_fieldCacheKey{
this, "AtlasFieldCacheCondObj", "fieldCondObj", "Magnetic Field conditions object key"};
};
} // namespace MagField
#endif
| [
"fwinkl@cern"
] | fwinkl@cern |
54a4359fd37fc6e81242e42033fb1d7f637dab08 | 75833eb690f367854339bd74b57ac6743cd97fe8 | /src/kvbf/kvbf_cell.cpp | 9b2da1c272e734d09513afe66bc2fd526efa70f3 | [] | no_license | huicpc0215/KVBF | de3c8c1e6b61bffea1da97272356c8af4e80024d | 753c33aa996738175cab5700414d676e60c992ba | refs/heads/master | 2021-01-18T15:10:16.546363 | 2015-11-30T08:40:49 | 2015-11-30T08:40:49 | 26,022,279 | 0 | 0 | null | 2015-07-08T01:25:42 | 2014-10-31T15:46:01 | C++ | UTF-8 | C++ | false | false | 1,630 | cpp | /*=============================================================================
# FileName: kvbf_cell.cpp
# Desc: implemtation
# Author: huicpc0215
# Email: huicpc0215@gmail.com
# HomePage: huicpc0215.github.io
# Version: 0.0.1
# LastChange: 2015-05-11 20:47:23
# History:
=============================================================================*/
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
#include"kvbf_cell.h"
kvbf_cell::kvbf_cell(){
layer = (kvbf_layer**) malloc( 3 * sizeof( kvbf_layer* ) );
layer[0]=new kvbf_layer(1);
layer[1]=new kvbf_layer(1);
layer[2]=new kvbf_layer(1);
}
kvbf_cell::~kvbf_cell(){
delete(layer[0]);
delete(layer[1]);
delete(layer[2]);
free(layer);
}
/*
* write in parallel maybe accelarate query
*/
void kvbf_cell::get(byte* answer){
// set the answer's all bits to 1
*answer=0;
*answer = *(layer[0]->get()) | *(layer[1]->get()) | *(layer[2]->get());
}
/*
* write in parallel may be accelarate insertion
*/
void kvbf_cell::ins(byte* _Value){
*(layer[0]->get()) ^= *(_Value);
*(_Value) &= *(layer[0]->get());
*(layer[1]->get()) ^= *(_Value);
*(_Value) &= *(layer[1]->get());
*(layer[2]->get()) ^= *(_Value);
*(_Value) &= *(layer[2]->get());
}
/*
* write in parallel maybe accelarate deletion
*/
void kvbf_cell::del(byte* _Value){
*(layer[0]->get()) ^= *(_Value);
*(_Value ) &= ~(*(layer[0]->get()));
*(layer[1]->get()) ^= *(_Value);
*(_Value ) &= ~(*(layer[1]->get()));
*(layer[2]->get()) ^= *(_Value);
*(_Value ) &= ~(*(layer[2]->get()));
}
| [
"huicpc0215@gmail.com"
] | huicpc0215@gmail.com |
e00c0e974897de483fd53682d34b9159ebea4cee | 1de4f552d0007aa8d58438a4ff08b7f9e86634cf | /ledger/account.h | 62c6d965bcccd12a88d4b30dc0822e12fe00a3fb | [] | no_license | opec2019/opec | fe68a42cdc760b17803a84e7f13d344f0ceb7b49 | 905cfc006ea5819df283479a59281bf4d81ad5a9 | refs/heads/master | 2022-11-15T18:39:21.626745 | 2020-07-08T08:06:05 | 2020-07-08T08:06:05 | 278,025,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,591 | h | /*
Opec is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Opec 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 Opec. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef Opec_ACCOUNT_H_
#define Opec_ACCOUNT_H_
#include <utils/base_int.h>
#include <utils/crypto.h>
#include <utils/logger.h>
#include <proto/cpp/chain.pb.h>
#include <utils/entry_cache.h>
#include "proto/cpp/merkeltrie.pb.h"
#include <common/storage.h>
#include "kv_trie.h"
namespace Opec {
struct AssetSort {
bool operator() (const protocol::AssetKey& a, const protocol::AssetKey& b)const{
return a.SerializeAsString() < b.SerializeAsString();
}
};
///////////////////////////////////////////////////////////////////////////////////////////////////
struct StringSort {
bool operator() (const std::string &l, const std::string &r) const {
return l < r;
}
};
class AccountFrm {
public:
typedef std::shared_ptr<AccountFrm> pointer;
//AccountFrm();
AccountFrm(protocol::Account account);
AccountFrm(std::shared_ptr< AccountFrm> account);
~AccountFrm();
void ToJson(Json::Value &result);
void GetAllAssets(std::vector<protocol::AssetStore>& assets);
void GetAllMetaData(std::vector<protocol::KeyPair>& metadata);
std::string Serializer();
bool UnSerializer(const std::string &str);
std::string GetAccountAddress()const;
bool GetAsset(const protocol::AssetKey &asset_key, protocol::AssetStore& result);
void SetAsset(const protocol::AssetStore& result);
bool GetMetaData(const std::string& binkey, protocol::KeyPair& result);
void SetMetaData(const protocol::KeyPair& result);
bool DeleteMetaData(const protocol::KeyPair& dataptr);
protocol::Account &GetProtoAccount() {
return account_info_;
}
protocol::Account ProtocolAccount() const{
return account_info_;
}
int64_t GetAccountNonce() const {
return account_info_.nonce();
}
const int64_t GetProtoMasterWeight() const {
return account_info_.priv().master_weight();
}
const int64_t GetProtoTxThreshold() const {
return account_info_.priv().thresholds().tx_threshold();
}
const int64_t GetTypeThreshold(const protocol::Operation::Type type) const;
void SetProtoMasterWeight(int64_t weight) {
return account_info_.mutable_priv()->set_master_weight(weight);
}
void SetProtoTxThreshold(int64_t threshold) {
return account_info_.mutable_priv()->mutable_thresholds()->set_tx_threshold(threshold);
}
bool UpdateSigner(const std::string &signer, int64_t weight);
bool UpdateTypeThreshold(const protocol::Operation::Type type, int64_t threshold);
void UpdateHash(std::shared_ptr<WRITE_BATCH> batch);
void NonceIncrease();
int64_t GetAccountBalance() const;
bool AddBalance(int64_t amount);
static AccountFrm::pointer CreatAccountFrm(const std::string& account_address, int64_t balance);
public:
template <class T>
struct DataCache{
utils::ChangeAction action_;
T data_;
};
std::map<protocol::AssetKey, DataCache<protocol::AssetStore>, AssetSort> assets_;
std::map<std::string, DataCache<protocol::KeyPair>> metadata_;
private:
protocol::Account account_info_;
};
}
#endif
| [
"coolxw@126.com"
] | coolxw@126.com |
bf5394033fdd3b924c8fdc972240ffc22b218d16 | 4d78988e78a2d2a88230c60c8f0606d95546a7a2 | /ArduinoISP.ino | 4ea322f02cee26a64d03b8139783cf1c273f2b71 | [] | no_license | yvvas/ArduinoISP | 89e2e8af55bcb6c33c3d422eb010abb30607a1b5 | 2b397176d629c892e1c8865abe5fa6997a33beb0 | refs/heads/master | 2021-06-03T07:00:38.295515 | 2016-08-25T02:21:15 | 2016-08-25T02:21:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,939 | ino | // ArduinoISP
// Copyright (c) 2008-2011 Randall Bohn
// If you require a license, see
// http://www.opensource.org/licenses/bsd-license.php
//
// This sketch turns the Arduino into a AVRISP
// using the following arduino pins:
//
// Pin 10 is used to reset the target microcontroller.
//
// By default, the hardware SPI pins MISO, MOSI and SCK pins are used
// to communicate with the target. On all Arduinos, these pins can be found
// on the ICSP/SPI header:
//
// MISO �. . 5V (!) Avoid this pin on Due, Zero...
// SCK . . MOSI
// . . GND
//
// On some Arduinos (Uno,...), pins MOSI, MISO and SCK are the same pins
// as digital pin 11, 12 and 13, respectively. That is why many tutorials
// instruct you to hook up the target to these pins. If you find this wiring
// more practical, have a define USE_OLD_STYLE_WIRING. This will work even
// even when not using an Uno. (On an Uno this is not needed).
//
// Alternatively you can use any other digital pin by configuring software ('BitBanged')
// SPI and having appropriate defines for PIN_MOSI, PIN_MISO and PIN_SCK.
//
// IMPORTANT: When using an Arduino that is not 5V tolerant (Due, Zero, ...)
// as the programmer, make sure to not expose any of the programmer's pins to 5V.
// A simple way to accomplish this is to power the complete system (programmer
// and target) at 3V3.
//
// Put an LED (with resistor) on the following pins:
// 9: Heartbeat - shows the programmer is running
// 8: Error - Lights up if something goes wrong (use red if that makes sense)
// 7: Programming - In communication with the slave
//
#include "Arduino.h"
#undef SERIAL
#define PROG_FLICKER true
// Configure SPI clock (in Hz).
// E.g. for an attiny @128 kHz: the datasheet states that both the high
// and low spi clock pulse must be > 2 cpu cycles, so take 3 cycles i.e.
// divide target f_cpu by 6:
// #define SPI_CLOCK (128000/6)
//
// A clock slow enough for an attiny85 @ 1MHz, is a reasonable default:
#define SPI_CLOCK (1000000/6)
// Select hardware or software SPI, depending on SPI clock.
// Currently only for AVR, for other archs (Due, Zero,...),
// hardware SPI is probably too fast anyway.
#if defined(ARDUINO_ARCH_AVR)
#if SPI_CLOCK > (F_CPU / 128)
#define USE_HARDWARE_SPI
#endif
#endif
// Configure which pins to use:
// The standard pin configuration.
#ifndef ARDUINO_HOODLOADER2
#define RESET 10 // Use pin 10 to reset the target rather than SS
#define LED_HB 9
#define LED_ERR 8
#define LED_PMODE 7
// Uncomment following line to use the old Uno style wiring
// (using pin 11, 12 and 13 instead of the SPI header) on Leonardo, Due...
// #define USE_OLD_STYLE_WIRING
#ifdef USE_OLD_STYLE_WIRING
#define PIN_MOSI 11
#define PIN_MISO 12
#define PIN_SCK 13
#endif
// HOODLOADER2 means running sketches on the atmega16u2
// serial converter chips on Uno or Mega boards.
// We must use pins that are broken out:
#else
#define RESET 4
#define LED_HB 7
#define LED_ERR 6
#define LED_PMODE 5
#endif
// By default, use hardware SPI pins:
#ifndef PIN_MOSI
#define PIN_MOSI MOSI
#endif
#ifndef PIN_MISO
#define PIN_MISO MISO
#endif
#ifndef PIN_SCK
#define PIN_SCK SCK
#endif
// Force bitbanged SPI if not using the hardware SPI pins:
#if (PIN_MISO != MISO) || (PIN_MOSI != MOSI) || (PIN_SCK != SCK)
#undef USE_HARDWARE_SPI
#endif
// Configure the serial port to use.
//
// Prefer the USB virtual serial port (aka. native USB port), if the Arduino has one:
// - it does not autoreset (except for the magic baud rate of 1200).
// - it is more reliable because of USB handshaking.
//
// Leonardo and similar have an USB virtual serial port: 'Serial'.
// Due and Zero have an USB virtual serial port: 'SerialUSB'.
//
// On the Due and Zero, 'Serial' can be used too, provided you disable autoreset.
// To use 'Serial': #define SERIAL Serial
#ifdef SERIAL_PORT_USBVIRTUAL
#define SERIAL SERIAL_PORT_USBVIRTUAL
#else
#define SERIAL Serial
#endif
// Configure the baud rate:
#define BAUDRATE 19200
// #define BAUDRATE 115200
// #define BAUDRATE 1000000
#define HWVER 2
#define SWMAJ 1
#define SWMIN 18
// STK Definitions
#define STK_OK 0x10
#define STK_FAILED 0x11
#define STK_UNKNOWN 0x12
#define STK_INSYNC 0x14
#define STK_NOSYNC 0x15
#define CRC_EOP 0x20 //ok it is a space...
void pulse(int pin, int times);
#ifdef USE_HARDWARE_SPI
#include "SPI.h"
#else
#define SPI_MODE0 0x00
class SPISettings {
public:
// clock is in Hz
SPISettings(uint32_t clock, uint8_t bitOrder, uint8_t dataMode) : clock(clock){
(void) bitOrder;
(void) dataMode;
};
private:
uint32_t clock;
friend class BitBangedSPI;
};
class BitBangedSPI {
public:
void begin() {
digitalWrite(PIN_SCK, LOW);
digitalWrite(PIN_MOSI, LOW);
pinMode(PIN_SCK, OUTPUT);
pinMode(PIN_MOSI, OUTPUT);
pinMode(PIN_MISO, INPUT);
}
void beginTransaction(SPISettings settings) {
pulseWidth = (500000 + settings.clock - 1) / settings.clock;
if (pulseWidth == 0)
pulseWidth = 1;
}
void end() {}
uint8_t transfer (uint8_t b) {
for (unsigned int i = 0; i < 8; ++i) {
digitalWrite(PIN_MOSI, (b & 0x80) ? HIGH : LOW);
digitalWrite(PIN_SCK, HIGH);
delayMicroseconds(pulseWidth);
b = (b << 1) | digitalRead(PIN_MISO);
digitalWrite(PIN_SCK, LOW); // slow pulse
delayMicroseconds(pulseWidth);
}
return b;
}
private:
unsigned long pulseWidth; // in microseconds
};
static BitBangedSPI SPI;
#endif
void setup() {
SERIAL.begin(BAUDRATE);
pinMode(LED_PMODE, OUTPUT);
pulse(LED_PMODE, 2);
pinMode(LED_ERR, OUTPUT);
pulse(LED_ERR, 2);
pinMode(LED_HB, OUTPUT);
pulse(LED_HB, 2);
}
int error = 0;
int pmode = 0;
// address for reading and writing, set by 'U' command
unsigned int here;
uint8_t buff[256]; // global block storage
#define beget16(addr) (*addr * 256 + *(addr+1) )
typedef struct param {
uint8_t devicecode;
uint8_t revision;
uint8_t progtype;
uint8_t parmode;
uint8_t polling;
uint8_t selftimed;
uint8_t lockbytes;
uint8_t fusebytes;
uint8_t flashpoll;
uint16_t eeprompoll;
uint16_t pagesize;
uint16_t eepromsize;
uint32_t flashsize;
}
parameter;
parameter param;
// this provides a heartbeat on pin 9, so you can tell the software is running.
uint8_t hbval = 128;
int8_t hbdelta = 8;
void heartbeat() {
static unsigned long last_time = 0;
unsigned long now = millis();
if ((now - last_time) < 40)
return;
last_time = now;
if (hbval > 192) hbdelta = -hbdelta;
if (hbval < 32) hbdelta = -hbdelta;
hbval += hbdelta;
analogWrite(LED_HB, hbval);
}
static bool rst_active_high;
void reset_target(bool reset) {
digitalWrite(RESET, ((reset && rst_active_high) || (!reset && !rst_active_high)) ? HIGH : LOW);
}
void loop(void) {
// is pmode active?
if (pmode) {
digitalWrite(LED_PMODE, HIGH);
} else {
digitalWrite(LED_PMODE, LOW);
}
// is there an error?
if (error) {
digitalWrite(LED_ERR, HIGH);
} else {
digitalWrite(LED_ERR, LOW);
}
// light the heartbeat LED
heartbeat();
if (SERIAL.available()) {
avrisp();
}
}
uint8_t getch() {
while (!SERIAL.available());
return SERIAL.read();
}
void fill(int n) {
for (int x = 0; x < n; x++) {
buff[x] = getch();
}
}
#define PTIME 30
void pulse(int pin, int times) {
do {
digitalWrite(pin, HIGH);
delay(PTIME);
digitalWrite(pin, LOW);
delay(PTIME);
} while (times--);
}
void prog_lamp(int state) {
if (PROG_FLICKER) {
digitalWrite(LED_PMODE, state);
}
}
uint8_t spi_transaction(uint8_t a, uint8_t b, uint8_t c, uint8_t d) {
SPI.transfer(a);
SPI.transfer(b);
SPI.transfer(c);
return SPI.transfer(d);
}
void empty_reply() {
if (CRC_EOP == getch()) {
SERIAL.print((char)STK_INSYNC);
SERIAL.print((char)STK_OK);
} else {
error++;
SERIAL.print((char)STK_NOSYNC);
}
}
void breply(uint8_t b) {
if (CRC_EOP == getch()) {
SERIAL.print((char)STK_INSYNC);
SERIAL.print((char)b);
SERIAL.print((char)STK_OK);
} else {
error++;
SERIAL.print((char)STK_NOSYNC);
}
}
void get_version(uint8_t c) {
switch (c) {
case 0x80:
breply(HWVER);
break;
case 0x81:
breply(SWMAJ);
break;
case 0x82:
breply(SWMIN);
break;
case 0x93:
breply('S'); // serial programmer
break;
default:
breply(0);
}
}
void set_parameters() {
// call this after reading paramter packet into buff[]
param.devicecode = buff[0];
param.revision = buff[1];
param.progtype = buff[2];
param.parmode = buff[3];
param.polling = buff[4];
param.selftimed = buff[5];
param.lockbytes = buff[6];
param.fusebytes = buff[7];
param.flashpoll = buff[8];
// ignore buff[9] (= buff[8])
// following are 16 bits (big endian)
param.eeprompoll = beget16(&buff[10]);
param.pagesize = beget16(&buff[12]);
param.eepromsize = beget16(&buff[14]);
// 32 bits flashsize (big endian)
param.flashsize = buff[16] * 0x01000000
+ buff[17] * 0x00010000
+ buff[18] * 0x00000100
+ buff[19];
// avr devices have active low reset, at89sx are active high
rst_active_high = (param.devicecode >= 0xe0);
}
void start_pmode() {
// Reset target before driving PIN_SCK or PIN_MOSI
// SPI.begin() will configure SS as output,
// so SPI master mode is selected.
// We have defined RESET as pin 10,
// which for many arduino's is not the SS pin.
// So we have to configure RESET as output here,
// (reset_target() first sets the correct level)
reset_target(true);
pinMode(RESET, OUTPUT);
SPI.begin();
SPI.beginTransaction(SPISettings(SPI_CLOCK, MSBFIRST, SPI_MODE0));
// See avr datasheets, chapter "SERIAL_PRG Programming Algorithm":
// Pulse RESET after PIN_SCK is low:
digitalWrite(PIN_SCK, LOW);
delay(20); // discharge PIN_SCK, value arbitrally chosen
reset_target(false);
// Pulse must be minimum 2 target CPU clock cycles
// so 100 usec is ok for CPU speeds above 20KHz
delayMicroseconds(100);
reset_target(true);
// Send the enable programming command:
delay(50); // datasheet: must be > 20 msec
spi_transaction(0xAC, 0x53, 0x00, 0x00);
pmode = 1;
}
void end_pmode() {
SPI.end();
// We're about to take the target out of reset
// so configure SPI pins as input
pinMode(PIN_MOSI, INPUT);
pinMode(PIN_SCK, INPUT);
reset_target(false);
pinMode(RESET, INPUT);
pmode = 0;
}
void universal() {
uint8_t ch;
fill(4);
ch = spi_transaction(buff[0], buff[1], buff[2], buff[3]);
breply(ch);
}
void flash(uint8_t hilo, unsigned int addr, uint8_t data) {
spi_transaction(0x40 + 8 * hilo,
addr >> 8 & 0xFF,
addr & 0xFF,
data);
}
void commit(unsigned int addr) {
if (PROG_FLICKER) {
prog_lamp(LOW);
}
spi_transaction(0x4C, (addr >> 8) & 0xFF, addr & 0xFF, 0);
if (PROG_FLICKER) {
delay(PTIME);
prog_lamp(HIGH);
}
}
unsigned int current_page() {
if (param.pagesize == 32) {
return here & 0xFFFFFFF0;
}
if (param.pagesize == 64) {
return here & 0xFFFFFFE0;
}
if (param.pagesize == 128) {
return here & 0xFFFFFFC0;
}
if (param.pagesize == 256) {
return here & 0xFFFFFF80;
}
return here;
}
void write_flash(int length) {
fill(length);
if (CRC_EOP == getch()) {
SERIAL.print((char) STK_INSYNC);
SERIAL.print((char) write_flash_pages(length));
} else {
error++;
SERIAL.print((char) STK_NOSYNC);
}
}
uint8_t write_flash_pages(int length) {
int x = 0;
unsigned int page = current_page();
while (x < length) {
if (page != current_page()) {
commit(page);
page = current_page();
}
flash(LOW, here, buff[x++]);
flash(HIGH, here, buff[x++]);
here++;
}
commit(page);
return STK_OK;
}
#define EECHUNK (32)
uint8_t write_eeprom(unsigned int length) {
// here is a word address, get the byte address
unsigned int start = here * 2;
unsigned int remaining = length;
if (length > param.eepromsize) {
error++;
return STK_FAILED;
}
while (remaining > EECHUNK) {
write_eeprom_chunk(start, EECHUNK);
start += EECHUNK;
remaining -= EECHUNK;
}
write_eeprom_chunk(start, remaining);
return STK_OK;
}
// write (length) bytes, (start) is a byte address
uint8_t write_eeprom_chunk(unsigned int start, unsigned int length) {
// this writes byte-by-byte,
// page writing may be faster (4 bytes at a time)
fill(length);
prog_lamp(LOW);
for (unsigned int x = 0; x < length; x++) {
unsigned int addr = start + x;
spi_transaction(0xC0, (addr >> 8) & 0xFF, addr & 0xFF, buff[x]);
delay(45);
}
prog_lamp(HIGH);
return STK_OK;
}
void program_page() {
char result = (char) STK_FAILED;
unsigned int length = 256 * getch();
length += getch();
char memtype = getch();
// flash memory @here, (length) bytes
if (memtype == 'F') {
write_flash(length);
return;
}
if (memtype == 'E') {
result = (char)write_eeprom(length);
if (CRC_EOP == getch()) {
SERIAL.print((char) STK_INSYNC);
SERIAL.print(result);
} else {
error++;
SERIAL.print((char) STK_NOSYNC);
}
return;
}
SERIAL.print((char)STK_FAILED);
return;
}
uint8_t flash_read(uint8_t hilo, unsigned int addr) {
return spi_transaction(0x20 + hilo * 8,
(addr >> 8) & 0xFF,
addr & 0xFF,
0);
}
char flash_read_page(int length) {
for (int x = 0; x < length; x += 2) {
uint8_t low = flash_read(LOW, here);
SERIAL.print((char) low);
uint8_t high = flash_read(HIGH, here);
SERIAL.print((char) high);
here++;
}
return STK_OK;
}
char eeprom_read_page(int length) {
// here again we have a word address
int start = here * 2;
for (int x = 0; x < length; x++) {
int addr = start + x;
uint8_t ee = spi_transaction(0xA0, (addr >> 8) & 0xFF, addr & 0xFF, 0xFF);
SERIAL.print((char) ee);
}
return STK_OK;
}
void read_page() {
char result = (char)STK_FAILED;
int length = 256 * getch();
length += getch();
char memtype = getch();
if (CRC_EOP != getch()) {
error++;
SERIAL.print((char) STK_NOSYNC);
return;
}
SERIAL.print((char) STK_INSYNC);
if (memtype == 'F') result = flash_read_page(length);
if (memtype == 'E') result = eeprom_read_page(length);
SERIAL.print(result);
}
void read_signature() {
if (CRC_EOP != getch()) {
error++;
SERIAL.print((char) STK_NOSYNC);
return;
}
SERIAL.print((char) STK_INSYNC);
uint8_t high = spi_transaction(0x30, 0x00, 0x00, 0x00);
SERIAL.print((char) high);
uint8_t middle = spi_transaction(0x30, 0x00, 0x01, 0x00);
SERIAL.print((char) middle);
uint8_t low = spi_transaction(0x30, 0x00, 0x02, 0x00);
SERIAL.print((char) low);
SERIAL.print((char) STK_OK);
}
//////////////////////////////////////////
//////////////////////////////////////////
////////////////////////////////////
////////////////////////////////////
void avrisp() {
uint8_t ch = getch();
switch (ch) {
case '0': // signon
error = 0;
empty_reply();
break;
case '1':
if (getch() == CRC_EOP) {
SERIAL.print((char) STK_INSYNC);
SERIAL.print("AVR ISP");
SERIAL.print((char) STK_OK);
}
else {
error++;
SERIAL.print((char) STK_NOSYNC);
}
break;
case 'A':
get_version(getch());
break;
case 'B':
fill(20);
set_parameters();
empty_reply();
break;
case 'E': // extended parameters - ignore for now
fill(5);
empty_reply();
break;
case 'P':
if (!pmode)
start_pmode();
empty_reply();
break;
case 'U': // set address (word)
here = getch();
here += 256 * getch();
empty_reply();
break;
case 0x60: //STK_PROG_FLASH
getch(); // low addr
getch(); // high addr
empty_reply();
break;
case 0x61: //STK_PROG_DATA
getch(); // data
empty_reply();
break;
case 0x64: //STK_PROG_PAGE
program_page();
break;
case 0x74: //STK_READ_PAGE 't'
read_page();
break;
case 'V': //0x56
universal();
break;
case 'Q': //0x51
error = 0;
end_pmode();
empty_reply();
break;
case 0x75: //STK_READ_SIGN 'u'
read_signature();
break;
// expecting a command, not CRC_EOP
// this is how we can get back in sync
case CRC_EOP:
error++;
SERIAL.print((char) STK_NOSYNC);
break;
// anything else we will return STK_UNKNOWN
default:
error++;
if (CRC_EOP == getch())
SERIAL.print((char)STK_UNKNOWN);
else
SERIAL.print((char)STK_NOSYNC);
}
}
| [
"contact@acidhub.click"
] | contact@acidhub.click |
7300f2a59f7a3c2876ddda4141acddc9dad1a5a9 | e78464261bff8ca968d85c553cc04f057a628e0f | /ssl/blum_goldwasser.cpp | ee3f89d2e42d50e1c17fddccab67d204233cda1b | [] | no_license | qizhu8/CryptoFinalProject | aa7bad309527ef25a297db66a56781fccf63994b | 01b5655ec9e7424a4b94394b71643bdbf29bc795 | refs/heads/master | 2020-04-09T14:32:58.672554 | 2018-12-04T01:13:16 | 2018-12-04T01:13:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,568 | cpp | #include "blum_goldwasser.h"
#include <utility>
//Conversion functions that would have been way cleaner in a CharStream :^)
std::vector<uint8_t> vla_vec2vector(std::vector<uint8_t> &&vec) {
std::vector<uint8_t> bytes;
auto size = vec.size();
bytes.push_back(static_cast<uint8_t>(size & 0xFF));
bytes.push_back(static_cast<uint8_t>((size >> 8) & 0xFF));
bytes.push_back(static_cast<uint8_t>((size >> 16) & 0xFF));
bytes.push_back(static_cast<uint8_t>((size >> 24) & 0xFF));
std::move(vec.begin(), vec.end(), std::back_inserter(bytes));
return bytes;
}
std::vector<uint8_t> bg_enc2vector(const std::vector<mpz> &msg, const mpz &Nm) {
std::vector<uint8_t> bytes;
std::vector<uint8_t> Nm_vec = vla_vec2vector(mpz2vector(Nm));
std::move(Nm_vec.begin(), Nm_vec.end(), std::back_inserter(bytes));
for (const mpz &b : msg) {
std::vector<uint8_t> b_vec = vla_vec2vector(mpz2vector(b));
std::move(b_vec.begin(), b_vec.end(), std::back_inserter(bytes));
}
return bytes;
}
mpz vector_eat_vla_mpz(std::vector<uint8_t> &vec) {
size_t size = 0;
size |= (vec.front()); vec.erase(vec.begin());
size |= (vec.front()) << 8; vec.erase(vec.begin());
size |= (vec.front()) << 16; vec.erase(vec.begin());
size |= (vec.front()) << 24; vec.erase(vec.begin());
std::vector<uint8_t> bytes;
std::move(vec.begin(), vec.begin() + size, std::back_inserter(bytes));
vec.erase(vec.begin(), vec.begin() + size); //Because somehow move doesn't do this
return vector2mpz(bytes);
}
void vector2bg_enc(std::vector<uint8_t> msg, std::vector<mpz> &c, mpz &Nm) {
Nm = vector_eat_vla_mpz(msg);
while (!msg.empty()) {
c.push_back(vector_eat_vla_mpz(msg));
}
}
std::vector<uint8_t> bg_encrypt(const std::vector<uint8_t> &vmsg, const bg_pubkey &key) {
mpz m = vector2mpz(vmsg);
mpz Nm = vmsg.size() * 8; //Assuming 8 bits per byte like a champion
mpz n = array2mpz(key.n, BG_KEY_LENGTH * 2);
mpz k = (mpz)mpz_log2(n);
mpz h = (mpz)mpz_log2(k);
mpz t_mpz;
mpz_cdiv_q(t_mpz.get_mpz_t(), Nm.get_mpz_t(), h.get_mpz_t());
unsigned long t = t_mpz.get_ui();
//Generate random r, x_0 = r^2 mod N
mpz r;
{
FILE *devrandom = fopen("/dev/urandom", "rb");
uint8_t randoms[16];
fread(randoms, sizeof(uint8_t), 16, devrandom);
fclose(devrandom);
mpz random = array2mpz(randoms, 16);
gmp_randstate_t rs;
gmp_randinit_default(rs);
gmp_randseed(rs, random.get_mpz_t());
mpz_urandomm(r.get_mpz_t(), rs, n.get_mpz_t());
gmp_randclear(rs);
}
mpz x_0 = modpow(r, 2, n);
//Lowest h bits
mpz h_mask;
for (mp_bitcnt_t i = 0; i < h; i ++) {
mpz_setbit(h_mask.get_mpz_t(), i);
}
std::vector<mpz> c;
std::vector<mpz> x;
x.push_back(x_0);
for (uint64_t i = 1; i <= t; i ++) {
mpz x_i = (x[i - 1] * x[i - 1]) % n;
x.push_back(x_i);
mpz p_i = x_i & h_mask;
mpz shift = mpz{(unsigned int)(t - i)} * h;
mpz m_i = (m >> shift.get_ui()) & h_mask;
mpz c_i = p_i ^ m_i;
c.push_back(c_i);
}
mpz x_t_plus_1 = (x[t] * x[t]) % n;
c.push_back(x_t_plus_1);
return bg_enc2vector(c, Nm);
}
std::pair<mpz, mpz> egcd(mpz a, mpz b) {
mpz a0 = 1, a1 = 0, b0 = 0, b1 = 1, q;
while (true) {
q = a / b;
a = a % b;
a0 = a0 - q * a1;
b0 = b0 - q * b1;
if (a == 0) {
return std::pair<mpz, mpz>{a1, b1};
}
q = b / a;
b = b % a;
a1 = a1 - q * a0;
b1 = b1 - q * b0;
if (b == 0) {
return std::pair<mpz, mpz>{a0, b0};
}
}
}
std::vector<uint8_t> bg_decrypt(const std::vector<uint8_t> &msg, const bg_privkey &key) {
mpz Nm;
std::vector<mpz> c;
vector2bg_enc(msg, c, Nm);
mpz p = array2mpz(key.p, BG_KEY_LENGTH);
mpz q = array2mpz(key.q, BG_KEY_LENGTH);
std::pair<mpz, mpz> ab = egcd(p, q);
mpz a = ab.first;
mpz b = ab.second;
mpz n = p * q;
mpz k = (mpz)mpz_log2(n);
mpz h = (mpz)mpz_log2(k);
mpz t_mpz;
mpz_cdiv_q(t_mpz.get_mpz_t(), Nm.get_mpz_t(), h.get_mpz_t());
unsigned long t = t_mpz.get_ui();
//Lowest h bits
mpz h_mask;
for (mp_bitcnt_t i = 0; i < h; i ++) {
mpz_setbit(h_mask.get_mpz_t(), i);
}
mpz d_1 = modpow((p + 1)/4, t + 1, p - 1);
mpz d_2 = modpow((q + 1)/4, t + 1, q - 1);
mpz x_t_plus_1 = c[t];
mpz u = modpow(x_t_plus_1, d_1, p);
mpz v = modpow(x_t_plus_1, d_2, q);
mpz x_0 = ((mpz)v * a * (mpz)p + (mpz)u * b * (mpz)q) % n;
mpz m;
std::vector<mpz> x;
x.push_back(x_0);
for (uint64_t i = 1; i <= t; i ++) {
mpz x_i = (x[i - 1] * x[i - 1]) % n;
x.push_back(x_i);
mpz p_i = x_i & h_mask;
mpz c_i = c[i - 1];
mpz m_i = (p_i ^ c_i) & h_mask;
mpz shift = mpz{(unsigned int)(t - i)} * h;
m |= m_i << shift.get_ui();
}
return mpz2vector(m);
}
| [
"couleeapps@gmail.com"
] | couleeapps@gmail.com |
bf86d4585da3252c91137f9ca15b96e20b7535a2 | 2bcdd74a4e30563301e72c36d7f180e455b95593 | /managem/mgcombine-exact.cpp | 14d9f3bfa91f6acd7fc5def344ce3331f0080445 | [
"MIT"
] | permissive | gemforce-team/gemforce | 99df5343a642b9a66a7220bbff32739482d36d73 | 10cb44d7d391c59bc145fc0f2371b53f023b3444 | refs/heads/master | 2022-06-16T17:22:47.166798 | 2022-05-29T23:22:04 | 2022-05-29T23:22:55 | 24,009,618 | 29 | 10 | null | 2014-10-26T21:20:28 | 2014-09-14T00:17:29 | C | UTF-8 | C++ | false | false | 493 | cpp | #include <cstdio>
#include <cstdlib>
#include "managem_utils.h"
#include "2D_utils.h"
#include "cmdline_options.h"
#include "workers.h"
int main(int argc, char** argv)
{
cmdline_options options = cmdline_options();
options.has_printing();
options.has_extra_search();
options.has_pool_zero(1);
if(!options.parse_args(argc, argv))
return 1;
auto fill_pool = fill_pool_2D_selector<SIZES, 0, gem_OB>(options.target.pool_zero);
worker_combine<gem_OB>(options, fill_pool);
return 0;
}
| [
"crudepatate@gmail.com"
] | crudepatate@gmail.com |
e90d993f293d7d25812623c910d59da40e96045f | 19907e496cfaf4d59030ff06a90dc7b14db939fc | /POC/oracle_dapp/node_modules/wrtc/third_party/webrtc/include/chromium/src/chromeos/network/network_connection_handler.h | fc38ce39cbb8911fc10ab1fb2d0b9753b0a1d420 | [
"BSD-2-Clause"
] | permissive | ATMatrix/demo | c10734441f21e24b89054842871a31fec19158e4 | e71a3421c75ccdeac14eafba38f31cf92d0b2354 | refs/heads/master | 2020-12-02T20:53:29.214857 | 2017-08-28T05:49:35 | 2017-08-28T05:49:35 | 96,223,899 | 8 | 4 | null | 2017-08-28T05:49:36 | 2017-07-04T13:59:26 | JavaScript | UTF-8 | C++ | false | false | 10,568 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_NETWORK_NETWORK_CONNECTION_HANDLER_H_
#define CHROMEOS_NETWORK_NETWORK_CONNECTION_HANDLER_H_
#include <map>
#include <set>
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chromeos/cert_loader.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/dbus_method_call_status.h"
#include "chromeos/login/login_state.h"
#include "chromeos/network/network_connection_observer.h"
#include "chromeos/network/network_handler.h"
#include "chromeos/network/network_handler_callbacks.h"
#include "chromeos/network/network_state_handler_observer.h"
namespace chromeos {
class NetworkState;
// The NetworkConnectionHandler class is used to manage network connection
// requests. This is the only class that should make Shill Connect calls.
// It handles the following steps:
// 1. Determine whether or not sufficient information (e.g. passphrase) is
// known to be available to connect to the network.
// 2. Request additional information (e.g. user data which contains certificate
// information) and determine whether sufficient information is available.
// 3. Possibly configure the network certificate info (tpm slot and pkcs11 id).
// 4. Send the connect request.
// 5. Wait for the network state to change to a non connecting state.
// 6. Invoke the appropriate callback (always) on success or failure.
//
// NetworkConnectionHandler depends on NetworkStateHandler for immediately
// available State information, and NetworkConfigurationHandler for any
// configuration calls.
class CHROMEOS_EXPORT NetworkConnectionHandler
: public LoginState::Observer,
public CertLoader::Observer,
public NetworkStateHandlerObserver,
public base::SupportsWeakPtr<NetworkConnectionHandler> {
public:
// Constants for |error_name| from |error_callback| for Connect.
// No network matching |service_path| is found (hidden networks must be
// configured before connecting).
static const char kErrorNotFound[];
// Already connected to the network.
static const char kErrorConnected[];
// Already connecting to the network.
static const char kErrorConnecting[];
// The passphrase is missing or invalid.
static const char kErrorPassphraseRequired[];
// The passphrase is incorrect.
static const char kErrorBadPassphrase[];
// The network requires a cert and none exists.
static const char kErrorCertificateRequired[];
// The network had an authentication error, indicating that additional or
// different authentication information is required.
static const char kErrorAuthenticationRequired[];
// Additional configuration is required.
static const char kErrorConfigurationRequired[];
// Configuration failed during the configure stage of the connect flow.
static const char kErrorConfigureFailed[];
// An unexpected DBus or Shill error occurred while connecting.
static const char kErrorConnectFailed[];
// An unexpected DBus or Shill error occurred while disconnecting.
static const char kErrorDisconnectFailed[];
// A new network connect request canceled this one.
static const char kErrorConnectCanceled[];
// Constants for |error_name| from |error_callback| for Disconnect.
static const char kErrorNotConnected[];
// Certificate load timed out.
static const char kErrorCertLoadTimeout[];
// Trying to configure an unmanged network but policy prohibits that
static const char kErrorUnmanagedNetwork[];
~NetworkConnectionHandler() override;
void AddObserver(NetworkConnectionObserver* observer);
void RemoveObserver(NetworkConnectionObserver* observer);
// ConnectToNetwork() will start an asynchronous connection attempt.
// On success, |success_callback| will be called.
// On failure, |error_callback| will be called with |error_name| one of the
// constants defined above.
// |error_message| will contain an additional error string for debugging.
// If |check_error_state| is true, the current state of the network is
// checked for errors, otherwise current state is ignored (e.g. for recently
// configured networks or repeat attempts).
void ConnectToNetwork(const std::string& service_path,
const base::Closure& success_callback,
const network_handler::ErrorCallback& error_callback,
bool check_error_state);
// DisconnectNetwork() will send a Disconnect request to Shill.
// On success, |success_callback| will be called.
// On failure, |error_callback| will be called with |error_name| one of:
// kErrorNotFound if no network matching |service_path| is found.
// kErrorNotConnected if not connected to the network.
// kErrorDisconnectFailed if a DBus or Shill error occurred.
// |error_message| will contain and additional error string for debugging.
void DisconnectNetwork(const std::string& service_path,
const base::Closure& success_callback,
const network_handler::ErrorCallback& error_callback);
// Returns true if ConnectToNetwork has been called with |service_path| and
// has not completed (i.e. success or error callback has been called).
bool HasConnectingNetwork(const std::string& service_path);
// Returns true if there are any pending connect requests.
bool HasPendingConnectRequest();
// NetworkStateHandlerObserver
void NetworkListChanged() override;
void NetworkPropertiesUpdated(const NetworkState* network) override;
// LoginState::Observer
void LoggedInStateChanged() override;
// CertLoader::Observer
void OnCertificatesLoaded(const net::CertificateList& cert_list,
bool initial_load) override;
private:
friend class NetworkHandler;
friend class NetworkConnectionHandlerTest;
struct ConnectRequest;
NetworkConnectionHandler();
void Init(NetworkStateHandler* network_state_handler,
NetworkConfigurationHandler* network_configuration_handler,
ManagedNetworkConfigurationHandler*
managed_network_configuration_handler);
ConnectRequest* GetPendingRequest(const std::string& service_path);
// Callback from Shill.Service.GetProperties. Parses |properties| to verify
// whether or not the network appears to be configured. If configured,
// attempts a connection, otherwise invokes error_callback from
// pending_requests_[service_path]. |check_error_state| is passed from
// ConnectToNetwork(), see comment for info.
void VerifyConfiguredAndConnect(bool check_error_state,
const std::string& service_path,
const base::DictionaryValue& properties);
bool IsNetworkProhibitedByPolicy(const std::string& type,
const std::string& guid,
const std::string& profile_path);
// Queues a connect request until certificates have loaded.
void QueueConnectRequest(const std::string& service_path);
// Checks to see if certificates have loaded and if not, cancels any queued
// connect request and notifies the user.
void CheckCertificatesLoaded();
// Handles connecting to a queued network after certificates are loaded or
// handle cert load timeout.
void ConnectToQueuedNetwork();
// Calls Shill.Manager.Connect asynchronously.
void CallShillConnect(const std::string& service_path);
// Handles failure from ConfigurationHandler calls.
void HandleConfigurationFailure(
const std::string& service_path,
const std::string& error_name,
scoped_ptr<base::DictionaryValue> error_data);
// Handles success or failure from Shill.Service.Connect.
void HandleShillConnectSuccess(const std::string& service_path);
void HandleShillConnectFailure(const std::string& service_path,
const std::string& error_name,
const std::string& error_message);
// Note: |service_path| is passed by value here, because in some cases
// the value may be located in the map and then it can be deleted, producing
// a reference to invalid memory.
void CheckPendingRequest(const std::string service_path);
void CheckAllPendingRequests();
// Notify caller and observers that the connect request succeeded.
void InvokeConnectSuccessCallback(const std::string& service_path,
const base::Closure& success_callback);
// Look up the ConnectRequest for |service_path| and call
// InvokeConnectErrorCallback.
void ErrorCallbackForPendingRequest(const std::string& service_path,
const std::string& error_name);
// Notify caller and observers that the connect request failed.
// |error_name| will be one of the kError* messages defined above.
void InvokeConnectErrorCallback(
const std::string& service_path,
const network_handler::ErrorCallback& error_callback,
const std::string& error_name);
// Calls Shill.Manager.Disconnect asynchronously.
void CallShillDisconnect(
const std::string& service_path,
const base::Closure& success_callback,
const network_handler::ErrorCallback& error_callback);
// Handle success from Shill.Service.Disconnect.
void HandleShillDisconnectSuccess(const std::string& service_path,
const base::Closure& success_callback);
base::ObserverList<NetworkConnectionObserver, true> observers_;
// Local references to the associated handler instances.
CertLoader* cert_loader_;
NetworkStateHandler* network_state_handler_;
NetworkConfigurationHandler* configuration_handler_;
ManagedNetworkConfigurationHandler* managed_configuration_handler_;
// Map of pending connect requests, used to prevent repeated attempts while
// waiting for Shill and to trigger callbacks on eventual success or failure.
std::map<std::string, ConnectRequest> pending_requests_;
scoped_ptr<ConnectRequest> queued_connect_;
// Track certificate loading state.
bool logged_in_;
bool certificates_loaded_;
base::TimeTicks logged_in_time_;
DISALLOW_COPY_AND_ASSIGN(NetworkConnectionHandler);
};
} // namespace chromeos
#endif // CHROMEOS_NETWORK_NETWORK_CONNECTION_HANDLER_H_
| [
"steven.jun.liu@qq.com"
] | steven.jun.liu@qq.com |
1e47c550b3fa17ce7d87fee20fe1a3441bb590e0 | b207b13659b33b7d6b7b721fc7db811465e6d932 | /old2/plugins/simpler.h | 7a02c3a294316df6b6eb39e838aaa4a1a9458fc9 | [] | no_license | BackupTheBerlios/reshaked-svn | c99570088cb79a2b1900115a3d1f5a9c095f59d5 | d9a6b614b3d8aa486d8b5bf05e46fe564476dae4 | refs/heads/master | 2020-06-02T18:17:32.828688 | 2008-08-20T17:28:16 | 2008-08-20T17:28:16 | 40,818,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,931 | h | //
// C++ Interface: simpler
//
// Description:
//
//
// Author: red <red@killy>, (C) 2006
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef RESHAKEDSIMPLER_H
#define RESHAKEDSIMPLER_H
#include "engine/sound_plugin.h"
#include "dsp/midi_synth.h"
#include "dsp/sample.h"
#include "dsp/adsr.h"
namespace ReShaked {
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class Simpler : public SoundPlugin {
enum {
FRAC_BITS=12, //work with 12 bits of fixed point precision
MAX_CHANS=4,
MAX_ENV_STAGE_SECONDS=9
};
AudioPlug *output_plug;
struct Data {
Sample sample;
LocalProperty attack;
LocalProperty decay;
LocalProperty sustain;
LocalProperty release;
LocalProperty pan;
LocalProperty depth;
};
class Voice : public MidiSynth::Voice {
bool done;
double cycles;
float prev_vol[MAX_CHANS]; //previous volumes
Data *data;
ADSR adsr;
bool first_mix;
void set_volumes_from_pan(float *p_to);
public:
virtual void event(Event p_event);
virtual void process(int p_frames);
virtual float priority(); ///< 1 is max priority, 0 means it finished
Voice(Data *data);
};
Data data;
MidiSynth *midi_synth;
void reset();
void save(TreeSaver *p_saver);
void load(TreeLoader *p_loader);
public:
static const SoundPluginInfo *create_info();
/* Plugs */
int get_input_plug_count();
int get_output_plug_count();
AudioPlug *get_input_plug(int p_index);
AudioPlug *get_output_plug(int p_index);
/* Port Info */
int get_port_count();
Property& get_port(int p_index);
PortType get_port_type(int p_index);
/* Setting up */
void set_mixing_rate(float p_mixing_rate);
/* Processing */
void process(int p_frames);
Sample& get_sample();
Simpler(const SoundPluginInfo *p_info,int p_channels);
~Simpler();
};
}
#endif
| [
"reduz@f29b5cec-baf9-0310-81f7-bdff227380de"
] | reduz@f29b5cec-baf9-0310-81f7-bdff227380de |
e3a7d90dc86045116b66c865bbd10a833ef52643 | a0f781969ec342ada08a0e780213e25d3a5ba3cc | /weekend/hittable_list.h | c483a0fca6016d7f0aaf0efabcf5526fabc59b55 | [] | no_license | WT26/weekend | 7b7374d274ff820776b0e279f8b50269527a346a | 6f2673acdce365f82f14745632c2354290ba0bda | refs/heads/main | 2023-07-19T03:40:32.389882 | 2021-09-13T09:21:19 | 2021-09-13T09:21:19 | 404,369,425 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052 | h | #ifndef HITTABLE_LIST_H
#define HITTABLE_LIST_H
#include "hittable.h"
#include <memory>
#include <vector>
using std::shared_ptr;
using std::make_shared;
class hittable_list : public hittable {
public:
hittable_list() {}
hittable_list(shared_ptr<hittable> object) { add(object); }
void clear() { objects.clear(); }
void add(shared_ptr<hittable> object) { objects.push_back(object); }
virtual bool hit(
const ray& r, double t_min, double t_max, hit_record& rec) const override;
public:
std::vector<shared_ptr<hittable>> objects;
};
bool hittable_list::hit(const ray& r, double t_min, double t_max, hit_record& rec) const {
hit_record temp_rec;
bool hit_anything = false;
auto closest_so_far = t_max;
for (const auto& object : objects) {
if (object->hit(r, t_min, closest_so_far, temp_rec)) {
hit_anything = true;
closest_so_far = temp_rec.t;
rec = temp_rec;
}
}
return hit_anything;
}
#endif
| [
"joel@DESKTOP-TORPGTD.localdomain"
] | joel@DESKTOP-TORPGTD.localdomain |
98fc7e117d3e21cbded29dfd03b6372bd5c40819 | 54001b746c70dff858b0b6310ab65958d0b2f7f1 | /Thesis/RPGWithNoCombat/Code/Game/Collision/CircleCollision.hpp | 704d09e20c684affba77192dad4e37ba97190dbe | [] | no_license | atbaird/ProceduralSystemsForNonCombatRPG | 024bccb62d997f430d8c5283d837cddfb386ff95 | 70ae98a38f89e74339b46422ff6ab02a9a584f9b | refs/heads/master | 2021-01-20T13:27:36.642071 | 2017-05-06T23:20:03 | 2017-05-06T23:20:03 | 90,496,215 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 479 | hpp | #pragma once
#ifndef CIRCLECOLLISION_HPP
#define CIRCLECOLLISION_HPP
#include "Game/Collision/Collision.hpp"
class CircleCollision : public Collision
{
private:
protected:
float m_radius = 0.45f;
public:
//Constructors
CircleCollision();
virtual ~CircleCollision();
//Setters
void SetRadius(float radius);
//Getters
float GetRadius() const;
//operations
virtual bool CheckIfPointInCollision(const Vector2& point, const Vector2& myCenter) const override;
};
#endif | [
"atbaird@smu.edu"
] | atbaird@smu.edu |
cfc26f149d1e622017f730883cfd098139765561 | a301c2312197e7acda7a4f1b315e95cf01d1cb1d | /GameEngine/GameEngine.cpp | 46e150acec32d5c45a2565dfc0a500d05f6e91a6 | [] | no_license | acaskanette/MazeGame | 393e60751d8a13a43f200209a9c311fb09645145 | 22728d539226723a7a1421ef15dbd7eb1133ccbb | refs/heads/master | 2021-01-17T14:25:41.169296 | 2016-08-09T15:50:49 | 2016-08-09T15:50:49 | 52,488,275 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,196 | cpp | #include "GameEngine.h"
#include <GL/glew.h>
#include <GLM/glm.hpp>
#include "LogManager.h"
void GameEngine::Run() {
Initialize();
GameTime gameTime;
gameTime.startTime = (int)SDL_GetTicks() / 1000.0F;
int frameTicks = 0, lastTicks = 0;
// Game Loop
while (m_state != GameState::EXIT) {
// Get time at start of frame
lastTicks = frameTicks;
frameTicks = (int)SDL_GetTicks();
gameTime.time = (frameTicks / 1000.0F) - gameTime.startTime;
gameTime.unscaledDeltaTime = (frameTicks - lastTicks) / 1000.0F;
gameTime.deltaTime = gameTime.unscaledDeltaTime * gameTime.timeScale;
SDL_Event e;
switch (m_input->Update(e)) {
case 1:
Exit();
break;
case 2:
ResizeWindow(e.window.data1, e.window.data2);
break;
case 0:
default:
break;
}
Update(gameTime);
Prerender();
Render();
Postrender();
// TODO: Implement frame limiting with Clock & Timer, OR implement SDL_GetTicks into Clock & Timer instead of Windows functions
// Limit FPS
float desiredFPS = 1000.0F / 60.0F;
float endTicks = (float)SDL_GetTicks() - frameTicks;
if (desiredFPS > endTicks)
SDL_Delay((Uint32)(desiredFPS - endTicks));
}
// Shutdown procedure
if (m_scene)
delete m_scene;
if (m_renderer)
delete m_renderer;
m_resources->DestroyResourceManager(m_resources);
m_input->DestroyInputManager(m_input);
SDL_Quit();
}
void GameEngine::Exit() {
m_state = GameState::EXIT;
}
void GameEngine::Initialize() {
// Initialize SDL
if (SDL_Init(SDL_INIT_EVERYTHING) == -1)
LogManager::GetInstance()->LogFatal("Failed to initialize SDL: " + std::string(SDL_GetError()));
GLfloat windowWidth = 800;
GLfloat windowHeight = 600;
// Create an SDL window with OpenGL enabled
m_window = SDL_CreateWindow("Game Engine Assignment", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, windowWidth, windowHeight, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE);
if (m_window == nullptr)
LogManager::GetInstance()->LogFatal("SDL window could not be created.");
// Create the OpenGL context
SDL_GLContext context = SDL_GL_CreateContext(m_window);
if (context == nullptr)
LogManager::GetInstance()->LogFatal("SDL GL context could not be created.");
// Check the OpenGL version
LogManager::GetInstance()->LogInfo("*** OpenGL Version: " + std::string((const char*)glGetString(GL_VERSION)) + " ***\n");
// Set the background color to black (default)
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
// Enable double buffering
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
// Enable vsync
SDL_GL_SetSwapInterval(0);
// Enable depth testing
glEnable(GL_DEPTH_TEST);
// Enable alpha blend
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// Create the resource manager
m_resources = ResourceManager::GetInstance();
// Create the input manager
m_input = InputManager::GetInstance();
// Create the renderer and initialize the shader program
m_renderer = new OpenGLRenderer();
m_renderer->InitShaders("shaders/shader.vert", "shaders/shader.frag");
// Create the main camera
m_mainCamera = new Camera(m_renderer, windowWidth, windowHeight);
// Create the scene graph and add the main camera to it
m_scene = new SceneGraph();
m_scene->Add(m_mainCamera);
}
void GameEngine::Prerender() {
glClearDepth(1.0); // Set depth to 1.0
glClearColor(0.05f, 0.05f, 0.05f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear the color and depth buffer
}
void GameEngine::Postrender() {
SDL_GL_SwapWindow(m_window);
}
void GameEngine::Add(GameObject* gameObject, GameObject* parent) {
if (parent) {
parent->AddChild(gameObject);
} else
m_scene->Add(gameObject);
}
void GameEngine::Remove(GameObject* gameObject) {
gameObject->GetParent()->RemoveChild(gameObject);
}
void GameEngine::ResizeWindow(GLfloat newWidth, GLfloat newHeight) {
m_mainCamera->ResizeWindow(newWidth, newHeight);
}
const GLfloat& GameEngine::GetWindowWidth() {
return m_mainCamera->GetWindowWidth();
}
const GLfloat& GameEngine::GetWindowHeight() {
return m_mainCamera->GetWindowHeight();
} | [
"MisterMiao@users.noreply.github.com"
] | MisterMiao@users.noreply.github.com |
c04fc2dba945f1ff7f7aa66f923858f9e4bdd4dc | 23d8f23ac25bbffc92c75aee30e62e331b708147 | /viral-advertising.cpp | 90d610f07dc3082f2d354ff82c208e57f754379e | [] | no_license | utupointko/hacker-rank-problems | 3696dddefe284a115324a8939319c9e097e7f4c4 | 48e88184846b0f420d336c0045f3a328f09e6bf4 | refs/heads/master | 2023-03-13T03:58:45.095234 | 2021-03-07T01:45:16 | 2021-03-07T01:45:16 | 336,063,818 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 232 | cpp | int viralAdvertising(int n)
{
int cumulative = 0, shared = 5;
for (int i = 0; i < n; i++)
{
int liked = floor(shared / 2);
cumulative += liked;
shared = liked * 3;
}
return cumulative;
}
| [
"arslan.abdizhalilov@gmail.com"
] | arslan.abdizhalilov@gmail.com |
4676c7c3e751f05ede1fafae6420fcdc3ad87142 | 208954fd3dbf8e674e89ad70ba266a432f66a2b8 | /src/calcserver.cpp | 336ccffbf510e3152fb42612faf43c8db63f4ad1 | [] | no_license | letrthong/gsoap | ebe896f0a9a0402098a06b8f02cbdbee33870e65 | d462ce608ca6492314b4c163962bea1c29006e18 | refs/heads/master | 2021-01-13T16:59:59.941534 | 2016-12-20T18:36:38 | 2016-12-20T18:36:38 | 76,978,762 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,889 | cpp |
#include "soapcalcService.h"
#include "calc.nsmap"
int main(int argc, char **argv)
{
calcService calc;
if (argc < 2)
calc.serve(); /* serve as CGI application */
else
{
int port = atoi(argv[1]);
if (!port)
{
fprintf(stderr, "Usage: calcserver++ <port>\n");
exit(0);
}
/* run iterative server on port until fatal error */
if (calc.run(port))
{
calc.soap_stream_fault(std::cerr);
exit(-1);
}
}
return 0;
}
int calcService::add(double a, double b, double &result)
{
printf("calcService:%lf+%lf\n", a,b);
result = a + b;
return SOAP_OK;
}
int calcService::sub(double a, double b, double &result)
{
result = a - b;
return SOAP_OK;
}
int calcService::mul(double a, double b, double &result)
{
printf("calcService::mul\n");
result = a * b;
return SOAP_OK;
}
int calcService::div(double a, double b, double &result)
{
if (b)
{
result = a / b;
}
else
{
//char *s = (char*)soap_malloc(this, 1024);
// (SOAP_SNPRINTF(s, 1024, 100), "<error xmlns=\"http://tempuri.org/\">Can't divide %f by %f</error>", a, b);
//return soap_senderfault("Division by zero", s);
return soap_senderfault("Division by zero", "");
}
return SOAP_OK;
}
int calcService::pow(double a, double b, double &result)
{
result = ::pow(a, b);
if (soap_errno == EDOM) /* soap_errno is like errno, but compatible with Win32 */
{
//char *s = (char*)soap_malloc(this, 1024);
//(SOAP_SNPRINTF(s, 1024, 100), "<error xmlns=\"http://tempuri.org/\">Can't take power of %f to %f</error>", a, b);
//return soap_senderfault("Power function domain error", s);
return soap_senderfault("Power function domain error", "");
}
return SOAP_OK;
}
| [
"letrthong@gamil.com"
] | letrthong@gamil.com |
66d8dbcefada7088eeca2781814a23a429ed8922 | 14582f8c74c28d346399f877b9957d0332ba1c3c | /branches/pstade_1_03_5_head/pstade_subversive/pstade/oven/initial_values.hpp | d5ac976035f8d2089cad76ebc4e5c1256d163890 | [] | no_license | svn2github/p-stade | c7b421be9eeb8327ddd04d3cb36822ba1331a43e | 909b46567aa203d960fe76055adafc3fdc48e8a5 | refs/heads/master | 2016-09-05T22:14:09.460711 | 2014-08-22T08:16:11 | 2014-08-22T08:16:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,203 | hpp | #ifndef BOOST_PP_IS_ITERATING
#ifndef PSTADE_OVEN_INITIAL_VALUES_HPP
#define PSTADE_OVEN_INITIAL_VALUES_HPP
// PStade.Oven
//
// Copyright Shunsuke Sogame 2005-2007.
// 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)
// What:
//
// Simpler/faster version of 'boost::assign::cref_list_of'.
// Precondition: A2-AN must be convertible to A1.
// References:
//
// [1] Bjarne Stroustrup and Gabriel Dos Reis, Initializer Lists, 2006.
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2100.pdf
// [2] Thorsten Ottosen, Boost.Assign, 2002-2004.
// http://www.boost.org/libs/assign/doc/index.html
#include <cstddef> // size_t
#include <boost/array.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/iteration/iterate.hpp>
#include <boost/preprocessor/repetition/enum_binary_params.hpp>
#include <boost/preprocessor/repetition/enum_params.hpp>
#include <boost/type.hpp>
#include <pstade/constant.hpp>
#include <pstade/pass_by.hpp>
#include <pstade/preprocessor.hpp>
#include <pstade/provide_sig.hpp>
#include <pstade/use_default.hpp>
#include "./concepts.hpp"
#include "./copy_range.hpp"
#if !defined(PSTADE_OVEN_INITIAL_VALUES_MAX_ARITY)
#define PSTADE_OVEN_INITIAL_VALUES_MAX_ARITY 20
#endif
namespace pstade { namespace oven {
namespace initial_values_detail {
template< class Value, std::size_t N >
struct return_range
{
// Prefer 'boost::array' to built-in array;
// If 'To' also is 'boost::array', the initialization can be
// efficient because 'copy_range' can return directly.
boost::array<Value, N> m_array;
// convertible to CopyableRange
template< class Range >
operator Range() const
{
PSTADE_CONCEPT_ASSERT((Copyable<Range>));
return oven::copy_range<Range>(m_array);
}
// range implementation
typedef Value const *iterator;
typedef iterator const_iterator;
typedef std::size_t size_type;
iterator begin() const
{
return m_array.data();
}
iterator end() const
{
return m_array.data() + N;
}
size_type size() const
{
return N;
}
};
// 'return_range' also is CopyableRange.
template< class Value, std::size_t N, class From > inline
return_range<Value, N> pstade_oven_copy_range(boost::type< return_range<Value, N> >, From& from)
{
return_range<Value, N> r = { oven::copy_range< boost::array<Value, N> >(from) };
return r;
}
} // namespace initial_values_detail
template< class Value = boost::use_default >
struct op_initial_values :
provide_sig
{
template< class FunCall >
struct result;
// 1ary-
#define BOOST_PP_ITERATION_PARAMS_1 (3, (1, PSTADE_OVEN_INITIAL_VALUES_MAX_ARITY, <pstade/oven/initial_values.hpp>))
#include BOOST_PP_ITERATE()
};
PSTADE_CONSTANT(initial_values, (op_initial_values<>))
} } // namespace pstade::oven
#endif
#else
#define n BOOST_PP_ITERATION()
private:
template< BOOST_PP_ENUM_PARAMS(n, class A) >
struct BOOST_PP_CAT(result, n)
{
typedef
initial_values_detail::return_range<
typename use_default_eval_to< Value, pass_by_value<A0> >::type, n
> const
type;
};
public:
template< class Fun, BOOST_PP_ENUM_PARAMS(n, class A) >
struct result<Fun(BOOST_PP_ENUM_PARAMS(n, A))> :
BOOST_PP_CAT(result, n)<BOOST_PP_ENUM_PARAMS(n, A)>
{ };
template< BOOST_PP_ENUM_PARAMS(n, class A) >
typename BOOST_PP_CAT(result, n)<PSTADE_PP_ENUM_PARAMS_WITH(n, A, const&)>::type
operator()(BOOST_PP_ENUM_BINARY_PARAMS(n, A, const& a)) const
{
typename BOOST_PP_CAT(result, n)<PSTADE_PP_ENUM_PARAMS_WITH(n, A, const&)>::type
r = { { { BOOST_PP_ENUM_PARAMS(n, a) } } };
return r;
}
#undef n
#endif
| [
"mb2sync@350e9bb6-6311-0410-90c3-be67731b76ec"
] | mb2sync@350e9bb6-6311-0410-90c3-be67731b76ec |
67d20f7a1aa85964cca14745c26d7e38ec216f7f | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/243/386/CWE762_Mismatched_Memory_Management_Routines__new_free_int_06.cpp | 7408ce59eb5ffeb4dd1da6456c75e03fbe93e8c6 | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,754 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__new_free_int_06.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_free.label.xml
Template File: sources-sinks-06.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory Management Routines
* BadSource: Allocate data using new
* GoodSource: Allocate data using malloc()
* Sinks:
* GoodSink: Deallocate data using delete
* BadSink : Deallocate data using free()
* Flow Variant: 06 Control flow: if(STATIC_CONST_FIVE==5) and if(STATIC_CONST_FIVE!=5)
*
* */
#include "std_testcase.h"
/* The variable below is declared "const", so a tool should be able
to identify that reads of this will always give its initialized
value. */
static const int STATIC_CONST_FIVE = 5;
namespace CWE762_Mismatched_Memory_Management_Routines__new_free_int_06
{
#ifndef OMITBAD
void bad()
{
int * data;
/* Initialize data*/
data = NULL;
if(STATIC_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */
data = new int;
}
if(STATIC_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete to deallocate the memory */
free(data);
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodB2G1() - use badsource and goodsink by changing the second STATIC_CONST_FIVE==5 to STATIC_CONST_FIVE!=5 */
static void goodB2G1()
{
int * data;
/* Initialize data*/
data = NULL;
if(STATIC_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */
data = new int;
}
if(STATIC_CONST_FIVE!=5)
{
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
}
else
{
/* FIX: Deallocate the memory using delete */
delete data;
}
}
/* goodB2G2() - use badsource and goodsink by reversing the blocks in the second if */
static void goodB2G2()
{
int * data;
/* Initialize data*/
data = NULL;
if(STATIC_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */
data = new int;
}
if(STATIC_CONST_FIVE==5)
{
/* FIX: Deallocate the memory using delete */
delete data;
}
}
/* goodG2B1() - use goodsource and badsink by changing the first STATIC_CONST_FIVE==5 to STATIC_CONST_FIVE!=5 */
static void goodG2B1()
{
int * data;
/* Initialize data*/
data = NULL;
if(STATIC_CONST_FIVE!=5)
{
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
}
else
{
/* FIX: Allocate memory from the heap using malloc() */
data = (int *)malloc(100*sizeof(int));
if (data == NULL) {exit(-1);}
}
if(STATIC_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete to deallocate the memory */
free(data);
}
}
/* goodG2B2() - use goodsource and badsink by reversing the blocks in the first if */
static void goodG2B2()
{
int * data;
/* Initialize data*/
data = NULL;
if(STATIC_CONST_FIVE==5)
{
/* FIX: Allocate memory from the heap using malloc() */
data = (int *)malloc(100*sizeof(int));
if (data == NULL) {exit(-1);}
}
if(STATIC_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete to deallocate the memory */
free(data);
}
}
void good()
{
goodB2G1();
goodB2G2();
goodG2B1();
goodG2B2();
}
#endif /* OMITGOOD */
} /* close namespace */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
using namespace CWE762_Mismatched_Memory_Management_Routines__new_free_int_06; /* so that we can use good and bad easily */
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
0646253c3f200346589cf4b8ed1cf5d50829871b | b9fccefb37e5b293e30a6ca3071c2b23f4cb7351 | /Game/AI_ToggleShield.h | 6c5db5dc1009952d352e96c3f80eb38c37f2a510 | [] | no_license | qavenger97/Automaton-Assault | bb60fe07b52bd78521410a3e874f02a20290fa72 | 616c1dedabfe649f31b064c5024d4bad6c2b0876 | refs/heads/master | 2020-12-31T07:11:33.554420 | 2017-01-31T22:04:42 | 2017-01-31T22:04:42 | 80,561,820 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 367 | h | #pragma once
class Health;
class UnitShield;
class AI_ToggleShield : public Hourglass::IAction
{
public:
void LoadFromXML( tinyxml2::XMLElement* data );
void Init( Hourglass::Entity* entity );
IBehavior::Result Update( Hourglass::Entity* entity );
IBehavior* MakeCopy() const;
private:
uint32_t m_ShieldOn;
UnitShield* m_UnitShield;
Health* m_Health;
}; | [
"xque@fullsail.edu"
] | xque@fullsail.edu |
2323355618e2d800cdc66d2b55b761bb1fd0f281 | be7b1a2f97e2c36a9a3c07d28850aec026c5b883 | /Inline/Inliner.hh | f7fb9ca0e92f4ff6add33df9108a4cbe264ecdd6 | [] | no_license | tkaretsos/vygraph | fb6552dc454d36bc63c878af8aa3cf882db543ec | 4a79459eedd74c96b9840b0b96be21844b5e4250 | refs/heads/master | 2016-08-06T12:29:41.300513 | 2015-02-04T16:23:48 | 2015-02-04T16:23:48 | 18,743,666 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,534 | hh | #ifndef VYGRAPH_INLINER_HH
#define VYGRAPH_INLINER_HH
#include <map>
#include <vector>
namespace clang {
class ASTContext;
class CallExpr;
class Rewriter;
class SourceLocation;
class Stmt;
}
namespace vy {
namespace util {
class ClangBaseWrapper;
}
/**
* @brief Class that performs the actual inlining of a user defined function
*
*/
class Inliner {
public:
Inliner(const clang::ASTContext&, clang::Rewriter&);
/**
* @brief Perform the required initialization for the given function call
*
* Must be called before the call to the Inliner::Inline method
*
* @param call The call to the function
*/
void Init(clang::CallExpr* call);
/**
* @brief Perform the inlining
*/
void Inline();
private:
const clang::ASTContext& context;
clang::Rewriter& rewriter;
clang::CallExpr* call;
/**
* @brief Auxiliary `std::map` that holds the variable name substitutions for
* this function call.
*/
std::map<std::string, std::string> subMap;
/**
* @brief Inline the given statement
*
* @param stmt The `clang:Stmt` that represents the C statement
* @param stmtStr The statement in the form of a `std::string`
*/
void inlineStmt(const clang::Stmt* stmt, std::string& stmtStr);
/**
* @brief Inline a return statement
*
* @param stmtStr The return statement in the form of a `std::string`
*/
void inlineReturnStmt(std::string& stmtStr);
/**
* @brief Inlines the arguments of the function
*/
void inlineArguments();
/**
* @brief Inlines the function body
*/
void inlineBody();
/**
* @brief Deletes the call text after the inlining is completed
*/
void deleteCallText();
/**
* @brief Renames the variables of the function in order to be inlined and not
* create any conflicts or multiple declarations with other possible inlined
* calls to the same function.
*
* @param stmt The statement that contains the variables
* @param s The string that will contain the replacements
*/
void replaceVarsInString(clang::Stmt* stmt, std::string& s);
/**
* @brief Recursively locates and stores in a container the locations of the
* variables, that need to be renamed, inside the C statement
*
* @param stmt The statement that contains the variables
* @param v The container that will hold the variables that need to be renamed
*/
void findSubstitutions(clang::Stmt* stmt, std::vector<util::ClangBaseWrapper>& v);
};
} // namespace vy
#endif // VYGRAPH_INLINER_HH
/** @file */
| [
"karetsosjr@gmail.com"
] | karetsosjr@gmail.com |
630a9e591c23bd0db296b2c4e0801861d63b0795 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /scrape/data/Tokitsukaze and Discard Items/Engineer124_A.cpp | 2470988d895803aae5df19685134fb53675d4897 | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 646 | cpp | #include <bits/stdc++.h>
using namespace std;
long long n,m,k,x;
vector<long long> v;
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin>>n>>m>>k;
for(int i=0;i<m;i++)
{
cin>>x;
v.push_back(x);
}
long long cnt = 0 , i =0 , deleted=0 ;
while(i<m)
{
long long group = ceil((v[i]-deleted)/(1.0*k)) ;
long long u=deleted;
while( (v[i]-deleted)>(group-1)*k and (v[i]-deleted)<=group*k)
{
u++;
i++;
}
deleted= u;
cnt++;
}
cout<<cnt<<endl;
return 0;
} | [
"harshitagar1907@gmail.com"
] | harshitagar1907@gmail.com |
a6af1c8409daa4c40cb402c96db9bb1562630aa4 | 39f5ed1178375c65876323589a03ef5daf6e4739 | /chromeos/services/multidevice_setup/fake_host_backend_delegate.h | 61594c05a9cd0fe7efada9a26765e2a95db9bd37 | [
"BSD-3-Clause"
] | permissive | berber1016/chromium | 2718166c02fcb3aad24cc3bd326a4f8d2d7c0cae | 9dc373d511536c916dec337b4ccc53106967d28d | refs/heads/main | 2023-03-21T21:53:55.686443 | 2021-05-14T10:13:20 | 2021-05-14T10:13:20 | 367,332,075 | 1 | 0 | BSD-3-Clause | 2021-05-14T10:46:30 | 2021-05-14T10:46:29 | null | UTF-8 | C++ | false | false | 2,739 | h | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_SERVICES_MULTIDEVICE_SETUP_FAKE_HOST_BACKEND_DELEGATE_H_
#define CHROMEOS_SERVICES_MULTIDEVICE_SETUP_FAKE_HOST_BACKEND_DELEGATE_H_
#include "base/macros.h"
#include "base/optional.h"
#include "chromeos/components/multidevice/remote_device_ref.h"
#include "chromeos/services/multidevice_setup/host_backend_delegate.h"
namespace chromeos {
namespace multidevice_setup {
// Test HostBackendDelegate implementation.
class FakeHostBackendDelegate : public HostBackendDelegate {
public:
FakeHostBackendDelegate();
~FakeHostBackendDelegate() override;
// Changes the backend host to |host_device_on_backend| and notifies
// observers.
void NotifyHostChangedOnBackend(
const base::Optional<multidevice::RemoteDeviceRef>&
host_device_on_backend);
void NotifyBackendRequestFailed();
size_t num_attempt_to_set_calls() { return num_attempt_to_set_calls_; }
// HostBackendDelegate:
void AttemptToSetMultiDeviceHostOnBackend(
const base::Optional<multidevice::RemoteDeviceRef>& host_device) override;
bool HasPendingHostRequest() override;
base::Optional<multidevice::RemoteDeviceRef> GetPendingHostRequest()
const override;
base::Optional<multidevice::RemoteDeviceRef> GetMultiDeviceHostFromBackend()
const override;
private:
size_t num_attempt_to_set_calls_ = 0u;
base::Optional<base::Optional<multidevice::RemoteDeviceRef>>
pending_host_request_;
base::Optional<multidevice::RemoteDeviceRef> host_device_on_backend_;
DISALLOW_COPY_AND_ASSIGN(FakeHostBackendDelegate);
};
// Test HostBackendDelegate::Observer implementation.
class FakeHostBackendDelegateObserver : public HostBackendDelegate::Observer {
public:
FakeHostBackendDelegateObserver();
~FakeHostBackendDelegateObserver() override;
size_t num_changes_on_backend() const { return num_changes_on_backend_; }
size_t num_failed_backend_requests() const {
return num_failed_backend_requests_;
}
size_t num_pending_host_request_changes() const {
return num_pending_host_request_changes_;
}
private:
// HostBackendDelegate::Observer:
void OnHostChangedOnBackend() override;
void OnBackendRequestFailed() override;
void OnPendingHostRequestChange() override;
size_t num_changes_on_backend_ = 0u;
size_t num_failed_backend_requests_ = 0u;
size_t num_pending_host_request_changes_ = 0u;
DISALLOW_COPY_AND_ASSIGN(FakeHostBackendDelegateObserver);
};
} // namespace multidevice_setup
} // namespace chromeos
#endif // CHROMEOS_SERVICES_MULTIDEVICE_SETUP_FAKE_HOST_BACKEND_DELEGATE_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2d55ddbf7bcffff55b161afd449ed45813d4ef0a | 9cc827b2bffd8bd491eeebee5f8b89e4737b6d1d | /loadgen/bindings/c_api.cc | f40696fa10e1ee4b28b5335e5763db8415d2d846 | [
"Apache-2.0"
] | permissive | minus-one/inference | 30aacc3a63ccf24fd19a9cc9f270a24c832f5715 | a1557b2fd819740a8e47bf63998e68b0ccb9ab68 | refs/heads/master | 2020-04-18T00:03:57.345338 | 2019-07-01T21:35:52 | 2019-07-01T21:35:52 | 167,061,881 | 0 | 0 | Apache-2.0 | 2019-04-01T18:37:11 | 2019-01-22T20:24:41 | Python | UTF-8 | C++ | false | false | 5,451 | cc | /* Copyright 2019 The MLPerf Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "c_api.h"
#include <string>
#include "../loadgen.h"
#include "../query_sample.h"
#include "../query_sample_library.h"
#include "../system_under_test.h"
#include "../test_settings.h"
namespace mlperf {
namespace c {
namespace {
// Forwards SystemUnderTest calls to relevant callbacks.
class SystemUnderTestTrampoline : public SystemUnderTest {
public:
SystemUnderTestTrampoline(
ClientData client_data, std::string name, IssueQueryCallback issue_cb,
ReportLatencyResultsCallback report_latency_results_cb)
: client_data_(client_data),
name_(std::move(name)),
issue_cb_(issue_cb),
report_latency_results_cb_(report_latency_results_cb) {}
~SystemUnderTestTrampoline() override = default;
const std::string& Name() const override { return name_; }
void IssueQuery(const std::vector<QuerySample>& samples) override {
(*issue_cb_)(client_data_, samples.data(), samples.size());
}
void ReportLatencyResults(
const std::vector<QuerySampleLatency>& latencies_ns) override {
(*report_latency_results_cb_)(client_data_, latencies_ns.data(),
latencies_ns.size());
}
private:
ClientData client_data_;
std::string name_;
IssueQueryCallback issue_cb_;
ReportLatencyResultsCallback report_latency_results_cb_;
};
} // namespace
void* ConstructSUT(ClientData client_data, const char* name, size_t name_length,
IssueQueryCallback issue_cb,
ReportLatencyResultsCallback report_latency_results_cb) {
SystemUnderTestTrampoline* sut =
new SystemUnderTestTrampoline(client_data, std::string(name, name_length),
issue_cb, report_latency_results_cb);
return reinterpret_cast<void*>(sut);
}
void DestroySUT(void* sut) {
SystemUnderTestTrampoline* sut_cast =
reinterpret_cast<SystemUnderTestTrampoline*>(sut);
delete sut_cast;
}
namespace {
// Forwards QuerySampleLibrary calls to relevant callbacks.
class QuerySampleLibraryTrampoline : public QuerySampleLibrary {
public:
QuerySampleLibraryTrampoline(
ClientData client_data, std::string name, size_t total_sample_count,
size_t performance_sample_count,
LoadSamplesToRamCallback load_samples_to_ram_cb,
UnloadSamplesFromRamCallback unload_samlpes_from_ram_cb)
: client_data_(client_data),
name_(std::move(name)),
total_sample_count_(total_sample_count),
performance_sample_count_(performance_sample_count),
load_samples_to_ram_cb_(load_samples_to_ram_cb),
unload_samlpes_from_ram_cb_(unload_samlpes_from_ram_cb) {}
~QuerySampleLibraryTrampoline() override = default;
const std::string& Name() const override { return name_; }
const size_t TotalSampleCount() { return total_sample_count_; }
const size_t PerformanceSampleCount() { return performance_sample_count_; }
void LoadSamplesToRam(const std::vector<QuerySampleIndex>& samples) override {
(*load_samples_to_ram_cb_)(client_data_, samples.data(), samples.size());
}
void UnloadSamplesFromRam(
const std::vector<QuerySampleIndex>& samples) override {
(*unload_samlpes_from_ram_cb_)(client_data_, samples.data(),
samples.size());
}
private:
ClientData client_data_;
std::string name_;
size_t total_sample_count_;
size_t performance_sample_count_;
LoadSamplesToRamCallback load_samples_to_ram_cb_;
UnloadSamplesFromRamCallback unload_samlpes_from_ram_cb_;
};
} // namespace
void* ConstructQSL(ClientData client_data, const char* name, size_t name_length,
size_t total_sample_count, size_t performance_sample_count,
LoadSamplesToRamCallback load_samples_to_ram_cb,
UnloadSamplesFromRamCallback unload_samlpes_from_ram_cb) {
QuerySampleLibraryTrampoline* qsl = new QuerySampleLibraryTrampoline(
client_data, std::string(name, name_length), total_sample_count,
performance_sample_count, load_samples_to_ram_cb,
unload_samlpes_from_ram_cb);
return reinterpret_cast<void*>(qsl);
}
void DestroyQSL(void* qsl) {
QuerySampleLibraryTrampoline* qsl_cast =
reinterpret_cast<QuerySampleLibraryTrampoline*>(qsl);
delete qsl_cast;
}
// mlperf::c::StartTest just forwards to mlperf::StartTest after doing the
// proper cast.
void StartTest(void* sut, void* qsl, const TestSettings& settings) {
SystemUnderTestTrampoline* sut_cast =
reinterpret_cast<SystemUnderTestTrampoline*>(sut);
QuerySampleLibraryTrampoline* qsl_cast =
reinterpret_cast<QuerySampleLibraryTrampoline*>(qsl);
LogSettings default_log_settings;
mlperf::StartTest(sut_cast, qsl_cast, settings, default_log_settings);
}
} // namespace c
} // namespace mlperf
| [
"brianderson@google.com"
] | brianderson@google.com |
08bbea0c668bceafd3b65f630e70058a3c7a196c | 646d9fca028ed30d57961662061d3c779b4e409f | /OOPS/Dynamic Array/DynamicArrayUse.cpp | 7821384eb7edc9ed5a6e49162edda45a0e4b6543 | [] | no_license | yakshitbindal/CP-Repo | 3e2553ea61c5ab30502033ab78438d1bd6de64af | 94fa04b557a50961ad273e97e617ed862ffe080f | refs/heads/master | 2022-12-22T20:19:28.113184 | 2020-09-30T13:50:17 | 2020-09-30T13:50:17 | 299,930,489 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 361 | cpp | #include<bits/stdc++.h>
using namespace std;
#include"DynamicArrayClass.cpp"
int main()
{
DynamicArray d1;
d1.add(10);
d1.add(20);
d1.add(30);
d1.add(40);
d1.add(50);
d1.add(60);
d1.add(70);
d1.print();
DynamicArray d2(d1); //copy constructor
d1.add(0,100);
d2.print();
DynamicArray d3=d1;
d3.print();
} | [
"yakshitbinda@gmail.com"
] | yakshitbinda@gmail.com |
1bcfc648961931d0fe42148e4396a4738ead3564 | c0caed81b5b3e1498cbca4c1627513c456908e38 | /src/core/optimization/CartesianMinimizerMap.fwd.hh | e0570ed12f6c179586423ab00715a25867f587b1 | [] | no_license | malaifa/source | 5b34ac0a4e7777265b291fc824da8837ecc3ee84 | fc0af245885de0fb82e0a1144422796a6674aeae | refs/heads/master | 2021-01-19T22:10:22.942155 | 2017-04-19T14:13:07 | 2017-04-19T14:13:07 | 88,761,668 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,189 | hh | // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
// (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
/// @file core/optimization/CartesianMinimizerMap.fwd.hh
/// @brief forward declaration of CartesianMinimizerMap class
/// @author Phil Bradley
#ifndef INCLUDED_core_optimization_CartesianMinimizerMap_fwd_hh
#define INCLUDED_core_optimization_CartesianMinimizerMap_fwd_hh
// Utility headers
#include <utility/pointer/owning_ptr.hh>
namespace core {
namespace optimization {
class CartesianMinimizerMap;
typedef utility::pointer::shared_ptr< CartesianMinimizerMap > CartesianMinimizerMapOP;
typedef utility::pointer::shared_ptr< CartesianMinimizerMap const > CartesianMinimizerMapCOP;
} // namespace
} // namespace core
#endif
| [
"malaifa@yahoo.com"
] | malaifa@yahoo.com |
412246b8e6022df1008745a4751d51498af4956d | 43684e39b57acada47c3d640dc3e1ebf7330d81c | /Progs/202009/105/programs.cpp | fb82c0a0771666daa61195f0e42a939207ec48db | [] | no_license | rader90/project | 9826300d8d0baeb18c3e433540a1429e57559d81 | d4ffabead331c821f617a058854b7a814e428fa5 | refs/heads/master | 2023-01-11T19:56:04.919070 | 2020-11-03T11:52:13 | 2020-11-03T11:52:13 | 255,385,720 | 2 | 0 | null | 2020-04-16T12:26:24 | 2020-04-13T16:44:13 | null | WINDOWS-1251 | C++ | false | false | 586 | cpp | // Подключение стандартной библиотеки ввода-вывода
#include <iostream>
#include <vector>
#include <ctime>
#include <cstdlib>
// Подключение пространства имен std
using namespace std;
int main(void){
// Смена кодировки cp1251
system("chcp 1251 > null");
// Объявление переменных
int i,j,n,m;
cout << "Введите высоту n : ";
cin >> n;
for(i=0;i<n;++i){
cout << "\n";
j=0;
for(;j<=i;++j){
cout << "*";
};
};
cout << endl;
system("pause");
return 0;
}
| [
"13xr@mail.ru"
] | 13xr@mail.ru |
6dca36fe8e23a73d36eb1859f8b753b8d13ca52c | 09752b111faebfd9a317acc43596323702ec7271 | /src/feverrpc/feverrpc.hpp | 9ee0359d7fffdcc203ff526d83130174c7d8000d | [] | no_license | ciyaca/client | e8fff0af69f1691cbae3a162a23f2b1a3805a48d | b39205ee3445244b1a2cb43ad7e732453adf10c7 | refs/heads/master | 2022-10-07T15:32:27.183451 | 2020-06-06T04:52:41 | 2020-06-06T04:52:41 | 259,004,149 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,275 | hpp | /*!
* \file feverrpc.cpp
* \brief 一个基于Socket长连接双向RPC框架,嵌入了登录认证功能。
*
* https://github.com/Courier-Developer/feverrpc
* 使用TCP/Socket长连接
* 双向RPC
* 支持任意长度、类型参数绑定
* 基于Msgpack,可自定义序列化类型
* Socket支持任意大小传输功能(int)
* 支持多线程,有多线程调度模块
* 服务端线程可相互通信
* 嵌入登录功能
*
* \author 冯开宇
* \version 0.1
* \date 2019-9-1
*/
#ifndef FEVERRPC_FEVERRPC_H_
#define FEVERRPC_FEVERRPC_H_
#include "msgpack.hpp"
#include <chrono>
#include <cstdio>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <map>
#include <netinet/in.h>
#include <sstream>
#include <string>
#include <sys/socket.h>
#include <thread>
#include <unistd.h>
// TODO MORE DOCS
/// \brief RPC框架的命名空间
///
/// 包含RPC本身,socket通讯相关函数以及自定义异常
namespace FeverRPC {
/// \brief Socket一次通信中最大数据发送大小
const int _CHUNK_SIZE = 1024;
/// \brief 客户端到服务器通信端口
const int _C2S_PORT = 8012;
/// \brief 服务端到客户端通信端口
const int _S2C_PORT = 8021;
/// \brief Socket通讯异常
class SocketException : public std::exception {
virtual const char *what() const throw() {
return "Connection Failed / Socket Error";
}
};
/// \brief 函数调用异常,说明你没有注册该函数
class FunctionCallException : public std::exception {
virtual const char *what() const throw() {
return "function call error. no such function.";
}
};
/// \brief 使用Socket发送数据
///
/// 支持unsigned int大小内的任意大小数据传输,不支持断点续传
/// \param socket_handler socket句柄
/// \param data_send_buffer the pointer that point to your data to be sent
/// \param data_send_size size of data
/// \return if there is error. 0 is ok.
int send_data(const int &socket_handler, const char *data_send_buffer,
int data_send_size);
/// \brief 接收数据
/// \param socket_handler docket handler
/// \param data_recv_buffer msgpack::sbuffer used for recive data
/// \return if there is an error.
int recv_data(const int &socket_handler, msgpack::sbuffer &data_recv_buffer);
// 连接到一个Socket,用户客户端。
int connect_socket(const char *__host, const int __port,
int &new_socket_handler);
// 初始化Socket,监听端口。用于服务端。
int initialize_socket(const int __port, int &server_fd, sockaddr_in &address);
// 包装序列化数据
class Serializer {
public:
msgpack::sbuffer buffer;
};
// 封装RPC的基本方法
class FeverRPC {
protected:
// 强枚举类型
// whether is Client or Server
enum class rpc_role { RPC_CLINT, RPC_SERVER };
// return code
enum class rpc_ret_code : unsigned int {
RPC_RET_SUCCESS = 0,
RPC_RET_FUNCTION_NOT_BIND,
RPC_RET_RECV_TIMEOUT,
RPC_RET_UNRETURNED,
};
// role, !deprecated!
rpc_role _rpc_role;
// return code, !deprecated!
rpc_ret_code _rpc_ret_code;
// host
const char *_HOST;
// mapping form function name to function
// can be state as static parameter
std::map<std::string, std::function<void(Serializer *, msgpack::object)>>
funcs_map;
public:
// bind name to function
template <typename Func> void bind(std::string name, Func func);
protected:
// callproxy 由一组函数构成,实际上内部实在解开 msgpack 的包,
// 转换为可以传入函数的实际参数。
// 最终 callproxy 调用 call_helper 进行真实的函数调用,
// 并再次通过 callproxy 将返回值传回。
// callproxy 是被注册进 map 中的,相当于一个闭包。
template <typename Func>
void callproxy(Func f, Serializer *pr, msgpack::object args_obj);
template <typename Ret, typename... Args>
void callproxy_(Ret (*func)(Args...), Serializer *pr,
msgpack::object args_obj);
template <typename Ret, typename... Args>
void callproxy_(std::function<Ret(Args... ps)> func, Serializer *pr,
msgpack::object args_obj);
template <typename Ret, typename Func, typename... Args>
// 进行实际的函数调用。
Ret call_helper(Func f, std::tuple<Args...> args);
// 通过 function name 选择相应的 callproxy,
// 并进行调用。
Serializer call_(std::string name, msgpack::object args_obj);
Serializer call_chooser(std::string &name, msgpack::object &args_obj);
// 发起 rpc 调用,并接收返回值
int send_and_recv(const int &socket_handler, const char *data_send_buffer,
int data_send_size, msgpack::sbuffer &data_recv_buffer);
template <typename Ret> Ret unpack_ret_val(msgpack::sbuffer &buffer);
// 监听请求,执行后发送返回值
Serializer recv_call_and_send(const int &socket_handler);
// 帮助输出
void print_sbuffer(msgpack::sbuffer &buffer);
};
/////////////////////////////////////////////////////////////
//
/// SOME DEFINITIONS CANNOT TO BE DEFINED IN ANNOTHER FILE
//
/////////////////////////////////////////////////////////////
template <typename Func> void FeverRPC::bind(std::string name, Func func) {
// 注册闭包
funcs_map[name] = std::bind(&FeverRPC::callproxy<Func>, this, func,
std::placeholders::_1, std::placeholders::_2);
}
template <typename Func>
inline void FeverRPC::callproxy(Func f, Serializer *pr,
msgpack::object args_obj) {
callproxy_(f, pr, args_obj);
};
template <typename Ret, typename... Args>
inline void FeverRPC::callproxy_(Ret (*func)(Args...), Serializer *pr,
msgpack::object args_obj) {
// 解开返回值
callproxy_(std::function<Ret(Args...)>(func), pr, args_obj);
}
template <typename Ret, typename... Args>
void FeverRPC::callproxy_(std::function<Ret(Args... ps)> func, Serializer *pr,
msgpack::object args_obj) {
std::tuple<Args...> args;
args_obj.convert(args);
// 解开参数
Ret ret = call_helper<Ret>(func, args);
msgpack::pack(pr->buffer, ret);
return;
}
template <typename Ret, typename Func, typename... Args>
Ret FeverRPC::call_helper(Func f, std::tuple<Args...> args) {
// 利用 c++17 新特性进行函数调用
// 否则要手动展开
return std::apply(f, args);
}
template <typename Ret> Ret FeverRPC::unpack_ret_val(msgpack::sbuffer &buffer) {
msgpack::unpacker pac;
// feeds the buffer.
pac.reserve_buffer(buffer.size());
memcpy(pac.buffer(), buffer.data(), buffer.size());
pac.buffer_consumed(buffer.size());
// now starts streaming deserialization.
msgpack::object_handle oh;
pac.next(oh);
msgpack::object obj = oh.get();
Ret ret;
obj.convert(ret);
return ret;
}
}; // namespace FeverRPC
#endif // FEVERRPC_FEVERRPC_H_ | [
"www.publicforme.com@gmail.com"
] | www.publicforme.com@gmail.com |
93b09529776d5c9a54828b4ec463ed8504f8bd32 | 0cab542096209108aa4b9eba8bde1188e917c555 | /marian/src/models/model_base.h | 878f317cad1e17ab549c7507dd276c88ec9fb5cc | [
"MIT"
] | permissive | lkfo415579/decoder | 6a270120de49c82ef102a7d8af671a523258b16a | 592711c82d7ad5583a966a9b6809e498b1a6e937 | refs/heads/master | 2021-05-11T04:01:58.318593 | 2018-01-18T04:02:50 | 2018-01-18T04:02:50 | 117,930,262 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 741 | h | #pragma once
#include <string>
#include "data/batch.h"
#include "graph/expression_graph.h"
namespace marian {
namespace models {
class ModelBase {
public:
virtual void load(Ptr<ExpressionGraph>, const std::string&) = 0;
virtual void save(Ptr<ExpressionGraph>,
const std::string&,
bool saveTranslatorConfig = false)
= 0;
virtual Expr build(Ptr<ExpressionGraph> graph,
Ptr<data::Batch> batch,
bool clearGraph = true)
= 0;
virtual Ptr<data::BatchStats> collectStats(Ptr<ExpressionGraph> graph,
size_t multiplier = 1)
= 0;
virtual void clear(Ptr<ExpressionGraph> graph) = 0;
};
}
}
| [
"lkfo415579@hotmail.com"
] | lkfo415579@hotmail.com |
b04f817ed837a0d177cf38050453ff618c2ab29f | 4a115a68cd4b8d84566b7d92fa960a9ab8d6592f | /Flyweight/Flyweight.cpp | 6f616cdc390f47ecb9c2704a372a1663da667ccc | [] | no_license | gml1988/DesignPattern | 2f705f4abe5ab1957505df201ccdefb4d0524c70 | 12566efb15e56a7e89ac75db58adae3bdde8ef94 | refs/heads/master | 2020-12-30T23:47:41.734695 | 2017-03-29T15:00:54 | 2017-03-29T15:00:54 | 86,595,764 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,735 | cpp | #include "Flyweight.h"
#include <stdio.h>
#include <map>
#include <string>
namespace DesignPattern
{
Flyweight * FlyweightFactory::GetFlyWeight(const std::string strFlyweightKey)
{
if ( IsExisted( strFlyweightKey ) )
return m_FlyweightMap[strFlyweightKey];
Flyweight * pFlyweight = NULL;
//在这里每个ConcreteFlyweight的构造传入的参数都是Hard Coding
//可以在配置文件中进行设置这个唯一的轻量级Flyweight实例传入的构造的参数是什么
//因为本来就只有一个实例,这样的的话只需要设定一个构造的参数就可以了
if ( strFlyweightKey == "ConcreteFlyweightA" )
pFlyweight = new ConcreteFlyweightA( 10 );
else if ( strFlyweightKey == "ConcreteFlyweightB" )
pFlyweight = new ConcreteFlyweightB( "New Flyweight" );
else if ( strFlyweightKey == "ConcreteFlyweightC" )
pFlyweight = new ConcreteFlyweightC( 5.000 );
else
std::cout<<"unrecognizable Flyweight Type Name"<<std::endl;
if ( pFlyweight != NULL )
m_FlyweightMap[strFlyweightKey] = pFlyweight ;
return pFlyweight;
}
bool FlyweightFactory::IsExisted( std::string strFlyweightKey )
{
return ( m_FlyweightMap.count( strFlyweightKey ) > 0 );
}
FlyweightFactory::~FlyweightFactory()
{
for ( std::map<std::string,Flyweight*>::iterator mapIter = m_FlyweightMap.begin();
mapIter != m_FlyweightMap.end(); )
{
Flyweight * pFlyweight = mapIter->second;
mapIter = m_FlyweightMap.erase( mapIter );
delete pFlyweight;
}
}
void ConcreteFlyweightA::Operation()
{
std::cout<<m_iData<<std::endl;
}
void ConcreteFlyweightB::Operation()
{
std::cout<<m_strData<<std::endl;
}
void ConcreteFlyweightC::Operation()
{
std::cout<<m_dData<<std::endl;
}
} | [
"migong@microsoft.com"
] | migong@microsoft.com |
263081a401d7e942284431045f589cbf27c374c7 | c591b56220405b715c1aaa08692023fca61f22d4 | /Prachi bansal/Milestone-7/Question-43.cpp | 892b7d7cba7185b471d1173a4935979c20a08e0f | [] | no_license | Girl-Code-It/Beginner-CPP-Submissions | ea99a2bcf8377beecba811d813dafc2593ea0ad9 | f6c80a2e08e2fe46b2af1164189272019759935b | refs/heads/master | 2022-07-24T22:37:18.878256 | 2021-11-16T04:43:08 | 2021-11-16T04:43:08 | 263,825,293 | 37 | 105 | null | 2023-06-05T09:16:10 | 2020-05-14T05:39:40 | C++ | UTF-8 | C++ | false | false | 261 | cpp | #include<iostream>
#include<math.h>
using namespace std;
int main(){
int i=0,n,d,deci=0;
cout<<"Enter the octal number: ";
cin>>n;
cout<<"\nThe decimal number is: ";
while(n!=0){
d=n%10;
deci+=d*pow(8,i);
n/=10;
i++;
}
cout<<deci;
return 0;
}
| [
"prachibansal2111@gmail.com"
] | prachibansal2111@gmail.com |
46b52e5eb3f7c41809b3c3fb5f24f83d07d32439 | 93c967df51334773c2d024f9580f2b0fe4e27550 | /4Delphi/jvcl/examples/JvSimpleXML Encode/BCB/JvSimpleXMLEncodeDemo.cpp | bd46e5d39391d86513c37e373cbe7506ee480d8b | [] | no_license | kaan3434/gvindelen | 2e847be39413ade1c55342380652d3a8571840dc | 4f8e53ccda19a0f9548ccb13b47556bbade1fcf7 | refs/heads/master | 2020-03-31T00:53:53.817915 | 2015-01-29T08:35:29 | 2015-01-29T08:35:29 | 42,419,453 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,854 | cpp | /******************************************************************
JEDI-VCL Demo
Copyright (C) 2004 Project JEDI
Original author: Olivier Sannier (obones att altern dott org)
You may retrieve the latest version of this file at the JEDI-JVCL
home page, located at http://jvcl.sourceforge.net
The contents of this file are used with permission, subject to
the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/MPL-1_1Final.html
Software distributed under the License is distributed on an
"AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
******************************************************************/
// $Id: JvSimpleXMLEncodeDemo.cpp 26 2011-03-09 20:31:34Z uschuster $
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM("MainForm.cpp", frmMain);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfrmMain), &frmMain);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
//---------------------------------------------------------------------------
| [
"gvindelen@25f401a0-76e0-253e-e0f2-f62f10187558"
] | gvindelen@25f401a0-76e0-253e-e0f2-f62f10187558 |
5dff0ca1def5bd511028e344781f409337864c04 | c184b90a1f49427aa20992a1095389e711ecae78 | /toucan/tags/2.0.2/backupprocess.cpp | 7b9e07d5ce5fdbe98fab5a9598c10d7351a27a37 | [] | no_license | cnsuhao/portableapps | 1d9c0e4a925ff8edc89b7a6a1fae5f9cf0aac45d | 38211d347bc47a0830ef2af29fb0d8da627e3703 | refs/heads/master | 2021-09-08T20:46:59.408187 | 2010-10-21T00:31:18 | 2010-10-21T00:31:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,084 | cpp | /////////////////////////////////////////////////////////////////////////////////
// Author: Steven Lamerton
// Copyright: Copyright (C) 2007-2008 Steven Lamerton
// License: GNU GPL 2 (See readme for more info)
/////////////////////////////////////////////////////////////////////////////////
#include "backupprocess.h"
#include "toucan.h"
#include "backupdata.h"
#include "basicfunctions.h"
#include <wx/textfile.h>
IMPLEMENT_CLASS(BaseProcess, wxProcess)
IMPLEMENT_CLASS(PipedProcess, BaseProcess)
bool PipedProcess::HasInput()
{
bool hasInput = false;
if (IsInputAvailable()){
if(wxGetApp().ShouldAbort()){
#ifdef __WXMSW__
HANDLE hProcess=OpenProcess(PROCESS_ALL_ACCESS,TRUE,this->GetRealPid());
TerminateProcess(hProcess,0);
#endif
}
wxTextInputStream tis(*GetInputStream());
wxString msg = tis.ReadLine();
//Need to change this to OutputProgress
OutputProgress(msg);
//Need a window update or refresh in here
wxMilliSleep(50);
hasInput = true;
}
return hasInput;
}
void PipedProcess::SetRealPid(long pid){
m_PID = pid;
}
| [
"steve_lamerton@85dbeb0d-692d-0410-9d2a-c6b154a7e15c"
] | steve_lamerton@85dbeb0d-692d-0410-9d2a-c6b154a7e15c |
7da130b62e2ddb7244eb4e238760a45ee6b211e8 | 37eb9e4b2624f3a8d8954c07359593f27e72c8f0 | /NES/MOS6502/Instructions/Accumulator/Accumulator.h | 47fb4ccb58b680af867d0f16d785302f3eb004a8 | [
"MIT"
] | permissive | MatthewHinton56/NES | a5bdc586af3f2a0428620f4fb26221c9a99e767f | 5ff0249de767ed7a8261566ac32f46e6ea0e98c7 | refs/heads/master | 2022-02-16T23:32:20.035782 | 2019-08-14T06:22:28 | 2019-08-14T06:22:28 | 197,897,515 | 0 | 0 | MIT | 2019-08-13T08:50:54 | 2019-07-20T07:45:59 | C++ | UTF-8 | C++ | false | false | 754 | h | #pragma once
#include "../Instruction.h"
#include "AccumulatorConstants.h"
namespace mos6502
{
class Accumulator : public Instruction
{
public:
Accumulator
(
Byte opcode
);
virtual int32_t step
(
Word& PC,
RegisterMap& registerMap,
Memory<PAGE_SIZE, NUM_PAGES>& mem
);
int32_t getStepCount() const { return stepCount; }
Byte getOpcode() const { return opcode; }
InstructionOpcodeAccumulator getInstruction() const { return instruction; }
InstructionTypeAccumulator getType() const { return type; }
InstructionGroups getGroup() const { return group; }
private:
int32_t stepCount;
Byte opcode;
InstructionOpcodeAccumulator instruction;
InstructionTypeAccumulator type;
InstructionGroups group;
};
} | [
"matthewhinton56@gmail.com"
] | matthewhinton56@gmail.com |
52ff37b4bc624d74f0faa09c5430c95027d57907 | 4a65b0e5b77d57a6dde55e2bf001c415f148ef21 | /Src/EditableStringView.h | 7a884c00962a995282e58272d086473431e3e422 | [
"MIT"
] | permissive | thinkpractice/bme | 99829da10f79b224cececb996ba1480d11dab2d1 | 8f55457fa2900e41ff112188b8683b4312e99d73 | refs/heads/master | 2021-06-01T22:26:05.779520 | 2016-11-19T17:24:40 | 2016-11-19T17:24:40 | 56,915,046 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,694 | h | /*****************************************************************
* Copyright (c) 2005 Tim de Jong *
* *
* All rights reserved. *
* Distributed under the terms of the MIT License. *
*****************************************************************/
#ifndef EDITABLE_STRING_VIEW
#define EDITABLE_STRING_VIEW
#include <be/app/MessageFilter.h>
#include <be/interface/Rect.h>
#include <be/interface/Control.h>
#include <be/interface/ScrollView.h>
#include <be/interface/StringView.h>
#include <be/interface/TextView.h>
const uint32 K_CHANGE_VIEW_MSG = 'CHvw';
class EditableStringView : public BControl
{
public:
EditableStringView(BRect frame, const char *name, const char *text, BMessage *message, const char* label = "", uint32 resizingMode = B_FOLLOW_LEFT | B_FOLLOW_TOP, uint32 flags = B_WILL_DRAW);
virtual ~EditableStringView();
virtual void MessageReceived(BMessage *message);
virtual void SetFont(const BFont *font, uint32 properties = B_FONT_ALL);
void SetText(const char *string);
const char* Text() const;
private:
BTextView *m_editView;
BScrollView *m_editScroll;
BStringView *m_labelView;
bool m_editing;
};
class MouseDownFilter : public BMessageFilter
{
public:
MouseDownFilter(BView *owner);
virtual ~MouseDownFilter();
virtual filter_result Filter(BMessage *message, BHandler **target);
private:
BView *m_owner;
};
class KeyFilter : public BMessageFilter
{
public:
KeyFilter(BView *owner);
virtual ~KeyFilter();
virtual filter_result Filter(BMessage *message, BHandler **target);
private:
BView *m_owner;
};
#endif
| [
"opensource@thinkpractice.nl"
] | opensource@thinkpractice.nl |
ccf4626e695f0d6d2e207d3316d634bb492f4178 | 4bf2ee10c6594f70c32feb3bcb50eec186daa9cf | /solutions/1509/1509.cpp14.cpp | 82dbb4f658050ef28faf4ce69cec16f034c8d1d1 | [] | no_license | jwvg0425/boj | 7674928dc012ba3c404cef3a76aa753828e09761 | 4b7e7389cbe55270bd0dab546d6e84817477b0f1 | refs/heads/master | 2020-07-14T02:37:36.658675 | 2017-07-13T06:11:44 | 2017-07-13T06:11:44 | 94,295,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 923 | cpp | #include <stdio.h>
#include <vector>
#include <iostream>
#include <string>
#include <algorithm>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <tuple>
#include <memory.h>
bool isPalindrome[2501][2501];
int main()
{
std::string s;
std::cin >> s;
for (int i = 0; i < s.size(); i++)
isPalindrome[i][i] = true;
for (int i = 0; i < s.size() - 1; i++)
isPalindrome[i][i + 1] = (s[i] == s[i + 1]);
for (int length = 3; length <= s.size(); length++)
for (int i = 0; i <= s.size() - length; i++)
isPalindrome[i][i + length - 1] =
(s[i] == s[i + length - 1] &&
isPalindrome[i + 1][i + length - 2]);
int table[2501] = { 0, 1, };
for (int i = 2; i <= s.size(); i++)
{
table[i] = 987654321;
for (int j = 0; j < i; j++)
{
if (!isPalindrome[j][i - 1])
continue;
table[i] = std::min(table[i], table[j] + 1);
}
}
printf("%d", table[s.size()]);
return 0;
} | [
"jwvg0425@naver.com"
] | jwvg0425@naver.com |
d90b4784385ccae1f71afc0d90f18c8abb7474ef | b4b1fab7c1e62cb8242bf681c4dfcf85ccc7fba0 | /leetcode/validate-binary-search-tree-98.cpp | 9ade69820b667de886cc27509f35e4106bb19e49 | [] | no_license | qianlv/learning | 1dea4af07c60f065a2d4614376c864bea2cf99d4 | c48038dfdbac94fd2cf9f75cd6ebe5d8b9f93355 | refs/heads/master | 2021-06-22T13:19:43.852304 | 2021-01-25T09:40:16 | 2021-01-25T09:40:16 | 35,586,205 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,502 | cpp | /*
* =====================================================================================
*
* Filename: validate-binary-search-tree-98.cpp
*
* Description: validate binary search tree
*
* Version: 1.0
* Created: 2016年06月06日 10时53分05秒
* Revision: none
* Compiler: gcc
*
* Author: qianlv (), qianlv7 at gmail dot com
* Organization:
*
* =====================================================================================
*/
#include <iostream>
#include <algorithm>
#include <map>
using namespace std;
struct TreeNode {
int val;
TreeNode* left;
TreeNode* right;
TreeNode(int x) : val(x), left(NULL), right(NULL) { }
};
class Solution
{
public:
bool isValidBST(TreeNode* root)
{
initTree(root);
return checkValidBST(root);
}
bool checkValidBST(TreeNode* root)
{
if (!root)
return true;
if (check(root))
{
return checkValidBST(root->left) && checkValidBST(root->right);
}
return false;
}
bool check(TreeNode* root)
{
bool res = true;
if (root->left)
res = res && (root->val > max_node[root->left]);
if (root->right)
res = res && (root->val < min_node[root->right]);
return res;
}
void initTree(TreeNode* root)
{
if (root)
{
max_node[root] = root->val;
min_node[root] = root->val;
if (root->left)
{
initTree(root->left);
max_node[root] = std::max(max_node[root], max_node[root->left]);
min_node[root] = std::min(min_node[root], min_node[root->left]);
}
if (root->right)
{
initTree(root->right);
max_node[root] = std::max(max_node[root], max_node[root->right]);
min_node[root] = std::min(min_node[root], min_node[root->right]);
}
}
}
public:
std::map<TreeNode*, int> max_node;
std::map<TreeNode*, int> min_node;
};
int main(void)
{
TreeNode* root = new TreeNode(10);
root->left = new TreeNode(5);
root->right = new TreeNode(15);
root->left->left = new TreeNode(0);
root->left->right = new TreeNode(2);
root->right->left = new TreeNode(6);
root->right->right = new TreeNode(20);
Solution sol;
std::cout << sol.isValidBST(root) << std::endl;
return 0;
}
| [
"qianlv7@qq.com"
] | qianlv7@qq.com |
07dcefb71b8f8b4cab49f7a779e7efc1acacf518 | 99e23e3780e47c8c9cae39f31f7c675ccdf9d091 | /src/View/Renderer/OpenGL/FileIO.hpp | dc90be9682d2d0cabbc8ad1f5111530adb343dbd | [
"MIT"
] | permissive | charlieSewell/ICT397-Game-Engine | 2781db2a441c62e8bfbd11abca9da3e6f7910942 | 64d44edfcf397ea0a1133680f908f74ea8bafb22 | refs/heads/develop | 2023-07-08T00:05:11.153191 | 2021-08-10T13:27:01 | 2021-08-10T13:27:01 | 308,914,426 | 1 | 0 | null | 2021-04-08T16:01:57 | 2020-10-31T15:40:45 | C | UTF-8 | C++ | false | false | 648 | hpp | //
// Created by charl on 10/03/2021.
//
#ifndef ICT397_GAME_ENGINE_FILEIO_HPP
#define ICT397_GAME_ENGINE_FILEIO_HPP
#include <iostream>
/**
* Loads a texture from a file and returns its data
* @param string - filename
* @param int& - width
* @param int& - height
* @param int& - nrComponents
* @param int& - reqComponents
* @return unsigned char*
*/
unsigned char* TextureFromFile(const std::string& filename, int &width,int &height, int &nrComponents,int reqComponents);
/**
* @brief Deletes the loaded texture data
* @param unsigned char* - data
*/
void FreeTextureData(unsigned char* data);
#endif // ICT397_GAME_ENGINE_FILEIO_HPP
| [
"charliesewell@live.com"
] | charliesewell@live.com |
0fe3af2bc6df2580d4843b89ccd6af2e95928deb | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13892/function13892_schedule_33/function13892_schedule_33.cpp | c8296f5476cd1772e4f7662ecd2ae57f4ab614a6 | [] | 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,656 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function13892_schedule_33");
constant c0("c0", 256), c1("c1", 512), c2("c2", 512);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06");
input input00("input00", {i0, i1}, p_int32);
input input01("input01", {i1}, p_int32);
input input02("input02", {i0}, p_int32);
input input03("input03", {i2}, p_int32);
input input04("input04", {i0, i2}, p_int32);
input input05("input05", {i1, i2}, p_int32);
computation comp0("comp0", {i0, i1, i2}, input00(i0, i1) - input01(i1) + input02(i0) + input03(i2) - input04(i0, i2) - input05(i1, i2));
comp0.tile(i0, i1, i2, 64, 128, 32, i01, i02, i03, i04, i05, i06);
comp0.parallelize(i01);
buffer buf00("buf00", {256, 512}, p_int32, a_input);
buffer buf01("buf01", {512}, p_int32, a_input);
buffer buf02("buf02", {256}, p_int32, a_input);
buffer buf03("buf03", {512}, p_int32, a_input);
buffer buf04("buf04", {256, 512}, p_int32, a_input);
buffer buf05("buf05", {512, 512}, p_int32, a_input);
buffer buf0("buf0", {256, 512, 512}, p_int32, a_output);
input00.store_in(&buf00);
input01.store_in(&buf01);
input02.store_in(&buf02);
input03.store_in(&buf03);
input04.store_in(&buf04);
input05.store_in(&buf05);
comp0.store_in(&buf0);
tiramisu::codegen({&buf00, &buf01, &buf02, &buf03, &buf04, &buf05, &buf0}, "../data/programs/function13892/function13892_schedule_33/function13892_schedule_33.o");
return 0;
} | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
bfa451bbdd3ec11956b4a7ad673ab07eb5b03d88 | 0cde00266bddbb1abc159b011116c8a137cf21ec | /Dependencies/CppWinRT/winrt/impl/Windows.Media.Effects.0.h | e1be1833f7db02693e4069fccafddcc7fbe9158a | [
"Apache-2.0"
] | permissive | npstar/NavioIoT | 83071b4bba8b7f234187566114bf41371a443c43 | 419c8eb40f86c23e5ebe96cf1ad5f5cbc9a0ba4c | refs/heads/master | 2020-04-08T16:21:37.310348 | 2017-10-05T19:35:41 | 2017-10-05T19:35:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 38,209 | h | // C++/WinRT v1.0.170825.9
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
WINRT_EXPORT namespace winrt::Windows::Foundation::Collections {
struct IPropertySet;
}
WINRT_EXPORT namespace winrt::Windows::Graphics::DirectX::Direct3D11 {
struct IDirect3DDevice;
struct IDirect3DSurface;
}
WINRT_EXPORT namespace winrt::Windows::Media {
enum class AudioProcessing;
struct AudioFrame;
struct VideoFrame;
}
WINRT_EXPORT namespace winrt::Windows::Media::Capture {
enum class MediaCategory;
}
WINRT_EXPORT namespace winrt::Windows::Media::Editing {
struct MediaOverlay;
}
WINRT_EXPORT namespace winrt::Windows::Media::MediaProperties {
enum class MediaMirroringOptions : unsigned;
enum class MediaRotation;
struct AudioEncodingProperties;
struct VideoEncodingProperties;
}
WINRT_EXPORT namespace winrt::Windows::Media::Render {
enum class AudioRenderCategory;
}
WINRT_EXPORT namespace winrt::Windows::Media::Transcoding {
enum class MediaVideoProcessingAlgorithm;
}
WINRT_EXPORT namespace winrt::Windows::Storage::Streams {
struct IRandomAccessStreamWithContentType;
}
WINRT_EXPORT namespace winrt::Windows::UI {
struct Color;
}
WINRT_EXPORT namespace winrt::Windows::Media::Effects {
enum class AudioEffectType
{
Other = 0,
AcousticEchoCancellation = 1,
NoiseSuppression = 2,
AutomaticGainControl = 3,
BeamForming = 4,
ConstantToneRemoval = 5,
Equalizer = 6,
LoudnessEqualizer = 7,
BassBoost = 8,
VirtualSurround = 9,
VirtualHeadphones = 10,
SpeakerFill = 11,
RoomCorrection = 12,
BassManagement = 13,
EnvironmentalEffects = 14,
SpeakerProtection = 15,
SpeakerCompensation = 16,
DynamicRangeCompression = 17,
};
enum class MediaEffectClosedReason
{
Done = 0,
UnknownError = 1,
UnsupportedEncodingFormat = 2,
EffectCurrentlyUnloaded = 3,
};
enum class MediaMemoryTypes
{
Gpu = 0,
Cpu = 1,
GpuAndCpu = 2,
};
struct IAudioCaptureEffectsManager;
struct IAudioEffect;
struct IAudioEffectDefinition;
struct IAudioEffectDefinitionFactory;
struct IAudioEffectsManagerStatics;
struct IAudioRenderEffectsManager;
struct IAudioRenderEffectsManager2;
struct IBasicAudioEffect;
struct IBasicVideoEffect;
struct ICompositeVideoFrameContext;
struct IProcessAudioFrameContext;
struct IProcessVideoFrameContext;
struct ISlowMotionEffectDefinition;
struct IVideoCompositor;
struct IVideoCompositorDefinition;
struct IVideoCompositorDefinitionFactory;
struct IVideoEffectDefinition;
struct IVideoEffectDefinitionFactory;
struct IVideoTransformEffectDefinition;
struct AudioCaptureEffectsManager;
struct AudioEffect;
struct AudioEffectDefinition;
struct AudioEffectsManager;
struct AudioRenderEffectsManager;
struct CompositeVideoFrameContext;
struct ProcessAudioFrameContext;
struct ProcessVideoFrameContext;
struct SlowMotionEffectDefinition;
struct VideoCompositorDefinition;
struct VideoEffectDefinition;
struct VideoTransformEffectDefinition;
}
namespace winrt::impl {
template <> struct category<Windows::Media::Effects::IAudioCaptureEffectsManager>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IAudioEffect>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IAudioEffectDefinition>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IAudioEffectDefinitionFactory>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IAudioEffectsManagerStatics>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IAudioRenderEffectsManager>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IAudioRenderEffectsManager2>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IBasicAudioEffect>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IBasicVideoEffect>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::ICompositeVideoFrameContext>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IProcessAudioFrameContext>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IProcessVideoFrameContext>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::ISlowMotionEffectDefinition>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IVideoCompositor>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IVideoCompositorDefinition>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IVideoCompositorDefinitionFactory>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IVideoEffectDefinition>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IVideoEffectDefinitionFactory>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::IVideoTransformEffectDefinition>{ using type = interface_category; };
template <> struct category<Windows::Media::Effects::AudioCaptureEffectsManager>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::AudioEffect>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::AudioEffectDefinition>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::AudioEffectsManager>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::AudioRenderEffectsManager>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::CompositeVideoFrameContext>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::ProcessAudioFrameContext>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::ProcessVideoFrameContext>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::SlowMotionEffectDefinition>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::VideoCompositorDefinition>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::VideoEffectDefinition>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::VideoTransformEffectDefinition>{ using type = class_category; };
template <> struct category<Windows::Media::Effects::AudioEffectType>{ using type = enum_category; };
template <> struct category<Windows::Media::Effects::MediaEffectClosedReason>{ using type = enum_category; };
template <> struct category<Windows::Media::Effects::MediaMemoryTypes>{ using type = enum_category; };
template <> struct name<Windows::Media::Effects::IAudioCaptureEffectsManager>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioCaptureEffectsManager" }; };
template <> struct name<Windows::Media::Effects::IAudioEffect>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioEffect" }; };
template <> struct name<Windows::Media::Effects::IAudioEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::IAudioEffectDefinitionFactory>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioEffectDefinitionFactory" }; };
template <> struct name<Windows::Media::Effects::IAudioEffectsManagerStatics>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioEffectsManagerStatics" }; };
template <> struct name<Windows::Media::Effects::IAudioRenderEffectsManager>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioRenderEffectsManager" }; };
template <> struct name<Windows::Media::Effects::IAudioRenderEffectsManager2>{ static constexpr auto & value{ L"Windows.Media.Effects.IAudioRenderEffectsManager2" }; };
template <> struct name<Windows::Media::Effects::IBasicAudioEffect>{ static constexpr auto & value{ L"Windows.Media.Effects.IBasicAudioEffect" }; };
template <> struct name<Windows::Media::Effects::IBasicVideoEffect>{ static constexpr auto & value{ L"Windows.Media.Effects.IBasicVideoEffect" }; };
template <> struct name<Windows::Media::Effects::ICompositeVideoFrameContext>{ static constexpr auto & value{ L"Windows.Media.Effects.ICompositeVideoFrameContext" }; };
template <> struct name<Windows::Media::Effects::IProcessAudioFrameContext>{ static constexpr auto & value{ L"Windows.Media.Effects.IProcessAudioFrameContext" }; };
template <> struct name<Windows::Media::Effects::IProcessVideoFrameContext>{ static constexpr auto & value{ L"Windows.Media.Effects.IProcessVideoFrameContext" }; };
template <> struct name<Windows::Media::Effects::ISlowMotionEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.ISlowMotionEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::IVideoCompositor>{ static constexpr auto & value{ L"Windows.Media.Effects.IVideoCompositor" }; };
template <> struct name<Windows::Media::Effects::IVideoCompositorDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.IVideoCompositorDefinition" }; };
template <> struct name<Windows::Media::Effects::IVideoCompositorDefinitionFactory>{ static constexpr auto & value{ L"Windows.Media.Effects.IVideoCompositorDefinitionFactory" }; };
template <> struct name<Windows::Media::Effects::IVideoEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.IVideoEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::IVideoEffectDefinitionFactory>{ static constexpr auto & value{ L"Windows.Media.Effects.IVideoEffectDefinitionFactory" }; };
template <> struct name<Windows::Media::Effects::IVideoTransformEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.IVideoTransformEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::AudioCaptureEffectsManager>{ static constexpr auto & value{ L"Windows.Media.Effects.AudioCaptureEffectsManager" }; };
template <> struct name<Windows::Media::Effects::AudioEffect>{ static constexpr auto & value{ L"Windows.Media.Effects.AudioEffect" }; };
template <> struct name<Windows::Media::Effects::AudioEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.AudioEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::AudioEffectsManager>{ static constexpr auto & value{ L"Windows.Media.Effects.AudioEffectsManager" }; };
template <> struct name<Windows::Media::Effects::AudioRenderEffectsManager>{ static constexpr auto & value{ L"Windows.Media.Effects.AudioRenderEffectsManager" }; };
template <> struct name<Windows::Media::Effects::CompositeVideoFrameContext>{ static constexpr auto & value{ L"Windows.Media.Effects.CompositeVideoFrameContext" }; };
template <> struct name<Windows::Media::Effects::ProcessAudioFrameContext>{ static constexpr auto & value{ L"Windows.Media.Effects.ProcessAudioFrameContext" }; };
template <> struct name<Windows::Media::Effects::ProcessVideoFrameContext>{ static constexpr auto & value{ L"Windows.Media.Effects.ProcessVideoFrameContext" }; };
template <> struct name<Windows::Media::Effects::SlowMotionEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.SlowMotionEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::VideoCompositorDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.VideoCompositorDefinition" }; };
template <> struct name<Windows::Media::Effects::VideoEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.VideoEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::VideoTransformEffectDefinition>{ static constexpr auto & value{ L"Windows.Media.Effects.VideoTransformEffectDefinition" }; };
template <> struct name<Windows::Media::Effects::AudioEffectType>{ static constexpr auto & value{ L"Windows.Media.Effects.AudioEffectType" }; };
template <> struct name<Windows::Media::Effects::MediaEffectClosedReason>{ static constexpr auto & value{ L"Windows.Media.Effects.MediaEffectClosedReason" }; };
template <> struct name<Windows::Media::Effects::MediaMemoryTypes>{ static constexpr auto & value{ L"Windows.Media.Effects.MediaMemoryTypes" }; };
template <> struct guid<Windows::Media::Effects::IAudioCaptureEffectsManager>{ static constexpr GUID value{ 0x8F85C271,0x038D,0x4393,{ 0x82,0x98,0x54,0x01,0x10,0x60,0x8E,0xEF } }; };
template <> struct guid<Windows::Media::Effects::IAudioEffect>{ static constexpr GUID value{ 0x34AAFA51,0x9207,0x4055,{ 0xBE,0x93,0x6E,0x57,0x34,0xA8,0x6A,0xE4 } }; };
template <> struct guid<Windows::Media::Effects::IAudioEffectDefinition>{ static constexpr GUID value{ 0xE4D7F974,0x7D80,0x4F73,{ 0x90,0x89,0xE3,0x1C,0x9D,0xB9,0xC2,0x94 } }; };
template <> struct guid<Windows::Media::Effects::IAudioEffectDefinitionFactory>{ static constexpr GUID value{ 0x8E1DA646,0xE705,0x45ED,{ 0x8A,0x2B,0xFC,0x4E,0x4F,0x40,0x5A,0x97 } }; };
template <> struct guid<Windows::Media::Effects::IAudioEffectsManagerStatics>{ static constexpr GUID value{ 0x66406C04,0x86FA,0x47CC,{ 0xA3,0x15,0xF4,0x89,0xD8,0xC3,0xFE,0x10 } }; };
template <> struct guid<Windows::Media::Effects::IAudioRenderEffectsManager>{ static constexpr GUID value{ 0x4DC98966,0x8751,0x42B2,{ 0xBF,0xCB,0x39,0xCA,0x78,0x64,0xBD,0x47 } }; };
template <> struct guid<Windows::Media::Effects::IAudioRenderEffectsManager2>{ static constexpr GUID value{ 0xA844CD09,0x5ECC,0x44B3,{ 0xBB,0x4E,0x1D,0xB0,0x72,0x87,0x13,0x9C } }; };
template <> struct guid<Windows::Media::Effects::IBasicAudioEffect>{ static constexpr GUID value{ 0x8C062C53,0x6BC0,0x48B8,{ 0xA9,0x9A,0x4B,0x41,0x55,0x0F,0x13,0x59 } }; };
template <> struct guid<Windows::Media::Effects::IBasicVideoEffect>{ static constexpr GUID value{ 0x8262C7EF,0xB360,0x40BE,{ 0x94,0x9B,0x2F,0xF4,0x2F,0xF3,0x56,0x93 } }; };
template <> struct guid<Windows::Media::Effects::ICompositeVideoFrameContext>{ static constexpr GUID value{ 0x6C30024B,0xF514,0x4278,{ 0xA5,0xF7,0xB9,0x18,0x80,0x49,0xD1,0x10 } }; };
template <> struct guid<Windows::Media::Effects::IProcessAudioFrameContext>{ static constexpr GUID value{ 0x4CD92946,0x1222,0x4A27,{ 0xA5,0x86,0xFB,0x3E,0x20,0x27,0x32,0x55 } }; };
template <> struct guid<Windows::Media::Effects::IProcessVideoFrameContext>{ static constexpr GUID value{ 0x276F0E2B,0x6461,0x401E,{ 0xBA,0x78,0x0F,0xDA,0xD6,0x11,0x4E,0xEC } }; };
template <> struct guid<Windows::Media::Effects::ISlowMotionEffectDefinition>{ static constexpr GUID value{ 0x35053CD0,0x176C,0x4763,{ 0x82,0xC4,0x1B,0x02,0xDB,0xE3,0x17,0x37 } }; };
template <> struct guid<Windows::Media::Effects::IVideoCompositor>{ static constexpr GUID value{ 0x8510B43E,0x420C,0x420F,{ 0x96,0xC7,0x7C,0x98,0xBB,0xA1,0xFC,0x55 } }; };
template <> struct guid<Windows::Media::Effects::IVideoCompositorDefinition>{ static constexpr GUID value{ 0x7946B8D0,0x2010,0x4AE3,{ 0x9A,0xB2,0x2C,0xEF,0x42,0xED,0xD4,0xD2 } }; };
template <> struct guid<Windows::Media::Effects::IVideoCompositorDefinitionFactory>{ static constexpr GUID value{ 0x4366FD10,0x68B8,0x4D52,{ 0x89,0xB6,0x02,0xA9,0x68,0xCC,0xA8,0x99 } }; };
template <> struct guid<Windows::Media::Effects::IVideoEffectDefinition>{ static constexpr GUID value{ 0x39F38CF0,0x8D0F,0x4F3E,{ 0x84,0xFC,0x2D,0x46,0xA5,0x29,0x79,0x43 } }; };
template <> struct guid<Windows::Media::Effects::IVideoEffectDefinitionFactory>{ static constexpr GUID value{ 0x81439B4E,0x6E33,0x428F,{ 0x9D,0x21,0xB5,0xAA,0xFE,0xF7,0x61,0x7C } }; };
template <> struct guid<Windows::Media::Effects::IVideoTransformEffectDefinition>{ static constexpr GUID value{ 0x9664BB6A,0x1EA6,0x4AA6,{ 0x80,0x74,0xAB,0xE8,0x85,0x1E,0xCA,0xE2 } }; };
template <> struct default_interface<Windows::Media::Effects::AudioCaptureEffectsManager>{ using type = Windows::Media::Effects::IAudioCaptureEffectsManager; };
template <> struct default_interface<Windows::Media::Effects::AudioEffect>{ using type = Windows::Media::Effects::IAudioEffect; };
template <> struct default_interface<Windows::Media::Effects::AudioEffectDefinition>{ using type = Windows::Media::Effects::IAudioEffectDefinition; };
template <> struct default_interface<Windows::Media::Effects::AudioRenderEffectsManager>{ using type = Windows::Media::Effects::IAudioRenderEffectsManager; };
template <> struct default_interface<Windows::Media::Effects::CompositeVideoFrameContext>{ using type = Windows::Media::Effects::ICompositeVideoFrameContext; };
template <> struct default_interface<Windows::Media::Effects::ProcessAudioFrameContext>{ using type = Windows::Media::Effects::IProcessAudioFrameContext; };
template <> struct default_interface<Windows::Media::Effects::ProcessVideoFrameContext>{ using type = Windows::Media::Effects::IProcessVideoFrameContext; };
template <> struct default_interface<Windows::Media::Effects::SlowMotionEffectDefinition>{ using type = Windows::Media::Effects::ISlowMotionEffectDefinition; };
template <> struct default_interface<Windows::Media::Effects::VideoCompositorDefinition>{ using type = Windows::Media::Effects::IVideoCompositorDefinition; };
template <> struct default_interface<Windows::Media::Effects::VideoEffectDefinition>{ using type = Windows::Media::Effects::IVideoEffectDefinition; };
template <> struct default_interface<Windows::Media::Effects::VideoTransformEffectDefinition>{ using type = Windows::Media::Effects::IVideoEffectDefinition; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioCaptureEffectsManager
{
event_token AudioCaptureEffectsChanged(Windows::Foundation::TypedEventHandler<Windows::Media::Effects::AudioCaptureEffectsManager, Windows::Foundation::IInspectable> const& handler) const;
using AudioCaptureEffectsChanged_revoker = event_revoker<Windows::Media::Effects::IAudioCaptureEffectsManager>;
AudioCaptureEffectsChanged_revoker AudioCaptureEffectsChanged(auto_revoke_t, Windows::Foundation::TypedEventHandler<Windows::Media::Effects::AudioCaptureEffectsManager, Windows::Foundation::IInspectable> const& handler) const;
void AudioCaptureEffectsChanged(event_token const& token) const;
Windows::Foundation::Collections::IVectorView<Windows::Media::Effects::AudioEffect> GetAudioCaptureEffects() const;
};
template <> struct consume<Windows::Media::Effects::IAudioCaptureEffectsManager> { template <typename D> using type = consume_Windows_Media_Effects_IAudioCaptureEffectsManager<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioEffect
{
Windows::Media::Effects::AudioEffectType AudioEffectType() const;
};
template <> struct consume<Windows::Media::Effects::IAudioEffect> { template <typename D> using type = consume_Windows_Media_Effects_IAudioEffect<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioEffectDefinition
{
hstring ActivatableClassId() const;
Windows::Foundation::Collections::IPropertySet Properties() const;
};
template <> struct consume<Windows::Media::Effects::IAudioEffectDefinition> { template <typename D> using type = consume_Windows_Media_Effects_IAudioEffectDefinition<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioEffectDefinitionFactory
{
Windows::Media::Effects::AudioEffectDefinition Create(param::hstring const& activatableClassId) const;
Windows::Media::Effects::AudioEffectDefinition CreateWithProperties(param::hstring const& activatableClassId, Windows::Foundation::Collections::IPropertySet const& props) const;
};
template <> struct consume<Windows::Media::Effects::IAudioEffectDefinitionFactory> { template <typename D> using type = consume_Windows_Media_Effects_IAudioEffectDefinitionFactory<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioEffectsManagerStatics
{
Windows::Media::Effects::AudioRenderEffectsManager CreateAudioRenderEffectsManager(param::hstring const& deviceId, Windows::Media::Render::AudioRenderCategory const& category) const;
Windows::Media::Effects::AudioRenderEffectsManager CreateAudioRenderEffectsManager(param::hstring const& deviceId, Windows::Media::Render::AudioRenderCategory const& category, Windows::Media::AudioProcessing const& mode) const;
Windows::Media::Effects::AudioCaptureEffectsManager CreateAudioCaptureEffectsManager(param::hstring const& deviceId, Windows::Media::Capture::MediaCategory const& category) const;
Windows::Media::Effects::AudioCaptureEffectsManager CreateAudioCaptureEffectsManager(param::hstring const& deviceId, Windows::Media::Capture::MediaCategory const& category, Windows::Media::AudioProcessing const& mode) const;
};
template <> struct consume<Windows::Media::Effects::IAudioEffectsManagerStatics> { template <typename D> using type = consume_Windows_Media_Effects_IAudioEffectsManagerStatics<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioRenderEffectsManager
{
event_token AudioRenderEffectsChanged(Windows::Foundation::TypedEventHandler<Windows::Media::Effects::AudioRenderEffectsManager, Windows::Foundation::IInspectable> const& handler) const;
using AudioRenderEffectsChanged_revoker = event_revoker<Windows::Media::Effects::IAudioRenderEffectsManager>;
AudioRenderEffectsChanged_revoker AudioRenderEffectsChanged(auto_revoke_t, Windows::Foundation::TypedEventHandler<Windows::Media::Effects::AudioRenderEffectsManager, Windows::Foundation::IInspectable> const& handler) const;
void AudioRenderEffectsChanged(event_token const& token) const;
Windows::Foundation::Collections::IVectorView<Windows::Media::Effects::AudioEffect> GetAudioRenderEffects() const;
};
template <> struct consume<Windows::Media::Effects::IAudioRenderEffectsManager> { template <typename D> using type = consume_Windows_Media_Effects_IAudioRenderEffectsManager<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IAudioRenderEffectsManager2
{
[[deprecated("Not supported starting in windows 10")]] Windows::Storage::Streams::IRandomAccessStreamWithContentType EffectsProviderThumbnail() const;
[[deprecated("Not supported starting in windows 10")]] hstring EffectsProviderSettingsLabel() const;
[[deprecated("Not supported starting in windows 10")]] void ShowSettingsUI() const;
};
template <> struct consume<Windows::Media::Effects::IAudioRenderEffectsManager2> { template <typename D> using type = consume_Windows_Media_Effects_IAudioRenderEffectsManager2<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IBasicAudioEffect
{
bool UseInputFrameForOutput() const;
Windows::Foundation::Collections::IVectorView<Windows::Media::MediaProperties::AudioEncodingProperties> SupportedEncodingProperties() const;
void SetEncodingProperties(Windows::Media::MediaProperties::AudioEncodingProperties const& encodingProperties) const;
void ProcessFrame(Windows::Media::Effects::ProcessAudioFrameContext const& context) const;
void Close(Windows::Media::Effects::MediaEffectClosedReason const& reason) const;
void DiscardQueuedFrames() const;
};
template <> struct consume<Windows::Media::Effects::IBasicAudioEffect> { template <typename D> using type = consume_Windows_Media_Effects_IBasicAudioEffect<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IBasicVideoEffect
{
bool IsReadOnly() const;
Windows::Media::Effects::MediaMemoryTypes SupportedMemoryTypes() const;
bool TimeIndependent() const;
Windows::Foundation::Collections::IVectorView<Windows::Media::MediaProperties::VideoEncodingProperties> SupportedEncodingProperties() const;
void SetEncodingProperties(Windows::Media::MediaProperties::VideoEncodingProperties const& encodingProperties, Windows::Graphics::DirectX::Direct3D11::IDirect3DDevice const& device) const;
void ProcessFrame(Windows::Media::Effects::ProcessVideoFrameContext const& context) const;
void Close(Windows::Media::Effects::MediaEffectClosedReason const& reason) const;
void DiscardQueuedFrames() const;
};
template <> struct consume<Windows::Media::Effects::IBasicVideoEffect> { template <typename D> using type = consume_Windows_Media_Effects_IBasicVideoEffect<D>; };
template <typename D>
struct consume_Windows_Media_Effects_ICompositeVideoFrameContext
{
Windows::Foundation::Collections::IVectorView<Windows::Graphics::DirectX::Direct3D11::IDirect3DSurface> SurfacesToOverlay() const;
Windows::Media::VideoFrame BackgroundFrame() const;
Windows::Media::VideoFrame OutputFrame() const;
Windows::Media::Editing::MediaOverlay GetOverlayForSurface(Windows::Graphics::DirectX::Direct3D11::IDirect3DSurface const& surfaceToOverlay) const;
};
template <> struct consume<Windows::Media::Effects::ICompositeVideoFrameContext> { template <typename D> using type = consume_Windows_Media_Effects_ICompositeVideoFrameContext<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IProcessAudioFrameContext
{
Windows::Media::AudioFrame InputFrame() const;
Windows::Media::AudioFrame OutputFrame() const;
};
template <> struct consume<Windows::Media::Effects::IProcessAudioFrameContext> { template <typename D> using type = consume_Windows_Media_Effects_IProcessAudioFrameContext<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IProcessVideoFrameContext
{
Windows::Media::VideoFrame InputFrame() const;
Windows::Media::VideoFrame OutputFrame() const;
};
template <> struct consume<Windows::Media::Effects::IProcessVideoFrameContext> { template <typename D> using type = consume_Windows_Media_Effects_IProcessVideoFrameContext<D>; };
template <typename D>
struct consume_Windows_Media_Effects_ISlowMotionEffectDefinition
{
double TimeStretchRate() const;
void TimeStretchRate(double value) const;
};
template <> struct consume<Windows::Media::Effects::ISlowMotionEffectDefinition> { template <typename D> using type = consume_Windows_Media_Effects_ISlowMotionEffectDefinition<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IVideoCompositor
{
bool TimeIndependent() const;
void SetEncodingProperties(Windows::Media::MediaProperties::VideoEncodingProperties const& backgroundProperties, Windows::Graphics::DirectX::Direct3D11::IDirect3DDevice const& device) const;
void CompositeFrame(Windows::Media::Effects::CompositeVideoFrameContext const& context) const;
void Close(Windows::Media::Effects::MediaEffectClosedReason const& reason) const;
void DiscardQueuedFrames() const;
};
template <> struct consume<Windows::Media::Effects::IVideoCompositor> { template <typename D> using type = consume_Windows_Media_Effects_IVideoCompositor<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IVideoCompositorDefinition
{
hstring ActivatableClassId() const;
Windows::Foundation::Collections::IPropertySet Properties() const;
};
template <> struct consume<Windows::Media::Effects::IVideoCompositorDefinition> { template <typename D> using type = consume_Windows_Media_Effects_IVideoCompositorDefinition<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IVideoCompositorDefinitionFactory
{
Windows::Media::Effects::VideoCompositorDefinition Create(param::hstring const& activatableClassId) const;
Windows::Media::Effects::VideoCompositorDefinition CreateWithProperties(param::hstring const& activatableClassId, Windows::Foundation::Collections::IPropertySet const& props) const;
};
template <> struct consume<Windows::Media::Effects::IVideoCompositorDefinitionFactory> { template <typename D> using type = consume_Windows_Media_Effects_IVideoCompositorDefinitionFactory<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IVideoEffectDefinition
{
hstring ActivatableClassId() const;
Windows::Foundation::Collections::IPropertySet Properties() const;
};
template <> struct consume<Windows::Media::Effects::IVideoEffectDefinition> { template <typename D> using type = consume_Windows_Media_Effects_IVideoEffectDefinition<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IVideoEffectDefinitionFactory
{
Windows::Media::Effects::VideoEffectDefinition Create(param::hstring const& activatableClassId) const;
Windows::Media::Effects::VideoEffectDefinition CreateWithProperties(param::hstring const& activatableClassId, Windows::Foundation::Collections::IPropertySet const& props) const;
};
template <> struct consume<Windows::Media::Effects::IVideoEffectDefinitionFactory> { template <typename D> using type = consume_Windows_Media_Effects_IVideoEffectDefinitionFactory<D>; };
template <typename D>
struct consume_Windows_Media_Effects_IVideoTransformEffectDefinition
{
Windows::UI::Color PaddingColor() const;
void PaddingColor(Windows::UI::Color const& value) const;
Windows::Foundation::Size OutputSize() const;
void OutputSize(Windows::Foundation::Size const& value) const;
Windows::Foundation::Rect CropRectangle() const;
void CropRectangle(Windows::Foundation::Rect const& value) const;
Windows::Media::MediaProperties::MediaRotation Rotation() const;
void Rotation(Windows::Media::MediaProperties::MediaRotation const& value) const;
Windows::Media::MediaProperties::MediaMirroringOptions Mirror() const;
void Mirror(Windows::Media::MediaProperties::MediaMirroringOptions const& value) const;
void ProcessingAlgorithm(Windows::Media::Transcoding::MediaVideoProcessingAlgorithm const& value) const;
Windows::Media::Transcoding::MediaVideoProcessingAlgorithm ProcessingAlgorithm() const;
};
template <> struct consume<Windows::Media::Effects::IVideoTransformEffectDefinition> { template <typename D> using type = consume_Windows_Media_Effects_IVideoTransformEffectDefinition<D>; };
template <> struct abi<Windows::Media::Effects::IAudioCaptureEffectsManager>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall add_AudioCaptureEffectsChanged(::IUnknown* handler, abi_t<event_token>* token) = 0;
virtual HRESULT __stdcall remove_AudioCaptureEffectsChanged(abi_t<event_token> token) = 0;
virtual HRESULT __stdcall GetAudioCaptureEffects(::IUnknown** effects) = 0;
};};
template <> struct abi<Windows::Media::Effects::IAudioEffect>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_AudioEffectType(abi_t<Windows::Media::Effects::AudioEffectType>* value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IAudioEffectDefinition>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_ActivatableClassId(HSTRING* value) = 0;
virtual HRESULT __stdcall get_Properties(::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IAudioEffectDefinitionFactory>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall Create(HSTRING activatableClassId, ::IUnknown** value) = 0;
virtual HRESULT __stdcall CreateWithProperties(HSTRING activatableClassId, ::IUnknown* props, ::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IAudioEffectsManagerStatics>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall CreateAudioRenderEffectsManager(HSTRING deviceId, abi_t<Windows::Media::Render::AudioRenderCategory> category, ::IUnknown** value) = 0;
virtual HRESULT __stdcall CreateAudioRenderEffectsManagerWithMode(HSTRING deviceId, abi_t<Windows::Media::Render::AudioRenderCategory> category, abi_t<Windows::Media::AudioProcessing> mode, ::IUnknown** value) = 0;
virtual HRESULT __stdcall CreateAudioCaptureEffectsManager(HSTRING deviceId, abi_t<Windows::Media::Capture::MediaCategory> category, ::IUnknown** value) = 0;
virtual HRESULT __stdcall CreateAudioCaptureEffectsManagerWithMode(HSTRING deviceId, abi_t<Windows::Media::Capture::MediaCategory> category, abi_t<Windows::Media::AudioProcessing> mode, ::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IAudioRenderEffectsManager>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall add_AudioRenderEffectsChanged(::IUnknown* handler, abi_t<event_token>* token) = 0;
virtual HRESULT __stdcall remove_AudioRenderEffectsChanged(abi_t<event_token> token) = 0;
virtual HRESULT __stdcall GetAudioRenderEffects(::IUnknown** effects) = 0;
};};
template <> struct abi<Windows::Media::Effects::IAudioRenderEffectsManager2>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_EffectsProviderThumbnail(::IUnknown** value) = 0;
virtual HRESULT __stdcall get_EffectsProviderSettingsLabel(HSTRING* value) = 0;
virtual HRESULT __stdcall ShowSettingsUI() = 0;
};};
template <> struct abi<Windows::Media::Effects::IBasicAudioEffect>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_UseInputFrameForOutput(bool* value) = 0;
virtual HRESULT __stdcall get_SupportedEncodingProperties(::IUnknown** value) = 0;
virtual HRESULT __stdcall SetEncodingProperties(::IUnknown* encodingProperties) = 0;
virtual HRESULT __stdcall ProcessFrame(::IUnknown* context) = 0;
virtual HRESULT __stdcall Close(abi_t<Windows::Media::Effects::MediaEffectClosedReason> reason) = 0;
virtual HRESULT __stdcall DiscardQueuedFrames() = 0;
};};
template <> struct abi<Windows::Media::Effects::IBasicVideoEffect>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_IsReadOnly(bool* value) = 0;
virtual HRESULT __stdcall get_SupportedMemoryTypes(abi_t<Windows::Media::Effects::MediaMemoryTypes>* value) = 0;
virtual HRESULT __stdcall get_TimeIndependent(bool* value) = 0;
virtual HRESULT __stdcall get_SupportedEncodingProperties(::IUnknown** value) = 0;
virtual HRESULT __stdcall SetEncodingProperties(::IUnknown* encodingProperties, ::IUnknown* device) = 0;
virtual HRESULT __stdcall ProcessFrame(::IUnknown* context) = 0;
virtual HRESULT __stdcall Close(abi_t<Windows::Media::Effects::MediaEffectClosedReason> reason) = 0;
virtual HRESULT __stdcall DiscardQueuedFrames() = 0;
};};
template <> struct abi<Windows::Media::Effects::ICompositeVideoFrameContext>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_SurfacesToOverlay(::IUnknown** value) = 0;
virtual HRESULT __stdcall get_BackgroundFrame(::IUnknown** value) = 0;
virtual HRESULT __stdcall get_OutputFrame(::IUnknown** value) = 0;
virtual HRESULT __stdcall GetOverlayForSurface(::IUnknown* surfaceToOverlay, ::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IProcessAudioFrameContext>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_InputFrame(::IUnknown** value) = 0;
virtual HRESULT __stdcall get_OutputFrame(::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IProcessVideoFrameContext>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_InputFrame(::IUnknown** value) = 0;
virtual HRESULT __stdcall get_OutputFrame(::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::ISlowMotionEffectDefinition>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_TimeStretchRate(double* value) = 0;
virtual HRESULT __stdcall put_TimeStretchRate(double value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IVideoCompositor>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_TimeIndependent(bool* value) = 0;
virtual HRESULT __stdcall SetEncodingProperties(::IUnknown* backgroundProperties, ::IUnknown* device) = 0;
virtual HRESULT __stdcall CompositeFrame(::IUnknown* context) = 0;
virtual HRESULT __stdcall Close(abi_t<Windows::Media::Effects::MediaEffectClosedReason> reason) = 0;
virtual HRESULT __stdcall DiscardQueuedFrames() = 0;
};};
template <> struct abi<Windows::Media::Effects::IVideoCompositorDefinition>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_ActivatableClassId(HSTRING* value) = 0;
virtual HRESULT __stdcall get_Properties(::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IVideoCompositorDefinitionFactory>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall Create(HSTRING activatableClassId, ::IUnknown** value) = 0;
virtual HRESULT __stdcall CreateWithProperties(HSTRING activatableClassId, ::IUnknown* props, ::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IVideoEffectDefinition>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_ActivatableClassId(HSTRING* value) = 0;
virtual HRESULT __stdcall get_Properties(::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IVideoEffectDefinitionFactory>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall Create(HSTRING activatableClassId, ::IUnknown** value) = 0;
virtual HRESULT __stdcall CreateWithProperties(HSTRING activatableClassId, ::IUnknown* props, ::IUnknown** value) = 0;
};};
template <> struct abi<Windows::Media::Effects::IVideoTransformEffectDefinition>{ struct type : ::IInspectable
{
virtual HRESULT __stdcall get_PaddingColor(abi_t<Windows::UI::Color>* value) = 0;
virtual HRESULT __stdcall put_PaddingColor(abi_t<Windows::UI::Color> value) = 0;
virtual HRESULT __stdcall get_OutputSize(abi_t<Windows::Foundation::Size>* value) = 0;
virtual HRESULT __stdcall put_OutputSize(abi_t<Windows::Foundation::Size> value) = 0;
virtual HRESULT __stdcall get_CropRectangle(abi_t<Windows::Foundation::Rect>* value) = 0;
virtual HRESULT __stdcall put_CropRectangle(abi_t<Windows::Foundation::Rect> value) = 0;
virtual HRESULT __stdcall get_Rotation(abi_t<Windows::Media::MediaProperties::MediaRotation>* value) = 0;
virtual HRESULT __stdcall put_Rotation(abi_t<Windows::Media::MediaProperties::MediaRotation> value) = 0;
virtual HRESULT __stdcall get_Mirror(abi_t<Windows::Media::MediaProperties::MediaMirroringOptions>* value) = 0;
virtual HRESULT __stdcall put_Mirror(abi_t<Windows::Media::MediaProperties::MediaMirroringOptions> value) = 0;
virtual HRESULT __stdcall put_ProcessingAlgorithm(abi_t<Windows::Media::Transcoding::MediaVideoProcessingAlgorithm> value) = 0;
virtual HRESULT __stdcall get_ProcessingAlgorithm(abi_t<Windows::Media::Transcoding::MediaVideoProcessingAlgorithm>* value) = 0;
};};
}
| [
"tony@tonywall.com"
] | tony@tonywall.com |
9c9d965731a4236c0c4f8851f8929daf0dcd758b | 6628cd493fbe92c2079ff275d53540648314fa32 | /Onlinejudge/1101 - Sequence of Numbers and Sum.cpp | 12dc80f09f2a7bc83db9806f685631e0f734ccaa | [] | no_license | sebicarhat/Cplusplus | e48b77162ea3989aa80612856444984f54a586b7 | 1a7999c1cb4f4ac4e7d7e25e1fb0b998d2dd75bc | refs/heads/master | 2020-04-11T00:21:36.257888 | 2019-06-12T09:18:13 | 2019-06-12T09:18:13 | 160,858,408 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | cpp | #include<iostream>
using namespace std;
int main()
{
int x,v[1000],i,a[1000],s,j;
for(i=1;i<=1000;i++)
{
cin>>v[i]>>a[i];
if(v[i]>0 && a[i]>0)
{
s=0;
if(v[i]<a[i])
{
for(j=v[i];j<=a[i];++j)
{
s=s+j;
cout<<j<<" ";
}
cout<<"Sum="<<s<<"\n";
}
else
if(v[i]>a[i])
{
for(j=a[i];j<=v[i];++j)
{
s=s+j;
cout<<j<<" ";
}
cout<<"Sum="<<s<<"\n";
}
}
else
if(v[i]==0 || a[i]==0 || v[i]==-1 || a[i]==-1) break;
}
return 0;
}
| [
"45130729+sebicarhat@users.noreply.github.com"
] | 45130729+sebicarhat@users.noreply.github.com |
6f2ecfb874365224bfa66b360ec7fe747d7ccf57 | 22d95c0d1dd2d4c8cca1b9b6e26fd84e71deb4d4 | /电工基础1本/实验1实验注意事项.h | 21771cb88603aacd33c750dc120cc8c944891653 | [] | no_license | xujunmingbest/KBE-5001_software | a4463b9c5168fc9407d27e1de34b5e240abc30e5 | 45fb59d8427867b0a985aaff84b6a56d91694870 | refs/heads/master | 2021-09-16T18:39:24.691502 | 2018-06-23T09:02:37 | 2018-06-23T09:02:37 | 130,618,796 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,228 | h | #pragma once
extern bool 实验1实验注意事项IsOpened;
namespace 电工基础1本 {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// 实验1实验注意事项 摘要
/// </summary>
public ref class 实验1实验注意事项 : public System::Windows::Forms::Form
{
public:
实验1实验注意事项(void)
{
InitializeComponent();
实验1实验注意事项IsOpened = true;
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->Font = gcnew System::Drawing::Font("宋体", 15, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Pixel, ((byte)(134)));
//
//TODO: 在此处添加构造函数代码
//
}
protected:
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
~实验1实验注意事项()
{
V->Close();
实验1实验注意事项IsOpened = false;
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Label^ label1;
protected:
private: System::Windows::Forms::Label^ label2;
private: System::Windows::Forms::Label^ label3;
private: System::Windows::Forms::Button^ button1;
private: System::Windows::Forms::Panel^ panel1;
private:
/// <summary>
/// 必需的设计器变量。
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
void InitializeComponent(void)
{
this->label1 = (gcnew System::Windows::Forms::Label());
this->label2 = (gcnew System::Windows::Forms::Label());
this->label3 = (gcnew System::Windows::Forms::Label());
this->button1 = (gcnew System::Windows::Forms::Button());
this->panel1 = (gcnew System::Windows::Forms::Panel());
this->panel1->SuspendLayout();
this->SuspendLayout();
//
// label1
//
this->label1->Location = System::Drawing::Point(3, 19);
this->label1->Name = L"label1";
this->label1->Size = System::Drawing::Size(288, 23);
this->label1->TabIndex = 0;
this->label1->Text = L"五、实验注意事项";
//
// label2
//
this->label2->Location = System::Drawing::Point(3, 95);
this->label2->Name = L"label2";
this->label2->Size = System::Drawing::Size(667, 55);
this->label2->TabIndex = 1;
this->label2->Text = L"1.测二极管正向特性时,稳压电源输出应由小至大逐渐增加,应时刻注意电流表读数不得超过25mA,稳压源输出端切勿碰线短路。";
//
// label3
//
this->label3->Location = System::Drawing::Point(3, 180);
this->label3->Name = L"label3";
this->label3->Size = System::Drawing::Size(667, 54);
this->label3->TabIndex = 2;
this->label3->Text = L"2.进行不同实验时,应先估算电压和电流值,合理选择仪表的量程,勿使仪表超量程,仪表的极性亦不可接错。";
//
// button1
//
this->button1->Location = System::Drawing::Point(30, 12);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(64, 55);
this->button1->TabIndex = 3;
this->button1->Text = L"朗读";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &实验1实验注意事项::button1_Click);
//
// panel1
//
this->panel1->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(192)), static_cast<System::Int32>(static_cast<System::Byte>(255)),
static_cast<System::Int32>(static_cast<System::Byte>(192)));
this->panel1->Controls->Add(this->label1);
this->panel1->Controls->Add(this->label2);
this->panel1->Controls->Add(this->label3);
this->panel1->Font = (gcnew System::Drawing::Font(L"宋体", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(134)));
this->panel1->Location = System::Drawing::Point(30, 73);
this->panel1->Name = L"panel1";
this->panel1->Size = System::Drawing::Size(696, 350);
this->panel1->TabIndex = 4;
//
// 实验1实验注意事项
//
this->AutoScaleDimensions = System::Drawing::SizeF(8, 15);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->AutoScroll = true;
this->ClientSize = System::Drawing::Size(939, 477);
this->Controls->Add(this->panel1);
this->Controls->Add(this->button1);
this->Name = L"实验1实验注意事项";
this->Text = L"实验1实验注意事项";
this->Load += gcnew System::EventHandler(this, &实验1实验注意事项::实验1实验注意事项_Load);
this->panel1->ResumeLayout(false);
this->ResumeLayout(false);
}
#pragma endregion
private: System::Void 实验1实验注意事项_Load(System::Object^ sender, System::EventArgs^ e) {
}
Voice ^ V = gcnew Voice;
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
V->Speak(label1->Text + label2->Text +
label3->Text);
}
};
}
| [
"925271237@qq.com"
] | 925271237@qq.com |
d3f8d8c024041b57046c3e140646e88aa05fe9ec | f2ee0909c84a3ee64a21be8118e252602f945808 | /POJ/1177/11802705_WA.cpp | 6e2e9be4a02901acde676815f80c447d052e218e | [] | no_license | zhsl/OJSolutions | 498d5ec8f5101f7848b72a78b7188ef8d177b38f | c6a390bf839105b39dfb33194604841197e58472 | refs/heads/master | 2021-01-12T09:29:59.063957 | 2017-03-19T07:06:54 | 2017-03-19T07:06:54 | 76,168,886 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,405 | cpp | #include <functional>
#include <algorithm>
#include <iostream>
//#include <ext/rope>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <numeric>
#include <cstring>
#include <cassert>
#include <cstdio>
#include <string>
#include <vector>
#include <bitset>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <list>
#include <set>
#include <map>
using namespace std;
//using namespace __gnu_cxx;
//define
#define pii pair<int,int>
#define mem(a,b) memset(a,b,sizeof(a))
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
#define PI acos(-1.0)
//typedef
typedef __int64 LL;
typedef unsigned __int64 ULL;
//const
const int N=10010;
const int INF=0x3f3f3f3f;
const int MOD=100000,STA=8000010;
const LL LNF=1LL<<60;
const double EPS=1e-8;
const double OO=1e15;
const int dx[4]={-1,0,1,0};
const int dy[4]={0,1,0,-1};
const int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
//Daily Use ...
inline int sign(double x){return (x>EPS)-(x<-EPS);}
template<class T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
template<class T> T lcm(T a,T b){return a/gcd(a,b)*b;}
template<class T> inline T lcm(T a,T b,T d){return a/d*b;}
template<class T> inline T Min(T a,T b){return a<b?a:b;}
template<class T> inline T Max(T a,T b){return a>b?a:b;}
template<class T> inline T Min(T a,T b,T c){return min(min(a, b),c);}
template<class T> inline T Max(T a,T b,T c){return max(max(a, b),c);}
template<class T> inline T Min(T a,T b,T c,T d){return min(min(a, b),min(c,d));}
template<class T> inline T Max(T a,T b,T c,T d){return max(max(a, b),max(c,d));}
//End
struct Seg{
int y,x1,x2;
int c;
Seg(){}
Seg(int a,int b,int c,int d):y(a),x1(b),x2(c),c(d){}
bool operator < (const Seg& a)const{
return y<a.y;
}
}seg[N];
bool lnod[N<<2],rnod[N<<2];
int len[N<<2],cnt[N<<2],cnt2[N<<2];
int n,m;
void pushup(int l,int r,int rt)
{
if(cnt[rt]){
lnod[rt]=rnod[rt]=true;
len[rt]=r-l+1;
cnt2[rt]=2;
}
else if(l==r)cnt2[rt]=lnod[rt]=rnod[rt]=len[rt]=0;
else {
int ls=rt<<1,rs=rt<<1|1;
lnod[rt]=lnod[ls],rnod[rt]=rnod[rs];
len[rt]=len[ls]+len[rs];
cnt2[rt]=cnt2[ls]+cnt2[rs];
if(rnod[ls] && lnod[rs])cnt2[rt]-=2;
}
}
void update(int a,int b,int c,int l,int r,int rt)
{
if(a<=l && r<=b){
cnt[rt]+=c;
pushup(l,r,rt);
return;
}
int mid=(l+r)>>1;
if(a<=mid)update(a,b,c,lson);
if(b>mid)update(a,b,c,rson);
pushup(l,r,rt);
}
int main()
{
// freopen("in.txt","r",stdin);
int i,j,k,l,r,a,b,c,d,ans,last;
const int M=10000;
while(~scanf("%d",&n))
{
m=0;
for(i=0;i<n;i++){
scanf("%d%d%d%d",&a,&b,&c,&d);
a+=M,b+=M,c+=M,d+=M;
seg[m++]=Seg(b,a,c,1);
seg[m++]=Seg(d,a,c,-1);
}
sort(seg,seg+m);
mem(len,0);mem(cnt,0),mem(cnt2,0);
mem(lnod,0);mem(rnod,0);
ans=last=0;
for(i=0;i<m-1;i++){
update(seg[i].x1,seg[i].x2-1,seg[i].c,0,20000,1);
ans+=cnt2[1]*(seg[i+1].y-seg[i].y);
ans+=abs(len[1]-last);
last=len[1];
}
update(seg[i].x1,seg[i].x2-1,seg[i].c,0,20000,1);
printf("%d\n",ans+abs(len[1]-last));
}
return 0;
} | [
"zhanghsl.it@foxmail.com"
] | zhanghsl.it@foxmail.com |
3b6dd111d4f0690caed3c750c94364966fe8cdd7 | a7e9830ff819a23b07e80e46d916c5bc87f33532 | /Assignment29B-GlTranslate/Assignment29B-GlTranslate/Assignment29B-GlTranslate.cpp | e11623b9d1c7e6146f00aad45e0cdf35ae1b4743 | [] | no_license | zodgevaibhav/OpenGL-Native | f7679ac13a2075e1eab61299926c7f66bd65f4a9 | e9441acbca3c8743c912f8b37429951043e1e614 | refs/heads/master | 2021-09-01T11:43:38.285521 | 2017-12-26T19:06:07 | 2017-12-26T19:06:07 | 92,748,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,816 | cpp | #include<windows.h>
#include<gl/GL.h>
#define WIN_WIDTH 800
#define WIN_HEIGHT 600
#pragma comment(lib,"opengl32.lib")
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
HBRUSH hBrushForBColor;
HWND ghwnd = NULL;
HDC ghdc = NULL;
HGLRC ghrc = NULL;
GLclampf red = 0.0f;
GLclampf green = 0.0f;
GLclampf blue = 0.0f;
int paintingSequenceCounter = 3;
DWORD dwStyle;
WINDOWPLACEMENT wpPrev = { sizeof(WINDOWPLACEMENT) };
bool gbFullscreen = false;
bool gbEscaseKeyPressed = false;
bool gbActiveWindow = false;
void resize(int, int);
void initialize(void);
void uninitialize(void);
void display(void);
void ToggleFullscreen(void);
void drawTriangle(void);
GLclampf getRandomNumer(void);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hInstancePrev, LPSTR lpszcmdLine, int nCmdShow)
{
WNDCLASSEX wndclass;
MSG msg;
TCHAR szAppName[] = TEXT("MyApp");
HWND hwnd;
bool bDone = false;
wndclass.cbSize = sizeof(WNDCLASSEX);
wndclass.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
wndclass.cbClsExtra = 0;
wndclass.cbWndExtra = 0;
wndclass.lpfnWndProc = WndProc;
wndclass.hInstance = hInstance;
wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndclass.hbrBackground = (HBRUSH)30;//GetStockObject(BLACK_BRUSH);
wndclass.lpszClassName = szAppName;
wndclass.lpszMenuName = NULL;
wndclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
RegisterClassEx(&wndclass);
hwnd = CreateWindowEx(WS_EX_APPWINDOW,
szAppName,
TEXT("Assignment 15 - Triangle On Graph"),
WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN | WS_VISIBLE,
0,
0,
WIN_WIDTH,
WIN_HEIGHT,
NULL,
NULL,
hInstance,
NULL);
ghwnd = hwnd;
initialize();
ShowWindow(hwnd, nCmdShow);
SetForegroundWindow(hwnd);
SetFocus(hwnd);
while (bDone == false)
{
if (PeekMessage(&msg, hwnd, 0, 0, PM_REMOVE))
{
if (msg.message == WM_QUIT)
{
bDone = true;
}
else
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
else
{
if (gbActiveWindow == true)
{
if (gbEscaseKeyPressed == true)
{
bDone = true;
}
Sleep(300);
display();
}
}
}
uninitialize();
return ((int)msg.wParam);
}
LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
{
switch (iMsg)
{
case WM_DESTROY:
PostQuitMessage(0);
break;
case WM_KEYDOWN:
switch (wParam)
{
case 0X52: //R
red = 1.0f;
green = 0.0f;
blue = 0.0f;
break;
case 0X47: //G
red = 0.0f;
green = 1.0f;
blue = 0.0f;
break;
case 0X42: //B
red = 0.0f;
green = 0.0f;
blue = 1.0f;
break;
case 0X59: //Y
red = 1.0f;
green = 1.0f;
blue = 0.0f;
break;
case 0X4b: //K
red = 0.0f;
green = 0.0f;
blue = 0.0f;
break;
case 0X4d: //M
red = 1.0f;
green = 0.0f;
blue = 1.0f;
break;
case VK_ESCAPE:
DestroyWindow(hwnd);
gbEscaseKeyPressed = true;
break;
case 0x46: //for 'f' or 'F'
if (gbFullscreen == false)
{
ToggleFullscreen();
gbFullscreen = true;
}
else
{
ToggleFullscreen();
gbFullscreen = false;
}
break;
default:
MessageBox(hwnd, TEXT("Unhandled key pressed"), TEXT("Button Pressed Event"), 0);
break;
}
glClearColor(red, green, blue, 0.0f);
break;
case WM_ACTIVATE:
if (HIWORD(wParam) == 0)
{
gbActiveWindow = true;
}
else
{
gbActiveWindow = false;
}
break;
case WM_SIZE:
resize(LOWORD(lParam), HIWORD(lParam));
break;
case WM_CLOSE:
gbEscaseKeyPressed = true;
uninitialize();
}
return (DefWindowProc(hwnd, iMsg, wParam, lParam));
}
void display(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
drawTriangle();
SwapBuffers(ghdc);
}
void resize(int width, int height)
{
if (height == 0)
height = 1;
glViewport(0, 0, (GLsizei)width, (GLsizei)height);
if (width < height)
glOrtho(-50.0f, 50.0f, -50.0f*(GLfloat)height / (GLfloat)width, 50.0f*(GLfloat)height / (GLfloat)width, -50.0f, 50.0f);
else
glOrtho(-50.0f, 50.0f, -50.0f*(GLfloat)width / (GLfloat)height, 50.0f*(GLfloat)width / (GLfloat)height, -50.0f, 50.0f);
}
void uninitialize(void)
{
if (gbFullscreen == true)
{
dwStyle = GetWindowLong(ghwnd, GWL_STYLE);
SetWindowLong(ghwnd, GWL_STYLE, dwStyle | WS_OVERLAPPED);
SetWindowPlacement(ghwnd, &wpPrev);
SetWindowPos(ghwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER | SWP_NOZORDER | SWP_FRAMECHANGED);
ShowCursor(TRUE);
}
wglMakeCurrent(NULL, NULL);
wglDeleteContext(ghrc);
ghrc = NULL;
ReleaseDC(ghwnd, ghdc);
ghdc = NULL;
DestroyWindow(ghwnd);
}
void initialize(void)
{
PIXELFORMATDESCRIPTOR pfd;
int iPixelFormatIndex;
ZeroMemory(&pfd, sizeof(PIXELFORMATDESCRIPTOR));
pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
pfd.nVersion = 1;
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
pfd.iPixelType = PFD_TYPE_RGBA;
pfd.cColorBits = 32;
pfd.cRedBits = 8;
pfd.cBlueBits = 8;
pfd.cGreenBits = 8;
pfd.cAlphaBits = 8;
ghdc = GetDC(ghwnd);
iPixelFormatIndex = ChoosePixelFormat(ghdc, &pfd);
if (iPixelFormatIndex == 0)
{
ReleaseDC(ghwnd, ghdc);
ghdc = NULL;
}
if (SetPixelFormat(ghdc, iPixelFormatIndex, &pfd) == false)
{
ReleaseDC(ghwnd, ghdc);
ghdc = NULL;
}
ghrc = wglCreateContext(ghdc);
if (ghrc == NULL)
{
ReleaseDC(ghwnd, ghdc);
ghdc = NULL;
}
if (wglMakeCurrent(ghdc, ghrc) == false)
{
wglDeleteContext(ghrc);
ghrc = NULL;
ReleaseDC(ghwnd, ghdc);
ghdc = NULL;
}
resize(WIN_WIDTH, WIN_HEIGHT);
glClearColor(red, green, blue, 0.0f);
}
void ToggleFullscreen(void)
{
//variable declarations
MONITORINFO mi;
//code
if (gbFullscreen == false)
{
dwStyle = GetWindowLong(ghwnd, GWL_STYLE);
if (dwStyle & WS_OVERLAPPEDWINDOW)
{
mi = { sizeof(MONITORINFO) };
if (GetWindowPlacement(ghwnd, &wpPrev) && GetMonitorInfo(MonitorFromWindow(ghwnd, MONITORINFOF_PRIMARY), &mi))
{
SetWindowLong(ghwnd, GWL_STYLE, dwStyle & ~WS_OVERLAPPEDWINDOW);
SetWindowPos(ghwnd, HWND_TOP, mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right - mi.rcMonitor.left, mi.rcMonitor.bottom - mi.rcMonitor.top, SWP_NOZORDER | SWP_FRAMECHANGED);
}
}
ShowCursor(FALSE);
}
else
{
//code
SetWindowLong(ghwnd, GWL_STYLE, dwStyle | WS_OVERLAPPEDWINDOW);
SetWindowPlacement(ghwnd, &wpPrev);
SetWindowPos(ghwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER | SWP_NOZORDER | SWP_FRAMECHANGED);
ShowCursor(TRUE);
}
}
void drawTriangle() {
glLineWidth(2);
glTranslatef(0.0f,0.0f,-0.3f);
glBegin(GL_LINES);
glColor3f(1.0f, 1.0f, 0.0f);
glVertex3f(0.0f, 50.0f, 0.0f);
glVertex3f(-50.0f, -50.0f, 0.0f);
glVertex3f(-50.0f, -50.0f, 0.0f);
glVertex3f(50.0f, -50.0f, 0.0f);
glVertex3f(50.0f, -50.0f, 0.0f);
glVertex3f(0.0f, 50.0f, 0.0f);
glEnd();
} | [
"zodgevaibhav@gmail.com"
] | zodgevaibhav@gmail.com |
d6782a7700c78b2f9dbc263f0017e97cf7aa38e0 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/ICU/icu4c-53_1/source/common/uprops.cpp | b42dba1483230e7b0d82c6589069d74f68855866 | [
"ICU",
"NAIST-2003",
"LicenseRef-scancode-unicode",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 24,614 | cpp | /*
*******************************************************************************
*
* Copyright (C) 2002-2013, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
* file name: uprops.cpp
* encoding: US-ASCII
* tab size: 8 (not used)
* indentation:4
*
* created on: 2002feb24
* created by: Markus W. Scherer
*
* Implementations for mostly non-core Unicode character properties
* stored in uprops.icu.
*
* With the APIs implemented here, almost all properties files and
* their associated implementation files are used from this file,
* including those for normalization and case mappings.
*/
#include "unicode/utypes.h"
#include "unicode/uchar.h"
#include "unicode/unorm2.h"
#include "unicode/uscript.h"
#include "unicode/ustring.h"
#include "cstring.h"
#include "normalizer2impl.h"
#include "ucln_cmn.h"
#include "umutex.h"
#include "ubidi_props.h"
#include "uprops.h"
#include "ucase.h"
#include "ustr_imp.h"
#define LENGTHOF(array) (int32_t)(sizeof(array)/sizeof((array)[0]))
U_NAMESPACE_USE
#define GET_BIDI_PROPS() ubidi_getSingleton()
/* general properties API functions ----------------------------------------- */
struct BinaryProperty;
typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UCharProperty which);
struct BinaryProperty {
int32_t column; // SRC_PROPSVEC column, or "source" if mask==0
uint32_t mask;
BinaryPropertyContains *contains;
};
static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UCharProperty /*which*/) {
/* systematic, directly stored properties */
return (u_getUnicodeProperties(c, prop.column)&prop.mask)!=0;
}
static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty which) {
return ucase_hasBinaryProperty(c, which);
}
static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return ubidi_isBidiControl(GET_BIDI_PROPS(), c);
}
static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return ubidi_isMirrored(GET_BIDI_PROPS(), c);
}
static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return ubidi_isJoinControl(GET_BIDI_PROPS(), c);
}
#if UCONFIG_NO_NORMALIZATION
static UBool hasFullCompositionExclusion(const BinaryProperty &, UChar32, UCharProperty) {
return FALSE;
}
#else
static UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
// By definition, Full_Composition_Exclusion is the same as NFC_QC=No.
UErrorCode errorCode=U_ZERO_ERROR;
const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
return U_SUCCESS(errorCode) && impl->isCompNo(impl->getNorm16(c));
}
#endif
// UCHAR_NF*_INERT properties
#if UCONFIG_NO_NORMALIZATION
static UBool isNormInert(const BinaryProperty &, UChar32, UCharProperty) {
return FALSE;
}
#else
static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty which) {
UErrorCode errorCode=U_ZERO_ERROR;
const Normalizer2 *norm2=Normalizer2Factory::getInstance(
(UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode);
return U_SUCCESS(errorCode) && norm2->isInert(c);
}
#endif
#if UCONFIG_NO_NORMALIZATION
static UBool changesWhenCasefolded(const BinaryProperty &, UChar32, UCharProperty) {
return FALSE;
}
#else
static UBool changesWhenCasefolded(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
UnicodeString nfd;
UErrorCode errorCode=U_ZERO_ERROR;
const Normalizer2 *nfcNorm2=Normalizer2Factory::getNFCInstance(errorCode);
if(U_FAILURE(errorCode)) {
return FALSE;
}
if(nfcNorm2->getDecomposition(c, nfd)) {
/* c has a decomposition */
if(nfd.length()==1) {
c=nfd[0]; /* single BMP code point */
} else if(nfd.length()<=U16_MAX_LENGTH &&
nfd.length()==U16_LENGTH(c=nfd.char32At(0))
) {
/* single supplementary code point */
} else {
c=U_SENTINEL;
}
} else if(c<0) {
return FALSE; /* protect against bad input */
}
if(c>=0) {
/* single code point */
const UCaseProps *csp=ucase_getSingleton();
const UChar *resultString;
return (UBool)(ucase_toFullFolding(csp, c, &resultString, U_FOLD_CASE_DEFAULT)>=0);
} else {
/* guess some large but stack-friendly capacity */
UChar dest[2*UCASE_MAX_STRING_LENGTH];
int32_t destLength;
destLength=u_strFoldCase(dest, LENGTHOF(dest),
nfd.getBuffer(), nfd.length(),
U_FOLD_CASE_DEFAULT, &errorCode);
return (UBool)(U_SUCCESS(errorCode) &&
0!=u_strCompare(nfd.getBuffer(), nfd.length(),
dest, destLength, FALSE));
}
}
#endif
#if UCONFIG_NO_NORMALIZATION
static UBool changesWhenNFKC_Casefolded(const BinaryProperty &, UChar32, UCharProperty) {
return FALSE;
}
#else
static UBool changesWhenNFKC_Casefolded(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
UErrorCode errorCode=U_ZERO_ERROR;
const Normalizer2Impl *kcf=Normalizer2Factory::getNFKC_CFImpl(errorCode);
if(U_FAILURE(errorCode)) {
return FALSE;
}
UnicodeString src(c);
UnicodeString dest;
{
// The ReorderingBuffer must be in a block because its destructor
// needs to release dest's buffer before we look at its contents.
ReorderingBuffer buffer(*kcf, dest);
// Small destCapacity for NFKC_CF(c).
if(buffer.init(5, errorCode)) {
const UChar *srcArray=src.getBuffer();
kcf->compose(srcArray, srcArray+src.length(), FALSE,
TRUE, buffer, errorCode);
}
}
return U_SUCCESS(errorCode) && dest!=src;
}
#endif
#if UCONFIG_NO_NORMALIZATION
static UBool isCanonSegmentStarter(const BinaryProperty &, UChar32, UCharProperty) {
return FALSE;
}
#else
static UBool isCanonSegmentStarter(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
UErrorCode errorCode=U_ZERO_ERROR;
const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
return
U_SUCCESS(errorCode) && impl->ensureCanonIterData(errorCode) &&
impl->isCanonSegmentStarter(c);
}
#endif
static UBool isPOSIX_alnum(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return u_isalnumPOSIX(c);
}
static UBool isPOSIX_blank(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return u_isblank(c);
}
static UBool isPOSIX_graph(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return u_isgraphPOSIX(c);
}
static UBool isPOSIX_print(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return u_isprintPOSIX(c);
}
static UBool isPOSIX_xdigit(const BinaryProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return u_isxdigit(c);
}
static const BinaryProperty binProps[UCHAR_BINARY_LIMIT]={
/*
* column and mask values for binary properties from u_getUnicodeProperties().
* Must be in order of corresponding UCharProperty,
* and there must be exactly one entry per binary UCharProperty.
*
* Properties with mask==0 are handled in code.
* For them, column is the UCharPropertySource value.
*/
{ 1, U_MASK(UPROPS_ALPHABETIC), defaultContains },
{ 1, U_MASK(UPROPS_ASCII_HEX_DIGIT), defaultContains },
{ UPROPS_SRC_BIDI, 0, isBidiControl },
{ UPROPS_SRC_BIDI, 0, isMirrored },
{ 1, U_MASK(UPROPS_DASH), defaultContains },
{ 1, U_MASK(UPROPS_DEFAULT_IGNORABLE_CODE_POINT), defaultContains },
{ 1, U_MASK(UPROPS_DEPRECATED), defaultContains },
{ 1, U_MASK(UPROPS_DIACRITIC), defaultContains },
{ 1, U_MASK(UPROPS_EXTENDER), defaultContains },
{ UPROPS_SRC_NFC, 0, hasFullCompositionExclusion },
{ 1, U_MASK(UPROPS_GRAPHEME_BASE), defaultContains },
{ 1, U_MASK(UPROPS_GRAPHEME_EXTEND), defaultContains },
{ 1, U_MASK(UPROPS_GRAPHEME_LINK), defaultContains },
{ 1, U_MASK(UPROPS_HEX_DIGIT), defaultContains },
{ 1, U_MASK(UPROPS_HYPHEN), defaultContains },
{ 1, U_MASK(UPROPS_ID_CONTINUE), defaultContains },
{ 1, U_MASK(UPROPS_ID_START), defaultContains },
{ 1, U_MASK(UPROPS_IDEOGRAPHIC), defaultContains },
{ 1, U_MASK(UPROPS_IDS_BINARY_OPERATOR), defaultContains },
{ 1, U_MASK(UPROPS_IDS_TRINARY_OPERATOR), defaultContains },
{ UPROPS_SRC_BIDI, 0, isJoinControl },
{ 1, U_MASK(UPROPS_LOGICAL_ORDER_EXCEPTION), defaultContains },
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_LOWERCASE
{ 1, U_MASK(UPROPS_MATH), defaultContains },
{ 1, U_MASK(UPROPS_NONCHARACTER_CODE_POINT), defaultContains },
{ 1, U_MASK(UPROPS_QUOTATION_MARK), defaultContains },
{ 1, U_MASK(UPROPS_RADICAL), defaultContains },
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_SOFT_DOTTED
{ 1, U_MASK(UPROPS_TERMINAL_PUNCTUATION), defaultContains },
{ 1, U_MASK(UPROPS_UNIFIED_IDEOGRAPH), defaultContains },
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_UPPERCASE
{ 1, U_MASK(UPROPS_WHITE_SPACE), defaultContains },
{ 1, U_MASK(UPROPS_XID_CONTINUE), defaultContains },
{ 1, U_MASK(UPROPS_XID_START), defaultContains },
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CASE_SENSITIVE
{ 1, U_MASK(UPROPS_S_TERM), defaultContains },
{ 1, U_MASK(UPROPS_VARIATION_SELECTOR), defaultContains },
{ UPROPS_SRC_NFC, 0, isNormInert }, // UCHAR_NFD_INERT
{ UPROPS_SRC_NFKC, 0, isNormInert }, // UCHAR_NFKD_INERT
{ UPROPS_SRC_NFC, 0, isNormInert }, // UCHAR_NFC_INERT
{ UPROPS_SRC_NFKC, 0, isNormInert }, // UCHAR_NFKC_INERT
{ UPROPS_SRC_NFC_CANON_ITER, 0, isCanonSegmentStarter },
{ 1, U_MASK(UPROPS_PATTERN_SYNTAX), defaultContains },
{ 1, U_MASK(UPROPS_PATTERN_WHITE_SPACE), defaultContains },
{ UPROPS_SRC_CHAR_AND_PROPSVEC, 0, isPOSIX_alnum },
{ UPROPS_SRC_CHAR, 0, isPOSIX_blank },
{ UPROPS_SRC_CHAR, 0, isPOSIX_graph },
{ UPROPS_SRC_CHAR, 0, isPOSIX_print },
{ UPROPS_SRC_CHAR, 0, isPOSIX_xdigit },
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CASED
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CASE_IGNORABLE
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CHANGES_WHEN_LOWERCASED
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CHANGES_WHEN_UPPERCASED
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CHANGES_WHEN_TITLECASED
{ UPROPS_SRC_CASE_AND_NORM, 0, changesWhenCasefolded },
{ UPROPS_SRC_CASE, 0, caseBinaryPropertyContains }, // UCHAR_CHANGES_WHEN_CASEMAPPED
{ UPROPS_SRC_NFKC_CF, 0, changesWhenNFKC_Casefolded }
};
U_CAPI UBool U_EXPORT2
u_hasBinaryProperty(UChar32 c, UCharProperty which) {
/* c is range-checked in the functions that are called from here */
if(which<UCHAR_BINARY_START || UCHAR_BINARY_LIMIT<=which) {
/* not a known binary property */
return FALSE;
} else {
const BinaryProperty &prop=binProps[which];
return prop.contains(prop, c, which);
}
}
struct IntProperty;
typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UCharProperty which);
typedef int32_t IntPropertyGetMaxValue(const IntProperty &prop, UCharProperty which);
struct IntProperty {
int32_t column; // SRC_PROPSVEC column, or "source" if mask==0
uint32_t mask;
int32_t shift; // =maxValue if getMaxValueFromShift() is used
IntPropertyGetValue *getValue;
IntPropertyGetMaxValue *getMaxValue;
};
static int32_t defaultGetValue(const IntProperty &prop, UChar32 c, UCharProperty /*which*/) {
/* systematic, directly stored properties */
return (int32_t)(u_getUnicodeProperties(c, prop.column)&prop.mask)>>prop.shift;
}
static int32_t defaultGetMaxValue(const IntProperty &prop, UCharProperty /*which*/) {
return (uprv_getMaxValues(prop.column)&prop.mask)>>prop.shift;
}
static int32_t getMaxValueFromShift(const IntProperty &prop, UCharProperty /*which*/) {
return prop.shift;
}
static int32_t getBiDiClass(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return (int32_t)u_charDirection(c);
}
static int32_t getBiDiPairedBracketType(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return (int32_t)ubidi_getPairedBracketType(GET_BIDI_PROPS(), c);
}
static int32_t biDiGetMaxValue(const IntProperty &/*prop*/, UCharProperty which) {
return ubidi_getMaxValue(GET_BIDI_PROPS(), which);
}
#if UCONFIG_NO_NORMALIZATION
static int32_t getCombiningClass(const IntProperty &, UChar32, UCharProperty) {
return 0;
}
#else
static int32_t getCombiningClass(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return u_getCombiningClass(c);
}
#endif
static int32_t getGeneralCategory(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return (int32_t)u_charType(c);
}
static int32_t getJoiningGroup(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return ubidi_getJoiningGroup(GET_BIDI_PROPS(), c);
}
static int32_t getJoiningType(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return ubidi_getJoiningType(GET_BIDI_PROPS(), c);
}
static int32_t getNumericType(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c));
return UPROPS_NTV_GET_TYPE(ntv);
}
static int32_t getScript(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
UErrorCode errorCode=U_ZERO_ERROR;
return (int32_t)uscript_getScript(c, &errorCode);
}
/*
* Map some of the Grapheme Cluster Break values to Hangul Syllable Types.
* Hangul_Syllable_Type is fully redundant with a subset of Grapheme_Cluster_Break.
*/
static const UHangulSyllableType gcbToHst[]={
U_HST_NOT_APPLICABLE, /* U_GCB_OTHER */
U_HST_NOT_APPLICABLE, /* U_GCB_CONTROL */
U_HST_NOT_APPLICABLE, /* U_GCB_CR */
U_HST_NOT_APPLICABLE, /* U_GCB_EXTEND */
U_HST_LEADING_JAMO, /* U_GCB_L */
U_HST_NOT_APPLICABLE, /* U_GCB_LF */
U_HST_LV_SYLLABLE, /* U_GCB_LV */
U_HST_LVT_SYLLABLE, /* U_GCB_LVT */
U_HST_TRAILING_JAMO, /* U_GCB_T */
U_HST_VOWEL_JAMO /* U_GCB_V */
/*
* Omit GCB values beyond what we need for hst.
* The code below checks for the array length.
*/
};
static int32_t getHangulSyllableType(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
/* see comments on gcbToHst[] above */
int32_t gcb=(int32_t)(u_getUnicodeProperties(c, 2)&UPROPS_GCB_MASK)>>UPROPS_GCB_SHIFT;
if(gcb<LENGTHOF(gcbToHst)) {
return gcbToHst[gcb];
} else {
return U_HST_NOT_APPLICABLE;
}
}
#if UCONFIG_NO_NORMALIZATION
static int32_t getNormQuickCheck(const IntProperty &, UChar32, UCharProperty) {
return 0;
}
#else
static int32_t getNormQuickCheck(const IntProperty &/*prop*/, UChar32 c, UCharProperty which) {
return (int32_t)unorm_getQuickCheck(c, (UNormalizationMode)(which-UCHAR_NFD_QUICK_CHECK+UNORM_NFD));
}
#endif
#if UCONFIG_NO_NORMALIZATION
static int32_t getLeadCombiningClass(const IntProperty &, UChar32, UCharProperty) {
return 0;
}
#else
static int32_t getLeadCombiningClass(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return unorm_getFCD16(c)>>8;
}
#endif
#if UCONFIG_NO_NORMALIZATION
static int32_t getTrailCombiningClass(const IntProperty &, UChar32, UCharProperty) {
return 0;
}
#else
static int32_t getTrailCombiningClass(const IntProperty &/*prop*/, UChar32 c, UCharProperty /*which*/) {
return unorm_getFCD16(c)&0xff;
}
#endif
static const IntProperty intProps[UCHAR_INT_LIMIT-UCHAR_INT_START]={
/*
* column, mask and shift values for int-value properties from u_getUnicodeProperties().
* Must be in order of corresponding UCharProperty,
* and there must be exactly one entry per int UCharProperty.
*
* Properties with mask==0 are handled in code.
* For them, column is the UCharPropertySource value.
*/
{ UPROPS_SRC_BIDI, 0, 0, getBiDiClass, biDiGetMaxValue },
{ 0, UPROPS_BLOCK_MASK, UPROPS_BLOCK_SHIFT, defaultGetValue, defaultGetMaxValue },
{ UPROPS_SRC_NFC, 0, 0xff, getCombiningClass, getMaxValueFromShift },
{ 2, UPROPS_DT_MASK, 0, defaultGetValue, defaultGetMaxValue },
{ 0, UPROPS_EA_MASK, UPROPS_EA_SHIFT, defaultGetValue, defaultGetMaxValue },
{ UPROPS_SRC_CHAR, 0, (int32_t)U_CHAR_CATEGORY_COUNT-1,getGeneralCategory, getMaxValueFromShift },
{ UPROPS_SRC_BIDI, 0, 0, getJoiningGroup, biDiGetMaxValue },
{ UPROPS_SRC_BIDI, 0, 0, getJoiningType, biDiGetMaxValue },
{ 2, UPROPS_LB_MASK, UPROPS_LB_SHIFT, defaultGetValue, defaultGetMaxValue },
{ UPROPS_SRC_CHAR, 0, (int32_t)U_NT_COUNT-1, getNumericType, getMaxValueFromShift },
{ 0, UPROPS_SCRIPT_MASK, 0, getScript, defaultGetMaxValue },
{ UPROPS_SRC_PROPSVEC, 0, (int32_t)U_HST_COUNT-1, getHangulSyllableType, getMaxValueFromShift },
// UCHAR_NFD_QUICK_CHECK: max=1=YES -- never "maybe", only "no" or "yes"
{ UPROPS_SRC_NFC, 0, (int32_t)UNORM_YES, getNormQuickCheck, getMaxValueFromShift },
// UCHAR_NFKD_QUICK_CHECK: max=1=YES -- never "maybe", only "no" or "yes"
{ UPROPS_SRC_NFKC, 0, (int32_t)UNORM_YES, getNormQuickCheck, getMaxValueFromShift },
// UCHAR_NFC_QUICK_CHECK: max=2=MAYBE
{ UPROPS_SRC_NFC, 0, (int32_t)UNORM_MAYBE, getNormQuickCheck, getMaxValueFromShift },
// UCHAR_NFKC_QUICK_CHECK: max=2=MAYBE
{ UPROPS_SRC_NFKC, 0, (int32_t)UNORM_MAYBE, getNormQuickCheck, getMaxValueFromShift },
{ UPROPS_SRC_NFC, 0, 0xff, getLeadCombiningClass, getMaxValueFromShift },
{ UPROPS_SRC_NFC, 0, 0xff, getTrailCombiningClass, getMaxValueFromShift },
{ 2, UPROPS_GCB_MASK, UPROPS_GCB_SHIFT, defaultGetValue, defaultGetMaxValue },
{ 2, UPROPS_SB_MASK, UPROPS_SB_SHIFT, defaultGetValue, defaultGetMaxValue },
{ 2, UPROPS_WB_MASK, UPROPS_WB_SHIFT, defaultGetValue, defaultGetMaxValue },
{ UPROPS_SRC_BIDI, 0, 0, getBiDiPairedBracketType, biDiGetMaxValue },
};
U_CAPI int32_t U_EXPORT2
u_getIntPropertyValue(UChar32 c, UCharProperty which) {
if(which<UCHAR_INT_START) {
if(UCHAR_BINARY_START<=which && which<UCHAR_BINARY_LIMIT) {
const BinaryProperty &prop=binProps[which];
return prop.contains(prop, c, which);
}
} else if(which<UCHAR_INT_LIMIT) {
const IntProperty &prop=intProps[which-UCHAR_INT_START];
return prop.getValue(prop, c, which);
} else if(which==UCHAR_GENERAL_CATEGORY_MASK) {
return U_MASK(u_charType(c));
}
return 0; // undefined
}
U_CAPI int32_t U_EXPORT2
u_getIntPropertyMinValue(UCharProperty /*which*/) {
return 0; /* all binary/enum/int properties have a minimum value of 0 */
}
U_CAPI int32_t U_EXPORT2
u_getIntPropertyMaxValue(UCharProperty which) {
if(which<UCHAR_INT_START) {
if(UCHAR_BINARY_START<=which && which<UCHAR_BINARY_LIMIT) {
return 1; // maximum TRUE for all binary properties
}
} else if(which<UCHAR_INT_LIMIT) {
const IntProperty &prop=intProps[which-UCHAR_INT_START];
return prop.getMaxValue(prop, which);
}
return -1; // undefined
}
U_CFUNC UCharPropertySource U_EXPORT2
uprops_getSource(UCharProperty which) {
if(which<UCHAR_BINARY_START) {
return UPROPS_SRC_NONE; /* undefined */
} else if(which<UCHAR_BINARY_LIMIT) {
const BinaryProperty &prop=binProps[which];
if(prop.mask!=0) {
return UPROPS_SRC_PROPSVEC;
} else {
return (UCharPropertySource)prop.column;
}
} else if(which<UCHAR_INT_START) {
return UPROPS_SRC_NONE; /* undefined */
} else if(which<UCHAR_INT_LIMIT) {
const IntProperty &prop=intProps[which-UCHAR_INT_START];
if(prop.mask!=0) {
return UPROPS_SRC_PROPSVEC;
} else {
return (UCharPropertySource)prop.column;
}
} else if(which<UCHAR_STRING_START) {
switch(which) {
case UCHAR_GENERAL_CATEGORY_MASK:
case UCHAR_NUMERIC_VALUE:
return UPROPS_SRC_CHAR;
default:
return UPROPS_SRC_NONE;
}
} else if(which<UCHAR_STRING_LIMIT) {
switch(which) {
case UCHAR_AGE:
return UPROPS_SRC_PROPSVEC;
case UCHAR_BIDI_MIRRORING_GLYPH:
return UPROPS_SRC_BIDI;
case UCHAR_CASE_FOLDING:
case UCHAR_LOWERCASE_MAPPING:
case UCHAR_SIMPLE_CASE_FOLDING:
case UCHAR_SIMPLE_LOWERCASE_MAPPING:
case UCHAR_SIMPLE_TITLECASE_MAPPING:
case UCHAR_SIMPLE_UPPERCASE_MAPPING:
case UCHAR_TITLECASE_MAPPING:
case UCHAR_UPPERCASE_MAPPING:
return UPROPS_SRC_CASE;
case UCHAR_ISO_COMMENT:
case UCHAR_NAME:
case UCHAR_UNICODE_1_NAME:
return UPROPS_SRC_NAMES;
default:
return UPROPS_SRC_NONE;
}
} else {
switch(which) {
case UCHAR_SCRIPT_EXTENSIONS:
return UPROPS_SRC_PROPSVEC;
default:
return UPROPS_SRC_NONE; /* undefined */
}
}
}
#if !UCONFIG_NO_NORMALIZATION
U_CAPI int32_t U_EXPORT2
u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) {
if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
return 0;
}
if(destCapacity<0 || (dest==NULL && destCapacity>0)) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
// Compute the FC_NFKC_Closure on the fly:
// We have the API for complete coverage of Unicode properties, although
// this value by itself is not useful via API.
// (What could be useful is a custom normalization table that combines
// case folding and NFKC.)
// For the derivation, see Unicode's DerivedNormalizationProps.txt.
const Normalizer2 *nfkc=Normalizer2Factory::getNFKCInstance(*pErrorCode);
const UCaseProps *csp=ucase_getSingleton();
if(U_FAILURE(*pErrorCode)) {
return 0;
}
// first: b = NFKC(Fold(a))
UnicodeString folded1String;
const UChar *folded1;
int32_t folded1Length=ucase_toFullFolding(csp, c, &folded1, U_FOLD_CASE_DEFAULT);
if(folded1Length<0) {
const Normalizer2Impl *nfkcImpl=Normalizer2Factory::getImpl(nfkc);
if(nfkcImpl->getCompQuickCheck(nfkcImpl->getNorm16(c))!=UNORM_NO) {
return u_terminateUChars(dest, destCapacity, 0, pErrorCode); // c does not change at all under CaseFolding+NFKC
}
folded1String.setTo(c);
} else {
if(folded1Length>UCASE_MAX_STRING_LENGTH) {
folded1String.setTo(folded1Length);
} else {
folded1String.setTo(FALSE, folded1, folded1Length);
}
}
UnicodeString kc1=nfkc->normalize(folded1String, *pErrorCode);
// second: c = NFKC(Fold(b))
UnicodeString folded2String(kc1);
UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode);
// if (c != b) add the mapping from a to c
if(U_FAILURE(*pErrorCode) || kc1==kc2) {
return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
} else {
return kc2.extract(dest, destCapacity, *pErrorCode);
}
}
#endif
| [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
8a38daa87a23a6a84ddc930e58b6ea73e9d12903 | bc90395b5c6fd005a45a8de0d79b65fdc4bbb854 | /src/LambdaToKsSubstitution.h | 430fcdc8c7bf4a8eb2c08fc30797efe7c61afd84 | [] | no_license | cvoss/DaVinciCoding | 0c282043947033979eab241f6d2977b4cf0c6534 | 8dfcf1e73db721e94e8cd065658b767efa7cf003 | refs/heads/master | 2021-01-12T05:36:18.827354 | 2016-12-22T13:29:23 | 2016-12-22T13:29:23 | 77,146,601 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,020 | h | #ifndef LAMBDATOKSSUBSTITUTION_H
#define LAMBDATOKSSUBSTITUTION_H 1
// Include files
// from Gaudi
#include "GaudiAlg/GaudiTool.h"
#include "IParticleManipulator.h" // Interface
/** @class LambdaToKsSubstitution LambdaToKsSubstitution.h
*
*
* @author Christian Voss
* @date 2014-06-23
*/
class LambdaToKsSubstitution : public GaudiTool, virtual public IParticleManipulator {
public:
/// Standard constructor
LambdaToKsSubstitution( const std::string& type,
const std::string& name,
const IInterface* parent);
virtual ~LambdaToKsSubstitution( ); ///< Destructor
virtual StatusCode initialize();
virtual StatusCode doCorrection( LHCb::Particle* particle );
virtual StatusCode undoCorrection( LHCb::Particle* particle );
protected:
private:
double _piMass, _pMass;
IParticleReFitter* _reFit;
LHCb::IParticlePropertySvc* _ppSvc;
LHCb::ParticleID _pipID, _pimID, _pID, _pbarID;
};
#endif // LAMBDATOKSSUBSTITUTION_H
| [
"cvoss@lxblade03.physik.rwth-aachen.de"
] | cvoss@lxblade03.physik.rwth-aachen.de |
02861b78b3cf7571b1f31c321076664a56a16512 | a3f3318c67032a1ca231028d316d5896baaf4dcb | /CA Simulator/CA Simulator.h | 75420a9b911e27f47bde827be1585c95cd6a23bd | [] | no_license | 0000duck/Cellular-Automata-Simulator | 6f18c3477ae2eddfd59f8e1c44180a35f955e05b | 3062b679152ef6c67cdc218fcf23f8aba6367916 | refs/heads/master | 2020-04-15T10:23:04.957936 | 2018-05-18T15:39:11 | 2018-05-18T15:39:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 502 | h |
// CA Simulator.h : main header file for the PROJECT_NAME application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CASimulatorApp:
// See CA Simulator.cpp for the implementation of this class
//
class CASimulatorApp : public CWinApp
{
public:
CASimulatorApp();
// Overrides
public:
virtual BOOL InitInstance();
// Implementation
DECLARE_MESSAGE_MAP()
};
extern CASimulatorApp theApp; | [
"30803548+SamiJones@users.noreply.github.com"
] | 30803548+SamiJones@users.noreply.github.com |
22fa2779f016c5d2a1cfdb11c0e4d62c39d6dae8 | a873ae232a3577a796a7deefa193c81977b3cdd5 | /Lec02/sum2.cpp | 781bf57cb37275f94a6167923391bb1162494454 | [] | no_license | ucsb-cs16-su17/code-from-class | 9053cbfb8dacbdade6f774f6f8381c46b2a1e041 | 211dc93c750181063eab21d81caffb4b8be1f772 | refs/heads/master | 2020-04-05T12:34:04.419765 | 2017-08-29T23:17:48 | 2017-08-29T23:17:48 | 95,152,409 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cpp | #include <iostream>
#include <cassert>
using namespace std;
int main() {
int n;
cout << "Enter n\n";
cin >> n;
double sum = 0.0;
for (int i = 1; i <= n; i = i + 1) {
sum = sum + 1.0/i;
}
cout << "Sum of the first " << n
<< " terms is: " << sum << endl;
return 0;
} | [
"lawtonnichols@gmail.com"
] | lawtonnichols@gmail.com |
37524898d585a5a4a04984e1a3c20fdee1cedb78 | 26a6b4885f6d5b82275c2497521276d4dc8f9909 | /pkg/common/src/opt_basic_parser.h | 5ee58dcd8ef44a4a9ac88e154e7a9af123bfc797 | [] | no_license | aaaa11140/SWK | 151fd58a8cd1422c89a5458673520a5fba6f9c2f | 99ce3fefadab55eb66772b9b7b1db1cdb7ff65dc | refs/heads/master | 2021-01-10T14:45:12.690043 | 2015-11-23T09:51:19 | 2015-11-23T09:51:19 | 46,690,365 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,464 | h | // **************************************************************************
// File [ opt_basic_parser.h ]
// Author [ littleshamoo ]
// Synopsis [ ]
// History [ Version 2.0 2014/01/01 ]
// **************************************************************************
#ifndef __OPT_BASIC_PARSER_H__
#define __OPT_BASIC_PARSER_H__
#include <vector>
#include <string>
#include "opt_parser.h"
namespace CommonNs {
class OptMgr;
class OptBasicParser : public OptParser {
public:
OptBasicParser(OptMgr* mgr) : OptParser{mgr} {};
~OptBasicParser() {};
virtual bool parse(int argc, char** argv) override;
virtual bool parse(const std::vector<std::string>& args) override;
virtual size_t nParsedArgs() const override;
virtual const std::string&
getParsedArg(const size_t& i) const override;
virtual bool getParsedOpt(const std::string& f) const override;
virtual const std::string&
getParsedValue(const std::string& f) const override;
protected:
bool parseShortFlags(int argc, char **argv, int &i);
bool parseLongFlags(int argc, char **argv, int &i);
std::vector<std::string> parsedArgs_;
std::vector<bool> parsedOpts_;
std::vector<std::string> parsedValues_;
};
inline size_t OptBasicParser::nParsedArgs() const {
return parsedArgs_.size();
}
inline const std::string& OptBasicParser::getParsedArg(const size_t &i) const {
return parsedArgs_[i];
}
};
#endif
| [
"aaaa11140@gmail.com"
] | aaaa11140@gmail.com |
77befcc703f6d89930bb38b959c9ea78be7aae87 | ee70770dc306afe31617a3d59b518ebb3ec69ccb | /mainwindow.cpp | 624003a280597878c5c4373ba54c6755469508d1 | [] | no_license | TianJM/TankSurface | b8c50ab2c81e88dcc5503e7c5e29c559388b74ed | f08f63abacb865b4d2e8fb0ddd4604dcd35aae36 | refs/heads/master | 2021-07-12T13:35:40.184855 | 2017-10-16T11:20:58 | 2017-10-16T11:20:58 | 107,126,180 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,841 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->setFixedSize(1280,800);
SI_Reader = new Status_Info_Reader();
MainTabWidget = new QTabWidget(this);
MainTabWidget->resize(1280,800);
Widget1 = new QWidget(this);
Widget2 = new QWidget(this);
Widget3 = new QWidget(this);
//FrontImgLabel = new MyQlabel(Widget1);
//BackImgLabel = new MyQlabel(Widget1);
//FrontImgLabel->move(15,10);
//FrontImgLabel->DefaultPoint = FrontImgLabel->pos();
//BackImgLabel->move(360,10);
//BackImgLabel->DefaultPoint = BackImgLabel->pos();
//connect(FrontImgLabel,SIGNAL(clicked()),this,SLOT(Tab1MyLabelDoubleClicked()));
//connect(BackImgLabel,SIGNAL(clicked()),this,SLOT(Tab1MyLabelDoubleClicked()));
MainImgWidget = new MyTwoImgLabel(Widget1);
DMap = new MyDynamicMap(Widget3);
connect(SI_Reader,SIGNAL(StatusReady(double,double,double,double,double,double,double,double))
,DMap,SLOT(Flush(double,double,double,double,double,double,double,double)));
this->MainTabWidget->addTab(Widget1,tr("Real-time Info"));
this->MainTabWidget->addTab(Widget2,tr("Log && Mission"));
this->MainTabWidget->addTab(Widget3,tr("Count Info"));
}
/*
void MainWindow::Tab1MyLabelDoubleClicked()
{
if(sender() == FrontImgLabel)
{
//BackImgLabel->setStyleSheet("border-width: 1px;border-style: solid;border-color: rgb(255, 170, 0);");
if(!(BackImgLabel->isHidden()))
{
BackImgLabel->close();
}else BackImgLabel->show();
}
if(sender() == BackImgLabel)
{
//FrontImgLabel->setStyleSheet("border-width: 1px;border-style: solid;border-color: rgb(255, 170, 0);");
if(!(FrontImgLabel->isHidden()))
{
FrontImgLabel->close();
}else FrontImgLabel->show();
}
}
*/
void MainWindow::mousePressEvent(QMouseEvent *event)
{
if(event->button() == Qt::LeftButton)
{
tempoint = event->pos();
}
}
void MainWindow::mouseReleaseEvent(QMouseEvent *event)
{
if(event->button() == Qt::LeftButton)
{
int ss = MainTabWidget->currentIndex();
if(tempoint.x() - event->pos().x() >= 50)
{
//qDebug()<<"left";
if(ss<2)
{
MainTabWidget->setCurrentIndex(++ss);
}
}
else if(event->pos().x() == tempoint.x())
{
}
else if(event->pos().x() - tempoint.x() >= 50 )
{
//qDebug()<<"right";
if(ss>0)
{
MainTabWidget->setCurrentIndex(--ss);
}
}
}
}
void MainWindow::mouseMoveEvent(QMouseEvent *event)
{
}
MainWindow::~MainWindow()
{
delete ui;
}
| [
"tjm6621186@foxmail.com"
] | tjm6621186@foxmail.com |
3a18b2a5b826d3d58489bba161b647f934773bcd | 01c00bfac9b7098fb4bed77c02d580ee5be75e9d | /SeedSizeDLL/SeedSizeDLL/stdafx.cpp | beaed2edc169e145fe8d9a1a745469c6f76d2596 | [] | no_license | ParticularJ/interview | 2dfc9d4e775b9f7b597dbbde176755d7cf8fec04 | a64ccc159736d02f2a5a30cc84e03a58dac4b532 | refs/heads/master | 2021-04-03T08:55:20.815482 | 2019-05-27T10:01:11 | 2019-05-27T10:01:11 | 124,547,456 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 290 | cpp | // stdafx.cpp : source file that includes just the standard includes
// SeedSizeDLL.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"344409038@qq.com"
] | 344409038@qq.com |
c0e1ccad18938307011309ebf7f2b165e7fc2e2d | 74084cf3c98ef371640715abec5f03def2d6a24a | /backend/lib/XmlStreamReader.h | 9807a1f002972ef2fee4a684f3f51b1c4d0e48a7 | [] | no_license | MehdiChinoune/scidavis-svn | 5e13a6af41fecb0d4285bf19e077977f939f2276 | 0b535c868fcaab2ed3449af2a34deeb41ebf777f | refs/heads/master | 2023-04-22T09:25:45.478708 | 2009-02-06T20:39:14 | 2009-02-06T20:39:14 | 366,032,996 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,946 | h | /***************************************************************************
File : XmlStreamReader.h
Project : SciDAVis
Description : XML stream parser that supports errors as well as warnings
--------------------------------------------------------------------
Copyright : (C) 2008 Tilman Benkert (thzs*gmx.net)
(replace * with @ in the email addresses)
***************************************************************************/
/***************************************************************************
* *
* 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 this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#ifndef XML_STREAM_READER_H
#define XML_STREAM_READER_H
#include <QXmlStreamReader>
#include <QString>
#include <QStringList>
#include "lib/macros.h"
//! XML stream parser that supports errors as well as warnings
/**
* This class also adds line and column numbers to the error message.
*/
class XmlStreamReader : public QXmlStreamReader
{
public:
XmlStreamReader();
XmlStreamReader(QIODevice * device);
XmlStreamReader(const QByteArray & data);
XmlStreamReader(const QString & data);
XmlStreamReader(const char * data);
QStringList warningStrings() const;
bool hasWarnings() const;
void raiseWarning(const QString & message = QString());
void raiseError(const QString & message = QString());
CLASS_ACCESSOR(QString, m_error_prefix, errorPrefix, ErrorPrefix);
CLASS_ACCESSOR(QString, m_error_postfix, errorPostfix, ErrorPostfix);
CLASS_ACCESSOR(QString, m_warning_prefix, warningPrefix, WarningPrefix);
CLASS_ACCESSOR(QString, m_warning_postfix, warningPostfix, WarningPostfix);
//! Go to the next start or end element tag
/**
* If the end of the document is reached, an error is raised.
*
* \return false if end of document reached, otherwise true
*/
bool skipToNextTag();
//! Go to the end element tag of the current element
/**
* If the end of the document is reached, an error is raised.
*
* \return false if end of document reached, otherwise true
*/
bool skipToEndElement();
//! Read an XML attribute and convert it to int
/**
* \param name attribute name
* \param ok pointer to report back whether the attribute value could be determined (may be NULL)
* \return the attriute value if found and converted, otherwise zero (in this case *ok is false)
*/
int readAttributeInt(const QString & name, bool * ok);
private:
QStringList m_warnings;
QString m_error_prefix;
QString m_error_postfix;
QString m_warning_prefix;
QString m_warning_postfix;
void init();
};
#endif // XML_STREAM_READER_H
| [
"thzs@ee5bfcf9-8b04-45a4-a66c-bec449605a02"
] | thzs@ee5bfcf9-8b04-45a4-a66c-bec449605a02 |
e47b624782f1dba9045c3d741c79791fd56bcfb9 | 39a804932db9a0be6f6c72afd0480fe681c7bbe4 | /Projekt1/Projekt1/Source.cpp | 82d3097929073b93bb9e2cace7727f03da61d592 | [] | no_license | Qbixer/projekt01 | c97a055c0fcd51aadc70bfb3b1d67d52acfb3a19 | 3623e0efe47b9dda1e4badfce3edf900e39c3a55 | refs/heads/master | 2020-12-30T15:21:12.189448 | 2017-05-15T09:42:41 | 2017-05-15T09:42:41 | 91,125,326 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,452 | cpp | // GLEW
#define GLEW_STATIC
#include <GL/glew.h>
#include <ft2build.h>
#include FT_FREETYPE_H
// GLFW
#include <GLFW/glfw3.h>
// GL includes
#include "common/shader.h"
#include "common/camera.h"
#include "common/model.h"
// GLM Mathemtics
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
// Other Libs
#include <SOIL.h>
//#include "common/filesystem.h"
#include "shared.h"
#include "object.h"
#include "editor.h"
#include "level.h"
#include "player.h"
#include "text.h"
#include "sprite.h"
#include "bot.h"
int check_errors(char print)
{
int error = glGetError();
//if (error && print)
// std::cout << "blad " << error << std::endl;
return error;
}
// Properties
// Function prototypes
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode);
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset);
void mouse_callback(GLFWwindow* window, double xpos, double ypos);
void button_callback(GLFWwindow* window, int button, int action, int mode);
void RenderQuad();
// Camera
Player camera(glm::vec3(0.0f, 0.0f, 0.0f));
// Delta
GLfloat deltaTime = 0.0f;
GLfloat lastFrame = 0.0f;
GLuint renderedTexture;
// Options
GLuint draw_mode = 1;
GLboolean wireframe = false;
Level level;
Editor editor;
GLuint cubeVAO;
GLuint cubeVBO;
bool keys[1024];
bool keysPressed[1024];
void RenderCube()
{
// Initialize (if necessary)
if (cubeVAO == 0)
{
GLfloat vertices[] = {
// Back face
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, // Bottom-left
0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f, // top-right
0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 0.0f, // bottom-right
0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f, // top-right
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, // bottom-left
-0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 1.0f,// top-left
// Front face
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, // bottom-left
0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, // bottom-right
0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, // top-right
0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, // top-right
-0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, // top-left
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, // bottom-left
// Left face
-0.5f, 0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-right
-0.5f, 0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f, // top-left
-0.5f, -0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-left
-0.5f, -0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-left
-0.5f, -0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, // bottom-right
-0.5f, 0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-right
// Right face
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-left
0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-right
0.5f, 0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, // top-right
0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-right
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-left
0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, // bottom-left
// Bottom face
-0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, // top-right
0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 1.0f, // top-left
0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f,// bottom-left
0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f, // bottom-left
-0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 0.0f, // bottom-right
-0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, // top-right
// Top face
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f,// top-left
0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, // bottom-right
0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f, // top-right
0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, // bottom-right
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f,// top-left
-0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f // bottom-left
};
glGenVertexArrays(1, &cubeVAO);
glGenBuffers(1, &cubeVBO);
// Fill buffer
glBindBuffer(GL_ARRAY_BUFFER, cubeVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
// Link vertex attributes
glBindVertexArray(cubeVAO);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (GLvoid*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (GLvoid*)(3 * sizeof(GLfloat)));
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (GLvoid*)(6 * sizeof(GLfloat)));
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
// Render Cube
glBindVertexArray(cubeVAO);
glDrawArrays(GL_TRIANGLES, 0, 36);
glBindVertexArray(0);
}
// The MAIN function, from here we start our application and run our Game loop
int main()
{
// Init GLFW
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
GLFWwindow* window = glfwCreateWindow(SCR_WIDTH, SCR_HEIGHT, "Crystal Collector", nullptr, nullptr); // Windowed
glfwMakeContextCurrent(window);
// Set the required callback functions
glfwSetKeyCallback(window, key_callback);
glfwSetCursorPosCallback(window, mouse_callback);
glfwSetScrollCallback(window, scroll_callback);
glfwSetMouseButtonCallback(window, button_callback);
// Options
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
// Initialize GLEW to setup the OpenGL Function pointers
glewExperimental = GL_TRUE;
glewInit();
// Define the viewport dimensions
glViewport(0, 0, SCR_WIDTH, SCR_HEIGHT);
// Setup some OpenGL options
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// Setup and compile our shaders
Shader shaderLightingPass("deferred_shading.vs", "deferred_shading.frag");
Shader shader("point_shadows.vs", "point_shadows.frag");
Shader simpleDepthShader("point_shadows_depth.vs", "point_shadows_depth.frag", "point_shadows_depth.gs");
Shader shaderLight("deferred_light_box.vs", "deferred_light_box.frag");
Shader shaderBlur("blur.vs", "blur.frag");
Shader shaderBloomFinal("bloom_final.vs", "bloom_final.frag");
Shader textShader("text.vs", "text.frag");
Shader spriteShader("sprite.vs", "sprite.frag");
shaderBloomFinal.Use();
glUniform1i(glGetUniformLocation(shaderBloomFinal.Program, "scene"), 0);
glUniform1i(glGetUniformLocation(shaderBloomFinal.Program, "bloomBlur"), 1);
check_errors(0);
// Set samplers1
shaderLightingPass.Use();
glUniform1i(glGetUniformLocation(shaderLightingPass.Program, "gPosition"), 0);
glUniform1i(glGetUniformLocation(shaderLightingPass.Program, "gNormal"), 1);
glUniform1i(glGetUniformLocation(shaderLightingPass.Program, "gAlbedoSpec"), 2);
Level::selected_level = &level;
Level::selected_level->prop_types.push_back(*(new prop_type((string)"medkit", medkit_path, new hitbox(glm::vec3(0, 0.2, 0), glm::vec3(1, 0.4, 0.7), glm::vec3(0, 0, 0), MEDKIT), glm::vec3(0, 0, 0), glm::vec3(0.025, 0.025, 0.025), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"rock", "resources/objects/rock/rock.obj", new hitbox(glm::vec3(0, 0.2/0.7, 0), glm::vec3(0.5, 0.4/0.7, 0.5), glm::vec3(0, 0, 0), CYLINDER), glm::vec3(0, 0.05/0.7, 0), glm::vec3(0.25/0.7, 0.25 / 0.7, 0.25 / 0.7), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"boxes", "resources/objects/boxes/Civilian_Boxes_1.obj", new hitbox(glm::vec3(0, 0.5*0.5 / 0.7, 0.1*0.5 / 0.7), glm::vec3(1, 0.8*0.5 / 0.7, 1), glm::vec3(0, 0, 0), CUBE), glm::vec3(0, 0, 0), glm::vec3(0.25 / 0.7, 0.25 / 0.7, 0.25 / 0.7), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"microwave", "resources/objects/microwave/microwave.obj", new hitbox(glm::vec3(0, 0.2 / 0.7, 0), glm::vec3(1, 0.8*0.5 / 0.7, 0.5 / 0.7), glm::vec3(0, 0, 0), CUBE), glm::vec3(0, 0.05*0.5/0.7, 0), glm::vec3(0.3*0.5 / 0.7, 0.3*0.5 / 0.7, 0.3*0.5 / 0.7), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"Mr_Handy_Box", "resources/objects/Mr_Handy_Box/Mr_Handy_Box.obj", new hitbox(glm::vec3(0, 0.625, 0), glm::vec3(1, 1.25, 1), glm::vec3(0, 0, 0), CUBE), glm::vec3(0, 0, 0), glm::vec3(0.625, 0.625, 0.625), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"chair", "resources/objects/old_chair/chair.obj", new hitbox(glm::vec3(0, 1, 0), glm::vec3(1, 2, 1), glm::vec3(0, 0, 0), CUBE), glm::vec3(0, 1, 0), glm::vec3(0.1, 0.1, 0.1), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"apple", "resources/objects/modele/Apple/apple.obj", new hitbox(glm::vec3(0, 0.5, 0), glm::vec3(0.5, 1, 0.5), glm::vec3(0, 0, 0), APPLE), glm::vec3(0, 0, 0), glm::vec3(1.5, 1.5, 1.5), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"barrel", "resources/objects/modele/Barrel_02/Barrel_02.obj", new hitbox(glm::vec3(0, 0.8, 0), glm::vec3(0.5, 1.6, 0.5), glm::vec3(0, 0, 0), CYLINDER), glm::vec3(0, 0, 0), glm::vec3(0.9, 0.9, 0.9), glm::vec3(0, 0, 0))));
Level::selected_level->prop_types.push_back(*(new prop_type((string)"oildrum", "resources/objects/modele/oil/oildrum.obj", new hitbox(glm::vec3(0, 0.8, 0), glm::vec3(0.5, 1.6, 0.5), glm::vec3(0, 0, 0), CYLINDER), glm::vec3(0, 0, 0), glm::vec3(1.4, 1.4, 1.4), glm::vec3(0, 0, 0))));
Level::selected_level->dungeon = new Dungeon(dungeon_size, dungeon_size, &Level::selected_level->objects, &Level::selected_level->lights, Level::selected_level->prop_types);
camera.Position.x = (Level::selected_level->dungeon->rooms[0].y)*scale;
camera.Position.z = (Level::selected_level->dungeon->rooms[0].x + 1)*scale;
camera.x = (int)(camera.Position.x + scale / 2) / scale;
camera.z = (int)(camera.Position.z + scale / 2) / scale;
camera.player_model = new Object("resources/objects/Robot/Robot.obj", "TY", glm::vec3(camera.Position.x, 0, camera.Position.z), glm::vec3(player_height * 3 / 8 + player_model_offset, player_height * 3 / 8 + player_model_offset, player_height * 3 / 8 + player_model_offset), glm::vec3(0, 0, 0));
Level::selected_level->objects[camera.player_model->model->path].push_back(camera.player_model);
camera.calculate_visibility_of_objects(&Level::selected_level->objects);
camera.calculate_visibility_of_lights(&Level::selected_level->lights);
Bot *abc;
for(int i = 0;i<number_of_bots;i++)
{
abc = new Bot(camera.x, camera.z, Level::selected_level->dungeon->height, Level::selected_level->dungeon->width,Level::selected_level->dungeon->map,&Level::selected_level->objects,i*bot_reaction/number_of_bots,Level::selected_level->bots);
Level::selected_level->bots.push_back(abc);
}
// Set up G-Buffer
// 3 textures:
// 1. Positions (RGB)
// 2. Color (RGB) + Specular (A)
// 3. Normals (RGB)
GLuint gBuffer;
glGenFramebuffers(1, &gBuffer);
glBindFramebuffer(GL_FRAMEBUFFER, gBuffer);
GLuint gPosition, gNormal, gAlbedoSpec;
// - Position color buffer
glGenTextures(1, &gPosition);
glBindTexture(GL_TEXTURE_2D, gPosition);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, SCR_WIDTH, SCR_HEIGHT, 0, GL_RGB, GL_FLOAT, NULL);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, gPosition, 0);
// - Normal color buffer
glGenTextures(1, &gNormal);
glBindTexture(GL_TEXTURE_2D, gNormal);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, SCR_WIDTH, SCR_HEIGHT, 0, GL_RGB, GL_FLOAT, NULL);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT1, GL_TEXTURE_2D, gNormal, 0);
// - Color + Specular color buffer
glGenTextures(1, &gAlbedoSpec);
glBindTexture(GL_TEXTURE_2D, gAlbedoSpec);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F, SCR_WIDTH, SCR_HEIGHT, 0, GL_RGBA, GL_FLOAT, NULL);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT2, GL_TEXTURE_2D, gAlbedoSpec, 0);
// - Tell OpenGL which color attachments we'll use (of this framebuffer) for rendering
GLuint attachments[3] = { GL_COLOR_ATTACHMENT0, GL_COLOR_ATTACHMENT1, GL_COLOR_ATTACHMENT2 };
glDrawBuffers(3, attachments);
// - Create and attach depth buffer (renderbuffer)
GLuint rboDepth;
glGenRenderbuffers(1, &rboDepth);
glBindRenderbuffer(GL_RENDERBUFFER, rboDepth);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, SCR_WIDTH, SCR_HEIGHT);
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, rboDepth);
// - Finally check if framebuffer is complete
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
std::cout << "Framebuffer not complete!" << std::endl;
glBindFramebuffer(GL_FRAMEBUFFER, 0);
GLuint hdrFBO;
glGenFramebuffers(1, &hdrFBO);
glBindFramebuffer(GL_FRAMEBUFFER, hdrFBO);
// - Create 2 floating point color buffers (1 for normal rendering, other for brightness treshold values)
GLuint colorBuffers[2];
glGenTextures(2, colorBuffers);
for (GLuint i = 0; i < 2; i++)
{
glBindTexture(GL_TEXTURE_2D, colorBuffers[i]);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, SCR_WIDTH, SCR_HEIGHT, 0, GL_RGB, GL_FLOAT, NULL);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); // We clamp to the edge as the blur filter would otherwise sample repeated texture values!
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
// attach texture to framebuffer
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0 + i, GL_TEXTURE_2D, colorBuffers[i], 0);
}
GLuint hdrDepth;
glGenRenderbuffers(1, &hdrDepth);
glBindRenderbuffer(GL_RENDERBUFFER, hdrDepth);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, SCR_WIDTH, SCR_HEIGHT);
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, hdrDepth);
// - Tell OpenGL which color attachments we'll use (of this framebuffer) for rendering
GLuint attachments_hdr[2] = { GL_COLOR_ATTACHMENT0, GL_COLOR_ATTACHMENT1 };
glDrawBuffers(2, attachments_hdr);
// - Finally check if framebuffer is complete
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
std::cout << "Framebuffer not complete!" << std::endl;
glBindFramebuffer(GL_FRAMEBUFFER, 0);
GLuint pingpongFBO[2];
GLuint pingpongColorbuffers[2];
glGenFramebuffers(2, pingpongFBO);
glGenTextures(2, pingpongColorbuffers);
for (GLuint i = 0; i < 2; i++)
{
glBindFramebuffer(GL_FRAMEBUFFER, pingpongFBO[i]);
glBindTexture(GL_TEXTURE_2D, pingpongColorbuffers[i]);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, SCR_WIDTH, SCR_HEIGHT, 0, GL_RGB, GL_FLOAT, NULL);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); // We clamp to the edge as the blur filter would otherwise sample repeated texture values!
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, pingpongColorbuffers[i], 0);
// Also check if framebuffers are complete (no need for depth buffer)
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
std::cout << "Framebuffer not complete!" << std::endl;
}
glBindFramebuffer(GL_FRAMEBUFFER, 0);
shader.Use();
glUniform1i(glGetUniformLocation(shader.Program, "diffuseTexture"), 0);
glUniform1i(glGetUniformLocation(shader.Program, "normalTexture"), 1);
for (int i = 0; i < NR_SHADOW; i++) {
glUniform1i(glGetUniformLocation(shader.Program, (std::string("depthMap[") + std::to_string(i)+std::string("]")).c_str()), i + 2);
}
// Light source
Light::configure_lights();
if (FT_Init_FreeType(&Text::ft))
std::cout << "ERROR::FREETYPE: Could not init FreeType Library" << std::endl;
spriteShader.Use();
glUniform1i(glGetUniformLocation(shader.Program, "image"), 0);
Text text(std::string("fonts/arial.ttf"), 46);
Text text_hp(std::string("fonts/arial.ttf"), 24, 12);
Text text_cry(std::string("fonts/arial.ttf"), 40);
Text text_end(std::string("fonts/arial.ttf"), 80);
Text text_col(std::string("fonts/arial.ttf"), 60);
Sprite sprite("1.png");
camera.calculate_visibility_of_objects(&Level::selected_level->objects);
// Game loop
float start_time = glfwGetTime();
while (!glfwWindowShouldClose(window))
{
// Check and call events
glfwPollEvents();
if (Pause == 1) {
Pause = 2;
level.selected_level->objects.clear();
level.selected_level->lights.clear();
level.selected_level->shots.clear();
level.selected_level->bots.clear();
camera.hp = 100;
Level::selected_level->dungeon = new Dungeon(dungeon_size, dungeon_size, &Level::selected_level->objects, &Level::selected_level->lights, Level::selected_level->prop_types);
camera.Position.x = (Level::selected_level->dungeon->rooms[0].y)*scale;
camera.Position.z = (Level::selected_level->dungeon->rooms[0].x + 1)*scale;
camera.x = (int)(camera.Position.x + scale / 2) / scale;
camera.z = (int)(camera.Position.z + scale / 2) / scale;
crystal_count = 5;
for (auto it = Model::models.begin(); it != Model::models.end(); ++it) {
it->second->number_of_visible_objects = 0;
}
for (int i = 0; i<number_of_bots; i++)
{
abc = new Bot(camera.x, camera.z, Level::selected_level->dungeon->height, Level::selected_level->dungeon->width, Level::selected_level->dungeon->map, &Level::selected_level->objects, i*bot_reaction / number_of_bots, Level::selected_level->bots);
Level::selected_level->bots.push_back(abc);
}
camera.player_model = new Object("resources/objects/Robot/Robot.obj", "TY", glm::vec3(camera.Position.x, 0, camera.Position.z), glm::vec3(player_height * 3 / 8 + player_model_offset, player_height * 3 / 8 + player_model_offset, player_height * 3 / 8 + player_model_offset), glm::vec3(0, 0, 0));
Level::selected_level->objects[camera.player_model->model->path].push_back(camera.player_model);
camera.calculate_visibility_of_objects(&Level::selected_level->objects);
camera.calculate_visibility_of_lights(&Level::selected_level->lights);
continue;
}
if (Pause == 2 && glfwGetTime() - start_time >3)
{
Pause = 0;
start_time = glfwGetTime();
}
if (Pause == 2)
continue;
glClearColor(0.2f, 0.2f, 0.2f, 1.0f);
// Set frame time
GLfloat currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
lastFrame = currentFrame;
camera.Do_Movement(keys, keysPressed, deltaTime, &draw_mode, wireframe);
for (int i = 0; i < Level::selected_level->bots.size(); i++)
Level::selected_level->bots[i]->Move(deltaTime, Level::selected_level->dungeon->map, Level::selected_level->dungeon->height, Level::selected_level->dungeon->width, camera.Position, camera.x, camera.z, &camera.hp, &Level::selected_level->shots, &Level::selected_level->objects);
for(int i = 0;i<Level::selected_level->shots.size();i++)
{
Level::selected_level->shots[i].lifetime += deltaTime;
if (Level::selected_level->shots[i].lifetime>shot_lifetime)
{
Object * abc = Level::selected_level->shots[i].object;
Level::selected_level->shots.erase(Level::selected_level->shots.begin() + i);
Level::selected_level->objects[abc->model->path][0]->model->number_of_visible_objects = Level::selected_level->objects[abc->model->path][0]->model->number_of_visible_objects - 1;
Level::selected_level->objects[abc->model->path].erase(Level::selected_level->objects[abc->model->path].begin() + i);
delete(abc);
break;
}
}
for (int i = 0; i<Level::selected_level->objects[crystal_path].size(); i++)
{
Level::selected_level->objects[crystal_path][i]->rotate.y = glfwGetTime();
Level::selected_level->objects[crystal_path][i]->UpdatePosition();
}
glPolygonMode(GL_FRONT_AND_BACK, wireframe ? GL_LINE : GL_FILL);
for (int i = 0; i < NR_SHADOW; i++) {
Light::render_cubemap(simpleDepthShader, i,level.lights);
Level::selected_level->draw_objects(simpleDepthShader,2);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
}
Light::render_shadows(shader,gBuffer,camera.GetViewMatrix(),camera.Zoom,camera.Position,level.lights);
Level::selected_level->draw_objects(shader);
glBindFramebuffer(GL_FRAMEBUFFER, hdrFBO);
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
// 2. Lighting Pass: calculate lighting by iterating over a screen filled quad pixel-by-pixel using the gbuffer's content.
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
shaderLightingPass.Use();
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, gPosition);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, gNormal);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, gAlbedoSpec);
// Also send light relevant uniforms
glUniform1f(glGetUniformLocation(shaderLightingPass.Program, "exposure"), exposure);
glUniform3fv(glGetUniformLocation(shaderLightingPass.Program, "viewPos"), 1, &camera.Position[0]);
glUniform1i(glGetUniformLocation(shaderLightingPass.Program, "draw_mode"), draw_mode);
Level::selected_level->draw_lights(shaderLightingPass);
check_errors(1);
RenderQuad();
glBindFramebuffer(GL_READ_FRAMEBUFFER, gBuffer);
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, hdrFBO); // Write to default framebuffer
// blit to default framebuffer. Note that this may or may not work as the internal formats of both the FBO and default framebuffer have to match.
// the internal formats are implementation defined. This works on all of my systems, but if it doesn't on yours you'll likely have to write to the
// depth buffer in another stage (or somehow see to match the default framebuffer's internal format with the FBO's internal format).
glBlitFramebuffer(0, 0, SCR_WIDTH, SCR_HEIGHT, 0, 0, SCR_WIDTH, SCR_HEIGHT, GL_DEPTH_BUFFER_BIT, GL_NEAREST);
// 3. Render lights on top of scene, by blitting
shaderLight.Use();
glm::mat4 projection = glm::perspective(camera.Zoom, (float)SCR_WIDTH / (float)SCR_HEIGHT, 0.1f, 100.0f);
glUniformMatrix4fv(glGetUniformLocation(shaderLight.Program, "projection"), 1, GL_FALSE, glm::value_ptr(projection));
glUniformMatrix4fv(glGetUniformLocation(shaderLight.Program, "view"), 1, GL_FALSE, glm::value_ptr(camera.GetViewMatrix()));
for (GLuint i = 0; i < 32; i++)
{
glm::mat4 model;
model = glm::translate(model, Level::selected_level->lights[i]->position);
model = glm::scale(model, glm::vec3(0.25f));
glUniformMatrix4fv(glGetUniformLocation(shaderLight.Program, "model"), 1, GL_FALSE, glm::value_ptr(model));
glUniform3fv(glGetUniformLocation(shaderLight.Program, "lightColor"), 1, &Level::selected_level->lights[i]->color[0]);
RenderCube();
}
Level::selected_level->draw_objects(shaderLight,1);
glDisable(GL_DEPTH_TEST);
glEnable(GL_BLEND);
glDisable(GL_CULL_FACE);
spriteShader.Use();
projection = glm::ortho(0.0f, (float)(SCR_WIDTH), 0.0f, (float)(SCR_HEIGHT));
glUniformMatrix4fv(glGetUniformLocation(spriteShader.Program, "projection"), 1, GL_FALSE, glm::value_ptr(projection));
sprite.DrawSprite(spriteShader,glm::vec2(SCR_WIDTH/2-50, SCR_HEIGHT/2-50), glm::vec2(100, 100), glfwGetTime(), glm::vec3(0.0f, 1.0f, 0.0f), 0.4f);
glEnable(GL_CULL_FACE);
textShader.Use();
projection = glm::ortho(0.0f, (float)(SCR_WIDTH), 0.0f, (float)(SCR_HEIGHT));
glUniformMatrix4fv(glGetUniformLocation(textShader.Program, "projection"), 1, GL_FALSE, glm::value_ptr(projection));
string a;
a = "HP:";
a += to_string(camera.hp>0?camera.hp:0);
text.RenderText(textShader, a, 25.0f, 25.0f, 1.0f, glm::vec3(1 - camera.hp / 200.0, camera.hp / 100.0*0.8, 0.2f), 0.4f);
string hp = std::string(camera.hp > 0 ? camera.hp / 2.2 : 0, '|');
text_hp.RenderText(textShader, hp, 28.0f, 70.f, 1.0f, glm::vec3(1 - camera.hp / 200.0, camera.hp / 100.0*0.8, 0.2f), 0.8f);
a = "Crystals:" + to_string(number_of_crystal - crystal_count) + "/" + to_string(number_of_crystal);
text_cry.RenderText(textShader, a, 550.f, 25.0f, 1.0f, glm::vec3(0.5, 0.8f, 0.6f), 0.4f);
if (crystal_count <= 0) {
a = "YOU WIN!";
text_end.RenderText(textShader, a, 400.f, 80.0f, 1.0f, glm::vec3(1.0f, 0.0f, 1.0f), 0.4f);
start_time = glfwGetTime();
Pause = 1;
}
if (camera.hp <= 0) {
a = "GAME OVER!";
text_end.RenderText(textShader, a, 280.f, 80.0f, 1.0f, glm::vec3(0.9f, 0.4f, 0.4f), 0.4f);
start_time = glfwGetTime();
Pause = 1;
}
if (glfwGetTime() - start_time< 5 && Pause == 0)
{
a = "COLLECT ALL CRYSTALS!";
text_col.RenderText(textShader, a, 20.f, 440.0f, 1.0f, glm::vec3(0.4f, 0.0f, 0.8f), 0.9f);
}
glDisable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// 2. Blur bright fragments w/ two-pass Gaussian Blur
GLboolean horizontal = true, first_iteration = true;
GLuint amount = 10;
shaderBlur.Use();
for (GLuint i = 0; i < amount; i++)
{
glBindFramebuffer(GL_FRAMEBUFFER, pingpongFBO[horizontal]);
glUniform1i(glGetUniformLocation(shaderBlur.Program, "horizontal"), horizontal);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, first_iteration ? colorBuffers[1] : pingpongColorbuffers[!horizontal]); // bind texture of other framebuffer (or scene if first iteration)
RenderQuad();
horizontal = !horizontal;
if (first_iteration)
first_iteration = false;
}
glBindFramebuffer(GL_FRAMEBUFFER, 0);
// 2. Now render floating point color buffer to 2D quad and tonemap HDR colors to default framebuffer's (clamped) color range
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
shaderBloomFinal.Use();
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, colorBuffers[0]);
//glBindTexture(GL_TEXTURE_2D, pingpongColorbuffers[!horizontal]);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, pingpongColorbuffers[!horizontal]);
glUniform1f(glGetUniformLocation(shaderBloomFinal.Program, "exposure"), exposure);
RenderQuad();
glEnable(GL_DEPTH_TEST);
// Swap the buffers
glfwSwapBuffers(window);
}
glfwTerminate();
return 0;
}
// RenderQuad() Renders a 1x1 quad in NDC, best used for framebuffer color targets
// and post-processing effects.
double lastExposure = 0;
GLuint quadVAO = 0;
GLuint quadVBO;
void RenderQuad()
{
if (quadVAO == 0)
{
GLfloat quadVertices[] = {
// Positions // Texture Coords
-1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
1.0f, 1.0f, 0.0f, 1.0f, 1.0f,
1.0f, -1.0f, 0.0f, 1.0f, 0.0f,
};
// Setup plane VAO
glGenVertexArrays(1, &quadVAO);
glGenBuffers(1, &quadVBO);
glBindVertexArray(quadVAO);
glBindBuffer(GL_ARRAY_BUFFER, quadVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(quadVertices), &quadVertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), (GLvoid*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), (GLvoid*)(3 * sizeof(GLfloat)));
}
glBindVertexArray(quadVAO);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glBindVertexArray(0);
}
GLfloat lastX = 400, lastY = 300;
bool firstMouse = true;
// Is called whenever a key is pressed/released via GLFW
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode)
{
if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS)
glfwSetWindowShouldClose(window, GL_TRUE);
if (key >= 0 && key <= 1024)
{
//if (editor.enabled)
//editor.keyboard_callback(action, key);
if (action == GLFW_PRESS)
{
keys[key] = true;
}
else if (action == GLFW_RELEASE)
{
keys[key] = false;
keysPressed[key] = false;
}
}
}
void button_callback(GLFWwindow* window, int button, int action, int mode)
{
if (button == GLFW_MOUSE_BUTTON_1 && action == GLFW_PRESS)
{
camera.ProcessMouseButton();
}
}
void mouse_callback(GLFWwindow* window, double xpos, double ypos)
{
if (firstMouse)
{
lastX = xpos;
lastY = ypos;
firstMouse = false;
}
GLfloat xoffset = xpos - lastX;
GLfloat yoffset = lastY - ypos;
lastX = xpos;
lastY = ypos;
camera.ProcessMouseMovement(xoffset, yoffset);
}
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset)
{
//camera.ProcessMouseScroll(yoffset);
}
| [
"Qbixer@gmail.com"
] | Qbixer@gmail.com |
81defaf286f632a7d970817220370deb749d5c50 | 1608d640598b7eb9164a5f1f84a03e37936de30a | /Piscine/Svgfile.h | 74ac868d68631ea64fd97a132a1049bdcf79c6b7 | [] | no_license | Vakto/Projet-Piscine-2020 | f75ea0af18a992ef30587d212b13bdbe5c3bbc97 | 5f049268d74339b1352c13dd8550fb9c064e4606 | refs/heads/master | 2022-05-23T14:05:43.938066 | 2020-04-28T08:33:15 | 2020-04-28T08:33:15 | 259,119,645 | 0 | 2 | null | 2020-04-28T09:29:11 | 2020-04-26T19:49:55 | C++ | IBM852 | C++ | false | false | 2,085 | h | #ifndef SVGFILE_H_INCLUDED
#define SVGFILE_H_INCLUDED
#include <string>
#include <fstream>
#include <set>
constexpr char defcol[] = "black";
class Svgfile
{
public:
Svgfile(std::string _filename = "output.svg", int _width=1000, int _height=800);
~Svgfile();
void addDisk(double x, double y, double r, std::string color=defcol);
void addCircle(double x, double y, double r, double ep, std::string color=defcol);
void addTriangle(double x1, double y1, double x2, double y2,
double x3, double y3, std::string colorFill,
double thickness, std::string colorStroke);
void addTriangle(double x1, double y1, double x2, double y2,
double x3, double y3, std::string colorFill=defcol);
void addRectangle(double x1, double y1, double x2, double y2,
double x3, double y3, double x4, double y4, std::string colorFill,
double thickness, std::string colorStroke);
void addRectangle(double x1, double y1, double x2, double y2,
double x3, double y3, double x4, double y4, std::string colorFill=defcol);
void addLine(double x1, double y1, double x2, double y2, std::string color=defcol);
void addCross(double x, double y, double span, std::string color=defcol);
void addText(double x, double y, std::string text, std::string color=defcol);
void addText(double x, double y, double val, std::string color=defcol);
void addGrid(double span=100.0, bool numbering=true, std::string color="lightgrey");
static std::string makeRGB(int r, int g, int b);
/// Type non copiable
Svgfile(const Svgfile&) = delete;
Svgfile& operator=(const Svgfile&) = delete;
private:
std::string m_filename;
std::ofstream m_ostrm;
int m_width;
int m_height;
// Pour Úviter les ouverture multiples
static std::set<std::string> s_openfiles;
};
#endif // SVGFILE_H_INCLUDED
| [
"gregoire.charles@edu.ece.fr"
] | gregoire.charles@edu.ece.fr |
99ece11584fb55daf5c250956020c1bcce220797 | b6de8ad7f01c9d973fe7eabc4dde57ff4d4d6160 | /Luxury C++ practice Problem/function and reference, copy generator/1-8.cpp | b4e232d7dc2fd7349fe44572d5320ddad8b477af | [] | no_license | seungminlll3420/C-PP | d33c6f969854e1affed57d91a260de628db62cb8 | e459289d185bbb2350d1326806ede7f53a8037e0 | refs/heads/master | 2020-07-17T09:43:35.637688 | 2019-11-26T19:36:03 | 2019-11-26T19:36:03 | 205,996,375 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 949 | cpp | #include <iostream>
using namespace std;
class MyInStack{
int *p;
int size;
int tos;
public:
MyInStack(){
size = 10;
tos=0;
p = new int[size];
}
MyInStack(int size){
p = new int[size];
this->size = size;
tos = 0;
}
MyInStack(const MyInStack& s){
this->size = s.size;
this->tos = s.tos;
p = new int[size];
for(int i =0 ; i<size;i++)
p[i] = s.p[i];
}
~MyInStack(){
if(p){
delete [] p;
}
}
bool push(int n){
if(tos == size){
return false;
}else{
p[tos] = n;
tos++;
return true;
}
}
bool pop(int &n){
if(tos == 0){
return false;
}else{
n = p[tos-1];
tos--;
return true;
}
}
};
int main(){
MyInStack a(10);
a.push(10);
a.push(20);
MyInStack b = a;
b.push(30);
int n;
a.pop(n);
cout << " Stack a pop : " << n <<endl;
b.pop(n);
cout << " Stack b pop : " << n <<endl;
}
| [
"45160518+seungminlll3420@users.noreply.github.com"
] | 45160518+seungminlll3420@users.noreply.github.com |
a199800611eb4d7fe0633589f0fb17c35b7f0fa9 | dbf9b5af7e085c80a162391f58f4acfac41c5fff | /wemos_water_flow_sensor_LEDdisplay/wemos_water_flow_sensor_LEDdisplay.ino | 9c43dc8fb883d3bc62871e3638d5d4cf4139879b | [] | no_license | kiranshashiny/wemos_water_flow_sensor | 7235d2dae1397b92fb9ad6b196d9928d959bf27a | b6db840eb7908dcd941bc718d0e3f91353820732 | refs/heads/master | 2020-06-25T21:14:54.947858 | 2019-08-12T09:16:02 | 2019-08-12T09:16:02 | 199,423,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,423 | ino | #include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include <Arduino.h>
#include <TM1637Display.h>
// Module connection pins (Digital Pins)
#define CLK D2
#define DIO D3
// The amount of time (in milliseconds) between tests
#define TEST_DELAY 2000
TM1637Display display(CLK, DIO);
byte statusLed = 13;
byte sensorInterrupt = D1; // 0 = digital pin 2
byte sensorPin = D1;
// The hall-effect flow sensor outputs approximately 4.5 pulses per second per
// litre/minute of flow.
float calibrationFactor = 4.5;
volatile byte pulseCount;
float flowRate;
unsigned int flowMilliLitres;
unsigned long totalMilliLitres;
unsigned long oldTime;
// Update these with values suitable for your network.
const char* ssid = "JioFiber-ahGu7";
const char* password = "welcome2ibm";
const char* mqtt_server = "m12.cloudmqtt.com";
WiFiClient espClient;
PubSubClient client(espClient);
long lastMsg = 0;
char msg[50];
int value = 0;
void setup_wifi() {
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
randomSeed(micros());
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void callback(char* topic, byte* payload, unsigned int length) {
Serial.print("Message arrived [");
Serial.print(topic);
Serial.print("] ");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
}
Serial.println();
// Switch on the LED if an 1 was received as first character
if ((char)payload[0] == '1') {
digitalWrite(BUILTIN_LED, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is acive low on the ESP-01)
} else {
digitalWrite(BUILTIN_LED, HIGH); // Turn the LED off by making the voltage HIGH
}
}
void reconnect() {
// Loop until we're reconnected
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Create a random client ID
String clientId = "ESP8266Client-";
clientId += String(random(0xffff), HEX);
// Attempt to connect
Serial.println (clientId);
if (client.connect(clientId.c_str(), "oxefqvkn", "uTM7RdarxTPA" )) {
// if (client.connect("ESP8266Client", "oxefqvkn", "uTM7RdarxTPA" )) {
Serial.println("connected");
// Once connected, publish an announcement...
client.publish("outTopic", "hello world");
// ... and resubscribe
client.subscribe("inTopic");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
// Wait 5 seconds before retrying
delay(5000);
}
}
}
void setup()
{
// Initialize a serial connection for reporting values to the host
Serial.begin(9600);
setup_wifi();
client.setServer(mqtt_server, 19757);
client.setCallback(callback);
// Set up the status LED line as an output
pinMode(statusLed, OUTPUT);
digitalWrite(statusLed, HIGH); // We have an active-low LED attached
pinMode(sensorPin, INPUT);
digitalWrite(sensorPin, HIGH);
pulseCount = 0;
flowRate = 0.0;
flowMilliLitres = 0;
totalMilliLitres = 0;
oldTime = 0;
// The Hall-effect sensor is connected to pin 2 which uses interrupt 0.
// Configured to trigger on a FALLING state change (transition from HIGH
// state to LOW state)
attachInterrupt(sensorInterrupt, pulseCounter, FALLING);
display.setBrightness(0x0f);
display.clear();
}
/**
* Main program loop
*/
void loop()
{
if (!client.connected()) {
reconnect();
}
client.loop();
if((millis() - oldTime) > 1000) // Only process counters once per second
{
// Disable the interrupt while calculating flow rate and sending the value to
// the host
detachInterrupt(sensorInterrupt);
// Because this loop may not complete in exactly 1 second intervals we calculate
// the number of milliseconds that have passed since the last execution and use
// that to scale the output. We also apply the calibrationFactor to scale the output
// based on the number of pulses per second per units of measure (litres/minute in
// this case) coming from the sensor.
flowRate = ((1000.0 / (millis() - oldTime)) * pulseCount) / calibrationFactor;
// Note the time this processing pass was executed. Note that because we've
// disabled interrupts the millis() function won't actually be incrementing right
// at this point, but it will still return the value it was set to just before
// interrupts went away.
oldTime = millis();
// Divide the flow rate in litres/minute by 60 to determine how many litres have
// passed through the sensor in this 1 second interval, then multiply by 1000 to
// convert to millilitres.
flowMilliLitres = (flowRate / 60) * 1000;
// Add the millilitres passed in this second to the cumulative total
totalMilliLitres += flowMilliLitres;
unsigned int frac;
// Print the flow rate for this second in litres / minute
Serial.print("Flow rate: ");
Serial.print(int(flowRate)); // Print the integer part of the variable
Serial.print("L/min");
Serial.print("\t"); // Print tab space
// Print the cumulative total of litres flowed since starting
Serial.print("Output Liquid Quantity: ");
Serial.print(totalMilliLitres);
Serial.println("mL");
Serial.print("\t"); // Print tab space
Serial.print(totalMilliLitres/1000);
Serial.print("L");
//snprintf (msg, 75, "hello world #%ld", value);
snprintf (msg, 75, "totalMillilitres %d mL, %d L", totalMilliLitres, totalMilliLitres/1000);
Serial.print("Publish message: ");
Serial.println(msg);
client.publish("waterFlow", msg);
display.showNumberDec(totalMilliLitres, true); // Expect: 0301
// Reset the pulse counter so we can start incrementing again
pulseCount = 0;
// Enable the interrupt again now that we've finished sending output
attachInterrupt(sensorInterrupt, pulseCounter, FALLING);
}
}
/*
Insterrupt Service Routine
*/
void pulseCounter()
{
// Increment the pulse counter
pulseCount++;
}
| [
"kiranshashiny@gmail.com"
] | kiranshashiny@gmail.com |
f309293f95d0085546a2cec7fea1cb5fe3ac69e3 | 6f2b4ab47b2369dd8115c8773d8511b9e4c9648c | /F.I. Fondamenti Informatica/ES/IF05/IF05/IF05.cpp | 81782d6884f61038f71a3ed0352148ba02f96d05 | [] | no_license | TheSmallPixel/IOL-IF | 53823f7bd11fd5ec2de3a3640213a4bd658042d3 | 8245568b299e512547f2e79b36c41d83c701421a | refs/heads/master | 2023-02-10T16:33:45.496185 | 2021-01-09T18:36:26 | 2021-01-09T18:36:26 | 299,874,798 | 0 | 0 | null | null | null | null | ISO-8859-13 | C++ | false | false | 1,445 | cpp | // IF05.cpp : Questo file contiene la funzione 'main', in cui inizia e termina l'esecuzione del programma.
//
#include "pch.h";
#include <iostream>;
using namespace std;
void main() {
cout << "inserisci una frase con pił periodi e ti dico il numero piu' grande di caratteri in un periodo e quante parole contine il periodo piu'lungo";
char ch = ' ';
const char tappo = '$';
cout << "inserisci una frase terminata da " << tappo << "ogni periodo deve essere suddiviso da ; : .";
int totalCaratteri, caratteriParola, paroleParagrafo, maxParole, maxCaratteri;
totalCaratteri = caratteriParola = paroleParagrafo = maxParole = maxCaratteri = 0;
cin.unsetf(ios::skipws);
while (ch != tappo) {
cin >> ch;
if (ch == ' ' | ch == '.' | ch == ';' | ch == ':' | ch == '$') {
if (caratteriParola > 0) {
totalCaratteri += caratteriParola;
caratteriParola = 0;
paroleParagrafo++;
}
if (ch != ' ') {
if (totalCaratteri > maxCaratteri) {
maxCaratteri = totalCaratteri;
}
if (paroleParagrafo > maxParole) {
maxParole = paroleParagrafo;
}
totalCaratteri = paroleParagrafo = caratteriParola = 0;
}
}
if ((ch >= 65 && ch <= 90) | (ch >= 97 && ch <= 122) | (ch >= 48 && ch <= 57)) caratteriParola++;
}
cout << "Il periodo maggiore contiene " << maxParole << "parole." << endl;
cout << "Il periodo con il maggior numero di caratteri contiene " << maxCaratteri << "caratteri." << endl;
}
| [
"thesmallpixel@gmail.com"
] | thesmallpixel@gmail.com |
d12ff4a78d0789a1f697974564fcb3613f82ec11 | 23130cd12e38dbce8db8102810edaad70b240ae2 | /lintcode/321.cpp | b6c5d2f2f088cef507debe7f75c29d1d8571ac15 | [
"MIT"
] | permissive | kangli-bionic/algorithm | ee6687c82101088db20f10fb958b4e45e97d3d31 | c3c38723b9c5f1cc745550d89e228f92fd4abfb2 | refs/heads/master | 2023-01-05T09:29:33.204253 | 2020-10-25T17:29:38 | 2020-10-25T17:29:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 688 | cpp | /**
* 321. perfect string
* https://www.lintcode.com/problem/perfect-string/description
* 周赛
*/
class Solution {
public:
/**
* @param s: string need to be transformed
* @param k: minimum char can be transformed in one operation
* @return: minimum times to transform all char into '1'
*/
int perfectString(string &s, int k) {
// Write your code here
int n = s.size();
int counter = 0;
int l = 0, r = 0;
for (l = 0; l < n; ++l) {
if (s[l] == '1') continue;
for (r = l; r < l + k - 1 && s[r] == '0'; ++r){}
counter++;
l = r;
}
return counter;
}
}; | [
"hipaulshi@gmail.com"
] | hipaulshi@gmail.com |
d2243875266a150942e020de87dff2189e7cae87 | fcc2ac035d35cb5ebad7f8048160fb1c1ed0d6bf | /src/gui/widgets/pagecreatecontract.cpp | eafdd88da84f7a2b33a0c8ddbf1630443b792a11 | [] | no_license | mshkhan31/Moneychanger-circleci | ca04594af59d2738de110bbd2a198ce162abac56 | a85a49923a5e2c4e193630ce9596b1358732438d | refs/heads/main | 2023-08-06T02:39:26.960093 | 2021-09-12T17:21:27 | 2021-09-12T17:21:27 | 405,706,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,444 | cpp | #ifndef __STABLE_HPP__
#include <core/stable.hpp>
#endif
#include <gui/widgets/pagecreatecontract.hpp>
#include <ui_pagecreatecontract.h>
#include <gui/widgets/wizardaddcontract.hpp>
#include <gui/widgets/dlgchooser.hpp>
#include <gui/widgets/detailedit.hpp>
#include <core/moneychanger.hpp>
#include <QClipboard>
#include <opentxs/opentxs.hpp>
MTPageCreateContract::MTPageCreateContract(QWidget *parent) :
QWizardPage(parent),
ui(new Ui::MTPageCreateContract)
{
ui->setupUi(this);
QString style_sheet = "QPushButton{border: none; border-style: outset; text-align:left; background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #dadbde, stop: 1 #f6f7fa);}"
"QPushButton:pressed {border: 1px solid black; text-align:left; background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #dadbde, stop: 1 #f6f7fa); }"
"QPushButton:hover {border: 1px solid black; text-align:left; background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #dadbde, stop: 1 #f6f7fa); }";
ui->pushButtonSelect->setStyleSheet(style_sheet);
ui->lineEditID->setStyleSheet("QLineEdit { background-color: lightgray }");
this->registerField("NymID*", ui->lineEditID);
this->registerField("NymName", ui->pushButtonSelect, "text");
this->registerField("contractXML*", ui->plainTextEdit, "plainText", "textChanged");
// -----------------------------------------------
connect(this, SIGNAL(SetDefaultNym(QString, QString)), Moneychanger::It(), SLOT(setDefaultNym(QString,QString)));
}
MTPageCreateContract::~MTPageCreateContract()
{
delete ui;
}
void MTPageCreateContract::SetFieldsBlank()
{
setField("NymID", "");
setField("NymName", QString("<%1>").arg(tr("Click to choose Nym")));
}
void MTPageCreateContract::initializePage() //virtual
{
if (!Moneychanger::It()->expertMode())
{
ui->pushButtonManage->setVisible(false);
}
// -------------------------------------------
std::string str_name;
QString qstr_id;
// -------------------------------------------
QString qstr_default_id = Moneychanger::It()->get_default_nym_id();
// -------------------------------------------
QString qstr_current_id = field("NymID").toString();
// -------------------------------------------
qstr_id = qstr_current_id.isEmpty() ? qstr_default_id : qstr_current_id;
// -------------------------------------------
if (qstr_id.isEmpty() && (Moneychanger::It()->OT().Exec().GetNymCount() > 0))
qstr_id = QString::fromStdString(Moneychanger::It()->OT().Exec().GetNym_ID(0));
// -------------------------------------------
if (!qstr_id.isEmpty())
str_name = Moneychanger::It()->OT().Exec().GetNym_Name(qstr_id.toStdString());
// -------------------------------------------
QString qstrContractType = field("contractType").toString();
if (0 == qstrContractType.compare("smart"))
{
ui->pushButton->setVisible(false);
ui->plainTextEdit->setVisible(false);
ui->label->setVisible(false);
}
// -------------------------------------------
if (str_name.empty() || qstr_id.isEmpty())
SetFieldsBlank();
else
{
QString qstrName = QString::fromStdString(str_name);
// ---------------------------
setField("NymID", qstr_id);
setField("NymName", qstrName);
// ---------------------------
ui->lineEditID->home(false);
// ---------------------------
if (qstr_default_id.isEmpty())
emit SetDefaultNym(qstr_id, qstrName);
}
}
//virtual
int MTPageCreateContract::nextId() const
{
// -1 turns it into the last page.
//
// return -1;
MTWizardAddContract * pWizard = dynamic_cast<MTWizardAddContract *>(wizard());
if (nullptr != pWizard)
{
if (pWizard->serverMode())
{
return -1;
}
}
if (wizard()->field("isImporting").toBool())
return -1; // No need to collect the terms then.
return QWizardPage::nextId();
}
void MTPageCreateContract::on_pushButton_clicked()
{
// Get text from the clipboard, and add it to the plainTextEdit widget
//
QClipboard *clipboard = QApplication::clipboard();
if (NULL != clipboard)
{
QString qstrClipText = clipboard->text();
if (!qstrClipText.isEmpty())
ui->plainTextEdit->insertPlainText(qstrClipText);
}
}
void MTPageCreateContract::on_pushButtonManage_clicked()
{
MTDetailEdit * pWindow = new MTDetailEdit(this);
pWindow->setAttribute(Qt::WA_DeleteOnClose);
// -------------------------------------
mapIDName & the_map = pWindow->m_map;
// -------------------------------------
the_map.clear();
// -------------------------------------
QString qstrPreSelected = field("NymID").toString();
bool bFoundPreselected = false;
// -------------------------------------
int32_t the_count = Moneychanger::It()->OT().Exec().GetNymCount();
bool bStartingWithNone = (the_count < 1);
for (int32_t ii = 0; ii < the_count; ii++)
{
QString OT_id = QString::fromStdString(Moneychanger::It()->OT().Exec().GetNym_ID(ii));
QString OT_name = QString::fromStdString(Moneychanger::It()->OT().Exec().GetNym_Name(OT_id.toStdString()));
the_map.insert(OT_id, OT_name);
if (!qstrPreSelected.isEmpty() && (0 == qstrPreSelected.compare(OT_id)))
bFoundPreselected = true;
} // for
// -------------------------------------
pWindow->setWindowTitle(tr("Manage my identities"));
// -------------------------------------
if (bFoundPreselected)
pWindow->SetPreSelected(qstrPreSelected);
// -------------------------------------
pWindow->dialog(MTDetailEdit::DetailEditTypeNym, true);
// -------------------------------------
if (bStartingWithNone && (Moneychanger::It()->OT().Exec().GetNymCount() > 0))
{
std::string str_id = Moneychanger::It()->OT().Exec().GetNym_ID(0);
if (!str_id.empty())
{
std::string str_name = Moneychanger::It()->OT().Exec().GetNym_Name(str_id);
if (str_name.empty())
str_name = str_id;
// --------------------------------
setField("NymID", QString::fromStdString(str_id));
setField("NymName", QString::fromStdString(str_name));
// --------------------------------
ui->lineEditID->home(false);
}
}
// -------------------------------------
else if (Moneychanger::It()->OT().Exec().GetNymCount() < 1)
SetFieldsBlank();
}
void MTPageCreateContract::on_pushButtonSelect_clicked()
{
QString qstr_default_id = Moneychanger::It()->get_default_nym_id();
// -------------------------------------------
QString qstr_current_id = field("NymID").toString();
// -------------------------------------------
if (qstr_current_id.isEmpty())
qstr_current_id = qstr_default_id;
// -------------------------------------------
if (qstr_current_id.isEmpty() && (Moneychanger::It()->OT().Exec().GetNymCount() > 0))
qstr_current_id = QString::fromStdString(Moneychanger::It()->OT().Exec().GetNym_ID(0));
// -------------------------------------------
// Select from Nyms in local wallet.
//
DlgChooser theChooser(this);
// -----------------------------------------------
mapIDName & the_map = theChooser.m_map;
bool bFoundDefault = false;
// -----------------------------------------------
const int32_t the_count = Moneychanger::It()->OT().Exec().GetNymCount();
// -----------------------------------------------
for (int32_t ii = 0; ii < the_count; ++ii)
{
QString OT_id = QString::fromStdString(Moneychanger::It()->OT().Exec().GetNym_ID(ii));
QString OT_name("");
// -----------------------------------------------
if (!OT_id.isEmpty())
{
if (!qstr_current_id.isEmpty() && (0 == qstr_current_id.compare(OT_id)))
bFoundDefault = true;
// -----------------------------------------------
OT_name = QString::fromStdString(Moneychanger::It()->OT().Exec().GetNym_Name(OT_id.toStdString()));
// -----------------------------------------------
the_map.insert(OT_id, OT_name);
}
}
// -----------------------------------------------
if (bFoundDefault)
theChooser.SetPreSelected(qstr_current_id);
// -----------------------------------------------
theChooser.setWindowTitle(tr("Choose a Signer for the New Contract"));
// -----------------------------------------------
if (theChooser.exec() == QDialog::Accepted)
{
if (!theChooser.m_qstrCurrentID .isEmpty() &&
!theChooser.m_qstrCurrentName.isEmpty())
{
setField("NymID", theChooser.m_qstrCurrentID);
setField("NymName", theChooser.m_qstrCurrentName);
// -----------------------------------------
ui->lineEditID->home(false);
// -----------------------------------------
if (qstr_default_id.isEmpty())
emit SetDefaultNym(theChooser.m_qstrCurrentID, theChooser.m_qstrCurrentName);
// ----------------------------------------
return;
}
}
}
| [
"mshkhan31@gmail.com"
] | mshkhan31@gmail.com |
572dc1b535e0c8a205c193d36ad1b297749492ff | 49287138599f2e8e38a6bd9280b1dc0cb9d6775a | /abc063/D/main.cpp | 5c5b229f5ae04499191f31ed51ae33b60b2b60e6 | [] | no_license | JotaroS/Atcoder-Jotaro-Solutions | 26569bbe0c56d8634a27a59e1daa8c7921f0ac85 | 35d9489bb7991bad7e493e77c07cbdb3e2aad991 | refs/heads/master | 2022-06-20T12:29:18.189682 | 2022-06-09T23:20:58 | 2022-06-09T23:20:58 | 225,383,180 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,656 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;
typedef long long ll;
#define ALL(a) (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define SORT(c) sort((c).begin(),(c).end())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define rep(i,n) FOR(i,0,n)
const double EPS = 1e-10;
const double PI = acos(-1.0);
#define CLR(a) memset((a), 0 ,sizeof(a))
#define dump(x) cerr << #x << " = " << (x) << endl;
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
bool compare_by_b(pair<LL, LL> a, pair<LL, LL> b) {
if(a.second != b.second) return a.second < b.second;
else return a.first < b.first;
}
std::uint32_t euclidean_gcd(std::uint32_t a, std::uint32_t b){return b != 0 ? euclidean_gcd(b, a % b) : a;}
void solve(long long N, long long A, long long B, std::vector<long long> h){
}
int main(){
long long N;
std::scanf("%lld", &N);
long long A;
std::scanf("%lld", &A);
long long B;
std::scanf("%lld", &B);
std::vector<long long> h(N);
for(int i = 0 ; i < N ; i++){
std::scanf("%lld", &h[i]);
}
solve(N, A, B, std::move(h));
return 0;
}
| [
"jojojoe77@gmail.com"
] | jojojoe77@gmail.com |
2d344ab4a3fbc9857027e463662684ddd2797fd2 | fdd3662d797e0170189b19aa938d092d6823ad18 | /src/HWUtils.h | 754b523e2aad63769d6ac8b686843e35478bb78f | [
"MIT"
] | permissive | MingmChen/Halide-to-Hardware | b5d3db0206d0daeb0dc1227f82b3a0e7a70fa209 | 62c6f0a2741d9869cade026a6bae92e76c442465 | refs/heads/master | 2020-09-28T10:24:24.809021 | 2019-12-06T00:06:51 | 2019-12-06T00:06:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,235 | h | #ifndef HALIDE_HW_UTILS_H
#define HALIDE_HW_UTILS_H
#include <string>
#include <vector>
#include "Bounds.h"
#include "HWStencil.h"
#include "IR.h"
#include "IRMutator.h"
#include "IRVisitor.h"
#include "Scope.h"
#include "Simplify.h"
using namespace std;
namespace Halide {
namespace Internal {
std::vector<std::string> get_tokens(const std::string &line, const std::string &delimiter);
int id_const_value(const Expr e);
std::ostream& operator<<(std::ostream& os, const std::vector<std::string>& vec);
bool is_parallelized(const For *op);
std::string first_for_name(Stmt s);
bool provide_at_level(Stmt s, std::string var);
bool call_at_level(Stmt s, std::string var);
Expr expand_expr(Expr e, const Scope<Expr> &scope);
Stmt expand_expr(Stmt e, const Scope<Expr> &scope);
void find_output_scope(Stmt s, Function func,
LoopLevel compute_level,
Scope<Expr> &scope);
Box find_output_bounds(Stmt s, Function func,
LoopLevel compute_level);
std::vector<std::string> get_loop_levels_between(Stmt s, Function func,
LoopLevel outer_level_exclusive,
LoopLevel inner_level_inclusive,
bool start_inside = false);
/*
* Used to calculate input and output block size.
* Also records the (writer and) reader loopnest.
*/
class CountBufferUsers : public IRVisitor {
using IRVisitor::visit;
string var;
Scope<Expr> scope;
For *current_for;
Stmt full_stmt;
// keep track of lets to later replace variables with constants
void visit(const LetStmt *op) override {
ScopedBinding<Expr> bind(scope, op->name, simplify(expand_expr(op->value, scope)));
IRVisitor::visit(op);
}
void visit(const ProducerConsumer *op) override {
if (!op->is_producer) {
if (provide_at_level(op->body, var)) {
auto box_write = box_provided(op->body, var);
auto interval = box_write;
input_block_box = vector<Expr>(interval.size());
for (size_t dim=0; dim<interval.size(); ++dim) {
Expr port_expr = simplify(expand_expr(interval[dim].max - interval[dim].min + 1, scope));
Expr lower_expr = find_constant_bound(port_expr, Direction::Lower);
Expr upper_expr = find_constant_bound(port_expr, Direction::Upper);
input_block_box[dim] = is_undef(lower_expr) ? port_expr : lower_expr;
}
}
// look at the readers (reader ports, read address gen)
if (call_at_level(op->body, var)) {
auto box_read = box_required(op->body, var);
auto interval = box_read;
output_block_box = vector<Expr>(interval.size());
for (size_t dim=0; dim<interval.size(); ++dim) {
Expr port_expr = simplify(expand_expr(interval[dim].max - interval[dim].min + 1, scope));
Expr lower_expr = find_constant_bound(port_expr, Direction::Lower);
Expr upper_expr = find_constant_bound(port_expr, Direction::Upper);
output_block_box[dim] = is_undef(lower_expr) ? port_expr : lower_expr;
}
}
}
IRVisitor::visit(op);
}
void visit(const For *op) override {
// add this for loop to read address loop
For *previous_for = current_for;
Stmt for_stmt = For::make(op->name, op->min, op->extent, op->for_type, op->device_api, op->body);
if (current_for == nullptr) {
full_stmt = for_stmt;
auto box_read = box_required(op->body, var);
auto interval = box_read;
for (size_t dim=0; dim<interval.size(); ++dim) {
auto assertstmt = AssertStmt::make(var + "_dim" + std::to_string(dim), simplify(expand_expr(interval[dim].min, scope)));
}
} else if (!is_parallelized(op)) {
current_for->body = for_stmt;
}
current_for = const_cast<For *>(for_stmt.as<For>());
IRVisitor::visit(op);
// look at the writers (writer ports)
if (provide_at_level(op->body, var) && !is_parallelized(op)) {
auto box_write = box_provided(op->body, var);
auto interval = box_write;
input_block_box = vector<Expr>(interval.size());
for (size_t dim=0; dim<interval.size(); ++dim) {
Expr port_expr = simplify(expand_expr(interval[dim].max - interval[dim].min + 1, scope));
Expr lower_expr = find_constant_bound(port_expr, Direction::Lower);
Expr upper_expr = find_constant_bound(port_expr, Direction::Upper);
input_block_box[dim] = is_undef(lower_expr) ? port_expr : lower_expr;
}
}
// look at the readers (reader ports, read address gen)
if (call_at_level(op->body, var) && !is_parallelized(op)) {
auto box_read = box_required(op->body, var);
auto interval = box_read;
vector<Stmt> stmts;
output_block_box = vector<Expr>(interval.size());
for (size_t dim=0; dim<interval.size(); ++dim) {
Expr port_expr = simplify(expand_expr(interval[dim].max - interval[dim].min + 1, scope));
Expr lower_expr = find_constant_bound(port_expr, Direction::Lower);
Expr upper_expr = find_constant_bound(port_expr, Direction::Upper);
output_block_box[dim] = is_undef(lower_expr) ? port_expr : lower_expr;
stmts.push_back(AssertStmt::make(var + "_dim" + std::to_string(dim), simplify(expand_expr(interval[dim].min, scope))));
}
const vector<Stmt> &const_stmts = stmts;
current_for->body = Block::make(const_stmts);
reader_loopnest = simplify(expand_expr(full_stmt, scope));
}
// remove for loop to read address loop
current_for = previous_for;
}
public:
vector<Expr> output_block_box;
vector<Expr> input_block_box;
vector<std::string> for_loops;
Stmt reader_loopnest;
CountBufferUsers(string v) :
var(v), current_for(nullptr){}
};
class FindVarStride : public IRVisitor {
string varname;
string loopname;
int cur_stride;
bool in_var;
bool in_div;
using IRVisitor::visit;
void visit(const Variable *op) override {
if (op->name == loopname && in_var) {
stride_for_var = cur_stride;
is_div = in_div;
IRVisitor::visit(op);
}
}
void visit(const Call *op) override {
if (op->name == varname) {
in_var = true;
IRVisitor::visit(op);
in_var = false;
} else {
IRVisitor::visit(op);
}
}
void visit(const Div *op) override {
if (is_const(op->b)) {
if (in_var) {
cur_stride *= id_const_value(op->b);
in_div = true;
op->a.accept(this);
in_div = false;
cur_stride /= id_const_value(op->b);
} else {
op->a.accept(this);
}
} else {
IRVisitor::visit(op);
}
}
void visit(const Mul *op) override {
if (is_const(op->a)) {
if (in_var) {
cur_stride *= id_const_value(op->a);
op->b.accept(this);
cur_stride /= id_const_value(op->a);
} else {
op->b.accept(this);
}
} else if (is_const(op->b)) {
if (in_var) {
cur_stride *= id_const_value(op->b);
op->a.accept(this);
cur_stride /= id_const_value(op->b);
} else {
op->a.accept(this);
}
} else {
op->a.accept(this);
op->b.accept(this);
}
}
public:
int stride_for_var;
bool is_div;
FindVarStride(string varname, string forname) :
varname(varname), loopname(forname),
cur_stride(1), in_var(false), in_div(false),
stride_for_var(0), is_div(false) { }
};
class ReplaceForBounds : public IRMutator {
using IRMutator::visit;
Scope<Expr> scope;
Stmt visit(const LetStmt *op) override {
if (!scope.contains(op->name)) {
scope.push(op->name, simplify(expand_expr(op->value, scope)));
} else {
}
return IRMutator::visit(op);
}
Stmt visit(const For *op) override {
Expr min = mutate(op->min);
Expr extent = mutate(op->extent);
Stmt body = mutate(op->body);
if (scope.contains(op->name + ".min")) {
auto new_min = scope.get(op->name + ".min");
auto new_max = scope.get(op->name + ".max");
if (!new_min.same_as(min)) {
min = new_min;
min = 0;
extent = 1;
auto for_stmt = For::make(op->name, std::move(min), std::move(extent),
op->for_type, op->device_api, std::move(body));
auto return_stmt = LetStmt::make(op->name + ".loop_extent", 1, for_stmt);
return_stmt = LetStmt::make(op->name + ".loop_max", 0, return_stmt);
return_stmt = LetStmt::make(op->name + ".loop_min", 0, return_stmt);
return return_stmt;
} else {
}
} else {
}
if (min.same_as(op->min) &&
extent.same_as(op->extent) &&
body.same_as(op->body)) {
return op;
}
return For::make(op->name, std::move(min), std::move(extent),
op->for_type, op->device_api, std::move(body));
}
public:
ReplaceForBounds() {}
};
class FindInputStencil : public IRVisitor {
using IRVisitor::visit;
string var;
Scope<Expr> scope;
string compute_level;
// keep track of lets to later replace variables with constants
void visit(const LetStmt *op) override {
ScopedBinding<Expr> bind(scope, op->name, simplify(expand_expr(op->value, scope)));
IRVisitor::visit(op);
}
void visit(const For *op) override {
if (op->name == compute_level) {
auto box_write = box_provided(op->body, var);
auto interval = box_write;
input_chunk_box = vector<Expr>(interval.size());
if (func.name() == var) {
for (size_t i = 0; i < box_write.size(); i++) {
string stage_name = func.name() + ".s0." + func.args()[i];
stencil_bounds.push(stage_name + ".min", box_write[i].min);
stencil_bounds.push(stage_name + ".max", box_write[i].max);
}
}
output_min_pos_box = vector<Expr>(interval.size());
for (size_t dim=0; dim<interval.size(); ++dim) {
found_stencil = true;
Expr port_expr = simplify(expand_expr(interval[dim].max - interval[dim].min + 1, scope));
Expr lower_expr = find_constant_bound(port_expr, Direction::Lower);
Expr upper_expr = find_constant_bound(port_expr, Direction::Upper);
input_chunk_box[dim] = is_undef(lower_expr) ? port_expr : lower_expr;
output_min_pos_box[dim] = simplify(expand_expr(interval[dim].min, stencil_bounds));
}
}
IRVisitor::visit(op);
}
public:
vector<Expr> input_chunk_box;
vector<Expr> output_min_pos_box;
bool found_stencil;
Function func;
Scope<Expr> &stencil_bounds;
FindInputStencil(string v, Function func, string cl, Scope<Expr> &stencil_bounds) :
var(v), compute_level(cl), found_stencil(false), func(func), stencil_bounds(stencil_bounds) {}
};
class FindOutputStencil : public IRVisitor {
using IRVisitor::visit;
string var;
Scope<Expr> scope;
string compute_level;
// keep track of lets to later replace variables with constants
void visit(const LetStmt *op) override {
ScopedBinding<Expr> bind(scope, op->name, simplify(expand_expr(op->value, scope)));
IRVisitor::visit(op);
}
void visit(const For *op) override {
auto fvs = FindVarStride(var, op->name);
(op->body).accept(&fvs);
int stride_for_var = fvs.stride_for_var;
auto var_tokens = get_tokens(op->name, ".");
auto varname = var_tokens.size() > 2 ? var_tokens.at(2) : op->name;
stride_map[varname].stride = std::max(stride_map[varname].stride, stride_for_var);
stride_map[varname].is_inverse = fvs.is_div;
if (op->name == compute_level) {
ReplaceForBounds rfb;
Stmt new_body = rfb.mutate(op->body);
auto box_read = box_required(new_body, var);
auto interval = box_read;
output_stencil_box = vector<Expr>(interval.size());
output_min_pos_box = vector<Expr>(interval.size());
for (size_t dim=0; dim<interval.size(); ++dim) {
found_stencil = true;
Expr port_expr = simplify(expand_expr(interval[dim].max - interval[dim].min + 1, scope));
Expr lower_expr = find_constant_bound(port_expr, Direction::Lower);
Expr upper_expr = find_constant_bound(port_expr, Direction::Upper);
output_stencil_box[dim] = lower_expr.defined() ? lower_expr : port_expr;
output_min_pos_box[dim] = interval[dim].min;
}
}
IRVisitor::visit(op);
}
public:
vector<Expr> output_stencil_box;
vector<Expr> output_min_pos_box;
map<string, Stride> stride_map;
bool found_stencil;
FindOutputStencil(string v, string cl) :
var(v), compute_level(cl), found_stencil(false) {
}
};
Stmt substituteInConstants(Stmt& s);
Expr expand_expr_no_var(Expr e, const Scope<Expr> &scope);
class IdentifyAddressingVar : public IRVisitor {
int asserts_found;
using IRVisitor::visit;
void visit(const Variable *op) {
if (op->name == varname) {
dim_ref = asserts_found;
stride = 1;
}
}
void visit(const Mul *op) {
std::cout << "found a multiply: " << Expr(op) << "\n";
if (const Variable* op_a = op->a.as<Variable>()) {
if (op_a->name == varname) {
stride = id_const_value(expand_expr(op->b, scope));
dim_ref = asserts_found;
}
} else if (const Variable* op_b = op->b.as<Variable>()) {
if (op_b->name == varname) {
stride = id_const_value(expand_expr(op->a, scope));
dim_ref = asserts_found;
}
}
}
void visit(const Div *op) {
std::cout << "woah a divide: " << Expr(op) << "\n";
}
void visit(const AssertStmt *op) {
IRVisitor::visit(op);
asserts_found += 1;
}
public:
const Scope<Expr> &scope;
const string varname;
// if var not found, dim_ref should be 0
int dim_ref;
// if var not found, stride should be 0
int stride;
IdentifyAddressingVar(string varname, const Scope<Expr> &thescope) :
asserts_found(0), scope(thescope), varname(varname), dim_ref(0), stride(0) {}
};
class IdentifyAddressing : public IRVisitor {
//int stream_dim_idx;
const Scope<Expr> &scope;
using IRVisitor::visit;
void visit(const For *op) {
varnames.push_back(op->name);
//internal_assert(is_zero(op->min)); FIXME
// push range
int range = id_const_value(expand_expr(op->extent, scope));
//range = range < 0 && op->name=="conv.s1.r$z.r$z" ? 4 : range;
internal_assert(range > 0) << "the range is " << range << " for " << op->extent << " for " << op->name << "\n";
auto tokens = get_tokens(op->name, ".");
auto varname = tokens.size() > 2 ? tokens.at(2) : op->name;
std::cout << op->name << " is probably referring to storage " << varname << std::endl;
//uint pos = std::find(storage_names.begin(), storage_names.end(), op->name) - storage_names.begin();
// determine dim_ref and stride
//if (pos < storage_names.size()) {
if (dim_map.count(varname)>0) {
std::cout << "this is a streaming loop: " << varname << " for " << op->name << "\n";
cout << "stride_map: ";
for (const auto& string_int_pair : stride_map) {
std::cout << string_int_pair.first << "," << string_int_pair.second.stride << " ";
}
std::cout << std::endl;
std::cout << " and mapcount=" << stride_map.size() << " " << stride_map.count(varname) << std::endl;
int stride = stride_map.count(varname)>0 ? stride_map.at(varname).stride : 1;
bool is_inv = stride_map.count(varname)>0 ? stride_map.at(varname).is_inverse : false;
//int stride = 1;
std::cout << "stride=" << stride << " is_inv=" << is_inv << std::endl;
if (is_inv) {
// push outer loop first
dim_refs.insert(dim_refs.begin(), dim_map.at(varname));
strides_in_dim.insert(strides_in_dim.begin(), 1);
ranges.insert(ranges.begin(), range / stride);
// push inner loop that has stride=0
dim_refs.insert(dim_refs.begin(), dim_map.at(varname));
ranges.insert(ranges.begin(), stride);
strides_in_dim.insert(strides_in_dim.begin(), 0);
} else {
dim_refs.insert(dim_refs.begin(), dim_map.at(varname));
strides_in_dim.insert(strides_in_dim.begin(), stride);
ranges.insert(ranges.begin(), range);
}
std::cout << op->name << " has stride=" << strides_in_dim.at(0)
<< " dim_ref=" << dim_refs.at(0)
<< " range=" << ranges.at(0) << "\n";
} else {
IdentifyAddressingVar iav(op->name, scope);
std::cout << "finding stride and range for " << op->name
<< "\n in: " << op->body << std::endl;
(op->body).accept(&iav);
dim_refs.insert(dim_refs.begin(), iav.dim_ref);
strides_in_dim.insert(strides_in_dim.begin(), iav.stride);
ranges.insert(ranges.begin(), range);
std::cout << op->name << " has stride=" << iav.stride << " dim_ref=" << iav.dim_ref << "\n";
}
IRVisitor::visit(op);
}
public:
const vector<string> &storage_names;
const map<string,Stride> &stride_map;
vector<string> varnames;
map<string, int> dim_map;
vector<int> ranges;
vector<int> dim_refs;
vector<int> strides_in_dim;
IdentifyAddressing(const Function& func, const Scope<Expr> &scope, const map<string,Stride> &stride_map) :
//stream_dim_idx(0), scope(scope), storage_names(func.args()), stride_map(stride_map) {
scope(scope), storage_names(func.args()), stride_map(stride_map) {
const auto &sch = func.definition().schedule();
const auto &splits = sch.splits();
// populate dim map with names
for (size_t i=0; i < storage_names.size(); ++i) {
dim_map[storage_names.at(i)] = i;
std::cout << "storage name=" << storage_names.at(i) << " has dim_idx=" << i << "\n";
}
// add any splits
for (auto split : splits) {
std::cout << "remapping " << split.old_var << " with " << split.outer << " and " << split.inner << "\n";
if (dim_map.count(split.old_var)) {
dim_map[split.outer] = dim_map.at(split.old_var);
dim_map[split.inner] = dim_map.at(split.old_var);
}
}
std::cout << "going to be looking for range and strides where storage=" << storage_names << std::endl;
}
};
std::string exprString(const Expr e);
}
}
#endif
| [
"dillonhuff@gmail.com"
] | dillonhuff@gmail.com |
05041b25b329b978bb6c875d317ecec9d1a7b08a | e217eaf05d0dab8dd339032b6c58636841aa8815 | /Ifc4/src/OpenInfraPlatform/Ifc4/entity/include/IfcAlarmType.h | 14e3afee8e8ba74fce76d658fdf9580b4a8399dd | [] | no_license | bigdoods/OpenInfraPlatform | f7785ebe4cb46e24d7f636e1b4110679d78a4303 | 0266e86a9f25f2ea9ec837d8d340d31a58a83c8e | refs/heads/master | 2021-01-21T03:41:20.124443 | 2016-01-26T23:20:21 | 2016-01-26T23:20:21 | 57,377,206 | 0 | 1 | null | 2016-04-29T10:38:19 | 2016-04-29T10:38:19 | null | UTF-8 | C++ | false | false | 3,532 | h | /*! \verbatim
* \copyright Copyright (c) 2015 Julian Amann. All rights reserved.
* \author Julian Amann <julian.amann@tum.de> (https://www.cms.bgu.tum.de/en/team/amann)
* \brief This file is part of the OpenInfraPlatform.
* \endverbatim
*/
#pragma once
#include <vector>
#include <map>
#include <sstream>
#include <string>
#include "OpenInfraPlatform/Ifc4/model/shared_ptr.h"
#include "OpenInfraPlatform/Ifc4/model/Ifc4Object.h"
#include "IfcDistributionControlElementType.h"
namespace OpenInfraPlatform
{
namespace Ifc4
{
class IfcAlarmTypeEnum;
//ENTITY
class IfcAlarmType : public IfcDistributionControlElementType
{
public:
IfcAlarmType();
IfcAlarmType( int id );
~IfcAlarmType();
// method setEntity takes over all attributes from another instance of the class
virtual void setEntity( shared_ptr<Ifc4Entity> other );
virtual void getStepLine( std::stringstream& stream ) const;
virtual void getStepParameter( std::stringstream& stream, bool is_select_type = false ) const;
virtual void readStepData( std::vector<std::string>& args, const std::map<int,shared_ptr<Ifc4Entity> >& map );
virtual void setInverseCounterparts( shared_ptr<Ifc4Entity> ptr_self );
virtual void unlinkSelf();
virtual const char* classname() const { return "IfcAlarmType"; }
// IfcRoot -----------------------------------------------------------
// attributes:
// shared_ptr<IfcGloballyUniqueId> m_GlobalId;
// shared_ptr<IfcOwnerHistory> m_OwnerHistory; //optional
// shared_ptr<IfcLabel> m_Name; //optional
// shared_ptr<IfcText> m_Description; //optional
// IfcObjectDefinition -----------------------------------------------------------
// inverse attributes:
// std::vector<weak_ptr<IfcRelAssigns> > m_HasAssignments_inverse;
// std::vector<weak_ptr<IfcRelNests> > m_Nests_inverse;
// std::vector<weak_ptr<IfcRelNests> > m_IsNestedBy_inverse;
// std::vector<weak_ptr<IfcRelDeclares> > m_HasContext_inverse;
// std::vector<weak_ptr<IfcRelAggregates> > m_IsDecomposedBy_inverse;
// std::vector<weak_ptr<IfcRelAggregates> > m_Decomposes_inverse;
// std::vector<weak_ptr<IfcRelAssociates> > m_HasAssociations_inverse;
// IfcTypeObject -----------------------------------------------------------
// attributes:
// shared_ptr<IfcIdentifier> m_ApplicableOccurrence; //optional
// std::vector<shared_ptr<IfcPropertySetDefinition> > m_HasPropertySets; //optional
// inverse attributes:
// std::vector<weak_ptr<IfcRelDefinesByType> > m_Types_inverse;
// IfcTypeProduct -----------------------------------------------------------
// attributes:
// std::vector<shared_ptr<IfcRepresentationMap> > m_RepresentationMaps; //optional
// shared_ptr<IfcLabel> m_Tag; //optional
// inverse attributes:
// std::vector<weak_ptr<IfcRelAssignsToProduct> > m_ReferencedBy_inverse;
// IfcElementType -----------------------------------------------------------
// attributes:
// shared_ptr<IfcLabel> m_ElementType; //optional
// IfcDistributionElementType -----------------------------------------------------------
// IfcDistributionControlElementType -----------------------------------------------------------
// IfcAlarmType -----------------------------------------------------------
// attributes:
shared_ptr<IfcAlarmTypeEnum> m_PredefinedType;
};
} // end namespace Ifc4
} // end namespace OpenInfraPlatform
| [
"julian.amann@tum.de"
] | julian.amann@tum.de |
277400a70c36e3bb8c22344dd0e772727e92291a | 9fccd259302c59f9540bddd21fba75ca9983ff0f | /resources/data_structures/AminLinkedList4_HeadTailTemplates.cpp | a0a2661216392797224d2f4bf371ff2123d9ed63 | [] | no_license | aminallam/test | e978ea3bc41fc52fddf590df274980ebe317f6cc | 9ed305e9b0ac613712539c0572b5745068597343 | refs/heads/master | 2021-06-05T01:58:42.680206 | 2021-02-28T16:29:09 | 2021-02-28T16:29:09 | 18,600,527 | 3 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 6,344 | cpp | // Author: Amin Allam
// Program: Linked list with head and tail - templates
#include <iostream>
using namespace std;
///////////////////////////////////////////////////////////////////////////////////////////////
// Declaration of class List, needed for the friend line below
template<class> class List;
template<class Data>
class Node
{
private:
Data data;
Node* next; // link to the next node, contains the address of the next node
friend class List<Data>;
};
// Classes other than List will not be able to access Node member variables
// because they are private members, and the only friend class is List
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
class List
{
Node<Data>* head;
Node<Data>* tail;
public:
List();
void InsertFirst(Data d); // Insert at first
void InsertLast(Data d); // Insert at Last
void InsertAt(int i, Data d); // Insert at index i (where i=0 is first)
void InsertOrdered(Data d); // Insert in its order
void Delete(Data d); // Delete element d
void Print(); // Print list elements
void Destroy(); // Destroy list
~List();
};
///////////////////////////////////////////////////////////////////////////////////////////////
// List a
// List:
// a.InsertFirst(3)
// List: 3
// a.InsertLast(7)
// List: 3 7
// a.InsertAt(1, 4)
// List: 3 4 7
// a.InsertOrdered(5)
// List: 3 4 5 7
// a.Delete(6)
// List: 3 4 5 7
// a.Delete(4)
// List: 3 5 7
// a.Destroy()
// List:
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
List<Data>::List()
{
head = 0; // 0 is the same as NULL
tail = 0;
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::InsertFirst(Data d) // Insert at first
{
Node<Data>* node = new Node<Data>;
node->data = d;
node->next = head;
head = node;
if(node->next == 0)
tail = node;
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::InsertLast(Data d) // Insert at last
{
Node<Data>* node = new Node<Data>;
node->data = d;
node->next = 0;
if(head == 0)
{
head = node;
tail = node;
return;
}
tail->next = node;
tail = node;
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::InsertAt(int i, Data d) // Insert at index i (where i=0 is first)
{
if(i<0) return;
if(i==0)
{
InsertFirst(d);
return;
}
// Initially we are at node head (the node whose address is in head), which is at index 0 (first node)
int j=0;
Node<Data>* cur = head;
// Move cur until it contains the address of the node at index i-1
while(j!=i-1 && cur != 0)
{
cur = cur->next;
j++;
}
// Here, cur contains the address of the node at index i-1
// which is the node before the location where we want to insert
// So, cur is the node before which we want to insert (or cur=0 if i is too large)
if(cur != 0)
{
Node<Data>* node = new Node<Data>;
node->data = d;
node->next = cur->next;
cur->next = node;
if(node->next == 0)
tail = node;
}
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::InsertOrdered(Data d) // Insert in its order
{
Node<Data>* node = new Node<Data>;
node->data = d;
if(head==0 || head->data > d)
{
node->next = head;
head = node;
if(node->next == 0)
tail = node;
return;
}
Node<Data>* prev = head;
Node<Data>* cur = head->next;
// Move prev until it reaches the node before the location where we want to insert
while(cur != 0 && cur->data <= d)
{
prev = cur;
cur = cur->next;
}
// Here, cur contains the address of the node whose data > d (or cur=0)
// Here, prev contains the address of the node before cur (or prev=address of last node)
node->next = cur;
prev->next = node;
if(node->next == 0)
tail = node;
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::Delete(Data d) // Delete element d
{
if(head==0)
return;
if(head->data == d)
{
Node<Data>* temp = head;
head = head->next;
delete temp;
if(head == 0 || head->next == 0)
tail = head;
return;
}
// Move prev until it reaches the node before the node we want to delete
Node<Data>* prev = head;
Node<Data>* cur = head->next;
while(cur != 0 && cur->data != d)
{
prev = cur;
cur = cur->next;
}
// Here, cur contains the address of the node whose data == d (or cur=0)
// Here, prev contains the address of the node before cur (or prev=address of last node)
if(cur != 0)
{
prev->next = cur->next;
delete cur;
if(prev->next == 0)
tail = prev;
}
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::Print() // Print list elements
{
cout << "List: ";
Node<Data>* cur = head;
while(cur != 0)
{
cout << cur->data << " ";
cur = cur->next;
}
cout << endl;
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
void List<Data>::Destroy()
{
Node<Data>* cur = head;
while(cur != 0)
{
Node<Data>* temp = cur->next;
delete cur;
cur = temp;
}
head = 0;
tail = 0;
}
///////////////////////////////////////////////////////////////////////////////////////////////
template<class Data>
List<Data>::~List()
{
Destroy();
}
///////////////////////////////////////////////////////////////////////////////////////////////
int main()
{
cout<<"List a"<<endl;
List<int> a;
a.Print();
cout<<"a.InsertFirst(3)"<<endl;
a.InsertFirst(3);
a.Print();
cout<<"a.InsertLast(7)"<<endl;
a.InsertLast(7);
a.Print();
cout<<"a.InsertAt(1, 4)"<<endl;
a.InsertAt(1, 4);
a.Print();
cout<<"a.InsertOrdered(5)"<<endl;
a.InsertOrdered(5);
a.Print();
cout<<"a.Delete(6)"<<endl;
a.Delete(6);
a.Print();
cout<<"a.Delete(4)"<<endl;
a.Delete(4);
a.Print();
cout<<"a.Destroy()"<<endl;
a.Destroy();
a.Print();
return 0;
}
///////////////////////////////////////////////////////////////////////////////////////////////
| [
"aminmallam@gmail.com"
] | aminmallam@gmail.com |
24bca8babc64f1088220176d7bd013b0f80bfe40 | 2043ee9b733bdf244801b710d1a3752982a261d0 | /shlee5.3/chapter12/WidgetAndView/qrc_resource.cpp | 61e080cbff6e85e089fd3a420df4a7e53e5edae3 | [] | no_license | batonio/examples | 74cbd31a84d33608b93292b61c5628010029824c | f3663f67fe636b6de8876a7de53f367fdfd93c18 | refs/heads/master | 2020-04-25T19:15:35.168852 | 2019-02-28T01:14:19 | 2019-02-28T01:14:19 | 104,603,417 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 108,688 | cpp | /****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.8.0
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// /home/erofeev/workspace.home/shlee5.3/chapter12/WidgetAndView/imgs/Windows.jpg
0x0,0x0,0x17,0xfb,
0xff,
0xd8,0xff,0xe0,0x0,0x10,0x4a,0x46,0x49,0x46,0x0,0x1,0x1,0x1,0x0,0x90,0x0,
0x90,0x0,0x0,0xff,0xe2,0xf,0x38,0x49,0x43,0x43,0x5f,0x50,0x52,0x4f,0x46,0x49,
0x4c,0x45,0x0,0x1,0x1,0x0,0x0,0xf,0x28,0x61,0x70,0x70,0x6c,0x2,0x10,0x0,
0x0,0x6d,0x6e,0x74,0x72,0x52,0x47,0x42,0x20,0x58,0x59,0x5a,0x20,0x7,0xde,0x0,
0x3,0x0,0xb,0x0,0x7,0x0,0x20,0x0,0x1a,0x61,0x63,0x73,0x70,0x41,0x50,0x50,
0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xd6,0x0,0x1,0x0,
0x0,0x0,0x0,0xd3,0x2d,0x61,0x70,0x70,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x64,0x65,0x73,0x63,0x0,0x0,0x1,
0x50,0x0,0x0,0x0,0x62,0x64,0x73,0x63,0x6d,0x0,0x0,0x1,0xb4,0x0,0x0,0x4,
0xe,0x63,0x70,0x72,0x74,0x0,0x0,0x5,0xc4,0x0,0x0,0x0,0x23,0x77,0x74,0x70,
0x74,0x0,0x0,0x5,0xe8,0x0,0x0,0x0,0x14,0x72,0x58,0x59,0x5a,0x0,0x0,0x5,
0xfc,0x0,0x0,0x0,0x14,0x67,0x58,0x59,0x5a,0x0,0x0,0x6,0x10,0x0,0x0,0x0,
0x14,0x62,0x58,0x59,0x5a,0x0,0x0,0x6,0x24,0x0,0x0,0x0,0x14,0x72,0x54,0x52,
0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,0xc,0x61,0x61,0x72,0x67,0x0,0x0,0xe,
0x44,0x0,0x0,0x0,0x20,0x76,0x63,0x67,0x74,0x0,0x0,0xe,0x64,0x0,0x0,0x0,
0x30,0x6e,0x64,0x69,0x6e,0x0,0x0,0xe,0x94,0x0,0x0,0x0,0x3e,0x63,0x68,0x61,
0x64,0x0,0x0,0xe,0xd4,0x0,0x0,0x0,0x2c,0x6d,0x6d,0x6f,0x64,0x0,0x0,0xf,
0x0,0x0,0x0,0x0,0x28,0x62,0x54,0x52,0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,
0xc,0x67,0x54,0x52,0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,0xc,0x61,0x61,0x62,
0x67,0x0,0x0,0xe,0x44,0x0,0x0,0x0,0x20,0x61,0x61,0x67,0x67,0x0,0x0,0xe,
0x44,0x0,0x0,0x0,0x20,0x64,0x65,0x73,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x8,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x6c,0x75,0x63,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xc,0x68,0x72,0x48,0x52,0x0,0x0,0x0,
0x14,0x0,0x0,0x1,0x9c,0x6b,0x6f,0x4b,0x52,0x0,0x0,0x0,0xc,0x0,0x0,0x1,
0xb0,0x6e,0x62,0x4e,0x4f,0x0,0x0,0x0,0x12,0x0,0x0,0x1,0xbc,0x69,0x64,0x0,
0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x1,0xce,0x68,0x75,0x48,0x55,0x0,0x0,0x0,
0x14,0x0,0x0,0x1,0xe0,0x63,0x73,0x43,0x5a,0x0,0x0,0x0,0x16,0x0,0x0,0x1,
0xf4,0x64,0x61,0x44,0x4b,0x0,0x0,0x0,0x1c,0x0,0x0,0x2,0xa,0x75,0x6b,0x55,
0x41,0x0,0x0,0x0,0x1c,0x0,0x0,0x2,0x26,0x61,0x72,0x0,0x0,0x0,0x0,0x0,
0x14,0x0,0x0,0x2,0x42,0x69,0x74,0x49,0x54,0x0,0x0,0x0,0x14,0x0,0x0,0x2,
0x56,0x72,0x6f,0x52,0x4f,0x0,0x0,0x0,0x12,0x0,0x0,0x2,0x6a,0x6e,0x6c,0x4e,
0x4c,0x0,0x0,0x0,0x16,0x0,0x0,0x2,0x7c,0x68,0x65,0x49,0x4c,0x0,0x0,0x0,
0x16,0x0,0x0,0x2,0x92,0x65,0x73,0x45,0x53,0x0,0x0,0x0,0x12,0x0,0x0,0x2,
0x6a,0x66,0x69,0x46,0x49,0x0,0x0,0x0,0x10,0x0,0x0,0x2,0xa8,0x7a,0x68,0x54,
0x57,0x0,0x0,0x0,0xc,0x0,0x0,0x2,0xb8,0x76,0x69,0x56,0x4e,0x0,0x0,0x0,
0xe,0x0,0x0,0x2,0xc4,0x73,0x6b,0x53,0x4b,0x0,0x0,0x0,0x16,0x0,0x0,0x2,
0xd2,0x7a,0x68,0x43,0x4e,0x0,0x0,0x0,0xc,0x0,0x0,0x2,0xb8,0x72,0x75,0x52,
0x55,0x0,0x0,0x0,0x24,0x0,0x0,0x2,0xe8,0x66,0x72,0x46,0x52,0x0,0x0,0x0,
0x16,0x0,0x0,0x3,0xc,0x6d,0x73,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x3,
0x22,0x63,0x61,0x45,0x53,0x0,0x0,0x0,0x18,0x0,0x0,0x3,0x34,0x74,0x68,0x54,
0x48,0x0,0x0,0x0,0xc,0x0,0x0,0x3,0x4c,0x64,0x65,0x44,0x45,0x0,0x0,0x0,
0x10,0x0,0x0,0x3,0x58,0x65,0x6e,0x55,0x53,0x0,0x0,0x0,0x12,0x0,0x0,0x3,
0x68,0x70,0x74,0x42,0x52,0x0,0x0,0x0,0x18,0x0,0x0,0x3,0x7a,0x70,0x6c,0x50,
0x4c,0x0,0x0,0x0,0x12,0x0,0x0,0x3,0x92,0x65,0x6c,0x47,0x52,0x0,0x0,0x0,
0x22,0x0,0x0,0x3,0xa4,0x73,0x76,0x53,0x45,0x0,0x0,0x0,0x10,0x0,0x0,0x3,
0xc6,0x74,0x72,0x54,0x52,0x0,0x0,0x0,0x14,0x0,0x0,0x3,0xd6,0x6a,0x61,0x4a,
0x50,0x0,0x0,0x0,0xe,0x0,0x0,0x3,0xea,0x70,0x74,0x50,0x54,0x0,0x0,0x0,
0x16,0x0,0x0,0x3,0xf8,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x75,0x0,
0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x69,0xce,0xec,0xb7,0xec,0x0,0x20,0x0,
0x4c,0x0,0x43,0x0,0x44,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,
0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,
0x57,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x53,0x0,0x7a,0x0,0xed,0x0,
0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x42,0x0,
0x61,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x66,0x0,0x61,0x0,
0x72,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0xe6,0x0,0x72,0x0,0x6d,0x4,
0x1a,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,
0x38,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x20,0xf,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x6,0x45,0x6,0x44,0x6,0x48,0x6,0x46,0x6,0x29,0x0,
0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,
0x72,0x0,0x69,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,
0x65,0x0,0x6e,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x20,0xf,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x5,0xe6,0x5,0xd1,0x5,0xe2,0x5,0xd5,0x5,0xe0,0x5,
0xd9,0x0,0x56,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,
0x44,0x5f,0x69,0x82,0x72,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x0,0x4d,0x0,0xe0,0x0,0x75,0x0,0x46,0x0,0x61,0x0,
0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,
0x44,0x4,0x26,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,
0x20,0x4,0x16,0x4,0x1a,0x0,0x2d,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,
0x3b,0x4,0x35,0x4,0x39,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,
0x6f,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x57,0x0,0x61,0x0,
0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0xe,0x2a,0xe,
0x35,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,
0x44,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x4b,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x3,0x88,0x3,
0xb3,0x3,0xc7,0x3,0xc1,0x3,0xc9,0x3,0xbc,0x3,0xb7,0x0,0x20,0x3,0xbf,0x3,
0xb8,0x3,0xcc,0x3,0xbd,0x3,0xb7,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,
0x46,0x0,0xe4,0x0,0x72,0x0,0x67,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,
0x52,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x30,0xab,0x30,0xe9,0x30,0xfc,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,
0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,
0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x0,0x74,0x65,0x78,0x74,0x0,0x0,0x0,
0x0,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x41,0x70,0x70,0x6c,0x65,
0x20,0x49,0x6e,0x63,0x2e,0x2c,0x20,0x32,0x30,0x31,0x34,0x0,0x0,0x58,0x59,0x5a,
0x20,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x16,
0xca,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xc0,0x0,0x0,0x39,
0x8a,0x0,0x0,0x1,0x67,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x61,
0x23,0x0,0x0,0xb9,0xe6,0x0,0x0,0x13,0xf6,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,
0x0,0x0,0x0,0x23,0xf2,0x0,0x0,0xc,0x90,0x0,0x0,0xbd,0xd0,0x63,0x75,0x72,
0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x5,0x0,0xa,0x0,
0xf,0x0,0x14,0x0,0x19,0x0,0x1e,0x0,0x23,0x0,0x28,0x0,0x2d,0x0,0x32,0x0,
0x36,0x0,0x3b,0x0,0x40,0x0,0x45,0x0,0x4a,0x0,0x4f,0x0,0x54,0x0,0x59,0x0,
0x5e,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x72,0x0,0x77,0x0,0x7c,0x0,0x81,0x0,
0x86,0x0,0x8b,0x0,0x90,0x0,0x95,0x0,0x9a,0x0,0x9f,0x0,0xa3,0x0,0xa8,0x0,
0xad,0x0,0xb2,0x0,0xb7,0x0,0xbc,0x0,0xc1,0x0,0xc6,0x0,0xcb,0x0,0xd0,0x0,
0xd5,0x0,0xdb,0x0,0xe0,0x0,0xe5,0x0,0xeb,0x0,0xf0,0x0,0xf6,0x0,0xfb,0x1,
0x1,0x1,0x7,0x1,0xd,0x1,0x13,0x1,0x19,0x1,0x1f,0x1,0x25,0x1,0x2b,0x1,
0x32,0x1,0x38,0x1,0x3e,0x1,0x45,0x1,0x4c,0x1,0x52,0x1,0x59,0x1,0x60,0x1,
0x67,0x1,0x6e,0x1,0x75,0x1,0x7c,0x1,0x83,0x1,0x8b,0x1,0x92,0x1,0x9a,0x1,
0xa1,0x1,0xa9,0x1,0xb1,0x1,0xb9,0x1,0xc1,0x1,0xc9,0x1,0xd1,0x1,0xd9,0x1,
0xe1,0x1,0xe9,0x1,0xf2,0x1,0xfa,0x2,0x3,0x2,0xc,0x2,0x14,0x2,0x1d,0x2,
0x26,0x2,0x2f,0x2,0x38,0x2,0x41,0x2,0x4b,0x2,0x54,0x2,0x5d,0x2,0x67,0x2,
0x71,0x2,0x7a,0x2,0x84,0x2,0x8e,0x2,0x98,0x2,0xa2,0x2,0xac,0x2,0xb6,0x2,
0xc1,0x2,0xcb,0x2,0xd5,0x2,0xe0,0x2,0xeb,0x2,0xf5,0x3,0x0,0x3,0xb,0x3,
0x16,0x3,0x21,0x3,0x2d,0x3,0x38,0x3,0x43,0x3,0x4f,0x3,0x5a,0x3,0x66,0x3,
0x72,0x3,0x7e,0x3,0x8a,0x3,0x96,0x3,0xa2,0x3,0xae,0x3,0xba,0x3,0xc7,0x3,
0xd3,0x3,0xe0,0x3,0xec,0x3,0xf9,0x4,0x6,0x4,0x13,0x4,0x20,0x4,0x2d,0x4,
0x3b,0x4,0x48,0x4,0x55,0x4,0x63,0x4,0x71,0x4,0x7e,0x4,0x8c,0x4,0x9a,0x4,
0xa8,0x4,0xb6,0x4,0xc4,0x4,0xd3,0x4,0xe1,0x4,0xf0,0x4,0xfe,0x5,0xd,0x5,
0x1c,0x5,0x2b,0x5,0x3a,0x5,0x49,0x5,0x58,0x5,0x67,0x5,0x77,0x5,0x86,0x5,
0x96,0x5,0xa6,0x5,0xb5,0x5,0xc5,0x5,0xd5,0x5,0xe5,0x5,0xf6,0x6,0x6,0x6,
0x16,0x6,0x27,0x6,0x37,0x6,0x48,0x6,0x59,0x6,0x6a,0x6,0x7b,0x6,0x8c,0x6,
0x9d,0x6,0xaf,0x6,0xc0,0x6,0xd1,0x6,0xe3,0x6,0xf5,0x7,0x7,0x7,0x19,0x7,
0x2b,0x7,0x3d,0x7,0x4f,0x7,0x61,0x7,0x74,0x7,0x86,0x7,0x99,0x7,0xac,0x7,
0xbf,0x7,0xd2,0x7,0xe5,0x7,0xf8,0x8,0xb,0x8,0x1f,0x8,0x32,0x8,0x46,0x8,
0x5a,0x8,0x6e,0x8,0x82,0x8,0x96,0x8,0xaa,0x8,0xbe,0x8,0xd2,0x8,0xe7,0x8,
0xfb,0x9,0x10,0x9,0x25,0x9,0x3a,0x9,0x4f,0x9,0x64,0x9,0x79,0x9,0x8f,0x9,
0xa4,0x9,0xba,0x9,0xcf,0x9,0xe5,0x9,0xfb,0xa,0x11,0xa,0x27,0xa,0x3d,0xa,
0x54,0xa,0x6a,0xa,0x81,0xa,0x98,0xa,0xae,0xa,0xc5,0xa,0xdc,0xa,0xf3,0xb,
0xb,0xb,0x22,0xb,0x39,0xb,0x51,0xb,0x69,0xb,0x80,0xb,0x98,0xb,0xb0,0xb,
0xc8,0xb,0xe1,0xb,0xf9,0xc,0x12,0xc,0x2a,0xc,0x43,0xc,0x5c,0xc,0x75,0xc,
0x8e,0xc,0xa7,0xc,0xc0,0xc,0xd9,0xc,0xf3,0xd,0xd,0xd,0x26,0xd,0x40,0xd,
0x5a,0xd,0x74,0xd,0x8e,0xd,0xa9,0xd,0xc3,0xd,0xde,0xd,0xf8,0xe,0x13,0xe,
0x2e,0xe,0x49,0xe,0x64,0xe,0x7f,0xe,0x9b,0xe,0xb6,0xe,0xd2,0xe,0xee,0xf,
0x9,0xf,0x25,0xf,0x41,0xf,0x5e,0xf,0x7a,0xf,0x96,0xf,0xb3,0xf,0xcf,0xf,
0xec,0x10,0x9,0x10,0x26,0x10,0x43,0x10,0x61,0x10,0x7e,0x10,0x9b,0x10,0xb9,0x10,
0xd7,0x10,0xf5,0x11,0x13,0x11,0x31,0x11,0x4f,0x11,0x6d,0x11,0x8c,0x11,0xaa,0x11,
0xc9,0x11,0xe8,0x12,0x7,0x12,0x26,0x12,0x45,0x12,0x64,0x12,0x84,0x12,0xa3,0x12,
0xc3,0x12,0xe3,0x13,0x3,0x13,0x23,0x13,0x43,0x13,0x63,0x13,0x83,0x13,0xa4,0x13,
0xc5,0x13,0xe5,0x14,0x6,0x14,0x27,0x14,0x49,0x14,0x6a,0x14,0x8b,0x14,0xad,0x14,
0xce,0x14,0xf0,0x15,0x12,0x15,0x34,0x15,0x56,0x15,0x78,0x15,0x9b,0x15,0xbd,0x15,
0xe0,0x16,0x3,0x16,0x26,0x16,0x49,0x16,0x6c,0x16,0x8f,0x16,0xb2,0x16,0xd6,0x16,
0xfa,0x17,0x1d,0x17,0x41,0x17,0x65,0x17,0x89,0x17,0xae,0x17,0xd2,0x17,0xf7,0x18,
0x1b,0x18,0x40,0x18,0x65,0x18,0x8a,0x18,0xaf,0x18,0xd5,0x18,0xfa,0x19,0x20,0x19,
0x45,0x19,0x6b,0x19,0x91,0x19,0xb7,0x19,0xdd,0x1a,0x4,0x1a,0x2a,0x1a,0x51,0x1a,
0x77,0x1a,0x9e,0x1a,0xc5,0x1a,0xec,0x1b,0x14,0x1b,0x3b,0x1b,0x63,0x1b,0x8a,0x1b,
0xb2,0x1b,0xda,0x1c,0x2,0x1c,0x2a,0x1c,0x52,0x1c,0x7b,0x1c,0xa3,0x1c,0xcc,0x1c,
0xf5,0x1d,0x1e,0x1d,0x47,0x1d,0x70,0x1d,0x99,0x1d,0xc3,0x1d,0xec,0x1e,0x16,0x1e,
0x40,0x1e,0x6a,0x1e,0x94,0x1e,0xbe,0x1e,0xe9,0x1f,0x13,0x1f,0x3e,0x1f,0x69,0x1f,
0x94,0x1f,0xbf,0x1f,0xea,0x20,0x15,0x20,0x41,0x20,0x6c,0x20,0x98,0x20,0xc4,0x20,
0xf0,0x21,0x1c,0x21,0x48,0x21,0x75,0x21,0xa1,0x21,0xce,0x21,0xfb,0x22,0x27,0x22,
0x55,0x22,0x82,0x22,0xaf,0x22,0xdd,0x23,0xa,0x23,0x38,0x23,0x66,0x23,0x94,0x23,
0xc2,0x23,0xf0,0x24,0x1f,0x24,0x4d,0x24,0x7c,0x24,0xab,0x24,0xda,0x25,0x9,0x25,
0x38,0x25,0x68,0x25,0x97,0x25,0xc7,0x25,0xf7,0x26,0x27,0x26,0x57,0x26,0x87,0x26,
0xb7,0x26,0xe8,0x27,0x18,0x27,0x49,0x27,0x7a,0x27,0xab,0x27,0xdc,0x28,0xd,0x28,
0x3f,0x28,0x71,0x28,0xa2,0x28,0xd4,0x29,0x6,0x29,0x38,0x29,0x6b,0x29,0x9d,0x29,
0xd0,0x2a,0x2,0x2a,0x35,0x2a,0x68,0x2a,0x9b,0x2a,0xcf,0x2b,0x2,0x2b,0x36,0x2b,
0x69,0x2b,0x9d,0x2b,0xd1,0x2c,0x5,0x2c,0x39,0x2c,0x6e,0x2c,0xa2,0x2c,0xd7,0x2d,
0xc,0x2d,0x41,0x2d,0x76,0x2d,0xab,0x2d,0xe1,0x2e,0x16,0x2e,0x4c,0x2e,0x82,0x2e,
0xb7,0x2e,0xee,0x2f,0x24,0x2f,0x5a,0x2f,0x91,0x2f,0xc7,0x2f,0xfe,0x30,0x35,0x30,
0x6c,0x30,0xa4,0x30,0xdb,0x31,0x12,0x31,0x4a,0x31,0x82,0x31,0xba,0x31,0xf2,0x32,
0x2a,0x32,0x63,0x32,0x9b,0x32,0xd4,0x33,0xd,0x33,0x46,0x33,0x7f,0x33,0xb8,0x33,
0xf1,0x34,0x2b,0x34,0x65,0x34,0x9e,0x34,0xd8,0x35,0x13,0x35,0x4d,0x35,0x87,0x35,
0xc2,0x35,0xfd,0x36,0x37,0x36,0x72,0x36,0xae,0x36,0xe9,0x37,0x24,0x37,0x60,0x37,
0x9c,0x37,0xd7,0x38,0x14,0x38,0x50,0x38,0x8c,0x38,0xc8,0x39,0x5,0x39,0x42,0x39,
0x7f,0x39,0xbc,0x39,0xf9,0x3a,0x36,0x3a,0x74,0x3a,0xb2,0x3a,0xef,0x3b,0x2d,0x3b,
0x6b,0x3b,0xaa,0x3b,0xe8,0x3c,0x27,0x3c,0x65,0x3c,0xa4,0x3c,0xe3,0x3d,0x22,0x3d,
0x61,0x3d,0xa1,0x3d,0xe0,0x3e,0x20,0x3e,0x60,0x3e,0xa0,0x3e,0xe0,0x3f,0x21,0x3f,
0x61,0x3f,0xa2,0x3f,0xe2,0x40,0x23,0x40,0x64,0x40,0xa6,0x40,0xe7,0x41,0x29,0x41,
0x6a,0x41,0xac,0x41,0xee,0x42,0x30,0x42,0x72,0x42,0xb5,0x42,0xf7,0x43,0x3a,0x43,
0x7d,0x43,0xc0,0x44,0x3,0x44,0x47,0x44,0x8a,0x44,0xce,0x45,0x12,0x45,0x55,0x45,
0x9a,0x45,0xde,0x46,0x22,0x46,0x67,0x46,0xab,0x46,0xf0,0x47,0x35,0x47,0x7b,0x47,
0xc0,0x48,0x5,0x48,0x4b,0x48,0x91,0x48,0xd7,0x49,0x1d,0x49,0x63,0x49,0xa9,0x49,
0xf0,0x4a,0x37,0x4a,0x7d,0x4a,0xc4,0x4b,0xc,0x4b,0x53,0x4b,0x9a,0x4b,0xe2,0x4c,
0x2a,0x4c,0x72,0x4c,0xba,0x4d,0x2,0x4d,0x4a,0x4d,0x93,0x4d,0xdc,0x4e,0x25,0x4e,
0x6e,0x4e,0xb7,0x4f,0x0,0x4f,0x49,0x4f,0x93,0x4f,0xdd,0x50,0x27,0x50,0x71,0x50,
0xbb,0x51,0x6,0x51,0x50,0x51,0x9b,0x51,0xe6,0x52,0x31,0x52,0x7c,0x52,0xc7,0x53,
0x13,0x53,0x5f,0x53,0xaa,0x53,0xf6,0x54,0x42,0x54,0x8f,0x54,0xdb,0x55,0x28,0x55,
0x75,0x55,0xc2,0x56,0xf,0x56,0x5c,0x56,0xa9,0x56,0xf7,0x57,0x44,0x57,0x92,0x57,
0xe0,0x58,0x2f,0x58,0x7d,0x58,0xcb,0x59,0x1a,0x59,0x69,0x59,0xb8,0x5a,0x7,0x5a,
0x56,0x5a,0xa6,0x5a,0xf5,0x5b,0x45,0x5b,0x95,0x5b,0xe5,0x5c,0x35,0x5c,0x86,0x5c,
0xd6,0x5d,0x27,0x5d,0x78,0x5d,0xc9,0x5e,0x1a,0x5e,0x6c,0x5e,0xbd,0x5f,0xf,0x5f,
0x61,0x5f,0xb3,0x60,0x5,0x60,0x57,0x60,0xaa,0x60,0xfc,0x61,0x4f,0x61,0xa2,0x61,
0xf5,0x62,0x49,0x62,0x9c,0x62,0xf0,0x63,0x43,0x63,0x97,0x63,0xeb,0x64,0x40,0x64,
0x94,0x64,0xe9,0x65,0x3d,0x65,0x92,0x65,0xe7,0x66,0x3d,0x66,0x92,0x66,0xe8,0x67,
0x3d,0x67,0x93,0x67,0xe9,0x68,0x3f,0x68,0x96,0x68,0xec,0x69,0x43,0x69,0x9a,0x69,
0xf1,0x6a,0x48,0x6a,0x9f,0x6a,0xf7,0x6b,0x4f,0x6b,0xa7,0x6b,0xff,0x6c,0x57,0x6c,
0xaf,0x6d,0x8,0x6d,0x60,0x6d,0xb9,0x6e,0x12,0x6e,0x6b,0x6e,0xc4,0x6f,0x1e,0x6f,
0x78,0x6f,0xd1,0x70,0x2b,0x70,0x86,0x70,0xe0,0x71,0x3a,0x71,0x95,0x71,0xf0,0x72,
0x4b,0x72,0xa6,0x73,0x1,0x73,0x5d,0x73,0xb8,0x74,0x14,0x74,0x70,0x74,0xcc,0x75,
0x28,0x75,0x85,0x75,0xe1,0x76,0x3e,0x76,0x9b,0x76,0xf8,0x77,0x56,0x77,0xb3,0x78,
0x11,0x78,0x6e,0x78,0xcc,0x79,0x2a,0x79,0x89,0x79,0xe7,0x7a,0x46,0x7a,0xa5,0x7b,
0x4,0x7b,0x63,0x7b,0xc2,0x7c,0x21,0x7c,0x81,0x7c,0xe1,0x7d,0x41,0x7d,0xa1,0x7e,
0x1,0x7e,0x62,0x7e,0xc2,0x7f,0x23,0x7f,0x84,0x7f,0xe5,0x80,0x47,0x80,0xa8,0x81,
0xa,0x81,0x6b,0x81,0xcd,0x82,0x30,0x82,0x92,0x82,0xf4,0x83,0x57,0x83,0xba,0x84,
0x1d,0x84,0x80,0x84,0xe3,0x85,0x47,0x85,0xab,0x86,0xe,0x86,0x72,0x86,0xd7,0x87,
0x3b,0x87,0x9f,0x88,0x4,0x88,0x69,0x88,0xce,0x89,0x33,0x89,0x99,0x89,0xfe,0x8a,
0x64,0x8a,0xca,0x8b,0x30,0x8b,0x96,0x8b,0xfc,0x8c,0x63,0x8c,0xca,0x8d,0x31,0x8d,
0x98,0x8d,0xff,0x8e,0x66,0x8e,0xce,0x8f,0x36,0x8f,0x9e,0x90,0x6,0x90,0x6e,0x90,
0xd6,0x91,0x3f,0x91,0xa8,0x92,0x11,0x92,0x7a,0x92,0xe3,0x93,0x4d,0x93,0xb6,0x94,
0x20,0x94,0x8a,0x94,0xf4,0x95,0x5f,0x95,0xc9,0x96,0x34,0x96,0x9f,0x97,0xa,0x97,
0x75,0x97,0xe0,0x98,0x4c,0x98,0xb8,0x99,0x24,0x99,0x90,0x99,0xfc,0x9a,0x68,0x9a,
0xd5,0x9b,0x42,0x9b,0xaf,0x9c,0x1c,0x9c,0x89,0x9c,0xf7,0x9d,0x64,0x9d,0xd2,0x9e,
0x40,0x9e,0xae,0x9f,0x1d,0x9f,0x8b,0x9f,0xfa,0xa0,0x69,0xa0,0xd8,0xa1,0x47,0xa1,
0xb6,0xa2,0x26,0xa2,0x96,0xa3,0x6,0xa3,0x76,0xa3,0xe6,0xa4,0x56,0xa4,0xc7,0xa5,
0x38,0xa5,0xa9,0xa6,0x1a,0xa6,0x8b,0xa6,0xfd,0xa7,0x6e,0xa7,0xe0,0xa8,0x52,0xa8,
0xc4,0xa9,0x37,0xa9,0xa9,0xaa,0x1c,0xaa,0x8f,0xab,0x2,0xab,0x75,0xab,0xe9,0xac,
0x5c,0xac,0xd0,0xad,0x44,0xad,0xb8,0xae,0x2d,0xae,0xa1,0xaf,0x16,0xaf,0x8b,0xb0,
0x0,0xb0,0x75,0xb0,0xea,0xb1,0x60,0xb1,0xd6,0xb2,0x4b,0xb2,0xc2,0xb3,0x38,0xb3,
0xae,0xb4,0x25,0xb4,0x9c,0xb5,0x13,0xb5,0x8a,0xb6,0x1,0xb6,0x79,0xb6,0xf0,0xb7,
0x68,0xb7,0xe0,0xb8,0x59,0xb8,0xd1,0xb9,0x4a,0xb9,0xc2,0xba,0x3b,0xba,0xb5,0xbb,
0x2e,0xbb,0xa7,0xbc,0x21,0xbc,0x9b,0xbd,0x15,0xbd,0x8f,0xbe,0xa,0xbe,0x84,0xbe,
0xff,0xbf,0x7a,0xbf,0xf5,0xc0,0x70,0xc0,0xec,0xc1,0x67,0xc1,0xe3,0xc2,0x5f,0xc2,
0xdb,0xc3,0x58,0xc3,0xd4,0xc4,0x51,0xc4,0xce,0xc5,0x4b,0xc5,0xc8,0xc6,0x46,0xc6,
0xc3,0xc7,0x41,0xc7,0xbf,0xc8,0x3d,0xc8,0xbc,0xc9,0x3a,0xc9,0xb9,0xca,0x38,0xca,
0xb7,0xcb,0x36,0xcb,0xb6,0xcc,0x35,0xcc,0xb5,0xcd,0x35,0xcd,0xb5,0xce,0x36,0xce,
0xb6,0xcf,0x37,0xcf,0xb8,0xd0,0x39,0xd0,0xba,0xd1,0x3c,0xd1,0xbe,0xd2,0x3f,0xd2,
0xc1,0xd3,0x44,0xd3,0xc6,0xd4,0x49,0xd4,0xcb,0xd5,0x4e,0xd5,0xd1,0xd6,0x55,0xd6,
0xd8,0xd7,0x5c,0xd7,0xe0,0xd8,0x64,0xd8,0xe8,0xd9,0x6c,0xd9,0xf1,0xda,0x76,0xda,
0xfb,0xdb,0x80,0xdc,0x5,0xdc,0x8a,0xdd,0x10,0xdd,0x96,0xde,0x1c,0xde,0xa2,0xdf,
0x29,0xdf,0xaf,0xe0,0x36,0xe0,0xbd,0xe1,0x44,0xe1,0xcc,0xe2,0x53,0xe2,0xdb,0xe3,
0x63,0xe3,0xeb,0xe4,0x73,0xe4,0xfc,0xe5,0x84,0xe6,0xd,0xe6,0x96,0xe7,0x1f,0xe7,
0xa9,0xe8,0x32,0xe8,0xbc,0xe9,0x46,0xe9,0xd0,0xea,0x5b,0xea,0xe5,0xeb,0x70,0xeb,
0xfb,0xec,0x86,0xed,0x11,0xed,0x9c,0xee,0x28,0xee,0xb4,0xef,0x40,0xef,0xcc,0xf0,
0x58,0xf0,0xe5,0xf1,0x72,0xf1,0xff,0xf2,0x8c,0xf3,0x19,0xf3,0xa7,0xf4,0x34,0xf4,
0xc2,0xf5,0x50,0xf5,0xde,0xf6,0x6d,0xf6,0xfb,0xf7,0x8a,0xf8,0x19,0xf8,0xa8,0xf9,
0x38,0xf9,0xc7,0xfa,0x57,0xfa,0xe7,0xfb,0x77,0xfc,0x7,0xfc,0x98,0xfd,0x29,0xfd,
0xba,0xfe,0x4b,0xfe,0xdc,0xff,0x6d,0xff,0xff,0x70,0x61,0x72,0x61,0x0,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x66,0x66,0x0,0x0,0xf2,0xa7,0x0,0x0,0xd,
0x59,0x0,0x0,0x13,0xd0,0x0,0x0,0xa,0xe,0x76,0x63,0x67,0x74,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6e,0x64,0x69,0x6e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x36,0x0,0x0,0xa7,0x40,0x0,0x0,0x55,0x80,0x0,0x0,0x4c,
0xc0,0x0,0x0,0x9e,0xc0,0x0,0x0,0x25,0x80,0x0,0x0,0xc,0xc0,0x0,0x0,0x50,
0x0,0x0,0x0,0x54,0x40,0x0,0x2,0x33,0x33,0x0,0x2,0x33,0x33,0x0,0x2,0x33,
0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x66,0x33,0x32,0x0,0x0,0x0,
0x0,0x0,0x1,0xc,0x72,0x0,0x0,0x5,0xf8,0xff,0xff,0xf3,0x1d,0x0,0x0,0x7,
0xba,0x0,0x0,0xfd,0x72,0xff,0xff,0xfb,0x9d,0xff,0xff,0xfd,0xa4,0x0,0x0,0x3,
0xd9,0x0,0x0,0xc0,0x71,0x6d,0x6d,0x6f,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x6,
0x10,0x0,0x0,0xa0,0xf,0x0,0x0,0x0,0x0,0xc9,0xce,0x8c,0x80,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0x0,
0x80,0x45,0x78,0x69,0x66,0x0,0x0,0x4d,0x4d,0x0,0x2a,0x0,0x0,0x0,0x8,0x0,
0x5,0x1,0x12,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x1,0x1a,0x0,
0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x1,0x1b,0x0,0x5,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x52,0x1,0x28,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x2,0x0,
0x0,0x87,0x69,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,
0x1,0x0,0x2,0xa0,0x2,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa0,
0x3,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0xff,
0xdb,0x0,0x43,0x0,0x2,0x1,0x1,0x2,0x1,0x1,0x2,0x2,0x1,0x2,0x2,0x2,
0x2,0x2,0x3,0x5,0x3,0x3,0x3,0x3,0x3,0x6,0x4,0x4,0x3,0x5,0x7,0x6,
0x7,0x7,0x7,0x6,0x6,0x6,0x7,0x8,0xb,0x9,0x7,0x8,0xa,0x8,0x6,0x6,
0x9,0xd,0x9,0xa,0xb,0xb,0xc,0xc,0xc,0x7,0x9,0xd,0xe,0xd,0xc,0xe,
0xb,0xc,0xc,0xb,0xff,0xdb,0x0,0x43,0x1,0x2,0x2,0x2,0x3,0x2,0x3,0x5,
0x3,0x3,0x5,0xb,0x8,0x6,0x8,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xff,0xc0,0x0,0x11,0x8,0x0,0x42,
0x0,0x40,0x3,0x1,0x22,0x0,0x2,0x11,0x1,0x3,0x11,0x1,0xff,0xc4,0x0,0x1f,
0x0,0x0,0x1,0x5,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,
0xb5,0x10,0x0,0x2,0x1,0x3,0x3,0x2,0x4,0x3,0x5,0x5,0x4,0x4,0x0,0x0,
0x1,0x7d,0x1,0x2,0x3,0x0,0x4,0x11,0x5,0x12,0x21,0x31,0x41,0x6,0x13,0x51,
0x61,0x7,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x8,0x23,0x42,0xb1,0xc1,0x15,0x52,
0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x9,0xa,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,
0x27,0x28,0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,
0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,
0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,
0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,
0xf7,0xf8,0xf9,0xfa,0xff,0xc4,0x0,0x1f,0x1,0x0,0x3,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,
0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x11,0x0,0x2,0x1,0x2,0x4,0x4,
0x3,0x4,0x7,0x5,0x4,0x4,0x0,0x1,0x2,0x77,0x0,0x1,0x2,0x3,0x11,0x4,
0x5,0x21,0x31,0x6,0x12,0x41,0x51,0x7,0x61,0x71,0x13,0x22,0x32,0x81,0x8,0x14,
0x42,0x91,0xa1,0xb1,0xc1,0x9,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0xa,0x16,
0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,0x27,0x28,0x29,0x2a,0x35,0x36,
0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,
0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,
0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x92,0x93,0x94,
0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,
0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,
0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,
0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xff,0xda,0x0,0xc,
0x3,0x1,0x0,0x2,0x11,0x3,0x11,0x0,0x3f,0x0,0xfd,0xf9,0xf2,0xa3,0xfe,0xe2,
0xff,0x0,0xdf,0x35,0x9d,0xaf,0x78,0xab,0x45,0xf0,0xac,0x26,0x5f,0x13,0xea,0x3a,
0x66,0x9d,0x12,0xf2,0x5e,0xea,0xe2,0x38,0x54,0x7d,0x4b,0x11,0x5f,0xc6,0x17,0xc6,
0xf,0xf8,0x2c,0x77,0xed,0x31,0xf1,0x9e,0xf0,0x9f,0x1d,0x7c,0x71,0xf8,0xad,0x73,
0x1c,0x6e,0x7f,0x73,0xf,0x88,0xe5,0xb0,0x85,0xfa,0x8f,0x99,0x2c,0x96,0x10,0x47,
0x3d,0x3a,0x57,0x82,0xf8,0xdf,0xe2,0xef,0x88,0x7e,0x24,0xeb,0x43,0x51,0xf1,0xee,
0xa9,0x7b,0xad,0xdf,0x28,0x2a,0x27,0xd4,0xee,0xa6,0xd4,0x5c,0x3,0x8c,0xf3,0x74,
0xf2,0x7a,0xa,0x0,0xfe,0xd1,0xbe,0x29,0xff,0x0,0xc1,0x55,0xff,0x0,0x66,0x5f,
0x82,0x97,0xcd,0x6b,0xf1,0x47,0xe3,0x9f,0xc2,0x8d,0x22,0xed,0x6,0xe3,0x6f,0x27,
0x88,0xad,0x5e,0x7c,0x7f,0xd7,0x34,0x62,0xc7,0xf2,0xac,0xdf,0x89,0x7f,0xf0,0x56,
0x2f,0x81,0xdf,0xe,0xbf,0x62,0x7f,0xf8,0x68,0x4b,0x5f,0x10,0xdc,0xf8,0x97,0xe1,
0x73,0xea,0x3,0x4c,0x83,0x53,0xd0,0xf4,0xe9,0x2e,0x9e,0xee,0x73,0x74,0x6d,0x36,
0xc5,0x11,0xa,0xcc,0x3c,0xf5,0x29,0x9c,0x63,0x8c,0x8c,0x8a,0xfe,0x2d,0x2d,0x35,
0xcb,0xa8,0xaf,0x11,0xed,0x64,0x16,0xee,0xcc,0x1,0x36,0xf1,0xac,0x24,0xf3,0xfe,
0xc0,0x15,0xfb,0x7f,0x24,0x8d,0x2f,0xfc,0x19,0xa9,0xe1,0x36,0x99,0x99,0xd9,0xbc,
0x74,0x9,0x2c,0x72,0x4f,0xfc,0x55,0x53,0xf2,0x49,0xeb,0x40,0x1f,0x43,0xfc,0x46,
0xff,0x0,0x83,0xce,0xfe,0xb,0xe8,0xeb,0x74,0xbf,0xb,0x7e,0x12,0xfc,0x44,0xd6,
0xa4,0x89,0x99,0x62,0x7d,0x52,0xeb,0x4e,0xd2,0xa3,0x97,0x1d,0x1b,0x69,0x9a,0x49,
0x0,0x3e,0xe8,0xf,0xb5,0x7c,0xd3,0xf1,0x47,0xfe,0xf,0x52,0xf8,0x95,0xac,0x68,
0x93,0xaf,0xc2,0x4f,0x83,0xbf,0xd,0xfc,0x39,0x7c,0xea,0x7c,0xa6,0xd5,0x35,0x6b,
0xdd,0x5f,0xca,0x3d,0xb2,0x22,0x86,0x5,0x6f,0xc1,0xc7,0xd6,0xbf,0x10,0x23,0xff,
0x0,0x56,0xbf,0x4a,0x5a,0x0,0xfd,0x2e,0xf8,0xb7,0xff,0x0,0x7,0x5b,0xfe,0xd7,
0x3f,0x11,0xec,0x7c,0x9f,0xb,0xf8,0xd3,0xc3,0xfe,0xc,0xdc,0x41,0x66,0xd0,0xbc,
0x27,0x6b,0x13,0xe3,0x23,0x20,0x3d,0xd4,0x97,0x4,0x7a,0x67,0x1d,0xeb,0xe7,0xf,
0x8b,0x7f,0xf0,0x59,0x1f,0xda,0x5f,0xe3,0x8d,0xd4,0x4d,0xf1,0xb,0xe3,0x6f,0xc5,
0xb,0x98,0x95,0xf7,0x34,0x30,0xf8,0x86,0x4d,0x3e,0x19,0x7,0x42,0x19,0x2c,0x96,
0xc,0x8e,0x7a,0x67,0x15,0xf3,0x5,0x14,0x1,0x67,0x58,0x8c,0xc3,0xab,0xdd,0xa4,
0x83,0xc,0xb3,0xc8,0x8,0xf4,0xf9,0xcd,0x56,0xaf,0x77,0xf1,0x1f,0xfc,0x13,0xd3,
0xe3,0x66,0xa5,0xe2,0x1b,0xe9,0xf4,0xcf,0x84,0xdf,0x13,0xcc,0x33,0x5c,0xca,0xe8,
0xf,0x82,0xb5,0x90,0x76,0x99,0x18,0x8e,0x3e,0xc7,0xe8,0x45,0x54,0x1f,0xf0,0x4e,
0x1f,0x8e,0xcd,0xd3,0xe1,0x17,0xc5,0x3,0xff,0x0,0x72,0x56,0xb3,0xff,0x0,0xc8,
0x74,0x1,0xe2,0xd6,0xff,0x0,0xf1,0xf3,0x1f,0xfb,0xe3,0xf9,0xd7,0xee,0x41,0xff,
0x0,0x95,0x34,0xbc,0x23,0xff,0x0,0x63,0xc8,0xff,0x0,0xd4,0xaa,0x7a,0xfc,0xa4,
0xb7,0xff,0x0,0x82,0x6f,0xfc,0x78,0x13,0x23,0xf,0x83,0xff,0x0,0x15,0x18,0x6,
0x7,0xe5,0xf0,0x46,0xb2,0x7b,0xff,0x0,0xd7,0xa5,0x7e,0xc8,0x4d,0xfb,0x36,0xfc,
0x44,0x8f,0xfe,0xd,0x22,0xf0,0xc7,0x82,0x7,0x80,0x3c,0x73,0x27,0x8c,0xed,0xbc,
0x67,0xf6,0x99,0x34,0x4,0xf0,0xfd,0xe3,0x6a,0xcb,0x10,0xf1,0x2c,0xd3,0x79,0x9f,
0x62,0xf2,0xbc,0xfd,0xbe,0x51,0x12,0x67,0x67,0xdd,0x20,0xf4,0xa0,0xf,0xe7,0xfa,
0x3f,0xf5,0x6b,0xf4,0xa5,0xaf,0x6e,0x4f,0xf8,0x26,0x97,0xed,0xe,0x11,0x42,0xfc,
0x4,0xf8,0xe4,0xe7,0x1f,0xc3,0xe0,0x1d,0x4c,0xff,0x0,0x38,0x45,0x4b,0x1f,0xfc,
0x13,0x2b,0xf6,0x8a,0x90,0x80,0xbf,0x0,0x3e,0x3c,0x1c,0xfa,0x7c,0x3e,0xd4,0xff,
0x0,0xf8,0xd5,0x0,0x78,0x65,0x15,0xf4,0x4,0x1f,0xf0,0x4a,0xcf,0xda,0x46,0xe5,
0xd5,0x63,0xf8,0x3,0xf1,0xc8,0x16,0xe0,0x6e,0xf0,0x25,0xfa,0x8f,0xcc,0xa8,0xad,
0xab,0x3f,0xf8,0x23,0x87,0xed,0x3d,0x7a,0x1,0x8b,0xe0,0x2f,0xc6,0x21,0x9f,0xef,
0x78,0x52,0x65,0xff,0x0,0xd0,0x98,0x50,0x7,0xd4,0xba,0xbf,0xfc,0x1d,0x67,0xfb,
0x5f,0x68,0x3a,0xc5,0xd5,0xa4,0xfe,0x37,0xf0,0xdc,0xa6,0xd6,0x79,0x21,0xdc,0x3c,
0x1f,0x6b,0x86,0xda,0xec,0xb9,0xff,0x0,0x5b,0xfe,0xcd,0x36,0x2f,0xf8,0x3b,0x4b,
0xf6,0xb9,0x4f,0xbd,0xe2,0xdf,0xb,0xb7,0xd7,0xc1,0xd6,0xdf,0xfc,0x7e,0xbf,0x36,
0x3c,0x74,0xe1,0xfc,0x67,0xaa,0x94,0x39,0x6,0xf6,0x72,0xf,0xfd,0xb6,0x7a,0xc9,
0xa0,0xf,0xd4,0x7b,0x6f,0xf8,0x3b,0x6b,0xf6,0xb6,0x32,0xaa,0x9f,0x13,0xf8,0x44,
0xee,0x60,0x39,0xf0,0x6d,0xbf,0xff,0x0,0x24,0xd7,0xe9,0x72,0x7f,0xc1,0x66,0x7e,
0x35,0xc1,0xff,0x0,0x6,0xeb,0x78,0x6b,0xf6,0x9a,0x86,0xfb,0xc3,0x32,0xfc,0x4e,
0xd5,0x7c,0x51,0xfd,0x95,0x34,0xd3,0xe8,0xc0,0xd8,0x98,0xe,0xb7,0x35,0x88,0xff,
0x0,0x45,0x59,0x46,0x8,0x89,0x10,0xf0,0xff,0x0,0x78,0x1e,0x79,0xaf,0xe6,0x36,
0xd8,0xe2,0xe6,0x2f,0xf7,0xc7,0xf3,0xaf,0xdc,0x57,0x5f,0xf8,0xe3,0x4b,0xc1,0x43,
0xfb,0xbe,0x3a,0x3,0xff,0x0,0x2e,0x9b,0x8a,0x0,0xf1,0x55,0xff,0x0,0x83,0xc0,
0xff,0x0,0x6a,0x82,0x1,0xfb,0x4f,0xc3,0xc3,0xff,0x0,0x72,0x71,0xff,0x0,0xe5,
0x85,0x3b,0xfe,0x23,0x4,0xfd,0xa9,0xff,0x0,0xe7,0xbf,0xc3,0xbf,0xfc,0x23,0x9b,
0xff,0x0,0x96,0x15,0xf9,0x3d,0x1f,0xfa,0xb5,0xfa,0x52,0xd0,0x7,0xeb,0x0,0xff,
0x0,0x83,0xc1,0x7f,0x6a,0x71,0xd6,0x6f,0x87,0x47,0xfe,0xe4,0xe6,0xff,0x0,0xe5,
0x85,0x38,0x7f,0xc1,0xe1,0x1f,0xb5,0x30,0xeb,0x27,0xc3,0x83,0xff,0x0,0x72,0x73,
0xff,0x0,0xf2,0xc6,0xbf,0x27,0x68,0xa0,0xd,0x6f,0x10,0xe9,0x92,0x4f,0xae,0xdf,
0xc8,0x8f,0x6c,0xab,0xf6,0xa9,0x86,0x24,0xb8,0x8e,0x37,0x1f,0xbc,0x6e,0xa8,0xcc,
0x18,0x7e,0x22,0xaa,0x1d,0xa,0xf8,0x41,0xe6,0x8b,0x3b,0xa6,0x84,0x8c,0x89,0x12,
0x26,0x64,0x23,0xd4,0x30,0x18,0x3f,0x9d,0x7f,0x75,0xfe,0x3f,0xfd,0x9b,0x3e,0x1e,
0x7c,0x55,0xb2,0x92,0xdf,0xe2,0x6f,0x81,0x7c,0x1f,0xe2,0x18,0x66,0x18,0x74,0xd4,
0xb4,0x6b,0x7b,0x90,0xc3,0xdf,0x7a,0x1a,0xf9,0xcf,0xe2,0x77,0xfc,0x10,0x1b,0xf6,
0x3a,0xf8,0xaf,0xa6,0xcf,0x6d,0xe2,0xf,0x80,0x1e,0x1,0xb0,0x13,0xa9,0x56,0x93,
0x45,0xb5,0x6d,0x22,0x45,0xcf,0xf7,0x5e,0xd1,0xa3,0x2a,0x7d,0xc6,0x28,0x3,0xf8,
0xd3,0xb6,0x60,0x6e,0xa3,0x0,0x8c,0xef,0x1f,0xce,0xbf,0x72,0x1c,0x67,0xfe,0xc,
0xd3,0xf0,0x7f,0xb7,0x8e,0x87,0xfe,0xa5,0x33,0xd7,0xdc,0xff,0x0,0x15,0xff,0x0,
0xe0,0xd2,0x7f,0xd9,0x57,0xc7,0xfa,0x71,0x8b,0xc1,0xb2,0x7c,0x4d,0xf0,0x6c,0xc3,
0x94,0x93,0x4f,0xf1,0x3c,0xb7,0x62,0x3c,0x7f,0xb1,0x7a,0xb3,0x3,0xf4,0x35,0xdd,
0xfc,0x50,0xff,0x0,0x82,0x10,0x69,0xb7,0xff,0x0,0xf0,0x48,0x3b,0x6f,0xd9,0x43,
0xe0,0xef,0xc4,0x2b,0xed,0x3e,0xc7,0x4d,0xd7,0x17,0x5b,0xb4,0xd7,0xf5,0xbd,0x31,
0x2f,0x66,0x2c,0x35,0x36,0xd4,0x1a,0x39,0x61,0xb7,0x78,0x14,0x82,0xce,0xc8,0xa,
0x95,0xc0,0xc1,0xc5,0x0,0x7f,0x22,0x51,0xff,0x0,0xab,0x5f,0xa5,0x2d,0x7e,0xce,
0xfc,0x5f,0xff,0x0,0x83,0x30,0x7e,0x38,0xf8,0x78,0xc6,0xff,0x0,0x7,0x7c,0x79,
0xf0,0xb3,0xc4,0xd1,0x6,0xc3,0xa5,0xc4,0x97,0xfa,0x44,0xc5,0x70,0x70,0x57,0x7a,
0xdc,0x2e,0x73,0x8e,0xe,0x7,0x5e,0x6b,0xe7,0x2f,0x8b,0x1f,0xf0,0x6b,0xd7,0xed,
0x85,0xf0,0xce,0xf8,0x25,0x97,0xc2,0xb7,0xf1,0x25,0xae,0xd6,0x66,0xba,0xd0,0x7c,
0x43,0x61,0x7c,0x17,0x1d,0x7,0x97,0x2b,0xc0,0xe7,0x3e,0xc0,0xf4,0xa0,0xf,0xce,
0xfa,0x2b,0xe8,0x1f,0x89,0xff,0x0,0xf0,0x4b,0x2f,0xda,0x13,0xe0,0xf6,0xab,0x3d,
0xaf,0xc4,0x4f,0x83,0x7f,0x14,0xb4,0x91,0x6e,0xa1,0x9a,0x7b,0x8f,0xa,0x5e,0xc9,
0x6e,0x73,0x9e,0x93,0x5b,0x47,0x34,0x67,0xa7,0xf7,0xbd,0x2b,0xc5,0x6f,0xfc,0x1d,
0x7b,0xa1,0x6b,0xb2,0xd8,0x6b,0x8a,0x96,0x57,0x96,0x92,0x2a,0x4f,0x5,0xe1,0x36,
0x92,0xc4,0x78,0x3f,0x32,0x4c,0x11,0x87,0x7,0x3d,0x28,0x3,0xfb,0xb6,0xfb,0x74,
0xff,0x0,0xf3,0xda,0x5f,0xfb,0xec,0xd1,0xf6,0xe9,0xff,0x0,0xe7,0xb4,0xbf,0xf7,
0xd9,0xa2,0x8a,0x0,0x3e,0xdd,0x3f,0xfc,0xf6,0x97,0xfe,0xfb,0x34,0x7d,0xba,0x7f,
0xf9,0xed,0x2f,0xfd,0xf6,0x68,0xa2,0x80,0xf,0xb7,0x4f,0xff,0x0,0x3d,0xa5,0xff,
0x0,0xbe,0xcd,0x1f,0x6d,0x9b,0xfe,0x7a,0xcb,0xff,0x0,0x7d,0x1a,0x28,0xa0,0x6,
0xad,0xfc,0xfe,0x68,0xfd,0xf4,0xbf,0xf7,0xd9,0xac,0xff,0x0,0x1d,0xfc,0x2d,0xf0,
0xc7,0x8e,0xf4,0x19,0x87,0x8d,0xfc,0x39,0xa1,0x6b,0x21,0x90,0xe4,0x5f,0x58,0x45,
0x71,0x9f,0xfb,0xed,0x4d,0x14,0x50,0x7,0xff,0xd9,
// /home/erofeev/workspace.home/shlee5.3/chapter12/WidgetAndView/imgs/Android.jpg
0x0,0x0,0x18,0xe8,
0xff,
0xd8,0xff,0xe0,0x0,0x10,0x4a,0x46,0x49,0x46,0x0,0x1,0x1,0x1,0x0,0x90,0x0,
0x90,0x0,0x0,0xff,0xe2,0xf,0x38,0x49,0x43,0x43,0x5f,0x50,0x52,0x4f,0x46,0x49,
0x4c,0x45,0x0,0x1,0x1,0x0,0x0,0xf,0x28,0x61,0x70,0x70,0x6c,0x2,0x10,0x0,
0x0,0x6d,0x6e,0x74,0x72,0x52,0x47,0x42,0x20,0x58,0x59,0x5a,0x20,0x7,0xde,0x0,
0x3,0x0,0xb,0x0,0x7,0x0,0x20,0x0,0x1a,0x61,0x63,0x73,0x70,0x41,0x50,0x50,
0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xd6,0x0,0x1,0x0,
0x0,0x0,0x0,0xd3,0x2d,0x61,0x70,0x70,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x64,0x65,0x73,0x63,0x0,0x0,0x1,
0x50,0x0,0x0,0x0,0x62,0x64,0x73,0x63,0x6d,0x0,0x0,0x1,0xb4,0x0,0x0,0x4,
0xe,0x63,0x70,0x72,0x74,0x0,0x0,0x5,0xc4,0x0,0x0,0x0,0x23,0x77,0x74,0x70,
0x74,0x0,0x0,0x5,0xe8,0x0,0x0,0x0,0x14,0x72,0x58,0x59,0x5a,0x0,0x0,0x5,
0xfc,0x0,0x0,0x0,0x14,0x67,0x58,0x59,0x5a,0x0,0x0,0x6,0x10,0x0,0x0,0x0,
0x14,0x62,0x58,0x59,0x5a,0x0,0x0,0x6,0x24,0x0,0x0,0x0,0x14,0x72,0x54,0x52,
0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,0xc,0x61,0x61,0x72,0x67,0x0,0x0,0xe,
0x44,0x0,0x0,0x0,0x20,0x76,0x63,0x67,0x74,0x0,0x0,0xe,0x64,0x0,0x0,0x0,
0x30,0x6e,0x64,0x69,0x6e,0x0,0x0,0xe,0x94,0x0,0x0,0x0,0x3e,0x63,0x68,0x61,
0x64,0x0,0x0,0xe,0xd4,0x0,0x0,0x0,0x2c,0x6d,0x6d,0x6f,0x64,0x0,0x0,0xf,
0x0,0x0,0x0,0x0,0x28,0x62,0x54,0x52,0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,
0xc,0x67,0x54,0x52,0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,0xc,0x61,0x61,0x62,
0x67,0x0,0x0,0xe,0x44,0x0,0x0,0x0,0x20,0x61,0x61,0x67,0x67,0x0,0x0,0xe,
0x44,0x0,0x0,0x0,0x20,0x64,0x65,0x73,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x8,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x6c,0x75,0x63,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xc,0x68,0x72,0x48,0x52,0x0,0x0,0x0,
0x14,0x0,0x0,0x1,0x9c,0x6b,0x6f,0x4b,0x52,0x0,0x0,0x0,0xc,0x0,0x0,0x1,
0xb0,0x6e,0x62,0x4e,0x4f,0x0,0x0,0x0,0x12,0x0,0x0,0x1,0xbc,0x69,0x64,0x0,
0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x1,0xce,0x68,0x75,0x48,0x55,0x0,0x0,0x0,
0x14,0x0,0x0,0x1,0xe0,0x63,0x73,0x43,0x5a,0x0,0x0,0x0,0x16,0x0,0x0,0x1,
0xf4,0x64,0x61,0x44,0x4b,0x0,0x0,0x0,0x1c,0x0,0x0,0x2,0xa,0x75,0x6b,0x55,
0x41,0x0,0x0,0x0,0x1c,0x0,0x0,0x2,0x26,0x61,0x72,0x0,0x0,0x0,0x0,0x0,
0x14,0x0,0x0,0x2,0x42,0x69,0x74,0x49,0x54,0x0,0x0,0x0,0x14,0x0,0x0,0x2,
0x56,0x72,0x6f,0x52,0x4f,0x0,0x0,0x0,0x12,0x0,0x0,0x2,0x6a,0x6e,0x6c,0x4e,
0x4c,0x0,0x0,0x0,0x16,0x0,0x0,0x2,0x7c,0x68,0x65,0x49,0x4c,0x0,0x0,0x0,
0x16,0x0,0x0,0x2,0x92,0x65,0x73,0x45,0x53,0x0,0x0,0x0,0x12,0x0,0x0,0x2,
0x6a,0x66,0x69,0x46,0x49,0x0,0x0,0x0,0x10,0x0,0x0,0x2,0xa8,0x7a,0x68,0x54,
0x57,0x0,0x0,0x0,0xc,0x0,0x0,0x2,0xb8,0x76,0x69,0x56,0x4e,0x0,0x0,0x0,
0xe,0x0,0x0,0x2,0xc4,0x73,0x6b,0x53,0x4b,0x0,0x0,0x0,0x16,0x0,0x0,0x2,
0xd2,0x7a,0x68,0x43,0x4e,0x0,0x0,0x0,0xc,0x0,0x0,0x2,0xb8,0x72,0x75,0x52,
0x55,0x0,0x0,0x0,0x24,0x0,0x0,0x2,0xe8,0x66,0x72,0x46,0x52,0x0,0x0,0x0,
0x16,0x0,0x0,0x3,0xc,0x6d,0x73,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x3,
0x22,0x63,0x61,0x45,0x53,0x0,0x0,0x0,0x18,0x0,0x0,0x3,0x34,0x74,0x68,0x54,
0x48,0x0,0x0,0x0,0xc,0x0,0x0,0x3,0x4c,0x64,0x65,0x44,0x45,0x0,0x0,0x0,
0x10,0x0,0x0,0x3,0x58,0x65,0x6e,0x55,0x53,0x0,0x0,0x0,0x12,0x0,0x0,0x3,
0x68,0x70,0x74,0x42,0x52,0x0,0x0,0x0,0x18,0x0,0x0,0x3,0x7a,0x70,0x6c,0x50,
0x4c,0x0,0x0,0x0,0x12,0x0,0x0,0x3,0x92,0x65,0x6c,0x47,0x52,0x0,0x0,0x0,
0x22,0x0,0x0,0x3,0xa4,0x73,0x76,0x53,0x45,0x0,0x0,0x0,0x10,0x0,0x0,0x3,
0xc6,0x74,0x72,0x54,0x52,0x0,0x0,0x0,0x14,0x0,0x0,0x3,0xd6,0x6a,0x61,0x4a,
0x50,0x0,0x0,0x0,0xe,0x0,0x0,0x3,0xea,0x70,0x74,0x50,0x54,0x0,0x0,0x0,
0x16,0x0,0x0,0x3,0xf8,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x75,0x0,
0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x69,0xce,0xec,0xb7,0xec,0x0,0x20,0x0,
0x4c,0x0,0x43,0x0,0x44,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,
0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,
0x57,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x53,0x0,0x7a,0x0,0xed,0x0,
0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x42,0x0,
0x61,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x66,0x0,0x61,0x0,
0x72,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0xe6,0x0,0x72,0x0,0x6d,0x4,
0x1a,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,
0x38,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x20,0xf,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x6,0x45,0x6,0x44,0x6,0x48,0x6,0x46,0x6,0x29,0x0,
0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,
0x72,0x0,0x69,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,
0x65,0x0,0x6e,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x20,0xf,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x5,0xe6,0x5,0xd1,0x5,0xe2,0x5,0xd5,0x5,0xe0,0x5,
0xd9,0x0,0x56,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,
0x44,0x5f,0x69,0x82,0x72,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x0,0x4d,0x0,0xe0,0x0,0x75,0x0,0x46,0x0,0x61,0x0,
0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,
0x44,0x4,0x26,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,
0x20,0x4,0x16,0x4,0x1a,0x0,0x2d,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,
0x3b,0x4,0x35,0x4,0x39,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,
0x6f,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x57,0x0,0x61,0x0,
0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0xe,0x2a,0xe,
0x35,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,
0x44,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x4b,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x3,0x88,0x3,
0xb3,0x3,0xc7,0x3,0xc1,0x3,0xc9,0x3,0xbc,0x3,0xb7,0x0,0x20,0x3,0xbf,0x3,
0xb8,0x3,0xcc,0x3,0xbd,0x3,0xb7,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,
0x46,0x0,0xe4,0x0,0x72,0x0,0x67,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,
0x52,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x30,0xab,0x30,0xe9,0x30,0xfc,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,
0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,
0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x0,0x74,0x65,0x78,0x74,0x0,0x0,0x0,
0x0,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x41,0x70,0x70,0x6c,0x65,
0x20,0x49,0x6e,0x63,0x2e,0x2c,0x20,0x32,0x30,0x31,0x34,0x0,0x0,0x58,0x59,0x5a,
0x20,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x16,
0xca,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xc0,0x0,0x0,0x39,
0x8a,0x0,0x0,0x1,0x67,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x61,
0x23,0x0,0x0,0xb9,0xe6,0x0,0x0,0x13,0xf6,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,
0x0,0x0,0x0,0x23,0xf2,0x0,0x0,0xc,0x90,0x0,0x0,0xbd,0xd0,0x63,0x75,0x72,
0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x5,0x0,0xa,0x0,
0xf,0x0,0x14,0x0,0x19,0x0,0x1e,0x0,0x23,0x0,0x28,0x0,0x2d,0x0,0x32,0x0,
0x36,0x0,0x3b,0x0,0x40,0x0,0x45,0x0,0x4a,0x0,0x4f,0x0,0x54,0x0,0x59,0x0,
0x5e,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x72,0x0,0x77,0x0,0x7c,0x0,0x81,0x0,
0x86,0x0,0x8b,0x0,0x90,0x0,0x95,0x0,0x9a,0x0,0x9f,0x0,0xa3,0x0,0xa8,0x0,
0xad,0x0,0xb2,0x0,0xb7,0x0,0xbc,0x0,0xc1,0x0,0xc6,0x0,0xcb,0x0,0xd0,0x0,
0xd5,0x0,0xdb,0x0,0xe0,0x0,0xe5,0x0,0xeb,0x0,0xf0,0x0,0xf6,0x0,0xfb,0x1,
0x1,0x1,0x7,0x1,0xd,0x1,0x13,0x1,0x19,0x1,0x1f,0x1,0x25,0x1,0x2b,0x1,
0x32,0x1,0x38,0x1,0x3e,0x1,0x45,0x1,0x4c,0x1,0x52,0x1,0x59,0x1,0x60,0x1,
0x67,0x1,0x6e,0x1,0x75,0x1,0x7c,0x1,0x83,0x1,0x8b,0x1,0x92,0x1,0x9a,0x1,
0xa1,0x1,0xa9,0x1,0xb1,0x1,0xb9,0x1,0xc1,0x1,0xc9,0x1,0xd1,0x1,0xd9,0x1,
0xe1,0x1,0xe9,0x1,0xf2,0x1,0xfa,0x2,0x3,0x2,0xc,0x2,0x14,0x2,0x1d,0x2,
0x26,0x2,0x2f,0x2,0x38,0x2,0x41,0x2,0x4b,0x2,0x54,0x2,0x5d,0x2,0x67,0x2,
0x71,0x2,0x7a,0x2,0x84,0x2,0x8e,0x2,0x98,0x2,0xa2,0x2,0xac,0x2,0xb6,0x2,
0xc1,0x2,0xcb,0x2,0xd5,0x2,0xe0,0x2,0xeb,0x2,0xf5,0x3,0x0,0x3,0xb,0x3,
0x16,0x3,0x21,0x3,0x2d,0x3,0x38,0x3,0x43,0x3,0x4f,0x3,0x5a,0x3,0x66,0x3,
0x72,0x3,0x7e,0x3,0x8a,0x3,0x96,0x3,0xa2,0x3,0xae,0x3,0xba,0x3,0xc7,0x3,
0xd3,0x3,0xe0,0x3,0xec,0x3,0xf9,0x4,0x6,0x4,0x13,0x4,0x20,0x4,0x2d,0x4,
0x3b,0x4,0x48,0x4,0x55,0x4,0x63,0x4,0x71,0x4,0x7e,0x4,0x8c,0x4,0x9a,0x4,
0xa8,0x4,0xb6,0x4,0xc4,0x4,0xd3,0x4,0xe1,0x4,0xf0,0x4,0xfe,0x5,0xd,0x5,
0x1c,0x5,0x2b,0x5,0x3a,0x5,0x49,0x5,0x58,0x5,0x67,0x5,0x77,0x5,0x86,0x5,
0x96,0x5,0xa6,0x5,0xb5,0x5,0xc5,0x5,0xd5,0x5,0xe5,0x5,0xf6,0x6,0x6,0x6,
0x16,0x6,0x27,0x6,0x37,0x6,0x48,0x6,0x59,0x6,0x6a,0x6,0x7b,0x6,0x8c,0x6,
0x9d,0x6,0xaf,0x6,0xc0,0x6,0xd1,0x6,0xe3,0x6,0xf5,0x7,0x7,0x7,0x19,0x7,
0x2b,0x7,0x3d,0x7,0x4f,0x7,0x61,0x7,0x74,0x7,0x86,0x7,0x99,0x7,0xac,0x7,
0xbf,0x7,0xd2,0x7,0xe5,0x7,0xf8,0x8,0xb,0x8,0x1f,0x8,0x32,0x8,0x46,0x8,
0x5a,0x8,0x6e,0x8,0x82,0x8,0x96,0x8,0xaa,0x8,0xbe,0x8,0xd2,0x8,0xe7,0x8,
0xfb,0x9,0x10,0x9,0x25,0x9,0x3a,0x9,0x4f,0x9,0x64,0x9,0x79,0x9,0x8f,0x9,
0xa4,0x9,0xba,0x9,0xcf,0x9,0xe5,0x9,0xfb,0xa,0x11,0xa,0x27,0xa,0x3d,0xa,
0x54,0xa,0x6a,0xa,0x81,0xa,0x98,0xa,0xae,0xa,0xc5,0xa,0xdc,0xa,0xf3,0xb,
0xb,0xb,0x22,0xb,0x39,0xb,0x51,0xb,0x69,0xb,0x80,0xb,0x98,0xb,0xb0,0xb,
0xc8,0xb,0xe1,0xb,0xf9,0xc,0x12,0xc,0x2a,0xc,0x43,0xc,0x5c,0xc,0x75,0xc,
0x8e,0xc,0xa7,0xc,0xc0,0xc,0xd9,0xc,0xf3,0xd,0xd,0xd,0x26,0xd,0x40,0xd,
0x5a,0xd,0x74,0xd,0x8e,0xd,0xa9,0xd,0xc3,0xd,0xde,0xd,0xf8,0xe,0x13,0xe,
0x2e,0xe,0x49,0xe,0x64,0xe,0x7f,0xe,0x9b,0xe,0xb6,0xe,0xd2,0xe,0xee,0xf,
0x9,0xf,0x25,0xf,0x41,0xf,0x5e,0xf,0x7a,0xf,0x96,0xf,0xb3,0xf,0xcf,0xf,
0xec,0x10,0x9,0x10,0x26,0x10,0x43,0x10,0x61,0x10,0x7e,0x10,0x9b,0x10,0xb9,0x10,
0xd7,0x10,0xf5,0x11,0x13,0x11,0x31,0x11,0x4f,0x11,0x6d,0x11,0x8c,0x11,0xaa,0x11,
0xc9,0x11,0xe8,0x12,0x7,0x12,0x26,0x12,0x45,0x12,0x64,0x12,0x84,0x12,0xa3,0x12,
0xc3,0x12,0xe3,0x13,0x3,0x13,0x23,0x13,0x43,0x13,0x63,0x13,0x83,0x13,0xa4,0x13,
0xc5,0x13,0xe5,0x14,0x6,0x14,0x27,0x14,0x49,0x14,0x6a,0x14,0x8b,0x14,0xad,0x14,
0xce,0x14,0xf0,0x15,0x12,0x15,0x34,0x15,0x56,0x15,0x78,0x15,0x9b,0x15,0xbd,0x15,
0xe0,0x16,0x3,0x16,0x26,0x16,0x49,0x16,0x6c,0x16,0x8f,0x16,0xb2,0x16,0xd6,0x16,
0xfa,0x17,0x1d,0x17,0x41,0x17,0x65,0x17,0x89,0x17,0xae,0x17,0xd2,0x17,0xf7,0x18,
0x1b,0x18,0x40,0x18,0x65,0x18,0x8a,0x18,0xaf,0x18,0xd5,0x18,0xfa,0x19,0x20,0x19,
0x45,0x19,0x6b,0x19,0x91,0x19,0xb7,0x19,0xdd,0x1a,0x4,0x1a,0x2a,0x1a,0x51,0x1a,
0x77,0x1a,0x9e,0x1a,0xc5,0x1a,0xec,0x1b,0x14,0x1b,0x3b,0x1b,0x63,0x1b,0x8a,0x1b,
0xb2,0x1b,0xda,0x1c,0x2,0x1c,0x2a,0x1c,0x52,0x1c,0x7b,0x1c,0xa3,0x1c,0xcc,0x1c,
0xf5,0x1d,0x1e,0x1d,0x47,0x1d,0x70,0x1d,0x99,0x1d,0xc3,0x1d,0xec,0x1e,0x16,0x1e,
0x40,0x1e,0x6a,0x1e,0x94,0x1e,0xbe,0x1e,0xe9,0x1f,0x13,0x1f,0x3e,0x1f,0x69,0x1f,
0x94,0x1f,0xbf,0x1f,0xea,0x20,0x15,0x20,0x41,0x20,0x6c,0x20,0x98,0x20,0xc4,0x20,
0xf0,0x21,0x1c,0x21,0x48,0x21,0x75,0x21,0xa1,0x21,0xce,0x21,0xfb,0x22,0x27,0x22,
0x55,0x22,0x82,0x22,0xaf,0x22,0xdd,0x23,0xa,0x23,0x38,0x23,0x66,0x23,0x94,0x23,
0xc2,0x23,0xf0,0x24,0x1f,0x24,0x4d,0x24,0x7c,0x24,0xab,0x24,0xda,0x25,0x9,0x25,
0x38,0x25,0x68,0x25,0x97,0x25,0xc7,0x25,0xf7,0x26,0x27,0x26,0x57,0x26,0x87,0x26,
0xb7,0x26,0xe8,0x27,0x18,0x27,0x49,0x27,0x7a,0x27,0xab,0x27,0xdc,0x28,0xd,0x28,
0x3f,0x28,0x71,0x28,0xa2,0x28,0xd4,0x29,0x6,0x29,0x38,0x29,0x6b,0x29,0x9d,0x29,
0xd0,0x2a,0x2,0x2a,0x35,0x2a,0x68,0x2a,0x9b,0x2a,0xcf,0x2b,0x2,0x2b,0x36,0x2b,
0x69,0x2b,0x9d,0x2b,0xd1,0x2c,0x5,0x2c,0x39,0x2c,0x6e,0x2c,0xa2,0x2c,0xd7,0x2d,
0xc,0x2d,0x41,0x2d,0x76,0x2d,0xab,0x2d,0xe1,0x2e,0x16,0x2e,0x4c,0x2e,0x82,0x2e,
0xb7,0x2e,0xee,0x2f,0x24,0x2f,0x5a,0x2f,0x91,0x2f,0xc7,0x2f,0xfe,0x30,0x35,0x30,
0x6c,0x30,0xa4,0x30,0xdb,0x31,0x12,0x31,0x4a,0x31,0x82,0x31,0xba,0x31,0xf2,0x32,
0x2a,0x32,0x63,0x32,0x9b,0x32,0xd4,0x33,0xd,0x33,0x46,0x33,0x7f,0x33,0xb8,0x33,
0xf1,0x34,0x2b,0x34,0x65,0x34,0x9e,0x34,0xd8,0x35,0x13,0x35,0x4d,0x35,0x87,0x35,
0xc2,0x35,0xfd,0x36,0x37,0x36,0x72,0x36,0xae,0x36,0xe9,0x37,0x24,0x37,0x60,0x37,
0x9c,0x37,0xd7,0x38,0x14,0x38,0x50,0x38,0x8c,0x38,0xc8,0x39,0x5,0x39,0x42,0x39,
0x7f,0x39,0xbc,0x39,0xf9,0x3a,0x36,0x3a,0x74,0x3a,0xb2,0x3a,0xef,0x3b,0x2d,0x3b,
0x6b,0x3b,0xaa,0x3b,0xe8,0x3c,0x27,0x3c,0x65,0x3c,0xa4,0x3c,0xe3,0x3d,0x22,0x3d,
0x61,0x3d,0xa1,0x3d,0xe0,0x3e,0x20,0x3e,0x60,0x3e,0xa0,0x3e,0xe0,0x3f,0x21,0x3f,
0x61,0x3f,0xa2,0x3f,0xe2,0x40,0x23,0x40,0x64,0x40,0xa6,0x40,0xe7,0x41,0x29,0x41,
0x6a,0x41,0xac,0x41,0xee,0x42,0x30,0x42,0x72,0x42,0xb5,0x42,0xf7,0x43,0x3a,0x43,
0x7d,0x43,0xc0,0x44,0x3,0x44,0x47,0x44,0x8a,0x44,0xce,0x45,0x12,0x45,0x55,0x45,
0x9a,0x45,0xde,0x46,0x22,0x46,0x67,0x46,0xab,0x46,0xf0,0x47,0x35,0x47,0x7b,0x47,
0xc0,0x48,0x5,0x48,0x4b,0x48,0x91,0x48,0xd7,0x49,0x1d,0x49,0x63,0x49,0xa9,0x49,
0xf0,0x4a,0x37,0x4a,0x7d,0x4a,0xc4,0x4b,0xc,0x4b,0x53,0x4b,0x9a,0x4b,0xe2,0x4c,
0x2a,0x4c,0x72,0x4c,0xba,0x4d,0x2,0x4d,0x4a,0x4d,0x93,0x4d,0xdc,0x4e,0x25,0x4e,
0x6e,0x4e,0xb7,0x4f,0x0,0x4f,0x49,0x4f,0x93,0x4f,0xdd,0x50,0x27,0x50,0x71,0x50,
0xbb,0x51,0x6,0x51,0x50,0x51,0x9b,0x51,0xe6,0x52,0x31,0x52,0x7c,0x52,0xc7,0x53,
0x13,0x53,0x5f,0x53,0xaa,0x53,0xf6,0x54,0x42,0x54,0x8f,0x54,0xdb,0x55,0x28,0x55,
0x75,0x55,0xc2,0x56,0xf,0x56,0x5c,0x56,0xa9,0x56,0xf7,0x57,0x44,0x57,0x92,0x57,
0xe0,0x58,0x2f,0x58,0x7d,0x58,0xcb,0x59,0x1a,0x59,0x69,0x59,0xb8,0x5a,0x7,0x5a,
0x56,0x5a,0xa6,0x5a,0xf5,0x5b,0x45,0x5b,0x95,0x5b,0xe5,0x5c,0x35,0x5c,0x86,0x5c,
0xd6,0x5d,0x27,0x5d,0x78,0x5d,0xc9,0x5e,0x1a,0x5e,0x6c,0x5e,0xbd,0x5f,0xf,0x5f,
0x61,0x5f,0xb3,0x60,0x5,0x60,0x57,0x60,0xaa,0x60,0xfc,0x61,0x4f,0x61,0xa2,0x61,
0xf5,0x62,0x49,0x62,0x9c,0x62,0xf0,0x63,0x43,0x63,0x97,0x63,0xeb,0x64,0x40,0x64,
0x94,0x64,0xe9,0x65,0x3d,0x65,0x92,0x65,0xe7,0x66,0x3d,0x66,0x92,0x66,0xe8,0x67,
0x3d,0x67,0x93,0x67,0xe9,0x68,0x3f,0x68,0x96,0x68,0xec,0x69,0x43,0x69,0x9a,0x69,
0xf1,0x6a,0x48,0x6a,0x9f,0x6a,0xf7,0x6b,0x4f,0x6b,0xa7,0x6b,0xff,0x6c,0x57,0x6c,
0xaf,0x6d,0x8,0x6d,0x60,0x6d,0xb9,0x6e,0x12,0x6e,0x6b,0x6e,0xc4,0x6f,0x1e,0x6f,
0x78,0x6f,0xd1,0x70,0x2b,0x70,0x86,0x70,0xe0,0x71,0x3a,0x71,0x95,0x71,0xf0,0x72,
0x4b,0x72,0xa6,0x73,0x1,0x73,0x5d,0x73,0xb8,0x74,0x14,0x74,0x70,0x74,0xcc,0x75,
0x28,0x75,0x85,0x75,0xe1,0x76,0x3e,0x76,0x9b,0x76,0xf8,0x77,0x56,0x77,0xb3,0x78,
0x11,0x78,0x6e,0x78,0xcc,0x79,0x2a,0x79,0x89,0x79,0xe7,0x7a,0x46,0x7a,0xa5,0x7b,
0x4,0x7b,0x63,0x7b,0xc2,0x7c,0x21,0x7c,0x81,0x7c,0xe1,0x7d,0x41,0x7d,0xa1,0x7e,
0x1,0x7e,0x62,0x7e,0xc2,0x7f,0x23,0x7f,0x84,0x7f,0xe5,0x80,0x47,0x80,0xa8,0x81,
0xa,0x81,0x6b,0x81,0xcd,0x82,0x30,0x82,0x92,0x82,0xf4,0x83,0x57,0x83,0xba,0x84,
0x1d,0x84,0x80,0x84,0xe3,0x85,0x47,0x85,0xab,0x86,0xe,0x86,0x72,0x86,0xd7,0x87,
0x3b,0x87,0x9f,0x88,0x4,0x88,0x69,0x88,0xce,0x89,0x33,0x89,0x99,0x89,0xfe,0x8a,
0x64,0x8a,0xca,0x8b,0x30,0x8b,0x96,0x8b,0xfc,0x8c,0x63,0x8c,0xca,0x8d,0x31,0x8d,
0x98,0x8d,0xff,0x8e,0x66,0x8e,0xce,0x8f,0x36,0x8f,0x9e,0x90,0x6,0x90,0x6e,0x90,
0xd6,0x91,0x3f,0x91,0xa8,0x92,0x11,0x92,0x7a,0x92,0xe3,0x93,0x4d,0x93,0xb6,0x94,
0x20,0x94,0x8a,0x94,0xf4,0x95,0x5f,0x95,0xc9,0x96,0x34,0x96,0x9f,0x97,0xa,0x97,
0x75,0x97,0xe0,0x98,0x4c,0x98,0xb8,0x99,0x24,0x99,0x90,0x99,0xfc,0x9a,0x68,0x9a,
0xd5,0x9b,0x42,0x9b,0xaf,0x9c,0x1c,0x9c,0x89,0x9c,0xf7,0x9d,0x64,0x9d,0xd2,0x9e,
0x40,0x9e,0xae,0x9f,0x1d,0x9f,0x8b,0x9f,0xfa,0xa0,0x69,0xa0,0xd8,0xa1,0x47,0xa1,
0xb6,0xa2,0x26,0xa2,0x96,0xa3,0x6,0xa3,0x76,0xa3,0xe6,0xa4,0x56,0xa4,0xc7,0xa5,
0x38,0xa5,0xa9,0xa6,0x1a,0xa6,0x8b,0xa6,0xfd,0xa7,0x6e,0xa7,0xe0,0xa8,0x52,0xa8,
0xc4,0xa9,0x37,0xa9,0xa9,0xaa,0x1c,0xaa,0x8f,0xab,0x2,0xab,0x75,0xab,0xe9,0xac,
0x5c,0xac,0xd0,0xad,0x44,0xad,0xb8,0xae,0x2d,0xae,0xa1,0xaf,0x16,0xaf,0x8b,0xb0,
0x0,0xb0,0x75,0xb0,0xea,0xb1,0x60,0xb1,0xd6,0xb2,0x4b,0xb2,0xc2,0xb3,0x38,0xb3,
0xae,0xb4,0x25,0xb4,0x9c,0xb5,0x13,0xb5,0x8a,0xb6,0x1,0xb6,0x79,0xb6,0xf0,0xb7,
0x68,0xb7,0xe0,0xb8,0x59,0xb8,0xd1,0xb9,0x4a,0xb9,0xc2,0xba,0x3b,0xba,0xb5,0xbb,
0x2e,0xbb,0xa7,0xbc,0x21,0xbc,0x9b,0xbd,0x15,0xbd,0x8f,0xbe,0xa,0xbe,0x84,0xbe,
0xff,0xbf,0x7a,0xbf,0xf5,0xc0,0x70,0xc0,0xec,0xc1,0x67,0xc1,0xe3,0xc2,0x5f,0xc2,
0xdb,0xc3,0x58,0xc3,0xd4,0xc4,0x51,0xc4,0xce,0xc5,0x4b,0xc5,0xc8,0xc6,0x46,0xc6,
0xc3,0xc7,0x41,0xc7,0xbf,0xc8,0x3d,0xc8,0xbc,0xc9,0x3a,0xc9,0xb9,0xca,0x38,0xca,
0xb7,0xcb,0x36,0xcb,0xb6,0xcc,0x35,0xcc,0xb5,0xcd,0x35,0xcd,0xb5,0xce,0x36,0xce,
0xb6,0xcf,0x37,0xcf,0xb8,0xd0,0x39,0xd0,0xba,0xd1,0x3c,0xd1,0xbe,0xd2,0x3f,0xd2,
0xc1,0xd3,0x44,0xd3,0xc6,0xd4,0x49,0xd4,0xcb,0xd5,0x4e,0xd5,0xd1,0xd6,0x55,0xd6,
0xd8,0xd7,0x5c,0xd7,0xe0,0xd8,0x64,0xd8,0xe8,0xd9,0x6c,0xd9,0xf1,0xda,0x76,0xda,
0xfb,0xdb,0x80,0xdc,0x5,0xdc,0x8a,0xdd,0x10,0xdd,0x96,0xde,0x1c,0xde,0xa2,0xdf,
0x29,0xdf,0xaf,0xe0,0x36,0xe0,0xbd,0xe1,0x44,0xe1,0xcc,0xe2,0x53,0xe2,0xdb,0xe3,
0x63,0xe3,0xeb,0xe4,0x73,0xe4,0xfc,0xe5,0x84,0xe6,0xd,0xe6,0x96,0xe7,0x1f,0xe7,
0xa9,0xe8,0x32,0xe8,0xbc,0xe9,0x46,0xe9,0xd0,0xea,0x5b,0xea,0xe5,0xeb,0x70,0xeb,
0xfb,0xec,0x86,0xed,0x11,0xed,0x9c,0xee,0x28,0xee,0xb4,0xef,0x40,0xef,0xcc,0xf0,
0x58,0xf0,0xe5,0xf1,0x72,0xf1,0xff,0xf2,0x8c,0xf3,0x19,0xf3,0xa7,0xf4,0x34,0xf4,
0xc2,0xf5,0x50,0xf5,0xde,0xf6,0x6d,0xf6,0xfb,0xf7,0x8a,0xf8,0x19,0xf8,0xa8,0xf9,
0x38,0xf9,0xc7,0xfa,0x57,0xfa,0xe7,0xfb,0x77,0xfc,0x7,0xfc,0x98,0xfd,0x29,0xfd,
0xba,0xfe,0x4b,0xfe,0xdc,0xff,0x6d,0xff,0xff,0x70,0x61,0x72,0x61,0x0,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x66,0x66,0x0,0x0,0xf2,0xa7,0x0,0x0,0xd,
0x59,0x0,0x0,0x13,0xd0,0x0,0x0,0xa,0xe,0x76,0x63,0x67,0x74,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6e,0x64,0x69,0x6e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x36,0x0,0x0,0xa7,0x40,0x0,0x0,0x55,0x80,0x0,0x0,0x4c,
0xc0,0x0,0x0,0x9e,0xc0,0x0,0x0,0x25,0x80,0x0,0x0,0xc,0xc0,0x0,0x0,0x50,
0x0,0x0,0x0,0x54,0x40,0x0,0x2,0x33,0x33,0x0,0x2,0x33,0x33,0x0,0x2,0x33,
0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x66,0x33,0x32,0x0,0x0,0x0,
0x0,0x0,0x1,0xc,0x72,0x0,0x0,0x5,0xf8,0xff,0xff,0xf3,0x1d,0x0,0x0,0x7,
0xba,0x0,0x0,0xfd,0x72,0xff,0xff,0xfb,0x9d,0xff,0xff,0xfd,0xa4,0x0,0x0,0x3,
0xd9,0x0,0x0,0xc0,0x71,0x6d,0x6d,0x6f,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x6,
0x10,0x0,0x0,0xa0,0xf,0x0,0x0,0x0,0x0,0xc9,0xce,0x8c,0x80,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0x0,
0x80,0x45,0x78,0x69,0x66,0x0,0x0,0x4d,0x4d,0x0,0x2a,0x0,0x0,0x0,0x8,0x0,
0x5,0x1,0x12,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x1,0x1a,0x0,
0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x1,0x1b,0x0,0x5,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x52,0x1,0x28,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x2,0x0,
0x0,0x87,0x69,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,
0x1,0x0,0x2,0xa0,0x2,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa0,
0x3,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0xff,
0xdb,0x0,0x43,0x0,0x2,0x1,0x1,0x2,0x1,0x1,0x2,0x2,0x1,0x2,0x2,0x2,
0x2,0x2,0x3,0x5,0x3,0x3,0x3,0x3,0x3,0x6,0x4,0x4,0x3,0x5,0x7,0x6,
0x7,0x7,0x7,0x6,0x6,0x6,0x7,0x8,0xb,0x9,0x7,0x8,0xa,0x8,0x6,0x6,
0x9,0xd,0x9,0xa,0xb,0xb,0xc,0xc,0xc,0x7,0x9,0xd,0xe,0xd,0xc,0xe,
0xb,0xc,0xc,0xb,0xff,0xdb,0x0,0x43,0x1,0x2,0x2,0x2,0x3,0x2,0x3,0x5,
0x3,0x3,0x5,0xb,0x8,0x6,0x8,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xff,0xc0,0x0,0x11,0x8,0x0,0x45,
0x0,0x40,0x3,0x1,0x22,0x0,0x2,0x11,0x1,0x3,0x11,0x1,0xff,0xc4,0x0,0x1f,
0x0,0x0,0x1,0x5,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,
0xb5,0x10,0x0,0x2,0x1,0x3,0x3,0x2,0x4,0x3,0x5,0x5,0x4,0x4,0x0,0x0,
0x1,0x7d,0x1,0x2,0x3,0x0,0x4,0x11,0x5,0x12,0x21,0x31,0x41,0x6,0x13,0x51,
0x61,0x7,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x8,0x23,0x42,0xb1,0xc1,0x15,0x52,
0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x9,0xa,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,
0x27,0x28,0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,
0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,
0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,
0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,
0xf7,0xf8,0xf9,0xfa,0xff,0xc4,0x0,0x1f,0x1,0x0,0x3,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,
0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x11,0x0,0x2,0x1,0x2,0x4,0x4,
0x3,0x4,0x7,0x5,0x4,0x4,0x0,0x1,0x2,0x77,0x0,0x1,0x2,0x3,0x11,0x4,
0x5,0x21,0x31,0x6,0x12,0x41,0x51,0x7,0x61,0x71,0x13,0x22,0x32,0x81,0x8,0x14,
0x42,0x91,0xa1,0xb1,0xc1,0x9,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0xa,0x16,
0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,0x27,0x28,0x29,0x2a,0x35,0x36,
0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,
0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,
0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x92,0x93,0x94,
0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,
0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,
0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,
0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xff,0xda,0x0,0xc,
0x3,0x1,0x0,0x2,0x11,0x3,0x11,0x0,0x3f,0x0,0xfd,0xfc,0xa2,0x8a,0x6c,0x8f,
0xb1,0x73,0x49,0xbb,0x1,0xcd,0x7c,0x47,0xf1,0xcc,0xdf,0xf,0x21,0xb1,0xd4,0x2e,
0xed,0x84,0xba,0x39,0xb9,0x10,0xea,0x33,0x86,0x3b,0xac,0x63,0x61,0x85,0x9b,0x6e,
0x39,0x40,0xf8,0xc,0x7f,0x85,0x4e,0xee,0x80,0xd5,0xfd,0x5f,0xc7,0x9a,0x27,0x87,
0xd8,0xd,0x7b,0x57,0xd3,0x2c,0x89,0x19,0x2,0x7b,0xb4,0x8c,0x91,0xeb,0x82,0xd5,
0xf2,0xe7,0xc7,0xff,0x0,0xda,0x9f,0x52,0xf8,0xb7,0xf1,0x11,0x7e,0x1f,0xfc,0x1e,
0xbf,0xb5,0xd3,0x74,0xdb,0xeb,0xaf,0xec,0xdb,0x9d,0x4e,0x53,0xc5,0xcb,0x1c,0xab,
0xaa,0x9e,0x8b,0x1f,0x55,0xc8,0xe5,0x8f,0x3,0x3,0xaf,0xcf,0x1f,0x17,0x7e,0x1c,
0x4d,0xf0,0xc3,0xe2,0x2e,0xa3,0xa1,0x6b,0x57,0x56,0xba,0x9d,0xcd,0x83,0x22,0x9b,
0x98,0xbe,0x65,0x90,0x15,0x4,0x7d,0xec,0x90,0x40,0x38,0x2a,0x4f,0x15,0xf9,0x56,
0x75,0xe2,0x23,0xcb,0xaa,0x55,0x96,0xe,0x97,0xb5,0xa5,0x19,0x28,0xb9,0x37,0x68,
0xa9,0xda,0xed,0x2d,0xdb,0x56,0x57,0xbd,0x96,0xbb,0x36,0x99,0xc5,0x57,0x19,0xc8,
0xdf,0x2a,0xba,0x5a,0x7c,0xcf,0xd2,0xcb,0x2f,0x1a,0xe9,0x1a,0x9d,0x8c,0xb7,0x3a,
0x66,0xab,0xa7,0x5c,0xc1,0xa,0x19,0x24,0x92,0x2b,0x94,0x75,0x8d,0x40,0xc9,0x24,
0x83,0xc0,0xc7,0x39,0xaa,0x3f,0xd,0x3c,0x65,0x71,0xe3,0xfd,0x9,0xb5,0x59,0x6d,
0xd,0xa5,0x85,0xd4,0xcc,0xda,0x7e,0xf2,0x7c,0xcb,0x8b,0x61,0x80,0x93,0x3a,0x91,
0xf2,0xef,0xe5,0x82,0xff,0x0,0x74,0xae,0x79,0x24,0xf,0xce,0xef,0x81,0xbf,0x9,
0xae,0xbe,0x31,0x78,0xed,0x74,0x3d,0x3,0x51,0xb2,0xd2,0x26,0x9a,0xde,0x59,0x5a,
0x79,0x89,0xa,0x51,0x40,0xca,0xed,0x52,0x37,0x67,0x23,0x8c,0xf4,0xc9,0xed,0x5f,
0x45,0xfe,0xcb,0x7f,0xb5,0xfd,0xed,0xbf,0x8c,0x17,0xc0,0xff,0x0,0x18,0x2e,0xed,
0x6f,0x1d,0x27,0x7b,0x1b,0x1d,0x5a,0x36,0x18,0x92,0x44,0x62,0x82,0x39,0x8,0xe1,
0x83,0x6d,0xf9,0x1c,0x75,0xe0,0x1e,0xb9,0xad,0xb2,0x2e,0x3f,0x79,0xa5,0x5a,0x4f,
0x1b,0x4b,0xd8,0xd3,0x9b,0x71,0x8b,0xbf,0x34,0x65,0x35,0x6d,0x1b,0xb2,0x6a,0xcb,
0x6d,0x2c,0xdb,0xdf,0x41,0xd2,0xc5,0x73,0xb5,0xcc,0xac,0x9e,0xc7,0xd5,0x54,0x52,
0x29,0xcd,0x2d,0x7e,0xa1,0x7b,0x9d,0x84,0x57,0x97,0xd0,0xe9,0xf6,0xef,0x2d,0xfc,
0xd1,0x43,0x14,0x6b,0xb9,0xde,0x46,0xa,0xaa,0x3d,0x49,0x3c,0x1,0x5c,0xdf,0x8e,
0xb5,0xa8,0xfc,0x49,0xf0,0xc3,0x5a,0x97,0xc1,0x1a,0xb6,0x96,0xb2,0xcb,0x65,0x34,
0x70,0x5e,0xb5,0xc2,0x9b,0x78,0x5c,0xa9,0x1,0x9e,0x41,0x90,0x0,0xcf,0x27,0xb5,
0x78,0xff,0x0,0xfc,0x14,0x9b,0x51,0x9a,0xd7,0xe0,0xde,0x97,0x5,0xbc,0x8e,0x90,
0xde,0x6a,0xc8,0x93,0xa0,0x38,0x12,0xaa,0xc7,0x23,0x5,0x6f,0x51,0xb8,0x3,0x8f,
0x6a,0xf0,0x5f,0xd9,0xc2,0xfe,0x64,0xf8,0x39,0xf1,0x7e,0xc0,0x48,0xc2,0xcb,0xfe,
0x11,0xdf,0xb4,0x79,0x3f,0xf2,0xcf,0xcc,0xcb,0xae,0xed,0xbd,0x33,0x8e,0x3f,0x2f,
0x4a,0xfc,0xf3,0x3b,0xe3,0x35,0x81,0xcd,0x25,0x94,0x3a,0x57,0x4e,0x12,0x7c,0xd7,
0xb6,0xbc,0x92,0x97,0x6d,0x15,0x96,0xfd,0xce,0x5a,0x98,0x8b,0x54,0xf6,0x76,0xe8,
0x3d,0x3f,0x63,0x2b,0xd1,0x1a,0x8f,0xf8,0x4e,0xfe,0x1e,0x60,0x1,0xd7,0x54,0x39,
0xfe,0x54,0xef,0xf8,0x63,0x3b,0xe2,0x49,0x6f,0x1d,0xfc,0x3b,0x24,0xf5,0x27,0x53,
0x3c,0xfe,0x95,0xe3,0x6,0x34,0x7,0xee,0x27,0xe5,0x46,0xc4,0xfe,0xe2,0x7e,0x55,
0xf8,0x4a,0xc7,0x65,0x9f,0xf4,0x5,0xff,0x0,0x95,0x1f,0xf9,0x1e,0x4f,0x3c,0x3f,
0x93,0xf1,0x67,0xb4,0xf,0xd8,0xda,0xfd,0xe,0x57,0xc7,0x9f,0xf,0x14,0x8e,0x84,
0x6a,0xa4,0x11,0xf4,0xe2,0x92,0x3f,0xd8,0xef,0x53,0xb3,0x75,0x9a,0xcb,0xc7,0xbf,
0xe,0xa3,0x9a,0x22,0x1e,0x36,0x1a,0xa6,0x36,0x30,0x39,0x53,0xd3,0xb1,0x0,0xfe,
0x15,0xe3,0x1b,0x13,0xfb,0x89,0xf9,0x54,0x77,0xb0,0xa3,0xd9,0x4e,0x1a,0x38,0xc8,
0x31,0x30,0x39,0x50,0x7b,0x1a,0x52,0xcc,0x72,0xca,0x69,0xc9,0x60,0xb5,0x5f,0xf4,
0xf5,0xff,0x0,0x90,0x73,0x53,0xfe,0x4f,0xc5,0x9f,0xa9,0xf6,0xde,0x28,0xb4,0xd0,
0xfc,0x39,0x61,0x71,0xe2,0xdd,0x4b,0x4e,0xb7,0x32,0xc3,0x18,0x69,0xde,0x75,0x48,
0x65,0x72,0xa3,0x25,0x19,0x88,0xc8,0x27,0x91,0xed,0x5a,0xf0,0x5c,0x25,0xd4,0x2b,
0x25,0xb3,0xa4,0x91,0xb8,0xc,0xac,0xa7,0x21,0x87,0xa8,0x23,0xad,0x7c,0xb,0xfb,
0x69,0xea,0x32,0xde,0xeb,0x3e,0x9,0xb4,0xb9,0x62,0xf6,0xd6,0xbe,0x18,0xb4,0x92,
0x28,0x98,0xfc,0x88,0xce,0x3e,0x66,0x3,0xa6,0x4e,0xd5,0xe7,0xda,0xbe,0x8f,0xff,
0x0,0x82,0x7d,0xea,0x77,0x1a,0x97,0xec,0xe9,0x68,0x2f,0xe6,0x92,0x61,0x6b,0x7d,
0x73,0x6f,0x16,0xf6,0xce,0xc8,0xd5,0xfe,0x55,0x1e,0xc3,0x27,0x2,0xbf,0xa0,0x32,
0x7e,0x2f,0x79,0x86,0x71,0x57,0x28,0x74,0xac,0xa1,0x1b,0xa9,0x5e,0xf7,0xb2,0x8d,
0xee,0xad,0xfd,0xe3,0xd8,0x85,0x75,0x3a,0x8e,0x9d,0xb6,0x39,0xef,0xf8,0x29,0x70,
0xcf,0xc2,0x5d,0xb,0xfe,0xc3,0xb,0xff,0x0,0xa2,0x64,0xaf,0x6,0xfd,0x9c,0xff,
0x0,0xe4,0x98,0xfc,0x60,0x1e,0xbe,0x17,0xff,0x0,0xd9,0x9e,0xbe,0xa5,0xfd,0xb5,
0xbe,0xd,0xea,0xff,0x0,0x19,0xfe,0x17,0x5b,0xda,0xf8,0x21,0x12,0x7d,0x43,0x4d,
0xbd,0x5b,0xc5,0xb7,0x67,0x8,0x6e,0x17,0x63,0x23,0x2a,0x93,0xc0,0x6f,0x9b,0x20,
0x12,0x33,0x8c,0x57,0x89,0xfc,0x34,0xfd,0x9e,0xfc,0x47,0xf0,0xa7,0xf6,0x7e,0xf8,
0xa3,0xab,0xfc,0x43,0xb5,0xfe,0xcd,0x93,0x52,0xd0,0xde,0xda,0xb,0x57,0x75,0x69,
0x36,0xae,0xe6,0x2e,0xfb,0x49,0x3,0x92,0x0,0x19,0xec,0x4d,0x7c,0x67,0x15,0x65,
0x58,0xba,0x9c,0x49,0x3c,0x54,0x69,0x49,0xd2,0xf6,0x53,0x6e,0x56,0xd3,0xf8,0x52,
0x5b,0xed,0xbe,0x96,0xdc,0xe7,0xab,0x9,0x7b,0x7e,0x6b,0x69,0x63,0xe6,0xb6,0x39,
0x63,0x49,0x41,0xea,0x68,0xaf,0xc5,0x5e,0xe7,0x96,0x82,0xa3,0xbb,0xe6,0xce,0x6f,
0xfa,0xe6,0xdf,0xc8,0xd4,0x95,0x1d,0xdf,0xfc,0x7a,0x4d,0xff,0x0,0x5c,0xdb,0xf9,
0x1a,0xce,0xaf,0xc1,0x2f,0x40,0x67,0xb2,0xfe,0xd9,0x3,0x1e,0x2b,0xf0,0x87,0xfd,
0x8a,0xb6,0x3f,0xc8,0xd7,0xd1,0xdf,0xf0,0x4e,0xdf,0xf9,0x37,0x65,0xf7,0xd5,0x2e,
0xff,0x0,0xf4,0x31,0x5e,0x65,0xfb,0x4b,0x7e,0xcd,0x9e,0x28,0xf8,0x95,0xa6,0x78,
0x33,0x5e,0xf8,0x79,0x65,0xfd,0xab,0x18,0xd0,0x6d,0x6c,0xee,0x2d,0xe3,0x91,0x56,
0x58,0x4a,0xa0,0x65,0x60,0x18,0x80,0x54,0x86,0xc1,0xe7,0x23,0x15,0xee,0x9f,0xb2,
0x37,0xc2,0xad,0x47,0xe0,0xe7,0xc1,0x9b,0x4d,0x23,0xc5,0xa6,0x31,0xa8,0xbc,0xf3,
0x5d,0xcd,0x1c,0x6d,0xbd,0x61,0x32,0x36,0x42,0x6e,0xee,0x40,0xc6,0x71,0xc6,0x7a,
0x57,0xef,0x9c,0x35,0x95,0xe2,0xe8,0xf1,0x5e,0x23,0x15,0x52,0x93,0x54,0xdc,0x1d,
0xa5,0x6d,0x1d,0xf9,0x2d,0x67,0xd7,0x66,0x7a,0xb4,0x69,0xc9,0x56,0x94,0x9a,0xd0,
0xf4,0xd2,0xb9,0x39,0xae,0x67,0xe3,0x27,0x83,0x66,0xf8,0x83,0xf0,0xb3,0xc4,0x1a,
0x1e,0x9b,0x22,0x45,0x71,0xaa,0xd8,0xcb,0x6d,0x13,0xbf,0xdd,0x56,0x65,0xc0,0x27,
0xdb,0x35,0xd3,0xd2,0x15,0xc9,0xaf,0xd6,0x31,0x38,0x78,0x62,0xe9,0x4e,0x8d,0x45,
0xee,0xc9,0x34,0xfd,0x1a,0xb3,0x3b,0x9a,0xba,0x68,0xfc,0xd2,0xf8,0x95,0xfb,0x3c,
0x78,0xc3,0xe1,0x26,0x92,0x97,0xff,0x0,0x10,0x74,0x8f,0xb0,0x5a,0x4b,0x30,0x81,
0x25,0xfb,0x44,0x72,0xab,0x39,0x4,0x80,0x36,0x92,0x79,0xa,0x79,0xc0,0xac,0xbf,
0x87,0x1f,0xa,0x35,0xff,0x0,0x8b,0x7a,0x95,0xc5,0x9f,0xc3,0xdd,0x3d,0xb5,0x1b,
0x9b,0x48,0x84,0xd2,0xa0,0x95,0x23,0x28,0x85,0xb6,0x83,0xf3,0x91,0x9e,0x6b,0xeb,
0xbf,0xf8,0x29,0x22,0xe3,0xe0,0x96,0x98,0x7b,0xd,0x66,0x2c,0x9f,0x4f,0xdd,0xc9,
0x5e,0x67,0xff,0x0,0x4,0xd0,0xe7,0xe2,0x7f,0x89,0xf,0x50,0x34,0xa8,0xfd,0xf1,
0xfb,0xef,0xfe,0xb5,0x7f,0x3a,0x63,0x78,0x47,0x9,0x87,0xe2,0x5a,0x59,0x3c,0x65,
0x2f,0x67,0x3b,0x3b,0xe9,0xcd,0xac,0x5b,0xed,0x6d,0xd7,0x63,0xc9,0x96,0x16,0x2a,
0xb2,0xa6,0x9e,0x87,0x85,0x7c,0x40,0xf8,0x6f,0xad,0x7c,0x2d,0xd7,0x86,0x99,0xe3,
0xcb,0x13,0xa7,0xdf,0x18,0x96,0x71,0x11,0x95,0x24,0x3b,0x18,0x90,0xe,0x54,0x91,
0xce,0xd,0x74,0x1f,0xf,0xbf,0x66,0x1f,0x1a,0xfc,0x5b,0xd0,0x62,0xd4,0x3c,0x13,
0xa4,0x2d,0xc6,0x9b,0x76,0xef,0x2,0xdd,0x3d,0xcc,0x71,0xa2,0x30,0x3b,0x58,0xb0,
0x27,0x76,0x1,0xcf,0x6e,0xdc,0x57,0x75,0xff,0x0,0x5,0x11,0x42,0x7f,0x68,0x4,
0x20,0x1c,0x1d,0x22,0xdc,0x8e,0x3a,0xfc,0xf2,0x57,0xd0,0x1f,0xf0,0x4f,0xc8,0x8a,
0x7e,0xcd,0x9a,0x6e,0xf0,0x54,0x35,0xed,0xe3,0x2f,0xb8,0xf3,0x9b,0x9a,0x59,0x4f,
0x8,0x61,0x31,0xfc,0x45,0x88,0xca,0x2a,0xb9,0x7b,0x28,0x29,0x34,0xf4,0xbb,0xe5,
0x70,0x5a,0xbb,0x5b,0x5e,0x67,0xd3,0xa0,0x53,0xc3,0xc6,0x55,0x65,0x7,0xb2,0x3d,
0x6f,0xc2,0x1a,0x33,0x78,0x7b,0xc2,0xba,0x66,0x9f,0x3b,0x9,0x1e,0xc6,0xd2,0x2b,
0x76,0x60,0x30,0x1c,0xa2,0x5,0xcf,0xe9,0x5a,0x41,0x70,0x68,0x3,0x14,0xb5,0xfd,
0x21,0x4e,0xa,0x9c,0x54,0x57,0x4d,0xf,0x59,0x2b,0x5,0x14,0x51,0x56,0x33,0x13,
0xc7,0xff,0x0,0xf,0xb4,0x8f,0x89,0xbe,0x17,0xb8,0xd2,0x3c,0x6d,0x66,0x97,0xb6,
0x17,0x18,0x2f,0x19,0x62,0xa4,0x10,0x72,0x19,0x58,0x72,0xa4,0x1e,0x84,0x56,0x3f,
0xc2,0x2f,0x81,0x1e,0x18,0xf8,0x2d,0x63,0x73,0x17,0xc3,0xed,0x3c,0xdb,0x1b,0xd6,
0xd,0x3c,0xb2,0x4a,0xd2,0xcb,0x2e,0x3a,0x2,0xec,0x73,0x81,0xd8,0x74,0xa2,0x8a,
0xe4,0x96,0x3,0xd,0x3a,0xeb,0x15,0x2a,0x71,0x75,0x12,0xb2,0x95,0x97,0x32,0x5d,
0x93,0xdc,0x9e,0x55,0x7e,0x6b,0x6a,0x41,0xf1,0x77,0xf6,0x76,0xf0,0x9f,0xc6,0xd9,
0xec,0xe4,0xf8,0x83,0xa7,0x3d,0xc5,0xc5,0x98,0x2b,0xc,0xf1,0x4c,0xd0,0xca,0xaa,
0x4e,0x4a,0xee,0x52,0x32,0xa4,0xf3,0x83,0x5d,0x47,0x84,0x7c,0x23,0xa7,0x78,0x17,
0xc3,0xb6,0x9a,0x4f,0x85,0x2d,0x63,0xb3,0xd3,0xec,0x53,0xcb,0x86,0x14,0xe8,0x83,
0xfa,0x9c,0x92,0x49,0x3d,0x49,0xa2,0x8a,0x54,0xf0,0x18,0x6a,0x55,0xe7,0x89,0x85,
0x28,0xaa,0x92,0xde,0x49,0x2b,0xbb,0x77,0x7b,0xb0,0x50,0x8a,0x77,0x4b,0x53,0x4a,
0x8a,0x28,0xae,0xc2,0x8f,0xff,0xd9,
// /home/erofeev/workspace.home/shlee5.3/chapter12/WidgetAndView/imgs/MacOSX.jpg
0x0,0x0,0x1b,0xc9,
0xff,
0xd8,0xff,0xe0,0x0,0x10,0x4a,0x46,0x49,0x46,0x0,0x1,0x1,0x1,0x0,0x90,0x0,
0x90,0x0,0x0,0xff,0xe2,0xf,0x38,0x49,0x43,0x43,0x5f,0x50,0x52,0x4f,0x46,0x49,
0x4c,0x45,0x0,0x1,0x1,0x0,0x0,0xf,0x28,0x61,0x70,0x70,0x6c,0x2,0x10,0x0,
0x0,0x6d,0x6e,0x74,0x72,0x52,0x47,0x42,0x20,0x58,0x59,0x5a,0x20,0x7,0xde,0x0,
0x3,0x0,0xb,0x0,0x7,0x0,0x20,0x0,0x1a,0x61,0x63,0x73,0x70,0x41,0x50,0x50,
0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xd6,0x0,0x1,0x0,
0x0,0x0,0x0,0xd3,0x2d,0x61,0x70,0x70,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x64,0x65,0x73,0x63,0x0,0x0,0x1,
0x50,0x0,0x0,0x0,0x62,0x64,0x73,0x63,0x6d,0x0,0x0,0x1,0xb4,0x0,0x0,0x4,
0xe,0x63,0x70,0x72,0x74,0x0,0x0,0x5,0xc4,0x0,0x0,0x0,0x23,0x77,0x74,0x70,
0x74,0x0,0x0,0x5,0xe8,0x0,0x0,0x0,0x14,0x72,0x58,0x59,0x5a,0x0,0x0,0x5,
0xfc,0x0,0x0,0x0,0x14,0x67,0x58,0x59,0x5a,0x0,0x0,0x6,0x10,0x0,0x0,0x0,
0x14,0x62,0x58,0x59,0x5a,0x0,0x0,0x6,0x24,0x0,0x0,0x0,0x14,0x72,0x54,0x52,
0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,0xc,0x61,0x61,0x72,0x67,0x0,0x0,0xe,
0x44,0x0,0x0,0x0,0x20,0x76,0x63,0x67,0x74,0x0,0x0,0xe,0x64,0x0,0x0,0x0,
0x30,0x6e,0x64,0x69,0x6e,0x0,0x0,0xe,0x94,0x0,0x0,0x0,0x3e,0x63,0x68,0x61,
0x64,0x0,0x0,0xe,0xd4,0x0,0x0,0x0,0x2c,0x6d,0x6d,0x6f,0x64,0x0,0x0,0xf,
0x0,0x0,0x0,0x0,0x28,0x62,0x54,0x52,0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,
0xc,0x67,0x54,0x52,0x43,0x0,0x0,0x6,0x38,0x0,0x0,0x8,0xc,0x61,0x61,0x62,
0x67,0x0,0x0,0xe,0x44,0x0,0x0,0x0,0x20,0x61,0x61,0x67,0x67,0x0,0x0,0xe,
0x44,0x0,0x0,0x0,0x20,0x64,0x65,0x73,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x8,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x6c,0x75,0x63,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xc,0x68,0x72,0x48,0x52,0x0,0x0,0x0,
0x14,0x0,0x0,0x1,0x9c,0x6b,0x6f,0x4b,0x52,0x0,0x0,0x0,0xc,0x0,0x0,0x1,
0xb0,0x6e,0x62,0x4e,0x4f,0x0,0x0,0x0,0x12,0x0,0x0,0x1,0xbc,0x69,0x64,0x0,
0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x1,0xce,0x68,0x75,0x48,0x55,0x0,0x0,0x0,
0x14,0x0,0x0,0x1,0xe0,0x63,0x73,0x43,0x5a,0x0,0x0,0x0,0x16,0x0,0x0,0x1,
0xf4,0x64,0x61,0x44,0x4b,0x0,0x0,0x0,0x1c,0x0,0x0,0x2,0xa,0x75,0x6b,0x55,
0x41,0x0,0x0,0x0,0x1c,0x0,0x0,0x2,0x26,0x61,0x72,0x0,0x0,0x0,0x0,0x0,
0x14,0x0,0x0,0x2,0x42,0x69,0x74,0x49,0x54,0x0,0x0,0x0,0x14,0x0,0x0,0x2,
0x56,0x72,0x6f,0x52,0x4f,0x0,0x0,0x0,0x12,0x0,0x0,0x2,0x6a,0x6e,0x6c,0x4e,
0x4c,0x0,0x0,0x0,0x16,0x0,0x0,0x2,0x7c,0x68,0x65,0x49,0x4c,0x0,0x0,0x0,
0x16,0x0,0x0,0x2,0x92,0x65,0x73,0x45,0x53,0x0,0x0,0x0,0x12,0x0,0x0,0x2,
0x6a,0x66,0x69,0x46,0x49,0x0,0x0,0x0,0x10,0x0,0x0,0x2,0xa8,0x7a,0x68,0x54,
0x57,0x0,0x0,0x0,0xc,0x0,0x0,0x2,0xb8,0x76,0x69,0x56,0x4e,0x0,0x0,0x0,
0xe,0x0,0x0,0x2,0xc4,0x73,0x6b,0x53,0x4b,0x0,0x0,0x0,0x16,0x0,0x0,0x2,
0xd2,0x7a,0x68,0x43,0x4e,0x0,0x0,0x0,0xc,0x0,0x0,0x2,0xb8,0x72,0x75,0x52,
0x55,0x0,0x0,0x0,0x24,0x0,0x0,0x2,0xe8,0x66,0x72,0x46,0x52,0x0,0x0,0x0,
0x16,0x0,0x0,0x3,0xc,0x6d,0x73,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x3,
0x22,0x63,0x61,0x45,0x53,0x0,0x0,0x0,0x18,0x0,0x0,0x3,0x34,0x74,0x68,0x54,
0x48,0x0,0x0,0x0,0xc,0x0,0x0,0x3,0x4c,0x64,0x65,0x44,0x45,0x0,0x0,0x0,
0x10,0x0,0x0,0x3,0x58,0x65,0x6e,0x55,0x53,0x0,0x0,0x0,0x12,0x0,0x0,0x3,
0x68,0x70,0x74,0x42,0x52,0x0,0x0,0x0,0x18,0x0,0x0,0x3,0x7a,0x70,0x6c,0x50,
0x4c,0x0,0x0,0x0,0x12,0x0,0x0,0x3,0x92,0x65,0x6c,0x47,0x52,0x0,0x0,0x0,
0x22,0x0,0x0,0x3,0xa4,0x73,0x76,0x53,0x45,0x0,0x0,0x0,0x10,0x0,0x0,0x3,
0xc6,0x74,0x72,0x54,0x52,0x0,0x0,0x0,0x14,0x0,0x0,0x3,0xd6,0x6a,0x61,0x4a,
0x50,0x0,0x0,0x0,0xe,0x0,0x0,0x3,0xea,0x70,0x74,0x50,0x54,0x0,0x0,0x0,
0x16,0x0,0x0,0x3,0xf8,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x75,0x0,
0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x69,0xce,0xec,0xb7,0xec,0x0,0x20,0x0,
0x4c,0x0,0x43,0x0,0x44,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,
0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,
0x57,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x53,0x0,0x7a,0x0,0xed,0x0,
0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x42,0x0,
0x61,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x66,0x0,0x61,0x0,
0x72,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0xe6,0x0,0x72,0x0,0x6d,0x4,
0x1a,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,
0x38,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x20,0xf,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x6,0x45,0x6,0x44,0x6,0x48,0x6,0x46,0x6,0x29,0x0,
0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,
0x72,0x0,0x69,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,
0x65,0x0,0x6e,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x20,0xf,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x5,0xe6,0x5,0xd1,0x5,0xe2,0x5,0xd5,0x5,0xe0,0x5,
0xd9,0x0,0x56,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,
0x44,0x5f,0x69,0x82,0x72,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x0,0x4d,0x0,0xe0,0x0,0x75,0x0,0x46,0x0,0x61,0x0,
0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,
0x44,0x4,0x26,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,
0x20,0x4,0x16,0x4,0x1a,0x0,0x2d,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,
0x3b,0x4,0x35,0x4,0x39,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x63,0x0,
0x6f,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x57,0x0,0x61,0x0,
0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0xe,0x2a,0xe,
0x35,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,
0x44,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x4b,0x0,0x6f,0x0,
0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x3,0x88,0x3,
0xb3,0x3,0xc7,0x3,0xc1,0x3,0xc9,0x3,0xbc,0x3,0xb7,0x0,0x20,0x3,0xbf,0x3,
0xb8,0x3,0xcc,0x3,0xbd,0x3,0xb7,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,
0x46,0x0,0xe4,0x0,0x72,0x0,0x67,0x0,0x2d,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,
0x52,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x4c,0x0,
0x43,0x0,0x44,0x30,0xab,0x30,0xe9,0x30,0xfc,0x0,0x20,0x0,0x4c,0x0,0x43,0x0,
0x44,0x0,0x4c,0x0,0x43,0x0,0x44,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,
0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x0,0x74,0x65,0x78,0x74,0x0,0x0,0x0,
0x0,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x41,0x70,0x70,0x6c,0x65,
0x20,0x49,0x6e,0x63,0x2e,0x2c,0x20,0x32,0x30,0x31,0x34,0x0,0x0,0x58,0x59,0x5a,
0x20,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x16,
0xca,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xc0,0x0,0x0,0x39,
0x8a,0x0,0x0,0x1,0x67,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x61,
0x23,0x0,0x0,0xb9,0xe6,0x0,0x0,0x13,0xf6,0x58,0x59,0x5a,0x20,0x0,0x0,0x0,
0x0,0x0,0x0,0x23,0xf2,0x0,0x0,0xc,0x90,0x0,0x0,0xbd,0xd0,0x63,0x75,0x72,
0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x5,0x0,0xa,0x0,
0xf,0x0,0x14,0x0,0x19,0x0,0x1e,0x0,0x23,0x0,0x28,0x0,0x2d,0x0,0x32,0x0,
0x36,0x0,0x3b,0x0,0x40,0x0,0x45,0x0,0x4a,0x0,0x4f,0x0,0x54,0x0,0x59,0x0,
0x5e,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x72,0x0,0x77,0x0,0x7c,0x0,0x81,0x0,
0x86,0x0,0x8b,0x0,0x90,0x0,0x95,0x0,0x9a,0x0,0x9f,0x0,0xa3,0x0,0xa8,0x0,
0xad,0x0,0xb2,0x0,0xb7,0x0,0xbc,0x0,0xc1,0x0,0xc6,0x0,0xcb,0x0,0xd0,0x0,
0xd5,0x0,0xdb,0x0,0xe0,0x0,0xe5,0x0,0xeb,0x0,0xf0,0x0,0xf6,0x0,0xfb,0x1,
0x1,0x1,0x7,0x1,0xd,0x1,0x13,0x1,0x19,0x1,0x1f,0x1,0x25,0x1,0x2b,0x1,
0x32,0x1,0x38,0x1,0x3e,0x1,0x45,0x1,0x4c,0x1,0x52,0x1,0x59,0x1,0x60,0x1,
0x67,0x1,0x6e,0x1,0x75,0x1,0x7c,0x1,0x83,0x1,0x8b,0x1,0x92,0x1,0x9a,0x1,
0xa1,0x1,0xa9,0x1,0xb1,0x1,0xb9,0x1,0xc1,0x1,0xc9,0x1,0xd1,0x1,0xd9,0x1,
0xe1,0x1,0xe9,0x1,0xf2,0x1,0xfa,0x2,0x3,0x2,0xc,0x2,0x14,0x2,0x1d,0x2,
0x26,0x2,0x2f,0x2,0x38,0x2,0x41,0x2,0x4b,0x2,0x54,0x2,0x5d,0x2,0x67,0x2,
0x71,0x2,0x7a,0x2,0x84,0x2,0x8e,0x2,0x98,0x2,0xa2,0x2,0xac,0x2,0xb6,0x2,
0xc1,0x2,0xcb,0x2,0xd5,0x2,0xe0,0x2,0xeb,0x2,0xf5,0x3,0x0,0x3,0xb,0x3,
0x16,0x3,0x21,0x3,0x2d,0x3,0x38,0x3,0x43,0x3,0x4f,0x3,0x5a,0x3,0x66,0x3,
0x72,0x3,0x7e,0x3,0x8a,0x3,0x96,0x3,0xa2,0x3,0xae,0x3,0xba,0x3,0xc7,0x3,
0xd3,0x3,0xe0,0x3,0xec,0x3,0xf9,0x4,0x6,0x4,0x13,0x4,0x20,0x4,0x2d,0x4,
0x3b,0x4,0x48,0x4,0x55,0x4,0x63,0x4,0x71,0x4,0x7e,0x4,0x8c,0x4,0x9a,0x4,
0xa8,0x4,0xb6,0x4,0xc4,0x4,0xd3,0x4,0xe1,0x4,0xf0,0x4,0xfe,0x5,0xd,0x5,
0x1c,0x5,0x2b,0x5,0x3a,0x5,0x49,0x5,0x58,0x5,0x67,0x5,0x77,0x5,0x86,0x5,
0x96,0x5,0xa6,0x5,0xb5,0x5,0xc5,0x5,0xd5,0x5,0xe5,0x5,0xf6,0x6,0x6,0x6,
0x16,0x6,0x27,0x6,0x37,0x6,0x48,0x6,0x59,0x6,0x6a,0x6,0x7b,0x6,0x8c,0x6,
0x9d,0x6,0xaf,0x6,0xc0,0x6,0xd1,0x6,0xe3,0x6,0xf5,0x7,0x7,0x7,0x19,0x7,
0x2b,0x7,0x3d,0x7,0x4f,0x7,0x61,0x7,0x74,0x7,0x86,0x7,0x99,0x7,0xac,0x7,
0xbf,0x7,0xd2,0x7,0xe5,0x7,0xf8,0x8,0xb,0x8,0x1f,0x8,0x32,0x8,0x46,0x8,
0x5a,0x8,0x6e,0x8,0x82,0x8,0x96,0x8,0xaa,0x8,0xbe,0x8,0xd2,0x8,0xe7,0x8,
0xfb,0x9,0x10,0x9,0x25,0x9,0x3a,0x9,0x4f,0x9,0x64,0x9,0x79,0x9,0x8f,0x9,
0xa4,0x9,0xba,0x9,0xcf,0x9,0xe5,0x9,0xfb,0xa,0x11,0xa,0x27,0xa,0x3d,0xa,
0x54,0xa,0x6a,0xa,0x81,0xa,0x98,0xa,0xae,0xa,0xc5,0xa,0xdc,0xa,0xf3,0xb,
0xb,0xb,0x22,0xb,0x39,0xb,0x51,0xb,0x69,0xb,0x80,0xb,0x98,0xb,0xb0,0xb,
0xc8,0xb,0xe1,0xb,0xf9,0xc,0x12,0xc,0x2a,0xc,0x43,0xc,0x5c,0xc,0x75,0xc,
0x8e,0xc,0xa7,0xc,0xc0,0xc,0xd9,0xc,0xf3,0xd,0xd,0xd,0x26,0xd,0x40,0xd,
0x5a,0xd,0x74,0xd,0x8e,0xd,0xa9,0xd,0xc3,0xd,0xde,0xd,0xf8,0xe,0x13,0xe,
0x2e,0xe,0x49,0xe,0x64,0xe,0x7f,0xe,0x9b,0xe,0xb6,0xe,0xd2,0xe,0xee,0xf,
0x9,0xf,0x25,0xf,0x41,0xf,0x5e,0xf,0x7a,0xf,0x96,0xf,0xb3,0xf,0xcf,0xf,
0xec,0x10,0x9,0x10,0x26,0x10,0x43,0x10,0x61,0x10,0x7e,0x10,0x9b,0x10,0xb9,0x10,
0xd7,0x10,0xf5,0x11,0x13,0x11,0x31,0x11,0x4f,0x11,0x6d,0x11,0x8c,0x11,0xaa,0x11,
0xc9,0x11,0xe8,0x12,0x7,0x12,0x26,0x12,0x45,0x12,0x64,0x12,0x84,0x12,0xa3,0x12,
0xc3,0x12,0xe3,0x13,0x3,0x13,0x23,0x13,0x43,0x13,0x63,0x13,0x83,0x13,0xa4,0x13,
0xc5,0x13,0xe5,0x14,0x6,0x14,0x27,0x14,0x49,0x14,0x6a,0x14,0x8b,0x14,0xad,0x14,
0xce,0x14,0xf0,0x15,0x12,0x15,0x34,0x15,0x56,0x15,0x78,0x15,0x9b,0x15,0xbd,0x15,
0xe0,0x16,0x3,0x16,0x26,0x16,0x49,0x16,0x6c,0x16,0x8f,0x16,0xb2,0x16,0xd6,0x16,
0xfa,0x17,0x1d,0x17,0x41,0x17,0x65,0x17,0x89,0x17,0xae,0x17,0xd2,0x17,0xf7,0x18,
0x1b,0x18,0x40,0x18,0x65,0x18,0x8a,0x18,0xaf,0x18,0xd5,0x18,0xfa,0x19,0x20,0x19,
0x45,0x19,0x6b,0x19,0x91,0x19,0xb7,0x19,0xdd,0x1a,0x4,0x1a,0x2a,0x1a,0x51,0x1a,
0x77,0x1a,0x9e,0x1a,0xc5,0x1a,0xec,0x1b,0x14,0x1b,0x3b,0x1b,0x63,0x1b,0x8a,0x1b,
0xb2,0x1b,0xda,0x1c,0x2,0x1c,0x2a,0x1c,0x52,0x1c,0x7b,0x1c,0xa3,0x1c,0xcc,0x1c,
0xf5,0x1d,0x1e,0x1d,0x47,0x1d,0x70,0x1d,0x99,0x1d,0xc3,0x1d,0xec,0x1e,0x16,0x1e,
0x40,0x1e,0x6a,0x1e,0x94,0x1e,0xbe,0x1e,0xe9,0x1f,0x13,0x1f,0x3e,0x1f,0x69,0x1f,
0x94,0x1f,0xbf,0x1f,0xea,0x20,0x15,0x20,0x41,0x20,0x6c,0x20,0x98,0x20,0xc4,0x20,
0xf0,0x21,0x1c,0x21,0x48,0x21,0x75,0x21,0xa1,0x21,0xce,0x21,0xfb,0x22,0x27,0x22,
0x55,0x22,0x82,0x22,0xaf,0x22,0xdd,0x23,0xa,0x23,0x38,0x23,0x66,0x23,0x94,0x23,
0xc2,0x23,0xf0,0x24,0x1f,0x24,0x4d,0x24,0x7c,0x24,0xab,0x24,0xda,0x25,0x9,0x25,
0x38,0x25,0x68,0x25,0x97,0x25,0xc7,0x25,0xf7,0x26,0x27,0x26,0x57,0x26,0x87,0x26,
0xb7,0x26,0xe8,0x27,0x18,0x27,0x49,0x27,0x7a,0x27,0xab,0x27,0xdc,0x28,0xd,0x28,
0x3f,0x28,0x71,0x28,0xa2,0x28,0xd4,0x29,0x6,0x29,0x38,0x29,0x6b,0x29,0x9d,0x29,
0xd0,0x2a,0x2,0x2a,0x35,0x2a,0x68,0x2a,0x9b,0x2a,0xcf,0x2b,0x2,0x2b,0x36,0x2b,
0x69,0x2b,0x9d,0x2b,0xd1,0x2c,0x5,0x2c,0x39,0x2c,0x6e,0x2c,0xa2,0x2c,0xd7,0x2d,
0xc,0x2d,0x41,0x2d,0x76,0x2d,0xab,0x2d,0xe1,0x2e,0x16,0x2e,0x4c,0x2e,0x82,0x2e,
0xb7,0x2e,0xee,0x2f,0x24,0x2f,0x5a,0x2f,0x91,0x2f,0xc7,0x2f,0xfe,0x30,0x35,0x30,
0x6c,0x30,0xa4,0x30,0xdb,0x31,0x12,0x31,0x4a,0x31,0x82,0x31,0xba,0x31,0xf2,0x32,
0x2a,0x32,0x63,0x32,0x9b,0x32,0xd4,0x33,0xd,0x33,0x46,0x33,0x7f,0x33,0xb8,0x33,
0xf1,0x34,0x2b,0x34,0x65,0x34,0x9e,0x34,0xd8,0x35,0x13,0x35,0x4d,0x35,0x87,0x35,
0xc2,0x35,0xfd,0x36,0x37,0x36,0x72,0x36,0xae,0x36,0xe9,0x37,0x24,0x37,0x60,0x37,
0x9c,0x37,0xd7,0x38,0x14,0x38,0x50,0x38,0x8c,0x38,0xc8,0x39,0x5,0x39,0x42,0x39,
0x7f,0x39,0xbc,0x39,0xf9,0x3a,0x36,0x3a,0x74,0x3a,0xb2,0x3a,0xef,0x3b,0x2d,0x3b,
0x6b,0x3b,0xaa,0x3b,0xe8,0x3c,0x27,0x3c,0x65,0x3c,0xa4,0x3c,0xe3,0x3d,0x22,0x3d,
0x61,0x3d,0xa1,0x3d,0xe0,0x3e,0x20,0x3e,0x60,0x3e,0xa0,0x3e,0xe0,0x3f,0x21,0x3f,
0x61,0x3f,0xa2,0x3f,0xe2,0x40,0x23,0x40,0x64,0x40,0xa6,0x40,0xe7,0x41,0x29,0x41,
0x6a,0x41,0xac,0x41,0xee,0x42,0x30,0x42,0x72,0x42,0xb5,0x42,0xf7,0x43,0x3a,0x43,
0x7d,0x43,0xc0,0x44,0x3,0x44,0x47,0x44,0x8a,0x44,0xce,0x45,0x12,0x45,0x55,0x45,
0x9a,0x45,0xde,0x46,0x22,0x46,0x67,0x46,0xab,0x46,0xf0,0x47,0x35,0x47,0x7b,0x47,
0xc0,0x48,0x5,0x48,0x4b,0x48,0x91,0x48,0xd7,0x49,0x1d,0x49,0x63,0x49,0xa9,0x49,
0xf0,0x4a,0x37,0x4a,0x7d,0x4a,0xc4,0x4b,0xc,0x4b,0x53,0x4b,0x9a,0x4b,0xe2,0x4c,
0x2a,0x4c,0x72,0x4c,0xba,0x4d,0x2,0x4d,0x4a,0x4d,0x93,0x4d,0xdc,0x4e,0x25,0x4e,
0x6e,0x4e,0xb7,0x4f,0x0,0x4f,0x49,0x4f,0x93,0x4f,0xdd,0x50,0x27,0x50,0x71,0x50,
0xbb,0x51,0x6,0x51,0x50,0x51,0x9b,0x51,0xe6,0x52,0x31,0x52,0x7c,0x52,0xc7,0x53,
0x13,0x53,0x5f,0x53,0xaa,0x53,0xf6,0x54,0x42,0x54,0x8f,0x54,0xdb,0x55,0x28,0x55,
0x75,0x55,0xc2,0x56,0xf,0x56,0x5c,0x56,0xa9,0x56,0xf7,0x57,0x44,0x57,0x92,0x57,
0xe0,0x58,0x2f,0x58,0x7d,0x58,0xcb,0x59,0x1a,0x59,0x69,0x59,0xb8,0x5a,0x7,0x5a,
0x56,0x5a,0xa6,0x5a,0xf5,0x5b,0x45,0x5b,0x95,0x5b,0xe5,0x5c,0x35,0x5c,0x86,0x5c,
0xd6,0x5d,0x27,0x5d,0x78,0x5d,0xc9,0x5e,0x1a,0x5e,0x6c,0x5e,0xbd,0x5f,0xf,0x5f,
0x61,0x5f,0xb3,0x60,0x5,0x60,0x57,0x60,0xaa,0x60,0xfc,0x61,0x4f,0x61,0xa2,0x61,
0xf5,0x62,0x49,0x62,0x9c,0x62,0xf0,0x63,0x43,0x63,0x97,0x63,0xeb,0x64,0x40,0x64,
0x94,0x64,0xe9,0x65,0x3d,0x65,0x92,0x65,0xe7,0x66,0x3d,0x66,0x92,0x66,0xe8,0x67,
0x3d,0x67,0x93,0x67,0xe9,0x68,0x3f,0x68,0x96,0x68,0xec,0x69,0x43,0x69,0x9a,0x69,
0xf1,0x6a,0x48,0x6a,0x9f,0x6a,0xf7,0x6b,0x4f,0x6b,0xa7,0x6b,0xff,0x6c,0x57,0x6c,
0xaf,0x6d,0x8,0x6d,0x60,0x6d,0xb9,0x6e,0x12,0x6e,0x6b,0x6e,0xc4,0x6f,0x1e,0x6f,
0x78,0x6f,0xd1,0x70,0x2b,0x70,0x86,0x70,0xe0,0x71,0x3a,0x71,0x95,0x71,0xf0,0x72,
0x4b,0x72,0xa6,0x73,0x1,0x73,0x5d,0x73,0xb8,0x74,0x14,0x74,0x70,0x74,0xcc,0x75,
0x28,0x75,0x85,0x75,0xe1,0x76,0x3e,0x76,0x9b,0x76,0xf8,0x77,0x56,0x77,0xb3,0x78,
0x11,0x78,0x6e,0x78,0xcc,0x79,0x2a,0x79,0x89,0x79,0xe7,0x7a,0x46,0x7a,0xa5,0x7b,
0x4,0x7b,0x63,0x7b,0xc2,0x7c,0x21,0x7c,0x81,0x7c,0xe1,0x7d,0x41,0x7d,0xa1,0x7e,
0x1,0x7e,0x62,0x7e,0xc2,0x7f,0x23,0x7f,0x84,0x7f,0xe5,0x80,0x47,0x80,0xa8,0x81,
0xa,0x81,0x6b,0x81,0xcd,0x82,0x30,0x82,0x92,0x82,0xf4,0x83,0x57,0x83,0xba,0x84,
0x1d,0x84,0x80,0x84,0xe3,0x85,0x47,0x85,0xab,0x86,0xe,0x86,0x72,0x86,0xd7,0x87,
0x3b,0x87,0x9f,0x88,0x4,0x88,0x69,0x88,0xce,0x89,0x33,0x89,0x99,0x89,0xfe,0x8a,
0x64,0x8a,0xca,0x8b,0x30,0x8b,0x96,0x8b,0xfc,0x8c,0x63,0x8c,0xca,0x8d,0x31,0x8d,
0x98,0x8d,0xff,0x8e,0x66,0x8e,0xce,0x8f,0x36,0x8f,0x9e,0x90,0x6,0x90,0x6e,0x90,
0xd6,0x91,0x3f,0x91,0xa8,0x92,0x11,0x92,0x7a,0x92,0xe3,0x93,0x4d,0x93,0xb6,0x94,
0x20,0x94,0x8a,0x94,0xf4,0x95,0x5f,0x95,0xc9,0x96,0x34,0x96,0x9f,0x97,0xa,0x97,
0x75,0x97,0xe0,0x98,0x4c,0x98,0xb8,0x99,0x24,0x99,0x90,0x99,0xfc,0x9a,0x68,0x9a,
0xd5,0x9b,0x42,0x9b,0xaf,0x9c,0x1c,0x9c,0x89,0x9c,0xf7,0x9d,0x64,0x9d,0xd2,0x9e,
0x40,0x9e,0xae,0x9f,0x1d,0x9f,0x8b,0x9f,0xfa,0xa0,0x69,0xa0,0xd8,0xa1,0x47,0xa1,
0xb6,0xa2,0x26,0xa2,0x96,0xa3,0x6,0xa3,0x76,0xa3,0xe6,0xa4,0x56,0xa4,0xc7,0xa5,
0x38,0xa5,0xa9,0xa6,0x1a,0xa6,0x8b,0xa6,0xfd,0xa7,0x6e,0xa7,0xe0,0xa8,0x52,0xa8,
0xc4,0xa9,0x37,0xa9,0xa9,0xaa,0x1c,0xaa,0x8f,0xab,0x2,0xab,0x75,0xab,0xe9,0xac,
0x5c,0xac,0xd0,0xad,0x44,0xad,0xb8,0xae,0x2d,0xae,0xa1,0xaf,0x16,0xaf,0x8b,0xb0,
0x0,0xb0,0x75,0xb0,0xea,0xb1,0x60,0xb1,0xd6,0xb2,0x4b,0xb2,0xc2,0xb3,0x38,0xb3,
0xae,0xb4,0x25,0xb4,0x9c,0xb5,0x13,0xb5,0x8a,0xb6,0x1,0xb6,0x79,0xb6,0xf0,0xb7,
0x68,0xb7,0xe0,0xb8,0x59,0xb8,0xd1,0xb9,0x4a,0xb9,0xc2,0xba,0x3b,0xba,0xb5,0xbb,
0x2e,0xbb,0xa7,0xbc,0x21,0xbc,0x9b,0xbd,0x15,0xbd,0x8f,0xbe,0xa,0xbe,0x84,0xbe,
0xff,0xbf,0x7a,0xbf,0xf5,0xc0,0x70,0xc0,0xec,0xc1,0x67,0xc1,0xe3,0xc2,0x5f,0xc2,
0xdb,0xc3,0x58,0xc3,0xd4,0xc4,0x51,0xc4,0xce,0xc5,0x4b,0xc5,0xc8,0xc6,0x46,0xc6,
0xc3,0xc7,0x41,0xc7,0xbf,0xc8,0x3d,0xc8,0xbc,0xc9,0x3a,0xc9,0xb9,0xca,0x38,0xca,
0xb7,0xcb,0x36,0xcb,0xb6,0xcc,0x35,0xcc,0xb5,0xcd,0x35,0xcd,0xb5,0xce,0x36,0xce,
0xb6,0xcf,0x37,0xcf,0xb8,0xd0,0x39,0xd0,0xba,0xd1,0x3c,0xd1,0xbe,0xd2,0x3f,0xd2,
0xc1,0xd3,0x44,0xd3,0xc6,0xd4,0x49,0xd4,0xcb,0xd5,0x4e,0xd5,0xd1,0xd6,0x55,0xd6,
0xd8,0xd7,0x5c,0xd7,0xe0,0xd8,0x64,0xd8,0xe8,0xd9,0x6c,0xd9,0xf1,0xda,0x76,0xda,
0xfb,0xdb,0x80,0xdc,0x5,0xdc,0x8a,0xdd,0x10,0xdd,0x96,0xde,0x1c,0xde,0xa2,0xdf,
0x29,0xdf,0xaf,0xe0,0x36,0xe0,0xbd,0xe1,0x44,0xe1,0xcc,0xe2,0x53,0xe2,0xdb,0xe3,
0x63,0xe3,0xeb,0xe4,0x73,0xe4,0xfc,0xe5,0x84,0xe6,0xd,0xe6,0x96,0xe7,0x1f,0xe7,
0xa9,0xe8,0x32,0xe8,0xbc,0xe9,0x46,0xe9,0xd0,0xea,0x5b,0xea,0xe5,0xeb,0x70,0xeb,
0xfb,0xec,0x86,0xed,0x11,0xed,0x9c,0xee,0x28,0xee,0xb4,0xef,0x40,0xef,0xcc,0xf0,
0x58,0xf0,0xe5,0xf1,0x72,0xf1,0xff,0xf2,0x8c,0xf3,0x19,0xf3,0xa7,0xf4,0x34,0xf4,
0xc2,0xf5,0x50,0xf5,0xde,0xf6,0x6d,0xf6,0xfb,0xf7,0x8a,0xf8,0x19,0xf8,0xa8,0xf9,
0x38,0xf9,0xc7,0xfa,0x57,0xfa,0xe7,0xfb,0x77,0xfc,0x7,0xfc,0x98,0xfd,0x29,0xfd,
0xba,0xfe,0x4b,0xfe,0xdc,0xff,0x6d,0xff,0xff,0x70,0x61,0x72,0x61,0x0,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x66,0x66,0x0,0x0,0xf2,0xa7,0x0,0x0,0xd,
0x59,0x0,0x0,0x13,0xd0,0x0,0x0,0xa,0xe,0x76,0x63,0x67,0x74,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6e,0x64,0x69,0x6e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x36,0x0,0x0,0xa7,0x40,0x0,0x0,0x55,0x80,0x0,0x0,0x4c,
0xc0,0x0,0x0,0x9e,0xc0,0x0,0x0,0x25,0x80,0x0,0x0,0xc,0xc0,0x0,0x0,0x50,
0x0,0x0,0x0,0x54,0x40,0x0,0x2,0x33,0x33,0x0,0x2,0x33,0x33,0x0,0x2,0x33,
0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x66,0x33,0x32,0x0,0x0,0x0,
0x0,0x0,0x1,0xc,0x72,0x0,0x0,0x5,0xf8,0xff,0xff,0xf3,0x1d,0x0,0x0,0x7,
0xba,0x0,0x0,0xfd,0x72,0xff,0xff,0xfb,0x9d,0xff,0xff,0xfd,0xa4,0x0,0x0,0x3,
0xd9,0x0,0x0,0xc0,0x71,0x6d,0x6d,0x6f,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x6,
0x10,0x0,0x0,0xa0,0xf,0x0,0x0,0x0,0x0,0xc9,0xce,0x8c,0x80,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0x0,
0x80,0x45,0x78,0x69,0x66,0x0,0x0,0x4d,0x4d,0x0,0x2a,0x0,0x0,0x0,0x8,0x0,
0x5,0x1,0x12,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x1,0x1a,0x0,
0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x1,0x1b,0x0,0x5,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x52,0x1,0x28,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x2,0x0,
0x0,0x87,0x69,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,
0x1,0x0,0x2,0xa0,0x2,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa0,
0x3,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0xff,
0xdb,0x0,0x43,0x0,0x2,0x1,0x1,0x2,0x1,0x1,0x2,0x2,0x1,0x2,0x2,0x2,
0x2,0x2,0x3,0x5,0x3,0x3,0x3,0x3,0x3,0x6,0x4,0x4,0x3,0x5,0x7,0x6,
0x7,0x7,0x7,0x6,0x6,0x6,0x7,0x8,0xb,0x9,0x7,0x8,0xa,0x8,0x6,0x6,
0x9,0xd,0x9,0xa,0xb,0xb,0xc,0xc,0xc,0x7,0x9,0xd,0xe,0xd,0xc,0xe,
0xb,0xc,0xc,0xb,0xff,0xdb,0x0,0x43,0x1,0x2,0x2,0x2,0x3,0x2,0x3,0x5,
0x3,0x3,0x5,0xb,0x8,0x6,0x8,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,
0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xff,0xc0,0x0,0x11,0x8,0x0,0x3f,
0x0,0x40,0x3,0x1,0x22,0x0,0x2,0x11,0x1,0x3,0x11,0x1,0xff,0xc4,0x0,0x1f,
0x0,0x0,0x1,0x5,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,
0xb5,0x10,0x0,0x2,0x1,0x3,0x3,0x2,0x4,0x3,0x5,0x5,0x4,0x4,0x0,0x0,
0x1,0x7d,0x1,0x2,0x3,0x0,0x4,0x11,0x5,0x12,0x21,0x31,0x41,0x6,0x13,0x51,
0x61,0x7,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x8,0x23,0x42,0xb1,0xc1,0x15,0x52,
0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x9,0xa,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,
0x27,0x28,0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,
0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,
0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,
0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,
0xf7,0xf8,0xf9,0xfa,0xff,0xc4,0x0,0x1f,0x1,0x0,0x3,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,
0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x11,0x0,0x2,0x1,0x2,0x4,0x4,
0x3,0x4,0x7,0x5,0x4,0x4,0x0,0x1,0x2,0x77,0x0,0x1,0x2,0x3,0x11,0x4,
0x5,0x21,0x31,0x6,0x12,0x41,0x51,0x7,0x61,0x71,0x13,0x22,0x32,0x81,0x8,0x14,
0x42,0x91,0xa1,0xb1,0xc1,0x9,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0xa,0x16,
0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,0x27,0x28,0x29,0x2a,0x35,0x36,
0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,
0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,
0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x92,0x93,0x94,
0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,
0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,
0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,
0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xff,0xda,0x0,0xc,
0x3,0x1,0x0,0x2,0x11,0x3,0x11,0x0,0x3f,0x0,0xfd,0xfc,0xaa,0x7a,0xc6,0xb9,
0x6f,0xa2,0x44,0x86,0xec,0xb3,0x49,0x29,0xdb,0x14,0x51,0xae,0xe9,0x26,0x6f,0x45,
0x51,0xd7,0xf9,0xe,0xf8,0xa3,0x5d,0xd6,0x63,0xd0,0xb4,0xe7,0x9e,0x75,0x69,0x1b,
0x21,0x23,0x8d,0x7e,0xf4,0xae,0x4e,0x15,0x17,0xdc,0x92,0x5,0x7e,0x79,0x7e,0xd7,
0xff,0x0,0xf0,0x51,0xef,0xa,0x6a,0xdf,0x18,0xe5,0xf8,0x66,0xfe,0x2f,0xba,0xf0,
0xfa,0x5e,0xbf,0xd8,0x6f,0x7c,0x41,0x67,0x2f,0x93,0x14,0xb7,0x3b,0xf6,0x8b,0x48,
0x2e,0x7a,0x24,0x29,0x20,0xd8,0xc0,0x73,0x33,0x2,0xf,0xca,0x30,0x70,0xc4,0x62,
0x21,0x86,0x8f,0x34,0xd9,0xb5,0x1a,0x13,0xae,0xed,0x4,0x7d,0xbc,0xde,0x37,0xd5,
0x7c,0x55,0x2b,0x27,0x85,0x6d,0xe4,0x92,0x35,0x25,0x59,0xed,0xd9,0x4,0x48,0x47,
0x50,0xf7,0x2e,0xa,0x13,0xea,0x22,0x57,0xc7,0xad,0x3d,0x7c,0xf,0xae,0x5e,0x2,
0xd7,0xf7,0xda,0x7c,0x25,0xbb,0x33,0x5c,0xdd,0x1f,0xfb,0xe8,0xca,0x83,0xf2,0x51,
0x5f,0x9a,0xbe,0x33,0xff,0x0,0x82,0xf1,0x78,0xeb,0xf6,0x63,0xf0,0x76,0xab,0xe1,
0x7f,0x11,0x78,0x23,0x41,0xf1,0xcf,0x8a,0x7c,0x3b,0x20,0x8a,0xdb,0x57,0x6d,0x41,
0xb4,0x9b,0xb,0xbb,0x6c,0xd,0xb2,0x4c,0x89,0xb,0x95,0x90,0xc,0x82,0xb1,0x8c,
0x1c,0x7f,0xe,0x6b,0xe4,0xbf,0x16,0xff,0x0,0xc1,0x70,0xff,0x0,0x6b,0xdf,0x8e,
0x97,0xdb,0x7c,0x5,0xe2,0x6d,0x3,0xc2,0xb6,0x72,0xe7,0x68,0xd3,0x34,0x8,0xe2,
0x68,0xcb,0xb6,0x15,0x56,0x6b,0x97,0x93,0xcc,0xda,0xa7,0xa9,0x55,0xe4,0x67,0xda,
0xb8,0x2b,0x67,0x34,0x28,0xa4,0xf5,0x77,0xfe,0xba,0x9e,0x8e,0x1b,0x25,0xaf,0x89,
0xbb,0x4d,0x25,0xe6,0xff,0x0,0xc9,0x3f,0xc4,0xfd,0xde,0x6f,0x5,0x6b,0xd6,0x7,
0x76,0x9f,0x7b,0xa7,0xce,0x47,0x65,0x92,0xe2,0xd4,0x9f,0xc7,0xcc,0x91,0x7f,0x35,
0xa4,0xb7,0xf1,0xd6,0xa7,0xe1,0xbb,0x94,0x87,0xc5,0x96,0xf2,0xc5,0xe6,0x30,0x55,
0xfb,0x41,0x40,0x24,0x27,0xa0,0x8e,0xe1,0x7f,0x76,0xc7,0xd1,0x5c,0x46,0xc7,0xde,
0xbf,0x12,0xbc,0x3,0xff,0x0,0x5,0x66,0xfd,0xab,0xfe,0xc,0x69,0xb6,0xda,0xe5,
0xe7,0x8d,0x2d,0xfc,0x77,0xa7,0x29,0x59,0xe7,0xb2,0xd6,0xb4,0x98,0x65,0x13,0xc5,
0x90,0x5c,0x9,0x2d,0xc4,0x6f,0x18,0x60,0xac,0x16,0x40,0x1b,0x6e,0x49,0xda,0xd8,
0xc5,0x7d,0x7f,0xe1,0x5f,0xf8,0x2f,0x9c,0xbf,0x1f,0xfc,0x5,0x67,0xa6,0x7c,0x2e,
0xf8,0x4b,0x70,0x7c,0x59,0xad,0xec,0xb6,0x51,0xa8,0x6a,0x70,0x5c,0xe8,0xd1,0x6e,
0xe1,0xdd,0xda,0x3f,0xde,0x48,0x0,0xc9,0x11,0xb2,0x21,0x6e,0x32,0x47,0x69,0xc3,
0x67,0x98,0x7c,0x4a,0x6f,0x54,0xd7,0x46,0xbf,0xca,0xe3,0xc5,0xe4,0x98,0x8c,0x2b,
0x5a,0xa9,0x27,0xd5,0x3f,0xf3,0xb1,0xfa,0x4b,0xa4,0xeb,0x36,0xfa,0xd5,0xb9,0x92,
0xc5,0xc9,0xda,0xdb,0x1d,0x18,0x15,0x78,0x9b,0xba,0xb2,0x9e,0x54,0xfb,0x1a,0xb5,
0x5f,0x25,0xfe,0xcf,0xdf,0x1a,0x75,0x2f,0x87,0xfa,0xde,0x93,0xe1,0xdf,0x8b,0x9e,
0x2e,0xd3,0x35,0x9f,0x11,0xea,0xc4,0xb5,0x9b,0x8,0x96,0xd5,0x93,0x7b,0x6e,0x16,
0x4e,0xa3,0x86,0x84,0x67,0x64,0x52,0x1c,0xb4,0x67,0x6a,0xb1,0x60,0xd9,0xaf,0xaa,
0xb4,0x6d,0x5a,0x2d,0x73,0x4e,0x8a,0xe6,0xcf,0x70,0x49,0x7,0xdd,0x61,0x86,0x42,
0xe,0xa,0xb0,0xec,0x41,0x4,0x11,0xea,0x2b,0xd3,0xa3,0x5e,0x15,0xe3,0xcd,0x3,
0xcb,0xab,0x4a,0x54,0x65,0xcb,0x23,0xcb,0x3f,0x68,0xff,0x0,0x8e,0x7e,0x15,0xf8,
0x46,0x90,0xde,0x7c,0x60,0xf1,0x3e,0x93,0xe1,0x4d,0x1a,0x39,0xe3,0xb0,0x5b,0xdd,
0x42,0xe5,0x6d,0xe3,0x17,0x13,0xab,0x31,0xa,0xcd,0xd6,0x41,0x2,0x3e,0xd1,0xeb,
0x27,0xb5,0x7e,0x5a,0x7e,0xd2,0x1e,0x2c,0xf8,0x2d,0x2f,0xc7,0x7b,0x6f,0x11,0xfc,
0x34,0xb7,0xd1,0x3c,0x4f,0xa6,0x69,0xd7,0xd7,0x9a,0x8e,0x9b,0x2c,0x52,0x81,0xa7,
0x5b,0x44,0x15,0x40,0x56,0x4d,0x9b,0x99,0x76,0xbb,0x4,0xef,0xbb,0xa7,0x15,0xe8,
0x5f,0xf0,0x71,0x7f,0x88,0x24,0x7f,0xc,0xfc,0x35,0xb1,0x92,0x73,0x14,0xd,0xe2,
0x5d,0x63,0x55,0x76,0xe4,0xfc,0xf0,0x5a,0xa5,0xa2,0x71,0xdf,0x9,0x3c,0x84,0x7a,
0x1e,0x6b,0xf3,0xcb,0xe0,0x37,0xc6,0xc8,0xee,0x7e,0xf,0x6a,0xda,0x86,0xa7,0x6e,
0x92,0x4d,0x79,0xad,0x4d,0x4,0x3b,0x93,0x32,0x25,0xba,0x2a,0xa2,0x8c,0x77,0xce,
0xb,0xf,0x6a,0xf9,0x9c,0xdf,0x30,0x9c,0x6b,0x3a,0x69,0x2e,0x58,0xdb,0xd6,0xee,
0xdf,0xe6,0x7d,0x1e,0x5b,0x97,0xd3,0x96,0x1e,0x35,0x79,0x9f,0x34,0xaf,0xa7,0x4b,
0x27,0xff,0x0,0x0,0xec,0x3e,0x22,0x78,0xe3,0xc4,0xbf,0xb5,0x67,0xc7,0x55,0xb2,
0xd3,0x2c,0x35,0x21,0x63,0x3b,0x24,0x9f,0x64,0x4b,0x72,0x63,0xb6,0x87,0x38,0x43,
0x34,0x80,0x6d,0x4,0x81,0x9c,0x75,0xc7,0x6a,0xec,0xee,0x3e,0x1d,0x69,0x16,0x7e,
0xf,0xbf,0xd4,0x34,0x5b,0x79,0xae,0x63,0xb0,0x91,0xad,0x44,0x91,0xc8,0x57,0xf7,
0xb1,0x92,0x1b,0x64,0x78,0xc3,0x60,0xf1,0x9e,0x7a,0x56,0xe6,0x87,0xf1,0x3,0xe2,
0x9f,0xc3,0x7f,0x1,0x68,0xf7,0x7e,0x16,0xf0,0xa7,0x80,0x75,0x2d,0x1f,0x53,0xb7,
0x93,0x51,0xb5,0x59,0x75,0x79,0x2d,0x2e,0x64,0xb8,0x56,0x50,0x2d,0xae,0x64,0x29,
0xb2,0x19,0x59,0x8,0x65,0x62,0x59,0x76,0xab,0xc,0x64,0x73,0x87,0xe1,0xf,0x8e,
0x9e,0x19,0xd4,0x6f,0xbe,0xcf,0xa6,0xcd,0xa5,0xdd,0xe9,0xd3,0xc3,0x3c,0x6f,0xf6,
0x4b,0xd5,0x96,0x38,0x27,0x49,0x59,0x66,0x8c,0xba,0xfc,0xa5,0x96,0x4d,0xc3,0x78,
0xfb,0xc0,0x66,0xbc,0xaa,0x94,0x25,0x56,0x8f,0xb5,0x7b,0xb3,0xd1,0xa7,0x88,0x54,
0x6a,0xfb,0x25,0xb2,0x37,0x7c,0x17,0xf0,0xf6,0xda,0xef,0x46,0xd3,0x6e,0x1b,0xc8,
0xb7,0xb2,0xd7,0xa4,0x5d,0x2e,0xc8,0xb6,0x4a,0x31,0x70,0x40,0x8e,0x5f,0xab,0x74,
0x3c,0x1,0x9c,0x57,0x37,0xfb,0x3f,0xea,0x9a,0xc7,0xec,0x6b,0xfb,0x4f,0x79,0x1e,
0x28,0xd1,0x35,0x24,0xd0,0x1a,0x73,0xf6,0xbb,0x59,0x6d,0x98,0x96,0x84,0xb9,0xd,
0x2c,0x5b,0x86,0x24,0x8,0x70,0x78,0xe7,0x1e,0xfd,0x7d,0x67,0xfe,0x13,0xbf,0x9,
0xfc,0x31,0xf8,0x4f,0xe,0xb7,0xe2,0xeb,0xbd,0x23,0xec,0x3a,0x40,0x81,0x74,0xbb,
0x3b,0x9d,0x41,0x60,0x8a,0xf3,0x52,0x79,0x55,0x2d,0x22,0x13,0x60,0x84,0x1e,0x61,
0x56,0x67,0x20,0xed,0x3,0x38,0x3d,0x2a,0xe7,0x87,0x3e,0x22,0x7c,0x4f,0xf8,0xfb,
0xe1,0x4b,0x97,0xf8,0xaf,0xe0,0xef,0x2,0xd9,0xf8,0x6a,0xd7,0xca,0xba,0xb8,0xd4,
0x2d,0x35,0xb9,0xee,0x6e,0xad,0xee,0xe4,0xdc,0x5e,0xde,0xcd,0xda,0x3d,0x93,0x14,
0x0,0x19,0x1d,0x59,0x57,0xe,0x6,0x33,0x90,0x22,0x18,0x79,0x50,0xa2,0xeb,0x76,
0xdc,0xa9,0x62,0x15,0x7a,0xde,0xc5,0xf5,0xd0,0xfa,0x97,0xf6,0x74,0xfd,0x9b,0xbc,
0x19,0xf1,0x5f,0xe3,0x8e,0xa1,0x37,0x84,0xf5,0x1d,0x46,0x7b,0x1d,0x5e,0xe5,0x35,
0x6b,0xeb,0x17,0x9f,0xcd,0x5b,0x78,0x5d,0x73,0xb2,0x17,0xce,0xe8,0x95,0x98,0x2b,
0x2,0xa7,0x83,0x91,0xc5,0x7d,0xb7,0xe0,0x2b,0xb9,0xb4,0x9d,0x76,0xe3,0x4e,0xd4,
0x5c,0xbb,0xcb,0xbc,0xb3,0x1f,0xe2,0x9a,0x22,0xaa,0xcd,0xff,0x0,0x3,0x8d,0xa2,
0x7f,0xae,0xea,0xf9,0xbf,0xfe,0x9,0x26,0x2d,0xb5,0x4f,0x5,0x6b,0xfa,0x82,0xd9,
0xc1,0x15,0xea,0x79,0x16,0x52,0x4b,0xb3,0xf7,0x8c,0x89,0xbc,0xa8,0xcf,0xa1,0x7,
0x38,0xf5,0xaf,0xa3,0xf5,0xa3,0xf6,0x2f,0x88,0xd6,0x72,0x47,0xc1,0x92,0xea,0x12,
0x71,0xdf,0x7c,0x13,0x21,0xff,0x0,0xd1,0x69,0xf9,0xa,0xfa,0xdc,0x99,0x29,0x61,
0x95,0x55,0xf6,0xb5,0xfd,0xf,0x97,0xcd,0xb9,0xa3,0x88,0x74,0xe4,0xfe,0x1d,0xf,
0xcf,0xf,0xf8,0x2f,0x1f,0xc3,0x69,0xbc,0x5b,0xe0,0x6d,0x1e,0xe1,0x22,0x59,0xe,
0x85,0xe2,0x5b,0x8b,0x67,0xdd,0x9f,0x92,0x1d,0x42,0xd9,0x5d,0x1b,0xf1,0x96,0x1d,
0xb9,0xf5,0x38,0xaf,0x80,0xbf,0x64,0xdf,0x83,0x56,0x3e,0x2b,0x83,0x50,0xd1,0x35,
0x28,0x5d,0x7f,0xb1,0x4b,0xcc,0x12,0x4f,0x9b,0xcd,0x20,0x60,0x5,0xe3,0x9e,0xf,
0xd6,0xbf,0x6a,0x7f,0xe0,0xa3,0x3f,0x2,0xe0,0xf8,0x9f,0xf0,0xda,0xef,0xed,0xcc,
0x61,0xb1,0xd5,0xad,0xd3,0x4f,0xbb,0xb8,0x51,0xcd,0x84,0xcb,0x20,0x92,0xce,0xeb,
0xd8,0x24,0xdf,0x29,0x3e,0x92,0x73,0xc0,0xaf,0xc8,0x3d,0xa,0x3d,0x43,0xf6,0x6d,
0xf8,0xe5,0x77,0x7f,0xae,0xef,0xb4,0x53,0x37,0xd9,0x75,0x5b,0x20,0x8f,0x24,0xb6,
0x92,0x2b,0x7d,0xe8,0x82,0x3,0xcf,0x3b,0x86,0x78,0x20,0xf5,0xe4,0x57,0x87,0x9f,
0xe1,0x25,0x1a,0xfe,0xd1,0x6d,0x2b,0x7d,0xeb,0x4f,0xca,0xdf,0x89,0xec,0xe4,0xd8,
0xa8,0xba,0x1e,0xcf,0xac,0x6f,0xf7,0x33,0xd8,0x3e,0x1d,0x7c,0x40,0xb5,0xf8,0xf,
0xe1,0x89,0x34,0xff,0x0,0x15,0x59,0xc1,0x7a,0x2d,0xad,0xa5,0xfb,0x14,0xd2,0xa8,
0x90,0x5d,0x46,0x6,0x42,0x9c,0xf1,0x91,0xdc,0x7a,0xd7,0xe7,0xa7,0xc2,0x3d,0x4a,
0x3d,0x5f,0xe2,0x2f,0x88,0x2d,0x63,0x48,0xa2,0x92,0xfb,0x53,0xbd,0xbe,0x78,0xc2,
0xe1,0x20,0x13,0xce,0xf2,0x32,0x81,0xea,0x3,0xe0,0x9e,0x99,0x35,0xf5,0x8f,0xfc,
0x14,0xe2,0xf3,0x52,0xff,0x0,0x85,0x9,0xe1,0x4f,0x12,0xf8,0x6,0xe1,0xa4,0xd1,
0xad,0x3c,0x53,0x6a,0xfa,0x8d,0xe5,0x92,0xd,0xf6,0xd0,0xdc,0x3,0x1,0x26,0x31,
0xf3,0x21,0x67,0x92,0x3d,0xca,0x46,0x7,0x5a,0x82,0xcb,0xfe,0x9,0xb9,0xae,0x7e,
0xc7,0x1e,0x1a,0xff,0x0,0x85,0xc7,0xa6,0x6a,0x76,0xde,0x2d,0xf8,0x6b,0xaa,0x69,
0x33,0x5c,0x78,0x96,0xd4,0xda,0x4b,0x16,0xbb,0xa5,0xa3,0x23,0xcb,0xf6,0xb8,0x55,
0x4b,0xb,0x85,0x56,0xb,0xfb,0x9d,0xa1,0xb0,0xcc,0xc0,0x9c,0x5,0x39,0x61,0x70,
0xf5,0x25,0x45,0xa5,0xdb,0x6f,0x42,0xe7,0x5e,0x9f,0xb4,0x4e,0x4e,0xda,0xad,0x59,
0xcb,0xf8,0x3e,0xc7,0x4f,0xd0,0x7e,0x27,0x78,0x26,0xce,0xca,0x23,0x73,0x16,0x9b,
0xaa,0xdb,0x6a,0xa2,0xd2,0xe4,0xef,0x8e,0x71,0x11,0x3f,0x20,0x53,0xd0,0xe3,0x24,
0x75,0xce,0x2b,0xf4,0x6b,0x47,0xf0,0x36,0x97,0xf1,0xb3,0x59,0x78,0xf4,0xc8,0xc,
0x5a,0x5d,0x91,0x59,0x6f,0xef,0x51,0xa,0x45,0x6d,0x10,0xcb,0xf9,0x49,0xfc,0x20,
0x9c,0x80,0x40,0xaf,0x97,0xad,0x3f,0xe0,0x9d,0x1e,0x3e,0xf1,0xef,0xc3,0x8b,0xef,
0x8b,0xde,0x3f,0xf1,0x6,0x89,0xe1,0x4f,0xf,0xe9,0x11,0xb,0xaf,0xb,0xe9,0x8b,
0xb,0xcb,0xa8,0xf9,0x51,0x82,0x12,0xe2,0xee,0x73,0x85,0x55,0x91,0x49,0x71,0x6f,
0xb7,0xe4,0x2d,0xcb,0x76,0x1f,0x63,0x7f,0xc1,0x1e,0x3c,0x9,0xe2,0xcf,0x1d,0x7e,
0xc4,0xde,0xc,0xd6,0xbe,0x27,0x36,0x9d,0x75,0x63,0xaf,0x5c,0xdd,0x6b,0x91,0x45,
0xb1,0x85,0xcd,0xfc,0x12,0xce,0xe6,0xde,0x59,0x37,0x10,0x30,0x61,0x11,0x9f,0x2f,
0x1f,0x8d,0x68,0xb2,0xfa,0xf5,0x7f,0x72,0xfb,0x5f,0x52,0x6b,0x63,0x68,0xd3,0xbd,
0x58,0xbd,0x6f,0x6d,0x3f,0xaf,0xb8,0xfa,0x7b,0xf6,0x34,0xf8,0x2d,0x69,0xf0,0x77,
0xe1,0x9d,0xcf,0xf6,0x5c,0x66,0x35,0xd6,0xef,0xa4,0xbe,0x55,0x61,0x82,0xb1,0x9e,
0x23,0x7,0xfe,0x2,0x33,0xf8,0xd6,0xde,0xad,0xa9,0x8d,0x57,0xe3,0x5e,0x9f,0x61,
0x6c,0x73,0xe4,0x48,0x67,0x97,0xbf,0xcb,0x14,0x2d,0xff,0x0,0xb3,0xdc,0x28,0xae,
0xab,0xc4,0x3e,0x28,0xb7,0xf0,0x6f,0x85,0xe6,0xbf,0xd5,0x4e,0xc8,0xad,0xd3,0x84,
0x2a,0x10,0xb1,0xe8,0xa8,0x7,0xa9,0x3c,0x57,0x9f,0x7e,0xcd,0x16,0x77,0x1e,0x2c,
0x9b,0x54,0xf1,0x9e,0xaf,0x92,0x35,0x66,0x36,0xfa,0x79,0x3f,0xc7,0x2,0xb1,0x67,
0x94,0x7b,0x3c,0x84,0xe3,0xfd,0x94,0x5a,0xfa,0xcc,0x2d,0x8,0xe1,0x69,0x46,0x94,
0x76,0x48,0xf9,0x8a,0xf5,0xa5,0x88,0xa9,0x2a,0x92,0xdd,0x9e,0xa1,0xae,0x68,0x96,
0x9e,0x25,0xd1,0xee,0xb4,0xfd,0x76,0x8,0xee,0xac,0xef,0x62,0x68,0x67,0x86,0x41,
0x95,0x91,0x18,0x60,0x82,0x3e,0x86,0xbf,0x36,0xff,0x0,0x6f,0x8f,0xd8,0x4a,0xeb,
0xc3,0xba,0xdf,0xf6,0xad,0x84,0xcf,0xe,0x50,0x5b,0x59,0x6b,0x6e,0x7f,0x75,0x75,
0xf,0xf0,0x59,0xea,0xc,0x7,0xc9,0x22,0xfd,0xd8,0xe7,0x3c,0x30,0xe1,0xb9,0xeb,
0xfa,0x5d,0x55,0xf5,0x4d,0x2a,0xdb,0x5b,0xd3,0xe6,0xb4,0xd6,0x20,0x86,0xea,0xda,
0xe1,0xa,0x4b,0x14,0xa8,0x1d,0x24,0x53,0xd4,0x32,0x9e,0x8,0xaa,0xad,0x42,0x18,
0x88,0x38,0x54,0x57,0x42,0xa5,0x56,0x74,0x64,0xa7,0x7,0x66,0x7e,0x20,0xe9,0x9e,
0x1,0xfe,0xcb,0xd0,0x75,0x6f,0xd,0xf8,0xeb,0x48,0x9e,0x29,0x2e,0x14,0x28,0xb1,
0x98,0xf1,0x30,0x7,0x21,0xb7,0x67,0xd,0xcf,0x20,0x82,0x79,0xc5,0x7b,0xf,0x88,
0x74,0x89,0xbf,0x68,0xcf,0x9,0x5e,0xf8,0x6e,0xf7,0xe2,0x5,0xf7,0x82,0x63,0x6b,
0x61,0x64,0xf6,0x2b,0x67,0x18,0xb7,0x29,0xb7,0x63,0x85,0x9b,0x3b,0xdb,0x70,0x3c,
0x8c,0xaf,0x5a,0xfb,0x57,0xe2,0x9f,0xfc,0x13,0xaf,0x44,0xd7,0xcb,0xc9,0xf0,0xb7,
0x52,0x6d,0x9,0x4b,0x16,0x5d,0x3a,0xee,0x1f,0xb6,0x69,0xea,0x4f,0xfc,0xf3,0x56,
0x21,0xe1,0xfa,0x23,0x1,0xed,0x5e,0x3d,0xab,0x7f,0xc1,0x3c,0x7c,0x79,0xa6,0x5e,
0x93,0x67,0xa3,0x78,0x63,0x53,0xa,0xdb,0x96,0x58,0x35,0x57,0x84,0x67,0xd7,0x64,
0xb1,0x9d,0xbf,0x4c,0x9a,0xf1,0xa1,0x95,0x56,0xc2,0xcd,0xca,0x84,0xd3,0x5d,0x99,
0xe9,0xcb,0x1f,0x4b,0x10,0xad,0x56,0x2d,0x3e,0xe8,0xd1,0xfd,0x99,0xbe,0x1c,0xb4,
0x57,0xba,0x77,0xc3,0xbd,0x6b,0xc6,0xb7,0x3e,0x36,0xd0,0xf5,0x8d,0x3e,0x58,0x2f,
0xad,0xcd,0x92,0x2a,0xc1,0x1a,0x20,0xc,0xe2,0xe0,0x1e,0xbc,0x85,0xdb,0xb4,0x9e,
0x7a,0xf1,0x5f,0x57,0x6a,0xba,0xaf,0x85,0xbe,0x5,0xf8,0x3a,0xde,0x1b,0xb9,0x2c,
0xf4,0x8d,0x37,0x4e,0x81,0x61,0xb6,0xb7,0x40,0x1,0x8,0x8a,0x2,0xaa,0x20,0xf4,
0x0,0x7f,0x5a,0xf9,0xb3,0xc0,0x3f,0xb2,0xcf,0xc6,0x1f,0xf,0xeb,0xa2,0xef,0xc3,
0xcb,0xe1,0xaf,0xb,0xce,0x60,0x16,0xbf,0x69,0xfe,0xd0,0x69,0xda,0x38,0xbf,0xba,
0xa8,0x91,0x8f,0x52,0x7a,0x8e,0x6b,0xd2,0xfc,0x19,0xfb,0xd,0x58,0xdc,0xea,0x8b,
0xa9,0xfc,0x7a,0xd7,0xaf,0xfc,0x6f,0x7d,0x90,0xff,0x0,0x67,0x9b,0x30,0xd8,0x83,
0xef,0x16,0x4b,0x49,0xf4,0x76,0x23,0xda,0xbd,0x5c,0x35,0x29,0xd3,0x4d,0xd5,0xb5,
0xfc,0xbb,0x7f,0x57,0x3c,0xfa,0xf5,0x23,0x26,0x95,0x3d,0x8c,0x4d,0x36,0xe3,0x5a,
0xfd,0xb5,0xfc,0x51,0x1c,0x91,0x47,0x71,0xa5,0xfc,0x3a,0xb0,0x90,0xf9,0x93,0xe4,
0xab,0x6a,0x9e,0xb1,0x42,0x7f,0x8b,0x77,0x46,0x94,0x70,0x14,0x95,0x5c,0x92,0x48,
0xfa,0x3f,0x4f,0xd3,0xe0,0xd2,0x6c,0x61,0xb6,0xd3,0x62,0x8e,0xb,0x7b,0x74,0x11,
0x45,0x1a,0x2e,0xd5,0x8d,0x40,0xc0,0x50,0x3b,0x0,0x29,0x6c,0xec,0xa1,0xd3,0xed,
0x63,0x82,0xc2,0x28,0xe1,0x86,0x25,0x8,0x91,0xa2,0x85,0x54,0x51,0xd0,0x0,0x38,
0x3,0xda,0xa5,0xae,0x93,0x3,0xff,0xd9,
// /home/erofeev/workspace.home/shlee5.3/chapter12/WidgetAndView/imgs/Linux.jpg
0x0,0x0,0x6,0xf2,
0xff,
0xd8,0xff,0xe0,0x0,0x10,0x4a,0x46,0x49,0x46,0x0,0x1,0x1,0x1,0x0,0xc8,0x0,
0xc8,0x0,0x0,0xff,0xdb,0x0,0x43,0x0,0x3,0x2,0x2,0x3,0x2,0x2,0x3,0x3,
0x3,0x3,0x4,0x3,0x3,0x4,0x5,0x8,0x5,0x5,0x4,0x4,0x5,0xa,0x7,0x7,
0x6,0x8,0xc,0xa,0xc,0xc,0xb,0xa,0xb,0xb,0xd,0xe,0x12,0x10,0xd,0xe,
0x11,0xe,0xb,0xb,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0xc,0xf,0x17,
0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x0,0x43,0x1,0x3,0x4,0x4,
0x5,0x4,0x5,0x9,0x5,0x5,0x9,0x14,0xd,0xb,0xd,0x14,0x14,0x14,0x14,0x14,
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,0x0,
0x11,0x8,0x0,0x30,0x0,0x28,0x3,0x1,0x22,0x0,0x2,0x11,0x1,0x3,0x11,0x1,
0xff,0xc4,0x0,0x1f,0x0,0x0,0x1,0x5,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,
0xb,0xff,0xc4,0x0,0xb5,0x10,0x0,0x2,0x1,0x3,0x3,0x2,0x4,0x3,0x5,0x5,
0x4,0x4,0x0,0x0,0x1,0x7d,0x1,0x2,0x3,0x0,0x4,0x11,0x5,0x12,0x21,0x31,
0x41,0x6,0x13,0x51,0x61,0x7,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x8,0x23,0x42,
0xb1,0xc1,0x15,0x52,0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x9,0xa,0x16,0x17,0x18,
0x19,0x1a,0x25,0x26,0x27,0x28,0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,
0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,
0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,
0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,
0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,
0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,
0xd7,0xd8,0xd9,0xda,0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,
0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xff,0xc4,0x0,0x1f,0x1,0x0,0x3,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,
0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x11,0x0,0x2,
0x1,0x2,0x4,0x4,0x3,0x4,0x7,0x5,0x4,0x4,0x0,0x1,0x2,0x77,0x0,0x1,
0x2,0x3,0x11,0x4,0x5,0x21,0x31,0x6,0x12,0x41,0x51,0x7,0x61,0x71,0x13,0x22,
0x32,0x81,0x8,0x14,0x42,0x91,0xa1,0xb1,0xc1,0x9,0x23,0x33,0x52,0xf0,0x15,0x62,
0x72,0xd1,0xa,0x16,0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,0x27,0x28,
0x29,0x2a,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,
0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,
0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe2,0xe3,
0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,
0xff,0xda,0x0,0xc,0x3,0x1,0x0,0x2,0x11,0x3,0x11,0x0,0x3f,0x0,0xfd,0x48,
0xd5,0xf5,0x5b,0x4d,0x7,0x4a,0xbc,0xd4,0xb5,0xb,0x84,0xb4,0xb0,0xb3,0x85,0xee,
0x2e,0x27,0x90,0xe1,0x63,0x8d,0x14,0xb3,0x31,0x3e,0x80,0x2,0x6b,0xf1,0xcf,0xf6,
0x99,0xff,0x0,0x82,0x9b,0x78,0xfb,0xe2,0x3f,0x89,0xf5,0x1d,0x37,0xc0,0x9a,0x9c,
0xfe,0x10,0xf0,0x84,0x4c,0xd1,0xdb,0xbd,0x8f,0xc9,0x79,0x72,0xb9,0xc0,0x92,0x49,
0x7e,0xf2,0x67,0xae,0xd4,0x23,0x19,0xc1,0x27,0xad,0x7e,0x84,0xff,0x0,0xc1,0x43,
0x3c,0x4d,0x71,0xe1,0x8f,0xd9,0x17,0xc7,0x72,0x5a,0xb9,0x8e,0x6b,0xd8,0xa0,0xb0,
0xdc,0xa7,0x9d,0xb2,0xcf,0x1a,0x38,0xfc,0x50,0xb0,0xfc,0x6b,0xf1,0x3d,0x7e,0xd,
0x78,0xdd,0x7c,0x12,0xfe,0x31,0x5f,0x9,0x6b,0x4b,0xe1,0x4d,0xd8,0x1a,0xd1,0xb4,
0x93,0xec,0xa3,0x9c,0x3,0xe6,0x63,0x18,0xcf,0x19,0xe9,0x9a,0xb8,0xdb,0xa9,0xb4,
0x1a,0x5a,0x9a,0x57,0x9f,0x1a,0xbc,0x7d,0x34,0x8d,0x77,0x2f,0x8d,0xb5,0xf9,0xa4,
0xc6,0xef,0x39,0xf5,0x49,0xd9,0xbe,0xb9,0xdd,0x9a,0xfa,0x27,0xe0,0x37,0xed,0x9,
0xfb,0x4d,0xf8,0x6f,0xc0,0x9a,0xc7,0xc4,0xf,0xf,0xea,0xba,0x8f,0x8a,0xfc,0xf,
0xe1,0xf9,0x96,0x2d,0x56,0x3d,0x62,0x61,0x78,0x91,0xfc,0xbb,0x9b,0x1,0xdb,0xcd,
0xa,0x1,0x4,0xb2,0x1e,0x32,0x9,0xe3,0x35,0xf3,0xf,0x81,0xfe,0x1e,0xeb,0xff,
0x0,0x11,0xf5,0xcb,0x2f,0xf,0x78,0x6b,0x49,0xb8,0xd6,0xb5,0x8b,0xb6,0x22,0xb,
0x4b,0x55,0xdd,0x23,0xe0,0x64,0x93,0xd8,0x0,0x32,0x49,0x38,0x3,0xbd,0x76,0x7f,
0x18,0x3e,0xc,0xfc,0x68,0xf8,0x2f,0xe1,0x9b,0x4d,0x33,0xc6,0x7a,0x16,0xbf,0xa0,
0x78,0x61,0xe7,0x67,0x82,0x16,0x9b,0x7d,0x89,0x9d,0x94,0x6e,0x39,0x8d,0x9a,0x3d,
0xec,0xaa,0x7,0x3c,0x90,0xbe,0xd5,0x7a,0x3d,0xd,0x5c,0xef,0xa3,0x67,0xec,0x57,
0xec,0xa7,0xfb,0x61,0xf8,0x6b,0xf6,0x9a,0xf0,0xca,0x4f,0x6c,0xa3,0x4c,0xd7,0xa0,
0x1,0x2f,0x34,0xd7,0x6c,0x98,0xdf,0xd5,0x4f,0xf1,0x29,0xea,0xf,0xf8,0x51,0x5f,
0x91,0x9f,0xb1,0x5f,0xc4,0x5b,0xbf,0x1,0x7c,0x64,0xd3,0x66,0xb6,0x9d,0xa3,0x4b,
0x84,0x64,0x95,0x32,0x40,0x6c,0x10,0xdc,0x8f,0x5e,0xf,0xe7,0x45,0x67,0x25,0xca,
0xf4,0x31,0x9c,0x52,0x7a,0x1f,0xaa,0xdf,0xf0,0x52,0x9b,0x7f,0x3f,0xf6,0x43,0xf1,
0x61,0xed,0x1d,0xc5,0x8b,0x9c,0xfa,0x7d,0xaa,0x21,0xfd,0x6b,0xc2,0xfc,0x39,0xf1,
0x8f,0xc5,0x29,0xe3,0x2d,0x47,0xc0,0x1e,0x22,0x8d,0xdb,0xe1,0x86,0xb7,0xe1,0xdb,
0x68,0x34,0x38,0x52,0xd6,0x2f,0xec,0xe1,0xa6,0x4f,0x60,0xeb,0x1b,0x7,0x9,0xbb,
0xcd,0x33,0x8,0xd3,0x96,0x39,0x25,0xc6,0xde,0x1,0x1f,0x45,0x7f,0xc1,0x42,0xad,
0x5,0xe7,0xec,0x81,0xf1,0x4,0x15,0x2c,0x23,0x86,0xda,0x52,0x7,0xa2,0xdd,0x42,
0x4f,0xf2,0xaf,0x97,0xff,0x0,0x66,0xdf,0x89,0xfe,0x1,0xf1,0x7,0xc3,0xad,0x3e,
0xcb,0xc3,0xd2,0xc3,0xa4,0xb6,0x9f,0x1a,0xc3,0x3e,0x9f,0x7b,0x2a,0xac,0xe8,0xc0,
0x7d,0xee,0x4f,0xcc,0x9,0xc9,0xdd,0xfc,0xb1,0x8a,0xf9,0x5c,0xff,0x0,0x36,0xab,
0x94,0x61,0xbd,0xb5,0x1a,0x4e,0x6d,0xbb,0x79,0x2f,0x37,0xd7,0xd0,0xf6,0xf2,0x8c,
0xbe,0x19,0x85,0x5f,0x67,0x39,0xf2,0xdb,0xef,0x7e,0x87,0x1b,0xfb,0x29,0x78,0x37,
0xc5,0x3f,0xb3,0x1e,0x81,0xf1,0x77,0xc4,0x77,0x5a,0x45,0xaa,0xf8,0xea,0x2f,0xe,
0xee,0xd0,0x13,0xcc,0x8e,0x72,0xc7,0x79,0xf3,0x36,0xaa,0x93,0x92,0x31,0x1b,0x63,
0xbe,0xdc,0x77,0xae,0x87,0xc2,0x9f,0xb4,0x16,0xa9,0xfb,0x52,0xfe,0xc8,0x1f,0x19,
0x74,0xdf,0x1e,0x5d,0x8b,0xa9,0xf4,0x2d,0x7,0xed,0x52,0xdc,0xdd,0x47,0x14,0x7b,
0x6f,0x55,0xd9,0xed,0xcc,0x5b,0x42,0x9f,0x9c,0xa0,0x5,0x48,0xe1,0x87,0x7,0xf,
0xb4,0x7a,0xcb,0x7c,0x42,0xf0,0xe8,0xb8,0x36,0xb0,0xea,0x90,0xea,0x77,0x80,0x64,
0xda,0x69,0xc7,0xed,0x53,0x7e,0x2b,0x1e,0xe2,0x7,0xb9,0xc0,0xaf,0x10,0xfd,0xa2,
0x3c,0x25,0xa2,0x78,0x93,0xe1,0x7f,0xc4,0x1f,0x13,0x5e,0xf8,0x36,0xc6,0xc5,0x74,
0x8b,0x38,0x81,0xbe,0x13,0x44,0xba,0x82,0xdd,0x4b,0x20,0x48,0x7c,0xc4,0x88,0x9c,
0x21,0x24,0x1c,0x3b,0x12,0x70,0x7e,0x51,0x8a,0xf9,0xbc,0x9f,0x8a,0xf1,0x58,0xca,
0xb1,0xa3,0x8a,0xc3,0x3b,0xbb,0x6b,0x1d,0x3c,0xaf,0x67,0xab,0x5e,0x8f,0x44,0x7b,
0x79,0x86,0x45,0x43,0xf,0x7,0x52,0x8d,0x5d,0xba,0x3f,0xf3,0x5f,0xa9,0xf0,0x6f,
0xc2,0xd9,0xe6,0xd3,0xfc,0x6b,0xa5,0x49,0xb,0xed,0x90,0xc8,0x51,0x49,0x51,0x92,
0xa,0xb0,0xe6,0x8a,0xd9,0xb0,0xf8,0x6d,0xe2,0x8f,0xa,0x68,0x5e,0x1f,0xf1,0xfd,
0xc6,0x85,0x77,0x27,0x84,0xee,0xa7,0x21,0x35,0x38,0x57,0xcd,0x80,0x6c,0x93,0x64,
0x91,0xc8,0xcb,0x91,0x1b,0x70,0x70,0xad,0x82,0x41,0x4,0x70,0x68,0xaf,0xd5,0x1c,
0xed,0xb2,0x3e,0x3d,0xcb,0x5d,0xf,0xd4,0xdf,0xdb,0x8b,0xe3,0x1d,0xd7,0xc4,0x9f,
0x15,0x69,0x3f,0xb3,0x77,0x81,0x76,0xde,0xf8,0x83,0xc4,0x73,0xc2,0x9a,0xdd,0xd2,
0x8d,0xcb,0x63,0x6f,0xb8,0x49,0xb0,0xfa,0x1d,0xab,0xbd,0xbd,0x14,0x63,0xab,0x71,
0xc5,0x7e,0xd0,0xbf,0xb1,0x4e,0xb9,0xf0,0x77,0x5a,0xb3,0xf1,0x87,0xc1,0x6f,0xa,
0x58,0x78,0x97,0x4a,0x96,0xd6,0x2b,0x4d,0x63,0xc2,0xd7,0x76,0x8b,0x73,0xbe,0x44,
0x1b,0x45,0xcc,0x68,0x79,0x3b,0xbf,0x88,0x21,0x4,0x1c,0x9c,0x10,0x4e,0x38,0xcf,
0xf8,0x25,0x3d,0xbd,0xdf,0x8b,0xbe,0x38,0xfc,0x41,0xf1,0x66,0xb6,0x27,0xd4,0xb5,
0x55,0xd3,0xb2,0xda,0x95,0xc0,0x2e,0x4c,0xb3,0x4c,0x19,0xc9,0x73,0xfc,0x4d,0xb4,
0xfe,0x19,0xed,0x5f,0xa8,0xd5,0xc5,0x56,0x94,0x2b,0x41,0xd3,0xa8,0xae,0x99,0x94,
0x6a,0x4a,0x94,0xd4,0xa0,0xec,0xd1,0xf0,0x97,0xc0,0x3f,0xd9,0xc7,0xe2,0x8f,0xc4,
0x8b,0x2f,0xb6,0x78,0xfd,0x20,0xf8,0x55,0xe1,0x92,0xf9,0x5f,0xf,0x78,0x6a,0xdd,
0x6d,0x6f,0x6e,0xc7,0x7f,0x32,0x4f,0x99,0xa1,0x5e,0xdc,0x10,0xc7,0xd1,0x78,0x35,
0xf4,0xae,0xb5,0xfb,0x30,0x7c,0x3c,0xd4,0x7e,0x12,0x78,0x8b,0xe1,0xed,0x96,0x81,
0x6d,0xa3,0xe8,0xba,0xe4,0x3b,0x2e,0xa4,0xb5,0x5f,0xdf,0xbc,0xa3,0x5,0x26,0x79,
0x1b,0x2d,0x23,0xab,0x5,0x60,0x5c,0x9e,0x45,0x7a,0xc5,0x15,0x86,0x1f,0x7,0x87,
0xc2,0x26,0xa8,0x41,0x46,0xfd,0xba,0xfa,0xbd,0xd9,0x55,0xb1,0x15,0xb1,0xe,0xf5,
0x64,0xdd,0xbe,0xe5,0xe8,0xba,0x1f,0x80,0x5f,0x15,0xa4,0xf8,0x91,0xfb,0x39,0x6a,
0x3e,0x39,0xf8,0x2b,0x75,0xaf,0xdc,0xa7,0x87,0xde,0xed,0x7e,0xdd,0x62,0x9f,0xea,
0x2e,0xd1,0x4a,0x49,0x14,0xca,0xe,0x4a,0xee,0x51,0x1b,0x7c,0xa4,0x13,0xc0,0x39,
0xc5,0x15,0xf5,0xf7,0xfc,0x15,0xcf,0xe0,0xad,0xdb,0xf8,0xa3,0xc2,0x7f,0x11,0x6c,
0x2d,0xb,0x59,0xdd,0xc4,0x34,0x7b,0xf9,0x23,0x5f,0xbb,0x32,0xb3,0x34,0x25,0xbf,
0xde,0x56,0x65,0x7,0xfe,0x99,0x81,0xe9,0x45,0x7a,0x6b,0x54,0x35,0x2b,0x9f,0xff,
0xd9,
};
static const unsigned char qt_resource_name[] = {
// Windows.jpg
0x0,0xb,
0x6,0x5a,0x58,0x7,
0x0,0x57,
0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x73,0x0,0x2e,0x0,0x6a,0x0,0x70,0x0,0x67,
// Android.jpg
0x0,0xb,
0x5,0x67,0xc6,0x47,
0x0,0x41,
0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x2e,0x0,0x6a,0x0,0x70,0x0,0x67,
// MacOSX.jpg
0x0,0xa,
0x4,0x81,0x3e,0x67,
0x0,0x4d,
0x0,0x61,0x0,0x63,0x0,0x4f,0x0,0x53,0x0,0x58,0x0,0x2e,0x0,0x6a,0x0,0x70,0x0,0x67,
// Linux.jpg
0x0,0x9,
0x5,0xcb,0xf7,0x67,
0x0,0x4c,
0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x78,0x0,0x2e,0x0,0x6a,0x0,0x70,0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/MacOSX.jpg
0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x30,0xeb,
0x0,0x0,0x1,0x45,0xe,0x80,0x79,0xc0,
// :/Android.jpg
0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x17,0xff,
0x0,0x0,0x1,0x45,0xe,0x7f,0x29,0xd0,
// :/Linux.jpg
0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4c,0xb8,
0x0,0x0,0x0,0xf2,0x3f,0x63,0x4c,0xf0,
// :/Windows.jpg
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x45,0xe,0x97,0x7c,0x60,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_resource)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_resource)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x02, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resource)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resource)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x02, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_resource)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resource)(); }
} dummy;
}
| [
"2@me.com"
] | 2@me.com |
9dc61df8f4a642099bcc67e7ea171d4a5e494d4f | 6219eefa013c2dbd6492a9a662bfe3853b976664 | /src/cd-parse.cpp | 2d4b182bb6b279051fabdf2292a874e895592f18 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Roare/vms-cd-new | b25de979fd6206cd4b3fd47c41a207c48b37deaa | c7154fe544b625ec678d30b3665a4078ff07a326 | refs/heads/main | 2023-02-13T15:18:52.899971 | 2021-01-18T03:53:12 | 2021-01-18T03:53:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,079 | cpp | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set ts=8 sts=4 et sw=4 tw=80: */
/*
* Ported from VAX MACRO to C++ by Jake Hamby <jake.hamby@gmail.com>.
* Original source code in [.orig-src].
*/
#define __NEW_STARLET 1
#include "cd.h"
#include "vms-file-ops.h"
#include "vms-get-info.h"
#include "vms-quiet-setprv.h"
#include "vms-sys-command-io.h"
#include "vms-table-parser.h"
#include <inttypes.h>
#include <string.h>
#include <gen64def.h>
#include <lib$routines.h>
#include <rms.h>
#include <ssdef.h>
#include <starlet.h>
/* Import state table references. */
#define state_table_0 STATE_TABLE_0
#define key_table_0 KEY_TABLE_0
extern uint32_t *state_table_0;
extern uint32_t *key_table_0;;
/* Define global variables and action routines referenced by table parser. */
// Convert the names to uppercase in case we do case-sensitive linking.
#define do_op DO_OP
#define fmt_node_dev FMT_NODE_DEV
#define is_logical IS_LOGICAL
#define is_personal_id IS_PERSONAL_ID
#define switches SWITCHES
#define retsts RETSTS
#define retstv RETSTV
extern "C" {
int do_op(TableParser &parser);
int fmt_node_dev(TableParser &parser);
int is_logical(TableParser &parser);
int is_personal_id(TableParser &parser);
uint32_t switches;
uint32_t retsts; // return status
uint32_t retstv; // return status value (used by CD_IVIDENT)
}
int fmt_node_dev(TableParser &parser) {
return SS$_BUGCHECK;
}
int is_logical(TableParser &parser) {
return SS$_BUGCHECK;
}
int is_personal_id(TableParser &parser) {
return SS$_BUGCHECK;
}
/* Local constants and macros */
// do_op() opcodes: these must match the values in cdparse_table.mar.
enum opcode {
OP_C_BSL = 1, // '\<eos>' and '/<eos>' processing
OP_C_RST = 2, // reset parser to top of string
OP_C_DOL = 3, // '$<eos>' processing
OP_C_DD = 4, // '..' --> '-' processing
OP_C_DEV = 5, // devnam extraction
OP_C_BRI = 6, // '['..']' add w/insert
OP_C_BRO = 7, // '['..']' add w/overwrite
OP_C_BDI = 8, // '[.'..']' add w/insert
OP_C_DOT = 9, // change something at current token to '.'
OP_C_DEL = 10, // Deletes current char
OP_C_RMV = 11, // Deletes present parse position to beginning of line
OP_C_BCK = 12, // Back parser up one char
OP_C_AT = 13, // code for username lookup
OP_C_PND = 14, // '#<eos>' processing
OP_C_SCF = 15, // Store Command File
OP_C_NOD = 16, // nodnam extraction
OP_C_UPC = 17, // Force accepted token uppercase & back up the parser
OP_C_FID = 18, // Cvt/UnCvt to/from FIDded specification
OP_C_PAR = 19 // Force use of parent DID for current dir
};
/*** Switch flags (must match definitions in cdparse_table.mar). ***/
static const int SW_M_LOG = 1 << 0;
static const int SW_M_VERIFY = 1 << 1;
static const int SW_M_FULL = 1 << 2;
static const int SW_M_COM = 1 << 3;
static const int SW_M_INHIBIT = 1 << 4;
static const int SW_M_PARTIAL = 1 << 5;
static const int SW_M_AUTO_ANSWER = 1 << 6;
static const int SW_M_COM_FSPEC = 1 << 7;
static const int SW_M_NO_ARGS_HOME = 1 << 8;
static const int SW_M_CSH_HISTORY = 1 << 9;
static const int SW_M_CSH_PUSHD = 1 << 10;
static const int SW_M_CSH_POPD = 1 << 11;
static const int SW_M_VERSID = 1 << 12;
static const int SW_M_NO_INHIBIT = 1 << 13;
static const int SW_M_TRACE = 1 << 14;
/*** Use dynamic string descriptors for string handling. ***/
// Primary translation buffer (Holds cmd string segment being parsed/executed)
static DynamicStringDesc buffer;
static DynamicStringDesc node_name; // holds node name
static DynamicStringDesc device_name; // holds device name
static DynamicStringDesc command_file; // command file
STATIC_FIXED_STRING_DESC(username, 12); // always 12 characters
/* Static string descriptors used by the code. */
static StaticStringDesc sys_command( C_STR_INIT("SYS$COMMAND"));
static StaticStringDesc lnm_file_dev( C_STR_INIT("LNM$FILE_DEV"));
static StaticStringDesc cd_ident( C_STR_INIT("CDI_"));
static StaticStringDesc dash( C_STR_INIT("-"));
static StaticStringDesc left_br_dot( C_STR_INIT("[."));
static StaticStringDesc left_br( C_STR_INIT("["));
static StaticStringDesc right_br( C_STR_INIT("]"));
static StaticStringDesc dir_delimiters( C_STR_INIT("./\\"));
static StaticStringDesc root( C_STR_INIT("[000000]"));
static StaticStringDesc previous_dir( C_STR_INIT("LAST_DEFAULT_DIRECTORY"));
static StaticStringDesc previous_dir_0( C_STR_INIT("CD$0"));
static StaticStringDesc stack_dir( C_STR_INIT("CD$!UL")); // CD$0...CD$9
static StaticStringDesc default_image( C_STR_INIT("CD_USER"));
static StaticStringDesc default_symbol( C_STR_INIT("CD_PROCESS"));
static StaticStringDesc did_format( C_STR_INIT("[!UL,!UL,!UL]"));
static StaticStringDesc star_star_dir( C_STR_INIT("sys$disk:[]*.dir;1"));
static StaticStringDesc buffer_trace( C_STR_INIT("Trace: !AS"));
/* TODO: these strings should be loaded from the message library. */
//static StaticStringDesc not_defined, "not defined");
//static StaticStringDesc select_prompt, "_Selection: ");
//static StaticStringDesc exit_announce, "\x1b[7mExit\x1b[m");
//static StaticStringDesc quit_announce, "\x1b[7mQuit\x1b[m");
//static StaticStringDesc yes_no_prompt, " ? (Y/N/Q) [N]: ");
/*** Define function prototypes for cd_parse(). ***/
/**
* Helper to call the table parser for a single argument, which has
* been copied to the buffer by cd_parse(). The action handlers for
* the parser will manipulate the buffer, so it's simpler to make it
* a static global variable. (Everything in this file could be turned
* into a class, but it probably wouldn't add much value.)
*/
int cd_parse_helper() {
int status = lib$put_output(&buffer); // debug
// clear node name, device name
node_name.clear();
device_name.clear();
TableParser parser(buffer);
if (false) {
status = parser.parse(state_table_0,
key_table_0);
}
status = lib$put_output(&buffer); // debug
int err_msgvec[] = { 2, status, 0 };
status = sys$putmsg(err_msgvec, 0, 0, 0); // debug
return status;
}
/**
* Parse the command line arguments with the help of lib$table_parse().
* The state machine action handlers will do most of the work.
*/
int cd_parse(int argc, char *argv[], struct cd_parse_results &results) {
int status;
READALL(0); // disable READALL if we have it
// DEBUG only: print current directory
FIXED_STRING_DESC(curdir, 4096);
status = Filesystem::get_current_directory(curdir);
int err_msgvec[] = { 2, status, 0 };
status = sys$putmsg(err_msgvec, 0, 0, 0);
lib$put_output(&curdir);
// DEBUG end
// iterate over the args
for (int i = 1; i < argc; ++i) {
// copy the arg to the shared buffer, so we can manipulate it
buffer.assign(argv[i]);
// look for "@" or "~" to split into two pieces (first, change to
// the specified home directory, then proceed from there). This is
// how CD V6.0A works (outside of the table parser), and it does
// seem to simplify the logic of the parser helper.
if (buffer[0] == '@' || buffer[0] == '~') {
// helper method returns 0-based position to avoid confusion.
int split_pos = buffer.find_first_in(dir_delimiters);
if (split_pos > 0) {
buffer.truncate(split_pos);
status = cd_parse_helper();
ERRCHK_RETURN(status);
buffer.assign(argv[i] + split_pos + 1);
// fallthrough to parse second half
}
}
// the buffer may be empty for, e.g. "~/"
if (buffer.length() != 0) {
status = cd_parse_helper();
}
ERRCHK_RETURN(status);
}
// print final messages and set return flags
// results.flags = RESULT_LAUNCH_HELP;
return SS$_NORMAL;
}
/*** Local helper functions for do_op(). ***/
/* print dollar translation */
static int print_dollar_translation(void) {
// TODO
return SS$_BUGCHECK;
}
/* ask user to select choice for `CD$*`. */
static int get_dollar_choice(void) {
// acc_syscom
// prt_dol_tran
// get_syscom_num_r5
// deacc_syscom
return SS$_BUGCHECK;
}
/* helper for OP_C_DOL handler. */
/* helper for OP_C_PND handler. */
static void dol_dmp_prev(int digit) {
}
/**
* TPARSE action routines: Perform an operation by operation number.
*/
int do_op(TableParser &parser) {
int status = SS$_NORMAL; // initialize to success
// switch on the opcode passed from our state table.
// cases are reordered slightly from the MACRO version,
// to match the order of the enums, and without goto.
switch (parser.user_param()) {
// 1. '\<eos>' or '/<eos>'
case OP_C_BSL:
buffer.assign(root); // copy '[000000]'
parser.reset(buffer);
break;
// 2. reset operation
case OP_C_RST:
parser.reset(buffer);
break;
// 3. '$[n]<eos>'
case OP_C_DOL: {
// back up 1 char to get the digit
char digit = *(parser.next_char_ptr() - 1);
parser.reset(buffer);
// TODO: finish me
return lib$stop(SS$_BUGCHECK); // stop and signal an error
break;
}
// 4. convert '..' --> '-'
case OP_C_DD: {
size_t dd_pos = parser.position(buffer) - 2; // point to '..'
buffer[dd_pos++] = '-'; // replace with '-' and advance
buffer.slide_left_at(1, dd_pos + 1); // slide back a char
parser.reset(buffer, dd_pos); // update parser pointers
break;
}
// 5. copy token to dev name
case OP_C_DEV: {
// copy device name, including ':'
size_t name_length = parser.position(buffer);
device_name.assign(buffer.buf_ptr(), name_length);
// slide string back and reset parser
buffer.slide_left(name_length);
parser.reset(buffer);
break;
}
// 6. '['..']' add w/insert
case OP_C_BRI: {
buffer.prefix_with(left_br);
buffer.append(right_br);
parser.reset(buffer);
break;
}
// 7. '['..']' add w/overwrite
case OP_C_BRO: {
buffer.prefix_with(left_br);
buffer.append(right_br);
parser.reset(buffer);
break;
}
// 8. '[.'..']' add w/insert
case OP_C_BDI: {
buffer.prefix_with(left_br_dot);
buffer.append(right_br);
parser.reset(buffer);
break;
}
// 9. '$[n]<eos>'
case OP_C_DOT: {
// TODO: finish me
return lib$stop(SS$_BUGCHECK); // stop and signal an error
break;
}
// 10. Deletes current char
case OP_C_DEL: {
size_t pos = parser.position(buffer);
buffer.slide_left_at(1, pos);
parser.reset(buffer, pos); // Note: just in case buffer moved
break;
}
// 11. Deletes present parse position to beginning of line
case OP_C_RMV:
break;
// 12. Back parser up one char (known to exist)
case OP_C_BCK: {
parser.rewind_by(1);
break;
}
// 13. '@username<eos>' or '~username<eos>'
case OP_C_AT:
// look up sys$login for our own user, or another user
break;
// 14. '#{n|*}<eos>' (the {} is forced by the tparse table)
case OP_C_PND: {
// back up 1 char to get the digit (or *)
char digit = *(parser.next_char_ptr() - 1);
// go try to get translation
dol_dmp_prev(digit);
break;
}
// 15. store command filename
case OP_C_SCF:
command_file.assign(parser.token_ptr(), parser.token_length());
break;
// 16. node_name extraction
case OP_C_NOD: {
// copy node name, including '::'
size_t name_length = parser.position(buffer);
node_name.assign(buffer.buf_ptr(), name_length);
// slide string back and reset parser
buffer.slide_left(name_length);
parser.reset(buffer);
break;
}
// 17. make current token uppercase & back up the parser
case OP_C_UPC: {
size_t token_length = parser.token_length();
// make static descriptor for uppercasing substring
StaticStringDesc token(token_length, parser.token_ptr());
status = str$upcase(&token, &token); // uppercase in place
parser.rewind_by(token_length);
break;
}
// 18. Cvt/UnCvt to/from FIDded specification
case OP_C_FID:
break;
// 19. Force use of parent DID for current dir
case OP_C_PAR:
break;
default:
return lib$stop(SS$_BUGCHECK); // stop and signal an error
}
return status; // return any previous failure, or SS$_NORMAL
}
| [
"jake.hamby@gmail.com"
] | jake.hamby@gmail.com |
e84be9546240568a9c59e08dc5cbb91b45eff051 | 47ba2d98dda33c0a4ed825ef116c9b664c60af1d | /branch.cpp | e3311ec4b090ecaf91ee68a25567e735f116f2e9 | [] | no_license | TechieDheeraj/vehicleRentalService | 034bb150f22218b660b23bc2568610b8e982be27 | 14aab9a7bfb4e44db622287bd53bba9839a84626 | refs/heads/main | 2023-07-15T20:12:01.123021 | 2021-08-28T10:09:19 | 2021-08-28T10:09:19 | 400,759,072 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 322 | cpp | #include"vehicle.h"
#include"branch.h"
void Branch::allocatePrice(VehicleType vType, int price) {
pricesMap[vType] = price;
}
void Branch::addVehicle(std::string& plate_number, VehicleType vType) {
Vehicle *vObj = new Vehicle(plate_number, vType);
vehicleInfo[vType].push_back(vObj); // adding vehicle to branch
}
| [
"dheeraj.embdeveloper@gmail.com"
] | dheeraj.embdeveloper@gmail.com |
058005a73ae594f1dc719f7d36f9e86b056acae6 | a6a53e20b3ec874c12e4eba87a4deb2fee58d835 | /BoundingObjectManager/W9R_BoundingSphereDEMO/AppClass.cpp | acf5c5e0d8173bc8ead5ff32877c872ea636aec6 | [] | no_license | 1red2blue4/DarkSOLZHomeWorkAssignments | cd717ab8a475ef92969cc274c2d06283a242cbd3 | 0a316071a405225e72e6c84c7b4d7bdf2edcb3b9 | refs/heads/master | 2021-01-20T00:11:28.263542 | 2017-05-09T18:02:14 | 2017-05-09T18:02:14 | 89,092,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,211 | cpp | #include "AppClass.h"
void AppClass::InitWindow(String a_sWindowName)
{
super::InitWindow("Bounding Spheres DEMO");
}
void AppClass::InitVariables(void)
{
//Set the camera position
m_pCameraMngr->SetPositionTargetAndView(
vector3(0.0f, 2.5f, 15.0f),//Camera position
vector3(0.0f, 2.5f, 0.0f),//What Im looking at
REAXISY);//What is up
//Load a model onto the Mesh manager
m_pMeshMngr->LoadModel("Minecraft\\Zombie.obj", "Zombie");
m_pMeshMngr->LoadModel("Minecraft\\Steve.obj", "Steve");
m_pMeshMngr->LoadModel("Minecraft\\Cow.obj", "Cow");
m_boMngr = BoundingObjectManager::GetInstance();
m_boMngr->MakeNewBoundingObject(m_pMeshMngr->GetVertexList("Zombie"));
m_boMngr->MakeNewBoundingObject(m_pMeshMngr->GetVertexList("Steve"));
m_boMngr->MakeNewBoundingObject(m_pMeshMngr->GetVertexList("Cow"));
//creating bounding spheres for both models
//m_pBS0 = new MyBoundingObjectClass(m_pMeshMngr->GetVertexList("Zombie"));
//m_pBS1 = new MyBoundingBoxClass(m_pMeshMngr->GetVertexList("Steve"));
//m_pBS2 = new MyBoundingBoxClass(m_pMeshMngr->GetVertexList("Cow"));
//m_pBSTest = new MyBoundingBoxClass(m_pMeshMngr->GetVertexList("Zombie"));
}
void AppClass::Update(void)
{
//Update the system's time
m_pSystem->UpdateTime();
//Update the mesh manager's time without updating for collision detection
m_pMeshMngr->Update();
//First person camera movement
if (m_bFPC == true)
CameraRotation();
//Call the arcball method
ArcBall();
matrix4 m4Position = glm::translate(vector3(3.0f, 0.0f, 0.0f));
m_pMeshMngr->SetModelMatrix(m4Position, "Steve");
//m_pBS1->SetModelMatrix(m_pMeshMngr->GetModelMatrix("Steve"));
matrix4 m4Position2 = glm::translate(vector3(0.0f, 3.0f, 0.0f));
m_pMeshMngr->SetModelMatrix(m4Position2, "Cow");
//m_pBS2->SetModelMatrix(m_pMeshMngr->GetModelMatrix("Cow"));
//Object Movement
static float fTimer = 0.0f;
static int nClock = m_pSystem->GenClock();
float fDeltaTime = static_cast<float>(m_pSystem->LapClock(nClock));
fTimer += fDeltaTime;
static vector3 v3Start = vector3(3.0, 0.0, 0.0);
static vector3 v3End = vector3(5.0, 0.0, 0.0);
float fPercentage = MapValue(fTimer, 0.0f, 3.0f, 0.0f, 1.0f);
vector3 v3Current = glm::lerp(v3Start, v3End, fPercentage);
matrix4 mTranslation = glm::translate(v3Current);
//set the translate to create the transform matrix
matrix4 m4Transform = glm::translate(m_v3Position) * ToMatrix4(m_qArcBall);
matrix4 m4JustRotation = ToMatrix4(m_qArcBall);
matrix4 m4NoRotTransform = glm::translate(m_v3Position);
m_pMeshMngr->SetModelMatrix(m4Transform, "Zombie"); //set the matrix to the model
//m_pBS0->SetModelMatrix(m_pMeshMngr->GetModelMatrix("Zombie"));
//m_pBS0->GetBoundingBox()->FindOrthoBox(m_qArcBall);
//m_pBS0->Render();//render the bounding sphere
//set matrices and render
m_pMeshMngr->SetModelMatrix(mTranslation, "Steve");
//m_pBS1->SetModelMatrix(m_pMeshMngr->GetModelMatrix("Steve"));
//m_pBS1->Render();
//m_pBS2->SetModelMatrix(m_pMeshMngr->GetModelMatrix("Cow"));
//m_pBS2->Render();
//m_pBS0->GetBoundingBox()->SetColliding(false);
//m_pBS1->SetColliding(false);
//m_pBS2->SetColliding(false);
/*
if (m_pBS0->GetBoundingBox()->IsColliding(m_pBS1))
{
m_pBS0->GetBoundingBox()->SetColliding(true);
m_pBS1->SetColliding(true);
}
if (m_pBS0->GetBoundingBox()->IsColliding(m_pBS2))
{
m_pBS0->GetBoundingBox()->SetColliding(true);
m_pBS2->SetColliding(true);
}
if (m_pBS1->IsColliding(m_pBS2))
{
m_pBS1->SetColliding(true);
m_pBS2->SetColliding(true);
}
*/
//bounce back and forth
if (fPercentage > 1.0f)
{
fTimer = 0.0f;
std::swap(v3Start, v3End);
}
//render the bounding boxes
m_boMngr->SetAllMatrices({ m_pMeshMngr->GetModelMatrix("Zombie"), m_pMeshMngr->GetModelMatrix("Steve"), m_pMeshMngr->GetModelMatrix("Cow") });
m_boMngr->CheckAllCollisions();
m_boMngr->CheckRotation(m_qArcBall, 0);
m_boMngr->RenderAll();
//Adds all loaded instance to the render list
m_pMeshMngr->AddSkyboxToRenderList();
m_pMeshMngr->AddInstanceToRenderList("ALL");
//Indicate the FPS
int nFPS = m_pSystem->GetFPS();
m_pMeshMngr->PrintLine("");//Add a line on top
m_pMeshMngr->PrintLine(m_pSystem->GetAppName(), REYELLOW);
/*
//draw UI
m_pMeshMngr->Print("Center: (");
m_pMeshMngr->Print(std::to_string(m_pBS0->GetCenterGlobal().x), RERED);
m_pMeshMngr->Print(" , ");
m_pMeshMngr->Print(std::to_string(m_pBS0->GetCenterGlobal().y), RERED);
m_pMeshMngr->Print(" , ");
m_pMeshMngr->Print(std::to_string(m_pBS0->GetCenterGlobal().z), RERED);
m_pMeshMngr->PrintLine(")");
*/
m_pMeshMngr->Print("FPS:");
m_pMeshMngr->Print(std::to_string(nFPS), RERED);
}
void AppClass::Display(void)
{
//clear the screen
ClearScreen();
//Render the grid based on the camera's mode:
m_pMeshMngr->AddGridToRenderListBasedOnCamera(m_pCameraMngr->GetCameraMode());
m_pMeshMngr->Render(); //renders the render list
m_pMeshMngr->ClearRenderList(); //Reset the Render list after render
m_pGLSystem->GLSwapBuffers(); //Swaps the OpenGL buffers
}
void AppClass::Release(void)
{
//SafeDelete(m_pBS0);
//SafeDelete(m_pBS1);
//SafeDelete(m_pBS2);
super::Release(); //release the memory of the inherited fields
m_boMngr->ReleaseInstance();
} | [
"Mark Obeldobel"
] | Mark Obeldobel |
0bb1450f3da23ee5ee259bba55fcb2c07803d0ad | a3dfb25a8ad9064a396ef132266ac296bdf81d78 | /nwerc2012/practice/10048-audiophobia-floydwarshall.cpp | 63aa554579a173a7ffb572fa493f17c7affc5a4e | [] | no_license | stefansundin/hax | c31cb9d2738f03450d8f78e6ee377fe790d20373 | 4da24144a68ad55afb79bf7df4a200d9da244ae7 | refs/heads/master | 2020-05-21T14:52:48.980653 | 2018-04-27T02:33:27 | 2018-04-27T02:33:27 | 59,928,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,004 | cpp | #include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
int AdjMat[110][110];
#define INF 1000000000
void reset() {
for (int i=0; i < 110; i++) {
for (int j=0; j < 110; j++) {
AdjMat[i][j] = INF;
}
}
}
int main() {
for (int n=1; 1; n++) {
int c,s,q;
scanf("%d %d %d", &c,&s,&q);
if (c == 0 && s == 0 && q == 0) break;
reset();
while (s--) {
int c1,c2,d;
scanf("%d %d %d", &c1,&c2,&d);
c1--; c2--;
AdjMat[c1][c2] = d;
AdjMat[c2][c1] = d;
}
for (int k=0; k < c; k++) {
for (int i=0; i < c; i++) {
for (int j=0; j < c; j++) {
AdjMat[i][j] = min(AdjMat[i][j], max(AdjMat[i][k],AdjMat[k][j]));
}
}
}
if (n > 1) printf("\n");
printf("Case #%d\n", n);
while (q--) {
int c1,c2;
scanf("%d %d", &c1,&c2);
c1--; c2--;
if (AdjMat[c1][c2] < INF) {
printf("%d\n", AdjMat[c1][c2]);
}
else {
printf("no path\n");
}
}
}
}
| [
"git@stefansundin.com"
] | git@stefansundin.com |
1716b17955b0abadd5383c7908209482b66ace68 | 3bf91b10c47d677ac6caf121eeb4d1ead8d2b561 | /src/helium/system/socketMessageSpooler.cpp | 664d387036b6be4c6dfa727efcca8bd8322278ea | [] | no_license | fabiodl/helium | 8d9dea1e433973632199ea10a5bf54b6a3741afe | fe8f58eb55e033c596d66e377dc808c46ca0dfce | refs/heads/master | 2020-12-06T15:09:29.227558 | 2020-03-10T07:48:28 | 2020-03-10T07:48:28 | 67,750,827 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,607 | cpp | /*!
* \brief libhelium
* \author Fabio Dalla Libera
* \date 2012.07.01
* \version 0.2
* Release_flags s
*/
#include <helium/system/socketMessageSpooler.h>
namespace helium{
SocketMessageSpooler::SocketMessageSpooler(NetSocket& psocket
#ifdef LOGCELLSERVER
,BasicLog& pslog
#endif
):
socket(psocket),running(false)
#ifdef LOGCELLSERVER
,slog(pslog)
#endif
{
attachPort(defaultPort);
start();
}
void SocketMessageSpooler::run(){
running=true;
while(true){
DataReference d;
pop(d);
if (!running) break;
sockSend(socket,**d);
#ifdef LOGCELLSERVER
slog<<getSystemMillis()<<"s "<<**d<<std::endl;
#endif
}
#ifdef LOGCELLSERVER
//slog<<this<<"dead"<<std::endl;
#endif
}
SocketMessageSpooler::~SocketMessageSpooler(){
running=false;
defaultPort<<"END";//fake message for assuring termination
join();
for (std::map<int,Port*>::iterator it=activePorts.begin();it!=activePorts.end();it++){
delete it->second;
}
}
SocketMessageSpooler::Port& SocketMessageSpooler::getPort(Cell* target){
int p=target->getProperties()==NULL?-1:target->getProperties()->getPreferredPort();
std::map<int,SocketMessageSpooler::Port*>::iterator it;
if ((it=activePorts.find(p))==activePorts.end()){
SocketMessageSpooler::Port* commport=new SocketMessageSpooler::Port();
attachPort(*commport);
//std::cout<<"created port "<<p<<std::endl;
std::pair<std::map<int,SocketMessageSpooler::Port*>::iterator,bool> ii=activePorts.insert(std::make_pair(p,commport));
it=ii.first;
}
return *(it->second);
}
}
| [
"fabiodl@gmail.com"
] | fabiodl@gmail.com |
562172b0d517632fb37aba39e4d174ae48b77276 | 0b5ef83fe2e9c34a01e51d6b0798241068c12e9e | /prims - Copy.cpp | 2441e3e2aa867c25acde5d9fcbd9879df3582959 | [] | no_license | Shiva1405/C-_codes | cc3f8c1cdd88c3f58660ce01e1f814e5430ee9a1 | 44d65a9ebe1b4020a92a2cb9b20c3c798ae2f8ae | refs/heads/master | 2023-03-18T13:48:23.990136 | 2021-03-11T08:00:35 | 2021-03-11T08:00:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,704 | cpp | #include<stdio.h>
#include<stdlib.h>
#define infinity 9999
#define MAX 20
int G[MAX][MAX],spanning[MAX][MAX],n;
int prims();
int main()
{
int i,j,total_cost;
printf("Enter no. of vertices:");
scanf("%d",&n);
printf("\nEnter the adjacency matrix:\n");
for(i=0;i<n;i++)
for(j=0;j<n;j++)
scanf("%d",&G[i][j]);
total_cost=prims();
printf("\nspanning tree matrix:\n");
for(i=0;i<n;i++)
{
printf("\n");
for(j=0;j<n;j++)
printf("%d\t",spanning[i][j]);
}
printf("\n\nTotal cost of spanning tree=%d",total_cost);
return 0;
}
int prims()
{
int cost[MAX][MAX];
int u,v,min_distance,distance[MAX],from[MAX];
int visited[MAX],no_of_edges,i,min_cost,j;
//create cost[][] matrix,spanning[][]
for(i=0;i<n;i++)
for(j=0;j<n;j++)
{
if(G[i][j]==0)
cost[i][j]=infinity;
else
cost[i][j]=G[i][j];
spanning[i][j]=0;
}
//initialise visited[],distance[] and from[]
distance[0]=0;
visited[0]=1;
for(i=1;i<n;i++)
{
distance[i]=cost[0][i];
from[i]=0;
visited[i]=0;
}
min_cost=0; //cost of spanning tree
no_of_edges=n-1; //no. of edges to be added
while(no_of_edges>0)
{
//find the vertex at minimum distance from the tree
min_distance=infinity;
for(i=1;i<n;i++)
if(visited[i]==0&&distance[i]<min_distance)
{
v=i;
min_distance=distance[i];
}
u=from[v];
//insert the edge in spanning tree
spanning[u][v]=distance[v];
spanning[v][u]=distance[v];
no_of_edges--;
visited[v]=1;
//updated the distance[] array
for(i=1;i<n;i++)
if(visited[i]==0&&cost[i][v]<distance[i])
{
distance[i]=cost[i][v];
from[i]=v;
}
min_cost=min_cost+cost[u][v];
}
return(min_cost);
} | [
"71342542+Shiva1405@users.noreply.github.com"
] | 71342542+Shiva1405@users.noreply.github.com |
5390de9397ace31f1324f2b43ab554c546d87389 | 9a32178d3c2fdf377d84f65b55989264e67f40e9 | /2002/ALL VC SAMPLES/ATLServer/Applications/Manta/Calendar/ScheduleHandler.h | 5f1de596160374d1bc4954843b86ee8c52ab9e6d | [] | no_license | philipwolfe/Samples | 5e5cc1376575ac6361b62a3554c98626f153b694 | 7eb703287a6d07596a141c4557f271efe6c1666f | refs/heads/master | 2021-12-25T12:52:52.616313 | 2021-12-19T04:26:29 | 2021-12-19T04:26:29 | 250,445,305 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,490 | h | // ScheduleHandler.h : Defines the ATL Server request handler class
// (c) 2000 Microsoft Corporation
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Classes Reference and related electronic
// documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft C++ Libraries products.
#pragma once
#include "ScheduleDB.h"
#define START_TIME 8 // Start the schedule at 08:00 (8 A.M.)
#define END_TIME 20 // End the schedule at 19:00 (8 P.M.)
inline HRESULT AddNewAppointment(
CDataConnection& DataConnection,
long nMonth,
long nDay,
long nYear,
long nTime,
long nUserID,
LPCTSTR szTitle,
LPCTSTR szLocation,
LPCTSTR szDetails)
{
CNewAppointment newAppointment;
// Copy the data into the appointment
sprintf(newAppointment.m_szDate, "%d/%d/%d", nMonth, nDay, nYear);
lstrcpy(newAppointment.m_szTitle, szTitle);
lstrcpy(newAppointment.m_szLocation, szLocation);
lstrcpy(newAppointment.m_szDetails, szDetails);
newAppointment.m_lTime = nTime;
newAppointment.m_lUserID = nUserID;
// Add the appointment into the database
return newAppointment.OpenRowset(DataConnection, NULL);
}
// class CScheduleHandler
// This handler is responsible for displaying the entire schedule grid for a given day
// Note: There is a tag {{SetTodays}} used by welcome.srf which switches a boolean on.
// This boolean ignores the current hour member to display the entire schedule
// for the day in sequence, without attempting to fit the appointments in a grid
// like in schedule.srf.
class CScheduleHandler
: public CRequestHandlerT<CScheduleHandler>,
public CMantaWebBase<CScheduleHandler>
{
private:
HRESULT m_hRes; // Member HRESULT for DB calls
COleDateTime m_date; // The date viewed by the schedule
COleDateTime m_datePrev; // The previous day's date
COleDateTime m_dateNext; // The next day's date
CAppointmentList m_appointmentList; // Schedule DB object
bool m_bFailed; // Boolean to determine failure
int m_iCurHour; // Current hour viewed
bool m_bTodays; // Boolean to determine if we're listing today's schedule (from welcome screen)
CStringA m_strTitle; // Title of the new appointment
CStringA m_strLocation; // Location of the new appointment
CStringA m_strDetails; // Details of the new appointment
LONG m_lStart; // Start of new appointment (in 24 hour format, duration is assumed to be 1 hour)
public:
CScheduleHandler() : m_bFailed(false),
m_iCurHour(START_TIME),
m_bTodays(false)
{
// Set the status to invalid
m_date.SetStatus(COleDateTime::invalid);
}
HTTP_CODE ValidateAndExchange()
{
// Set the content type to html
m_HttpResponse.SetContentType("text/html");
// Validate the session
if (!ValidateSession())
return ValidationError();
const CHttpRequestParams& QueryParams = m_HttpRequest.GetQueryParams();
const CHttpRequestParams& FormFields = m_HttpRequest.GetFormVars();
// Set the internal date to the one specified by query params
// If its invalid, reset to today
int year, month, day;
QueryParams.Exchange("year", &year);
QueryParams.Exchange("month", &month);
QueryParams.Exchange("day", &day);
m_date.SetDate(year, month, day);
if (m_date.GetStatus() != COleDateTime::valid)
m_date = COleDateTime::GetCurrentTime();
// If this is a valid form submition
if (FormFields.Lookup("title") != NULL &&
FormFields.Lookup("start") != NULL &&
FormFields.Lookup("duration") != NULL)
{
// Validate and add new appointment
if (ValidateFormData(FormFields))
{
if (AddNewAppointment() != HTTP_SUCCESS)
return HTTP_SUCCESS_NO_PROCESS;
}
else
m_bFailed = true; // Data was invalid
}
else
{
// Set the default values
m_lStart = 8;
}
// Set the next and previous days
m_datePrev = m_date - COleDateTimeSpan(1, 0, 0, 0);
m_dateNext = m_date + COleDateTimeSpan(1, 0, 0, 0);
// Open up the schedule for the internal date
GetUserID(&m_appointmentList.m_lUserID);
sprintf(m_appointmentList.m_szDate, "%d/%d/%d", m_date.GetMonth(), m_date.GetDay(), m_date.GetYear());
m_hRes = m_appointmentList.OpenRowset(m_dataConnection, NULL);
if (m_hRes != S_OK)
return DatabaseError("CSchedule::OpenRowset()", m_hRes);
m_hRes = m_appointmentList.MoveFirst();
if (m_hRes != S_OK && m_hRes != DB_S_ENDOFROWSET)
return DatabaseError("CSchedule::MoveFirst()", m_hRes);
return HTTP_SUCCESS;
}
HTTP_CODE OnNextDay()
{
// Respond with the next day's day
m_HttpResponse << m_dateNext.GetDay();
return HTTP_SUCCESS;
}
HTTP_CODE OnNextMonth()
{
// Respond with the next day's month
m_HttpResponse << m_dateNext.GetMonth();
return HTTP_SUCCESS;
}
HTTP_CODE OnNextYear()
{
// Respond with the next day's year
m_HttpResponse << m_dateNext.GetYear();
return HTTP_SUCCESS;
}
HTTP_CODE OnPrevDay()
{
// Respond with the previous day's day
m_HttpResponse << m_datePrev.GetDay();
return HTTP_SUCCESS;
}
HTTP_CODE OnPrevMonth()
{
// Respond with the previous day's month
m_HttpResponse << m_datePrev.GetMonth();
return HTTP_SUCCESS;
}
HTTP_CODE OnPrevYear()
{
// Respond with the previous day's year
m_HttpResponse << m_datePrev.GetYear();
return HTTP_SUCCESS;
}
HTTP_CODE OnDate()
{
// Respond with the long date
m_HttpResponse << m_date.Format("%A, %B %d, %Y");
return HTTP_SUCCESS;
}
HTTP_CODE OnSetTodays()
{
// Note: this is used in the welcome.srf to let us know that we want to ignore m_iCurHour
// and list all the appoinments for today in order
m_bTodays = true;
return HTTP_SUCCESS;
}
HTTP_CODE OnRowsLeft()
{
// Used in schedule.srf to run through all the rows
ATLASSERT(m_iCurHour >= START_TIME && m_iCurHour <= END_TIME);
return (m_iCurHour < END_TIME) ? HTTP_SUCCESS : HTTP_S_FALSE;
}
HTTP_CODE OnNextRow()
{
// Used in schedule.srf to increment to the next row
ATLASSERT(m_iCurHour >= START_TIME && m_iCurHour < END_TIME);
if (m_appointmentList.m_lTime == m_iCurHour)
m_appointmentList.MoveNext();
m_iCurHour++;
return HTTP_SUCCESS;
}
HTTP_CODE OnCellColor()
{
// Respond with the cell color
// white - scheduled, yellowish - not scheduled
if (m_appointmentList.m_lTime == m_iCurHour)
m_HttpResponse << "#FFFFFF";
else
m_HttpResponse << "#FFFFCC";
return HTTP_SUCCESS;
}
HTTP_CODE OnStartTime()
{
// If listing today's, just output the appointment start time
// Otherwise, use the current hour
if (m_bTodays)
m_HttpResponse << ((m_appointmentList.m_lTime > 12) ? (m_appointmentList.m_lTime - 12) : m_appointmentList.m_lTime);
else
m_HttpResponse << ((m_iCurHour > 12) ? (m_iCurHour - 12) : m_iCurHour);
return HTTP_SUCCESS;
}
HTTP_CODE OnStartAM()
{
// If listing today's, return HTTP_SUCCESS if the appointment start time is AM
// Otherwise, use the current hour
if (m_bTodays)
return (m_appointmentList.m_lTime >= 12) ? HTTP_S_FALSE : HTTP_SUCCESS;
else
return (m_iCurHour >= 12) ? HTTP_S_FALSE : HTTP_SUCCESS;
}
HTTP_CODE OnEndTime()
{
// If listing today's, just output the appointment end time
// Otherwise, use the current hour
if (m_bTodays)
m_HttpResponse << ((m_appointmentList.m_lTime > 11) ? (m_appointmentList.m_lTime - 11) : (m_appointmentList.m_lTime + 1));
else
m_HttpResponse << ((m_iCurHour > 11) ? (m_iCurHour - 11) : (m_iCurHour + 1));
return HTTP_SUCCESS;
}
HTTP_CODE OnEndAM()
{
// If listing today's, return HTTP_SUCCESS if the appointment end time is AM
// Otherwise, use the current hour
if (m_bTodays)
return (m_appointmentList.m_lTime >= 11) ? HTTP_S_FALSE : HTTP_SUCCESS;
else
return (m_iCurHour >= 11) ? HTTP_S_FALSE : HTTP_SUCCESS;
}
HTTP_CODE OnAppointmentsLeft()
{
// Return HTTP_SUCCESS if there are appointments still left
return (m_hRes != S_OK) ? HTTP_S_FALSE : HTTP_SUCCESS;
}
HTTP_CODE OnAppointmentID()
{
// Respond with the appointment id
if ( (!m_bTodays && m_appointmentList.m_lTime == m_iCurHour) || m_bTodays)
m_HttpResponse << m_appointmentList.m_lAppointmentID;
return HTTP_SUCCESS;
}
HTTP_CODE OnAppointmentTitle()
{
// Respond with the appointment title
if ( (!m_bTodays && m_appointmentList.m_lTime == m_iCurHour) || m_bTodays)
{
m_HttpResponse << m_appointmentList.m_szTitle;
if (lstrlen(m_appointmentList.m_szLocation) > 0)
m_HttpResponse << " (" << m_appointmentList.m_szLocation << ")";
}
return HTTP_SUCCESS;
}
HTTP_CODE OnNextAppointment()
{
// Used in welcome.srf to get the next appointment
m_hRes = m_appointmentList.MoveNext();
return HTTP_SUCCESS;
}
HTTP_CODE OnFailure()
{
return (m_bFailed) ? HTTP_SUCCESS : HTTP_S_FALSE;
}
HTTP_CODE OnMaxStringLen()
{
// Respond with the max string len
m_HttpResponse << DB_MAX_STRLEN;
return HTTP_SUCCESS;
}
HTTP_CODE OnMaxDetailsLen()
{
// Respond with the max details len
m_HttpResponse << DB_MAX_DETAILSLEN;
return HTTP_SUCCESS;
}
HTTP_CODE OnTitleInput()
{
// Respond with the appointment title
m_HttpResponse << m_strTitle;
return HTTP_SUCCESS;
}
HTTP_CODE OnLocationInput()
{
// Respond with the appointment location
m_HttpResponse << m_strLocation;
return HTTP_SUCCESS;
}
HTTP_CODE OnDetailsInput()
{
// Respond with the appointment details
m_HttpResponse << m_strDetails;
return HTTP_SUCCESS;
}
HTTP_CODE OnTimeSelected(int *pTime)
{
ATLASSERT(pTime != NULL);
// Respond with the selected time if it matches the start time
if (*pTime == m_lStart)
m_HttpResponse << "selected";
return HTTP_SUCCESS;
}
// Replacement method map
BEGIN_REPLACEMENT_METHOD_MAP(CScheduleHandler)
REPLACEMENT_METHOD_ENTRY("NextDay", OnNextDay)
REPLACEMENT_METHOD_ENTRY("NextMonth", OnNextMonth)
REPLACEMENT_METHOD_ENTRY("NextYear", OnNextYear)
REPLACEMENT_METHOD_ENTRY("PrevDay", OnPrevDay)
REPLACEMENT_METHOD_ENTRY("PrevMonth", OnPrevMonth)
REPLACEMENT_METHOD_ENTRY("PrevYear", OnPrevYear)
REPLACEMENT_METHOD_ENTRY("SetTodays", OnSetTodays)
REPLACEMENT_METHOD_ENTRY("RowsLeft", OnRowsLeft)
REPLACEMENT_METHOD_ENTRY("NextRow", OnNextRow)
REPLACEMENT_METHOD_ENTRY("CellColor", OnCellColor)
REPLACEMENT_METHOD_ENTRY("StartTime", OnStartTime)
REPLACEMENT_METHOD_ENTRY("StartAM", OnStartAM)
REPLACEMENT_METHOD_ENTRY("EndTime", OnEndTime)
REPLACEMENT_METHOD_ENTRY("EndAM", OnEndAM)
REPLACEMENT_METHOD_ENTRY("AppointmentsLeft", OnAppointmentsLeft)
REPLACEMENT_METHOD_ENTRY("AppointmentID", OnAppointmentID)
REPLACEMENT_METHOD_ENTRY("AppointmentTitle", OnAppointmentTitle)
REPLACEMENT_METHOD_ENTRY("NextAppointment", OnNextAppointment)
REPLACEMENT_METHOD_ENTRY("Date", OnDate)
REPLACEMENT_METHOD_ENTRY("Failure", OnFailure)
REPLACEMENT_METHOD_ENTRY("MaxStringLen", OnMaxStringLen)
REPLACEMENT_METHOD_ENTRY("MaxDetailsLen", OnMaxDetailsLen)
REPLACEMENT_METHOD_ENTRY("TitleInput", OnTitleInput)
REPLACEMENT_METHOD_ENTRY("LocationInput", OnLocationInput)
REPLACEMENT_METHOD_ENTRY("DetailsInput", OnDetailsInput)
REPLACEMENT_METHOD_ENTRY_EX("TimeSelected", OnTimeSelected, int, DefaultParseInt)
END_REPLACEMENT_METHOD_MAP()
private:
bool ValidateFormData(const CHttpRequestParams& FormFields)
{
DWORD dwRet;
// Validate the form data
if (FormFields.Validate("title", &m_strTitle, 1, DB_MAX_STRLEN) != VALIDATION_S_OK)
return false;
// Prepare for HTML
HTMLPrepareString(m_strTitle);
if (m_strTitle.GetLength() > DB_MAX_STRLEN)
return false;
dwRet = FormFields.Validate("location", &m_strLocation, 0, DB_MAX_STRLEN);
if (dwRet != VALIDATION_S_OK && dwRet != VALIDATION_S_EMPTY)
return false;
// Prepare for HTML
HTMLPrepareString(m_strLocation);
if (m_strLocation.GetLength() > DB_MAX_STRLEN)
return false;
dwRet = FormFields.Validate("details", &m_strDetails, 0, DB_MAX_DETAILSLEN);
if (dwRet != VALIDATION_S_OK && dwRet != VALIDATION_S_EMPTY)
return false;
// Prepare for HTML
HTMLPrepareString(m_strDetails);
if (m_strDetails.GetLength() > DB_MAX_DETAILSLEN)
return false;
if (FormFields.Validate("start", &m_lStart, START_TIME, END_TIME) != VALIDATION_S_OK)
return false;
// Find the appoinment in the database to ensure no duplicates
CFindAppointment findAppointment;
sprintf(findAppointment.m_szDate, "%d/%d/%d", m_date.GetMonth(), m_date.GetDay(), m_date.GetYear());
findAppointment.m_lTime = m_lStart;
GetUserID(&findAppointment.m_lUserID);
if (findAppointment.OpenRowset(m_dataConnection, NULL) != S_OK)
return false;
HRESULT hr = findAppointment.MoveFirst();
if (hr == DB_S_ENDOFROWSET)
return true; // Return true, no duplicate appointment
// Duplicate found
return false;
}
HTTP_CODE AddNewAppointment()
{
long lUserID = 0;
GetUserID(&lUserID);
// Add the appointment into the database
HRESULT hr = ::AddNewAppointment(m_dataConnection,
m_date.GetMonth(),
m_date.GetDay(),
m_date.GetYear(),
m_lStart,
lUserID,
m_strTitle,
m_strLocation,
m_strDetails);
if (hr != S_OK)
return DatabaseError("CNewAppointment::OpenRowset()", hr);
// Reset the member variables
m_strTitle = "";
m_strLocation = "";
m_strDetails = "";
m_lStart = 8;
return HTTP_SUCCESS;
}
}; // class CScheduleHandler
| [
"philipwolfe@users.noreply.github.com"
] | philipwolfe@users.noreply.github.com |
15050be0bfd1e415023b0070625f41d6e39422b6 | fac8da5bc75ae2026083c30e759ff6c66cac4c98 | /CG/4.cpp | 478f1a31d001c220925e5708e3053b6ba72a3d0e | [] | no_license | karansadhwani/collegeAssignments | dc81f6698d1565f647a7af998cfb9ca20348a02a | e0171e754319119bffdd266f57097589a4974058 | refs/heads/master | 2022-11-29T10:59:22.167408 | 2020-08-18T17:04:38 | 2020-08-18T17:04:38 | 288,515,042 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,226 | cpp | //Write C++/Java program to draw inscribed and Circumscribed circles in the triangle as shown as an example below. (Use any Circle drawing and Line drawing algorithms)
#include<graphics.h>
#include<iostream>
#include<stdlib.h>
#include<math.h>
using namespace std;
class pixel //Base Class
{
protected: int x1,y1;//center of circle
public:
pixel() //constructor
{
x1=0;y1=0;
}
void setoff(int xx,int yy) //set co-ordinates
{
x1=xx;
y1=yy;
}
};
class dcircle: public pixel // Derived Class
{
private: int r; //radious of circle
public:
dcircle():pixel() //constructor
{
r=0;
}
void setrad(int z) //set radious
{
r=z;
}
void drawbc() //Bresenham's Circle
{
int i,x,y;
float d;
x=0, y=r;
d = 3 - 2*r; //decision variable
do
{
putpixel(x1+x, y1+y,15);
putpixel(x1+y, y1+x,15);
putpixel(x1+y, y1-x,15);
putpixel(x1+x, y1-y,15);
putpixel(x1-x, y1-y,15);
putpixel(x1-y, y1-x,15);
putpixel(x1-y, y1+x,15);
putpixel(x1-x, y1+y,15);
if(d<=0)
{
x = x + 1;
d = d + (4*x) + 6;
}
else
{
x = x + 1;
y = y - 1;
d = d + (4*x-4*y) + 10;
}
}while(x<=y);
}//Function Closed
};
int main()
{
int gd=DETECT,gm=VGAMAX;
int i, x, y, r1,r2,ch, xmax,ymax,xmid,ymid;
float a,b;
char ans;
dcircle c1,c2;
initgraph(&gd, &gm, NULL);
xmax = getmaxx();
ymax = getmaxy();
xmid = xmax /2;
ymid = ymax /2;
line(xmid,0,xmid,ymax); //Y co-ordinate
line(0,ymid,xmax,ymid); //X co-ordinate
cout<<"\n Enter x: "; cin>>x;
cout<<"\n Enter y: "; cin>>y;
cout<<"\n Enter radius: "; cin>>r1;
cout<<"\n Enter radius: "; cin>>r2;
c1.setoff(xmid+x, ymid-y);
c1.setrad(r1);
c1.drawbc();
c2.setrad(r2);
c2.drawbc();
delay(3000);
getch();
closegraph();
return 0;
}
| [
"karansadhwani25@gmail.com"
] | karansadhwani25@gmail.com |
77a0cc41827d308046520e91580e66fc8322ba52 | 6ae8da6897c950a555a52927bca42fcedc2bbda5 | /third_party/bamtools/src/utils/bamtools_pileup_engine.cpp | 454eafeb811842da3f5b0d2105d23b28b3afc2fb | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | ratschlab/secedo | b7ba51a7a3ee3d353bc639e4071aec6ba21da864 | f5944261e21815b7d2862b0a501e205b0ff71a93 | refs/heads/main | 2023-04-12T09:53:45.787759 | 2022-05-04T08:54:21 | 2022-05-04T08:54:21 | 312,234,295 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,487 | cpp | // ***************************************************************************
// bamtools_pileup_engine.cpp (c) 2010 Derek Barnett, Erik Garrison
// Marth Lab, Department of Biology, Boston College
// ---------------------------------------------------------------------------
// Last modified: 9 March 2012 (DB)
// ---------------------------------------------------------------------------
// Provides pileup at position functionality for various tools.
// ***************************************************************************
#include "utils/bamtools_pileup_engine.h"
using namespace BamTools;
#include <cstddef>
#include <iostream>
// ---------------------------------------------
// PileupEnginePrivate implementation
struct PileupEngine::PileupEnginePrivate
{
// data members
int CurrentId;
int CurrentPosition;
std::vector<BamAlignment> CurrentAlignments;
PileupPosition CurrentPileupData;
bool IsFirstAlignment;
std::vector<PileupVisitor*> Visitors;
// ctor & dtor
PileupEnginePrivate()
: CurrentId(-1)
, CurrentPosition(-1)
, IsFirstAlignment(true)
{}
// 'public' methods
bool AddAlignment(const BamAlignment& al);
void Flush();
// internal methods
private:
void ApplyVisitors();
void ClearOldData();
void CreatePileupData();
void ParseAlignmentCigar(const BamAlignment& al);
};
bool PileupEngine::PileupEnginePrivate::AddAlignment(const BamAlignment& al)
{
// if first time
if (IsFirstAlignment) {
// set initial markers
CurrentId = al.RefID;
CurrentPosition = al.Position;
// store first entry
CurrentAlignments.clear();
CurrentAlignments.push_back(al);
// set flag & return
IsFirstAlignment = false;
return true;
}
// if same reference
if (al.RefID == CurrentId) {
// if same position, store and move on
if (al.Position == CurrentPosition) CurrentAlignments.push_back(al);
// if less than CurrentPosition - sorting error => ABORT
else if (al.Position < CurrentPosition) {
std::cerr << "Pileup::Run() : Data not sorted correctly!" << std::endl;
return false;
}
// else print pileup data until 'catching up' to CurrentPosition
else {
while (al.Position > CurrentPosition) {
ApplyVisitors();
++CurrentPosition;
}
CurrentAlignments.push_back(al);
}
}
// if reference ID less than CurrentId - sorting error => ABORT
else if (al.RefID < CurrentId) {
std::cerr << "Pileup::Run() : Data not sorted correctly!" << std::endl;
return false;
}
// else moved forward onto next reference
else {
// print any remaining pileup data from previous reference
while (!CurrentAlignments.empty()) {
ApplyVisitors();
++CurrentPosition;
}
// store first entry on this new reference, update markers
CurrentAlignments.clear();
CurrentAlignments.push_back(al);
CurrentId = al.RefID;
CurrentPosition = al.Position;
}
return true;
}
void PileupEngine::PileupEnginePrivate::ApplyVisitors()
{
// parse CIGAR data in BamAlignments to build up current pileup data
CreatePileupData();
// apply all visitors to current alignment set
std::vector<PileupVisitor*>::const_iterator visitorIter = Visitors.begin();
std::vector<PileupVisitor*>::const_iterator visitorEnd = Visitors.end();
for (; visitorIter != visitorEnd; ++visitorIter)
(*visitorIter)->Visit(CurrentPileupData);
}
void PileupEngine::PileupEnginePrivate::ClearOldData()
{
// remove any alignments that end before our CurrentPosition
// N.B. - BAM positions are 0-based, half-open. GetEndPosition() returns a 1-based position,
// while our CurrentPosition is 0-based. For example, an alignment with 'endPosition' of
// 100 does not overlap a 'CurrentPosition' of 100, and should be discarded.
std::size_t i = 0;
std::size_t j = 0;
const std::size_t numAlignments = CurrentAlignments.size();
while (i < numAlignments) {
// skip over alignment if its (1-based) endPosition is <= to (0-based) CurrentPosition
// i.e. this entry will not be saved upon vector resize
const int endPosition = CurrentAlignments[i].GetEndPosition();
if (endPosition <= CurrentPosition) {
++i;
continue;
}
// otherwise alignment ends after CurrentPosition
// move it towards vector beginning, at index j
if (i != j) CurrentAlignments[j] = CurrentAlignments[i];
// increment our indices
++i;
++j;
}
// 'squeeze' vector to size j, discarding all remaining alignments in the container
CurrentAlignments.resize(j);
}
void PileupEngine::PileupEnginePrivate::CreatePileupData()
{
// remove any non-overlapping alignments
ClearOldData();
// set pileup refId, position to current markers
CurrentPileupData.RefId = CurrentId;
CurrentPileupData.Position = CurrentPosition;
CurrentPileupData.PileupAlignments.clear();
// parse CIGAR data in remaining alignments
std::vector<BamAlignment>::const_iterator alIter = CurrentAlignments.begin();
std::vector<BamAlignment>::const_iterator alEnd = CurrentAlignments.end();
for (; alIter != alEnd; ++alIter)
ParseAlignmentCigar((*alIter));
}
void PileupEngine::PileupEnginePrivate::Flush()
{
while (!CurrentAlignments.empty()) {
ApplyVisitors();
++CurrentPosition;
}
}
void PileupEngine::PileupEnginePrivate::ParseAlignmentCigar(const BamAlignment& al)
{
// skip if unmapped
if (!al.IsMapped()) return;
// intialize local variables
int genomePosition = al.Position;
int positionInAlignment = 0;
bool isNewReadSegment = true;
bool saveAlignment = true;
PileupAlignment pileupAlignment(al);
// iterate over CIGAR operations
const int numCigarOps = al.CigarData.size();
for (int i = 0; i < numCigarOps; ++i) {
const CigarOp& op = al.CigarData.at(i);
// if op is MATCH
if (op.Type == 'M') {
// if match op overlaps current position
if (genomePosition + (int)op.Length > CurrentPosition) {
// set pileup data
pileupAlignment.IsCurrentDeletion = false;
pileupAlignment.IsNextDeletion = false;
pileupAlignment.IsNextInsertion = false;
pileupAlignment.PositionInAlignment =
positionInAlignment + (CurrentPosition - genomePosition);
// check for beginning of read segment
if (genomePosition == CurrentPosition && isNewReadSegment)
pileupAlignment.IsSegmentBegin = true;
// if we're at the end of a match operation
if (genomePosition + (int)op.Length - 1 == CurrentPosition) {
// if not last operation
if (i < numCigarOps - 1) {
// check next CIGAR op
const CigarOp& nextOp = al.CigarData.at(i + 1);
// if next CIGAR op is DELETION
if (nextOp.Type == 'D') {
pileupAlignment.IsNextDeletion = true;
pileupAlignment.DeletionLength = nextOp.Length;
}
// if next CIGAR op is INSERTION
else if (nextOp.Type == 'I') {
pileupAlignment.IsNextInsertion = true;
pileupAlignment.InsertionLength = nextOp.Length;
}
// if next CIGAR op is either DELETION or INSERTION
if (nextOp.Type == 'D' || nextOp.Type == 'I') {
// if there is a CIGAR op after the DEL/INS
if (i < numCigarOps - 2) {
const CigarOp& nextNextOp = al.CigarData.at(i + 2);
// if next CIGAR op is clipping or ref_skip
if (nextNextOp.Type == 'S' || nextNextOp.Type == 'N' ||
nextNextOp.Type == 'H')
pileupAlignment.IsSegmentEnd = true;
} else {
pileupAlignment.IsSegmentEnd = true;
// if next CIGAR op is clipping or ref_skip
if (nextOp.Type == 'S' || nextOp.Type == 'N' || nextOp.Type == 'H')
pileupAlignment.IsSegmentEnd = true;
}
}
// otherwise
else {
// if next CIGAR op is clipping or ref_skip
if (nextOp.Type == 'S' || nextOp.Type == 'N' || nextOp.Type == 'H')
pileupAlignment.IsSegmentEnd = true;
}
}
// else this is last operation
else
pileupAlignment.IsSegmentEnd = true;
}
}
// increment markers
genomePosition += op.Length;
positionInAlignment += op.Length;
}
// if op is DELETION
else if (op.Type == 'D') {
// if deletion op overlaps current position
if (genomePosition + (int)op.Length > CurrentPosition) {
// set pileup data
pileupAlignment.IsCurrentDeletion = true;
pileupAlignment.IsNextDeletion = false;
pileupAlignment.IsNextInsertion = true;
pileupAlignment.PositionInAlignment =
positionInAlignment + (CurrentPosition - genomePosition);
}
// increment marker
genomePosition += op.Length;
}
// if op is REF_SKIP
else if (op.Type == 'N') {
genomePosition += op.Length;
}
// if op is INSERTION or SOFT_CLIP
else if (op.Type == 'I' || op.Type == 'S') {
positionInAlignment += op.Length;
}
// checl for beginning of new read segment
if (op.Type == 'N' || op.Type == 'S' || op.Type == 'H')
isNewReadSegment = true;
else
isNewReadSegment = false;
// if we've moved beyond current position
if (genomePosition > CurrentPosition) {
if (op.Type == 'N') saveAlignment = false; // ignore alignment if REF_SKIP
break;
}
}
// save pileup position if flag is true
if (saveAlignment) CurrentPileupData.PileupAlignments.push_back(pileupAlignment);
}
// ---------------------------------------------
// PileupEngine implementation
PileupEngine::PileupEngine()
: d(new PileupEnginePrivate)
{}
PileupEngine::~PileupEngine()
{
delete d;
d = 0;
}
bool PileupEngine::AddAlignment(const BamAlignment& al)
{
return d->AddAlignment(al);
}
void PileupEngine::AddVisitor(PileupVisitor* visitor)
{
d->Visitors.push_back(visitor);
}
void PileupEngine::Flush()
{
d->Flush();
}
| [
"dd@daedalean.ai"
] | dd@daedalean.ai |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.