blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3b1a456060dc05d43676a8bdf194e796a1fc4ed1 | a065b79e9ad7285136b85acdc6708b105f2e0a5a | /dungeonProjecthjagana/src/DropPack.hpp | fa054394b5a3749b7b95900e250aef8839aec919 | [] | no_license | hjagana/dungeonProject | c775716000be1458031cc81257106e953f82309e | 75e9f8f7038f1a0a74c149138fb00df929bf8844 | refs/heads/master | 2023-02-05T14:21:43.960961 | 2020-12-21T16:42:45 | 2020-12-21T16:42:45 | 323,393,029 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 448 | hpp | DropPack.hpp | #ifndef DROPPACK_H_
#define DROPPACK_H_
#include <string>
#include <vector>
#include "CreatureAction.hpp"
#include "ObjectDisplayGrid.hpp"
#include "Dungeon.hpp"
#include "KeyboardListener.hpp"
class DropPack: public CreatureAction{
private:
public:
DropPack(std::string name, Creature *owner);
virtual void performAction();
// Dungeon* d = NULL;
KeyboardListener * k = NULL;
};
#endif /* DROPPACK_H_ */ |
789b3d5dcc0b9547cf6958f696f3c6bbfbb9b2ce | 2a4b3cfc9ff17bdc1cfe9c3e159d2d902908d0bb | /Algorithm/DP/7_Tree/P2015.cpp | 76f21875bd7c6628746e80f5a7a05d511ee559ee | [] | no_license | dddql/cpp | afd45bc6c4e37fdeec92eca2e9092c113bcc2658 | 6c209a4eeda5ec32afe31aafeaf216ed482234a3 | refs/heads/master | 2023-02-19T11:26:51.273363 | 2022-09-26T14:20:06 | 2022-09-26T14:20:06 | 298,593,978 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 379 | cpp | P2015.cpp | /*
法一:f[i][j]表示以i为根,节点量为j的子树最大苹果数
f[i][j] = f[l[i]][k] + f[r[i]][j-1-k] + a[i]
f[i][0] = 0, a[1] = 0
求f[i][Q]
*/
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
struct edge{
int ls;
int next;
int num;
};
vector<edge> e[maxn];
int dfs(int x){
}
int main(){
return 0;
} |
93f38f4006198950f6393d3acad012da832a0f59 | 209779c03feff329fcc7e0898854c4ba0c6d4d16 | /luogu/codes/P1349.cpp | b7e73dfb31615b8c7925113033e55d92314f6951 | [
"MIT"
] | permissive | TonyCrane/OI | 76b90833a495bf491377b91e88b944e2113bc49b | 562f5f45d0448f4eab77643b99b825405a123d92 | refs/heads/master | 2022-11-08T20:00:37.196582 | 2020-06-27T14:51:54 | 2020-06-27T14:51:54 | 161,732,784 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,823 | cpp | P1349.cpp | /*************************************************************
* > File Name : P1349.cpp
* > Author : Tony
* > Created Time : 2019/05/19 12:05:52
**************************************************************/
#include <bits/stdc++.h>
using namespace std;
inline int read() {
int x = 0, f = 1; char ch = getchar();
while (!isdigit(ch)) {if (ch == '-') f = -1; ch = getchar();}
while (isdigit(ch)) {x = x * 10 + ch - 48; ch = getchar();}
return x * f;
}
typedef long long Matrix[2][2];
typedef long long Vector[2];
int sz, mod;
void matrix_mul(Matrix A, Matrix B, Matrix res) {
Matrix C;
memset(C, 0, sizeof(C));
for (int i = 0; i < sz; ++i) {
for (int j = 0; j < sz; ++j) {
for (int k = 0; k < sz; ++k) {
C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % mod;
}
}
}
memcpy(res, C, sizeof(C));
}
void matrix_pow(Matrix A, int n, Matrix res) {
Matrix a, r;
memcpy(a, A, sizeof(a));
memset(r, 0, sizeof(r));
for (int i = 0; i < sz; ++i) r[i][i] = 1;
while (n) {
if (n & 1) matrix_mul(r, a, r);
n >>= 1;
matrix_mul(a, a, a);
}
memcpy(res, r, sizeof(r));
}
void transform(Vector d, Matrix A, Vector res) {
Vector r;
memset(r, 0, sizeof(r));
for (int i = 0; i < sz; ++i) {
for (int j = 0; j < sz; ++j) {
r[j] = (r[j] + d[i] * A[i][j]) % mod;
}
}
memcpy(res, r, sizeof(r));
}
int main() {
int p = read(), q = read(), a1 = read(), a2 = read(), n = read(), m = read();
Vector F; Matrix A;
F[0] = a2 % m; F[1] = a1 % m;
A[0][0] = p % m; A[0][1] = 1; A[1][0] = q % m; A[1][1] = 0;
sz = 2; mod = m;
matrix_pow(A, n - 1, A);
transform(F, A, F);
printf("%lld\n", F[1]);
return 0;
} |
36220cdbcb088cdde66776769bd85a11ef645a87 | 7f1f772271560776681334f00d7eacb35094386e | /tp2/tp2_eje5.cpp | ef08fdf29d116e0c7f6c59b4192625dfd35e8dfc | [] | no_license | AgustinPeralta18/PRACTICA_C- | 2d1403a9f6922131b8caccfb0c63d24259287a6e | c3330a6574dd341112787ee6307e38951c36dbdf | refs/heads/main | 2023-07-13T00:42:50.955022 | 2021-08-26T01:00:18 | 2021-08-26T01:00:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 453 | cpp | tp2_eje5.cpp | // Ingresar un n�mero natural n e indicar si es primo.
#include<iostream>
using namespace std;
int main(){
int num, i;
cout<<"Ingrese el numero: ";
cin>>num;
if (num == 1)
cout<< "El numero no es primo"<<endl;
for (i = 2; i < num; i++)
{
if (num % i == 0)
{
cout << "El numero no es primo"<<endl;
break;
}
}
if (i == num)
cout<< "El numero es primo"<<endl;
system("pause");
}
|
5c479cd971a2811def57fc938ffe0c825feccc3e | 15a28e0d94a3ca0319c7beb5367b58fa02e17bc5 | /Teensy_Audio_Modes/funcs.ino | bce5dec27c2f19ead6ea03233930d8295950f9ca | [] | no_license | Majoras-Other-Mask/DIY-Pocket-Piano | e826466d04d79dc50d8494528cdbb62b2370903e | e405213074ba3ecc9a944df30c2f23ea978114f8 | refs/heads/master | 2022-12-04T15:31:42.267479 | 2020-08-27T14:16:26 | 2020-08-27T14:16:26 | 265,411,860 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,518 | ino | funcs.ino | //update screen info
void screenUpdate(void) {
//Draw starting mode
display.clearDisplay();
display.setCursor(0, 0);
display.setTextColor(SSD1306_WHITE);
display.setTextSize(1);
display.setTextWrap(1);
display.println(modeString[mode]);
display.print(knob1String[mode]);
display.print(" ");
display.println(knob2String[mode]);
if (mode == 0) {
display.print("3: Sus.");
} else {
display.print(pitchString[pitchMode]);
}
display.print(" ");
display.print("Oct: ");
display.print(octaveDisplay);
display.print(" ");
display.println(holdString[holdState]);
display.print("Wave = ");
display.println(waveString[waveForm]);
display.display();
}
// this funcion reads the buttons and stores their states in the global 'buttons' variable
void getButton(void) {
buttons = 0;
for (j = 0; j < 8; j++) {
digitalWrite(MUX_SEL_A, j & 1);
digitalWrite(MUX_SEL_B, (j >> 1) & 1);
digitalWrite(MUX_SEL_C, (j >> 2) & 1);
delayMicroseconds(50);
buttons |= digitalRead(MUX_OUT_2) << j;
}
buttons <<= 8;
for (j = 0; j < 8; j++) {
digitalWrite(MUX_SEL_A, j & 1);
digitalWrite(MUX_SEL_B, (j >> 1) & 1);
digitalWrite(MUX_SEL_C, (j >> 2) & 1);
delayMicroseconds(50);
buttons |= digitalRead(MUX_OUT_1) << j;
}
buttons <<= 8;
for (j = 0; j < 8; j++) {
digitalWrite(MUX_SEL_A, j & 1);
digitalWrite(MUX_SEL_B, (j >> 1) & 1);
digitalWrite(MUX_SEL_C, (j >> 2) & 1);
delayMicroseconds(50);
buttons |= digitalRead(MUX_OUT_0) << j;
}
buttons |= 0x1000000; // for the 25th button
//buttons &= ~0x1000000;
old25 = pin25;
pin25 = digitalRead(KEY_25);
old1 = pin1;
pin1 = digitalRead(1);
}
//determine if function key (key 25) has been pressed
//if pressed complete function based on key combination
void key25Func(void) {
//Find out if button 25 has been pressed
if (pin25==1 && old25 == 0) {
//Flash LED
digitalWrite(PP_LED, 1);
delay(50);
digitalWrite(PP_LED, 0);
//determine if a secondary function key has been pressed for pitch or waveform
if (secondFunc == 4){ //turn pitch tuning off
if (mode != 0) {
pitchMode = (pitchMode+1) %2;
}
} else if (secondFunc == 2) { //change waveform
waveForm = (waveForm+1) %7;
waveformSwitch();
} else if (secondFunc == 1) { //change octave down
octaveShift = octaveShift - 1;
if (octaveShift < 0) {
octaveShift = 0 ;
}
octShiftFunc();
} else if (secondFunc == 3) { //change octave up
octaveShift = octaveShift + 1;
if (octaveShift > 4) {
octaveShift = 4 ;
}
octShiftFunc();
} else { //change mode if only button 25 is pressed
//increase counter
mode = (mode+1) %7; //counter goes 0-6
modeCleanUp(); //run this to cleanup any mode specific settings
}
screenUpdate();
}
//check if hold button has been pressed
holdFunc();
}
void holdFunc(void) {
//check if hold button has been pressed
if (old1 == 1 && pin1 == 0) {
digitalWrite(PP_LED, 1);
delay(50);
digitalWrite(PP_LED, 0);
holdState = (holdState + 1) % 2;
if (holdState == 1) {
holdKey[0] = key[0];
holdKey[1] = key[1];
holdKey[2] = key[2];
holdKey[3] = key[3];
digitalWrite(PP_LED, 1);
} else if (holdState == 0) {
digitalWrite(PP_LED, 0);
}
screenUpdate();
}
}
//shift octave variable
void octShiftFunc(void) {
if (octaveShift == 0) {
octaveDisplay = -2;
} else if (octaveShift == 1) {
octaveDisplay = -1;
} else if (octaveShift == 2) {
octaveDisplay = 0;
} else if (octaveShift == 3) {
octaveDisplay = 1;
} else {
octaveDisplay = 2;
}
}
void waveformSwitch(void) {
switch (current_waveform) {
case WAVEFORM_SINE:
current_waveform = WAVEFORM_SAWTOOTH;
Serial.println("Sawtooth");
break;
case WAVEFORM_SAWTOOTH:
current_waveform = WAVEFORM_SAWTOOTH_REVERSE;
Serial.println("Reverse Sawtooth");
break;
case WAVEFORM_SAWTOOTH_REVERSE:
current_waveform = WAVEFORM_SQUARE;
Serial.println("Square");
break;
case WAVEFORM_SQUARE:
current_waveform = WAVEFORM_TRIANGLE;
Serial.println("Triangle");
break;
case WAVEFORM_TRIANGLE:
current_waveform = WAVEFORM_TRIANGLE_VARIABLE;
Serial.println("Variable Triangle");
break;
case WAVEFORM_TRIANGLE_VARIABLE:
current_waveform = WAVEFORM_PULSE;
Serial.println("Arbitary Waveform");
break;
case WAVEFORM_PULSE:
current_waveform = WAVEFORM_SINE;
Serial.println("Sine");
break;
}
AudioNoInterrupts();
waveform1.begin(current_waveform);
waveform2.begin(current_waveform);
waveform3.begin(current_waveform);
waveform4.begin(current_waveform);
waveformMod1.begin(current_waveform);
waveformMod2.begin(current_waveform);
waveformMod3.begin(current_waveform);
waveformMod4.begin(current_waveform);
AudioInterrupts();
}
void modeCleanUp(void) {
if (mode == 0) {
AudioNoInterrupts();
waveformMod1.frequency(0);
waveformMod2.frequency(0);
waveformMod3.frequency(0);
waveformMod4.frequency(0);
//reset amplitude to 1
waveform1.amplitude(1);
waveform2.amplitude(1);
waveform3.amplitude(1);
waveform4.amplitude(1);
envelope1.hold(20);
envelope2.hold(20);
envelope3.hold(20);
envelope4.hold(20);
AudioInterrupts();
} else if (mode == 2) {
// Harmonic Sweeper
//knob 1 = rate
//knob 2 = envelope scaled
AudioNoInterrupts();
//reset amplitude to 1
waveform1.amplitude(1);
waveform2.amplitude(1);
waveform3.amplitude(1);
waveform4.amplitude(1);
envelope1.sustain(0.1);
envelope2.sustain(0.1);
envelope3.sustain(0.1);
envelope4.sustain(0.1);
envelope1.release(ADSR_r);
envelope2.release(ADSR_r);
envelope3.release(ADSR_r);
envelope4.release(ADSR_r);
AudioInterrupts();
} else if (mode == 3) {
// Octave Arpeggiator
//knob 1 = rate
//knob 2 = envelope scaled
} else if (mode == 4) {
// Octave Cascade
//knob 1 = rate
//knob 2 = envelope decay
AudioNoInterrupts();
envelope1.attack(ADSR_a);
envelope2.attack(ADSR_a);
envelope3.attack(ADSR_a);
envelope4.attack(ADSR_a);
envelope1.hold(ADSR_hold);
envelope2.hold(ADSR_hold);
envelope3.hold(ADSR_hold);
envelope4.hold(ADSR_hold);
//use a low sustain so we can hear the change in decay
//controlled by knob 2
envelope1.sustain(0.1);
envelope2.sustain(0.1);
envelope3.sustain(0.1);
envelope4.sustain(0.1);
AudioInterrupts();
} else if (mode == 5) {
ledState = 1;
ledOnOff();
//FM Synth
//knob 1 = bits
//knob 2 = sampling rate
AudioNoInterrupts();
waveform1.frequency(0);
waveform2.frequency(0);
waveform3.frequency(0);
waveform4.frequency(0);
envelope1.decay(ADSR_d);
envelope2.decay(ADSR_d);
envelope3.decay(ADSR_d);
envelope4.decay(ADSR_d);
envelope1.sustain(ADSR_s);
envelope2.sustain(ADSR_s);
envelope3.sustain(ADSR_s);
envelope4.sustain(ADSR_s);
AudioInterrupts();
} else if (mode == 6) {
//FM Arp.
AudioNoInterrupts();
envelope1.sustain(0.1);
envelope2.sustain(0.1);
envelope3.sustain(0.1);
envelope4.sustain(0.1);
AudioInterrupts();
} else if (mode == 1) {
ledState = 1;
ledOnOff();
sine1.amplitude(1);
//Vibrato Synth Starting
//knob 1 = depth
//knob 2 = rate
//we set the modulated waveform to 0
AudioNoInterrupts();
envelope1.attack(ADSR_a);
envelope2.attack(ADSR_a);
envelope3.attack(ADSR_a);
envelope4.attack(ADSR_a);
envelope1.hold(ADSR_hold);
envelope2.hold(ADSR_hold);
envelope3.hold(ADSR_hold);
envelope4.hold(ADSR_hold);
envelope1.decay(ADSR_d);
envelope2.decay(ADSR_d);
envelope3.decay(ADSR_d);
envelope4.decay(ADSR_d);
envelope1.sustain(1);
envelope2.sustain(1);
envelope3.sustain(1);
envelope4.sustain(1);
AudioInterrupts();
}
}
void ledOnOff(void) {
ledState = (ledState + 1) % 2;
if (ledState == 0) {
digitalWrite(PP_LED, 0);
} else {
digitalWrite(PP_LED, 1);
}
}
|
5ddd0d04f8b5b6bccafc0f07606c50b65dcba9a0 | 06cd6819b3235a2c1fbd6751a8f14f028ebbcd18 | /C++/Lab_3/ViewFactory/Views/SFMLView/Buttons/BackButton.h | 001d9a348b1e4c3949a4ddd60b6f7da03e7fc10c | [
"MIT"
] | permissive | Baymxs/FIT-OOP | 51ea794600e597e82d1afadc1e9c4b0c9a1fd23d | ade15c143f3dafec466d5447fc3a6750f347b6bc | refs/heads/master | 2020-03-28T00:59:03.500706 | 2019-05-14T13:09:37 | 2019-05-14T13:09:37 | 147,466,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 513 | h | BackButton.h | //
// Created by Bayramov Nidjat on 18.12.18.
//
#ifndef LAB_3_BACKBUTTON_H
#define LAB_3_BACKBUTTON_H
#include "Button.h"
class BackButton : public Button {
public:
BackButton(const std::string &button_name, const int &x, const int &y) : Button(button_name, x, y) {
getButtonNormalTexture().loadFromFile("../src/Buttons/BackButton/back.png");
getButtonSelectedTexture().loadFromFile("../src/Buttons/BackButton/selected_back.png");
}
};
#endif //LAB_3_BACKBUTTON_H
|
dbc0fb2f7118ff2797a53b9a9b60b88e73953940 | d907753c40533af878bd0fe8e670f45c73c6a72e | /week1/main7.cpp | c5521eef86cc0e014391e6a6160b64f6eebd80b6 | [] | no_license | Striker007/mipt_yndx_cpp-white | b13f03653a715069f2d075e1c53478c16df8e39c | ca8f3f63e139fa5a9aeee24459b5f9a4b28a9c95 | refs/heads/master | 2020-04-15T03:39:44.253212 | 2019-01-06T23:57:57 | 2019-01-06T23:57:57 | 164,356,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 276 | cpp | main7.cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main7() {
int n;
cin >> n;
vector<int> v = { };
while (n > 0) {
v.push_back(n % 2);
n /= 2;
}
reverse(begin(v), end(v));
for(auto num : v) {
cout << num;
}
return 0;
}
|
44ab41906a88c557da1bd114bef352fa99da95b1 | b367fe5f0c2c50846b002b59472c50453e1629bc | /xbox_leak_may_2020/xbox trunk/xbox/private/vc7addon/vs/src/vc/ide/include/fmtinfo.h | da244af5c72a2d5415a4e2000c14d4e5a79efe5e | [] | no_license | sgzwiz/xbox_leak_may_2020 | 11b441502a659c8da8a1aa199f89f6236dd59325 | fd00b4b3b2abb1ea6ef9ac64b755419741a3af00 | refs/heads/master | 2022-12-23T16:14:54.706755 | 2020-09-27T18:24:48 | 2020-09-27T18:24:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,249 | h | fmtinfo.h | // REVIEW(DavidGa): This needs to be drastically simplified and moved
// into shlsrvc.h.
// FMTINFO.H
//
// Classes defined:
//
// CFormatInfo
// CFormatInfoArray
//
// Structures defined:
//
// FMT_ELEMENT
// FMT_WINDOW
// FMT_WINGROUP
// LOGFONTSEARCH
// AUTO_COLOR
//
///////////////////////////
//
// This provides font and color support for packages. The FMT_* structures can be used by
// the packages to statically define the default values. CFormatInfo manages a single
// FMT_WINGROUP structure and all it points to. CFormatInfoArray is used by the dialog to manage
// the CFormatInfo instances supplied by the packages.
//
/////
class CFormatInfo;
class CFmtIterator;
class CFmtGroupIterator;
class CFmtWindowIterator;
class CFmtElementIterator;
class CFCDialogState;
class CFontColorDlg; // Define in fcdialog.h
class CPackage;
#ifndef __FMTINFO_H__
#define __FMTINFO_H__
_TCHAR * NewString (const _TCHAR * sz);
#define RGB_BLACK RGB(0x00, 0x00, 0x00)
#define RGB_WHITE RGB(0xFF, 0xFF, 0xFF)
#define RGB_RED RGB(0xFF, 0x00, 0x00)
#define RGB_GREEN RGB(0x00, 0xFF, 0x00)
#define RGB_BLUE RGB(0x00, 0x00, 0xFF)
#define RGB_YELLOW RGB(0xFF, 0xFF, 0x00)
#define RGB_MAGENTA RGB(0xFF, 0x00, 0xFF)
#define RGB_CYAN RGB(0x00, 0xFF, 0xFF)
#define RGB_LIGHTGRAY RGB(0xC0, 0xC0, 0xC0)
#define RGB_GRAY RGB(0x80, 0x80, 0x80)
#define RGB_DARKRED RGB(0x80, 0x00, 0x00)
#define RGB_DARKGREEN RGB(0x00, 0x80, 0x00)
#define RGB_DARKBLUE RGB(0x00, 0x00, 0x80)
#define RGB_LIGHTBROWN RGB(0x80, 0x80, 0x00)
#define RGB_DARKMAGENTA RGB(0x80, 0x00, 0x80)
#define RGB_DARKCYAN RGB(0x00, 0x80, 0x80)
// IMPORTANT: These macros depend heavily on the order of things in colors.cpp.
// 1) The order of colors in window must be Source Text, Text Selection, Text Highlight.
#define AUTO_TEXT { TRUE, TRUE, FALSE, FALSE, FALSE, COLOR_WINDOWTEXT }, { TRUE, TRUE, FALSE, FALSE, FALSE, COLOR_WINDOW }
#define AUTO_SELECTION { TRUE, FALSE, FALSE, TRUE, FALSE, 0 }, { TRUE, FALSE, FALSE, TRUE, FALSE, 0 }
#define AUTO_HIGHLIGHT { TRUE, TRUE, FALSE, FALSE, FALSE, COLOR_HIGHLIGHTTEXT }, { TRUE, TRUE, FALSE, FALSE, FALSE, COLOR_HIGHLIGHT }
#define AUTO_REF(n) { TRUE, FALSE, FALSE, FALSE, FALSE, n }, { TRUE, FALSE, FALSE, FALSE, FALSE, n }
#define AUTO_REF_SRC(n) { TRUE, FALSE, TRUE, FALSE, FALSE, n }, { TRUE, FALSE, TRUE, FALSE, FALSE, n }
#define BACKAUTO_TEXT { FALSE, TRUE, FALSE, FALSE, FALSE, COLOR_WINDOWTEXT }, { TRUE, TRUE, FALSE, FALSE, FALSE, COLOR_WINDOW }
#define BACKAUTO_SELECTION { FALSE, FALSE, FALSE, TRUE, FALSE, 0 }, { TRUE, FALSE, FALSE, TRUE, FALSE, 0 }
#define BACKAUTO_HIGHLIGHT { FALSE, TRUE, FALSE, FALSE, FALSE, COLOR_HIGHLIGHTTEXT }, { TRUE, TRUE, FALSE, FALSE, FALSE, COLOR_HIGHLIGHT }
#define BACKAUTO_REF(n) { FALSE, FALSE, FALSE, FALSE, FALSE, n }, { TRUE, FALSE, FALSE, FALSE, FALSE, n }
#define BACKAUTO_REF_SRC(n) { FALSE, FALSE, TRUE, FALSE, FALSE, n }, { TRUE, FALSE, TRUE, FALSE, FALSE, n }
#define NOTAUTO_TEXT { FALSE, TRUE, FALSE, FALSE, FALSE, COLOR_WINDOWTEXT }, { FALSE, TRUE, FALSE, FALSE, FALSE, COLOR_WINDOW }
#define NOTAUTO_SELECTION { FALSE, FALSE, FALSE, TRUE, FALSE, 0 }, { FALSE, FALSE, FALSE, TRUE, FALSE, 0 }
#define NOTAUTO_HIGHLIGHT { FALSE, TRUE, FALSE, FALSE, FALSE, COLOR_HIGHLIGHTTEXT }, { FALSE, TRUE, FALSE, FALSE, FALSE, COLOR_HIGHLIGHT }
#define NOTAUTO_REF(n) { FALSE, FALSE, FALSE, FALSE, FALSE, n }, { FALSE, FALSE, FALSE, FALSE, FALSE, n }
#define NOTAUTO_REF_SRC(n) { FALSE, FALSE, TRUE, FALSE, FALSE, n }, { FALSE, FALSE, TRUE, FALSE, FALSE, n }
struct AUTO_COLOR
{
WORD bOn:1; // Is auto color being used now?
WORD bSys:1; // Get the color from the system(1) or from a window(0)?
WORD bSrc:1; // If bSys == 0, use this window(0) or the Source Window(1)?
WORD bRev:1; // If from this window, reverse fore/background(1)?
WORD bUpd:1; // Used by UpdateAutoColors().
WORD index:5; // Index into element list(bSys==0) or COLOR_* value (bSys==1).
};
// This structure is used to translate between a Windows LOGFONT
// structure and name/size/flags combination.
//
struct LOGFONTSEARCH
{
LOGFONT LogFont;
TCHAR * szFontFace;
BYTE nFontSize;
BYTE nCharSet;
int nPixPerInchY;
BOOL bMonospace:1;
BOOL bTrueType:1;
};
struct FMT_ELEMENT
{
TCHAR * szElement;
COLORREF rgbText;
COLORREF rgbBackground;
AUTO_COLOR autoFore;
AUTO_COLOR autoBack;
};
struct FMT_WINDOW
{
TCHAR * szWindow;
TCHAR * szRegEntry;
BOOL bChanged:1;
BOOL bMonospace:1;
TCHAR * szFontFace;
UINT nFontSize;
PLOGFONT pLogFont;
int nElements;
FMT_ELEMENT * rgElements;
};
struct FMT_WINGROUP
{
int nWindows;
BOOL bSingleGroup:1; // If this is a singleton, do we show the group name?
_TCHAR * szName; // Name of Windows group
FMT_WINDOW * rgWindows;
};
#define FMT_ELEMENTS(x) (sizeof(x) / sizeof(FMT_ELEMENT))
#define FMT_WINDOWS(x) (sizeof(x) / sizeof(FMT_WINDOW))
enum DialogState { PreDialog, SelAll, SelGroup, SelWindow, PostDialog };
//////////////////////////////////////////////////////////////////////////////
// //
// class CFormatInfo //
// //
// This class handles one instance of FMT_WINGROUP data. //
// //
//////////////////////////////////////////////////////////////////////////////
class CFormatInfo : public CObject
{
// Iterators are friends.
friend CFmtIterator;
friend CFmtGroupIterator;
friend CFmtWindowIterator;
friend CFmtElementIterator;
friend CFCDialogState;
DECLARE_DYNAMIC (CFormatInfo);
private:
CPackage * m_pPackage; // Package info belongs to
FMT_WINGROUP * m_pWinGroup;
int m_nWinGroups;
CFormatInfo * m_pFormatInfoFromPackage;
// These are used by the Registry code
//
static _TCHAR m_szRegKey[];
static _TCHAR m_szFontFace[];
static _TCHAR m_szFontSize[];
static _TCHAR m_szCharSet[];
// This is useful to know
//
static int m_nPixPerInchY;
// These are useful tools
void SetForeColor ( UINT iFmtInfo, UINT iGroup, UINT iElement, COLORREF rgb );
void SetBackColor ( UINT iFmtInfo, UINT iGroup, UINT iElement, COLORREF rgb );
public:
CFormatInfo ( CPackage * pPackage = NULL);
~CFormatInfo ();
void Clear (); // Remove and free all data
BOOL IsEmpty () const { return m_nWinGroups == 0; }
void SaveToRegistry () const;
void UpdateFromRegistry ();
BOOL GetFormatInfo ( CPackage * pPackage = NULL);
const CFormatInfo& operator= (const FMT_WINGROUP&);
const CFormatInfo& operator= (const CFormatInfo&);
const CFormatInfo& operator+= (const FMT_WINGROUP&);
FMT_ELEMENT * GetElementList ( const _TCHAR * szWindow ) const;
FMT_WINDOW * GetWindow ( const _TCHAR * szWindow ) const;
int GetWindowCount () const;
void UpdateAutoColors (FMT_WINDOW * pWindow);
void UpdateAllAutoColors ();
void Update (const CFormatInfo& fmtInfo, int iWinGroup = -1, int iWindow = -1);
void UpdateAllLogFonts ();
static int GetLogFont (LOGFONTSEARCH * pSearchLogFont);
static void UpdateLogFont (FMT_WINDOW * pWindow);
// This is used as an EnumLogFont callack to get the LOGFONT struct for
// a given set of name/size/flags. LPARAM is a pointer to a
// LOGFONTSEARCH.
static int CALLBACK SearchCallBack(CONST ENUMLOGFONT *, CONST NEWTEXTMETRIC *, int, LPARAM);
//
// Support for Fonts and Colors dialog
//
BOOL Commit () const;
BOOL IsDirty () const;
void Clean ();
};
//////////////////////////////////////////////////////////////////////////////
// class CFmtIterator //
// class CFmtGroupIterator //
// class CFmtWindowIterator //
// class CFmtElementIterator //
// //
// Iteration classes for CFormatInfo. //
// //
//////////////////////////////////////////////////////////////////////////////
class CFmtIterator
{
protected:
const CObArray& m_rgFmtInfo;
int m_iFmtInfo;
public:
CFmtIterator ( const CObArray& rgFmtInfo);
CFormatInfo * Get ();
CFormatInfo * Peek () const;
inline void Inc ();
inline UINT GetIndex () const;
inline void Set (int iFmtInfo);
};
class CFmtGroupIterator : public CFmtIterator
{
protected:
int m_iGroup;
public:
CFmtGroupIterator ( const CObArray& rgFmtInfo);
FMT_WINGROUP * Get ();
FMT_WINGROUP * Peek () const;
inline void Inc ();
void SetLinear (UINT iGroupLinear);
void Set (FMT_WINGROUP * pWindow);
inline void Set (int iFmtInfo, int iWinGroup);
FMT_WINGROUP * GetLinear ();
FMT_WINGROUP * PeekLinear ();
inline UINT GetIndex () const;
};
class CFmtWindowIterator : public CFmtGroupIterator
{
protected:
int m_iWindow;
public:
CFmtWindowIterator ( const CObArray& rgFmtInfo);
FMT_WINDOW * Get ();
FMT_WINDOW * Peek () const;
inline void Inc ();
void SetLinear (UINT iWinLinear);
void Set (FMT_WINDOW * pWindow);
FMT_WINDOW * GetLinear ();
FMT_WINDOW * PeekLinear ();
inline UINT GetIndex () const;
};
class CFmtElementIterator : public CFmtWindowIterator
{
protected:
int m_iElement;
public:
CFmtElementIterator ( const CObArray& rgFmtInfo);
FMT_ELEMENT * Get ();
FMT_ELEMENT * Peek () const;
inline void Inc ();
inline void Dec (); // HACK!
void SetLinear (UINT iElementLinear);
FMT_ELEMENT * GetLinear ();
FMT_ELEMENT * PeekLinear ();
inline UINT GetIndex () const;
};
inline UINT CFmtIterator::GetIndex () const { return m_iFmtInfo; }
inline UINT CFmtGroupIterator::GetIndex () const { return m_iGroup; }
inline UINT CFmtWindowIterator::GetIndex () const { return m_iWindow; }
inline UINT CFmtElementIterator::GetIndex () const { return m_iElement; }
inline void CFmtIterator::Inc () { m_iFmtInfo++; }
inline void CFmtGroupIterator::Inc () { m_iGroup++; }
inline void CFmtWindowIterator::Inc () { m_iWindow++; }
inline void CFmtElementIterator::Inc () { m_iElement++; }
inline void CFmtElementIterator::Dec () { m_iElement--; }
inline void CFmtGroupIterator::Set (int iFmtInfo, int iWinGroup)
{
m_iGroup = iWinGroup;
CFmtIterator::Set (iFmtInfo);
}
inline void CFmtIterator::Set (int iFmtInfo)
{
m_iFmtInfo = iFmtInfo;
}
//////////////////////////////////////////////////////////////////////////////
// class CElList //
// //
// A list of unique element names. Uniqueness is enforced. Will also //
// iterate a given name - i.e. will sequentially find all elements with //
// the given name. //
// //
//////////////////////////////////////////////////////////////////////////////
class CElList
{
UINT m_inc; // Allocation increment
CPtrArray m_rgStrings;
CString m_strSearch;
public:
CElList (UINT inc = 4);
CElList::~CElList ();
BOOL AddString (const CString& str); // FALSE -> String was already there
FMT_ELEMENT * GetFirst (_TCHAR * szName, CFmtElementIterator& it, int iFormat = -1, int iGroup = -1);
FMT_ELEMENT * GetFirst (UINT iEl, CFmtElementIterator& it, int iFormat = -1, int iGroup = -1);
FMT_ELEMENT * GetNext (CFmtElementIterator& it, int iFormat = -1, int iGroup = -1);
void Fill (CListBox& lbox) const;
void Clear ();
BOOL IsForeColorTheSame (UINT iEl, CFmtElementIterator& it, int iFormat, int iGroup, COLORREF& rgb);
BOOL IsBackColorTheSame (UINT iEl, CFmtElementIterator& it, int iFormat, int iGroup, COLORREF& rgb);
inline int GetSize () const;
};
inline int CElList::GetSize () const
{
return (int)m_rgStrings.GetSize ();
}
//////////////////////////////////////////////////////////////////////////////
// class CWinList //
// //
// A list of FMT_WINDOW and FMT_WINGROUP. Used for the list of windows //
// under "Category" in the Fonts dialogs. //
// //
//////////////////////////////////////////////////////////////////////////////
class CWinList
{
CPtrArray m_rgGroups;
CPtrArray m_rgWindows;
public:
CWinList (UINT inc = 4);
~CWinList ();
void Add (FMT_WINGROUP * pGroup);
void Fill (CListBox& lbox) const;
BOOL GetName (int index, CString& strName) const;
BOOL GetPtr (int index, void * &p) const;
int FirstWindowIndex () const;
};
//////////////////////////////////////////////////////////////////////////////
// class FCDialogState //
// //
// This class acts as an intermediary between a CFontColorDlg and the //
// CFormatInfo objects underlying it. It locates and manages the data //
// from the packages, it keeps track of the state of the dialog and //
// propogates changes to the underlying data. It also propogates state //
// changes in one part of the dialog to the rest of the dialog. //
// //
//////////////////////////////////////////////////////////////////////////////
class CFCDialogState
{
DialogState m_state;
// As an intermediary, an instance of this class must have access
// to the CFontColorDlg object that it is working with
CFontColorDlg * m_pDialog;
CObArray m_rgFmtInfo;
// In the Group and All states, a list of unique element names from
// the group(s) in question is maintained:
CElList m_elList;
// This holds the list of windows and window groups that is shown
// in the dialog
CWinList m_winList;
UINT m_iCurWin;
// These describe the current Window/Element selection in terms of
// CFormatInfo array element / Windows Group / Window / Element.
//
UINT m_nFmtInfoCur;
UINT m_nWinGroupCur;
UINT m_nWindowCur;
UINT m_nElementCur;
// Enabled flags. Which parts of the dialog are enabled?
BOOL m_benFontName:1;
BOOL m_benFontSize:1;
BOOL m_benElements:1;
BOOL m_benForeColor:1;
BOOL m_benBackColor:1;
public:
CFCDialogState ( CFontColorDlg * pDialog = NULL );
~CFCDialogState ();
// State retrievers
inline operator DialogState () const;
FMT_WINDOW * GetWinCur (BOOL bReturnNull = TRUE, BOOL bMustHaveFont = FALSE) const;
COLORREF GetForeColor ();
COLORREF GetBackColor ();
PLOGFONT GetCurrentLogFont () const;
// Talk a walk over
enum WW_ACTION { FontEquality, FontPitch };
enum WW_RESULT { SameFont, FontsDiffer, NoFont, PitchFixed, PitchProportional, PitchMixed, NoWindows };
WW_RESULT WindowWalk (WW_ACTION act) const;
// State modifiers.
void InitDialog ();
void SetCurrentWindow (int iWindow);
void SetCurrentElement (int iElement);
UINT GetCurrentElement () { return m_nElementCur;};
void SetCurrentFont (const CString& strFontName, int size, BOOL bTrueType);
void SetCurrentFontSize (int nFontSize);
void SetForeColor ( COLORREF rgb );
void SetBackColor ( COLORREF rgb );
void RestoreDefaults ();
void UpdateAllAutoColors ();
// Other stuff
void Commit();
friend CFontColorDlg;
};
inline CFCDialogState::operator DialogState () const
{
return m_state;
}
#endif // __FMTINFO_H__
|
c0f36db3aecc98fee64f984b5d3307023d4745cb | 51506848883fcfc8d8eff4dd1a18f6ff94d26b19 | /bugs/CalendarPersonalPlanner/PRIVATE/src/cpp.cpp | b783234d8f1d4823e1f31bd47349f5690ba62421 | [] | no_license | Morriar/csg_debug | cc477b6987682371eb2787c5e283cd6225ab76b8 | a71f6fc3e6af54162783dd58af2da9786dd68d7d | refs/heads/master | 2021-03-19T16:43:48.688253 | 2018-01-05T20:30:00 | 2018-01-05T20:30:00 | 56,012,897 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,785 | cpp | cpp.cpp | /* ** *
* Quick and dirty code. Should work as is, except I did not really tested it.
* TODO: clean it and remove debug.
* ** */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
/* Min-heap data structure. Basically by the book. */
class node {
public:
double priority;
void *data;
};
class heap {
public: // Bug a public is missing, crappy errors
struct node *nodes;
int len;
int size;
int (*compare)(const void *data1, const void *data2);
};
void enqueue(struct heap *heap, double priority, void *data) {
if (heap->size <= heap->len + 1) {
int size = heap->size * 2;
if (size < 4) // not enough space :\ BUG
size = 4;
heap->size = size;
heap->nodes = (struct node *)realloc(heap->nodes, heap->size * sizeof (struct node));
}
int i = heap->len++;
while(i>0) {
int p = (i+1)/2-1;
if (heap->nodes[p].priority < priority)
break;
if (heap->nodes[p].priority == priority && heap->compare(heap->nodes[p].data, data) <= 0)
break;
heap->nodes[i] = heap->nodes[p];
i = p;
}
heap->nodes[i].priority = priority;
heap->nodes[i].data = data;
//printf("enqueue %p at %d, cost=%f\n", data, i, priority);
}
void *dequeue(struct heap *heap) {
if (heap->len==0)
return NULL;
void *result = heap->nodes[0].data;
//printf("dequeue %p cost=%f\n", result, heap->nodes[0].priority);
int i = 0;
heap->nodes[i] = heap->nodes[--heap->len];
for(;;) {
int l = 2*(i+1) - 1;
int r = l+1;
int c = i;
if (l < heap->len && heap->nodes[l].priority < heap->nodes[c].priority)
c = l;
if (l < heap->len && heap->nodes[l].priority == heap->nodes[c].priority && heap->compare(heap->nodes[l].data, heap->nodes[c].data) < 0)
c = l;
if (r < heap->len && heap->nodes[r].priority < heap->nodes[c].priority)
c = r;
if (r < heap->len && heap->nodes[r].priority == heap->nodes[c].priority && heap->compare(heap->nodes[r].data, heap->nodes[c].data) < 0)
c = l;
if (c == i)
break;
struct node tmp = heap->nodes[i];
heap->nodes[i] = heap->nodes[c];
heap->nodes[c] = tmp; // BUG chier le swap
i = c;
}
return result;
}
struct heap* new_heap(void) {
return (struct heap*)calloc(sizeof(struct heap),1);
}
// Empty the heap and deallocate the data first please.
void free_heap(struct heap* heap) {
free(heap->nodes);
free(heap);
}
/* Simple A* search */
struct state {
struct state *prev;
int money;
int fun;
int time;
const char *desc;
};
/* Ensure a total preference on a state.
* so for the same (if the used see variable result for the same input, he will assume the program is buggy... users are dumb) */
int state_compare(const struct state *s1, const struct state *s2) {
if (s1->time < s2->time) return -1;
if (s1->time > s2->time) return 1;
if (s1->money > s2->money) return -1;
if (s1->money < s2->money) return 1;
if (s1->fun > s2->fun) return -1;
if (s1->fun < s2->fun) return 1;
if (s1->prev == NULL && s2->prev == NULL) return 0;
if (s1->prev == NULL) return -1;
if (s2->prev == NULL) return 1;
return state_compare(s1->prev, s2->prev);
}
/* Global data */
class problem {
public:
/* initial state */
struct state *start;
/* goals */
int money_goal;
int fun_goal;
/* memorize states per position. */
struct state *area[200][200];
/* the associated priority queue. */
struct heap *heap;
};
/* If possible, create and register the new state for the move (`dmoney`,`dfun`) from the state `state`. */
struct state *next_state(struct state *state, struct problem *problem, int dmoney, int dfun, const char *desc) {
if (state->money + dmoney < 0 || state->fun + dfun < 0)
return NULL;
dmoney += state->money;
if (dmoney > 200) dmoney = 200;
dfun += state->fun;
if (dfun > 200) dfun = 200;
int time = state->time + 1;
struct state *result = (struct state*)malloc(sizeof(struct state));
result->prev = state;
result->money = dmoney;
result->fun = dfun;
result->time = time;
result->desc = desc;
if (dmoney < 200 && dfun < 200) {
struct state * old = problem->area[dmoney][dfun];
if (old != NULL && state_compare(old, result) <= 0) {
free(result);
return NULL;
}
}
/* Heuristic: Chebyshev distance with the max known moves. */
double cost = result->time;
double cm = result->money < problem->money_goal ? (problem->money_goal - result->money) / 34.0 : 0.0;
double cf = result->fun < problem->fun_goal ? (problem->fun_goal - result->fun) / 34.0 : 0.0;
cost += cm > cf ? cm : cf;
//printf("in t=%d %s m=%d f=%d h=%f c=%f\n", result->time, result->desc, result->money, result->fun, cost-result->time, cost);
if (dmoney < 200 && dfun < 200) {
problem->area[dmoney][dfun] = result;
}
enqueue(problem->heap, cost, result);
return result;
}
struct state * solve(int money_start, int fun_start, int money_goal, int fun_goal) {
struct problem *problem = (struct problem*)malloc(sizeof(struct problem));
struct state *state = (struct state*)malloc(sizeof(struct state));
state->prev = NULL;
state->money = money_start;
state->fun = fun_start;
state->time = 0;
problem->start = state;
struct heap *heap = new_heap();
heap->compare = (int(*)(const void*,const void*))&state_compare;
problem->heap = heap;
problem->money_goal = money_goal;
problem->fun_goal = fun_goal;
enqueue(heap, 0, state);
int i = 0;
while((state=(struct state*)dequeue(heap))) {
i++;
//if (i%1 == 0) printf("%d out t=%d %s m=%d f=%d\n", i, state->time, state->desc, state->money, state->fun);
if (state->money >= money_goal && state->fun >= fun_goal) return state;
next_state(state, problem, 0, +1, "tv"); // watch tv and chill
switch(state->time % 3) {
// night, 1:00 -> 9:00
case 0: next_state(state, problem, -24, +34, "night fiesta"); // booze is expensive, but you have the rest of the night to vomit
next_state(state, problem, +8, 0, "early work"); // early work is calm but don't pay that much
break;
// day, 9:00 -> 15:00
case 1: next_state(state, problem, -4, +14, "home alcoholism"); // at home, nobody can judge you
next_state(state, problem, +28, -28, "day work"); // day work with people, you hate people
break;
// evening, 15:00 -> 1:00
case 2:
next_state(state, problem, -14, +24, "night pub"); // nice booze and nice people to hang out with
next_state(state, problem, +18, -8, "night work"); // night work is boring
break;
}
}
return NULL;
}
void dump_heap(struct heap *heap) {
for(int i=0; i<heap->len; i++) {
int j = i;
printf("n[%d]=%f %p", j, heap->nodes[j].priority, heap->nodes[j].data);
while (j>0) {
j = (j+1)/2-1;
printf(" > n[%d]=%f", j, heap->nodes[j].priority);
}
printf("\n");
}
}
int test_heap(void) {
struct heap *heap = new_heap();
heap->compare = (int(*)(const void*, const void*))&strcmp;
for(int i = 0; i<50; i++) {
char s[100];
int x = rand() % 500;
sprintf(s, "%d", x);
enqueue(heap, x, strdup(s));
//printf("n[0]=%f %p\n", heap->nodes[0].priority, heap->nodes[0].data);
}
dequeue(heap);
char *s;
while((s=(char*)dequeue(heap))) {
printf("* %s\n", s);
}
}
const char *days[] = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
const char *hours[] = {"1:00 -> 9:00", "9:00 -> 15:00", "15:00 -> 1:00"};
void print_plan(struct state *state) {
if (state == NULL) return;
print_plan(state->prev);
int t = state->time - 1;
if (t < 0)
printf("* initial money=%d fun=%d\n", state->money, state->fun);
else
printf("* %s %s: %s (money=%d fun=%d)\n", days[t/3%7], hours[t%3], state->desc, state->money, state->fun);
}
int main(int argc, char **argv) {
//test_heap(); exit(0);
struct state *state = solve(argc>1?atoi(argv[1]):10, argc>2?atoi(argv[2]):10, argc>3?atoi(argv[3]):100, argc>4?atoi(argv[4]):100);
if (state != NULL)
print_plan(state);
else
printf("No solution\n");
}
|
504262a3fbc974edb5a171f00f521ba0aebd9967 | cb435b5f9a6f9231f7a50ec2cf9f0c21aa282b91 | /nanoPinPad.cpp | 12b2bc02bdf9df74cb3ec67e8a527036b79c8f5d | [
"WTFPL"
] | permissive | FistOfTheNorthStar/mcuCollection | 7309f5c63f08042588bf585cdc02cdf0b405039b | 55e9b91ad2d2243a2dba2dbc404a11eb187bd4ce | refs/heads/master | 2021-07-08T23:02:53.950548 | 2017-10-04T12:11:26 | 2017-10-04T12:11:26 | 105,762,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,911 | cpp | nanoPinPad.cpp | // Do not remove the include below
#include "nanoPinPad.h"
//timer to reset the pins
#include <MsTimer2.h>
//keypad library
#include <Keypad.h>
//add EEPROM
#include <EEPROM.h>
//memory testing
//#define MEMTEST
#ifdef MEMTEST
#include <MemoryFree.h>
#endif
//time to block misuse
#define DELAYtime
const byte ROWS = 4; //four rows
const byte COLS = 3; //three columns
byte keys[ROWS][COLS] = {
{1,2,3},
{4,5,6},
{7,8,9},
{240,0,240}};
//this case 1,2,3,4 CHECK THIS
byte rowPins[ROWS] = {4, 5, 6, 7}; //connect to the row pinouts of the keypad, 1st row, 2nd, 3rd, 4th
//1,2,3 CHECK THIS
byte colPins[COLS] = {8, 9, 10}; //connect to the column pinouts of the keypad, 1st, 2nd, 3rd
//keypad instance
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
//led pins
#define ledPlus 11
#define door 12
//this variable is needed for to check how many times the buttons have been pressed
byte pinNoState=0;
//testing variable the number of tries PIN has been entered, if wrong then wait 5s
byte testingTries = 0;
//the byte array to hold the pressed keys
byte pinpass[] = {0,0,0,0,0};
//read the number of pins
byte noPins=5;
//this holds the PIN from the memory
byte pinpassCOMP[5];
//{0,0,0,0,0};
//changing PIN
byte changingPIN = 0;
//changing the long changing code
byte changingCODE = 0;
//this is to hold the change code to be put into the EEPROM
byte changeCode[] ={240,240,240,240,240,240,240,240,240,240,240,240,240,240,240};
//output variables to SERIAL
//#define SERIALTEST
//if the keypad has a red light
//#define RED
//pin change state
boolean pinChange=false;
//long pin change state
boolean longPinChange=false;
//uncomment to reset the EEPROM!
//#define EEPROMreset
void resetPINs(){
//stop the timer to reset the pins
MsTimer2::stop();
#ifdef SERIALTEST
Serial.print("reset pins");
#endif
testingTries++;
#ifdef SERIALTEST
Serial.print(testingTries);
#endif
if (testingTries==5){
// if user tries 3 pins then wait 5s
//could enter red light here if there is such
#ifdef DELAYtime
delay(5000);
#endif
} else if(testingTries==10){
#ifdef DELAYtime
delay(15000);
#endif
} else if (testingTries==20){
#ifdef DELAYtime
delay(150000);
#endif
testingTries=0;
}
//this resets the state so that new Pin set can be given
pinNoState=0;
//set the changing pin to zero to begin again
changingPIN = 0;
//set the changing code to ZERO
changingCODE = 0;
//pin change state
pinChange=false;
//long pin state
longPinChange=false;
#ifdef MEMTEST
Serial.print("freeMemory()=");
Serial.println(freeMemory());
#endif
}
//testing function
void keyTest(byte pinpass[]){
//testing keys function
//stop the timer
MsTimer2::stop();
//if we reach the number of pins expected then check
if (pinNoState==5){
//this resets the state so that new Pin set can be given
pinNoState=0;
//testing boolean
boolean testCorrect=false;
//boolean no door open
boolean noDoor = false;
//test the regular pin
if(pinpass[0]!=240){
//go through the various pins
for (byte i = 0; i<5;i++){
if(pinpass[i]==pinpassCOMP[i] && changingPIN==0){
testCorrect = true;
//test if there is pin change in progress
}else if(pinChange && pinpass[i]!=240){
testCorrect = true;
noDoor = true;
}else{
testCorrect = false;
break;
}
}
//open door if correct
if(testCorrect){
//open door only if not changing the pin
if(!noDoor){
digitalWrite(door,HIGH);
delay(200);
digitalWrite(door,LOW);
#ifdef SERIALTEST
Serial.println("Door OPEN!");
#endif
//put green led on
digitalWrite(ledPlus,HIGH);
delay(1000);
digitalWrite(ledPlus,LOW);
}
if(noDoor){
//put the code into the EEPROM
for(byte j=0;j<5;j++){
EEPROM.write(j,pinpass[j]);
#ifdef SERIALTEST
Serial.println(pinpass[j]);
#endif
pinpassCOMP[j]=pinpass[j];
}
#ifdef SERIALTEST
Serial.println("PIN CHANGED");
#endif
//put green led on
digitalWrite(ledPlus,HIGH);
delay(100);
digitalWrite(ledPlus,LOW);
delay(100);
digitalWrite(ledPlus,HIGH);
delay(100);
digitalWrite(ledPlus,LOW);
delay(100);
}
//set testing tries to 0
testingTries=0;
}else{
testingTries++;
#ifdef SERIALTEST
Serial.print("wrong");
#endif
#ifdef RED
//put green red on
digitalWrite(4,HIGH);
delay(1000);
digitalWrite(4,LOW);
#endif
}
//set the changing pin to zero to begin again
changingPIN = 0;
//set the changing code to ZERO
changingCODE = 0;
//pin change state
pinChange=false;
//long pin state
longPinChange=false;
//test the pin change code
}else if(pinpass[0]==240 && !pinChange){
//reset changingCODE variable to zero
changingCODE = 0;
//long pin state
longPinChange=false;
//change the pin test 3 times needed
for (byte i = 5+changingPIN*5; i<10+changingPIN*5;i++){
#ifdef SERIALTEST
Serial.print(pinpass[i-5-changingPIN*5]);
Serial.print("#");
Serial.println(EEPROM.read(i));
#endif
//test the change PIN
if(EEPROM.read(i)==pinpass[i-5-changingPIN*5]){
testCorrect = true;
}else{
testCorrect = false;
break;
}
}
//set the pin
if(testCorrect){
//set testing tries to 0
testingTries=0;
//reset testCorrect boolean to false in order to test the functionality
testCorrect=false;
//add one time more
changingPIN++;
//check if the changing code has been inputted 3 times
if(changingPIN==3){
//reset changing pin and set pinchange to true
changingPIN=0;
pinChange = true;
}
//put green led on twice
digitalWrite(ledPlus,HIGH);
delay(500);
digitalWrite(ledPlus,LOW);
delay(500);
digitalWrite(ledPlus,HIGH);
delay(500);
digitalWrite(ledPlus,LOW);
}else{
testingTries++;
#ifdef SERIALTEST
Serial.print("wrong when changing pin");
#endif
#ifdef RED
//put green red on
digitalWrite(4,HIGH);
delay(1000);
digitalWrite(4,LOW);
#endif
//set the changing pin to zero to begin again
changingPIN = 0;
//pin change state
pinChange=false;
//long pin state
longPinChange=false;
}
//change the CHANGE CODE
}else if(pinpass[0]==240 && pinChange ){
//reset testing tries
testingTries=0;
for (byte i = 1+changingCODE*5; i<5+changingCODE*5;i++){
//check that the user is not trying to put in 240 nor 240 keys
if (pinpass[i]!=240 ){
testCorrect=true;
//put the value into the vector
changeCode[i]=pinpass[i-changingCODE*5];
#ifdef SERIALTEST
Serial.print(changeCode[i]);
Serial.print("x");
Serial.print("zzzz");
Serial.print(i);
Serial.print("wwww");
#endif
}else{
testCorrect=false;
break;
}
}
if(testCorrect){
//add one more
changingCODE++;
if(changingCODE==3){
//long pin state
longPinChange=true;
}
if(longPinChange){
//long pin state
longPinChange=false;
//pin change state
pinChange=false;
//changing code successfully changed
changingCODE = 0;
//set changing pin to zero
changingPIN = 0;
for(byte j= 5; j<20;j++){
byte insert = changeCode[j-5];
//insert the changed number into the system
EEPROM.write(j,insert);
#ifdef SERIALTEST
//print all the inserted bytes into the EEPROM
if(j==19){
Serial.print(EEPROM.read(j));
}else{
Serial.print(EEPROM.read(j));
Serial.print(",");
}
//empty line
Serial.println("");
#endif
}
}
//put green led on twice
digitalWrite(ledPlus,HIGH);
delay(500);
digitalWrite(ledPlus,LOW);
delay(500);
digitalWrite(ledPlus,HIGH);
delay(500);
digitalWrite(ledPlus,LOW);
}else{
//set the changing code to ZERO
changingCODE = 0;
//long pin state
longPinChange=false;
//pin change state
pinChange=false;
#ifdef RED
//put red on
digitalWrite(4,HIGH);
delay(1000);
digitalWrite(4,LOW);
#endif
}
}
}//end the given 5 pin
//error function
if (testingTries==5){
// if user tries 5 pins then wait 5s
//could enter red light here if there is such
#ifdef DELAYtime
delay(5000);
#endif
return;
} else if(testingTries==10){
#ifdef DELAYtime
delay(15000);
#endif
return;
} else if (testingTries==10){
#ifdef DELAYtime
delay(150000);
#endif
testingTries=0;
return;
}
#ifdef MEMTEST
Serial.print("freeMemory()=");
Serial.println(freeMemory());
#endif
}
//The setup function is called once at startup of the sketch
void setup()
{
#ifdef EEPROMreset
EEPROM.write(20,0);
#endif
//serial to test the pins
#ifdef SERIALTEST
Serial.begin(9600);
#endif
//set the timer to reset the pins to 7s, seems like a good number
MsTimer2::set(7000, resetPINs);
//setup the first pin
if(EEPROM.read(20)==0){
//write the first setup pins to the EEPROM positions 0-4
for(byte i=0;i<5;i++){
EEPROM.write(i,i);
}
//set the first #change code, and place # to every beginning
for(byte i=5;i<20;i++){
if(i==5 || i==10 || i==15){
EEPROM.write(i,240);
}else{
EEPROM.write(i,1);
}
}
//add one to EEPROM position 20, so that the setup is complete
EEPROM.write(20,1);
#ifdef SERIALTEST
for(byte i=0;i<21;i++){
Serial.print(EEPROM.read(i));
Serial.print(",");
}
#endif
}
//get the pin to be compared to
for(byte i=0;i<5;i++){
pinpassCOMP[i]=EEPROM.read(i);
}
//setup the output pins
//door open pin
pinMode(door, OUTPUT);
//led green
pinMode(ledPlus, OUTPUT);
#ifdef RED
//led red
pinMode(4, OUTPUT);
#endif
}
// The loop function is called in an endless loop
void loop()
{
//this is the keypad part
byte key = keypad.getKey();
delay(20);
if (key != NO_KEY){
#ifdef SERIALTEST
Serial.print(key);
#endif
if (pinNoState==0){
//start the timer
MsTimer2::start();
}
//check the number of times the key has been pressed
pinpass[pinNoState]=key;
pinNoState++;
if(pinNoState==5){
keyTest(pinpass);
#ifdef MEMTEST
Serial.print("freeMemory()=");
Serial.println(freeMemory());
#endif
}
}
}
|
e7fb10c89b88bae67e65fcdf34dd3eed0b78ddbf | a7b5e2e456c4ebef9ab2b9bc8ab614c6a3576a6b | /MyAna.h | 52aec4d9b7735b214f0542d80bcbcaa593440ef0 | [] | no_license | thomps51/UndergradThesisCode | d6181d2da5bb1d025977649f0568da94792a653a | 4eb9dddf3550dc656e50f15f07e160ad670c2a95 | refs/heads/master | 2021-01-10T02:34:56.586374 | 2016-01-04T02:06:29 | 2016-01-04T02:06:29 | 48,962,083 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 89,606 | h | MyAna.h | //////////////////////////////////////////////////////////
// This class has been automatically generated on
// Tue May 28 15:27:24 2013 by ROOT version 5.34/07
// from TTree HWWTree_em/HWW DilepNtuple_em
// found on file: 161305.root
//////////////////////////////////////////////////////////
#ifndef MyAna_h
#define MyAna_h
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
#include <TH1F.h>
// Header file for the classes stored in the TTree if any.
#include <vector>
#include <vector>
#include <vector>
#include "TLorentzVector.h"
// Fixed size dimensions of array or collections stored in the TTree if any.
class MyAna {
public :
TTree *fChain; //!pointer to the analyzed TTree or TChain
Int_t fCurrent; //!current Tree number in a TChain
// Declaration of leaf types
Float_t higgsPt;
Int_t isLowPtCand;
Int_t isBlinded;
Float_t Mll;
Float_t MT;
Float_t MTtruth;
Float_t MTup;
Float_t MTdown;
Float_t MTrans;
Float_t gammaStar_weight;
Float_t m_gammaStar;
Float_t smt_muon_pt;
Float_t smt_muon_sf;
Float_t smt_muon_mistag_sf_up;
Float_t smt_muon_mistag_sf_dw;
Float_t smt_muon_chi2_sf_up;
Float_t smt_muon_chi2_sf_dw;
Float_t smt_muon_id_sf_up;
Float_t smt_muon_id_sf_dw;
Float_t Ptll;
Float_t Ptlljets;
Float_t DPhill;
Float_t DPhillMET;
Float_t DRll;
Float_t DEtall;
Float_t Yll;
Float_t Pttot;
Float_t Mjj;
Float_t Ptjj;
Float_t DPhijj;
Float_t DRjj;
Float_t DEtajj;
Float_t DYjj;
Float_t Mtt;
Float_t x1;
Float_t x2;
Float_t BDT_1jet_4vars;
Float_t BLayer_hit0;
Float_t BLayer_hit1;
Float_t conv0;
Float_t conv1;
Int_t RandomRunNumber;
Float_t DPhiSubLeadLepMET;
Float_t DPhiLeadLepMET;
Float_t MinDPhi;
Float_t MinDPhi_noJVF;
Float_t MET;
Float_t MET_x;
Float_t MET_y;
Float_t MET_phi;
Float_t METRel;
Float_t METRel_x;
Float_t METRel_y;
Float_t METRel_noJets;
Float_t DPhiSubLeadLepMET_STVF;
Float_t DPhiLeadLepMET_STVF;
Float_t MinDPhi_STVF;
Float_t MinDPhi_noJVF_STVF;
Float_t MT_STVF;
Float_t MTrans_STVF;
Float_t Mtt_STVF;
Float_t x1_STVF;
Float_t x2_STVF;
Float_t Pttot_STVF;
Float_t MET_STVF;
Float_t MET_x_STVF;
Float_t MET_y_STVF;
Float_t MET_phi_STVF;
Float_t METRel_STVF;
Float_t METRel_x_STVF;
Float_t METRel_y_STVF;
Float_t METRel_noJets_STVF;
Float_t MET_TrackHWW_Cl;
Float_t MET_x_TrackHWW_Cl;
Float_t MET_y_TrackHWW_Cl;
Float_t MET_phi_TrackHWW_Cl;
Float_t MinDPhi_TrackHWW_Cl;
Float_t MinDPhi_noJVF_TrackHWW_Cl;
Float_t METRel_TrackHWW_Cl;
Float_t METRel_x_TrackHWW_Cl;
Float_t METRel_y_TrackHWW_Cl;
Float_t DPhi_CaloTrackHWW_Cl;
Float_t MT_TrackHWW_Cl;
Float_t PtTrack_TrackHWW_Cl;
Float_t MTrans_TrackHWW_Cl;
Float_t Mtt_TrackHWW_Cl;
Float_t x1_TrackHWW_Cl;
Float_t x2_TrackHWW_Cl;
Float_t DPhiSubLeadLepMET_TrackHWW_Cl;
Float_t DPhiLeadLepMET_TrackHWW_Cl;
Float_t Pttot_TrackHWW_Cl;
Float_t METRel_noJets_TrackHWW_Cl;
Float_t HighTrackPt_TrackHWW_Cl;
Int_t MET_TrackHWW_Nmu;
Int_t MET_TrackHWW_NmuMatched;
Int_t MET_TrackHWW_Nel;
Int_t MET_TrackHWW_NelMatched;
Int_t MET_TrackHWW_Ntracks;
Float_t sumTrackPt_TotHem_Proj;
Float_t sumTrackPt_SameHem_Proj;
Float_t sumTrackPt_OppHem_Proj;
Float_t sumJetPt15_TotHem_Proj;
Float_t sumJetPt15_SameHem_Proj;
Float_t sumJetPt15_OppHem_Proj;
Float_t LepPt0_Proj;
Float_t LepPt1_Proj;
Float_t LepTrackPt0_Proj;
Float_t LepTrackPt1_Proj;
Int_t n_SubJet10JVF_OppDilep;
Int_t n_SubJet10JVF_CloseDilep;
Int_t n_SubJet10JVF_PerpPosDilep;
Int_t n_SubJet10JVF_PerpNegDilep;
Float_t SumPtSca_SubJet10JVF_OppDilep;
Float_t SumPtSca_SubJet10JVF_CloseDilep;
Float_t SumPtSca_SubJet10JVF_PerpPosDilep;
Float_t SumPtSca_SubJet10JVF_PerpNegDilep;
Float_t SumPtVec_SubJet10JVF_OppDilep;
Float_t SumPtVec_SubJet10JVF_CloseDilep;
Float_t SumPtVec_SubJet10JVF_PerpPosDilep;
Float_t SumPtVec_SubJet10JVF_PerpNegDilep;
Float_t SumJVFPtSca_SubJet10_OppDilep;
Float_t SumJVFPtSca_SubJet10_CloseDilep;
Float_t SumJVFPtSca_SubJet10_PerpPosDilep;
Float_t SumJVFPtSca_SubJet10_PerpNegDilep;
Float_t SumJVFPtVec_SubJet10_OppDilep;
Float_t SumJVFPtVec_SubJet10_CloseDilep;
Float_t SumJVFPtVec_SubJet10_PerpPosDilep;
Float_t SumJVFPtVec_SubJet10_PerpNegDilep;
Float_t SumPtVec_SubJet10JVF_OppDilepjets;
Float_t SumPtVec_SubJet10JVF_CloseDilepjets;
Float_t SumPtVec_SubJet10JVF_PerpPosDilepjets;
Float_t SumPtVec_SubJet10JVF_PerpNegDilepjets;
Float_t SumJVFPtVec_SubJet10_OppDilepjets;
Float_t SumJVFPtVec_SubJet10_CloseDilepjets;
Float_t SumJVFPtVec_SubJet10_PerpPosDilepjets;
Float_t SumJVFPtVec_SubJet10_PerpNegDilepjets;
Float_t SumJVFPtVec_SubJet10_OppDilepjets_OvrlpRem;
Float_t SumJVFPtVec_SubJet10_CloseDilepjets_OvrlpRem;
Float_t SumJVFPtVec_SubJet10_PerpPosDilepjets_OvrlpRem;
Float_t SumJVFPtVec_SubJet10_PerpNegDilepjets_OvrlpRem;
Int_t n_Tracks_OppDilep;
Int_t n_Tracks_CloseDilep;
Int_t n_Tracks_PerpPosDilep;
Int_t n_Tracks_PerpNegDilep;
Float_t SumPtSca_Tracks_OppDilep;
Float_t SumPtSca_Tracks_CloseDilep;
Float_t SumPtSca_Tracks_PerpPosDilep;
Float_t SumPtSca_Tracks_PerpNegDilep;
Float_t SumPtVec_Tracks_OppDilep;
Float_t SumPtVec_Tracks_CloseDilep;
Float_t SumPtVec_Tracks_PerpPosDilep;
Float_t SumPtVec_Tracks_PerpNegDilep;
Float_t SumPtVec_TracksOutsideJets_OppDilep;
Float_t SumPtVec_TracksOutsideJets_CloseDilep;
Float_t SumPtVec_TracksOutsideJets_PerpPosDilep;
Float_t SumPtVec_TracksOutsideJets_PerpNegDilep;
Float_t lepID0;
Float_t lepID1;
Float_t lepPt0;
Float_t lepPt1;
Float_t lepPx0;
Float_t lepPx1;
Float_t lepPy0;
Float_t lepPy1;
Float_t lepPz0;
Float_t lepPz1;
Float_t lepEta0;
Float_t lepEta1;
Float_t lepPhi0;
Float_t lepPhi1;
Float_t MlMetLead;
Float_t MinMljj;
Float_t DeltaPhiljMin;
Float_t TR_ratio0;
Float_t TR_ratio1;
Float_t eoverp0;
Float_t eoverp1;
Float_t lepEtcone30_0;
Float_t lepPtcone30_0;
Float_t lepPtcone40_0;
Float_t lepz0PV0;
Float_t lepsigd0PV0;
Float_t lepEtcone30_1;
Float_t lepPtcone30_1;
Float_t lepPtcone40_1;
Float_t lepz0PV1;
Float_t lepsigd0PV1;
Float_t lepD0_0;
Float_t lepD0_1;
Float_t lepMagD0_0;
Float_t lepMagD0_1;
Float_t DRlep0jet;
Float_t DRlep1jet;
Int_t singleLepTrig;
Bool_t lepMatch_EF_mu24i_tight_0;
Bool_t lepMatch_EF_mu24i_tight_1;
Bool_t lepMatch_EF_mu36_tight_0;
Bool_t lepMatch_EF_mu36_tight_1;
Bool_t lepMatch_EF_e24vhi_medium1_0;
Bool_t lepMatch_EF_e24vhi_medium1_1;
Bool_t lepMatch_EF_e60_medium1_0;
Bool_t lepMatch_EF_e60_medium1_1;
Bool_t lepMatch_EF_e12Tvh_medium1_0;
Bool_t lepMatch_EF_e12Tvh_medium1_1;
Double_t pileupEventWeight;
Double_t pileupEventWeight_094;
Double_t pileupEventWeight_080;
Double_t pileupEventWeight_090;
Double_t pileupEventWeight_088;
Double_t pileupEventWeight_075;
Double_t pileupEventWeight_103;
Double_t mcEventWeight;
Double_t WgStarEventWeight;
Double_t WgStarEventWeightError;
Bool_t overlapWZ;
Bool_t passedVBFFilter;
Bool_t didEJoverlap;
Bool_t didMJoverlap;
Bool_t didEEoverlap;
Bool_t didEMoverlap;
Double_t vertexPosWeight;
Double_t trigEventWeight;
Double_t lepTrigSFEventWeight;
Double_t lepTrigSFEventWeightUp;
Double_t lepTrigSFEventWeightDown;
Double_t lepTrigSF0EventWeight;
Double_t lepTrigSF1EventWeight;
Double_t lepTrigSF0Error;
Double_t lepTrigSF1Error;
Double_t lepSF0EventWeight;
Double_t lepSF1EventWeight;
Double_t lepSF0Error;
Double_t lepSF1Error;
Double_t lepSF0ErrorIso;
Double_t lepSF1ErrorIso;
Double_t lepSF0ErrorSys;
Double_t lepSF1ErrorSys;
Int_t nJets_Pt20_JetCombNN_80;
Double_t JetCombNN20_80_EventWeight;
Double_t JetCombNN20_80_BJetWeight;
Double_t JetCombNN20_80_CTJetWeight;
Double_t JetCombNN20_80_MisTagWeight;
Double_t JetCombNN20_80_BJetWeightUp;
Double_t JetCombNN20_80_CTJetWeightUp;
Double_t JetCombNN20_80_MisTagWeightUp;
Double_t JetCombNN20_80_BJetWeightDown;
Double_t JetCombNN20_80_CTJetWeightDown;
Double_t JetCombNN20_80_MisTagWeightDown;
Double_t MV1_75_EventWeight;
Double_t MV1_85_EventWeight;
Double_t MV1_80_EventWeight;
Double_t MV120_85_EventWeight;
Double_t MV120_80_EventWeight;
Double_t MV120_75_EventWeight;
Double_t MV1_75_BJetWeight;
Double_t MV1_85_BJetWeight;
Double_t MV1_80_BJetWeight;
Double_t MV120_85_BJetWeight;
Double_t MV120_80_BJetWeight;
Double_t MV120_75_BJetWeight;
Double_t MV1_75_CTJetWeight;
Double_t MV1_85_CTJetWeight;
Double_t MV1_80_CTJetWeight;
Double_t MV120_85_CTJetWeight;
Double_t MV120_80_CTJetWeight;
Double_t MV120_75_CTJetWeight;
Double_t MV1_75_MisTagWeight;
Double_t MV1_85_MisTagWeight;
Double_t MV1_80_MisTagWeight;
Double_t MV120_85_MisTagWeight;
Double_t MV120_80_MisTagWeight;
Double_t MV120_75_MisTagWeight;
Double_t MV1_85_BJetWeightEV_1_Up;
Double_t MV1_85_BJetWeightEV_2_Up;
Double_t MV1_85_BJetWeightEV_3_Up;
Double_t MV1_85_BJetWeightEV_4_Up;
Double_t MV1_85_BJetWeightEV_5_Up;
Double_t MV1_85_BJetWeightEV_6_Up;
Double_t MV1_85_BJetWeightEV_7_Up;
Double_t MV1_85_BJetWeightEV_8_Up;
Double_t MV1_85_BJetWeightEV_9_Up;
Double_t MV1_85_BJetWeightEV_1_Down;
Double_t MV1_85_BJetWeightEV_2_Down;
Double_t MV1_85_BJetWeightEV_3_Down;
Double_t MV1_85_BJetWeightEV_4_Down;
Double_t MV1_85_BJetWeightEV_5_Down;
Double_t MV1_85_BJetWeightEV_6_Down;
Double_t MV1_85_BJetWeightEV_7_Down;
Double_t MV1_85_BJetWeightEV_8_Down;
Double_t MV1_85_BJetWeightEV_9_Down;
Double_t MV1_80_BJetWeightEV_1_Up;
Double_t MV1_80_BJetWeightEV_2_Up;
Double_t MV1_80_BJetWeightEV_3_Up;
Double_t MV1_80_BJetWeightEV_4_Up;
Double_t MV1_80_BJetWeightEV_5_Up;
Double_t MV1_80_BJetWeightEV_6_Up;
Double_t MV1_80_BJetWeightEV_7_Up;
Double_t MV1_80_BJetWeightEV_8_Up;
Double_t MV1_80_BJetWeightEV_9_Up;
Double_t MV1_80_BJetWeightEV_1_Down;
Double_t MV1_80_BJetWeightEV_2_Down;
Double_t MV1_80_BJetWeightEV_3_Down;
Double_t MV1_80_BJetWeightEV_4_Down;
Double_t MV1_80_BJetWeightEV_5_Down;
Double_t MV1_80_BJetWeightEV_6_Down;
Double_t MV1_80_BJetWeightEV_7_Down;
Double_t MV1_80_BJetWeightEV_8_Down;
Double_t MV1_80_BJetWeightEV_9_Down;
Double_t MV1_75_BJetWeightUp;
Double_t MV1_85_BJetWeightUp;
Double_t MV1_80_BJetWeightUp;
Double_t MV120_80_BJetWeightUp;
Double_t MV120_85_BJetWeightUp;
Double_t MV120_75_BJetWeightUp;
Double_t MV1_75_CTJetWeightUp;
Double_t MV1_85_CTJetWeightUp;
Double_t MV1_80_CTJetWeightUp;
Double_t MV120_85_CTJetWeightUp;
Double_t MV120_80_CTJetWeightUp;
Double_t MV120_75_CTJetWeightUp;
Double_t MV1_75_MisTagWeightUp;
Double_t MV1_85_MisTagWeightUp;
Double_t MV1_80_MisTagWeightUp;
Double_t MV120_85_MisTagWeightUp;
Double_t MV120_80_MisTagWeightUp;
Double_t MV120_75_MisTagWeightUp;
Double_t MV1_75_BJetWeightDown;
Double_t MV1_85_BJetWeightDown;
Double_t MV1_80_BJetWeightDown;
Double_t MV120_85_BJetWeightDown;
Double_t MV120_75_BJetWeightDown;
Double_t MV1_75_CTJetWeightDown;
Double_t MV1_85_CTJetWeightDown;
Double_t MV1_80_CTJetWeightDown;
Double_t MV120_85_CTJetWeightDown;
Double_t MV120_75_CTJetWeightDown;
Double_t MV1_75_MisTagWeightDown;
Double_t MV1_85_MisTagWeightDown;
Double_t MV1_80_MisTagWeightDown;
Double_t MV120_85_MisTagWeightDown;
Double_t MV120_80_MisTagWeightDown;
Double_t MV120_75_MisTagWeightDown;
Int_t nJets_Pt25_MV1_75;
Int_t nJets_Pt25_MV1_85;
Int_t nJets_Pt25_MV1_80;
Int_t nJets_Pt20_MV1_75;
Int_t nJets_Pt20_MV1_85;
Int_t nJets_Pt20_MV1_80;
Int_t nJets_Pt20;
Float_t nJetsProbing_JetCombNN_80;
Float_t nJetsProbing_JetCombNN_70;
Float_t nJetsProbing_MV1_85;
Float_t nJetsProbing_MV1_80;
Float_t nJetsProbing_MV1_75;
Int_t Nvxp;
Float_t centralJetVeto_leadPt;
Float_t centralJetVeto_leadPt_central;
Float_t centralJetVeto_leadPt_forward;
Float_t jetPt0;
Float_t jetPt1;
Float_t jetEta0;
Float_t jetEta1;
Float_t jetE0;
Float_t jetE1;
Float_t jetY0;
Float_t jetY1;
Float_t jetM0;
Float_t jetM1;
Float_t jetPhi0;
Float_t jetPhi1;
Float_t jetMV10;
Float_t jetMV11;
Float_t jetCombNN0;
Float_t jetCombNN1;
Float_t z0Vtx;
Int_t bpos;
Int_t blen;
Int_t bgap;
Float_t BDPhill;
Float_t BDPsill;
Float_t BpsiLep0;
Float_t BpsiLep1;
Float_t BPLeadLep;
Float_t BPSubLeadLep;
Float_t BELeadNeu;
Float_t BESubLeadNeu;
Float_t MWLead;
Float_t MWSubLead;
Float_t Hpt;
UInt_t RunNumber;
UInt_t EventNumber;
UInt_t lbn;
UInt_t bcid;
Float_t actualIntPerXing;
Float_t averageIntPerXing;
UInt_t mc_channel_number;
UInt_t larError;
Int_t top_hfor_type;
Float_t MET_CellOut_Eflow_STVF_phi;
Float_t MET_CellOut_Eflow_STVF_et;
Float_t MET_CellOut_Eflow_STVF_sumet;
Float_t MET_CellOut_Eflow_JetArea_phi;
Float_t MET_CellOut_Eflow_JetArea_et;
Float_t MET_CellOut_Eflow_JetArea_sumet;
Float_t MET_CellOut_Eflow_JetAreaJVF_phi;
Float_t MET_CellOut_Eflow_JetAreaJVF_et;
Float_t MET_CellOut_Eflow_JetAreaJVF_sumet;
Float_t MET_CellOut_Eflow_JetAreaRhoEta5JVF_phi;
Float_t MET_CellOut_Eflow_JetAreaRhoEta5JVF_et;
Float_t MET_CellOut_Eflow_JetAreaRhoEta5JVF_sumet;
Float_t MET_CellOut_Eflow_phi;
Float_t MET_CellOut_Eflow_et;
Float_t MET_CellOut_Eflow_sumet;
Float_t MET_Truth_NonInt_phi;
Float_t MET_Truth_NonInt_et;
Float_t MET_Truth_NonInt_sumet;
Int_t in_jet_n;
vector<float> *in_jet_pt;
vector<float> *in_jet_eta;
vector<float> *in_jet_phi;
vector<float> *in_jet_jvtxf;
Int_t m_mu_n;
vector<float> *m_mu_pt;
vector<float> *m_mu_matchchi2;
vector<int> *m_mu_matchndof;
vector<float> *m_mu_energyLossPar;
vector<float> *m_mu_etCore;
vector<float> *m_mu_id_theta_exPV;
vector<float> *m_mu_id_qoverp_exPV;
vector<float> *m_mu_me_theta_exPV;
vector<float> *m_mu_me_qoverp_exPV;
vector<vector<float> > *m_mu_MET_wpx;
vector<vector<float> > *m_mu_MET_wpy;
vector<vector<float> > *m_mu_MET_wet;
Int_t m_el_n;
vector<vector<float> > *m_el_MET_wpx;
vector<vector<float> > *m_el_MET_wpy;
vector<vector<float> > *m_el_MET_wet;
Int_t m_jetTruth_n;
vector<float> *m_jetTruth_E;
vector<float> *m_jetTruth_pt;
vector<float> *m_jetTruth_eta;
vector<float> *m_jetTruth_phi;
Int_t m_jet_n;
vector<float> *m_jet_E;
vector<float> *m_jet_pt;
vector<float> *m_jet_eta;
vector<float> *m_jet_phi;
vector<float> *m_jet_LArQuality;
vector<float> *m_jet_sumPtTrk;
vector<float> *m_jet_emfrac;
vector<float> *m_jet_jvtxf;
vector<float> *m_jet_flavor_weight_MV1;
vector<int> *m_jet_flavor_truth_label;
Int_t m_vxp_n;
vector<int> *m_vxp_nTracks;
Int_t cen_jet_n;
vector<float> *cen_jet_E;
vector<float> *cen_jet_pt;
vector<float> *cen_jet_eta;
vector<float> *cen_jet_phi;
vector<float> *cen_jet_sumPtTrk;
vector<float> *cen_jet_jvtxf;
vector<float> *cen_jet_flavor_weight_JetFitterCOMBNN;
vector<int> *cen_jet_flavor_truth_label;
vector<int> *m_mcevt_pdf_id1;
vector<int> *m_mcevt_pdf_id2;
vector<double> *m_mcevt_pdf_x1;
vector<double> *m_mcevt_pdf_x2;
vector<double> *m_mcevt_pdf_scale;
// List of branches
TBranch *b_higgsPt; //!
TBranch *b_isLowPtCand; //!
TBranch *b_isBlinded; //!
TBranch *b_Mll; //!
TBranch *b_MT; //!
TBranch *b_MTtruth; //!
TBranch *b_MTup; //!
TBranch *b_MTdown; //!
TBranch *b_MTrans; //!
TBranch *b_gammaStar_weight; //!
TBranch *b_m_gammaStar; //!
TBranch *b_smt_muon_pt; //!
TBranch *b_smt_muon_sf; //!
TBranch *b_smt_muon_mistag_sf_up; //!
TBranch *b_smt_muon_mistag_sf_dw; //!
TBranch *b_smt_muon_chi2_sf_up; //!
TBranch *b_smt_muon_chi2_sf_dw; //!
TBranch *b_smt_muon_id_sf_up; //!
TBranch *b_smt_muon_id_sf_dw; //!
TBranch *b_Ptll; //!
TBranch *b_Ptlljets; //!
TBranch *b_DPhill; //!
TBranch *b_DPhillMET; //!
TBranch *b_DRll; //!
TBranch *b_DEtall; //!
TBranch *b_Yll; //!
TBranch *b_Pttot; //!
TBranch *b_Mjj; //!
TBranch *b_Ptjj; //!
TBranch *b_DPhijj; //!
TBranch *b_DRjj; //!
TBranch *b_DEtajj; //!
TBranch *b_DYjj; //!
TBranch *b_Mtt; //!
TBranch *b_x1; //!
TBranch *b_x2; //!
TBranch *b_BDT_1jet_4vars; //!
TBranch *b_BLayer_hit0; //!
TBranch *b_BLayer_hit1; //!
TBranch *b_conv0; //!
TBranch *b_conv1; //!
TBranch *b_RandomRunNumber; //!
TBranch *b_DPhiSubLeadLepMET; //!
TBranch *b_DPhiLeadLepMET; //!
TBranch *b_MinDPhi; //!
TBranch *b_MinDPhi_noJVF; //!
TBranch *b_MET; //!
TBranch *b_MET_x; //!
TBranch *b_MET_y; //!
TBranch *b_MET_phi; //!
TBranch *b_METRel; //!
TBranch *b_METRel_x; //!
TBranch *b_METRel_y; //!
TBranch *b_METRel_noJets; //!
TBranch *b_DPhiSubLeadLepMET_STVF; //!
TBranch *b_DPhiLeadLepMET_STVF; //!
TBranch *b_MinDPhi_STVF; //!
TBranch *b_MinDPhi_noJVF_STVF; //!
TBranch *b_MT_STVF; //!
TBranch *b_MTrans_STVF; //!
TBranch *b_Mtt_STVF; //!
TBranch *b_x1_STVF; //!
TBranch *b_x2_STVF; //!
TBranch *b_Pttot_STVF; //!
TBranch *b_MET_STVF; //!
TBranch *b_MET_x_STVF; //!
TBranch *b_MET_y_STVF; //!
TBranch *b_MET_phi_STVF; //!
TBranch *b_METRel_STVF; //!
TBranch *b_METRel_x_STVF; //!
TBranch *b_METRel_y_STVF; //!
TBranch *b_METRel_noJets_STVF; //!
TBranch *b_MET_TrackHWW_Cl; //!
TBranch *b_MET_x_TrackHWW_Cl; //!
TBranch *b_MET_y_TrackHWW_Cl; //!
TBranch *b_MET_phi_TrackHWW_Cl; //!
TBranch *b_MinDPhi_TrackHWW_Cl; //!
TBranch *b_MinDPhi_noJVF_TrackHWW_Cl; //!
TBranch *b_METRel_Track_HWW_Cl; //!
TBranch *b_METRel_x_TrackHWW_Cl; //!
TBranch *b_METRel_y_TrackHWW_Cl; //!
TBranch *b_DPhi_CaloTrackHWW_Cl; //!
TBranch *b_MT_TrackHWW_Cl; //!
TBranch *b_PtTrack_TrackHWW_Cl; //!
TBranch *b_MTrans_TrackHWW_Cl; //!
TBranch *b_Mtt_TrackHWW_Cl; //!
TBranch *b_x1_TrackHWW_Cl; //!
TBranch *b_x2_TrackHWW_Cl; //!
TBranch *b_DPhiSubLeadLepMET_TrackHWW_Cl; //!
TBranch *b_DPhiLeadLepMET_TrackHWW_Cl; //!
TBranch *b_Pttot_TrackHWW_Cl; //!
TBranch *b_METRel_noJets_TrackHWW_Cl; //!
TBranch *b_HighTrackPt_TrackHWW_Cl; //!
TBranch *b_MET_TrackHWW_Nmu; //!
TBranch *b_MET_TrackHWW_NmuMatched; //!
TBranch *b_MET_TrackHWW_Nel; //!
TBranch *b_MET_TrackHWW_NelMatched; //!
TBranch *b_MET_TrackHWW_Ntracks; //!
TBranch *b_sumTrackPt_TotHem_Proj; //!
TBranch *b_sumTrackPt_SameHem_Proj; //!
TBranch *b_sumTrackPt_OppHem_Proj; //!
TBranch *b_sumJetPt15_TotHem_Proj; //!
TBranch *b_sumJetPt15_SameHem_Proj; //!
TBranch *b_sumJetPt15_OppHem_Proj; //!
TBranch *b_LepPt0_Proj; //!
TBranch *b_LepPt1_Proj; //!
TBranch *b_LepTrackPt0_Proj; //!
TBranch *b_LepTrackPt1_Proj; //!
TBranch *b_n_SubJet10JVF_OppDilep; //!
TBranch *b_n_SubJet10JVF_CloseDilep; //!
TBranch *b_n_SubJet10JVF_PerpPosDilep; //!
TBranch *b_n_SubJet10JVF_PerpNegDilep; //!
TBranch *b_SumPtSca_SubJet10JVF_OppDilep; //!
TBranch *b_SumPtSca_SubJet10JVF_CloseDilep; //!
TBranch *b_SumPtSca_SubJet10JVF_PerpPosDilep; //!
TBranch *b_SumPtSca_SubJet10JVF_PerpNegDilep; //!
TBranch *b_SumPtVec_SubJet10JVF_OppDilep; //!
TBranch *b_SumPtVec_SubJet10JVF_CloseDilep; //!
TBranch *b_SumPtVec_SubJet10JVF_PerpPosDilep; //!
TBranch *b_SumPtVec_SubJet10JVF_PerpNegDilep; //!
TBranch *b_SumJVFPtSca_SubJet10_OppDilep; //!
TBranch *b_SumJVFPtSca_SubJet10_CloseDilep; //!
TBranch *b_SumJVFPtSca_SubJet10_PerpPosDilep; //!
TBranch *b_SumJVFPtSca_SubJet10_PerpNegDilep; //!
TBranch *b_SumJVFPtVec_SubJet10_OppDilep; //!
TBranch *b_SumJVFPtVec_SubJet10_CloseDilep; //!
TBranch *b_SumJVFPtVec_SubJet10_PerpPosDilep; //!
TBranch *b_SumJVFPtVec_SubJet10_PerpNegDilep; //!
TBranch *b_SumPtVec_SubJet10JVF_OppDilepjets; //!
TBranch *b_SumPtVec_SubJet10JVF_CloseDilepjets; //!
TBranch *b_SumPtVec_SubJet10JVF_PerpPosDilepjets; //!
TBranch *b_SumPtVec_SubJet10JVF_PerpNegDilepjets; //!
TBranch *b_SumJVFPtVec_SubJet10_OppDilepjets; //!
TBranch *b_SumJVFPtVec_SubJet10_CloseDilepjets; //!
TBranch *b_SumJVFPtVec_SubJet10_PerpPosDilepjets; //!
TBranch *b_SumJVFPtVec_SubJet10_PerpNegDilepjets; //!
TBranch *b_SumJVFPtVec_SubJet10_OppDilepjets_OvrlpRem; //!
TBranch *b_SumJVFPtVec_SubJet10_CloseDilepjets_OvrlpRem; //!
TBranch *b_SumJVFPtVec_SubJet10_PerpPosDilepjets_OvrlpRem; //!
TBranch *b_SumJVFPtVec_SubJet10_PerpNegDilepjets_OvrlpRem; //!
TBranch *b_n_Tracks_OppDilep; //!
TBranch *b_n_Tracks_CloseDilep; //!
TBranch *b_n_Tracks_PerpPosDilep; //!
TBranch *b_n_Tracks_PerpNegDilep; //!
TBranch *b_SumPtSca_Tracks_OppDilep; //!
TBranch *b_SumPtSca_Tracks_CloseDilep; //!
TBranch *b_SumPtSca_Tracks_PerpPosDilep; //!
TBranch *b_SumPtSca_Tracks_PerpNegDilep; //!
TBranch *b_SumPtVec_Tracks_OppDilep; //!
TBranch *b_SumPtVec_Tracks_CloseDilep; //!
TBranch *b_SumPtVec_Tracks_PerpPosDilep; //!
TBranch *b_SumPtVec_Tracks_PerpNegDilep; //!
TBranch *b_SumPtVec_TracksOutsideJets_OppDilep; //!
TBranch *b_SumPtVec_TracksOutsideJets_CloseDilep; //!
TBranch *b_SumPtVec_TracksOutsideJets_PerpPosDilep; //!
TBranch *b_SumPtVec_TracksOutsideJets_PerpNegDilep; //!
TBranch *b_lepID0; //!
TBranch *b_lepID1; //!
TBranch *b_lepPt0; //!
TBranch *b_lepPt1; //!
TBranch *b_lepPx0; //!
TBranch *b_lepPx1; //!
TBranch *b_lepPy0; //!
TBranch *b_lepPy1; //!
TBranch *b_lepPz0; //!
TBranch *b_lepPz1; //!
TBranch *b_lepEta0; //!
TBranch *b_lepEta1; //!
TBranch *b_lepPhi0; //!
TBranch *b_lepPhi1; //!
TBranch *b_MlMetLead; //!
TBranch *b_MinMljj; //!
TBranch *b_DeltaPhiljMin; //!
TBranch *b_TR_ratio0; //!
TBranch *b_TR_ratio1; //!
TBranch *b_eoverp0; //!
TBranch *b_eoverp1; //!
TBranch *b_lepEtcone30_0; //!
TBranch *b_lepPtcone30_0; //!
TBranch *b_lepPtcone40_0; //!
TBranch *b_lepz0PV0; //!
TBranch *b_lepsigd0PV0; //!
TBranch *b_lepEtcone30_1; //!
TBranch *b_lepPtcone30_1; //!
TBranch *b_lepPtcone40_1; //!
TBranch *b_lepz0PV1; //!
TBranch *b_lepsigd0PV1; //!
TBranch *b_lepD0_0; //!
TBranch *b_lepD0_1; //!
TBranch *b_lepMagD0_0; //!
TBranch *b_lepMagD0_1; //!
TBranch *b_DRlep0jet; //!
TBranch *b_DRlep1jet; //!
TBranch *b_singleLepTrig; //!
TBranch *b_lepMatch_EF_mu24i_tight_0; //!
TBranch *b_lepMatch_EF_mu24i_tight_1; //!
TBranch *b_lepMatch_EF_mu36_tight_0; //!
TBranch *b_lepMatch_EF_mu36_tight_1; //!
TBranch *b_lepMatch_EF_e24vhi_medium1_0; //!
TBranch *b_lepMatch_EF_e24vhi_medium1_1; //!
TBranch *b_lepMatch_EF_e60_medium1_0; //!
TBranch *b_lepMatch_EF_e60_medium1_1; //!
TBranch *b_lepMatch_EF_e12Tvh_medium1_0; //!
TBranch *b_lepMatch_EF_e12Tvh_medium1_1; //!
TBranch *b_pileupEventWeight; //!
TBranch *b_pileupEventWeight_094; //!
TBranch *b_pileupEventWeight_080; //!
TBranch *b_pileupEventWeight_090; //!
TBranch *b_pileupEventWeight_088; //!
TBranch *b_pileupEventWeight_075; //!
TBranch *b_pileupEventWeight_103; //!
TBranch *b_mcEventWeight; //!
TBranch *b_WgStarEventWeight; //!
TBranch *b_WgStarEventWeightError; //!
TBranch *b_overlapWZ; //!
TBranch *b_passedVBFFilter; //!
TBranch *b_didEJoverlap; //!
TBranch *b_didMJoverlap; //!
TBranch *b_didEEoverlap; //!
TBranch *b_didEMoverlap; //!
TBranch *b_vertexPosWeight; //!
TBranch *b_trigEventWeight; //!
TBranch *b_lepTrigSFEventWeight; //!
TBranch *b_lepTrigSFEventWeightUp; //!
TBranch *b_lepTrigSFEventWeightDown; //!
TBranch *b_lepTrigSF0EventWeight; //!
TBranch *b_lepTrigSF1EventWeight; //!
TBranch *b_lepTrigSF0Error; //!
TBranch *b_lepTrigSF1Error; //!
TBranch *b_lepSF0EventWeight; //!
TBranch *b_lepSF1EventWeight; //!
TBranch *b_lepSF0Error; //!
TBranch *b_lepSF1Error; //!
TBranch *b_lepSF0ErrorIso; //!
TBranch *b_lepSF1ErrorIso; //!
TBranch *b_lepSF0ErrorSys; //!
TBranch *b_lepSF1ErrorSys; //!
TBranch *b_nJets_Pt20_JetCombNN_80; //!
TBranch *b_JetCombNN20_80_EventWeight; //!
TBranch *b_JetCombNN20_80_BJetWeight; //!
TBranch *b_JetCombNN20_80_CTJetWeight; //!
TBranch *b_JetCombNN20_80_MisTagWeight; //!
TBranch *b_JetCombNN20_80_BJetWeightUp; //!
TBranch *b_JetCombNN20_80_CTJetWeightUp; //!
TBranch *b_JetCombNN20_80_MisTagWeightUp; //!
TBranch *b_JetCombNN20_80_BJetWeightDown; //!
TBranch *b_JetCombNN20_80_CTJetWeightDown; //!
TBranch *b_JetCombNN20_80_MisTagWeightDown; //!
TBranch *b_MV1_75_EventWeight; //!
TBranch *b_MV1_85_EventWeight; //!
TBranch *b_MV1_80_EventWeight; //!
TBranch *b_MV120_85_EventWeight; //!
TBranch *b_MV120_80_EventWeight; //!
TBranch *b_MV120_75_EventWeight; //!
TBranch *b_MV1_75_BJetWeight; //!
TBranch *b_MV1_85_BJetWeight; //!
TBranch *b_MV1_80_BJetWeight; //!
TBranch *b_MV120_85_BJetWeight; //!
TBranch *b_MV120_80_BJetWeight; //!
TBranch *b_MV120_75_BJetWeight; //!
TBranch *b_MV1_75_CTJetWeight; //!
TBranch *b_MV1_85_CTJetWeight; //!
TBranch *b_MV1_80_CTJetWeight; //!
TBranch *b_MV120_85_CTJetWeight; //!
TBranch *b_MV120_80_CTJetWeight; //!
TBranch *b_MV120_75_CTJetWeight; //!
TBranch *b_MV1_75_MisTagWeight; //!
TBranch *b_MV1_85_MisTagWeight; //!
TBranch *b_MV1_80_MisTagWeight; //!
TBranch *b_MV120_85_MisTagWeight; //!
TBranch *b_MV120_80_MisTagWeight; //!
TBranch *b_MV120_75_MisTagWeight; //!
TBranch *b_MV1_85_BJetWeightEV_1_Up; //!
TBranch *b_MV1_85_BJetWeightEV_2_Up; //!
TBranch *b_MV1_85_BJetWeightEV_3_Up; //!
TBranch *b_MV1_85_BJetWeightEV_4_Up; //!
TBranch *b_MV1_85_BJetWeightEV_5_Up; //!
TBranch *b_MV1_85_BJetWeightEV_6_Up; //!
TBranch *b_MV1_85_BJetWeightEV_7_Up; //!
TBranch *b_MV1_85_BJetWeightEV_8_Up; //!
TBranch *b_MV1_85_BJetWeightEV_9_Up; //!
TBranch *b_MV1_85_BJetWeightEV_1_Down; //!
TBranch *b_MV1_85_BJetWeightEV_2_Down; //!
TBranch *b_MV1_85_BJetWeightEV_3_Down; //!
TBranch *b_MV1_85_BJetWeightEV_4_Down; //!
TBranch *b_MV1_85_BJetWeightEV_5_Down; //!
TBranch *b_MV1_85_BJetWeightEV_6_Down; //!
TBranch *b_MV1_85_BJetWeightEV_7_Down; //!
TBranch *b_MV1_85_BJetWeightEV_8_Down; //!
TBranch *b_MV1_85_BJetWeightEV_9_Down; //!
TBranch *b_MV1_80_BJetWeightEV_1_Up; //!
TBranch *b_MV1_80_BJetWeightEV_2_Up; //!
TBranch *b_MV1_80_BJetWeightEV_3_Up; //!
TBranch *b_MV1_80_BJetWeightEV_4_Up; //!
TBranch *b_MV1_80_BJetWeightEV_5_Up; //!
TBranch *b_MV1_80_BJetWeightEV_6_Up; //!
TBranch *b_MV1_80_BJetWeightEV_7_Up; //!
TBranch *b_MV1_80_BJetWeightEV_8_Up; //!
TBranch *b_MV1_80_BJetWeightEV_9_Up; //!
TBranch *b_MV1_80_BJetWeightEV_1_Down; //!
TBranch *b_MV1_80_BJetWeightEV_2_Down; //!
TBranch *b_MV1_80_BJetWeightEV_3_Down; //!
TBranch *b_MV1_80_BJetWeightEV_4_Down; //!
TBranch *b_MV1_80_BJetWeightEV_5_Down; //!
TBranch *b_MV1_80_BJetWeightEV_6_Down; //!
TBranch *b_MV1_80_BJetWeightEV_7_Down; //!
TBranch *b_MV1_80_BJetWeightEV_8_Down; //!
TBranch *b_MV1_80_BJetWeightEV_9_Down; //!
TBranch *b_MV1_75_BJetWeightUp; //!
TBranch *b_MV1_85_BJetWeightUp; //!
TBranch *b_MV1_80_BJetWeightUp; //!
TBranch *b_MV120_80_BJetWeightUp; //!
TBranch *b_MV120_85_BJetWeightUp; //!
TBranch *b_MV120_75_BJetWeightUp; //!
TBranch *b_MV1_75_CTJetWeightUp; //!
TBranch *b_MV1_85_CTJetWeightUp; //!
TBranch *b_MV1_80_CTJetWeightUp; //!
TBranch *b_MV120_85_CTJetWeightUp; //!
TBranch *b_MV120_80_CTJetWeightUp; //!
TBranch *b_MV120_75_CTJetWeightUp; //!
TBranch *b_MV1_75_MisTagWeightUp; //!
TBranch *b_MV1_85_MisTagWeightUp; //!
TBranch *b_MV1_80_MisTagWeightUp; //!
TBranch *b_MV120_85_MisTagWeightUp; //!
TBranch *b_MV120_80_MisTagWeightUp; //!
TBranch *b_MV120_75_MisTagWeightUp; //!
TBranch *b_MV1_75_BJetWeightDown; //!
TBranch *b_MV1_85_BJetWeightDown; //!
TBranch *b_MV1_80_BJetWeightDown; //!
TBranch *b_MV120_85_BJetWeightDown; //!
TBranch *b_MV120_75_BJetWeightDown; //!
TBranch *b_MV1_75_CTJetWeightDown; //!
TBranch *b_MV1_85_CTJetWeightDown; //!
TBranch *b_MV1_80_CTJetWeightDown; //!
TBranch *b_MV120_85_CTJetWeightDown; //!
TBranch *b_MV120_75_CTJetWeightDown; //!
TBranch *b_MV1_75_MisTagWeightDown; //!
TBranch *b_MV1_85_MisTagWeightDown; //!
TBranch *b_MV1_80_MisTagWeightDown; //!
TBranch *b_MV120_85_MisTagWeightDown; //!
TBranch *b_MV120_80_MisTagWeightDown; //!
TBranch *b_MV120_75_MisTagWeightDown; //!
TBranch *b_nJets_Pt25_MV1_75; //!
TBranch *b_nJets_Pt25_MV1_85; //!
TBranch *b_nJets_Pt25_MV1_80; //!
TBranch *b_nJets_Pt20_MV1_75; //!
TBranch *b_nJets_Pt20_MV1_85; //!
TBranch *b_nJets_Pt20_MV1_80; //!
TBranch *b_nJets_Pt20; //!
TBranch *b_nJetsProbing_JetCombNN_80; //!
TBranch *b_nJetsProbing_JetCombNN_70; //!
TBranch *b_nJetsProbing_MV1_85; //!
TBranch *b_nJetsProbing_MV1_80; //!
TBranch *b_nJetsProbing_MV1_75; //!
TBranch *b_Nvxp; //!
TBranch *b_centralJetVeto_leadPt; //!
TBranch *b_centralJetVeto_leadPt_central; //!
TBranch *b_centralJetVeto_leadPt_forward; //!
TBranch *b_jetPt0; //!
TBranch *b_jetPt1; //!
TBranch *b_jetEta0; //!
TBranch *b_jetEta1; //!
TBranch *b_jetE0; //!
TBranch *b_jetE1; //!
TBranch *b_jetY0; //!
TBranch *b_jetY1; //!
TBranch *b_jetM0; //!
TBranch *b_jetM1; //!
TBranch *b_jetPhi0; //!
TBranch *b_jetPhi1; //!
TBranch *b_jetMV10; //!
TBranch *b_jetMV11; //!
TBranch *b_jetCombNN0; //!
TBranch *b_jetCombNN1; //!
TBranch *b_z0Vtx; //!
TBranch *b_bpos; //!
TBranch *b_blen; //!
TBranch *b_bgap; //!
TBranch *b_BDPhill; //!
TBranch *b_BDPsill; //!
TBranch *b_BpsiLep0; //!
TBranch *b_BpsiLep1; //!
TBranch *b_BPLeadLep; //!
TBranch *b_BPSubLeadLep; //!
TBranch *b_BELeadNeu; //!
TBranch *b_BESubLeadNeu; //!
TBranch *b_MWLead; //!
TBranch *b_MWSubLead; //!
TBranch *b_Hpt; //!
TBranch *b_RunNumber; //!
TBranch *b_EventNumber; //!
TBranch *b_lbn; //!
TBranch *b_bcid; //!
TBranch *b_actualIntPerXing; //!
TBranch *b_averageIntPerXing; //!
TBranch *b_mc_channel_number; //!
TBranch *b_larError; //!
TBranch *b_top_hfor_type; //!
TBranch *b_MET_CellOut_Eflow_STVF_phi; //!
TBranch *b_MET_CellOut_Eflow_STVF_et; //!
TBranch *b_MET_CellOut_Eflow_STVF_sumet; //!
TBranch *b_MET_CellOut_Eflow_JetArea_phi; //!
TBranch *b_MET_CellOut_Eflow_JetArea_et; //!
TBranch *b_MET_CellOut_Eflow_JetArea_sumet; //!
TBranch *b_MET_CellOut_Eflow_JetAreaJVF_phi; //!
TBranch *b_MET_CellOut_Eflow_JetAreaJVF_et; //!
TBranch *b_MET_CellOut_Eflow_JetAreaJVF_sumet; //!
TBranch *b_MET_CellOut_Eflow_JetAreaRhoEta5JVF_phi; //!
TBranch *b_MET_CellOut_Eflow_JetAreaRhoEta5JVF_et; //!
TBranch *b_MET_CellOut_Eflow_JetAreaRhoEta5JVF_sumet; //!
TBranch *b_MET_CellOut_Eflow_phi; //!
TBranch *b_MET_CellOut_Eflow_et; //!
TBranch *b_MET_CellOut_Eflow_sumet; //!
TBranch *b_MET_Truth_NonInt_phi; //!
TBranch *b_MET_Truth_NonInt_et; //!
TBranch *b_MET_Truth_NonInt_sumet; //!
TBranch *b_in_jet_n; //!
TBranch *b_in_jet_pt; //!
TBranch *b_in_jet_eta; //!
TBranch *b_in_jet_phi; //!
TBranch *b_in_jet_jvtxf; //!
TBranch *b_m_mu_n; //!
TBranch *b_m_mu_pt; //!
TBranch *b_m_mu_matchchi2; //!
TBranch *b_m_mu_matchndof; //!
TBranch *b_m_mu_energyLossPar; //!
TBranch *b_m_mu_etCore; //!
TBranch *b_m_mu_id_theta_exPV; //!
TBranch *b_m_mu_id_qoverp_exPV; //!
TBranch *b_m_mu_me_theta_exPV; //!
TBranch *b_m_mu_me_qoverp_exPV; //!
TBranch *b_m_mu_MET_wpx; //!
TBranch *b_m_mu_MET_wpy; //!
TBranch *b_m_mu_MET_wet; //!
TBranch *b_m_el_n; //!
TBranch *b_m_el_MET_wpx; //!
TBranch *b_m_el_MET_wpy; //!
TBranch *b_m_el_MET_wet; //!
TBranch *b_m_jetTruth_n; //!
TBranch *b_m_jetTruth_E; //!
TBranch *b_m_jetTruth_pt; //!
TBranch *b_m_jetTruth_eta; //!
TBranch *b_m_jetTruth_phi; //!
TBranch *b_m_jet_n; //!
TBranch *b_m_jet_E; //!
TBranch *b_m_jet_pt; //!
TBranch *b_m_jet_eta; //!
TBranch *b_m_jet_phi; //!
TBranch *b_m_jet_LArQuality; //!
TBranch *b_m_jet_sumPtTrk; //!
TBranch *b_m_jet_emfrac; //!
TBranch *b_m_jet_jvtxf; //!
TBranch *b_m_jet_flavor_weight_MV1; //!
TBranch *b_m_jet_flavor_truth_label; //!
TBranch *b_m_vxp_n; //!
TBranch *b_m_vxp_nTracks; //!
TBranch *b_cen_jet_n; //!
TBranch *b_cen_jet_E; //!
TBranch *b_cen_jet_pt; //!
TBranch *b_cen_jet_eta; //!
TBranch *b_cen_jet_phi; //!
TBranch *b_cen_jet_sumPtTrk; //!
TBranch *b_cen_jet_jvtxf; //!
TBranch *b_cen_jet_flavor_weight_JetFitterCOMBNN; //!
TBranch *b_cen_jet_flavor_truth_label; //!
TBranch *b_m_mcevt_pdf_id1; //!
TBranch *b_m_mcevt_pdf_id2; //!
TBranch *b_m_mcevt_pdf_x1; //!
TBranch *b_m_mcevt_pdf_x2; //!
TBranch *b_m_mcevt_pdf_scale; //!
MyAna(TTree *tree=0);
virtual ~MyAna();
virtual Int_t Cut(Long64_t entry);
virtual Int_t GetEntry(Long64_t entry);
virtual Long64_t LoadTree(Long64_t entry);
virtual void Init(TTree *tree);
virtual void Loop();
virtual Bool_t Notify();
virtual void Show(Long64_t entry = -1);
virtual void Cutflow();
void FillHists(vector<TH1F *> histograms,Double_t weight);
vector<Bool_t> SameSignDilepton();
vector<Bool_t> OppSignDilepton();
void CreateNewTree();
vector<TLorentzVector> MakeJet4Vectors();
vector<TLorentzVector> MakeLep4Vectors();
Double_t EventWeight(Long64_t nentries);
};
#endif
#ifdef MyAna_cxx
MyAna::MyAna(TTree *tree) : fChain(0)
{
// if parameter tree is not specified (or zero), connect the file
// used to generate this class and read the Tree.
if (tree == 0) {
TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("161305.root");
if (!f || !f->IsOpen()) {
f = new TFile("161305.root");
}
f->GetObject("HWWTree_me",tree);
}
Init(tree);
}
MyAna::~MyAna()
{
if (!fChain) return;
delete fChain->GetCurrentFile();
}
Int_t MyAna::GetEntry(Long64_t entry)
{
// Read contents of entry.
if (!fChain) return 0;
return fChain->GetEntry(entry);
}
Long64_t MyAna::LoadTree(Long64_t entry)
{
// Set the environment to read one entry
if (!fChain) return -5;
Long64_t centry = fChain->LoadTree(entry);
if (centry < 0) return centry;
if (fChain->GetTreeNumber() != fCurrent) {
fCurrent = fChain->GetTreeNumber();
Notify();
}
return centry;
}
void MyAna::Init(TTree *tree)
{
// The Init() function is called when the selector needs to initialize
// a new tree or chain. Typically here the branch addresses and branch
// pointers of the tree will be set.
// It is normally not necessary to make changes to the generated
// code, but the routine can be extended by the user if needed.
// Init() will be called many times when running on PROOF
// (once per file to be processed).
// Set object pointer
in_jet_pt = 0;
in_jet_eta = 0;
in_jet_phi = 0;
in_jet_jvtxf = 0;
m_mu_pt = 0;
m_mu_matchchi2 = 0;
m_mu_matchndof = 0;
m_mu_energyLossPar = 0;
m_mu_etCore = 0;
m_mu_id_theta_exPV = 0;
m_mu_id_qoverp_exPV = 0;
m_mu_me_theta_exPV = 0;
m_mu_me_qoverp_exPV = 0;
m_mu_MET_wpx = 0;
m_mu_MET_wpy = 0;
m_mu_MET_wet = 0;
m_el_MET_wpx = 0;
m_el_MET_wpy = 0;
m_el_MET_wet = 0;
m_jetTruth_E = 0;
m_jetTruth_pt = 0;
m_jetTruth_eta = 0;
m_jetTruth_phi = 0;
m_jet_E = 0;
m_jet_pt = 0;
m_jet_eta = 0;
m_jet_phi = 0;
m_jet_LArQuality = 0;
m_jet_sumPtTrk = 0;
m_jet_emfrac = 0;
m_jet_jvtxf = 0;
m_jet_flavor_weight_MV1 = 0;
m_jet_flavor_truth_label = 0;
m_vxp_nTracks = 0;
cen_jet_E = 0;
cen_jet_pt = 0;
cen_jet_eta = 0;
cen_jet_phi = 0;
cen_jet_sumPtTrk = 0;
cen_jet_jvtxf = 0;
cen_jet_flavor_weight_JetFitterCOMBNN = 0;
cen_jet_flavor_truth_label = 0;
m_mcevt_pdf_id1 = 0;
m_mcevt_pdf_id2 = 0;
m_mcevt_pdf_x1 = 0;
m_mcevt_pdf_x2 = 0;
m_mcevt_pdf_scale = 0;
// Set branch addresses and branch pointers
if (!tree) return;
fChain = tree;
fCurrent = -1;
fChain->SetMakeClass(1);
fChain->SetBranchAddress("higgsPt", &higgsPt, &b_higgsPt);
fChain->SetBranchAddress("isLowPtCand", &isLowPtCand, &b_isLowPtCand);
fChain->SetBranchAddress("isBlinded", &isBlinded, &b_isBlinded);
fChain->SetBranchAddress("Mll", &Mll, &b_Mll);
fChain->SetBranchAddress("MT", &MT, &b_MT);
fChain->SetBranchAddress("MTtruth", &MTtruth, &b_MTtruth);
fChain->SetBranchAddress("MTup", &MTup, &b_MTup);
fChain->SetBranchAddress("MTdown", &MTdown, &b_MTdown);
fChain->SetBranchAddress("MTrans", &MTrans, &b_MTrans);
fChain->SetBranchAddress("gammaStar_weight", &gammaStar_weight, &b_gammaStar_weight);
fChain->SetBranchAddress("m_gammaStar", &m_gammaStar, &b_m_gammaStar);
fChain->SetBranchAddress("smt_muon_pt", &smt_muon_pt, &b_smt_muon_pt);
fChain->SetBranchAddress("smt_muon_sf", &smt_muon_sf, &b_smt_muon_sf);
fChain->SetBranchAddress("smt_muon_mistag_sf_up", &smt_muon_mistag_sf_up, &b_smt_muon_mistag_sf_up);
fChain->SetBranchAddress("smt_muon_mistag_sf_dw", &smt_muon_mistag_sf_dw, &b_smt_muon_mistag_sf_dw);
fChain->SetBranchAddress("smt_muon_chi2_sf_up", &smt_muon_chi2_sf_up, &b_smt_muon_chi2_sf_up);
fChain->SetBranchAddress("smt_muon_chi2_sf_dw", &smt_muon_chi2_sf_dw, &b_smt_muon_chi2_sf_dw);
fChain->SetBranchAddress("smt_muon_id_sf_up", &smt_muon_id_sf_up, &b_smt_muon_id_sf_up);
fChain->SetBranchAddress("smt_muon_id_sf_dw", &smt_muon_id_sf_dw, &b_smt_muon_id_sf_dw);
fChain->SetBranchAddress("Ptll", &Ptll, &b_Ptll);
fChain->SetBranchAddress("Ptlljets", &Ptlljets, &b_Ptlljets);
fChain->SetBranchAddress("DPhill", &DPhill, &b_DPhill);
fChain->SetBranchAddress("DPhillMET", &DPhillMET, &b_DPhillMET);
fChain->SetBranchAddress("DRll", &DRll, &b_DRll);
fChain->SetBranchAddress("DEtall", &DEtall, &b_DEtall);
fChain->SetBranchAddress("Yll", &Yll, &b_Yll);
fChain->SetBranchAddress("Pttot", &Pttot, &b_Pttot);
fChain->SetBranchAddress("Mjj", &Mjj, &b_Mjj);
fChain->SetBranchAddress("Ptjj", &Ptjj, &b_Ptjj);
fChain->SetBranchAddress("DPhijj", &DPhijj, &b_DPhijj);
fChain->SetBranchAddress("DRjj", &DRjj, &b_DRjj);
fChain->SetBranchAddress("DEtajj", &DEtajj, &b_DEtajj);
fChain->SetBranchAddress("DYjj", &DYjj, &b_DYjj);
fChain->SetBranchAddress("Mtt", &Mtt, &b_Mtt);
fChain->SetBranchAddress("x1", &x1, &b_x1);
fChain->SetBranchAddress("x2", &x2, &b_x2);
fChain->SetBranchAddress("BDT_1jet_4vars", &BDT_1jet_4vars, &b_BDT_1jet_4vars);
fChain->SetBranchAddress("BLayer_hit0", &BLayer_hit0, &b_BLayer_hit0);
fChain->SetBranchAddress("BLayer_hit1", &BLayer_hit1, &b_BLayer_hit1);
fChain->SetBranchAddress("conv0", &conv0, &b_conv0);
fChain->SetBranchAddress("conv1", &conv1, &b_conv1);
fChain->SetBranchAddress("RandomRunNumber", &RandomRunNumber, &b_RandomRunNumber);
fChain->SetBranchAddress("DPhiSubLeadLepMET", &DPhiSubLeadLepMET, &b_DPhiSubLeadLepMET);
fChain->SetBranchAddress("DPhiLeadLepMET", &DPhiLeadLepMET, &b_DPhiLeadLepMET);
fChain->SetBranchAddress("MinDPhi", &MinDPhi, &b_MinDPhi);
fChain->SetBranchAddress("MinDPhi_noJVF", &MinDPhi_noJVF, &b_MinDPhi_noJVF);
fChain->SetBranchAddress("MET", &MET, &b_MET);
fChain->SetBranchAddress("MET_x", &MET_x, &b_MET_x);
fChain->SetBranchAddress("MET_y", &MET_y, &b_MET_y);
fChain->SetBranchAddress("MET_phi", &MET_phi, &b_MET_phi);
fChain->SetBranchAddress("METRel", &METRel, &b_METRel);
fChain->SetBranchAddress("METRel_x", &METRel_x, &b_METRel_x);
fChain->SetBranchAddress("METRel_y", &METRel_y, &b_METRel_y);
fChain->SetBranchAddress("METRel_noJets", &METRel_noJets, &b_METRel_noJets);
fChain->SetBranchAddress("DPhiSubLeadLepMET_STVF", &DPhiSubLeadLepMET_STVF, &b_DPhiSubLeadLepMET_STVF);
fChain->SetBranchAddress("DPhiLeadLepMET_STVF", &DPhiLeadLepMET_STVF, &b_DPhiLeadLepMET_STVF);
fChain->SetBranchAddress("MinDPhi_STVF", &MinDPhi_STVF, &b_MinDPhi_STVF);
fChain->SetBranchAddress("MinDPhi_noJVF_STVF", &MinDPhi_noJVF_STVF, &b_MinDPhi_noJVF_STVF);
fChain->SetBranchAddress("MT_STVF", &MT_STVF, &b_MT_STVF);
fChain->SetBranchAddress("MTrans_STVF", &MTrans_STVF, &b_MTrans_STVF);
fChain->SetBranchAddress("Mtt_STVF", &Mtt_STVF, &b_Mtt_STVF);
fChain->SetBranchAddress("x1_STVF", &x1_STVF, &b_x1_STVF);
fChain->SetBranchAddress("x2_STVF", &x2_STVF, &b_x2_STVF);
fChain->SetBranchAddress("Pttot_STVF", &Pttot_STVF, &b_Pttot_STVF);
fChain->SetBranchAddress("MET_STVF", &MET_STVF, &b_MET_STVF);
fChain->SetBranchAddress("MET_x_STVF", &MET_x_STVF, &b_MET_x_STVF);
fChain->SetBranchAddress("MET_y_STVF", &MET_y_STVF, &b_MET_y_STVF);
fChain->SetBranchAddress("MET_phi_STVF", &MET_phi_STVF, &b_MET_phi_STVF);
fChain->SetBranchAddress("METRel_STVF", &METRel_STVF, &b_METRel_STVF);
fChain->SetBranchAddress("METRel_x_STVF", &METRel_x_STVF, &b_METRel_x_STVF);
fChain->SetBranchAddress("METRel_y_STVF", &METRel_y_STVF, &b_METRel_y_STVF);
fChain->SetBranchAddress("METRel_noJets_STVF", &METRel_noJets_STVF, &b_METRel_noJets_STVF);
fChain->SetBranchAddress("MET_TrackHWW_Cl", &MET_TrackHWW_Cl, &b_MET_TrackHWW_Cl);
fChain->SetBranchAddress("MET_x_TrackHWW_Cl", &MET_x_TrackHWW_Cl, &b_MET_x_TrackHWW_Cl);
fChain->SetBranchAddress("MET_y_TrackHWW_Cl", &MET_y_TrackHWW_Cl, &b_MET_y_TrackHWW_Cl);
fChain->SetBranchAddress("MET_phi_TrackHWW_Cl", &MET_phi_TrackHWW_Cl, &b_MET_phi_TrackHWW_Cl);
fChain->SetBranchAddress("MinDPhi_TrackHWW_Cl", &MinDPhi_TrackHWW_Cl, &b_MinDPhi_TrackHWW_Cl);
fChain->SetBranchAddress("MinDPhi_noJVF_TrackHWW_Cl", &MinDPhi_noJVF_TrackHWW_Cl, &b_MinDPhi_noJVF_TrackHWW_Cl);
fChain->SetBranchAddress("METRel_TrackHWW_Cl", &METRel_TrackHWW_Cl, &b_METRel_Track_HWW_Cl);
fChain->SetBranchAddress("METRel_x_TrackHWW_Cl", &METRel_x_TrackHWW_Cl, &b_METRel_x_TrackHWW_Cl);
fChain->SetBranchAddress("METRel_y_TrackHWW_Cl", &METRel_y_TrackHWW_Cl, &b_METRel_y_TrackHWW_Cl);
fChain->SetBranchAddress("DPhi_CaloTrackHWW_Cl", &DPhi_CaloTrackHWW_Cl, &b_DPhi_CaloTrackHWW_Cl);
fChain->SetBranchAddress("MT_TrackHWW_Cl", &MT_TrackHWW_Cl, &b_MT_TrackHWW_Cl);
fChain->SetBranchAddress("PtTrack_TrackHWW_Cl", &PtTrack_TrackHWW_Cl, &b_PtTrack_TrackHWW_Cl);
fChain->SetBranchAddress("MTrans_TrackHWW_Cl", &MTrans_TrackHWW_Cl, &b_MTrans_TrackHWW_Cl);
fChain->SetBranchAddress("Mtt_TrackHWW_Cl", &Mtt_TrackHWW_Cl, &b_Mtt_TrackHWW_Cl);
fChain->SetBranchAddress("x1_TrackHWW_Cl", &x1_TrackHWW_Cl, &b_x1_TrackHWW_Cl);
fChain->SetBranchAddress("x2_TrackHWW_Cl", &x2_TrackHWW_Cl, &b_x2_TrackHWW_Cl);
fChain->SetBranchAddress("DPhiSubLeadLepMET_TrackHWW_Cl", &DPhiSubLeadLepMET_TrackHWW_Cl, &b_DPhiSubLeadLepMET_TrackHWW_Cl);
fChain->SetBranchAddress("DPhiLeadLepMET_TrackHWW_Cl", &DPhiLeadLepMET_TrackHWW_Cl, &b_DPhiLeadLepMET_TrackHWW_Cl);
fChain->SetBranchAddress("Pttot_TrackHWW_Cl", &Pttot_TrackHWW_Cl, &b_Pttot_TrackHWW_Cl);
fChain->SetBranchAddress("METRel_noJets_TrackHWW_Cl", &METRel_noJets_TrackHWW_Cl, &b_METRel_noJets_TrackHWW_Cl);
fChain->SetBranchAddress("HighTrackPt_TrackHWW_Cl", &HighTrackPt_TrackHWW_Cl, &b_HighTrackPt_TrackHWW_Cl);
fChain->SetBranchAddress("MET_TrackHWW_Nmu", &MET_TrackHWW_Nmu, &b_MET_TrackHWW_Nmu);
fChain->SetBranchAddress("MET_TrackHWW_NmuMatched", &MET_TrackHWW_NmuMatched, &b_MET_TrackHWW_NmuMatched);
fChain->SetBranchAddress("MET_TrackHWW_Nel", &MET_TrackHWW_Nel, &b_MET_TrackHWW_Nel);
fChain->SetBranchAddress("MET_TrackHWW_NelMatched", &MET_TrackHWW_NelMatched, &b_MET_TrackHWW_NelMatched);
fChain->SetBranchAddress("MET_TrackHWW_Ntracks", &MET_TrackHWW_Ntracks, &b_MET_TrackHWW_Ntracks);
fChain->SetBranchAddress("sumTrackPt_TotHem_Proj", &sumTrackPt_TotHem_Proj, &b_sumTrackPt_TotHem_Proj);
fChain->SetBranchAddress("sumTrackPt_SameHem_Proj", &sumTrackPt_SameHem_Proj, &b_sumTrackPt_SameHem_Proj);
fChain->SetBranchAddress("sumTrackPt_OppHem_Proj", &sumTrackPt_OppHem_Proj, &b_sumTrackPt_OppHem_Proj);
fChain->SetBranchAddress("sumJetPt15_TotHem_Proj", &sumJetPt15_TotHem_Proj, &b_sumJetPt15_TotHem_Proj);
fChain->SetBranchAddress("sumJetPt15_SameHem_Proj", &sumJetPt15_SameHem_Proj, &b_sumJetPt15_SameHem_Proj);
fChain->SetBranchAddress("sumJetPt15_OppHem_Proj", &sumJetPt15_OppHem_Proj, &b_sumJetPt15_OppHem_Proj);
fChain->SetBranchAddress("LepPt0_Proj", &LepPt0_Proj, &b_LepPt0_Proj);
fChain->SetBranchAddress("LepPt1_Proj", &LepPt1_Proj, &b_LepPt1_Proj);
fChain->SetBranchAddress("LepTrackPt0_Proj", &LepTrackPt0_Proj, &b_LepTrackPt0_Proj);
fChain->SetBranchAddress("LepTrackPt1_Proj", &LepTrackPt1_Proj, &b_LepTrackPt1_Proj);
fChain->SetBranchAddress("n_SubJet10JVF_OppDilep", &n_SubJet10JVF_OppDilep, &b_n_SubJet10JVF_OppDilep);
fChain->SetBranchAddress("n_SubJet10JVF_CloseDilep", &n_SubJet10JVF_CloseDilep, &b_n_SubJet10JVF_CloseDilep);
fChain->SetBranchAddress("n_SubJet10JVF_PerpPosDilep", &n_SubJet10JVF_PerpPosDilep, &b_n_SubJet10JVF_PerpPosDilep);
fChain->SetBranchAddress("n_SubJet10JVF_PerpNegDilep", &n_SubJet10JVF_PerpNegDilep, &b_n_SubJet10JVF_PerpNegDilep);
fChain->SetBranchAddress("SumPtSca_SubJet10JVF_OppDilep", &SumPtSca_SubJet10JVF_OppDilep, &b_SumPtSca_SubJet10JVF_OppDilep);
fChain->SetBranchAddress("SumPtSca_SubJet10JVF_CloseDilep", &SumPtSca_SubJet10JVF_CloseDilep, &b_SumPtSca_SubJet10JVF_CloseDilep);
fChain->SetBranchAddress("SumPtSca_SubJet10JVF_PerpPosDilep", &SumPtSca_SubJet10JVF_PerpPosDilep, &b_SumPtSca_SubJet10JVF_PerpPosDilep);
fChain->SetBranchAddress("SumPtSca_SubJet10JVF_PerpNegDilep", &SumPtSca_SubJet10JVF_PerpNegDilep, &b_SumPtSca_SubJet10JVF_PerpNegDilep);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_OppDilep", &SumPtVec_SubJet10JVF_OppDilep, &b_SumPtVec_SubJet10JVF_OppDilep);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_CloseDilep", &SumPtVec_SubJet10JVF_CloseDilep, &b_SumPtVec_SubJet10JVF_CloseDilep);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_PerpPosDilep", &SumPtVec_SubJet10JVF_PerpPosDilep, &b_SumPtVec_SubJet10JVF_PerpPosDilep);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_PerpNegDilep", &SumPtVec_SubJet10JVF_PerpNegDilep, &b_SumPtVec_SubJet10JVF_PerpNegDilep);
fChain->SetBranchAddress("SumJVFPtSca_SubJet10_OppDilep", &SumJVFPtSca_SubJet10_OppDilep, &b_SumJVFPtSca_SubJet10_OppDilep);
fChain->SetBranchAddress("SumJVFPtSca_SubJet10_CloseDilep", &SumJVFPtSca_SubJet10_CloseDilep, &b_SumJVFPtSca_SubJet10_CloseDilep);
fChain->SetBranchAddress("SumJVFPtSca_SubJet10_PerpPosDilep", &SumJVFPtSca_SubJet10_PerpPosDilep, &b_SumJVFPtSca_SubJet10_PerpPosDilep);
fChain->SetBranchAddress("SumJVFPtSca_SubJet10_PerpNegDilep", &SumJVFPtSca_SubJet10_PerpNegDilep, &b_SumJVFPtSca_SubJet10_PerpNegDilep);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_OppDilep", &SumJVFPtVec_SubJet10_OppDilep, &b_SumJVFPtVec_SubJet10_OppDilep);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_CloseDilep", &SumJVFPtVec_SubJet10_CloseDilep, &b_SumJVFPtVec_SubJet10_CloseDilep);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_PerpPosDilep", &SumJVFPtVec_SubJet10_PerpPosDilep, &b_SumJVFPtVec_SubJet10_PerpPosDilep);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_PerpNegDilep", &SumJVFPtVec_SubJet10_PerpNegDilep, &b_SumJVFPtVec_SubJet10_PerpNegDilep);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_OppDilepjets", &SumPtVec_SubJet10JVF_OppDilepjets, &b_SumPtVec_SubJet10JVF_OppDilepjets);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_CloseDilepjets", &SumPtVec_SubJet10JVF_CloseDilepjets, &b_SumPtVec_SubJet10JVF_CloseDilepjets);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_PerpPosDilepjets", &SumPtVec_SubJet10JVF_PerpPosDilepjets, &b_SumPtVec_SubJet10JVF_PerpPosDilepjets);
fChain->SetBranchAddress("SumPtVec_SubJet10JVF_PerpNegDilepjets", &SumPtVec_SubJet10JVF_PerpNegDilepjets, &b_SumPtVec_SubJet10JVF_PerpNegDilepjets);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_OppDilepjets", &SumJVFPtVec_SubJet10_OppDilepjets, &b_SumJVFPtVec_SubJet10_OppDilepjets);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_CloseDilepjets", &SumJVFPtVec_SubJet10_CloseDilepjets, &b_SumJVFPtVec_SubJet10_CloseDilepjets);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_PerpPosDilepjets", &SumJVFPtVec_SubJet10_PerpPosDilepjets, &b_SumJVFPtVec_SubJet10_PerpPosDilepjets);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_PerpNegDilepjets", &SumJVFPtVec_SubJet10_PerpNegDilepjets, &b_SumJVFPtVec_SubJet10_PerpNegDilepjets);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_OppDilepjets_OvrlpRem", &SumJVFPtVec_SubJet10_OppDilepjets_OvrlpRem, &b_SumJVFPtVec_SubJet10_OppDilepjets_OvrlpRem);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_CloseDilepjets_OvrlpRem", &SumJVFPtVec_SubJet10_CloseDilepjets_OvrlpRem, &b_SumJVFPtVec_SubJet10_CloseDilepjets_OvrlpRem);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_PerpPosDilepjets_OvrlpRem", &SumJVFPtVec_SubJet10_PerpPosDilepjets_OvrlpRem, &b_SumJVFPtVec_SubJet10_PerpPosDilepjets_OvrlpRem);
fChain->SetBranchAddress("SumJVFPtVec_SubJet10_PerpNegDilepjets_OvrlpRem", &SumJVFPtVec_SubJet10_PerpNegDilepjets_OvrlpRem, &b_SumJVFPtVec_SubJet10_PerpNegDilepjets_OvrlpRem);
fChain->SetBranchAddress("n_Tracks_OppDilep", &n_Tracks_OppDilep, &b_n_Tracks_OppDilep);
fChain->SetBranchAddress("n_Tracks_CloseDilep", &n_Tracks_CloseDilep, &b_n_Tracks_CloseDilep);
fChain->SetBranchAddress("n_Tracks_PerpPosDilep", &n_Tracks_PerpPosDilep, &b_n_Tracks_PerpPosDilep);
fChain->SetBranchAddress("n_Tracks_PerpNegDilep", &n_Tracks_PerpNegDilep, &b_n_Tracks_PerpNegDilep);
fChain->SetBranchAddress("SumPtSca_Tracks_OppDilep", &SumPtSca_Tracks_OppDilep, &b_SumPtSca_Tracks_OppDilep);
fChain->SetBranchAddress("SumPtSca_Tracks_CloseDilep", &SumPtSca_Tracks_CloseDilep, &b_SumPtSca_Tracks_CloseDilep);
fChain->SetBranchAddress("SumPtSca_Tracks_PerpPosDilep", &SumPtSca_Tracks_PerpPosDilep, &b_SumPtSca_Tracks_PerpPosDilep);
fChain->SetBranchAddress("SumPtSca_Tracks_PerpNegDilep", &SumPtSca_Tracks_PerpNegDilep, &b_SumPtSca_Tracks_PerpNegDilep);
fChain->SetBranchAddress("SumPtVec_Tracks_OppDilep", &SumPtVec_Tracks_OppDilep, &b_SumPtVec_Tracks_OppDilep);
fChain->SetBranchAddress("SumPtVec_Tracks_CloseDilep", &SumPtVec_Tracks_CloseDilep, &b_SumPtVec_Tracks_CloseDilep);
fChain->SetBranchAddress("SumPtVec_Tracks_PerpPosDilep", &SumPtVec_Tracks_PerpPosDilep, &b_SumPtVec_Tracks_PerpPosDilep);
fChain->SetBranchAddress("SumPtVec_Tracks_PerpNegDilep", &SumPtVec_Tracks_PerpNegDilep, &b_SumPtVec_Tracks_PerpNegDilep);
fChain->SetBranchAddress("SumPtVec_TracksOutsideJets_OppDilep", &SumPtVec_TracksOutsideJets_OppDilep, &b_SumPtVec_TracksOutsideJets_OppDilep);
fChain->SetBranchAddress("SumPtVec_TracksOutsideJets_CloseDilep", &SumPtVec_TracksOutsideJets_CloseDilep, &b_SumPtVec_TracksOutsideJets_CloseDilep);
fChain->SetBranchAddress("SumPtVec_TracksOutsideJets_PerpPosDilep", &SumPtVec_TracksOutsideJets_PerpPosDilep, &b_SumPtVec_TracksOutsideJets_PerpPosDilep);
fChain->SetBranchAddress("SumPtVec_TracksOutsideJets_PerpNegDilep", &SumPtVec_TracksOutsideJets_PerpNegDilep, &b_SumPtVec_TracksOutsideJets_PerpNegDilep);
fChain->SetBranchAddress("lepID0", &lepID0, &b_lepID0);
fChain->SetBranchAddress("lepID1", &lepID1, &b_lepID1);
fChain->SetBranchAddress("lepPt0", &lepPt0, &b_lepPt0);
fChain->SetBranchAddress("lepPt1", &lepPt1, &b_lepPt1);
fChain->SetBranchAddress("lepPx0", &lepPx0, &b_lepPx0);
fChain->SetBranchAddress("lepPx1", &lepPx1, &b_lepPx1);
fChain->SetBranchAddress("lepPy0", &lepPy0, &b_lepPy0);
fChain->SetBranchAddress("lepPy1", &lepPy1, &b_lepPy1);
fChain->SetBranchAddress("lepPz0", &lepPz0, &b_lepPz0);
fChain->SetBranchAddress("lepPz1", &lepPz1, &b_lepPz1);
fChain->SetBranchAddress("lepEta0", &lepEta0, &b_lepEta0);
fChain->SetBranchAddress("lepEta1", &lepEta1, &b_lepEta1);
fChain->SetBranchAddress("lepPhi0", &lepPhi0, &b_lepPhi0);
fChain->SetBranchAddress("lepPhi1", &lepPhi1, &b_lepPhi1);
fChain->SetBranchAddress("MlMetLead", &MlMetLead, &b_MlMetLead);
fChain->SetBranchAddress("MinMljj", &MinMljj, &b_MinMljj);
fChain->SetBranchAddress("DeltaPhiljMin", &DeltaPhiljMin, &b_DeltaPhiljMin);
fChain->SetBranchAddress("TR_ratio0", &TR_ratio0, &b_TR_ratio0);
fChain->SetBranchAddress("TR_ratio1", &TR_ratio1, &b_TR_ratio1);
fChain->SetBranchAddress("eoverp0", &eoverp0, &b_eoverp0);
fChain->SetBranchAddress("eoverp1", &eoverp1, &b_eoverp1);
fChain->SetBranchAddress("lepEtcone30_0", &lepEtcone30_0, &b_lepEtcone30_0);
fChain->SetBranchAddress("lepPtcone30_0", &lepPtcone30_0, &b_lepPtcone30_0);
fChain->SetBranchAddress("lepPtcone40_0", &lepPtcone40_0, &b_lepPtcone40_0);
fChain->SetBranchAddress("lepz0PV0", &lepz0PV0, &b_lepz0PV0);
fChain->SetBranchAddress("lepsigd0PV0", &lepsigd0PV0, &b_lepsigd0PV0);
fChain->SetBranchAddress("lepEtcone30_1", &lepEtcone30_1, &b_lepEtcone30_1);
fChain->SetBranchAddress("lepPtcone30_1", &lepPtcone30_1, &b_lepPtcone30_1);
fChain->SetBranchAddress("lepPtcone40_1", &lepPtcone40_1, &b_lepPtcone40_1);
fChain->SetBranchAddress("lepz0PV1", &lepz0PV1, &b_lepz0PV1);
fChain->SetBranchAddress("lepsigd0PV1", &lepsigd0PV1, &b_lepsigd0PV1);
fChain->SetBranchAddress("lepD0_0", &lepD0_0, &b_lepD0_0);
fChain->SetBranchAddress("lepD0_1", &lepD0_1, &b_lepD0_1);
fChain->SetBranchAddress("lepMagD0_0", &lepMagD0_0, &b_lepMagD0_0);
fChain->SetBranchAddress("lepMagD0_1", &lepMagD0_1, &b_lepMagD0_1);
fChain->SetBranchAddress("DRlep0jet", &DRlep0jet, &b_DRlep0jet);
fChain->SetBranchAddress("DRlep1jet", &DRlep1jet, &b_DRlep1jet);
fChain->SetBranchAddress("singleLepTrig", &singleLepTrig, &b_singleLepTrig);
fChain->SetBranchAddress("lepMatch_EF_mu24i_tight_0", &lepMatch_EF_mu24i_tight_0, &b_lepMatch_EF_mu24i_tight_0);
fChain->SetBranchAddress("lepMatch_EF_mu24i_tight_1", &lepMatch_EF_mu24i_tight_1, &b_lepMatch_EF_mu24i_tight_1);
fChain->SetBranchAddress("lepMatch_EF_mu36_tight_0", &lepMatch_EF_mu36_tight_0, &b_lepMatch_EF_mu36_tight_0);
fChain->SetBranchAddress("lepMatch_EF_mu36_tight_1", &lepMatch_EF_mu36_tight_1, &b_lepMatch_EF_mu36_tight_1);
fChain->SetBranchAddress("lepMatch_EF_e24vhi_medium1_0", &lepMatch_EF_e24vhi_medium1_0, &b_lepMatch_EF_e24vhi_medium1_0);
fChain->SetBranchAddress("lepMatch_EF_e24vhi_medium1_1", &lepMatch_EF_e24vhi_medium1_1, &b_lepMatch_EF_e24vhi_medium1_1);
fChain->SetBranchAddress("lepMatch_EF_e60_medium1_0", &lepMatch_EF_e60_medium1_0, &b_lepMatch_EF_e60_medium1_0);
fChain->SetBranchAddress("lepMatch_EF_e60_medium1_1", &lepMatch_EF_e60_medium1_1, &b_lepMatch_EF_e60_medium1_1);
fChain->SetBranchAddress("lepMatch_EF_e12Tvh_medium1_0", &lepMatch_EF_e12Tvh_medium1_0, &b_lepMatch_EF_e12Tvh_medium1_0);
fChain->SetBranchAddress("lepMatch_EF_e12Tvh_medium1_1", &lepMatch_EF_e12Tvh_medium1_1, &b_lepMatch_EF_e12Tvh_medium1_1);
fChain->SetBranchAddress("pileupEventWeight", &pileupEventWeight, &b_pileupEventWeight);
fChain->SetBranchAddress("pileupEventWeight_094", &pileupEventWeight_094, &b_pileupEventWeight_094);
fChain->SetBranchAddress("pileupEventWeight_080", &pileupEventWeight_080, &b_pileupEventWeight_080);
fChain->SetBranchAddress("pileupEventWeight_090", &pileupEventWeight_090, &b_pileupEventWeight_090);
fChain->SetBranchAddress("pileupEventWeight_088", &pileupEventWeight_088, &b_pileupEventWeight_088);
fChain->SetBranchAddress("pileupEventWeight_075", &pileupEventWeight_075, &b_pileupEventWeight_075);
fChain->SetBranchAddress("pileupEventWeight_103", &pileupEventWeight_103, &b_pileupEventWeight_103);
fChain->SetBranchAddress("mcEventWeight", &mcEventWeight, &b_mcEventWeight);
fChain->SetBranchAddress("WgStarEventWeight", &WgStarEventWeight, &b_WgStarEventWeight);
fChain->SetBranchAddress("WgStarEventWeightError", &WgStarEventWeightError, &b_WgStarEventWeightError);
fChain->SetBranchAddress("overlapWZ", &overlapWZ, &b_overlapWZ);
fChain->SetBranchAddress("passedVBFFilter", &passedVBFFilter, &b_passedVBFFilter);
fChain->SetBranchAddress("didEJoverlap", &didEJoverlap, &b_didEJoverlap);
fChain->SetBranchAddress("didMJoverlap", &didMJoverlap, &b_didMJoverlap);
fChain->SetBranchAddress("didEEoverlap", &didEEoverlap, &b_didEEoverlap);
fChain->SetBranchAddress("didEMoverlap", &didEMoverlap, &b_didEMoverlap);
fChain->SetBranchAddress("vertexPosWeight", &vertexPosWeight, &b_vertexPosWeight);
fChain->SetBranchAddress("trigEventWeight", &trigEventWeight, &b_trigEventWeight);
fChain->SetBranchAddress("lepTrigSFEventWeight", &lepTrigSFEventWeight, &b_lepTrigSFEventWeight);
fChain->SetBranchAddress("lepTrigSFEventWeightUp", &lepTrigSFEventWeightUp, &b_lepTrigSFEventWeightUp);
fChain->SetBranchAddress("lepTrigSFEventWeightDown", &lepTrigSFEventWeightDown, &b_lepTrigSFEventWeightDown);
fChain->SetBranchAddress("lepTrigSF0EventWeight", &lepTrigSF0EventWeight, &b_lepTrigSF0EventWeight);
fChain->SetBranchAddress("lepTrigSF1EventWeight", &lepTrigSF1EventWeight, &b_lepTrigSF1EventWeight);
fChain->SetBranchAddress("lepTrigSF0Error", &lepTrigSF0Error, &b_lepTrigSF0Error);
fChain->SetBranchAddress("lepTrigSF1Error", &lepTrigSF1Error, &b_lepTrigSF1Error);
fChain->SetBranchAddress("lepSF0EventWeight", &lepSF0EventWeight, &b_lepSF0EventWeight);
fChain->SetBranchAddress("lepSF1EventWeight", &lepSF1EventWeight, &b_lepSF1EventWeight);
fChain->SetBranchAddress("lepSF0Error", &lepSF0Error, &b_lepSF0Error);
fChain->SetBranchAddress("lepSF1Error", &lepSF1Error, &b_lepSF1Error);
fChain->SetBranchAddress("lepSF0ErrorIso", &lepSF0ErrorIso, &b_lepSF0ErrorIso);
fChain->SetBranchAddress("lepSF1ErrorIso", &lepSF1ErrorIso, &b_lepSF1ErrorIso);
fChain->SetBranchAddress("lepSF0ErrorSys", &lepSF0ErrorSys, &b_lepSF0ErrorSys);
fChain->SetBranchAddress("lepSF1ErrorSys", &lepSF1ErrorSys, &b_lepSF1ErrorSys);
fChain->SetBranchAddress("nJets_Pt20_JetCombNN_80", &nJets_Pt20_JetCombNN_80, &b_nJets_Pt20_JetCombNN_80);
fChain->SetBranchAddress("JetCombNN20_80_EventWeight", &JetCombNN20_80_EventWeight, &b_JetCombNN20_80_EventWeight);
fChain->SetBranchAddress("JetCombNN20_80_BJetWeight", &JetCombNN20_80_BJetWeight, &b_JetCombNN20_80_BJetWeight);
fChain->SetBranchAddress("JetCombNN20_80_CTJetWeight", &JetCombNN20_80_CTJetWeight, &b_JetCombNN20_80_CTJetWeight);
fChain->SetBranchAddress("JetCombNN20_80_MisTagWeight", &JetCombNN20_80_MisTagWeight, &b_JetCombNN20_80_MisTagWeight);
fChain->SetBranchAddress("JetCombNN20_80_BJetWeightUp", &JetCombNN20_80_BJetWeightUp, &b_JetCombNN20_80_BJetWeightUp);
fChain->SetBranchAddress("JetCombNN20_80_CTJetWeightUp", &JetCombNN20_80_CTJetWeightUp, &b_JetCombNN20_80_CTJetWeightUp);
fChain->SetBranchAddress("JetCombNN20_80_MisTagWeightUp", &JetCombNN20_80_MisTagWeightUp, &b_JetCombNN20_80_MisTagWeightUp);
fChain->SetBranchAddress("JetCombNN20_80_BJetWeightDown", &JetCombNN20_80_BJetWeightDown, &b_JetCombNN20_80_BJetWeightDown);
fChain->SetBranchAddress("JetCombNN20_80_CTJetWeightDown", &JetCombNN20_80_CTJetWeightDown, &b_JetCombNN20_80_CTJetWeightDown);
fChain->SetBranchAddress("JetCombNN20_80_MisTagWeightDown", &JetCombNN20_80_MisTagWeightDown, &b_JetCombNN20_80_MisTagWeightDown);
fChain->SetBranchAddress("MV1_75_EventWeight", &MV1_75_EventWeight, &b_MV1_75_EventWeight);
fChain->SetBranchAddress("MV1_85_EventWeight", &MV1_85_EventWeight, &b_MV1_85_EventWeight);
fChain->SetBranchAddress("MV1_80_EventWeight", &MV1_80_EventWeight, &b_MV1_80_EventWeight);
fChain->SetBranchAddress("MV120_85_EventWeight", &MV120_85_EventWeight, &b_MV120_85_EventWeight);
fChain->SetBranchAddress("MV120_80_EventWeight", &MV120_80_EventWeight, &b_MV120_80_EventWeight);
fChain->SetBranchAddress("MV120_75_EventWeight", &MV120_75_EventWeight, &b_MV120_75_EventWeight);
fChain->SetBranchAddress("MV1_75_BJetWeight", &MV1_75_BJetWeight, &b_MV1_75_BJetWeight);
fChain->SetBranchAddress("MV1_85_BJetWeight", &MV1_85_BJetWeight, &b_MV1_85_BJetWeight);
fChain->SetBranchAddress("MV1_80_BJetWeight", &MV1_80_BJetWeight, &b_MV1_80_BJetWeight);
fChain->SetBranchAddress("MV120_85_BJetWeight", &MV120_85_BJetWeight, &b_MV120_85_BJetWeight);
fChain->SetBranchAddress("MV120_80_BJetWeight", &MV120_80_BJetWeight, &b_MV120_80_BJetWeight);
fChain->SetBranchAddress("MV120_75_BJetWeight", &MV120_75_BJetWeight, &b_MV120_75_BJetWeight);
fChain->SetBranchAddress("MV1_75_CTJetWeight", &MV1_75_CTJetWeight, &b_MV1_75_CTJetWeight);
fChain->SetBranchAddress("MV1_85_CTJetWeight", &MV1_85_CTJetWeight, &b_MV1_85_CTJetWeight);
fChain->SetBranchAddress("MV1_80_CTJetWeight", &MV1_80_CTJetWeight, &b_MV1_80_CTJetWeight);
fChain->SetBranchAddress("MV120_85_CTJetWeight", &MV120_85_CTJetWeight, &b_MV120_85_CTJetWeight);
fChain->SetBranchAddress("MV120_80_CTJetWeight", &MV120_80_CTJetWeight, &b_MV120_80_CTJetWeight);
fChain->SetBranchAddress("MV120_75_CTJetWeight", &MV120_75_CTJetWeight, &b_MV120_75_CTJetWeight);
fChain->SetBranchAddress("MV1_75_MisTagWeight", &MV1_75_MisTagWeight, &b_MV1_75_MisTagWeight);
fChain->SetBranchAddress("MV1_85_MisTagWeight", &MV1_85_MisTagWeight, &b_MV1_85_MisTagWeight);
fChain->SetBranchAddress("MV1_80_MisTagWeight", &MV1_80_MisTagWeight, &b_MV1_80_MisTagWeight);
fChain->SetBranchAddress("MV120_85_MisTagWeight", &MV120_85_MisTagWeight, &b_MV120_85_MisTagWeight);
fChain->SetBranchAddress("MV120_80_MisTagWeight", &MV120_80_MisTagWeight, &b_MV120_80_MisTagWeight);
fChain->SetBranchAddress("MV120_75_MisTagWeight", &MV120_75_MisTagWeight, &b_MV120_75_MisTagWeight);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_1_Up", &MV1_85_BJetWeightEV_1_Up, &b_MV1_85_BJetWeightEV_1_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_2_Up", &MV1_85_BJetWeightEV_2_Up, &b_MV1_85_BJetWeightEV_2_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_3_Up", &MV1_85_BJetWeightEV_3_Up, &b_MV1_85_BJetWeightEV_3_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_4_Up", &MV1_85_BJetWeightEV_4_Up, &b_MV1_85_BJetWeightEV_4_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_5_Up", &MV1_85_BJetWeightEV_5_Up, &b_MV1_85_BJetWeightEV_5_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_6_Up", &MV1_85_BJetWeightEV_6_Up, &b_MV1_85_BJetWeightEV_6_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_7_Up", &MV1_85_BJetWeightEV_7_Up, &b_MV1_85_BJetWeightEV_7_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_8_Up", &MV1_85_BJetWeightEV_8_Up, &b_MV1_85_BJetWeightEV_8_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_9_Up", &MV1_85_BJetWeightEV_9_Up, &b_MV1_85_BJetWeightEV_9_Up);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_1_Down", &MV1_85_BJetWeightEV_1_Down, &b_MV1_85_BJetWeightEV_1_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_2_Down", &MV1_85_BJetWeightEV_2_Down, &b_MV1_85_BJetWeightEV_2_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_3_Down", &MV1_85_BJetWeightEV_3_Down, &b_MV1_85_BJetWeightEV_3_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_4_Down", &MV1_85_BJetWeightEV_4_Down, &b_MV1_85_BJetWeightEV_4_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_5_Down", &MV1_85_BJetWeightEV_5_Down, &b_MV1_85_BJetWeightEV_5_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_6_Down", &MV1_85_BJetWeightEV_6_Down, &b_MV1_85_BJetWeightEV_6_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_7_Down", &MV1_85_BJetWeightEV_7_Down, &b_MV1_85_BJetWeightEV_7_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_8_Down", &MV1_85_BJetWeightEV_8_Down, &b_MV1_85_BJetWeightEV_8_Down);
fChain->SetBranchAddress("MV1_85_BJetWeightEV_9_Down", &MV1_85_BJetWeightEV_9_Down, &b_MV1_85_BJetWeightEV_9_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_1_Up", &MV1_80_BJetWeightEV_1_Up, &b_MV1_80_BJetWeightEV_1_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_2_Up", &MV1_80_BJetWeightEV_2_Up, &b_MV1_80_BJetWeightEV_2_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_3_Up", &MV1_80_BJetWeightEV_3_Up, &b_MV1_80_BJetWeightEV_3_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_4_Up", &MV1_80_BJetWeightEV_4_Up, &b_MV1_80_BJetWeightEV_4_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_5_Up", &MV1_80_BJetWeightEV_5_Up, &b_MV1_80_BJetWeightEV_5_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_6_Up", &MV1_80_BJetWeightEV_6_Up, &b_MV1_80_BJetWeightEV_6_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_7_Up", &MV1_80_BJetWeightEV_7_Up, &b_MV1_80_BJetWeightEV_7_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_8_Up", &MV1_80_BJetWeightEV_8_Up, &b_MV1_80_BJetWeightEV_8_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_9_Up", &MV1_80_BJetWeightEV_9_Up, &b_MV1_80_BJetWeightEV_9_Up);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_1_Down", &MV1_80_BJetWeightEV_1_Down, &b_MV1_80_BJetWeightEV_1_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_2_Down", &MV1_80_BJetWeightEV_2_Down, &b_MV1_80_BJetWeightEV_2_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_3_Down", &MV1_80_BJetWeightEV_3_Down, &b_MV1_80_BJetWeightEV_3_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_4_Down", &MV1_80_BJetWeightEV_4_Down, &b_MV1_80_BJetWeightEV_4_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_5_Down", &MV1_80_BJetWeightEV_5_Down, &b_MV1_80_BJetWeightEV_5_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_6_Down", &MV1_80_BJetWeightEV_6_Down, &b_MV1_80_BJetWeightEV_6_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_7_Down", &MV1_80_BJetWeightEV_7_Down, &b_MV1_80_BJetWeightEV_7_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_8_Down", &MV1_80_BJetWeightEV_8_Down, &b_MV1_80_BJetWeightEV_8_Down);
fChain->SetBranchAddress("MV1_80_BJetWeightEV_9_Down", &MV1_80_BJetWeightEV_9_Down, &b_MV1_80_BJetWeightEV_9_Down);
fChain->SetBranchAddress("MV1_75_BJetWeightUp", &MV1_75_BJetWeightUp, &b_MV1_75_BJetWeightUp);
fChain->SetBranchAddress("MV1_85_BJetWeightUp", &MV1_85_BJetWeightUp, &b_MV1_85_BJetWeightUp);
fChain->SetBranchAddress("MV1_80_BJetWeightUp", &MV1_80_BJetWeightUp, &b_MV1_80_BJetWeightUp);
fChain->SetBranchAddress("MV120_80_BJetWeightUp", &MV120_80_BJetWeightUp, &b_MV120_80_BJetWeightUp);
fChain->SetBranchAddress("MV120_85_BJetWeightUp", &MV120_85_BJetWeightUp, &b_MV120_85_BJetWeightUp);
fChain->SetBranchAddress("MV120_75_BJetWeightUp", &MV120_75_BJetWeightUp, &b_MV120_75_BJetWeightUp);
fChain->SetBranchAddress("MV1_75_CTJetWeightUp", &MV1_75_CTJetWeightUp, &b_MV1_75_CTJetWeightUp);
fChain->SetBranchAddress("MV1_85_CTJetWeightUp", &MV1_85_CTJetWeightUp, &b_MV1_85_CTJetWeightUp);
fChain->SetBranchAddress("MV1_80_CTJetWeightUp", &MV1_80_CTJetWeightUp, &b_MV1_80_CTJetWeightUp);
fChain->SetBranchAddress("MV120_85_CTJetWeightUp", &MV120_85_CTJetWeightUp, &b_MV120_85_CTJetWeightUp);
fChain->SetBranchAddress("MV120_80_CTJetWeightUp", &MV120_80_CTJetWeightUp, &b_MV120_80_CTJetWeightUp);
fChain->SetBranchAddress("MV120_75_CTJetWeightUp", &MV120_75_CTJetWeightUp, &b_MV120_75_CTJetWeightUp);
fChain->SetBranchAddress("MV1_75_MisTagWeightUp", &MV1_75_MisTagWeightUp, &b_MV1_75_MisTagWeightUp);
fChain->SetBranchAddress("MV1_85_MisTagWeightUp", &MV1_85_MisTagWeightUp, &b_MV1_85_MisTagWeightUp);
fChain->SetBranchAddress("MV1_80_MisTagWeightUp", &MV1_80_MisTagWeightUp, &b_MV1_80_MisTagWeightUp);
fChain->SetBranchAddress("MV120_85_MisTagWeightUp", &MV120_85_MisTagWeightUp, &b_MV120_85_MisTagWeightUp);
fChain->SetBranchAddress("MV120_80_MisTagWeightUp", &MV120_80_MisTagWeightUp, &b_MV120_80_MisTagWeightUp);
fChain->SetBranchAddress("MV120_75_MisTagWeightUp", &MV120_75_MisTagWeightUp, &b_MV120_75_MisTagWeightUp);
fChain->SetBranchAddress("MV1_75_BJetWeightDown", &MV1_75_BJetWeightDown, &b_MV1_75_BJetWeightDown);
fChain->SetBranchAddress("MV1_85_BJetWeightDown", &MV1_85_BJetWeightDown, &b_MV1_85_BJetWeightDown);
fChain->SetBranchAddress("MV1_80_BJetWeightDown", &MV1_80_BJetWeightDown, &b_MV1_80_BJetWeightDown);
fChain->SetBranchAddress("MV120_85_BJetWeightDown", &MV120_85_BJetWeightDown, &b_MV120_85_BJetWeightDown);
fChain->SetBranchAddress("MV120_75_BJetWeightDown", &MV120_75_BJetWeightDown, &b_MV120_75_BJetWeightDown);
fChain->SetBranchAddress("MV1_75_CTJetWeightDown", &MV1_75_CTJetWeightDown, &b_MV1_75_CTJetWeightDown);
fChain->SetBranchAddress("MV1_85_CTJetWeightDown", &MV1_85_CTJetWeightDown, &b_MV1_85_CTJetWeightDown);
fChain->SetBranchAddress("MV1_80_CTJetWeightDown", &MV1_80_CTJetWeightDown, &b_MV1_80_CTJetWeightDown);
fChain->SetBranchAddress("MV120_85_CTJetWeightDown", &MV120_85_CTJetWeightDown, &b_MV120_85_CTJetWeightDown);
fChain->SetBranchAddress("MV120_75_CTJetWeightDown", &MV120_75_CTJetWeightDown, &b_MV120_75_CTJetWeightDown);
fChain->SetBranchAddress("MV1_75_MisTagWeightDown", &MV1_75_MisTagWeightDown, &b_MV1_75_MisTagWeightDown);
fChain->SetBranchAddress("MV1_85_MisTagWeightDown", &MV1_85_MisTagWeightDown, &b_MV1_85_MisTagWeightDown);
fChain->SetBranchAddress("MV1_80_MisTagWeightDown", &MV1_80_MisTagWeightDown, &b_MV1_80_MisTagWeightDown);
fChain->SetBranchAddress("MV120_85_MisTagWeightDown", &MV120_85_MisTagWeightDown, &b_MV120_85_MisTagWeightDown);
fChain->SetBranchAddress("MV120_80_MisTagWeightDown", &MV120_80_MisTagWeightDown, &b_MV120_80_MisTagWeightDown);
fChain->SetBranchAddress("MV120_75_MisTagWeightDown", &MV120_75_MisTagWeightDown, &b_MV120_75_MisTagWeightDown);
fChain->SetBranchAddress("nJets_Pt25_MV1_75", &nJets_Pt25_MV1_75, &b_nJets_Pt25_MV1_75);
fChain->SetBranchAddress("nJets_Pt25_MV1_85", &nJets_Pt25_MV1_85, &b_nJets_Pt25_MV1_85);
fChain->SetBranchAddress("nJets_Pt25_MV1_80", &nJets_Pt25_MV1_80, &b_nJets_Pt25_MV1_80);
fChain->SetBranchAddress("nJets_Pt20_MV1_75", &nJets_Pt20_MV1_75, &b_nJets_Pt20_MV1_75);
fChain->SetBranchAddress("nJets_Pt20_MV1_85", &nJets_Pt20_MV1_85, &b_nJets_Pt20_MV1_85);
fChain->SetBranchAddress("nJets_Pt20_MV1_80", &nJets_Pt20_MV1_80, &b_nJets_Pt20_MV1_80);
fChain->SetBranchAddress("nJets_Pt20", &nJets_Pt20, &b_nJets_Pt20);
fChain->SetBranchAddress("nJetsProbing_JetCombNN_80", &nJetsProbing_JetCombNN_80, &b_nJetsProbing_JetCombNN_80);
fChain->SetBranchAddress("nJetsProbing_JetCombNN_70", &nJetsProbing_JetCombNN_70, &b_nJetsProbing_JetCombNN_70);
fChain->SetBranchAddress("nJetsProbing_MV1_85", &nJetsProbing_MV1_85, &b_nJetsProbing_MV1_85);
fChain->SetBranchAddress("nJetsProbing_MV1_80", &nJetsProbing_MV1_80, &b_nJetsProbing_MV1_80);
fChain->SetBranchAddress("nJetsProbing_MV1_75", &nJetsProbing_MV1_75, &b_nJetsProbing_MV1_75);
fChain->SetBranchAddress("Nvxp", &Nvxp, &b_Nvxp);
fChain->SetBranchAddress("centralJetVeto_leadPt", ¢ralJetVeto_leadPt, &b_centralJetVeto_leadPt);
fChain->SetBranchAddress("centralJetVeto_leadPt_central", ¢ralJetVeto_leadPt_central, &b_centralJetVeto_leadPt_central);
fChain->SetBranchAddress("centralJetVeto_leadPt_forward", ¢ralJetVeto_leadPt_forward, &b_centralJetVeto_leadPt_forward);
fChain->SetBranchAddress("jetPt0", &jetPt0, &b_jetPt0);
fChain->SetBranchAddress("jetPt1", &jetPt1, &b_jetPt1);
fChain->SetBranchAddress("jetEta0", &jetEta0, &b_jetEta0);
fChain->SetBranchAddress("jetEta1", &jetEta1, &b_jetEta1);
fChain->SetBranchAddress("jetE0", &jetE0, &b_jetE0);
fChain->SetBranchAddress("jetE1", &jetE1, &b_jetE1);
fChain->SetBranchAddress("jetY0", &jetY0, &b_jetY0);
fChain->SetBranchAddress("jetY1", &jetY1, &b_jetY1);
fChain->SetBranchAddress("jetM0", &jetM0, &b_jetM0);
fChain->SetBranchAddress("jetM1", &jetM1, &b_jetM1);
fChain->SetBranchAddress("jetPhi0", &jetPhi0, &b_jetPhi0);
fChain->SetBranchAddress("jetPhi1", &jetPhi1, &b_jetPhi1);
fChain->SetBranchAddress("jetMV10", &jetMV10, &b_jetMV10);
fChain->SetBranchAddress("jetMV11", &jetMV11, &b_jetMV11);
fChain->SetBranchAddress("jetCombNN0", &jetCombNN0, &b_jetCombNN0);
fChain->SetBranchAddress("jetCombNN1", &jetCombNN1, &b_jetCombNN1);
fChain->SetBranchAddress("z0Vtx", &z0Vtx, &b_z0Vtx);
fChain->SetBranchAddress("bpos", &bpos, &b_bpos);
fChain->SetBranchAddress("blen", &blen, &b_blen);
fChain->SetBranchAddress("bgap", &bgap, &b_bgap);
fChain->SetBranchAddress("BDPhill", &BDPhill, &b_BDPhill);
fChain->SetBranchAddress("BDPsill", &BDPsill, &b_BDPsill);
fChain->SetBranchAddress("BpsiLep0", &BpsiLep0, &b_BpsiLep0);
fChain->SetBranchAddress("BpsiLep1", &BpsiLep1, &b_BpsiLep1);
fChain->SetBranchAddress("BPLeadLep", &BPLeadLep, &b_BPLeadLep);
fChain->SetBranchAddress("BPSubLeadLep", &BPSubLeadLep, &b_BPSubLeadLep);
fChain->SetBranchAddress("BELeadNeu", &BELeadNeu, &b_BELeadNeu);
fChain->SetBranchAddress("BESubLeadNeu", &BESubLeadNeu, &b_BESubLeadNeu);
fChain->SetBranchAddress("MWLead", &MWLead, &b_MWLead);
fChain->SetBranchAddress("MWSubLead", &MWSubLead, &b_MWSubLead);
fChain->SetBranchAddress("Hpt", &Hpt, &b_Hpt);
fChain->SetBranchAddress("RunNumber", &RunNumber, &b_RunNumber);
fChain->SetBranchAddress("EventNumber", &EventNumber, &b_EventNumber);
fChain->SetBranchAddress("lbn", &lbn, &b_lbn);
fChain->SetBranchAddress("bcid", &bcid, &b_bcid);
fChain->SetBranchAddress("actualIntPerXing", &actualIntPerXing, &b_actualIntPerXing);
fChain->SetBranchAddress("averageIntPerXing", &averageIntPerXing, &b_averageIntPerXing);
fChain->SetBranchAddress("mc_channel_number", &mc_channel_number, &b_mc_channel_number);
fChain->SetBranchAddress("larError", &larError, &b_larError);
fChain->SetBranchAddress("top_hfor_type", &top_hfor_type, &b_top_hfor_type);
fChain->SetBranchAddress("MET_CellOut_Eflow_STVF_phi", &MET_CellOut_Eflow_STVF_phi, &b_MET_CellOut_Eflow_STVF_phi);
fChain->SetBranchAddress("MET_CellOut_Eflow_STVF_et", &MET_CellOut_Eflow_STVF_et, &b_MET_CellOut_Eflow_STVF_et);
fChain->SetBranchAddress("MET_CellOut_Eflow_STVF_sumet", &MET_CellOut_Eflow_STVF_sumet, &b_MET_CellOut_Eflow_STVF_sumet);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetArea_phi", &MET_CellOut_Eflow_JetArea_phi, &b_MET_CellOut_Eflow_JetArea_phi);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetArea_et", &MET_CellOut_Eflow_JetArea_et, &b_MET_CellOut_Eflow_JetArea_et);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetArea_sumet", &MET_CellOut_Eflow_JetArea_sumet, &b_MET_CellOut_Eflow_JetArea_sumet);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetAreaJVF_phi", &MET_CellOut_Eflow_JetAreaJVF_phi, &b_MET_CellOut_Eflow_JetAreaJVF_phi);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetAreaJVF_et", &MET_CellOut_Eflow_JetAreaJVF_et, &b_MET_CellOut_Eflow_JetAreaJVF_et);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetAreaJVF_sumet", &MET_CellOut_Eflow_JetAreaJVF_sumet, &b_MET_CellOut_Eflow_JetAreaJVF_sumet);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetAreaRhoEta5JVF_phi", &MET_CellOut_Eflow_JetAreaRhoEta5JVF_phi, &b_MET_CellOut_Eflow_JetAreaRhoEta5JVF_phi);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetAreaRhoEta5JVF_et", &MET_CellOut_Eflow_JetAreaRhoEta5JVF_et, &b_MET_CellOut_Eflow_JetAreaRhoEta5JVF_et);
fChain->SetBranchAddress("MET_CellOut_Eflow_JetAreaRhoEta5JVF_sumet", &MET_CellOut_Eflow_JetAreaRhoEta5JVF_sumet, &b_MET_CellOut_Eflow_JetAreaRhoEta5JVF_sumet);
fChain->SetBranchAddress("MET_CellOut_Eflow_phi", &MET_CellOut_Eflow_phi, &b_MET_CellOut_Eflow_phi);
fChain->SetBranchAddress("MET_CellOut_Eflow_et", &MET_CellOut_Eflow_et, &b_MET_CellOut_Eflow_et);
fChain->SetBranchAddress("MET_CellOut_Eflow_sumet", &MET_CellOut_Eflow_sumet, &b_MET_CellOut_Eflow_sumet);
fChain->SetBranchAddress("MET_Truth_NonInt_phi", &MET_Truth_NonInt_phi, &b_MET_Truth_NonInt_phi);
fChain->SetBranchAddress("MET_Truth_NonInt_et", &MET_Truth_NonInt_et, &b_MET_Truth_NonInt_et);
fChain->SetBranchAddress("MET_Truth_NonInt_sumet", &MET_Truth_NonInt_sumet, &b_MET_Truth_NonInt_sumet);
fChain->SetBranchAddress("in_jet_n", &in_jet_n, &b_in_jet_n);
fChain->SetBranchAddress("in_jet_pt", &in_jet_pt, &b_in_jet_pt);
fChain->SetBranchAddress("in_jet_eta", &in_jet_eta, &b_in_jet_eta);
fChain->SetBranchAddress("in_jet_phi", &in_jet_phi, &b_in_jet_phi);
fChain->SetBranchAddress("in_jet_jvtxf", &in_jet_jvtxf, &b_in_jet_jvtxf);
fChain->SetBranchAddress("m_mu_n", &m_mu_n, &b_m_mu_n);
fChain->SetBranchAddress("m_mu_pt", &m_mu_pt, &b_m_mu_pt);
fChain->SetBranchAddress("m_mu_matchchi2", &m_mu_matchchi2, &b_m_mu_matchchi2);
fChain->SetBranchAddress("m_mu_matchndof", &m_mu_matchndof, &b_m_mu_matchndof);
fChain->SetBranchAddress("m_mu_energyLossPar", &m_mu_energyLossPar, &b_m_mu_energyLossPar);
fChain->SetBranchAddress("m_mu_etCore", &m_mu_etCore, &b_m_mu_etCore);
fChain->SetBranchAddress("m_mu_id_theta_exPV", &m_mu_id_theta_exPV, &b_m_mu_id_theta_exPV);
fChain->SetBranchAddress("m_mu_id_qoverp_exPV", &m_mu_id_qoverp_exPV, &b_m_mu_id_qoverp_exPV);
fChain->SetBranchAddress("m_mu_me_theta_exPV", &m_mu_me_theta_exPV, &b_m_mu_me_theta_exPV);
fChain->SetBranchAddress("m_mu_me_qoverp_exPV", &m_mu_me_qoverp_exPV, &b_m_mu_me_qoverp_exPV);
fChain->SetBranchAddress("m_mu_MET_wpx", &m_mu_MET_wpx, &b_m_mu_MET_wpx);
fChain->SetBranchAddress("m_mu_MET_wpy", &m_mu_MET_wpy, &b_m_mu_MET_wpy);
fChain->SetBranchAddress("m_mu_MET_wet", &m_mu_MET_wet, &b_m_mu_MET_wet);
fChain->SetBranchAddress("m_el_n", &m_el_n, &b_m_el_n);
fChain->SetBranchAddress("m_el_MET_wpx", &m_el_MET_wpx, &b_m_el_MET_wpx);
fChain->SetBranchAddress("m_el_MET_wpy", &m_el_MET_wpy, &b_m_el_MET_wpy);
fChain->SetBranchAddress("m_el_MET_wet", &m_el_MET_wet, &b_m_el_MET_wet);
fChain->SetBranchAddress("m_jetTruth_n", &m_jetTruth_n, &b_m_jetTruth_n);
fChain->SetBranchAddress("m_jetTruth_E", &m_jetTruth_E, &b_m_jetTruth_E);
fChain->SetBranchAddress("m_jetTruth_pt", &m_jetTruth_pt, &b_m_jetTruth_pt);
fChain->SetBranchAddress("m_jetTruth_eta", &m_jetTruth_eta, &b_m_jetTruth_eta);
fChain->SetBranchAddress("m_jetTruth_phi", &m_jetTruth_phi, &b_m_jetTruth_phi);
fChain->SetBranchAddress("m_jet_n", &m_jet_n, &b_m_jet_n);
fChain->SetBranchAddress("m_jet_E", &m_jet_E, &b_m_jet_E);
fChain->SetBranchAddress("m_jet_pt", &m_jet_pt, &b_m_jet_pt);
fChain->SetBranchAddress("m_jet_eta", &m_jet_eta, &b_m_jet_eta);
fChain->SetBranchAddress("m_jet_phi", &m_jet_phi, &b_m_jet_phi);
fChain->SetBranchAddress("m_jet_LArQuality", &m_jet_LArQuality, &b_m_jet_LArQuality);
fChain->SetBranchAddress("m_jet_sumPtTrk", &m_jet_sumPtTrk, &b_m_jet_sumPtTrk);
fChain->SetBranchAddress("m_jet_emfrac", &m_jet_emfrac, &b_m_jet_emfrac);
fChain->SetBranchAddress("m_jet_jvtxf", &m_jet_jvtxf, &b_m_jet_jvtxf);
fChain->SetBranchAddress("m_jet_flavor_weight_MV1", &m_jet_flavor_weight_MV1, &b_m_jet_flavor_weight_MV1);
fChain->SetBranchAddress("m_jet_flavor_truth_label", &m_jet_flavor_truth_label, &b_m_jet_flavor_truth_label);
fChain->SetBranchAddress("m_vxp_n", &m_vxp_n, &b_m_vxp_n);
fChain->SetBranchAddress("m_vxp_nTracks", &m_vxp_nTracks, &b_m_vxp_nTracks);
fChain->SetBranchAddress("cen_jet_n", &cen_jet_n, &b_cen_jet_n);
fChain->SetBranchAddress("cen_jet_E", &cen_jet_E, &b_cen_jet_E);
fChain->SetBranchAddress("cen_jet_pt", &cen_jet_pt, &b_cen_jet_pt);
fChain->SetBranchAddress("cen_jet_eta", &cen_jet_eta, &b_cen_jet_eta);
fChain->SetBranchAddress("cen_jet_phi", &cen_jet_phi, &b_cen_jet_phi);
fChain->SetBranchAddress("cen_jet_sumPtTrk", &cen_jet_sumPtTrk, &b_cen_jet_sumPtTrk);
fChain->SetBranchAddress("cen_jet_jvtxf", &cen_jet_jvtxf, &b_cen_jet_jvtxf);
fChain->SetBranchAddress("cen_jet_flavor_weight_JetFitterCOMBNN", &cen_jet_flavor_weight_JetFitterCOMBNN, &b_cen_jet_flavor_weight_JetFitterCOMBNN);
fChain->SetBranchAddress("cen_jet_flavor_truth_label", &cen_jet_flavor_truth_label, &b_cen_jet_flavor_truth_label);
fChain->SetBranchAddress("m_mcevt_pdf_id1", &m_mcevt_pdf_id1, &b_m_mcevt_pdf_id1);
fChain->SetBranchAddress("m_mcevt_pdf_id2", &m_mcevt_pdf_id2, &b_m_mcevt_pdf_id2);
fChain->SetBranchAddress("m_mcevt_pdf_x1", &m_mcevt_pdf_x1, &b_m_mcevt_pdf_x1);
fChain->SetBranchAddress("m_mcevt_pdf_x2", &m_mcevt_pdf_x2, &b_m_mcevt_pdf_x2);
fChain->SetBranchAddress("m_mcevt_pdf_scale", &m_mcevt_pdf_scale, &b_m_mcevt_pdf_scale);
Notify();
}
Bool_t MyAna::Notify()
{
// The Notify() function is called when a new file is opened. This
// can be either for a new TTree in a TChain or when when a new TTree
// is started when using PROOF. It is normally not necessary to make changes
// to the generated code, but the routine can be extended by the
// user if needed. The return value is currently not used.
return kTRUE;
}
void MyAna::Show(Long64_t entry)
{
// Print contents of entry.
// If entry is not specified, print current entry
if (!fChain) return;
fChain->Show(entry);
}
Int_t MyAna::Cut(Long64_t entry)
{
// This function may be called from Loop.
// returns 1 if entry is accepted.
// returns -1 otherwise.
Bool_t sameCharge = lepID0*lepID1>0;
Bool_t sixjets = m_jet_n >=6;
Bool_t bJets = nJets_Pt25_MV1_85 == 2;
if(sameCharge&&sixjets&&bJets)
return 1;
return -1;
}
#endif // #ifdef MyAna_cxx
|
25d409c583f6d29bca6103ffdb185cbbef2d513f | 1abc66de336e6574e94209c51772464454163505 | /sample/struct.cpp | 23c728fa780b370d584238ff50d6bcc4717cfa61 | [] | no_license | sifue/cpp-study | f535ee9b4872cc02068b160a7c742ebf3204e801 | 37fa0bf0512c176e894ab073bde0adb324546916 | refs/heads/master | 2022-05-07T14:47:24.653299 | 2022-03-21T06:32:20 | 2022-03-21T06:32:20 | 94,349,705 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,617 | cpp | struct.cpp | #include <bits/stdc++.h> // g++ -std=c++14 -o a a.cpp
using namespace std;
typedef pair<int, int> P;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define repto(i, n) for(int i = 0; i <= (n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007
#define DEBUG(x) cout << #x << ": " << x << endl;
__attribute__((constructor))
void initial() {
cin.tie(0);
ios::sync_with_stdio(false);
}
struct Sushi {
int i;
ll d;
int typeCount;
bool operator<( const Sushi& right ) const {
return d == right.d ? typeCount < right.typeCount : d > right.d;
}
};
ll t[100001] = {0};
ll d[100001] = {0};
ll typeCount[100001] = {0};
vector<Sushi> sushis;
int main() {
int N, K;
cin >> N >> K;
rep(i, N) {
int ti, di;
cin >> ti >> di;
t[i] = ti;
d[i] = di;
typeCount[ti]++;
}
rep(i, N) {
Sushi s;
s.i = i;
s.d = d[i];
s.typeCount = typeCount[t[i]];
sushis.pb(s);
}
sort(all(sushis));
// rep(i, sushis.size()) {
// DEBUG("------");
// DEBUG(sushis[i].i);
// DEBUG(sushis[i].d);
// DEBUG(sushis[i].typeCount);
// }
ll sum = 0;
set<int> eaten;
rep(i, K) {
sum += sushis[i].d;
eaten.insert(t[sushis[i].i]);
}
ll result = sum + eaten.size() * eaten.size();
cout << result << endl;
}
|
29bad5e2e42f812a05746d6379e6ea7f4621e955 | 66949cd67f9a6b729a51d1037fd1015cce02db95 | /chocChipChess/uci_helper.h | 80d03cabf90e6c55566beb794c88d3d7ab69614b | [
"MIT"
] | permissive | GenericCinnamon/chocchipchess | 0b8de68d7b86d626c913a44168f7c656b23a68ec | 793ea775b6b96df1157c9e712a420add7d21f89b | refs/heads/master | 2020-04-09T04:06:55.373976 | 2018-12-02T03:48:52 | 2018-12-02T03:48:52 | 160,010,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 953 | h | uci_helper.h | #pragma once
#include <string>
#include <thread>
#include "output_helper.h"
#include "position.h"
#include "transposition_table.h"
#include "input_handler.h"
#define AVERAGE_GAME_LENGTH 30
using namespace std;
class UCIHelper : public InputHandler {
private:
OutputHelper output;
/* Store the current board position */
Position* pos;
/* Board to play ponder moves out */
Position* ponderBoard;
/* Thread to perform moves on the ponder board */
thread* ponderThread;
/* Transposition table to persist knowledge on */
TranspositionTable sharedTT;
void initNewGame();
void loadPosition(string fen);
void positionCommand(string line);
void stopPonder();
void sendToGUI(string line);
public:
UCIHelper();
bool goCommand(string line);
int estimateTimeToThink(int time_left, int time_inc);
void execute(int time_to_wait);
void stopCommand();
bool processLine(string input);
}; |
85ad9a0df1a48292446dc4615b1999d7b2e5086f | 5496fe7d32f473921e4f3a4f1236b74951ca15cc | /LR_3/Function.cpp | eee0eebe08c1156c8762b68754f4da3e86ca30f4 | [] | no_license | Foxi-maker/LR_3 | f9aefecb74754c2d66d242dc0e5d71c54e2e8358 | 3068fba5c393df2848cedfe216aee247714ae54f | refs/heads/master | 2023-01-20T01:35:58.018806 | 2020-11-22T09:52:09 | 2020-11-22T09:52:09 | 313,855,660 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,885 | cpp | Function.cpp | #pragma once
#include "Header.h"
void FUN::Show(double** matrix, int n)
{
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
std::cout << std::setw(12) << matrix[i][j] << " ";
}
std::cout << "\n";
}
std::cout << "\n";
}
void FUN::MultMatrix(double** a, double** b, int n)
{
double** c = new double*[n];
for (int i = 0; i < n; i++)
c[i] = new double[n];
for (int indexRow = 0; indexRow < n; indexRow++)
{
for (int indexCol = 0; indexCol < n; indexCol++)
{
double temp = 0;
for (int index = 0; index < n; index++)
{
temp += a[indexRow][index] * b[index][indexCol];
}
c[indexRow][indexCol] = temp;
}
}
for (int indexRow = 0; indexRow < n; indexRow++)
for (int indexCol = 0; indexCol < n; indexCol++)
a[indexRow][indexCol] = c[indexRow][indexCol];
for (int i = 0; i < n; i++)
{
delete[](c[i]);
}
delete[](c);
}
bool FUN::StopCondition(double ** a, int n, std::string flag)
{
double max = 0;
if (flag == "HF")
{
for (int i = 1; i < n; i++)
if (fabs(a[i][i - 1]) > max)
max = fabs(a[i][i - 1]);
}
else
{
for (int i = 1; i < n; i++)
for (int j = 0; j < i; j++)
if (fabs(a[i][j]) > max)
max = fabs(a[i][j]);
}
if (max < eps)
return true;
else
return false;
}
bool FUN::ConditionShifts(double** a, int n, std::string flag)
{
double max = 0;
if (flag == "HF")
{
max = fabs(a[n - 1][n - 2]);
}
else
{
for (int i = 0; i < n - 1; i++)
if (fabs(a[n - 1][i]) > max)
max = fabs(a[n - 1][i]);
}
if (max < eps)
return true;
else
return false;
}
void FUN::HesForm(double ** a, int n)
{
double c, s, znam;
//k идет по строкам
for (int k = 1; k < n - 1; k++)
{
//i идет по столбцам
for (int l = k + 1; l < n; l++)
{
znam = (sqrt(a[k][k - 1] * a[k][k - 1] + a[l][k - 1] * a[l][k - 1]));
c = a[k][k - 1] / znam;
s = a[l][k - 1] / znam;
double temp;
//Умножение слева на матрицу поворота
for (int columnIterator = k; columnIterator < n + 1; columnIterator++)
{
temp = a[k][columnIterator - 1];
a[k][columnIterator - 1] = c * a[k][columnIterator - 1] + s * a[l][columnIterator - 1];
a[l][columnIterator - 1] = -s * temp + c * a[l][columnIterator - 1];
}
//Умножение справа на транспонированную матрицу поворота
for (int columnIterator = k; columnIterator < n + 1; columnIterator++)
{
temp = a[columnIterator - 1][k];
a[columnIterator - 1][k] = c * a[columnIterator - 1][k] + s * a[columnIterator - 1][l];
a[columnIterator - 1][l] = -s * temp + c * a[columnIterator - 1][l];
}
}
}
}
double FUN::NormInf(double* x, int n)
{
int indexMax = 0;
for (int index = 0; index < n; index++)
{
if (fabs(x[indexMax]) < fabs(x[index]))
{
indexMax = index;
}
}
return abs(x[indexMax]);
} |
939dff5d52291f45edc4e94e9dd160880875ac4d | 93e4d55c6751a7cc872817a2d37fc4ee581ff907 | /26RemoveDuplicatesfromSortedArray.cpp | 1805c34d91beb4eb5a4fcaee606a010f4bf9b0ec | [] | no_license | rainbowsnail/leetcode | 91c3c0b187963d93624a37e677b3c2e3e68d28ab | eb1c1bf59ad10f570ee4ec1051aa1a72e23176ee | refs/heads/master | 2021-05-03T04:39:30.188998 | 2020-05-19T12:38:01 | 2020-05-19T12:38:01 | 120,621,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 306 | cpp | 26RemoveDuplicatesfromSortedArray.cpp | class Solution {
public:
int removeDuplicates(vector<int>& nums) {
vector<int>::iterator cur = nums.begin();
while(cur != nums.end() && cur + 1 != nums.end()){
if(*cur == *(cur+1))cur = nums.erase(cur);
else cur++;
}
return nums.size();
}
};
|
395fd1aab1e0e47232cd2a3624cc4973e4a196b4 | 087de3c553a3f930971ae6c9d06d14db8972cb31 | /test/client.cpp | ff341ea6424fdd77f17576a53de38b34e4b37749 | [] | no_license | Rubiphisto/netstream | ff74db5b5f4d9852fcf126c3a06556c76a154ba6 | e40e2757d422e3e76457813d11453fd0139977cf | refs/heads/master | 2021-04-29T06:26:18.452017 | 2018-05-04T09:02:09 | 2018-05-04T09:02:09 | 77,966,410 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,171 | cpp | client.cpp | #include <stdint.h>
#include <thread>
#include <iostream>
#include <queue>
#include <string>
#include <mutex>
#include <string.h>
#include <cinttypes>
#include "libnetstream.h"
#if defined( _WINDOWS )
#include <windows.h>
#endif
#define MAX_CHAT_CONTENT 1024
bool g_running = true;
bool g_close_connection = false;
std::string g_address;
int32_t g_port;
std::mutex g_list_mutex;
std::queue<std::string> g_sending_list;
void sleep( int32_t _time )
{
#if defined( _WINDOWS )
Sleep( 1 );
#endif
}
bool GetSending( std::string& _value )
{
std::lock_guard<std::mutex> lock( g_list_mutex );
if( g_sending_list.empty() )
return false;
_value = g_sending_list.front();
g_sending_list.pop();
return true;
}
void OnRecvMessage( const NetStreamPacket _packet )
{
struct ChatMessage
{
uint64_t user_id;
char content[MAX_CHAT_CONTENT];
};
ChatMessage* message = (ChatMessage*)_packet.data;
//printf( "[%u] said: %s\n", message->user_id, message->content );
printf( "[%" PRIu64",%" PRIu64",%" PRIu32"] say : %s\n", message->user_id, strlen( message->content ), _packet.data_size, message->content );
}
void thread_func()
{
printf( "enter thread!\n" );
netstream_t netstream = netstream_create( nullptr, nullptr, 0 );
NetPeerId peer_id = netstream_connect( netstream, g_address.c_str(), g_port );
if( 0 == peer_id )
return;
NetConnId conn_id = 0;
while( g_running )
{
if( g_close_connection )
{
netstream_disconnect( netstream, conn_id );
g_close_connection = false;
}
// send
std::string value;
while( GetSending( value ) )
{
netstream_send( netstream, conn_id, value.c_str(), (uint32_t)value.size() + 1 );
}
// recv
NetStreamPacket packet;
if( 0 != netstream_recv( netstream, packet ) )
{
sleep( 1 );
continue;
}
switch( packet.packet_type )
{
case MESSAGE_TYPE_CONNECTED:
conn_id = packet.net_conn_id;
printf( "Connected to server %s %" PRId32", I'm [%" PRIu64"]\n"
, netstream_remote_ip( netstream, conn_id )
, netstream_remote_port( netstream, conn_id )
, conn_id );
break;
case MESSAGE_TYPE_DISCONNECTED:
printf( "Disconnected from server %s %" PRId32", I'm [%" PRIu64"]\n"
, netstream_remote_ip( netstream, conn_id )
, netstream_remote_port( netstream, conn_id )
, conn_id );
conn_id = 0;
break;
case MESSAGE_TYPE_MESSAGE:
OnRecvMessage( packet );
break;
}
netstream_free_packet( &packet );
}
netstream_close( netstream, peer_id );
netstream_destroy( netstream );
printf( "exit thread!\n" );
}
int main( int32_t argc, char* argv[] )
{
if( argc != 3 )
{
printf( "%s <ipv4 or ipv6 address> <remote port>\n", argv[0] );
return -1;
}
g_address = argv[1];
g_port = atoi( argv[2] );
std::thread m( thread_func );
char line_buffer[MAX_CHAT_CONTENT];
while( true )
{
std::cin.getline( line_buffer, MAX_CHAT_CONTENT );
printf( "CMD: %s\n", line_buffer );
if( 0 == strcmp( line_buffer, "exit" ) )
break;
if( 0 == strcmp( line_buffer, "close" ) )
{
g_close_connection = true;
continue;
}
std::lock_guard<std::mutex> lock( g_list_mutex );
g_sending_list.push( line_buffer );
}
g_running = false;
m.join();
}
|
5730b186a9185e417338bbc9e31fbf1d05701bcb | 812a62d44ebab2a851ae470c711d05ee7a9a638c | /src/factory/factorymethod.h | 9e9b90286f3274bb50cf43fbf408832023a6a14b | [] | no_license | Howard0o0/design-patterns-in-cpp | 498f9f45e3cc292ea16d04ab42f8f999c5e0f1c4 | 226c8908b3996efe679171d2ffe7210bf12eb960 | refs/heads/master | 2022-11-12T02:42:26.740637 | 2020-07-04T12:18:34 | 2020-07-04T12:18:34 | 270,589,962 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 804 | h | factorymethod.h | #ifndef DISIGN_PATTERNS_IN_CPP_FACTORYMOTHOD_H
#define DISIGN_PATTERNS_IN_CPP_FACTORYMOTHOD_H
#include "soap.h"
#include <memory>
namespace factorymethod {
class SoapFactory {
public:
virtual std::shared_ptr< SoapBase > CreatSoap() = 0;
};
class LuxFactory : public SoapFactory {
public:
virtual std::shared_ptr< SoapBase > CreatSoap() override {
return std::shared_ptr< SoapBase >(new LuxSoap());
}
};
class DoveFactory : public SoapFactory {
public:
virtual std::shared_ptr< SoapBase > CreatSoap() override {
return std::shared_ptr< SoapBase >(new DoveSoap());
}
};
class OlayFactory : public SoapFactory {
public:
virtual std::shared_ptr< SoapBase > CreatSoap() override {
return std::shared_ptr< SoapBase >(new OlaySoap());
}
};
} // namespace factorymethod
#endif |
1c66a427e5812bcc4d07266d0a5a8f8de2dead45 | 8f4cb6b34e4a13b0d71756987aa07d22d1e5c399 | /solutions/uri/1212/1212.cpp | 4785d3b36f6bdb25a4e7249d01196895a74dc2f8 | [
"MIT"
] | permissive | kaneki-ken01/playground | e688537439d4ef937cfeb3a0be54159c5d47d51b | 1900da4a7b352b1228659631068ff365456408e1 | refs/heads/main | 2023-08-16T21:00:05.823664 | 2021-10-04T19:09:08 | 2021-10-04T19:09:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,196 | cpp | 1212.cpp | #include <cstdint>
#include <cstring>
#include <iostream>
#include <string>
int main() {
int16_t c, temp, index, result[12];
uint16_t i, size_a, size_b;
std::string a, b;
while (std::cin >> a >> b) {
if (a == "0" && b == "0") {
break;
}
memset(result, 0, sizeof(result));
size_a = a.size();
size_b = b.size();
index = 11;
c = 0;
uint16_t k = (size_a > size_b ? size_a : size_b);
for (i = 0; i < k; i++) {
temp = 0;
if (size_a >= 1) {
temp += (a.at(--size_a) - '0');
}
if (size_b >= 1) {
temp += (b.at(--size_b) - '0');
}
if (result[index] + temp > 9) {
result[index - 1] = 1;
c++;
}
result[index] += temp % 10;
index--;
}
if (c == 0) {
std::cout << "No carry operation." << std::endl;
} else if (c == 1) {
std::cout << "1 carry operation." << std::endl;
} else {
std::cout << c << " carry operations." << std::endl;
}
}
return 0;
}
|
b0f35bb41ab904f20dfe5104c82bf4ee9c49e2ec | 3821e537c0e03e602ba4ac770dcce0d741d026a7 | /Personal/Dijkstra.cpp | ae94db1bc00dfaeebbfd518533b0be417c765da1 | [] | no_license | msyashik/CPPS | 6766992e40c30f112d959b5c57e1af5487d885a9 | ae163a3a75dade8bc51f566ae529ea4f9075db97 | refs/heads/master | 2023-07-13T00:08:32.465275 | 2021-08-22T02:41:23 | 2021-08-22T02:41:23 | 161,633,625 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,583 | cpp | Dijkstra.cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
#define SIZE 100005
#define inf 100000000
int dist[SIZE]; // change the value of SIZE as you want
int path[SIZE];
struct edges
{
int v;
int w;
};
bool operator < (struct edges a, struct edges b)
{
return a.w > b.w;
}
void dij(int node, priority_queue<edges>pq, vector<edges>v[])
{
pq.push({node, 0});
while(!pq.empty())
{
edges top = pq.top();
pq.pop();
int len = v[top.v].size();
for(int i = 0; i < len; i++)
{
edges nodd = v[top.v][i];
if((dist[top.v] + nodd.w) < dist[nodd.v])
{
dist[nodd.v] = dist[top.v] + nodd.w;
pq.push(nodd);
path[nodd.v] = top.v;
}
}
}
}
int main()
{
int n, e, a, b, cost;
scanf("%d %d", &n,&e);
vector<edges>v[n+1];
priority_queue<edges>pq;
for(int i = 1; i <= e; i++)
{
scanf("%d %d %d", &a, &b, &cost);
v[a].push_back({b,cost});
v[b].push_back({a,cost}); //if the graph is undirected
}
for(int i = 1; i <= n; i++) dist[i] = inf; // change the value of inf as you want
dist[1] = 0; // if 1 is the starting point
dij(1, pq, v); //if 1 is the starting point
printf("%d\n", dist[n]); //distance of n from the starting point
//path_printing
vector<int>pathprint;
pathprint.push_back(n);
int m = n;
while(1)
{
if(m == 1) break;
else
{
pathprint.push_back(path[m]);
m = path[m];
}
}
reverse(pathprint.begin(), pathprint.end());
int lenn = pathprint.size();
for(int i = 0; i < lenn; i++)
{
printf("%d ", pathprint[i]);
}
printf("\n");
return 0;
}
|
b0560cd1f2655fa10670b90d0a55a4e7aa5ac6ad | fb5b66079819c1d725ba9cec5b7f689e788d0c57 | /algorithm/sortAlgorithm.cpp | 07e8be76c32bd37cf56ba278ed190f4a1f588cf3 | [] | no_license | CQUzst/Cpp | 1bcf2b52ec8766694d8dec744b4d33ba8e260193 | 6593beaac95c827aff5a2e2badb4a165dc82c51c | refs/heads/master | 2020-04-06T09:19:02.174440 | 2019-10-22T10:56:26 | 2019-10-22T10:56:26 | 157,337,176 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,222 | cpp | sortAlgorithm.cpp | #include <iostream>
using namespace std;
/***************************冒泡排序******************************/
//时间复杂度n*n,空间复杂度1
void bubbleSort (int a[], int n) {
for(int i=0;i<n;++i){//n轮循环
for(int j=0;j<n-1;++j){//每轮循环进行n-i次比较,将最大值放到尾部
if(a[j]>a[j+1])
{
int tmp=a[j+1];
a[j+1]=a[j];
a[j]=tmp;
}
}
}
}
/***************************优化冒泡排序****************************/
//时间复杂度n*n,最好为n,空间复杂度1
void optimizedBubbleSort(int a[],int n){
bool swapFlag=true;//记录一个标志位表示依次循环比较是否发生交换,如果没有交换,说明已经有序,break
while(swapFlag){
swapFlag=false;
for(int i=0;i<n-1;++i){
if(a[i]>a[i+1]){
int tmp=a[i];
a[i]=a[i+1];
a[i+1]=tmp;
swapFlag=true;
}
}
}
}
/***************************插入排序*******************************/
//时间复杂度n*n,最优情况为基本有序,时间复杂度为n,空间复杂度1
void insertionSort(int a[],int n){
int i,j;
for(i=0;i<n;++i){
int tmp=a[i];//每次选择一个元素
for(j=i;j-1>=0&&a[j-1]>tmp;--j){//将tmp循环与排序好的元素从大到小比较,将大的元素向后移
a[j]=a[j-1];
}
a[j]=tmp;
}
}
/****************************希尔排序******************************/
//插入排序的修改版 时间复杂度O(n^(3/2))
void shellSort(int a[],int n){
for(int step=n/2;step>0;step/=2){//逐步减小步长
for(int i=step;i<n;++i){//在每个步长间隔里进行插入排序
int j=i;
int tmp=a[j];
for(;j-step>=0&&a[j-step]>tmp;j-=step){
a[j]=a[j-step];
}
a[j]=tmp;
}
}
}
/*********************************基数排序*************************/
//找最大值
int getMax(int a[],int n){
int m=a[0];
for(int i=1;i<n;++i){
if(a[i]>m)
m=a[i];
}
return m;
}
//按照位数进行桶排序
void countSort(int a[],int n,int exp){
int out[n]={0},buckets[10]={0};
for(int i=0;i<n;i++)//将当前位数按0-9排序
buckets[(a[i]/exp)%10]++;
for(int i=1;i<10;i++)//更改后buckets[i]的值,对应该数据在output[]中的位置
buckets[i]+=buckets[i-1];
for(int i=n-1;i>=0;i--){//按位进行排序
out[buckets[(a[i]/exp)%10]-1]=a[i];
buckets[(a[i]/exp)%10]--;
}
for(int i=0;i<n;i++)
a[i]=out[i];
}
//基数排序 时间复杂度O(d(r+n)),空间复杂度O(rd+n),r代表关键字基数,d代表长度,n代表关键字个数
void radixSort(int a[],int n){
int m=getMax(a,n);
for(int exp=1;m/exp>0;exp*=10)
countSort(a,n,exp);
}
/****************************归并排序********************************/
//合并处理
void merge(int a[],int left,int mid,int right){
int leftN=mid-left+1,rightN=right-mid;
int leftArray[leftN]={0},rightArray[rightN]={0};
for(int i=0;i<leftN;i++)
leftArray[i]=a[left+i];
for(int i=0;i<rightN;i++)
rightArray[i]=a[mid+1+i];
int i=0,j=0,k=left;
while(i<leftN&&j<rightN){
if(leftArray[i]<rightArray[j])
a[k++]=leftArray[i++];
else
a[k++]=rightArray[j++];
}
while(i<leftN)
a[k++]=leftArray[i++];
while (j<rightN)
a[k++]=rightArray[j++];
}
void mergeSort(int a[],int left,int right){
if(left<right){
int mid=left+(right-left)/2;
mergeSort(a,left,mid);
mergeSort(a,mid+1,right);
merge(a,left,mid,right);
}
}
/************************选择排序**************************/
void selectSort(int a[],int n){
for(int i=0;i<n-1;i++){//遍历n-1轮,每轮将后面的最小值的下标选出来,和当前位置交换
int minN=i;
for(int j=i+1;j<n;j++){
if(a[j]<a[minN]){
minN=j;
}
}
int tmp=a[i];
a[i]=a[minN];
a[minN]=tmp;
}
}
/************************快速排序*************************/
int partition(int a[],int left,int right){
int tmp=a[left];//基准选取第一个位置
int i=left+1;
int j=right;
while(i<=j){
while(a[i]<tmp)
i++;
while(a[j]>tmp)
j--;
if(i<j)
swap(a[i++],a[j--]);
else
i++;
}
swap(a[j],a[left]);
return j;
}
void quickSort(int a[],int left,int right){
if(left>=right)
return;
int p=partition(a,left,right);
quickSort(a,left,p-1);
quickSort(a,p+1,right);
}
int main(){
int a[10]={3,4,7,6,1,2,5,9,8,0};
//int a[9]={53, 3, 542, 748, 14, 214, 154, 63, 616};
int n=sizeof(a)/sizeof(a[0]);
//bubbleSort(a,n);
//optimizedBubbleSort(a,n);
//insertionSort(a,n);
//shellSort(a,n);
//radixSort(a,n);
//mergeSort(a,0,n-1);
//selectSort(a,n);
quickSort(a,0,n-1);
for(int i=0;i<n;++i)
cout<<a[i]<<" ";
return 0;
}
|
8219ec0d47ff02fc7c43e5f525e31e97d8cc4fd2 | f01bfe3373c64a01595fe260a8683e8ae1c58262 | /src/gui/SelectionEllipsoid.cpp | 5996fc8bab7dee5e1de49f629bb4a6d0668c58ba | [] | no_license | scilus/fibernavigator | c70412ee4ba6aa8993a5e5d452fb7d93f75fbefb | 8e07827bc9228ebe9c225bf627930a67652e565c | refs/heads/master | 2021-01-19T03:20:11.542019 | 2017-06-12T19:34:31 | 2017-06-12T19:34:31 | 8,565,508 | 33 | 16 | null | 2020-07-08T18:08:28 | 2013-03-04T21:37:13 | C++ | ISO-8859-2 | C++ | false | false | 8,550 | cpp | SelectionEllipsoid.cpp | /////////////////////////////////////////////////////////////////////////////
// Name: selecitonEllipsoid.cpp
// Author: Imagicien ->LAMIRANDE-NADEAU Julien & NAZRATI Réda<-
// Creation Date: 10/26/2009
//
// Description: This is the implementation file for SelectionEllipsoid class.
//
// Last modifications:
// by : Imagicien - 12/11/2009
/////////////////////////////////////////////////////////////////////////////
#include "SelectionEllipsoid.h"
#include "../dataset/DatasetManager.h"
///////////////////////////////////////////////////////////////////////////
// Constructor
// i_center : The center of the ellipsoid.
// i_size : The size of the ellipsoid.
// i_dataHelper : The datasetHelper associated with this ellipsoid.
///////////////////////////////////////////////////////////////////////////
SelectionEllipsoid::SelectionEllipsoid( Vector i_center, Vector i_size )
: SelectionObject( i_center, i_size )
{
m_name = wxT( "ellipsoid" );
m_objectType = ELLIPSOID_TYPE;
update();
}
SelectionEllipsoid::SelectionEllipsoid( Vector i_center, Vector i_size, Vector magnet )
: SelectionObject( i_center, i_size )
{
m_name = wxT( "magnet" );
m_objectType = ELLIPSOID_TYPE;
m_size = Vector(5,5,5);
m_isActive = false;
m_isVisible = true;
m_isMagnet = true;
m_name = wxT( "Magnet" );
m_magnetField = magnet;
update();
}
SelectionEllipsoid::SelectionEllipsoid( const wxXmlNode selObjNode )
: SelectionObject( selObjNode )
{
m_objectType = ELLIPSOID_TYPE;
update();
}
///////////////////////////////////////////////////////////////////////////
// Destructor
///////////////////////////////////////////////////////////////////////////
SelectionEllipsoid::~SelectionEllipsoid()
{
}
wxString SelectionEllipsoid::getTypeTag() const
{
return wxT( "ellipsoid" );
}
///////////////////////////////////////////////////////////////////////////
// This is the specific implementation to draw a selectionEllipsoid object.
//
// i_color : The color of the ellipsoid to draw.
///////////////////////////////////////////////////////////////////////////
void SelectionEllipsoid::drawObject( GLfloat* i_color )
{
glColor4f( i_color[0], i_color[1], i_color[2], i_color[3] );
glDepthMask(GL_FALSE);
glEnable( GL_BLEND );
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
glPushMatrix();
glTranslatef( m_center.x, m_center.y, m_center.z );
GLUquadricObj* l_quadric = gluNewQuadric();
gluQuadricNormals( l_quadric, GLU_SMOOTH );
glScalef( m_xRadius, m_yRadius, m_zRadius );
gluSphere( l_quadric, 1.0f, 32, 32 );
glPopMatrix();
glDisable( GL_BLEND );
glDepthMask(GL_TRUE);
}
///////////////////////////////////////////////////////////////////////////
// COMMENT
//
// i_ray :
///////////////////////////////////////////////////////////////////////////
hitResult SelectionEllipsoid::hitTest( Ray* i_ray )
{
hitResult hr = { false, 0.0f, 0, NULL };
// TODO selection remove objectType
if( m_isVisible && m_objectType == ELLIPSOID_TYPE )
{
float voxelX = DatasetManager::getInstance()->getVoxelX();
float voxelY = DatasetManager::getInstance()->getVoxelY();
float voxelZ = DatasetManager::getInstance()->getVoxelZ();
int picked = 0;
float tpicked = 0;
float cx = m_center.x;
float cy = m_center.y;
float cz = m_center.z;
float sx = m_size.x * voxelX;
float sy = m_size.y * voxelY;
float sz = m_size.z * voxelZ;
if( wxGetKeyState( WXK_CONTROL ) )
{
BoundingBox *bb = new BoundingBox( cx, cy, cz, sx, sy, sz );
bb->setCenter( m_minX , cy, cz );
bb->setSize( sx, sy, sz );
bb->setSizeX( voxelX );
hr = bb->hitTest( i_ray );
if( hr.hit )
{
if( picked == 0 )
{
picked = 11;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 11;
tpicked = hr.tmin;
}
}
}
bb->setCenter( m_maxX, cy, cz );
hr = bb->hitTest( i_ray );
if( hr.hit )
{
if( picked == 0 )
{
picked = 12;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 12;
tpicked = hr.tmin;
}
}
}
bb->setCenter( cx, m_minY, cz );
bb->setSize( sx, sy, sz);
bb->setSizeY( voxelY );
hr = bb->hitTest( i_ray );
if( hr.hit )
{
if( picked == 0 )
{
picked = 13;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 13;
tpicked = hr.tmin;
}
}
}
bb->setCenter( cx, m_maxY, cz );
hr = bb->hitTest( i_ray );
if( hr.hit)
{
if( picked == 0 )
{
picked = 14;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 14;
tpicked = hr.tmin;
}
}
}
bb->setCenter( cx, cy, m_minZ );
bb->setSize( sx, sy, sz );
bb->setSizeZ( voxelZ );
hr = bb->hitTest( i_ray );
if( hr.hit )
{
if( picked == 0 )
{
picked = 15;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 15;
tpicked = hr.tmin;
}
}
}
bb->setCenter( cx, cy, m_maxZ );
hr = bb->hitTest( i_ray );
if( hr.hit )
{
if( picked == 0 )
{
picked = 16;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 16;
tpicked = hr.tmin;
}
}
}
}
else // if (wxGetKeyState(WXK_CONTROL))
{
BoundingBox *bb = new BoundingBox( cx, cy, cz, sx, sy, sz );
hr = bb->hitTest( i_ray );
if( hr.hit )
{
if( picked == 0 )
{
picked = 10;
tpicked = hr.tmin;
}
else
{
if( hr.tmin < tpicked )
{
picked = 10;
tpicked = hr.tmin;
}
}
}
}
if( picked != 0 )
{
hr.hit = true;
hr.tmin = tpicked;
hr.picked = picked;
hr.object = this;
}
}
m_hitResult = hr;
return hr;
}
///////////////////////////////////////////////////////////////////////////
// This function set the proper radius of the ellipsoid.
///////////////////////////////////////////////////////////////////////////
void SelectionEllipsoid::objectUpdate()
{
m_xRadius = ( m_maxX - m_minX ) / 2.0f;
m_yRadius = ( m_maxY - m_minY ) / 2.0f;
m_zRadius = ( m_maxZ - m_minZ ) / 2.0f;
} |
aae483e36f07f04d0317a2a03214b8d9e2e9873f | ec4f748331b081ee73e6406fa947b5f085d48410 | /f10_design_patterns_plus_plus/raii.cpp | 6a681a0e340ad1fcfd379d26a24a7d134ef3fcde | [] | no_license | peder82/cpp_v2014 | 6b868cd34d2124b284cc1715dfe10a91301849ed | 2babd30ee153ee93051364922511295063ba385f | refs/heads/master | 2020-12-30T17:32:40.049320 | 2014-06-11T21:03:41 | 2014-06-11T21:03:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,087 | cpp | raii.cpp | /*
Code adapted from Bjarne Stroustrup FAQ;
http://www.stroustrup.com/bs_faq2.html#finally
Demonstrates the RAII (Resource Acquizition Is Initialization) pattern/idiom.
Here we use it to make a low-level file-handle exception-proof. We could just as well use it to protect
- a server socket (if you don't close it you - or any other process - can't reopen it)
- memory allocated with new (if you don't delete you have a memory leak)
- a mutex (if you don't release it you'll get a deadlock
...or any other resource that needs to be properly released after use.
Comment/Uncomment the classical vs. the RAII solution, in "dataFromFile" to see the effect.
*/
#include <iostream>
#include <stdexcept>
using namespace std;
//Our RAII-class
class specialFile{
FILE* p; //A C file pointer
public:
//Acquire file (the resource) by instantiating (initializing) this class
specialFile(const char* file, const char* access){
p=fopen(file,access);
if(p==0)
throw runtime_error("File not found");
}
//We know that destructors are called when leaving scope!
//So we can release the resource, simply by going out of scope.
//...even if it happens by an exception
~specialFile(){
fclose(p);
}
//Overload *-operator to get easy access to the pointer
FILE* operator*(){return p;}
};
//Do some low-level file access; read only certain bytes into buf.
void dataFromFile(char* buf,int size){
/*
Classical solution (Comment/uncomment the following line)
*/
FILE* f=fopen("raii.cpp","r"); //try this solution first
/* ~Classical solution */
/*
RAII-solution (Comment/Uncomment the two following lines)
*/
//specialFile safe("raii.cpp","r"); //The RAII solution
//FILE* f=*safe; //Belongs to the RAII-solution; just here to make the remaining lines work for both cases.
/* ~RAII-solution */
fseek(f,23,SEEK_SET);
fread(buf,size,1,f);
throw runtime_error("forgot my keys!");
//Ops! We'll never get here!
fclose(f);
}
int main(){
//Set up a buffer
const int bufsize=18;
char buffer[bufsize+1]={0};
try{
//Fill it with certain bytes from a file
dataFromFile(buffer,bufsize);
}catch(runtime_error e){
//Pretend this error was not so serious...
cout << "Tiny glitch: " << e.what() << endl;
}
//...So we continue running
cout << "Nevermind, we got the contents. Enter a nice word to see it:" << endl;
string input;
while(cin>>input){
cout << input << " " << buffer << endl;
cout << "Now check if the file is open! (Ask your OS)" << endl;
//Use your operating system to find out if the file is still open.
//On Linux / mac, use the command "lsof -f PID" where PID is the process ID.
//...Get the PID by calling "ps aux | grep raii" when the raii process is running.
//On mac, you can also select the process in "activity monitor" and press "inspect". Will show a tab of open files.
//On windows; I don't know, but there is a tool here : http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
}
}
|
0baa2c519906b2e34f276eac7ac9c8fde07bb65f | 3a5380638ded6c94448089a3e67196b6b72b5ca3 | /Assignment3/include/Utilities.hpp | 31cc343706b9e6b437ecd8ed72f36d44f9666a5c | [
"MIT"
] | permissive | dissolete/cs446 | a87da64b4fab637bcaa35a808f941ef519a00312 | 07a3813fc0cbee4d1406f763189c215f998c39f2 | refs/heads/master | 2021-01-11T14:56:36.465743 | 2017-03-11T02:00:53 | 2017-03-11T02:00:53 | 80,255,622 | 0 | 0 | null | 2017-02-03T21:27:43 | 2017-01-27T23:45:59 | C++ | UTF-8 | C++ | false | false | 1,980 | hpp | Utilities.hpp | #ifndef __UTILITIES_HPP_INCLUDED
#define __UTILITIES_HPP_INCLUDED
#include <iostream>
#include <cassert>
#include <memory>
#include <exception>
// Comment this out if you do not want to see debug messages.
#define __USING_DEBUGGING
// Comment this out if you do not want to use fatal error checking.
// *****************************************************************************
// * CAUTION! DISABLING FATAL ERROR CHECKING MAY RESULT IN UNDEFINED BEHAVIOR! *
// * * COMMENT AT YOUR OWN RISK * *
// *****************************************************************************
#define __USING_FATAL_ERROR_CHECKING
//****************************************************************************//
//****************************************************************************//
// Macro flags for debugging
#ifdef __USING_DEBUGGING
# define __USING_DEBUG_MACROS
#endif
#ifdef __USING_DEBUG_MACROS
# define DEBUG(x) do { std::cerr << "[ Debug ]: In function " << __func__ << ", line " << __LINE__ <<": "<< x << std::endl; } while(0)
# define DEBUG_WITH_TEST(test, message) \
if(test) \
DEBUG(message)
# define WARNING(x) do { std::cerr << "[ Warning ]: In function " << __func__ << ", line " << __LINE__ <<": "<< x << std::endl; } while(0)
# define WARNING_WITH_TEST(test, message) \
if(test)\
WARNING(message)
#else
# define DEBUG(x) do {} while(0)
# define DEBUG_WITH_TEST(a, b) do {} while(0)
# define WARNING(x) do {} while(0)
# define WARNING_WITH_TEST(a, b) do {} while(0)
#endif
// Error Handling Preprocessor Directives
#ifdef __USING_FATAL_ERROR_CHECKING
# define FATAL_ERROR_CHECK(assertion, message) \
if(assertion) \
std::cerr << "[ Fatal Error ]: " << message << std::endl; assert(!(assertion))
#else
# define FATAL_ERROR_CHECK(assertion, message) WARNING_WITH_TEST(assertion, message << " *ALERT* This is an uncaught fatal error! Resulting application behavior may become undefined!")
#endif
#endif
|
fc2f3a207f0b307e9177d4fbe35a8227e1359f0d | 2d7ff09bf8e73f2b437a39565c74f99dc94d76b2 | /Pokemon/Classes/Pokemon/Blastoise.cpp | 7b9ac0ebc9cebf508f5e8b3cf4c7a172cde5c9d6 | [] | no_license | Crasader/Summer2019_Group3_Pokemon | f0d66a7cbda04b1349e7ae7d5bdf6db307fa9670 | cb2c2206a9a2a668985511382dd5078acd42e93d | refs/heads/master | 2020-11-28T14:46:45.885959 | 2019-08-03T00:32:02 | 2019-08-03T00:32:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 682 | cpp | Blastoise.cpp | #include "Blastoise.h"
#define hp 40
#define atk 52
#define def 43
#define speed 65
Blastoise::Blastoise()
{
this->Init(0, 1);
}
Blastoise::Blastoise(Wartortle * it)
{
this->Init(0, 1);
//
this->m_name = "Blastoise";
this->m_type = it->GetType();
this->m_listSkill = { it->GetSkillById(0), it->GetSkillById(1), it->GetSkillById(2) };
this->m_level = it->GetLevel();
this->m_maxHealth = it->GetMaxHP() + 15;
this->m_currentHealth = this->m_maxHealth;
this->m_attack = it->GetAtk() + 5;
this->m_defense = it->GetDef() + 5;
this->m_attackSpeed = it->GetAtkSpeed() + 2;
this->m_currentExp = 0;
this->m_maxExp = it->GetMaxExp();
delete it;
}
Blastoise::~Blastoise()
{
} |
39dcb8bf19a119e044579863b8c7f11cc6cfd598 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/squid/gumtree/squid_new_log_1619.cpp | daf566edd88c6430fb6b347e5599fef1b12c86a7 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 217 | cpp | squid_new_log_1619.cpp | out.appendf("<%s colspan=\"%d\" align=\"%s\">%s</%s>",
ttag, column_span,
is_header ? "center" : is_number(cell) ? "right" : "left",
html_quote(cell), ttag); |
c31987d009f896378ffa91031237180860b17446 | 3208e9d63e390f2d84fb442c22c7dafc255e9795 | /Arrays/Easy/specialpositionsinabinarymatrix.cpp | c24116d9d870d917736267e8f964717aabd19cc3 | [] | no_license | preethichandra20/LeetCode | 892214522d164d8a616c5bb3906bfa10626e8b13 | 5ff4f7064089c3775eaef973ac33d52d3380d269 | refs/heads/master | 2023-05-28T21:48:44.559310 | 2021-06-14T17:23:34 | 2021-06-14T17:23:34 | 376,902,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | specialpositionsinabinarymatrix.cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
vector<vector<int>> mat={{1,0,0},{0,0,1},{1,0,0}};
int m=mat.size();
int n=mat[0].size();
int noofones=0;
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
int key=mat[i][j];
if(key==1){
bool flag=true;
int r=i;
int c=j;
for(int k=0;k<m;k++){
if(mat[k][c]!=0 && k!=r){
flag=false;
break;
}
}
if(flag!=false){
for(int k=0;k<n;k++){
if(mat[r][k]!=0 && k!=c){
flag=false;
break;
}
}
}
if(flag==true){
noofones++;
}
}
}
}
cout<<noofones;
} |
bcd267b37eb487a67699950bebe7dc8388db822e | 2f10f807d3307b83293a521da600c02623cdda82 | /deps/boost/win/debug/include/boost/hana/detail/nested_by.hpp | b4cb5704682b9a340495badc3f082d0edb29a067 | [] | no_license | xpierrohk/dpt-rp1-cpp | 2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e | 643d053983fce3e6b099e2d3c9ab8387d0ea5a75 | refs/heads/master | 2021-05-23T08:19:48.823198 | 2019-07-26T17:35:28 | 2019-07-26T17:35:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | hpp | nested_by.hpp | version https://git-lfs.github.com/spec/v1
oid sha256:82e263bd476b5d49f7b85e313002c6e36022a02213ac4f9ee8a3516b008e8f4e
size 1255
|
73e9fbb2b66034648a03d22cf55c636f09c872df | cab2ce290c43c657ae92066b1d1c5267bb6d5bd7 | /homework2/barrier.h | 0c3365ced0e83f0df7ef493e3189f192eab2edf7 | [] | no_license | smj2mm/OS | a6cc403f44b6feae422ac998c22449b8a6036b7c | 275b32f9bfb0112685820463a93d2a73cef82326 | refs/heads/master | 2020-01-27T10:02:18.095632 | 2016-12-08T22:31:43 | 2016-12-08T22:31:43 | 67,442,910 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 248 | h | barrier.h | #include <semaphore.h>
#ifndef BARRIER_H
#define BARRIER_H
class Barrier {
private:
// mutex
sem_t m;
// waiter
sem_t w;
// handshake
sem_t h;
int counter;
int capacity;
public:
Barrier(int size);
void wait();
};
#endif
|
74df297b1335f63fd338504f50c6da99c4ef938b | 24c108de7c4ce08241e8705537e268ac0b1fb77a | /Sketches/LaundryReminder/LaundryReminderButton/ServerHelper.h | 02cf81a93245cabaa737f2556a125d9b1a1723a6 | [
"MIT"
] | permissive | cjc061000/LaundryReminderButton | 3e488e54d2d434746ad20d6de285d2c9582ff629 | 463667afc24d2dc8c95a596b1c9868116f44a379 | refs/heads/master | 2022-12-14T13:10:54.396650 | 2020-08-29T19:15:02 | 2020-08-29T19:15:02 | 282,082,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | h | ServerHelper.h | #ifndef ServerHelper_h
#define ServerHelper_h
#include <Arduino.h>
#include <WiFi.h>
class ServerHelper
{
public:
ServerHelper();
void handleNewClient(WiFiClient client, String Header, String &requestUrl, String &queryParamsStr);
void GetRequestParameters(String queryParamStr, String &ssid, String &pw);
void PrintHomePage(WiFiClient client, String ssid, String pw);
void PrintSubmitPage(WiFiClient client, String ssid, String pw);
private:
String getRequestUrl(String header, String &detectedParams);
void Urldecode2(String &dst, String src);
int _pin;
};
#endif |
defd22d76a0ba3425baaf6b62000eb6b06a1e76f | 913d4919c8041b918c51b57d52acaad1f99a82e0 | /Iluminate_hallway.cpp | 96669a6eb8f2e0e40bbc14657ebaff7460d9b3e0 | [] | no_license | KunalFarmah98/Interview-Questions | f126d6fb74bfadf03a1e00b523549c7c24e5ffec | 61f638e16823992ac9578349fef6535fa231da83 | refs/heads/master | 2022-07-29T16:19:56.356807 | 2020-05-25T15:14:08 | 2020-05-25T15:14:08 | 266,811,559 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,325 | cpp | Iluminate_hallway.cpp | // { Driver Code Starts
// driver code
#include <bits/stdc++.h>
using namespace std;
int min_lights(int hallway[], int n);
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
int hallway[n];
for (int i = 0; i < n; i++)
cin >> hallway[i];
cout << min_lights(hallway, n) << endl;
}
return 1;
}
// } Driver Code Ends
//User function Template for C++
int min_lights(int hallway[], int n) {
vector<pair<int, int>> lights;
for (int i = 0; i < n; i++)
if (hallway[i] > -1)
lights.push_back(pair<int, int>(i - hallway[i], i + hallway[i]));
// only check on the left side
sort(lights.begin(), lights.end());
int target = 0, lights_on = 0, i = 0;
while (target < n) {
if (i == lights.size() || lights[i].first > target)
return -1;
int max_range = lights[i].second;
// finding last bulb to light upto 0
while (i + 1 < lights.size() && lights[i + 1].first <= target) {
i++;
max_range = max(max_range, lights[i].second);
}
if (max_range < target)
return -1;
lights_on++;
// now maxleft to be lighted is maxrange+1
target = max_range + 1;
i++;
}
return lights_on;
}
|
bab9d82100bbde16f46b7f1b2821f34ec40f5004 | e5adb57a9b85cec1ae543aa4a6db3694c2a2d5ae | /VulkanEngine/CommonStructs.h | ecde2181a7298939bcd5c28323b3fb3848a9d27c | [] | no_license | g4tobauer/VulkanEngine | 011eb2823760c1ae7145821992b33926d2339ab9 | 4adda1068109b89a7f6aca9660e1e43102e1b0b5 | refs/heads/master | 2023-09-02T22:05:37.758211 | 2023-08-31T03:24:03 | 2023-08-31T03:24:03 | 132,063,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 730 | h | CommonStructs.h | #pragma once
#ifndef ENGINE_COMMON_STRUCTS
#define ENGINE_COMMON_STRUCTS
#ifndef ENGINE_COMMON_HEADERS
#include "CommonHeaders.h"
#endif // !#ifndef ENGINE_COMMON_HEADERS
struct SwapChainSupportDetails {
VkSurfaceCapabilitiesKHR capabilities;
std::vector<VkSurfaceFormatKHR> formats;
std::vector<VkPresentModeKHR> presentModes;
};
struct QueueFamilyIndices
{
std::optional<uint32_t> graphicsFamily;
std::optional<uint32_t> presentFamily;
float queuePriority = 1.0f;
//int graphicsFamily = -1;
//int presentFamily = -1;
bool isComplete()
{
return graphicsFamily.has_value() && presentFamily.has_value();
//return graphicsFamily.has_value() && presentFamily >= 0;
}
};
#endif // !ENGINE_COMMON_STRUCTS |
1e8613c50cfc33418d901e78729dfa5122c09ca0 | 78da87159332b7f053c6bcf88f888ffc6c4dd624 | /336.cpp | 02ad5dc309e3573714d36f5e9332a087aa660a77 | [] | no_license | sudiptobd/UVA-Solving | e2d7bb9b8196a469003dde056b1e596af642cc95 | 403dd3a54e1a8e9af42dcd3d121a64269f9b351a | refs/heads/master | 2021-01-11T20:02:09.401456 | 2017-01-19T12:47:13 | 2017-01-19T12:47:13 | 79,452,726 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,462 | cpp | 336.cpp | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <queue>
#include <vector>
#include <memory>
#include <map>
using namespace std;
int BFS(int src,int ttl,map<int ,vector<int> >gf)
{
int count=0;
map<int, int>visited;
map<int, int>level;
visited[src]=1;
level[src]=0;
queue<int>q;
q.push(src);
while(!q.empty())
{
int u=q.front();
for(int i=0;i<gf[u].size();i++)
{
int v=gf[u][i];
if(!visited[v])
{
visited[v]=1;
level[v]=level[u]+1;
if(level[v]>ttl)count++;
q.push(v);
}
}
q.pop();
}
count+=gf.size()-visited.size();
return count;
}
int main()
{
int node,x=0;
while(scanf("%d",&node)&&node)
{
// initializing graph ....
//for(int j=0;j<100;j++)fill(gf[j].begin(), gf[j].end(), NULL);
map<int , vector<int> >gf;
int u,v;
for(int i=0; i<node; i++)
{
scanf("%d",&u);
scanf("%d",&v);
gf[u].push_back(v);
gf[v].push_back(u);
}
// taking source && ttl ....
int src, ttl;
while(scanf("%d %d",&src,&ttl)&&(src||ttl))
{
int count=BFS(src,ttl,gf);
printf("Case %d: %d nodes not reachable from node %d with TTL = %d.\n",++x,count,src,ttl);
}
}
return 0;
}
|
6af27e0637776ef8bdd964aeafb4d12e6eabbb7a | 81e9d9428206b5f04969333f3e1d174641966234 | /codeforces/ER9/F/F.cpp | 635f0c240b738a0e94e19974d97980e26afaa679 | [] | no_license | MHamada96/competitive-programming | c87325db731d4e54d80f668395a5f03fb779d086 | 66b52775ebdbeeed1d833312cd12efed9d48aec3 | refs/heads/master | 2020-04-11T15:00:41.879744 | 2018-12-15T06:21:36 | 2018-12-15T06:21:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,649 | cpp | F.cpp | #include <bits/stdc++.h>
#define loop(i,n) for(int i = 0;i < (n);i++)
#define range(i,a,b) for(int i = (a);i <= (b);i++)
#define rrep(i,n) for(int i = (n);i >= 0;i--)
#define rran(i,a,b) for(int i = (b);i >= (a);i--)
#define step(i,a,b,d) for(int i = (a);i <= (b); i += d)
#define all(A) A.begin(),A.end()
#define PI acos(-1)
#define pb push_back
#define mp make_pair
#define sz(A) A.size()
#define len(A) A.length()
#define vi vector<int>
#define ll long long
#define pi pair<int,int>
#define point pair<double,double>
#define pl pair<ll,ll>
#define popcnt(x) __builtin_popcount(x)
#define LSOne(x) ((x) & (-(x)))
#define xx first
#define yy second
#define PQ priority_queue
#define print(A,t) cerr << #A << ": "; copy(all(A),ostream_iterator<t>(cerr," " )); cerr << endl
#define prp(p) cerr << "(" << (p).first << " ," << (p).second << ")";
#define prArr(A,n,t) cerr << #A << ": "; copy(A,A + n,ostream_iterator<t>(cerr," " )); cerr << endl
#define pre() cin.tie(0),cerr.tie(0),ios_base::sync_with_stdio(0)
using namespace std;
const int MAX = 2500;
int A[MAX][MAX],n,id[MAX],W[MAX],L[MAX],P[MAX][14],MX[MAX][14];
vector<pi> G[MAX];
int get(int a){
return id[a] = (a == id[a]) ? a : get(id[a]);
}
void join(int a,int b,int c){
int k1 = get(a),k2 = get(b);
if(k1 == k2) return;
G[a].pb(mp(b,c));
G[b].pb(mp(a,c));
if(W[k1] < W[k2]) swap(k1,k2);
W[k1] += W[k2];
id[k2] = k1;
}
void bfs(){
queue<int> q;
q.push(0);
fill(P[0],P[1],-1);
while(!q.empty()){
int u = q.front(); q.pop();
for(auto node : G[u]){
int v = node.xx,w = node.yy;
if(v != P[u][0]){
q.push(v);
L[v] = L[u] + 1;
P[v][0] = u;
MX[v][0] = w;
loop(i,13) {
int t = P[u][i];
if(t == -1) P[v][i + 1] = -1;
else {
P[v][i + 1] = P[t][i];
MX[v][i + 1] = max(MX[t][i],MX[v][i]);
}
}
}
}
}
}
int get(int a,int b){
int ans = 0;
while(a != b){
if(L[a] > L[b]) swap(a,b);
int k = 0;
while(k < 14 && P[b][k] != -1 && L[P[b][k]] > L[a]) k++;
if(k == 0){
ans = max(MX[b][0],ans);
b = P[b][0];
continue;
}
k--;
ans = max(MX[b][k],ans);
b = P[b][k];
}
return ans;
}
int main(){
scanf("%d",&n);
loop(i,n) loop(j,n) scanf("%d",&A[i][j]);
vector<pair<int,pi> > E;
loop(i,n) {
id[i] = i;
W[i] = 1;
if(A[i][i] != 0) {
puts("NOT MAGIC");
return 0;
}
loop(j,i) {
if(A[i][j] != A[j][i]) {
puts("NOT MAGIC");
return 0;
}
E.pb(mp(A[i][j],mp(i,j)));
}
}
sort(all(E));
for(auto & e : E) join(e.yy.xx,e.yy.yy,e.xx);
bfs();
loop(i,n) loop(j,i) {
if(A[i][j] != get(i,j)) {
puts("NOT MAGIC");
return 0;
}
}
puts("MAGIC");
return 0;
}
|
9f83109dc9dad6e9c7ab53eb4b582890b3a8fd3e | 1359bb193ce7ec547ae07862c207b6b68d7d8d8e | /Tree/Count Complete Tree Nodes.cpp | 7906a6da78d9e862800d025a94d369d919ece8c4 | [] | no_license | yukta22/leetcode | f13f6d96c0e7254651de55ce9ab54ca5f5992e6b | 8d1352415146adf7cb8963e6c80c78111c89dc4f | refs/heads/main | 2023-08-14T11:01:48.541234 | 2021-09-28T09:36:45 | 2021-09-28T09:36:45 | 328,369,449 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | cpp | Count Complete Tree Nodes.cpp | // Given the root of a complete binary tree, return the number of the nodes in the tree.
// According to Wikipedia, every level, except possibly the last,
// is completely filled in a complete binary tree, and all nodes in the last level are as far left as possible.
// It can have between 1 and 2h nodes inclusive at the last level h.
// Design an algorithm that runs in less than O(n) time complexity.
Example 1:
Input: root = [1,2,3,4,5,6]
Output: 6
Example 2:
Input: root = []
Output: 0
Example 3:
Input: root = [1]
Output: 1
// //////////////////////////////////////////// Using BST Property ////////////////////////////////////////////////
class Solution {
public:
int countNodes(TreeNode* root) {
if(!root)return 0;
int left_level = 1;
TreeNode * l = root->left;
while(l){
l = l->left;
left_level++;
}
int right_level = 1;
TreeNode * r = root->right;
while(r){
r = r->right;
right_level++;
}
if(left_level == right_level){
return pow(2,left_level) - 1;
}
return 1 + countNodes(root->left) + countNodes(root->right);
}
};
|
961f6cd150c670500ef60264d3f52ea494d2ec5e | 8faee0b01b9afed32bb5b7ef1ab0dcbc46788b5b | /source/src/misc/xmlwrapp/schema.cpp | eecd45c39b04252a1f335657c64fd6b4bd2e41f8 | [
"BSD-3-Clause"
] | permissive | jackgopack4/pico-blast | 5fe3fa1944b727465845e1ead1a3c563b43734fb | cde1bd03900d72d0246cb58a66b41e5dc17329dd | refs/heads/master | 2021-01-14T12:31:05.676311 | 2014-05-17T19:22:05 | 2014-05-17T19:22:05 | 16,808,473 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,664 | cpp | schema.cpp | /*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of the Author nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* $Id: schema.cpp 209198 2010-10-25 15:01:26Z satskyse $
*/
/** @file
* This file contains the implementation of the xml::schema class.
**/
// xmlwrapp includes
#include <misc/xmlwrapp/schema.hpp>
#include <misc/xmlwrapp/document.hpp>
#include <misc/xmlwrapp/exception.hpp>
#include "document_impl.hpp"
#include "utility.hpp"
// standard includes
#include <stdexcept>
#include <string.h>
#include <memory>
// libxml includes
#include <libxml/xmlschemas.h>
using namespace xml;
using namespace xml::impl;
namespace {
extern "C" void cb_schema_error (void *v, const char *message, ...);
extern "C" void cb_schema_warning (void *v, const char *message, ...);
}
struct xml::impl::schema_impl {
schema_impl (void) : schema_(NULL) {}
xmlSchemaPtr schema_;
error_messages schema_parser_messages_;
error_messages validation_messages_;
};
schema::schema (const char* filename,
error_messages* messages,
warnings_as_errors_type how) : pimpl_(NULL) {
if (!filename)
throw xml::exception("invalid file name");
std::auto_ptr<schema_impl> ap(pimpl_ = new schema_impl);
error_messages * temp(messages);
std::auto_ptr<error_messages> msgs;
if (!messages)
msgs.reset(temp = new error_messages);
construct(filename, (size_type)(-1), temp, how);
ap.release();
}
schema::schema (const char* data, size_type size,
error_messages* messages,
warnings_as_errors_type how) : pimpl_(NULL) {
if (!data)
throw xml::exception("invalid data pointer");
std::auto_ptr<schema_impl> ap(pimpl_ = new schema_impl);
error_messages * temp(messages);
std::auto_ptr<error_messages> msgs;
if (!messages)
msgs.reset(temp = new error_messages);
construct(data, size, temp, how);
ap.release();
}
bool schema::validate (const document& doc,
error_messages* messages,
warnings_as_errors_type how) const
{
xmlSchemaValidCtxtPtr ctxt;
if ((ctxt = xmlSchemaNewValidCtxt(pimpl_->schema_)) == 0) {
throw std::bad_alloc();
}
error_messages* temp(messages);
std::auto_ptr<error_messages> msgs;
if (!messages)
msgs.reset(temp = new error_messages);
else
messages->get_messages().clear();
xmlSchemaSetValidErrors(ctxt, cb_schema_error,
cb_schema_warning,
temp);
int retCode = xmlSchemaValidateDoc(ctxt, doc.pimpl_->doc_);
xmlSchemaFreeValidCtxt(ctxt);
if (retCode == -1)
throw xml::exception("internal libxml2 API error");
// There are errors
if (temp->has_errors())
return false;
// There are warnings and they are treated as errors
if (temp->has_warnings()) {
if (how == type_warnings_are_errors)
return false;
}
return true;
}
schema::schema (const char* data, size_type size,
warnings_as_errors_type how) : pimpl_(NULL) {
if (!data)
throw xml::exception("invalid data pointer");
std::auto_ptr<schema_impl> ap(pimpl_ = new schema_impl);
construct(data, size,
&pimpl_->schema_parser_messages_, how);
ap.release();
} /* NCBI_FAKE_WARNING */
// Helper constructor.
// Two public constructors bodies differ only in the way of creating the parser
// context. So this function is introduced.
void schema::construct (const char* file_or_data, size_type size,
error_messages* messages,
warnings_as_errors_type how) {
xmlSchemaParserCtxtPtr ctxt;
// Create a context depending on where data come from - a file or memory
if (size == (size_type)(-1)) {
// This is a file parsing request
if ((ctxt = xmlSchemaNewParserCtxt(file_or_data)) == NULL) {
throw std::bad_alloc();
}
} else {
// This is a memory parsing request
if ((ctxt = xmlSchemaNewMemParserCtxt(file_or_data, size)) == NULL) {
throw std::bad_alloc();
}
}
messages->get_messages().clear();
xmlSchemaSetParserErrors(ctxt, cb_schema_error,
cb_schema_warning,
messages);
pimpl_->schema_ = xmlSchemaParse(ctxt);
xmlSchemaFreeParserCtxt(ctxt);
// Fatal errors are impossible here. They may appear for document parser
// only.
if (messages->has_errors())
throw parser_exception(*messages);
if ((how == type_warnings_are_errors) && messages->has_warnings())
throw parser_exception(*messages);
// To be 100% sure that schema was created successfully
if (pimpl_->schema_ == NULL)
throw xml::exception("unknown schema parsing error");
}
schema::~schema() {
if (pimpl_->schema_)
xmlSchemaFree(pimpl_->schema_);
delete pimpl_;
}
bool schema::validate (const document& doc,
warnings_as_errors_type how) const {
// Clean up messages for the previous run
pimpl_->validation_messages_.get_messages().clear();
xmlSchemaValidCtxtPtr ctxt;
if ((ctxt = xmlSchemaNewValidCtxt(pimpl_->schema_)) == 0) {
throw std::bad_alloc();
}
xmlSchemaSetValidErrors(ctxt, cb_schema_error,
cb_schema_warning,
&pimpl_->validation_messages_);
int retCode = xmlSchemaValidateDoc(ctxt, doc.pimpl_->doc_);
xmlSchemaFreeValidCtxt(ctxt);
if (retCode == -1)
throw xml::exception("internal libxml2 API error");
// There are errors
if (pimpl_->validation_messages_.has_errors())
return false;
// There are warnings and they are treated as errors
if (pimpl_->validation_messages_.has_warnings()) {
if (how == type_warnings_are_errors)
return false;
}
return true;
}
const error_messages& schema::get_schema_parser_messages (void) const {
return pimpl_->schema_parser_messages_;
}
const error_messages& schema::get_validation_messages (void) const {
return pimpl_->validation_messages_;
}
namespace {
void register_error_helper (error_message::message_type mt,
void *v,
const std::string &message) {
try {
error_messages *p = static_cast<error_messages*>(v);
if (p)
p->get_messages().push_back(error_message(message, mt));
} catch (...) {}
}
extern "C" void cb_schema_error (void *v, const char *message, ...) {
std::string temporary;
va_list ap;
va_start(ap, message);
printf2string(temporary, message, ap);
va_end(ap);
register_error_helper(error_message::type_error, v, temporary);
}
extern "C" void cb_schema_warning (void *v, const char *message, ...) {
std::string temporary;
va_list ap;
va_start(ap, message);
printf2string(temporary, message, ap);
va_end(ap);
register_error_helper(error_message::type_warning, v, temporary);
}
}
|
9fb6b3e28da7429917a16a697adfae71613590cf | 60bd230f8b7af9b629c76c875b89be709a91270f | /modules/roklegend/blib/platform/android/window.h | efe60712736ec1c8811cac4d75062290736e958c | [
"CC-BY-4.0",
"MIT",
"LicenseRef-scancode-free-unknown",
"OFL-1.1",
"Bison-exception-2.2",
"FTL",
"GPL-3.0-or-later",
"BSD-3-Clause",
"Zlib",
"CC0-1.0",
"GPL-3.0-only",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-nvidia-2002",
"BSD-2-Clause",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unicode",
"LicenseRef-scancode-unknown-license-reference",
"Bitstream-Vera",
"Unlicense",
"MPL-2.0",
"MIT-Modern-Variant"
] | permissive | ViteFalcon/godot | 1837321c10d52dac7b60c8254f14e3ce528fb493 | 57bd8ada2877b4f4582354fab7148dac56cdf751 | refs/heads/master | 2023-01-08T17:22:06.945736 | 2022-12-30T14:40:37 | 2022-12-30T14:40:37 | 107,849,549 | 0 | 0 | MIT | 2022-12-30T14:40:37 | 2017-10-22T08:31:34 | C++ | UTF-8 | C++ | false | false | 813 | h | window.h | #pragma once
#include <blib/IWindow.h>
#include <blib/KeyListener.h>
#include <EGL/egl.h>
#include <vector>
namespace blib
{
class App;
namespace platform
{
namespace android
{
class Window : public blib::IWindow
{
private:
App* app;
EGLDisplay display;
EGLSurface surface;
EGLContext context;
std::vector<long> clicks;
protected:
public:
Window(App* app);
virtual ~Window();
void tick() {};
virtual void swapBuffers();
virtual void create(int icon, std::string title);
virtual bool makeCurrent();
virtual void unmakeCurrent();
virtual void touchDownEvent(int x, int y);
virtual void touchUpEvent(int x, int y);
virtual void touchMoveEvent(int x, int y);
virtual void keyDownEvent(blib::Key key);
};
}
}
}
|
d29f34f7d8665f163a75d8f714fb708d48e31fb6 | e2e035f218a0d4a39b85aeb444cdca02cc4b0529 | /Arduino Library/DFR_LCD_Keypad-master/DFR_LCD_Keypad.h | 98e18947a4030fc1d543ae26ff7ef3e89b39bd01 | [] | no_license | dtnghia2206/LCD_Shield | c02eee3dc4d28a6a57939c94537098e708cbb549 | f865fe201e5bcbe3c5fdff9d7ac6036642622728 | refs/heads/master | 2023-08-31T14:58:36.457728 | 2023-08-28T12:39:37 | 2023-08-28T12:39:37 | 155,398,598 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,990 | h | DFR_LCD_Keypad.h | /*
Arduino LCD + Keypad Library
by Andy Gock
http://micro.gock.net
For use with common LCD / Keypad shields such as:
DFRobot DFR0009
http://www.dfrobot.com/wiki/index.php?title=Arduino_LCD_KeyPad_Shield_%28SKU:_DFR0009%29
*/
#ifndef DFR_LCD_KEYPAD_H
#define DFR_LCD_KEYPAD_H
#if defined(ARDUINO) && (ARDUINO >= 100)
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include <LiquidCrystal.h>
#if !defined(DFR_LCD_KEYPAD_BACKLIGHT_PIN)
#define DFR_LCD_KEYPAD_BACKLIGHT_PIN 10
#endif
#if !defined(DFR_LCD_KEYPAD_KEY_PIN)
#define DFR_LCD_KEYPAD_KEY_PIN A0
#endif
#define DFR_LCD_KEYPAD_KEY_RIGHT 0
#define DFR_LCD_KEYPAD_KEY_UP 1
#define DFR_LCD_KEYPAD_KEY_DOWN 2
#define DFR_LCD_KEYPAD_KEY_LEFT 3
#define DFR_LCD_KEYPAD_KEY_SELECT 4
#define DFR_LCD_KEYPAD_KEY_NONE 5
#define DFR_LCD_KEYPAD_KEY_RIGHT_ADC_LOW 0
#define DFR_LCD_KEYPAD_KEY_RIGHT_ADC_HIGH 20
#define DFR_LCD_KEYPAD_KEY_UP_ADC_LOW 120
#define DFR_LCD_KEYPAD_KEY_UP_ADC_HIGH 140
#define DFR_LCD_KEYPAD_KEY_DOWN_ADC_LOW 290
#define DFR_LCD_KEYPAD_KEY_DOWN_ADC_HIGH 339
#define DFR_LCD_KEYPAD_KEY_LEFT_ADC_LOW 450
#define DFR_LCD_KEYPAD_KEY_LEFT_ADC_HIGH 520
#define DFR_LCD_KEYPAD_KEY_SELECT_ADC_LOW 700
#define DFR_LCD_KEYPAD_KEY_SELECT_ADC_HIGH 780
#define DFR_LCD_KEYPAD_KEY_NONE_ADC_LOW 1000
#define DFR_LCD_KEYPAD_KEY_NONE_ADC_HIGH 1023
#define KEY_RIGHT DFR_LCD_KEYPAD_KEY_RIGHT
#define KEY_UP DFR_LCD_KEYPAD_KEY_UP
#define KEY_DOWN DFR_LCD_KEYPAD_KEY_DOWN
#define KEY_LEFT DFR_LCD_KEYPAD_KEY_LEFT
#define KEY_SELECT DFR_LCD_KEYPAD_KEY_SELECT
#define KEY_NONE DFR_LCD_KEYPAD_KEY_NONE
class DFR_LCD_Keypad
{
private:
uint8_t _key_pin;
uint16_t _last_key;
LiquidCrystal *_lcd;
public:
DFR_LCD_Keypad();
DFR_LCD_Keypad(const uint8_t key_pin);
DFR_LCD_Keypad(const uint8_t key_pin, LiquidCrystal *lcd);
void backlight_off(void);
void backlight_on(void);
uint8_t read_key(void);
uint8_t get_last_key(void);
};
#endif
|
8908e1df25926febb30edc3dc3c18bdb9b705be4 | 7c480170f452999f8266f2f2d258babc4111d8bd | /circle.h | 84b86e05c54e1e6074493d4699d491bd92c29c82 | [
"MIT"
] | permissive | brun0marques/ascii_geo_fig | 25b979d6fc0b8d1e29e00e14fc5aa97e745811d4 | 146605e58654136cbbe7ce91708c6230a6d8e784 | refs/heads/master | 2020-04-03T18:36:53.497996 | 2018-10-31T03:13:25 | 2018-10-31T03:13:25 | 154,845,026 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267 | h | circle.h | #ifndef CIRCLE_H
#define CIRCLE_H
#include "geometricfigure.h"
class Circle : public GeometricFigure
{
private:
int xc, yc, radius, fillmode;
public:
Circle(int _xc, int _yc, int _radius, int _fillmode);
void draw(Screen &t);
};
#endif // CIRCULO_H
|
39b502b836aa5e44e0b578acfcd39b0fe98a13f0 | 3cc352b29b8042b4a9746796b851d8469ff9ff62 | /src/paths/HKPMerger.cc | cc420d01d7f276299f0ca0d8e80c922560e765c6 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | CompRD/BroadCRD | 1412faf3d1ffd9d1f9907a496cc22d59ea5ad185 | 303800297b32e993abd479d71bc4378f598314c5 | refs/heads/master | 2020-12-24T13:53:09.985406 | 2019-02-06T21:38:45 | 2019-02-06T21:38:45 | 34,069,434 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,100 | cc | HKPMerger.cc | ///////////////////////////////////////////////////////////////////////////////
// SOFTWARE COPYRIGHT NOTICE AGREEMENT //
// This software and its documentation are copyright (2011) by the //
// Broad Institute. All rights are reserved. This software is supplied //
// without any warranty or guaranteed support whatsoever. The Broad //
// Institute is not responsible for its use, misuse, or functionality. //
///////////////////////////////////////////////////////////////////////////////
/*
* \file HKPMerger.cc
* \author tsharpe
* \date Jan 29, 2010
*
* \brief
*/
#include "paths/HKPMerger.h"
#include "feudal/BinaryStream.h"
#include "paths/InternalMerge.h"
#include "pairwise_aligners/PerfectAlignerLG.h"
#include "system/Assert.h"
#include "system/ThreadsafeIO.h"
HKPMerger::HKPMerger( const vec<HyperKmerPath> & HKPs,
const vecbasevector & HKP_bases, const vec<int> & base_to_HKP_ID,
const String sub_dir, int n_threads, const int max_kmer_freq,
const int min_align_length, const int max_Q_size,
NegativeGapValidator const* ngv, const vec<tagged_rpint>& uniqdb,
long checkpointInterval, String const& checkpointFile )
: mMaxQSize(max_Q_size), mNGV(ngv), mUniqDB(uniqdb),
mCheckpointInterval(checkpointInterval), mCheckpointFile(checkpointFile),
mWorklist(mProcessor,n_threads)
{
// HKP_bases contains the basevectors that correspond to the KmerPaths in
// all the HyperKmerPaths in HKPs.
// Find all K-mers (with K = min_align_length) that appear multiple times in
// HKP_bases. Then use these K-mers to create a graph of adjacencies
// between the HyperKmerPaths. Two HyperKmerPaths are marked as adjacent
// (indicating they should be merged) if they share a non-repetitive K-mer.
PerfectAlignerLG aligner(min_align_length, PerfectAlignerLG::findImproper);
vec<alignment_plus> aligns;
aligner.Align( HKP_bases, aligns, n_threads, -1, max_kmer_freq );
size_t nNodes = HKPs.size();
mNodes.reserve(nNodes);
for ( size_t iii = 0; iii < nNodes; ++iii )
mNodes.push_back(new Node(HKPs[iii],iii));
// Fill the graph with adjacencies. Note that adjacencies are
// symmetric: iff the edge a->b exists, b->a also exists.
// The graph represented by the nodes' adjacencies is an undirected graph.
typedef vec<alignment_plus>::iterator AlignItr;
for ( AlignItr itr(aligns.begin()), end(aligns.end()); itr != end; ++itr )
{
Node* pNode1 = mNodes[base_to_HKP_ID[itr->Id1()]];
Node* pNode2 = mNodes[base_to_HKP_ID[itr->Id2()]];
if ( pNode1 != pNode2 )
{
pNode1->addAdjacency(pNode2);
pNode2->addAdjacency(pNode1);
}
}
}
HyperKmerPath HKPMerger::localMerge( int max_group_size,
int min_overlap, int min_proper_overlap )
{
ForceAssertGt(max_group_size,1);
// if there's nothing to merge, just return an empty HyperKmerPath
if ( !mNodes.size() )
return HyperKmerPath();
Comparator comparator;
Checkpointer chkPtr;
FinalMerger fMerger(chkPtr,mNodes.size());
// while there are nodes that have adjacencies
while ( mNodes.size() )
{
using std::sort;
sort(mNodes.begin(),mNodes.end(),comparator);
Node* pNode = mNodes.back();
mNodes.resize(mNodes.size()-1);
if ( !pNode->getAdjacencyCount() )
{
fMerger.addNode(pNode);
continue;
}
LocalMerger* pLMerger = new LocalMerger(chkPtr,max_group_size,*this,
min_overlap,min_proper_overlap);
pLMerger->addNode(pNode);
for ( int iii = 1; iii < max_group_size; ++iii )
{
std::set<Node*> const& xadjs = pLMerger->getAdjacencies();
if ( xadjs.empty() )
break;
std::vector<Node*> adjs( xadjs.begin(), xadjs.end() );
sort(adjs.begin(),adjs.end(),comparator);
pNode = adjs.back();
pLMerger->addNode(pNode);
using std::find;
mNodes.erase( find(mNodes.begin(),mNodes.end(),pNode) );
}
mNodes.push_back(pLMerger);
pLMerger->schedule();
}
ThreadsafeOStream(std::cout) << Date() << ": Merge order is "
<< fMerger.getName() << std::endl;
while ( !fMerger.wait(mCheckpointInterval) )
{
HyperKmerPath hkp = fMerger.checkpoint();
HKPCleanup(hkp);
BinaryWriter::writeFile(mCheckpointFile,hkp);
}
return fMerger.getPath();
}
HyperKmerPath HKPMerger::Checkpointer::checkpoint()
{
ThreadsafeOStream(std::cout) << Date() << ": Checkpointing " << mHKPs.size()
<< " HyperKmerPaths." << std::endl;
typedef std::set<HyperKmerPath const*>::iterator Itr;
vec<HyperKmerPath> hkps;
hkps.reserve(mHKPs.size());
for ( Itr itr(mHKPs.begin()), end(mHKPs.end()); itr != end; ++itr )
hkps.push_back(**itr);
return HyperKmerPath(hkps[0].K(),hkps);
}
HKPMerger::OutputAccumulator::~OutputAccumulator()
{
delete &getPath();
typedef vec<HyperKmerPath>::iterator Itr;
for ( Itr itr(mToMerge.begin()), end(mToMerge.end()); itr != end; ++itr )
mChkPtr.removeHKP(*itr);
}
void HKPMerger::OutputAccumulator::addNode( Node* pNode )
{
Locker locker(mLock);
String& name = getName();
if ( !name.size() )
name = '[' + pNode->getName() + ']';
else
{
name.resize(name.size()-1);
name += ',' + pNode->getName() + ']';
}
if ( pNode->isPathAvailable() )
addMerge(pNode);
else
{
mPending.insert(pNode);
pNode->setListener(this);
}
}
void HKPMerger::OutputAccumulator::internalPathAvailable( Node* pNode )
{
mPending.erase(pNode);
addMerge(pNode);
}
void HKPMerger::OutputAccumulator::addMerge( Node* pNode )
{
mToMerge.push_back(pNode->getPath());
Locker chkptLocker(mChkPtr);
delete pNode;
mChkPtr.addHKP(mToMerge.back());
}
void HKPMerger::LocalMerger::addNode( Node* pNode )
{
removeAdjacency(pNode);
pNode->removeAdjacency(this);
typedef std::set<Node*>::const_iterator Itr;
std::set<Node*> const& adjs = pNode->getAdjacencies();
for ( Itr itr(adjs.begin()), end(adjs.end()); itr != end; ++itr )
{
Node* pNode2 = *itr;
pNode2->removeAdjacency(pNode);
pNode2->addAdjacency(this);
addAdjacency(pNode2);
}
pNode->clearAdjacencies();
OutputAccumulator::addNode(pNode);
}
void HKPMerger::LocalMerger::schedule()
{
if ( !getNPending() )
{
LocalMerger* me = this;
mHKPM.mWorklist.add(me);
}
}
void HKPMerger::LocalMerger::doMerge()
{
ThreadsafeOStream(std::cout) << Date() << ": Merging " << getName()
<< std::endl;
vec<HyperKmerPath> const& merges = getMerges();
HyperKmerPath* pHKP = new HyperKmerPath(merges[0].K(),merges);
mHKPM.doInternalMerge(*pHKP,mMinOverlap,mMinProperOverlap);
setPath(pHKP);
}
void HKPMerger::LocalMerger::pathAvailable( Node* pNode )
{
Locker locker(getLock());
internalPathAvailable(pNode);
schedule();
}
HKPMerger::FinalMerger::FinalMerger( Checkpointer& chkPtr, size_t maxMerges )
: OutputAccumulator(chkPtr,maxMerges), mCondVar(getLock())
{
}
HKPMerger::FinalMerger::~FinalMerger()
{
}
bool HKPMerger::FinalMerger::wait( long nSecs )
{
Locker locker(getLock());
if ( !isPathAvailable() )
{
if ( getNPending() )
{
locker.timedWait(mCondVar,nSecs);
}
else
{
vec<HyperKmerPath> const& merges = getMerges();
setPath(new HyperKmerPath(merges[0].K(),merges));
}
}
return isPathAvailable();
}
void HKPMerger::FinalMerger::pathAvailable( Node* pNode )
{
Locker locker(getLock());
internalPathAvailable(pNode);
if ( !getNPending() )
mCondVar.signal();
}
|
ef773b3aca03ef7fc00d5479d3e0f3b8cec9a819 | dea577b36d0ac4ebbd3b7b0ed36c2738cf4b3462 | /main.cxx | a45c76a3973c6817d5c35558c7588d5cbab1f1cd | [
"BSD-2-Clause"
] | permissive | alzwded/school-rsff | cc645fe388ea67cd925f02c11ce2599d397cea17 | 6383a0b3c51bd48e178b3ce089202576173e10b8 | refs/heads/master | 2021-01-23T03:08:22.252058 | 2014-05-20T10:40:05 | 2014-05-20T10:40:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,116 | cxx | main.cxx | #include <cstdio>
#include <fstream>
#include <algorithm>
#include <ctime>
#include "core.hxx"
#include "pathfinder.hxx"
#include "drawing.hxx"
#include "parser.hxx"
static bool dragging = false;
static bool panningUp = false;
static bool panning = false;
static int lastX = 0, lastY = 0;
static Beam::vector beams;
static Sensor::vector sensors;
static Button::vector buttons;
static AnimationData ad;
static Path path;
static int animFrame = 0;
static bool animating = false;
static bool showRange = false;
static Sensor::vector::iterator iSensor = sensors.end();
static bool clickEnabled = false;
struct BeamDrawer {
Drawing& dwg;
BeamDrawer(Drawing& drawing)
: dwg(drawing)
{}
void operator()(Beam const& o) const
{
dwg.MoveTo(o.firstPoint);
dwg.LineTo(o.secondPoint);
}
};
struct SensorDrawer
{
Drawing& dwg;
AnimationData const& ad;
SensorDrawer(Drawing& drawing, AnimationData const& animationData)
: dwg(drawing)
, ad(animationData)
{}
void operator()(Sensor const& o) const
{
if(o.selected
|| ad.Sensors().find(&o) != ad.Sensors().end()
|| iSensor != sensors.end() && &o == &(*iSensor)
) {
dwg.SetColor(Drawing::LIME);
} else {
switch(o.type) {
case Sensor::CENTRAL:
dwg.SetColor(Drawing::SALMON);
break;
case Sensor::ROUTER:
dwg.SetColor(Drawing::CYAN);
break;
case Sensor::SENSOR:
dwg.SetColor(Drawing::YELLOW);
break;
}
}
dwg.MoveTo(o.location);
dwg.Cube(0.1f);
if(showRange
&& o.type != Sensor::CENTRAL
&& ad.EmittingSensors().find(&o) != ad.EmittingSensors().end()) {
dwg.Sphere(o.range);
}
}
};
struct ButtonDrawer
{
Drawing& dwg;
ButtonDrawer(Drawing& drawing)
: dwg(drawing)
{}
void operator()(Button const& o)
{
if(o.highlighted) {
dwg.SetColor(Drawing::LIME);
} else {
dwg.SetColor(Drawing::WHITE);
}
Point2D p2(o.extent.x, o.location.y);
Point2D p4(o.location.x, o.extent.y);
dwg.MoveTo(o.location);
dwg.LineTo(p2);
dwg.LineTo(o.extent);
dwg.LineTo(p4);
dwg.LineTo(o.location);
Point2D textLocation(o.location.x + 3, o.extent.y - 3);
dwg.MoveTo(textLocation);
dwg.SetTextScale(5);
dwg.Text(o.text);
}
};
static void drawScene(Drawing& dwg)
{
dwg.SetColor(Drawing::WHITE);
std::for_each(beams.begin(), beams.end(), BeamDrawer(dwg));
std::for_each(sensors.begin(), sensors.end(), SensorDrawer(dwg, ad));
dwg.SetColor(Drawing::LIME);
std::for_each(ad.Beams().begin(), ad.Beams().end(), BeamDrawer(dwg));
ad.Clear();
// Overlay
dwg.SetColor(Drawing::WHITE);
dwg.MoveTo(Point2D(10, 950));
dwg.SetTextScale(5);
dwg.Text("Selecteaza nodul de start:");
std::for_each(buttons.begin(), buttons.end(), ButtonDrawer(dwg));
}
static void onmousedown(int x, int y, int btn)
{
for(Button::vector::iterator i = buttons.begin();
i != buttons.end(); ++i)
{
Button& btn = *i;
if(!dragging && !panning && !panningUp
&& btn.location.x < x && btn.location.y < y
&& btn.extent.x > x && btn.extent.y > y)
{
clickEnabled = true;
return;
}
}
lastX = x;
lastY = y;
if(btn == 1) {
dragging = true;
}
if(btn == 2) {
panningUp = true;
}
if(btn == 3) {
panning = true;
}
}
static void onmouseup(int x, int y, int btn)
{
for(Button::vector::iterator i = buttons.begin();
clickEnabled && i != buttons.end();
++i)
{
Button& btn = *i;
if(!dragging && !panning && !panningUp
&& btn.location.x < x && btn.location.y < y
&& btn.extent.x > x && btn.extent.y > y)
{
if(btn.clicked) btn.clicked();
}
}
if(clickEnabled) {
clickEnabled = false;
return;
}
if(btn == 1) {
dragging = false;
}
if(btn == 2) {
panningUp = false;
}
if(btn == 3) {
panning = false;
}
}
static void onmousemove(int x, int y)
{
int dx = x - lastX;
int dy = y - lastY;
lastX = x;
lastY = y;
if(dragging) {
Drawing::SetRotationalVelocity(
(float)dx / 100.f * 180.f,
(float)-dy / 100.f * 180.f);
}
float vx = 0.f, vy = 0.f, vz = 0.f;
if(panning) {
vx = (float)-dx / 100.f * 8.f;
vz = (float)dy / 100.f * 8.f;
}
if(panningUp) {
vy = (float)-dy / 100.f * 8.f;
vx = (float)-dx / 100.f * 8.f;
}
Drawing::SetVelocity(vx, vy, vz);
for(Button::vector::iterator i = buttons.begin();
i != buttons.end(); ++i)
{
Button& btn = *i;
if(!dragging && !panning && !panningUp
&& btn.location.x < x && btn.location.y < y
&& btn.extent.x > x && btn.extent.y > y)
{
btn.highlighted = true;
} else {
btn.highlighted = false;
}
}
}
static void PrecClicked()
{
if(iSensor == sensors.begin()) {
iSensor = sensors.end();
} else {
--iSensor;
}
if(iSensor == sensors.end()) {
printf("no sensor selected\n");
} else {
std::cout << "current sensor: " << iSensor - sensors.begin() + 1 << std::endl;
}
path.clear();
if(animating) printf("stopping animation\n");
animating = false;
}
static void UrmClicked()
{
if(iSensor == sensors.end()) {
iSensor = sensors.begin();
} else {
++iSensor;
}
if(iSensor == sensors.end()) {
printf("no sensor selected\n");
} else {
std::cout << "current sensor: " << iSensor - sensors.begin() + 1 << std::endl;
}
path.clear();
if(animating) printf("stopping animation\n");
animating = false;
}
static void sensordeselect(Sensor& s)
{
s.selected = false;
}
static void AnimClicked()
{
animating = !animating;
if(path.size() == 0 && iSensor == sensors.end()) {
printf("no sensor selected. Doing nothing\n");
return;
}
if(animating) printf("starting animation\n");
else printf("pausing animation\n");
if(path.size() == 0) {
printf("computing path...\n");
clock_t ticks = clock();
Pathfinder::SetStartingSensor(*iSensor);
path = Pathfinder::ComputePath(sensors);
ticks = clock() - ticks;
std::cout << "path computed (" << ((float)ticks / CLOCKS_PER_SEC) << " seconds), number of frames: " << path.size() << std::endl;
animFrame = 0;
}
if(animating && iSensor != sensors.end()) {
std::for_each(sensors.begin(), sensors.end(), sensordeselect);
iSensor = sensors.end();
}
}
static void updateScene()
{
#define ACTUAL_FRAMES_PER_ANIMATION_FRAME 30
static size_t frameCounter = 0;
if(path.size() == 0) {
frameCounter = 0;
return;
}
if(animating && ++frameCounter % ACTUAL_FRAMES_PER_ANIMATION_FRAME == 0) {
frameCounter = 0;
animFrame = (animFrame + 1) % path.size();
}
for(Path::Edges_t::iterator i = path[animFrame].begin();
i != path[animFrame].end(); ++i)
{
ad << *i;
}
}
static void RangeClicked()
{
showRange = !showRange;
if(showRange) printf("showing sensor range as a sphere\n");
else printf("showing only connections\n");
}
static void addButtons()
{
buttons.push_back(Button(
Point2D(10, 970),
Point2D(60, 990),
"Prec",
PrecClicked));
buttons.push_back(Button(
Point2D(110, 970),
Point2D(160, 990),
"Urm",
UrmClicked));
buttons.push_back(Button(
Point2D(700, 970),
Point2D(980, 990),
"Porneste/Opreste animatia",
AnimClicked));
buttons.push_back(Button(
Point2D(700, 945),
Point2D(980, 965),
"Show range",
RangeClicked));
}
int main(int argc, char* argv[])
{
std::fstream f;
if(argc != 2) {
printf("usage: %s inputFile\n", argv[0]);
return 1;
} else {
f.open(argv[1], std::ios::in);
if(!f.good()) {
printf("usage: %s inputFile\n", argv[0]);
printf("Failed to open %s\n", argv[1]);
return 2;
}
}
addButtons();
Drawing::Init(&argc, argv);
Drawing::SetOnMouseDown(onmousedown);
Drawing::SetOnMouseUp(onmouseup);
Drawing::SetOnMouseMove(onmousemove);
Parser::Parse(f, beams, sensors);
iSensor = sensors.end();
Drawing::Loop(updateScene, drawScene);
return 0;
}
|
8bd11b164af8ce29ae4bd2a01c6fd7b457438855 | e6b29fee3a6c328b17eb4366a59915fe5f0f1c04 | /player.h | cca98a362d6da512c8ba5a843879dd2bbd2c6810 | [] | no_license | iblobtouch/cppPlatformer | a9aad214c2742e36422ed984c9c0476f9c65efb5 | ef50303e8d106ea1d4ef9f1bb3d7ffe8a1510ca5 | refs/heads/master | 2020-07-16T20:17:32.075836 | 2019-10-03T12:46:50 | 2019-10-03T12:46:50 | 205,860,657 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 442 | h | player.h | #pragma once
#include "Entity.h"
#include "Point.h"
#include <SDL.h>
#include <SDL_image.h>
#include <stdio.h>
#include <string>
#include "Weapon.h"
class player: public Entity {
public:
player(std::vector<ReadableTexture*>* playerImages, SDL_Point playerImgSize, int scale, Weapon* weapon);
bool onGround = false;
void update();
Weapon* getCurWeapon();
SDL_RendererFlip flip = SDL_FLIP_NONE;
protected:
Weapon* curWeapon;
};
|
c26d50ad0fe0216af6757a9ae914208089345291 | e7cc6c89881b4569cb6ec974bfc2661f11e69c96 | /tests/MarkedMapTests.cpp | e841f2c18a3e650eedb6679e8e88d3a09434aecf | [] | no_license | Teaching-projects/SZE-MOSZE-2020-Pottyok | c8928c11d5e3662653ab5cde389ca8a67b6e3486 | be4fe73c5a7c4566eb5c4e212f4973a56ce0cec0 | refs/heads/master | 2023-01-28T00:01:50.607095 | 2020-12-10T11:13:23 | 2020-12-10T11:13:23 | 294,088,560 | 0 | 1 | null | 2020-12-10T11:13:24 | 2020-09-09T11:11:16 | C++ | UTF-8 | C++ | false | false | 1,057 | cpp | MarkedMapTests.cpp | #include "MarkedMap.h"
#include <gtest/gtest.h>
TEST(Maptest, FileReadTest)
{
std::string fileName = "none.txt";
ASSERT_THROW(MarkedMap map(fileName), std::runtime_error);
fileName = "markedmap_test.txt";
ASSERT_NO_THROW(MarkedMap map(fileName));
}
TEST(Maptest, GetHeroPosition)
{
std::string fileName = "markedmap_test.txt";
MarkedMap map(fileName);
Position heroPosition = map.getHeroPosition();
ASSERT_EQ(heroPosition.x, 1);
ASSERT_EQ(heroPosition.y, 3);
}
TEST(Maptest, GetMonstersPosition)
{
std::string fileName = "markedmap_test.txt";
MarkedMap map(fileName);
std::list<Position> monsterPositions = map.getMonsterPositions('1');
ASSERT_EQ(monsterPositions.front().x, 2);
ASSERT_EQ(monsterPositions.front().y, 3);
}
TEST(Maptest, GetMaxMonsterNumber)
{
std::string fileName = "markedmap_test.txt";
MarkedMap map(fileName);
ASSERT_EQ( map.getMaxMonsterNumber(), 1);
}
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
} |
406a68387e64d08053fca1a54bd3a7a8b09a2109 | d6b4bdf418ae6ab89b721a79f198de812311c783 | /mps/include/tencentcloud/mps/v20190612/model/ParseLiveStreamProcessNotificationResponse.h | 4ba0e4c14c894073f31ed7626c3cff584e095de8 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp-intl-en | d0781d461e84eb81775c2145bacae13084561c15 | d403a6b1cf3456322bbdfb462b63e77b1e71f3dc | refs/heads/master | 2023-08-21T12:29:54.125071 | 2023-08-21T01:12:39 | 2023-08-21T01:12:39 | 277,769,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,892 | h | ParseLiveStreamProcessNotificationResponse.h | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef TENCENTCLOUD_MPS_V20190612_MODEL_PARSELIVESTREAMPROCESSNOTIFICATIONRESPONSE_H_
#define TENCENTCLOUD_MPS_V20190612_MODEL_PARSELIVESTREAMPROCESSNOTIFICATIONRESPONSE_H_
#include <string>
#include <vector>
#include <map>
#include <tencentcloud/core/AbstractModel.h>
#include <tencentcloud/mps/v20190612/model/LiveStreamProcessErrorInfo.h>
#include <tencentcloud/mps/v20190612/model/LiveStreamAiReviewResultInfo.h>
#include <tencentcloud/mps/v20190612/model/LiveStreamAiRecognitionResultInfo.h>
namespace TencentCloud
{
namespace Mps
{
namespace V20190612
{
namespace Model
{
/**
* ParseLiveStreamProcessNotification response structure.
*/
class ParseLiveStreamProcessNotificationResponse : public AbstractModel
{
public:
ParseLiveStreamProcessNotificationResponse();
~ParseLiveStreamProcessNotificationResponse() = default;
CoreInternalOutcome Deserialize(const std::string &payload);
std::string ToJsonString() const;
/**
* 获取Result type of live stream processing. Valid values:
<li>AiReviewResult: Content audit result;</li>
<li>ProcessEof: Live stream processing has been completed.</li>
* @return NotificationType Result type of live stream processing. Valid values:
<li>AiReviewResult: Content audit result;</li>
<li>ProcessEof: Live stream processing has been completed.</li>
*
*/
std::string GetNotificationType() const;
/**
* 判断参数 NotificationType 是否已赋值
* @return NotificationType 是否已赋值
*
*/
bool NotificationTypeHasBeenSet() const;
/**
* 获取Video processing task ID.
* @return TaskId Video processing task ID.
*
*/
std::string GetTaskId() const;
/**
* 判断参数 TaskId 是否已赋值
* @return TaskId 是否已赋值
*
*/
bool TaskIdHasBeenSet() const;
/**
* 获取Information of a live stream processing error, which is valid when `NotificationType` is `ProcessEof`.
Note: This field may return null, indicating that no valid values can be obtained.
* @return ProcessEofInfo Information of a live stream processing error, which is valid when `NotificationType` is `ProcessEof`.
Note: This field may return null, indicating that no valid values can be obtained.
*
*/
LiveStreamProcessErrorInfo GetProcessEofInfo() const;
/**
* 判断参数 ProcessEofInfo 是否已赋值
* @return ProcessEofInfo 是否已赋值
*
*/
bool ProcessEofInfoHasBeenSet() const;
/**
* 获取Content audit result, which is valid when `NotificationType` is `AiReviewResult`.
Note: This field may return null, indicating that no valid values can be obtained.
* @return AiReviewResultInfo Content audit result, which is valid when `NotificationType` is `AiReviewResult`.
Note: This field may return null, indicating that no valid values can be obtained.
*
*/
LiveStreamAiReviewResultInfo GetAiReviewResultInfo() const;
/**
* 判断参数 AiReviewResultInfo 是否已赋值
* @return AiReviewResultInfo 是否已赋值
*
*/
bool AiReviewResultInfoHasBeenSet() const;
/**
* 获取Content recognition result, which is valid if `NotificationType` is `AiRecognitionResult`.
* @return AiRecognitionResultInfo Content recognition result, which is valid if `NotificationType` is `AiRecognitionResult`.
*
*/
LiveStreamAiRecognitionResultInfo GetAiRecognitionResultInfo() const;
/**
* 判断参数 AiRecognitionResultInfo 是否已赋值
* @return AiRecognitionResultInfo 是否已赋值
*
*/
bool AiRecognitionResultInfoHasBeenSet() const;
/**
* 获取The ID used for deduplication. If there was a request with the same ID in the last seven days, the current request will return an error. The ID can contain up to 50 characters. If this parameter is left empty or an empty string is entered, no deduplication will be performed.
* @return SessionId The ID used for deduplication. If there was a request with the same ID in the last seven days, the current request will return an error. The ID can contain up to 50 characters. If this parameter is left empty or an empty string is entered, no deduplication will be performed.
*
*/
std::string GetSessionId() const;
/**
* 判断参数 SessionId 是否已赋值
* @return SessionId 是否已赋值
*
*/
bool SessionIdHasBeenSet() const;
/**
* 获取The source context which is used to pass through the user request information. The task flow status change callback will return the value of this field. It can contain up to 1,000 characters.
* @return SessionContext The source context which is used to pass through the user request information. The task flow status change callback will return the value of this field. It can contain up to 1,000 characters.
*
*/
std::string GetSessionContext() const;
/**
* 判断参数 SessionContext 是否已赋值
* @return SessionContext 是否已赋值
*
*/
bool SessionContextHasBeenSet() const;
private:
/**
* Result type of live stream processing. Valid values:
<li>AiReviewResult: Content audit result;</li>
<li>ProcessEof: Live stream processing has been completed.</li>
*/
std::string m_notificationType;
bool m_notificationTypeHasBeenSet;
/**
* Video processing task ID.
*/
std::string m_taskId;
bool m_taskIdHasBeenSet;
/**
* Information of a live stream processing error, which is valid when `NotificationType` is `ProcessEof`.
Note: This field may return null, indicating that no valid values can be obtained.
*/
LiveStreamProcessErrorInfo m_processEofInfo;
bool m_processEofInfoHasBeenSet;
/**
* Content audit result, which is valid when `NotificationType` is `AiReviewResult`.
Note: This field may return null, indicating that no valid values can be obtained.
*/
LiveStreamAiReviewResultInfo m_aiReviewResultInfo;
bool m_aiReviewResultInfoHasBeenSet;
/**
* Content recognition result, which is valid if `NotificationType` is `AiRecognitionResult`.
*/
LiveStreamAiRecognitionResultInfo m_aiRecognitionResultInfo;
bool m_aiRecognitionResultInfoHasBeenSet;
/**
* The ID used for deduplication. If there was a request with the same ID in the last seven days, the current request will return an error. The ID can contain up to 50 characters. If this parameter is left empty or an empty string is entered, no deduplication will be performed.
*/
std::string m_sessionId;
bool m_sessionIdHasBeenSet;
/**
* The source context which is used to pass through the user request information. The task flow status change callback will return the value of this field. It can contain up to 1,000 characters.
*/
std::string m_sessionContext;
bool m_sessionContextHasBeenSet;
};
}
}
}
}
#endif // !TENCENTCLOUD_MPS_V20190612_MODEL_PARSELIVESTREAMPROCESSNOTIFICATIONRESPONSE_H_
|
590198d0e6344ba363e645d8721f7faccfbe5614 | 624511f6ad0cf17a2ba1a1ea1f25c3b139ce4295 | /baselib/lib/Lsc/ResourcePool/ResourcePool.h | 7c21a40f4399bc9a17e872e1c618d222ee187b93 | [] | no_license | lightchainone/lightchain | 7d90338d4a4e8d31d550c07bf380c06580941334 | 6fc7019c76a8b60d4fd63fba58fa79858856f66b | refs/heads/master | 2021-05-11T05:47:17.672527 | 2019-12-16T09:51:39 | 2019-12-16T09:51:39 | 117,969,593 | 23 | 6 | null | null | null | null | GB18030 | C++ | false | false | 27,117 | h | ResourcePool.h |
#ifndef __BSL_RESOURCEPOOL_H_
#define __BSL_RESOURCEPOOL_H_
#include "Lsc/exception/Lsc_exception.h"
#include "Lsc/pool/Lsc_pool.h"
#include "Lsc/pool/Lsc_poolalloc.h"
#include "Lsc/utils/Lsc_memcpy.h"
#include "Lsc/ResourcePool/Lsc_wrappers.h"
namespace Lsc{
/**
*
* 用户可以通过资源池托管包括内存、句柄在内的各种资源,还可以建造、克隆各种对象、数组。
*
*/
class ResourcePool{
plclic:
typedef Lsc::pool_allocator<char> allocator_type;
/**
*
* 该回调函数以资源指针(如FILE*)/对象地址作为参数,没有返回值
* ng_wrappers.h有针对常见资源的实现,建议尽量使用ng_wrappers.h的实现
*/
typedef void( *object_destructor_t )(void * p_object);
/**
*
* 该回调函数以数组的首址、尾址(=首址+数组大小)作为参数,没有返回值。
*/
typedef void( *array_destructor_t )(void * begin, void * end);
/**
*
**/
ResourcePool()
:_syspool(),
_mempool(_syspool),
_p_attach_object_list(NULL),
_p_attach_array_list(NULL),
_p_alloc_object_list(NULL),
_p_alloc_array_list(NULL){}
/**
*
**/
explicit ResourcePool( mempool& pool )
:_mempool(pool),
_p_attach_object_list(NULL),
_p_attach_array_list(NULL),
_p_alloc_object_list(NULL),
_p_alloc_array_list(NULL){}
/**
*
* 资源池析构时,会调用destroy_all()方法。
*
**/
~ResourcePool(){
reset();
}
allocator_type get_allocator() const {
return allocator_type(&_mempool);
}
/**
*
**/
mempool& get_mempool() const {
return _mempool;
}
/**
*
* 清理函数将会在destroy_all()被调用或资源池析构时被自动调用。
*
* 注:
* 可以的话,尽量使用create_xxx()方法或clone_xxx()方法,以降低出错的可能性
* 如果已经把资源attach到资源池,无论如何也不要试图自行释放资源!
* 若destructor == NULL 本函数简单地忽略该请求(既然没事情要干,也没必要做记录了)
* 若data == NULL 本函数不做特别处理(NULL会被传递给destructor)
* 如果在创建过程中发生了异常(内存不足,非常罕有但仍有可能),资源会立刻被清理
*
**/
void attach( void * p_object, object_destructor_t destructor ){
if ( NULL != destructor ){
try{
attach_object_info_t& info = _push_info(_p_attach_object_list); //throw
info.p_object = p_object;
info.destructor = destructor;
}catch(...){
destructor( p_object );
throw;
}
}
}
/**
*
*
* 清理函数将会在destroy_all()被调用或资源池析构时被自动调用。
*
* 注:
* 可以的话,尽量使用create_xxx()方法或clone_xxx()方法,以降低出错的可能性
* 如果已经把资源attach到资源池,无论如何也不要试图自行释放资源!
* 若destructor == NULL 本函数简单地忽略该请求(既然没事情要干,也没必要做记录了)
* 若begin == end 本函数不做特别处理(NULL会被传递给destructor)
* 如果在创建过程中发生了异常(内存不足,非常罕有但仍有可能),资源会立刻被清理
*
**/
void attach_array( void *begin, void *end, array_destructor_t destructor ){
if ( NULL != destructor ){
try{
attach_array_info_t& info = _push_info(_p_attach_array_list); //throw
info.begin = begin;
info.end = end;
info.destructor = destructor;
}catch(...){
destructor( begin, end );
throw;
}
}
}
/**
*
**/
template<typename T>
T& create(){
return _create_object<T>( DefaultCtor<T>() );
}
template<typename T>
T* createp(){
try{
return &_create_object<T>( DefaultCtor<T>() );
}catch(...){
return NULL;
}
}
/**
*
**/
template<typename T, typename T_arg>
T& create(const T_arg& arg_){
return _create_object<T>( OneConstArgCtor<T, T_arg>(arg_) );
}
/**
*
**/
template<typename T, typename T_arg>
T& createn(T_arg& arg_){
return _create_object<T>( OneArgCtor<T, T_arg>(arg_) );
}
/**
*
* NOTE:不抛异常可能更符合C程序员的习惯,但
*
**/
template<typename T, typename T_arg>
T* createp(const T_arg& arg_){
try{
return &_create_object<T>( OneConstArgCtor<T, T_arg>(arg_) );
}catch(...){
return NULL;
}
}
/**
*
**/
template<typename T, typename T_arg1, typename T_arg2>
T& create( const T_arg1& arg1, const T_arg2& arg2 ){
return _create_object<T>( TwoConstArgCtor<T,T_arg1,T_arg2>(arg1,arg2) );
}
template<typename T, typename T_arg1, typename T_arg2>
T* createp( const T_arg1& arg1, const T_arg2& arg2 ){
try{
return &_create_object<T>( TwoConstArgCtor<T,T_arg1,T_arg2>(arg1,arg2) );
}catch(...){
return NULL;
}
}
/**
*
* 目前构造需要执行两遍构造函数(多参构造与复制构造),将来需求大时可以优化一下
*
**/
template<typename T, typename T_arg1, typename T_arg2, typename T_arg3 >
T& create( const T_arg1& arg1, const T_arg2& arg2, const T_arg3 arg3 ){
return _create_object<T>(
ThreeConstArgCtor<T,T_arg1,T_arg2,T_arg3>(arg1, arg2, arg3)
);
}
template<typename T, typename T_arg1, typename T_arg2, typename T_arg3 >
T* createp( const T_arg1& arg1, const T_arg2& arg2, const T_arg3 arg3 ){
try{
return &_create_object<T>(
ThreeConstArgCtor<T,T_arg1,T_arg2,T_arg3>(arg1, arg2, arg3)
);
}catch(...){
return NULL;
}
}
/**
*
* 目前构造需要执行两遍构造函数(多参构造与复制构造),将来需求大时可以优化一下
*
**/
template<typename T, typename T_arg1, typename T_arg2, typename T_arg3, typename T_arg4 >
T& create(
const T_arg1& arg1,
const T_arg2& arg2,
const T_arg3 arg3,
const T_arg4 arg4
){
return _create_object<T>(
FourConstArgCtor<T, T_arg1, T_arg2, T_arg3, T_arg4>(
arg1,
arg2,
arg3,
arg4
) );
}
template<typename T, typename T_arg1, typename T_arg2, typename T_arg3, typename T_arg4 >
T* createp(
const T_arg1& arg1,
const T_arg2& arg2,
const T_arg3 arg3,
const T_arg4 arg4
){
try{
return &_create_object<T>(
FourConstArgCtor<T, T_arg1, T_arg2, T_arg3, T_arg4>(
arg1,
arg2,
arg3,
arg4
) );
}catch(...){
return NULL;
}
}
/**
*
**/
template<typename T>
T* create_array( size_t n ){
T *begin = NULL;
//抛异常表示info都分配不了,没什么可回滚的。
alloc_array_info_t& info = _push_info(_p_alloc_array_list); //throw
try{
begin = static_cast<T*>(_mempool.malloc( n * sizeof(T) )); //throw
if ( !begin ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<n * sizeof(T)<<"]";
}
try{
construct_array<T>(begin, begin + n); //throw (by user code)
info.begin = begin;
info.end = begin + n;
info.destructor = _s_destroy_and_deallocate_array<T>;
return begin;
}catch(...){
//回滚为对象数组分配的内存
_mempool.free( begin, n * sizeof(T) );
throw;
}
}catch(...){
//回滚info的分配
_pop_info(_p_alloc_array_list);
throw;
}
}
/**
*
**/
template<typename T, typename T_arg>
T* create_array( size_t n, const T_arg& __arg ){
T *begin = NULL;
//抛异常表示info都分配不了,没什么可回滚的。
alloc_array_info_t& info = _push_info(_p_alloc_array_list); //throw
try{
begin = static_cast<T*>(_mempool.malloc( n * sizeof(T) )); //throw
if ( !begin ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<n * sizeof(T)<<"]";
}
try{
construct_array<T, T_arg>(begin, begin + n, &__arg); //throw (by user code)
info.begin = begin;
info.end = begin + n;
info.destructor = _s_destroy_and_deallocate_array<T>;
return begin;
}catch(...){
//回滚为对象数组分配的内存
_mempool.free( begin, n * sizeof(T) );
throw;
}
}catch(...){
//回滚info的分配
_pop_info(_p_alloc_array_list);
throw;
}
}
/**
*
**/
void * create_raw( size_t bytes ){
alloc_array_info_t& info = _push_info(_p_alloc_array_list); //throw
try{
char * res = static_cast<char*>(_mempool.malloc( bytes )); //throw
if ( !res ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<bytes<<"]";
}
info.begin = res;
info.end = res+bytes;
info.destructor = _s_deallocate;
return res;
}catch(...){
//若内存分配失败,回滚info的分配
_pop_info(_p_alloc_array_list);
throw;
}
}
/**
*
**/
template<typename T>
T& clone(const T& src){
return create<T,T>(src);
}
/**
*
* 注:如果谁敢复制一个void数组还问我为什么编译不过的话,我一定会打他的PP
*
**/
template<typename T>
T* clone_array(const T* src, size_t n){
T *begin = NULL;
//抛异常表示info都分配不了,没什么可回滚的。
alloc_array_info_t& info = _push_info(_p_alloc_array_list); //throw
try{
begin = static_cast<T*>(_mempool.malloc(n*sizeof(T))); //throw
if ( !begin ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<n * sizeof(T)<<"]";
}
try{
std::uninitialized_copy( src, src + n, begin ); //throw (by user code )
info.begin = begin;
info.end = begin + n;
info.destructor = _s_destroy_and_deallocate_array<T>;
return begin;
}catch(...){
//回滚为对象数组分配的内存
_mempool.free(begin, n*sizeof(T));
throw;
}
}catch(...){
//回滚info的分配
_pop_info(_p_alloc_array_list);
throw;
}
}
/**
*
**/
void * clone_raw( const void * src, size_t bytes ){
void * res = create_raw( bytes );
return xmemcpy( res, src, bytes );
}
/**
*
**/
char * clone_cstring(const char * src_str ){
size_t size = strlen(src_str) + 1;
void * res = clone_raw( src_str, size ); //throw
return static_cast<char *>(res);
}
/**
*
* 注意:若slc_str_len > strlen(src_str),本方法行为未定义。
*
**/
char * clone_cstring(const char * src_str, size_t slc_str_len ){
char * res = static_cast<char*>(clone_raw( src_str, slc_str_len + 1 )); //throw
res[slc_str_len] = 0;
return res;
}
/**
*
* 在目前的实现里,crcprintf(...)相当于crcprintf_hint( 63, ... )
*
**/
const char * crcprintf( const char * format, ... )__attribute__ ((format (printf, 2, 3) ));
/**
*
**/
const char * crcprintf_hint(
size_t hint_capacity,
const char * format,
...
)__attribute__ ((format (printf, 3, 4) ));
/**
*
**/
const char * vcrcprintf( const char * format, va_list ap );
/**
*
**/
const char * vcrcprintf_hint( size_t hint_capacity, const char * format, va_list ap );
/**
*
**/
void reset();
private:
static const size_t _S_ITEMS_PER_NODE = 64;
/**
*
*/
typedef void( *alloc_object_destructor_t )(void * p_object, mempool& pool );
/**
*
* 该回调函数以数组的首址、尾址(=首址+数组大小)作为参数,没有返回值。
*/
typedef void( *alloc_array_destructor_t )(void * begin, void * end, mempool& pool );
/**
*
*
*/
struct attach_object_info_t{
void *p_object;
object_destructor_t destructor;
};
/**
*
*
*/
struct attach_array_info_t{
void *begin;
void *end;
array_destructor_t destructor;
};
/**
*
*
*/
struct alloc_object_info_t{
void *p_object;
alloc_object_destructor_t destructor;
};
/**
*
*
*/
struct alloc_array_info_t{
void *begin;
void *end;
alloc_array_destructor_t destructor;
};
template<typename info_t>
struct block_list_node_t{
block_list_node_t<info_t> *p_next;
size_t current;
info_t data[_S_ITEMS_PER_NODE];
};
/**
*
*/
//构造函数仿函数,相当于lambda表达式
template<typename T>
class DefaultCtor{
plclic:
void operator ()( T* ptr ) const {
new(ptr) T();
}
};
/**
*
*/
template<typename T, typename ArgT>
class OneArgCtor{
plclic:
OneArgCtor( ArgT& arg )
:_arg(arg){}
void operator ()( T* ptr ) const {
new(ptr) T(_arg);
}
private:
ArgT& _arg;
};
/**
*
*/
template<typename T, typename ArgT>
class OneConstArgCtor{
plclic:
OneConstArgCtor( const ArgT& arg )
:_arg(arg) {}
void operator ()( T* ptr ) const {
new(ptr) T(_arg);
}
private:
const ArgT& _arg;
};
/**
*
*/
template<typename T, typename Arg1T, typename Arg2T>
class TwoConstArgCtor{
plclic:
TwoConstArgCtor( const Arg1T& arg1, const Arg2T& arg2 )
:_arg1(arg1), _arg2(arg2) {}
void operator ()( T* ptr ) const {
new(ptr) T(_arg1, _arg2);
}
private:
const Arg1T& _arg1;
const Arg2T& _arg2;
};
/**
*
*/
template<typename T, typename Arg1T, typename Arg2T, typename Arg3T>
class ThreeConstArgCtor{
plclic:
ThreeConstArgCtor( const Arg1T& arg1, const Arg2T& arg2, const Arg3T& arg3 )
:_arg1(arg1), _arg2(arg2), _arg3(arg3) {}
void operator ()( T* ptr ) const {
new(ptr) T(_arg1, _arg2, _arg3);
}
private:
const Arg1T& _arg1;
const Arg2T& _arg2;
const Arg3T& _arg3;
};
/**
*
*/
template<typename T, typename Arg1T, typename Arg2T, typename Arg3T, typename Arg4T>
class FourConstArgCtor{
plclic:
FourConstArgCtor(
const Arg1T& arg1,
const Arg2T& arg2,
const Arg3T& arg3,
const Arg4T& arg4
)
:_arg1(arg1), _arg2(arg2), _arg3(arg3), _arg4(arg4) {}
void operator ()( T* ptr ) const {
new(ptr) T(_arg1, _arg2, _arg3, _arg4);
}
private:
const Arg1T& _arg1;
const Arg2T& _arg2;
const Arg3T& _arg3;
const Arg4T& _arg4;
};
plclic:
template<typename T, typename CtorT>
T& _create_object( const CtorT& ctor ){
T *p_object = NULL;
//抛异常表示info都分配不了,没什么可回滚的。
alloc_object_info_t& info = _push_info(_p_alloc_object_list); //throw
//抛异常表示对象空间分配不了,回滚info的分配。
try{
p_object = static_cast<T*>(_mempool.malloc(sizeof(T)));
if ( !p_object ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<sizeof(T)<<"]";
}
try{
ctor(p_object); //throw (by user code)
info.p_object = p_object;
info.destructor = _s_destroy_and_deallocate<T>;
return *p_object;
}catch(...){
//回滚对象空间的分配
_mempool.free( p_object, sizeof(T) );
throw;
}
}catch(...){
//回滚对象空间的分配
_pop_info(_p_alloc_object_list);
throw;
}
}
private:
template<typename T, typename ArrayCtorT>
T* _create_array( size_t n, const ArrayCtorT& ctor ){
T *begin = NULL;
//抛异常表示info都分配不了,没什么可回滚的。
alloc_array_info_t& info = _push_info(_p_alloc_array_list); //throw
try{
begin = static_cast<T*>(_mempool.malloc( n * sizeof(T) )); //throw
if ( !begin ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<n * sizeof(T)<<"]";
}
try{
//construct_array<T>(begin, begin + n);
ctor(begin, begin+n); //throw (by user code)
info.begin = begin;
info.end = begin + n;
info.destructor = _s_destroy_and_deallocate_array<T>;
return begin;
}catch(...){
//回滚为对象数组分配的内存
_mempool.free( begin, n * sizeof(T) );
throw;
}
}catch(...){
//回滚info的分配
_pop_info(_p_alloc_array_list);
throw;
}
}
/**
*
* 插入成功后,返回可以写入的新项。
* 如果块链中的一个块被写满,该函数会申请一个新块。调用之后_p_list_head会指向新块。
* 若发生内存不足,会抛出mempool指定的异常。
* 该函数要求info_t不需要构造(C风格struct)
*
**/
template<typename info_t>
info_t& _push_info( block_list_node_t<info_t> *& p_list_head ){
if ( NULL!=p_list_head && p_list_head->current < _S_ITEMS_PER_NODE - 1 ){
++ p_list_head->current; //如果块链未满,只增加计数器
return p_list_head->data[p_list_head->current];
}else{
typedef block_list_node_t<info_t> node_t;
node_t* p_tmp = static_cast<node_t *>(_mempool.malloc(sizeof(node_t))); //throw
if ( !p_tmp ){
throw Lsc::BadAllocException()
<<BSL_EARG<<"_mempool["<<&_mempool<<"] size["<<sizeof(node_t)<<"]";
}
p_tmp->p_next = p_list_head;
p_tmp->current= 0;
p_list_head = p_tmp;
return p_list_head->data[0];
}
}
/**
*
**/
template<typename info_t>
void _pop_info( block_list_node_t<info_t> *& p_list_head ){
if ( p_list_head->current > 0 ){
-- p_list_head->current; //如果块链不为空,只减少计数器
}else{
block_list_node_t<info_t>* p_tmp = p_list_head;
p_list_head = p_list_head->p_next;
_mempool.free(p_tmp, sizeof(block_list_node_t<info_t>));
}
}
/**
* 函数执行后,p_list_head会被置为NULL。
* 该函数具有无抛掷保证。
*
**/
template<typename info_t>
void _clear_info_list(block_list_node_t<info_t> *& p_list_head ){
while( NULL != p_list_head ){
block_list_node_t<info_t> *p_tmp = p_list_head;
p_list_head = p_list_head->p_next;
_mempool.free(p_tmp, sizeof(block_list_node_t<info_t>));
}
}
/**
*
* 用户不应以任何方式创建资源池对象的副本。
*
**/
ResourcePool( const ResourcePool& other);
/**
*
* 用户不应该以任何方式对ResourcePool赋值
*
**/
ResourcePool& operator = ( const ResourcePool& );
/**
*
**/
const char * _vprintf(
alloc_array_info_t& info,
size_t hint_capacity,
const char *format,
va_list ap
);
/**
**/
static void _s_deallocate( void * begin, void * end, mempool& pool ){
pool.free( begin, static_cast<char *>(end) - static_cast<char *>(begin) );
}
/**
*
**/
template<typename T>
static void _s_destroy_and_deallocate( void * p_object, mempool& pool ){
static_cast<T*>(p_object)->~T();
pool.free(p_object, sizeof(T));
}
/**
*
**/
template<typename T>
static void _s_destroy_and_deallocate_array( void * begin, void * end, mempool& pool ){
__BSL_DESTROY(static_cast<T*>(begin), static_cast<T*>(end)); // this method will be specially optimized to the type which has trivial destructor;
pool.free(begin, static_cast<char*>(end) - static_cast<char*>(begin) );
}
/**
*
* 默认构造的ResourcePool 使用该Pool
*/
syspool _syspool;
/**
*
*/
mempool& _mempool;
/**
*
*
*/
block_list_node_t<attach_object_info_t> *_p_attach_object_list;
/**
*
*
*/
block_list_node_t<attach_array_info_t> *_p_attach_array_list;
/**
*
*
*/
block_list_node_t<alloc_object_info_t> *_p_alloc_object_list;
/**
*
*
*/
block_list_node_t<alloc_array_info_t> *_p_alloc_array_list;
};
} // namespace Lsc
#endif //__RESOURCEPOOL_H_
/* vim: set ts=4 sw=4 sts=4 tw=100 */
|
7e9aecb2b6267183549524d4e31336bc40aa343f | bb410153dcdbfffb812711c878d3f48d40db45c6 | /src/common/lv2/lv2_common.h | 9643ef679b7ca4fab6d950e614b583ce855b6303 | [
"BSD-3-Clause"
] | permissive | krokoschlange/cr42ynth | 3228ed942caf278e4e6780be3590b27504c5a7a1 | bc03846eb1438c3fc4ac7bcae4e731b9c8df65b1 | refs/heads/master | 2021-11-28T21:51:43.998487 | 2020-12-03T18:32:11 | 2020-12-03T18:32:11 | 184,879,438 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,390 | h | lv2_common.h | /*******************************************************************************
* Copyright (c) 2020 krokoschlange and contributors.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. Neither the name of the copyright holder nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
#ifndef LV2_COMMON_H
#define LV2_COMMON_H
#define CR42Ynth__URI "https://github.com/krokoschlange/cr42ynth"
#define CR42Ynth__DSP CR42Ynth__URI "#dsp"
#define CR42Ynth__UI CR42Ynth__URI "#ui"
#define CR42Ynth__OSCMSG CR42Ynth__URI "#msg_oscmsg"
#define CR42Ynth__MSGDATA CR42Ynth__URI "#msg_data"
#define CR42Ynth__MSGOBJ CR42Ynth__URI "#msg_obj"
#define CR42Ynth__MSGCOMPLETE CR42Ynth__URI "#msg_complete"
#define CR42Ynth__STATEKEY CR42Ynth__URI "#state_key"
#define CR42Ynth__STATETYPE CR42Ynth__URI "#state_type"
namespace cr42y
{
enum MsgAtomCompletionStage
{
HAS_DATA_START,
HAS_DATA_END
};
}
#endif /* LV2_COMMON_H */
|
aff594de293e614a8ac1b4395801ff617a708f81 | a7f82e23431fa029e16663c5ee23f44c788bb929 | /Linked List/alternate-merge.cpp | 9d7111a7a250b70a9921f22a2413440397bedfe5 | [] | no_license | karanshgl/algorithms | 8093a9b91953b69b176d3a9b2575cba69ed00d27 | 8a6540331cc64ba8e6163197f6af70f45502c490 | refs/heads/master | 2020-09-13T18:27:17.469110 | 2017-07-22T01:21:48 | 2017-07-22T01:21:48 | 94,463,648 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 322 | cpp | alternate-merge.cpp | #include<iostream>
#include "mylist.h"
using namespace std;
Node *merge(Node *left, Node*right){
if(left==NULL) return right;
if(right==NULL) return left;
left->next=merge(right,left->next);
return left;
}
int main(){
Node *l1=takeInput();
Node *l2=takeInput();
Node *head=merge(l1,l2);
print(head);
}
|
50d87e1229cb0f3267d86c252196578c3333f5de | 0d57b6c39773fa42f616be734d934c4e83ef2d99 | /SilverEngine/src/core/asset_system.cpp | 08e55dadf00bff29d56885989c6b1117edb2f4ac | [
"Apache-2.0"
] | permissive | JoseLRM/SilverEngine | 6e88be75082252e6378ee85d58b7405046a8edd5 | c23586f4c953161e3b2ba5b473655105b8987774 | refs/heads/master | 2023-07-02T01:51:06.805067 | 2021-08-06T22:12:58 | 2021-08-06T22:12:58 | 269,123,114 | 15 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,456 | cpp | asset_system.cpp | #include "core/asset_system.h"
#include "utils/allocators.h"
#include "utils/string.h"
namespace sv {
// Time to update one asset type, after this time will update the next type
constexpr float UNUSED_CHECK_TIME = 1.f;
struct Asset_internal;
struct AssetType_internal {
char name[ASSET_TYPE_NAME_SIZE + 1u];
AssetCreateFn create_fn;
AssetLoadFileFn load_file_fn;
AssetReloadFileFn reload_file_fn;
AssetFreeFn free_fn;
f32 unused_time;
f64 last_update = 0.0;
u32 extension_count;
char extensions[ASSET_EXTENSION_NAME_SIZE + 1u][ASSET_TYPE_EXTENSION_MAX];
ThickHashTable<Asset_internal*, 100u> name_table;
SizedInstanceAllocator allocator;
AssetType_internal(u32 size) : allocator(size, 30u) {}
};
struct Asset_internal {
std::atomic<i32> ref_count = 0;
f32 unused_time = f32_max;
bool created_from_name = false;
// TODO: Move on
char filepath[FILEPATH_SIZE + 1u] = "";
Date last_write_date;
char name[ASSET_NAME_SIZE + 1u] = "";
AssetType_internal* type = NULL;
};
struct AssetSystemData {
List<AssetType_internal*> asset_types;
ThickHashTable<Asset_internal*, 2000> filepath_table;
ThickHashTable<AssetType_internal*, 100> extension_table;
u32 check_type_index = 0u;
f32 check_time = 0.f;
List<Asset_internal*> free_assets_list;
};
static AssetSystemData* asset_system = NULL;
SV_AUX bool destroy_asset(Asset_internal* asset, AssetType_internal* type)
{
bool res = type->free_fn(asset + 1u, asset->name);
type->allocator.free(asset);
bool log = false;
if (asset->name[0]) {
if (!log) {
SV_LOG_INFO("%s freed: %s", type->name, asset->name);
log = true;
}
asset->type->name_table.erase(asset->name);
}
if (asset->filepath[0]) {
if (!log) {
SV_LOG_INFO("%s freed: %s", type->name, asset->filepath);
log = true;
}
asset_system->filepath_table.erase(asset->filepath);
}
if (!log) {
SV_LOG_INFO("%s freed", type->name);
log = true;
}
return res;
}
void _update_assets()
{
asset_system->check_time += engine.deltatime;
if (asset_system->check_time >= UNUSED_CHECK_TIME) {
AssetType_internal* type = asset_system->asset_types[asset_system->check_type_index];
asset_system->free_assets_list.reset();
f64 now = timer_now();
f32 elapsed_time = f32(now - type->last_update);
for (auto& pool : type->allocator) {
for (void* _ptr : pool) {
Asset_internal* asset = reinterpret_cast<Asset_internal*>(_ptr);
i32 ref_count = asset->ref_count.load();
if (ref_count <= 0) {
if (asset->unused_time == f32_max) {
asset->unused_time = type->unused_time;
}
asset->unused_time -= elapsed_time;
if (asset->unused_time <= 0.f) {
asset_system->free_assets_list.push_back(asset);
}
}
else {
asset->unused_time = f32_max;
#if SV_EDITOR
if (asset->filepath[0] && type->reload_file_fn) {
Date last_write;
if (file_date(asset->filepath, NULL, &last_write, NULL)) {
if (asset->last_write_date != last_write) {
if (type->reload_file_fn(asset + 1u, asset->name, asset->filepath)) {
SV_LOG_INFO("%s asset reloaded: '%s'", type->name, asset->filepath);
}
else {
SV_LOG_ERROR("Can't reload the %s asset: '%s'", type->name, asset->filepath);
}
asset->last_write_date = last_write;
}
}
}
#endif
}
}
}
// Free assets
for (Asset_internal* asset : asset_system->free_assets_list) {
destroy_asset(asset, type);
// TODO: this can fail...
}
type->last_update = now;
asset_system->check_type_index = (asset_system->check_type_index + 1u) % u32(asset_system->asset_types.size());
asset_system->check_time -= UNUSED_CHECK_TIME;
}
}
void _initialize_assets()
{
asset_system = SV_ALLOCATE_STRUCT(AssetSystemData, "AssetSystem");
}
void _close_assets()
{
if (asset_system) {
free_unused_assets();
for (AssetType_internal* type : asset_system->asset_types) {
type->allocator.clear();
SV_FREE_MEMORY(type);
}
asset_system->asset_types.clear();
asset_system->filepath_table.clear();
asset_system->extension_table.clear();
asset_system->free_assets_list.clear();
SV_FREE_STRUCT(asset_system);
asset_system = NULL;
}
}
SV_INLINE static AssetType_internal* get_type_from_filepath(size_t size, const char* filepath)
{
const char* extension = nullptr;
const char* it = filepath + size;
const char* end = filepath - 1u;
while (it != end) {
if (*it == '.') {
++it;
extension = it;
break;
}
--it;
}
if (extension) {
AssetType_internal** type = asset_system->extension_table.find(extension);
if (type == NULL) {
SV_LOG_ERROR("Unknown extension '%s'", extension);
}
return *type;
}
else {
SV_LOG_ERROR("The filepath '%s' has no extension", filepath);
return nullptr;
}
}
SV_AUX AssetType_internal* get_type_from_typename(const char* name)
{
for (AssetType_internal* type : asset_system->asset_types) {
if (string_equals(type->name, name)) {
return type;
}
}
return nullptr;
}
SV_AUX bool is_valid_asset_name(AssetType_internal* type, const char* name)
{
if (string_size(name) > ASSET_NAME_SIZE) {
SV_LOG_ERROR("The asset name '%s' is too large", name);
return false;
}
if (type->name_table.find(name)) {
SV_LOG_ERROR("The asset name '%s' is currently used", name);
return false;
}
return true;
}
bool create_asset(AssetPtr& asset_ptr, const char* asset_type_name, const char* name)
{
AssetType_internal* type = get_type_from_typename(asset_type_name);
if (type == nullptr) {
SV_LOG_ERROR("Asset type '%s' not found", asset_type_name);
return false;
}
if (type->create_fn == nullptr) {
SV_LOG_ERROR("The asset type '%s' can't create assets by default", asset_type_name);
return false;
}
name = string_validate(name);
if (!is_valid_asset_name(type, name)) {
return false;
}
Asset_internal* asset = new(type->allocator.alloc()) Asset_internal();
asset->type = type;
string_copy(asset->name, name, ASSET_NAME_SIZE + 1u);
if (!type->create_fn(asset + 1u, name)) {
type->allocator.free(asset);
return false;
}
if (string_size(name))
type->name_table[name] = asset;
asset_ptr = AssetPtr(asset);
SV_LOG_INFO("%s created", type->name);
return true;
}
bool create_asset_from_name(AssetPtr& asset_ptr, const char* asset_type_name, const char* name)
{
AssetType_internal* type = get_type_from_typename(asset_type_name);
if (type == NULL) {
SV_LOG_ERROR("Asset type '%s' not found", asset_type_name);
return false;
}
Asset_internal** asset_ = type->name_table.find(name);
if (asset_) {
asset_ptr = AssetPtr(*asset_);
return true;
}
else {
if (create_asset(asset_ptr, asset_type_name, name)) {
Asset_internal* asset = reinterpret_cast<Asset_internal*>(asset_ptr.ptr);
asset->created_from_name = true;
return true;
}
return false;
}
}
SV_AUX bool load_asset_right_now(AssetPtr& asset_ptr, const char* filepath)
{
Asset_internal** asset_ = asset_system->filepath_table.find(filepath);
if (asset_ == NULL) {
size_t size = string_size(filepath);
AssetType_internal* type = get_type_from_filepath(size, filepath);
if (type == NULL) return false;
Asset_internal* asset = new(type->allocator.alloc()) Asset_internal();
asset->type = type;
if (!type->load_file_fn(asset + 1u, asset->name, filepath)) {
SV_LOG_ERROR("Can't load the asset '%s'", filepath);
type->allocator.free(asset);
return false;
}
asset_system->filepath_table[filepath] = asset;
string_copy(asset->filepath, filepath, FILEPATH_SIZE + 1u);
asset_ptr = AssetPtr(asset);
file_date(filepath, NULL, &asset->last_write_date, NULL);
SV_LOG_INFO("%s loaded: %s", type->name, filepath);
}
else {
asset_ptr = AssetPtr(*asset_);
}
return true;
}
SV_AUX bool load_asset_keep_it_loading(AssetPtr& asset_ptr, const char* filepath)
{
// TODO
return load_asset_right_now(asset_ptr, filepath);
}
SV_AUX bool load_asset_get_if_exists(AssetPtr& asset_ptr, const char* filepath)
{
Asset_internal** asset_ = asset_system->filepath_table.find(filepath);
if (asset_) {
asset_ptr = AssetPtr(*asset_);
return true;
}
return false;
}
bool load_asset_from_file(AssetPtr& asset_ptr, const char* filepath, AssetLoadingPriority priority)
{
if (filepath == nullptr) return false;
switch (priority) {
case AssetLoadingPriority_RightNow:
return load_asset_right_now(asset_ptr, filepath);
case AssetLoadingPriority_KeepItLoading:
return load_asset_keep_it_loading(asset_ptr, filepath);
case AssetLoadingPriority_GetIfExists:
return load_asset_get_if_exists(asset_ptr, filepath);
}
return false;
}
void unload_asset(AssetPtr& asset_ptr)
{
asset_ptr.~AssetPtr();
}
bool set_asset_name(AssetPtr& asset_ptr, const char* name)
{
if (asset_ptr.ptr) {
Asset_internal* asset = reinterpret_cast<Asset_internal*>(asset_ptr.ptr);
name = string_validate(name);
if (!is_valid_asset_name(asset->type, name)) {
return false;
}
if (asset->name[0]) {
asset->type->name_table.erase(asset->name);
}
asset->type->name_table[name] = asset;
string_copy(asset->name, name, ASSET_NAME_SIZE + 1u);
return true;
}
return false;
}
const char* get_asset_name(const AssetPtr& asset_ptr)
{
if (asset_ptr.ptr) {
const char* name = reinterpret_cast<Asset_internal*>(asset_ptr.ptr)->name;
if (name[0]) return name;
return NULL;
}
return NULL;
}
void* get_asset_content(const AssetPtr& asset_ptr)
{
if (asset_ptr.ptr) return reinterpret_cast<Asset_internal*>(asset_ptr.ptr) + 1u;
return nullptr;
}
const char* get_asset_filepath(const AssetPtr& asset_ptr)
{
if (asset_ptr.ptr) {
const char* filepath = reinterpret_cast<Asset_internal*>(asset_ptr.ptr)->filepath;
if (filepath[0]) return filepath;
return NULL;
}
return NULL;
}
const char* get_asset_type(const AssetPtr& asset_ptr)
{
if (asset_ptr.ptr) {
const char* name = reinterpret_cast<Asset_internal*>(asset_ptr.ptr)->type->name;
if (name[0]) return name;
return NULL;
}
return NULL;
}
bool is_asset_created_from_name(const AssetPtr& asset_ptr)
{
if (asset_ptr.ptr) {
return reinterpret_cast<Asset_internal*>(asset_ptr.ptr)->created_from_name;
}
return false;
}
bool register_asset_type(const AssetTypeDesc* desc)
{
// TODO: Check if the extensions or the name is repeated or if the extension name is too large
AssetType_internal*& type = asset_system->asset_types.emplace_back();
type = (AssetType_internal*)SV_ALLOCATE_MEMORY(sizeof(AssetType_internal), "AssetSystem");
new(type) AssetType_internal(desc->asset_size + sizeof(Asset_internal));
string_copy(type->name, desc->name, ASSET_TYPE_NAME_SIZE + 1u);
type->create_fn = desc->create_fn;
type->load_file_fn = desc->load_file_fn;
type->reload_file_fn = desc->reload_file_fn;
type->free_fn = desc->free_fn;
type->unused_time = desc->unused_time;
type->extension_count = desc->extension_count;
foreach(i, desc->extension_count) {
const char* ext = desc->extensions[i];
asset_system->extension_table[ext] = type;
string_copy(type->extensions[i], ext, ASSET_EXTENSION_NAME_SIZE + 1u);
}
return true;
}
void update_asset_files()
{
SV_LOG("TODO");
}
void free_unused_assets()
{
foreach(i, 4u) {
for (AssetType_internal* type : asset_system->asset_types) {
asset_system->free_assets_list.reset();
for (auto& pool : type->allocator) {
for (void* _ptr : pool) {
Asset_internal* asset = reinterpret_cast<Asset_internal*>(_ptr);
if (asset->ref_count.load() <= 0) {
asset_system->free_assets_list.push_back(asset);
}
}
}
// Free assets
for (Asset_internal* asset : asset_system->free_assets_list) {
destroy_asset(asset, type);
// TODO: this can fail...
}
}
}
}
}
|
84f71518adae2e1bba6a641cc040aaff7e6cd5ef | c4ac895830d35bdd7531c350ff328899960e8832 | /FairyLand/Code/Engine/src/Common/Vector4SSE.cpp | 3cca46e6ebd50a88a3663eaf2f0a5b7924a982c7 | [] | no_license | Qazwar/FairyLandEngine | 08ccfe46556f3fc30fdd52fcbd86b1dd3d13fac1 | 39c5bb00f13b7676fbc14f6b92344ed69e7ed435 | refs/heads/master | 2020-04-26T03:29:59.415959 | 2016-01-12T09:53:48 | 2016-01-12T09:53:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,995 | cpp | Vector4SSE.cpp | //============================================================================
// Vector4SSE.cpp
//
// Copyright 2006-2009 Possibility Space Incorporated.
//============================================================================
#include "FairyLandCommon.h"
//----------------------------------------------------------------------------
// Vector4SSE Implementation
//----------------------------------------------------------------------------
const Vector4SSE Vector4SSE::cOrigin( 0.0f, 0.0f, 0.0f, 0.0f );
const Vector4SSE Vector4SSE::cIdentity( 1.0f, 1.0f, 1.0f, 1.0f );
const Vector4SSE Vector4SSE::cXAxis( 1.0f, 0.0f, 0.0f, 0.0f );
const Vector4SSE Vector4SSE::cYAxis( 0.0f, 1.0f, 0.0f, 0.0f );
const Vector4SSE Vector4SSE::cZAxis( 0.0f, 0.0f, 1.0f, 0.0f );
const Vector4SSE Vector4SSE::cWAxis( 0.0f, 0.0f, 0.0f, 1.0f );
const Vector4SSE Vector4SSE::cMaxVector( Math::cMaxFloat, Math::cMaxFloat, Math::cMaxFloat, Math::cMaxFloat );
const Vector4SSE Vector4SSE::cMinVector( Math::cMinFloat, Math::cMinFloat, Math::cMinFloat, Math::cMinFloat );
Vector4SSE& Vector4SSE::operator *= ( const Quaternion& quaternion )
{
Quaternion tempquaternion = quaternion;
tempquaternion *= Quaternion( operator()( 0 ), operator()( 1 ), operator()( 2 ), 0.0f );
tempquaternion *= - quaternion;
*start = _mm_set_ps( 0.0f, tempquaternion.z, tempquaternion.y, tempquaternion.x );
return *this;
}
Vector4SSE& Vector4SSE::operator *= ( const Matrix4SSE& matrix )
{
_float4 temp;
temp = _mm_mul_ps( _mm_set_ps1( operator()( 0 ) ), *( matrix.start ) );
temp = _mm_add_ps( temp, _mm_mul_ps( _mm_set_ps1( operator()( 1 ) ), *( matrix.start + 1 ) ) );
temp = _mm_add_ps( temp, _mm_mul_ps( _mm_set_ps1( operator()( 2 ) ), *( matrix.start + 2 ) ) );
temp = _mm_add_ps( temp, _mm_mul_ps( _mm_set_ps1( operator()( 3 ) ), *( matrix.start + 3 ) ) );
*start = temp;
return *this;
}
Vector4SSE Vector4SSE::operator * ( const Matrix4SSE& matrix ) const
{
Vector4SSE result;
_float4 temp;
temp = _mm_mul_ps( _mm_set_ps1( operator()( 0 ) ), *( matrix.start ) );
temp = _mm_add_ps( temp, _mm_mul_ps( _mm_set_ps1( operator()( 1 ) ), *( matrix.start + 1 ) ) );
temp = _mm_add_ps( temp, _mm_mul_ps( _mm_set_ps1( operator()( 2 ) ), *( matrix.start + 2 ) ) );
temp = _mm_add_ps( temp, _mm_mul_ps( _mm_set_ps1( operator()( 3 ) ), *( matrix.start + 3 ) ) );
*result.start = temp;
return result;
}
Vector4SSE Vector4SSE::Project( const Vector4SSE& vector1, const Vector4SSE& vector2 )
{
Vector4SSE normal = vector2;
normal.Normalize( );
return normal * Dot( vector1, normal );
}
Vector4SSE Vector4SSE::Plumb( const Vector4SSE& vector1, const Vector4SSE& vector2 )
{
return vector1 - Project( vector1, vector2 );
}
Vector4SSE Vector4SSE::Lerp( const Vector4SSE& vector1, const Vector4SSE& vector2, _float factor )
{
factor = Math::Clamp( factor, 0.0f, 1.0f );
return vector1 + ( vector2 - vector1 ) * factor;
} |
dd593f39f08ea69340bed9b656fc2f2328d88a5a | 78ceb0e641b1a05c38bb7f75681f183739c46145 | /DungeonRPG/Jogo.h | adc1331f141dd7a10feec6364e5dbdda2adc99c4 | [] | no_license | djuliao8/DungeonRPG | 9e2116df058abe2ea0903daf8a506c2e4d6521cd | ccfbf9d05b462746f70ff72080774bdc1a896e1f | refs/heads/master | 2020-12-24T18:51:41.671197 | 2016-06-06T13:42:52 | 2016-06-06T13:42:52 | 56,601,312 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,271 | h | Jogo.h | #ifndef JOGO_HEADER
#define JOGO_HEADER
#include "Mapa.h"
#include "Util.h"
class Jogo{
Mapa * mapa;
vector<Jogador> jogEmJogo;
bool aDecorrer;
bool jogoCriado;
bool predefinido;
public:
Jogo(int lin,int col,bool pre);
Jogo();
void addJogador(Jogador j);
bool removeJogador(Jogador j);
void setADecorrer(bool aDecorrer);
bool getJogoADecorrer();
bool getJogoCriado();
void setJogoCriado(bool jogoCriado);
bool verificaJogador(Jogador j);
int getNumJogadores();
bool getPredefinido();
void setPredefinido(bool predefinido);
tstring açãoJogador(tstring movimento,Jogador j);
tstring moveJogador(Jogador j,tstring movimento,int posX, int posY);
tstring apanharObjecto(Jogador j);
tstring proxMovimento(Jogador j);
tstring posActual(Jogador j);
tstring usarPedra(Jogador j, tstring cmd);
tstring lutaJogador(Jogador j);
tstring lutaEntreJogadores(Jogador j1, Jogador j2);
bool jogadorInPos(int x, int y);
void actualizaVector(Jogador j,int i);
void colocaJogadores();
void enviaMensagem(tstring msg,HANDLE hPipe);
Jogador getJogadorByNome(Jogador j);
Jogador getJogadorByPos(int x, int y);
Jogador getJogadorByPosInArray(int pos);
DWORD WINAPI terminaJogo(LPVOID param);
void iniciaThread();
};
#endif |
8c450afcacf5175f16a9999cc5a68a13486be5bd | 61d99314f2909a91cf195ae4fdab9f2a92830f5c | /test/src/main.cpp | 19ee1c28a9e1d7530dea497c5eda3b982de5be6b | [] | no_license | akangakang/agv_car | d79179e46da8abee473553b797ef3e269612c208 | 5a7dea6bce8048b9170deb5f89ff927daf38fe64 | refs/heads/main | 2023-04-02T01:30:12.727930 | 2021-04-09T09:32:01 | 2021-04-09T09:32:01 | 343,269,733 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 491 | cpp | main.cpp |
#include "ros/ros.h"
#include "geometry_msgs/Twist.h"
int main(int argc, char **argv) {
ros::init(argc, argv, "test");
ros::NodeHandle n;
ros::Rate loop_rate(10);
ros::Publisher velPub = n.advertise<geometry_msgs::Twist>("/cmd_vel", 100);
geometry_msgs::Twist msg;
for (int i = 0; i < 100; i++) {
msg.linear.x = 3.0;
msg.linear.y = 3.0;
msg.linear.z = 0.0;
velPub.publish(msg);
}
ROS_INFO("Published msg");
ros::spin();
return 0;
}
|
b0a5d8603a8f16385a0308dfe200c167c76b73ca | 4ee9c2957d06e8071f60a8aa7aebbe6779971f3a | /archive/vn.sgit_4.1/vnsgittd/vnsgittd/vnsgittd.h | 9e1e78ced253d0aa3006db9c5b253081845ef3e2 | [
"MIT"
] | permissive | guoxiaoyong/vnpy | 67d4881263c8bbac2b3d4e6ee3a40b0479163d12 | 207fca465ab5a9e840cd9389f853f1307737cb25 | refs/heads/master | 2021-07-07T09:39:30.315235 | 2017-09-30T14:16:12 | 2017-09-30T14:25:17 | 105,372,911 | 0 | 0 | null | 2017-09-30T13:48:42 | 2017-09-30T13:48:42 | null | UTF-8 | C++ | false | false | 11,990 | h | vnsgittd.h | //说明部分
//系统
#include "stdafx.h"
#include <queue>
#include <string>
// Boost
#define BOOST_PYTHON_STATIC_LIB
#include <boost/any.hpp> //任务队列的任务实现
#include <boost/bind.hpp> //任务队列的线程功能
#include <boost/python.hpp> //python封装
#include <boost/python/def.hpp> //python封装
#include <boost/python/dict.hpp> //python封装
#include <boost/python/module.hpp> //python封装
#include <boost/python/object.hpp> //python封装
#include <boost/thread.hpp> //任务队列的线程功能
// API
#include "SgitFtdcTraderApi.h"
//命名空间
using namespace std;
using namespace boost::python;
using namespace boost;
//常量
#define ONFRONTCONNECTED 1
#define ONFRONTDISCONNECTED 2
#define ONRSPUSERLOGIN 3
#define ONRSPUSERLOGOUT 4
#define ONRSPUSERPASSWORDUPDATE 5
#define ONRSPORDERINSERT 6
#define ONRSPORDERACTION 7
#define ONRSPQRYORDER 8
#define ONRSPQRYTRADINGACCOUNT 9
#define ONRSPQRYINVESTOR 10
#define ONRSPQRYINSTRUMENT 11
#define ONRTNORDER 12
#define ONRTNTRADE 13
#define ONRTNINSTRUMENTSTATUS 14
#define ONRSPQRYINVESTORPOSITIONDETAIL 15
#define ONRSPQRYINVESTORPOSITION 16
///-------------------------------------------------------------------------------------
/// API中的部分组件
///-------------------------------------------------------------------------------------
// GIL全局锁简化获取用,
//用于帮助C++线程获得GIL锁,从而防止python崩溃
class PyLock {
private:
PyGILState_STATE gil_state;
public:
//在某个函数方法中创建该对象时,获得GIL锁
PyLock() { gil_state = PyGILState_Ensure(); }
//在某个函数完成后销毁该对象时,解放GIL锁
~PyLock() { PyGILState_Release(gil_state); }
};
//任务结构体
struct Task {
int task_name; //回调函数名称对应的常量
any task_data; //数据结构体
any task_error; //错误结构体
int task_id; //请求id
bool task_last; //是否为最后返回
};
///线程安全的队列
template <typename Data>
class ConcurrentQueue {
private:
queue<Data> the_queue; //标准库队列
mutable mutex the_mutex; // boost互斥锁
condition_variable the_condition_variable; // boost条件变量
public:
//存入新的任务
void push(Data const &data) {
mutex::scoped_lock lock(the_mutex); //获取互斥锁
the_queue.push(data); //向队列中存入数据
lock.unlock(); //释放锁
the_condition_variable.notify_one(); //通知正在阻塞等待的线程
}
//检查队列是否为空
bool empty() const {
mutex::scoped_lock lock(the_mutex);
return the_queue.empty();
}
//取出
Data wait_and_pop() {
mutex::scoped_lock lock(the_mutex);
while (the_queue.empty()) //当队列为空时
{
the_condition_variable.wait(lock); //等待条件变量通知
}
Data popped_value = the_queue.front(); //获取队列中的最后一个任务
the_queue.pop(); //删除该任务
return popped_value; //返回该任务
}
};
//从字典中获取某个建值对应的整数,并赋值到请求结构体对象的值上
void getInt(dict d, string key, int *value);
//从字典中获取某个建值对应的长整数,并赋值到请求结构体对象的值上
void getLong(dict d, string key, long *value);
//从字典中获取某个建值对应的短整数,并赋值到请求结构体对象的值上
void getShort(dict d, string key, short *value);
//从字典中获取某个建值对应的浮点数,并赋值到请求结构体对象的值上
void getDouble(dict d, string key, double *value);
//从字典中获取某个建值对应的单字符,并赋值到请求结构体对象的值上
void getChar(dict d, string key, char *value);
//从字典中获取某个建值对应的字符串,并赋值到请求结构体对象的值上
void getString(dict d, string key, char *value);
///-------------------------------------------------------------------------------------
/// C++ SPI的回调函数方法实现
///-------------------------------------------------------------------------------------
// API的继承实现
class TdApi : public CSgitFtdcTraderSpi {
private:
CSgitFtdcTraderApi *api; // API对象
thread *task_thread; //工作线程指针(向python中推送数据)
ConcurrentQueue<Task> task_queue; //任务队列
public:
TdApi() {
function0<void> f = boost::bind(&TdApi::processTask, this);
thread t(f);
this->task_thread = &t;
};
~TdApi(){};
//-------------------------------------------------------------------------------------
// API回调函数
//-------------------------------------------------------------------------------------
///当客户端与交易后台建立起通信连接时(还未登录前),该方法被调用。
virtual void OnFrontConnected();
///当客户端与交易后台通信连接断开时,该方法被调用。当发生这个情况后,API会自动重新连接,客户端可不做处理。
///@param pErrMsg 错误原因
virtual void OnFrontDisconnected(char *pErrMsg);
///登录请求响应
virtual void OnRspUserLogin(CSgitFtdcRspUserLoginField *pRspUserLogin,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///登出请求响应
virtual void OnRspUserLogout(CSgitFtdcUserLogoutField *pUserLogout,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///用户口令更新请求响应
virtual void
OnRspUserPasswordUpdate(CSgitFtdcUserPasswordUpdateField *pUserPasswordUpdate,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///报单录入请求响应
virtual void OnRspOrderInsert(CSgitFtdcInputOrderField *pInputOrder,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///报单操作请求响应
virtual void
OnRspOrderAction(CSgitFtdcInputOrderActionField *pInputOrderAction,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///请求查询报单响应
virtual void OnRspQryOrder(CSgitFtdcOrderField *pOrder,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///请求查询资金账户响应
virtual void
OnRspQryTradingAccount(CSgitFtdcTradingAccountField *pTradingAccount,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///请求查询投资者响应
virtual void OnRspQryInvestor(CSgitFtdcInvestorField *pInvestor,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
///请求查询合约响应
virtual void OnRspQryInstrument(CSgitFtdcInstrumentField *pInstrument,
CSgitFtdcRspInfoField *pRspInfo,
int nRequestID, bool bIsLast);
///报单通知
virtual void OnRtnOrder(CSgitFtdcOrderField *pOrder,
CSgitFtdcRspInfoField *pRspInfo);
///成交通知
virtual void OnRtnTrade(CSgitFtdcTradeField *pTrade);
///合约交易状态通知
virtual void
OnRtnInstrumentStatus(CSgitFtdcInstrumentStatusField *pInstrumentStatus);
///请求查询投资者持仓明细响应
virtual void OnRspQryInvestorPositionDetail(
CSgitFtdcInvestorPositionDetailField *pInvestorPositionDetail,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast);
///请求查询投资者持仓响应
virtual void
OnRspQryInvestorPosition(CSgitFtdcInvestorPositionField *pInvestorPosition,
CSgitFtdcRspInfoField *pRspInfo, int nRequestID,
bool bIsLast);
/// 当收到合约价位查询应答时回调该函数
virtual void onRspMBLQuot(CSgitMBLQuotData *pMBLQuotData,
CSgitFtdcRspInfoField *pRspMsg, int nRequestID,
bool bIsLast){};
//-------------------------------------------------------------------------------------
// task:任务
//-------------------------------------------------------------------------------------
void processTask();
void processFrontConnected(Task task);
void processFrontDisconnected(Task task);
void processRspUserLogin(Task task);
void processRspUserLogout(Task task);
void processRspUserPasswordUpdate(Task task);
void processRspOrderInsert(Task task);
void processRspOrderAction(Task task);
void processRspQryOrder(Task task);
void processRspQryTradingAccount(Task task);
void processRspQryInvestor(Task task);
void processRspQryInstrument(Task task);
void processRtnOrder(Task task);
void processRtnTrade(Task task);
void processRtnInstrumentStatus(Task task);
void processRspQryInvestorPositionDetail(Task task);
void processRspQryInvestorPosition(Task task);
//-------------------------------------------------------------------------------------
// data:回调函数的数据字典
// error:回调函数的错误字典
// id:请求id
// last:是否为最后返回
// i:整数
//-------------------------------------------------------------------------------------
virtual void onFrontConnected(){};
virtual void onFrontDisconnected(string msg){};
virtual void onRspUserLogin(dict data, dict error, int id, bool last){};
virtual void onRspUserLogout(dict data, dict error, int id, bool last){};
virtual void onRspUserPasswordUpdate(dict data, dict error, int id,
bool last){};
virtual void onRspOrderInsert(dict data, dict error, int id, bool last){};
virtual void onRspOrderAction(dict data, dict error, int id, bool last){};
virtual void onRspQryOrder(dict data, dict error, int id, bool last){};
virtual void onRspQryTradingAccount(dict data, dict error, int id,
bool last){};
virtual void onRspQryInvestor(dict data, dict error, int id, bool last){};
virtual void onRspQryInstrument(dict data, dict error, int id, bool last){};
virtual void onRtnOrder(dict data, dict error){};
virtual void onRtnTrade(dict data){};
virtual void onRtnInstrumentStatus(dict data){};
virtual void onRspQryInvestorPositionDetail(dict data, dict error, int id,
bool last){};
virtual void onRspQryInvestorPosition(dict data, dict error, int id,
bool last){};
//-------------------------------------------------------------------------------------
// req:主动函数的请求字典
//-------------------------------------------------------------------------------------
void createFtdcTraderApi(string pszFlowPath);
void release();
void init(bool isLogged);
int join();
int exit();
string getTradingDay();
void registerFront(string pszFrontAddress);
void subscribePrivateTopic(int type);
void subscribePublicTopic(int type);
int ready();
int reqUserLogin(dict req, int nRequestID);
int reqUserLogout(dict req, int nRequestID);
int reqUserPasswordUpdate(dict req, int nRequestID);
int reqOrderInsert(dict req, int nRequestID);
int reqOrderAction(dict req, int nRequestID);
int reqQryOrder(dict req, int nRequestID);
int reqQryTradingAccount(dict req, int nRequestID);
int reqQryInvestor(dict req, int nRequestID);
int reqQryInstrument(dict req, int nRequestID);
int reqQryInvestorPositionDetail(dict req, int nRequestID);
int reqQryInvestorPosition(dict req, int nRequestID);
// int reqMBLQuot(dict req, int nRequestID);
};
|
d7c133842173f0e1c32c368931a8581ea0ae75d1 | 74992eecdeb51493e65c12d36e906c619b0c62dd | /easy_avr.h | 340ea314883e57f79db3f45449c1e7626b4ddca6 | [
"MIT"
] | permissive | ejensen141/easy_avr | f37d5efc07aa02f4c949ccda52f183ad56c0c075 | 166a5f7ec3232a13ff5552d72438b3f20857fd83 | refs/heads/master | 2016-08-11T08:30:39.810574 | 2015-05-27T04:59:08 | 2015-05-27T04:59:08 | 36,343,707 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,986 | h | easy_avr.h | //##############Easy_Avr Library C++###################
/*
Copyright (c) 2015 Elijah Jensen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software/hardware and associated documentation files
(the "Software" or "Hardware" design plans), to deal in the Software/Hardware
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/Hardware.
THE SOFTWARE/HARDWARE 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.
Except as contained in this notice, the name(s) of the above copyright holders shall
not be used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization.
This library attempts to increase the readablility of avr code, without reducing speed and efficiency.
*/
#ifndef _Easy_AVR_H
#define _Easy_AVR_H
#include <avr/io.h>
#include <avr/interrupt.h>
#include <inttypes.h>
#include <util/delay.h>
#include <avr/sleep.h>
#include <string.h>
#include "easy_avr_def.h"
// #################PWM Section ###################3
class pwm{
public:
inline void setup();
};
//##############################################
// ################SPI section #######################
//##############SPI SPEC###################
/*
SPCR - SPI Control Register
--------------------------------------------------------------------------------------------
|SPIE SPE DORD MSTR CPOL CPHA SPR1 SPR0 |
--------------------------------------------------------------------------------------------
0b01011101
SPIE --> Interrupt Enable if 1
SPE --> SPI enable if 1
DORD --> Data Order--- 1=LSB first 0=MSB first
MSTR --> master or slave 1=master 0 = slave
CPOL --> Polarity if 1 SCK is high while idle if 0 SCK is low when idle
CPHA --> Phase if 1 sample on trailing if 0 sample on leading
SPR1 -->
SPR2 -->
These control Clock Frequency
00 = f/4
01 = f/16
10 = f/64
11 = f/128
SPSR SPI Status Register
-------------------------------------------------------------------------
| SPIF WCOL - - - - - SPI2X |
-------------------------------------------------------------------------
When a tranfer is comple the SPIF bit is set to 1
WCOL Write collision
SPI2X Double Speed ///// Doubles speed if 1
*/ //###################################
class spi{
private:
uint8_t setting;
uint8_t spcr_value;
public:
uint8_t data_direction;
uint8_t write(uint8_t data)
{
SPDR = data;
while (!(SPSR & (1<<SPIF)));
return SPDR;
}
uint32_t write32_msb(uint32_t data)
{
uint32_t buffer32;
uint8_t buffer;
//MSB first !
buffer = data>>24;
buffer=write(buffer);
buffer32 = uint32_t(buffer)<<24;
buffer = data>>16;
buffer =write(buffer);
buffer32 |= uint32_t(buffer)<<16;
buffer = data>>8;
buffer = write(buffer);
buffer32 |= uint32_t(buffer)<<8;
buffer = data;
buffer = write(buffer);
buffer32 |= buffer;
return buffer32;
}
uint32_t write32_lsb(uint32_t data)
{
uint32_t buffer32;
uint8_t buffer;
//LSB first !
buffer = data;
write(buffer);
buffer32 = uint32_t(buffer);
buffer = data<<8;
write(buffer);
buffer32 |= uint32_t(buffer)<<8;
buffer = data<<16;
write(buffer);
buffer32 |= uint32_t(buffer)<<16;
buffer = data<<24;
write(buffer);
buffer32 |= uint32_t(buffer)<<24;
}
//Define inline functions
// to set the SPCR manually
inline void setup(uint8_t value)
{
SPCR = value;
}
inline void enable()
{
setBitHigh(SPCR,SPE);
}
inline void polarity(uint8_t var)
{
switch(var)
{
case 1:
setBitHigh(SPCR,CPOL);
break;
case 0:
setBitLow(SPCR,CPOL);
break;
}
}
inline void phase(uint8_t var) // 1 is trailing
{
switch(var)
{
case 1:
setBitHigh(SPCR,CPHA);
break;
case 0:
setBitLow(SPCR,CPHA);
break;
}
}
inline void init()
{
setup(0x00);
}
inline void setMaster()
{
setBitHigh(SPCR,MSTR);
setOutput(DDRB,2); // Set SS pin output
setOutput(DDRB,5); // MOSI line
setOutput(DDRB,3); // SCK line
}
inline void setSlave()
{
setBitLow(SPCR,MSTR);
setOutput(DDRB,4); // set MISO output
setInput(DDRB,2); // Set SS pin output
setInput(DDRB,5); // MOSI line
setInput(DDRB,3); // SCK line
}
inline void data_dir(uint8_t var =1) //defaults to MSB first
{
switch(var)
{
//MSB First
case 1:
data_direction=1;
setBitLow(SPCR,DORD);
break;
// LSB First
case 0:
data_direction=0;
setBitHigh(SPCR,DORD);
break;
}
}
// Takes the divisor and sets the correct bits for that speed... 4= clock/4 16 = clock/16 etc..
inline void speed(uint8_t var)
{
//set to slow mode natively
setBitHigh(SPCR,SPR1);
setBitHigh(SPCR,SPR0);
switch(var)
{
case 4:
setBitLow(SPCR,SPR0);
setBitLow(SPCR,SPR1);
break;
case 16:
setBitLow(SPCR,SPR1);
setBitHigh(SPCR,SPR0);
break;
case 64:
setBitHigh(SPCR,SPR1);
setBitLow(SPCR,SPR0);
break;
case 128:
setBitHigh(SPCR,SPR1);
setBitHigh(SPCR,SPR0);
break;
}
}
inline void speed2x(uint8_t var) //high if true
{
switch(var)
{
case high:
setBitHigh(SPSR,SPI2X);
break;
case low:
setBitLow(SPSR,SPI2X);
}
}
};
//########################################
//################USART0###################
class usart0 {
public:
unsigned int ubrr;
//TODO: make helper function(s) to set these values
inline void init( )
{
/*Set baud rate */
UBRR0H = (unsigned char)(ubrr>>8);
UBRR0L = (unsigned char)ubrr;
//Enable receiver and transmitter */
UCSR0B = (1<<TXEN0)|(1<<RXEN0);
//UCSR0B |= (1 << RXCIE0); //Enable interrupt
/* Set frame format: 8data, 2stop bit */
UCSR0C = (1<<USBS0)|(3<<UCSZ00);
}
void write(unsigned char data );
void write(char * data );
inline void interrupt()
{
setBitHigh(UCSR0B, RXCIE0); //Enable interrupt
setBitHigh(UCSR0B, RXEN0);
}
};
#endif
//EOF
|
5ab2dbc43f6790987ed075044015cbdedab00f2c | 86bd5562f967e9b8316e2f730bdad6a1cc29a7a1 | /counting-bits/counting-bits.cpp | 3d33aebdd9d4e66b68be443a3fec87840f98a18e | [] | no_license | Aman0002/Leetcode | 225c0100c7d7f3c6cca2999f3d2a1acc83698fda | 6dbdbb984df97619397103a8b8d396ecc4e050c0 | refs/heads/main | 2023-07-15T09:50:08.250773 | 2021-09-01T10:43:49 | 2021-09-01T10:43:49 | 362,705,508 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366 | cpp | counting-bits.cpp | class Solution {
public:
vector<int> countBits(int A) {
int cnt = 0 ;
vector<int> help(A + 1, 0);
//long long int ans = 0;
for (int i=1 ;i<=A ;i++)
{
if (i%2!=0)
{
help[i] = 1 + help[i-1];
}else
{
help[i] = help[i/2];
}
}
return help;
}
}; |
d9a4e227d22e6c26f43179bd8cbd05a04945a81f | 9bdd6516a5bea3dd3bd9f3229f777d6ddbd1a84f | /ABC/173d.cpp | ae2bc62978b39acf4feb4e36f6c065d54e183ef2 | [] | no_license | t0m0ya1997/atcoder | 968b990440b3d3ebc60b4b92ded0df32c44e51d6 | cf228d442aa51ddc59204779146229ce966768e7 | refs/heads/main | 2023-07-30T16:39:58.989703 | 2021-09-19T03:08:25 | 2021-09-19T03:08:25 | 408,014,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 364 | cpp | 173d.cpp | #include<bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0;i<n;++i)
#define rep1(i, n) for(int i=1;i<=n;++i)
#define ll long long
int main(){
int N;cin>>N;
vector<int>A(N);
rep(i,N)cin>>A[i];
sort(A.begin(), A.end(), greater<int>());
ll ans = A[0];
rep(i,N-2){
ans += 1LL * A[i/2+1];
}
cout << ans << endl;
} |
afb9803a589512e9afde28a067e55f3fd7115630 | ff7358ae758448646ee56ea66ecbf72c215b4fa3 | /GameLib/GameException.cpp | 574c295a98438ed3f4cdb6665ec119332691a7a7 | [] | no_license | wahez/Ship-Sandbox | 557a743a54f4c0e1a82618d5ef7e9a8c261547ad | 03e406f224f32b7451939d2586ffc888f4330cb2 | refs/heads/master | 2021-05-04T01:46:43.896040 | 2018-02-04T19:32:53 | 2018-02-04T19:32:53 | 120,362,079 | 0 | 0 | null | 2018-02-05T21:08:03 | 2018-02-05T21:08:03 | null | UTF-8 | C++ | false | false | 492 | cpp | GameException.cpp | /***************************************************************************************
* Original Author: Gabriele Giuseppini
* Created: 2018-01-19
* Copyright: Gabriele Giuseppini (https://github.com/GabrieleGiuseppini)
***************************************************************************************/
#include "GameException.h"
#include "Utils.h"
GameException::GameException(std::string const & errorMessage)
: mErrorMessage(Utils::ConvertAsciiString(errorMessage))
{
}
|
f630571453b29fdbed6d5c639afcf799ceab8494 | ca219a987223655e624baf869585582c134b4403 | /Wide/Semantic/Functions/DefaultedAssignmentOperator.h | e8a3c9efe11ab250c8990bfb8b3d79c0c565a0fc | [] | no_license | DeadMG/Wide | 190d41f349b1a23ba654e3e5e8ec9648b34fa7a0 | 5eb29f0ed0e6aec4bde396fb1494ce170c388112 | refs/heads/master | 2020-12-14T13:05:30.277622 | 2017-07-10T17:59:00 | 2017-07-10T17:59:14 | 22,044,120 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 693 | h | DefaultedAssignmentOperator.h | #pragma once
#include <Wide/Semantic/Functions/FunctionSkeleton.h>
namespace Wide {
namespace Semantic {
namespace Functions {
class DefaultedAssignmentOperator : public FunctionSkeleton {
std::vector<ConstructorContext::member> members;
const Parse::Function* func;
void ComputeBody();
std::shared_ptr<Expression> AccessMember(std::shared_ptr<Expression> self, ConstructorContext::member& member, Context c);
public:
DefaultedAssignmentOperator(const Parse::Function* astfun, Analyzer& a, Location, std::vector<ConstructorContext::member>);
};
}
}
}
|
3e7ac27ee2c520033c807c9262a369014cf18d0e | 913020f890fbd2449b46c5af97da81b12b59299a | /cellule.cpp | 99bba919af42165d4a7311e080cffa88ea761b27 | [] | no_license | MAHY-MAHY/Int_18_04 | 7cdd14d3b8b01b9d8ea6b2021637f8e98a70b429 | fd4946932e1b1ee9c8d3365d2923efb686291613 | refs/heads/master | 2020-05-15T05:41:18.826122 | 2019-04-18T15:08:02 | 2019-04-18T15:08:02 | 182,108,628 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,578 | cpp | cellule.cpp | #include "cellule.h"
//Constructeurs de cellule
Cellule::Cellule():a_x(-1.),b_x(1.),a_y(-1),b_y(1), uin(0.){
}
Cellule:: Cellule(double inf_x, double sup_x,double inf_y,double sup_y ,double valeur){
a_x=inf_x;
b_x=sup_x;
a_y=inf_y;
b_y=sup_y;
uin = valeur;
}
Cellule::Cellule(const Cellule &c){
a_x = c.a_x;
b_x = c.b_x;
a_y = c.a_y;
b_y = c.b_y;
uin = c.uin;
}
//retourne la valeur de la cellule
double Cellule::getValue() const
{
return uin;
}
//modifie la valeur de la cellule
void Cellule::setValue(double v)
{
uin = v;
}
//retourne la borne inf de la cellule
double Cellule::getBinf_x() const
{
return a_x;
}
//modifie la borne inf de la cellule
void Cellule::setBinf_x(double inf)
{
a_x = inf;
}
//Retourne la borne sup de la cellule
double Cellule::getBsup_x() const
{
return b_x;
}
//modifie la borne sup de la cellule
void Cellule::setBsup_x(double sup)
{
b_x=sup;
}
//retourne la borne inf de la cellule
double Cellule::getBinf_y() const
{
return a_y;
}
//modifie la borne inf de la cellule
void Cellule::setBinf_y(double inf)
{
a_y = inf;
}
//Retourne la borne sup de la cellule
double Cellule::getBsup_y() const
{
return b_y;
}
//modifie la borne sup de la cellule
void Cellule::setBsup_y(double sup)
{
b_y=sup;
}
//Surcharge del'operateur d'affichage
std::ostream &operator<<(std::ostream &os, const Cellule &C)
{
os << "[" << C.getBinf_x() << "," << C.getBinf_y() <<"] \n" << C.getValue() << "\n [" << C.getBsup_x() << "," << C.getBsup_y() << "]";
return os;
}
|
6a0c2552f94bd4ed021a18805658d088750a48ad | 465afd89a124abd377497fa505ede83f703db229 | /dataindegree.ino | 4b5fe816fc1c826bd8d8fc3458622aa9e48629d7 | [] | no_license | RKartodijoyo/arduinobalance | 43535260af5af7594419e13da210c89d2e392b0f | 0a2112d8bafdfc4ad2730f194db207659313afd0 | refs/heads/master | 2020-11-25T00:47:35.675239 | 2019-12-23T09:35:09 | 2019-12-23T09:35:09 | 228,415,515 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,991 | ino | dataindegree.ino | #include <SPI.h>
#include <Wire.h>
#include <Servo.h>
const int MPU_addr=0x68;
using namespace std;
Servo ServoX, ServoY, ServoZ;
double AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ;
double aX,DaX,aY,DaY,aZ,DaZ,RealDX,RealDY,RealDZ;
short LS11 = 0;
short LS15 = 0;
short LS21 = 0;
short LS25 = 0;
short LS31 = 0;
short LS35 = 0;
short LS41 = 0;
short LS45 = 0;
short AntrLin = 0;
short AntrRec = 0;
short ReinVor = 0;
short ReinHin = 0;
void setup(){
Wire.begin();
Wire.beginTransmission(MPU_addr);
Wire.write(0x6B); // PWR_MGMT_1 register
Wire.write(0); // set to zero (wakes up the MPU-6050)
Wire.endTransmission(true);
Serial.begin(9600);
}
void mpu(){
Wire.beginTransmission(MPU_addr);
Wire.write(0x3B); // starting with register 0x3B (ACCEL_XOUT_H)
Wire.endTransmission(false);
Wire.requestFrom(MPU_addr,14,true); // request a total of 14 registers
AcX=Wire.read()<<8|Wire.read(); // 0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L)
AcY=Wire.read()<<8|Wire.read(); // 0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L)
AcZ=Wire.read()<<8|Wire.read(); // 0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L)
Tmp=Wire.read()<<8|Wire.read(); // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L)
GyX=Wire.read()<<8|Wire.read(); // 0x43 (GYRO_XOUT_H) & 0x44 (GYRO_XOUT_L)
GyY=Wire.read()<<8|Wire.read(); // 0x45 (GYRO_YOUT_H) & 0x46 (GYRO_YOUT_L)
GyZ=Wire.read()<<8|Wire.read(); // 0x47 (GYRO_ZOUT_H) & 0x48 (GYRO_ZOUT_L)
aX=AcX/16384;
if (aX > 1){
aX = 1;
}
if (aX < -1){
aX = -1;
}
DaX=asin(aX);
RealDX = DaX * 180/PI;
aY=AcY/16384;
if (aY > 1){
aY = 1;
}
if (aY < -1){
aY = -1;
}
DaY=asin(aY);
RealDY = DaY * 180/PI;
aZ=AcZ/16384;
if (aZ > 1){
aZ = 1;
}
if (aZ < -1){
aZ = -1;
}
DaZ=asin(aZ);
RealDZ = DaZ * 180/PI;
}
void loop() {
mpu();
Serial.print("RealD X = ");Serial.print(RealDX);
Serial.print(" | RealD Y = ");Serial.print(RealDY);
Serial.print(" | RealD Z = ");Serial.println(RealDZ);
delay(50);
}
|
c4ea5a6146f257a2434bb71d3076eb53c59b62ef | 21b027f9512706a5cf3be3413aa83f4b11d28fde | /submodules/bm/modules/bm_sim/src/switch.cpp | 76cf791a4eaeb4fdd4859762f1ce6d77361d716a | [
"Apache-2.0"
] | permissive | evelinad/ops-p4dp-1 | ca7834f82f207c57f51a28b9481184c35e0ea304 | 3a8192c61d91eab0861dc7a1e051489ba6752e71 | refs/heads/master | 2020-06-12T16:07:44.346312 | 2015-12-17T18:01:58 | 2015-12-17T18:01:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,555 | cpp | switch.cpp | /* Copyright 2013-present Barefoot Networks, Inc.
*
* 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.
*/
/*
* Antonin Bas (antonin@barefootnetworks.com)
*
*/
#include <cassert>
#include <fstream>
#include "bm_sim/switch.h"
#include "bm_sim/P4Objects.h"
#include "bm_sim/options_parse.h"
#include "bm_sim/logger.h"
static void
packet_handler(int port_num, const char *buffer, int len, void *cookie)
{
((Switch *) cookie)->receive(port_num, buffer, len);
}
Switch::Switch(bool enable_swap)
: DevMgr(),
enable_swap(enable_swap) {
p4objects = std::make_shared<P4Objects>();
p4objects_rt = p4objects;
}
void
Switch::add_required_field(const std::string &header_name,
const std::string &field_name) {
required_fields.insert(std::make_pair(header_name, field_name));
}
void
Switch::force_arith_field(const std::string &header_name,
const std::string &field_name) {
arith_fields.insert(std::make_pair(header_name, field_name));
}
int
Switch::init_objects(const std::string &json_path) {
std::ifstream fs(json_path, std::ios::in);
if(!fs) {
std::cout << "JSON input file " << json_path << " cannot be opened\n";
return 1;
}
int status = p4objects->init_objects(fs, required_fields, arith_fields);
if(status != 0) return status;
Packet::set_phv_factory(p4objects->get_phv_factory());
return status;
}
int
Switch::init_from_command_line_options(int argc, char *argv[]) {
OptionsParser parser;
parser.parse(argc, argv);
int status = init_objects(parser.config_file_path);
if(status != 0) return status;
if(parser.console_logging)
Logger::set_logger_console();
if(parser.file_logger != "")
Logger::set_logger_file(parser.file_logger);
setUseFiles(parser.useFiles, parser.waitTime);
for(const auto &iface : parser.ifaces) {
std::cout << "Adding interface " << iface.second
<< " as port " << iface.first
<< (parser.useFiles ? " (files)" : "")
<< std::endl;
const char* inFileName = NULL;
const char* outFileName = NULL;
std::string inFile;
std::string outFile;
if (parser.useFiles)
{
inFile = iface.second + "_in.pcap";
inFileName = inFile.c_str();
outFile = iface.second + "_out.pcap";
outFileName = outFile.c_str();
}
else if (parser.pcap) {
inFile = iface.second + ".pcap";
inFileName = inFile.c_str();
outFileName = inFileName;
}
port_add(iface.second, iface.first, inFileName, outFileName);
}
thrift_port = parser.thrift_port;
device_id = parser.device_id;
// TODO: is this the right place to do this?
set_packet_handler(packet_handler, (void *) this);
start();
return status;
}
MatchErrorCode
Switch::mt_add_entry(
const std::string &table_name,
const std::vector<MatchKeyParam> &match_key,
const std::string &action_name,
ActionData action_data,
entry_handle_t *handle,
int priority
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
MatchTable *table = dynamic_cast<MatchTable *>(abstract_table);
if(!table) return MatchErrorCode::WRONG_TABLE_TYPE;
const ActionFn *action = p4objects_rt->get_action(action_name);
assert(action);
return table->add_entry(
match_key, action, std::move(action_data), handle, priority
);
}
MatchErrorCode
Switch::mt_set_default_action(
const std::string &table_name,
const std::string &action_name,
ActionData action_data
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
MatchTable *table = dynamic_cast<MatchTable *>(abstract_table);
if(!table) return MatchErrorCode::WRONG_TABLE_TYPE;
const ActionFn *action = p4objects_rt->get_action(action_name);
assert(action);
return table->set_default_action(action, std::move(action_data));
}
MatchErrorCode
Switch::mt_delete_entry(
const std::string &table_name,
entry_handle_t handle
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
MatchTable *table = dynamic_cast<MatchTable *>(abstract_table);
if(!table) return MatchErrorCode::WRONG_TABLE_TYPE;
return table->delete_entry(handle);
}
MatchErrorCode
Switch::mt_modify_entry(
const std::string &table_name,
entry_handle_t handle,
const std::string &action_name,
const ActionData action_data
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
MatchTable *table = dynamic_cast<MatchTable *>(abstract_table);
if(!table) return MatchErrorCode::WRONG_TABLE_TYPE;
const ActionFn *action = p4objects_rt->get_action(action_name);
assert(action);
return table->modify_entry(handle, action, std::move(action_data));
}
MatchErrorCode
Switch::mt_set_entry_ttl(
const std::string &table_name,
entry_handle_t handle,
unsigned int ttl_ms
)
{
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
if(!abstract_table) return MatchErrorCode::INVALID_TABLE_NAME;
return abstract_table->set_entry_ttl(handle, ttl_ms);
}
MatchErrorCode
Switch::get_mt_indirect(
const std::string &table_name, MatchTableIndirect **table
)
{
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
if(!abstract_table) return MatchErrorCode::INVALID_TABLE_NAME;
*table = dynamic_cast<MatchTableIndirect *>(abstract_table);
if(!(*table)) return MatchErrorCode::WRONG_TABLE_TYPE;
return MatchErrorCode::SUCCESS;
}
MatchErrorCode
Switch::mt_indirect_add_member(
const std::string &table_name, const std::string &action_name,
ActionData action_data, mbr_hdl_t *mbr
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
const ActionFn *action = p4objects_rt->get_action(action_name);
if(!action) return MatchErrorCode::INVALID_ACTION_NAME;
return table->add_member(action, std::move(action_data), mbr);
}
MatchErrorCode
Switch::mt_indirect_delete_member(
const std::string &table_name, mbr_hdl_t mbr
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->delete_member(mbr);
}
MatchErrorCode
Switch::mt_indirect_modify_member(
const std::string &table_name, mbr_hdl_t mbr,
const std::string &action_name, ActionData action_data
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
const ActionFn *action = p4objects_rt->get_action(action_name);
if(!action) return MatchErrorCode::INVALID_ACTION_NAME;
return table->modify_member(mbr, action, std::move(action_data));
}
MatchErrorCode
Switch::mt_indirect_add_entry(
const std::string &table_name,
const std::vector<MatchKeyParam> &match_key,
mbr_hdl_t mbr, entry_handle_t *handle, int priority
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->add_entry(match_key, mbr, handle, priority);
}
MatchErrorCode
Switch::mt_indirect_modify_entry(
const std::string &table_name, entry_handle_t handle, mbr_hdl_t mbr
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->modify_entry(handle, mbr);
}
MatchErrorCode
Switch::mt_indirect_delete_entry(
const std::string &table_name, entry_handle_t handle
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->delete_entry(handle);
}
MatchErrorCode
Switch::mt_indirect_set_entry_ttl(
const std::string &table_name,
entry_handle_t handle,
unsigned int ttl_ms
)
{
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
if(!abstract_table) return MatchErrorCode::INVALID_TABLE_NAME;
return abstract_table->set_entry_ttl(handle, ttl_ms);
}
MatchErrorCode
Switch::mt_indirect_set_default_member(
const std::string &table_name, mbr_hdl_t mbr
)
{
MatchErrorCode rc;
MatchTableIndirect *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->set_default_member(mbr);
}
MatchErrorCode
Switch::get_mt_indirect_ws(
const std::string &table_name, MatchTableIndirectWS **table
)
{
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
if(!abstract_table) return MatchErrorCode::INVALID_TABLE_NAME;
*table = dynamic_cast<MatchTableIndirectWS *>(abstract_table);
if(!(*table)) return MatchErrorCode::WRONG_TABLE_TYPE;
return MatchErrorCode::SUCCESS;
}
MatchErrorCode
Switch::mt_indirect_ws_create_group(
const std::string &table_name, grp_hdl_t *grp
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->create_group(grp);
}
MatchErrorCode
Switch::mt_indirect_ws_delete_group(
const std::string &table_name, grp_hdl_t grp
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->delete_group(grp);
}
MatchErrorCode
Switch::mt_indirect_ws_add_member_to_group(
const std::string &table_name, mbr_hdl_t mbr, grp_hdl_t grp
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->add_member_to_group(mbr, grp);
}
MatchErrorCode
Switch::mt_indirect_ws_remove_member_from_group(
const std::string &table_name, mbr_hdl_t mbr, grp_hdl_t grp
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->remove_member_from_group(mbr, grp);
}
MatchErrorCode
Switch::mt_indirect_ws_add_entry(
const std::string &table_name,
const std::vector<MatchKeyParam> &match_key,
grp_hdl_t grp, entry_handle_t *handle, int priority
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->add_entry_ws(match_key, grp, handle, priority);
}
MatchErrorCode
Switch::mt_indirect_ws_modify_entry(
const std::string &table_name, entry_handle_t handle, grp_hdl_t grp
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->modify_entry_ws(handle, grp);
}
MatchErrorCode
Switch::mt_indirect_ws_set_default_group(
const std::string &table_name, grp_hdl_t grp
)
{
MatchErrorCode rc;
MatchTableIndirectWS *table;
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
if((rc = get_mt_indirect_ws(table_name, &table)) != MatchErrorCode::SUCCESS)
return rc;
return table->set_default_group(grp);
}
MatchErrorCode Switch::mt_read_counters(
const std::string &table_name,
entry_handle_t handle,
MatchTableAbstract::counter_value_t *bytes,
MatchTableAbstract::counter_value_t *packets
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
return abstract_table->query_counters(handle, bytes, packets);
}
MatchErrorCode Switch::mt_reset_counters(
const std::string &table_name
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
return abstract_table->reset_counters();
}
MatchErrorCode Switch::mt_write_counters(
const std::string &table_name,
entry_handle_t handle,
MatchTableAbstract::counter_value_t bytes,
MatchTableAbstract::counter_value_t packets
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
return abstract_table->write_counters(handle, bytes, packets);
}
Counter::CounterErrorCode Switch::read_counters(
const std::string &counter_name,
size_t index,
MatchTableAbstract::counter_value_t *bytes,
MatchTableAbstract::counter_value_t *packets
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
CounterArray *counter_array = p4objects_rt->get_counter_array(counter_name);
assert(counter_array);
return (*counter_array)[index].query_counter(bytes, packets);
}
Counter::CounterErrorCode Switch::reset_counters(
const std::string &counter_name
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
CounterArray *counter_array = p4objects_rt->get_counter_array(counter_name);
assert(counter_array);
return counter_array->reset_counters();
}
Counter::CounterErrorCode Switch::write_counters(
const std::string &counter_name,
size_t index,
MatchTableAbstract::counter_value_t bytes,
MatchTableAbstract::counter_value_t packets
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
CounterArray *counter_array = p4objects_rt->get_counter_array(counter_name);
assert(counter_array);
return (*counter_array)[index].write_counter(bytes, packets);
}
RuntimeInterface::MeterErrorCode
Switch::meter_array_set_rates(
const std::string &meter_name, const std::vector<Meter::rate_config_t> &configs
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MeterArray *meter_array = p4objects_rt->get_meter_array(meter_name);
assert(meter_array);
return meter_array->set_rates(configs);
}
RuntimeInterface::MeterErrorCode
Switch::meter_set_rates(
const std::string &meter_name, size_t idx,
const std::vector<Meter::rate_config_t> &configs
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MeterArray *meter_array = p4objects_rt->get_meter_array(meter_name);
assert(meter_array);
return meter_array->get_meter(idx).set_rates(configs);
}
RuntimeInterface::RegisterErrorCode
Switch::register_read(
const std::string ®ister_name,
const size_t idx, Data *value
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
RegisterArray *register_array =
p4objects_rt->get_register_array(register_name);
if(!register_array) return Register::ERROR;
if(idx >= register_array->size()) return Register::INVALID_INDEX;
value->set((*register_array)[idx]);
return Register::SUCCESS;
}
RuntimeInterface::RegisterErrorCode
Switch::register_write(
const std::string ®ister_name,
const size_t idx, Data value
) {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
RegisterArray *register_array =
p4objects_rt->get_register_array(register_name);
if(!register_array) return Register::ERROR;
if(idx >= register_array->size()) return Register::INVALID_INDEX;
(*register_array)[idx].set(std::move(value));
return Register::SUCCESS;
}
RuntimeInterface::ErrorCode Switch::load_new_config(const std::string &new_config) {
if(!enable_swap) return CONFIG_SWAP_DISABLED;
boost::unique_lock<boost::shared_mutex> lock(request_mutex);
// check that there is no ongoing config swap
if(p4objects != p4objects_rt) return ONGOING_SWAP;
p4objects_rt = std::make_shared<P4Objects>();
std::istringstream ss(new_config);
p4objects_rt->init_objects(ss, required_fields, arith_fields);
return SUCCESS;
}
RuntimeInterface::ErrorCode Switch::swap_configs() {
if(!enable_swap) return CONFIG_SWAP_DISABLED;
boost::unique_lock<boost::shared_mutex> lock(request_mutex);
// no ongoing swap
if(p4objects == p4objects_rt) return NO_ONGOING_SWAP;
swap_ordered = true;
return SUCCESS;
}
RuntimeInterface::ErrorCode Switch::reset_state() {
boost::unique_lock<boost::shared_mutex> lock(request_mutex);
p4objects_rt->reset_state();
return SUCCESS;
}
MatchErrorCode Switch::dump_table(
const std::string& table_name,
std::ostream &stream
) const {
boost::shared_lock<boost::shared_mutex> lock(request_mutex);
MatchTableAbstract *abstract_table =
p4objects_rt->get_abstract_match_table(table_name);
assert(abstract_table);
abstract_table->dump(stream);
return MatchErrorCode::SUCCESS;
}
int Switch::do_swap() {
if(!swap_ordered) return 1;
boost::unique_lock<boost::shared_mutex> lock(request_mutex);
p4objects = p4objects_rt;
Packet::swap_phv_factory(p4objects->get_phv_factory());
swap_ordered = false;
return 0;
}
LearnEngine *Switch::get_learn_engine()
{
return p4objects->get_learn_engine();
}
AgeingMonitor *Switch::get_ageing_monitor()
{
return p4objects->get_ageing_monitor();
}
|
c13ba1faa9697fb9ecffe6706301087504f042a2 | 8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a | /tests/Containers/EnumerateTest.cpp | 9203dd7d52e8ee75af7ab2cdac88797943538970 | [
"Apache-2.0",
"BSD-3-Clause",
"ICU",
"Zlib",
"GPL-1.0-or-later",
"OpenSSL",
"ISC",
"LicenseRef-scancode-gutenberg-2020",
"MIT",
"GPL-2.0-only",
"CC0-1.0",
"BSL-1.0",
"LicenseRef-scancode-autoconf-simple-exception",
"LicenseRef-scancode-pcre",
"Bison-exception-2.2",
"LicenseRef-scancode-public-domain",
"JSON",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense",
"BSD-4-Clause",
"Python-2.0",
"LGPL-2.1-or-later"
] | permissive | arangodb/arangodb | 0980625e76c56a2449d90dcb8d8f2c485e28a83b | 43c40535cee37fc7349a21793dc33b1833735af5 | refs/heads/devel | 2023-08-31T09:34:47.451950 | 2023-08-31T07:25:02 | 2023-08-31T07:25:02 | 2,649,214 | 13,385 | 982 | Apache-2.0 | 2023-09-14T17:02:16 | 2011-10-26T06:42:00 | C++ | UTF-8 | C++ | false | false | 3,236 | cpp | EnumerateTest.cpp | ////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2020 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// 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.
///
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Lars Maier
////////////////////////////////////////////////////////////////////////////////
#include <list>
#include <vector>
#include <deque>
#include "gtest/gtest.h"
#include "Containers/Enumerate.h"
#if GTEST_HAS_TYPED_TEST_P
using namespace arangodb;
template<typename T>
struct NonCopyableType {
explicit NonCopyableType(T t) : t(std::move(t)) {}
NonCopyableType(NonCopyableType const&) = delete;
NonCopyableType(NonCopyableType&&) = default;
NonCopyableType& operator=(NonCopyableType const&) = delete;
NonCopyableType& operator=(NonCopyableType&&) = default;
T t;
};
template<template<typename...> typename C>
struct TemplateTemplateType {
template<typename... T>
using type = C<T...>;
};
template<typename TT, typename... T>
using template_template_type_t = typename TT::template type<T...>;
template<typename TT>
class EnumerateVectorLikeTest : public ::testing::Test {};
TYPED_TEST_CASE_P(EnumerateVectorLikeTest);
TYPED_TEST_P(EnumerateVectorLikeTest, test_vector_iterate) {
template_template_type_t<TypeParam, unsigned> v = {3, 5, 4, 1, 6, 8, 7};
unsigned i = 0;
auto iter = v.begin();
for (auto [idx, e] : enumerate(v)) {
EXPECT_EQ(idx, i);
EXPECT_EQ(e, *iter);
++i;
++iter;
}
EXPECT_EQ(i, v.size());
}
TYPED_TEST_P(EnumerateVectorLikeTest, test_vector_modify) {
template_template_type_t<TypeParam, unsigned> v = {3, 5, 4, 1, 6, 8, 7};
for (auto [idx, e] : enumerate(v)) {
e = idx;
}
unsigned i = 0;
for (auto const& e : v) {
EXPECT_EQ(i, e);
i++;
}
}
TYPED_TEST_P(EnumerateVectorLikeTest, test_vector_no_copy) {
template_template_type_t<TypeParam, NonCopyableType<unsigned>> v;
v.emplace_back(1);
unsigned i = 0;
auto iter = v.begin();
for (auto const [idx, e] : enumerate(v)) {
EXPECT_EQ(idx, i);
EXPECT_EQ(e.t, iter->t);
++i;
++iter;
}
}
REGISTER_TYPED_TEST_CASE_P(EnumerateVectorLikeTest, test_vector_iterate,
test_vector_modify, test_vector_no_copy);
using VectorLikeTypes = ::testing::Types<TemplateTemplateType<std::vector>,
TemplateTemplateType<std::list>,
TemplateTemplateType<std::deque>>;
INSTANTIATE_TYPED_TEST_CASE_P(EnumerateVectorLikeTestInstant,
EnumerateVectorLikeTest, VectorLikeTypes);
#endif
|
7c23f4bceefca98413c04c550e69e9dfd5f51b9a | da94b9bd63a9eb355e41385521c7ba43b3c43cf9 | /src/Mesh/CElements.cpp | 65acf230b8a29d7be692979681d76017dc7ce1dc | [] | no_license | zhanggjun/coolfluid3 | 9630cc4c4e6176d818ad20c9835ba053ce7c7175 | 04a180e1f8fdc20018dd297c00a273462e686d03 | refs/heads/master | 2023-03-26T02:54:11.595910 | 2011-08-09T07:52:37 | 2011-08-09T07:52:37 | 526,964,683 | 1 | 0 | null | 2022-08-20T15:25:58 | 2022-08-20T15:25:57 | null | UTF-8 | C++ | false | false | 4,064 | cpp | CElements.cpp | // Copyright (C) 2010 von Karman Institute for Fluid Dynamics, Belgium
//
// This software is distributed under the terms of the
// GNU Lesser General Public License version 3 (LGPLv3).
// See doc/lgpl.txt and doc/gpl.txt for the license text.
#include <set>
#include "Common/Log.hpp"
#include "Common/CLink.hpp"
#include "Common/CGroup.hpp"
#include "Common/CBuilder.hpp"
#include "Mesh/CElements.hpp"
#include "Mesh/CConnectivity.hpp"
#include "Mesh/CList.hpp"
#include "Mesh/CNodes.hpp"
#include "Mesh/CSpace.hpp"
namespace CF {
namespace Mesh {
using namespace Common;
////////////////////////////////////////////////////////////////////////////////
Common::ComponentBuilder < CElements, CEntities, LibMesh > CElements_Builder;
////////////////////////////////////////////////////////////////////////////////
CElements::CElements ( const std::string& name ) :
CEntities ( name )
{
properties()["brief"] = std::string("Holds information of elements of one type");
properties()["description"] = std::string("Container component that stores the element to node connectivity,\n")
+std::string("a link to node storage, a list of used nodes, and global numbering unique over all processors");
}
////////////////////////////////////////////////////////////////////////////////
CElements::~CElements()
{
}
//////////////////////////////////////////////////////////////////////////////
void CElements::initialize(const std::string& element_type_name)
{
CEntities::initialize(element_type_name);
node_connectivity().set_row_size(m_element_type->nb_nodes());
CSpace& node_space = space(MeshSpaces::MESH_NODES);
node_space.connectivity().set_row_size(node_space.nb_states());
}
void CElements::initialize(const std::string& element_type_name, CNodes& nodes)
{
initialize(element_type_name);
set_nodes(nodes);
}
void CElements::set_nodes(CNodes& nodes)
{
CEntities::set_nodes(nodes);
node_connectivity().create_lookup().add(nodes);
//node_space.connectivity().create_lookup().add(nodes);
}
//////////////////////////////////////////////////////////////////////////////
CConnectivity& CElements::node_connectivity()
{
return space(MeshSpaces::MESH_NODES).connectivity();
}
//////////////////////////////////////////////////////////////////////////////
const CConnectivity& CElements::node_connectivity() const
{
return space(MeshSpaces::MESH_NODES).connectivity();
}
////////////////////////////////////////////////////////////////////////////////
RealMatrix CElements::get_coordinates(const Uint elem_idx) const
{
const CTable<Real>& coords_table = nodes().coordinates();
CConnectivity::ConstRow elem_nodes = node_connectivity()[elem_idx];
const Uint nb_nodes=elem_nodes.size();
const Uint dim=coords_table.row_size();
RealMatrix elem_coords(nb_nodes,dim);
for(Uint node = 0; node != nb_nodes; ++node)
for (Uint d=0; d<dim; ++d)
elem_coords(node,d) = coords_table[elem_nodes[node]][d];
return elem_coords;
}
////////////////////////////////////////////////////////////////////////////////
void CElements::put_coordinates(RealMatrix& elem_coords, const Uint elem_idx) const
{
const CTable<Real>& coords_table = nodes().coordinates();
CConnectivity::ConstRow elem_nodes = node_connectivity()[elem_idx];
const Uint nb_nodes=elem_coords.rows();
const Uint dim=elem_coords.cols();
for(Uint node = 0; node != nb_nodes; ++node)
for (Uint d=0; d<dim; ++d)
elem_coords(node,d) = coords_table[elem_nodes[node]][d];
}
////////////////////////////////////////////////////////////////////////////////
CTable<Uint>::ConstRow CElements::get_nodes(const Uint elem_idx) const
{
cf_assert_desc( to_str(elem_idx)+ ">="+to_str(node_connectivity().size()) , elem_idx < node_connectivity().size() );
return node_connectivity()[elem_idx];
// CTable<Uint>::ConstRow elem_nodes = connectivity_table(space)[elem_idx];
// return std::vector<Uint> (elem_nodes.begin(),elem_nodes.end());
}
////////////////////////////////////////////////////////////////////////////////
} // Mesh
} // CF
|
dc70ea20fe4e5456ef561eaa2b3d9abb276b2203 | 503892d2a258fd34eedc353f5a1bbde2b63c2967 | /emitter.cpp | cf83273daf14c3f2caac02200e7d63429f54d7ba | [] | no_license | antonstakhouski/fire-simulation | 9d2d99d555418e74967250e05a6f1a6487121a19 | 8b51654063605ef5319d7ded039292aa9500491e | refs/heads/master | 2020-12-27T05:38:36.873305 | 2020-05-01T15:14:31 | 2020-05-01T15:14:31 | 237,782,636 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,733 | cpp | emitter.cpp | /*******************************************************************
** This code is part of Breakout.
**
** Breakout is free software: you can redistribute it and/or modify
** it under the terms of the CC BY 4.0 license as published by
** Creative Commons, either version 4 of the License, or (at your
** option) any later version.
******************************************************************/
#include "emitter.h"
#include <iostream>
#include <algorithm>
#define N_LOW_P_POINTS 500
#define Y_OFFSET 0.4f
#define VELOCITY_LOW 0.5f
#define VELOCITY_HIGH 1.5f
#define LIFE_MEAN 3.0f
#define LIFE_DEVATION 1.0f
#define SCALE_MEAN 0.05f
#define SCALE_DEVIATION 0.025f
Emitter::Emitter(const Shader& shader,
const Texture2D& texture,
const glm::vec3& position,
const glm::vec3& direction,
GLfloat radius,
GLfloat energy,
GLfloat velocity,
GLuint amount)
: m_shader(shader),
m_texture(texture),
m_amount(amount),
m_position(position),
m_direction(glm::normalize(direction)),
m_radius(radius),
m_energy(energy),
// emit in direction inverse to movement
m_velocity(-velocity)
{
Init();
}
bool Emitter::IsAlive() const
{
return m_energy > 0.0f;
}
void Emitter::Update(GLfloat dt, GLuint nNewParticles, const glm::vec3& offset)
{
m_energy -= dt;
if (IsAlive()) {
// Add new particles
for (GLuint i = 0; i < nNewParticles; ++i)
{
const int64_t res = FirstUnusedParticle();
size_t unusedParticle = 0;
if (res < 0) {
std::uniform_int_distribution<> distribution(0, m_amount);
unusedParticle = distribution(m_rndGenerator);
} else {
unusedParticle = static_cast<size_t>(res);
}
m_particles[unusedParticle] = GenerateParticle(offset);
}
}
m_deadIndexes.clear();
// Update low pressure points
// for (GLuint i = 0; i < N_LOW_P_POINTS; ++i) {
// m_lowPressure[i] = GetLPPoint();
// }
std::sort(m_lowPressure.begin(), m_lowPressure.end(),
[](const auto& a, const auto& b) {
return (glm::length(a) < glm::length(b)) && (a.y < b.y);
});
// TODO:
// Update all particles
for (size_t i = 0; i < m_amount; ++i)
{
Particle& p = m_particles[i];
if (!p.Update(dt, m_lowPressure)) {
m_deadIndexes.push_back(i);
}
}
}
glm::vec3 Emitter::GetLPPoint()
{
std::normal_distribution<> xz_distribution(0.0f, m_radius / 1.5);
std::normal_distribution<> y_distribution(0.0f, 20.0f / 4);
// std::normal_distribution<> xz_distribution(0.0f, m_radius / 4);
// std::uniform_int_distribution<> y_distribution(m_position.y + 1,
// m_position.y + 20);
return glm::vec3(xz_distribution(m_rndGenerator),
y_distribution(m_rndGenerator),
xz_distribution(m_rndGenerator));
}
// Render all particles
void Emitter::Draw()
{
// Use additive blending to give it a 'glow' effect
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
m_shader.Use();
glm::vec3* ptrOffset = static_cast<glm::vec3*>(glMapNamedBuffer(m_offsetVBO, GL_WRITE_ONLY));
glm::vec4* ptrColors = static_cast<glm::vec4*>(glMapNamedBuffer(m_colorVBO, GL_WRITE_ONLY));
GLfloat* ptrScale = static_cast<GLfloat*>(glMapNamedBuffer(m_scaleVBO, GL_WRITE_ONLY));
for (size_t i = 0; i < m_amount; ++i) {
if (m_particles[i].IsAlive()) {
ptrOffset[i] = m_particles[i].GetPosition();
ptrColors[i] = m_particles[i].GetColor();
ptrScale[i] = m_particles[i].GetScale();
}
}
glUnmapNamedBuffer(m_offsetVBO);
glUnmapNamedBuffer(m_colorVBO);
glUnmapNamedBuffer(m_scaleVBO);
glBindVertexArray(m_VAO);
m_texture.Bind();
glDrawArraysInstanced(GL_TRIANGLES, 0, 36, m_amount);
glBindVertexArray(0);
// Don't forget to reset to default blending mode
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
}
void Emitter::Init()
{
// Set up mesh and attribute properties
GLuint VBO;
GLfloat particle_cube[] = {
// positions // texture coords
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f,
0.5f, -0.5f, -0.5f, 1.0f, 0.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 1.0f,
0.5f, 0.5f, 0.5f, 1.0f, 1.0f,
-0.5f, 0.5f, 0.5f, 0.0f, 1.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f,
-0.5f, 0.5f, 0.5f, 1.0f, 0.0f,
-0.5f, 0.5f, -0.5f, 1.0f, 1.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f,
-0.5f, 0.5f, 0.5f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f,
0.5f, -0.5f, -0.5f, 0.0f, 1.0f,
0.5f, -0.5f, -0.5f, 0.0f, 1.0f,
0.5f, -0.5f, 0.5f, 0.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f,
0.5f, -0.5f, -0.5f, 1.0f, 1.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f,
-0.5f, 0.5f, 0.5f, 0.0f, 0.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f
};
glGenVertexArrays(1, &m_VAO);
glGenBuffers(1, &VBO);
glBindVertexArray(m_VAO);
// Fill mesh buffer
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(particle_cube), particle_cube, GL_STATIC_DRAW);
// Set mesh attributes
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(0);
// memory consuming but fast and reliable
m_particles.reserve(m_amount);
m_deadIndexes.reserve(m_amount);
// Create this->amount default particle instances
for (GLuint i = 0; i < m_amount; ++i) {
m_particles.push_back(Particle());
}
m_lowPressure.reserve(N_LOW_P_POINTS);
for (GLuint i = 0; i < N_LOW_P_POINTS; ++i) {
m_lowPressure.push_back(GetLPPoint());
}
glm::mat4 model(1.0f);
model = glm::translate(model, m_position);
m_shader.SetMatrix4("model", model);
// setUp VBOs
glGenBuffers(1, &m_offsetVBO);
glGenBuffers(1, &m_colorVBO);
glGenBuffers(1, &m_scaleVBO);
glBindBuffer(GL_ARRAY_BUFFER, m_offsetVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(glm::vec3) * m_amount, nullptr, GL_MAP_WRITE_BIT | GL_DYNAMIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, m_colorVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(glm::vec4) * m_amount, nullptr, GL_MAP_WRITE_BIT | GL_DYNAMIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, m_scaleVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat) * m_amount, nullptr, GL_MAP_WRITE_BIT | GL_DYNAMIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, 0);
// setUp VAO
glBindVertexArray(m_VAO);
glEnableVertexAttribArray(2);
glBindBuffer(GL_ARRAY_BUFFER, m_offsetVBO);
glVertexAttribPointer(2, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glVertexAttribDivisor(2, 1);
glEnableVertexAttribArray(3);
glBindBuffer(GL_ARRAY_BUFFER, m_colorVBO);
glVertexAttribPointer(3, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(float), (void*)0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glVertexAttribDivisor(3, 1);
glEnableVertexAttribArray(4);
glBindBuffer(GL_ARRAY_BUFFER, m_scaleVBO);
glVertexAttribPointer(4, 1, GL_FLOAT, GL_FALSE, 1 * sizeof(float), (void*)0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glVertexAttribDivisor(4, 1);
}
int64_t Emitter::FirstUnusedParticle()
{
if (!m_deadIndexes.empty()) {
int64_t res = m_deadIndexes.back();
m_deadIndexes.pop_back();
return res;
} else {
return -1;
}
}
// can't be const, ca'z modifies m_rndGenerator
Particle Emitter::GenerateParticle(const glm::vec3& offset)
{
// we set stddev as R / 4
std::normal_distribution<> posDistribution(0.0f, m_radius / 4);
std::uniform_real_distribution yDistribution(0.0f, Y_OFFSET);
const glm::vec3 random = {posDistribution(m_rndGenerator), yDistribution(m_rndGenerator),
posDistribution(m_rndGenerator)};
std::uniform_real_distribution velocityDistribution(VELOCITY_LOW, VELOCITY_HIGH);
const GLfloat velocityFactor = velocityDistribution(m_rndGenerator);
const glm::vec3 position = random + offset;
const glm::vec3 velocity = m_direction * m_velocity * velocityFactor;
const GLfloat fColor = 0.5 + ((rand() % 100) / 100.0f);
const glm::vec4 color(fColor, fColor, fColor, 1.0f);
std::normal_distribution<> lifeDistriburion(LIFE_MEAN, LIFE_DEVATION);
const GLfloat fLife = lifeDistriburion(m_rndGenerator);
std::normal_distribution<> scaleDistriburion(SCALE_MEAN, SCALE_DEVIATION);
const GLfloat fScale = scaleDistriburion(m_rndGenerator);
return Particle(position, velocity, color, fLife, fScale);
}
|
f2f67668079bf3f60eaaa2889ab8ce2e824c92fe | 022318f4accd2bfcbb2d1be48df5160235932891 | /FoundationEx/MemDebug.h | 2ecf07cbfc8a226695c491dbf654b91128dea930 | [] | no_license | The-E/Starshatter-Experimental | 9bb119708a5c51c235b2c81bff748a5429b6fcbd | 8cdf60be808a69390b84a8788cbe3c1e8d36158a | refs/heads/master | 2016-09-06T11:03:47.002419 | 2012-05-30T12:29:22 | 2012-05-30T12:29:22 | 4,463,716 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,092 | h | MemDebug.h | /* Project FoundationEx
Destroyer Studios LLC
Copyright © 1997-2004. All Rights Reserved.
SUBSYSTEM: FoundationEx
FILE: MemDebug.h
AUTHOR: John DiCamillo
OVERVIEW
========
Memory Debugging class
*/
#ifndef MemDebug_h
#define MemDebug_h
// +--------------------------------------------------------------------+
#ifdef WIN32
#include <windows.h>
#include <windowsx.h>
#endif
#ifdef FOUNDATION_USE_MFC
#ifndef _DEBUG
inline void* __cdecl operator new(unsigned int s, const char*, int) { return ::operator new(s); }
inline void __cdecl operator delete(void* p, const char*, int) { ::operator delete(p); }
#else
void* __cdecl operator new(unsigned int s, const char*, int);
void __cdecl operator delete(void* p, const char*, int);
#endif
#else
//
// MEMORY DEBUGGING NOT SUPPORTED UNDER MFC
//
// +--------------------------------------------------------------------+
class Memory
{
public:
enum LEVEL { OFF, LEAKS, PERIODIC, MAXIMAL };
static void OpenLog(const char* filename=0);
static void CloseLog();
static void Check();
static void Checkpoint();
static void Stats();
static void DumpLeaks();
static void SetLevel(LEVEL l);
};
// +--------------------------------------------------------------------+
#ifndef _DEBUG
inline void* __cdecl operator new(unsigned int s, const char*, int) { return ::operator new(s); }
inline void __cdecl operator delete(void* p, const char*, int) { ::operator delete(p); }
#else
/*_CRTIMP*/
void* __cdecl operator new(unsigned int, int, const char*, int);
inline void* __cdecl operator new(unsigned int s, const char* f, int l)
{ return ::operator new(s, 1, f, l); }
inline void* __cdecl operator new(unsigned int s)
{ return ::operator new(s, 1, __FILE__, __LINE__); }
inline void __cdecl operator delete(void* p, const char*, int)
{ ::operator delete(p); }
#endif _DEBUG
// +--------------------------------------------------------------------+
#endif FOUNDATION_USE_MFC
#endif MemDebug_h
|
86a4e260a1ab62828e8721426e3a45fd7ad41edb | c4e1b2fad57e164b1ec250d7ef58ca6b325be916 | /CSES/apartments/apartments.cpp | 601ff6f525f95044b56d4c3421ddbb35c6698d4a | [] | no_license | xSeanliux/CompetitiveProgramming | ab8030fdb0dc9c4e29e4cc8c52e020e6eb564372 | 011c7ad152d7090fa3e9143a27119a2192d68144 | refs/heads/master | 2023-06-08T11:00:48.826892 | 2023-05-25T22:58:43 | 2023-05-25T22:58:43 | 158,057,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 674 | cpp | apartments.cpp | #include <iostream>
#include <algorithm>
#include <utility>
#include <vector>
#include <deque>
#define pii pair<int,int>
#define F first
#define S second
using namespace std;
int N, M, K, ans, x;
vector<pii> points;
deque<int> dq;
int main(){
cin >> N >> M >> K;
for(int i = 0; i < N; i++){
cin >> x;
points.emplace_back(x + K, 2);
}
for(int i = 0; i < M; i++){
cin >> x;
points.emplace_back(x, 1);
}
sort(points.begin(), points.end());
for(auto [p, t] : points){
if(t == 1){
dq.push_back(p);
} else {
while(dq.size() && dq.front() < p - 2 * K) dq.pop_front();
if(dq.size()){
ans++;
dq.pop_front();
}
}
}
cout << ans << endl;
}
|
bfcb79beaf46d64c27271ddb9bd357fbe32956e1 | f0c67159d0345306b8445db534bf9640d56acfc7 | /3-Greedy Method/OptimalMergePattern.cpp | c4d5da39d4b6ba198097143dc700698be632cef6 | [] | no_license | fahdarhalai/Algorithms | e65207e48ce465043658cd77151e0abb220df5d5 | 0ee60e5d72875494e0475cf3a972bce86b85dedc | refs/heads/master | 2022-10-13T07:33:23.282942 | 2020-06-09T13:11:09 | 2020-06-09T13:11:09 | 255,584,560 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,144 | cpp | OptimalMergePattern.cpp | #include <stdio.h>
#include <stdlib.h>
// Merging two arrays
int* Merge(int A[], int B[]){
int a = A[0]; // The size of array A is stored in A[0]
int b = B[0]; // The size of array B is stored in B[0]
int *C = (int*)malloc(sizeof(int)*(a+b+1)); // Actual size = Effective size(a+b) + one for storing the Effective size
C[0] = a+b; // Effective size
int i=1, j=1, k=1;
while(i<=a && j<=b){
if(A[i] <= B[j]){
C[k] = A[i];
i++;
}else{
C[k] = B[j];
j++;
}
k++;
}
while(i<=a){
C[k] = A[i];
i++;
k++;
}
while(j<=b){
C[k] = B[j];
j++;
k++;
}
return C;
}
// Sort the array of N arrays by their sizes in ASC order
void Sort(int *Arrays[], int N){
for(int i=0; i<N; i++){
for(int j=i+1; j<N; j++){
if(Arrays[i][0] > Arrays[j][0]){
int *temp = Arrays[i];
Arrays[i] = Arrays[j];
Arrays[j] = temp;
}
}
}
}
int* OptimalMerge(int *Arrays[], int N){
Sort(Arrays, N);
int **list = (int**)calloc(N-1, sizeof(int*));
int i = 0, j = 0, n = N-1;
list[j++] = Merge(Arrays[0], Arrays[1]);
for(int k=2; k<N; k++){
list[j++] = Arrays[k];
}
Sort(list, n);
while(n > 1){
list[0] = Merge(list[0], list[1]);
j = 1;
for(int k=2; k<n; k++){
list[j] = list[k];
j++;
}
n--;
Sort(list, n);
}
return list[0];
}
int main(){
/**
NOTE: All of the arrays that should be merged need to store their sizes
as C doesn't have a way to retrieve array size, we devote the element
at index 0 to be the effective size of the array.
The actual size of the array is always equal to the effective size + 1.
**/
int N = 4; // Number of arrays to merge
int A1[] = {6, 1, 5, 9, 13, 14, 15}; // A1[0] is the effective size of A1 while A1[0]+1 is the actual size
int A2[] = {5, 2, 6, 10, 12, 16};
int A3[] = {2, 3, 7};
int A4[] = {3, 4, 8, 11};
int *Arrays[N] = {A1, A2, A3, A4}; // Array of N arrays
// Finding the total size of the merged arrays
int M = 0;
for(int i=0; i<N; i++){
M += Arrays[i][0];
}
// Retrieving the merged array
int *R = OptimalMerge(Arrays, N);
for(int i=1; i<=M; i++){
printf("%d ", R[i]);
}
return 0;
}
|
7be60bc65fcae9f39e94905421d9ccf85f6992d3 | e2a4c792d294c5f0b2ad7f192d17375d2f952f37 | /thereminimum.cpp | bdc0e17ff92103eab4b9edf1825b71df3e31734d | [] | no_license | btabram/HackCambridge2018 | 1d3b9f33530608d645d698fdd9da020742ecfd3b | 1c0ce2a2bc7cfb2ebea75c17f4a01495d3e34413 | refs/heads/master | 2021-05-10T21:28:10.501455 | 2018-01-21T14:42:03 | 2018-01-21T14:42:03 | 118,229,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,903 | cpp | thereminimum.cpp | #include <iostream>
#include <cstring>
#include "Leap.h"
using namespace Leap;
class SampleListener : public Listener {
public:
virtual void onInit(const Controller&);
virtual void onConnect(const Controller&);
virtual void onDisconnect(const Controller&);
virtual void onExit(const Controller&);
virtual void onFrame(const Controller&);
private:
};
const std::string fingerNames[] = {"Thumb", "Index", "Middle", "Ring", "Pinky"};
const std::string boneNames[] = {"Metacarpal", "Proximal", "Middle", "Distal"};
const std::string stateNames[] = {"STATE_INVALID", "STATE_START", "STATE_UPDATE", "STATE_END"};
void SampleListener::onInit(const Controller& controller) {
std::cout << "Initialized" << std::endl;
}
void SampleListener::onConnect(const Controller& controller) {
std::cout << "Connected" << std::endl;
controller.enableGesture(Gesture::TYPE_CIRCLE);
controller.enableGesture(Gesture::TYPE_KEY_TAP);
controller.enableGesture(Gesture::TYPE_SCREEN_TAP);
controller.enableGesture(Gesture::TYPE_SWIPE);
}
void SampleListener::onDisconnect(const Controller& controller) {
// Note: not dispatched when running in a debugger.
std::cout << "Disconnected" << std::endl;
}
void SampleListener::onExit(const Controller& controller) {
std::cout << "Exited" << std::endl;
}
void SampleListener::onFrame(const Controller& controller) {
// Get the most recent frame and report some basic information
const Frame frame = controller.frame();
/*
std::cout << "Frame id: " << frame.id()
<< ", timestamp: " << frame.timestamp()
<< ", hands: " << frame.hands().count()
<< ", extended fingers: " << frame.fingers().extended().count()
<< ", tools: " << frame.tools().count()
<< ", gestures: " << frame.gestures().count() << std::endl;
*/
HandList hands = frame.hands();
if (hands.count()>2)
{
std::cout << "More than two hands. Nope." << std::endl;
exit(123);
}
if (hands.count()==1)
{
Hand hand = hands[0];
const double pitch = 5.*hand.palmPosition()[1];
const double roll = (hand.isLeft())? hand.palmNormal().roll() *RAD_TO_DEG : -1.*hand.palmNormal().roll() *RAD_TO_DEG;
double vol = (roll + 90)/180;
vol = ( vol > 1) ? 1 : vol ;
vol = ( vol < 0) ? 0 : vol ;
if (!frame.hands().isEmpty()){
std::cout << "(" << pitch << ", " << vol << ")" << std::endl;
}
}
else if (hands.count()==2)
{
Hand handL, handR;
if ((hands[0].isLeft() && hands[1].isLeft()) || (hands[0].isRight() && hands[1].isRight()))
{
std::cout << "Both hands of the same sign. Nope." << std::endl;
exit(123);
} else if (hands[0].isLeft() && hands[1].isRight())
{
handL=hands[0];
handR=hands[1];
} else if (hands[1].isLeft() && hands[0].isRight())
{
handR=hands[0];
handL=hands[1];
}
const double pitchL = 5.*handL.palmPosition()[1];
const double rollL = handL.palmNormal().roll() *RAD_TO_DEG ;
double volL = (rollL + 90)/180;
volL = ( volL > 1) ? 1 : volL ;
volL = ( volL < 0) ? 0 : volL ;
const double pitchR = 5.*handR.palmPosition()[1];
const double rollR = -1.*handR.palmNormal().roll() *RAD_TO_DEG;
double volR = (rollR + 90)/180;
volR = ( volR > 1) ? 1 : volR ;
volR = ( volR < 0) ? 0 : volR ;
if (!hands.isEmpty()){
std::cout << "(" << pitchL << ", " << volL << ", " << pitchR << ", " << volR << ")" << std::endl;
}
}
}
int main(int argc, char** argv) {
Controller controller;
SampleListener listener;
controller.addListener(listener);
if (argc > 1 && strcmp(argv[1], "--bg") == 0)
controller.setPolicy(Leap::Controller::POLICY_BACKGROUND_FRAMES);
std::cout << "Press Enter to quit..." << std::endl;
std::cin.get();
controller.removeListener(listener);
return 0;
} |
fc68c8528d8ded8b1521f0e42d07e5ff262f7fa0 | 82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5 | /Airfoil/wingMotion/wingMotion2D_pimpleFoam/0.14/polyMesh/points | 9bb776eb10da08e006a442f705b622516dbd53dc | [
"MIT"
] | permissive | ishantja/KUHPC | 6355c61bf348974a7b81b4c6bf8ce56ac49ce111 | 74967d1b7e6c84fdadffafd1f7333bf533e7f387 | refs/heads/main | 2023-01-21T21:57:02.402186 | 2020-11-19T13:10:42 | 2020-11-19T13:10:42 | 312,429,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 780,589 | points | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class vectorField;
location "0.14/polyMesh";
object points;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
26316
(
(-1.2 -2.2 0.1)
(-1.02836 -2.2 0.1)
(-1.0284 -2.01675 0.1)
(-1.2 -2.01667 0.1)
(-1.02845 -1.83342 0.1)
(-1.2 -1.83333 0.1)
(-1.0285 -1.65009 0.1)
(-1.2 -1.65 0.1)
(-1.02855 -1.46674 0.1)
(-1.11428 -1.46671 0.1)
(-1.2 -1.46667 0.1)
(-1.1143 -1.37504 0.1)
(-1.2 -1.375 0.1)
(-1.2 -1.28333 0.1)
(-1.11432 -1.28338 0.1)
(-1.11433 -1.19171 0.1)
(-1.2 -1.19167 0.1)
(-1.2 -1.1 0.1)
(-1.11435 -1.10005 0.1)
(-1.11437 -1.00838 0.1)
(-1.2 -1.00833 0.1)
(-1.2 -0.916667 0.1)
(-1.11439 -0.916715 0.1)
(-1.11441 -0.825051 0.1)
(-1.2 -0.825 0.1)
(-1.2 -0.733333 0.1)
(-1.11443 -0.733386 0.1)
(-1.11444 -0.641721 0.1)
(-1.2 -0.641667 0.1)
(-1.2 -0.55 0.1)
(-1.11446 -0.550056 0.1)
(-1.11448 -0.458391 0.1)
(-1.2 -0.458333 0.1)
(-1.2 -0.366667 0.1)
(-1.11449 -0.366726 0.1)
(-1.11451 -0.27506 0.1)
(-1.2 -0.275 0.1)
(-1.2 -0.183333 0.1)
(-1.11452 -0.183395 0.1)
(-1.11452 -0.0917285 0.1)
(-1.2 -0.0916667 0.1)
(-1.2 0 0.1)
(-1.11452 -6.20099e-05 0.1)
(-1.11452 0.0916048 0.1)
(-1.2 0.0916667 0.1)
(-1.2 0.183333 0.1)
(-1.11452 0.183272 0.1)
(-1.11451 0.27494 0.1)
(-1.2 0.275 0.1)
(-1.2 0.366667 0.1)
(-1.11449 0.366608 0.1)
(-1.11448 0.458276 0.1)
(-1.2 0.458333 0.1)
(-1.2 0.55 0.1)
(-1.11446 0.549944 0.1)
(-1.11444 0.641612 0.1)
(-1.2 0.641667 0.1)
(-1.2 0.733333 0.1)
(-1.11443 0.733281 0.1)
(-1.11441 0.824949 0.1)
(-1.2 0.825 0.1)
(-1.2 0.916667 0.1)
(-1.11439 0.916618 0.1)
(-1.11437 1.00829 0.1)
(-1.2 1.00833 0.1)
(-1.2 1.1 0.1)
(-1.11435 1.09995 0.1)
(-1.11433 1.19162 0.1)
(-1.2 1.19167 0.1)
(-1.2 1.28333 0.1)
(-1.11432 1.28329 0.1)
(-1.1143 1.37497 0.1)
(-1.2 1.375 0.1)
(-1.2 1.46667 0.1)
(-1.11429 1.46665 0.1)
(-1.02854 1.46685 0.1)
(-1.02831 1.65049 0.1)
(-1.2 1.65 0.1)
(-1.02824 1.83417 0.1)
(-1.2 1.83387 0.1)
(-1.02804 2.01728 0.1)
(-1.2 2.01724 0.1)
(-1.02778 2.2 0.1)
(-1.2 2.2 0.1)
(-0.85612 -2.2 0.1)
(-0.85642 -2.01697 0.1)
(-0.85678 -1.83375 0.1)
(-0.85688 -1.65042 0.1)
(-0.85704 -1.46688 0.1)
(-0.942809 -1.46678 0.1)
(-0.942854 -1.37512 0.1)
(-1.02858 -1.37508 0.1)
(-1.02862 -1.28342 0.1)
(-0.942902 -1.28346 0.1)
(-0.942953 -1.19179 0.1)
(-1.02865 -1.19175 0.1)
(-1.02869 -1.10009 0.1)
(-0.943007 -1.10013 0.1)
(-0.943063 -1.00847 0.1)
(-0.985895 -1.00845 0.1)
(-1.02872 -1.00843 0.1)
(-1.02876 -0.916763 0.1)
(-0.985943 -0.916786 0.1)
(-0.985992 -0.870958 0.1)
(-1.02881 -0.870935 0.1)
(-1.02884 -0.733437 0.1)
(-0.986043 -0.733463 0.1)
(-0.986093 -0.687634 0.1)
(-1.02889 -0.687609 0.1)
(-1.02892 -0.550112 0.1)
(-0.986141 -0.550139 0.1)
(-0.986191 -0.504311 0.1)
(-1.02897 -0.504284 0.1)
(-1.02898 -0.366785 0.1)
(-0.986227 -0.366814 0.1)
(-0.986274 -0.320985 0.1)
(-1.02903 -0.320956 0.1)
(-1.02903 -0.183456 0.1)
(-0.986288 -0.183486 0.1)
(-0.9863281318 -0.1376454137 0.1)
(-1.02908 -0.137627 0.1)
(-1.02905 -0.000123943 0.1)
(-0.9863106224 -2.520405421e-05 0.1)
(-0.9863351151 0.04578602565 0.1)
(-1.02908 0.0457059 0.1)
(-1.02903 0.183211 0.1)
(-0.986288 0.18318 0.1)
(-0.986305 0.229012 0.1)
(-1.02906 0.229042 0.1)
(-1.02898 0.366549 0.1)
(-0.986228 0.36652 0.1)
(-0.986235 0.412352 0.1)
(-1.029 0.41238 0.1)
(-1.02892 0.549888 0.1)
(-0.986141 0.549861 0.1)
(-0.986143 0.595694 0.1)
(-1.02893 0.59572 0.1)
(-1.02884 0.733229 0.1)
(-0.986043 0.733204 0.1)
(-0.986043 0.779037 0.1)
(-1.02885 0.779061 0.1)
(-1.02876 0.91657 0.1)
(-0.985944 0.916547 0.1)
(-0.985942 0.962381 0.1)
(-1.02877 0.962403 0.1)
(-1.02869 1.09992 0.1)
(-0.943013 1.09996 0.1)
(-0.942949 1.19183 0.1)
(-1.02865 1.19161 0.1)
(-1.02862 1.28331 0.1)
(-0.942852 1.2837 0.1)
(-0.942603 1.37575 0.1)
(-1.02858 1.3751 0.1)
(-0.94248 1.46749 0.1)
(-0.856309 1.46797 0.1)
(-0.856172 1.65126 0.1)
(-0.856002 1.83463 0.1)
(-0.855752 2.01733 0.1)
(-0.855556 2.2 0.1)
(-0.683333 -2.2 0.1)
(-0.683732 -2.01725 0.1)
(-0.684123 -1.8345 0.1)
(-0.68446 -1.65166 0.1)
(-0.684565 -1.46844 0.1)
(-0.77116 -1.46732 0.1)
(-0.77125 -1.37562 0.1)
(-0.857103 -1.37519 0.1)
(-0.857167 -1.28353 0.1)
(-0.771348 -1.2839 0.1)
(-0.771487 -1.19201 0.1)
(-0.857238 -1.19184 0.1)
(-0.85731 -1.10017 0.1)
(-0.771588 -1.10027 0.1)
(-0.771687 -1.00855 0.1)
(-0.814539 -1.00853 0.1)
(-0.857385 -1.00851 0.1)
(-0.857463 -0.916853 0.1)
(-0.814627 -0.916875 0.1)
(-0.814684 -0.871047 0.1)
(-0.857517 -0.871025 0.1)
(-0.857628 -0.733536 0.1)
(-0.814814 -0.733559 0.1)
(-0.814875 -0.687732 0.1)
(-0.857684 -0.687708 0.1)
(-0.857795 -0.550219 0.1)
(-0.8150765083 -0.5500792889 0.1)
(-0.815470599 -0.5033774119 0.1)
(-0.8578553064 -0.5043769677 0.1)
(-0.8587150466 -0.3641090171 0.1)
(-0.8170865829 -0.3602033795 0.1)
(-0.8174874578 -0.311990159 0.1)
(-0.8590493242 -0.3166948823 0.1)
(-0.8593291112 -0.1743547283 0.1)
(-0.8175226942 -0.1678688333 0.1)
(-0.817171954 -0.1203885476 0.1)
(-0.8591783269 -0.1272522862 0.1)
(-0.8581171553 0.01202207539 0.1)
(-0.8153483425 0.01936662961 0.1)
(-0.8146814474 0.06494135732 0.1)
(-0.8577215938 0.05765163948 0.1)
(-0.8568255259 0.1923368601 0.1)
(-0.8131136254 0.1988187478 0.1)
(-0.8129052818 0.2426629001 0.1)
(-0.8567610245 0.2366643017 0.1)
(-0.8571935611 0.3692580105 0.1)
(-0.8133085642 0.3731784885 0.1)
(-0.8137473317 0.416767146 0.1)
(-0.8574872858 0.4137339214 0.1)
(-0.857795 0.549781 0.1)
(-0.8149330228 0.5499334505 0.1)
(-0.814972 0.595592 0.1)
(-0.857769 0.595617 0.1)
(-0.857628 0.733131 0.1)
(-0.814815 0.733107 0.1)
(-0.814779 0.778944 0.1)
(-0.8576 0.778967 0.1)
(-0.857464 0.916483 0.1)
(-0.814633 0.916519 0.1)
(-0.814603 0.96244 0.1)
(-0.857438 0.962328 0.1)
(-0.85725 1.10049 0.1)
(-0.770908 1.1016 0.1)
(-0.770553 1.19343 0.1)
(-0.856875 1.19274 0.1)
(-0.856623 1.28457 0.1)
(-0.770431 1.28507 0.1)
(-0.770351 1.37669 0.1)
(-0.856389 1.37633 0.1)
(-0.770297 1.46831 0.1)
(-0.684227 1.46864 0.1)
(-0.683965 1.6519 0.1)
(-0.683689 1.8347 0.1)
(-0.683502 2.01736 0.1)
(-0.683333 2.2 0.1)
(-0.511111 -2.2 0.1)
(-0.511372 -2.01734 0.1)
(-0.511646 -1.83468 0.1)
(-0.511912 -1.65201 0.1)
(-0.512088 -1.46924 0.1)
(-0.598172 -1.46894 0.1)
(-0.5982 -1.37737 0.1)
(-0.684628 -1.37684 0.1)
(-0.684917 -1.28506 0.1)
(-0.598333 -1.28576 0.1)
(-0.598734 -1.194 0.1)
(-0.685494 -1.19278 0.1)
(-0.68575 -1.10077 0.1)
(-0.599191 -1.10213 0.1)
(-0.59999 -1.00954 0.1)
(-0.643085 -1.00875 0.1)
(-0.685965 -1.00863 0.1)
(-0.686088 -0.916936 0.1)
(-0.643229 -0.916968 0.1)
(-0.643304 -0.871132 0.1)
(-0.686158 -0.871109 0.1)
(-0.686344 -0.733627 0.1)
(-0.6437059141 -0.7333463774 0.1)
(-0.6446640927 -0.6860595218 0.1)
(-0.6866737906 -0.6873678065 0.1)
(-0.6902366713 -0.5425885238 0.1)
(-0.6495895749 -0.5384037541 0.1)
(-0.6512446054 -0.4878842411 0.1)
(-0.69165883 -0.4928913842 0.1)
(-0.6945080557 -0.3421634515 0.1)
(-0.6541469413 -0.3352476087 0.1)
(-0.6542047476 -0.284638751 0.1)
(-0.6947352542 -0.2919937043 0.1)
(-0.6929623913 -0.143777153 0.1)
(-0.6515547118 -0.1356285438 0.1)
(-0.6499131603 -0.0872145764 0.1)
(-0.6916942192 -0.09548883371 0.1)
(-0.686731758 0.04522056317 0.1)
(-0.6437523148 0.05360043868 0.1)
(-0.6416079078 0.09900982258 0.1)
(-0.6849902032 0.09066112409 0.1)
(-0.6805942871 0.2227634118 0.1)
(-0.63610687 0.2308038413 0.1)
(-0.6348736066 0.2733672212 0.1)
(-0.6796692126 0.2655248373 0.1)
(-0.679093276 0.3911348861 0.1)
(-0.6337155109 0.3979475306 0.1)
(-0.6342539129 0.4388121668 0.1)
(-0.6796782563 0.4325169636 0.1)
(-0.6830017453 0.5574872319 0.1)
(-0.6380192329 0.5616623039 0.1)
(-0.6396562581 0.6033420487 0.1)
(-0.6842905765 0.6000449871 0.1)
(-0.686358 0.733246 0.1)
(-0.6432164736 0.7344898755 0.1)
(-0.64276 0.781174 0.1)
(-0.686277 0.779542 0.1)
(-0.684856 0.918994 0.1)
(-0.641698 0.91929 0.1)
(-0.641653 0.965082 0.1)
(-0.684683 0.964872 0.1)
(-0.684589 1.10222 0.1)
(-0.598587 1.10257 0.1)
(-0.598492 1.19415 0.1)
(-0.684489 1.19382 0.1)
(-0.684423 1.28541 0.1)
(-0.598356 1.28576 0.1)
(-0.598227 1.37737 0.1)
(-0.684353 1.37701 0.1)
(-0.598044 1.46899 0.1)
(-0.511813 1.46933 0.1)
(-0.511625 1.65211 0.1)
(-0.511417 1.83475 0.1)
(-0.511259 2.01738 0.1)
(-0.511111 2.2 0.1)
(-0.338889 -2.2 0.1)
(-0.339075 -2.01738 0.1)
(-0.339307 -1.83475 0.1)
(-0.339552 -1.6521 0.1)
(-0.339914 -1.46942 0.1)
(-0.42603 -1.4694 0.1)
(-0.426107 -1.37793 0.1)
(-0.512124 -1.37767 0.1)
(-0.512175 -1.28611 0.1)
(-0.426152 -1.28638 0.1)
(-0.426205 -1.19484 0.1)
(-0.512281 -1.19454 0.1)
(-0.512399 -1.10297 0.1)
(-0.426261 -1.10332 0.1)
(-0.42631 -1.0118 0.1)
(-0.469316 -1.01165 0.1)
(-0.512427 -1.01145 0.1)
(-0.513033 -0.919636 0.1)
(-0.469459 -0.920103 0.1)
(-0.4697237261 -0.8741983054 0.1)
(-0.513554 -0.87351 0.1)
(-0.5185293805 -0.729045225 0.1)
(-0.4770145927 -0.7281899932 0.1)
(-0.4803769027 -0.6770461357 0.1)
(-0.5211879748 -0.6790026591 0.1)
(-0.5292567673 -0.5245846033 0.1)
(-0.4893605382 -0.5203602491 0.1)
(-0.4913792747 -0.4678267598 0.1)
(-0.5312629498 -0.4723591121 0.1)
(-0.5333918425 -0.3164240444 0.1)
(-0.4930053 -0.3116388091 0.1)
(-0.4920339975 -0.2606149172 0.1)
(-0.5327105366 -0.2652976779 0.1)
(-0.5270785423 -0.1160061017 0.1)
(-0.4854070959 -0.111943632 0.1)
(-0.4823116184 -0.06390345991 0.1)
(-0.5243148216 -0.06773882612 0.1)
(-0.5147278839 0.0726490575 0.1)
(-0.4717828067 0.07609364783 0.1)
(-0.4681803475 0.1214835611 0.1)
(-0.5114397305 0.1180244873 0.1)
(-0.5026108147 0.2499427404 0.1)
(-0.4583470891 0.2538250112 0.1)
(-0.4557417438 0.2966108834 0.1)
(-0.5003538304 0.2924987249 0.1)
(-0.4968635571 0.4162164876 0.1)
(-0.4513353047 0.42098911 0.1)
(-0.4512623948 0.4611701268 0.1)
(-0.4970007448 0.4563444903 0.1)
(-0.5011490102 0.5765895333 0.1)
(-0.4538750436 0.583121659 0.1)
(-0.4553675026 0.6235339435 0.1)
(-0.5024085415 0.6184611309 0.1)
(-0.5088449566 0.7424150687 0.1)
(-0.463813953 0.7450255376 0.1)
(-0.4664599454 0.7869989789 0.1)
(-0.5109147584 0.7851013202 0.1)
(-0.512777 0.919803 0.1)
(-0.469804 0.919959 0.1)
(-0.469767 0.965722 0.1)
(-0.512742 0.965571 0.1)
(-0.512576 1.1029 0.1)
(-0.426399 1.10328 0.1)
(-0.426059 1.1949 0.1)
(-0.512348 1.19452 0.1)
(-0.512064 1.28615 0.1)
(-0.425833 1.28649 0.1)
(-0.425757 1.37805 0.1)
(-0.511924 1.37774 0.1)
(-0.42569 1.46951 0.1)
(-0.339558 1.46954 0.1)
(-0.339308 1.65218 0.1)
(-0.339106 1.8348 0.1)
(-0.338986 2.0174 0.1)
(-0.338889 2.2 0.1)
(-0.166667 -2.2 0.1)
(-0.16675 -2.01741 0.1)
(-0.166857 -1.83481 0.1)
(-0.167034 -1.6522 0.1)
(-0.167458 -1.46954 0.1)
(-0.253787 -1.46946 0.1)
(-0.25393 -1.37813 0.1)
(-0.340052 -1.37808 0.1)
(-0.340133 -1.28663 0.1)
(-0.254058 -1.28681 0.1)
(-0.254132 -1.19535 0.1)
(-0.340185 -1.1951 0.1)
(-0.340241 -1.10359 0.1)
(-0.25418 -1.10384 0.1)
(-0.25416 -1.01239 0.1)
(-0.29726 -1.01222 0.1)
(-0.340301 -1.01208 0.1)
(-0.3407605736 -0.9202374553 0.1)
(-0.2982294123 -0.919973413 0.1)
(-0.3005579681 -0.8721452307 0.1)
(-0.3425325178 -0.8728345391 0.1)
(-0.3529700292 -0.7234917495 0.1)
(-0.3122385478 -0.7218869107 0.1)
(-0.3164951728 -0.6701387363 0.1)
(-0.3570005528 -0.6719043078 0.1)
(-0.3673223352 -0.5144407752 0.1)
(-0.3261985373 -0.5131126512 0.1)
(-0.3279506488 -0.4609225301 0.1)
(-0.3695054417 -0.4617308366 0.1)
(-0.370564361 -0.3049590654 0.1)
(-0.3287995343 -0.3058289196 0.1)
(-0.3269950547 -0.2556049252 0.1)
(-0.3686783631 -0.2549414966 0.1)
(-0.3595768054 -0.108906061 0.1)
(-0.3172810621 -0.111229382 0.1)
(-0.3133376658 -0.06442798586 0.1)
(-0.3557500508 -0.06193026358 0.1)
(-0.3434450671 0.07622521829 0.1)
(-0.3008479217 0.07304096665 0.1)
(-0.2965973689 0.1187162186 0.1)
(-0.3392518454 0.1217702994 0.1)
(-0.326942192 0.2578743878 0.1)
(-0.2836525973 0.2565122661 0.1)
(-0.2796487208 0.3013017008 0.1)
(-0.323229742 0.3022429437 0.1)
(-0.3150939015 0.4310624385 0.1)
(-0.2692958421 0.4327774298 0.1)
(-0.26695361 0.4750177832 0.1)
(-0.3129905832 0.4733588614 0.1)
(-0.314184186 0.5942107378 0.1)
(-0.268445423 0.5960460167 0.1)
(-0.2709762139 0.6355114463 0.1)
(-0.3167658153 0.6335468115 0.1)
(-0.327827271 0.7523364818 0.1)
(-0.2824499886 0.7542135558 0.1)
(-0.2867268943 0.794664473 0.1)
(-0.3318071807 0.7929694389 0.1)
(-0.3400651227 0.9210345899 0.1)
(-0.2961810733 0.9216859328 0.1)
(-0.2970145799 0.9665997918 0.1)
(-0.340495 0.966291 0.1)
(-0.339984 1.10368 0.1)
(-0.253752 1.104 0.1)
(-0.25369 1.1955 0.1)
(-0.33981 1.19524 0.1)
(-0.339723 1.28677 0.1)
(-0.253617 1.28696 0.1)
(-0.253479 1.37829 0.1)
(-0.339655 1.37822 0.1)
(-0.253377 1.4696 0.1)
(-0.167064 1.46964 0.1)
(-0.166945 1.65224 0.1)
(-0.166826 1.83483 0.1)
(-0.166743 2.01742 0.1)
(-0.166667 2.2 0.1)
(0.00555556 -2.2 0.1)
(0.00551007 -2.01742 0.1)
(0.00546213 -1.83484 0.1)
(0.00540281 -1.65225 0.1)
(0.0053634 -1.46967 0.1)
(-0.0809386 -1.46965 0.1)
(-0.0809705 -1.37835 0.1)
(-0.167621 -1.37821 0.1)
(-0.167738 -1.2869 0.1)
(-0.0810137 -1.28705 0.1)
(-0.081081 -1.19575 0.1)
(-0.167848 -1.19558 0.1)
(-0.167946 -1.10413 0.1)
(-0.081294 -1.10442 0.1)
(-0.08181617325 -1.01287894 0.1)
(-0.1250050171 -1.012739382 0.1)
(-0.16807 -1.01263 0.1)
(-0.1709477012 -0.9191452699 0.1)
(-0.1286381687 -0.9188942516 0.1)
(-0.1324600828 -0.8703581486 0.1)
(-0.174430641 -0.8707033382 0.1)
(-0.1885525637 -0.7198698353 0.1)
(-0.1472429571 -0.7196418684 0.1)
(-0.1519809362 -0.668298992 0.1)
(-0.1937214931 -0.6678603113 0.1)
(-0.2032981638 -0.512482495 0.1)
(-0.1616585459 -0.5136900163 0.1)
(-0.1625861035 -0.4629650648 0.1)
(-0.2043261515 -0.461388697 0.1)
(-0.2010591311 -0.3127700176 0.1)
(-0.1584475172 -0.3158385824 0.1)
(-0.1553286533 -0.2687550229 0.1)
(-0.1985067169 -0.2648937165 0.1)
(-0.1887506818 -0.1249033731 0.1)
(-0.1446227236 -0.1308324877 0.1)
(-0.1428840983 -0.1077855472 0.1)
(-0.142031433 -0.0834090714 0.1)
(-0.1638567981 -0.08027031343 0.1)
(-0.1852334087 -0.0780750486 0.1)
(-0.1731903605 0.06115269812 0.1)
(-0.1519148849 0.05917713924 0.1)
(-0.1497692327 0.08248696085 0.1)
(-0.1710544291 0.08433610014 0.1)
(-0.1540430101 0.2484177182 0.1)
(-0.1321274684 0.2470843502 0.1)
(-0.109858045 0.2458848615 0.1)
(-0.1070366479 0.2690091008 0.1)
(-0.1046676679 0.2918358645 0.1)
(-0.1486415097 0.294901495 0.1)
(-0.1357813378 0.4296524214 0.1)
(-0.092314718 0.4269000148 0.1)
(-0.08966389001 0.4702961409 0.1)
(-0.1334687159 0.4725985721 0.1)
(-0.1328793336 0.5969213888 0.1)
(-0.08799528136 0.5958304067 0.1)
(-0.0897092437 0.6367284223 0.1)
(-0.1349108599 0.6372776654 0.1)
(-0.1461801174 0.7576443369 0.1)
(-0.1010363888 0.7581663893 0.1)
(-0.1060788972 0.7988828895 0.1)
(-0.1510000187 0.7982506239 0.1)
(-0.164026935 0.9239951971 0.1)
(-0.1200605468 0.9245635976 0.1)
(-0.123046832 0.9682136949 0.1)
(-0.1666128818 0.9678066304 0.1)
(-0.167581 1.10426 0.1)
(-0.0812491 1.10447 0.1)
(-0.0810988 1.19579 0.1)
(-0.167498 1.19571 0.1)
(-0.167364 1.28702 0.1)
(-0.0810205 1.28709 0.1)
(-0.080918 1.37839 0.1)
(-0.16716 1.37833 0.1)
(-0.0808667 1.46969 0.1)
(0.00526028 1.4697 0.1)
(0.00533705 1.65227 0.1)
(0.00541418 1.83485 0.1)
(0.00548531 2.01743 0.1)
(0.00555556 2.2 0.1)
(0.177778 -2.2 0.1)
(0.177739 -2.01742 0.1)
(0.1777 -1.83484 0.1)
(0.177661 -1.65227 0.1)
(0.177627 -1.46969 0.1)
(0.0915047 -1.4697 0.1)
(0.0914852 -1.37841 0.1)
(0.00534656 -1.37838 0.1)
(0.00532381 -1.28709 0.1)
(0.0914651 -1.28711 0.1)
(0.0914414 -1.19582 0.1)
(0.00528866 -1.19579 0.1)
(0.00515509 -1.10449 0.1)
(0.0913796 -1.10453 0.1)
(0.09085445227 -1.013087189 0.1)
(0.04771700919 -1.013096206 0.1)
(0.004616345619 -1.01308483 0.1)
(-0.0003816472459 -0.9190314878 0.1)
(0.04258366652 -0.9192740084 0.1)
(0.03809407851 -0.8711196141 0.1)
(-0.004804164046 -0.8706888968 0.1)
(-0.020807582 -0.7216483502 0.1)
(0.02194337479 -0.7229434579 0.1)
(0.01703957891 -0.6727850791 0.1)
(-0.02568719848 -0.6711680167 0.1)
(-0.03458218308 -0.5200896218 0.1)
(0.008157083004 -0.5227960687 0.1)
(0.007678566898 -0.4736219401 0.1)
(-0.03513087223 -0.4705624215 0.1)
(-0.02959116197 -0.3268532048 0.1)
(0.0135823036 -0.3307512137 0.1)
(0.0174675507 -0.2849412514 0.1)
(-0.02583134222 -0.280866188 0.1)
(-0.01369702607 -0.1445276171 0.1)
(0.00824435962 -0.1466919262 0.1)
(0.01021891644 -0.1239792116 0.1)
(-0.01168807255 -0.1218201024 0.1)
(0.02088352982 0.2352779495 0.1)
(0.04263580542 0.2333902944 0.1)
(0.04483115724 0.2560764975 0.1)
(0.02311328065 0.2579850641 0.1)
(0.03858968195 0.4168121091 0.1)
(0.08174001344 0.4129503532 0.1)
(0.0852696434 0.4576168502 0.1)
(0.04196553206 0.4612791722 0.1)
(0.0451533551 0.59044046 0.1)
(0.08880526347 0.5876373402 0.1)
(0.08736633859 0.6299517527 0.1)
(0.04362858445 0.6323947715 0.1)
(0.03222988961 0.756789063 0.1)
(0.07607182743 0.7554851789 0.1)
(0.07079146721 0.7973598631 0.1)
(0.02692271044 0.7983062009 0.1)
(0.0113190684 0.9252980388 0.1)
(0.05564763278 0.9254041337 0.1)
(0.05163748808 0.9691209849 0.1)
(0.007556455441 0.9689545621 0.1)
(0.00498511 1.10452 0.1)
(0.0912177 1.10457 0.1)
(0.0912678 1.19586 0.1)
(0.00512268 1.19582 0.1)
(0.00517435 1.28712 0.1)
(0.0913049 1.28714 0.1)
(0.0913415 1.37843 0.1)
(0.00522194 1.37841 0.1)
(0.0913798 1.46972 0.1)
(0.17756 1.46972 0.1)
(0.177642 1.65229 0.1)
(0.17769 1.83486 0.1)
(0.177734 2.01743 0.1)
(0.177778 2.2 0.1)
(0.35 -2.2 0.1)
(0.349964 -2.01742 0.1)
(0.349927 -1.83485 0.1)
(0.349892 -1.65227 0.1)
(0.349867 -1.4697 0.1)
(0.263757 -1.46971 0.1)
(0.263743 -1.37842 0.1)
(0.177608 -1.3784 0.1)
(0.177589 -1.28711 0.1)
(0.263728 -1.28713 0.1)
(0.263712 -1.19584 0.1)
(0.17757 -1.19582 0.1)
(0.177544 -1.10453 0.1)
(0.263698 -1.10455 0.1)
(0.2631446769 -1.013135153 0.1)
(0.220117048 -1.013116223 0.1)
(0.1770621567 -1.01310419 0.1)
(0.1712321977 -0.9197587714 0.1)
(0.2141450116 -0.919944752 0.1)
(0.2093374132 -0.8725280351 0.1)
(0.1664792798 -0.8721183326 0.1)
(0.1499792671 -0.7266351904 0.1)
(0.1927602193 -0.7280475401 0.1)
(0.1878735583 -0.6794667148 0.1)
(0.1450933523 -0.6776546468 0.1)
(0.1365467316 -0.5312712408 0.1)
(0.1793705934 -0.5342488867 0.1)
(0.1790938547 -0.4864594662 0.1)
(0.136243847 -0.4831588148 0.1)
(0.1427364979 -0.3424434973 0.1)
(0.185681728 -0.3463365735 0.1)
(0.1897529476 -0.3008096878 0.1)
(0.1467862936 -0.2968794085 0.1)
(0.1593763972 -0.1608046024 0.1)
(0.180873459 -0.1627840723 0.1)
(0.182965423 -0.1401394957 0.1)
(0.1614686383 -0.1381570387 0.1)
(0.1943769836 0.2197001498 0.1)
(0.2159995785 0.2176989898 0.1)
(0.2181130788 0.2403375511 0.1)
(0.1965018065 0.2423416777 0.1)
(0.2113487482 0.4010264197 0.1)
(0.2544887332 0.3969751826 0.1)
(0.2582736405 0.4421182854 0.1)
(0.2150967418 0.4460927818 0.1)
(0.2197309118 0.5785759114 0.1)
(0.2631380283 0.575288261 0.1)
(0.2621582417 0.6190890061 0.1)
(0.2186648194 0.6220293051 0.1)
(0.2080943228 0.7512312957 0.1)
(0.2517761908 0.7495081468 0.1)
(0.2464821151 0.7929016417 0.1)
(0.2027763879 0.7942360411 0.1)
(0.1861826225 0.9244874595 0.1)
(0.2297836235 0.92410015 0.1)
(0.2253475571 0.9684765964 0.1)
(0.1818380992 0.9686752067 0.1)
(0.177442 1.10447 0.1)
(0.263862 1.10431 0.1)
(0.263862 1.19583 0.1)
(0.177467 1.19586 0.1)
(0.177495 1.28715 0.1)
(0.263864 1.28717 0.1)
(0.263866 1.37846 0.1)
(0.177525 1.37843 0.1)
(0.263867 1.46975 0.1)
(0.350165 1.46972 0.1)
(0.350091 1.65229 0.1)
(0.350058 1.83486 0.1)
(0.350028 2.01743 0.1)
(0.35 2.2 0.1)
(0.522222 -2.2 0.1)
(0.522182 -2.01743 0.1)
(0.522141 -1.83485 0.1)
(0.522103 -1.65228 0.1)
(0.522069 -1.46971 0.1)
(0.435968 -1.46972 0.1)
(0.43595 -1.37843 0.1)
(0.349852 -1.37841 0.1)
(0.349837 -1.28712 0.1)
(0.435933 -1.28714 0.1)
(0.435915 -1.19585 0.1)
(0.349822 -1.19584 0.1)
(0.349806 -1.10455 0.1)
(0.435897 -1.10456 0.1)
(0.4350646898 -1.013202981 0.1)
(0.3920967564 -1.013196702 0.1)
(0.3491310417 -1.013165928 0.1)
(0.342795574 -0.9206260646 0.1)
(0.385617282 -0.9208818379 0.1)
(0.3806268855 -0.8744225768 0.1)
(0.3378563284 -0.8739204016 0.1)
(0.3210752276 -0.7325257515 0.1)
(0.3637706897 -0.7340689858 0.1)
(0.3588647324 -0.6870892046 0.1)
(0.3161720021 -0.685146039 0.1)
(0.3077339325 -0.543362776 0.1)
(0.3504640663 -0.5464390568 0.1)
(0.3502594328 -0.4998802419 0.1)
(0.3075053228 -0.4965029534 0.1)
(0.3142947327 -0.357988407 0.1)
(0.3571370314 -0.3618688773 0.1)
(0.3612642135 -0.3164315517 0.1)
(0.3184089471 -0.3125347059 0.1)
(0.3309868455 -0.1765481496 0.1)
(0.3524014676 -0.1785069147 0.1)
(0.354485589 -0.1558927437 0.1)
(0.343777467 -0.1549112773 0.1)
(0.3330783065 -0.1539306423 0.1)
(0.3671454589 0.2034594924 0.1)
(0.388680307 0.2014001903 0.1)
(0.3907555593 0.2240161885 0.1)
(0.3692279584 0.2260778312 0.1)
(0.3837967481 0.3846487618 0.1)
(0.4267577259 0.3805118909 0.1)
(0.4304465956 0.4258222843 0.1)
(0.3875290896 0.4299138923 0.1)
(0.3923533109 0.5648842827 0.1)
(0.4352131024 0.5614004099 0.1)
(0.4342433945 0.6064933642 0.1)
(0.3913861443 0.6096448974 0.1)
(0.3810677369 0.7436001197 0.1)
(0.4239288485 0.7416373481 0.1)
(0.4186857853 0.7866499579 0.1)
(0.3758003882 0.7882083865 0.1)
(0.3592139554 0.9224414052 0.1)
(0.4021892328 0.9218892845 0.1)
(0.3978422715 0.9671673394 0.1)
(0.3548328822 0.9674954699 0.1)
(0.350236 1.10409 0.1)
(0.43642 1.10386 0.1)
(0.4364 1.19541 0.1)
(0.350224 1.19563 0.1)
(0.350216 1.28715 0.1)
(0.436392 1.287 0.1)
(0.436371 1.37844 0.1)
(0.350194 1.37844 0.1)
(0.436339 1.46973 0.1)
(0.52247 1.4697 0.1)
(0.522403 1.65228 0.1)
(0.522334 1.83485 0.1)
(0.522278 2.01743 0.1)
(0.522222 2.2 0.1)
(0.694444 -2.2 0.1)
(0.694421 -2.01743 0.1)
(0.694395 -1.83486 0.1)
(0.694367 -1.65229 0.1)
(0.694266 -1.46972 0.1)
(0.608164 -1.46973 0.1)
(0.608143 -1.37844 0.1)
(0.522052 -1.37842 0.1)
(0.522033 -1.28714 0.1)
(0.608122 -1.28715 0.1)
(0.608101 -1.19587 0.1)
(0.522015 -1.19585 0.1)
(0.521997 -1.10456 0.1)
(0.608086 -1.10458 0.1)
(0.6069271838 -1.01325906 0.1)
(0.5639754113 -1.013233434 0.1)
(0.5210135097 -1.013215909 0.1)
(0.5141085529 -0.9217809701 0.1)
(0.5569259886 -0.922126789 0.1)
(0.5517302325 -0.8767065739 0.1)
(0.5089645924 -0.8760924218 0.1)
(0.4918871457 -0.7389225265 0.1)
(0.5345790264 -0.7406157243 0.1)
(0.5296667069 -0.6952412373 0.1)
(0.4869759463 -0.6931462226 0.1)
(0.4787009028 -0.5558413171 0.1)
(0.5214403034 -0.559033688 0.1)
(0.521340486 -0.513624479 0.1)
(0.4785730906 -0.5101536292 0.1)
(0.4857404499 -0.3735178039 0.1)
(0.528611744 -0.3773989895 0.1)
(0.5327891011 -0.3319823702 0.1)
(0.4899071863 -0.3281021335 0.1)
(0.50247135 -0.1921986637 0.1)
(0.5239070876 -0.1941463321 0.1)
(0.5259886017 -0.1715710866 0.1)
(0.5152709639 -0.1705947631 0.1)
(0.5045554099 -0.1696176286 0.1)
(0.5391616916 0.1868397095 0.1)
(0.5606609402 0.1847214441 0.1)
(0.5627112584 0.2073176613 0.1)
(0.5412184461 0.209440351 0.1)
(0.5555598322 0.3679695406 0.1)
(0.5984405457 0.3637820693 0.1)
(0.6017448676 0.4094338889 0.1)
(0.5589897009 0.4135051812 0.1)
(0.5629653637 0.5510898989 0.1)
(0.6052109423 0.5478160051 0.1)
(0.6041617446 0.5942517114 0.1)
(0.5617635768 0.597211507 0.1)
(0.5510396866 0.7359139661 0.1)
(0.593394963 0.7341563885 0.1)
(0.5882147705 0.7807526818 0.1)
(0.5458096908 0.7821315775 0.1)
(0.5299585144 0.9202705905 0.1)
(0.5726180989 0.9198124388 0.1)
(0.5688330726 0.9659230044 0.1)
(0.5260421157 0.9661864139 0.1)
(0.522596 1.10359 0.1)
(0.608805 1.10329 0.1)
(0.608783 1.19489 0.1)
(0.522553 1.19516 0.1)
(0.522536 1.28678 0.1)
(0.608754 1.28653 0.1)
(0.608691 1.37816 0.1)
(0.522505 1.3784 0.1)
(0.608659 1.46969 0.1)
(0.694922 1.46961 0.1)
(0.694721 1.65224 0.1)
(0.69458 1.83483 0.1)
(0.694507 2.01742 0.1)
(0.694444 2.2 0.1)
(0.866667 -2.2 0.1)
(0.866804 -2.01742 0.1)
(0.866933 -1.83485 0.1)
(0.867013 -1.65228 0.1)
(0.866587 -1.46974 0.1)
(0.780367 -1.46974 0.1)
(0.780339 -1.37845 0.1)
(0.694242 -1.37843 0.1)
(0.69422 -1.28715 0.1)
(0.780315 -1.28717 0.1)
(0.780291 -1.19588 0.1)
(0.694197 -1.19586 0.1)
(0.694176 -1.10458 0.1)
(0.780267 -1.1046 0.1)
(0.7787826563 -1.013451308 0.1)
(0.7356963728 -1.0134211 0.1)
(0.6927821132 -1.013351088 0.1)
(0.685274768 -0.9233205585 0.1)
(0.7280186908 -0.9237847705 0.1)
(0.7226018752 -0.8795002164 0.1)
(0.6799177258 -0.8787420276 0.1)
(0.662545471 -0.7459495993 0.1)
(0.7051526027 -0.7478299595 0.1)
(0.7002464791 -0.7040603456 0.1)
(0.6576355043 -0.7017796188 0.1)
(0.6495761745 -0.5688027305 0.1)
(0.6922641226 -0.5721383886 0.1)
(0.6923009734 -0.5277756021 0.1)
(0.6495723984 -0.5241893593 0.1)
(0.6571938273 -0.3890361887 0.1)
(0.7000647774 -0.3929201051 0.1)
(0.7042690271 -0.3474657464 0.1)
(0.661396238 -0.3435953951 0.1)
(0.6739423453 -0.2077133488 0.1)
(0.6953778468 -0.2096419137 0.1)
(0.6974504098 -0.1871090223 0.1)
(0.6867288609 -0.1861423789 0.1)
(0.6760153703 -0.1851754788 0.1)
(0.7107231362 0.1697670052 0.1)
(0.7321458682 0.1675925685 0.1)
(0.7341775243 0.1901824828 0.1)
(0.7127554391 0.1923638896 0.1)
(0.7267171775 0.3512725374 0.1)
(0.7693796503 0.3471603539 0.1)
(0.7721737753 0.3936561461 0.1)
(0.7296613036 0.3974911047 0.1)
(0.7318538459 0.5386880697 0.1)
(0.7742507639 0.5357540962 0.1)
(0.7724873463 0.5838495335 0.1)
(0.7305266819 0.586219371 0.1)
(0.7194068983 0.7296508946 0.1)
(0.7609640777 0.7285468303 0.1)
(0.7558648046 0.7765089123 0.1)
(0.7143188871 0.7772996415 0.1)
(0.6998975965 0.9187641106 0.1)
(0.7423473673 0.9185143668 0.1)
(0.7394767643 0.9650746748 0.1)
(0.6967800287 0.9652525313 0.1)
(0.694995 1.10296 0.1)
(0.781109 1.10262 0.1)
(0.781098 1.1943 0.1)
(0.694983 1.1946 0.1)
(0.694971 1.28624 0.1)
(0.781097 1.28597 0.1)
(0.781101 1.37767 0.1)
(0.694945 1.37791 0.1)
(0.781109 1.4694 0.1)
(0.867247 1.46918 0.1)
(0.867081 1.65219 0.1)
(0.866868 1.8348 0.1)
(0.866754 2.0174 0.1)
(0.866667 2.2 0.1)
(1.03889 -2.2 0.1)
(1.03889 -2.01667 0.1)
(1.03889 -1.83333 0.1)
(1.03889 -1.65 0.1)
(1.03889 -1.46667 0.1)
(0.953286 -1.46972 0.1)
(0.953361 -1.37843 0.1)
(0.866525 -1.37846 0.1)
(0.866505 -1.28717 0.1)
(0.953429 -1.28714 0.1)
(0.953488 -1.19585 0.1)
(0.866488 -1.19589 0.1)
(0.866462 -1.10461 0.1)
(0.953452 -1.10458 0.1)
(0.9500205529 -1.01420177 0.1)
(0.906998968 -1.013987484 0.1)
(0.8642962778 -1.013762246 0.1)
(0.856156411 -0.9253905922 0.1)
(0.8984377847 -0.9261813384 0.1)
(0.8927610713 -0.8831620191 0.1)
(0.8506540049 -0.8819951498 0.1)
(0.8327802124 -0.7538405826 0.1)
(0.8751701992 -0.7560332108 0.1)
(0.8703850997 -0.7138225404 0.1)
(0.8278984321 -0.7112718822 0.1)
(0.8202108309 -0.582426924 0.1)
(0.8630175074 -0.5858534828 0.1)
(0.863082696 -0.5425181528 0.1)
(0.8203976207 -0.5387666875 0.1)
(0.8286542039 -0.4046154696 0.1)
(0.8715175593 -0.408544199 0.1)
(0.8757181987 -0.3630316343 0.1)
(0.8542936193 -0.3610719454 0.1)
(0.8328664943 -0.359118046 0.1)
(0.845420834 -0.2230931493 0.1)
(0.8561249217 -0.2240531512 0.1)
(0.8571574975 -0.2127833488 0.1)
(0.8464563045 -0.2118246198 0.1)
(0.866101196 -0.02782405894 0.1)
(0.871426751 -0.02844342874 0.1)
(0.8767566312 -0.02902700505 0.1)
(0.8776548181 -0.0179825007 0.1)
(0.8670089284 -0.0167632668 0.1)
(0.8818017181 0.1518954939 0.1)
(0.9031194991 0.1495640818 0.1)
(0.9244304743 0.1472242624 0.1)
(0.928521102 0.1925361323 0.1)
(0.8858669088 0.1971605134 0.1)
(0.8838370902 0.1745362825 0.1)
(0.8970358373 0.3352092937 0.1)
(0.9394320708 0.3315175441 0.1)
(0.9415665991 0.3794810642 0.1)
(0.8994772946 0.3826819774 0.1)
(0.9001671031 0.528386391 0.1)
(0.9419513698 0.5263405283 0.1)
(0.939758934 0.5759853926 0.1)
(0.8980250678 0.5776764052 0.1)
(0.8861442983 0.7258155522 0.1)
(0.928001951 0.7250868618 0.1)
(0.9232594916 0.7741590519 0.1)
(0.8812636309 0.7746540897 0.1)
(0.8692668348 0.9181771533 0.1)
(0.9118978879 0.9180198571 0.1)
(0.9103895551 0.9644831649 0.1)
(0.8674976073 0.964668362 0.1)
(0.867204 1.10226 0.1)
(0.953252 1.10189 0.1)
(0.953259 1.19361 0.1)
(0.867204 1.19395 0.1)
(0.867215 1.28567 0.1)
(0.953283 1.2854 0.1)
(0.953316 1.3772 0.1)
(0.867233 1.37742 0.1)
(0.953348 1.469 0.1)
(1.03943 1.46885 0.1)
(1.0394 1.65214 0.1)
(1.0392 1.83477 0.1)
(1.03904 2.01739 0.1)
(1.03889 2.2 0.1)
(1.21111 -2.2 0.1)
(1.21111 -2.01667 0.1)
(1.21111 -1.83333 0.1)
(1.21111 -1.65 0.1)
(1.21111 -1.46667 0.1)
(1.125 -1.46667 0.1)
(1.125 -1.375 0.1)
(1.03889 -1.375 0.1)
(1.03889 -1.28333 0.1)
(1.125 -1.28333 0.1)
(1.125 -1.19167 0.1)
(1.03889 -1.19167 0.1)
(1.03889 -1.1 0.1)
(1.125 -1.1 0.1)
(1.122516601 -1.009867591 0.1)
(1.079133417 -1.009948215 0.1)
(1.035890969 -1.009931854 0.1)
(1.02676615 -0.9236946958 0.1)
(1.070205009 -0.9240148158 0.1)
(1.064401915 -0.8822888441 0.1)
(1.020886878 -0.8817158369 0.1)
(1.003050224 -0.7582117651 0.1)
(1.046658673 -0.7598147019 0.1)
(1.041888749 -0.7191937903 0.1)
(0.9983020254 -0.7172041011 0.1)
(0.9913744456 -0.5920915669 0.1)
(1.034739024 -0.5951701973 0.1)
(1.0351281 -0.5525558768 0.1)
(0.9918816967 -0.5491762473 0.1)
(1.000995011 -0.4153340008 0.1)
(1.043860902 -0.4193111717 0.1)
(1.048095273 -0.3736731868 0.1)
(1.026667306 -0.3716850633 0.1)
(1.005229382 -0.369696016 0.1)
(1.017932309 -0.2327840528 0.1)
(1.039370233 -0.2347731002 0.1)
(1.041487326 -0.2119551035 0.1)
(1.030763385 -0.2109601179 0.1)
(1.020049402 -0.2099660561 0.1)
(1.018990855 -0.2213750545 0.1)
(1.034869511 -0.05023513328 0.1)
(1.045583496 -0.05122917596 0.1)
(1.056307437 -0.05222415203 0.1)
(1.058424595 -0.0294054542 0.1)
(1.036986671 -0.02741640683 0.1)
(1.051806718 0.1323138517 0.1)
(1.094672609 0.1283366808 0.1)
(1.098855853 0.1741885118 0.1)
(1.056030235 0.1779929215 0.1)
(1.066463186 0.3207761889 0.1)
(1.108506308 0.3175684425 0.1)
(1.110104811 0.3671421475 0.1)
(1.068164068 0.3699015075 0.1)
(1.066707131 0.5216837811 0.1)
(1.108499008 0.5202028285 0.1)
(1.105807204 0.5718040618 0.1)
(1.064458587 0.5723509995 0.1)
(1.052624659 0.7242901872 0.1)
(1.093862097 0.7245477174 0.1)
(1.090152471 0.7739359598 0.1)
(1.048297041 0.7739059952 0.1)
(1.039603799 0.917751272 0.1)
(1.082400781 0.9175576571 0.1)
(1.08225 0.963502 0.1)
(1.03926 0.963775 0.1)
(1.03928 1.10146 0.1)
(1.12532 1.10101 0.1)
(1.12539 1.19295 0.1)
(1.03931 1.19327 0.1)
(1.03934 1.28514 0.1)
(1.12544 1.28491 0.1)
(1.12548 1.37679 0.1)
(1.03939 1.377 0.1)
(1.12552 1.46859 0.1)
(1.2116 1.46826 0.1)
(1.21159 1.65175 0.1)
(1.21146 1.83473 0.1)
(1.21128 2.01737 0.1)
(1.21111 2.2 0.1)
(1.38333 -2.2 0.1)
(1.38333 -2.01667 0.1)
(1.38333 -1.83333 0.1)
(1.38333 -1.65 0.1)
(1.38333 -1.46667 0.1)
(1.29722 -1.46667 0.1)
(1.29722 -1.375 0.1)
(1.21111 -1.375 0.1)
(1.21111 -1.28333 0.1)
(1.29722 -1.28333 0.1)
(1.29722 -1.19167 0.1)
(1.21111 -1.19167 0.1)
(1.21111 -1.1 0.1)
(1.29722 -1.1 0.1)
(1.29664018 -1.00878813 0.1)
(1.253117794 -1.009116357 0.1)
(1.209546582 -1.009431505 0.1)
(1.202120701 -0.9235632828 0.1)
(1.246491783 -0.9229223633 0.1)
(1.241640524 -0.8815012915 0.1)
(1.196931995 -0.8821944798 0.1)
(1.18018459 -0.7618823393 0.1)
(1.225509748 -0.7614793365 0.1)
(1.220777895 -0.7220826613 0.1)
(1.175407494 -0.7222525795 0.1)
(1.167162911 -0.6015893885 0.1)
(1.212153557 -0.6024450796 0.1)
(1.211573341 -0.5614406584 0.1)
(1.166864753 -0.5601510057 0.1)
(1.172938598 -0.4305667119 0.1)
(1.216518189 -0.4334114863 0.1)
(1.21991694 -0.3890162268 0.1)
(1.176735713 -0.3855689957 0.1)
(1.189415787 -0.2486945841 0.1)
(1.232291635 -0.2526726788 0.1)
(1.236525914 -0.2070356897 0.1)
(1.193650065 -0.2030575949 0.1)
(1.19153288 -0.2258765874 0.1)
(1.206352992 -0.06614563179 0.1)
(1.24922884 -0.07012372652 0.1)
(1.253463146 -0.02448643867 0.1)
(1.210587298 -0.02050834393 0.1)
(1.223218278 0.1170044786 0.1)
(1.265977056 0.1141622441 0.1)
(1.269743081 0.1619549285 0.1)
(1.227133262 0.1641837732 0.1)
(1.235361987 0.3119639906 0.1)
(1.277376694 0.3112766684 0.1)
(1.27816953 0.3628132719 0.1)
(1.236341345 0.3630998708 0.1)
(1.232938589 0.5196146855 0.1)
(1.27446248 0.5201473113 0.1)
(1.271480961 0.5726414126 0.1)
(1.229937698 0.5719703432 0.1)
(1.218576352 0.7258765068 0.1)
(1.260587394 0.7265505154 0.1)
(1.257459087 0.7759149127 0.1)
(1.215575851 0.7749941954 0.1)
(1.21111 0.916667 0.1)
(1.25417 0.916667 0.1)
(1.25417 0.9625 0.1)
(1.21125 0.962818 0.1)
(1.21135 1.10065 0.1)
(1.29756 1.10048 0.1)
(1.29749 1.1924 0.1)
(1.21147 1.19275 0.1)
(1.21153 1.28465 0.1)
(1.29758 1.2844 0.1)
(1.29764 1.37625 0.1)
(1.21159 1.37654 0.1)
(1.29764 1.46792 0.1)
(1.38364 1.46759 0.1)
(1.38374 1.65132 0.1)
(1.38369 1.83462 0.1)
(1.38351 2.01735 0.1)
(1.38333 2.2 0.1)
(1.55556 -2.2 0.1)
(1.55556 -2.01667 0.1)
(1.55556 -1.83333 0.1)
(1.55556 -1.65 0.1)
(1.55556 -1.46667 0.1)
(1.46944 -1.46667 0.1)
(1.46944 -1.375 0.1)
(1.38333 -1.375 0.1)
(1.38333 -1.28333 0.1)
(1.46944 -1.28333 0.1)
(1.46944 -1.19167 0.1)
(1.38333 -1.19167 0.1)
(1.38333 -1.1 0.1)
(1.46944 -1.1 0.1)
(1.46944 -1.00833 0.1)
(1.42639 -1.00833 0.1)
(1.38331576 -1.008342466 0.1)
(1.379917876 -0.919936903 0.1)
(1.424248956 -0.9188215473 0.1)
(1.421404053 -0.8760921654 0.1)
(1.376477097 -0.877710955 0.1)
(1.363223888 -0.7567280599 0.1)
(1.409471194 -0.7540700161 0.1)
(1.405384727 -0.7146955984 0.1)
(1.358893964 -0.7175164524 0.1)
(1.34965963 -0.5998610858 0.1)
(1.396227242 -0.5971272292 0.1)
(1.394716405 -0.5574214564 0.1)
(1.348325087 -0.5599474696 0.1)
(1.349991854 -0.4362113226 0.1)
(1.395451646 -0.4347096517 0.1)
(1.397288956 -0.392389085 0.1)
(1.352200131 -0.3934736273 0.1)
(1.362007811 -0.2613149329 0.1)
(1.406116572 -0.2613219242 0.1)
(1.409775474 -0.2164458832 0.1)
(1.365905805 -0.2162429264 0.1)
(1.378241131 -0.07879354837 0.1)
(1.421583444 -0.07876537923 0.1)
(1.425544118 -0.0317848527 0.1)
(1.382375693 -0.03214309913 0.1)
(1.393807597 0.1116427068 0.1)
(1.436267463 0.1133259445 0.1)
(1.439075209 0.1632704094 0.1)
(1.396911867 0.1611548261 0.1)
(1.40226869 0.3145586531 0.1)
(1.443552162 0.3175631011 0.1)
(1.443468347 0.3700952464 0.1)
(1.402407122 0.3669811932 0.1)
(1.397824734 0.5253676593 0.1)
(1.438696453 0.5281868623 0.1)
(1.43604383 0.580213669 0.1)
(1.395037226 0.577687872 0.1)
(1.386290606 0.7296922036 0.1)
(1.428297808 0.7308774156 0.1)
(1.426817908 0.7786502191 0.1)
(1.384318931 0.7780268962 0.1)
(1.38333 0.916667 0.1)
(1.42639 0.916667 0.1)
(1.42639 0.9625 0.1)
(1.38333 0.9625 0.1)
(1.38333 1.1 0.1)
(1.46944 1.1 0.1)
(1.46983 1.19203 0.1)
(1.38358 1.19218 0.1)
(1.38365 1.28424 0.1)
(1.46966 1.28378 0.1)
(1.46961 1.37544 0.1)
(1.38362 1.37587 0.1)
(1.46965 1.46727 0.1)
(1.55574 1.46706 0.1)
(1.55584 1.65071 0.1)
(1.55579 1.834 0.1)
(1.55576 2.01733 0.1)
(1.55556 2.2 0.1)
(1.72778 -2.2 0.1)
(1.72778 -2.01667 0.1)
(1.72778 -1.83333 0.1)
(1.72778 -1.65 0.1)
(1.72778 -1.46667 0.1)
(1.64167 -1.46667 0.1)
(1.64167 -1.375 0.1)
(1.55556 -1.375 0.1)
(1.55556 -1.28333 0.1)
(1.64167 -1.28333 0.1)
(1.64167 -1.19167 0.1)
(1.55556 -1.19167 0.1)
(1.55556 -1.1 0.1)
(1.64167 -1.1 0.1)
(1.64167 -1.00833 0.1)
(1.59861 -1.00833 0.1)
(1.55556 -1.00833 0.1)
(1.555547498 -0.9166813614 0.1)
(1.59861 -0.916667 0.1)
(1.598481256 -0.8709949085 0.1)
(1.554798924 -0.8717520474 0.1)
(1.547842047 -0.7442555489 0.1)
(1.59347255 -0.7409296821 0.1)
(1.590940582 -0.6995237089 0.1)
(1.544839253 -0.703568252 0.1)
(1.536955704 -0.5838631636 0.1)
(1.583825897 -0.5782357871 0.1)
(1.58215162 -0.538078047 0.1)
(1.53523845 -0.544032461 0.1)
(1.533940519 -0.4223275607 0.1)
(1.580451994 -0.4159136027 0.1)
(1.581049639 -0.3741968463 0.1)
(1.534805325 -0.3806343027 0.1)
(1.540571356 -0.2513423847 0.1)
(1.585806379 -0.2449775437 0.1)
(1.588134204 -0.2004249682 0.1)
(1.543271041 -0.2067744708 0.1)
(1.552376868 -0.06856704959 0.1)
(1.596079171 -0.06211472359 0.1)
(1.598720291 -0.01445063098 0.1)
(1.555417503 -0.02097397349 0.1)
(1.563117968 0.1263790025 0.1)
(1.605226177 0.1330146547 0.1)
(1.606617337 0.1834959392 0.1)
(1.564876042 0.1769236433 0.1)
(1.566674074 0.3316048344 0.1)
(1.607618183 0.3374511268 0.1)
(1.606882903 0.3890620557 0.1)
(1.566045939 0.3836644158 0.1)
(1.561382805 0.5384387832 0.1)
(1.602553135 0.5418937107 0.1)
(1.600940136 0.5914390071 0.1)
(1.559429288 0.5887959423 0.1)
(1.555592638 0.7332853168 0.1)
(1.59861 0.733333 0.1)
(1.59861 0.779167 0.1)
(1.55556 0.779167 0.1)
(1.55556 0.916667 0.1)
(1.59861 0.916667 0.1)
(1.59861 0.9625 0.1)
(1.55556 0.9625 0.1)
(1.55556 1.1 0.1)
(1.64167 1.1 0.1)
(1.64167 1.19167 0.1)
(1.55556 1.19167 0.1)
(1.55556 1.28333 0.1)
(1.64167 1.28333 0.1)
(1.64167 1.375 0.1)
(1.55556 1.375 0.1)
(1.64167 1.46667 0.1)
(1.72778 1.46667 0.1)
(1.72778 1.65 0.1)
(1.72778 1.83333 0.1)
(1.72803 2.01725 0.1)
(1.72778 2.2 0.1)
(1.9 -2.2 0.1)
(1.9 -2.01667 0.1)
(1.9 -1.83333 0.1)
(1.9 -1.65 0.1)
(1.9 -1.46667 0.1)
(1.81389 -1.46667 0.1)
(1.81389 -1.375 0.1)
(1.72778 -1.375 0.1)
(1.72778 -1.28333 0.1)
(1.81389 -1.28333 0.1)
(1.81389 -1.19167 0.1)
(1.72778 -1.19167 0.1)
(1.72778 -1.1 0.1)
(1.81389 -1.1 0.1)
(1.81389 -1.00833 0.1)
(1.77083 -1.00833 0.1)
(1.72778 -1.00833 0.1)
(1.72778 -0.916667 0.1)
(1.77083 -0.916667 0.1)
(1.77083 -0.870833 0.1)
(1.72778 -0.870833 0.1)
(1.727449596 -0.7338831021 0.1)
(1.77083 -0.733333 0.1)
(1.770589831 -0.6879411815 0.1)
(1.726588403 -0.6896112198 0.1)
(1.722670265 -0.5611567392 0.1)
(1.76798816 -0.5564602154 0.1)
(1.766992822 -0.513629565 0.1)
(1.721434656 -0.5191733836 0.1)
(1.719360653 -0.3932293184 0.1)
(1.765068145 -0.3857247142 0.1)
(1.764953402 -0.3427841648 0.1)
(1.719364483 -0.3507484551 0.1)
(1.721400388 -0.2202692663 0.1)
(1.766259558 -0.2114520986 0.1)
(1.76713592 -0.1665925978 0.1)
(1.722609974 -0.175534965 0.1)
(1.726897168 -0.03717943557 0.1)
(1.77030064 -0.02830670484 0.1)
(1.771310239 0.01899913425 0.1)
(1.728285424 0.01030397823 0.1)
(1.73129328 0.1562297405 0.1)
(1.773340721 0.1638605257 0.1)
(1.77354746 0.2128219649 0.1)
(1.731727096 0.205740685 0.1)
(1.731102389 0.3550335639 0.1)
(1.772724872 0.3598608358 0.1)
(1.772131272 0.4083769911 0.1)
(1.730380524 0.4044873645 0.1)
(1.728080357 0.5493171994 0.1)
(1.770830844 0.5499980171 0.1)
(1.77083 0.595833 0.1)
(1.727783513 0.5958256421 0.1)
(1.72778 0.733333 0.1)
(1.77083 0.733333 0.1)
(1.77083 0.779167 0.1)
(1.72778 0.779167 0.1)
(1.72778 0.916667 0.1)
(1.77083 0.916667 0.1)
(1.77083 0.9625 0.1)
(1.72778 0.9625 0.1)
(1.72778 1.1 0.1)
(1.81389 1.1 0.1)
(1.81389 1.19167 0.1)
(1.72778 1.19167 0.1)
(1.72778 1.28333 0.1)
(1.81389 1.28333 0.1)
(1.81389 1.375 0.1)
(1.72778 1.375 0.1)
(1.81389 1.46667 0.1)
(1.9 1.46667 0.1)
(1.9 1.65 0.1)
(1.9 1.83333 0.1)
(1.9 2.01667 0.1)
(1.9 2.2 0.1)
(2.07222 -2.2 0.1)
(2.07222 -2.01667 0.1)
(2.07222 -1.83333 0.1)
(2.07222 -1.65 0.1)
(2.07222 -1.46667 0.1)
(1.98611 -1.46667 0.1)
(1.98611 -1.375 0.1)
(1.9 -1.375 0.1)
(1.9 -1.28333 0.1)
(1.98611 -1.28333 0.1)
(1.98611 -1.19167 0.1)
(1.9 -1.19167 0.1)
(1.9 -1.1 0.1)
(1.98611 -1.1 0.1)
(1.98611 -1.00833 0.1)
(1.94306 -1.00833 0.1)
(1.9 -1.00833 0.1)
(1.9 -0.916667 0.1)
(1.94306 -0.916667 0.1)
(1.94306 -0.870833 0.1)
(1.9 -0.870833 0.1)
(1.9 -0.733333 0.1)
(1.94306 -0.733333 0.1)
(1.94306 -0.6875 0.1)
(1.9 -0.6875 0.1)
(1.9 -0.55 0.1)
(1.94306 -0.55 0.1)
(1.94306 -0.504167 0.1)
(1.899962863 -0.5042691002 0.1)
(1.899333334 -0.3691642609 0.1)
(1.942985073 -0.3669573332 0.1)
(1.942896311 -0.3215553266 0.1)
(1.899154921 -0.3244318864 0.1)
(1.899127658 -0.1896498807 0.1)
(1.942779469 -0.1854540689 0.1)
(1.942819291 -0.1398897892 0.1)
(1.899283398 -0.1442817338 0.1)
(1.899951155 -0.006386976986 0.1)
(1.943047678 -0.002160315352 0.1)
(1.943106156 0.04406444433 0.1)
(1.900143685 0.04014306751 0.1)
(1.900326405 0.180708001 0.1)
(1.943100581 0.1829992464 0.1)
(1.943067483 0.2291182042 0.1)
(1.900248342 0.2275891467 0.1)
(1.9 0.366667 0.1)
(1.94306 0.366667 0.1)
(1.94306 0.4125 0.1)
(1.9 0.4125 0.1)
(1.9 0.55 0.1)
(1.94306 0.55 0.1)
(1.94306 0.595833 0.1)
(1.9 0.595833 0.1)
(1.9 0.733333 0.1)
(1.94306 0.733333 0.1)
(1.94306 0.779167 0.1)
(1.9 0.779167 0.1)
(1.9 0.916667 0.1)
(1.94306 0.916667 0.1)
(1.94306 0.9625 0.1)
(1.9 0.9625 0.1)
(1.9 1.1 0.1)
(1.98611 1.1 0.1)
(1.98611 1.19167 0.1)
(1.9 1.19167 0.1)
(1.9 1.28333 0.1)
(1.98611 1.28333 0.1)
(1.98611 1.375 0.1)
(1.9 1.375 0.1)
(1.98611 1.46667 0.1)
(2.07222 1.46667 0.1)
(2.07222 1.65 0.1)
(2.07222 1.83333 0.1)
(2.07222 2.01667 0.1)
(2.07222 2.2 0.1)
(2.24444 -2.2 0.1)
(2.24444 -2.01667 0.1)
(2.24444 -1.83333 0.1)
(2.24444 -1.65 0.1)
(2.24444 -1.46667 0.1)
(2.15833 -1.46667 0.1)
(2.15833 -1.375 0.1)
(2.07222 -1.375 0.1)
(2.07222 -1.28333 0.1)
(2.15833 -1.28333 0.1)
(2.15833 -1.19167 0.1)
(2.07222 -1.19167 0.1)
(2.07222 -1.1 0.1)
(2.15833 -1.1 0.1)
(2.15833 -1.00833 0.1)
(2.11528 -1.00833 0.1)
(2.07222 -1.00833 0.1)
(2.07222 -0.916667 0.1)
(2.11528 -0.916667 0.1)
(2.11528 -0.870833 0.1)
(2.07222 -0.870833 0.1)
(2.07222 -0.733333 0.1)
(2.11528 -0.733333 0.1)
(2.11528 -0.6875 0.1)
(2.07222 -0.6875 0.1)
(2.07222 -0.55 0.1)
(2.11528 -0.55 0.1)
(2.11528 -0.504167 0.1)
(2.07222 -0.504167 0.1)
(2.07222 -0.366667 0.1)
(2.11528 -0.366667 0.1)
(2.11528 -0.320833 0.1)
(2.07222 -0.320833 0.1)
(2.07222 -0.183333 0.1)
(2.11528 -0.183333 0.1)
(2.11528 -0.1375 0.1)
(2.07222 -0.1375 0.1)
(2.07222 0 0.1)
(2.11528 0 0.1)
(2.11528 0.0458333 0.1)
(2.07222 0.0458333 0.1)
(2.07222 0.183333 0.1)
(2.11528 0.183333 0.1)
(2.11528 0.229167 0.1)
(2.07222 0.229167 0.1)
(2.07222 0.366667 0.1)
(2.11528 0.366667 0.1)
(2.11528 0.4125 0.1)
(2.07222 0.4125 0.1)
(2.07222 0.55 0.1)
(2.11528 0.55 0.1)
(2.11528 0.595833 0.1)
(2.07222 0.595833 0.1)
(2.07222 0.733333 0.1)
(2.11528 0.733333 0.1)
(2.11528 0.779167 0.1)
(2.07222 0.779167 0.1)
(2.07222 0.916667 0.1)
(2.11528 0.916667 0.1)
(2.11528 0.9625 0.1)
(2.07222 0.9625 0.1)
(2.07222 1.1 0.1)
(2.15833 1.1 0.1)
(2.15833 1.19167 0.1)
(2.07222 1.19167 0.1)
(2.07222 1.28333 0.1)
(2.15833 1.28333 0.1)
(2.15833 1.375 0.1)
(2.07222 1.375 0.1)
(2.15833 1.46667 0.1)
(2.24444 1.46667 0.1)
(2.24444 1.65 0.1)
(2.24444 1.83333 0.1)
(2.24444 2.01667 0.1)
(2.24444 2.2 0.1)
(2.41667 -2.2 0.1)
(2.41667 -2.01667 0.1)
(2.41667 -1.83333 0.1)
(2.41667 -1.65 0.1)
(2.41667 -1.46667 0.1)
(2.33056 -1.46667 0.1)
(2.33056 -1.375 0.1)
(2.24444 -1.375 0.1)
(2.24444 -1.28333 0.1)
(2.33056 -1.28333 0.1)
(2.33056 -1.19167 0.1)
(2.24444 -1.19167 0.1)
(2.24444 -1.1 0.1)
(2.33056 -1.1 0.1)
(2.33056 -1.00833 0.1)
(2.2875 -1.00833 0.1)
(2.24444 -1.00833 0.1)
(2.24444 -0.916667 0.1)
(2.2875 -0.916667 0.1)
(2.2875 -0.870833 0.1)
(2.24444 -0.870833 0.1)
(2.24444 -0.733333 0.1)
(2.2875 -0.733333 0.1)
(2.2875 -0.6875 0.1)
(2.24444 -0.6875 0.1)
(2.24444 -0.55 0.1)
(2.2875 -0.55 0.1)
(2.2875 -0.504167 0.1)
(2.24444 -0.504167 0.1)
(2.24444 -0.366667 0.1)
(2.2875 -0.366667 0.1)
(2.2875 -0.320833 0.1)
(2.24444 -0.320833 0.1)
(2.24444 -0.183333 0.1)
(2.2875 -0.183333 0.1)
(2.2875 -0.1375 0.1)
(2.24444 -0.1375 0.1)
(2.24444 0 0.1)
(2.2875 -4.62593e-18 0.1)
(2.2875 0.0458333 0.1)
(2.24444 0.0458333 0.1)
(2.24444 0.183333 0.1)
(2.2875 0.183333 0.1)
(2.2875 0.229167 0.1)
(2.24444 0.229167 0.1)
(2.24444 0.366667 0.1)
(2.2875 0.366667 0.1)
(2.2875 0.4125 0.1)
(2.24444 0.4125 0.1)
(2.24444 0.55 0.1)
(2.2875 0.55 0.1)
(2.2875 0.595833 0.1)
(2.24444 0.595833 0.1)
(2.24444 0.733333 0.1)
(2.2875 0.733333 0.1)
(2.2875 0.779167 0.1)
(2.24444 0.779167 0.1)
(2.24444 0.916667 0.1)
(2.2875 0.916667 0.1)
(2.2875 0.9625 0.1)
(2.24444 0.9625 0.1)
(2.24444 1.1 0.1)
(2.33056 1.1 0.1)
(2.33056 1.19167 0.1)
(2.24444 1.19167 0.1)
(2.24444 1.28333 0.1)
(2.33056 1.28333 0.1)
(2.33056 1.375 0.1)
(2.24444 1.375 0.1)
(2.33056 1.46667 0.1)
(2.41667 1.46667 0.1)
(2.41667 1.65 0.1)
(2.41667 1.83333 0.1)
(2.41667 2.01667 0.1)
(2.41667 2.2 0.1)
(2.58889 -2.2 0.1)
(2.58889 -2.01667 0.1)
(2.58889 -1.83333 0.1)
(2.58889 -1.65 0.1)
(2.58889 -1.46667 0.1)
(2.50278 -1.46667 0.1)
(2.50278 -1.375 0.1)
(2.41667 -1.375 0.1)
(2.41667 -1.28333 0.1)
(2.50278 -1.28333 0.1)
(2.50278 -1.19167 0.1)
(2.41667 -1.19167 0.1)
(2.41667 -1.1 0.1)
(2.50278 -1.1 0.1)
(2.50278 -1.00833 0.1)
(2.45972 -1.00833 0.1)
(2.41667 -1.00833 0.1)
(2.41667 -0.916667 0.1)
(2.45972 -0.916667 0.1)
(2.45972 -0.870833 0.1)
(2.41667 -0.870833 0.1)
(2.41667 -0.733333 0.1)
(2.45972 -0.733333 0.1)
(2.45972 -0.6875 0.1)
(2.41667 -0.6875 0.1)
(2.41667 -0.55 0.1)
(2.45972 -0.55 0.1)
(2.45972 -0.504167 0.1)
(2.41667 -0.504167 0.1)
(2.41667 -0.366667 0.1)
(2.45972 -0.366667 0.1)
(2.45972 -0.320833 0.1)
(2.41667 -0.320833 0.1)
(2.41667 -0.183333 0.1)
(2.45972 -0.183333 0.1)
(2.45972 -0.1375 0.1)
(2.41667 -0.1375 0.1)
(2.41667 -1.85037e-17 0.1)
(2.45972 -1.85037e-17 0.1)
(2.45972 0.0458333 0.1)
(2.41667 0.0458333 0.1)
(2.41667 0.183333 0.1)
(2.45972 0.183333 0.1)
(2.45972 0.229167 0.1)
(2.41667 0.229167 0.1)
(2.41667 0.366667 0.1)
(2.45972 0.366667 0.1)
(2.45972 0.4125 0.1)
(2.41667 0.4125 0.1)
(2.41667 0.55 0.1)
(2.45972 0.55 0.1)
(2.45972 0.595833 0.1)
(2.41667 0.595833 0.1)
(2.41667 0.733333 0.1)
(2.45972 0.733333 0.1)
(2.45972 0.779167 0.1)
(2.41667 0.779167 0.1)
(2.41667 0.916667 0.1)
(2.45972 0.916667 0.1)
(2.45972 0.9625 0.1)
(2.41667 0.9625 0.1)
(2.41667 1.1 0.1)
(2.50278 1.1 0.1)
(2.50278 1.19167 0.1)
(2.41667 1.19167 0.1)
(2.41667 1.28333 0.1)
(2.50278 1.28333 0.1)
(2.50278 1.375 0.1)
(2.41667 1.375 0.1)
(2.50278 1.46667 0.1)
(2.58889 1.46667 0.1)
(2.58889 1.65 0.1)
(2.58889 1.83333 0.1)
(2.58889 2.01667 0.1)
(2.58889 2.2 0.1)
(2.76111 -2.2 0.1)
(2.76111 -2.01667 0.1)
(2.76111 -1.83333 0.1)
(2.76111 -1.65 0.1)
(2.76111 -1.46667 0.1)
(2.675 -1.46667 0.1)
(2.675 -1.375 0.1)
(2.58889 -1.375 0.1)
(2.58889 -1.28333 0.1)
(2.675 -1.28333 0.1)
(2.675 -1.19167 0.1)
(2.58889 -1.19167 0.1)
(2.58889 -1.1 0.1)
(2.675 -1.1 0.1)
(2.675 -1.00833 0.1)
(2.63194 -1.00833 0.1)
(2.58889 -1.00833 0.1)
(2.58889 -0.916667 0.1)
(2.63194 -0.916667 0.1)
(2.63194 -0.870833 0.1)
(2.58889 -0.870833 0.1)
(2.58889 -0.733333 0.1)
(2.63194 -0.733333 0.1)
(2.63194 -0.6875 0.1)
(2.58889 -0.6875 0.1)
(2.58889 -0.55 0.1)
(2.63194 -0.55 0.1)
(2.63194 -0.504167 0.1)
(2.58889 -0.504167 0.1)
(2.58889 -0.366667 0.1)
(2.63194 -0.366667 0.1)
(2.63194 -0.320833 0.1)
(2.58889 -0.320833 0.1)
(2.58889 -0.183333 0.1)
(2.63194 -0.183333 0.1)
(2.63194 -0.1375 0.1)
(2.58889 -0.1375 0.1)
(2.58889 -1.85037e-17 0.1)
(2.63194 -9.25186e-18 0.1)
(2.63194 0.0458333 0.1)
(2.58889 0.0458333 0.1)
(2.58889 0.183333 0.1)
(2.63194 0.183333 0.1)
(2.63194 0.229167 0.1)
(2.58889 0.229167 0.1)
(2.58889 0.366667 0.1)
(2.63194 0.366667 0.1)
(2.63194 0.4125 0.1)
(2.58889 0.4125 0.1)
(2.58889 0.55 0.1)
(2.63194 0.55 0.1)
(2.63194 0.595833 0.1)
(2.58889 0.595833 0.1)
(2.58889 0.733333 0.1)
(2.63194 0.733333 0.1)
(2.63194 0.779167 0.1)
(2.58889 0.779167 0.1)
(2.58889 0.916667 0.1)
(2.63194 0.916667 0.1)
(2.63194 0.9625 0.1)
(2.58889 0.9625 0.1)
(2.58889 1.1 0.1)
(2.675 1.1 0.1)
(2.675 1.19167 0.1)
(2.58889 1.19167 0.1)
(2.58889 1.28333 0.1)
(2.675 1.28333 0.1)
(2.675 1.375 0.1)
(2.58889 1.375 0.1)
(2.675 1.46667 0.1)
(2.76111 1.46667 0.1)
(2.76111 1.65 0.1)
(2.76111 1.83333 0.1)
(2.76111 2.01667 0.1)
(2.76111 2.2 0.1)
(2.93333 -2.2 0.1)
(2.93333 -2.01667 0.1)
(2.93333 -1.83333 0.1)
(2.93333 -1.65 0.1)
(2.93333 -1.46667 0.1)
(2.84722 -1.46667 0.1)
(2.84722 -1.375 0.1)
(2.76111 -1.375 0.1)
(2.76111 -1.28333 0.1)
(2.84722 -1.28333 0.1)
(2.84722 -1.19167 0.1)
(2.76111 -1.19167 0.1)
(2.76111 -1.1 0.1)
(2.84722 -1.1 0.1)
(2.84722 -1.00833 0.1)
(2.80417 -1.00833 0.1)
(2.76111 -1.00833 0.1)
(2.76111 -0.916667 0.1)
(2.80417 -0.916667 0.1)
(2.80417 -0.870833 0.1)
(2.76111 -0.870833 0.1)
(2.76111 -0.733333 0.1)
(2.80417 -0.733333 0.1)
(2.80417 -0.6875 0.1)
(2.76111 -0.6875 0.1)
(2.76111 -0.55 0.1)
(2.80417 -0.55 0.1)
(2.80417 -0.504167 0.1)
(2.76111 -0.504167 0.1)
(2.76111 -0.366667 0.1)
(2.80417 -0.366667 0.1)
(2.80417 -0.320833 0.1)
(2.76111 -0.320833 0.1)
(2.76111 -0.183333 0.1)
(2.80417 -0.183333 0.1)
(2.80417 -0.1375 0.1)
(2.76111 -0.1375 0.1)
(2.76111 1.85037e-17 0.1)
(2.80417 1.85037e-17 0.1)
(2.80417 0.0458333 0.1)
(2.76111 0.0458333 0.1)
(2.76111 0.183333 0.1)
(2.80417 0.183333 0.1)
(2.80417 0.229167 0.1)
(2.76111 0.229167 0.1)
(2.76111 0.366667 0.1)
(2.80417 0.366667 0.1)
(2.80417 0.4125 0.1)
(2.76111 0.4125 0.1)
(2.76111 0.55 0.1)
(2.80417 0.55 0.1)
(2.80417 0.595833 0.1)
(2.76111 0.595833 0.1)
(2.76111 0.733333 0.1)
(2.80417 0.733333 0.1)
(2.80417 0.779167 0.1)
(2.76111 0.779167 0.1)
(2.76111 0.916667 0.1)
(2.80417 0.916667 0.1)
(2.80417 0.9625 0.1)
(2.76111 0.9625 0.1)
(2.76111 1.1 0.1)
(2.84722 1.1 0.1)
(2.84722 1.19167 0.1)
(2.76111 1.19167 0.1)
(2.76111 1.28333 0.1)
(2.84722 1.28333 0.1)
(2.84722 1.375 0.1)
(2.76111 1.375 0.1)
(2.84722 1.46667 0.1)
(2.93333 1.46667 0.1)
(2.93333 1.65 0.1)
(2.93333 1.83333 0.1)
(2.93333 2.01667 0.1)
(2.93333 2.2 0.1)
(3.10556 -2.2 0.1)
(3.10556 -2.01667 0.1)
(3.10556 -1.83333 0.1)
(3.10556 -1.65 0.1)
(3.10556 -1.46667 0.1)
(3.01944 -1.46667 0.1)
(3.01944 -1.375 0.1)
(2.93333 -1.375 0.1)
(2.93333 -1.28333 0.1)
(3.01944 -1.28333 0.1)
(3.01944 -1.19167 0.1)
(2.93333 -1.19167 0.1)
(2.93333 -1.1 0.1)
(3.01944 -1.1 0.1)
(3.01944 -1.00833 0.1)
(2.97639 -1.00833 0.1)
(2.93333 -1.00833 0.1)
(2.93333 -0.916667 0.1)
(2.97639 -0.916667 0.1)
(2.97639 -0.870833 0.1)
(2.93333 -0.870833 0.1)
(2.93333 -0.733333 0.1)
(2.97639 -0.733333 0.1)
(2.97639 -0.6875 0.1)
(2.93333 -0.6875 0.1)
(2.93333 -0.55 0.1)
(2.97639 -0.55 0.1)
(2.97639 -0.504167 0.1)
(2.93333 -0.504167 0.1)
(2.93333 -0.366667 0.1)
(2.97639 -0.366667 0.1)
(2.97639 -0.320833 0.1)
(2.93333 -0.320833 0.1)
(2.93333 -0.183333 0.1)
(2.97639 -0.183333 0.1)
(2.97639 -0.1375 0.1)
(2.93333 -0.1375 0.1)
(2.93333 1.85037e-17 0.1)
(2.97639 1.38778e-17 0.1)
(2.97639 0.0458333 0.1)
(2.93333 0.0458333 0.1)
(2.93333 0.183333 0.1)
(2.97639 0.183333 0.1)
(2.97639 0.229167 0.1)
(2.93333 0.229167 0.1)
(2.93333 0.366667 0.1)
(2.97639 0.366667 0.1)
(2.97639 0.4125 0.1)
(2.93333 0.4125 0.1)
(2.93333 0.55 0.1)
(2.97639 0.55 0.1)
(2.97639 0.595833 0.1)
(2.93333 0.595833 0.1)
(2.93333 0.733333 0.1)
(2.97639 0.733333 0.1)
(2.97639 0.779167 0.1)
(2.93333 0.779167 0.1)
(2.93333 0.916667 0.1)
(2.97639 0.916667 0.1)
(2.97639 0.9625 0.1)
(2.93333 0.9625 0.1)
(2.93333 1.1 0.1)
(3.01944 1.1 0.1)
(3.01944 1.19167 0.1)
(2.93333 1.19167 0.1)
(2.93333 1.28333 0.1)
(3.01944 1.28333 0.1)
(3.01944 1.375 0.1)
(2.93333 1.375 0.1)
(3.01944 1.46667 0.1)
(3.10556 1.46667 0.1)
(3.10556 1.65 0.1)
(3.10556 1.83333 0.1)
(3.10556 2.01667 0.1)
(3.10556 2.2 0.1)
(3.27778 -2.2 0.1)
(3.27778 -2.01667 0.1)
(3.27778 -1.83333 0.1)
(3.27778 -1.65 0.1)
(3.27778 -1.46667 0.1)
(3.19167 -1.46667 0.1)
(3.19167 -1.375 0.1)
(3.10556 -1.375 0.1)
(3.10556 -1.28333 0.1)
(3.19167 -1.28333 0.1)
(3.19167 -1.19167 0.1)
(3.10556 -1.19167 0.1)
(3.10556 -1.1 0.1)
(3.19167 -1.1 0.1)
(3.19167 -1.00833 0.1)
(3.14861 -1.00833 0.1)
(3.10556 -1.00833 0.1)
(3.10556 -0.916667 0.1)
(3.14861 -0.916667 0.1)
(3.14861 -0.870833 0.1)
(3.10556 -0.870833 0.1)
(3.10556 -0.733333 0.1)
(3.14861 -0.733333 0.1)
(3.14861 -0.6875 0.1)
(3.10556 -0.6875 0.1)
(3.10556 -0.55 0.1)
(3.14861 -0.55 0.1)
(3.14861 -0.504167 0.1)
(3.10556 -0.504167 0.1)
(3.10556 -0.366667 0.1)
(3.14861 -0.366667 0.1)
(3.14861 -0.320833 0.1)
(3.10556 -0.320833 0.1)
(3.10556 -0.183333 0.1)
(3.14861 -0.183333 0.1)
(3.14861 -0.1375 0.1)
(3.10556 -0.1375 0.1)
(3.10556 0 0.1)
(3.14861 0 0.1)
(3.14861 0.0458333 0.1)
(3.10556 0.0458333 0.1)
(3.10556 0.183333 0.1)
(3.14861 0.183333 0.1)
(3.14861 0.229167 0.1)
(3.10556 0.229167 0.1)
(3.10556 0.366667 0.1)
(3.14861 0.366667 0.1)
(3.14861 0.4125 0.1)
(3.10556 0.4125 0.1)
(3.10556 0.55 0.1)
(3.14861 0.55 0.1)
(3.14861 0.595833 0.1)
(3.10556 0.595833 0.1)
(3.10556 0.733333 0.1)
(3.14861 0.733333 0.1)
(3.14861 0.779167 0.1)
(3.10556 0.779167 0.1)
(3.10556 0.916667 0.1)
(3.14861 0.916667 0.1)
(3.14861 0.9625 0.1)
(3.10556 0.9625 0.1)
(3.10556 1.1 0.1)
(3.19167 1.1 0.1)
(3.19167 1.19167 0.1)
(3.10556 1.19167 0.1)
(3.10556 1.28333 0.1)
(3.19167 1.28333 0.1)
(3.19167 1.375 0.1)
(3.10556 1.375 0.1)
(3.19167 1.46667 0.1)
(3.27778 1.46667 0.1)
(3.27778 1.65 0.1)
(3.27778 1.83333 0.1)
(3.27778 2.01667 0.1)
(3.27778 2.2 0.1)
(3.45 -2.2 0.1)
(3.45 -2.01667 0.1)
(3.45 -1.83333 0.1)
(3.45 -1.65 0.1)
(3.45 -1.46667 0.1)
(3.36389 -1.46667 0.1)
(3.36389 -1.375 0.1)
(3.27778 -1.375 0.1)
(3.27778 -1.28333 0.1)
(3.36389 -1.28333 0.1)
(3.36389 -1.19167 0.1)
(3.27778 -1.19167 0.1)
(3.27778 -1.1 0.1)
(3.36389 -1.1 0.1)
(3.36389 -1.00833 0.1)
(3.32083 -1.00833 0.1)
(3.27778 -1.00833 0.1)
(3.27778 -0.916667 0.1)
(3.32083 -0.916667 0.1)
(3.32083 -0.870833 0.1)
(3.27778 -0.870833 0.1)
(3.27778 -0.733333 0.1)
(3.32083 -0.733333 0.1)
(3.32083 -0.6875 0.1)
(3.27778 -0.6875 0.1)
(3.27778 -0.55 0.1)
(3.32083 -0.55 0.1)
(3.32083 -0.504167 0.1)
(3.27778 -0.504167 0.1)
(3.27778 -0.366667 0.1)
(3.32083 -0.366667 0.1)
(3.32083 -0.320833 0.1)
(3.27778 -0.320833 0.1)
(3.27778 -0.183333 0.1)
(3.32083 -0.183333 0.1)
(3.32083 -0.1375 0.1)
(3.27778 -0.1375 0.1)
(3.27778 0 0.1)
(3.32083 0 0.1)
(3.32083 0.0458333 0.1)
(3.27778 0.0458333 0.1)
(3.27778 0.183333 0.1)
(3.32083 0.183333 0.1)
(3.32083 0.229167 0.1)
(3.27778 0.229167 0.1)
(3.27778 0.366667 0.1)
(3.32083 0.366667 0.1)
(3.32083 0.4125 0.1)
(3.27778 0.4125 0.1)
(3.27778 0.55 0.1)
(3.32083 0.55 0.1)
(3.32083 0.595833 0.1)
(3.27778 0.595833 0.1)
(3.27778 0.733333 0.1)
(3.32083 0.733333 0.1)
(3.32083 0.779167 0.1)
(3.27778 0.779167 0.1)
(3.27778 0.916667 0.1)
(3.32083 0.916667 0.1)
(3.32083 0.9625 0.1)
(3.27778 0.9625 0.1)
(3.27778 1.1 0.1)
(3.36389 1.1 0.1)
(3.36389 1.19167 0.1)
(3.27778 1.19167 0.1)
(3.27778 1.28333 0.1)
(3.36389 1.28333 0.1)
(3.36389 1.375 0.1)
(3.27778 1.375 0.1)
(3.36389 1.46667 0.1)
(3.45 1.46667 0.1)
(3.45 1.65 0.1)
(3.45 1.83333 0.1)
(3.45 2.01667 0.1)
(3.45 2.2 0.1)
(3.62222 -2.2 0.1)
(3.62222 -2.01667 0.1)
(3.62222 -1.83333 0.1)
(3.62222 -1.65 0.1)
(3.62222 -1.46667 0.1)
(3.53611 -1.46667 0.1)
(3.53611 -1.375 0.1)
(3.45 -1.375 0.1)
(3.45 -1.28333 0.1)
(3.53611 -1.28333 0.1)
(3.53611 -1.19167 0.1)
(3.45 -1.19167 0.1)
(3.45 -1.1 0.1)
(3.53611 -1.1 0.1)
(3.53611 -1.00833 0.1)
(3.49306 -1.00833 0.1)
(3.45 -1.00833 0.1)
(3.45 -0.916667 0.1)
(3.49306 -0.916667 0.1)
(3.49306 -0.870833 0.1)
(3.45 -0.870833 0.1)
(3.45 -0.733333 0.1)
(3.49306 -0.733333 0.1)
(3.49306 -0.6875 0.1)
(3.45 -0.6875 0.1)
(3.45 -0.55 0.1)
(3.49306 -0.55 0.1)
(3.49306 -0.504167 0.1)
(3.45 -0.504167 0.1)
(3.45 -0.366667 0.1)
(3.49306 -0.366667 0.1)
(3.49306 -0.320833 0.1)
(3.45 -0.320833 0.1)
(3.45 -0.183333 0.1)
(3.49306 -0.183333 0.1)
(3.49306 -0.1375 0.1)
(3.45 -0.1375 0.1)
(3.45 0 0.1)
(3.49306 0 0.1)
(3.49306 0.0458333 0.1)
(3.45 0.0458333 0.1)
(3.45 0.183333 0.1)
(3.49306 0.183333 0.1)
(3.49306 0.229167 0.1)
(3.45 0.229167 0.1)
(3.45 0.366667 0.1)
(3.49306 0.366667 0.1)
(3.49306 0.4125 0.1)
(3.45 0.4125 0.1)
(3.45 0.55 0.1)
(3.49306 0.55 0.1)
(3.49306 0.595833 0.1)
(3.45 0.595833 0.1)
(3.45 0.733333 0.1)
(3.49306 0.733333 0.1)
(3.49306 0.779167 0.1)
(3.45 0.779167 0.1)
(3.45 0.916667 0.1)
(3.49306 0.916667 0.1)
(3.49306 0.9625 0.1)
(3.45 0.9625 0.1)
(3.45 1.1 0.1)
(3.53611 1.1 0.1)
(3.53611 1.19167 0.1)
(3.45 1.19167 0.1)
(3.45 1.28333 0.1)
(3.53611 1.28333 0.1)
(3.53611 1.375 0.1)
(3.45 1.375 0.1)
(3.53611 1.46667 0.1)
(3.62222 1.46667 0.1)
(3.62222 1.65 0.1)
(3.62222 1.83333 0.1)
(3.62222 2.01667 0.1)
(3.62222 2.2 0.1)
(3.79444 -2.2 0.1)
(3.79444 -2.01667 0.1)
(3.79444 -1.83333 0.1)
(3.79444 -1.65 0.1)
(3.79444 -1.46667 0.1)
(3.70833 -1.46667 0.1)
(3.70833 -1.375 0.1)
(3.62222 -1.375 0.1)
(3.62222 -1.28333 0.1)
(3.70833 -1.28333 0.1)
(3.70833 -1.19167 0.1)
(3.62222 -1.19167 0.1)
(3.62222 -1.1 0.1)
(3.70833 -1.1 0.1)
(3.70833 -1.00833 0.1)
(3.66528 -1.00833 0.1)
(3.62222 -1.00833 0.1)
(3.62222 -0.916667 0.1)
(3.66528 -0.916667 0.1)
(3.66528 -0.870833 0.1)
(3.62222 -0.870833 0.1)
(3.62222 -0.733333 0.1)
(3.66528 -0.733333 0.1)
(3.66528 -0.6875 0.1)
(3.62222 -0.6875 0.1)
(3.62222 -0.55 0.1)
(3.66528 -0.55 0.1)
(3.66528 -0.504167 0.1)
(3.62222 -0.504167 0.1)
(3.62222 -0.366667 0.1)
(3.66528 -0.366667 0.1)
(3.66528 -0.320833 0.1)
(3.62222 -0.320833 0.1)
(3.62222 -0.183333 0.1)
(3.66528 -0.183333 0.1)
(3.66528 -0.1375 0.1)
(3.62222 -0.1375 0.1)
(3.62222 0 0.1)
(3.66528 -2.31296e-18 0.1)
(3.66528 0.0458333 0.1)
(3.62222 0.0458333 0.1)
(3.62222 0.183333 0.1)
(3.66528 0.183333 0.1)
(3.66528 0.229167 0.1)
(3.62222 0.229167 0.1)
(3.62222 0.366667 0.1)
(3.66528 0.366667 0.1)
(3.66528 0.4125 0.1)
(3.62222 0.4125 0.1)
(3.62222 0.55 0.1)
(3.66528 0.55 0.1)
(3.66528 0.595833 0.1)
(3.62222 0.595833 0.1)
(3.62222 0.733333 0.1)
(3.66528 0.733333 0.1)
(3.66528 0.779167 0.1)
(3.62222 0.779167 0.1)
(3.62222 0.916667 0.1)
(3.66528 0.916667 0.1)
(3.66528 0.9625 0.1)
(3.62222 0.9625 0.1)
(3.62222 1.1 0.1)
(3.70833 1.1 0.1)
(3.70833 1.19167 0.1)
(3.62222 1.19167 0.1)
(3.62222 1.28333 0.1)
(3.70833 1.28333 0.1)
(3.70833 1.375 0.1)
(3.62222 1.375 0.1)
(3.70833 1.46667 0.1)
(3.79444 1.46667 0.1)
(3.79444 1.65 0.1)
(3.79444 1.83333 0.1)
(3.79444 2.01667 0.1)
(3.79444 2.2 0.1)
(3.96667 -2.2 0.1)
(3.96667 -2.01667 0.1)
(3.96667 -1.83333 0.1)
(3.96667 -1.65 0.1)
(3.96667 -1.46667 0.1)
(3.88056 -1.46667 0.1)
(3.88056 -1.375 0.1)
(3.79444 -1.375 0.1)
(3.79444 -1.28333 0.1)
(3.88056 -1.28333 0.1)
(3.88056 -1.19167 0.1)
(3.79444 -1.19167 0.1)
(3.79444 -1.1 0.1)
(3.88056 -1.1 0.1)
(3.88056 -1.00833 0.1)
(3.8375 -1.00833 0.1)
(3.79444 -1.00833 0.1)
(3.79444 -0.916667 0.1)
(3.8375 -0.916667 0.1)
(3.8375 -0.870833 0.1)
(3.79444 -0.870833 0.1)
(3.79444 -0.733333 0.1)
(3.8375 -0.733333 0.1)
(3.8375 -0.6875 0.1)
(3.79444 -0.6875 0.1)
(3.79444 -0.55 0.1)
(3.8375 -0.55 0.1)
(3.8375 -0.504167 0.1)
(3.79444 -0.504167 0.1)
(3.79444 -0.366667 0.1)
(3.8375 -0.366667 0.1)
(3.8375 -0.320833 0.1)
(3.79444 -0.320833 0.1)
(3.79444 -0.183333 0.1)
(3.8375 -0.183333 0.1)
(3.8375 -0.1375 0.1)
(3.79444 -0.1375 0.1)
(3.79444 -9.25186e-18 0.1)
(3.8375 -9.25186e-18 0.1)
(3.8375 0.0458333 0.1)
(3.79444 0.0458333 0.1)
(3.79444 0.183333 0.1)
(3.8375 0.183333 0.1)
(3.8375 0.229167 0.1)
(3.79444 0.229167 0.1)
(3.79444 0.366667 0.1)
(3.8375 0.366667 0.1)
(3.8375 0.4125 0.1)
(3.79444 0.4125 0.1)
(3.79444 0.55 0.1)
(3.8375 0.55 0.1)
(3.8375 0.595833 0.1)
(3.79444 0.595833 0.1)
(3.79444 0.733333 0.1)
(3.8375 0.733333 0.1)
(3.8375 0.779167 0.1)
(3.79444 0.779167 0.1)
(3.79444 0.916667 0.1)
(3.8375 0.916667 0.1)
(3.8375 0.9625 0.1)
(3.79444 0.9625 0.1)
(3.79444 1.1 0.1)
(3.88056 1.1 0.1)
(3.88056 1.19167 0.1)
(3.79444 1.19167 0.1)
(3.79444 1.28333 0.1)
(3.88056 1.28333 0.1)
(3.88056 1.375 0.1)
(3.79444 1.375 0.1)
(3.88056 1.46667 0.1)
(3.96667 1.46667 0.1)
(3.96667 1.65 0.1)
(3.96667 1.83333 0.1)
(3.96667 2.01667 0.1)
(3.96667 2.2 0.1)
(4.13889 -2.2 0.1)
(4.13889 -2.01667 0.1)
(4.13889 -1.83333 0.1)
(4.13889 -1.65 0.1)
(4.13889 -1.46667 0.1)
(4.05278 -1.46667 0.1)
(4.05278 -1.375 0.1)
(3.96667 -1.375 0.1)
(3.96667 -1.28333 0.1)
(4.05278 -1.28333 0.1)
(4.05278 -1.19167 0.1)
(3.96667 -1.19167 0.1)
(3.96667 -1.1 0.1)
(4.05278 -1.1 0.1)
(4.05278 -1.00833 0.1)
(4.00972 -1.00833 0.1)
(3.96667 -1.00833 0.1)
(3.96667 -0.916667 0.1)
(4.00972 -0.916667 0.1)
(4.00972 -0.870833 0.1)
(3.96667 -0.870833 0.1)
(3.96667 -0.733333 0.1)
(4.00972 -0.733333 0.1)
(4.00972 -0.6875 0.1)
(3.96667 -0.6875 0.1)
(3.96667 -0.55 0.1)
(4.00972 -0.55 0.1)
(4.00972 -0.504167 0.1)
(3.96667 -0.504167 0.1)
(3.96667 -0.366667 0.1)
(4.00972 -0.366667 0.1)
(4.00972 -0.320833 0.1)
(3.96667 -0.320833 0.1)
(3.96667 -0.183333 0.1)
(4.00972 -0.183333 0.1)
(4.00972 -0.1375 0.1)
(3.96667 -0.1375 0.1)
(3.96667 -9.25186e-18 0.1)
(4.00972 -1.15648e-17 0.1)
(4.00972 0.0458333 0.1)
(3.96667 0.0458333 0.1)
(3.96667 0.183333 0.1)
(4.00972 0.183333 0.1)
(4.00972 0.229167 0.1)
(3.96667 0.229167 0.1)
(3.96667 0.366667 0.1)
(4.00972 0.366667 0.1)
(4.00972 0.4125 0.1)
(3.96667 0.4125 0.1)
(3.96667 0.55 0.1)
(4.00972 0.55 0.1)
(4.00972 0.595833 0.1)
(3.96667 0.595833 0.1)
(3.96667 0.733333 0.1)
(4.00972 0.733333 0.1)
(4.00972 0.779167 0.1)
(3.96667 0.779167 0.1)
(3.96667 0.916667 0.1)
(4.00972 0.916667 0.1)
(4.00972 0.9625 0.1)
(3.96667 0.9625 0.1)
(3.96667 1.1 0.1)
(4.05278 1.1 0.1)
(4.05278 1.19167 0.1)
(3.96667 1.19167 0.1)
(3.96667 1.28333 0.1)
(4.05278 1.28333 0.1)
(4.05278 1.375 0.1)
(3.96667 1.375 0.1)
(4.05278 1.46667 0.1)
(4.13889 1.46667 0.1)
(4.13889 1.65 0.1)
(4.13889 1.83333 0.1)
(4.13889 2.01667 0.1)
(4.13889 2.2 0.1)
(4.31111 -2.2 0.1)
(4.31111 -2.01667 0.1)
(4.31111 -1.83333 0.1)
(4.31111 -1.65 0.1)
(4.31111 -1.46667 0.1)
(4.225 -1.46667 0.1)
(4.225 -1.375 0.1)
(4.13889 -1.375 0.1)
(4.13889 -1.28333 0.1)
(4.225 -1.28333 0.1)
(4.225 -1.19167 0.1)
(4.13889 -1.19167 0.1)
(4.13889 -1.1 0.1)
(4.225 -1.1 0.1)
(4.225 -1.00833 0.1)
(4.18194 -1.00833 0.1)
(4.13889 -1.00833 0.1)
(4.13889 -0.916667 0.1)
(4.18194 -0.916667 0.1)
(4.18194 -0.870833 0.1)
(4.13889 -0.870833 0.1)
(4.13889 -0.733333 0.1)
(4.18194 -0.733333 0.1)
(4.18194 -0.6875 0.1)
(4.13889 -0.6875 0.1)
(4.13889 -0.55 0.1)
(4.18194 -0.55 0.1)
(4.18194 -0.504167 0.1)
(4.13889 -0.504167 0.1)
(4.13889 -0.366667 0.1)
(4.18194 -0.366667 0.1)
(4.18194 -0.320833 0.1)
(4.13889 -0.320833 0.1)
(4.13889 -0.183333 0.1)
(4.18194 -0.183333 0.1)
(4.18194 -0.1375 0.1)
(4.13889 -0.1375 0.1)
(4.13889 -1.85037e-17 0.1)
(4.18194 -9.25186e-18 0.1)
(4.18194 0.0458333 0.1)
(4.13889 0.0458333 0.1)
(4.13889 0.183333 0.1)
(4.18194 0.183333 0.1)
(4.18194 0.229167 0.1)
(4.13889 0.229167 0.1)
(4.13889 0.366667 0.1)
(4.18194 0.366667 0.1)
(4.18194 0.4125 0.1)
(4.13889 0.4125 0.1)
(4.13889 0.55 0.1)
(4.18194 0.55 0.1)
(4.18194 0.595833 0.1)
(4.13889 0.595833 0.1)
(4.13889 0.733333 0.1)
(4.18194 0.733333 0.1)
(4.18194 0.779167 0.1)
(4.13889 0.779167 0.1)
(4.13889 0.916667 0.1)
(4.18194 0.916667 0.1)
(4.18194 0.9625 0.1)
(4.13889 0.9625 0.1)
(4.13889 1.1 0.1)
(4.225 1.1 0.1)
(4.225 1.19167 0.1)
(4.13889 1.19167 0.1)
(4.13889 1.28333 0.1)
(4.225 1.28333 0.1)
(4.225 1.375 0.1)
(4.13889 1.375 0.1)
(4.225 1.46667 0.1)
(4.31111 1.46667 0.1)
(4.31111 1.65 0.1)
(4.31111 1.83333 0.1)
(4.31111 2.01667 0.1)
(4.31111 2.2 0.1)
(4.48333 -2.2 0.1)
(4.48333 -2.01667 0.1)
(4.48333 -1.83333 0.1)
(4.48333 -1.65 0.1)
(4.48333 -1.46667 0.1)
(4.39722 -1.46667 0.1)
(4.39722 -1.375 0.1)
(4.31111 -1.375 0.1)
(4.31111 -1.28333 0.1)
(4.39722 -1.28333 0.1)
(4.39722 -1.19167 0.1)
(4.31111 -1.19167 0.1)
(4.31111 -1.1 0.1)
(4.39722 -1.1 0.1)
(4.39722 -1.00833 0.1)
(4.35417 -1.00833 0.1)
(4.31111 -1.00833 0.1)
(4.31111 -0.916667 0.1)
(4.35417 -0.916667 0.1)
(4.35417 -0.870833 0.1)
(4.31111 -0.870833 0.1)
(4.31111 -0.733333 0.1)
(4.35417 -0.733333 0.1)
(4.35417 -0.6875 0.1)
(4.31111 -0.6875 0.1)
(4.31111 -0.55 0.1)
(4.35417 -0.55 0.1)
(4.35417 -0.504167 0.1)
(4.31111 -0.504167 0.1)
(4.31111 -0.366667 0.1)
(4.35417 -0.366667 0.1)
(4.35417 -0.320833 0.1)
(4.31111 -0.320833 0.1)
(4.31111 -0.183333 0.1)
(4.35417 -0.183333 0.1)
(4.35417 -0.1375 0.1)
(4.31111 -0.1375 0.1)
(4.31111 1.85037e-17 0.1)
(4.35417 8.09538e-18 0.1)
(4.35417 0.0458333 0.1)
(4.31111 0.0458333 0.1)
(4.31111 0.183333 0.1)
(4.35417 0.183333 0.1)
(4.35417 0.229167 0.1)
(4.31111 0.229167 0.1)
(4.31111 0.366667 0.1)
(4.35417 0.366667 0.1)
(4.35417 0.4125 0.1)
(4.31111 0.4125 0.1)
(4.31111 0.55 0.1)
(4.35417 0.55 0.1)
(4.35417 0.595833 0.1)
(4.31111 0.595833 0.1)
(4.31111 0.733333 0.1)
(4.35417 0.733333 0.1)
(4.35417 0.779167 0.1)
(4.31111 0.779167 0.1)
(4.31111 0.916667 0.1)
(4.35417 0.916667 0.1)
(4.35417 0.9625 0.1)
(4.31111 0.9625 0.1)
(4.31111 1.1 0.1)
(4.39722 1.1 0.1)
(4.39722 1.19167 0.1)
(4.31111 1.19167 0.1)
(4.31111 1.28333 0.1)
(4.39722 1.28333 0.1)
(4.39722 1.375 0.1)
(4.31111 1.375 0.1)
(4.39722 1.46667 0.1)
(4.48333 1.46667 0.1)
(4.48333 1.65 0.1)
(4.48333 1.83333 0.1)
(4.48333 2.01667 0.1)
(4.48333 2.2 0.1)
(4.65556 -2.2 0.1)
(4.65556 -2.01667 0.1)
(4.65556 -1.83333 0.1)
(4.65556 -1.65 0.1)
(4.65556 -1.46667 0.1)
(4.56944 -1.46667 0.1)
(4.56944 -1.375 0.1)
(4.48333 -1.375 0.1)
(4.48333 -1.28333 0.1)
(4.56944 -1.28333 0.1)
(4.56944 -1.19167 0.1)
(4.48333 -1.19167 0.1)
(4.48333 -1.1 0.1)
(4.56944 -1.1 0.1)
(4.56944 -1.00833 0.1)
(4.52639 -1.00833 0.1)
(4.48333 -1.00833 0.1)
(4.48333 -0.916667 0.1)
(4.52639 -0.916667 0.1)
(4.52639 -0.870833 0.1)
(4.48333 -0.870833 0.1)
(4.48333 -0.733333 0.1)
(4.52639 -0.733333 0.1)
(4.52639 -0.6875 0.1)
(4.48333 -0.6875 0.1)
(4.48333 -0.55 0.1)
(4.52639 -0.55 0.1)
(4.52639 -0.504167 0.1)
(4.48333 -0.504167 0.1)
(4.48333 -0.366667 0.1)
(4.52639 -0.366667 0.1)
(4.52639 -0.320833 0.1)
(4.48333 -0.320833 0.1)
(4.48333 -0.183333 0.1)
(4.52639 -0.183333 0.1)
(4.52639 -0.1375 0.1)
(4.48333 -0.1375 0.1)
(4.48333 -2.31296e-17 0.1)
(4.52639 -1.50343e-17 0.1)
(4.52639 0.0458333 0.1)
(4.48333 0.0458333 0.1)
(4.48333 0.183333 0.1)
(4.52639 0.183333 0.1)
(4.52639 0.229167 0.1)
(4.48333 0.229167 0.1)
(4.48333 0.366667 0.1)
(4.52639 0.366667 0.1)
(4.52639 0.4125 0.1)
(4.48333 0.4125 0.1)
(4.48333 0.55 0.1)
(4.52639 0.55 0.1)
(4.52639 0.595833 0.1)
(4.48333 0.595833 0.1)
(4.48333 0.733333 0.1)
(4.52639 0.733333 0.1)
(4.52639 0.779167 0.1)
(4.48333 0.779167 0.1)
(4.48333 0.916667 0.1)
(4.52639 0.916667 0.1)
(4.52639 0.9625 0.1)
(4.48333 0.9625 0.1)
(4.48333 1.1 0.1)
(4.56944 1.1 0.1)
(4.56944 1.19167 0.1)
(4.48333 1.19167 0.1)
(4.48333 1.28333 0.1)
(4.56944 1.28333 0.1)
(4.56944 1.375 0.1)
(4.48333 1.375 0.1)
(4.56944 1.46667 0.1)
(4.65556 1.46667 0.1)
(4.65556 1.65 0.1)
(4.65556 1.83333 0.1)
(4.65556 2.01667 0.1)
(4.65556 2.2 0.1)
(4.82778 -2.2 0.1)
(4.82778 -2.01667 0.1)
(4.82778 -1.83333 0.1)
(4.82778 -1.65 0.1)
(4.82778 -1.46667 0.1)
(4.74167 -1.46667 0.1)
(4.74167 -1.375 0.1)
(4.65556 -1.375 0.1)
(4.65556 -1.28333 0.1)
(4.74167 -1.28333 0.1)
(4.74167 -1.19167 0.1)
(4.65556 -1.19167 0.1)
(4.65556 -1.1 0.1)
(4.74167 -1.1 0.1)
(4.74167 -1.00833 0.1)
(4.69861 -1.00833 0.1)
(4.65556 -1.00833 0.1)
(4.65556 -0.916667 0.1)
(4.69861 -0.916667 0.1)
(4.69861 -0.870833 0.1)
(4.65556 -0.870833 0.1)
(4.65556 -0.733333 0.1)
(4.69861 -0.733333 0.1)
(4.69861 -0.6875 0.1)
(4.65556 -0.6875 0.1)
(4.65556 -0.55 0.1)
(4.69861 -0.55 0.1)
(4.69861 -0.504167 0.1)
(4.65556 -0.504167 0.1)
(4.65556 -0.366667 0.1)
(4.69861 -0.366667 0.1)
(4.69861 -0.320833 0.1)
(4.65556 -0.320833 0.1)
(4.65556 -0.183333 0.1)
(4.69861 -0.183333 0.1)
(4.69861 -0.1375 0.1)
(4.65556 -0.1375 0.1)
(4.65556 9.25186e-18 0.1)
(4.69861 -1.15648e-18 0.1)
(4.69861 0.0458333 0.1)
(4.65556 0.0458333 0.1)
(4.65556 0.183333 0.1)
(4.69861 0.183333 0.1)
(4.69861 0.229167 0.1)
(4.65556 0.229167 0.1)
(4.65556 0.366667 0.1)
(4.69861 0.366667 0.1)
(4.69861 0.4125 0.1)
(4.65556 0.4125 0.1)
(4.65556 0.55 0.1)
(4.69861 0.55 0.1)
(4.69861 0.595833 0.1)
(4.65556 0.595833 0.1)
(4.65556 0.733333 0.1)
(4.69861 0.733333 0.1)
(4.69861 0.779167 0.1)
(4.65556 0.779167 0.1)
(4.65556 0.916667 0.1)
(4.69861 0.916667 0.1)
(4.69861 0.9625 0.1)
(4.65556 0.9625 0.1)
(4.65556 1.1 0.1)
(4.74167 1.1 0.1)
(4.74167 1.19167 0.1)
(4.65556 1.19167 0.1)
(4.65556 1.28333 0.1)
(4.74167 1.28333 0.1)
(4.74167 1.375 0.1)
(4.65556 1.375 0.1)
(4.74167 1.46667 0.1)
(4.82778 1.46667 0.1)
(4.82778 1.65 0.1)
(4.82778 1.83333 0.1)
(4.82778 2.01667 0.1)
(4.82778 2.2 0.1)
(5 -2.2 0.1)
(5 -2.01667 0.1)
(5 -1.83333 0.1)
(5 -1.65 0.1)
(5 -1.46667 0.1)
(4.91389 -1.46667 0.1)
(4.91389 -1.375 0.1)
(4.82778 -1.375 0.1)
(4.82778 -1.28333 0.1)
(4.91389 -1.28333 0.1)
(4.91389 -1.19167 0.1)
(4.82778 -1.19167 0.1)
(4.82778 -1.1 0.1)
(4.91389 -1.1 0.1)
(4.91389 -1.00833 0.1)
(4.87083 -1.00833 0.1)
(4.82778 -1.00833 0.1)
(4.82778 -0.916667 0.1)
(4.87083 -0.916667 0.1)
(4.87083 -0.870833 0.1)
(4.82778 -0.870833 0.1)
(4.82778 -0.733333 0.1)
(4.87083 -0.733333 0.1)
(4.87083 -0.6875 0.1)
(4.82778 -0.6875 0.1)
(4.82778 -0.55 0.1)
(4.87083 -0.55 0.1)
(4.87083 -0.504167 0.1)
(4.82778 -0.504167 0.1)
(4.82778 -0.366667 0.1)
(4.87083 -0.366667 0.1)
(4.87083 -0.320833 0.1)
(4.82778 -0.320833 0.1)
(4.82778 -0.183333 0.1)
(4.87083 -0.183333 0.1)
(4.87083 -0.1375 0.1)
(4.82778 -0.1375 0.1)
(4.82778 -3.23815e-17 0.1)
(4.87083 -2.42861e-17 0.1)
(4.87083 0.0458333 0.1)
(4.82778 0.0458333 0.1)
(4.82778 0.183333 0.1)
(4.87083 0.183333 0.1)
(4.87083 0.229167 0.1)
(4.82778 0.229167 0.1)
(4.82778 0.366667 0.1)
(4.87083 0.366667 0.1)
(4.87083 0.4125 0.1)
(4.82778 0.4125 0.1)
(4.82778 0.55 0.1)
(4.87083 0.55 0.1)
(4.87083 0.595833 0.1)
(4.82778 0.595833 0.1)
(4.82778 0.733333 0.1)
(4.87083 0.733333 0.1)
(4.87083 0.779167 0.1)
(4.82778 0.779167 0.1)
(4.82778 0.916667 0.1)
(4.87083 0.916667 0.1)
(4.87083 0.9625 0.1)
(4.82778 0.9625 0.1)
(4.82778 1.1 0.1)
(4.91389 1.1 0.1)
(4.91389 1.19167 0.1)
(4.82778 1.19167 0.1)
(4.82778 1.28333 0.1)
(4.91389 1.28333 0.1)
(4.91389 1.375 0.1)
(4.82778 1.375 0.1)
(4.91389 1.46667 0.1)
(5 1.46667 0.1)
(5 1.65 0.1)
(5 1.83333 0.1)
(5 2.01667 0.1)
(5 2.2 0.1)
(0.139938461 -0.1361664619 0.1)
(0.1378469384 -0.1588171053 0.1)
(0.1727878738 0.2216941858 0.1)
(0.1706234068 0.1990583448 0.1)
(0.1814054689 0.1980619837 0.1)
(0.1922249272 0.1970681788 0.1)
(0.01852202855 0.2125338485 0.1)
(0.04036909004 0.2106926352 0.1)
(0.322379146 -0.1529500074 0.1)
(0.3116680369 -0.1519682639 0.1)
(0.3095712277 -0.1745892921 0.1)
(0.3455843524 0.2055172137 0.1)
(0.3435029615 0.1829108236 0.1)
(0.3542903103 0.1818848475 0.1)
(0.3650743947 0.1808561614 0.1)
(0.2030531622 0.1960715509 0.1)
(0.2138841996 0.1950726545 0.1)
(0.4938428431 -0.1686407713 0.1)
(0.4831252977 -0.1676634521 0.1)
(0.4810377887 -0.1902491886 0.1)
(0.5176800479 0.1889312342 0.1)
(0.515639964 0.1663370803 0.1)
(0.5263776704 0.1652956242 0.1)
(0.5371069491 0.1642499286 0.1)
(0.3758592902 0.1798253914 0.1)
(0.3866163977 0.178798204 0.1)
(0.665303871 -0.1842087635 0.1)
(0.6545904728 -0.1832408677 0.1)
(0.652513003 -0.2057833467 0.1)
(0.6893093658 0.1719406104 0.1)
(0.6872845155 0.1493591032 0.1)
(0.7087110251 0.1471712602 0.1)
(0.5586154363 0.1621338188 0.1)
(0.8357420748 -0.2108656855 0.1)
(0.8347066966 -0.2221332193 0.1)
(0.8607638737 -0.02723409779 0.1)
(0.8603046298 -0.03278998105 0.1)
(0.8656439853 -0.03336885261 0.1)
(0.8563468628 -0.01556683601 0.1)
(0.8554269358 -0.02663999444 0.1)
(0.8604573196 0.1541781566 0.1)
(0.8584444385 0.1316065861 0.1)
(0.8797860141 0.1293151467 0.1)
(0.7301377091 0.1450285943 0.1)
(1.008266914 -0.2203800689 0.1)
(1.007208368 -0.2317890672 0.1)
(1.024145565 -0.04924020071 0.1)
(1.023086962 -0.0606498103 0.1)
(1.033810921 -0.06164459676 0.1)
(0.8709767417 -0.03396472723 0.1)
(1.015548747 -0.02542735946 0.1)
(1.014905019 -0.03604569948 0.1)
(1.014421799 -0.04677421916 0.1)
(1.009479337 0.1374622815 0.1)
(1.00744571 0.1148835973 0.1)
(1.005384583 0.09217088041 0.1)
(1.026620407 0.08968136372 0.1)
(1.047984689 0.087331577 0.1)
(0.9011005308 0.1269810246 0.1)
(-0.03361417974 -0.1195979574 0.1)
(-0.03563222092 -0.1423106547 0.1)
(-0.1752976557 0.0382779365 0.1)
(-0.1540191611 0.03623749824 0.1)
(-0.0009770243184 0.2371093674 0.1)
(-0.003304979666 0.2143621539 0.1)
(-0.1565846396 0.2252022424 0.1)
(-0.1348351783 0.2237999229 0.1)
(0.09905811044 0.1369752927 0.1)
(0.0935931454 0.1374527148 0.1)
(0.09305972712 0.1317392603 0.1)
(0.09852693513 0.1312459631 0.1)
(0.01139808231 0.1443012882 0.1)
(0.01017873557 0.1329101216 0.1)
(0.02125717672 0.1320793879 0.1)
(0.02244483361 0.1434576269 0.1)
(0.1749214015 0.2443429404 0.1)
(0.1682718854 0.4050582838 0.1)
(0.1639793896 0.3596840889 0.1)
(0.2071088291 0.3556573582 0.1)
(0.03429419742 0.3715648549 0.1)
(0.07750490995 0.3676360345 0.1)
(0.2755499749 -0.3086345034 0.1)
(0.27144778 -0.3541072214 0.1)
(0.3074780113 -0.1972257182 0.1)
(0.328894902 -0.1991816809 0.1)
(0.1572833246 -0.1834611277 0.1)
(0.1787785797 -0.1854384213 0.1)
(0.2723027245 0.1199163478 0.1)
(0.2669062867 0.1204428489 0.1)
(0.2663163209 0.1140084352 0.1)
(0.2717089513 0.1134841955 0.1)
(0.1858718382 0.1289410538 0.1)
(0.1853445158 0.1230194459 0.1)
(0.1907605167 0.1226821466 0.1)
(0.191288525 0.1285245524 0.1)
(0.3476720153 0.2281370819 0.1)
(0.3407458198 0.3887806367 0.1)
(0.3365504653 0.3434265962 0.1)
(0.3796191454 0.339297039 0.1)
(0.2502685612 0.3516107438 0.1)
(0.4470227463 -0.324216641 0.1)
(0.4428673876 -0.3696357369 0.1)
(0.4789492429 -0.2128569234 0.1)
(0.5003840771 -0.2148035037 0.1)
(0.3503108893 -0.2011365555 0.1)
(0.4167055392 -0.1843837745 0.1)
(0.4187903587 -0.1617837283 0.1)
(0.4080682965 -0.1608009686 0.1)
(0.3973501249 -0.1598195741 0.1)
(0.3952637554 -0.1824255022 0.1)
(0.4250406619 -0.09401755114 0.1)
(0.4196777934 -0.09354056305 0.1)
(0.4143142946 -0.09308119208 0.1)
(0.4132738784 -0.1043705537 0.1)
(0.423996772 -0.105344352 0.1)
(0.339337795 -0.08615206068 0.1)
(0.3382944819 -0.09745099566 0.1)
(0.3489888281 -0.09844022255 0.1)
(0.3500274192 -0.08714888381 0.1)
(0.3446788552 -0.0866476134 0.1)
(0.4450521301 0.1048881373 0.1)
(0.4396622939 0.1053667236 0.1)
(0.4391459486 0.0996716705 0.1)
(0.4445387319 0.09922484775 0.1)
(0.3588170211 0.1129488337 0.1)
(0.3582690675 0.1071404159 0.1)
(0.36364075 0.10646617 0.1)
(0.3642019764 0.1123526956 0.1)
(0.5197345543 0.2115401186 0.1)
(0.5126972641 0.3721664834 0.1)
(0.5085978426 0.3268069366 0.1)
(0.5515198025 0.3226006057 0.1)
(0.4226006227 0.3351584996 0.1)
(0.618529331 -0.3397265938 0.1)
(0.6143333099 -0.3851503434 0.1)
(0.6504309346 -0.2283645666 0.1)
(0.6718615498 -0.2302916738 0.1)
(0.5218201843 -0.2167471892 0.1)
(0.5882263618 -0.1999784048 0.1)
(0.5903123722 -0.1774196452 0.1)
(0.5795933691 -0.1764472122 0.1)
(0.5688714712 -0.1754735063 0.1)
(0.5667889819 -0.1980376141 0.1)
(0.596537444 -0.1098821149 0.1)
(0.5911818308 -0.1093594015 0.1)
(0.5906559092 -0.1150386021 0.1)
(0.5960140609 -0.1155447793 0.1)
(0.5107755216 -0.1020794372 0.1)
(0.509745666 -0.1132982729 0.1)
(0.5204602038 -0.1142863603 0.1)
(0.5214902236 -0.1030765785 0.1)
(0.5161305938 -0.1025863329 0.1)
(0.6169251615 0.08817538644 0.1)
(0.6062032543 0.08924640937 0.1)
(0.6052001221 0.07800169415 0.1)
(0.6159261067 0.0769421436 0.1)
(0.5310103832 0.09661450753 0.1)
(0.5299917568 0.08534351135 0.1)
(0.5353737741 0.08481312584 0.1)
(0.5407670143 0.08429545789 0.1)
(0.5417627113 0.09556828021 0.1)
(0.8114286729 -0.3571711885 0.1)
(0.789991221 -0.3552203482 0.1)
(0.7857853875 -0.4007023021 0.1)
(0.823983413 -0.2211744493 0.1)
(0.8219061589 -0.2437470771 0.1)
(0.8433454584 -0.245678003 0.1)
(0.6932982317 -0.2322183396 0.1)
(0.7596787668 -0.2154120258 0.1)
(0.7607151406 -0.2041445844 0.1)
(0.7499901427 -0.2031826424 0.1)
(0.7489546722 -0.2144511719 0.1)
(0.7680196974 -0.1249507324 0.1)
(0.7626397539 -0.1245711835 0.1)
(0.7620773132 -0.1304924455 0.1)
(0.7674474648 -0.1309234096 0.1)
(0.6822591059 -0.1174259662 0.1)
(0.681709709 -0.1232607635 0.1)
(0.6870562405 -0.1237839398 0.1)
(0.6876000984 -0.1179871935 0.1)
(0.7805458888 -0.01881196717 0.1)
(0.7810384516 -0.01320005246 0.1)
(0.7756556995 -0.01275335697 0.1)
(0.7751441385 -0.01841849415 0.1)
(0.7883100148 0.07073643016 0.1)
(0.7776069348 0.07185883348 0.1)
(0.776627351 0.06061896347 0.1)
(0.7873272611 0.05950569206 0.1)
(0.7026841608 0.07958350367 0.1)
(0.7016910269 0.06835995529 0.1)
(0.7124032592 0.06727125055 0.1)
(0.7133968458 0.07849967798 0.1)
(0.9837914578 -0.3677069686 0.1)
(0.9626641335 -0.3691462778 0.1)
(0.958379289 -0.4147112875 0.1)
(0.9964943846 -0.2307950055 0.1)
(0.9943771993 -0.2536139979 0.1)
(1.015815123 -0.2556030453 0.1)
(0.864773805 -0.2476079126 0.1)
(0.8668495501 -0.225019076 0.1)
(0.9311468261 -0.230850112 0.1)
(0.9321829433 -0.2195746125 0.1)
(0.9214705613 -0.2185957637 0.1)
(0.9204334483 -0.2298711709 0.1)
(0.9394510014 -0.1405143599 0.1)
(0.9341605111 -0.1396794277 0.1)
(0.9336070759 -0.1455144528 0.1)
(0.938921837 -0.1462285104 0.1)
(0.8538177123 -0.1322778105 0.1)
(0.8532298533 -0.1383431404 0.1)
(0.858550722 -0.1389372492 0.1)
(0.8591244584 -0.1329591878 0.1)
(1.170094956 -0.22388754 0.1)
(1.167977863 -0.2467055367 0.1)
(1.184915068 -0.06415658442 0.1)
(1.18279791 -0.08697527813 0.1)
(1.204235835 -0.0889643255 0.1)
(1.044524914 -0.06263855895 0.1)
(0.08148566882 -0.06221403803 0.1)
(0.09228226961 -0.06322580812 0.1)
(0.09331855406 -0.05189438486 0.1)
(0.08791812211 -0.05138820161 0.1)
(0.08253002481 -0.05088979115 0.1)
(0.1677481951 -0.07024875631 0.1)
(0.1688044575 -0.05887519852 0.1)
(0.1634331007 -0.05838145458 0.1)
(0.1580440365 -0.05791619657 0.1)
(0.156991375 -0.06926176734 0.1)
(-0.006044039252 -0.05356582758 0.1)
(0.004994876473 -0.05472330706 0.1)
(0.005815196617 -0.04329923573 0.1)
(-0.005201416342 -0.04214362468 0.1)
(0.07169525085 -0.04986513934 0.1)
(0.07065922198 -0.06119056055 0.1)
(0.1804525677 0.1293946525 0.1)
(0.1799267666 0.1234244965 0.1)
(0.1039806752 0.1307644605 0.1)
(0.1045069335 0.1364884215 0.1)
(0.107798995 0.227613493 0.1)
(0.1055948295 0.2049491978 0.1)
(0.1164298692 0.2039750374 0.1)
(0.1273045028 0.2030022248 0.1)
(0.1294844805 0.2256536998 0.1)
(0.1099411799 0.1360208795 0.1)
(0.1110290336 0.147366901 0.1)
(0.1001659083 0.1483306114 0.1)
(0.186400016 0.1347528129 0.1)
(0.1809798831 0.1352295904 0.1)
(0.3339991883 -0.08565171411 0.1)
(0.3286489818 -0.08515732137 0.1)
(0.3276001358 -0.09646176877 0.1)
(0.2536163091 -0.07825993619 0.1)
(0.2525734785 -0.08954284721 0.1)
(0.2632867433 -0.09053382942 0.1)
(0.2643283011 -0.07925381318 0.1)
(0.2452526103 -0.1686960183 0.1)
(0.266693655 -0.1706622564 0.1)
(0.2687862246 -0.1480328005 0.1)
(0.2473464528 -0.1460636676 0.1)
(0.2653629936 -0.06800449397 0.1)
(0.2600118284 -0.06750961055 0.1)
(0.2546591265 -0.06699881713 0.1)
(0.3398636336 -0.08047375621 0.1)
(0.3345253132 -0.0799703229 0.1)
(0.1784901511 -0.07124440913 0.1)
(0.1795412687 -0.05987218171 0.1)
(0.174173014 -0.05935582766 0.1)
(0.2493006514 -0.066496125 0.1)
(0.2439359916 -0.06598432253 0.1)
(0.2428938261 -0.07726006435 0.1)
(0.3534413876 0.1135480237 0.1)
(0.3529078133 0.1078188162 0.1)
(0.2771157004 0.1130255319 0.1)
(0.2777166726 0.1194486805 0.1)
(0.2808185625 0.2116458058 0.1)
(0.2797682588 0.2003364722 0.1)
(0.2905796179 0.1993203199 0.1)
(0.2916277453 0.2106278469 0.1)
(0.2782996174 0.1257100026 0.1)
(0.2728840217 0.126192385 0.1)
(0.359354065 0.118693788 0.1)
(0.3539700141 0.1192455528 0.1)
(0.1918166484 0.1342924288 0.1)
(0.267483793 0.1267105005 0.1)
(0.2700240383 0.2126593918 0.1)
(0.2689736423 0.2013490625 0.1)
(0.5054231595 -0.1015758058 0.1)
(0.5000732507 -0.1010673805 0.1)
(0.4990376569 -0.1123047654 0.1)
(0.4347277956 -0.1063279432 0.1)
(0.4357769618 -0.09498757179 0.1)
(0.4304095807 -0.09448345077 0.1)
(0.4381553811 -0.1863417902 0.1)
(0.4402448097 -0.1637461888 0.1)
(0.4295195756 -0.1627651434 0.1)
(0.4309469315 -0.08872436439 0.1)
(0.4255760931 -0.08826832961 0.1)
(0.5112869398 -0.09650243371 0.1)
(0.5059370885 -0.09598256483 0.1)
(0.3452029404 -0.08097738148 0.1)
(0.4202072606 -0.08783397286 0.1)
(0.5202715703 0.09765486114 0.1)
(0.519255155 0.08637522373 0.1)
(0.5246234929 0.08585976583 0.1)
(0.4499243502 0.09872244925 0.1)
(0.4504388806 0.1043762938 0.1)
(0.4532504734 0.1951873103 0.1)
(0.4512116419 0.1725850058 0.1)
(0.4619638428 0.1715482307 0.1)
(0.4726989315 0.1705110347 0.1)
(0.4747412839 0.193107991 0.1)
(0.4558097529 0.1038556797 0.1)
(0.4568286493 0.1151404097 0.1)
(0.4460794356 0.1161769077 0.1)
(0.5320270438 0.107875141 0.1)
(0.5212895222 0.1089185885 0.1)
(0.3647472621 0.1181431832 0.1)
(0.4353194333 0.117205368 0.1)
(0.4347973046 0.1115453992 0.1)
(0.4342805271 0.1058565124 0.1)
(0.4317485046 0.1972546091 0.1)
(0.4296915859 0.1746630215 0.1)
(0.4404539287 0.1736273139 0.1)
(0.6769170509 -0.1168761896 0.1)
(0.6763637113 -0.1227426581 0.1)
(0.6013704059 -0.1160487802 0.1)
(0.6018920707 -0.1104046362 0.1)
(0.6096480874 -0.2019147302 0.1)
(0.6117266658 -0.1793603025 0.1)
(0.6010244052 -0.1783914315 0.1)
(0.6024171814 -0.1047233518 0.1)
(0.597068683 -0.104167253 0.1)
(0.682830317 -0.111442649 0.1)
(0.6774963674 -0.1108379866 0.1)
(0.5166412359 -0.09701769352 0.1)
(0.5917171882 -0.1036109765 0.1)
(0.6919644061 0.08067772696 0.1)
(0.6909704776 0.06944561536 0.1)
(0.6266553094 0.0758848052 0.1)
(0.6276547246 0.08712193135 0.1)
(0.8484780574 -0.1317129914 0.1)
(0.8478813098 -0.1378308246 0.1)
(0.7728099895 -0.1314149281 0.1)
(0.7733789187 -0.1254562053 0.1)
(0.7703998742 -0.2163726025 0.1)
(0.7714362481 -0.2051051611 0.1)
(0.7800917112 -0.02432407125 0.1)
(0.7854271144 -0.02489141839 0.1)
(0.7859028748 -0.01931988408 0.1)
(0.7739648418 -0.1193900933 0.1)
(0.7686127372 -0.1188403886 0.1)
(0.8543923911 -0.1262895927 0.1)
(0.8490709936 -0.1256145891 0.1)
(0.688161571 -0.1120655404 0.1)
(0.7632249564 -0.1185128381 0.1)
(0.7746542517 -0.02402321533 0.1)
(0.8737197216 0.06150809488 0.1)
(0.8523957856 0.06385976226 0.1)
(0.8504233133 0.04137733992 0.1)
(0.8610882202 0.04018988502 0.1)
(0.8717392404 0.03899347474 0.1)
(0.798016288 0.05837254107 0.1)
(0.7990029877 0.06960251134 0.1)
(0.7863952381 -0.01371012013 0.1)
(1.02633932 -0.1415239481 0.1)
(1.015523815 -0.1405416576 0.1)
(1.015029254 -0.1461967524 0.1)
(1.014551172 -0.1518907358 0.1)
(1.025312816 -0.1529123185 0.1)
(0.9442265589 -0.1469858255 0.1)
(0.9447395701 -0.1413700032 0.1)
(0.9418558514 -0.2318326665 0.1)
(0.9428900696 -0.2205559865 0.1)
(0.9509823298 -0.03818150082 0.1)
(0.9501533 -0.04909761517 0.1)
(0.9607043205 -0.05048423041 0.1)
(0.9615269564 -0.03958290863 0.1)
(0.9451720615 -0.1364596591 0.1)
(0.9398911618 -0.135564656 0.1)
(1.027395307 -0.1301425312 0.1)
(1.016573234 -0.1292310367 0.1)
(1.016015669 -0.1349157374 0.1)
(0.8596811568 -0.1270781674 0.1)
(0.9346177536 -0.1346430312 0.1)
(0.940430642 -0.03676960581 0.1)
(0.9395878821 -0.04771463536 0.1)
(0.1037650801 -0.2929310112 0.1)
(0.09975338992 -0.3385499326 0.1)
(0.1357555801 -0.1814768025 0.1)
(-0.01571382148 -0.1672364127 0.1)
(0.006197441409 -0.1693878841 0.1)
(0.0732370954 -0.1528305276 0.1)
(0.07530481915 -0.130163616 0.1)
(0.05363769178 -0.1281271911 0.1)
(0.05156819011 -0.1507959463 0.1)
(0.06962094811 -0.07251095285 0.1)
(0.08044589212 -0.07353439133 0.1)
(-0.007025817167 -0.0649204858 0.1)
(0.004044167809 -0.06608817929 0.1)
(0.05088997297 0.09460972039 0.1)
(0.04547371796 0.09470289917 0.1)
(0.0452594321 0.08895662124 0.1)
(0.0498054532 0.09034407105 0.1)
(0.006154404182 0.09823792892 0.1)
(0.005477062185 0.09228876272 0.1)
(0.01123486124 0.09176097174 0.1)
(0.01183421346 0.0977539303 0.1)
(0.2258919299 -0.1440911575 0.1)
(0.2237997093 -0.1667276759 0.1)
(0.2418503487 -0.08854994544 0.1)
(0.166702018 -0.08157855872 0.1)
(0.1774439741 -0.08257421153 0.1)
(0.5695976313 0.04621910505 0.1)
(0.5641694499 0.04650089227 0.1)
(0.5632082663 0.04055757376 0.1)
(0.5676240402 0.03925746273 0.1)
(0.6913468115 0.194527979 0.1)
(0.6839727238 0.3554333958 0.1)
(0.6801400286 0.3098568041 0.1)
(0.7229953515 0.3055616156 0.1)
(0.5944419061 0.3183741757 0.1)
(0.7358549841 -0.0167421295 0.1)
(0.7378119108 -0.009851852845 0.1)
(0.7324329537 -0.009375079326 0.1)
(0.7315064127 -0.01515068103 0.1)
(0.741601912 0.03036891761 0.1)
(0.7308939766 0.03146063827 0.1)
(0.7299104396 0.02023228272 0.1)
(0.7352685575 0.01969326825 0.1)
(0.7406259589 0.01916817953 0.1)
(0.6987555488 0.03474057148 0.1)
(0.6982622415 0.02913145752 0.1)
(0.7036180446 0.02858914279 0.1)
(0.7041123845 0.03419856266 0.1)
(0.9518589218 -0.02715326098 0.1)
(0.9413120425 -0.02574366002 0.1)
(0.9588171408 0.05177153679 0.1)
(0.9375761791 0.05424897647 0.1)
(0.9355247288 0.03156478763 0.1)
(0.9567132253 0.02896567458 0.1)
(0.8823895308 0.03778919825 0.1)
(0.8930303977 0.03658077461 0.1)
(0.8950206945 0.05912541633 0.1)
(0.155945937 -0.08058360396 0.1)
(0.09124308316 -0.07454521188 0.1)
(0.09477428596 -0.1548277808 0.1)
(0.09685559466 -0.1321681554 0.1)
(0.1287978767 -0.02114704426 0.1)
(0.1341527319 -0.02202430385 0.1)
(0.1346121097 -0.01700819137 0.1)
(0.1292498881 -0.01608043527 0.1)
(-0.00286295074 -0.007733303372 0.1)
(0.002832072038 -0.0084429726 0.1)
(0.003215114199 -0.002698593326 0.1)
(-0.002555107834 -0.001942679047 0.1)
(0.04203360746 -0.01244552081 0.1)
(0.04248729195 -0.006746059923 0.1)
(0.03698283043 -0.006183424491 0.1)
(0.03653114574 -0.01196632698 0.1)
(0.02363793414 0.1548274268 0.1)
(0.01268418885 0.1557131757 0.1)
(0.08927802547 0.1492915974 0.1)
(0.08814685067 0.137940858 0.1)
(0.08612334669 0.2295613262 0.1)
(0.08395896696 0.2068993654 0.1)
(0.09477130421 0.2059273114 0.1)
(0.6933888184 0.03527335497 0.1)
(0.6928911125 0.02966012979 0.1)
(0.6557943935 0.03883835918 0.1)
(0.6552323058 0.03302914374 0.1)
(0.6606240584 0.03259286128 0.1)
(0.6611680559 0.03834781593 0.1)
(0.6250245199 0.1783710615 0.1)
(0.6229869818 0.1557826972 0.1)
(0.6444226479 0.1536502452 0.1)
(0.6464538421 0.1762351809 0.1)
(0.6286586307 0.09836416445 0.1)
(0.617932914 0.09942660261 0.1)
(0.7036824047 0.09081883034 0.1)
(0.6929650849 0.09191764834 0.1)
(0.5427724389 0.1068299587 0.1)
(0.6072104617 0.1004917508 0.1)
(0.6035628727 0.1805049199 0.1)
(0.6015239693 0.157912665 0.1)
(0.8233755616 -0.0232660918 0.1)
(0.8228549029 -0.02895351379 0.1)
(0.8282366308 -0.02944372074 0.1)
(0.8287356571 -0.0238054404 0.1)
(0.9048246338 -0.07758508027 0.1)
(0.9053871762 -0.07176013959 0.1)
(0.9001020241 -0.07107333401 0.1)
(0.8995427541 -0.07685217988 0.1)
(0.9086505549 -0.0327989941 0.1)
(0.8980380887 -0.03151177729 0.1)
(0.8971739698 -0.04250300115 0.1)
(0.9024877393 -0.04314115247 0.1)
(0.9077900137 -0.04377330616 0.1)
(-0.08806289064 0.05364076872 0.1)
(-0.08911005708 0.04122761663 0.1)
(-0.07846354366 0.04024674449 0.1)
(-0.07741664703 0.05264399952 0.1)
(-0.09525282141 -0.04202291643 0.1)
(-0.07252110467 -0.04585577604 0.1)
(-0.0717632968 -0.03422544743 0.1)
(-0.07128427364 -0.02220861036 0.1)
(-0.08254977237 -0.0202821092 0.1)
(-0.09364231493 -0.01839656173 0.1)
(-0.01636323448 -0.04087591947 0.1)
(-0.01698826042 -0.05243400618 0.1)
(0.0003737692764 0.145138047 0.1)
(-0.0008627443041 0.1337276843 0.1)
(-0.07735975305 0.1497816112 0.1)
(-0.08027915906 0.1260556531 0.1)
(-0.06949077286 0.1252616733 0.1)
(-0.05825939452 0.1250283655 0.1)
(-0.05641078818 0.137167798 0.1)
(-0.05497083401 0.1488244191 0.1)
(-0.07612437102 0.06559253482 0.1)
(-0.08678880939 0.06650577371 0.1)
(0.0577105278 0.0924479589 0.1)
(0.05539750638 0.1407682955 0.1)
(0.05426943888 0.1294088317 0.1)
(0.05976713036 0.1289301809 0.1)
(0.06525571662 0.1284529774 0.1)
(0.06636145319 0.1398391184 0.1)
(0.05707932816 0.09963852363 0.1)
(0.05153593275 0.1002480565 0.1)
(0.01240697069 0.1036532454 0.1)
(0.006765649548 0.1040897853 0.1)
(0.04599681422 0.1006255018 0.1)
(0.04446968791 0.1416950244 0.1)
(0.04337462604 0.1303481653 0.1)
(0.04881431714 0.1298776074 0.1)
(0.2292067682 0.125548752 0.1)
(0.2286927434 0.1201817876 0.1)
(0.234097224 0.119622905 0.1)
(0.2346106412 0.1249941438 0.1)
(0.223793164 0.1260309496 0.1)
(0.2232768922 0.120628943 0.1)
(0.4019908676 0.1090435197 0.1)
(0.4014852698 0.1034318302 0.1)
(0.406883656 0.1028722074 0.1)
(0.4073920715 0.1085142665 0.1)
(0.3965721924 0.1095251835 0.1)
(0.3960583291 0.1038893543 0.1)
(0.6127966718 0.04283428947 0.1)
(0.6074451144 0.04340071508 0.1)
(0.6069255694 0.03770364894 0.1)
(0.6122325752 0.03698177443 0.1)
(0.5747066123 0.04091663553 0.1)
(0.5751193014 0.04623053487 0.1)
(0.573988392 0.09241693608 0.1)
(0.5729795606 0.08116491614 0.1)
(0.5836999312 0.08010980322 0.1)
(0.5847093169 0.09136779749 0.1)
(0.5756506092 0.05196778616 0.1)
(0.5702156661 0.05223081785 0.1)
(0.6133561881 0.04864826282 0.1)
(0.6079922027 0.04916733407 0.1)
(0.526707553 0.05106130992 0.1)
(0.5316239408 0.04969054757 0.1)
(0.5325693398 0.05558280598 0.1)
(0.5272596587 0.05639491353 0.1)
(0.5648226345 0.05263166693 0.1)
(0.5632586073 0.09346800142 0.1)
(0.5622488264 0.08221657173 0.1)
(0.5676158893 0.08168737285 0.1)
(0.7250431494 -0.1219605595 0.1)
(0.7245423823 -0.1274768874 0.1)
(0.7298983373 -0.1279959166 0.1)
(0.7303938795 -0.1225142542 0.1)
(0.7209622416 -0.1665723332 0.1)
(0.7316747366 -0.1675391409 0.1)
(0.7327012149 -0.1563350563 0.1)
(0.7219900852 -0.1553643581 0.1)
(0.7638084233 -0.170437203 0.1)
(0.7648345321 -0.1592371013 0.1)
(0.7541110842 -0.1582692774 0.1)
(0.7530857863 -0.1694714629 0.1)
(0.7844176317 0.02591594698 0.1)
(0.7737219098 0.02704188563 0.1)
(0.7727610002 0.01587339567 0.1)
(0.7834600532 0.01476171023 0.1)
(0.7459799368 0.01862784187 0.1)
(0.7513373084 0.01809160824 0.1)
(0.7523054118 0.02927268745 0.1)
(0.7428841516 -0.01547453757 0.1)
(0.743294511 -0.01006668117 0.1)
(0.8963309227 -0.1381943931 0.1)
(0.8958746958 -0.1434688014 0.1)
(0.9012209501 -0.1439949649 0.1)
(0.9016614304 -0.1388145037 0.1)
(0.8924039502 -0.1820129961 0.1)
(0.9031135504 -0.1829785309 0.1)
(0.9041282547 -0.1718255772 0.1)
(0.8934191883 -0.1708651134 0.1)
(0.9352627581 -0.1859041448 0.1)
(0.9362776471 -0.1747491996 0.1)
(0.9309248231 -0.1742505468 0.1)
(0.9255718861 -0.1737639351 0.1)
(0.9245515565 -0.1849233969 0.1)
(0.8495421142 -0.178143661 0.1)
(0.8602409461 -0.1791061882 0.1)
(0.8612589558 -0.1679284338 0.1)
(0.8505639424 -0.1669572223 0.1)
(0.8827123187 -0.1698917976 0.1)
(0.8816954382 -0.181046558 0.1)
(0.8910237578 -0.1374850576 0.1)
(0.8905490537 -0.1428611938 0.1)
(0.08566963815 -0.0164979629 0.1)
(0.09127049648 -0.01620564763 0.1)
(0.09324463165 -0.009253295308 0.1)
(0.08607939269 -0.01133584155 0.1)
(0.1239272706 -0.01512632529 0.1)
(0.1234679392 -0.02023935655 0.1)
(0.1246557924 -0.06626663801 0.1)
(0.1256939719 -0.05495808763 0.1)
(0.120296333 -0.0544445309 0.1)
(0.1149143948 -0.05393494163 0.1)
(0.1138712255 -0.06525397585 0.1)
(0.1229417568 -0.02593219139 0.1)
(0.1282893328 -0.02673636594 0.1)
(0.08515527911 -0.02214238299 0.1)
(0.09067504311 -0.02221644268 0.1)
(0.1723037007 -0.02289229018 0.1)
(0.1672592691 -0.02215470639 0.1)
(0.1663313592 -0.02815072426 0.1)
(0.1717332566 -0.02842354489 0.1)
(0.1336586638 -0.0275117271 0.1)
(0.1354496904 -0.06727614873 0.1)
(0.1364990887 -0.05597657319 0.1)
(0.1311027022 -0.05547116701 0.1)
(0.03797225251 -0.05804371955 0.1)
(0.03898282165 -0.04670910694 0.1)
(0.02794077286 -0.0455977352 0.1)
(0.02693793547 -0.05693236217 0.1)
(0.03602492925 -0.01772107113 0.1)
(0.04153298757 -0.0182092203 0.1)
(-0.003055036091 -0.0135881968 0.1)
(0.002471305349 -0.01419514311 0.1)
(0.08015709874 -0.01639474596 0.1)
(0.07967260706 -0.02190776338 0.1)
(0.04703152994 -0.01863432071 0.1)
(0.04753658221 -0.01279470604 0.1)
(0.04891912035 -0.05911151164 0.1)
(0.04993717793 -0.04777628823 0.1)
(0.04802749129 -0.007063146871 0.1)
(0.08058021638 -0.01116436724 0.1)
(0.1425472296 0.1330940552 0.1)
(0.1420070692 0.1273479841 0.1)
(0.1474340991 0.1269238947 0.1)
(0.1479856755 0.132630643 0.1)
(0.1371221181 0.1335712947 0.1)
(0.1365804333 0.1278087941 0.1)
(0.2965041162 -0.08218490856 0.1)
(0.2970322993 -0.07649215891 0.1)
(0.2916740306 -0.07601971521 0.1)
(0.2911484692 -0.08169503251 0.1)
(0.2576158577 -0.03460082022 0.1)
(0.2571577364 -0.03960339087 0.1)
(0.2624877351 -0.04028310929 0.1)
(0.2629440642 -0.03529985567 0.1)
(0.3018623089 -0.08266899503 0.1)
(0.3023910001 -0.07697076891 0.1)
(0.2107157012 -0.07425644542 0.1)
(0.211766164 -0.06293457286 0.1)
(0.2063919257 -0.06241776408 0.1)
(0.2010186256 -0.06191249131 0.1)
(0.1999715894 -0.07325155394 0.1)
(0.2149364606 -0.02892752485 0.1)
(0.2095890346 -0.02820832758 0.1)
(0.2091113102 -0.03336805931 0.1)
(0.2144590708 -0.03407282579 0.1)
(0.1770833595 -0.02902729575 0.1)
(0.1775893519 -0.02367113549 0.1)
(0.2522854289 -0.0339040893 0.1)
(0.2518237641 -0.03892320333 0.1)
(0.2198024902 -0.03477025984 0.1)
(0.2202772307 -0.02964268997 0.1)
(0.2214459652 -0.07525904779 0.1)
(0.222494028 -0.06395221784 0.1)
(0.2171343745 -0.06344057858 0.1)
(0.3156949715 0.1175423055 0.1)
(0.3152146153 0.1122134938 0.1)
(0.3206184811 0.1116696322 0.1)
(0.3211013593 0.1170256271 0.1)
(0.3102839234 0.117987107 0.1)
(0.3098014629 0.112646439 0.1)
(0.3161927413 0.1230046796 0.1)
(0.3107850909 0.1234752776 0.1)
(0.3198228113 0.1623676569 0.1)
(0.3090325472 0.1633838605 0.1)
(0.307987797 0.1520910846 0.1)
(0.3187805145 0.1510796748 0.1)
(0.2766209098 0.1664252138 0.1)
(0.2755719714 0.1551197707 0.1)
(0.2863898591 0.1541090385 0.1)
(0.287437617 0.1654125825 0.1)
(0.3629978387 0.1582694086 0.1)
(0.3522106746 0.1592973762 0.1)
(0.3511714573 0.1480101127 0.1)
(0.3619595247 0.1469810571 0.1)
(0.3295795553 0.1500606483 0.1)
(0.3306206717 0.1613467313 0.1)
(0.3215990572 0.1224980509 0.1)
(0.2297261359 0.1310382468 0.1)
(0.2243148208 0.1315342922 0.1)
(0.2334044728 0.1704559992 0.1)
(0.2225898289 0.1714583961 0.1)
(0.2215353781 0.1601584859 0.1)
(0.2323512025 0.159157988 0.1)
(0.1901039435 0.1744463806 0.1)
(0.1890445859 0.1631368827 0.1)
(0.1998804376 0.1621465782 0.1)
(0.2009385223 0.1734531813 0.1)
(0.2658230289 0.1674350941 0.1)
(0.2647730024 0.1561287476 0.1)
(0.2431614015 0.158150982 0.1)
(0.2442138609 0.169451077 0.1)
(0.2351309532 0.1305046412 0.1)
(0.4679174002 -0.09801852595 0.1)
(0.4684452712 -0.09231831557 0.1)
(0.4630918527 -0.0917935964 0.1)
(0.4625622192 -0.09750197889 0.1)
(0.4732768802 -0.09852121089 0.1)
(0.4738028019 -0.09284201028 0.1)
(0.382162728 -0.09014853019 0.1)
(0.3826805259 -0.08452441464 0.1)
(0.3773254445 -0.08401761848 0.1)
(0.3768060134 -0.08964851214 0.1)
(0.3875203459 -0.09064963635 0.1)
(0.3880376634 -0.08503069856 0.1)
(0.4880438346 0.1007624078 0.1)
(0.4875263426 0.09509829293 0.1)
(0.492908715 0.09459338357 0.1)
(0.4934242227 0.1002469366 0.1)
(0.5220296792 0.05748153185 0.1)
(0.5215825601 0.05244600381 0.1)
(0.4826640243 0.1012624597 0.1)
(0.4821421964 0.09558408441 0.1)
(0.6393439183 -0.1139801133 0.1)
(0.6398436599 -0.1084748378 0.1)
(0.634477137 -0.108015588 0.1)
(0.6339784578 -0.1135094126 0.1)
(0.6447163405 -0.1143974288 0.1)
(0.6452263564 -0.1088247141 0.1)
(0.5536810932 -0.1057696467 0.1)
(0.5542394196 -0.09986025537 0.1)
(0.5488676236 -0.09944701514 0.1)
(0.5483155291 -0.1053108876 0.1)
(0.5590423008 -0.1062537116 0.1)
(0.5596014957 -0.1003349605 0.1)
(0.6181535477 0.04226023991 0.1)
(0.618726809 0.04811411407 0.1)
(0.6563272564 0.0445598996 0.1)
(0.6509511817 0.04506773969 0.1)
(0.650406364 0.0393147693 0.1)
(0.6598168515 0.08391341412 0.1)
(0.6490882236 0.08498777221 0.1)
(0.6480881823 0.07375472133 0.1)
(0.6588219551 0.07268169362 0.1)
(0.6498255116 0.03344402429 0.1)
(0.6175519331 0.03629561151 0.1)
(0.8106865378 -0.1298825968 0.1)
(0.8101941676 -0.135362545 0.1)
(0.8155482748 -0.1359014886 0.1)
(0.8160309343 -0.1304829058 0.1)
(0.8066541635 -0.1742960061 0.1)
(0.81737988 -0.1752610276 0.1)
(0.8183997887 -0.1640844537 0.1)
(0.8076752527 -0.1631175331 0.1)
(0.8398508008 -0.1659973846 0.1)
(0.8388289725 -0.1771838234 0.1)
(0.7745289764 -0.1714037541 0.1)
(0.7755547157 -0.1602076352 0.1)
(0.7969580563 -0.1621472763 0.1)
(0.7959375009 -0.1733308203 0.1)
(0.8053496533 -0.1292446208 0.1)
(0.8048455418 -0.134796994 0.1)
(0.818015987 -0.0227319536 0.1)
(0.8174785222 -0.02845979583 0.1)
(0.8111717174 -0.124447677 0.1)
(0.8058498979 -0.1237122761 0.1)
(0.8165000717 -0.1251451193 0.1)
(0.725536809 -0.1164883636 0.1)
(0.7201948422 -0.1158618671 0.1)
(0.7196913148 -0.121397121 0.1)
(0.730878087 -0.1171006356 0.1)
(0.7432485609 -0.01945948565 0.1)
(0.8238670993 -0.01764357705 0.1)
(0.8185175405 -0.01708808283 0.1)
(0.8271619305 0.02134266 0.1)
(0.8164757028 0.02250598141 0.1)
(0.8155215827 0.0113565457 0.1)
(0.8262115161 0.01018986758 0.1)
(0.7941366603 0.01362458967 0.1)
(0.7950991178 0.02478811539 0.1)
(0.945967431 -0.1868903126 0.1)
(0.9469773209 -0.1757459509 0.1)
(0.9416278536 -0.1752435923 0.1)
(0.9795648474 -0.187575136 0.1)
(0.9801700219 -0.1763440137 0.1)
(0.9740642898 -0.1772166681 0.1)
(0.9684798228 -0.1774286541 0.1)
(0.9676243419 -0.1885973851 0.1)
(0.983251827 -0.1426304455 0.1)
(0.9770468841 -0.1441718945 0.1)
(0.9766455247 -0.1494935738 0.1)
(0.9829716905 -0.1480960394 0.1)
(0.9820880699 -0.1397488081 0.1)
(0.9771210963 -0.1407200885 0.1)
(0.9901644358 -0.08686327062 0.1)
(0.9848393881 -0.08628172947 0.1)
(0.9844587142 -0.09167271621 0.1)
(0.9897804514 -0.09225746523 0.1)
(0.9477233367 -0.08171734577 0.1)
(0.9472620413 -0.08727369148 0.1)
(0.9526003957 -0.08784170411 0.1)
(0.9530498861 -0.08230434902 0.1)
(0.8967754658 -0.1329809663 0.1)
(0.8914900537 -0.1321562469 0.1)
(0.8986636318 -0.08247390429 0.1)
(0.9029416592 -0.08432775777 0.1)
(0.9423956324 -0.08114278906 0.1)
(0.9419166277 -0.08673846689 0.1)
(0.9098482001 -0.08344012192 0.1)
(0.910242848 -0.07801759126 0.1)
(0.9020792341 -0.1337593835 0.1)
(0.9184007682 -0.04506814745 0.1)
(0.9192603645 -0.03409319535 0.1)
(0.9107613109 -0.07228888987 0.1)
(0.9481573586 -0.07621681912 0.1)
(0.9428469295 -0.07560761019 0.1)
(0.002895462205 0.07462893907 0.1)
(0.002250718359 0.06762655707 0.1)
(0.009502884444 0.07333718854 0.1)
(0.7180914219 0.009760096063 0.1)
(0.7127331952 0.01030876186 0.1)
(0.7121271213 0.004361017634 0.1)
(0.7174831092 0.00382069435 0.1)
(0.6967414265 0.01218809738 0.1)
(0.6962705343 0.006636558845 0.1)
(0.7016074639 0.006042365875 0.1)
(0.702094224 0.01164586066 0.1)
(1.133846969 -0.3816293763 0.1)
(1.12972035 -0.4271175197 0.1)
(1.146549896 -0.2447174132 0.1)
(1.144432711 -0.2675364056 0.1)
(1.142315526 -0.290355398 0.1)
(1.185181417 -0.2943325689 0.1)
(1.037253048 -0.2575920926 0.1)
(1.103674048 -0.2407393184 0.1)
(1.105791141 -0.2179213217 0.1)
(1.084353217 -0.2159322744 0.1)
(1.082236124 -0.2387502711 0.1)
(1.112142632 -0.1494650415 0.1)
(1.090704708 -0.1474759941 0.1)
(1.088587587 -0.1702942895 0.1)
(1.110025511 -0.1722833369 0.1)
(1.036046345 -0.1539122108 0.1)
(1.037094269 -0.1425094578 0.1)
(1.167721407 -0.01653117305 0.1)
(1.165604259 -0.03934976719 0.1)
(1.163487101 -0.06216846091 0.1)
(1.180410704 0.1204832122 0.1)
(1.176190028 0.07474350224 0.1)
(1.219055002 0.07078247633 0.1)
(1.069010364 0.08468781523 0.1)
(1.090438331 0.08269969171 0.1)
(-0.002190830912 0.01577684714 0.1)
(0.003988290128 0.01468702878 0.1)
(0.005480846696 0.02178660131 0.1)
(-0.002455654168 0.02195031447 0.1)
(0.6913447764 0.01261489173 0.1)
(0.6908161366 0.006895570645 0.1)
(0.6752021698 0.01409164069 0.1)
(0.6748101065 0.008783560721 0.1)
(0.6801477547 0.008186288197 0.1)
(0.6806036363 0.01368428452 0.1)
(0.8698062847 0.01661223438 0.1)
(0.8591595523 0.01781156101 0.1)
(0.8582126978 0.006664664915 0.1)
(0.8688616434 0.005467543257 0.1)
(0.8368867262 0.009026865398 0.1)
(0.8378359232 0.02017736047 0.1)
(0.8292151173 -0.01820485365 0.1)
(1.043338134 0.04103957474 0.1)
(1.022342224 0.04389589575 0.1)
(1.020333119 0.02115937095 0.1)
(1.041220977 0.01822088103 0.1)
(0.9778650876 0.02629644613 0.1)
(0.9800507814 0.04929096005 0.1)
(0.9623961538 -0.02858024503 0.1)
(-0.04550113338 0.04937964384 0.1)
(-0.04638909725 0.0361332574 0.1)
(-0.03567593024 0.034758041 0.1)
(-0.03537539206 0.04189072969 0.1)
(-0.03485173022 0.04865722705 0.1)
(-0.04827900027 -0.0009704228356 0.1)
(-0.0368719701 -0.00298648237 0.1)
(-0.0363629151 0.00902606185 0.1)
(-0.04782156857 0.01143718012 0.1)
(-0.008337299897 -0.001128409354 0.1)
(-0.008643821332 -0.006938237892 0.1)
(0.0004369282969 0.09864116197 0.1)
(-0.0002867236959 0.09273676557 0.1)
(-0.03908808627 0.1003806164 0.1)
(-0.04071941362 0.08831532761 0.1)
(-0.02964119974 0.08788924549 0.1)
(-0.02775713656 0.100103422 0.1)
(-0.0340844079 0.05590343942 0.1)
(-0.03327098566 0.06253053311 0.1)
(-0.04407294506 0.06306997829 0.1)
(0.2507714455 0.122620277 0.1)
(0.2502149219 0.1165896004 0.1)
(0.2555778017 0.1154849269 0.1)
(0.2561532744 0.1217739578 0.1)
(0.1838010214 0.1057883504 0.1)
(0.1892191158 0.105798343 0.1)
(0.1897014329 0.1109642769 0.1)
(0.1842866376 0.1110439631 0.1)
(0.2055031683 0.105575489 0.1)
(0.2059783082 0.11062077 0.1)
(0.2005500839 0.1107722037 0.1)
(0.2000697304 0.1057032029 0.1)
(0.2075555852 0.1273175594 0.1)
(0.2021338717 0.1277231787 0.1)
(0.2016067623 0.1220528256 0.1)
(0.2070296798 0.1217251284 0.1)
(0.4235130446 0.1068692967 0.1)
(0.4229778085 0.101078881 0.1)
(0.4283589799 0.1005610272 0.1)
(0.4288990283 0.1063491887 0.1)
(0.4212017545 0.08311644286 0.1)
(0.4265563721 0.08249640526 0.1)
(0.4271817206 0.08861941836 0.1)
(0.4218102815 0.08916639757 0.1)
(0.4430635258 0.08246998014 0.1)
(0.4435289059 0.08792963498 0.1)
(0.4380924558 0.08821972159 0.1)
(0.4375955413 0.08264749865 0.1)
(0.3566975493 0.09037580444 0.1)
(0.3620373055 0.08946569929 0.1)
(0.3625115388 0.0946419241 0.1)
(0.3571745789 0.09551722205 0.1)
(0.3776258122 0.08657388912 0.1)
(0.3785573828 0.0925227672 0.1)
(0.3731690351 0.09297409946 0.1)
(0.3726018213 0.08751013409 0.1)
(0.3803561049 0.1107619949 0.1)
(0.374970887 0.1112362359 0.1)
(0.3743879284 0.1052453718 0.1)
(0.3797777337 0.1047989258 0.1)
(0.5531436223 -0.1115300275 0.1)
(0.5585043403 -0.1120193698 0.1)
(0.5495062334 -0.1509827122 0.1)
(0.5602275769 -0.1519623925 0.1)
(0.5612639303 -0.1407059964 0.1)
(0.5505437672 -0.1397244172 0.1)
(0.5923890823 -0.1548961773 0.1)
(0.5934246042 -0.1436487428 0.1)
(0.5827053445 -0.1426682517 0.1)
(0.5816695455 -0.1539186733 0.1)
(0.5066348916 -0.147064289 0.1)
(0.5173501685 -0.1480444107 0.1)
(0.5183882566 -0.1367801412 0.1)
(0.5076731646 -0.1357980282 0.1)
(0.5398235118 -0.1387438336 0.1)
(0.5387857931 -0.1500041201 0.1)
(0.5477822577 -0.1110476554 0.1)
(0.6780820616 -0.1626842232 0.1)
(0.6887950904 -0.1636561018 0.1)
(0.6898255003 -0.1524312918 0.1)
(0.6791139292 -0.1514545269 0.1)
(0.7112674688 -0.1543875727 0.1)
(0.7102390709 -0.1656015221 0.1)
(0.7191849902 -0.1269516991 0.1)
(0.9179822769 -0.1387057386 0.1)
(0.9174452443 -0.1444397472 0.1)
(0.9228829094 -0.1445435494 0.1)
(0.9234536474 -0.1385761566 0.1)
(0.9158499106 -0.161601758 0.1)
(0.9212312513 -0.1620528419 0.1)
(0.9217618179 -0.1563344025 0.1)
(0.9163706741 -0.1559456797 0.1)
(0.9373016003 -0.1635398592 0.1)
(0.9378292311 -0.1578422377 0.1)
(0.9324865592 -0.1572882863 0.1)
(0.9319526153 -0.1630214767 0.1)
(1.038152168 -0.1311074295 0.1)
(1.114259789 -0.1266463477 0.1)
(1.092821865 -0.1246573004 0.1)
(1.120611253 -0.05819036626 0.1)
(1.099173329 -0.05620131917 0.1)
(1.097056171 -0.07902001251 0.1)
(1.118494095 -0.08100905988 0.1)
(0.1642017389 0.131068844 0.1)
(0.1636616781 0.1253130219 0.1)
(0.1690736362 0.124607421 0.1)
(0.1696021936 0.130477394 0.1)
(0.1620436068 0.1088801299 0.1)
(0.1686729848 0.1055573651 0.1)
(0.1680267549 0.1127179903 0.1)
(0.1625945745 0.1139958067 0.1)
(0.1788779068 0.1112106612 0.1)
(0.1784332522 0.1057470749 0.1)
(0.1430788433 0.1387913072 0.1)
(0.1376573656 0.1392752396 0.1)
(0.1468181961 0.1784012445 0.1)
(0.1360048764 0.1793854412 0.1)
(0.1349350073 0.1680708928 0.1)
(0.1457535827 0.1670892213 0.1)
(0.1034166153 0.1823015764 0.1)
(0.1023454877 0.1709821233 0.1)
(0.113210818 0.1700161997 0.1)
(0.1142839514 0.1813334581 0.1)
(0.1792782337 0.1754377527 0.1)
(0.1782166999 0.1641264481 0.1)
(0.1566032103 0.1661066774 0.1)
(0.1576667356 0.1774177972 0.1)
(0.148520882 0.1383124972 0.1)
(0.3372845744 0.1153262746 0.1)
(0.3367828116 0.109810039 0.1)
(0.3421545629 0.1091581824 0.1)
(0.3426654842 0.1147406552 0.1)
(0.3353515956 0.09385402377 0.1)
(0.3406836958 0.0930237674 0.1)
(0.3411454941 0.09806596784 0.1)
(0.3357978811 0.0988697441 0.1)
(0.3518461186 0.09638670991 0.1)
(0.3513854609 0.09128103264 0.1)
(0.2940006759 0.1186191365 0.1)
(0.2885642384 0.118779467 0.1)
(0.2879764608 0.1125093539 0.1)
(0.293438762 0.1126061335 0.1)
(0.4668775269 -0.109312859 0.1)
(0.4776001947 -0.1103107394 0.1)
(0.4786392622 -0.09903591534 0.1)
(0.463758407 -0.14313635 0.1)
(0.4744823682 -0.1441202903 0.1)
(0.4755222836 -0.1328471517 0.1)
(0.4647985072 -0.13186122 0.1)
(0.4969631435 -0.1348153813 0.1)
(0.4959236901 -0.1460835412 0.1)
(0.5127773605 -0.08008149982 0.1)
(0.5074479674 -0.07941690203 0.1)
(0.5069499903 -0.08490315915 0.1)
(0.5122873706 -0.08550331927 0.1)
(0.491454782 -0.07742294542 0.1)
(0.4909297287 -0.08309278624 0.1)
(0.4962737927 -0.0836966798 0.1)
(0.4967892183 -0.07808730814 0.1)
(0.4893631988 -0.1000525933 0.1)
(0.4947202624 -0.1005596738 0.1)
(0.4952378201 -0.09493814717 0.1)
(0.4898832304 -0.09441522748 0.1)
(0.4484048347 0.08182556783 0.1)
(0.4488997577 0.08739797554 0.1)
(0.46426408 0.07922147595 0.1)
(0.4648838155 0.08530564147 0.1)
(0.4595469669 0.08598730102 0.1)
(0.4589663332 0.08005396813 0.1)
(0.4665447914 0.1027962934 0.1)
(0.4611730804 0.1033186926 0.1)
(0.4606470643 0.09762765009 0.1)
(0.4660144835 0.09708064213 0.1)
(0.4890578334 0.1120376497 0.1)
(0.4783171193 0.1130683376 0.1)
(0.4772948273 0.1017686574 0.1)
(0.4921187394 0.1458615203 0.1)
(0.4813885369 0.1468972587 0.1)
(0.480364276 0.1356196548 0.1)
(0.4911005452 0.1345843579 0.1)
(0.4491573819 0.1500112489 0.1)
(0.448129949 0.1387319307 0.1)
(0.4588802507 0.137696336 0.1)
(0.4599076836 0.1489756542 0.1)
(0.4024886884 0.1146796321 0.1)
(0.3970836248 0.1151781103 0.1)
(0.4060645683 0.1541621269 0.1)
(0.3952867353 0.1551932458 0.1)
(0.3942495095 0.1439057976 0.1)
(0.4050259053 0.1428808377 0.1)
(0.3727503945 0.1459497328 0.1)
(0.3737869018 0.1572402606 0.1)
(0.4383935095 0.1510521198 0.1)
(0.4373667952 0.139769722 0.1)
(0.415815225 0.1418436315 0.1)
(0.4168431199 0.1531279283 0.1)
(0.4078860223 0.1141627895 0.1)
(0.6388348261 -0.1195428707 0.1)
(0.6442013952 -0.1200016227 0.1)
(0.63522814 -0.1587945322 0.1)
(0.6459464245 -0.1597638856 0.1)
(0.646981464 -0.1485324751 0.1)
(0.6362625533 -0.1475590463 0.1)
(0.6684052529 -0.1504790348 0.1)
(0.6673730158 -0.161712714 0.1)
(0.6031007458 -0.1558719465 0.1)
(0.6041359906 -0.1446274992 0.1)
(0.6255430164 -0.1465815423 0.1)
(0.6245093217 -0.1578201077 0.1)
(0.6334723734 -0.1190614018 0.1)
(0.6179180393 -0.1119694864 0.1)
(0.6184294759 -0.1063922838 0.1)
(0.6130961166 -0.1058353801 0.1)
(0.6125803953 -0.1114479381 0.1)
(0.6199443664 -0.08977256039 0.1)
(0.6146395686 -0.0890268881 0.1)
(0.6141275592 -0.09461026419 0.1)
(0.6194421786 -0.09529337631 0.1)
(0.5986862395 -0.08684149491 0.1)
(0.5981511131 -0.09258743055 0.1)
(0.6034837407 -0.09326046325 0.1)
(0.6040118037 -0.08756900805 0.1)
(0.684468673 -0.09421744254 0.1)
(0.6791593205 -0.09342344278 0.1)
(0.678671913 -0.0986442411 0.1)
(0.6839855871 -0.09940248721 0.1)
(0.663545972 -0.09109163251 0.1)
(0.662629212 -0.09702159798 0.1)
(0.6680130735 -0.09730479674 0.1)
(0.6685711317 -0.09184209093 0.1)
(0.66084492 -0.115451675 0.1)
(0.6662093302 -0.1158687492 0.1)
(0.6667946476 -0.1097875166 0.1)
(0.6614214577 -0.109432597 0.1)
(0.53221377 -0.1040108681 0.1)
(0.5327296114 -0.09839701568 0.1)
(0.5273608118 -0.09798395303 0.1)
(0.5268495968 -0.1035587659 0.1)
(0.5341997031 -0.0821194167 0.1)
(0.5288084795 -0.08186144568 0.1)
(0.5283460739 -0.08709420496 0.1)
(0.5337354519 -0.08736124425 0.1)
(0.5176319724 -0.08609059144 0.1)
(0.5181118081 -0.08073491677 0.1)
(0.5933596795 -0.08611388938 0.1)
(0.5928164571 -0.09191461138 0.1)
(0.5773781375 -0.08392949402 0.1)
(0.5768113733 -0.08989735589 0.1)
(0.5821461494 -0.09056888063 0.1)
(0.5827046421 -0.08465769698 0.1)
(0.5751128983 -0.107792172 0.1)
(0.5804695903 -0.1083140815 0.1)
(0.5810141431 -0.1024990211 0.1)
(0.5756625005 -0.1019443379 0.1)
(0.6695396372 0.07159760514 0.1)
(0.6705342031 0.08283658724 0.1)
(0.6616906711 0.04404550107 0.1)
(0.6997295289 0.04594169348 0.1)
(0.6890048839 0.04701568202 0.1)
(0.6880183546 0.03580919645 0.1)
(0.8009836509 -0.04163650035 0.1)
(0.8005969145 -0.03764323401 0.1)
(0.7936266165 -0.03870930275 0.1)
(0.8019553957 -0.02103152503 0.1)
(0.7965845265 -0.02048922849 0.1)
(0.7960618509 -0.02620921341 0.1)
(0.8014446233 -0.0267098113 0.1)
(0.789381399 -0.1272958607 0.1)
(0.789927934 -0.1214810847 0.1)
(0.7846211129 -0.1207572187 0.1)
(0.7840604276 -0.126659562 0.1)
(0.8322088871 -0.1313838577 0.1)
(0.8376615114 -0.1313156061 0.1)
(0.8382163067 -0.1254550976 0.1)
(0.8326946949 -0.125942167 0.1)
(0.7036422031 -0.1196920331 0.1)
(0.704175685 -0.1139638213 0.1)
(0.6988354345 -0.1133296506 0.1)
(0.6982929327 -0.1191226059 0.1)
(0.7057008891 -0.09746024745 0.1)
(0.7003880915 -0.09664925675 0.1)
(0.699921674 -0.1017412434 0.1)
(0.7052381557 -0.1025233509 0.1)
(0.6892936431 -0.1001779881 0.1)
(0.6897675489 -0.0950269407 0.1)
(0.7480819874 -0.1039239648 0.1)
(0.7477788581 -0.1083492857 0.1)
(0.7532340721 -0.1081881762 0.1)
(0.7529634058 -0.1046974422 0.1)
(0.7464427514 -0.1238755497 0.1)
(0.7518335151 -0.1241276532 0.1)
(0.752345619 -0.1185324352 0.1)
(0.7469249007 -0.1184732896 0.1)
(0.758763006 -0.01762914877 0.1)
(0.756797147 -0.02455075219 0.1)
(0.7638479304 -0.02322337355 0.1)
(0.7642743772 -0.01777201737 0.1)
(0.9892892565 -0.1440310026 0.1)
(0.9910715542 -0.1367281283 0.1)
(0.9900156031 -0.1841539973 0.1)
(0.9910759972 -0.1727250845 0.1)
(0.9860755276 -0.1732563887 0.1)
(1.022166679 -0.187146068 0.1)
(1.023215546 -0.1757331586 0.1)
(1.012502116 -0.1747331225 0.1)
(1.011443016 -0.1861480952 0.1)
(0.9426454937 -0.1640698208 0.1)
(0.9431648919 -0.1584176331 0.1)
(0.9587015331 -0.1656569443 0.1)
(0.9592002164 -0.1601414273 0.1)
(0.9538474025 -0.1595885435 0.1)
(0.9533442129 -0.1651418057 0.1)
(0.960623805 -0.1439537166 0.1)
(0.9553191693 -0.1431305277 0.1)
(0.9548439068 -0.1485343307 0.1)
(0.9601685328 -0.1492503078 0.1)
(0.9534655539 -0.07683927836 0.1)
(0.9909167145 -0.0762115162 0.1)
(0.9803530864 -0.07473347521 0.1)
(0.979641846 -0.08543001246 0.1)
(0.9930603518 -0.04400420716 0.1)
(0.9825467464 -0.04252823637 0.1)
(0.9817777952 -0.0533488627 0.1)
(0.9923413964 -0.05471894954 0.1)
(0.961028825 -0.1392203916 0.1)
(0.9557321672 -0.1383328647 0.1)
(0.967220421 -0.1063890944 0.1)
(0.9619605817 -0.1056784252 0.1)
(0.9612937799 -0.110970957 0.1)
(0.9654286318 -0.1129283259 0.1)
(1.030624567 -0.0958788329 0.1)
(1.019899684 -0.09489400367 0.1)
(1.018818479 -0.1063307273 0.1)
(1.029555001 -0.1072983582 0.1)
(0.9949086495 -0.09331535763 0.1)
(0.9953097942 -0.08790939805 0.1)
(0.8750688467 -0.1352301208 0.1)
(0.875578377 -0.1296409911 0.1)
(0.8702656708 -0.1287857195 0.1)
(0.8697408741 -0.1344636184 0.1)
(0.9243301324 -0.1329070861 0.1)
(0.9198710752 -0.1321276029 0.1)
(0.02877623275 0.09617850566 0.1)
(0.02819608359 0.09026230127 0.1)
(0.0338116954 0.08977732937 0.1)
(0.03444729212 0.09561246454 0.1)
(0.009737024922 0.07977729948 0.1)
(0.003914484372 0.08040981948 0.1)
(0.02313108377 0.09672938823 0.1)
(0.02259707874 0.09077797022 0.1)
(0.5485158072 0.04959990617 0.1)
(0.548225363 0.04492163158 0.1)
(0.5532827803 0.04346888963 0.1)
(0.5537235595 0.04852268149 0.1)
(0.5431480637 0.05008929768 0.1)
(0.5434956651 0.04628039528 0.1)
(0.7395882589 0.007810675504 0.1)
(0.7342206006 0.00831180936 0.1)
(0.7336439959 0.002476021428 0.1)
(0.7390180924 0.001990158076 0.1)
(0.7228906465 0.003435471984 0.1)
(0.7234710996 0.009291089186 0.1)
(0.7222656748 -0.01177587337 0.1)
(0.7219084194 -0.007789590495 0.1)
(0.7148821327 -0.009112726118 0.1)
(0.1502045676 -0.0241005307 0.1)
(0.1505235452 -0.01958016749 0.1)
(0.1452589477 -0.01872594487 0.1)
(0.1448323023 -0.02358410583 0.1)
(0.1556983326 -0.02392441858 0.1)
(0.1554408076 -0.02036781688 0.1)
(0.01970972763 -0.01033379986 0.1)
(0.02017928005 -0.004640832706 0.1)
(0.01451475845 -0.004001080335 0.1)
(0.01405923754 -0.009709509921 0.1)
(0.02160446061 0.01219942166 0.1)
(0.01717797321 0.01445350223 0.1)
(0.01532646186 0.007502225913 0.1)
(0.02090050845 0.006690496587 0.1)
(-0.002139745302 0.00975547642 0.1)
(0.003777843148 0.008878429667 0.1)
(0.02646723901 0.005902745699 0.1)
(0.02614688177 0.01008322023 0.1)
(0.02538000381 -0.01092668343 0.1)
(0.02582295703 -0.005204333246 0.1)
(0.6536623875 0.01594622316 0.1)
(0.6590182183 0.01540420714 0.1)
(0.6595132029 0.02100975088 0.1)
(0.6540933505 0.02135965995 0.1)
(0.6757078383 0.01973656581 0.1)
(0.6702821461 0.02006683038 0.1)
(0.6697102428 0.01422759335 0.1)
(0.6772909472 0.03685341286 0.1)
(0.671920193 0.0373644752 0.1)
(0.6713923127 0.03166416525 0.1)
(0.676775225 0.03118672347 0.1)
(0.6677711159 0.007366798352 0.1)
(0.6540045959 0.01199260008 0.1)
(0.6586301681 0.01045328386 0.1)
(0.8213817359 -0.04583794387 0.1)
(0.8267391537 -0.04637367964 0.1)
(0.8272095052 -0.04079549719 0.1)
(0.821789367 -0.04041619601 0.1)
(0.8428049923 -0.0479201345 0.1)
(0.8433008427 -0.04229443455 0.1)
(0.8379709512 -0.04172180401 0.1)
(0.8375076267 -0.04726754691 0.1)
(0.8447656972 -0.0254779471 0.1)
(0.8394318088 -0.02491592266 0.1)
(0.8389581543 -0.03048640704 0.1)
(0.844290781 -0.03105120678 0.1)
(0.8371687554 -0.05251106491 0.1)
(0.8423601632 -0.05342889795 0.1)
(0.8216936613 -0.04996641702 0.1)
(0.8260188807 -0.05174460675 0.1)
(0.8641703503 -0.05023667843 0.1)
(0.8587782969 -0.04978198946 0.1)
(0.8582541573 -0.05549610403 0.1)
(0.8636578904 -0.055911504 0.1)
(0.8474899956 -0.05452329746 0.1)
(0.8480526562 -0.04870790853 0.1)
(0.8825144856 -0.07540654217 0.1)
(0.8843012182 -0.06888933764 0.1)
(0.8789585175 -0.06829239977 0.1)
(0.8782726122 -0.07358516768 0.1)
(0.8856362606 -0.05230294152 0.1)
(0.8802842042 -0.05174189282 0.1)
(0.879822061 -0.05729655298 0.1)
(0.8851816068 -0.05784182613 0.1)
(0.8690372818 -0.05638359762 0.1)
(0.8695455905 -0.05072104101 0.1)
(0.9069119176 -0.05477446121 0.1)
(0.901611496 -0.05414398587 0.1)
(0.9011392642 -0.0597099624 0.1)
(0.9064428392 -0.06033892259 0.1)
(0.8905307735 -0.05842319478 0.1)
(0.8909805021 -0.05289409701 0.1)
(0.8893626906 -0.07462808388 0.1)
(0.8896614825 -0.06943769035 0.1)
(0.07483603119 0.0962382302 0.1)
(0.06798915577 0.09876468296 0.1)
(0.06694132048 0.09462056428 0.1)
(0.07514824517 0.1157065452 0.1)
(0.06965848131 0.1162857938 0.1)
(0.06914226383 0.1103182636 0.1)
(0.0746386961 0.109653935 0.1)
(0.05313941304 0.1179016169 0.1)
(0.05262348072 0.1120486503 0.1)
(0.0581255997 0.1115018992 0.1)
(0.05863316789 0.1173848668 0.1)
(0.09697183705 0.1134070402 0.1)
(0.09151136576 0.1140811885 0.1)
(0.09096378904 0.108178332 0.1)
(0.09647253892 0.1072873963 0.1)
(0.08010826927 0.1091276783 0.1)
(0.08061032477 0.1151720455 0.1)
(0.0476652134 0.1183985757 0.1)
(0.04710870176 0.1125498763 0.1)
(0.03111912138 0.11979566 0.1)
(0.03056745681 0.114031675 0.1)
(0.03605639727 0.1135258163 0.1)
(0.03659273383 0.1193042792 0.1)
(0.03502171516 0.1016433886 0.1)
(0.02942316395 0.1022083263 0.1)
(0.2272079308 0.1048063067 0.1)
(0.2326475805 0.1045182331 0.1)
(0.2331015602 0.1093138011 0.1)
(0.2276774836 0.109704776 0.1)
(0.2503155358 0.1034509159 0.1)
(0.243844406 0.1073102557 0.1)
(0.242991185 0.1039160647 0.1)
(0.2453823774 0.1235076406 0.1)
(0.2448477561 0.1177996204 0.1)
(0.2124431719 0.1213824378 0.1)
(0.2129664177 0.1269029068 0.1)
(0.2109207815 0.1054287557 0.1)
(0.21139811 0.1104435039 0.1)
(0.2222520604 0.109994643 0.1)
(0.2217815756 0.1050428316 0.1)
(0.4000687973 0.08713680306 0.1)
(0.4053812113 0.08614848946 0.1)
(0.405869459 0.09167059877 0.1)
(0.4005144469 0.092448749 0.1)
(0.4164828079 0.08993827685 0.1)
(0.4159167158 0.08406425419 0.1)
(0.4181398523 0.1074082034 0.1)
(0.4176083023 0.101657517 0.1)
(0.415432316 0.07885422405 0.1)
(0.4206354522 0.07769477418 0.1)
(0.3996635589 0.08227123273 0.1)
(0.404947399 0.08112648994 0.1)
(0.4372016136 0.07752498453 0.1)
(0.4426578939 0.07727543929 0.1)
(0.4256157681 0.07655840826 0.1)
(0.3946842637 0.08786737718 0.1)
(0.3943685279 0.08332783244 0.1)
(0.3851968829 0.1044847344 0.1)
(0.3857557442 0.1103457696 0.1)
(0.3820954776 0.08572472788 0.1)
(0.3840498144 0.0926195633 0.1)
(0.395096212 0.09296763127 0.1)
(0.5912365237 0.04454513874 0.1)
(0.5906118566 0.03851606442 0.1)
(0.5960309648 0.03817978239 0.1)
(0.5966334879 0.04412172986 0.1)
(0.5858933825 0.04520227475 0.1)
(0.5853403948 0.03939372143 0.1)
(0.5918286687 0.05050512212 0.1)
(0.5864449504 0.05106047154 0.1)
(0.5934584521 0.06778947351 0.1)
(0.5880652304 0.06830734061 0.1)
(0.5875447215 0.06263235797 0.1)
(0.5929416675 0.06211133331 0.1)
(0.5719443181 0.06983389835 0.1)
(0.5713990385 0.06407594934 0.1)
(0.5767730283 0.06361058352 0.1)
(0.5773048103 0.06932047398 0.1)
(0.5489399707 0.05494005772 0.1)
(0.5435381655 0.0553112907 0.1)
(0.5504893505 0.07194233085 0.1)
(0.545115143 0.07242699933 0.1)
(0.5445814281 0.06668545206 0.1)
(0.5499599572 0.06623653723 0.1)
(0.5289412891 0.07394581498 0.1)
(0.5284038193 0.06814214895 0.1)
(0.5337800183 0.06755987906 0.1)
(0.5343230826 0.07340219354 0.1)
(0.5665790413 0.07034987568 0.1)
(0.5660290007 0.06457308593 0.1)
(0.5553152726 0.06569979137 0.1)
(0.5558493068 0.07142313128 0.1)
(0.5542353707 0.0541796908 0.1)
(0.7593773847 -0.01167848932 0.1)
(0.7539935229 -0.0112004573 0.1)
(0.7533832233 -0.01713962445 0.1)
(0.7610703039 0.00574512485 0.1)
(0.7557084598 0.006276450686 0.1)
(0.7551725522 0.0005437437885 0.1)
(0.7605427543 3.75533053e-05 0.1)
(0.7444074728 0.001539131719 0.1)
(0.7449625012 0.007315559112 0.1)
(0.894422447 -0.1597813984 0.1)
(0.8997757535 -0.1602640273 0.1)
(0.9002709672 -0.1547642571 0.1)
(0.8949165726 -0.1542825316 0.1)
(0.9109968785 -0.1555756395 0.1)
(0.9104906606 -0.1611507152 0.1)
(0.9124773593 -0.1391102974 0.1)
(0.9120076307 -0.1444544566 0.1)
(0.8745446783 -0.1409012489 0.1)
(0.8798883255 -0.1415637546 0.1)
(0.8803963038 -0.135991353 0.1)
(0.8729972312 -0.1577744486 0.1)
(0.8783655249 -0.1582795581 0.1)
(0.8788710755 -0.1527224979 0.1)
(0.8735063643 -0.1521896004 0.1)
(0.8895737263 -0.1537737573 0.1)
(0.889075043 -0.1592892743 0.1)
(0.1075346118 -0.01749200795 0.1)
(0.1080342943 -0.0122038556 0.1)
(0.1027720052 -0.01118403805 0.1)
(0.1021967015 -0.01667025117 0.1)
(0.1128543334 -0.01840155983 0.1)
(0.1133412585 -0.01319678546 0.1)
(0.1069427277 -0.02353577374 0.1)
(0.1122888522 -0.02431229593 0.1)
(0.1051999452 -0.04146434079 0.1)
(0.1105930705 -0.042004896 0.1)
(0.1111424448 -0.03619199025 0.1)
(0.1057583631 -0.03560808514 0.1)
(0.1267339857 -0.04365141475 0.1)
(0.1272542595 -0.03800061382 0.1)
(0.1218719978 -0.03739709295 0.1)
(0.1213417566 -0.04310120102 0.1)
(0.08357109172 -0.03950357538 0.1)
(0.08897309316 -0.03996902944 0.1)
(0.08951419988 -0.03415214286 0.1)
(0.08408195731 -0.03374635013 0.1)
(0.1003576693 -0.03506250924 0.1)
(0.09979523674 -0.04094038646 0.1)
(0.1015723642 -0.02285813512 0.1)
(0.1497789183 -0.02915361731 0.1)
(0.1552746859 -0.02896674418 0.1)
(0.1482947184 -0.04563739466 0.1)
(0.1537018975 -0.04601565415 0.1)
(0.1542385204 -0.04025358779 0.1)
(0.1488113009 -0.04000473027 0.1)
(0.1699091157 -0.0471532217 0.1)
(0.1705013302 -0.04101930087 0.1)
(0.1651102542 -0.04066232006 0.1)
(0.164528083 -0.04673129098 0.1)
(0.1321398429 -0.04419546113 0.1)
(0.1326538109 -0.03859097571 0.1)
(0.1434178126 -0.03963045262 0.1)
(0.1429096402 -0.04520494521 0.1)
(0.1443797985 -0.02881838639 0.1)
(0.06398115242 -0.01411588658 0.1)
(0.06340401104 -0.02007977276 0.1)
(0.06882817129 -0.02076210145 0.1)
(0.069364089 -0.0149654219 0.1)
(0.061841938 -0.03747214152 0.1)
(0.06729295684 -0.03800029218 0.1)
(0.06781608636 -0.03230355862 0.1)
(0.0623652502 -0.03175503773 0.1)
(0.07866024268 -0.03331692897 0.1)
(0.07815123499 -0.0390194921 0.1)
(0.06458654457 -0.008125697853 0.1)
(0.05921179557 -0.007313478524 0.1)
(0.05856681289 -0.01344461245 0.1)
(0.0699005837 -0.00921880978 0.1)
(0.140407347 0.1096948784 0.1)
(0.145793616 0.109762357 0.1)
(0.1463264934 0.1154624042 0.1)
(0.1409213965 0.1156357951 0.1)
(0.1571797839 0.1148873645 0.1)
(0.156633138 0.1097100248 0.1)
(0.1588112005 0.1316372794 0.1)
(0.158260901 0.1259551183 0.1)
(0.1560958703 0.1051316803 0.1)
(0.1610642896 0.1053067219 0.1)
(0.1399688544 0.1042977068 0.1)
(0.1452971062 0.104627467 0.1)
(0.1185993893 0.1123934457 0.1)
(0.1132109004 0.1125834735 0.1)
(0.1126622659 0.1069300816 0.1)
(0.118016605 0.1070863899 0.1)
(0.101935835 0.106691321 0.1)
(0.1024208162 0.1128872136 0.1)
(0.1350040617 0.109941917 0.1)
(0.1348506078 0.1039474578 0.1)
(0.1234510824 0.1066018539 0.1)
(0.1240407569 0.1117775112 0.1)
(0.1208093259 0.1350647376 0.1)
(0.120275113 0.1293719449 0.1)
(0.1257258208 0.1288566781 0.1)
(0.126264268 0.1345626359 0.1)
(0.1246103561 0.1173754291 0.1)
(0.119181319 0.1179618984 0.1)
(0.1355107755 0.1159986065 0.1)
(0.2789208594 -0.03742716838 0.1)
(0.2784955987 -0.04222710828 0.1)
(0.2838906001 -0.04259590226 0.1)
(0.2842289297 -0.03812674587 0.1)
(0.2771002559 -0.05789390074 0.1)
(0.2824957438 -0.05822497837 0.1)
(0.2829912799 -0.05277585454 0.1)
(0.2775845826 -0.05253311914 0.1)
(0.2987004101 -0.05876224288 0.1)
(0.2992982939 -0.05253474561 0.1)
(0.2938731032 -0.05257792446 0.1)
(0.2933060393 -0.05857066504 0.1)
(0.2556798267 -0.05587865761 0.1)
(0.2610287521 -0.05641932993 0.1)
(0.261519322 -0.05100208362 0.1)
(0.2561771438 -0.05042116252 0.1)
(0.2722098219 -0.05209771021 0.1)
(0.2717271377 -0.05745161414 0.1)
(0.2735821917 -0.03671099316 0.1)
(0.2731434211 -0.04162406879 0.1)
(0.3201474772 -0.06062027461 0.1)
(0.3254948372 -0.06119946705 0.1)
(0.3260846968 -0.05503680575 0.1)
(0.3207431365 -0.05440592808 0.1)
(0.3415053252 -0.06296363945 0.1)
(0.3420755447 -0.05695853752 0.1)
(0.3367543444 -0.05631388189 0.1)
(0.3361781219 -0.06237285964 0.1)
(0.3040796544 -0.05908438161 0.1)
(0.3046887845 -0.05276814383 0.1)
(0.3154000057 -0.05379197772 0.1)
(0.3147976433 -0.06005692137 0.1)
(0.1935881406 -0.02597272539 0.1)
(0.1931000402 -0.03120099164 0.1)
(0.1984341338 -0.03192316995 0.1)
(0.1989196033 -0.02671243562 0.1)
(0.1913797839 -0.04926562166 0.1)
(0.1967372808 -0.04982215368 0.1)
(0.1973015989 -0.04386983228 0.1)
(0.1919508051 -0.04326270314 0.1)
(0.2128300646 -0.05148951495 0.1)
(0.2133738321 -0.04568291819 0.1)
(0.208010443 -0.0450816505 0.1)
(0.2074603419 -0.05093486149 0.1)
(0.1752764916 -0.0476357499 0.1)
(0.1758687246 -0.04150162993 0.1)
(0.1865918885 -0.04265652766 0.1)
(0.1860131962 -0.0487096522 0.1)
(0.1882547995 -0.02522078933 0.1)
(0.1877625458 -0.03047217074 0.1)
(0.2362535178 -0.03177547917 0.1)
(0.2357916673 -0.03685071606 0.1)
(0.2411318409 -0.03755066099 0.1)
(0.2415924052 -0.03250011085 0.1)
(0.234241544 -0.05368781411 0.1)
(0.2396016697 -0.0542376604 0.1)
(0.2401147396 -0.04865367969 0.1)
(0.2347607441 -0.04805940976 0.1)
(0.250829407 -0.04983520635 0.1)
(0.250327251 -0.05533403116 0.1)
(0.2181930205 -0.05204133112 0.1)
(0.2187295973 -0.04627976262 0.1)
(0.2294187065 -0.04746614888 0.1)
(0.2288943534 -0.05313926839 0.1)
(0.2309332535 -0.03105578911 0.1)
(0.2304643642 -0.03615276871 0.1)
(0.3138379709 0.09694306901 0.1)
(0.3192465477 0.09620102462 0.1)
(0.3196831369 0.1011338864 0.1)
(0.3142845072 0.1018207759 0.1)
(0.3304289864 0.09966063136 0.1)
(0.3299774347 0.09468557142 0.1)
(0.3318911617 0.1159070283 0.1)
(0.3313980215 0.1104512546 0.1)
(0.2989153101 0.1128131684 0.1)
(0.2994400348 0.118501117 0.1)
(0.2981783395 0.0988842847 0.1)
(0.2979664281 0.1023588214 0.1)
(0.2909209674 0.09972495168 0.1)
(0.308887167 0.1024024966 0.1)
(0.3084514634 0.09761989563 0.1)
(0.4487710618 -0.0720884998 0.1)
(0.4541051675 -0.07274560093 0.1)
(0.4546770387 -0.06673352175 0.1)
(0.4493500795 -0.06602104403 0.1)
(0.47009754 -0.0747483199 0.1)
(0.470647216 -0.06889968924 0.1)
(0.4653214763 -0.06817406797 0.1)
(0.4647646814 -0.07407777651 0.1)
(0.4273135003 -0.07009461757 0.1)
(0.4327099685 -0.07036100911 0.1)
(0.4333231144 -0.06406643498 0.1)
(0.4279240061 -0.06381767492 0.1)
(0.4440183613 -0.06531656085 0.1)
(0.443430453 -0.07144736619 0.1)
(0.4973023436 -0.07250272999 0.1)
(0.491974675 -0.07178707315 0.1)
(0.5132662899 -0.074660285 0.1)
(0.5079453348 -0.07393721667 0.1)
(0.4754343445 -0.07541963112 0.1)
(0.4759759153 -0.06962588638 0.1)
(0.486643079 -0.07107044933 0.1)
(0.4861164182 -0.07675761573 0.1)
(0.3628483916 -0.06536890339 0.1)
(0.3681902423 -0.06597500192 0.1)
(0.3687181872 -0.06027399496 0.1)
(0.3633861119 -0.05960583412 0.1)
(0.3842146695 -0.06779459912 0.1)
(0.3847170678 -0.06228233924 0.1)
(0.3793841169 -0.06161279157 0.1)
(0.3788728188 -0.06718850059 0.1)
(0.3468320389 -0.06355969659 0.1)
(0.3473947978 -0.05761335672 0.1)
(0.3580539072 -0.05893906729 0.1)
(0.3575074534 -0.0647637934 0.1)
(0.4056156116 -0.06998740129 0.1)
(0.4110061424 -0.07025284024 0.1)
(0.411473893 -0.06498412097 0.1)
(0.4060814889 -0.06472804901 0.1)
(0.4224518014 -0.06411861272 0.1)
(0.4218820089 -0.07010828812 0.1)
(0.3895579041 -0.06839660799 0.1)
(0.3900513378 -0.06294849426 0.1)
(0.4007257721 -0.06421727715 0.1)
(0.4002516787 -0.06953271022 0.1)
(0.5074067554 0.07581366932 0.1)
(0.5020079937 0.07623935399 0.1)
(0.5014087175 0.07025663218 0.1)
(0.5068337538 0.06991929797 0.1)
(0.4859322049 0.07787340271 0.1)
(0.485425515 0.07223911745 0.1)
(0.4907635985 0.07160323961 0.1)
(0.4913053572 0.07736653678 0.1)
(0.5235807866 0.07450242501 0.1)
(0.5230546627 0.06877774858 0.1)
(0.5122880652 0.06969182904 0.1)
(0.5128150687 0.07543681103 0.1)
(0.5117401344 0.05510516781 0.1)
(0.5114005758 0.05888168869 0.1)
(0.5042986951 0.05711182634 0.1)
(0.4583894299 0.07415001628 0.1)
(0.4636323804 0.07310578089 0.1)
(0.4479374283 0.07637654568 0.1)
(0.4805003568 0.07816979112 0.1)
(0.4799698548 0.07245204882 0.1)
(0.4689541876 0.07240271942 0.1)
(0.4696125333 0.07862159403 0.1)
(0.6412396276 -0.09267141878 0.1)
(0.6359034677 -0.0920039837 0.1)
(0.6354350222 -0.09729101709 0.1)
(0.6407917214 -0.0978236733 0.1)
(0.6247646344 -0.09597862152 0.1)
(0.6252566496 -0.09052414953 0.1)
(0.6232656959 -0.1124913611 0.1)
(0.6237709488 -0.1069483334 0.1)
(0.6257072352 -0.08553785229 0.1)
(0.6203967279 -0.08475629907 0.1)
(0.6416626547 -0.0878847292 0.1)
(0.6363411204 -0.08710295632 0.1)
(0.6044794366 -0.08248557029 0.1)
(0.5991559418 -0.08173575294 0.1)
(0.615101644 -0.08398170049 0.1)
(0.6466086521 -0.09311453072 0.1)
(0.6469299322 -0.08865594443 0.1)
(0.6560285948 -0.1092139426 0.1)
(0.6554729106 -0.1150948563 0.1)
(0.6591033393 -0.09043820577 0.1)
(0.6571628122 -0.09729244337 0.1)
(0.6461840014 -0.0981027321 0.1)
(0.5560432233 -0.08121988162 0.1)
(0.5506483104 -0.08096920094 0.1)
(0.5500427062 -0.08721496307 0.1)
(0.5554349327 -0.0874837731 0.1)
(0.5391636492 -0.08736142863 0.1)
(0.5396639709 -0.08186072633 0.1)
(0.5375815903 -0.1044344854 0.1)
(0.5381074658 -0.09875578266 0.1)
(0.5400927615 -0.07687120175 0.1)
(0.5346268883 -0.07713637152 0.1)
(0.5566048086 -0.07572998538 0.1)
(0.5515651299 -0.07501694564 0.1)
(0.5185915791 -0.07537993911 0.1)
(0.5292583381 -0.07672062041 0.1)
(0.5831835953 -0.07948472213 0.1)
(0.5778602945 -0.07873281376 0.1)
(0.593832447 -0.0809859356 0.1)
(0.5613907404 -0.08179738133 0.1)
(0.561890392 -0.07647708867 0.1)
(0.5725369937 -0.0779809054 0.1)
(0.572051439 -0.08320338208 0.1)
(0.5703115025 -0.1013935307 0.1)
(0.5697570357 -0.1072721471 0.1)
(0.5714761167 -0.08923100892 0.1)
(0.5607943963 -0.08797581099 0.1)
(0.6466054411 0.01445500119 0.1)
(0.6342945692 0.04088547353 0.1)
(0.6337379148 0.0350915214 0.1)
(0.6390802408 0.03451219346 0.1)
(0.6396518874 0.04035948866 0.1)
(0.6324356471 0.01908568022 0.1)
(0.6373958153 0.01749402856 0.1)
(0.6379296993 0.02276113118 0.1)
(0.6327419395 0.02385899714 0.1)
(0.6485823171 0.02143039887 0.1)
(0.6274127303 0.02447145497 0.1)
(0.627766107 0.02058408343 0.1)
(0.6289211686 0.04134636579 0.1)
(0.6283545693 0.03552099806 0.1)
(0.8143765912 -0.04700898222 0.1)
(0.8067980059 -0.02727821398 0.1)
(0.8073163045 -0.02159458015 0.1)
(0.8054767246 -0.04342403725 0.1)
(0.8058287047 -0.03850467661 0.1)
(0.8163182342 -0.04015354256 0.1)
(0.7946964587 -0.1279417544 0.1)
(0.7952284645 -0.122218628 0.1)
(0.8272295811 -0.126090909 0.1)
(0.826777761 -0.1313178212 0.1)
(0.7269562398 -0.1006918417 0.1)
(0.7216399747 -0.09988575161 0.1)
(0.72119117 -0.1048636776 0.1)
(0.7265112116 -0.1056398888 0.1)
(0.7105557625 -0.1033041568 0.1)
(0.7110139176 -0.09826874884 0.1)
(0.7089915104 -0.1202610619 0.1)
(0.7095149767 -0.1145975014 0.1)
(0.7415567367 -0.1181616193 0.1)
(0.7410826927 -0.1235089935 0.1)
(0.742854163 -0.1030955499 0.1)
(0.7424419287 -0.1078525094 0.1)
(0.7318289036 -0.1064089523 0.1)
(0.7322717587 -0.101495151 0.1)
(0.7524543343 -0.02291888488 0.1)
(0.9655190576 -0.1498170394 0.1)
(0.9659503402 -0.1446166432 0.1)
(0.964067127 -0.1661045586 0.1)
(0.9645651431 -0.160607057 0.1)
(0.9811797679 -0.1650821361 0.1)
(0.9817555938 -0.1594171064 0.1)
(0.9756047568 -0.1604944693 0.1)
(0.9750740155 -0.1660632525 0.1)
(0.9880322408 -0.1096816739 0.1)
(0.9829955145 -0.1085146654 0.1)
(0.9821532692 -0.1148863038 0.1)
(0.9864583614 -0.1176499485 0.1)
(0.9721911833 -0.1123045159 0.1)
(0.972563023 -0.1069221499 0.1)
(0.9663136418 -0.140073176 0.1)
(0.9456745335 -0.1036586019 0.1)
(0.9498753422 -0.1055761941 0.1)
(0.9516641699 -0.09904723288 0.1)
(0.9463509856 -0.09838112607 0.1)
(0.9677101539 -0.1007643835 0.1)
(0.9624040608 -0.1001409141 0.1)
(0.9690309051 -0.08418047772 0.1)
(0.9637080274 -0.08353225185 0.1)
(0.9633013632 -0.08901934851 0.1)
(0.9686339661 -0.08962770231 0.1)
(0.8808919425 -0.1304870025 0.1)
(0.8897910999 -0.07860517097 0.1)
(0.9263371642 -0.07952772168 0.1)
(0.9258482679 -0.08516506387 0.1)
(0.9312173079 -0.08567295427 0.1)
(0.9317053173 -0.08004517102 0.1)
(0.94109675 -0.09763170895 0.1)
(0.9414535167 -0.1017315021 0.1)
(0.9209579945 -0.07905323832 0.1)
(0.9204400828 -0.08474352635 0.1)
(0.9128612789 -0.1342580144 0.1)
(0.001231305734 0.2598174651 0.1)
(-0.004911701631 0.4204320223 0.1)
(-0.009177475097 0.37539213 0.1)
(-0.1390276799 0.3858116815 0.1)
(-0.09582290889 0.3826202014 0.1)
(0.70630852 -0.0006042660234 0.1)
(0.7011891886 0.0006357862513 0.1)
(0.7009090683 -0.004104406912 0.1)
(0.7057882608 -0.005832762273 0.1)
(0.6959155785 0.001414518665 0.1)
(0.6962930815 -0.002483427001 0.1)
(0.862487323 0.1768043789 0.1)
(0.8545585443 0.3390878848 0.1)
(0.8511779559 0.2926748643 0.1)
(0.8937669278 0.2884496432 0.1)
(0.7657820222 0.3012550953 0.1)
(0.6889051721 0.0001109998439 0.1)
(0.8496221605 -0.03162944879 0.1)
(0.850088695 -0.02607075707 0.1)
(0.8486061688 -0.04293699468 0.1)
(0.8646833256 -0.04456712301 0.1)
(0.8593149877 -0.04405166511 0.1)
(0.7143945097 0.08973957779 0.1)
(0.7903007007 0.0932419687 0.1)
(0.7689108582 0.09547863301 0.1)
(0.7669101156 0.07298376922 0.1)
(0.7963419103 0.1609735149 0.1)
(0.7749517702 0.1631961467 0.1)
(0.7729404391 0.1406304582 0.1)
(0.7943276844 0.1384090993 0.1)
(-0.02421572836 0.04755223721 0.1)
(-0.0247320169 0.04055671723 0.1)
(-0.01933711255 0.03924732964 0.1)
(-0.01892438018 0.04675144674 0.1)
(-0.02509868231 0.01995706446 0.1)
(-0.01953486781 0.01900799306 0.1)
(-0.01972837368 0.02589030319 0.1)
(-0.02522444731 0.0269135335 0.1)
(-0.008252857152 0.02311928788 0.1)
(-0.008179220792 0.01695271282 0.1)
(-0.002940961504 0.07477867699 0.1)
(-0.004147685421 0.06846646508 0.1)
(-0.02050032876 0.07484468004 0.1)
(-0.02143749829 0.06846959649 0.1)
(-0.01593042258 0.06811048996 0.1)
(-0.01489217916 0.0746072562 0.1)
(-0.01801083587 0.05447930321 0.1)
(-0.02338242476 0.05495972161 0.1)
(-0.06607220147 0.2426287848 0.1)
(-0.06867504589 0.2196941654 0.1)
(-0.04683421055 0.2179680195 0.1)
(-0.04442042296 0.2407906258 0.1)
(-0.0521888994 0.171979034 0.1)
(-0.0743766553 0.1733075296 0.1)
(0.00164025073 0.156553061 0.1)
(0.0772776402 0.1389039278 0.1)
(0.07673093873 0.1332042594 0.1)
(0.08214839649 0.1327202983 0.1)
(0.0827021255 0.138421022 0.1)
(0.08110304732 0.1211244817 0.1)
(0.07564870565 0.1216427973 0.1)
(0.09749986136 0.1194823405 0.1)
(0.09203130334 0.1200530937 0.1)
(0.3811243626 -0.1014157868 0.1)
(0.391839619 -0.1024069538 0.1)
(0.39287743 -0.0911456715 0.1)
(0.378001845 -0.1352650742 0.1)
(0.388717748 -0.1362492711 0.1)
(0.3897589568 -0.1249621924 0.1)
(0.3790432385 -0.123976004 0.1)
(0.4208734229 -0.1392026009 0.1)
(0.4219143545 -0.1279185094 0.1)
(0.4111925695 -0.1269327624 0.1)
(0.4101515455 -0.1382178497 0.1)
(0.3351663904 -0.1313278861 0.1)
(0.3458632823 -0.1323113235 0.1)
(0.3469061334 -0.1210173671 0.1)
(0.3362093339 -0.1200329341 0.1)
(0.368328516 -0.1229899081 0.1)
(0.3672860344 -0.1342798815 0.1)
(0.3714492988 -0.08914849409 0.1)
(0.3704101944 -0.1004237165 0.1)
(0.782508063 0.003613583332 0.1)
(0.7771580218 0.004153053589 0.1)
(0.7766700258 -0.001452937694 0.1)
(0.7820258329 -0.00197356003 0.1)
(0.7659203718 -0.0004536582029 0.1)
(0.7664323216 0.00520484469 0.1)
(0.7648153859 -0.01200597919 0.1)
(0.7094680028 0.03365425648 0.1)
(0.710441944 0.04484413399 0.1)
(0.7425767565 0.04155770701 0.1)
(0.7318727506 0.0426593069 0.1)
(0.7455185548 0.07520191308 0.1)
(0.7348215559 0.07630326456 0.1)
(0.7338334448 0.06506890591 0.1)
(0.7445319567 0.0639730381 0.1)
(0.8515909341 -0.155769254 0.1)
(0.8569313885 -0.1562496861 0.1)
(0.8574512281 -0.1506035651 0.1)
(0.8521149824 -0.1500994204 0.1)
(0.868139754 -0.1516555225 0.1)
(0.8676278699 -0.157259197 0.1)
(0.8691993167 -0.1402355712 0.1)
(0.1029521335 0.1189904291 0.1)
(0.1137726731 0.1183351721 0.1)
(0.115366199 0.1355426443 0.1)
(0.1148357011 0.1298465944 0.1)
(0.431603266 -0.1401880912 0.1)
(0.4326441052 -0.1289049954 0.1)
(0.4540836923 -0.1308761198 0.1)
(0.453043315 -0.1421542369 0.1)
(0.4572094044 -0.09700322654 0.1)
(0.4561648164 -0.1083159025 0.1)
(0.4465031506 -0.09599080034 0.1)
(0.4470406122 -0.09023051909 0.1)
(0.4416824349 -0.08971379445 0.1)
(0.4411450379 -0.0954733787 0.1)
(0.4428285032 -0.07767539007 0.1)
(0.4481777069 -0.07825636043 0.1)
(0.4267106934 -0.07632105548 0.1)
(0.4320971531 -0.07666284484 0.1)
(0.4213098626 -0.07611250827 0.1)
(0.4051277353 -0.07539726487 0.1)
(0.4105070864 -0.07573990113 0.1)
(0.403593333 -0.09212986841 0.1)
(0.4089538867 -0.09261015676 0.1)
(0.4094740107 -0.08697179518 0.1)
(0.4041105581 -0.08651192635 0.1)
(0.83169321 -0.1370067641 0.1)
(0.8371024612 -0.1372003251 0.1)
(0.8301434019 -0.1538837619 0.1)
(0.8355101558 -0.1543405224 0.1)
(0.8360268748 -0.1487172106 0.1)
(0.8306554503 -0.1482891413 0.1)
(0.8467622302 -0.1496108172 0.1)
(0.8462399167 -0.1552727774 0.1)
(0.7797514503 -0.02953926975 0.1)
(0.7849973995 -0.03034552442 0.1)
(0.7901796429 -0.03135130693 0.1)
(0.7907117939 -0.02561579097 0.1)
(0.7912314756 -0.01991725116 0.1)
(0.8548749648 -0.1211317169 0.1)
(0.8496143502 -0.1202778639 0.1)
(0.8445885026 -0.1194590495 0.1)
(0.8436883987 -0.1252636175 0.1)
(0.8430933859 -0.1313735773 0.1)
(0.7697292928 -0.01804709572 0.1)
(0.7692477896 -0.02363722903 0.1)
(0.7685115707 -0.0290284799 0.1)
(0.7727928965 -0.0306735954 0.1)
(0.8024592363 -0.01538465271 0.1)
(0.7970937736 -0.01482738162 0.1)
(0.8038804516 0.001372813942 0.1)
(0.798531135 0.001941743237 0.1)
(0.7980595755 -0.003627810707 0.1)
(0.8034105325 -0.00420070852 0.1)
(0.7873694656 -0.002517155878 0.1)
(0.7878512338 0.003065008867 0.1)
(0.9500237731 -0.1422510518 0.1)
(0.9504434208 -0.1373925428 0.1)
(0.8644247394 -0.1336994196 0.1)
(0.8649667126 -0.127922986 0.1)
(0.8654176483 -0.1228896198 0.1)
(0.860142494 -0.1219868141 0.1)
(0.9288401544 -0.1389607333 0.1)
(0.929365732 -0.133739861 0.1)
(0.04005036326 0.09495119725 0.1)
(0.04074762284 0.08755364437 0.1)
(0.5589064302 0.04736129556 0.1)
(0.5583437699 0.04198970458 0.1)
(0.738418461 -0.003920623251 0.1)
(0.7330403795 -0.003445236557 0.1)
(0.7277140394 -0.002823504123 0.1)
(0.7272100851 -0.008471601182 0.1)
(0.7268295515 -0.01343892905 0.1)
(0.7026077792 0.01731084294 0.1)
(0.697249107 0.01784388307 0.1)
(0.7186628982 0.01558390656 0.1)
(0.7133015365 0.01613125636 0.1)
(0.7201860802 0.03256360342 0.1)
(0.714826673 0.03311037015 0.1)
(0.714338795 0.02749482711 0.1)
(0.7196959429 0.02694535755 0.1)
(0.1395001858 -0.02284061904 0.1)
(0.139956716 -0.01786602103 0.1)
(0.09255348288 0.1832662918 0.1)
(0.09147719188 0.1719453092 0.1)
(0.05994506209 0.186135087 0.1)
(0.05883950507 0.1748017553 0.1)
(0.06970474906 0.1738478912 0.1)
(0.0708246445 0.1851798926 0.1)
(0.06746476622 0.1511829021 0.1)
(0.05653550651 0.152113581 0.1)
(0.6821476607 0.0306937833 0.1)
(0.6826512803 0.03632744956 0.1)
(0.6811064008 0.01933038294 0.1)
(0.6918651179 0.01833136728 0.1)
(0.8631813667 -0.06150208927 0.1)
(0.8578496816 -0.06091631683 0.1)
(0.8581689353 -0.06505239955 0.1)
(0.8624641106 -0.06686214862 0.1)
(0.8508836379 -0.06199065396 0.1)
(0.873981472 -0.0717427517 0.1)
(0.8736422403 -0.06764880349 0.1)
(0.8666989646 -0.06865093526 0.1)
(0.8739835341 -0.06236835134 0.1)
(0.8685444765 -0.0620197737 0.1)
(-0.03259292695 0.1475829285 0.1)
(-0.03407593855 0.135980718 0.1)
(-0.02295231616 0.1352939259 0.1)
(-0.02166251567 0.146755585 0.1)
(-0.02616646399 0.1118885686 0.1)
(-0.03739740241 0.1123734114 0.1)
(0.001130971998 0.1044878469 0.1)
(0.06229404405 0.09354028258 0.1)
(0.06254252857 0.09918104984 0.1)
(0.0631047713 0.1050103368 0.1)
(0.05761803058 0.1055648001 0.1)
(0.0520854178 0.1061303488 0.1)
(0.09715271397 0.09998713791 0.1)
(0.09037152724 0.1026771214 0.1)
(0.0892922503 0.09876781162 0.1)
(0.08497374198 0.1029996748 0.1)
(0.0844406746 0.0979578602 0.1)
(0.6020552198 0.04381372636 0.1)
(0.6015306408 0.03811652472 0.1)
(0.6011270076 0.03281363583 0.1)
(0.6064737877 0.03223901654 0.1)
(0.6116733545 0.0311709874 0.1)
(0.575043964 0.03707303165 0.1)
(0.5797950351 0.03567402126 0.1)
(0.5800986853 0.04041886049 0.1)
(0.5805504763 0.04588359246 0.1)
(0.6149268024 0.06570621231 0.1)
(0.6095629371 0.066226578 0.1)
(0.6090537476 0.06058700104 0.1)
(0.6144187749 0.06006833526 0.1)
(0.5983252091 0.06159737723 0.1)
(0.5988396307 0.06726087312 0.1)
(0.5972211707 0.0500336198 0.1)
(0.536075842 0.04841179025 0.1)
(0.5380249528 0.05531524533 0.1)
(0.5386096649 0.06121676538 0.1)
(0.5331913799 0.06161604077 0.1)
(0.5278368536 0.06228035931 0.1)
(0.7481744969 -0.01620279017 0.1)
(0.7486711328 -0.0105578003 0.1)
(0.7492308041 -0.004752980414 0.1)
(0.7438348048 -0.004297523614 0.1)
(0.09679421134 -0.01616568469 0.1)
(0.09774144452 -0.01017788715 0.1)
(0.08577845705 -0.007651784278 0.1)
(0.118161358 -0.01931806846 0.1)
(0.1186373035 -0.01415586179 0.1)
(0.1176151392 -0.02511861286 0.1)
(0.1170591008 -0.03097087125 0.1)
(0.122406651 -0.03166708169 0.1)
(0.1277737388 -0.0323583761 0.1)
(0.1627982627 -0.02149364957 0.1)
(0.1608348752 -0.02842108827 0.1)
(0.1602602499 -0.03441955478 0.1)
(0.1657163254 -0.03443317214 0.1)
(0.1711178143 -0.03472122014 0.1)
(0.1331599528 -0.03302754283 0.1)
(0.1385381095 -0.03364283479 0.1)
(0.1390218109 -0.0282238465 0.1)
(0.03996211272 -0.03535873732 0.1)
(0.04545075759 -0.03588726567 0.1)
(0.04597390558 -0.03019033297 0.1)
(0.04047552831 -0.02967144673 0.1)
(0.05689578889 -0.0312124214 0.1)
(0.05637065462 -0.03693076215 0.1)
(0.05796531133 -0.01948487475 0.1)
(0.05307491113 -0.01305618236 0.1)
(0.05367450038 -0.007065756524 0.1)
(0.05566792997 -9.81213525e-05 0.1)
(0.04842865562 -0.001729498356 0.1)
(0.04293657916 -0.00123037875 0.1)
(0.0808849457 -0.006555107532 0.1)
(0.07565753017 -0.005345600541 0.1)
(0.07522392308 -0.01030585496 0.1)
(0.07474489962 -0.01579457365 0.1)
(0.2891414729 -0.03875959727 0.1)
(0.2893676694 -0.04226418224 0.1)
(0.2963861687 -0.03969359228 0.1)
(0.2889313842 -0.04724788954 0.1)
(0.2944375086 -0.04660301452 0.1)
(0.2999017834 -0.04625765414 0.1)
(0.3008186552 -0.04027236238 0.1)
(0.2566664757 -0.0450172589 0.1)
(0.2620028172 -0.04565026352 0.1)
(0.2673362382 -0.04627144778 0.1)
(0.2678140743 -0.04095897313 0.1)
(0.268265319 -0.03599804528 0.1)
(0.331993048 -0.0496562376 0.1)
(0.3373197085 -0.05033946262 0.1)
(0.3378071992 -0.04511776814 0.1)
(0.3324819984 -0.0444188107 0.1)
(0.3426368532 -0.05102783051 0.1)
(0.3431242309 -0.04581817709 0.1)
(0.3052972772 -0.04645877654 0.1)
(0.305860391 -0.04093075847 0.1)
(0.3106514143 -0.04698657527 0.1)
(0.311156145 -0.04162236403 0.1)
(0.2042454775 -0.02745825569 0.1)
(0.2037681258 -0.03264644355 0.1)
(0.2032145808 -0.03852594883 0.1)
(0.2085648933 -0.03919238714 0.1)
(0.2139200016 -0.03985043262 0.1)
(0.1764805289 -0.03523233998 0.1)
(0.1818319469 -0.03585439059 0.1)
(0.1824204423 -0.02973890501 0.1)
(0.1829130993 -0.0244507034 0.1)
(0.2469449319 -0.03320762941 0.1)
(0.246480941 -0.03824098947 0.1)
(0.2459777523 -0.04374012018 0.1)
(0.2513264839 -0.04438030014 0.1)
(0.2192686665 -0.04050215579 0.1)
(0.2246096889 -0.04114965484 0.1)
(0.2251374008 -0.03546198339 0.1)
(0.2256106724 -0.03035024552 0.1)
(0.4641966237 -0.08005957851 0.1)
(0.4695383821 -0.08066667276 0.1)
(0.4535205 -0.07885230258 0.1)
(0.451860364 -0.09648544149 0.1)
(0.452393617 -0.09074887283 0.1)
(0.4845257182 -0.09389133363 0.1)
(0.4840034806 -0.09954165108 0.1)
(0.4855827238 -0.08248811766 0.1)
(0.4748830907 -0.08127444245 0.1)
(0.3783587697 -0.07278303597 0.1)
(0.3837083562 -0.07333823147 0.1)
(0.3623131636 -0.07111593433 0.1)
(0.3676617174 -0.07167143573 0.1)
(0.3607368654 -0.08814855037 0.1)
(0.3660936724 -0.0886475727 0.1)
(0.3666143414 -0.08300333635 0.1)
(0.3612582736 -0.08249634824 0.1)
(0.3745679291 -0.05533028046 0.1)
(0.3798928579 -0.05605381789 0.1)
(0.3803557186 -0.05100016663 0.1)
(0.3750337902 -0.05025511439 0.1)
(0.3852186901 -0.05677844344 0.1)
(0.3856774437 -0.05174740947 0.1)
(0.3479481765 -0.05173564375 0.1)
(0.3484250663 -0.04655243451 0.1)
(0.3532679624 -0.05244966537 0.1)
(0.3537447466 -0.04728924381 0.1)
(0.4173697137 -0.0597061339 0.1)
(0.4244004985 -0.05720879219 0.1)
(0.4171276081 -0.05617817923 0.1)
(0.3905436189 -0.05750198087 0.1)
(0.3910001552 -0.05249484427 0.1)
(0.3958700053 -0.05822063207 0.1)
(0.3963218896 -0.05324198754 0.1)
(0.3987501522 -0.08603004484 0.1)
(0.3982344217 -0.09164270238 0.1)
(0.3997635991 -0.07494476439 0.1)
(0.3890582476 -0.07389014109 0.1)
(0.4954741531 0.06491826623 0.1)
(0.4902454527 0.06594290129 0.1)
(0.4898010304 0.06088231696 0.1)
(0.4949130613 0.05955275634 0.1)
(0.4849856931 0.06688173884 0.1)
(0.4846899767 0.06221158605 0.1)
(0.5225315507 0.06308553274 0.1)
(0.5172141494 0.0637819588 0.1)
(0.5167934411 0.0584790473 0.1)
(0.5165016542 0.05381877374 0.1)
(0.4795560344 0.06720172589 0.1)
(0.4798786328 0.06344806966 0.1)
(0.4724426148 0.06530749769 0.1)
(0.4713920303 0.09655619503 0.1)
(0.471920936 0.1022675575 0.1)
(0.4702467437 0.08475352657 0.1)
(0.4864638955 0.08363642885 0.1)
(0.4810578693 0.08401628869 0.1)
(0.8086891255 -0.1519735409 0.1)
(0.8140507468 -0.1524639713 0.1)
(0.8145547474 -0.146912793 0.1)
(0.8091934956 -0.1464183797 0.1)
(0.8252848573 -0.1478521104 0.1)
(0.8247784753 -0.1534181322 0.1)
(0.8262923966 -0.1367547325 0.1)
(0.7888402737 -0.1330739798 0.1)
(0.7941672502 -0.1336455565 0.1)
(0.7872823049 -0.150006461 0.1)
(0.792623016 -0.1504949512 0.1)
(0.7931332373 -0.1449091998 0.1)
(0.7877946305 -0.1444088532 0.1)
(0.8038338863 -0.1459170888 0.1)
(0.8033276889 -0.1514811191 0.1)
(0.8116503345 -0.1190510144 0.1)
(0.8063441415 -0.1182229609 0.1)
(0.8010425042 -0.1173891035 0.1)
(0.8005342026 -0.1229649901 0.1)
(0.8000180081 -0.1285934725 0.1)
(0.821389897 -0.1309911668 0.1)
(0.8218448839 -0.1257409475 0.1)
(0.8222798786 -0.1206087861 0.1)
(0.8169602558 -0.1198605331 0.1)
(0.7477980811 -0.02116903382 0.1)
(0.9713855008 -0.1448015609 0.1)
(0.9709648016 -0.1500069562 0.1)
(0.9704937519 -0.1553653542 0.1)
(0.9761388858 -0.1549541208 0.1)
(0.9823662187 -0.1537342153 0.1)
(0.9858903169 -0.1235125419 0.1)
(0.9805435082 -0.1212712924 0.1)
(0.9862564737 -0.1267534294 0.1)
(0.9716947076 -0.1407112341 0.1)
(0.973943501 -0.09023572357 0.1)
(0.974340556 -0.08480889692 0.1)
(0.9730391053 -0.1013254979 0.1)
(0.9886070584 -0.1038867958 0.1)
(0.9835417766 -0.1027786008 0.1)
(0.8971830284 -0.1282094128 0.1)
(0.8919153852 -0.1273230714 0.1)
(0.8866310047 -0.1264547609 0.1)
(0.8861971654 -0.1313255111 0.1)
(0.8857154462 -0.1367447837 0.1)
(0.89448134 -0.07566982505 0.1)
(0.8941586861 -0.08052206794 0.1)
(0.9101809043 -0.08758277537 0.1)
(0.91441547 -0.08948291157 0.1)
(0.9151220555 -0.08414044164 0.1)
(0.9156137152 -0.07851661254 0.1)
(0.9070336555 -0.1392014712 0.1)
(0.9074225301 -0.1343282564 0.1)
(0.9077094693 -0.130001662 0.1)
(0.9024660469 -0.1291140528 0.1)
(0.9268363061 -0.07387737039 0.1)
(0.9214830539 -0.07335085891 0.1)
(0.9281773136 -0.05729162815 0.1)
(0.9228685197 -0.05666479492 0.1)
(0.9224414053 -0.06215581907 0.1)
(0.9277521094 -0.06277288703 0.1)
(0.9117772949 -0.06094895475 0.1)
(0.9122250598 -0.05541937349 0.1)
(0.7168539685 -0.002170002543 0.1)
(0.7114853884 -0.001667979723 0.1)
(0.7105295467 -0.007542899223 0.1)
(0.7068561626 0.005168327309 0.1)
(0.7074084297 0.01096911399 0.1)
(0.009774337042 0.01383463993 0.1)
(0.009715368026 0.01882553199 0.1)
(-0.001823111575 0.02871530846 0.1)
(0.6859552913 0.01309726181 0.1)
(0.6854158587 0.00734821067 0.1)
(0.6845206428 0.001650447886 0.1)
(0.67516494 0.004846944 0.1)
(0.6797754871 0.00327557881 0.1)
(-0.0164306704 0.09967399078 0.1)
(-0.01730631729 0.09371520382 0.1)
(-0.01163264907 0.09346195939 0.1)
(-0.0108390014 0.09935202796 0.1)
(-0.01364969661 0.08118158553 0.1)
(-0.01932989854 0.08138281111 0.1)
(-0.001863988919 0.0808467318 0.1)
(0.2603618755 0.1082609563 0.1)
(0.2550022028 0.109162063 0.1)
(0.2548013926 0.1031009939 0.1)
(0.2598964402 0.1027032874 0.1)
(0.2496635308 0.1105925936 0.1)
(0.271127997 0.1071685573 0.1)
(0.2657338679 0.1076658201 0.1)
(0.2652296279 0.1022636009 0.1)
(0.2706363585 0.1018047382 0.1)
(0.194634104 0.105764033 0.1)
(0.1951198138 0.1108799395 0.1)
(0.1956514685 0.1165992822 0.1)
(0.190231523 0.1167966475 0.1)
(0.1848165786 0.1170154424 0.1)
(0.2065044252 0.1161613598 0.1)
(0.2010785946 0.1163927142 0.1)
(0.3673458125 0.08848939801 0.1)
(0.367837673 0.0937581902 0.1)
(0.3684235027 0.09976917513 0.1)
(0.3630692237 0.1005227526 0.1)
(0.3577172265 0.1013009244 0.1)
(0.3791743691 0.09869636918 0.1)
(0.3737804937 0.09912059621 0.1)
(0.1732978448 0.1056773107 0.1)
(0.1734635009 0.1116950422 0.1)
(0.1739792243 0.1178596609 0.1)
(0.1685492045 0.1186628478 0.1)
(0.1631293932 0.1195760622 0.1)
(0.179402482 0.1173299684 0.1)
(0.3460425143 0.09218922434 0.1)
(0.3465017524 0.09724712846 0.1)
(0.3470137659 0.1028521969 0.1)
(0.3416481089 0.1036022103 0.1)
(0.3362889765 0.1043359513 0.1)
(0.3523723749 0.1020803413 0.1)
(0.2819381024 0.1063012574 0.1)
(0.2765196881 0.1066991388 0.1)
(0.2760080386 0.1013144793 0.1)
(0.2813806469 0.1007584533 0.1)
(0.2928757107 0.1066241683 0.1)
(0.287384805 0.1062082665 0.1)
(0.2864806579 0.1002302302 0.1)
(0.6093313105 -0.08829686303 0.1)
(0.6088112696 -0.09393432847 0.1)
(0.6082857175 -0.09960954619 0.1)
(0.6136121335 -0.1002196358 0.1)
(0.6189372582 -0.1008328194 0.1)
(0.6738478933 -0.09263015439 0.1)
(0.6733512072 -0.09791848433 0.1)
(0.672757221 -0.1040606768 0.1)
(0.6780915341 -0.104693895 0.1)
(0.6834153737 -0.1053750505 0.1)
(0.6620220156 -0.1032520475 0.1)
(0.6674052027 -0.1035425151 0.1)
(0.7846463622 -0.03523307612 0.1)
(0.7892930205 -0.03702139527 0.1)
(0.7801364147 -0.03349751261 0.1)
(0.8009623547 -0.03232984175 0.1)
(0.7955305376 -0.03194652444 0.1)
(0.7798593096 -0.1141483361 0.1)
(0.7851679713 -0.1149389576 0.1)
(0.7856372743 -0.1098483435 0.1)
(0.7803334053 -0.1090168901 0.1)
(0.7904626723 -0.1157393311 0.1)
(0.7909243175 -0.110677131 0.1)
(0.7692055646 -0.112732335 0.1)
(0.7745419759 -0.1133862355 0.1)
(0.7750257567 -0.1081828767 0.1)
(0.7697540373 -0.1073512929 0.1)
(0.8330980926 -0.1210098411 0.1)
(0.8401355389 -0.1187329576 0.1)
(0.8328195673 -0.1175388655 0.1)
(0.6950763359 -0.09583786058 0.1)
(0.694606225 -0.1009588299 0.1)
(0.6940573825 -0.1067876529 0.1)
(0.6993842586 -0.1075010267 0.1)
(0.7047111162 -0.1082145998 0.1)
(0.6887342491 -0.1060772374 0.1)
(0.7583456969 -0.1126178574 0.1)
(0.7638188441 -0.1124041799 0.1)
(0.764723824 -0.1065578839 0.1)
(0.7602716672 -0.1058555682 0.1)
(0.7473721314 -0.1132850186 0.1)
(0.7528290617 -0.1131162349 0.1)
(0.7641410284 -0.02734910562 0.1)
(0.9871795384 -0.1617903466 0.1)
(0.9877701459 -0.1559660013 0.1)
(1.002812209 -0.162268615 0.1)
(1.003305441 -0.1565195958 0.1)
(0.9979462522 -0.1559380003 0.1)
(0.9974601135 -0.1617188108 0.1)
(1.004483312 -0.1394948046 0.1)
(0.9989179429 -0.1387540806 0.1)
(0.9987108968 -0.1443411465 0.1)
(1.0041379 -0.1450577845 0.1)
(0.9495284373 -0.1477629626 0.1)
(0.9490146335 -0.1533765019 0.1)
(0.9543490422 -0.1540411634 0.1)
(0.9596916834 -0.1546603911 0.1)
(0.9567373571 -0.1048545547 0.1)
(0.9571099815 -0.1089566226 0.1)
(1.004814237 -0.1341962169 0.1)
(0.9988426886 -0.1340447883 0.1)
(1.006841369 -0.1170022611 0.1)
(1.001355317 -0.1167055638 0.1)
(1.00056136 -0.1226650004 0.1)
(1.006148999 -0.1228409666 0.1)
(0.992107166 -0.118314053 0.1)
(0.9925676514 -0.1121602775 0.1)
(0.8760189604 -0.1246975531 0.1)
(0.8707098479 -0.1238035478 0.1)
(0.02873656236 0.08320127176 0.1)
(0.0330195898 0.08491270377 0.1)
(0.01702883815 0.07770086574 0.1)
(0.01645918398 0.08516401031 0.1)
(0.01056690931 0.08572767825 0.1)
(0.004712899037 0.08629311871 0.1)
(0.02195760489 0.08492702563 0.1)
(0.02114296559 0.07981412001 0.1)
(0.7223337704 -0.002360869876 0.1)
(0.009587896465 0.008125448121 0.1)
(0.009253033659 0.002378506844 0.1)
(0.01495471117 0.001719238364 0.1)
(0.0205799418 0.001041352805 0.1)
(0.03189699361 0.0001153677607 0.1)
(0.03749685458 -0.0004073102593 0.1)
(0.03841557563 0.005320810832 0.1)
(0.03386242406 0.006982560074 0.1)
(0.04333249665 0.003696012805 0.1)
(0.02617927111 0.000476142005 0.1)
(0.6642969436 0.01461566019 0.1)
(0.6633825309 0.008862534139 0.1)
(0.8321076897 -0.04686535412 0.1)
(0.8302638202 -0.053489638 0.1)
(0.8375657892 -0.05649076455 0.1)
(0.8420159186 -0.05831900814 0.1)
(0.8533804632 -0.04932465516 0.1)
(0.8528035792 -0.05517427646 0.1)
(0.846603422 -0.06020368434 0.1)
(0.8847274128 -0.06338657833 0.1)
(0.8793728662 -0.06283072176 0.1)
(0.8949115577 -0.070199476 0.1)
(0.8953780646 -0.06463025671 0.1)
(0.8900805183 -0.06395796818 0.1)
(0.07413889494 0.1035559302 0.1)
(0.06858616501 0.1043798423 0.1)
(0.08605571516 0.1146698257 0.1)
(0.08553150102 0.1087449166 0.1)
(0.07960925539 0.103058725 0.1)
(0.07947636465 0.09708997596 0.1)
(0.2380052278 0.1042231051 0.1)
(0.2384954319 0.1086730484 0.1)
(0.2389785213 0.1136308208 0.1)
(0.2335955663 0.114421707 0.1)
(0.2281856462 0.1149327877 0.1)
(0.24432725 0.112287032 0.1)
(0.2163412485 0.1052586588 0.1)
(0.2168204237 0.1102391901 0.1)
(0.2173405564 0.1156286866 0.1)
(0.2119211609 0.1159077505 0.1)
(0.2227644809 0.1153118428 0.1)
(0.410650143 0.08510284779 0.1)
(0.411178014 0.09080305817 0.1)
(0.411714402 0.09654094283 0.1)
(0.4063719803 0.0972491307 0.1)
(0.4009874561 0.09788238775 0.1)
(0.4101859162 0.07999117461 0.1)
(0.4320367527 0.08244166664 0.1)
(0.4300768183 0.0755406218 0.1)
(0.437516785 0.07384282018 0.1)
(0.4423739464 0.07267801024 0.1)
(0.3891975742 0.08790823931 0.1)
(0.3894857511 0.08428150591 0.1)
(0.3896036621 0.09297780357 0.1)
(0.3901005613 0.09851738834 0.1)
(0.3846241781 0.09855026418 0.1)
(0.3955589191 0.09833353209 0.1)
(0.5896659146 0.03262877744 0.1)
(0.5940698273 0.03125494695 0.1)
(0.6014770225 0.02894415138 0.1)
(0.6061698398 0.0274801448 0.1)
(0.6111437787 0.02591784647 0.1)
(0.5848159454 0.03414171173 0.1)
(0.5494327955 0.06053314773 0.1)
(0.5440430467 0.06093690597 0.1)
(0.1493114808 -0.03447308253 0.1)
(0.1547704266 -0.0345207105 0.1)
(0.143909841 -0.03415418866 0.1)
(0.06515361886 -0.002727099149 0.1)
(0.06017795881 -0.001345715515 0.1)
(0.04809585338 0.002165304189 0.1)
(0.07036661615 -0.004075769261 0.1)
(0.1512069236 0.1098614729 0.1)
(0.1517506661 0.1152889506 0.1)
(0.1522918595 0.1208404944 0.1)
(0.1468672594 0.1211933547 0.1)
(0.1414501428 0.121529452 0.1)
(0.1577193351 0.120334614 0.1)
(0.1507110437 0.1049390332 0.1)
(0.1078298027 0.1126583259 0.1)
(0.1073172653 0.1066687615 0.1)
(0.1068868381 0.1012610999 0.1)
(0.1121666809 0.1018592802 0.1)
(0.1174287793 0.1024285763 0.1)
(0.1018057438 0.1006261007 0.1)
(0.129545517 0.1107515668 0.1)
(0.1302115268 0.1036092927 0.1)
(0.1224080299 0.1029368423 0.1)
(0.2780455244 -0.04733778468 0.1)
(0.2834573061 -0.04755819432 0.1)
(0.2726779822 -0.04685704878 0.1)
(0.3213260805 -0.04829615407 0.1)
(0.32666021 -0.04897464887 0.1)
(0.3271508417 -0.0437190998 0.1)
(0.3218186154 -0.0430200931 0.1)
(0.3159901517 -0.04762622968 0.1)
(0.3164863891 -0.04232108639 0.1)
(0.1925325348 -0.0371876655 0.1)
(0.1978735255 -0.03785715567 0.1)
(0.1871836431 -0.03651673925 0.1)
(0.2352786508 -0.04244494554 0.1)
(0.2406244856 -0.04309469882 0.1)
(0.2299437875 -0.04179600934 0.1)
(0.324602578 0.09544467354 0.1)
(0.3250540445 0.1004079911 0.1)
(0.3255312308 0.1057459347 0.1)
(0.3201502244 0.1064062826 0.1)
(0.3147498641 0.1070095746 0.1)
(0.3309134023 0.1050548477 0.1)
(0.3031364262 0.09828768079 0.1)
(0.3034710645 0.1027387006 0.1)
(0.3039069628 0.1076749407 0.1)
(0.2984107212 0.1073205951 0.1)
(0.309339282 0.1074810471 0.1)
(0.4594346437 -0.07340930258 0.1)
(0.4600005581 -0.06745060136 0.1)
(0.4604847269 -0.06224306053 0.1)
(0.4551641064 -0.0615055614 0.1)
(0.4498412727 -0.06077026725 0.1)
(0.4711230322 -0.06373887658 0.1)
(0.4658014087 -0.06299053845 0.1)
(0.4380778043 -0.0708494049 0.1)
(0.4386770678 -0.06463951037 0.1)
(0.4391787519 -0.05929731181 0.1)
(0.4338878573 -0.05855333119 0.1)
(0.4288443158 -0.05783862748 0.1)
(0.4445144746 -0.0600344044 0.1)
(0.5021206397 -0.07875169242 0.1)
(0.5026259738 -0.07321861473 0.1)
(0.5030880472 -0.06818427332 0.1)
(0.4977662461 -0.06744867326 0.1)
(0.4924404807 -0.06671250451 0.1)
(0.5137180007 -0.06967268614 0.1)
(0.5084024624 -0.06892370744 0.1)
(0.4807742471 -0.07609002462 0.1)
(0.4813087175 -0.07035115862 0.1)
(0.4817801916 -0.06523714496 0.1)
(0.4764486386 -0.06448758426 0.1)
(0.4871127423 -0.06597595185 0.1)
(0.3639167616 -0.05388649866 0.1)
(0.369242871 -0.05460813704 0.1)
(0.3697106906 -0.04951186163 0.1)
(0.364388596 -0.04876860168 0.1)
(0.3735320377 -0.06658169788 0.1)
(0.3740511844 -0.06094304476 0.1)
(0.3585925145 -0.05316643907 0.1)
(0.359066409 -0.04802633746 0.1)
(0.4065347083 -0.05956182561 0.1)
(0.4119043927 -0.05997617552 0.1)
(0.4122345019 -0.05548737568 0.1)
(0.4069636788 -0.05474355004 0.1)
(0.4164336489 -0.07024964634 0.1)
(0.416938595 -0.0647207507 0.1)
(0.3949014732 -0.06898418606 0.1)
(0.3953857854 -0.06360191121 0.1)
(0.4011969481 -0.05892246274 0.1)
(0.4016413091 -0.05399243106 0.1)
(0.5062531704 0.06400815534 0.1)
(0.5007842087 0.06418596537 0.1)
(0.4998329052 0.05827336546 0.1)
(0.5117902392 0.06407730942 0.1)
(0.4536879536 0.08096530829 0.1)
(0.4531633582 0.07527875369 0.1)
(0.4527019563 0.07018670345 0.1)
(0.457903286 0.06893201316 0.1)
(0.4630553223 0.06765478044 0.1)
(0.4475183002 0.07143704235 0.1)
(0.4750346275 0.07832832006 0.1)
(0.4744193244 0.07228110307 0.1)
(0.4679953383 0.0664196151 0.1)
(0.6305772219 -0.09127299271 0.1)
(0.6300960538 -0.09665385199 0.1)
(0.6296128461 -0.1020458706 0.1)
(0.6349628094 -0.1026078298 0.1)
(0.6403284731 -0.1030763399 0.1)
(0.624270478 -0.1014453481 0.1)
(0.6310236892 -0.08632025854 0.1)
(0.609798967 -0.08323481895 0.1)
(0.6520747963 -0.09287891237 0.1)
(0.6518236697 -0.08937241607 0.1)
(0.6516501179 -0.09786741247 0.1)
(0.651150635 -0.1033698999 0.1)
(0.6565963733 -0.103245974 0.1)
(0.6457206607 -0.1033563944 0.1)
(0.5451775171 -0.08126575037 0.1)
(0.547122216 -0.07438819846 0.1)
(0.5398481913 -0.0733589867 0.1)
(0.5349532415 -0.07266640523 0.1)
(0.5234527904 -0.0813503751 0.1)
(0.5239215367 -0.07608174822 0.1)
(0.5243629619 -0.07117253434 0.1)
(0.5190404905 -0.07042251067 0.1)
(0.5296854517 -0.07192235888 0.1)
(0.5880321238 -0.08538619147 0.1)
(0.5885079657 -0.0802359263 0.1)
(0.5667229687 -0.08248554183 0.1)
(0.5672146886 -0.07722908942 0.1)
(0.6422068651 0.01591882352 0.1)
(0.6431684933 0.02182363628 0.1)
(0.6438186641 0.02791110416 0.1)
(0.6385007937 0.02861329823 0.1)
(0.6332038416 0.02935693701 0.1)
(0.654650162 0.0271553048 0.1)
(0.6492149129 0.02745833581 0.1)
(0.6223286278 0.02989052474 0.1)
(0.6169204879 0.03025842871 0.1)
(0.6159703506 0.02436922111 0.1)
(0.6203648522 0.02295890401 0.1)
(0.6278206737 0.02979915174 0.1)
(0.8100776312 -0.04527249683 0.1)
(0.8109828176 -0.03955386593 0.1)
(0.8115605707 -0.03370570115 0.1)
(0.8062874229 -0.03295445902 0.1)
(0.8223137431 -0.03469953239 0.1)
(0.8169059615 -0.03428446984 0.1)
(0.8067851499 -0.1132749426 0.1)
(0.8014881113 -0.1124023443 0.1)
(0.8120854435 -0.1141449304 0.1)
(0.7957506579 -0.1165579622 0.1)
(0.796203934 -0.1115318432 0.1)
(0.8276357299 -0.1211397567 0.1)
(0.827935406 -0.1167408297 0.1)
(0.8226862063 -0.1158830142 0.1)
(0.8173858203 -0.1150140221 0.1)
(0.7163269461 -0.09907725022 0.1)
(0.7158734247 -0.1040843653 0.1)
(0.7153670354 -0.1096396404 0.1)
(0.7206951843 -0.1103501195 0.1)
(0.7260247725 -0.1110559115 0.1)
(0.7100390434 -0.1089274686 0.1)
(0.7375783622 -0.1022971309 0.1)
(0.7371402465 -0.1071598517 0.1)
(0.736679821 -0.1124037415 0.1)
(0.7420070859 -0.1129613853 0.1)
(0.7313545936 -0.111748368 0.1)
(0.9650531918 -0.1551628625 0.1)
(0.9777238108 -0.1078452768 0.1)
(0.9772727149 -0.1133891112 0.1)
(0.9766566795 -0.1186215762 0.1)
(0.9725623962 -0.1164109722 0.1)
(0.9570585814 -0.09956310134 0.1)
(0.9575010267 -0.09398261092 0.1)
(0.9521248287 -0.09344362625 0.1)
(0.9467913647 -0.09285537887 0.1)
(0.8813291908 -0.1255795101 0.1)
(0.9360590774 -0.09187458285 0.1)
(0.9307585747 -0.09123415746 0.1)
(0.9300765117 -0.09653963469 0.1)
(0.9342504287 -0.09844398589 0.1)
(0.9254937424 -0.09050153317 0.1)
(0.9258455839 -0.09461111318 0.1)
(0.9414411089 -0.09232904498 0.1)
(0.918608977 -0.09134931029 0.1)
(0.9125607677 -0.1308183415 0.1)
(-0.900345 -0.871003 0.1)
(-0.900294 -0.916832 0.1)
(-0.900437 -0.733512 0.1)
(-0.900417 -0.779343 0.1)
(-0.8576 -0.779366 0.1)
(-1.02885 -0.779272 0.1)
(-0.986042 -0.779296 0.1)
(-0.90049 -0.687683 0.1)
(-0.90058 -0.550192 0.1)
(-0.900562 -0.596024 0.1)
(-0.857768 -0.596049 0.1)
(-1.02893 -0.595946 0.1)
(-0.986143 -0.595973 0.1)
(-0.900632 -0.504364 0.1)
(-0.9008390493 -0.366385415 0.1)
(-0.9007133624 -0.412649606 0.1)
(-0.8583723207 -0.4112939124 0.1)
(-1.029 -0.41262 0.1)
(-0.986235 -0.412648 0.1)
(-0.901044006 -0.3198075174 0.1)
(-0.9013670196 -0.1793636671 0.1)
(-0.9013392939 -0.2261842294 0.1)
(-0.8593790032 -0.2216999932 0.1)
(-1.02906 -0.229292 0.1)
(-0.986305 -0.229321 0.1)
(-0.9013497192 -0.1326712073 0.1)
(-0.9008558417 0.006073930287 0.1)
(-0.9010733472 -0.0399104167 0.1)
(-0.8585392299 -0.03402124504 0.1)
(-1.02908 -0.0459608 0.1)
(-0.9863419175 -0.04588143376 0.1)
(-0.9006696933 0.05176205081 0.1)
(-0.9002651139 0.1873232186 0.1)
(-0.9003536944 0.1423449384 0.1)
(-0.8570436159 0.1477668395 0.1)
(-1.02908 0.137373 0.1)
(-0.9863259146 0.1373553307 0.1)
(-0.9002859455 0.2321709404 0.1)
(-0.9005802358 0.3669614586 0.1)
(-0.900472399 0.3218790035 0.1)
(-0.8569655825 0.3250074882 0.1)
(-1.02904 0.32071 0.1)
(-0.986274 0.320682 0.1)
(-0.9006806807 0.4123556144 0.1)
(-0.90058 0.549808 0.1)
(-0.900633 0.503969 0.1)
(-0.8578445895 0.5039604443 0.1)
(-1.02897 0.50405 0.1)
(-0.986191 0.504023 0.1)
(-0.900563 0.595643 0.1)
(-0.900437 0.733155 0.1)
(-0.90049 0.687316 0.1)
(-0.857685 0.687292 0.1)
(-1.02889 0.687391 0.1)
(-0.986093 0.687366 0.1)
(-0.900417 0.77899 0.1)
(-0.900295 0.916502 0.1)
(-0.900346 0.870664 0.1)
(-0.857517 0.870642 0.1)
(-1.02881 0.870732 0.1)
(-0.985992 0.870709 0.1)
(-0.729005 -0.871089 0.1)
(-0.72894 -0.916916 0.1)
(-0.729173 -0.733605 0.1)
(-0.729122 -0.779433 0.1)
(-0.686286 -0.779455 0.1)
(-0.814778 -0.779389 0.1)
(-0.729242 -0.687778 0.1)
(-0.7313120549 -0.5461153083 0.1)
(-0.7302985132 -0.5942266598 0.1)
(-0.6888201866 -0.5916933197 0.1)
(-0.814971 -0.596074 0.1)
(-0.7324431767 -0.4973442129 0.1)
(-0.7350613977 -0.3488681294 0.1)
(-0.734420799 -0.3985388621 0.1)
(-0.6938928166 -0.3924886869 0.1)
(-0.8165823032 -0.4082809569 0.1)
(-0.7354067333 -0.2992562359 0.1)
(-0.7343938031 -0.1521458622 0.1)
(-0.7350609975 -0.2007735413 0.1)
(-0.6939377781 -0.1926848946 0.1)
(-0.8177174576 -0.2157003208 0.1)
(-0.7334726125 -0.1040601353 0.1)
(-0.7296615628 0.03642805129 0.1)
(-0.7310359892 -0.009738089412 0.1)
(-0.6884974281 -0.0009602499782 0.1)
(-0.8160382046 -0.02672845835 0.1)
(-0.7283097473 0.08190729285 0.1)
(-0.7249602864 0.2144715731 0.1)
(-0.7258919507 0.1708911383 0.1)
(-0.6818448114 0.1793984249 0.1)
(-0.8135195166 0.1546246393 0.1)
(-0.7243141931 0.2575188995 0.1)
(-0.724200905 0.384489867 0.1)
(-0.7239268042 0.3424108253 0.1)
(-0.6789009262 0.349598704 0.1)
(-0.8130142093 0.3297219767 0.1)
(-0.7247843784 0.4265087909 0.1)
(-0.7275279617 0.5539474895 0.1)
(-0.7265451215 0.5110580058 0.1)
(-0.6817267884 0.5155071432 0.1)
(-0.814659889 0.5049851242 0.1)
(-0.7284286173 0.5974888856 0.1)
(-0.729175 0.733074 0.1)
(-0.729243 0.687221 0.1)
(-0.6861571281 0.687682648 0.1)
(-0.814875 0.687268 0.1)
(-0.729129 0.778979 0.1)
(-0.72839 0.918285 0.1)
(-0.728927 0.871522 0.1)
(-0.685475 0.872713 0.1)
(-0.814686 0.87063 0.1)
(-0.557431 -0.871881 0.1)
(-0.55714 -0.918199 0.1)
(-0.5598977941 -0.7307438946 0.1)
(-0.5583498256 -0.7787803264 0.1)
(-0.5162505444 -0.7783514048 0.1)
(-0.643444 -0.779476 0.1)
(-0.5620195394 -0.6816139091 0.1)
(-0.5691973833 -0.5291533866 0.1)
(-0.5669063006 -0.5806112191 0.1)
(-0.5267888537 -0.5765780253 0.1)
(-0.6478242916 -0.5884088975 0.1)
(-0.5711423606 -0.4773594675 0.1)
(-0.573665723 -0.3220985196 0.1)
(-0.5734457589 -0.3736342094 0.1)
(-0.5333849807 -0.3680828828 0.1)
(-0.6536139352 -0.386111226 0.1)
(-0.5732603527 -0.2710071407 0.1)
(-0.5686440127 -0.121447887 0.1)
(-0.5706806381 -0.1706055216 0.1)
(-0.5294710998 -0.1650350514 0.1)
(-0.6528687522 -0.1847223142 0.1)
(-0.5662417112 -0.07304210592 0.1)
(-0.5577234259 0.06761403966 0.1)
(-0.5606820023 0.02148634326 0.1)
(-0.5180401782 0.0265708881 0.1)
(-0.6459233516 0.007420738377 0.1)
(-0.5547916733 0.11298912 0.1)
(-0.5470403217 0.2446815263 0.1)
(-0.5493542124 0.2015151268 0.1)
(-0.50528387 0.2066769536 0.1)
(-0.6376999236 0.1875840478 0.1)
(-0.5451338549 0.2871384687 0.1)
(-0.5425036309 0.4107491754 0.1)
(-0.5428090773 0.3701003216 0.1)
(-0.4974103352 0.375594489 0.1)
(-0.6336482203 0.356837504 0.1)
(-0.5428167674 0.4509837997 0.1)
(-0.5470593583 0.5710398583 0.1)
(-0.5451580051 0.5308531868 0.1)
(-0.4992731023 0.5360014422 0.1)
(-0.636495679 0.5204821225 0.1)
(-0.5492538119 0.6118669256 0.1)
(-0.553783718 0.7398606162 0.1)
(-0.5525887125 0.6967509203 0.1)
(-0.5065621787 0.7006098259 0.1)
(-0.6425253113 0.6892736827 0.1)
(-0.5550329871 0.7834971445 0.1)
(-0.555747 0.919642 0.1)
(-0.555785 0.873881 0.1)
(-0.512818 0.874046 0.1)
(-0.641892 0.873428 0.1)
(-0.3846220078 -0.873493846 0.1)
(-0.383446713 -0.920375279 0.1)
(-0.3937499626 -0.7253637737 0.1)
(-0.3900723307 -0.7758614215 0.1)
(-0.3489880357 -0.7743117432 0.1)
(-0.4738158276 -0.7783365189 0.1)
(-0.3976467841 -0.6739896161 0.1)
(-0.4088102977 -0.5154460541 0.1)
(-0.4055426616 -0.5689173849 0.1)
(-0.3642371565 -0.5672501324 0.1)
(-0.4867554545 -0.5728501615 0.1)
(-0.4110489594 -0.4619845607 0.1)
(-0.4116569593 -0.3056471396 0.1)
(-0.4124040099 -0.3569477316 0.1)
(-0.3714552238 -0.3562288703 0.1)
(-0.4932399125 -0.3632796113 0.1)
(-0.4101004499 -0.2551213136 0.1)
(-0.4016729052 -0.1083444899 0.1)
(-0.4049842391 -0.1564109015 0.1)
(-0.3631091317 -0.1566844313 0.1)
(-0.4881365386 -0.1607367706 0.1)
(-0.3980410167 -0.06100119146 0.1)
(-0.3861304616 0.07786752019 0.1)
(-0.3901931219 0.03201527657 0.1)
(-0.3476221529 0.03046959546 0.1)
(-0.4754042122 0.03007895925 0.1)
(-0.3820682623 0.1233365504 0.1)
(-0.3705319416 0.2576218856 0.1)
(-0.374186882 0.2131568865 0.1)
(-0.330967465 0.2125942349 0.1)
(-0.4613645233 0.2103685776 0.1)
(-0.3672006404 0.3015888817 0.1)
(-0.3604124117 0.4287555981 0.1)
(-0.3619886449 0.3871283967 0.1)
(-0.3173776644 0.388399857 0.1)
(-0.4521513142 0.3802333116 0.1)
(-0.3593561186 0.4702549521 0.1)
(-0.3602016945 0.5915548866 0.1)
(-0.35865321 0.5519479242 0.1)
(-0.3124721731 0.5546389053 0.1)
(-0.4531865082 0.5414905319 0.1)
(-0.36275496 0.6308810913 0.1)
(-0.3732260479 0.7501178039 0.1)
(-0.3695069637 0.7099252005 0.1)
(-0.3238096656 0.712380245 0.1)
(-0.4608738639 0.7039636915 0.1)
(-0.3768179849 0.7910702949 0.1)
(-0.3836428038 0.9204362643 0.1)
(-0.3823526522 0.8760601951 0.1)
(-0.3382971195 0.8771255223 0.1)
(-0.4696648032 0.8744085602 0.1)
(-0.2163094502 -0.8712168985 0.1)
(-0.2132118653 -0.9194804571 0.1)
(-0.2303129072 -0.7198551348 0.1)
(-0.2254604223 -0.7710797344 0.1)
(-0.1836307018 -0.770900927 0.1)
(-0.3079266164 -0.7729446496 0.1)
(-0.2349443613 -0.6680809098 0.1)
(-0.2445317903 -0.5119722867 0.1)
(-0.2422648391 -0.5638857172 0.1)
(-0.2010946057 -0.5640972385 0.1)
(-0.3236546852 -0.5655180892 0.1)
(-0.2457095778 -0.4605126628 0.1)
(-0.2437930595 -0.3099339524 0.1)
(-0.2451118024 -0.3595438008 0.1)
(-0.2030092053 -0.3614586186 0.1)
(-0.3296038787 -0.356808771 0.1)
(-0.2416336826 -0.2613004163 0.1)
(-0.2319126128 -0.1197006112 0.1)
(-0.2355365117 -0.1663446765 0.1)
(-0.1919591372 -0.1716830195 0.1)
(-0.32093255 -0.1588157462 0.1)
(-0.2280575629 -0.07326918957 0.1)
(-0.1944672123 0.06310259843 0.1)
(-0.1965751811 0.04027469844 0.1)
(-0.3050641688 0.02739034551 0.1)
(-0.1923403222 0.08605866248 0.1)
(-0.1974955133 0.2511598012 0.1)
(-0.2022983684 0.2046877688 0.1)
(-0.1591432168 0.2018798751 0.1)
(-0.2879467757 0.2109114633 0.1)
(-0.1924464508 0.2976504097 0.1)
(-0.1795206997 0.4317939491 0.1)
(-0.1826695723 0.3883416952 0.1)
(-0.2726678385 0.3892422071 0.1)
(-0.1774980771 0.4742883869 0.1)
(-0.1778621082 0.5973212065 0.1)
(-0.1766389168 0.5569316325 0.1)
(-0.1319941643 0.5561068803 0.1)
(-0.2668388729 0.5562830505 0.1)
(-0.1801511258 0.6373033256 0.1)
(-0.1918568738 0.7565492554 0.1)
(-0.1872014275 0.7168842714 0.1)
(-0.1418141023 0.7173329465 0.1)
(-0.2782099118 0.7143631645 0.1)
(-0.1963141946 0.7971656974 0.1)
(-0.2080240714 0.9233062048 0.1)
(-0.2047595433 0.8803555446 0.1)
(-0.1603084816 0.8812362325 0.1)
(-0.2938876142 0.8782911186 0.1)
(-0.04750884577 -0.8704138279 0.1)
(-0.04322082433 -0.9188890477 0.1)
(-0.06323682045 -0.7206215424 0.1)
(-0.05793857531 -0.7711256999 0.1)
(-0.01544217809 -0.7718520545 0.1)
(-0.1421692208 -0.770568508 0.1)
(-0.06807710891 -0.6698066151 0.1)
(-0.07705898977 -0.5176921748 0.1)
(-0.07518267218 -0.5681176311 0.1)
(-0.03277890408 -0.570173167 0.1)
(-0.1591725401 -0.5653258248 0.1)
(-0.07778584944 -0.467803577 0.1)
(-0.07296870108 -0.3229674076 0.1)
(-0.07579339842 -0.3702487015 0.1)
(-0.03257763939 -0.3738145337 0.1)
(-0.1608607082 -0.3639160452 0.1)
(-0.06934745737 -0.2766770804 0.1)
(-0.03766848384 -0.1650216613 0.1)
(-0.148101781 -0.1768267759 0.1)
(-0.1010480857 -0.1356115656 0.1)
(-0.09936346753 -0.1126098289 0.1)
(-0.121045174 -0.110301896 0.1)
(-0.1228808774 -0.1332152969 0.1)
(-0.1171138899 -0.03886738829 0.1)
(-0.1186932577 -0.06263331664 0.1)
(-0.09638963492 -0.06606852622 0.1)
(-0.1813541113 -0.0316961919 0.1)
(-0.1832445385 -0.05512363548 0.1)
(-0.1618956338 -0.05727113644 0.1)
(-0.1599144903 -0.03427311014 0.1)
(-0.08547237521 0.07875132475 0.1)
(-0.1070455414 0.07972653062 0.1)
(-0.1093559782 0.05548495686 0.1)
(-0.09930050154 0.1509385533 0.1)
(-0.1019767358 0.1273547377 0.1)
(-0.1641090701 0.1550582061 0.1)
(-0.166447224 0.1317626899 0.1)
(-0.1450815324 0.1300450766 0.1)
(-0.142640535 0.1535181509 0.1)
(-0.06368984281 0.2654492856 0.1)
(-0.08530556071 0.2672680301 0.1)
(-0.08790044653 0.2443336767 0.1)
(-0.05702379519 0.3336902849 0.1)
(-0.1000466076 0.3374309415 0.1)
(-0.0829761016 0.290069336 0.1)
(-0.06146667245 0.2881971826 0.1)
(-0.1432962512 0.3409388378 0.1)
(-0.00162604918 0.4646405002 0.1)
(0.001278625394 0.5928564588 0.1)
(0.001615120944 0.5507742298 0.1)
(0.04536390162 0.5480109693 0.1)
(-0.08738791934 0.5547198029 0.1)
(-0.0003642691694 0.6344439996 0.1)
(-0.01187170342 0.7577559084 0.1)
(-0.007132307476 0.7167332762 0.1)
(0.03697800586 0.7154186657 0.1)
(-0.09642488026 0.7177086099 0.1)
(-0.01713559476 0.7989291154 0.1)
(-0.03241164087 0.9252350034 0.1)
(-0.02780057814 0.882497653 0.1)
(0.01610295714 0.8823982927 0.1)
(-0.1159772271 0.8818963193 0.1)
(0.1236678716 -0.8717651248 0.1)
(0.1283488012 -0.9196054466 0.1)
(0.1072631481 -0.7253061493 0.1)
(0.1126984229 -0.7744998988 0.1)
(0.1554270778 -0.7754570479 0.1)
(0.02734684405 -0.7728380143 0.1)
(0.1023739412 -0.6759297181 0.1)
(0.09374709754 -0.5283619969 0.1)
(0.09541771823 -0.5772869664 0.1)
(0.1381816395 -0.579819354 0.1)
(0.009940325403 -0.5725076737 0.1)
(0.09340088219 -0.4799123159 0.1)
(0.09653572688 -0.3849252992 0.1)
(0.1394714233 -0.3886747211 0.1)
(0.01050578312 -0.3774932504 0.1)
(0.05674992075 -0.3346563827 0.1)
(0.06071958428 -0.2889683094 0.1)
(0.06488226621 -0.2435606868 0.1)
(0.04322826188 -0.2415365267 0.1)
(0.02158659014 -0.2395115023 0.1)
(-0.02175903838 -0.2354024469 0.1)
(-3.640511721e-05 -0.2374821849 0.1)
(0.02990589866 -0.1487539443 0.1)
(0.03194694316 -0.1260715016 0.1)
(0.03393489403 -0.1033811199 0.1)
(0.02303969297 -0.1023290683 0.1)
(0.01204973183 -0.1012310659 0.1)
(-0.00979721834 -0.09907150143 0.1)
(0.1099511346 0.2502755852 0.1)
(0.08827336645 0.2522276323 0.1)
(0.1163980485 0.3182968896 0.1)
(0.09480305063 0.3202794203 0.1)
(0.09259810498 0.2975850687 0.1)
(0.1142311949 0.2956190896 0.1)
(0.02985562414 0.3261336195 0.1)
(0.02763480218 0.3034246722 0.1)
(0.04939109983 0.3015075193 0.1)
(0.05159758114 0.3242097629 0.1)
(0.1720433995 0.4500466207 0.1)
(0.1765375555 0.5818683804 0.1)
(0.1763034955 0.5383927248 0.1)
(0.2194426966 0.5348162813 0.1)
(0.08891026615 0.5448784158 0.1)
(0.1754238331 0.624977899 0.1)
(0.1647645946 0.7530153 0.1)
(0.1693759001 0.7104469464 0.1)
(0.2126887532 0.708258203 0.1)
(0.08080881027 0.713736864 0.1)
(0.1594445634 0.7956315555 0.1)
(0.1429267681 0.9249325192 0.1)
(0.1481217746 0.8814699465 0.1)
(0.191408576 0.8807589805 0.1)
(0.06057608921 0.8823496813 0.1)
(0.2950341545 -0.8734348138 0.1)
(0.2999304729 -0.9203826418 0.1)
(0.2783202192 -0.7310030655 0.1)
(0.2838061897 -0.7786855062 0.1)
(0.3265743752 -0.7798254614 0.1)
(0.1982217838 -0.7764930283 0.1)
(0.2734233543 -0.6832224837 0.1)
(0.2649662972 -0.5403029686 0.1)
(0.2665541384 -0.5877690074 0.1)
(0.309311461 -0.5904777215 0.1)
(0.1809849147 -0.5824307955 0.1)
(0.2647221992 -0.4931385139 0.1)
(0.2680990732 -0.3999987238 0.1)
(0.3109225174 -0.4037823303 0.1)
(0.1823827496 -0.3924430596 0.1)
(0.2285793381 -0.3502239957 0.1)
(0.2326665716 -0.3047270126 0.1)
(0.236867242 -0.2593440048 0.1)
(0.2154145053 -0.2573847162 0.1)
(0.1939598695 -0.2554242472 0.1)
(0.1509936774 -0.2514889892 0.1)
(0.1724875878 -0.253459128 0.1)
(0.2023469007 -0.1647583377 0.1)
(0.2044404866 -0.1421179288 0.1)
(0.2065349553 -0.1194896533 0.1)
(0.1957926297 -0.1184979834 0.1)
(0.185054287 -0.117506683 0.1)
(0.1635668333 -0.1155210746 0.1)
(0.1743100623 -0.1165138326 0.1)
(0.2829190979 0.2342745227 0.1)
(0.2613322259 0.2363035014 0.1)
(0.2592294218 0.2136719821 0.1)
(0.2892229626 0.3022066614 0.1)
(0.2676459759 0.3042447659 0.1)
(0.2655412317 0.2815923364 0.1)
(0.2871214827 0.279556942 0.1)
(0.2028544512 0.3103124752 0.1)
(0.2007358388 0.2876512895 0.1)
(0.222339402 0.2856398437 0.1)
(0.2244527587 0.3082985042 0.1)
(0.3445241033 0.4340117256 0.1)
(0.3494685711 0.5683939114 0.1)
(0.3490547753 0.5237884096 0.1)
(0.3919759183 0.5200039252 0.1)
(0.2627639778 0.5312312552 0.1)
(0.3485362718 0.6128453003 0.1)
(0.3382768002 0.7456292177 0.1)
(0.3427908845 0.7014188605 0.1)
(0.3855900075 0.6989853171 0.1)
(0.2563262815 0.7061135097 0.1)
(0.3330062647 0.7898314953 0.1)
(0.3163151213 0.9230416773 0.1)
(0.3216129649 0.8784784197 0.1)
(0.3644605547 0.8775807425 0.1)
(0.2350734807 0.8801108362 0.1)
(0.4661815814 -0.8755083525 0.1)
(0.47127543 -0.9214585902 0.1)
(0.4491755696 -0.7372667023 0.1)
(0.4547136209 -0.7834073517 0.1)
(0.4974364624 -0.7846733823 0.1)
(0.369283683 -0.7809841142 0.1)
(0.4442664937 -0.6910887551 0.1)
(0.4359509131 -0.5526784182 0.1)
(0.4374669039 -0.598756878 0.1)
(0.4801977235 -0.6015832112 0.1)
(0.3520224193 -0.5932038391 0.1)
(0.4357967955 -0.506705862 0.1)
(0.439395528 -0.4151759557 0.1)
(0.4822345629 -0.4189913775 0.1)
(0.3537328237 -0.4075710192 0.1)
(0.3999960672 -0.3657515318 0.1)
(0.4041377724 -0.3203260775 0.1)
(0.4083350655 -0.2749578208 0.1)
(0.386893446 -0.2730086024 0.1)
(0.3654568975 -0.2710588501 0.1)
(0.3226078826 -0.2671595715 0.1)
(0.3440273191 -0.2691097446 0.1)
(0.3738291265 -0.1804658851 0.1)
(0.3759168613 -0.1578560665 0.1)
(0.3652006811 -0.1568748567 0.1)
(0.3662440866 -0.145574926 0.1)
(0.3769590862 -0.1465580348 0.1)
(0.3341220816 -0.1426267287 0.1)
(0.3448201539 -0.143608267 0.1)
(0.4553125966 0.2178025181 0.1)
(0.4338185936 0.2198690778 0.1)
(0.4615266306 0.2856757037 0.1)
(0.4400360768 0.2877469648 0.1)
(0.4379659468 0.2651104054 0.1)
(0.4594555973 0.2630402324 0.1)
(0.3754796144 0.2939776549 0.1)
(0.3733969814 0.2713362298 0.1)
(0.3949180537 0.2692691671 0.1)
(0.3969985104 0.2919087856 0.1)
(0.5162268047 0.4175999953 0.1)
(0.5204901251 0.5544600175 0.1)
(0.5202897459 0.5087566315 0.1)
(0.5628605747 0.5050973579 0.1)
(0.4348443167 0.5162502034 0.1)
(0.5193658378 0.6002284559 0.1)
(0.5087646497 0.7377370924 0.1)
(0.5133223892 0.6919088038 0.1)
(0.5556213191 0.6896769831 0.1)
(0.4284312671 0.696625274 0.1)
(0.5035217661 0.7835508186 0.1)
(0.487422631 0.9207604993 0.1)
(0.4924331631 0.8750454309 0.1)
(0.5348473394 0.8742921542 0.1)
(0.4074026991 0.8767402252 0.1)
(0.6370460975 -0.8780560555 0.1)
(0.6423645659 -0.9229179866 0.1)
(0.6197643614 -0.7441523874 0.1)
(0.6253325782 -0.7887263281 0.1)
(0.6681403014 -0.7901257502 0.1)
(0.5401403847 -0.7859761194 0.1)
(0.6148756887 -0.6995762325 0.1)
(0.6068365214 -0.5655190892 0.1)
(0.6082328796 -0.610285531 0.1)
(0.6509708848 -0.6132484343 0.1)
(0.5229135613 -0.6044439936 0.1)
(0.6068203138 -0.5206423431 0.1)
(0.610716474 -0.4304780084 0.1)
(0.6535287556 -0.4343335532 0.1)
(0.5250693517 -0.4228134447 0.1)
(0.5714789924 -0.381278521 0.1)
(0.5756674949 -0.3358572587 0.1)
(0.5798660609 -0.2904861072 0.1)
(0.5584281266 -0.2885512908 0.1)
(0.5369853985 -0.286614021 0.1)
(0.4941053828 -0.2827349648 0.1)
(0.5155438508 -0.2846748522 0.1)
(0.5453469004 -0.1960933743 0.1)
(0.5474289484 -0.1735231998 0.1)
(0.536708231 -0.1725475949 0.1)
(0.5377473354 -0.1612723725 0.1)
(0.5484679604 -0.1622489731 0.1)
(0.5055949763 -0.1583374276 0.1)
(0.5163114336 -0.1593156502 0.1)
(0.6270688433 0.2009567877 0.1)
(0.6056083765 0.2030925451 0.1)
(0.6331985694 0.2688197182 0.1)
(0.6117607066 0.2709393182 0.1)
(0.6097113226 0.2483098726 0.1)
(0.6311618321 0.2461750391 0.1)
(0.547381842 0.277298149 0.1)
(0.5453204169 0.2546688162 0.1)
(0.5667823823 0.2525600358 0.1)
(0.5688371145 0.2751930024 0.1)
(0.687079089 0.4014145591 0.1)
(0.6899778937 0.5415063808 0.1)
(0.6902284939 0.4944978183 0.1)
(0.7323588427 0.4912477051 0.1)
(0.6052851596 0.5014933523 0.1)
(0.6884700266 0.5887654782 0.1)
(0.677322244 0.7310581454 0.1)
(0.6819548423 0.6836163197 0.1)
(0.7239924815 0.681832365 0.1)
(0.5979610173 0.6875141405 0.1)
(0.6721548745 0.7783763253 0.1)
(0.6572968032 0.9190856753 0.1)
(0.6617092143 0.872419802 0.1)
(0.7041477516 0.8719016001 0.1)
(0.5773989107 0.8735798265 0.1)
(0.8076009942 -0.8812571887 0.1)
(0.8131743052 -0.9249147805 0.1)
(0.7900090557 -0.7518710331 0.1)
(0.7956103757 -0.7948497864 0.1)
(0.8388730194 -0.7962133349 0.1)
(0.7107571591 -0.7916070404 0.1)
(0.7851484905 -0.7088938139 0.1)
(0.7774770968 -0.5789931463 0.1)
(0.7787132729 -0.6225432399 0.1)
(0.8214423276 -0.6256697724 0.1)
(0.6936236517 -0.616273005 0.1)
(0.7776485844 -0.535091374 0.1)
(0.781961836 -0.4459895863 0.1)
(0.8247817501 -0.4499107793 0.1)
(0.6963513905 -0.438201059 0.1)
(0.7429238696 -0.3968078892 0.1)
(0.7471285021 -0.3513388796 0.1)
(0.7256949203 -0.3494004499 0.1)
(0.7513278687 -0.3059266263 0.1)
(0.7298915564 -0.3039959776 0.1)
(0.7277940698 -0.3266892522 0.1)
(0.7492290169 -0.3286237915 0.1)
(0.6655911188 -0.2982098415 0.1)
(0.706367807 -0.3247585316 0.1)
(0.7084670079 -0.3020684289 0.1)
(0.6870285193 -0.3001395869 0.1)
(0.7168175159 -0.2115688566 0.1)
(0.718896587 -0.1890415906 0.1)
(0.70817395 -0.1880758505 0.1)
(0.7092072034 -0.1768312184 0.1)
(0.7199307436 -0.1777980466 0.1)
(0.6770492703 -0.1739238767 0.1)
(0.6877625762 -0.1748927682 0.1)
(0.7983775698 0.1835741051 0.1)
(0.7769850687 0.1857929387 0.1)
(0.8044912206 0.2514586129 0.1)
(0.7617105094 0.2558667576 0.1)
(0.7576201485 0.2106010606 0.1)
(0.7790238078 0.2083942474 0.1)
(0.8004135065 0.2061776824 0.1)
(0.7188900514 0.2602253624 0.1)
(0.7147982534 0.2149658245 0.1)
(0.7362168896 0.2127797163 0.1)
(0.8571215677 0.3862275578 0.1)
(0.8580618954 0.53078809 0.1)
(0.8589481371 0.4820901734 0.1)
(0.9011029573 0.4792754716 0.1)
(0.774784228 0.4879620387 0.1)
(0.8563274774 0.5795008484 0.1)
(0.8446714801 0.7264729787 0.1)
(0.8492943707 0.677574365 0.1)
(0.8907837142 0.6766054926 0.1)
(0.765631392 0.6803173488 0.1)
(0.8397243465 0.7750413607 0.1)
(0.8269738105 0.9182412817 0.1)
(0.8304574214 0.8710197588 0.1)
(0.8724107155 0.8709512692 0.1)
(0.7459559897 0.871603865 0.1)
(0.9786367597 -0.883693426 0.1)
(0.9844928944 -0.9259974835 0.1)
(0.9607602142 -0.7590593013 0.1)
(0.966367717 -0.8004025707 0.1)
(1.008628748 -0.7991700678 0.1)
(0.8807268888 -0.7982309777 0.1)
(0.9559724195 -0.7176786026 0.1)
(0.9488926497 -0.5916801796 0.1)
(0.9498786033 -0.6341375344 0.1)
(0.9923084108 -0.6343074116 0.1)
(0.8641506413 -0.628847633 0.1)
(0.9493495088 -0.5485932601 0.1)
(0.9542955462 -0.460136554 0.1)
(0.9969076977 -0.4608204597 0.1)
(0.867593326 -0.4538592279 0.1)
(0.9145075873 -0.4125148103 0.1)
(0.9185911213 -0.3669763159 0.1)
(0.8971420389 -0.3649992891 0.1)
(0.9227902414 -0.3215017734 0.1)
(0.9013456757 -0.3195301871 0.1)
(0.8992440524 -0.342257224 0.1)
(0.9206883409 -0.3442317974 0.1)
(0.8370699977 -0.3136720304 0.1)
(0.8349695753 -0.3363861229 0.1)
(0.8563959818 -0.3383369427 0.1)
(0.8584968661 -0.3156178717 0.1)
(0.8882876692 -0.226951901 0.1)
(0.8893235093 -0.2156793886 0.1)
(0.878612821 -0.2147147571 0.1)
(0.87757617 -0.2259851857 0.1)
(0.8806729632 -0.1922399668 0.1)
(0.8913826558 -0.1932045059 0.1)
(0.8485176273 -0.1893479304 0.1)
(0.8592167364 -0.1903074704 0.1)
(0.9095482579 -0.02174888106 0.1)
(0.8989311639 -0.02046824486 0.1)
(0.9123514817 0.01164656334 0.1)
(0.901731491 0.01291762622 0.1)
(0.9007830937 0.001754101546 0.1)
(0.9114091902 0.0004947245636 0.1)
(0.8795098018 0.004251111753 0.1)
(0.8804555404 0.01539680579 0.1)
(1.013654118 0.1829451079 0.1)
(1.024154505 0.3243741127 0.1)
(1.021286242 0.2761731422 0.1)
(1.063845378 0.2725223937 0.1)
(0.9363351657 0.2842535977 0.1)
(1.026063423 0.3729090427 0.1)
(1.025363789 0.5228173439 0.1)
(1.02681249 0.4724731806 0.1)
(1.068393983 0.4708377485 0.1)
(0.9429758489 0.4768445077 0.1)
(1.022838796 0.5734357885 0.1)
(1.010762223 0.7246433946 0.1)
(1.015279381 0.6746711197 0.1)
(1.057013698 0.6741218387 0.1)
(0.9325562453 0.6756371766 0.1)
(1.006247598 0.774105952 0.1)
(0.9970395685 0.9178175313 0.1)
(0.9992742756 0.8707309629 0.1)
(1.041409096 0.8708314268 0.1)
(0.9148028312 0.8707734138 0.1)
(1.152466712 -0.8825531028 0.1)
(1.157925815 -0.9239626319 0.1)
(1.135254863 -0.761709956 0.1)
(1.140745508 -0.8016560602 0.1)
(1.185586541 -0.8015891665 0.1)
(1.052231498 -0.8003980603 0.1)
(1.130462544 -0.7217890661 0.1)
(1.122618557 -0.6000212158 0.1)
(1.123982316 -0.6411399106 0.1)
(1.168731981 -0.642308208 0.1)
(1.03577122 -0.6370477086 0.1)
(1.122588591 -0.5581566934 0.1)
(1.126291792 -0.4717548232 0.1)
(1.169889194 -0.4746840628 0.1)
(1.03987328 -0.4646760974 0.1)
(1.086738507 -0.4232869703 0.1)
(1.090971121 -0.3776512816 0.1)
(1.095205399 -0.3320142924 0.1)
(1.073767475 -0.3300252451 0.1)
(1.052329551 -0.3280361977 0.1)
(1.050212366 -0.3508551901 0.1)
(1.00946366 -0.3240590268 0.1)
(1.007346475 -0.3468780193 0.1)
(1.028784399 -0.3488670666 0.1)
(1.030901584 -0.3260480742 0.1)
(1.0607982 -0.2367612237 0.1)
(1.062915293 -0.213943227 0.1)
(1.052201309 -0.2129491652 0.1)
(1.065032478 -0.1911242346 0.1)
(1.054318494 -0.1901301728 0.1)
(1.053259948 -0.2015391712 0.1)
(1.063973931 -0.2025332329 0.1)
(1.02110804 -0.198556062 0.1)
(1.031822024 -0.1995501238 0.1)
(1.03288057 -0.1881411254 0.1)
(1.12272841 -0.03537167245 0.1)
(1.101290486 -0.03338262508 0.1)
(1.129079874 0.03308430912 0.1)
(1.10764195 0.03507335649 0.1)
(1.105524792 0.01225466277 0.1)
(1.126962716 0.0102656154 0.1)
(1.062658901 0.01623183366 0.1)
(1.064776059 0.03905052737 0.1)
(1.184445155 0.1670930037 0.1)
(1.193171981 0.3134025829 0.1)
(1.191037015 0.2635798882 0.1)
(1.23339947 0.2616894257 0.1)
(1.105969539 0.2688628918 0.1)
(1.194309884 0.3641266507 0.1)
(1.191176159 0.5196819128 0.1)
(1.193289665 0.4675078374 0.1)
(1.235097115 0.4671708826 0.1)
(1.110238513 0.468981536 0.1)
(1.188580431 0.5713066017 0.1)
(1.177322907 0.7246122427 0.1)
(1.181274901 0.6741115566 0.1)
(1.222425265 0.6753441228 0.1)
(1.09818933 0.6741959807 0.1)
(1.173775449 0.7746639258 0.1)
(1.16818 0.91701 0.1)
(1.168779836 0.8707307902 0.1)
(1.211385355 0.8706044758 0.1)
(1.083868211 0.8707743153 0.1)
(1.331489801 -0.8792071164 0.1)
(1.335465604 -0.9210496906 0.1)
(1.31709823 -0.7588853854 0.1)
(1.321961755 -0.7983593664 0.1)
(1.367798848 -0.7963344354 0.1)
(1.230781909 -0.8010177947 0.1)
(1.312582742 -0.7197143959 0.1)
(1.303428507 -0.6016449672 0.1)
(1.305574109 -0.6413111093 0.1)
(1.351935254 -0.6393033879 0.1)
(1.21393222 -0.6427733532 0.1)
(1.30231512 -0.5614293156 0.1)
(1.305013863 -0.4364144865 0.1)
(1.303180496 -0.4788722855 0.1)
(1.348541658 -0.4781937363 0.1)
(1.213872797 -0.476967712 0.1)
(1.307609814 -0.3931779194 0.1)
(1.318359474 -0.2597005242 0.1)
(1.314439972 -0.3046970042 0.1)
(1.358345427 -0.3059405703 0.1)
(1.228057265 -0.2983106637 0.1)
(1.322447026 -0.2143828682 0.1)
(1.335084441 -0.07718551247 0.1)
(1.330844594 -0.1231239843 0.1)
(1.374081469 -0.1249842591 0.1)
(1.202118686 -0.1117829196 0.1)
(1.244994534 -0.1157610144 0.1)
(1.339314627 -0.0309238566 0.1)
(1.351276477 0.1112986463 0.1)
(1.347510782 0.06317036926 0.1)
(1.390264051 0.06296989816 0.1)
(1.261907292 0.06728911259 0.1)
(1.354639719 0.1602907075 0.1)
(1.360826547 0.312516715 0.1)
(1.359550656 0.2609543598 0.1)
(1.401258293 0.2626844486 0.1)
(1.275618528 0.2605424592 0.1)
(1.361191019 0.3647217515 0.1)
(1.356867593 0.5230474695 0.1)
(1.359138112 0.4702364035 0.1)
(1.400096877 0.4726339496 0.1)
(1.276667558 0.4674967043 0.1)
(1.353985172 0.5755365349 0.1)
(1.344386775 0.7285184493 0.1)
(1.347425543 0.6785043996 0.1)
(1.388958142 0.6800735806 0.1)
(1.264214857 0.6760853594 0.1)
(1.341975352 0.7773051798 0.1)
(1.34028 0.916667 0.1)
(1.34028 0.870833 0.1)
(1.38333 0.870833 0.1)
(1.254196395 0.8708097853 0.1)
(1.510656182 -0.8729661644 0.1)
(1.512148222 -0.9170545526 0.1)
(1.501883817 -0.7476827583 0.1)
(1.505236823 -0.7884705519 0.1)
(1.55067528 -0.7857112837 0.1)
(1.413697855 -0.7939347171 0.1)
(1.498462428 -0.707575153 0.1)
(1.489978151 -0.5890117683 0.1)
(1.492328725 -0.6284634557 0.1)
(1.539215744 -0.6235932814 0.1)
(1.398583904 -0.6364471861 0.1)
(1.488273561 -0.5493610048 0.1)
(1.487517444 -0.4277043214 0.1)
(1.487036959 -0.4688243764 0.1)
(1.533710095 -0.4633956133 0.1)
(1.394358151 -0.4762987966 0.1)
(1.488679778 -0.3859152539 0.1)
(1.495472476 -0.2562899379 0.1)
(1.492749035 -0.3002133761 0.1)
(1.538200105 -0.2951688755 0.1)
(1.402741627 -0.3056448078 0.1)
(1.498524526 -0.2116642768 0.1)
(1.508687056 -0.07359949256 0.1)
(1.505227142 -0.1203251955 0.1)
(1.549271902 -0.1153928937 0.1)
(1.417585345 -0.125171895 0.1)
(1.512090228 -0.02614509304 0.1)
(1.520918959 0.1207709921 0.1)
(1.518313994 0.07103384256 0.1)
(1.560891333 0.07651689986 0.1)
(1.43299464 0.06419331455 0.1)
(1.523043984 0.1712435861 0.1)
(1.525710621 0.3262125923 0.1)
(1.525497388 0.2740881806 0.1)
(1.566693283 0.2796742619 0.1)
(1.442813622 0.2654787516 0.1)
(1.525233324 0.3785734018 0.1)
(1.520397478 0.5348749049 0.1)
(1.522449941 0.4831421175 0.1)
(1.563264525 0.4873121977 0.1)
(1.440937957 0.47565321 0.1)
(1.518157949 0.5859202719 0.1)
(1.512870916 0.7328127911 0.1)
(1.514117349 0.6850731253 0.1)
(1.556273172 0.6863864583 0.1)
(1.430541751 0.6817711602 0.1)
(1.5125 0.779167 0.1)
(1.5125 0.916667 0.1)
(1.5125 0.870833 0.1)
(1.55556 0.870833 0.1)
(1.42639 0.870833 0.1)
(1.68472 -0.870833 0.1)
(1.68472 -0.916667 0.1)
(1.683370919 -0.7354969285 0.1)
(1.684377135 -0.779685818 0.1)
(1.72778 -0.779167 0.1)
(1.595737254 -0.7831839146 0.1)
(1.681915897 -0.692280289 0.1)
(1.676797439 -0.5665760807 0.1)
(1.6784573 -0.6080173709 0.1)
(1.724032063 -0.6034317701 0.1)
(1.58593858 -0.6183929116 0.1)
(1.675366798 -0.5253321288 0.1)
(1.673280439 -0.401025846 0.1)
(1.673556384 -0.4427141386 0.1)
(1.719720926 -0.4353689407 0.1)
(1.580431594 -0.4570595725 0.1)
(1.673444777 -0.3589092852 0.1)
(1.676314578 -0.2290815653 0.1)
(1.675007841 -0.2730085111 0.1)
(1.720419855 -0.2643480028 0.1)
(1.583794595 -0.2887741387 0.1)
(1.677885312 -0.1844426641 0.1)
(1.683374181 -0.04605807023 0.1)
(1.681501384 -0.09293495854 0.1)
(1.725435641 -0.08399325848 0.1)
(1.593367785 -0.1089991751 0.1)
(1.685171755 0.001548048387 0.1)
(1.689281943 0.1482824345 0.1)
(1.688200794 0.09878519351 0.1)
(1.730545892 0.1070845279 0.1)
(1.603389879 0.08315204898 0.1)
(1.689996933 0.1982388862 0.1)
(1.689756419 0.3494689946 0.1)
(1.69022442 0.2989925306 0.1)
(1.731608581 0.3053035328 0.1)
(1.607835002 0.285862823 0.1)
(1.688969195 0.3997640677 0.1)
(1.685822462 0.5475757506 0.1)
(1.686856004 0.499016474 0.1)
(1.7287256 0.5018136772 0.1)
(1.604208252 0.4915055335 0.1)
(1.685043811 0.5951779239 0.1)
(1.68472 0.733333 0.1)
(1.68472 0.6875 0.1)
(1.72778 0.6875 0.1)
(1.598763057 0.6872515833 0.1)
(1.68472 0.779167 0.1)
(1.68472 0.916667 0.1)
(1.68472 0.870833 0.1)
(1.72778 0.870833 0.1)
(1.59861 0.870833 0.1)
(1.85694 -0.870833 0.1)
(1.85694 -0.916667 0.1)
(1.85694 -0.733333 0.1)
(1.85694 -0.779167 0.1)
(1.9 -0.779167 0.1)
(1.77083 -0.779167 0.1)
(1.85694 -0.6875 0.1)
(1.856699619 -0.5505875813 0.1)
(1.856922747 -0.5958719931 0.1)
(1.9 -0.595833 0.1)
(1.769009073 -0.599671119 0.1)
(1.856312778 -0.5058352222 0.1)
(1.855106823 -0.3732777424 0.1)
(1.855443655 -0.4173245451 0.1)
(1.899561866 -0.4139647436 0.1)
(1.765468185 -0.4284196061 0.1)
(1.854896719 -0.3291928328 0.1)
(1.855149084 -0.1956728664 0.1)
(1.854922656 -0.2404772899 0.1)
(1.899047035 -0.234758906 0.1)
(1.76557426 -0.2557326367 0.1)
(1.855488356 -0.1504913594 0.1)
(1.856809047 -0.01244333205 0.1)
(1.856360384 -0.05887805949 0.1)
(1.899724269 -0.05265147641 0.1)
(1.769223048 -0.07502237483 0.1)
(1.857209714 0.03437590298 0.1)
(1.857802891 0.1765077526 0.1)
(1.857728334 0.1289355963 0.1)
(1.900340284 0.133772039 0.1)
(1.772879172 0.115164442 0.1)
(1.857749716 0.2241325125 0.1)
(1.85712164 0.3659780933 0.1)
(1.857358242 0.3190107149 0.1)
(1.900031652 0.3206912039 0.1)
(1.773205078 0.3109802062 0.1)
(1.856961022 0.4124293578 0.1)
(1.85694 0.55 0.1)
(1.85694 0.504167 0.1)
(1.9 0.504167 0.1)
(1.771045368 0.503613675 0.1)
(1.85694 0.595833 0.1)
(1.85694 0.733333 0.1)
(1.85694 0.6875 0.1)
(1.9 0.6875 0.1)
(1.77083 0.6875 0.1)
(1.85694 0.779167 0.1)
(1.85694 0.916667 0.1)
(1.85694 0.870833 0.1)
(1.9 0.870833 0.1)
(1.77083 0.870833 0.1)
(2.02917 -0.870833 0.1)
(2.02917 -0.916667 0.1)
(2.02917 -0.733333 0.1)
(2.02917 -0.779167 0.1)
(2.07222 -0.779167 0.1)
(1.94306 -0.779167 0.1)
(2.02917 -0.6875 0.1)
(2.02917 -0.55 0.1)
(2.02917 -0.595833 0.1)
(2.07222 -0.595833 0.1)
(1.94306 -0.595833 0.1)
(2.02917 -0.504167 0.1)
(2.02917 -0.366667 0.1)
(2.02917 -0.4125 0.1)
(2.07222 -0.4125 0.1)
(1.943051015 -0.4125310241 0.1)
(2.02917 -0.320833 0.1)
(2.02917 -0.183333 0.1)
(2.02917 -0.229167 0.1)
(2.07222 -0.229167 0.1)
(1.942779017 -0.2308830383 0.1)
(2.02917 -0.1375 0.1)
(2.02917 0 0.1)
(2.02917 -0.0458333 0.1)
(2.07222 -0.0458333 0.1)
(1.942969732 -0.04824394208 0.1)
(2.02917 0.0458333 0.1)
(2.02917 0.183333 0.1)
(2.02917 0.1375 0.1)
(2.07222 0.1375 0.1)
(1.94312994 0.1367208961 0.1)
(2.02917 0.229167 0.1)
(2.02917 0.366667 0.1)
(2.02917 0.320833 0.1)
(2.07222 0.320833 0.1)
(1.94306 0.320833 0.1)
(2.02917 0.4125 0.1)
(2.02917 0.55 0.1)
(2.02917 0.504167 0.1)
(2.07222 0.504167 0.1)
(1.94306 0.504167 0.1)
(2.02917 0.595833 0.1)
(2.02917 0.733333 0.1)
(2.02917 0.6875 0.1)
(2.07222 0.6875 0.1)
(1.94306 0.6875 0.1)
(2.02917 0.779167 0.1)
(2.02917 0.916667 0.1)
(2.02917 0.870833 0.1)
(2.07222 0.870833 0.1)
(1.94306 0.870833 0.1)
(2.20139 -0.870833 0.1)
(2.20139 -0.916667 0.1)
(2.20139 -0.733333 0.1)
(2.20139 -0.779167 0.1)
(2.24444 -0.779167 0.1)
(2.11528 -0.779167 0.1)
(2.20139 -0.6875 0.1)
(2.20139 -0.55 0.1)
(2.20139 -0.595833 0.1)
(2.24444 -0.595833 0.1)
(2.11528 -0.595833 0.1)
(2.20139 -0.504167 0.1)
(2.20139 -0.366667 0.1)
(2.20139 -0.4125 0.1)
(2.24444 -0.4125 0.1)
(2.11528 -0.4125 0.1)
(2.20139 -0.320833 0.1)
(2.20139 -0.183333 0.1)
(2.20139 -0.229167 0.1)
(2.24444 -0.229167 0.1)
(2.11528 -0.229167 0.1)
(2.20139 -0.1375 0.1)
(2.20139 0 0.1)
(2.20139 -0.0458333 0.1)
(2.24444 -0.0458333 0.1)
(2.11528 -0.0458333 0.1)
(2.20139 0.0458333 0.1)
(2.20139 0.183333 0.1)
(2.20139 0.1375 0.1)
(2.24444 0.1375 0.1)
(2.11528 0.1375 0.1)
(2.20139 0.229167 0.1)
(2.20139 0.366667 0.1)
(2.20139 0.320833 0.1)
(2.24444 0.320833 0.1)
(2.11528 0.320833 0.1)
(2.20139 0.4125 0.1)
(2.20139 0.55 0.1)
(2.20139 0.504167 0.1)
(2.24444 0.504167 0.1)
(2.11528 0.504167 0.1)
(2.20139 0.595833 0.1)
(2.20139 0.733333 0.1)
(2.20139 0.6875 0.1)
(2.24444 0.6875 0.1)
(2.11528 0.6875 0.1)
(2.20139 0.779167 0.1)
(2.20139 0.916667 0.1)
(2.20139 0.870833 0.1)
(2.24444 0.870833 0.1)
(2.11528 0.870833 0.1)
(2.37361 -0.870833 0.1)
(2.37361 -0.916667 0.1)
(2.37361 -0.733333 0.1)
(2.37361 -0.779167 0.1)
(2.41667 -0.779167 0.1)
(2.2875 -0.779167 0.1)
(2.37361 -0.6875 0.1)
(2.37361 -0.55 0.1)
(2.37361 -0.595833 0.1)
(2.41667 -0.595833 0.1)
(2.2875 -0.595833 0.1)
(2.37361 -0.504167 0.1)
(2.37361 -0.366667 0.1)
(2.37361 -0.4125 0.1)
(2.41667 -0.4125 0.1)
(2.2875 -0.4125 0.1)
(2.37361 -0.320833 0.1)
(2.37361 -0.183333 0.1)
(2.37361 -0.229167 0.1)
(2.41667 -0.229167 0.1)
(2.2875 -0.229167 0.1)
(2.37361 -0.1375 0.1)
(2.37361 -1.38778e-17 0.1)
(2.37361 -0.0458333 0.1)
(2.41667 -0.0458333 0.1)
(2.2875 -0.0458333 0.1)
(2.37361 0.0458333 0.1)
(2.37361 0.183333 0.1)
(2.37361 0.1375 0.1)
(2.41667 0.1375 0.1)
(2.2875 0.1375 0.1)
(2.37361 0.229167 0.1)
(2.37361 0.366667 0.1)
(2.37361 0.320833 0.1)
(2.41667 0.320833 0.1)
(2.2875 0.320833 0.1)
(2.37361 0.4125 0.1)
(2.37361 0.55 0.1)
(2.37361 0.504167 0.1)
(2.41667 0.504167 0.1)
(2.2875 0.504167 0.1)
(2.37361 0.595833 0.1)
(2.37361 0.733333 0.1)
(2.37361 0.6875 0.1)
(2.41667 0.6875 0.1)
(2.2875 0.6875 0.1)
(2.37361 0.779167 0.1)
(2.37361 0.916667 0.1)
(2.37361 0.870833 0.1)
(2.41667 0.870833 0.1)
(2.2875 0.870833 0.1)
(2.54583 -0.870833 0.1)
(2.54583 -0.916667 0.1)
(2.54583 -0.733333 0.1)
(2.54583 -0.779167 0.1)
(2.58889 -0.779167 0.1)
(2.45972 -0.779167 0.1)
(2.54583 -0.6875 0.1)
(2.54583 -0.55 0.1)
(2.54583 -0.595833 0.1)
(2.58889 -0.595833 0.1)
(2.45972 -0.595833 0.1)
(2.54583 -0.504167 0.1)
(2.54583 -0.366667 0.1)
(2.54583 -0.4125 0.1)
(2.58889 -0.4125 0.1)
(2.45972 -0.4125 0.1)
(2.54583 -0.320833 0.1)
(2.54583 -0.183333 0.1)
(2.54583 -0.229167 0.1)
(2.58889 -0.229167 0.1)
(2.45972 -0.229167 0.1)
(2.54583 -0.1375 0.1)
(2.54583 -1.85037e-17 0.1)
(2.54583 -0.0458333 0.1)
(2.58889 -0.0458333 0.1)
(2.45972 -0.0458333 0.1)
(2.54583 0.0458333 0.1)
(2.54583 0.183333 0.1)
(2.54583 0.1375 0.1)
(2.58889 0.1375 0.1)
(2.45972 0.1375 0.1)
(2.54583 0.229167 0.1)
(2.54583 0.366667 0.1)
(2.54583 0.320833 0.1)
(2.58889 0.320833 0.1)
(2.45972 0.320833 0.1)
(2.54583 0.4125 0.1)
(2.54583 0.55 0.1)
(2.54583 0.504167 0.1)
(2.58889 0.504167 0.1)
(2.45972 0.504167 0.1)
(2.54583 0.595833 0.1)
(2.54583 0.733333 0.1)
(2.54583 0.6875 0.1)
(2.58889 0.6875 0.1)
(2.45972 0.6875 0.1)
(2.54583 0.779167 0.1)
(2.54583 0.916667 0.1)
(2.54583 0.870833 0.1)
(2.58889 0.870833 0.1)
(2.45972 0.870833 0.1)
(2.71806 -0.870833 0.1)
(2.71806 -0.916667 0.1)
(2.71806 -0.733333 0.1)
(2.71806 -0.779167 0.1)
(2.76111 -0.779167 0.1)
(2.63194 -0.779167 0.1)
(2.71806 -0.6875 0.1)
(2.71806 -0.55 0.1)
(2.71806 -0.595833 0.1)
(2.76111 -0.595833 0.1)
(2.63194 -0.595833 0.1)
(2.71806 -0.504167 0.1)
(2.71806 -0.366667 0.1)
(2.71806 -0.4125 0.1)
(2.76111 -0.4125 0.1)
(2.63194 -0.4125 0.1)
(2.71806 -0.320833 0.1)
(2.71806 -0.183333 0.1)
(2.71806 -0.229167 0.1)
(2.76111 -0.229167 0.1)
(2.63194 -0.229167 0.1)
(2.71806 -0.1375 0.1)
(2.71806 9.25186e-18 0.1)
(2.71806 -0.0458333 0.1)
(2.76111 -0.0458333 0.1)
(2.63194 -0.0458333 0.1)
(2.71806 0.0458333 0.1)
(2.71806 0.183333 0.1)
(2.71806 0.1375 0.1)
(2.76111 0.1375 0.1)
(2.63194 0.1375 0.1)
(2.71806 0.229167 0.1)
(2.71806 0.366667 0.1)
(2.71806 0.320833 0.1)
(2.76111 0.320833 0.1)
(2.63194 0.320833 0.1)
(2.71806 0.4125 0.1)
(2.71806 0.55 0.1)
(2.71806 0.504167 0.1)
(2.76111 0.504167 0.1)
(2.63194 0.504167 0.1)
(2.71806 0.595833 0.1)
(2.71806 0.733333 0.1)
(2.71806 0.6875 0.1)
(2.76111 0.6875 0.1)
(2.63194 0.6875 0.1)
(2.71806 0.779167 0.1)
(2.71806 0.916667 0.1)
(2.71806 0.870833 0.1)
(2.76111 0.870833 0.1)
(2.63194 0.870833 0.1)
(2.89028 -0.870833 0.1)
(2.89028 -0.916667 0.1)
(2.89028 -0.733333 0.1)
(2.89028 -0.779167 0.1)
(2.93333 -0.779167 0.1)
(2.80417 -0.779167 0.1)
(2.89028 -0.6875 0.1)
(2.89028 -0.55 0.1)
(2.89028 -0.595833 0.1)
(2.93333 -0.595833 0.1)
(2.80417 -0.595833 0.1)
(2.89028 -0.504167 0.1)
(2.89028 -0.366667 0.1)
(2.89028 -0.4125 0.1)
(2.93333 -0.4125 0.1)
(2.80417 -0.4125 0.1)
(2.89028 -0.320833 0.1)
(2.89028 -0.183333 0.1)
(2.89028 -0.229167 0.1)
(2.93333 -0.229167 0.1)
(2.80417 -0.229167 0.1)
(2.89028 -0.1375 0.1)
(2.89028 1.85037e-17 0.1)
(2.89028 -0.0458333 0.1)
(2.93333 -0.0458333 0.1)
(2.80417 -0.0458333 0.1)
(2.89028 0.0458333 0.1)
(2.89028 0.183333 0.1)
(2.89028 0.1375 0.1)
(2.93333 0.1375 0.1)
(2.80417 0.1375 0.1)
(2.89028 0.229167 0.1)
(2.89028 0.366667 0.1)
(2.89028 0.320833 0.1)
(2.93333 0.320833 0.1)
(2.80417 0.320833 0.1)
(2.89028 0.4125 0.1)
(2.89028 0.55 0.1)
(2.89028 0.504167 0.1)
(2.93333 0.504167 0.1)
(2.80417 0.504167 0.1)
(2.89028 0.595833 0.1)
(2.89028 0.733333 0.1)
(2.89028 0.6875 0.1)
(2.93333 0.6875 0.1)
(2.80417 0.6875 0.1)
(2.89028 0.779167 0.1)
(2.89028 0.916667 0.1)
(2.89028 0.870833 0.1)
(2.93333 0.870833 0.1)
(2.80417 0.870833 0.1)
(3.0625 -0.870833 0.1)
(3.0625 -0.916667 0.1)
(3.0625 -0.733333 0.1)
(3.0625 -0.779167 0.1)
(3.10556 -0.779167 0.1)
(2.97639 -0.779167 0.1)
(3.0625 -0.6875 0.1)
(3.0625 -0.55 0.1)
(3.0625 -0.595833 0.1)
(3.10556 -0.595833 0.1)
(2.97639 -0.595833 0.1)
(3.0625 -0.504167 0.1)
(3.0625 -0.366667 0.1)
(3.0625 -0.4125 0.1)
(3.10556 -0.4125 0.1)
(2.97639 -0.4125 0.1)
(3.0625 -0.320833 0.1)
(3.0625 -0.183333 0.1)
(3.0625 -0.229167 0.1)
(3.10556 -0.229167 0.1)
(2.97639 -0.229167 0.1)
(3.0625 -0.1375 0.1)
(3.0625 4.62593e-18 0.1)
(3.0625 -0.0458333 0.1)
(3.10556 -0.0458333 0.1)
(2.97639 -0.0458333 0.1)
(3.0625 0.0458333 0.1)
(3.0625 0.183333 0.1)
(3.0625 0.1375 0.1)
(3.10556 0.1375 0.1)
(2.97639 0.1375 0.1)
(3.0625 0.229167 0.1)
(3.0625 0.366667 0.1)
(3.0625 0.320833 0.1)
(3.10556 0.320833 0.1)
(2.97639 0.320833 0.1)
(3.0625 0.4125 0.1)
(3.0625 0.55 0.1)
(3.0625 0.504167 0.1)
(3.10556 0.504167 0.1)
(2.97639 0.504167 0.1)
(3.0625 0.595833 0.1)
(3.0625 0.733333 0.1)
(3.0625 0.6875 0.1)
(3.10556 0.6875 0.1)
(2.97639 0.6875 0.1)
(3.0625 0.779167 0.1)
(3.0625 0.916667 0.1)
(3.0625 0.870833 0.1)
(3.10556 0.870833 0.1)
(2.97639 0.870833 0.1)
(3.23472 -0.870833 0.1)
(3.23472 -0.916667 0.1)
(3.23472 -0.733333 0.1)
(3.23472 -0.779167 0.1)
(3.27778 -0.779167 0.1)
(3.14861 -0.779167 0.1)
(3.23472 -0.6875 0.1)
(3.23472 -0.55 0.1)
(3.23472 -0.595833 0.1)
(3.27778 -0.595833 0.1)
(3.14861 -0.595833 0.1)
(3.23472 -0.504167 0.1)
(3.23472 -0.366667 0.1)
(3.23472 -0.4125 0.1)
(3.27778 -0.4125 0.1)
(3.14861 -0.4125 0.1)
(3.23472 -0.320833 0.1)
(3.23472 -0.183333 0.1)
(3.23472 -0.229167 0.1)
(3.27778 -0.229167 0.1)
(3.14861 -0.229167 0.1)
(3.23472 -0.1375 0.1)
(3.23472 0 0.1)
(3.23472 -0.0458333 0.1)
(3.27778 -0.0458333 0.1)
(3.14861 -0.0458333 0.1)
(3.23472 0.0458333 0.1)
(3.23472 0.183333 0.1)
(3.23472 0.1375 0.1)
(3.27778 0.1375 0.1)
(3.14861 0.1375 0.1)
(3.23472 0.229167 0.1)
(3.23472 0.366667 0.1)
(3.23472 0.320833 0.1)
(3.27778 0.320833 0.1)
(3.14861 0.320833 0.1)
(3.23472 0.4125 0.1)
(3.23472 0.55 0.1)
(3.23472 0.504167 0.1)
(3.27778 0.504167 0.1)
(3.14861 0.504167 0.1)
(3.23472 0.595833 0.1)
(3.23472 0.733333 0.1)
(3.23472 0.6875 0.1)
(3.27778 0.6875 0.1)
(3.14861 0.6875 0.1)
(3.23472 0.779167 0.1)
(3.23472 0.916667 0.1)
(3.23472 0.870833 0.1)
(3.27778 0.870833 0.1)
(3.14861 0.870833 0.1)
(3.40694 -0.870833 0.1)
(3.40694 -0.916667 0.1)
(3.40694 -0.733333 0.1)
(3.40694 -0.779167 0.1)
(3.45 -0.779167 0.1)
(3.32083 -0.779167 0.1)
(3.40694 -0.6875 0.1)
(3.40694 -0.55 0.1)
(3.40694 -0.595833 0.1)
(3.45 -0.595833 0.1)
(3.32083 -0.595833 0.1)
(3.40694 -0.504167 0.1)
(3.40694 -0.366667 0.1)
(3.40694 -0.4125 0.1)
(3.45 -0.4125 0.1)
(3.32083 -0.4125 0.1)
(3.40694 -0.320833 0.1)
(3.40694 -0.183333 0.1)
(3.40694 -0.229167 0.1)
(3.45 -0.229167 0.1)
(3.32083 -0.229167 0.1)
(3.40694 -0.1375 0.1)
(3.40694 0 0.1)
(3.40694 -0.0458333 0.1)
(3.45 -0.0458333 0.1)
(3.32083 -0.0458333 0.1)
(3.40694 0.0458333 0.1)
(3.40694 0.183333 0.1)
(3.40694 0.1375 0.1)
(3.45 0.1375 0.1)
(3.32083 0.1375 0.1)
(3.40694 0.229167 0.1)
(3.40694 0.366667 0.1)
(3.40694 0.320833 0.1)
(3.45 0.320833 0.1)
(3.32083 0.320833 0.1)
(3.40694 0.4125 0.1)
(3.40694 0.55 0.1)
(3.40694 0.504167 0.1)
(3.45 0.504167 0.1)
(3.32083 0.504167 0.1)
(3.40694 0.595833 0.1)
(3.40694 0.733333 0.1)
(3.40694 0.6875 0.1)
(3.45 0.6875 0.1)
(3.32083 0.6875 0.1)
(3.40694 0.779167 0.1)
(3.40694 0.916667 0.1)
(3.40694 0.870833 0.1)
(3.45 0.870833 0.1)
(3.32083 0.870833 0.1)
(3.57917 -0.870833 0.1)
(3.57917 -0.916667 0.1)
(3.57917 -0.733333 0.1)
(3.57917 -0.779167 0.1)
(3.62222 -0.779167 0.1)
(3.49306 -0.779167 0.1)
(3.57917 -0.6875 0.1)
(3.57917 -0.55 0.1)
(3.57917 -0.595833 0.1)
(3.62222 -0.595833 0.1)
(3.49306 -0.595833 0.1)
(3.57917 -0.504167 0.1)
(3.57917 -0.366667 0.1)
(3.57917 -0.4125 0.1)
(3.62222 -0.4125 0.1)
(3.49306 -0.4125 0.1)
(3.57917 -0.320833 0.1)
(3.57917 -0.183333 0.1)
(3.57917 -0.229167 0.1)
(3.62222 -0.229167 0.1)
(3.49306 -0.229167 0.1)
(3.57917 -0.1375 0.1)
(3.57917 0 0.1)
(3.57917 -0.0458333 0.1)
(3.62222 -0.0458333 0.1)
(3.49306 -0.0458333 0.1)
(3.57917 0.0458333 0.1)
(3.57917 0.183333 0.1)
(3.57917 0.1375 0.1)
(3.62222 0.1375 0.1)
(3.49306 0.1375 0.1)
(3.57917 0.229167 0.1)
(3.57917 0.366667 0.1)
(3.57917 0.320833 0.1)
(3.62222 0.320833 0.1)
(3.49306 0.320833 0.1)
(3.57917 0.4125 0.1)
(3.57917 0.55 0.1)
(3.57917 0.504167 0.1)
(3.62222 0.504167 0.1)
(3.49306 0.504167 0.1)
(3.57917 0.595833 0.1)
(3.57917 0.733333 0.1)
(3.57917 0.6875 0.1)
(3.62222 0.6875 0.1)
(3.49306 0.6875 0.1)
(3.57917 0.779167 0.1)
(3.57917 0.916667 0.1)
(3.57917 0.870833 0.1)
(3.62222 0.870833 0.1)
(3.49306 0.870833 0.1)
(3.75139 -0.870833 0.1)
(3.75139 -0.916667 0.1)
(3.75139 -0.733333 0.1)
(3.75139 -0.779167 0.1)
(3.79444 -0.779167 0.1)
(3.66528 -0.779167 0.1)
(3.75139 -0.6875 0.1)
(3.75139 -0.55 0.1)
(3.75139 -0.595833 0.1)
(3.79444 -0.595833 0.1)
(3.66528 -0.595833 0.1)
(3.75139 -0.504167 0.1)
(3.75139 -0.366667 0.1)
(3.75139 -0.4125 0.1)
(3.79444 -0.4125 0.1)
(3.66528 -0.4125 0.1)
(3.75139 -0.320833 0.1)
(3.75139 -0.183333 0.1)
(3.75139 -0.229167 0.1)
(3.79444 -0.229167 0.1)
(3.66528 -0.229167 0.1)
(3.75139 -0.1375 0.1)
(3.75139 -6.93889e-18 0.1)
(3.75139 -0.0458333 0.1)
(3.79444 -0.0458333 0.1)
(3.66528 -0.0458333 0.1)
(3.75139 0.0458333 0.1)
(3.75139 0.183333 0.1)
(3.75139 0.1375 0.1)
(3.79444 0.1375 0.1)
(3.66528 0.1375 0.1)
(3.75139 0.229167 0.1)
(3.75139 0.366667 0.1)
(3.75139 0.320833 0.1)
(3.79444 0.320833 0.1)
(3.66528 0.320833 0.1)
(3.75139 0.4125 0.1)
(3.75139 0.55 0.1)
(3.75139 0.504167 0.1)
(3.79444 0.504167 0.1)
(3.66528 0.504167 0.1)
(3.75139 0.595833 0.1)
(3.75139 0.733333 0.1)
(3.75139 0.6875 0.1)
(3.79444 0.6875 0.1)
(3.66528 0.6875 0.1)
(3.75139 0.779167 0.1)
(3.75139 0.916667 0.1)
(3.75139 0.870833 0.1)
(3.79444 0.870833 0.1)
(3.66528 0.870833 0.1)
(3.92361 -0.870833 0.1)
(3.92361 -0.916667 0.1)
(3.92361 -0.733333 0.1)
(3.92361 -0.779167 0.1)
(3.96667 -0.779167 0.1)
(3.8375 -0.779167 0.1)
(3.92361 -0.6875 0.1)
(3.92361 -0.55 0.1)
(3.92361 -0.595833 0.1)
(3.96667 -0.595833 0.1)
(3.8375 -0.595833 0.1)
(3.92361 -0.504167 0.1)
(3.92361 -0.366667 0.1)
(3.92361 -0.4125 0.1)
(3.96667 -0.4125 0.1)
(3.8375 -0.4125 0.1)
(3.92361 -0.320833 0.1)
(3.92361 -0.183333 0.1)
(3.92361 -0.229167 0.1)
(3.96667 -0.229167 0.1)
(3.8375 -0.229167 0.1)
(3.92361 -0.1375 0.1)
(3.92361 -9.25186e-18 0.1)
(3.92361 -0.0458333 0.1)
(3.96667 -0.0458333 0.1)
(3.8375 -0.0458333 0.1)
(3.92361 0.0458333 0.1)
(3.92361 0.183333 0.1)
(3.92361 0.1375 0.1)
(3.96667 0.1375 0.1)
(3.8375 0.1375 0.1)
(3.92361 0.229167 0.1)
(3.92361 0.366667 0.1)
(3.92361 0.320833 0.1)
(3.96667 0.320833 0.1)
(3.8375 0.320833 0.1)
(3.92361 0.4125 0.1)
(3.92361 0.55 0.1)
(3.92361 0.504167 0.1)
(3.96667 0.504167 0.1)
(3.8375 0.504167 0.1)
(3.92361 0.595833 0.1)
(3.92361 0.733333 0.1)
(3.92361 0.6875 0.1)
(3.96667 0.6875 0.1)
(3.8375 0.6875 0.1)
(3.92361 0.779167 0.1)
(3.92361 0.916667 0.1)
(3.92361 0.870833 0.1)
(3.96667 0.870833 0.1)
(3.8375 0.870833 0.1)
(4.09583 -0.870833 0.1)
(4.09583 -0.916667 0.1)
(4.09583 -0.733333 0.1)
(4.09583 -0.779167 0.1)
(4.13889 -0.779167 0.1)
(4.00972 -0.779167 0.1)
(4.09583 -0.6875 0.1)
(4.09583 -0.55 0.1)
(4.09583 -0.595833 0.1)
(4.13889 -0.595833 0.1)
(4.00972 -0.595833 0.1)
(4.09583 -0.504167 0.1)
(4.09583 -0.366667 0.1)
(4.09583 -0.4125 0.1)
(4.13889 -0.4125 0.1)
(4.00972 -0.4125 0.1)
(4.09583 -0.320833 0.1)
(4.09583 -0.183333 0.1)
(4.09583 -0.229167 0.1)
(4.13889 -0.229167 0.1)
(4.00972 -0.229167 0.1)
(4.09583 -0.1375 0.1)
(4.09583 -1.61908e-17 0.1)
(4.09583 -0.0458333 0.1)
(4.13889 -0.0458333 0.1)
(4.00972 -0.0458333 0.1)
(4.09583 0.0458333 0.1)
(4.09583 0.183333 0.1)
(4.09583 0.1375 0.1)
(4.13889 0.1375 0.1)
(4.00972 0.1375 0.1)
(4.09583 0.229167 0.1)
(4.09583 0.366667 0.1)
(4.09583 0.320833 0.1)
(4.13889 0.320833 0.1)
(4.00972 0.320833 0.1)
(4.09583 0.4125 0.1)
(4.09583 0.55 0.1)
(4.09583 0.504167 0.1)
(4.13889 0.504167 0.1)
(4.00972 0.504167 0.1)
(4.09583 0.595833 0.1)
(4.09583 0.733333 0.1)
(4.09583 0.6875 0.1)
(4.13889 0.6875 0.1)
(4.00972 0.6875 0.1)
(4.09583 0.779167 0.1)
(4.09583 0.916667 0.1)
(4.09583 0.870833 0.1)
(4.13889 0.870833 0.1)
(4.00972 0.870833 0.1)
(4.26806 -0.870833 0.1)
(4.26806 -0.916667 0.1)
(4.26806 -0.733333 0.1)
(4.26806 -0.779167 0.1)
(4.31111 -0.779167 0.1)
(4.18194 -0.779167 0.1)
(4.26806 -0.6875 0.1)
(4.26806 -0.55 0.1)
(4.26806 -0.595833 0.1)
(4.31111 -0.595833 0.1)
(4.18194 -0.595833 0.1)
(4.26806 -0.504167 0.1)
(4.26806 -0.366667 0.1)
(4.26806 -0.4125 0.1)
(4.31111 -0.4125 0.1)
(4.18194 -0.4125 0.1)
(4.26806 -0.320833 0.1)
(4.26806 -0.183333 0.1)
(4.26806 -0.229167 0.1)
(4.31111 -0.229167 0.1)
(4.18194 -0.229167 0.1)
(4.26806 -0.1375 0.1)
(4.26806 9.25186e-18 0.1)
(4.26806 -0.0458333 0.1)
(4.31111 -0.0458333 0.1)
(4.18194 -0.0458333 0.1)
(4.26806 0.0458333 0.1)
(4.26806 0.183333 0.1)
(4.26806 0.1375 0.1)
(4.31111 0.1375 0.1)
(4.18194 0.1375 0.1)
(4.26806 0.229167 0.1)
(4.26806 0.366667 0.1)
(4.26806 0.320833 0.1)
(4.31111 0.320833 0.1)
(4.18194 0.320833 0.1)
(4.26806 0.4125 0.1)
(4.26806 0.55 0.1)
(4.26806 0.504167 0.1)
(4.31111 0.504167 0.1)
(4.18194 0.504167 0.1)
(4.26806 0.595833 0.1)
(4.26806 0.733333 0.1)
(4.26806 0.6875 0.1)
(4.31111 0.6875 0.1)
(4.18194 0.6875 0.1)
(4.26806 0.779167 0.1)
(4.26806 0.916667 0.1)
(4.26806 0.870833 0.1)
(4.31111 0.870833 0.1)
(4.18194 0.870833 0.1)
(4.44028 -0.870833 0.1)
(4.44028 -0.916667 0.1)
(4.44028 -0.733333 0.1)
(4.44028 -0.779167 0.1)
(4.48333 -0.779167 0.1)
(4.35417 -0.779167 0.1)
(4.44028 -0.6875 0.1)
(4.44028 -0.55 0.1)
(4.44028 -0.595833 0.1)
(4.48333 -0.595833 0.1)
(4.35417 -0.595833 0.1)
(4.44028 -0.504167 0.1)
(4.44028 -0.366667 0.1)
(4.44028 -0.4125 0.1)
(4.48333 -0.4125 0.1)
(4.35417 -0.4125 0.1)
(4.44028 -0.320833 0.1)
(4.44028 -0.183333 0.1)
(4.44028 -0.229167 0.1)
(4.48333 -0.229167 0.1)
(4.35417 -0.229167 0.1)
(4.44028 -0.1375 0.1)
(4.44028 -1.27213e-17 0.1)
(4.44028 -0.0458333 0.1)
(4.48333 -0.0458333 0.1)
(4.35417 -0.0458333 0.1)
(4.44028 0.0458333 0.1)
(4.44028 0.183333 0.1)
(4.44028 0.1375 0.1)
(4.48333 0.1375 0.1)
(4.35417 0.1375 0.1)
(4.44028 0.229167 0.1)
(4.44028 0.366667 0.1)
(4.44028 0.320833 0.1)
(4.48333 0.320833 0.1)
(4.35417 0.320833 0.1)
(4.44028 0.4125 0.1)
(4.44028 0.55 0.1)
(4.44028 0.504167 0.1)
(4.48333 0.504167 0.1)
(4.35417 0.504167 0.1)
(4.44028 0.595833 0.1)
(4.44028 0.733333 0.1)
(4.44028 0.6875 0.1)
(4.48333 0.6875 0.1)
(4.35417 0.6875 0.1)
(4.44028 0.779167 0.1)
(4.44028 0.916667 0.1)
(4.44028 0.870833 0.1)
(4.48333 0.870833 0.1)
(4.35417 0.870833 0.1)
(4.6125 -0.870833 0.1)
(4.6125 -0.916667 0.1)
(4.6125 -0.733333 0.1)
(4.6125 -0.779167 0.1)
(4.65556 -0.779167 0.1)
(4.52639 -0.779167 0.1)
(4.6125 -0.6875 0.1)
(4.6125 -0.55 0.1)
(4.6125 -0.595833 0.1)
(4.65556 -0.595833 0.1)
(4.52639 -0.595833 0.1)
(4.6125 -0.504167 0.1)
(4.6125 -0.366667 0.1)
(4.6125 -0.4125 0.1)
(4.65556 -0.4125 0.1)
(4.52639 -0.4125 0.1)
(4.6125 -0.320833 0.1)
(4.6125 -0.183333 0.1)
(4.6125 -0.229167 0.1)
(4.65556 -0.229167 0.1)
(4.52639 -0.229167 0.1)
(4.6125 -0.1375 0.1)
(4.6125 1.15648e-18 0.1)
(4.6125 -0.0458333 0.1)
(4.65556 -0.0458333 0.1)
(4.52639 -0.0458333 0.1)
(4.6125 0.0458333 0.1)
(4.6125 0.183333 0.1)
(4.6125 0.1375 0.1)
(4.65556 0.1375 0.1)
(4.52639 0.1375 0.1)
(4.6125 0.229167 0.1)
(4.6125 0.366667 0.1)
(4.6125 0.320833 0.1)
(4.65556 0.320833 0.1)
(4.52639 0.320833 0.1)
(4.6125 0.4125 0.1)
(4.6125 0.55 0.1)
(4.6125 0.504167 0.1)
(4.65556 0.504167 0.1)
(4.52639 0.504167 0.1)
(4.6125 0.595833 0.1)
(4.6125 0.733333 0.1)
(4.6125 0.6875 0.1)
(4.65556 0.6875 0.1)
(4.52639 0.6875 0.1)
(4.6125 0.779167 0.1)
(4.6125 0.916667 0.1)
(4.6125 0.870833 0.1)
(4.65556 0.870833 0.1)
(4.52639 0.870833 0.1)
(4.78472 -0.870833 0.1)
(4.78472 -0.916667 0.1)
(4.78472 -0.733333 0.1)
(4.78472 -0.779167 0.1)
(4.82778 -0.779167 0.1)
(4.69861 -0.779167 0.1)
(4.78472 -0.6875 0.1)
(4.78472 -0.55 0.1)
(4.78472 -0.595833 0.1)
(4.82778 -0.595833 0.1)
(4.69861 -0.595833 0.1)
(4.78472 -0.504167 0.1)
(4.78472 -0.366667 0.1)
(4.78472 -0.4125 0.1)
(4.82778 -0.4125 0.1)
(4.69861 -0.4125 0.1)
(4.78472 -0.320833 0.1)
(4.78472 -0.183333 0.1)
(4.78472 -0.229167 0.1)
(4.82778 -0.229167 0.1)
(4.69861 -0.229167 0.1)
(4.78472 -0.1375 0.1)
(4.78472 -2.19732e-17 0.1)
(4.78472 -0.0458333 0.1)
(4.82778 -0.0458333 0.1)
(4.69861 -0.0458333 0.1)
(4.78472 0.0458333 0.1)
(4.78472 0.183333 0.1)
(4.78472 0.1375 0.1)
(4.82778 0.1375 0.1)
(4.69861 0.1375 0.1)
(4.78472 0.229167 0.1)
(4.78472 0.366667 0.1)
(4.78472 0.320833 0.1)
(4.82778 0.320833 0.1)
(4.69861 0.320833 0.1)
(4.78472 0.4125 0.1)
(4.78472 0.55 0.1)
(4.78472 0.504167 0.1)
(4.82778 0.504167 0.1)
(4.69861 0.504167 0.1)
(4.78472 0.595833 0.1)
(4.78472 0.733333 0.1)
(4.78472 0.6875 0.1)
(4.82778 0.6875 0.1)
(4.69861 0.6875 0.1)
(4.78472 0.779167 0.1)
(4.78472 0.916667 0.1)
(4.78472 0.870833 0.1)
(4.82778 0.870833 0.1)
(4.69861 0.870833 0.1)
(5 -0.916667 0.1)
(5 -0.870833 0.1)
(4.95694 -0.870833 0.1)
(4.95694 -0.916667 0.1)
(5 -0.733333 0.1)
(4.95694 -0.733333 0.1)
(4.95694 -0.779167 0.1)
(5 -0.779167 0.1)
(4.87083 -0.779167 0.1)
(5 -0.6875 0.1)
(4.95694 -0.6875 0.1)
(5 -0.55 0.1)
(4.95694 -0.55 0.1)
(4.95694 -0.595833 0.1)
(5 -0.595833 0.1)
(4.87083 -0.595833 0.1)
(5 -0.504167 0.1)
(4.95694 -0.504167 0.1)
(5 -0.366667 0.1)
(4.95694 -0.366667 0.1)
(4.95694 -0.4125 0.1)
(5 -0.4125 0.1)
(4.87083 -0.4125 0.1)
(5 -0.320833 0.1)
(4.95694 -0.320833 0.1)
(5 -0.183333 0.1)
(4.95694 -0.183333 0.1)
(4.95694 -0.229167 0.1)
(5 -0.229167 0.1)
(4.87083 -0.229167 0.1)
(5 -0.1375 0.1)
(4.95694 -0.1375 0.1)
(5 0 0.1)
(4.95694 -8.09538e-18 0.1)
(4.95694 -0.0458333 0.1)
(5 -0.0458333 0.1)
(4.87083 -0.0458333 0.1)
(5 0.0458333 0.1)
(4.95694 0.0458333 0.1)
(5 0.183333 0.1)
(4.95694 0.183333 0.1)
(4.95694 0.1375 0.1)
(5 0.1375 0.1)
(4.87083 0.1375 0.1)
(5 0.229167 0.1)
(4.95694 0.229167 0.1)
(5 0.366667 0.1)
(4.95694 0.366667 0.1)
(4.95694 0.320833 0.1)
(5 0.320833 0.1)
(4.87083 0.320833 0.1)
(5 0.4125 0.1)
(4.95694 0.4125 0.1)
(5 0.55 0.1)
(4.95694 0.55 0.1)
(4.95694 0.504167 0.1)
(5 0.504167 0.1)
(4.87083 0.504167 0.1)
(5 0.595833 0.1)
(4.95694 0.595833 0.1)
(5 0.733333 0.1)
(4.95694 0.733333 0.1)
(4.95694 0.6875 0.1)
(5 0.6875 0.1)
(4.87083 0.6875 0.1)
(5 0.779167 0.1)
(4.95694 0.779167 0.1)
(5 0.916667 0.1)
(4.95694 0.916667 0.1)
(4.95694 0.870833 0.1)
(5 0.870833 0.1)
(4.87083 0.870833 0.1)
(0.1528117481 -0.1145262122 0.1)
(0.1420410084 -0.1135268845 0.1)
(0.1204867694 -0.1115250366 0.1)
(0.1183948054 -0.1341696132 0.1)
(0.1312761507 -0.1125291068 0.1)
(0.1163049971 -0.1568234285 0.1)
(0.1511061207 0.2236747229 0.1)
(0.1489572157 0.2010334208 0.1)
(0.1598065661 0.2000478896 0.1)
(0.1587345208 0.1887315346 0.1)
(0.147885078 0.18971607 0.1)
(0.191163301 0.1857558785 0.1)
(0.1803387718 0.1867491496 0.1)
(0.01622731336 0.1898207098 0.1)
(0.0272403396 0.1889314693 0.1)
(0.03818936285 0.1880200468 0.1)
(0.06113816266 0.1974854036 0.1)
(0.06221448854 0.2088154216 0.1)
(0.04903040357 0.1870694327 0.1)
(0.0644516823 0.2314947297 0.1)
(0.3244694061 -0.1303454445 0.1)
(0.3234249125 -0.1416462786 0.1)
(0.2923249614 -0.1273901438 0.1)
(0.2912801906 -0.138693965 0.1)
(0.3019970894 -0.1396782543 0.1)
(0.3030417677 -0.1283754288 0.1)
(0.2881387749 -0.1726278684 0.1)
(0.3009520415 -0.1509850627 0.1)
(0.2902340546 -0.1500016767 0.1)
(0.3239955299 0.2075684678 0.1)
(0.3229337395 0.1962652214 0.1)
(0.3219079799 0.1849606406 0.1)
(0.332705563 0.1839367278 0.1)
(0.3316624347 0.1726397843 0.1)
(0.3208666582 0.1736615208 0.1)
(0.3640364298 0.1695607474 0.1)
(0.3532502615 0.1705886225 0.1)
(0.2019957037 0.1847608725 0.1)
(0.2344582974 0.1817599847 0.1)
(0.2236446493 0.1827622892 0.1)
(0.2376264129 0.2156894022 0.1)
(0.2246998392 0.1940701652 0.1)
(0.2355153864 0.1930666801 0.1)
(0.2365917636 0.2043756032 0.1)
(0.49488359 -0.1573586712 0.1)
(0.4627177526 -0.1544174544 0.1)
(0.4734418986 -0.1553994032 0.1)
(0.4595935515 -0.1882957101 0.1)
(0.4724008746 -0.1666844904 0.1)
(0.4616775396 -0.1657046254 0.1)
(0.4962175076 0.1910229949 0.1)
(0.4941695504 0.1684305759 0.1)
(0.5049030891 0.1673874979 0.1)
(0.5028539 0.1448142747 0.1)
(0.5038748248 0.1560992182 0.1)
(0.4931434623 0.1571441028 0.1)
(0.5350736916 0.1416752272 0.1)
(0.5360750714 0.1529660013 0.1)
(0.5253537585 0.1540109578 0.1)
(0.5243371862 0.1427296277 0.1)
(0.374823409 0.1685307884 0.1)
(0.4071150876 0.1654413116 0.1)
(0.3963300279 0.1664811355 0.1)
(0.4101966778 0.1993365767 0.1)
(0.3973707029 0.1777732852 0.1)
(0.4081496958 0.1767330199 0.1)
(0.6663389515 -0.1729552623 0.1)
(0.6341925257 -0.1700429624 0.1)
(0.6449108102 -0.1710123159 0.1)
(0.631079955 -0.203849988 0.1)
(0.6438742721 -0.1822707033 0.1)
(0.6331569833 -0.1813014423 0.1)
(0.6678832361 0.1740892507 0.1)
(0.6658494243 0.151508575 0.1)
(0.6638250564 0.1289430918 0.1)
(0.6852584128 0.1267857466 0.1)
(0.7066899934 0.1245984374 0.1)
(0.5458268676 0.1406273143 0.1)
(0.5565792121 0.13957044 0.1)
(0.5780370099 0.1374600376 0.1)
(0.5800730493 0.160021425 0.1)
(0.5673088398 0.1385176819 0.1)
(0.5821124145 0.1826186584 0.1)
(0.8378033975 -0.1883889961 0.1)
(0.8056294918 -0.1855022669 0.1)
(0.8163543974 -0.1864652046 0.1)
(0.8025336019 -0.2192485739 0.1)
(0.8132576041 -0.2202104235 0.1)
(0.8142929823 -0.2089428897 0.1)
(0.803567892 -0.2079819434 0.1)
(0.8549612675 -0.03221099884 0.1)
(0.8544713528 -0.03782684502 0.1)
(0.8598255567 -0.03838639572 0.1)
(0.8651724811 -0.0389486354 0.1)
(0.8679263794 -0.005673498578 0.1)
(0.8572715888 -0.004474428598 0.1)
(0.8466181244 -0.003282712595 0.1)
(0.8456925578 -0.01438418109 0.1)
(0.8157051162 0.136168565 0.1)
(0.8177224217 0.1587336992 0.1)
(0.8096851462 0.06847110234 0.1)
(0.81167223 0.09099193909 0.1)
(0.87573966 0.08410160716 0.1)
(0.8544066455 0.08642037254 0.1)
(0.7281081368 0.1224394909 0.1)
(0.7495233034 0.1202376359 0.1)
(0.7515427336 0.1428256717 0.1)
(0.7535488295 0.1653998803 0.1)
(1.010384192 -0.1975600807 0.1)
(0.9785452366 -0.1988350941 0.1)
(0.9889563176 -0.1955709615 0.1)
(0.975413193 -0.2327437553 0.1)
(0.9857804011 -0.2298009437 0.1)
(0.9868389475 -0.2183919453 0.1)
(0.9764219534 -0.2214275543 0.1)
(1.002945872 -0.0561572342 0.1)
(1.003585087 -0.04547929236 0.1)
(1.000867156 -0.08862818845 0.1)
(1.001916033 -0.07764813125 0.1)
(1.03169356 -0.08446548107 0.1)
(1.020969342 -0.08347348263 0.1)
(0.8700428477 -0.04509100249 0.1)
(0.8860818862 -0.04677476865 0.1)
(0.8807390336 -0.04620111633 0.1)
(0.887397035 -0.03026206984 0.1)
(0.8763056973 -0.03454744545 0.1)
(0.8758556113 -0.04008039567 0.1)
(0.8811856808 -0.04067275704 0.1)
(0.8865198523 -0.04126420346 0.1)
(1.039103819 -0.004597812688 0.1)
(1.017665895 -0.002608765321 0.1)
(0.9968175881 0.0005611605147 0.1)
(0.9947701534 -0.02204727534 0.1)
(1.005194198 -0.02369836095 0.1)
(1.004313679 -0.03470398126 0.1)
(0.993849665 -0.03315895666 0.1)
(0.9669978756 0.1424221395 0.1)
(0.9649756943 0.1198152773 0.1)
(0.9862179237 0.1173623252 0.1)
(0.9882420041 0.1399680069 0.1)
(0.9820944374 0.07195608745 0.1)
(0.9608906714 0.07449887025 0.1)
(1.045455255 0.06385787016 0.1)
(1.024411903 0.06663583897 0.1)
(0.897051559 0.08177174507 0.1)
(0.9396499612 0.07698984459 0.1)
(0.9457269448 0.1448255312 0.1)
(0.9437064983 0.1222265424 0.1)
(-0.01791486669 -0.06382280744 0.1)
(-0.07410531669 -0.06900281007 0.1)
(-0.07911138776 -0.1379552086 0.1)
(-0.07754560974 -0.1149354157 0.1)
(-0.01368387407 0.04619934787 0.1)
(-0.01401077707 0.03827159369 0.1)
(-0.007299993339 0.03854809094 0.1)
(-0.008471483504 0.04600980497 0.1)
(-0.01407550021 0.03116170677 0.1)
(-0.008400184206 0.02951213855 0.1)
(-0.158014808 -0.01085415791 0.1)
(-0.179417761 -0.008076870325 0.1)
(-0.1152165374 -0.01567920775 0.1)
(-0.1114243242 0.03156871088 0.1)
(-0.08997261217 0.02857007206 0.1)
(-0.01126196035 0.06138533342 0.1)
(-0.01258672639 0.0542391402 0.1)
(-0.007222086297 0.0536928119 0.1)
(-0.004357706586 0.05993116554 0.1)
(-0.0228231782 0.2389113289 0.1)
(-0.02513572753 0.2161526431 0.1)
(-0.02767297341 0.1932842467 0.1)
(-0.00575726072 0.1915652136 0.1)
(0.00520424185 0.1906897922 0.1)
(-0.1400623753 0.1770840505 0.1)
(-0.1615261569 0.1787511097 0.1)
(-0.09651602799 0.1744658274 0.1)
(-0.0906365503 0.2212627857 0.1)
(0.08759815983 0.1322327372 0.1)
(0.08706444704 0.1264630695 0.1)
(0.09253905423 0.1259466899 0.1)
(0.09801092268 0.1254278529 0.1)
(0.0088424151 0.1214499666 0.1)
(0.01994397055 0.1206360695 0.1)
(0.03231333251 0.1312174798 0.1)
(0.025575251 0.1202322973 0.1)
(0.03344467872 0.1425776437 0.1)
(0.181276243 0.3123265899 0.1)
(0.1791613363 0.2896620475 0.1)
(0.1358832467 0.2936453254 0.1)
(0.1380168155 0.3163161707 0.1)
(0.1316258098 0.2483107692 0.1)
(0.1250080425 0.4090260624 0.1)
(0.1207073595 0.3636688132 0.1)
(0.1596281802 0.3143130398 0.1)
(0.07322185839 0.3222516315 0.1)
(0.3011873581 -0.2652103017 0.1)
(0.2797531705 -0.2632567513 0.1)
(0.2583091182 -0.2613012814 0.1)
(0.2431584701 -0.1913424016 0.1)
(0.2645998843 -0.1933046568 0.1)
(0.2604070256 -0.2386251188 0.1)
(0.2389652419 -0.2366668465 0.1)
(0.3247053282 -0.2444883875 0.1)
(0.3032859841 -0.2425372187 0.1)
(0.1745871377 -0.2307760878 0.1)
(0.153092324 -0.2288048609 0.1)
(0.2175116942 -0.2347054741 0.1)
(0.2217053843 -0.1893760506 0.1)
(0.2615272893 0.1210490798 0.1)
(0.260941874 0.1146420629 0.1)
(0.1961806708 0.1223679624 0.1)
(0.1967086166 0.1281231008 0.1)
(0.3539373547 0.2960436705 0.1)
(0.3518485627 0.2734008082 0.1)
(0.3087088681 0.2775118469 0.1)
(0.3108060879 0.3001589488 0.1)
(0.3024268785 0.2096098161 0.1)
(0.3045160915 0.2322355663 0.1)
(0.2976286969 0.3928927672 0.1)
(0.2934203584 0.3475327282 0.1)
(0.3323736306 0.2981056518 0.1)
(0.2460552133 0.3062751098 0.1)
(0.4726689985 -0.2807942665 0.1)
(0.4512259213 -0.2788499343 0.1)
(0.429784928 -0.2769047912 0.1)
(0.4146158848 -0.207003458 0.1)
(0.4360660963 -0.2089574908 0.1)
(0.4318817269 -0.2542405773 0.1)
(0.4104310535 -0.2522915231 0.1)
(0.4962009087 -0.2600736457 0.1)
(0.4747656126 -0.2581320441 0.1)
(0.3461226808 -0.2464393716 0.1)
(0.3889885306 -0.2503412165 0.1)
(0.3931748196 -0.2050482653 0.1)
(0.409110152 -0.1495069198 0.1)
(0.4198321217 -0.1504906753 0.1)
(0.3876760774 -0.1475413284 0.1)
(0.386632949 -0.1588382719 0.1)
(0.4025553372 -0.1033931421 0.1)
(0.4015163252 -0.1146673688 0.1)
(0.4122332239 -0.1156516581 0.1)
(0.4229551013 -0.1166364093 0.1)
(0.3372519079 -0.1087419649 0.1)
(0.3479475269 -0.109728297 0.1)
(0.3586550946 -0.1107157377 0.1)
(0.3596970219 -0.09943173855 0.1)
(0.3553813314 -0.08764663326 0.1)
(0.4337480092 0.1001062171 0.1)
(0.4331906003 0.09427166104 0.1)
(0.4386181454 0.09393971811 0.1)
(0.4440256827 0.09355449574 0.1)
(0.369015895 0.1058184174 0.1)
(0.3695914894 0.1117732076 0.1)
(0.5259246705 0.2794044761 0.1)
(0.5238550948 0.256773891 0.1)
(0.4809416859 0.2609533168 0.1)
(0.483012442 0.2835858009 0.1)
(0.4768040333 0.2157191235 0.1)
(0.4697736223 0.3763400297 0.1)
(0.4656356432 0.3309908892 0.1)
(0.5044735246 0.2814891539 0.1)
(0.4184898034 0.2898454902 0.1)
(0.644159785 -0.2962796547 0.1)
(0.6227254641 -0.2943491908 0.1)
(0.6012923237 -0.2924168278 0.1)
(0.5861414705 -0.2225684014 0.1)
(0.6075645613 -0.2245008363 0.1)
(0.6033857658 -0.2697563196 0.1)
(0.5819604988 -0.2678256914 0.1)
(0.6676849305 -0.2755453505 0.1)
(0.646253412 -0.2736171551 0.1)
(0.5176382887 -0.2620144365 0.1)
(0.5605225645 -0.265890875 0.1)
(0.5647038133 -0.2206305978 0.1)
(0.5806318268 -0.1651789599 0.1)
(0.5913516409 -0.1661534767 0.1)
(0.5591894887 -0.1632266619 0.1)
(0.5581496658 -0.1744988047 0.1)
(0.5745800888 -0.1135239611 0.1)
(0.5799384253 -0.1140281469 0.1)
(0.5730207957 -0.1304382421 0.1)
(0.5837405893 -0.1314238043 0.1)
(0.5847767374 -0.1201804451 0.1)
(0.579417128 -0.1196791541 0.1)
(0.574056872 -0.1191848333 0.1)
(0.5944593871 -0.1324092741 0.1)
(0.595495607 -0.1211759645 0.1)
(0.590136901 -0.1206757616 0.1)
(0.5087105137 -0.1245417245 0.1)
(0.519425421 -0.125525829 0.1)
(0.5301425969 -0.1265071312 0.1)
(0.5311783035 -0.1152577052 0.1)
(0.5954506161 0.09031094363 0.1)
(0.5944488472 0.07905927272 0.1)
(0.6042053879 0.06675007356 0.1)
(0.5348547414 0.07914322858 0.1)
(0.5294716729 0.07967310904 0.1)
(0.5510097392 0.07761601905 0.1)
(0.5456404683 0.07812142014 0.1)
(0.5525217324 0.09451841902 0.1)
(0.546152841 0.08377365717 0.1)
(0.5515203771 0.08326038267 0.1)
(0.8156304415 -0.3117330464 0.1)
(0.813531292 -0.3344442441 0.1)
(0.7706618802 -0.3305591416 0.1)
(0.7727611016 -0.3078579936 0.1)
(0.7685610883 -0.353277217 0.1)
(0.7575974374 -0.2379852798 0.1)
(0.7790316864 -0.2399056941 0.1)
(0.7811102134 -0.2173301715 0.1)
(0.7748553957 -0.2851774786 0.1)
(0.753421701 -0.2832510899 0.1)
(0.8391665809 -0.2909776677 0.1)
(0.8177266552 -0.2890426665 0.1)
(0.6891225158 -0.2774731044 0.1)
(0.7319861071 -0.2813235208 0.1)
(0.738235741 -0.2134887885 0.1)
(0.7361612893 -0.236063685 0.1)
(0.7520568341 -0.1806913867 0.1)
(0.7627796558 -0.1816551354 0.1)
(0.7306443267 -0.178763951 0.1)
(0.7392693124 -0.2022190785 0.1)
(0.7403104597 -0.1909651359 0.1)
(0.7296104472 -0.1900045078 0.1)
(0.7459428691 -0.129393165 0.1)
(0.7513144885 -0.1297650118 0.1)
(0.7444212284 -0.1461181147 0.1)
(0.7551340929 -0.1470809395 0.1)
(0.7556490772 -0.1414655012 0.1)
(0.7561672744 -0.1358262578 0.1)
(0.7507992271 -0.1353834374 0.1)
(0.7454368566 -0.1349552038 0.1)
(0.7658587213 -0.1480468644 0.1)
(0.7663744446 -0.1424234602 0.1)
(0.7610119919 -0.1419419914 0.1)
(0.7604969152 -0.1475584255 0.1)
(0.6801458891 -0.1402238349 0.1)
(0.6908543601 -0.1412123637 0.1)
(0.6918832405 -0.1299823903 0.1)
(0.686531176 -0.1294647264 0.1)
(0.6811799739 -0.1289702412 0.1)
(0.7015727884 -0.1422018164 0.1)
(0.7025992667 -0.1309977318 0.1)
(0.6972418541 -0.1304835888 0.1)
(0.6977616013 -0.1248384635 0.1)
(0.7031175358 -0.125368538 0.1)
(0.781536021 -0.007577474669 0.1)
(0.7761693194 -0.007087677684 0.1)
(0.7707837577 -0.006627966971 0.1)
(0.7702500191 -0.01234812057 0.1)
(0.755229591 0.06286771092 0.1)
(0.7562170093 0.07409460164 0.1)
(0.7532737368 0.04045615639 0.1)
(0.7853797679 0.03708683387 0.1)
(0.7746845541 0.038218249 0.1)
(0.7007068842 0.05714672036 0.1)
(0.7114164692 0.05605113075 0.1)
(0.7221422906 0.05495734887 0.1)
(0.7231261192 0.06616719835 0.1)
(0.7241142098 0.07739051165 0.1)
(0.9880257359 -0.3220699795 0.1)
(0.9859085507 -0.3448889719 0.1)
(0.9422674011 -0.3462259053 0.1)
(0.9443683983 -0.3234947931 0.1)
(0.9402047546 -0.3689766444 0.1)
(0.9290717791 -0.2534530735 0.1)
(0.9506554688 -0.2554405809 0.1)
(0.9525902318 -0.232812552 0.1)
(0.9464706273 -0.3007828769 0.1)
(0.9248883028 -0.2987914791 0.1)
(1.011580845 -0.3012400344 0.1)
(0.9901429212 -0.299250987 0.1)
(0.8605939113 -0.2929185303 0.1)
(0.90344346 -0.29682288 0.1)
(0.9097067566 -0.2288950117 0.1)
(0.9076252014 -0.2514923478 0.1)
(0.9235289892 -0.1961178015 0.1)
(0.9342414636 -0.1970956545 0.1)
(0.9020921635 -0.1941710364 0.1)
(0.8989969922 -0.2279204229 0.1)
(0.9000329247 -0.2166469148 0.1)
(0.9282705528 -0.1449158787 0.1)
(0.9276951278 -0.1509013156 0.1)
(0.9330404583 -0.1514374363 0.1)
(0.9383723313 -0.1520536564 0.1)
(0.8526600022 -0.1443009742 0.1)
(0.8579902121 -0.1448377006 0.1)
(0.8633168395 -0.1454022149 0.1)
(0.86386653 -0.1395750774 0.1)
(1.197884371 -0.1574203071 0.1)
(1.176446447 -0.1554312597 0.1)
(1.174329326 -0.1782495551 0.1)
(1.195767251 -0.1802386025 0.1)
(1.131463435 -0.1742723842 0.1)
(1.133580556 -0.1514540888 0.1)
(1.125111972 -0.2427283658 0.1)
(1.127229065 -0.2199103691 0.1)
(1.139932019 -0.08299810725 0.1)
(1.142049177 -0.06017941355 0.1)
(1.135697714 -0.1286353951 0.1)
(1.200001529 -0.1346016134 0.1)
(1.178563605 -0.132612566 0.1)
(1.041348951 -0.09686903904 0.1)
(1.042407691 -0.08545794967 0.1)
(1.073501089 -0.09984965886 0.1)
(1.074559673 -0.08844026222 0.1)
(1.06384568 -0.08744630003 0.1)
(1.062787097 -0.09885569667 0.1)
(1.077735404 -0.05421227251 0.1)
(1.055248854 -0.06363354456 0.1)
(1.05419028 -0.07504284163 0.1)
(1.064904264 -0.07603690339 0.1)
(1.075618247 -0.07703096514 0.1)
(0.1030847595 -0.06424013321 0.1)
(0.104132697 -0.05291300487 0.1)
(0.09872709244 -0.05239870906 0.1)
(0.09925450151 -0.0467034773 0.1)
(0.1046610372 -0.0472185625 0.1)
(0.08306504453 -0.04521103295 0.1)
(0.08844320408 -0.04570289732 0.1)
(0.1639711239 -0.05262594562 0.1)
(0.1693462018 -0.0530904081 0.1)
(0.1477724696 -0.05129865789 0.1)
(0.1531701576 -0.05174673915 0.1)
(0.1462137371 -0.06827184257 0.1)
(0.1526443262 -0.05743579024 0.1)
(0.1472522122 -0.05696010588 0.1)
(0.01596194422 -0.05583424985 0.1)
(0.01690375502 -0.04447327225 0.1)
(0.01789325689 -0.03312867062 0.1)
(0.006706759278 -0.03190939251 0.1)
(-0.004448037118 -0.03066764703 0.1)
(0.07272597362 -0.03852546698 0.1)
(0.06084687447 -0.04882797738 0.1)
(0.05982348822 -0.06016109951 0.1)
(0.1750247338 0.1299074958 0.1)
(0.17450018 0.123950782 0.1)
(0.1034654645 0.124944167 0.1)
(0.1088926279 0.124513939 0.1)
(0.1094126787 0.130303052 0.1)
(0.1153532867 0.1926530775 0.1)
(0.104494791 0.1936233884 0.1)
(0.1370699517 0.190702443 0.1)
(0.138136115 0.2020203481 0.1)
(0.1218974362 0.1464027009 0.1)
(0.1229911308 0.1577250817 0.1)
(0.1121243706 0.1586961594 0.1)
(0.1012669066 0.1596613532 0.1)
(0.1879855774 0.1518203224 0.1)
(0.1771535237 0.1528082659 0.1)
(0.1760838703 0.1414635686 0.1)
(0.1815083864 0.1409582641 0.1)
(0.1869283345 0.1404794951 0.1)
(0.1663514547 0.1538054789 0.1)
(0.1652817499 0.1424818766 0.1)
(0.1706700299 0.1419648697 0.1)
(0.170136589 0.1362587486 0.1)
(0.164745989 0.1367940481 0.1)
(0.2954588835 -0.09349370839 0.1)
(0.3061735137 -0.09448080008 0.1)
(0.3072192083 -0.08316702163 0.1)
(0.3040860765 -0.1170765862 0.1)
(0.2933693626 -0.1160903055 0.1)
(0.325512442 -0.1190494967 0.1)
(0.2494401825 -0.1234433579 0.1)
(0.260154905 -0.1244294539 0.1)
(0.2611996757 -0.1131256327 0.1)
(0.2504860413 -0.1121386334 0.1)
(0.2826501234 -0.115098769 0.1)
(0.2816044493 -0.1264015021 0.1)
(0.2857881927 -0.08121175699 0.1)
(0.2847399934 -0.09250923432 0.1)
(0.2795132654 -0.1490160222 0.1)
(0.2805594938 -0.1377073147 0.1)
(0.2698315497 -0.1367230049 0.1)
(0.2708746061 -0.1254160118 0.1)
(0.2750501785 -0.0802385644 0.1)
(0.2760859888 -0.06897719693 0.1)
(0.2707166748 -0.06850473272 0.1)
(0.27122883 -0.06293060967 0.1)
(0.2765980352 -0.06339342255 0.1)
(0.2551737463 -0.06140895446 0.1)
(0.2605248705 -0.06192592856 0.1)
(0.3356115383 -0.06836042246 0.1)
(0.3409438947 -0.0689064871 0.1)
(0.3195643853 -0.06673164179 0.1)
(0.324917423 -0.06727128963 0.1)
(0.3179352755 -0.08416027244 0.1)
(0.3232935401 -0.08465440853 0.1)
(0.323821714 -0.07896175847 0.1)
(0.3184642901 -0.07845856129 0.1)
(0.189235351 -0.07224839727 0.1)
(0.1902900245 -0.06089196592 0.1)
(0.184918295 -0.06036976585 0.1)
(0.1854557567 -0.0546094846 0.1)
(0.190827052 -0.05513636457 0.1)
(0.1747131066 -0.0535780145 0.1)
(0.2498167494 -0.06089033076 0.1)
(0.2337215586 -0.0593246821 0.1)
(0.2390852391 -0.05984703924 0.1)
(0.2321624739 -0.07625836532 0.1)
(0.2385659097 -0.06547683761 0.1)
(0.2332020977 -0.06496672068 0.1)
(0.3480547088 0.1141472342 0.1)
(0.347533236 0.1084943351 0.1)
(0.2825366204 0.1126654808 0.1)
(0.2831366185 0.119056482 0.1)
(0.2884850054 0.1767121437 0.1)
(0.2776705668 0.1777275774 0.1)
(0.3100765789 0.1746797159 0.1)
(0.3132127902 0.2085899991 0.1)
(0.3121647551 0.1972834678 0.1)
(0.2945532815 0.124553463 0.1)
(0.2891349658 0.1248874621 0.1)
(0.2961487588 0.1417927912 0.1)
(0.2907501109 0.1422846484 0.1)
(0.2902214844 0.1365871193 0.1)
(0.2956147122 0.1361017908 0.1)
(0.2745160219 0.1437928836 0.1)
(0.2739849934 0.1380694657 0.1)
(0.2794007328 0.1375669841 0.1)
(0.2799311146 0.1432834319 0.1)
(0.3609218369 0.1356886302 0.1)
(0.3501334205 0.1367247483 0.1)
(0.3490957533 0.1254433668 0.1)
(0.3544925124 0.1249095045 0.1)
(0.3598809567 0.1243834437 0.1)
(0.3393427355 0.137758064 0.1)
(0.338306916 0.126496597 0.1)
(0.3436985322 0.1259722505 0.1)
(0.3431807251 0.1203480354 0.1)
(0.337792948 0.1208921116 0.1)
(0.2080817072 0.132933973 0.1)
(0.2026615333 0.1333886599 0.1)
(0.2096608428 0.1498564559 0.1)
(0.1988232563 0.150838887 0.1)
(0.1977652435 0.1395222343 0.1)
(0.2031893592 0.1390450872 0.1)
(0.208608404 0.1385674063 0.1)
(0.1923456444 0.1399939408 0.1)
(0.2691130421 0.1442921727 0.1)
(0.2685825679 0.1385747292 0.1)
(0.2529296118 0.1458268409 0.1)
(0.2524111272 0.1401303794 0.1)
(0.2578021173 0.1396101082 0.1)
(0.2583299329 0.1453097211 0.1)
(0.2567162044 0.1278953304 0.1)
(0.2513213338 0.1285686145 0.1)
(0.2473748934 0.2033691002 0.1)
(0.2484254742 0.214681421 0.1)
(0.2452665974 0.1807541592 0.1)
(0.2668736816 0.1787373653 0.1)
(0.4883228625 -0.1113086198 0.1)
(0.4872852363 -0.1225679107 0.1)
(0.4980008622 -0.1235550947 0.1)
(0.433684852 -0.1176228953 0.1)
(0.4444103428 -0.118611999 0.1)
(0.4454530092 -0.1073200341 0.1)
(0.4509611746 -0.1647254071 0.1)
(0.4520024758 -0.1534373327 0.1)
(0.4305611539 -0.1514740818 0.1)
(0.4363169436 -0.08921095349 0.1)
(0.4368790834 -0.08327128497 0.1)
(0.4315069855 -0.08279635301 0.1)
(0.4261310772 -0.08238413725 0.1)
(0.5117919228 -0.09097313978 0.1)
(0.5064459034 -0.09042279457 0.1)
(0.5011021342 -0.08986984611 0.1)
(0.5005894411 -0.09546059056 0.1)
(0.3559042064 -0.08198944532 0.1)
(0.35696555 -0.07056112275 0.1)
(0.3462760016 -0.0694552402 0.1)
(0.4207507602 -0.08203026369 0.1)
(0.4153694249 -0.08169818929 0.1)
(0.4148395789 -0.08740886195 0.1)
(0.5095211689 0.09870020668 0.1)
(0.5090010429 0.0930509989 0.1)
(0.5084881211 0.08737119472 0.1)
(0.5138685205 0.08686666926 0.1)
(0.5133477509 0.0811780524 0.1)
(0.5079596527 0.08163207312 0.1)
(0.5241064813 0.08020082871 0.1)
(0.4494063409 0.09305275832 0.1)
(0.4547602552 0.09246843844 0.1)
(0.4552894566 0.09818298723 0.1)
(0.4609355784 0.160259951 0.1)
(0.4501851843 0.1612945499 0.1)
(0.4824141631 0.1581787531 0.1)
(0.4834407132 0.1694702048 0.1)
(0.4675675362 0.1141008527 0.1)
(0.4685923514 0.1253844309 0.1)
(0.4578540907 0.1264199126 0.1)
(0.4471057804 0.1274553225 0.1)
(0.5233202648 0.13145536 0.1)
(0.5340588541 0.1304017705 0.1)
(0.5018438564 0.1335383646 0.1)
(0.4987947553 0.09973348452 0.1)
(0.4998091309 0.1110019626 0.1)
(0.3809075651 0.1165865578 0.1)
(0.3755250336 0.1170789282 0.1)
(0.3824729862 0.1336318328 0.1)
(0.3717123372 0.1346533231 0.1)
(0.3706755836 0.1233276678 0.1)
(0.3760581459 0.1228031571 0.1)
(0.3814395893 0.1223098833 0.1)
(0.3652765353 0.1238476824 0.1)
(0.4363450595 0.1284868624 0.1)
(0.4255789186 0.1295249309 0.1)
(0.4245511162 0.1182416298 0.1)
(0.4299380309 0.1177207324 0.1)
(0.4294207884 0.112059306 0.1)
(0.4240326932 0.1125783043 0.1)
(0.4189197478 0.1757046315 0.1)
(0.4178831481 0.1644131079 0.1)
(0.4394224924 0.1623373199 0.1)
(0.6602947379 -0.1212949359 0.1)
(0.6656535259 -0.1217509573 0.1)
(0.6587279103 -0.1382687755 0.1)
(0.6694378595 -0.1392413728 0.1)
(0.670476502 -0.127971129 0.1)
(0.6651218712 -0.1274703 0.1)
(0.6597647256 -0.1270074009 0.1)
(0.6758327032 -0.1284550307 0.1)
(0.6051693157 -0.1333929167 0.1)
(0.6062057 -0.122168661 0.1)
(0.6008527835 -0.1216710039 0.1)
(0.6158653043 -0.1343752659 0.1)
(0.6168928913 -0.1231592326 0.1)
(0.6115497473 -0.1226644908 0.1)
(0.6120649882 -0.1170571106 0.1)
(0.6174063973 -0.1175597258 0.1)
(0.6224377954 -0.1803310007 0.1)
(0.6234735226 -0.1690705294 0.1)
(0.6020635815 -0.1671262588 0.1)
(0.6072407045 -0.1109268025 0.1)
(0.6077616599 -0.1052794794 0.1)
(0.6029491872 -0.09900022541 0.1)
(0.5976075951 -0.09839133886 0.1)
(0.6721517522 -0.1102725064 0.1)
(0.6715667397 -0.1163504532 0.1)
(0.5219990663 -0.09751650951 0.1)
(0.522498344 -0.09202705888 0.1)
(0.5171418532 -0.0915138049 0.1)
(0.5922639746 -0.09778266583 0.1)
(0.5869203449 -0.09717409237 0.1)
(0.5863656749 -0.1030548993 0.1)
(0.5858262085 -0.1088367877 0.1)
(0.6812532598 0.08175648885 0.1)
(0.6802598302 0.07052975415 0.1)
(0.6792742022 0.05931133426 0.1)
(0.6899853372 0.05822162661 0.1)
(0.6202965569 0.06517354996 0.1)
(0.6256616192 0.06464443627 0.1)
(0.6363720397 0.06357950057 0.1)
(0.6373717967 0.07482031091 0.1)
(0.6383741251 0.08605636333 0.1)
(0.8425037365 -0.137447378 0.1)
(0.8419373756 -0.1433784197 0.1)
(0.8473077119 -0.1438073924 0.1)
(0.7712209893 -0.1485303247 0.1)
(0.7717372464 -0.1429119915 0.1)
(0.7824510451 -0.1439080447 0.1)
(0.7819370771 -0.1495125302 0.1)
(0.7835088525 -0.1325070122 0.1)
(0.7928497717 -0.2070216439 0.1)
(0.7918153893 -0.21828927 0.1)
(0.7949115563 -0.1845399759 0.1)
(0.7735014818 -0.1826187916 0.1)
(0.7787259185 -0.1260392811 0.1)
(0.7792995737 -0.1200512697 0.1)
(0.6929445934 -0.1185539681 0.1)
(0.6934971293 -0.1126961624 0.1)
(0.7577944544 -0.118461723 0.1)
(0.7572405532 -0.1243234192 0.1)
(0.8310479 0.06618061042 0.1)
(0.8300543852 0.05494213337 0.1)
(0.8290813136 0.04371833045 0.1)
(0.8397580255 0.04254986616 0.1)
(0.8387913572 0.03135178165 0.1)
(0.8281169304 0.03251240128 0.1)
(0.8707658218 0.02778758047 0.1)
(0.8601171164 0.028987291 0.1)
(0.7960668332 0.03596501256 0.1)
(0.8174376912 0.03367527514 0.1)
(0.8203689965 0.06731462986 0.1)
(0.8193809962 0.05608146609 0.1)
(0.7917387301 -0.01426605576 0.1)
(0.7922312357 -0.008654758391 0.1)
(0.7868860827 -0.008105899584 0.1)
(1.009605565 -0.1456608936 0.1)
(1.010036372 -0.14004347 0.1)
(1.008176571 -0.16279445 0.1)
(1.008677358 -0.1570722434 0.1)
(1.024274277 -0.1643221688 0.1)
(1.014051862 -0.1575970108 0.1)
(1.01354158 -0.1633133149 0.1)
(0.9436947194 -0.1527071596 0.1)
(0.9645421456 -0.2222826963 0.1)
(0.9635500045 -0.2335713147 0.1)
(0.9666077489 -0.199792344 0.1)
(0.9449474094 -0.1980789276 0.1)
(0.9493549486 -0.05994286066 0.1)
(0.9599204981 -0.06130277397 0.1)
(0.9704939487 -0.06266412336 0.1)
(0.9712460973 -0.05189470372 0.1)
(0.9720414867 -0.04103808595 0.1)
(1.028484871 -0.1187239575 0.1)
(1.017715771 -0.1177827297 0.1)
(1.017132471 -0.1235283133 0.1)
(1.011685641 -0.1231336204 0.1)
(1.012279932 -0.1173778085 0.1)
(1.010500126 -0.1345039233 0.1)
(0.9298504853 -0.03541558823 0.1)
(0.9289995237 -0.04638407037 0.1)
(0.9334751411 -0.05793923712 0.1)
(0.9387681615 -0.05860618469 0.1)
(0.1294713529 -0.2495111927 0.1)
(0.1079393484 -0.2475294851 0.1)
(0.08641378008 -0.2455433532 0.1)
(0.07115209639 -0.1755028663 0.1)
(0.09268526811 -0.1774947252 0.1)
(0.08850401945 -0.222852419 0.1)
(0.06697298906 -0.2208677889 0.1)
(0.1315671971 -0.2268247957 0.1)
(0.002061045528 -0.2147838855 0.1)
(-0.01964906708 -0.2127073177 0.1)
(0.04531438284 -0.218840189 0.1)
(0.04948569477 -0.173470526 0.1)
(0.07733495486 -0.1075002471 0.1)
(0.06650654738 -0.1064795001 0.1)
(0.05567545144 -0.1054585038 0.1)
(0.04479168068 -0.10441856 0.1)
(0.0369577785 -0.06937495698 0.1)
(0.0478867849 -0.0704371751 0.1)
(0.0458248353 -0.09309056224 0.1)
(0.03495925753 -0.09204828927 0.1)
(0.07836773274 -0.09617522725 0.1)
(0.06754380602 -0.09515489604 0.1)
(0.0130571249 -0.08989063496 0.1)
(0.01400246898 -0.07852837831 0.1)
(0.003029399195 -0.07742692159 0.1)
(-0.008001946245 -0.07627888186 0.1)
(0.02407252011 -0.090997023 0.1)
(0.02596015028 -0.06827624316 0.1)
(0.01696962508 0.0912240699 0.1)
(0.01748517012 0.09723414418 0.1)
(0.2387165908 -0.1224554347 0.1)
(0.2279860291 -0.1214668649 0.1)
(0.2172664204 -0.1204793113 0.1)
(0.2096703762 -0.08556624098 0.1)
(0.2204012869 -0.08656187328 0.1)
(0.2183126488 -0.1091706038 0.1)
(0.2075812761 -0.1081799501 0.1)
(0.2397625421 -0.1111497145 0.1)
(0.1753546688 -0.1052009575 0.1)
(0.1646125279 -0.1042072961 0.1)
(0.1968370514 -0.1071870997 0.1)
(0.1989256177 -0.08456831956 0.1)
(0.6760473283 0.2645388312 0.1)
(0.6740015371 0.2418939878 0.1)
(0.6719657442 0.2192703112 0.1)
(0.6933901596 0.2171248429 0.1)
(0.6525921705 0.2440501114 0.1)
(0.6546327778 0.2666823799 0.1)
(0.6484957326 0.1988271586 0.1)
(0.6412347533 0.3596002969 0.1)
(0.6373035067 0.3141342776 0.1)
(0.5903109157 0.2730710722 0.1)
(0.7191940448 0.02129777273 0.1)
(0.7245484734 0.02075146792 0.1)
(0.724027558 0.01507210409 0.1)
(0.7401216648 0.0135272445 0.1)
(0.7347607312 0.0140467356 0.1)
(0.6977598301 0.02349998904 0.1)
(0.7031193594 0.02296536294 0.1)
(0.7084738507 0.02240890894 0.1)
(0.7089778121 0.02804625938 0.1)
(0.954705097 0.006369560098 0.1)
(0.9441395475 0.007729473409 0.1)
(0.9431873388 -0.003453482244 0.1)
(0.9537511832 -0.004810124043 0.1)
(0.9220121479 -0.000797555466 0.1)
(0.9229596511 0.01036715689 0.1)
(0.920147744 -0.02306775409 0.1)
(0.9163038707 0.05668081711 0.1)
(0.9142969506 0.0340869004 0.1)
(0.9335525182 0.0090527143 0.1)
(0.8814145067 0.02657682458 0.1)
(0.8920482353 0.02535640914 0.1)
(0.891089348 0.0141555941 0.1)
(0.1236144503 -0.0775768031 0.1)
(0.1344075373 -0.07858423 0.1)
(0.1323212191 -0.1012112531 0.1)
(0.1215298464 -0.1002069981 0.1)
(0.153857535 -0.103211438 0.1)
(0.08812425093 -0.108506318 0.1)
(0.08916271881 -0.09718383464 0.1)
(0.1107466242 -0.09920149082 0.1)
(0.1097044506 -0.1105206174 0.1)
(0.1128305095 -0.07656821623 0.1)
(0.09892014033 -0.1095160134 0.1)
(0.008422968818 -0.009071575465 0.1)
(0.008856033596 -0.003355137019 0.1)
(0.003499435034 0.003097427161 0.1)
(-0.002264502757 0.003855369543 0.1)
(0.0314231238 -0.005669593965 0.1)
(0.0309822186 -0.01145430003 0.1)
(0.04561878572 0.1530441009 0.1)
(0.0479290214 0.175736718 0.1)
(0.01499727851 0.1784366611 0.1)
(0.02599443292 0.1775488932 0.1)
(0.09039514007 0.1606228525 0.1)
(0.07954092704 0.1615787059 0.1)
(0.07839666513 0.1502449482 0.1)
(0.0731221996 0.2078646475 0.1)
(0.07201507099 0.1965284487 0.1)
(0.0936526252 0.1945921843 0.1)
(0.6875165437 0.03018420017 0.1)
(0.687002547 0.02452528461 0.1)
(0.6923834248 0.02401509072 0.1)
(0.6600620168 0.0267841437 0.1)
(0.665448798 0.02633757653 0.1)
(0.6660072704 0.03214029821 0.1)
(0.6665438503 0.03786942769 0.1)
(0.6209684959 0.133215664 0.1)
(0.6316870372 0.1321408357 0.1)
(0.6424002714 0.1310845772 0.1)
(0.6608174472 0.09515243934 0.1)
(0.6500918434 0.09622691856 0.1)
(0.6413881439 0.1198078561 0.1)
(0.6403845571 0.1085474157 0.1)
(0.6510983045 0.1074750408 0.1)
(0.6618199254 0.1064009311 0.1)
(0.6199549313 0.121945102 0.1)
(0.6306767369 0.1208729838 0.1)
(0.6832530971 0.1042415945 0.1)
(0.6939697393 0.1031679468 0.1)
(0.7046828915 0.1020675069 0.1)
(0.6725399244 0.1053309891 0.1)
(0.6715341818 0.09407978731 0.1)
(0.5749970756 0.1036673629 0.1)
(0.5642683512 0.1047190328 0.1)
(0.5662889313 0.1272436914 0.1)
(0.5770205505 0.1261907485 0.1)
(0.5448061481 0.1293554076 0.1)
(0.6102443088 0.1342729387 0.1)
(0.6092319246 0.1230042759 0.1)
(0.5877460105 0.1251363685 0.1)
(0.5887633732 0.1364045695 0.1)
(0.5857201028 0.1026192344 0.1)
(0.5994980514 0.1353412999 0.1)
(0.8277196753 -0.03512370304 0.1)
(0.8331029802 -0.03559691299 0.1)
(0.8336074387 -0.02995420556 0.1)
(0.834093132 -0.0243513851 0.1)
(0.9059363761 -0.06599241093 0.1)
(0.9006394334 -0.06534608921 0.1)
(0.8918496212 -0.04188145349 0.1)
(0.8914163696 -0.04738450209 0.1)
(0.9073542121 -0.04926054155 0.1)
(0.9020549157 -0.04862876459 0.1)
(-0.09185259854 0.005075476722 0.1)
(-0.08112770385 0.003867793347 0.1)
(-0.08017295524 0.01547753958 0.1)
(-0.09084634616 0.01654757612 0.1)
(-0.05878385392 0.01321232162 0.1)
(-0.05947680227 0.001030843908 0.1)
(-0.05613371082 0.05060164171 0.1)
(-0.05714514469 0.03789709729 0.1)
(-0.05051230157 -0.04846140089 0.1)
(-0.04963452931 -0.03698963329 0.1)
(-0.06066461954 -0.0356595309 0.1)
(-0.06140378379 -0.04727401414 0.1)
(-0.05977419517 -0.01160672771 0.1)
(-0.04857343322 -0.01331089733 0.1)
(-0.0927844372 -0.006590426206 0.1)
(-0.08188898471 -0.008179899324 0.1)
(-0.01429455901 -0.00619863191 0.1)
(-0.01510979131 -0.01768574288 0.1)
(-0.003562918873 -0.01925882729 0.1)
(-0.03728343709 -0.01497011862 0.1)
(-0.03954140778 -0.04969130591 0.1)
(-0.03874662348 -0.03817226931 0.1)
(-0.01070666211 0.1459242742 0.1)
(-0.01196274665 0.134496947 0.1)
(-0.01336683245 0.1229757916 0.1)
(-0.002269225833 0.1222298499 0.1)
(-0.08268025421 0.1029206381 0.1)
(-0.07192608391 0.1021107514 0.1)
(-0.07073831542 0.1136514749 0.1)
(-0.08146656314 0.1145210219 0.1)
(-0.04867609419 0.1126996878 0.1)
(-0.05025097443 0.1007113132 0.1)
(-0.04382335439 0.1481966754 0.1)
(-0.0453215861 0.1365451602 0.1)
(-0.05474960818 0.06394779508 0.1)
(-0.05165264323 0.08886333681 0.1)
(-0.08390978742 0.09125775058 0.1)
(-0.0732079828 0.09037488952 0.1)
(0.05919088575 0.1231956929 0.1)
(0.05369287501 0.1236828094 0.1)
(0.07017062059 0.1221682369 0.1)
(0.07071241824 0.1279427785 0.1)
(0.07616779765 0.127461626 0.1)
(0.02371548876 0.1027141928 0.1)
(0.02499094413 0.114485602 0.1)
(0.00742868623 0.1099038955 0.1)
(0.01298664007 0.1094514896 0.1)
(0.01865131036 0.1090678187 0.1)
(0.0193637297 0.1148996424 0.1)
(0.04651373487 0.1065962809 0.1)
(0.04100212377 0.1070872704 0.1)
(0.04053090795 0.1010592239 0.1)
(0.04211627198 0.1188541626 0.1)
(0.0428166914 0.1246399983 0.1)
(0.04825298986 0.1241707595 0.1)
(0.2394813543 0.1188555107 0.1)
(0.2399992603 0.1243184268 0.1)
(0.2183792211 0.126477024 0.1)
(0.2178589193 0.1210207576 0.1)
(0.4122486948 0.1022670708 0.1)
(0.4127700557 0.1079620603 0.1)
(0.3911621914 0.1099487977 0.1)
(0.390628654 0.1042199885 0.1)
(0.582679533 0.06883053535 0.1)
(0.5724656769 0.07551804165 0.1)
(0.5810624917 0.05159692378 0.1)
(0.5816106537 0.05738593936 0.1)
(0.5762169169 0.05781165996 0.1)
(0.5708222429 0.05820563137 0.1)
(0.6138979612 0.05439006673 0.1)
(0.608531467 0.05490374671 0.1)
(0.603163354 0.05538915532 0.1)
(0.6026138769 0.04961843949 0.1)
(0.565443219 0.05867086169 0.1)
(0.5600964985 0.05926777081 0.1)
(0.5595068366 0.05332372619 0.1)
(0.5568821494 0.08273910645 0.1)
(0.5563708576 0.07709851939 0.1)
(0.5671051683 0.07604211308 0.1)
(0.7230148083 -0.1441791922 0.1)
(0.7337251989 -0.1451578562 0.1)
(0.7347462984 -0.1340225689 0.1)
(0.729393731 -0.1335319743 0.1)
(0.7240364826 -0.1330268852 0.1)
(0.7400888367 -0.13450219 0.1)
(0.7405919853 -0.1289710186 0.1)
(0.742372388 -0.1685035671 0.1)
(0.743398774 -0.1573004782 0.1)
(0.7630144958 0.02816087474 0.1)
(0.7620554115 0.0169904077 0.1)
(0.7718001236 0.004683611597 0.1)
(0.7615651099 0.01138121573 0.1)
(0.7454843404 0.01300488017 0.1)
(0.7562112541 0.01193369402 0.1)
(0.7566974065 0.01754146324 0.1)
(0.8954018189 -0.1488360685 0.1)
(0.9007544787 -0.1493256674 0.1)
(0.9061254309 -0.1497155297 0.1)
(0.9065982154 -0.1443492583 0.1)
(0.9138206048 -0.1839498553 0.1)
(0.9148317881 -0.1727915535 0.1)
(0.9051343568 -0.1607220402 0.1)
(0.9153382112 -0.167203441 0.1)
(0.9314343258 -0.1686617158 0.1)
(0.9367857846 -0.1691642591 0.1)
(0.9207137008 -0.1676851151 0.1)
(0.9202052862 -0.1732730428 0.1)
(0.8709671964 -0.1800762807 0.1)
(0.8719850932 -0.1689105673 0.1)
(0.8622690715 -0.1567599899 0.1)
(0.8837254833 -0.1587879115 0.1)
(0.8852234732 -0.1422204503 0.1)
(0.8847275204 -0.1477281863 0.1)
(0.8900651008 -0.1482937168 0.1)
(0.1208167937 -0.04878089232 0.1)
(0.1262134994 -0.04930450585 0.1)
(0.1100581032 -0.04773829272 0.1)
(0.1095317473 -0.05342217324 0.1)
(0.08461187809 -0.02794178282 0.1)
(0.09008306349 -0.02822876518 0.1)
(0.09553448746 -0.02856312449 0.1)
(0.09615664441 -0.0223987396 0.1)
(0.1418741789 -0.05647337512 0.1)
(0.142393843 -0.05082914596 0.1)
(0.1316234174 -0.0498264328 0.1)
(0.03445731043 -0.03481384629 0.1)
(0.02895608041 -0.03426617339 0.1)
(0.01928228099 -0.01605246687 0.1)
(0.02489212805 -0.01663853857 0.1)
(0.02950013455 -0.02860261484 0.1)
(0.02997164454 -0.0229037031 0.1)
(0.02442000729 -0.02233970351 0.1)
(0.0188769466 -0.02177418979 0.1)
(0.03497802561 -0.02913988709 0.1)
(0.00762031717 -0.02052711367 0.1)
(0.001997918964 -0.0198821305 0.1)
(0.01326678641 -0.02116659713 0.1)
(0.01369298482 -0.01545705382 0.1)
(0.07424006562 -0.02141426796 0.1)
(0.07373786785 -0.02711595648 0.1)
(0.07916224433 -0.02758921101 0.1)
(0.04100240254 -0.02395708374 0.1)
(0.04650269831 -0.02444230324 0.1)
(0.05196276272 -0.02490651613 0.1)
(0.05250374513 -0.01902494142 0.1)
(0.05091800364 -0.03641370817 0.1)
(0.1528473142 0.1264808003 0.1)
(0.1534097912 0.1321534959 0.1)
(0.1316995729 0.1340653691 0.1)
(0.1311484688 0.1283204137 0.1)
(0.1306053459 0.1225099408 0.1)
(0.1360334673 0.1219568991 0.1)
(0.2927492608 -0.06448502063 0.1)
(0.2981233192 -0.06483058043 0.1)
(0.2819821587 -0.06380368894 0.1)
(0.2863149972 -0.07554468982 0.1)
(0.2868385486 -0.0698693869 0.1)
(0.2814628385 -0.06943338773 0.1)
(0.3131067553 -0.07795655898 0.1)
(0.3125778424 -0.08365717484 0.1)
(0.3142103869 -0.06620234947 0.1)
(0.3034931073 -0.06523298884 0.1)
(0.2069213005 -0.0567121696 0.1)
(0.2122946889 -0.05723813904 0.1)
(0.196189552 -0.05566062077 0.1)
(0.1956556359 -0.06139351244 0.1)
(0.2278471642 -0.06445833136 0.1)
(0.228369799 -0.0588037323 0.1)
(0.2176613196 -0.05776117163 0.1)
(0.3260075116 0.1110741202 0.1)
(0.3264945565 0.1164750223 0.1)
(0.3048685744 0.1183097836 0.1)
(0.3043741007 0.1128721106 0.1)
(0.317739511 0.1398056329 0.1)
(0.3069443197 0.1408012035 0.1)
(0.3058998466 0.1295114148 0.1)
(0.3112989255 0.1290566766 0.1)
(0.3167026443 0.1285653532 0.1)
(0.2950932714 0.1303734661 0.1)
(0.3004980885 0.1299372771 0.1)
(0.2999699034 0.1242336812 0.1)
(0.2982411027 0.1643981651 0.1)
(0.2971957981 0.1530994149 0.1)
(0.2853444211 0.1427872019 0.1)
(0.341421242 0.1603225413 0.1)
(0.3403821171 0.1490362736 0.1)
(0.3285396399 0.1387875097 0.1)
(0.3323950289 0.1214351201 0.1)
(0.3275053909 0.12754297 0.1)
(0.3329077959 0.1270266612 0.1)
(0.3221086113 0.1280657869 0.1)
(0.2312989484 0.1478709299 0.1)
(0.2204809478 0.148869621 0.1)
(0.2194265585 0.1376028469 0.1)
(0.2248390746 0.1371197459 0.1)
(0.2302494658 0.1366137434 0.1)
(0.2140174915 0.1380906492 0.1)
(0.2134914619 0.1324752314 0.1)
(0.2117718283 0.1724570873 0.1)
(0.2107161046 0.1611542823 0.1)
(0.2550250557 0.1684439786 0.1)
(0.2539743106 0.1571407117 0.1)
(0.2637224011 0.1448053815 0.1)
(0.2421099379 0.1468507947 0.1)
(0.245917707 0.1292557668 0.1)
(0.2410523151 0.1355491702 0.1)
(0.2464507065 0.1349679546 0.1)
(0.2518641466 0.1343973943 0.1)
(0.2356550427 0.1360991489 0.1)
(0.4689855763 -0.08653821224 0.1)
(0.4636360636 -0.08598222017 0.1)
(0.4582914188 -0.08542788488 0.1)
(0.457742177 -0.09127183564 0.1)
(0.4791631996 -0.09336727658 0.1)
(0.4796945495 -0.08765121982 0.1)
(0.4743380668 -0.08709458105 0.1)
(0.3831967255 -0.0789175251 0.1)
(0.3778431593 -0.07839439908 0.1)
(0.3724896484 -0.07787067563 0.1)
(0.3719693859 -0.08351053079 0.1)
(0.3933931051 -0.08553361139 0.1)
(0.3939047635 -0.07995401905 0.1)
(0.3885504581 -0.07943885882 0.1)
(0.4918474155 0.08315471266 0.1)
(0.5025766572 0.08210861874 0.1)
(0.5041567862 0.09921499632 0.1)
(0.5036405877 0.09356482157 0.1)
(0.476767333 0.09606168326 0.1)
(0.476218746 0.09026808735 0.1)
(0.4816060836 0.08983834072 0.1)
(0.4869978711 0.08939161035 0.1)
(0.6291202787 -0.1074954707 0.1)
(0.6286198442 -0.1130082141 0.1)
(0.6500938623 -0.1147597804 0.1)
(0.6506245562 -0.1090507932 0.1)
(0.5548250552 -0.09375394483 0.1)
(0.5494437589 -0.09341062594 0.1)
(0.5440441548 -0.09319968181 0.1)
(0.5434884963 -0.09909114295 0.1)
(0.5429490668 -0.1048726331 0.1)
(0.5644006743 -0.1067574991 0.1)
(0.5649585665 -0.1008527876 0.1)
(0.5655408413 -0.0947718752 0.1)
(0.5601885889 -0.09422376371 0.1)
(0.6348380124 0.04663445384 0.1)
(0.6294743257 0.04712427239 0.1)
(0.6251558788 0.05900956077 0.1)
(0.6246410137 0.05334128542 0.1)
(0.6299996048 0.05281819534 0.1)
(0.6353602191 0.05231691159 0.1)
(0.6197908996 0.05953957061 0.1)
(0.6578290039 0.06144929048 0.1)
(0.647091008 0.06252009885 0.1)
(0.6460902071 0.05126803684 0.1)
(0.6514666822 0.05073203934 0.1)
(0.6568388921 0.05021501704 0.1)
(0.6407183113 0.05178844461 0.1)
(0.6401990938 0.0461165559 0.1)
(0.6450201658 0.03982174093 0.1)
(0.6444353818 0.0339302705 0.1)
(0.6229387235 0.03584914392 0.1)
(0.6235337572 0.04177531583 0.1)
(0.80969648 -0.1408781544 0.1)
(0.8150544469 -0.141386323 0.1)
(0.8204192607 -0.1418639937 0.1)
(0.8209119081 -0.1363810584 0.1)
(0.8281065204 -0.1762160919 0.1)
(0.8291262443 -0.1650415094 0.1)
(0.8194141953 -0.1529455325 0.1)
(0.8408746205 -0.1548111307 0.1)
(0.7852366775 -0.1723681084 0.1)
(0.7862599634 -0.1611767834 0.1)
(0.7765812454 -0.1490246456 0.1)
(0.797971231 -0.1509891592 0.1)
(0.7995008271 -0.1342217629 0.1)
(0.7989887582 -0.1398274288 0.1)
(0.8043398988 -0.1403550499 0.1)
(0.8126647518 -0.0221728792 0.1)
(0.8121264215 -0.02789922507 0.1)
(0.7148543423 -0.1152303848 0.1)
(0.7143408547 -0.1208296925 0.1)
(0.7357401338 -0.1230404177 0.1)
(0.7362168273 -0.1176753124 0.1)
(0.8252701966 -0.0009406699001 0.1)
(0.8145747836 0.0002102470394 0.1)
(0.8136457618 -0.01092846151 0.1)
(0.8189961573 -0.01149658704 0.1)
(0.8243403659 -0.01206644842 0.1)
(0.8029430647 -0.009780283333 0.1)
(0.8082944723 -0.0103591483 0.1)
(0.8078164448 -0.01595511766 0.1)
(0.8057835429 0.0236486626 0.1)
(0.8048289352 0.01250479575 0.1)
(0.7931854667 0.00249587219 0.1)
(0.956696648 -0.1878717276 0.1)
(0.957698644 -0.1767366764 0.1)
(0.9523380184 -0.1762463385 0.1)
(0.952841208 -0.1706930763 0.1)
(0.9582011869 -0.1711903844 0.1)
(0.9421348824 -0.1696706005 0.1)
(0.9745537651 -0.1716380305 0.1)
(0.9806365852 -0.1707200655 0.1)
(0.9635665241 -0.1716299405 0.1)
(0.963064166 -0.1771742411 0.1)
(0.9792498455 -0.09084565825 0.1)
(0.9788112382 -0.09636313376 0.1)
(0.9840306687 -0.09716295097 0.1)
(0.9891157603 -0.09824164995 0.1)
(0.9579545154 -0.0884129872 0.1)
(0.9583802317 -0.08290455945 0.1)
(0.9370532634 -0.080596398 0.1)
(0.9365549714 -0.08623758863 0.1)
(0.9175536243 -0.05602795518 0.1)
(0.9161335927 -0.07281596179 0.1)
(0.9166412105 -0.06715002691 0.1)
(0.9112865201 -0.06657407111 0.1)
(0.9383616051 -0.06405964746 0.1)
(0.9379559982 -0.06951370047 0.1)
(0.9432657046 -0.07014152224 0.1)
(0.9485708851 -0.07076400305 0.1)
(0.9330635414 -0.06339293497 0.1)
(0.9321823234 -0.07443856179 0.1)
(1.180947139 -0.3399695581 0.1)
(1.138081248 -0.3359923872 0.1)
(1.101556863 -0.2635583109 0.1)
(1.122994787 -0.2655473582 0.1)
(1.120877602 -0.2883663507 0.1)
(1.099439677 -0.2863773033 0.1)
(1.097322585 -0.3091953 0.1)
(1.033018769 -0.3032290818 0.1)
(1.07588466 -0.3072062526 0.1)
(1.080118939 -0.2615692635 0.1)
(1.107908326 -0.1951023293 0.1)
(1.086470402 -0.1931132819 0.1)
(1.069266774 -0.1454870463 0.1)
(1.068208209 -0.1568962438 0.1)
(1.067149663 -0.1683052421 0.1)
(1.066091024 -0.1797152362 0.1)
(1.033939209 -0.1767311314 0.1)
(1.055377041 -0.1787211745 0.1)
(1.058552745 -0.1444934824 0.1)
(1.057494226 -0.155902182 0.1)
(1.214821613 0.0251290435 0.1)
(1.171955722 0.02910621438 0.1)
(1.124845559 -0.01255307831 0.1)
(1.146283483 -0.01454212568 0.1)
(1.144166334 -0.03736071982 0.1)
(1.137548458 0.1243585861 0.1)
(1.13331418 0.07872159697 0.1)
(1.066893179 0.0618688228 0.1)
(1.088321146 0.05988069928 0.1)
(1.086204025 0.03706240385 0.1)
(0.8484981088 0.01898222412 0.1)
(0.8475559024 0.007842127699 0.1)
(0.8359421218 -0.002117427438 0.1)
(0.8350248978 -0.01322639874 0.1)
(0.8345607169 -0.018781372 0.1)
(0.8296855517 -0.01263660133 0.1)
(1.001225361 0.04667174671 0.1)
(0.9990174302 0.02363239544 0.1)
(0.9757918485 0.003550606585 0.1)
(0.9833842828 -0.03158538356 0.1)
(0.9738292225 -0.01893393447 0.1)
(0.9843170658 -0.02044943429 0.1)
(0.9527858023 -0.01602680702 0.1)
(0.963321549 -0.01745897601 0.1)
(-0.04716522097 0.02374698801 0.1)
(-0.03628775197 0.02210223991 0.1)
(-0.03601589279 0.02843440455 0.1)
(-0.03066705552 0.02781701228 0.1)
(-0.0308213974 0.02125661474 0.1)
(-0.02952996972 0.04815932427 0.1)
(-0.03006220095 0.04138381305 0.1)
(-0.0255328139 -0.004694955942 0.1)
(-0.02545450647 0.001400979704 0.1)
(-0.02539377217 0.007584613896 0.1)
(-0.03089832948 0.008324817571 0.1)
(-0.03064474182 0.01436371604 0.1)
(-0.02510635851 0.01353671616 0.1)
(-0.03609082854 0.01506625684 0.1)
(-0.008058564989 0.01075375539 0.1)
(-0.01962504365 0.01280037626 0.1)
(-0.01988355535 -0.005485141585 0.1)
(-0.01971718265 0.0004894391679 0.1)
(-0.005254407106 0.09899386392 0.1)
(-0.005952137964 0.09314932881 0.1)
(-0.006777007062 0.08718362114 0.1)
(-0.001021803473 0.0868107324 0.1)
(-0.04230586133 0.07611893197 0.1)
(-0.03143629117 0.0755104453 0.1)
(-0.03062885877 0.08161294888 0.1)
(-0.02511326931 0.08136292231 0.1)
(-0.02602907515 0.07511310078 0.1)
(-0.02405940195 0.0876827886 0.1)
(-0.01829854771 0.08761478169 0.1)
(-0.02873571743 0.05546198312 0.1)
(-0.02684321058 0.06893077508 0.1)
(-0.0322214614 0.06936861685 0.1)
(0.4224083187 0.09517906191 0.1)
(0.4277859301 0.09465531181 0.1)
(0.4326161761 0.08836195555 0.1)
(0.5515811163 -0.1284681135 0.1)
(0.5623010022 -0.12945268 0.1)
(0.5633388132 -0.1181913977 0.1)
(0.5579801072 -0.1176911949 0.1)
(0.5526191121 -0.1172048398 0.1)
(0.5686982583 -0.1186836347 0.1)
(0.5692218447 -0.1130187797 0.1)
(0.5709480171 -0.1529409846 0.1)
(0.5719851814 -0.1416866724 0.1)
(0.5280675291 -0.1490237213 0.1)
(0.5291054325 -0.1377614434 0.1)
(0.5408608609 -0.1274875299 0.1)
(0.541897399 -0.1162291425 0.1)
(0.5424207082 -0.1105672746 0.1)
(0.5472587637 -0.1167115146 0.1)
(0.6995150892 -0.1646286272 0.1)
(0.7005449448 -0.1534097915 0.1)
(0.7122942038 -0.1431915462 0.1)
(0.708473655 -0.1258966211 0.1)
(0.7133172844 -0.132013258 0.1)
(0.7079585065 -0.1315030056 0.1)
(0.7186762471 -0.132521519 0.1)
(0.9169032526 -0.1502163798 0.1)
(0.9223137051 -0.1504944131 0.1)
(0.9266016903 -0.1625240044 0.1)
(0.9271376461 -0.1567799535 0.1)
(1.070325339 -0.1340778488 0.1)
(1.059611282 -0.1330845836 0.1)
(1.061728486 -0.110265392 0.1)
(1.072442506 -0.1112590555 0.1)
(1.040290026 -0.1082821199 0.1)
(1.116376947 -0.103827654 0.1)
(1.094939023 -0.1018386067 0.1)
(1.071383923 -0.1226684521 0.1)
(0.1446849865 0.1557775677 0.1)
(0.1338529124 0.1567544659 0.1)
(0.1327726241 0.1454358627 0.1)
(0.1381875731 0.1449465103 0.1)
(0.1436110421 0.1444623932 0.1)
(0.1322543654 0.1397634834 0.1)
(0.1251639331 0.1803641666 0.1)
(0.1240867244 0.169046282 0.1)
(0.1684828576 0.1764313318 0.1)
(0.1674193324 0.165120212 0.1)
(0.1555387818 0.1547966457 0.1)
(0.1593544652 0.1373193903 0.1)
(0.1544834071 0.1434867782 0.1)
(0.1598872902 0.142986401 0.1)
(0.1490513461 0.1439757098 0.1)
(0.4658374268 -0.1205879891 0.1)
(0.4765608337 -0.1215779037 0.1)
(0.4852075099 -0.1451023315 0.1)
(0.4862471481 -0.1338321801 0.1)
(0.501612878 -0.08430011143 0.1)
(0.4904057359 -0.08876202243 0.1)
(0.4957564105 -0.08931631459 0.1)
(0.4542264829 0.08671544753 0.1)
(0.4654626651 0.09126304211 0.1)
(0.4601044834 0.09185549098 0.1)
(0.4900786452 0.1233105521 0.1)
(0.4793403846 0.1243460338 0.1)
(0.4706448562 0.1479392691 0.1)
(0.4696185114 0.1366608543 0.1)
(0.4040012748 0.1315992509 0.1)
(0.3932211527 0.1326165222 0.1)
(0.3922033794 0.1213222476 0.1)
(0.39758781 0.1208286967 0.1)
(0.4029811816 0.120323269 0.1)
(0.3868223775 0.1218094547 0.1)
(0.3862971076 0.1161156313 0.1)
(0.3845431984 0.156215157 0.1)
(0.3835078716 0.1449265283 0.1)
(0.4276261881 0.1520882893 0.1)
(0.4265984781 0.1408059839 0.1)
(0.4148016399 0.1305620242 0.1)
(0.4186552018 0.1131033489 0.1)
(0.4137862481 0.1192825931 0.1)
(0.4191698986 0.1187589857 0.1)
(0.4083864813 0.1198056873 0.1)
(0.6372937741 -0.1363363201 0.1)
(0.6480142348 -0.1373038669 0.1)
(0.6490488124 -0.1260774349 0.1)
(0.6436862467 -0.1256080072 0.1)
(0.638323332 -0.1251315169 0.1)
(0.6544094995 -0.1265346369 0.1)
(0.6549337326 -0.1208628118 0.1)
(0.656659987 -0.1607408353 0.1)
(0.6576944003 -0.1495053495 0.1)
(0.6137985615 -0.1568454266 0.1)
(0.6148335291 -0.1456039665 0.1)
(0.626574422 -0.1353568247 0.1)
(0.6227556799 -0.1180640758 0.1)
(0.627599997 -0.1241516519 0.1)
(0.6222428205 -0.1236566125 0.1)
(0.6329602531 -0.1246459728 0.1)
(0.5332408078 -0.09282240196 0.1)
(0.5278614937 -0.09247936741 0.1)
(0.5229821779 -0.08663911559 0.1)
(0.5874818011 -0.0912417922 0.1)
(0.5762318957 -0.09595894409 0.1)
(0.5815756917 -0.09656572524 0.1)
(0.668550902 0.06037816798 0.1)
(0.6777922336 0.04248357971 0.1)
(0.6724291443 0.04301230948 0.1)
(0.6675615682 0.0491631048 0.1)
(0.6729281785 0.04862902688 0.1)
(0.6782909352 0.04809671251 0.1)
(0.6621979615 0.04968625852 0.1)
(0.9884394154 -0.1500515377 0.1)
(0.9931245794 -0.1494548243 0.1)
(0.993474349 -0.1435201573 0.1)
(0.9919063379 -0.1356325644 0.1)
(1.000729402 -0.1851500505 0.1)
(1.001779562 -0.173723201 0.1)
(0.9921250687 -0.1612017217 0.1)
(0.9916089658 -0.1669807564 0.1)
(0.9866153123 -0.167546839 0.1)
(0.947987837 -0.1646056644 0.1)
(0.9484995364 -0.1590039814 0.1)
(0.9693945593 -0.07878891616 0.1)
(0.9640954115 -0.07810141462 0.1)
(0.9591658031 -0.07205634058 0.1)
(0.9644651674 -0.07271985956 0.1)
(0.9697614408 -0.07339504288 0.1)
(0.9538555239 -0.07143469229 0.1)
(0.9916760123 -0.06539751637 0.1)
(0.9810592241 -0.06405946287 0.1)
(1.009174283 -0.09391475049 0.1)
(1.008069644 -0.1053875635 0.1)
(1.00747078 -0.1111926637 0.1)
(0.9931468531 -0.1062423783 0.1)
(1.002055225 -0.1107856073 0.1)
(0.9986889852 -0.0971669756 0.1)
(0.9982939027 -0.1029405675 0.1)
(1.002676379 -0.1049567647 0.1)
(0.9939000896 -0.1285402257 0.1)
(0.9901226009 -0.1267145349 0.1)
(0.989120896 -0.1312328155 0.1)
(0.9903519896 -0.1346334934 0.1)
(0.7288513019 0.008816911735 0.1)
(0.7282798718 0.002993599095 0.1)
(0.6648772972 0.0204810283 0.1)
(0.6762440692 0.02547275774 0.1)
(0.6708439607 0.02589475105 0.1)
(0.8325940001 -0.04125588222 0.1)
(0.8438029661 -0.03665524645 0.1)
(0.8384665826 -0.03609846393 0.1)
(0.8749201839 -0.05121237366 0.1)
(0.8744385779 -0.05681443849 0.1)
(0.8962999255 -0.05352543151 0.1)
(0.8958466462 -0.05906032604 0.1)
(0.06413433732 0.1168484477 0.1)
(0.0636302265 0.110935633 0.1)
(0.04154587151 0.1130246282 0.1)
(0.02997547078 0.1081621638 0.1)
(0.03551624535 0.1076282967 0.1)
(0.4170525082 0.09582953989 0.1)
(0.5923979471 0.05635936582 0.1)
(0.5870022925 0.05688348441 0.1)
(0.5821535077 0.06313939324 0.1)
(0.5397228719 0.07290099096 0.1)
(0.5391820547 0.06709371876 0.1)
(0.5612124218 0.07088385403 0.1)
(0.5606670128 0.065124511 0.1)
(0.5547702866 0.05993418247 0.1)
(0.7599768776 -0.005769201577 0.1)
(0.7545976269 -0.005284768175 0.1)
(0.7503401147 0.006802655209 0.1)
(0.7497981569 0.001058859845 0.1)
(0.9056339639 -0.1551965659 0.1)
(0.911506104 -0.1499897957 0.1)
(0.8740219952 -0.146567192 0.1)
(0.8793791 -0.1471495984 0.1)
(0.8842280057 -0.1532526648 0.1)
(0.1063419941 -0.02962079842 0.1)
(0.1117108578 -0.03028212874 0.1)
(0.1159685293 -0.04255184646 0.1)
(0.116507964 -0.03679194913 0.1)
(0.09438409718 -0.04044244926 0.1)
(0.09494328184 -0.0345779291 0.1)
(0.1009515336 -0.02902987398 0.1)
(0.1591238152 -0.04636495142 0.1)
(0.1596851329 -0.04043414483 0.1)
(0.1375335707 -0.04471869794 0.1)
(0.1380416876 -0.03914480279 0.1)
(0.06289097459 -0.02596755581 0.1)
(0.06832911484 -0.026556577 0.1)
(0.07323978851 -0.03283279025 0.1)
(0.1197399004 0.1236575521 0.1)
(0.1251807834 0.1231121641 0.1)
(0.1300674852 0.1166371152 0.1)
(0.2879007977 -0.05843130624 0.1)
(0.2884282694 -0.05274622367 0.1)
(0.2663746924 -0.05694887889 0.1)
(0.2668607929 -0.05156897939 0.1)
(0.3308396238 -0.06178474777 0.1)
(0.3314226879 -0.05567367931 0.1)
(0.3094442802 -0.05953160476 0.1)
(0.3100516479 -0.0532235391 0.1)
(0.2020937819 -0.0503785933 0.1)
(0.2026514432 -0.04447637116 0.1)
(0.180643841 -0.04816186204 0.1)
(0.1812299272 -0.04206151865 0.1)
(0.2449668758 -0.05478687332 0.1)
(0.2454749311 -0.04924611419 0.1)
(0.2235471443 -0.05259092182 0.1)
(0.2240785957 -0.04687376977 0.1)
(0.3521673631 -0.06416036895 0.1)
(0.352722495 -0.05827458344 0.1)
(0.4966486491 0.07677597154 0.1)
(0.496065326 0.07085694832 0.1)
(0.5182141722 0.07501481054 0.1)
(0.5176992959 0.06933558941 0.1)
(0.5446115566 -0.08722494945 0.1)
(0.538637552 -0.09304252112 0.1)
(0.5708875823 -0.09535773898 0.1)
(0.5661383586 -0.08858079985 0.1)
(0.9694867154 -0.1663382462 0.1)
(0.9699941754 -0.1608255521 0.1)
(0.9681912076 -0.09515744678 0.1)
(0.9628604371 -0.09456181667 0.1)
(0.008122222578 0.3280466394 0.1)
(0.005898153961 0.305326946 0.1)
(-0.03998841136 0.2862586246 0.1)
(-0.01831884938 0.284382661 0.1)
(-0.01585967119 0.3072030645 0.1)
(-0.01365153414 0.329924236 0.1)
(-0.04219191058 0.2635289884 0.1)
(-0.04881176631 0.4237904691 0.1)
(-0.05268763935 0.3790920689 0.1)
(0.8899568117 0.2425023494 0.1)
(0.8472407257 0.247017209 0.1)
(0.8431518329 0.2017132125 0.1)
(0.864513364 0.1994420161 0.1)
(0.8217928579 0.2039470129 0.1)
(0.8197585431 0.1813392679 0.1)
(0.8120018254 0.3430861595 0.1)
(0.80848668 0.2969757236 0.1)
(0.8491301916 -0.03724578729 0.1)
(0.8539455361 -0.04352656307 0.1)
(0.7465093503 0.08644355488 0.1)
(0.7358132178 0.08754341996 0.1)
(0.726095851 0.0998959855 0.1)
(0.7368090955 0.09879654133 0.1)
(0.7475131014 0.09769494144 0.1)
(0.7153902951 0.1009917034 0.1)
(0.7923128427 0.1158055733 0.1)
(0.770922795 0.1180292009 0.1)
(-0.02500995453 0.03348793389 0.1)
(-0.01959965378 0.03248953389 0.1)
(-0.01391465321 0.01801301482 0.1)
(-0.01398608873 0.02442282679 0.1)
(-0.008936563841 0.07472464919 0.1)
(-0.0100918694 0.06821855785 0.1)
(-0.02252330373 0.06157602728 0.1)
(-0.01701508049 0.06127908058 0.1)
(-0.03128743923 0.1590577949 0.1)
(-0.03014906242 0.1704352833 0.1)
(-0.04949836786 0.1950079557 0.1)
(-0.07143782681 0.1966106852 0.1)
(0.003964757508 0.1792885429 0.1)
(-0.01921778882 0.1695847611 0.1)
(-0.008162580619 0.1687829977 0.1)
(-0.006922628813 0.1801912337 0.1)
(-0.02041947715 0.1581830179 0.1)
(0.08161129 0.1269660098 0.1)
(0.08655564287 0.1206068303 0.1)
(0.3800840777 -0.1126929082 0.1)
(0.3907996112 -0.1136810881 0.1)
(0.3994346468 -0.1372335604 0.1)
(0.4004756708 -0.1259484731 0.1)
(0.3565722152 -0.1332948737 0.1)
(0.3576138859 -0.1220028164 0.1)
(0.36936954 -0.1117048208 0.1)
(0.7713016951 -0.0009482264208 0.1)
(0.7653784417 -0.00619715485 0.1)
(0.721163452 0.04375798324 0.1)
(0.7435532341 0.05275327452 0.1)
(0.7328535437 0.05385808947 0.1)
(0.862785811 -0.1511256328 0.1)
(0.8686630838 -0.1459826093 0.1)
(0.1083718124 0.118629991 0.1)
(0.1143091596 0.124106591 0.1)
(0.4423282229 -0.1411721239 0.1)
(0.4433698731 -0.1298911119 0.1)
(0.4551238848 -0.119599994 0.1)
(0.4475973886 -0.0843270097 0.1)
(0.4422422856 -0.08378797367 0.1)
(0.4374688928 -0.07713081392 0.1)
(0.4159039692 -0.0759585267 0.1)
(0.4046231311 -0.08092247634 0.1)
(0.4099927324 -0.0813377224 0.1)
(0.8311716356 -0.1426607585 0.1)
(0.8365564252 -0.1430097243 0.1)
(0.8413966568 -0.1491521576 0.1)
(0.7975833844 -0.009214811372 0.1)
(0.7927110956 -0.003071512725 0.1)
(0.7079511451 0.01672107428 0.1)
(0.7138339005 0.02184741988 0.1)
(0.08172813759 0.1842345313 0.1)
(0.08063835507 0.1729077703 0.1)
(0.0686046182 0.1625210862 0.1)
(0.05772350733 0.1634673837 0.1)
(0.6816293835 0.02502120477 0.1)
(0.6864799318 0.01882759948 0.1)
(-0.03572757202 0.1242280422 0.1)
(-0.02449260745 0.1236588667 0.1)
(-0.01494327257 0.1113223936 0.1)
(-0.00375804471 0.1106577045 0.1)
(0.001821287888 0.1102811479 0.1)
(-0.00450735509 0.1048320152 0.1)
(0.6036927842 0.06109534723 0.1)
(0.5977871068 0.05586266451 0.1)
(0.05143570488 -0.03069538078 0.1)
(0.0574279444 -0.02540866402 0.1)
(0.4588577232 -0.07945415543 0.1)
(0.4529466076 -0.0848753419 0.1)
(0.4850521018 -0.0882071544 0.1)
(0.4802328334 -0.08188207663 0.1)
(0.3730102435 -0.07222723585 0.1)
(0.361783604 -0.07682352025 0.1)
(0.3671361376 -0.07734695217 0.1)
(0.3992614688 -0.08045413667 0.1)
(0.3944091367 -0.07443129689 0.1)
(0.470837315 0.09072902168 0.1)
(0.4756418222 0.08435309015 0.1)
(0.8199182883 -0.1473933585 0.1)
(0.8257909623 -0.1422890759 0.1)
(0.7883124582 -0.1387735928 0.1)
(0.7936466715 -0.1392996434 0.1)
(0.798478537 -0.1454131802 0.1)
(0.973510133 -0.09574002678 0.1)
(0.9782159878 -0.1022158716 0.1)
(0.9273086344 -0.06828870574 0.1)
(0.9219786338 -0.06771725015 0.1)
(0.9171111871 -0.06156506082 0.1)
(-0.01261034403 0.08738830889 0.1)
(-0.007784956524 0.08105774234 0.1)
(0.9926467146 -0.1553629436 0.1)
(1.003748979 -0.1507649616 0.1)
(0.9983755115 -0.1501207793 0.1)
(1.005442342 -0.1286171849 0.1)
(0.9996866466 -0.1285206325 0.1)
(0.9971929423 -0.1148067024 0.1)
(0.9949863083 -0.1225698428 0.1)
(-1.02877 -0.962597 0.1)
(-1.0288 -0.8251 0.1)
(-1.02888 -0.641775 0.1)
(-1.02895 -0.458448 0.1)
(-1.02901 -0.275121 0.1)
(-1.02904 -0.0917902 0.1)
(-1.02904 0.0915431 0.1)
(-1.02901 0.274879 0.1)
(-1.02895 0.458218 0.1)
(-1.02888 0.641559 0.1)
(-1.0288 0.8249 0.1)
(-1.02872 1.00824 0.1)
(-0.900226 -1.00849 0.1)
(-0.900275 -0.962663 0.1)
(-0.857436 -0.962684 0.1)
(-0.985942 -0.96262 0.1)
(-0.943121 -0.916809 0.1)
(-0.94317 -0.870981 0.1)
(-0.943181 -0.825148 0.1)
(-0.985993 -0.825125 0.1)
(-0.943242 -0.733488 0.1)
(-0.943293 -0.687659 0.1)
(-0.943302 -0.641827 0.1)
(-0.986092 -0.641801 0.1)
(-0.943362 -0.550166 0.1)
(-0.943412 -0.504337 0.1)
(-0.943418 -0.458504 0.1)
(-0.986186 -0.458477 0.1)
(-0.943469 -0.366843 0.1)
(-0.9435156618 -0.321006715 0.1)
(-0.9435504907 -0.274983795 0.1)
(-0.986262 -0.27515 0.1)
(-0.9436775934 -0.1825139604 0.1)
(-0.9437240649 -0.1362491436 0.1)
(-0.9436878957 -0.09005050546 0.1)
(-0.9863090918 -0.09175977123 0.1)
(-0.9435813115 0.001937910681 0.1)
(-0.9435379314 0.04768680305 0.1)
(-0.9434578359 0.0932893972 0.1)
(-0.9863014342 0.09157465736 0.1)
(-0.9434206415 0.1841627421 0.1)
(-0.9434650928 0.2295518429 0.1)
(-0.9434742605 0.2750225634 0.1)
(-0.986262 0.27485 0.1)
(-0.943469 0.366491 0.1)
(-0.943467 0.412324 0.1)
(-0.943418 0.458162 0.1)
(-0.986187 0.45819 0.1)
(-0.943362 0.549834 0.1)
(-0.943354 0.595668 0.1)
(-0.943303 0.641507 0.1)
(-0.986093 0.641532 0.1)
(-0.943242 0.733179 0.1)
(-0.943231 0.779013 0.1)
(-0.943181 0.824852 0.1)
(-0.985993 0.824875 0.1)
(-0.900276 0.962338 0.1)
(-0.943063 1.0082 0.1)
(-0.900227 1.00818 0.1)
(-0.857392 1.00825 0.1)
(-0.985895 1.00822 0.1)
(-0.728831 -1.00857 0.1)
(-0.728893 -0.962745 0.1)
(-0.686035 -0.962769 0.1)
(-0.814593 -0.962705 0.1)
(-0.771786 -0.916895 0.1)
(-0.771847 -0.871068 0.1)
(-0.771889 -0.825239 0.1)
(-0.814719 -0.825217 0.1)
(-0.857544 -0.825194 0.1)
(-0.771996 -0.733582 0.1)
(-0.772061 -0.687755 0.1)
(-0.772105 -0.641926 0.1)
(-0.814911 -0.641902 0.1)
(-0.857712 -0.641877 0.1)
(-0.7729011152 -0.5487037173 0.1)
(-0.7736870725 -0.5009389193 0.1)
(-0.7745090008 -0.4526167078 0.1)
(-0.8159955433 -0.4560560202 0.1)
(-0.8580334576 -0.4580966004 0.1)
(-0.7758928288 -0.3550046233 0.1)
(-0.7762970145 -0.3060506572 0.1)
(-0.7764221076 -0.2571952241 0.1)
(-0.8176889738 -0.2637746179 0.1)
(-0.8592609419 -0.2691789203 0.1)
(-0.775895774 -0.1603207184 0.1)
(-0.7752846802 -0.1125084003 0.1)
(-0.7744673797 -0.06520694694 0.1)
(-0.8166446421 -0.07331885701 0.1)
(-0.8588842145 -0.08045148948 0.1)
(-0.7725332457 0.02765698844 0.1)
(-0.7715440227 0.07318129838 0.1)
(-0.7705957899 0.1181176667 0.1)
(-0.8140380736 0.1100216862 0.1)
(-0.8573297091 0.1028944734 0.1)
(-0.7691481206 0.2063440155 0.1)
(-0.7687428124 0.2497566313 0.1)
(-0.7685597118 0.2928262451 0.1)
(-0.8128540622 0.2862633928 0.1)
(-0.8567905053 0.2808560451 0.1)
(-0.7689608464 0.3783787824 0.1)
(-0.7694959216 0.4211410134 0.1)
(-0.7701487376 0.464110119 0.1)
(-0.8142095235 0.460652546 0.1)
(-0.8577145381 0.4585877959 0.1)
(-0.7715246824 0.5513364354 0.1)
(-0.771999112 0.5959367938 0.1)
(-0.772106 0.641407 0.1)
(-0.814911 0.641431 0.1)
(-0.857712 0.641456 0.1)
(-0.771997 0.733084 0.1)
(-0.771954 0.778925 0.1)
(-0.771892 0.82478 0.1)
(-0.81472 0.824783 0.1)
(-0.857545 0.824806 0.1)
(-0.728055 0.964401 0.1)
(-0.771406 1.00946 0.1)
(-0.727837 1.01033 0.1)
(-0.68461 1.01067 0.1)
(-0.814541 1.00851 0.1)
(-0.556084 -1.01091 0.1)
(-0.556399 -0.964912 0.1)
(-0.512556 -0.965648 0.1)
(-0.643164 -0.962856 0.1)
(-0.600338 -0.917186 0.1)
(-0.600435 -0.871234 0.1)
(-0.600512 -0.825335 0.1)
(-0.643366 -0.825301 0.1)
(-0.686213 -0.825281 0.1)
(-0.6015813287 -0.7323180657 0.1)
(-0.6031422547 -0.6840685637 0.1)
(-0.6050935919 -0.6347766442 0.1)
(-0.6461039732 -0.6376890158 0.1)
(-0.6875558028 -0.6400094721 0.1)
(-0.6092758945 -0.5338386771 0.1)
(-0.6111052016 -0.4826154475 0.1)
(-0.6125374237 -0.4311741016 0.1)
(-0.6526135686 -0.4370499197 0.1)
(-0.6929059119 -0.4427914802 0.1)
(-0.6138931886 -0.3284589416 0.1)
(-0.6137373992 -0.2775404731 0.1)
(-0.6130167274 -0.2271005766 0.1)
(-0.6537606348 -0.2344214709 0.1)
(-0.6945306675 -0.2421219248 0.1)
(-0.6101268113 -0.1280769717 0.1)
(-0.60810274 -0.07962230171 0.1)
(-0.6057918767 -0.03191775891 0.1)
(-0.6479970167 -0.03951912286 0.1)
(-0.690168346 -0.0478666773 0.1)
(-0.6007411641 0.0611762405 0.1)
(-0.5981952446 0.1065632016 0.1)
(-0.5957461601 0.1511902749 0.1)
(-0.6395510173 0.1436668256 0.1)
(-0.6833226233 0.1353820979 0.1)
(-0.5915642251 0.2382170557 0.1)
(-0.5900015486 0.2806773752 0.1)
(-0.5888713521 0.3225061326 0.1)
(-0.6340308866 0.3153505292 0.1)
(-0.6790833222 0.3077731859 0.1)
(-0.5881536086 0.4045857237 0.1)
(-0.58860165 0.4450660062 0.1)
(-0.5895430397 0.4853740896 0.1)
(-0.6351944911 0.4795991042 0.1)
(-0.6805697092 0.4739165021 0.1)
(-0.5926658722 0.5662051652 0.1)
(-0.5946172648 0.6071999467 0.1)
(-0.5965910364 0.648943319 0.1)
(-0.6412100927 0.6457475698 0.1)
(-0.6853930579 0.6433781365 0.1)
(-0.5987647594 0.7372322044 0.1)
(-0.5989149751 0.7822576784 0.1)
(-0.598865 0.827889 0.1)
(-0.642315 0.827359 0.1)
(-0.686094 0.82587 0.1)
(-0.555714 0.965414 0.1)
(-0.598649 1.01102 0.1)
(-0.555678 1.01118 0.1)
(-0.512702 1.01133 0.1)
(-0.641617 1.01086 0.1)
(-0.383309 -1.01194 0.1)
(-0.383341 -0.966197 0.1)
(-0.340336 -0.966337 0.1)
(-0.469354 -0.965893 0.1)
(-0.426375 -0.920295 0.1)
(-0.4269290335 -0.8740150349 0.1)
(-0.4287218851 -0.8263498817 0.1)
(-0.471277994 -0.826980621 0.1)
(-0.5146569682 -0.8263724837 0.1)
(-0.4351468406 -0.7271202646 0.1)
(-0.4391089897 -0.6757629784 0.1)
(-0.4430273451 -0.623370433 0.1)
(-0.4837187264 -0.6250402554 0.1)
(-0.524021639 -0.6281033128 0.1)
(-0.4493757002 -0.5169434901 0.1)
(-0.4513961102 -0.4640599255 0.1)
(-0.4525924573 -0.4114992306 0.1)
(-0.4926881785 -0.4153992619 0.1)
(-0.5326591911 -0.4201202294 0.1)
(-0.4524510367 -0.307925898 0.1)
(-0.4511808537 -0.257126941 0.1)
(-0.4492077419 -0.2070689543 0.1)
(-0.4903750364 -0.2102953506 0.1)
(-0.531372593 -0.2148095287 0.1)
(-0.4436112546 -0.109375472 0.1)
(-0.440224058 -0.06164671691 0.1)
(-0.4365799713 -0.01457609145 0.1)
(-0.478939046 -0.01657485587 0.1)
(-0.5212623799 -0.02021784713 0.1)
(-0.4289118141 0.07784142419 0.1)
(-0.4250482761 0.1232618791 0.1)
(-0.4212604515 0.1681569057 0.1)
(-0.4646710172 0.1662489186 0.1)
(-0.5082527907 0.162703278 0.1)
(-0.4143124122 0.2563085737 0.1)
(-0.4113634919 0.2995712423 0.1)
(-0.4089066583 0.3421298819 0.1)
(-0.4536374771 0.3387150853 0.1)
(-0.4985860259 0.3343661568 0.1)
(-0.4056906418 0.425772624 0.1)
(-0.4052649299 0.4664021322 0.1)
(-0.4054003724 0.5070729409 0.1)
(-0.4519318421 0.5011359832 0.1)
(-0.4978043763 0.4961474447 0.1)
(-0.4066706385 0.5879790329 0.1)
(-0.4089020775 0.6275596165 0.1)
(-0.4119014434 0.6671314815 0.1)
(-0.4579518886 0.6635539275 0.1)
(-0.5044348094 0.6593242667 0.1)
(-0.4185857469 0.7476393465 0.1)
(-0.421730268 0.7890395535 0.1)
(-0.4243513157 0.8314723203 0.1)
(-0.4685027752 0.8300706589 0.1)
(-0.5123338149 0.8289218861 0.1)
(-0.383744 0.966037 0.1)
(-0.426704 1.01164 0.1)
(-0.383585 1.01184 0.1)
(-0.340202 1.01213 0.1)
(-0.469724 1.01148 0.1)
(-0.211093 -1.01252 0.1)
(-0.2114266807 -0.9665604882 0.1)
(-0.1687254091 -0.9664675067 0.1)
(-0.2973044996 -0.966476967 0.1)
(-0.2555459411 -0.9198387468 0.1)
(-0.2585887303 -0.87151895 0.1)
(-0.2623849529 -0.8221933038 0.1)
(-0.3039076877 -0.82308672 0.1)
(-0.3453899558 -0.8241461373 0.1)
(-0.2713843177 -0.7206547822 0.1)
(-0.2758374769 -0.6688493943 0.1)
(-0.2798257796 -0.616660802 0.1)
(-0.3203853626 -0.6179275748 0.1)
(-0.3608412622 -0.6197388108 0.1)
(-0.2854517212 -0.5121861283 0.1)
(-0.2868458729 -0.4603710169 0.1)
(-0.2874523635 -0.4089949358 0.1)
(-0.3294895646 -0.4083600414 0.1)
(-0.3712783198 -0.4083888721 0.1)
(-0.2865265558 -0.3074912839 0.1)
(-0.2847137995 -0.2578776285 0.1)
(-0.281865297 -0.2094613079 0.1)
(-0.3242632961 -0.2066846097 0.1)
(-0.3662045251 -0.2052461459 0.1)
(-0.2747325215 -0.1150013865 0.1)
(-0.2707651866 -0.06850627988 0.1)
(-0.266669085 -0.02232359155 0.1)
(-0.3092326193 -0.01834602171 0.1)
(-0.3517361038 -0.01554354264 0.1)
(-0.258294992 0.06906881217 0.1)
(-0.2540383928 0.1148489594 0.1)
(-0.2496899773 0.1611532578 0.1)
(-0.292308748 0.1646248973 0.1)
(-0.3350751209 0.16716935 0.1)
(-0.2405891604 0.2540469217 0.1)
(-0.2360935946 0.2998011038 0.1)
(-0.231662818 0.3450514875 0.1)
(-0.2760357587 0.3453822412 0.1)
(-0.3200340478 0.345603615 0.1)
(-0.2238731916 0.4330176622 0.1)
(-0.2219027778 0.4751793805 0.1)
(-0.2211892912 0.5164423529 0.1)
(-0.2662561768 0.5160258927 0.1)
(-0.3119322891 0.5145198243 0.1)
(-0.2230014716 0.59706907 0.1)
(-0.2254441602 0.636751428 0.1)
(-0.2287446585 0.6762702896 0.1)
(-0.2742936866 0.6748742336 0.1)
(-0.3200376559 0.6728589744 0.1)
(-0.2370288859 0.7557457038 0.1)
(-0.2414694237 0.7961556228 0.1)
(-0.2459059158 0.837012538 0.1)
(-0.290624329 0.8359682116 0.1)
(-0.33540553 0.8344981173 0.1)
(-0.2101381153 0.9673722411 0.1)
(-0.253793 1.01252 0.1)
(-0.210761 1.01264 0.1)
(-0.1677055269 1.012773479 0.1)
(-0.296897 1.01235 0.1)
(-0.03856813507 -1.013018463 0.1)
(-0.04011475261 -0.9664435174 0.1)
(0.002877665113 -0.9665251542 0.1)
(-0.1260408298 -0.9663747888 0.1)
(-0.08611644083 -0.9187937391 0.1)
(-0.09020937948 -0.870248577 0.1)
(-0.09508976125 -0.820811431 0.1)
(-0.1371070747 -0.8208654341 0.1)
(-0.1787853222 -0.8212390093 0.1)
(-0.1055410448 -0.7198824674 0.1)
(-0.1103330216 -0.6687765098 0.1)
(-0.114389962 -0.6175375549 0.1)
(-0.1560270981 -0.6167812655 0.1)
(-0.1978533645 -0.6159663176 0.1)
(-0.1194451774 -0.5156059365 0.1)
(-0.1202310621 -0.4653474049 0.1)
(-0.1200938165 -0.4155526721 0.1)
(-0.1623142875 -0.4129767604 0.1)
(-0.2041874367 -0.4110017181 0.1)
(-0.1158690343 -0.3192352045 0.1)
(-0.112396693 -0.2726635533 0.1)
(-0.1083931856 -0.2270289476 0.1)
(-0.1516426131 -0.2226647931 0.1)
(-0.1951812681 -0.2181258741 0.1)
(-0.1306375862 0.05726452813 0.1)
(-0.1284626666 0.08082484716 0.1)
(-0.1260773456 0.1048993372 0.1)
(-0.1474327997 0.1065865748 0.1)
(-0.1687822948 0.10824062 0.1)
(-0.04577627702 0.4675979329 0.1)
(-0.04357707768 0.5106221923 0.1)
(-0.08793640658 0.5128890877 0.1)
(-0.1321687164 0.5147197961 0.1)
(-0.04301912611 0.5947147954 0.1)
(-0.04474426119 0.6359276528 0.1)
(-0.04764822698 0.6767928236 0.1)
(-0.09253359114 0.6772998744 0.1)
(-0.1380850365 0.6771223722 0.1)
(-0.05627755438 0.758188491 0.1)
(-0.06145362471 0.7991010288 0.1)
(-0.06675383731 0.8404122361 0.1)
(-0.1111840604 0.8400592329 0.1)
(-0.1558304837 0.8393793769 0.1)
(-0.03598606527 0.9688107367 0.1)
(-0.08131972897 1.013163843 0.1)
(-0.03811676552 1.01333659 0.1)
(0.005250956983 1.013482008 0.1)
(-0.1245616445 1.01295269 0.1)
(0.1339874131 -1.013102657 0.1)
(0.1319198632 -0.9666899244 0.1)
(0.1748921531 -0.9667482042 0.1)
(0.04591571009 -0.9666320814 0.1)
(0.08527689464 -0.9193638656 0.1)
(0.08063136051 -0.8713595445 0.1)
(0.07530148507 -0.8226610133 0.1)
(0.03287017309 -0.8222654942 0.1)
(-0.009968495108 -0.8215848558 0.1)
(0.06431165585 -0.7239018918 0.1)
(0.05944190111 -0.6741330236 0.1)
(0.05542735169 -0.6243383046 0.1)
(0.01295560167 -0.6225704994 0.1)
(-0.02976097379 -0.6206128918 0.1)
(0.05083642951 -0.5254204203 0.1)
(0.05048254065 -0.4766480144 0.1)
(0.05142566367 -0.4285312052 0.1)
(0.008478961625 -0.425143917 0.1)
(-0.03450019434 -0.4217408652 0.1)
(0.0666357188 0.2541769612 0.1)
(0.06880610671 0.2768614633 0.1)
(0.04705478655 0.2787741372 0.1)
(0.0253231159 0.2806900093 0.1)
(0.1287405487 0.4538450614 0.1)
(0.1313833133 0.4980674355 0.1)
(0.08770456944 0.501568895 0.1)
(0.04427846753 0.5049891144 0.1)
(0.1329237424 0.5848923071 0.1)
(0.1317183862 0.6276532752 0.1)
(0.1292224312 0.6701103518 0.1)
(0.08465077509 0.6719464429 0.1)
(0.04085199799 0.6740126386 0.1)
(0.1209423539 0.7545425386 0.1)
(0.115664926 0.7967939652 0.1)
(0.1101148201 0.8392348767 0.1)
(0.06538456127 0.8395088386 0.1)
(0.02145720124 0.8401208718 0.1)
(0.13862117 0.9689207437 0.1)
(0.09238257326 1.013601779 0.1)
(0.1356236464 1.013522976 0.1)
(0.1788003383 1.013402253 0.1)
(0.04895572787 1.013604673 0.1)
(0.3061469372 -1.01314832 0.1)
(0.3037712837 -0.9669949737 0.1)
(0.346690232 -0.9670671366 0.1)
(0.2178720571 -0.9668330845 0.1)
(0.2570483922 -0.9201557135 0.1)
(0.2521962104 -0.8729707796 0.1)
(0.2467102353 -0.8254230118 0.1)
(0.2038852812 -0.8246849975 0.1)
(0.1610653677 -0.823988639 0.1)
(0.2355507628 -0.7295099148 0.1)
(0.2306581969 -0.6813299374 0.1)
(0.2266575114 -0.6331478709 0.1)
(0.1838689176 -0.6308815654 0.1)
(0.1410813656 -0.6286641985 0.1)
(0.222180546 -0.5372646593 0.1)
(0.2219204641 -0.4897911017 0.1)
(0.2229786254 -0.4427536995 0.1)
(0.1801309163 -0.4391658561 0.1)
(0.1372513977 -0.4355971358 0.1)
(0.2397295865 0.2383249043 0.1)
(0.2418380364 0.2609739771 0.1)
(0.2202258812 0.2629902372 0.1)
(0.1986189612 0.2649979772 0.1)
(0.3014255384 0.4380866962 0.1)
(0.3042743902 0.4829590329 0.1)
(0.2610975215 0.4868571803 0.1)
(0.2178559444 0.4906738102 0.1)
(0.3063892635 0.5718794841 0.1)
(0.3054538966 0.6160103652 0.1)
(0.3031873385 0.659966188 0.1)
(0.2598517831 0.6626681255 0.1)
(0.2162786643 0.6652218238 0.1)
(0.2951743858 0.7476179226 0.1)
(0.2898954009 0.7914149192 0.1)
(0.2841978303 0.835299046 0.1)
(0.2407823717 0.8364066413 0.1)
(0.197083839 0.8373719585 0.1)
(0.3118655524 0.9678600665 0.1)
(0.2654975754 1.013171594 0.1)
(0.3086879389 1.012994214 0.1)
(0.351738059 1.012797723 0.1)
(0.2221908605 1.013315318 0.1)
(0.4780415612 -1.013206016 0.1)
(0.4753654819 -0.9673536567 0.1)
(0.5182621682 -0.9674811502 0.1)
(0.3895768578 -0.967147806 0.1)
(0.4284379781 -0.9211585298 0.1)
(0.4233944202 -0.8749511963 0.1)
(0.4177670707 -0.8286197338 0.1)
(0.3750383163 -0.827781381 0.1)
(0.3323054327 -0.826975009 0.1)
(0.4064606046 -0.7356474192 0.1)
(0.401553997 -0.6890692291 0.1)
(0.3975684708 -0.6424888615 0.1)
(0.3548727394 -0.6401111624 0.1)
(0.31217397 -0.6377674044 0.1)
(0.3931978066 -0.5495427428 0.1)
(0.393018952 -0.5032802507 0.1)
(0.3941741461 -0.4572148761 0.1)
(0.3513829964 -0.4535793813 0.1)
(0.3086020854 -0.4499621991 0.1)
(0.412261162 0.2219555827 0.1)
(0.4143382415 0.2445804501 0.1)
(0.3928367141 0.2466416821 0.1)
(0.3713124699 0.2487070305 0.1)
(0.4733843873 0.4217001851 0.1)
(0.476054948 0.4670752688 0.1)
(0.4332091862 0.4710620444 0.1)
(0.3903221594 0.4750242605 0.1)
(0.477647102 0.5578881932 0.1)
(0.4765051232 0.603303735 0.1)
(0.4743991787 0.6487824032 0.1)
(0.4319287055 0.6515670348 0.1)
(0.3890924105 0.6543390266 0.1)
(0.4663928456 0.7396631849 0.1)
(0.4611917587 0.7850798189 0.1)
(0.4556126419 0.8304848775 0.1)
(0.4130445721 0.8316818065 0.1)
(0.3701313952 0.8328630976 0.1)
(0.4833487766 0.9664776721 0.1)
(0.4377497276 1.012412432 0.1)
(0.4806242366 1.012203867 0.1)
(0.5234992909 1.012028035 0.1)
(0.3947896564 1.012610837 0.1)
(0.6497910267 -1.013314559 0.1)
(0.6467518809 -0.9679870714 0.1)
(0.6897014587 -0.9681710111 0.1)
(0.5611456088 -0.9676245135 0.1)
(0.599736598 -0.9224954158 0.1)
(0.5944900631 -0.8773501488 0.1)
(0.5887159777 -0.8323040338 0.1)
(0.5459920016 -0.8313321189 0.1)
(0.5032640278 -0.8303951354 0.1)
(0.5772665798 -0.7423487137 0.1)
(0.5723540854 -0.6973752727 0.1)
(0.5683985744 -0.6523768647 0.1)
(0.5257031599 -0.6498498336 0.1)
(0.4830042363 -0.6473594455 0.1)
(0.5641740677 -0.5622563682 0.1)
(0.5641022011 -0.5171191118 0.1)
(0.5653800791 -0.4719193742 0.1)
(0.522586077 -0.4682189222 0.1)
(0.4797864736 -0.4645347147 0.1)
(0.5841597456 0.2052151528 0.1)
(0.5862124453 0.2278262135 0.1)
(0.5647549966 0.2299295534 0.1)
(0.5432732296 0.2320522226 0.1)
(0.6444360071 0.4054020713 0.1)
(0.6466648723 0.4515410724 0.1)
(0.60408889 0.4553438805 0.1)
(0.5614890107 0.4592120844 0.1)
(0.6475499172 0.5446333651 0.1)
(0.6460725548 0.5915146581 0.1)
(0.6433558709 0.6385361808 0.1)
(0.6016424662 0.6408666819 0.1)
(0.559275425 0.6434285489 0.1)
(0.6354243019 0.7325222073 0.1)
(0.6303193475 0.7794723394 0.1)
(0.6249551914 0.8262709484 0.1)
(0.5827515636 0.8272189057 0.1)
(0.5402774976 0.8282434972 0.1)
(0.6539986602 0.9654637096 0.1)
(0.6093418958 1.011685124 0.1)
(0.652196602 1.01151554 0.1)
(0.6951734207 1.011352946 0.1)
(0.5664417141 1.011853665 0.1)
(0.8213400846 -1.013667042 0.1)
(0.817893858 -0.969020522 0.1)
(0.8608408197 -0.96928009 0.1)
(0.7325226635 -0.9684015227 0.1)
(0.7711774989 -0.9241518276 0.1)
(0.7657896423 -0.8801397049 0.1)
(0.7593082426 -0.8366238686 0.1)
(0.7167067805 -0.835469129 0.1)
(0.6740647134 -0.8343671358 0.1)
(0.7477207353 -0.7497682457 0.1)
(0.7428204769 -0.7063992535 0.1)
(0.7389228588 -0.6629519686 0.1)
(0.696330205 -0.6602290922 0.1)
(0.6537033207 -0.6575605652 0.1)
(0.7349245577 -0.5755166459 0.1)
(0.7350064366 -0.5313970541 0.1)
(0.7364572493 -0.4869351249 0.1)
(0.6937021324 -0.4831433115 0.1)
(0.6509273249 -0.4793769846 0.1)
(0.7555803213 0.1879988485 0.1)
(0.814716802 0.3898549536 0.1)
(0.8164064661 0.4371409445 0.1)
(0.774089797 0.4405848828 0.1)
(0.7316025234 0.4441945505 0.1)
(0.8162554675 0.5331344339 0.1)
(0.8143388005 0.581646804 0.1)
(0.8112874494 0.630273963 0.1)
(0.7695550665 0.6320470973 0.1)
(0.7277766665 0.6339932958 0.1)
(0.8026060311 0.7275376737 0.1)
(0.7975579711 0.77581304 0.1)
(0.792546685 0.8237790561 0.1)
(0.7507259038 0.8242196089 0.1)
(0.7090979979 0.8247295448 0.1)
(0.8247826535 0.9647998776 0.1)
(0.7811583305 1.010989335 0.1)
(0.824205 1.01078 0.1)
(0.867232 1.01058 0.1)
(0.7381398618 1.011177416 0.1)
(0.9936204787 -1.012711961 0.1)
(0.9896056128 -0.9689611951 0.1)
(1.031909248 -0.9663836879 0.1)
(0.9033212725 -0.96975203 0.1)
(0.941107817 -0.9269294802 0.1)
(0.9353195157 -0.8842699037 0.1)
(0.9291842157 -0.8420697786 0.1)
(0.886718132 -0.8405593054 0.1)
(0.8447552327 -0.8389776789 0.1)
(0.9175164672 -0.7584035224 0.1)
(0.9127103503 -0.7166142431 0.1)
(0.9089773891 -0.6746508234 0.1)
(0.8666454581 -0.6714684028 0.1)
(0.8240487061 -0.668585413 0.1)
(0.9054571761 -0.5896533632 0.1)
(0.9058194622 -0.5463853028 0.1)
(0.9075566048 -0.5024765408 0.1)
(0.8647091005 -0.4985074229 0.1)
(0.8219625242 -0.4946152841 0.1)
(0.8678842097 -0.2137484627 0.1)
(0.8689158411 -0.2024996629 0.1)
(0.8581891289 -0.201534549 0.1)
(0.8474889317 -0.2005759124 0.1)
(0.8882979034 -0.0192103122 0.1)
(0.889215299 -0.008121141417 0.1)
(0.8785738376 -0.006886651383 0.1)
(0.9711122671 0.1878061223 0.1)
(0.9751690499 0.233444139 0.1)
(0.9326029559 0.2379818351 0.1)
(0.9819312291 0.3277887292 0.1)
(0.9839631828 0.3759833788 0.1)
(0.9849367216 0.4249662063 0.1)
(0.9428390403 0.4277994903 0.1)
(0.9008480276 0.430660665 0.1)
(0.9834087668 0.5247411065 0.1)
(0.9808915612 0.5749677904 0.1)
(0.9779770749 0.6249019744 0.1)
(0.9365583993 0.6258192972 0.1)
(0.8948310322 0.6271359314 0.1)
(0.9695901533 0.7246446496 0.1)
(0.965023858 0.7738952235 0.1)
(0.9607124685 0.8226307209 0.1)
(0.9187216258 0.8227621456 0.1)
(0.8765464952 0.823068912 0.1)
(0.996255 0.964048 0.1)
(0.953252 1.01014 0.1)
(0.996254 1.00991 0.1)
(1.03926 1.00967 0.1)
(0.91025 1.01035 0.1)
(1.166003628 -1.009690936 0.1)
(1.162572672 -0.9662869403 0.1)
(1.20645613 -0.9659208601 0.1)
(1.075255706 -0.9665156066 0.1)
(1.113937385 -0.9241109593 0.1)
(1.108273897 -0.8825785893 0.1)
(1.102252375 -0.8416953719 0.1)
(1.058273096 -0.841151878 0.1)
(1.014702287 -0.8402719701 0.1)
(1.090734849 -0.7610025194 0.1)
(1.085947841 -0.7207470942 0.1)
(1.08219026 -0.6802643395 0.1)
(1.038193469 -0.678333783 0.1)
(0.9946557634 -0.6759603866 0.1)
(1.078482082 -0.5978462214 0.1)
(1.07868724 -0.5555845947 0.1)
(1.080228873 -0.5124504288 0.1)
(1.036884409 -0.5090859845 0.1)
(0.993772281 -0.505447484 0.1)
(1.079852562 -0.03139357772 0.1)
(1.08196971 -0.008574983575 0.1)
(1.060541744 -0.006586860056 0.1)
(1.141676123 0.1704873913 0.1)
(1.145414084 0.2177285555 0.1)
(1.102680743 0.2210785004 0.1)
(1.060005912 0.2243723731 0.1)
(1.150795013 0.3154869723 0.1)
(1.152057151 0.3658092993 0.1)
(1.152474039 0.416424965 0.1)
(1.110898927 0.4181153945 0.1)
(1.068858699 0.4200759927 0.1)
(1.149965734 0.5192300873 0.1)
(1.147395662 0.5714248409 0.1)
(1.143852742 0.6229006226 0.1)
(1.102292444 0.62329864 0.1)
(1.061077597 0.6234861008 0.1)
(1.135691607 0.7244437198 0.1)
(1.131782881 0.7743040791 0.1)
(1.128501772 0.8232081151 0.1)
(1.086580273 0.8229369126 0.1)
(1.044428138 0.8228478721 0.1)
(1.16822 0.962976 0.1)
(1.12529 1.00921 0.1)
(1.16826 1.00895 0.1)
(1.21123 1.00864 0.1)
(1.08228 1.00943 0.1)
(1.340069586 -1.008505244 0.1)
(1.33844036 -0.964101508 0.1)
(1.382305982 -0.9634377365 0.1)
(1.25044344 -0.9654072507 0.1)
(1.290956927 -0.9220684066 0.1)
(1.28651019 -0.8804921916 0.1)
(1.281487376 -0.8398576748 0.1)
(1.236277354 -0.8409433507 0.1)
(1.191290419 -0.8416127804 0.1)
(1.271161191 -0.7604796981 0.1)
(1.266513819 -0.7212415726 0.1)
(1.262575377 -0.6819771507 0.1)
(1.216851209 -0.6825880364 0.1)
(1.171522765 -0.6824665036 0.1)
(1.257573481 -0.6024899431 0.1)
(1.256716073 -0.5619019217 0.1)
(1.256975513 -0.5205698781 0.1)
(1.212175284 -0.5196383896 0.1)
(1.167808146 -0.5178728412 0.1)
(1.260520099 -0.4354273413 0.1)
(1.263515264 -0.3916297452 0.1)
(1.267079321 -0.3471248853 0.1)
(1.223846957 -0.3439008474 0.1)
(1.275166103 -0.2566264576 0.1)
(1.279391805 -0.2110128606 0.1)
(1.28362611 -0.1653755727 0.1)
(1.240760219 -0.1613984018 0.1)
(1.292096729 -0.0740855359 0.1)
(1.296342981 -0.02827067304 0.1)
(1.300574307 0.01791202516 0.1)
(1.257697751 0.02117716458 0.1)
(1.308658338 0.1121920014 0.1)
(1.312241683 0.1606007742 0.1)
(1.315299313 0.2099598187 0.1)
(1.273018993 0.2107463456 0.1)
(1.230595373 0.2124084188 0.1)
(1.319191694 0.3114363314 0.1)
(1.319777083 0.3633378028 0.1)
(1.319372812 0.4157756616 0.1)
(1.277931361 0.4149639046 0.1)
(1.236255856 0.4149118721 0.1)
(1.315754548 0.5212945113 0.1)
(1.312809981 0.5738375479 0.1)
(1.30940993 0.625875459 0.1)
(1.267963419 0.6247069717 0.1)
(1.226331365 0.6239664175 0.1)
(1.302499646 0.7274475215 0.1)
(1.299702372 0.7765766144 0.1)
(1.297831336 0.824399536 0.1)
(1.255209942 0.8240327444 0.1)
(1.212939672 0.8233928572 0.1)
(1.34028 0.9625 0.1)
(1.29722 1.00833 0.1)
(1.34028 1.00833 0.1)
(1.38333 1.00833 0.1)
(1.25417 1.00833 0.1)
(1.5125 -1.00833 0.1)
(1.5125 -0.9625 0.1)
(1.55556 -0.9625 0.1)
(1.425991133 -0.9628832329 0.1)
(1.468349042 -0.9178170264 0.1)
(1.466155696 -0.8744652294 0.1)
(1.4631163 -0.8323458384 0.1)
(1.41777909 -0.8345316449 0.1)
(1.372324341 -0.8365822838 0.1)
(1.455719618 -0.7510107039 0.1)
(1.451936131 -0.711340046 0.1)
(1.448431586 -0.6720144371 0.1)
(1.401687543 -0.6755661856 0.1)
(1.355062933 -0.6784526869 0.1)
(1.443026689 -0.5934815395 0.1)
(1.441391288 -0.5538687531 0.1)
(1.440560908 -0.5138023709 0.1)
(1.394095731 -0.5171806959 0.1)
(1.347961191 -0.5194227831 0.1)
(1.441315032 -0.4318656338 0.1)
(1.442802563 -0.3898649743 0.1)
(1.44491891 -0.3471503654 0.1)
(1.399759312 -0.3493533246 0.1)
(1.355031826 -0.3500248643 0.1)
(1.450621104 -0.2596458434 0.1)
(1.453995808 -0.2149180224 0.1)
(1.457588335 -0.1695730085 0.1)
(1.413625027 -0.171058105 0.1)
(1.369952023 -0.1707912872 0.1)
(1.465070544 -0.0770307333 0.1)
(1.468784466 -0.02978133717 0.1)
(1.472354443 0.01817795095 0.1)
(1.429381558 0.01584292337 0.1)
(1.386414513 0.01507360709 0.1)
(1.478632324 0.1163814197 0.1)
(1.481110972 0.166650804 0.1)
(1.483001441 0.2176545603 0.1)
(1.441293902 0.2140093636 0.1)
(1.399438312 0.2115163684 0.1)
(1.48468174 0.3214805669 0.1)
(1.48438931 0.3739964512 0.1)
(1.483364972 0.4266473245 0.1)
(1.442573294 0.422870402 0.1)
(1.401665042 0.4197515027 0.1)
(1.479524528 0.5314009988 0.1)
(1.477052932 0.5830036855 0.1)
(1.4745273 0.6337700223 0.1)
(1.433228816 0.631485135 0.1)
(1.391982849 0.6293368106 0.1)
(1.470460254 0.7319611409 0.1)
(1.469520215 0.7790657035 0.1)
(1.46944 0.825 0.1)
(1.42639 0.825 0.1)
(1.383371282 0.8249551383 0.1)
(1.5125 0.9625 0.1)
(1.46944 1.00833 0.1)
(1.5125 1.00833 0.1)
(1.55556 1.00833 0.1)
(1.42639 1.00833 0.1)
(1.68472 -1.00833 0.1)
(1.68472 -0.9625 0.1)
(1.72778 -0.9625 0.1)
(1.59861 -0.9625 0.1)
(1.64167 -0.916667 0.1)
(1.64167 -0.870833 0.1)
(1.641404486 -0.825365966 0.1)
(1.597491468 -0.8264820462 0.1)
(1.553084008 -0.8281467809 0.1)
(1.638689126 -0.7379288214 0.1)
(1.636675153 -0.6956744177 0.1)
(1.634514677 -0.6541367607 0.1)
(1.588364203 -0.658751388 0.1)
(1.541897525 -0.663423191 0.1)
(1.630486714 -0.5723756112 0.1)
(1.62890892 -0.5317444014 0.1)
(1.627758667 -0.4910271964 0.1)
(1.581003363 -0.4977375999 0.1)
(1.534143492 -0.5039249467 0.1)
(1.626946956 -0.4087077983 0.1)
(1.627310197 -0.3668485349 0.1)
(1.628157599 -0.32439512 0.1)
(1.582184001 -0.3318351294 0.1)
(1.536249636 -0.3382599213 0.1)
(1.631094296 -0.2374466864 0.1)
(1.633041788 -0.1928694782 0.1)
(1.635197592 -0.1475242001 0.1)
(1.590686591 -0.1551014896 0.1)
(1.546203656 -0.1614596115 0.1)
(1.639765398 -0.05449967862 0.1)
(1.641986312 -0.006831951227 0.1)
(1.644037963 0.04157697841 0.1)
(1.6011902 0.03398082691 0.1)
(1.558290461 0.02739004805 0.1)
(1.647278602 0.1404230158 0.1)
(1.648317169 0.1907063044 0.1)
(1.648897077 0.241414058 0.1)
(1.607499632 0.2344899137 0.1)
(1.566086282 0.2280621921 0.1)
(1.648627488 0.3435032252 0.1)
(1.64783705 0.3945224485 0.1)
(1.646713316 0.4452558059 0.1)
(1.605705924 0.4404868055 0.1)
(1.564872131 0.4356423439 0.1)
(1.644011929 0.5450193829 0.1)
(1.642792172 0.5936406751 0.1)
(1.641939243 0.6411800369 0.1)
(1.599596084 0.6399478666 0.1)
(1.55764014 0.6381739723 0.1)
(1.64167 0.733333 0.1)
(1.64167 0.779167 0.1)
(1.64167 0.825 0.1)
(1.59861 0.825 0.1)
(1.55556 0.825 0.1)
(1.68472 0.9625 0.1)
(1.64167 1.00833 0.1)
(1.68472 1.00833 0.1)
(1.72778 1.00833 0.1)
(1.59861 1.00833 0.1)
(1.85694 -1.00833 0.1)
(1.85694 -0.9625 0.1)
(1.9 -0.9625 0.1)
(1.77083 -0.9625 0.1)
(1.81389 -0.916667 0.1)
(1.81389 -0.870833 0.1)
(1.81389 -0.825 0.1)
(1.77083 -0.825 0.1)
(1.72778 -0.825 0.1)
(1.81389 -0.733333 0.1)
(1.81389 -0.6875 0.1)
(1.813775024 -0.6419008081 0.1)
(1.769926712 -0.6434408666 0.1)
(1.725390054 -0.6461877651 0.1)
(1.812692408 -0.552827085 0.1)
(1.811980609 -0.5090641749 0.1)
(1.811301867 -0.4655971317 0.1)
(1.766126923 -0.4710038127 0.1)
(1.720427169 -0.4772996033 0.1)
(1.810344226 -0.3789318254 0.1)
(1.810156743 -0.3354506822 0.1)
(1.810187499 -0.291712056 0.1)
(1.765127635 -0.2994851822 0.1)
(1.719726488 -0.3078179732 0.1)
(1.810860606 -0.2030933918 0.1)
(1.811443213 -0.1580831852 0.1)
(1.812131028 -0.1125527308 0.1)
(1.768145386 -0.1211201908 0.1)
(1.723980204 -0.1301136682 0.1)
(1.81360647 -0.0199021438 0.1)
(1.814282673 0.02717912989 0.1)
(1.814848967 0.07470261289 0.1)
(1.772188174 0.0668464174 0.1)
(1.729524474 0.0584135619 0.1)
(1.815498305 0.1707600884 0.1)
(1.815540807 0.2190857696 0.1)
(1.815399676 0.2674367463 0.1)
(1.773495316 0.2619122278 0.1)
(1.731829444 0.2554826906 0.1)
(1.814716897 0.3636172693 0.1)
(1.814312185 0.4111232876 0.1)
(1.813996357 0.4580219343 0.1)
(1.771528449 0.4563520641 0.1)
(1.729544502 0.4534765319 0.1)
(1.81389 0.55 0.1)
(1.81389 0.595833 0.1)
(1.81389 0.641667 0.1)
(1.77083 0.641667 0.1)
(1.72778 0.641667 0.1)
(1.81389 0.733333 0.1)
(1.81389 0.779167 0.1)
(1.81389 0.825 0.1)
(1.77083 0.825 0.1)
(1.72778 0.825 0.1)
(1.85694 0.9625 0.1)
(1.81389 1.00833 0.1)
(1.85694 1.00833 0.1)
(1.9 1.00833 0.1)
(1.77083 1.00833 0.1)
(2.02917 -1.00833 0.1)
(2.02917 -0.9625 0.1)
(2.07222 -0.9625 0.1)
(1.94306 -0.9625 0.1)
(1.98611 -0.916667 0.1)
(1.98611 -0.870833 0.1)
(1.98611 -0.825 0.1)
(1.94306 -0.825 0.1)
(1.9 -0.825 0.1)
(1.98611 -0.733333 0.1)
(1.98611 -0.6875 0.1)
(1.98611 -0.641667 0.1)
(1.94306 -0.641667 0.1)
(1.9 -0.641667 0.1)
(1.98611 -0.55 0.1)
(1.98611 -0.504167 0.1)
(1.98611 -0.458333 0.1)
(1.94306 -0.458333 0.1)
(1.899793643 -0.4589557679 0.1)
(1.98611 -0.366667 0.1)
(1.98611 -0.320833 0.1)
(1.986109975 -0.2750001299 0.1)
(1.942820624 -0.2762264269 0.1)
(1.899055411 -0.2796612052 0.1)
(1.986094148 -0.1834571854 0.1)
(1.986091235 -0.1376935565 0.1)
(1.986095283 -0.09188889877 0.1)
(1.942887878 -0.09415687758 0.1)
(1.899491637 -0.09861960138 0.1)
(1.986109366 -0.0001335553254 0.1)
(1.986111361 0.04578098106 0.1)
(1.986110078 0.09166531749 0.1)
(1.94313448 0.09038094572 0.1)
(1.900278361 0.08688681087 0.1)
(1.98611 0.183333 0.1)
(1.98611 0.229167 0.1)
(1.98611 0.275 0.1)
(1.94306 0.275 0.1)
(1.900134559 0.2742931707 0.1)
(1.98611 0.366667 0.1)
(1.98611 0.4125 0.1)
(1.98611 0.458333 0.1)
(1.94306 0.458333 0.1)
(1.9 0.458333 0.1)
(1.98611 0.55 0.1)
(1.98611 0.595833 0.1)
(1.98611 0.641667 0.1)
(1.94306 0.641667 0.1)
(1.9 0.641667 0.1)
(1.98611 0.733333 0.1)
(1.98611 0.779167 0.1)
(1.98611 0.825 0.1)
(1.94306 0.825 0.1)
(1.9 0.825 0.1)
(2.02917 0.9625 0.1)
(1.98611 1.00833 0.1)
(2.02917 1.00833 0.1)
(2.07222 1.00833 0.1)
(1.94306 1.00833 0.1)
(2.20139 -1.00833 0.1)
(2.20139 -0.9625 0.1)
(2.24444 -0.9625 0.1)
(2.11528 -0.9625 0.1)
(2.15833 -0.916667 0.1)
(2.15833 -0.870833 0.1)
(2.15833 -0.825 0.1)
(2.11528 -0.825 0.1)
(2.07222 -0.825 0.1)
(2.15833 -0.733333 0.1)
(2.15833 -0.6875 0.1)
(2.15833 -0.641667 0.1)
(2.11528 -0.641667 0.1)
(2.07222 -0.641667 0.1)
(2.15833 -0.55 0.1)
(2.15833 -0.504167 0.1)
(2.15833 -0.458333 0.1)
(2.11528 -0.458333 0.1)
(2.07222 -0.458333 0.1)
(2.15833 -0.366667 0.1)
(2.15833 -0.320833 0.1)
(2.15833 -0.275 0.1)
(2.11528 -0.275 0.1)
(2.07222 -0.275 0.1)
(2.15833 -0.183333 0.1)
(2.15833 -0.1375 0.1)
(2.15833 -0.0916667 0.1)
(2.11528 -0.0916667 0.1)
(2.07222 -0.0916667 0.1)
(2.15833 0 0.1)
(2.15833 0.0458333 0.1)
(2.15833 0.0916667 0.1)
(2.11528 0.0916667 0.1)
(2.07222 0.0916667 0.1)
(2.15833 0.183333 0.1)
(2.15833 0.229167 0.1)
(2.15833 0.275 0.1)
(2.11528 0.275 0.1)
(2.07222 0.275 0.1)
(2.15833 0.366667 0.1)
(2.15833 0.4125 0.1)
(2.15833 0.458333 0.1)
(2.11528 0.458333 0.1)
(2.07222 0.458333 0.1)
(2.15833 0.55 0.1)
(2.15833 0.595833 0.1)
(2.15833 0.641667 0.1)
(2.11528 0.641667 0.1)
(2.07222 0.641667 0.1)
(2.15833 0.733333 0.1)
(2.15833 0.779167 0.1)
(2.15833 0.825 0.1)
(2.11528 0.825 0.1)
(2.07222 0.825 0.1)
(2.20139 0.9625 0.1)
(2.15833 1.00833 0.1)
(2.20139 1.00833 0.1)
(2.24444 1.00833 0.1)
(2.11528 1.00833 0.1)
(2.37361 -1.00833 0.1)
(2.37361 -0.9625 0.1)
(2.41667 -0.9625 0.1)
(2.2875 -0.9625 0.1)
(2.33056 -0.916667 0.1)
(2.33056 -0.870833 0.1)
(2.33056 -0.825 0.1)
(2.2875 -0.825 0.1)
(2.24444 -0.825 0.1)
(2.33056 -0.733333 0.1)
(2.33056 -0.6875 0.1)
(2.33056 -0.641667 0.1)
(2.2875 -0.641667 0.1)
(2.24444 -0.641667 0.1)
(2.33056 -0.55 0.1)
(2.33056 -0.504167 0.1)
(2.33056 -0.458333 0.1)
(2.2875 -0.458333 0.1)
(2.24444 -0.458333 0.1)
(2.33056 -0.366667 0.1)
(2.33056 -0.320833 0.1)
(2.33056 -0.275 0.1)
(2.2875 -0.275 0.1)
(2.24444 -0.275 0.1)
(2.33056 -0.183333 0.1)
(2.33056 -0.1375 0.1)
(2.33056 -0.0916667 0.1)
(2.2875 -0.0916667 0.1)
(2.24444 -0.0916667 0.1)
(2.33056 -9.25186e-18 0.1)
(2.33056 0.0458333 0.1)
(2.33056 0.0916667 0.1)
(2.2875 0.0916667 0.1)
(2.24444 0.0916667 0.1)
(2.33056 0.183333 0.1)
(2.33056 0.229167 0.1)
(2.33056 0.275 0.1)
(2.2875 0.275 0.1)
(2.24444 0.275 0.1)
(2.33056 0.366667 0.1)
(2.33056 0.4125 0.1)
(2.33056 0.458333 0.1)
(2.2875 0.458333 0.1)
(2.24444 0.458333 0.1)
(2.33056 0.55 0.1)
(2.33056 0.595833 0.1)
(2.33056 0.641667 0.1)
(2.2875 0.641667 0.1)
(2.24444 0.641667 0.1)
(2.33056 0.733333 0.1)
(2.33056 0.779167 0.1)
(2.33056 0.825 0.1)
(2.2875 0.825 0.1)
(2.24444 0.825 0.1)
(2.37361 0.9625 0.1)
(2.33056 1.00833 0.1)
(2.37361 1.00833 0.1)
(2.41667 1.00833 0.1)
(2.2875 1.00833 0.1)
(2.54583 -1.00833 0.1)
(2.54583 -0.9625 0.1)
(2.58889 -0.9625 0.1)
(2.45972 -0.9625 0.1)
(2.50278 -0.916667 0.1)
(2.50278 -0.870833 0.1)
(2.50278 -0.825 0.1)
(2.45972 -0.825 0.1)
(2.41667 -0.825 0.1)
(2.50278 -0.733333 0.1)
(2.50278 -0.6875 0.1)
(2.50278 -0.641667 0.1)
(2.45972 -0.641667 0.1)
(2.41667 -0.641667 0.1)
(2.50278 -0.55 0.1)
(2.50278 -0.504167 0.1)
(2.50278 -0.458333 0.1)
(2.45972 -0.458333 0.1)
(2.41667 -0.458333 0.1)
(2.50278 -0.366667 0.1)
(2.50278 -0.320833 0.1)
(2.50278 -0.275 0.1)
(2.45972 -0.275 0.1)
(2.41667 -0.275 0.1)
(2.50278 -0.183333 0.1)
(2.50278 -0.1375 0.1)
(2.50278 -0.0916667 0.1)
(2.45972 -0.0916667 0.1)
(2.41667 -0.0916667 0.1)
(2.50278 -1.85037e-17 0.1)
(2.50278 0.0458333 0.1)
(2.50278 0.0916667 0.1)
(2.45972 0.0916667 0.1)
(2.41667 0.0916667 0.1)
(2.50278 0.183333 0.1)
(2.50278 0.229167 0.1)
(2.50278 0.275 0.1)
(2.45972 0.275 0.1)
(2.41667 0.275 0.1)
(2.50278 0.366667 0.1)
(2.50278 0.4125 0.1)
(2.50278 0.458333 0.1)
(2.45972 0.458333 0.1)
(2.41667 0.458333 0.1)
(2.50278 0.55 0.1)
(2.50278 0.595833 0.1)
(2.50278 0.641667 0.1)
(2.45972 0.641667 0.1)
(2.41667 0.641667 0.1)
(2.50278 0.733333 0.1)
(2.50278 0.779167 0.1)
(2.50278 0.825 0.1)
(2.45972 0.825 0.1)
(2.41667 0.825 0.1)
(2.54583 0.9625 0.1)
(2.50278 1.00833 0.1)
(2.54583 1.00833 0.1)
(2.58889 1.00833 0.1)
(2.45972 1.00833 0.1)
(2.71806 -1.00833 0.1)
(2.71806 -0.9625 0.1)
(2.76111 -0.9625 0.1)
(2.63194 -0.9625 0.1)
(2.675 -0.916667 0.1)
(2.675 -0.870833 0.1)
(2.675 -0.825 0.1)
(2.63194 -0.825 0.1)
(2.58889 -0.825 0.1)
(2.675 -0.733333 0.1)
(2.675 -0.6875 0.1)
(2.675 -0.641667 0.1)
(2.63194 -0.641667 0.1)
(2.58889 -0.641667 0.1)
(2.675 -0.55 0.1)
(2.675 -0.504167 0.1)
(2.675 -0.458333 0.1)
(2.63194 -0.458333 0.1)
(2.58889 -0.458333 0.1)
(2.675 -0.366667 0.1)
(2.675 -0.320833 0.1)
(2.675 -0.275 0.1)
(2.63194 -0.275 0.1)
(2.58889 -0.275 0.1)
(2.675 -0.183333 0.1)
(2.675 -0.1375 0.1)
(2.675 -0.0916667 0.1)
(2.63194 -0.0916667 0.1)
(2.58889 -0.0916667 0.1)
(2.675 0 0.1)
(2.675 0.0458333 0.1)
(2.675 0.0916667 0.1)
(2.63194 0.0916667 0.1)
(2.58889 0.0916667 0.1)
(2.675 0.183333 0.1)
(2.675 0.229167 0.1)
(2.675 0.275 0.1)
(2.63194 0.275 0.1)
(2.58889 0.275 0.1)
(2.675 0.366667 0.1)
(2.675 0.4125 0.1)
(2.675 0.458333 0.1)
(2.63194 0.458333 0.1)
(2.58889 0.458333 0.1)
(2.675 0.55 0.1)
(2.675 0.595833 0.1)
(2.675 0.641667 0.1)
(2.63194 0.641667 0.1)
(2.58889 0.641667 0.1)
(2.675 0.733333 0.1)
(2.675 0.779167 0.1)
(2.675 0.825 0.1)
(2.63194 0.825 0.1)
(2.58889 0.825 0.1)
(2.71806 0.9625 0.1)
(2.675 1.00833 0.1)
(2.71806 1.00833 0.1)
(2.76111 1.00833 0.1)
(2.63194 1.00833 0.1)
(2.89028 -1.00833 0.1)
(2.89028 -0.9625 0.1)
(2.93333 -0.9625 0.1)
(2.80417 -0.9625 0.1)
(2.84722 -0.916667 0.1)
(2.84722 -0.870833 0.1)
(2.84722 -0.825 0.1)
(2.80417 -0.825 0.1)
(2.76111 -0.825 0.1)
(2.84722 -0.733333 0.1)
(2.84722 -0.6875 0.1)
(2.84722 -0.641667 0.1)
(2.80417 -0.641667 0.1)
(2.76111 -0.641667 0.1)
(2.84722 -0.55 0.1)
(2.84722 -0.504167 0.1)
(2.84722 -0.458333 0.1)
(2.80417 -0.458333 0.1)
(2.76111 -0.458333 0.1)
(2.84722 -0.366667 0.1)
(2.84722 -0.320833 0.1)
(2.84722 -0.275 0.1)
(2.80417 -0.275 0.1)
(2.76111 -0.275 0.1)
(2.84722 -0.183333 0.1)
(2.84722 -0.1375 0.1)
(2.84722 -0.0916667 0.1)
(2.80417 -0.0916667 0.1)
(2.76111 -0.0916667 0.1)
(2.84722 1.85037e-17 0.1)
(2.84722 0.0458333 0.1)
(2.84722 0.0916667 0.1)
(2.80417 0.0916667 0.1)
(2.76111 0.0916667 0.1)
(2.84722 0.183333 0.1)
(2.84722 0.229167 0.1)
(2.84722 0.275 0.1)
(2.80417 0.275 0.1)
(2.76111 0.275 0.1)
(2.84722 0.366667 0.1)
(2.84722 0.4125 0.1)
(2.84722 0.458333 0.1)
(2.80417 0.458333 0.1)
(2.76111 0.458333 0.1)
(2.84722 0.55 0.1)
(2.84722 0.595833 0.1)
(2.84722 0.641667 0.1)
(2.80417 0.641667 0.1)
(2.76111 0.641667 0.1)
(2.84722 0.733333 0.1)
(2.84722 0.779167 0.1)
(2.84722 0.825 0.1)
(2.80417 0.825 0.1)
(2.76111 0.825 0.1)
(2.89028 0.9625 0.1)
(2.84722 1.00833 0.1)
(2.89028 1.00833 0.1)
(2.93333 1.00833 0.1)
(2.80417 1.00833 0.1)
(3.0625 -1.00833 0.1)
(3.0625 -0.9625 0.1)
(3.10556 -0.9625 0.1)
(2.97639 -0.9625 0.1)
(3.01944 -0.916667 0.1)
(3.01944 -0.870833 0.1)
(3.01944 -0.825 0.1)
(2.97639 -0.825 0.1)
(2.93333 -0.825 0.1)
(3.01944 -0.733333 0.1)
(3.01944 -0.6875 0.1)
(3.01944 -0.641667 0.1)
(2.97639 -0.641667 0.1)
(2.93333 -0.641667 0.1)
(3.01944 -0.55 0.1)
(3.01944 -0.504167 0.1)
(3.01944 -0.458333 0.1)
(2.97639 -0.458333 0.1)
(2.93333 -0.458333 0.1)
(3.01944 -0.366667 0.1)
(3.01944 -0.320833 0.1)
(3.01944 -0.275 0.1)
(2.97639 -0.275 0.1)
(2.93333 -0.275 0.1)
(3.01944 -0.183333 0.1)
(3.01944 -0.1375 0.1)
(3.01944 -0.0916667 0.1)
(2.97639 -0.0916667 0.1)
(2.93333 -0.0916667 0.1)
(3.01944 9.25186e-18 0.1)
(3.01944 0.0458333 0.1)
(3.01944 0.0916667 0.1)
(2.97639 0.0916667 0.1)
(2.93333 0.0916667 0.1)
(3.01944 0.183333 0.1)
(3.01944 0.229167 0.1)
(3.01944 0.275 0.1)
(2.97639 0.275 0.1)
(2.93333 0.275 0.1)
(3.01944 0.366667 0.1)
(3.01944 0.4125 0.1)
(3.01944 0.458333 0.1)
(2.97639 0.458333 0.1)
(2.93333 0.458333 0.1)
(3.01944 0.55 0.1)
(3.01944 0.595833 0.1)
(3.01944 0.641667 0.1)
(2.97639 0.641667 0.1)
(2.93333 0.641667 0.1)
(3.01944 0.733333 0.1)
(3.01944 0.779167 0.1)
(3.01944 0.825 0.1)
(2.97639 0.825 0.1)
(2.93333 0.825 0.1)
(3.0625 0.9625 0.1)
(3.01944 1.00833 0.1)
(3.0625 1.00833 0.1)
(3.10556 1.00833 0.1)
(2.97639 1.00833 0.1)
(3.23472 -1.00833 0.1)
(3.23472 -0.9625 0.1)
(3.27778 -0.9625 0.1)
(3.14861 -0.9625 0.1)
(3.19167 -0.916667 0.1)
(3.19167 -0.870833 0.1)
(3.19167 -0.825 0.1)
(3.14861 -0.825 0.1)
(3.10556 -0.825 0.1)
(3.19167 -0.733333 0.1)
(3.19167 -0.6875 0.1)
(3.19167 -0.641667 0.1)
(3.14861 -0.641667 0.1)
(3.10556 -0.641667 0.1)
(3.19167 -0.55 0.1)
(3.19167 -0.504167 0.1)
(3.19167 -0.458333 0.1)
(3.14861 -0.458333 0.1)
(3.10556 -0.458333 0.1)
(3.19167 -0.366667 0.1)
(3.19167 -0.320833 0.1)
(3.19167 -0.275 0.1)
(3.14861 -0.275 0.1)
(3.10556 -0.275 0.1)
(3.19167 -0.183333 0.1)
(3.19167 -0.1375 0.1)
(3.19167 -0.0916667 0.1)
(3.14861 -0.0916667 0.1)
(3.10556 -0.0916667 0.1)
(3.19167 0 0.1)
(3.19167 0.0458333 0.1)
(3.19167 0.0916667 0.1)
(3.14861 0.0916667 0.1)
(3.10556 0.0916667 0.1)
(3.19167 0.183333 0.1)
(3.19167 0.229167 0.1)
(3.19167 0.275 0.1)
(3.14861 0.275 0.1)
(3.10556 0.275 0.1)
(3.19167 0.366667 0.1)
(3.19167 0.4125 0.1)
(3.19167 0.458333 0.1)
(3.14861 0.458333 0.1)
(3.10556 0.458333 0.1)
(3.19167 0.55 0.1)
(3.19167 0.595833 0.1)
(3.19167 0.641667 0.1)
(3.14861 0.641667 0.1)
(3.10556 0.641667 0.1)
(3.19167 0.733333 0.1)
(3.19167 0.779167 0.1)
(3.19167 0.825 0.1)
(3.14861 0.825 0.1)
(3.10556 0.825 0.1)
(3.23472 0.9625 0.1)
(3.19167 1.00833 0.1)
(3.23472 1.00833 0.1)
(3.27778 1.00833 0.1)
(3.14861 1.00833 0.1)
(3.40694 -1.00833 0.1)
(3.40694 -0.9625 0.1)
(3.45 -0.9625 0.1)
(3.32083 -0.9625 0.1)
(3.36389 -0.916667 0.1)
(3.36389 -0.870833 0.1)
(3.36389 -0.825 0.1)
(3.32083 -0.825 0.1)
(3.27778 -0.825 0.1)
(3.36389 -0.733333 0.1)
(3.36389 -0.6875 0.1)
(3.36389 -0.641667 0.1)
(3.32083 -0.641667 0.1)
(3.27778 -0.641667 0.1)
(3.36389 -0.55 0.1)
(3.36389 -0.504167 0.1)
(3.36389 -0.458333 0.1)
(3.32083 -0.458333 0.1)
(3.27778 -0.458333 0.1)
(3.36389 -0.366667 0.1)
(3.36389 -0.320833 0.1)
(3.36389 -0.275 0.1)
(3.32083 -0.275 0.1)
(3.27778 -0.275 0.1)
(3.36389 -0.183333 0.1)
(3.36389 -0.1375 0.1)
(3.36389 -0.0916667 0.1)
(3.32083 -0.0916667 0.1)
(3.27778 -0.0916667 0.1)
(3.36389 0 0.1)
(3.36389 0.0458333 0.1)
(3.36389 0.0916667 0.1)
(3.32083 0.0916667 0.1)
(3.27778 0.0916667 0.1)
(3.36389 0.183333 0.1)
(3.36389 0.229167 0.1)
(3.36389 0.275 0.1)
(3.32083 0.275 0.1)
(3.27778 0.275 0.1)
(3.36389 0.366667 0.1)
(3.36389 0.4125 0.1)
(3.36389 0.458333 0.1)
(3.32083 0.458333 0.1)
(3.27778 0.458333 0.1)
(3.36389 0.55 0.1)
(3.36389 0.595833 0.1)
(3.36389 0.641667 0.1)
(3.32083 0.641667 0.1)
(3.27778 0.641667 0.1)
(3.36389 0.733333 0.1)
(3.36389 0.779167 0.1)
(3.36389 0.825 0.1)
(3.32083 0.825 0.1)
(3.27778 0.825 0.1)
(3.40694 0.9625 0.1)
(3.36389 1.00833 0.1)
(3.40694 1.00833 0.1)
(3.45 1.00833 0.1)
(3.32083 1.00833 0.1)
(3.57917 -1.00833 0.1)
(3.57917 -0.9625 0.1)
(3.62222 -0.9625 0.1)
(3.49306 -0.9625 0.1)
(3.53611 -0.916667 0.1)
(3.53611 -0.870833 0.1)
(3.53611 -0.825 0.1)
(3.49306 -0.825 0.1)
(3.45 -0.825 0.1)
(3.53611 -0.733333 0.1)
(3.53611 -0.6875 0.1)
(3.53611 -0.641667 0.1)
(3.49306 -0.641667 0.1)
(3.45 -0.641667 0.1)
(3.53611 -0.55 0.1)
(3.53611 -0.504167 0.1)
(3.53611 -0.458333 0.1)
(3.49306 -0.458333 0.1)
(3.45 -0.458333 0.1)
(3.53611 -0.366667 0.1)
(3.53611 -0.320833 0.1)
(3.53611 -0.275 0.1)
(3.49306 -0.275 0.1)
(3.45 -0.275 0.1)
(3.53611 -0.183333 0.1)
(3.53611 -0.1375 0.1)
(3.53611 -0.0916667 0.1)
(3.49306 -0.0916667 0.1)
(3.45 -0.0916667 0.1)
(3.53611 0 0.1)
(3.53611 0.0458333 0.1)
(3.53611 0.0916667 0.1)
(3.49306 0.0916667 0.1)
(3.45 0.0916667 0.1)
(3.53611 0.183333 0.1)
(3.53611 0.229167 0.1)
(3.53611 0.275 0.1)
(3.49306 0.275 0.1)
(3.45 0.275 0.1)
(3.53611 0.366667 0.1)
(3.53611 0.4125 0.1)
(3.53611 0.458333 0.1)
(3.49306 0.458333 0.1)
(3.45 0.458333 0.1)
(3.53611 0.55 0.1)
(3.53611 0.595833 0.1)
(3.53611 0.641667 0.1)
(3.49306 0.641667 0.1)
(3.45 0.641667 0.1)
(3.53611 0.733333 0.1)
(3.53611 0.779167 0.1)
(3.53611 0.825 0.1)
(3.49306 0.825 0.1)
(3.45 0.825 0.1)
(3.57917 0.9625 0.1)
(3.53611 1.00833 0.1)
(3.57917 1.00833 0.1)
(3.62222 1.00833 0.1)
(3.49306 1.00833 0.1)
(3.75139 -1.00833 0.1)
(3.75139 -0.9625 0.1)
(3.79444 -0.9625 0.1)
(3.66528 -0.9625 0.1)
(3.70833 -0.916667 0.1)
(3.70833 -0.870833 0.1)
(3.70833 -0.825 0.1)
(3.66528 -0.825 0.1)
(3.62222 -0.825 0.1)
(3.70833 -0.733333 0.1)
(3.70833 -0.6875 0.1)
(3.70833 -0.641667 0.1)
(3.66528 -0.641667 0.1)
(3.62222 -0.641667 0.1)
(3.70833 -0.55 0.1)
(3.70833 -0.504167 0.1)
(3.70833 -0.458333 0.1)
(3.66528 -0.458333 0.1)
(3.62222 -0.458333 0.1)
(3.70833 -0.366667 0.1)
(3.70833 -0.320833 0.1)
(3.70833 -0.275 0.1)
(3.66528 -0.275 0.1)
(3.62222 -0.275 0.1)
(3.70833 -0.183333 0.1)
(3.70833 -0.1375 0.1)
(3.70833 -0.0916667 0.1)
(3.66528 -0.0916667 0.1)
(3.62222 -0.0916667 0.1)
(3.70833 -4.62593e-18 0.1)
(3.70833 0.0458333 0.1)
(3.70833 0.0916667 0.1)
(3.66528 0.0916667 0.1)
(3.62222 0.0916667 0.1)
(3.70833 0.183333 0.1)
(3.70833 0.229167 0.1)
(3.70833 0.275 0.1)
(3.66528 0.275 0.1)
(3.62222 0.275 0.1)
(3.70833 0.366667 0.1)
(3.70833 0.4125 0.1)
(3.70833 0.458333 0.1)
(3.66528 0.458333 0.1)
(3.62222 0.458333 0.1)
(3.70833 0.55 0.1)
(3.70833 0.595833 0.1)
(3.70833 0.641667 0.1)
(3.66528 0.641667 0.1)
(3.62222 0.641667 0.1)
(3.70833 0.733333 0.1)
(3.70833 0.779167 0.1)
(3.70833 0.825 0.1)
(3.66528 0.825 0.1)
(3.62222 0.825 0.1)
(3.75139 0.9625 0.1)
(3.70833 1.00833 0.1)
(3.75139 1.00833 0.1)
(3.79444 1.00833 0.1)
(3.66528 1.00833 0.1)
(3.92361 -1.00833 0.1)
(3.92361 -0.9625 0.1)
(3.96667 -0.9625 0.1)
(3.8375 -0.9625 0.1)
(3.88056 -0.916667 0.1)
(3.88056 -0.870833 0.1)
(3.88056 -0.825 0.1)
(3.8375 -0.825 0.1)
(3.79444 -0.825 0.1)
(3.88056 -0.733333 0.1)
(3.88056 -0.6875 0.1)
(3.88056 -0.641667 0.1)
(3.8375 -0.641667 0.1)
(3.79444 -0.641667 0.1)
(3.88056 -0.55 0.1)
(3.88056 -0.504167 0.1)
(3.88056 -0.458333 0.1)
(3.8375 -0.458333 0.1)
(3.79444 -0.458333 0.1)
(3.88056 -0.366667 0.1)
(3.88056 -0.320833 0.1)
(3.88056 -0.275 0.1)
(3.8375 -0.275 0.1)
(3.79444 -0.275 0.1)
(3.88056 -0.183333 0.1)
(3.88056 -0.1375 0.1)
(3.88056 -0.0916667 0.1)
(3.8375 -0.0916667 0.1)
(3.79444 -0.0916667 0.1)
(3.88056 -9.25186e-18 0.1)
(3.88056 0.0458333 0.1)
(3.88056 0.0916667 0.1)
(3.8375 0.0916667 0.1)
(3.79444 0.0916667 0.1)
(3.88056 0.183333 0.1)
(3.88056 0.229167 0.1)
(3.88056 0.275 0.1)
(3.8375 0.275 0.1)
(3.79444 0.275 0.1)
(3.88056 0.366667 0.1)
(3.88056 0.4125 0.1)
(3.88056 0.458333 0.1)
(3.8375 0.458333 0.1)
(3.79444 0.458333 0.1)
(3.88056 0.55 0.1)
(3.88056 0.595833 0.1)
(3.88056 0.641667 0.1)
(3.8375 0.641667 0.1)
(3.79444 0.641667 0.1)
(3.88056 0.733333 0.1)
(3.88056 0.779167 0.1)
(3.88056 0.825 0.1)
(3.8375 0.825 0.1)
(3.79444 0.825 0.1)
(3.92361 0.9625 0.1)
(3.88056 1.00833 0.1)
(3.92361 1.00833 0.1)
(3.96667 1.00833 0.1)
(3.8375 1.00833 0.1)
(4.09583 -1.00833 0.1)
(4.09583 -0.9625 0.1)
(4.13889 -0.9625 0.1)
(4.00972 -0.9625 0.1)
(4.05278 -0.916667 0.1)
(4.05278 -0.870833 0.1)
(4.05278 -0.825 0.1)
(4.00972 -0.825 0.1)
(3.96667 -0.825 0.1)
(4.05278 -0.733333 0.1)
(4.05278 -0.6875 0.1)
(4.05278 -0.641667 0.1)
(4.00972 -0.641667 0.1)
(3.96667 -0.641667 0.1)
(4.05278 -0.55 0.1)
(4.05278 -0.504167 0.1)
(4.05278 -0.458333 0.1)
(4.00972 -0.458333 0.1)
(3.96667 -0.458333 0.1)
(4.05278 -0.366667 0.1)
(4.05278 -0.320833 0.1)
(4.05278 -0.275 0.1)
(4.00972 -0.275 0.1)
(3.96667 -0.275 0.1)
(4.05278 -0.183333 0.1)
(4.05278 -0.1375 0.1)
(4.05278 -0.0916667 0.1)
(4.00972 -0.0916667 0.1)
(3.96667 -0.0916667 0.1)
(4.05278 -1.38778e-17 0.1)
(4.05278 0.0458333 0.1)
(4.05278 0.0916667 0.1)
(4.00972 0.0916667 0.1)
(3.96667 0.0916667 0.1)
(4.05278 0.183333 0.1)
(4.05278 0.229167 0.1)
(4.05278 0.275 0.1)
(4.00972 0.275 0.1)
(3.96667 0.275 0.1)
(4.05278 0.366667 0.1)
(4.05278 0.4125 0.1)
(4.05278 0.458333 0.1)
(4.00972 0.458333 0.1)
(3.96667 0.458333 0.1)
(4.05278 0.55 0.1)
(4.05278 0.595833 0.1)
(4.05278 0.641667 0.1)
(4.00972 0.641667 0.1)
(3.96667 0.641667 0.1)
(4.05278 0.733333 0.1)
(4.05278 0.779167 0.1)
(4.05278 0.825 0.1)
(4.00972 0.825 0.1)
(3.96667 0.825 0.1)
(4.09583 0.9625 0.1)
(4.05278 1.00833 0.1)
(4.09583 1.00833 0.1)
(4.13889 1.00833 0.1)
(4.00972 1.00833 0.1)
(4.26806 -1.00833 0.1)
(4.26806 -0.9625 0.1)
(4.31111 -0.9625 0.1)
(4.18194 -0.9625 0.1)
(4.225 -0.916667 0.1)
(4.225 -0.870833 0.1)
(4.225 -0.825 0.1)
(4.18194 -0.825 0.1)
(4.13889 -0.825 0.1)
(4.225 -0.733333 0.1)
(4.225 -0.6875 0.1)
(4.225 -0.641667 0.1)
(4.18194 -0.641667 0.1)
(4.13889 -0.641667 0.1)
(4.225 -0.55 0.1)
(4.225 -0.504167 0.1)
(4.225 -0.458333 0.1)
(4.18194 -0.458333 0.1)
(4.13889 -0.458333 0.1)
(4.225 -0.366667 0.1)
(4.225 -0.320833 0.1)
(4.225 -0.275 0.1)
(4.18194 -0.275 0.1)
(4.13889 -0.275 0.1)
(4.225 -0.183333 0.1)
(4.225 -0.1375 0.1)
(4.225 -0.0916667 0.1)
(4.18194 -0.0916667 0.1)
(4.13889 -0.0916667 0.1)
(4.225 0 0.1)
(4.225 0.0458333 0.1)
(4.225 0.0916667 0.1)
(4.18194 0.0916667 0.1)
(4.13889 0.0916667 0.1)
(4.225 0.183333 0.1)
(4.225 0.229167 0.1)
(4.225 0.275 0.1)
(4.18194 0.275 0.1)
(4.13889 0.275 0.1)
(4.225 0.366667 0.1)
(4.225 0.4125 0.1)
(4.225 0.458333 0.1)
(4.18194 0.458333 0.1)
(4.13889 0.458333 0.1)
(4.225 0.55 0.1)
(4.225 0.595833 0.1)
(4.225 0.641667 0.1)
(4.18194 0.641667 0.1)
(4.13889 0.641667 0.1)
(4.225 0.733333 0.1)
(4.225 0.779167 0.1)
(4.225 0.825 0.1)
(4.18194 0.825 0.1)
(4.13889 0.825 0.1)
(4.26806 0.9625 0.1)
(4.225 1.00833 0.1)
(4.26806 1.00833 0.1)
(4.31111 1.00833 0.1)
(4.18194 1.00833 0.1)
(4.44028 -1.00833 0.1)
(4.44028 -0.9625 0.1)
(4.48333 -0.9625 0.1)
(4.35417 -0.9625 0.1)
(4.39722 -0.916667 0.1)
(4.39722 -0.870833 0.1)
(4.39722 -0.825 0.1)
(4.35417 -0.825 0.1)
(4.31111 -0.825 0.1)
(4.39722 -0.733333 0.1)
(4.39722 -0.6875 0.1)
(4.39722 -0.641667 0.1)
(4.35417 -0.641667 0.1)
(4.31111 -0.641667 0.1)
(4.39722 -0.55 0.1)
(4.39722 -0.504167 0.1)
(4.39722 -0.458333 0.1)
(4.35417 -0.458333 0.1)
(4.31111 -0.458333 0.1)
(4.39722 -0.366667 0.1)
(4.39722 -0.320833 0.1)
(4.39722 -0.275 0.1)
(4.35417 -0.275 0.1)
(4.31111 -0.275 0.1)
(4.39722 -0.183333 0.1)
(4.39722 -0.1375 0.1)
(4.39722 -0.0916667 0.1)
(4.35417 -0.0916667 0.1)
(4.31111 -0.0916667 0.1)
(4.39722 -2.31296e-18 0.1)
(4.39722 0.0458333 0.1)
(4.39722 0.0916667 0.1)
(4.35417 0.0916667 0.1)
(4.31111 0.0916667 0.1)
(4.39722 0.183333 0.1)
(4.39722 0.229167 0.1)
(4.39722 0.275 0.1)
(4.35417 0.275 0.1)
(4.31111 0.275 0.1)
(4.39722 0.366667 0.1)
(4.39722 0.4125 0.1)
(4.39722 0.458333 0.1)
(4.35417 0.458333 0.1)
(4.31111 0.458333 0.1)
(4.39722 0.55 0.1)
(4.39722 0.595833 0.1)
(4.39722 0.641667 0.1)
(4.35417 0.641667 0.1)
(4.31111 0.641667 0.1)
(4.39722 0.733333 0.1)
(4.39722 0.779167 0.1)
(4.39722 0.825 0.1)
(4.35417 0.825 0.1)
(4.31111 0.825 0.1)
(4.44028 0.9625 0.1)
(4.39722 1.00833 0.1)
(4.44028 1.00833 0.1)
(4.48333 1.00833 0.1)
(4.35417 1.00833 0.1)
(4.6125 -1.00833 0.1)
(4.6125 -0.9625 0.1)
(4.65556 -0.9625 0.1)
(4.52639 -0.9625 0.1)
(4.56944 -0.916667 0.1)
(4.56944 -0.870833 0.1)
(4.56944 -0.825 0.1)
(4.52639 -0.825 0.1)
(4.48333 -0.825 0.1)
(4.56944 -0.733333 0.1)
(4.56944 -0.6875 0.1)
(4.56944 -0.641667 0.1)
(4.52639 -0.641667 0.1)
(4.48333 -0.641667 0.1)
(4.56944 -0.55 0.1)
(4.56944 -0.504167 0.1)
(4.56944 -0.458333 0.1)
(4.52639 -0.458333 0.1)
(4.48333 -0.458333 0.1)
(4.56944 -0.366667 0.1)
(4.56944 -0.320833 0.1)
(4.56944 -0.275 0.1)
(4.52639 -0.275 0.1)
(4.48333 -0.275 0.1)
(4.56944 -0.183333 0.1)
(4.56944 -0.1375 0.1)
(4.56944 -0.0916667 0.1)
(4.52639 -0.0916667 0.1)
(4.48333 -0.0916667 0.1)
(4.56944 -6.93889e-18 0.1)
(4.56944 0.0458333 0.1)
(4.56944 0.0916667 0.1)
(4.52639 0.0916667 0.1)
(4.48333 0.0916667 0.1)
(4.56944 0.183333 0.1)
(4.56944 0.229167 0.1)
(4.56944 0.275 0.1)
(4.52639 0.275 0.1)
(4.48333 0.275 0.1)
(4.56944 0.366667 0.1)
(4.56944 0.4125 0.1)
(4.56944 0.458333 0.1)
(4.52639 0.458333 0.1)
(4.48333 0.458333 0.1)
(4.56944 0.55 0.1)
(4.56944 0.595833 0.1)
(4.56944 0.641667 0.1)
(4.52639 0.641667 0.1)
(4.48333 0.641667 0.1)
(4.56944 0.733333 0.1)
(4.56944 0.779167 0.1)
(4.56944 0.825 0.1)
(4.52639 0.825 0.1)
(4.48333 0.825 0.1)
(4.6125 0.9625 0.1)
(4.56944 1.00833 0.1)
(4.6125 1.00833 0.1)
(4.65556 1.00833 0.1)
(4.52639 1.00833 0.1)
(4.78472 -1.00833 0.1)
(4.78472 -0.9625 0.1)
(4.82778 -0.9625 0.1)
(4.69861 -0.9625 0.1)
(4.74167 -0.916667 0.1)
(4.74167 -0.870833 0.1)
(4.74167 -0.825 0.1)
(4.69861 -0.825 0.1)
(4.65556 -0.825 0.1)
(4.74167 -0.733333 0.1)
(4.74167 -0.6875 0.1)
(4.74167 -0.641667 0.1)
(4.69861 -0.641667 0.1)
(4.65556 -0.641667 0.1)
(4.74167 -0.55 0.1)
(4.74167 -0.504167 0.1)
(4.74167 -0.458333 0.1)
(4.69861 -0.458333 0.1)
(4.65556 -0.458333 0.1)
(4.74167 -0.366667 0.1)
(4.74167 -0.320833 0.1)
(4.74167 -0.275 0.1)
(4.69861 -0.275 0.1)
(4.65556 -0.275 0.1)
(4.74167 -0.183333 0.1)
(4.74167 -0.1375 0.1)
(4.74167 -0.0916667 0.1)
(4.69861 -0.0916667 0.1)
(4.65556 -0.0916667 0.1)
(4.74167 -1.15648e-17 0.1)
(4.74167 0.0458333 0.1)
(4.74167 0.0916667 0.1)
(4.69861 0.0916667 0.1)
(4.65556 0.0916667 0.1)
(4.74167 0.183333 0.1)
(4.74167 0.229167 0.1)
(4.74167 0.275 0.1)
(4.69861 0.275 0.1)
(4.65556 0.275 0.1)
(4.74167 0.366667 0.1)
(4.74167 0.4125 0.1)
(4.74167 0.458333 0.1)
(4.69861 0.458333 0.1)
(4.65556 0.458333 0.1)
(4.74167 0.55 0.1)
(4.74167 0.595833 0.1)
(4.74167 0.641667 0.1)
(4.69861 0.641667 0.1)
(4.65556 0.641667 0.1)
(4.74167 0.733333 0.1)
(4.74167 0.779167 0.1)
(4.74167 0.825 0.1)
(4.69861 0.825 0.1)
(4.65556 0.825 0.1)
(4.78472 0.9625 0.1)
(4.74167 1.00833 0.1)
(4.78472 1.00833 0.1)
(4.82778 1.00833 0.1)
(4.69861 1.00833 0.1)
(5 -1.375 0.1)
(5 -1.28333 0.1)
(5 -1.19167 0.1)
(5 -1.1 0.1)
(5 -1.00833 0.1)
(4.95694 -1.00833 0.1)
(4.95694 -0.9625 0.1)
(5 -0.9625 0.1)
(4.87083 -0.9625 0.1)
(4.91389 -0.916667 0.1)
(4.91389 -0.870833 0.1)
(4.91389 -0.825 0.1)
(4.87083 -0.825 0.1)
(4.82778 -0.825 0.1)
(4.91389 -0.733333 0.1)
(4.91389 -0.6875 0.1)
(4.91389 -0.641667 0.1)
(4.87083 -0.641667 0.1)
(4.82778 -0.641667 0.1)
(4.91389 -0.55 0.1)
(4.91389 -0.504167 0.1)
(4.91389 -0.458333 0.1)
(4.87083 -0.458333 0.1)
(4.82778 -0.458333 0.1)
(4.91389 -0.366667 0.1)
(4.91389 -0.320833 0.1)
(4.91389 -0.275 0.1)
(4.87083 -0.275 0.1)
(4.82778 -0.275 0.1)
(4.91389 -0.183333 0.1)
(4.91389 -0.1375 0.1)
(4.91389 -0.0916667 0.1)
(4.87083 -0.0916667 0.1)
(4.82778 -0.0916667 0.1)
(4.91389 -1.61908e-17 0.1)
(4.91389 0.0458333 0.1)
(4.91389 0.0916667 0.1)
(4.87083 0.0916667 0.1)
(4.82778 0.0916667 0.1)
(4.91389 0.183333 0.1)
(4.91389 0.229167 0.1)
(4.91389 0.275 0.1)
(4.87083 0.275 0.1)
(4.82778 0.275 0.1)
(4.91389 0.366667 0.1)
(4.91389 0.4125 0.1)
(4.91389 0.458333 0.1)
(4.87083 0.458333 0.1)
(4.82778 0.458333 0.1)
(4.91389 0.55 0.1)
(4.91389 0.595833 0.1)
(4.91389 0.641667 0.1)
(4.87083 0.641667 0.1)
(4.82778 0.641667 0.1)
(4.91389 0.733333 0.1)
(4.91389 0.779167 0.1)
(4.91389 0.825 0.1)
(4.87083 0.825 0.1)
(4.82778 0.825 0.1)
(5 0.9625 0.1)
(4.95694 0.9625 0.1)
(5 1.1 0.1)
(4.91389 1.00833 0.1)
(4.95694 1.00833 0.1)
(5 1.00833 0.1)
(4.87083 1.00833 0.1)
(5 1.19167 0.1)
(5 1.28333 0.1)
(5 1.375 0.1)
(0.8367747019 -0.1996169781 0.1)
(0.8260516954 -0.1986552209 0.1)
(0.8250188835 -0.2099059198 0.1)
(0.8390881409 0.15647517 0.1)
(0.8370706302 0.133896999 0.1)
(0.8350680554 0.1113174423 0.1)
(0.8564427156 0.1090470363 0.1)
(0.8777760997 0.1067322538 0.1)
(1.009325553 -0.2089700748 0.1)
(0.9986115698 -0.207976013 0.1)
(0.997552931 -0.2193860071 0.1)
(1.013992143 -0.05757488588 0.1)
(1.011314192 -0.07106733577 0.1)
(1.022028286 -0.07206020266 0.1)
(1.032752301 -0.07305439169 0.1)
(0.8705186212 -0.03950850249 0.1)
(0.8990860072 0.1044025765 0.1)
(0.9203839765 0.1020308221 0.1)
(0.9224075025 0.1246305294 0.1)
(-0.0316344534 -0.09687065798 0.1)
(-0.05363701069 -0.09452893877 0.1)
(-0.05545253489 -0.1173698941 0.1)
(-0.05729458231 -0.1401893069 0.1)
(-0.1773841642 0.01532413346 0.1)
(-0.1560876219 0.01301276922 0.1)
(-0.1347684581 0.01063131533 0.1)
(-0.1327385158 0.0341119975 0.1)
(0.1770430935 0.2670048446 0.1)
(0.1553502027 0.2689844065 0.1)
(0.1532292293 0.2463194227 0.1)
(0.2860442857 -0.1952671892 0.1)
(0.2839486878 -0.2179184587 0.1)
(0.3053825982 -0.2198749962 0.1)
(0.3268007618 -0.2218280641 0.1)
(0.15518824 -0.2061285135 0.1)
(0.1766837723 -0.20810282 0.1)
(0.1981566802 -0.2100720144 0.1)
(0.2002522985 -0.1874096996 0.1)
(0.3497597911 0.2507689913 0.1)
(0.3281875469 0.2528257373 0.1)
(0.3260934272 0.2301903994 0.1)
(0.457505632 -0.2109075202 0.1)
(0.455414869 -0.2335391524 0.1)
(0.4768587571 -0.2354855684 0.1)
(0.4982938685 -0.2374291615 0.1)
(0.3482179296 -0.2237810397 0.1)
(0.3696470462 -0.2257351238 0.1)
(0.3717398211 -0.2030926311 0.1)
(0.5217926945 0.234155696 0.1)
(0.500341641 0.2362413695 0.1)
(0.4982787993 0.2136292413 0.1)
(0.6289976093 -0.226434195 0.1)
(0.6269105007 -0.2490480889 0.1)
(0.648344914 -0.2509775572 0.1)
(0.6697755292 -0.2529046644 0.1)
(0.5197311561 -0.239370948 0.1)
(0.5411726113 -0.2413111125 0.1)
(0.5432613624 -0.2186903409 0.1)
(0.5852975727 -0.1145344164 0.1)
(0.8004608645 -0.2418266423 0.1)
(0.7983769073 -0.2644498672 0.1)
(0.8198194712 -0.2663780831 0.1)
(0.8412586783 -0.2683100047 0.1)
(0.6912122112 -0.2548313302 0.1)
(0.7126510693 -0.2567561894 0.1)
(0.7147370898 -0.2341431988 0.1)
(0.7566968247 -0.1301187715 0.1)
(0.7615363173 -0.1362691706 0.1)
(0.7669014287 -0.1367328088 0.1)
(0.6924073812 -0.1243115609 0.1)
(0.7659265232 0.06175481624 0.1)
(0.7649453307 0.05054090586 0.1)
(0.7756536183 0.04940968373 0.1)
(0.7863500977 0.04829191 0.1)
(0.9732323428 -0.2554262824 0.1)
(0.9710949862 -0.2781379524 0.1)
(0.992260014 -0.2764329903 0.1)
(1.013697938 -0.2784220377 0.1)
(0.8626864706 -0.2702458887 0.1)
(0.884113801 -0.2721867513 0.1)
(0.8862015973 -0.2495437966 0.1)
(0.9332149443 -0.2083218298 0.1)
(0.9225025622 -0.2073429811 0.1)
(0.9117726986 -0.2063685361 0.1)
(0.9107417857 -0.2176204154 0.1)
(0.1755531908 0.1357330882 0.1)
(0.3168888624 -0.09547097133 0.1)
(0.3158457341 -0.1067679149 0.1)
(0.3265562889 -0.1077556328 0.1)
(0.2515305349 -0.1008377993 0.1)
(0.2622439846 -0.1018267901 0.1)
(0.2729644966 -0.1028154318 0.1)
(0.2740082512 -0.09152256353 0.1)
(0.3403978545 -0.07473757866 0.1)
(0.3350608645 -0.07421980693 0.1)
(0.3297138618 -0.07370170879 0.1)
(0.3291769709 -0.07946666275 0.1)
(0.2837171942 0.1252706211 0.1)
(0.2842748809 0.1312597124 0.1)
(0.2788595419 0.1317340366 0.1)
(0.2734430634 0.1322285524 0.1)
(0.348576006 0.1197982415 0.1)
(0.1972370994 0.1338407291 0.1)
(0.2680411923 0.1327397902 0.1)
(0.2626532099 0.1332708296 0.1)
(0.2620988593 0.1272743987 0.1)
(0.3505510795 -0.08148323222 0.1)
(0.3510804266 -0.07577793647 0.1)
(0.3457337195 -0.07525665201 0.1)
(0.5330437599 0.1191363719 0.1)
(0.522305335 0.1201809075 0.1)
(0.5115641076 0.1212277118 0.1)
(0.510545123 0.1099636785 0.1)
(0.3701432822 0.1176013551 0.1)
(0.6710104458 -0.1222379386 0.1)
(0.6067226756 -0.1165534073 0.1)
(0.7722640458 -0.1372233315 0.1)
(0.7776220127 -0.1377315001 0.1)
(0.7781634706 -0.1319497965 0.1)
(0.7821454992 -0.2060636335 0.1)
(0.7831793992 -0.1948120313 0.1)
(0.7724701481 -0.1938535589 0.1)
(0.7617492254 -0.1928909908 0.1)
(0.7970382306 0.04715994669 0.1)
(0.8077160049 0.04600293323 0.1)
(0.808697689 0.05723296714 0.1)
(0.9536184756 -0.2215353177 0.1)
(0.9546495732 -0.2102814469 0.1)
(0.9439210748 -0.2093031114 0.1)
(0.1142152607 -0.1794872933 0.1)
(0.1121236971 -0.2021600273 0.1)
(0.1336623022 -0.2041463645 0.1)
(-0.01774674595 -0.1899467248 0.1)
(0.004123439524 -0.1920813291 0.1)
(0.0257499845 -0.1941200145 0.1)
(0.02783170377 -0.1714343156 0.1)
(0.05878772522 -0.07148473766 0.1)
(0.05775045939 -0.0828083368 0.1)
(0.06858237347 -0.08383242197 0.1)
(0.07940640696 -0.08485376737 0.1)
(0.01497456313 -0.06717764224 0.1)
(0.2311193456 -0.08755530886 0.1)
(0.2300759401 -0.09885523956 0.1)
(0.240807128 -0.0998478847 0.1)
(0.1656572268 -0.09289342528 0.1)
(0.1763991829 -0.09388907809 0.1)
(0.1871442185 -0.09488401234 0.1)
(0.188188825 -0.08357113723 0.1)
(0.6699234842 0.1966743506 0.1)
(0.942231912 -0.01463865005 0.1)
(0.9316593462 -0.01327858791 0.1)
(0.9307398556 -0.02437951541 0.1)
(0.1451722102 -0.07958399911 0.1)
(0.1441285994 -0.09089696661 0.1)
(0.1549022339 -0.09189756718 0.1)
(0.09020299337 -0.08586352754 0.1)
(0.1010016852 -0.08687549163 0.1)
(0.1020426783 -0.07555826409 0.1)
(0.03461975052 0.1539360605 0.1)
(0.03586947689 0.1653132607 0.1)
(0.02481940525 0.1661898697 0.1)
(0.0138545289 0.1670806685 0.1)
(0.6393779111 0.09729730199 0.1)
(0.6296672681 0.1096140934 0.1)
(0.6189431015 0.1106824135 0.1)
(0.6822516145 0.09299301038 0.1)
(0.5535320306 0.1057754248 0.1)
(0.554544579 0.1170350338 0.1)
(0.5437890625 0.1180901938 0.1)
(0.608220372 0.1117445745 0.1)
(0.5974710351 0.112812217 0.1)
(0.5964601291 0.1015594857 0.1)
(-0.07928048605 0.0273848119 0.1)
(-0.06862126421 0.0263341673 0.1)
(-0.06781527889 0.03920464872 0.1)
(-0.06677279239 0.05164854264 0.1)
(-0.01588277165 -0.0291939475 0.1)
(-0.0270083196 -0.02786643735 0.1)
(-0.02765299793 -0.03948436439 0.1)
(-0.02814918509 -0.05115905252 0.1)
(-0.06545651951 0.06469876386 0.1)
(-0.06403816162 0.07715309155 0.1)
(-0.07478102057 0.07788680757 0.1)
(0.01807793305 0.1032051175 0.1)
(0.7352478046 -0.1284982751 0.1)
(0.03048117163 -0.01719445939 0.1)
(0.03549701723 -0.02344337219 0.1)
(0.008064618248 -0.01482487401 0.1)
(0.2975693195 -0.07072581094 0.1)
(0.2922062212 -0.07029459738 0.1)
(0.3077496805 -0.07746042425 0.1)
(0.3082909853 -0.07165872091 0.1)
(0.3029313627 -0.07117922195 0.1)
(0.3053807666 0.1238843049 0.1)
(0.3269944716 0.1219713434 0.1)
(0.2189015657 0.1320094273 0.1)
(0.240525064 0.1299097626 0.1)
(0.4923835191 0.08890035677 0.1)
(0.4977529359 0.08838570264 0.1)
(0.4982792106 0.0940795332 0.1)
(0.6241030408 0.04760796671 0.1)
(0.6192702799 0.0538633931 0.1)
(0.6455703798 0.04558957636 0.1)
(0.8131688409 -0.01652332839 0.1)
(0.937522621 -0.07501810325 0.1)
(1.035135862 -0.2804110851 0.1)
(1.056563829 -0.2823992086 0.1)
(1.058681014 -0.2595802161 0.1)
(1.034997848 -0.1653211373 0.1)
(1.045711739 -0.1663161948 0.1)
(1.046770285 -0.1549071964 0.1)
(1.047828647 -0.1435001895 0.1)
(0.9728991793 -0.03006200315 0.1)
(-0.008071606135 0.0047064983 0.1)
(-0.01388998248 0.005643736768 0.1)
(-0.01399211864 -0.00036914226 0.1)
(0.5638632311 -0.1125175812 0.1)
(0.7138287785 -0.1264246118 0.1)
(1.048887055 -0.1320926847 0.1)
(1.049945703 -0.1206825911 0.1)
(1.039220986 -0.1196959696 0.1)
(0.1539520397 0.1378246538 0.1)
(0.3916882926 0.1156515825 0.1)
(0.4132771767 0.1136334644 0.1)
(0.6495690934 -0.1204373806 0.1)
(0.6281122097 -0.1185660853 0.1)
(0.667058586 0.04353630904 0.1)
(0.9587803426 -0.07745562057 0.1)
(0.9945265028 -0.09884128539 0.1)
(0.003496205146 0.282546426 0.1)
(-0.02061342643 0.2616293377 0.1)
(0.7251046542 0.0886283697 0.1)
(0.002793271256 0.1679171392 0.1)
(-0.009378308649 0.1573825572 0.1)
(-0.900365 -0.825172 0.1)
(-0.943231 -0.77932 0.1)
(-0.900509 -0.641852 0.1)
(-0.943354 -0.595998 0.1)
(-0.900647 -0.458532 0.1)
(-0.943466 -0.412676 0.1)
(-0.9012004402 -0.273030164 0.1)
(-0.943644913 -0.228791213 0.1)
(-0.9012215639 -0.08616401013 0.1)
(-0.9436679458 -0.04398326725 0.1)
(-0.9004694377 0.09718050869 0.1)
(-0.9434482992 0.1387596221 0.1)
(-0.9003368668 0.2769919839 0.1)
(-0.9435120905 0.3206617544 0.1)
(-0.900648 0.458135 0.1)
(-0.943413 0.503996 0.1)
(-0.90051 0.641481 0.1)
(-0.943293 0.687341 0.1)
(-0.900365 0.824828 0.1)
(-0.943121 0.916525 0.1)
(-0.94317 0.870686 0.1)
(-0.729054 -0.82526 0.1)
(-0.771953 -0.779411 0.1)
(-0.7295346133 -0.6414960939 0.1)
(-0.7723362741 -0.5957496867 0.1)
(-0.7335068461 -0.448086835 0.1)
(-0.7752894562 -0.4039170638 0.1)
(-0.7353937365 -0.2498430633 0.1)
(-0.7762993027 -0.2085844836 0.1)
(-0.7323184798 -0.05657220388 0.1)
(-0.7735452084 -0.01848004312 0.1)
(-0.7270153581 0.1267226702 0.1)
(-0.7697944316 0.1624838442 0.1)
(-0.7239505456 0.300133394 0.1)
(-0.7686519039 0.3356528054 0.1)
(-0.7255808214 0.4686422582 0.1)
(-0.770877543 0.5074479733 0.1)
(-0.7290463764 0.6418624123 0.1)
(-0.772062 0.687245 0.1)
(-0.729068 0.824984 0.1)
(-0.77178 0.916958 0.1)
(-0.771858 0.870764 0.1)
(-0.5576267608 -0.8255719841 0.1)
(-0.6006856181 -0.7793738182 0.1)
(-0.5644327737 -0.6315015301 0.1)
(-0.6072179757 -0.5846326623 0.1)
(-0.5725825739 -0.4254481959 0.1)
(-0.6134944188 -0.37972846 0.1)
(-0.5722387782 -0.2204764557 0.1)
(-0.6117996832 -0.1772553866 0.1)
(-0.5635466993 -0.02539539187 0.1)
(-0.6033145289 0.01501439145 0.1)
(-0.5519627244 0.1576224509 0.1)
(-0.5935156805 0.1950647658 0.1)
(-0.5436936896 0.3289266405 0.1)
(-0.5882542378 0.3637728232 0.1)
(-0.5437107267 0.4909542683 0.1)
(-0.5909402187 0.5256815541 0.1)
(-0.5514489246 0.6532937988 0.1)
(-0.5982877275 0.6922150411 0.1)
(-0.5557653854 0.8281836903 0.1)
(-0.598713 0.919474 0.1)
(-0.598763 0.873702 0.1)
(-0.3869375338 -0.8252790867 0.1)
(-0.4314690118 -0.7774059977 0.1)
(-0.4017839783 -0.6217307265 0.1)
(-0.4465264198 -0.5702982253 0.1)
(-0.4122394563 -0.4089995342 0.1)
(-0.4529435046 -0.3594215703 0.1)
(-0.4078367419 -0.2052809503 0.1)
(-0.4466487885 -0.1578327557 0.1)
(-0.3941812065 -0.01424948299 0.1)
(-0.4327863857 0.0319025373 0.1)
(-0.3780563315 0.1684187903 0.1)
(-0.4176524712 0.2125012725 0.1)
(-0.3642497222 0.3448547794 0.1)
(-0.4068798266 0.3846040325 0.1)
(-0.3585256499 0.5115384063 0.1)
(-0.4057142784 0.5478070061 0.1)
(-0.3659320127 0.6702533552 0.1)
(-0.4152191008 0.707081552 0.1)
(-0.3799645412 0.8329858742 0.1)
(-0.4268255591 0.9201094538 0.1)
(-0.4261511166 0.8751231936 0.1)
(-0.2203286615 -0.821868134 0.1)
(-0.2667861444 -0.7718443915 0.1)
(-0.2390078885 -0.6160033751 0.1)
(-0.2830907477 -0.5643589673 0.1)
(-0.245842578 -0.4096715412 0.1)
(-0.2874022364 -0.3578764495 0.1)
(-0.2386472168 -0.2137007165 0.1)
(-0.2784802438 -0.1618984899 0.1)
(-0.2027854264 -0.02868337682 0.1)
(-0.2240893246 -0.02646211835 0.1)
(-0.2625073286 0.02341935062 0.1)
(-0.2199485771 0.01944406285 0.1)
(-0.2178523298 0.04226469665 0.1)
(-0.2157429119 0.06508656697 0.1)
(-0.2220275635 -0.003417842105 0.1)
(-0.200740441 -0.005516827848 0.1)
(-0.1855577985 0.1565627797 0.1)
(-0.1878246773 0.1333968329 0.1)
(-0.2114636017 0.1112522087 0.1)
(-0.2091527482 0.1351843697 0.1)
(-0.206909276 0.1583145258 0.1)
(-0.2136186636 0.08798168444 0.1)
(-0.2451714127 0.2077868452 0.1)
(-0.1871228626 0.343656507 0.1)
(-0.2273424446 0.3896125773 0.1)
(-0.1765181117 0.5159639721 0.1)
(-0.2215661175 0.5570248131 0.1)
(-0.1832904502 0.6771012935 0.1)
(-0.2327210038 0.7158473291 0.1)
(-0.2007005435 0.8383724547 0.1)
(-0.2520441157 0.922532248 0.1)
(-0.2494018366 0.8792570662 0.1)
(-0.05255773465 -0.8211116383 0.1)
(-0.1003370728 -0.7706325788 0.1)
(-0.07214043849 -0.6188930953 0.1)
(-0.1174748901 -0.5664084635 0.1)
(-0.07748954334 -0.4185588836 0.1)
(-0.1185271843 -0.3668709553 0.1)
(-0.06529891549 -0.2311608791 0.1)
(-0.1024436523 -0.1587365332 0.1)
(-0.08080047858 -0.1608741781 0.1)
(-0.06130843533 -0.1856619572 0.1)
(-0.08279833936 -0.1836259066 0.1)
(-0.1043817532 -0.1815239353 0.1)
(-0.03970301809 -0.1877378498 0.1)
(-0.1385560984 -0.03646989835 0.1)
(-0.1404661675 -0.05962194957 0.1)
(-0.1197947927 -0.08675872691 0.1)
(-0.09764543621 -0.08960516666 0.1)
(-0.1045280765 0.1037315153 0.1)
(-0.1210547727 0.15215914 0.1)
(-0.1236305856 0.1285211151 0.1)
(0.0006576912734 0.508075318 0.1)
(-0.04267235126 0.5529842014 0.1)
(-0.003221582199 0.6756917087 0.1)
(-0.05157789357 0.7174849558 0.1)
(-0.02256720015 0.8404493833 0.1)
(-0.07617781419 0.9249811702 0.1)
(-0.07179773121 0.8823170008 0.1)
(0.1183057682 -0.8233609302 0.1)
(0.06972301222 -0.7734659752 0.1)
(0.09834609462 -0.6265325787 0.1)
(0.05250714981 -0.574706022 0.1)
(0.09436271775 -0.4320665236 0.1)
(0.05357099884 -0.3811790128 0.1)
(0.1120866732 0.2729492605 0.1)
(0.09041876275 0.274900393 0.1)
(0.07103201899 0.2995598954 0.1)
(0.1747698824 0.4944748247 0.1)
(0.1328003304 0.5417264658 0.1)
(0.1729955477 0.6678073381 0.1)
(0.1255618673 0.7123619745 0.1)
(0.1537737041 0.8384023493 0.1)
(0.09945846549 0.9252508364 0.1)
(0.1045572479 0.8820176939 0.1)
(0.2895153582 -0.8261866814 0.1)
(0.2410236744 -0.77757534 0.1)
(0.269423274 -0.635443544 0.1)
(0.223781258 -0.5850863391 0.1)
(0.2657998559 -0.4463526377 0.1)
(0.2252543355 -0.3962195267 0.1)
(0.2850198387 0.2569162764 0.1)
(0.263437319 0.2589488684 0.1)
(0.2439472048 0.2836199703 0.1)
(0.3473598839 0.4790050261 0.1)
(0.3059754052 0.5275438552 0.1)
(0.3462746599 0.6571712377 0.1)
(0.2996976021 0.7038142261 0.1)
(0.327318145 0.8341076576 0.1)
(0.2731663922 0.9236072441 0.1)
(0.278479524 0.8793370335 0.1)
(0.4605174885 -0.8294917211 0.1)
(0.4119862777 -0.7821769825 0.1)
(0.4402872837 -0.6449062144 0.1)
(0.3947344751 -0.5959618448 0.1)
(0.4369807451 -0.4608672884 0.1)
(0.3965573096 -0.4113687407 0.1)
(0.3555290869 -0.1445918172 0.1)
(0.4573828703 0.2404189783 0.1)
(0.4358920392 0.2424872523 0.1)
(0.4164164091 0.2672062208 0.1)
(0.5188241066 0.4631281312 0.1)
(0.4775902358 0.5124748049 0.1)
(0.516921081 0.6460591693 0.1)
(0.4708785448 0.6942412122 0.1)
(0.4979442656 0.8293181365 0.1)
(0.4449296539 0.9213215402 0.1)
(0.4500494384 0.875884009 0.1)
(0.6312263782 -0.8333440842 0.1)
(0.5828406298 -0.7873159723 0.1)
(0.6109587568 -0.6549636859 0.1)
(0.5656248615 -0.6073394565 0.1)
(0.6081519076 -0.4756359555 0.1)
(0.5678987347 -0.4266434814 0.1)
(0.5270288866 -0.1602939651 0.1)
(0.6291162667 0.2235542778 0.1)
(0.6076598752 0.2256906614 0.1)
(0.6892269137 0.4477961657 0.1)
(0.6477409059 0.4979679316 0.1)
(0.6857501755 0.6361677316 0.1)
(0.6395294855 0.6855872327 0.1)
(0.6668153515 0.8255015292 0.1)
(0.6151047819 0.9194004981 0.1)
(0.6197211885 0.8729341214 0.1)
(0.8016048169 -0.8379400385 0.1)
(0.7533341429 -0.7931447679 0.1)
(0.7813123294 -0.6658156466 0.1)
(0.7362457783 -0.61934702 0.1)
(0.7791843216 -0.4907739744 0.1)
(0.7391595098 -0.4420835817 0.1)
(0.6984838478 -0.1758623988 0.1)
(0.858611561 0.4338702941 0.1)
(0.8169419816 0.4849132654 0.1)
(0.8532622886 0.6285158746 0.1)
(0.8072907505 0.6789559662 0.1)
(0.8348480299 0.8232568088 0.1)
(0.7847054635 0.9183381825 0.1)
(0.787989104 0.8713481823 0.1)
(0.9724556004 -0.8418868061 0.1)
(0.9231206231 -0.8001679781 0.1)
(0.9522783619 -0.6760896075 0.1)
(0.9065206846 -0.6323721472 0.1)
(0.9511952801 -0.5047723488 0.1)
(0.9105325164 -0.4578575397 0.1)
(0.8903553254 -0.2044285974 0.1)
(0.8796445448 -0.2034649616 0.1)
(0.8699443519 -0.1912736724 0.1)
(0.9104682823 -0.01065302456 0.1)
(0.8998463001 -0.009381776902 0.1)
(0.8901497777 0.00301143677 0.1)
(1.017663618 0.2288991103 0.1)
(0.9788624963 0.2800838101 0.1)
(1.026864295 0.422460709 0.1)
(0.9847790352 0.4746829192 0.1)
(1.019407143 0.6241913661 0.1)
(0.9740292453 0.6749930906 0.1)
(1.0025809 0.8226723027 0.1)
(0.9544688089 0.9179069773 0.1)
(0.9570722231 0.8707134019 0.1)
(1.146606646 -0.841858966 0.1)
(1.09628023 -0.8012449546 0.1)
(1.126638161 -0.681668441 0.1)
(1.079661674 -0.63935565 0.1)
(1.123852306 -0.5154261051 0.1)
(1.082978887 -0.4683636348 0.1)
(1.042545964 -0.2005451094 0.1)
(1.043604511 -0.1891361111 0.1)
(1.103407635 -0.01056403094 0.1)
(1.084086868 0.01424371014 0.1)
(1.18806147 0.2147890115 0.1)
(1.148524654 0.2660836861 0.1)
(1.194355713 0.4155701039 0.1)
(1.151751751 0.4676669999 0.1)
(1.185136662 0.6229371857 0.1)
(1.139851088 0.673976067 0.1)
(1.170751765 0.8232645305 0.1)
(1.125227061 0.9173341072 0.1)
(1.126181887 0.8708395833 0.1)
(1.326870589 -0.8383851649 0.1)
(1.276255796 -0.7999356142 0.1)
(1.308673329 -0.6805999032 0.1)
(1.259549281 -0.6424594009 0.1)
(1.302247977 -0.5205325428 0.1)
(1.258284731 -0.4784193154 0.1)
(1.3108069 -0.3492348989 0.1)
(1.271019644 -0.3020619931 0.1)
(1.326623566 -0.168844255 0.1)
(1.287860425 -0.1197381853 0.1)
(1.343484563 0.01580883495 0.1)
(1.304718622 0.06467245582 0.1)
(1.357446994 0.2101835677 0.1)
(1.317664304 0.2602632347 0.1)
(1.360615705 0.4173733274 0.1)
(1.317999789 0.4685161346 0.1)
(1.350737552 0.6274386523 0.1)
(1.305857898 0.6771528201 0.1)
(1.340539229 0.8247318566 0.1)
(1.29722 0.916667 0.1)
(1.29722 0.870833 0.1)
(1.508255571 -0.8301628208 0.1)
(1.45953837 -0.7912678054 0.1)
(1.495210202 -0.6679126444 0.1)
(1.445409332 -0.6327997083 0.1)
(1.487284517 -0.5093428867 0.1)
(1.440546005 -0.4731626286 0.1)
(1.490452805 -0.3434226649 0.1)
(1.447560814 -0.3037346256 0.1)
(1.501807912 -0.1663429095 0.1)
(1.461308829 -0.1236160645 0.1)
(1.515334766 0.0220609239 0.1)
(1.47567489 0.06689007157 0.1)
(1.524594548 0.222383936 0.1)
(1.484212268 0.2693079034 0.1)
(1.524113026 0.4309602588 0.1)
(1.481695133 0.4791992548 0.1)
(1.515974202 0.6360538995 0.1)
(1.472229566 0.6834827224 0.1)
(1.5125 0.825 0.1)
(1.46944 0.916667 0.1)
(1.46944 0.870833 0.1)
(1.68472 -0.825 0.1)
(1.640342445 -0.7811002267 0.1)
(1.680216516 -0.6498526982 0.1)
(1.632398094 -0.6131061114 0.1)
(1.674264053 -0.4841001379 0.1)
(1.62709566 -0.4500619829 0.1)
(1.674033057 -0.3162639701 0.1)
(1.629440568 -0.2812779818 0.1)
(1.679642375 -0.1390642375 0.1)
(1.63747041 -0.1014008591 0.1)
(1.686807458 0.04984772192 0.1)
(1.645829472 0.09068368839 0.1)
(1.690313067 0.248525506 0.1)
(1.648996862 0.2924026715 0.1)
(1.687958797 0.4496800102 0.1)
(1.645383638 0.4954921278 0.1)
(1.684720557 0.6416659548 0.1)
(1.64167 0.6875 0.1)
(1.68472 0.825 0.1)
(1.64167 0.916667 0.1)
(1.64167 0.870833 0.1)
(1.85694 -0.825 0.1)
(1.81389 -0.779167 0.1)
(1.85694 -0.641667 0.1)
(1.813332699 -0.597051058 0.1)
(1.855866308 -0.4614630838 0.1)
(1.810737319 -0.4222692732 0.1)
(1.854834341 -0.2849582296 0.1)
(1.810429837 -0.2476186223 0.1)
(1.855905727 -0.1048972252 0.1)
(1.81287083 -0.06648944946 0.1)
(1.857525476 0.08152692419 0.1)
(1.815263739 0.1225945741 0.1)
(1.857588144 0.2716798689 0.1)
(1.815106354 0.3156663827 0.1)
(1.85694 0.458333 0.1)
(1.81389 0.504167 0.1)
(1.85694 0.641667 0.1)
(1.81389 0.6875 0.1)
(1.85694 0.825 0.1)
(1.81389 0.916667 0.1)
(1.81389 0.870833 0.1)
(2.02917 -0.825 0.1)
(1.98611 -0.779167 0.1)
(2.02917 -0.641667 0.1)
(1.98611 -0.595833 0.1)
(2.02917 -0.458333 0.1)
(1.98611 -0.4125 0.1)
(2.02917 -0.275 0.1)
(1.986103067 -0.2292107863 0.1)
(2.02917 -0.0916667 0.1)
(1.986102923 -0.04603265992 0.1)
(2.02917 0.0916667 0.1)
(1.98611 0.1375 0.1)
(2.02917 0.275 0.1)
(1.98611 0.320833 0.1)
(2.02917 0.458333 0.1)
(1.98611 0.504167 0.1)
(2.02917 0.641667 0.1)
(1.98611 0.6875 0.1)
(2.02917 0.825 0.1)
(1.98611 0.916667 0.1)
(1.98611 0.870833 0.1)
(2.20139 -0.825 0.1)
(2.15833 -0.779167 0.1)
(2.20139 -0.641667 0.1)
(2.15833 -0.595833 0.1)
(2.20139 -0.458333 0.1)
(2.15833 -0.4125 0.1)
(2.20139 -0.275 0.1)
(2.15833 -0.229167 0.1)
(2.20139 -0.0916667 0.1)
(2.15833 -0.0458333 0.1)
(2.20139 0.0916667 0.1)
(2.15833 0.1375 0.1)
(2.20139 0.275 0.1)
(2.15833 0.320833 0.1)
(2.20139 0.458333 0.1)
(2.15833 0.504167 0.1)
(2.20139 0.641667 0.1)
(2.15833 0.6875 0.1)
(2.20139 0.825 0.1)
(2.15833 0.916667 0.1)
(2.15833 0.870833 0.1)
(2.37361 -0.825 0.1)
(2.33056 -0.779167 0.1)
(2.37361 -0.641667 0.1)
(2.33056 -0.595833 0.1)
(2.37361 -0.458333 0.1)
(2.33056 -0.4125 0.1)
(2.37361 -0.275 0.1)
(2.33056 -0.229167 0.1)
(2.37361 -0.0916667 0.1)
(2.33056 -0.0458333 0.1)
(2.37361 0.0916667 0.1)
(2.33056 0.1375 0.1)
(2.37361 0.275 0.1)
(2.33056 0.320833 0.1)
(2.37361 0.458333 0.1)
(2.33056 0.504167 0.1)
(2.37361 0.641667 0.1)
(2.33056 0.6875 0.1)
(2.37361 0.825 0.1)
(2.33056 0.916667 0.1)
(2.33056 0.870833 0.1)
(2.54583 -0.825 0.1)
(2.50278 -0.779167 0.1)
(2.54583 -0.641667 0.1)
(2.50278 -0.595833 0.1)
(2.54583 -0.458333 0.1)
(2.50278 -0.4125 0.1)
(2.54583 -0.275 0.1)
(2.50278 -0.229167 0.1)
(2.54583 -0.0916667 0.1)
(2.50278 -0.0458333 0.1)
(2.54583 0.0916667 0.1)
(2.50278 0.1375 0.1)
(2.54583 0.275 0.1)
(2.50278 0.320833 0.1)
(2.54583 0.458333 0.1)
(2.50278 0.504167 0.1)
(2.54583 0.641667 0.1)
(2.50278 0.6875 0.1)
(2.54583 0.825 0.1)
(2.50278 0.916667 0.1)
(2.50278 0.870833 0.1)
(2.71806 -0.825 0.1)
(2.675 -0.779167 0.1)
(2.71806 -0.641667 0.1)
(2.675 -0.595833 0.1)
(2.71806 -0.458333 0.1)
(2.675 -0.4125 0.1)
(2.71806 -0.275 0.1)
(2.675 -0.229167 0.1)
(2.71806 -0.0916667 0.1)
(2.675 -0.0458333 0.1)
(2.71806 0.0916667 0.1)
(2.675 0.1375 0.1)
(2.71806 0.275 0.1)
(2.675 0.320833 0.1)
(2.71806 0.458333 0.1)
(2.675 0.504167 0.1)
(2.71806 0.641667 0.1)
(2.675 0.6875 0.1)
(2.71806 0.825 0.1)
(2.675 0.916667 0.1)
(2.675 0.870833 0.1)
(2.89028 -0.825 0.1)
(2.84722 -0.779167 0.1)
(2.89028 -0.641667 0.1)
(2.84722 -0.595833 0.1)
(2.89028 -0.458333 0.1)
(2.84722 -0.4125 0.1)
(2.89028 -0.275 0.1)
(2.84722 -0.229167 0.1)
(2.89028 -0.0916667 0.1)
(2.84722 -0.0458333 0.1)
(2.89028 0.0916667 0.1)
(2.84722 0.1375 0.1)
(2.89028 0.275 0.1)
(2.84722 0.320833 0.1)
(2.89028 0.458333 0.1)
(2.84722 0.504167 0.1)
(2.89028 0.641667 0.1)
(2.84722 0.6875 0.1)
(2.89028 0.825 0.1)
(2.84722 0.916667 0.1)
(2.84722 0.870833 0.1)
(3.0625 -0.825 0.1)
(3.01944 -0.779167 0.1)
(3.0625 -0.641667 0.1)
(3.01944 -0.595833 0.1)
(3.0625 -0.458333 0.1)
(3.01944 -0.4125 0.1)
(3.0625 -0.275 0.1)
(3.01944 -0.229167 0.1)
(3.0625 -0.0916667 0.1)
(3.01944 -0.0458333 0.1)
(3.0625 0.0916667 0.1)
(3.01944 0.1375 0.1)
(3.0625 0.275 0.1)
(3.01944 0.320833 0.1)
(3.0625 0.458333 0.1)
(3.01944 0.504167 0.1)
(3.0625 0.641667 0.1)
(3.01944 0.6875 0.1)
(3.0625 0.825 0.1)
(3.01944 0.916667 0.1)
(3.01944 0.870833 0.1)
(3.23472 -0.825 0.1)
(3.19167 -0.779167 0.1)
(3.23472 -0.641667 0.1)
(3.19167 -0.595833 0.1)
(3.23472 -0.458333 0.1)
(3.19167 -0.4125 0.1)
(3.23472 -0.275 0.1)
(3.19167 -0.229167 0.1)
(3.23472 -0.0916667 0.1)
(3.19167 -0.0458333 0.1)
(3.23472 0.0916667 0.1)
(3.19167 0.1375 0.1)
(3.23472 0.275 0.1)
(3.19167 0.320833 0.1)
(3.23472 0.458333 0.1)
(3.19167 0.504167 0.1)
(3.23472 0.641667 0.1)
(3.19167 0.6875 0.1)
(3.23472 0.825 0.1)
(3.19167 0.916667 0.1)
(3.19167 0.870833 0.1)
(3.40694 -0.825 0.1)
(3.36389 -0.779167 0.1)
(3.40694 -0.641667 0.1)
(3.36389 -0.595833 0.1)
(3.40694 -0.458333 0.1)
(3.36389 -0.4125 0.1)
(3.40694 -0.275 0.1)
(3.36389 -0.229167 0.1)
(3.40694 -0.0916667 0.1)
(3.36389 -0.0458333 0.1)
(3.40694 0.0916667 0.1)
(3.36389 0.1375 0.1)
(3.40694 0.275 0.1)
(3.36389 0.320833 0.1)
(3.40694 0.458333 0.1)
(3.36389 0.504167 0.1)
(3.40694 0.641667 0.1)
(3.36389 0.6875 0.1)
(3.40694 0.825 0.1)
(3.36389 0.916667 0.1)
(3.36389 0.870833 0.1)
(3.57917 -0.825 0.1)
(3.53611 -0.779167 0.1)
(3.57917 -0.641667 0.1)
(3.53611 -0.595833 0.1)
(3.57917 -0.458333 0.1)
(3.53611 -0.4125 0.1)
(3.57917 -0.275 0.1)
(3.53611 -0.229167 0.1)
(3.57917 -0.0916667 0.1)
(3.53611 -0.0458333 0.1)
(3.57917 0.0916667 0.1)
(3.53611 0.1375 0.1)
(3.57917 0.275 0.1)
(3.53611 0.320833 0.1)
(3.57917 0.458333 0.1)
(3.53611 0.504167 0.1)
(3.57917 0.641667 0.1)
(3.53611 0.6875 0.1)
(3.57917 0.825 0.1)
(3.53611 0.916667 0.1)
(3.53611 0.870833 0.1)
(3.75139 -0.825 0.1)
(3.70833 -0.779167 0.1)
(3.75139 -0.641667 0.1)
(3.70833 -0.595833 0.1)
(3.75139 -0.458333 0.1)
(3.70833 -0.4125 0.1)
(3.75139 -0.275 0.1)
(3.70833 -0.229167 0.1)
(3.75139 -0.0916667 0.1)
(3.70833 -0.0458333 0.1)
(3.75139 0.0916667 0.1)
(3.70833 0.1375 0.1)
(3.75139 0.275 0.1)
(3.70833 0.320833 0.1)
(3.75139 0.458333 0.1)
(3.70833 0.504167 0.1)
(3.75139 0.641667 0.1)
(3.70833 0.6875 0.1)
(3.75139 0.825 0.1)
(3.70833 0.916667 0.1)
(3.70833 0.870833 0.1)
(3.92361 -0.825 0.1)
(3.88056 -0.779167 0.1)
(3.92361 -0.641667 0.1)
(3.88056 -0.595833 0.1)
(3.92361 -0.458333 0.1)
(3.88056 -0.4125 0.1)
(3.92361 -0.275 0.1)
(3.88056 -0.229167 0.1)
(3.92361 -0.0916667 0.1)
(3.88056 -0.0458333 0.1)
(3.92361 0.0916667 0.1)
(3.88056 0.1375 0.1)
(3.92361 0.275 0.1)
(3.88056 0.320833 0.1)
(3.92361 0.458333 0.1)
(3.88056 0.504167 0.1)
(3.92361 0.641667 0.1)
(3.88056 0.6875 0.1)
(3.92361 0.825 0.1)
(3.88056 0.916667 0.1)
(3.88056 0.870833 0.1)
(4.09583 -0.825 0.1)
(4.05278 -0.779167 0.1)
(4.09583 -0.641667 0.1)
(4.05278 -0.595833 0.1)
(4.09583 -0.458333 0.1)
(4.05278 -0.4125 0.1)
(4.09583 -0.275 0.1)
(4.05278 -0.229167 0.1)
(4.09583 -0.0916667 0.1)
(4.05278 -0.0458333 0.1)
(4.09583 0.0916667 0.1)
(4.05278 0.1375 0.1)
(4.09583 0.275 0.1)
(4.05278 0.320833 0.1)
(4.09583 0.458333 0.1)
(4.05278 0.504167 0.1)
(4.09583 0.641667 0.1)
(4.05278 0.6875 0.1)
(4.09583 0.825 0.1)
(4.05278 0.916667 0.1)
(4.05278 0.870833 0.1)
(4.26806 -0.825 0.1)
(4.225 -0.779167 0.1)
(4.26806 -0.641667 0.1)
(4.225 -0.595833 0.1)
(4.26806 -0.458333 0.1)
(4.225 -0.4125 0.1)
(4.26806 -0.275 0.1)
(4.225 -0.229167 0.1)
(4.26806 -0.0916667 0.1)
(4.225 -0.0458333 0.1)
(4.26806 0.0916667 0.1)
(4.225 0.1375 0.1)
(4.26806 0.275 0.1)
(4.225 0.320833 0.1)
(4.26806 0.458333 0.1)
(4.225 0.504167 0.1)
(4.26806 0.641667 0.1)
(4.225 0.6875 0.1)
(4.26806 0.825 0.1)
(4.225 0.916667 0.1)
(4.225 0.870833 0.1)
(4.44028 -0.825 0.1)
(4.39722 -0.779167 0.1)
(4.44028 -0.641667 0.1)
(4.39722 -0.595833 0.1)
(4.44028 -0.458333 0.1)
(4.39722 -0.4125 0.1)
(4.44028 -0.275 0.1)
(4.39722 -0.229167 0.1)
(4.44028 -0.0916667 0.1)
(4.39722 -0.0458333 0.1)
(4.44028 0.0916667 0.1)
(4.39722 0.1375 0.1)
(4.44028 0.275 0.1)
(4.39722 0.320833 0.1)
(4.44028 0.458333 0.1)
(4.39722 0.504167 0.1)
(4.44028 0.641667 0.1)
(4.39722 0.6875 0.1)
(4.44028 0.825 0.1)
(4.39722 0.916667 0.1)
(4.39722 0.870833 0.1)
(4.6125 -0.825 0.1)
(4.56944 -0.779167 0.1)
(4.6125 -0.641667 0.1)
(4.56944 -0.595833 0.1)
(4.6125 -0.458333 0.1)
(4.56944 -0.4125 0.1)
(4.6125 -0.275 0.1)
(4.56944 -0.229167 0.1)
(4.6125 -0.0916667 0.1)
(4.56944 -0.0458333 0.1)
(4.6125 0.0916667 0.1)
(4.56944 0.1375 0.1)
(4.6125 0.275 0.1)
(4.56944 0.320833 0.1)
(4.6125 0.458333 0.1)
(4.56944 0.504167 0.1)
(4.6125 0.641667 0.1)
(4.56944 0.6875 0.1)
(4.6125 0.825 0.1)
(4.56944 0.916667 0.1)
(4.56944 0.870833 0.1)
(4.78472 -0.825 0.1)
(4.74167 -0.779167 0.1)
(4.78472 -0.641667 0.1)
(4.74167 -0.595833 0.1)
(4.78472 -0.458333 0.1)
(4.74167 -0.4125 0.1)
(4.78472 -0.275 0.1)
(4.74167 -0.229167 0.1)
(4.78472 -0.0916667 0.1)
(4.74167 -0.0458333 0.1)
(4.78472 0.0916667 0.1)
(4.74167 0.1375 0.1)
(4.78472 0.275 0.1)
(4.74167 0.320833 0.1)
(4.78472 0.458333 0.1)
(4.74167 0.504167 0.1)
(4.78472 0.641667 0.1)
(4.74167 0.6875 0.1)
(4.78472 0.825 0.1)
(4.74167 0.916667 0.1)
(4.74167 0.870833 0.1)
(5 -0.825 0.1)
(4.95694 -0.825 0.1)
(4.91389 -0.779167 0.1)
(5 -0.641667 0.1)
(4.95694 -0.641667 0.1)
(4.91389 -0.595833 0.1)
(5 -0.458333 0.1)
(4.95694 -0.458333 0.1)
(4.91389 -0.4125 0.1)
(5 -0.275 0.1)
(4.95694 -0.275 0.1)
(4.91389 -0.229167 0.1)
(5 -0.0916667 0.1)
(4.95694 -0.0916667 0.1)
(4.91389 -0.0458333 0.1)
(5 0.0916667 0.1)
(4.95694 0.0916667 0.1)
(4.91389 0.1375 0.1)
(5 0.275 0.1)
(4.95694 0.275 0.1)
(4.91389 0.320833 0.1)
(5 0.458333 0.1)
(4.95694 0.458333 0.1)
(4.91389 0.504167 0.1)
(5 0.641667 0.1)
(4.95694 0.641667 0.1)
(4.91389 0.6875 0.1)
(5 0.825 0.1)
(4.95694 0.825 0.1)
(4.91389 0.916667 0.1)
(4.91389 0.870833 0.1)
(0.1695484667 0.1877432626 0.1)
(0.342461917 0.171614691 0.1)
(0.2128278292 0.1837628794 0.1)
(0.484167225 -0.1563794529 0.1)
(0.5135964926 0.1437713609 0.1)
(0.5146179512 0.1550512334 0.1)
(0.385580609 0.1675045967 0.1)
(0.655625738 -0.171985375 0.1)
(0.8270815715 -0.1874253399 0.1)
(0.8046006115 -0.1967322403 0.1)
(0.8153257018 -0.1976931866 0.1)
(0.8136928408 0.1135818739 0.1)
(0.8330454326 0.08871664685 0.1)
(0.999670301 -0.1965650232 0.1)
(0.9774799457 -0.2101219469 0.1)
(0.9878975864 -0.2069819513 0.1)
(1.002489156 -0.06692481955 0.1)
(1.010254934 -0.08248400119 0.1)
(0.8753960239 -0.04562915674 0.1)
(1.003265735 0.06933396496 0.1)
(0.9841729948 0.09469430305 0.1)
(0.9629396756 0.09716751862 0.1)
(0.9183546917 0.07940152025 0.1)
(0.9416807755 0.09961398307 0.1)
(-0.05140447182 -0.05991516133 0.1)
(-0.04034107012 -0.06119472505 0.1)
(-0.02975028372 -0.07409733373 0.1)
(-0.0409726963 -0.07278996087 0.1)
(-0.05215092857 -0.07146860982 0.1)
(-0.0188922941 -0.07518610452 0.1)
(-0.0757469811 -0.09204167377 0.1)
(-0.1366335141 -0.01324790424 0.1)
(-0.1133493322 0.007811853258 0.1)
(-0.1184139851 0.1756639926 0.1)
(-0.1156717948 0.1991360368 0.1)
(-0.1375293585 0.2003907119 0.1)
(-0.09356437657 0.1979656394 0.1)
(-0.112745447 0.2226120848 0.1)
(0.157479768 0.291644576 0.1)
(0.1337542152 0.2709800849 0.1)
(0.2410624103 -0.2139986497 0.1)
(0.2625039169 -0.2159599092 0.1)
(0.281851889 -0.2405826726 0.1)
(0.219608955 -0.2120362816 0.1)
(0.3302795828 0.2754602643 0.1)
(0.3066125722 0.2548747023 0.1)
(0.4125246599 -0.2296400688 0.1)
(0.4339751485 -0.2315911144 0.1)
(0.4533216321 -0.2561866238 0.1)
(0.3675530702 -0.248390561 0.1)
(0.3910823218 -0.2276877708 0.1)
(0.3983930685 -0.148524622 0.1)
(0.5024079319 0.2588581993 0.1)
(0.4788721308 0.238333777 0.1)
(0.584053089 -0.2451851901 0.1)
(0.6054772679 -0.2471167216 0.1)
(0.6248199944 -0.2716877793 0.1)
(0.5390798364 -0.2639536053 0.1)
(0.5626152471 -0.243249378 0.1)
(0.5699102061 -0.1642022668 0.1)
(0.5402521215 0.07862688382 0.1)
(0.755512043 -0.2606023457 0.1)
(0.7769461073 -0.2625247515 0.1)
(0.7941900744 -0.3097919785 0.1)
(0.7962857337 -0.287107573 0.1)
(0.7105611891 -0.279399955 0.1)
(0.7340761721 -0.2586777637 0.1)
(0.741343251 -0.1797254824 0.1)
(0.7510252232 -0.1919291412 0.1)
(0.7542480198 0.05164971807 0.1)
(0.7639712952 0.03933918643 0.1)
(0.9269831513 -0.2761049897 0.1)
(0.9485686477 -0.2780946733 0.1)
(0.9668500423 -0.3236192905 0.1)
(0.9689717136 -0.3008710149 0.1)
(0.8799231803 -0.3175696872 0.1)
(0.8820206874 -0.2948653672 0.1)
(0.9055369432 -0.2741402811 0.1)
(0.9127991256 -0.1951433565 0.1)
(0.9010648332 -0.2053951279 0.1)
(1.12934625 -0.1970913767 0.1)
(1.150784174 -0.199080424 0.1)
(1.15290136 -0.1762614316 0.1)
(1.15501848 -0.1534431362 0.1)
(1.148666989 -0.2218994165 0.1)
(1.137814871 -0.1058167014 0.1)
(1.159252795 -0.1078057488 0.1)
(1.161369943 -0.08498715462 0.1)
(1.157135638 -0.1306244425 0.1)
(1.052073058 -0.09786223235 0.1)
(1.053131678 -0.08645243741 0.1)
(1.043466321 -0.07404805516 0.1)
(0.09384499513 -0.04619876199 0.1)
(0.1585777863 -0.0521850972 0.1)
(0.126232088 0.1916818869 0.1)
(0.2944145747 -0.104792551 0.1)
(0.3051302006 -0.1057797351 0.1)
(0.313757486 -0.1293616172 0.1)
(0.3148017024 -0.1180637703 0.1)
(0.2719191921 -0.114114182 0.1)
(0.283694966 -0.1038049974 0.1)
(0.2658737281 -0.06243485886 0.1)
(0.3302680627 -0.06781513388 0.1)
(0.3190045418 -0.07266820919 0.1)
(0.3243608016 -0.07318395249 0.1)
(0.180081814 -0.0540894895 0.1)
(0.2444539722 -0.06036906173 0.1)
(0.2992874029 0.1756968229 0.1)
(0.3003338879 0.1869974722 0.1)
(0.2895326709 0.188014692 0.1)
(0.278719228 0.1890300334 0.1)
(0.3111219758 0.1859794619 0.1)
(0.289686278 0.1308078485 0.1)
(0.2848154046 0.1370746445 0.1)
(0.2631921116 0.1390899294 0.1)
(0.2572643652 0.1338250478 0.1)
(0.2560758008 0.1797472455 0.1)
(0.2571277264 0.1910524115 0.1)
(0.2463196111 0.1920602285 0.1)
(0.2679235234 0.1900417203 0.1)
(0.4412872913 -0.1524562154 0.1)
(0.3564310427 -0.07630038704 0.1)
(0.3516188491 -0.0700072997 0.1)
(0.5187373674 0.08070792253 0.1)
(0.4716716629 0.1592226626 0.1)
(0.512580567 0.1324970009 0.1)
(0.5008283003 0.1222679874 0.1)
(0.4286591539 0.1633731199 0.1)
(0.6127635734 -0.1680979322 0.1)
(0.7770973177 -0.1434083038 0.1)
(0.7829728967 -0.1382510631 0.1)
(0.7938815879 -0.1957708527 0.1)
(0.78420946 -0.1835801588 0.1)
(0.8494526508 0.03016867918 0.1)
(0.8067471809 0.03481408738 0.1)
(0.8184048379 0.04486769122 0.1)
(1.009157954 -0.1513511763 0.1)
(0.9655747932 -0.2110229436 0.1)
(0.9556759078 -0.199057263 0.1)
(1.011073633 -0.1288638863 0.1)
(0.06906316479 -0.1981818703 0.1)
(0.09059551118 -0.2001696354 0.1)
(0.04740066087 -0.1961519001 0.1)
(0.03597666533 -0.08071682189 0.1)
(0.04685939111 -0.08176369877 0.1)
(0.05671239699 -0.09413186203 0.1)
(0.02505319186 -0.07964909136 0.1)
(0.208626324 -0.09687314175 0.1)
(0.2193576043 -0.09786479116 0.1)
(0.2290311694 -0.1101590608 0.1)
(0.1860997968 -0.106194896 0.1)
(0.1978812883 -0.0958782075 0.1)
(0.6505434331 0.2214276358 0.1)
(0.7293956669 0.01456500308 0.1)
(0.9326082701 -0.002109387611 0.1)
(0.9210621154 -0.01197870444 0.1)
(0.1225727386 -0.08889095109 0.1)
(0.1333649222 -0.08989728988 0.1)
(0.1430848963 -0.1022109298 0.1)
(0.09996050727 -0.09819471063 0.1)
(0.1117886131 -0.08788435566 0.1)
(0.04681463119 0.1644001886 0.1)
(0.03703289053 0.1766683404 0.1)
(0.0828528977 0.1955680898 0.1)
(0.5760067292 0.1149282447 0.1)
(0.56527356 0.1159753056 0.1)
(0.5555605765 0.1282993442 0.1)
(0.5984836759 0.1240728218 0.1)
(0.5867312859 0.1138749529 0.1)
(0.8967422036 -0.0480008648 0.1)
(-0.07033016006 0.002486254776 0.1)
(-0.06949752256 0.01440028354 0.1)
(-0.05794497328 0.02521204008 0.1)
(-0.07077006265 -0.0100766317 0.1)
(-0.06019835687 -0.02373259945 0.1)
(-0.04898007658 -0.02530532537 0.1)
(-0.02619075375 -0.01636056172 0.1)
(-0.03792478424 -0.02666146741 0.1)
(-0.06117552283 0.1012879428 0.1)
(-0.05982130164 0.1130542533 0.1)
(-0.04697526115 0.1247022872 0.1)
(-0.05312857609 0.07675832206 0.1)
(-0.06249919273 0.08950453661 0.1)
(0.06467576736 0.1226883026 0.1)
(0.02429086052 0.1086222035 0.1)
(0.5617360769 0.07657109844 0.1)
(0.7508488022 0.01246929428 0.1)
(0.9260829388 -0.1681692221 0.1)
(0.1154379833 -0.04825924042 0.1)
(0.137018337 -0.05033682478 0.1)
(0.2873683115 -0.06415961039 0.1)
(0.313648788 -0.07215783562 0.1)
(0.3088542359 -0.06569625751 0.1)
(0.2015498574 -0.05618688279 0.1)
(0.2230189981 -0.05828327317 0.1)
(0.497211362 0.08262439692 0.1)
(0.5031165261 0.08787319597 0.1)
(0.9474815268 -0.1701817358 0.1)
(0.9689800253 -0.1718751149 0.1)
(0.9326316865 -0.06889175452 0.1)
(1.054446736 -0.3052172053 0.1)
(1.078001753 -0.2843882559 0.1)
(1.04466315 -0.177726117 0.1)
(1.05643568 -0.1673111804 0.1)
(-0.03034877002 0.03417329096 0.1)
(-0.01394928009 0.01185206571 0.1)
(-0.01975269583 0.006702993132 0.1)
(-0.0279132631 0.0620565332 0.1)
(1.060669875 -0.1216750874 0.1)
(1.051004425 -0.1092717009 0.1)
(0.9977331946 -0.1087673856 0.1)
(-0.94311 0.962359 0.1)
(-0.771676 0.963108 0.1)
(-0.598684 0.965251 0.1)
(-0.426783 0.965869 0.1)
(-0.2535849506 0.9669586883 0.1)
(-0.07948895201 0.9685567172 0.1)
(0.09526274932 0.969078881 0.1)
(0.268696916 0.9681970177 0.1)
(0.440689462 0.9668247248 0.1)
(0.6115175215 0.9656659136 0.1)
(0.7821604802 0.9649062235 0.1)
(0.9532905718 0.9642859095 0.1)
(1.12524 0.963225 0.1)
(1.29722 0.9625 0.1)
(1.46944 0.9625 0.1)
(1.64167 0.9625 0.1)
(1.81389 0.9625 0.1)
(1.98611 0.9625 0.1)
(2.15833 0.9625 0.1)
(2.33056 0.9625 0.1)
(2.50278 0.9625 0.1)
(2.675 0.9625 0.1)
(2.84722 0.9625 0.1)
(3.01944 0.9625 0.1)
(3.19167 0.9625 0.1)
(3.36389 0.9625 0.1)
(3.53611 0.9625 0.1)
(3.70833 0.9625 0.1)
(3.88056 0.9625 0.1)
(4.05278 0.9625 0.1)
(4.225 0.9625 0.1)
(4.39722 0.9625 0.1)
(4.56944 0.9625 0.1)
(4.74167 0.9625 0.1)
(4.91389 0.9625 0.1)
(1.172212141 -0.2010685476 0.1)
(1.180680762 -0.1097938723 0.1)
(0.3013797468 0.1983021967 0.1)
(0.2581789334 0.202360657 0.1)
(0.8411236567 0.1790958593 0.1)
(-0.1986676046 0.01744115617 0.1)
(-0.1901592661 0.1095444057 0.1)
(-0.05926617756 -0.1629404595 0.1)
(0.5882545616 0.2504422733 0.1)
(0.8778219264 -0.3402927412 0.1)
(0.3127129924 -0.1406624512 0.1)
(-0.02892917629 -0.06264421089 0.1)
(0.1960592346 -0.2327431984 0.1)
(0.7920914792 -0.3324972018 0.1)
(0.9647362239 -0.3463803462 0.1)
(0.1100313944 -0.2248407271 0.1)
(0.02366771092 -0.2168116877 0.1)
(-0.94311 -0.962641 0.1)
(-0.771746 -0.962725 0.1)
(-0.600176 -0.963422 0.1)
(-0.426342 -0.966051 0.1)
(-0.2542535662 -0.9665895821 0.1)
(-0.08321242546 -0.9663529322 0.1)
(0.08881362282 -0.9666014617 0.1)
(0.2608338963 -0.9669345632 0.1)
(0.4324652517 -0.9672430542 0.1)
(0.6040202276 -0.9677851406 0.1)
(0.7756470372 -0.9685648796 0.1)
(0.9461235493 -0.9701966581 0.1)
(1.118822737 -0.9664864945 0.1)
(1.294454222 -0.9647826576 0.1)
(1.46939269 -0.9625475744 0.1)
(1.64167 -0.9625 0.1)
(1.81389 -0.9625 0.1)
(1.98611 -0.9625 0.1)
(2.15833 -0.9625 0.1)
(2.33056 -0.9625 0.1)
(2.50278 -0.9625 0.1)
(2.675 -0.9625 0.1)
(2.84722 -0.9625 0.1)
(3.01944 -0.9625 0.1)
(3.19167 -0.9625 0.1)
(3.36389 -0.9625 0.1)
(3.53611 -0.9625 0.1)
(3.70833 -0.9625 0.1)
(3.88056 -0.9625 0.1)
(4.05278 -0.9625 0.1)
(4.225 -0.9625 0.1)
(4.39722 -0.9625 0.1)
(4.56944 -0.9625 0.1)
(4.74167 -0.9625 0.1)
(4.91389 -0.9625 0.1)
(0.9405318795 -0.1318521717 0.1)
(0.9352584806 -0.1309304473 0.1)
(0.941024818 -0.1289963987 0.1)
(0.9357504233 -0.1280745819 0.1)
(0.9414033809 -0.1267996777 0.1)
(0.9361289954 -0.1258777613 0.1)
(0.9458167251 -0.1327479427 0.1)
(0.9463136188 -0.1298928379 0.1)
(0.9466951596 -0.1276964936 0.1)
(0.1352340472 -0.01329245819 0.1)
(0.1299004891 -0.01236967143 0.1)
(0.1357121422 -0.01043430369 0.1)
(0.1304013379 -0.009515234934 0.1)
(0.136080831 -0.008235762624 0.1)
(0.1307868247 -0.007319658425 0.1)
(0.04636586558 0.08535540238 0.1)
(0.05084207215 0.08672211331 0.1)
(0.0472168833 0.08258523419 0.1)
(0.05163949022 0.08393602885 0.1)
(0.04787162026 0.08045433329 0.1)
(0.05225292008 0.08179289177 0.1)
(0.5621448198 0.03694336354 0.1)
(0.5665596165 0.03564354404 0.1)
(0.5613264819 0.03416327621 0.1)
(0.5657412879 0.03286355628 0.1)
(0.5606972245 0.03202476447 0.1)
(0.5651120305 0.03072504455 0.1)
(0.1245976382 -0.0114190023 0.1)
(0.1251123071 -0.00856715364 0.1)
(0.1255086729 -0.006373389944 0.1)
(0.7345567104 -0.02027865299 0.1)
(0.7419357235 -0.0229906129 0.1)
(0.7335581158 -0.02299905306 0.1)
(0.7409254651 -0.02570683423 0.1)
(0.7327895059 -0.02509163329 0.1)
(0.7401481144 -0.02779620421 0.1)
(0.8971600795 -0.08592817135 0.1)
(0.9014216785 -0.08777507738 0.1)
(0.8960026596 -0.08858520637 0.1)
(0.9002536845 -0.0904270137 0.1)
(0.8951130246 -0.09062915874 0.1)
(0.8993543879 -0.09246685591 0.1)
(0.9825071563 -0.1373426351 0.1)
(0.977669069 -0.137563413 0.1)
(0.9828305197 -0.1354918941 0.1)
(0.9780902063 -0.1351351349 0.1)
(0.9830791134 -0.1340681716 0.1)
(0.9784141539 -0.1332672746 0.1)
(0.05863323197 0.08879539428 0.1)
(0.05934298538 0.08598560734 0.1)
(0.05988895041 0.0838243254 0.1)
(0.00486697547 0.06491576129 0.1)
(0.01164150497 0.07023564811 0.1)
(0.00687948646 0.06283061823 0.1)
(0.01328655931 0.06784996721 0.1)
(0.008427554338 0.06122654005 0.1)
(0.01455202103 0.06601470891 0.1)
(0.6850312274 -0.09049228295 0.1)
(0.6797169147 -0.08969762212 0.1)
(0.685464792 -0.08762698396 0.1)
(0.6801465242 -0.08683165487 0.1)
(0.6857978565 -0.0854227273 0.1)
(0.6804766107 -0.08462702148 0.1)
(0.6691277395 -0.08811607831 0.1)
(0.6640986246 -0.08736495163 0.1)
(0.669554371 -0.08524973433 0.1)
(0.6645232832 -0.08449822374 0.1)
(0.6698834711 -0.08304490899 0.1)
(0.6648493961 -0.08229312124 0.1)
(0.69033605 -0.09130263414 0.1)
(0.6907725833 -0.08843781144 0.1)
(0.6911086164 -0.08623403109 0.1)
(0.7062683852 -0.09373594807 0.1)
(0.7009565833 -0.09292504976 0.1)
(0.7067049277 -0.0908710258 0.1)
(0.7013941124 -0.09006031945 0.1)
(0.7070409609 -0.08866724544 0.1)
(0.7017301363 -0.08785663866 0.1)
(0.7535526877 -0.1009764697 0.1)
(0.7486702828 -0.1002028004 0.1)
(0.7540060559 -0.09811421328 0.1)
(0.7491216688 -0.09734025965 0.1)
(0.7543549503 -0.09591253008 0.1)
(0.749469586 -0.09513828491 0.1)
(0.7922487851 -0.04221570751 0.1)
(0.7995912901 -0.04513713815 0.1)
(0.7911890601 -0.0449130404 0.1)
(0.7985209356 -0.04782996977 0.1)
(0.7903738878 -0.0469879042 0.1)
(0.7976970419 -0.04990141322 0.1)
(0.9249658992 -0.1291938412 0.1)
(0.9205216762 -0.128416839 0.1)
(0.9254548825 -0.1263373999 0.1)
(0.9210215293 -0.1255623101 0.1)
(0.9258304859 -0.124140103 0.1)
(0.9214060388 -0.1233664421 0.1)
(0.9908589085 -0.135989223 0.1)
(0.990690735 -0.1354204539 0.1)
(0.9616747871 -0.1355163279 0.1)
(0.9563807029 -0.1346227126 0.1)
(0.9621711357 -0.1326670979 0.1)
(0.9568794956 -0.1317687884 0.1)
(0.9625532565 -0.1304753267 0.1)
(0.9572639497 -0.1295735178 0.1)
(0.9596765569 -0.1143730997 0.1)
(0.963816683 -0.1163277442 0.1)
(0.9584334648 -0.1169901489 0.1)
(0.9625758041 -0.1189425885 0.1)
(0.9574773883 -0.1190033315 0.1)
(0.9616218946 -0.1209540639 0.1)
(0.1784764045 0.1019798773 0.1)
(0.183818054 0.1020210656 0.1)
(0.1785088405 0.09908218838 0.1)
(0.1838313864 0.09912314053 0.1)
(0.1785340075 0.09685303004 0.1)
(0.1838414882 0.09689397395 0.1)
(0.1892110335 0.102030978 0.1)
(0.1892042759 0.09913300875 0.1)
(0.1892003083 0.09690374155 0.1)
(0.2000044576 0.101936424 0.1)
(0.2054098398 0.101809405 0.1)
(0.1999545514 0.09903884268 0.1)
(0.2053388848 0.09891227015 0.1)
(0.1999164705 0.09680992854 0.1)
(0.2052837657 0.09668373169 0.1)
(0.3507575953 0.08756635163 0.1)
(0.3560607868 0.0866626519 0.1)
(0.3502745401 0.0847088582 0.1)
(0.355570817 0.0838064026 0.1)
(0.3499038783 0.08251070105 0.1)
(0.3551932314 0.08160939 0.1)
(0.3347781529 0.09013057742 0.1)
(0.3400993648 0.08930203429 0.1)
(0.3343366594 0.08726641579 0.1)
(0.3396509475 0.08643901722 0.1)
(0.3339976576 0.08506311173 0.1)
(0.3393050126 0.08423675815 0.1)
(0.3613788034 0.08575637153 0.1)
(0.3608730221 0.08290289483 0.1)
(0.3604835802 0.08070798657 0.1)
(0.371910719 0.08380664306 0.1)
(0.376926818 0.08287193374 0.1)
(0.3713792522 0.08095775895 0.1)
(0.3763894415 0.08002430095 0.1)
(0.3709710486 0.07876629875 0.1)
(0.3759762962 0.07783370096 0.1)
(0.1560241521 -0.01664589181 0.1)
(0.1511207467 -0.01586043196 0.1)
(0.1564725694 -0.01378287474 0.1)
(0.1515800523 -0.01299912813 0.1)
(0.1568175087 -0.01158052328 0.1)
(0.1519339068 -0.010798106 0.1)
(0.1458611001 -0.01500696998 0.1)
(0.1463233744 -0.01214614245 0.1)
(0.1466801884 -0.009945696192 0.1)
(0.8202703058 -0.0534547387 0.1)
(0.8245887769 -0.055229892 0.1)
(0.8191757233 -0.0561380915 0.1)
(0.8234883956 -0.05791079861 0.1)
(0.8183334375 -0.05820210402 0.1)
(0.822642247 -0.05997314715 0.1)
(0.8767844925 -0.07704628981 0.1)
(0.881014796 -0.07886247321 0.1)
(0.875640634 -0.07970870068 0.1)
(0.879860271 -0.08152078111 0.1)
(0.8747596649 -0.08175667083 0.1)
(0.8789735492 -0.08356580721 0.1)
(0.5424557003 0.04265948706 0.1)
(0.5471844302 0.04130111446 0.1)
(0.5416549621 0.03987425177 0.1)
(0.5463827055 0.03851607113 0.1)
(0.5410393862 0.03773165862 0.1)
(0.5457661616 0.03637386908 0.1)
(0.5522330153 0.039850598 0.1)
(0.551426432 0.03706731103 0.1)
(0.5508059699 0.03492617553 0.1)
(0.6528142829 0.008418180575 0.1)
(0.6574359646 0.006880229617 0.1)
(0.6518993546 0.005668647406 0.1)
(0.6565171182 0.004131762995 0.1)
(0.6511949417 0.003553579172 0.1)
(0.6558107692 0.002017476964 0.1)
(0.1087392074 -0.008503051966 0.1)
(0.1034996075 -0.00748764943 0.1)
(0.1092815256 -0.005656279388 0.1)
(0.1040586959 -0.004644140127 0.1)
(0.1096986168 -0.003466447223 0.1)
(0.1044895979 -0.002456995362 0.1)
(0.1140254369 -0.009492149875 0.1)
(0.1145529578 -0.006642497939 0.1)
(0.114958202 -0.004450461858 0.1)
(0.5571316833 -0.07199970763 0.1)
(0.5520930095 -0.07128666071 0.1)
(0.5575375155 -0.0691302287 0.1)
(0.5524988325 -0.06841728135 0.1)
(0.5578497622 -0.06692303623 0.1)
(0.5528110791 -0.06621008888 0.1)
(0.5996818392 -0.07800518367 0.1)
(0.5943583444 -0.07725536632 0.1)
(0.6000856799 -0.07513551997 0.1)
(0.5947621851 -0.07438570262 0.1)
(0.6003969401 -0.07292813554 0.1)
(0.5950734453 -0.0721783182 0.1)
(0.5837104792 -0.07575434481 0.1)
(0.5783871784 -0.07500243644 0.1)
(0.5841153156 -0.07288477349 0.1)
(0.5787920148 -0.07213286513 0.1)
(0.5844275623 -0.07067758103 0.1)
(0.5791042615 -0.06992567266 0.1)
(0.5624182717 -0.07274680374 0.1)
(0.5628230989 -0.06987733199 0.1)
(0.5631353548 -0.06767003996 0.1)
(0.5730638776 -0.07425052808 0.1)
(0.5734697005 -0.07138114872 0.1)
(0.5737809607 -0.0691737643 0.1)
(0.6596510318 -0.08671086382 0.1)
(0.6600727124 -0.0838437592 0.1)
(0.6603968523 -0.08163827279 0.1)
(0.6474766382 -0.08492841053 0.1)
(0.6422093606 -0.0841571953 0.1)
(0.6478963366 -0.08206102156 0.1)
(0.6426300548 -0.08128989872 0.1)
(0.64821949 -0.07985534319 0.1)
(0.642953199 -0.07908431992 0.1)
(0.6050043383 -0.07875490863 0.1)
(0.6054091748 -0.07588533731 0.1)
(0.6057194392 -0.0736778605 0.1)
(0.6209424474 -0.08102857321 0.1)
(0.6156374525 -0.08025255292 0.1)
(0.6213621458 -0.07816118425 0.1)
(0.616049222 -0.07738402659 0.1)
(0.6216843035 -0.0759554135 0.1)
(0.6163664288 -0.07517749519 0.1)
(0.6368898086 -0.08337570676 0.1)
(0.6373104935 -0.08050850976 0.1)
(0.6376356292 -0.07830311573 0.1)
(0.6262549277 -0.08181051035 0.1)
(0.6266766083 -0.07894340573 0.1)
(0.627001744 -0.0767380117 0.1)
(0.7275207764 -0.09696696645 0.1)
(0.7222064935 -0.09616116071 0.1)
(0.7279543411 -0.09410166746 0.1)
(0.7226410538 -0.0932959541 0.1)
(0.728288392 -0.09189760276 0.1)
(0.7229760913 -0.09109208135 0.1)
(0.7115814229 -0.09454434989 0.1)
(0.7120169698 -0.09167933523 0.1)
(0.7123530029 -0.08947555488 0.1)
(0.7511279089 -0.02644492274 0.1)
(0.7554639223 -0.02807430326 0.1)
(0.7501069699 -0.02915719275 0.1)
(0.7544381349 -0.03078470737 0.1)
(0.7493218613 -0.03124358327 0.1)
(0.753649145 -0.03286963306 0.1)
(0.7328343131 -0.09776999136 0.1)
(0.7332678777 -0.09490469237 0.1)
(0.7336009422 -0.09270043571 0.1)
(0.7434315701 -0.0993726722 0.1)
(0.7438750458 -0.09650879492 0.1)
(0.7442160206 -0.09430587477 0.1)
(0.8040775878 -0.04692193734 0.1)
(0.8030014067 -0.0496126215 0.1)
(0.8021736503 -0.05168240097 0.1)
(0.8129648703 -0.05050179798 0.1)
(0.8118790092 -0.05318857112 0.1)
(0.8110434994 -0.05525532135 0.1)
(0.9669604273 -0.1364035356 0.1)
(0.967458329 -0.1335808627 0.1)
(0.9678415616 -0.1314095818 0.1)
(0.1611909831 0.1015415149 0.1)
(0.1687785279 0.1017915093 0.1)
(0.1612888339 0.09864528888 0.1)
(0.1688602439 0.09889457085 0.1)
(0.1613643229 0.09641728649 0.1)
(0.16892265 0.09666627587 0.1)
(0.1402145953 0.1005383266 0.1)
(0.1455165888 0.1008665058 0.1)
(0.1404022388 0.09764652399 0.1)
(0.1456860414 0.09797347857 0.1)
(0.1405473474 0.0954220047 0.1)
(0.1458160016 0.09574805489 0.1)
(0.156235656 0.1013668655 0.1)
(0.15634257 0.09847090331 0.1)
(0.1564251214 0.09624324994 0.1)
(0.1351185964 0.1001897292 0.1)
(0.1353244309 0.09729915129 0.1)
(0.1354836828 0.0950755292 0.1)
(0.2216241605 0.1012787769 0.1)
(0.2270275124 0.1010432815 0.1)
(0.2215031421 0.09838327418 0.1)
(0.2268875014 0.09814873754 0.1)
(0.2214099823 0.09615605575 0.1)
(0.2267813233 0.09592192354 0.1)
(0.2108094099 0.1016630402 0.1)
(0.2107234266 0.0987662954 0.1)
(0.2106572899 0.09653807616 0.1)
(0.2324451638 0.1007562447 0.1)
(0.2322901523 0.09786238946 0.1)
(0.2321699971 0.09563647055 0.1)
(0.3133457988 0.09320796463 0.1)
(0.3187305706 0.0924691332 0.1)
(0.3129667495 0.09033489601 0.1)
(0.3183336629 0.08959842452 0.1)
(0.3126753206 0.08812476774 0.1)
(0.3180283586 0.08739028664 0.1)
(0.3294257778 0.09095879816 0.1)
(0.3290011193 0.08809207027 0.1)
(0.3286740015 0.08588696059 0.1)
(0.3079801368 0.09388215416 0.1)
(0.3076179593 0.09100691756 0.1)
(0.3073384422 0.08879528238 0.1)
(0.3813846363 0.08202497642 0.1)
(0.3808383722 0.07917897167 0.1)
(0.3804183308 0.07698981495 0.1)
(0.3936340202 0.07963278753 0.1)
(0.3988975022 0.07858252959 0.1)
(0.3930690129 0.07679042997 0.1)
(0.3983078513 0.07574517011 0.1)
(0.392634165 0.07460405304 0.1)
(0.3978542693 0.07356253993 0.1)
(0.4198083536 0.07401926683 0.1)
(0.424779828 0.07288502682 0.1)
(0.4191724302 0.07119192506 0.1)
(0.4241360313 0.07005941986 0.1)
(0.418683418 0.0690171015 0.1)
(0.4236411094 0.06788584761 0.1)
(0.4041547441 0.07744336793 0.1)
(0.4035454004 0.07461024588 0.1)
(0.4030760625 0.07243098574 0.1)
(0.4146219506 0.07517505514 0.1)
(0.4139988146 0.07234481964 0.1)
(0.4135186438 0.07016787017 0.1)
(0.6454180599 0.0108797071 0.1)
(0.6445040812 0.008129583684 0.1)
(0.643801632 0.006014031963 0.1)
(0.7671608796 -0.03254544718 0.1)
(0.7714412448 -0.03419009192 0.1)
(0.7661224998 -0.03525085658 0.1)
(0.7704018951 -0.03689513013 0.1)
(0.7653238215 -0.03733196086 0.1)
(0.7696012429 -0.03897586046 0.1)
(0.8554810631 -0.1174135099 0.1)
(0.8502194713 -0.1165593653 0.1)
(0.8559472926 -0.1145533506 0.1)
(0.8506847143 -0.113699014 0.1)
(0.8563070846 -0.1123532811 0.1)
(0.8510425241 -0.1114986602 0.1)
(0.8451946102 -0.1157407429 0.1)
(0.8456608489 -0.1128804841 0.1)
(0.8460196452 -0.1106803222 0.1)
(0.8607624493 -0.1182707966 0.1)
(0.8612395671 -0.1154123506 0.1)
(0.8616062737 -0.1132135252 0.1)
(0.8660524378 -0.1191760834 0.1)
(0.8665404346 -0.1163194502 0.1)
(0.8669150515 -0.1141219613 0.1)
(0.9299955706 -0.1300255639 0.1)
(0.9304805987 -0.1271684544 0.1)
(0.9308542292 -0.1249707736 0.1)
(0.9510979677 -0.1336825468 0.1)
(0.9516007803 -0.1308285938 0.1)
(0.95198824 -0.1286334012 0.1)
(0.1405608506 -0.01414733049 0.1)
(0.1410250979 -0.01128688687 0.1)
(0.1413829077 -0.009086532995 0.1)
(0.8652292002 -0.07211988661 0.1)
(0.8725020644 -0.07520739374 0.1)
(0.8640988384 -0.07478837035 0.1)
(0.871363977 -0.07787254952 0.1)
(0.8632294761 -0.07684113329 0.1)
(0.8704888344 -0.07992266713 0.1)
(0.0419204854 0.08397347851 0.1)
(0.0428226227 0.08121955711 0.1)
(0.04351657573 0.0791010864 0.1)
(0.5572842231 0.03837422866 0.1)
(0.5564698035 0.03559307479 0.1)
(0.5558434871 0.03345378803 0.1)
(0.08658714816 -0.00397225917 0.1)
(0.08172069585 -0.002881608041 0.1)
(0.08720919811 -0.001141822471 0.1)
(0.08236370527 -5.582759347e-05 0.1)
(0.08768779425 0.001035473957 0.1)
(0.08285822889 0.002117781607 0.1)
(0.07652493613 -0.001679457027 0.1)
(0.07719222581 0.001140656053 0.1)
(0.07770553678 0.003310011393 0.1)
(0.09401787398 -0.005566162733 0.1)
(0.09461274684 -0.002729890323 0.1)
(0.09507036503 -0.0005481367875 0.1)
(0.09849173593 -0.006485913555 0.1)
(0.09906955831 -0.003646151011 0.1)
(0.09951328462 -0.001461501692 0.1)
(0.1193135901 -0.01044969054 0.1)
(0.1198341871 -0.007598894048 0.1)
(0.1202335031 -0.005405805796 0.1)
(0.7464755388 -0.0246965166 0.1)
(0.7454575094 -0.02740990017 0.1)
(0.744674333 -0.02949711273 0.1)
(0.8978108849 -0.1244948314 0.1)
(0.8925353405 -0.1236070539 0.1)
(0.8982949265 -0.1216375299 0.1)
(0.8930114626 -0.1207485155 0.1)
(0.898666584 -0.1194394651 0.1)
(0.8933771827 -0.1185494981 0.1)
(0.8872450226 -0.1227377908 0.1)
(0.8877171895 -0.1198785841 0.1)
(0.8880799409 -0.1176790904 0.1)
(0.8926532162 -0.08397535366 0.1)
(0.8914938696 -0.0866315069 0.1)
(0.890603285 -0.08867486902 0.1)
(0.9030968812 -0.1253998481 0.1)
(0.9035819001 -0.1225428382 0.1)
(0.9039555398 -0.1203450578 0.1)
(0.9083412994 -0.1262875497 0.1)
(0.9088263183 -0.1234305397 0.1)
(0.9091999488 -0.1212328589 0.1)
(0.908641665 -0.09102117764 0.1)
(0.912876203 -0.09292161257 0.1)
(0.9074572518 -0.09366606694 0.1)
(0.9116927671 -0.0955667934 0.1)
(0.9065463945 -0.09570061849 0.1)
(0.9107818913 -0.09760154409 0.1)
(0.9723152751 -0.1371726319 0.1)
(0.9727927914 -0.1344506061 0.1)
(0.9731598102 -0.1323566581 0.1)
(0.4715270836 0.06165305025 0.1)
(0.4789503419 0.05979681467 0.1)
(0.4708233699 0.0588419407 0.1)
(0.4782368004 0.05698802298 0.1)
(0.4702812815 0.05667957385 0.1)
(0.4776878528 0.05482749769 0.1)
(0.5739756221 0.0334601795 0.1)
(0.5731543617 0.03068106633 0.1)
(0.5725231498 0.02854313765 0.1)
(0.578712053 0.0320657412 0.1)
(0.5778780791 0.02929031835 0.1)
(0.5772370948 0.02715530496 0.1)
(0.01179186107 0.02196903896 0.1)
(0.007848967632 0.02471655297 0.1)
(0.01338917644 0.02438701189 0.1)
(0.009670648678 0.02697049639 0.1)
(0.01461777136 0.02624706299 0.1)
(0.01107190531 0.02870415563 0.1)
(0.6744045011 -0.08890414178 0.1)
(0.6748321284 -0.08603789018 0.1)
(0.6751622149 -0.0838332568 0.1)
(0.6956448277 -0.09211365359 0.1)
(0.6960823567 -0.08924892328 0.1)
(0.6964193764 -0.08704533487 0.1)
(0.7627951902 -0.03086788901 0.1)
(0.7617606963 -0.03357471346 0.1)
(0.7609639346 -0.03565680905 0.1)
(0.7608599626 -0.1021344038 0.1)
(0.7613123443 -0.0992719554 0.1)
(0.761661248 -0.09707017262 0.1)
(0.8407426422 -0.1150147434 0.1)
(0.8412088717 -0.1121545841 0.1)
(0.8415676679 -0.1099544222 0.1)
(0.8334266613 -0.1138207508 0.1)
(0.8338928908 -0.1109605915 0.1)
(0.8342526735 -0.1087606215 0.1)
(0.8766408887 -0.1209819195 0.1)
(0.8713416687 -0.1200895351 0.1)
(0.8771199886 -0.1181237578 0.1)
(0.8718286791 -0.1172327099 0.1)
(0.8774886774 -0.1159252167 0.1)
(0.8722023095 -0.115035029 0.1)
(0.9482946541 -0.1089958872 0.1)
(0.9554994699 -0.1123622 0.1)
(0.9470784352 -0.1116263765 0.1)
(0.9542601574 -0.1149818093 0.1)
(0.9461434886 -0.1136499556 0.1)
(0.9533069203 -0.1169968622 0.1)
(0.1733731836 0.1019106419 0.1)
(0.1734307621 0.09901333178 0.1)
(0.1734760468 0.09678451633 0.1)
(0.1945999204 0.1019967799 0.1)
(0.194574087 0.09909887319 0.1)
(0.194553072 0.09686988209 0.1)
(0.3454374025 0.08847082533 0.1)
(0.3449711638 0.08561056648 0.1)
(0.3446123675 0.08341040456 0.1)
(0.3666635978 0.08478427893 0.1)
(0.3661400413 0.08193405831 0.1)
(0.3657367701 0.07974163832 0.1)
(0.8288317803 -0.05697414105 0.1)
(0.8277304403 -0.05965455699 0.1)
(0.8268823372 -0.06171632246 0.1)
(0.01882962689 0.07439174813 0.1)
(0.02021488872 0.07184628482 0.1)
(0.0212804546 0.06988826889 0.1)
(0.02279082884 0.0764262938 0.1)
(0.03018777967 0.07972463286 0.1)
(0.02405839013 0.07382024514 0.1)
(0.03130408251 0.07705026603 0.1)
(0.02503346025 0.07181559019 0.1)
(0.03216280709 0.07499313523 0.1)
(0.03434600202 0.08138658336 0.1)
(0.03536628437 0.0786742249 0.1)
(0.03615117664 0.07658768935 0.1)
(0.6621776147 0.005293085014 0.1)
(0.6612499915 0.002547441303 0.1)
(0.6605368203 0.0004353951239 0.1)
(0.6665584186 0.003800079754 0.1)
(0.673949311 0.00128109999 0.1)
(0.6656249596 0.001056483937 0.1)
(0.673013916 -0.001461713623 0.1)
(0.6649069207 -0.001053905449 0.1)
(0.672294909 -0.003571711907 0.1)
(0.07128106132 -0.0004211206214 0.1)
(0.06612367161 0.0009131506109 0.1)
(0.07198449474 0.002390215787 0.1)
(0.06686986263 0.003713389401 0.1)
(0.07252559666 0.004552774596 0.1)
(0.06744392198 0.00586746717 0.1)
(0.05671161392 0.003521738796 0.1)
(0.04921292114 0.005763190807 0.1)
(0.05751439695 0.006306282215 0.1)
(0.05007208575 0.008530853225 0.1)
(0.05813192734 0.008448292306 0.1)
(0.0507331036 0.01065989025 0.1)
(0.0611856376 0.002284414889 0.1)
(0.06196082164 0.005076741324 0.1)
(0.06255711436 0.007224739062 0.1)
(0.5476500863 -0.0706580131 0.1)
(0.5480559093 -0.06778863374 0.1)
(0.5483681652 -0.0655813417 0.1)
(0.5890338539 -0.07650545659 0.1)
(0.5894386903 -0.07363588528 0.1)
(0.5897499505 -0.07142850085 0.1)
(0.5677415725 -0.0734987121 0.1)
(0.5681463997 -0.07062924036 0.1)
(0.5684586556 -0.06842194832 0.1)
(0.65236938 -0.08564478979 0.1)
(0.6527890784 -0.08277740082 0.1)
(0.6531122318 -0.08057172245 0.1)
(0.6103258509 -0.07950444163 0.1)
(0.6107316738 -0.07663506227 0.1)
(0.611042934 -0.07442767785 0.1)
(0.6315713725 -0.08259301617 0.1)
(0.6319940488 -0.07972600394 0.1)
(0.6323181887 -0.07752051752 0.1)
(0.716893465 -0.09535265932 0.1)
(0.7173290118 -0.09248764467 0.1)
(0.7176640492 -0.09028377192 0.1)
(0.7381438853 -0.09857244759 0.1)
(0.7385794414 -0.09570733336 0.1)
(0.7389134831 -0.09350336824 0.1)
(0.8086707411 -0.04876736767 0.1)
(0.807588752 -0.05145570522 0.1)
(0.806756137 -0.05352372833 0.1)
(0.8819451909 -0.1218628243 0.1)
(0.88241934 -0.119003902 0.1)
(0.8827840736 -0.1168046927 0.1)
(0.8882798312 -0.0820560105 0.1)
(0.8871166218 -0.08471049977 0.1)
(0.886222156 -0.08675239705 0.1)
(0.9132034676 -0.1271061415 0.1)
(0.913698379 -0.1242507524 0.1)
(0.9140789334 -0.1220542161 0.1)
(0.9170677925 -0.09478702994 0.1)
(0.9158824297 -0.09743132899 0.1)
(0.9149706045 -0.09946548943 0.1)
(0.1508881331 0.1011757788 0.1)
(0.1510242833 0.09828102075 0.1)
(0.1511290086 0.09605422251 0.1)
(0.1305098491 0.09985377123 0.1)
(0.1307399412 0.09696485937 0.1)
(0.1309164068 0.09474275348 0.1)
(0.2162078508 0.1014936813 0.1)
(0.2161048479 0.09859751139 0.1)
(0.2160266978 0.09636970376 0.1)
(0.2377858284 0.1004620898 0.1)
(0.2376168306 0.09756903011 0.1)
(0.2374866812 0.09534363677 0.1)
(0.2427548121 0.1001561221 0.1)
(0.2425738286 0.09726377276 0.1)
(0.2424336943 0.09503900455 0.1)
(0.3240727254 0.09171477252 0.1)
(0.3236649203 0.0888456775 0.1)
(0.3233516779 0.08663857742 0.1)
(0.3026779978 0.09454824046 0.1)
(0.3023257499 0.09167178129 0.1)
(0.3020541801 0.08945920789 0.1)
(0.2977348192 0.09514315987 0.1)
(0.2973934966 0.09226538576 0.1)
(0.2971308605 0.09005168217 0.1)
(0.388763072 0.08058405793 0.1)
(0.3882079388 0.07773988037 0.1)
(0.387779987 0.07555206016 0.1)
(0.429235955 0.07186829971 0.1)
(0.428589208 0.06904336819 0.1)
(0.4280923224 0.06687027943 0.1)
(0.4093863837 0.07630969502 0.1)
(0.4087711303 0.07347782429 0.1)
(0.4082978556 0.07129943155 0.1)
(0.5885458156 0.02903177465 0.1)
(0.5929477738 0.02765852722 0.1)
(0.5876845066 0.02626481334 0.1)
(0.5920854968 0.02489195701 0.1)
(0.5870220321 0.02413631319 0.1)
(0.5914210585 0.02276394034 0.1)
(0.5837085413 0.03054081949 0.1)
(0.5828560091 0.02777103527 0.1)
(0.5822003661 0.02564039483 0.1)
(0.687660355 -0.003444704265 0.1)
(0.6950433874 -0.00603757389 0.1)
(0.68670158 -0.006179724589 0.1)
(0.6940826959 -0.008771602908 0.1)
(0.6859650612 -0.008283628976 0.1)
(0.6933442382 -0.01087475496 0.1)
(0.6996545249 -0.007656697864 0.1)
(0.6986889545 -0.01038918958 0.1)
(0.6979465916 -0.01249113568 0.1)
(0.001163575194 0.03101150361 0.1)
(-0.003709677199 0.03968942091 0.1)
(0.003461029666 0.03277790772 0.1)
(-0.000947893884 0.04056735839 0.1)
(0.005228285661 0.03413655033 0.1)
(0.001176548966 0.04124270009 0.1)
(-0.004704173274 0.0460294925 0.1)
(-0.001806240779 0.0460446368 0.1)
(0.0004229349498 0.0460562866 0.1)
(-0.003624850283 0.05257349462 0.1)
(-0.0008577408476 0.0517124832 0.1)
(0.001270803892 0.05105017532 0.1)
(0.1728514024 -0.01916484867 0.1)
(0.167810926 -0.01842793314 0.1)
(0.1732720873 -0.01629765166 0.1)
(0.1682345888 -0.01556111286 0.1)
(0.1735962272 -0.01409216525 0.1)
(0.168560711 -0.01335591079 0.1)
(0.1781360579 -0.01994360159 0.1)
(0.1785557563 -0.01707621263 0.1)
(0.1788798962 -0.01487072622 0.1)
(0.2154385438 -0.02519384219 0.1)
(0.2101020338 -0.02447605944 0.1)
(0.2158255312 -0.02232181136 0.1)
(0.2104959635 -0.02160497402 0.1)
(0.2161229067 -0.02011253612 0.1)
(0.2107992856 -0.01939655181 0.1)
(0.7302120267 -0.01868859966 0.1)
(0.729216345 -0.02141007744 0.1)
(0.7284496706 -0.02350344585 0.1)
(0.8567078829 -0.06852487082 0.1)
(0.860999177 -0.07033315506 0.1)
(0.8555843064 -0.0711959927 0.1)
(0.8598726964 -0.07300310363 0.1)
(0.8547197841 -0.07325071115 0.1)
(0.8590052425 -0.07505694749 0.1)
(0.5205974042 0.04880966609 0.1)
(0.5257077107 0.04742904642 0.1)
(0.5198397572 0.04601259922 0.1)
(0.5249392863 0.04463488766 0.1)
(0.5192574816 0.04386089064 0.1)
(0.5243472012 0.04248569609 0.1)
(0.5306006076 0.04606488249 0.1)
(0.5298135878 0.04327596408 0.1)
(0.5292077936 0.0411305552 0.1)
(0.258105052 -0.03086533911 0.1)
(0.2527736274 -0.03016851581 0.1)
(0.2584811233 -0.02799189376 0.1)
(0.253149708 -0.02729497089 0.1)
(0.2587705607 -0.02578158072 0.1)
(0.2534381497 -0.02508456547 0.1)
(0.2207753587 -0.02590833905 0.1)
(0.2211583724 -0.02303583911 0.1)
(0.2214527699 -0.02082618714 0.1)
(0.3436283056 -0.0420846792 0.1)
(0.3383003578 -0.04138285572 0.1)
(0.3440162794 -0.03921284033 0.1)
(0.3386804028 -0.03850987948 0.1)
(0.3443146506 -0.03700365747 0.1)
(0.3389718224 -0.03629985079 0.1)
(0.3063485987 -0.0371950854 0.1)
(0.301305858 -0.03653669651 0.1)
(0.3067246701 -0.03432164006 0.1)
(0.3016809428 -0.0336630592 0.1)
(0.307013121 -0.03211113506 0.1)
(0.3019693938 -0.0314525542 0.1)
(0.2634352406 -0.03156465891 0.1)
(0.2638122984 -0.02869140552 0.1)
(0.2641027316 -0.02648118486 0.1)
(0.2968713985 -0.03595754249 0.1)
(0.297244492 -0.03308372041 0.1)
(0.2975309514 -0.03087303065 0.1)
(0.3489400477 -0.04282045071 0.1)
(0.3493359596 -0.03994964964 0.1)
(0.3496402775 -0.0377413198 0.1)
(0.3862013496 -0.04801665542 0.1)
(0.3808786288 -0.0472693202 0.1)
(0.3866042039 -0.04514679977 0.1)
(0.3812804873 -0.04439937216 0.1)
(0.3869134726 -0.04293923058 0.1)
(0.3815897653 -0.04219170339 0.1)
(0.3915240612 -0.04876409022 0.1)
(0.3919279112 -0.04589432695 0.1)
(0.3922371799 -0.04368675776 0.1)
(0.9791129693 -0.1242741744 0.1)
(0.9852820431 -0.1288020679 0.1)
(0.9780128512 -0.1265842193 0.1)
(0.9845332548 -0.1303779306 0.1)
(0.9771670696 -0.1283611812 0.1)
(0.9839567979 -0.1315901589 0.1)
(0.08989170793 0.09504852475 0.1)
(0.09769297125 0.09625868104 0.1)
(0.09035286322 0.09218748535 0.1)
(0.09810849266 0.09339072795 0.1)
(0.09070755194 0.0899866051 0.1)
(0.0984282428 0.09118455286 0.1)
(0.4837489262 0.0585635235 0.1)
(0.4888531207 0.05723609598 0.1)
(0.4830255845 0.0557573484 0.1)
(0.4881248742 0.05443117937 0.1)
(0.4824687819 0.05359875705 0.1)
(0.4875641535 0.05227365458 0.1)
(0.02325594879 0.0155855302 0.1)
(0.01897821436 0.01776294034 0.1)
(0.02452631452 0.0181902068 0.1)
(0.02036301651 0.02030859232 0.1)
(0.02550359481 0.02019378942 0.1)
(0.02142828596 0.02226685224 0.1)
(0.7092526329 -0.01108733991 0.1)
(0.7136032876 -0.01265633482 0.1)
(0.7082715383 -0.01381396233 0.1)
(0.712619252 -0.01538218221 0.1)
(0.7075155475 -0.0159112495 0.1)
(0.7118623024 -0.01747897871 0.1)
(0.7787837875 -0.03701369768 0.1)
(0.7777434597 -0.03971845432 0.1)
(0.7769428259 -0.0417989855 0.1)
(0.7703403413 -0.1036299437 0.1)
(0.7653111329 -0.1028365275 0.1)
(0.7707917366 -0.1007673034 0.1)
(0.7657635147 -0.09997407915 0.1)
(0.7711396537 -0.09856532863 0.1)
(0.7661104269 -0.09777211161 0.1)
(0.7832917888 -0.03874858852 0.1)
(0.7822505022 -0.04145285449 0.1)
(0.7814489005 -0.04353299456 0.1)
(0.7756110742 -0.1044613355 0.1)
(0.7760624695 -0.1015986952 0.1)
(0.7764083952 -0.09939653567 0.1)
(0.7915175546 -0.1069568268 0.1)
(0.7862225918 -0.1061268023 0.1)
(0.7919748873 -0.104095139 0.1)
(0.7866730005 -0.10326397 0.1)
(0.7923257639 -0.1018937402 0.1)
(0.7870189263 -0.1010618105 0.1)
(0.9398892016 -0.10515874 0.1)
(0.9441073328 -0.1070844674 0.1)
(0.9386855022 -0.1077950107 0.1)
(0.9429017158 -0.1097197567 0.1)
(0.9377601987 -0.1098228991 0.1)
(0.9419734806 -0.1117467706 0.1)
(0.9884699119 -0.132512246 0.1)
(0.9879638635 -0.1334960019 0.1)
(0.2649144543 0.09850946316 0.1)
(0.2703032526 0.09805216375 0.1)
(0.2646726208 0.09562155441 0.1)
(0.2700464741 0.09516554119 0.1)
(0.2644866001 0.09340013975 0.1)
(0.2698484954 0.09294513558 0.1)
(0.2500482216 0.09969304064 0.1)
(0.2498422896 0.09680240346 0.1)
(0.249684186 0.09457880031 0.1)
(0.2545121356 0.09934475279 0.1)
(0.2542892393 0.09645528787 0.1)
(0.2541181729 0.09423268658 0.1)
(0.2756450611 0.09756467639 0.1)
(0.2753663859 0.09468018587 0.1)
(0.2751514799 0.09246135081 0.1)
(0.2904943282 0.09598175845 0.1)
(0.2901659222 0.09310248462 0.1)
(0.2899132249 0.09088765804 0.1)
(0.2860729097 0.09648498295 0.1)
(0.2857584162 0.09360411701 0.1)
(0.2855166534 0.09138807505 0.1)
(0.626614773 0.01699680787 0.1)
(0.631282377 0.01549918687 0.1)
(0.6257300655 0.01423744071 0.1)
(0.6303956966 0.01274020362 0.1)
(0.6250490511 0.01211477833 0.1)
(0.6297137141 0.01061793234 0.1)
(0.02765873864 0.01353390475 0.1)
(0.02882173966 0.01618831292 0.1)
(0.02971630506 0.01823020097 0.1)
(0.04450263239 0.007277024575 0.1)
(0.03966117081 0.008876241888 0.1)
(0.0454026771 0.01003175498 0.1)
(0.0406193391 0.01161121807 0.1)
(0.0460949925 0.01215065724 0.1)
(0.04135636044 0.01371512605 0.1)
(0.1941120559 -0.02224187177 0.1)
(0.1887866343 -0.02149117265 0.1)
(0.1945139144 -0.01937192373 0.1)
(0.1891954351 -0.01862217002 0.1)
(0.1948241788 -0.01716444692 0.1)
(0.189509664 -0.0164152619 0.1)
(0.1994405313 -0.02298130484 0.1)
(0.1998404076 -0.02011107246 0.1)
(0.2001486991 -0.01790321174 0.1)
(0.7209800064 -0.01531725218 0.1)
(0.7199921035 -0.01804148538 0.1)
(0.7192312582 -0.02013697238 0.1)
(0.5033360989 0.05346967958 0.1)
(0.5107598739 0.05146747201 0.1)
(0.5025941064 0.05066814739 0.1)
(0.5100061359 0.04866923902 0.1)
(0.5020245719 0.04851304721 0.1)
(0.5094268013 0.04651675543 0.1)
(0.2420915105 -0.02876605145 0.1)
(0.2367575924 -0.02804198127 0.1)
(0.2424755199 -0.0258936439 0.1)
(0.2371455755 -0.02517004283 0.1)
(0.2427719089 -0.0236841767 0.1)
(0.2374429418 -0.02296086716 0.1)
(0.2314333637 -0.02732172253 0.1)
(0.2318183596 -0.02444950694 0.1)
(0.2321147486 -0.02224003974 0.1)
(0.3276410224 -0.03998381065 0.1)
(0.3223078096 -0.03928461199 0.1)
(0.3280180895 -0.03711045769 0.1)
(0.3226848767 -0.03641125903 0.1)
(0.3283075269 -0.03490014465 0.1)
(0.3229743141 -0.03420094599 0.1)
(0.3169765791 -0.03858569767 0.1)
(0.3173526504 -0.03571225233 0.1)
(0.3176420878 -0.03350193929 0.1)
(0.2794160003 -0.0336925403 0.1)
(0.2740813062 -0.0329768342 0.1)
(0.2797970318 -0.03081975603 0.1)
(0.2744653156 -0.03010442665 0.1)
(0.2800904428 -0.0286099121 0.1)
(0.2747607089 -0.02789486706 0.1)
(0.2847161417 -0.03439098043 0.1)
(0.2850912173 -0.03151744269 0.1)
(0.2853796682 -0.0293069377 0.1)
(0.3649085376 -0.04503727895 0.1)
(0.3595853548 -0.04429492234 0.1)
(0.3653094096 -0.04216713895 0.1)
(0.3599842447 -0.041424498 0.1)
(0.3656166961 -0.03995928542 0.1)
(0.3602915312 -0.03921664447 0.1)
(0.3702326237 -0.04578072367 0.1)
(0.3706334865 -0.04291068324 0.1)
(0.3709417687 -0.04070292209 0.1)
(0.4127603901 -0.05175690598 0.1)
(0.4074905627 -0.05101317271 0.1)
(0.4131662131 -0.04888752662 0.1)
(0.4078953992 -0.0481436014 0.1)
(0.4134774732 -0.0466801422 0.1)
(0.4082066594 -0.04593621698 0.1)
(0.402168193 -0.05026205374 0.1)
(0.4025720337 -0.04739239004 0.1)
(0.4028832939 -0.04518500562 0.1)
(0.8179948873 -0.1112962914 0.1)
(0.8126955063 -0.1104272921 0.1)
(0.818463099 -0.1084364164 0.1)
(0.8131647044 -0.1075676091 0.1)
(0.8188238682 -0.1062366384 0.1)
(0.8135264786 -0.1053678239 0.1)
(0.8285434958 -0.1130228074 0.1)
(0.829010721 -0.1101627405 0.1)
(0.8293705037 -0.1079627706 0.1)
(0.8073961991 -0.1095574962 0.1)
(0.807866393 -0.1066979056 0.1)
(0.8082281579 -0.10449822 0.1)
(0.7968100416 -0.1078135366 0.1)
(0.7972762803 -0.1049532777 0.1)
(0.7976340808 -0.1027530234 0.1)
(0.9242899254 -0.09804246844 0.1)
(0.9285151006 -0.0999680459 0.1)
(0.9230939516 -0.1006820671 0.1)
(0.927313328 -0.1026051984 0.1)
(0.9221744284 -0.1027126008 0.1)
(0.9263889648 -0.1046337766 0.1)
(0.0677477889 0.09094052056 0.1)
(0.07555373143 0.09253990917 0.1)
(0.06836801759 0.08810971447 0.1)
(0.07610576029 0.08969494315 0.1)
(0.06884518125 0.08593211897 0.1)
(0.07653041138 0.08750665328 0.1)
(0.08014571998 0.09338258247 0.1)
(0.08066055295 0.09053072331 0.1)
(0.08105657546 0.08833695486 0.1)
(0.4988820638 0.05462801907 0.1)
(0.4981498899 0.05182406944 0.1)
(0.4975872054 0.04966702813 0.1)
(0.6050429093 0.02388528229 0.1)
(0.6100041624 0.02232697299 0.1)
(0.604175746 0.02112016973 0.1)
(0.6091272267 0.01956477572 0.1)
(0.6035083853 0.01899312722 0.1)
(0.6084530438 0.01743997307 0.1)
(0.6362328005 0.01391074922 0.1)
(0.6353383205 0.01115429735 0.1)
(0.6346494974 0.009034066782 0.1)
(0.6148209711 0.02078136249 0.1)
(0.6139372223 0.01802150465 0.1)
(0.6132571851 0.01589855075 0.1)
(0.6832865293 -0.00190896091 0.1)
(0.6823375083 -0.004647095675 0.1)
(0.6816068021 -0.006753296887 0.1)
(0.7045210687 -0.009380665905 0.1)
(0.7035467733 -0.0121097771 0.1)
(0.7027966238 -0.01420905243 0.1)
(0.1633598214 -0.01776839759 0.1)
(0.1637914131 -0.01490271469 0.1)
(0.1641244776 -0.01269845803 0.1)
(0.1834538494 -0.02072241605 0.1)
(0.1838695834 -0.0178544584 0.1)
(0.1841897681 -0.01564830373 0.1)
(0.2047664056 -0.02372712492 0.1)
(0.2051672776 -0.02085698492 0.1)
(0.2054755599 -0.01864922377 0.1)
(0.7255380641 -0.01697808073 0.1)
(0.724544305 -0.01970048509 0.1)
(0.7237805646 -0.02179470319 0.1)
(0.8494303111 -0.06546645319 0.1)
(0.8483125241 -0.06814012083 0.1)
(0.847451837 -0.07019680198 0.1)
(0.5155184528 0.05018185295 0.1)
(0.514762751 0.04738410346 0.1)
(0.5141814434 0.04523200377 0.1)
(0.5350388089 0.04479000744 0.1)
(0.5342410117 0.04200399713 0.1)
(0.5336273995 0.0398609205 0.1)
(0.2474361084 -0.02947243264 0.1)
(0.2478141712 -0.02659917207 0.1)
(0.2481055908 -0.02438914337 0.1)
(0.2261078047 -0.02661580221 0.1)
(0.2264898319 -0.02374311032 0.1)
(0.2267832429 -0.02153326639 0.1)
(0.3329721791 -0.04068352155 0.1)
(0.3333492461 -0.03781016859 0.1)
(0.3336396793 -0.03559994793 0.1)
(0.3116443436 -0.03788679054 0.1)
(0.3120204149 -0.0350133452 0.1)
(0.3123098523 -0.03280303215 0.1)
(0.2687614556 -0.03226350959 0.1)
(0.2691424963 -0.02939062574 0.1)
(0.2694349024 -0.027180789 0.1)
(0.2896247113 -0.03502336271 0.1)
(0.2899958225 -0.03214925629 0.1)
(0.2902812955 -0.02993837457 0.1)
(0.3542617102 -0.04355754435 0.1)
(0.3546596043 -0.04068702763 0.1)
(0.3549659043 -0.03847898214 0.1)
(0.375555714 -0.046524076 0.1)
(0.3759575725 -0.04365412795 0.1)
(0.3762658548 -0.0414463668 0.1)
(0.4249283596 -0.0534787064 0.1)
(0.4176544828 -0.05244790148 0.1)
(0.4253351783 -0.05060941943 0.1)
(0.418060315 -0.04957842255 0.1)
(0.4256474342 -0.04840212739 0.1)
(0.4183725616 -0.04737123008 0.1)
(0.4293721862 -0.05410844211 0.1)
(0.4297790048 -0.05123915514 0.1)
(0.4300912607 -0.0490318631 0.1)
(0.396846782 -0.04951142544 0.1)
(0.397250632 -0.04664166217 0.1)
(0.3975608964 -0.04443418536 0.1)
(0.5142429024 -0.06594202447 0.1)
(0.5089243862 -0.06519266905 0.1)
(0.5146477388 -0.06307245316 0.1)
(0.509325249 -0.06232262862 0.1)
(0.5149580033 -0.06086497635 0.1)
(0.509634527 -0.06011495986 0.1)
(0.5036059973 -0.06445276582 0.1)
(0.5040038914 -0.06158224909 0.1)
(0.5043111872 -0.05937429598 0.1)
(0.4769725445 -0.06075683021 0.1)
(0.4716479339 -0.06000821492 0.1)
(0.4773753988 -0.05788697455 0.1)
(0.4720517839 -0.05713845165 0.1)
(0.4776856633 -0.05567949775 0.1)
(0.4723620483 -0.05493097484 0.1)
(0.4823001239 -0.0615059218 0.1)
(0.4827009959 -0.0586357818 0.1)
(0.4830092782 -0.05642802065 0.1)
(0.4344137455 -0.05482286148 0.1)
(0.4348185819 -0.05195329017 0.1)
(0.4351298421 -0.04974590575 0.1)
(0.4396986935 -0.05556598907 0.1)
(0.4400995655 -0.05269584908 0.1)
(0.440406852 -0.05048799554 0.1)
(0.4663253147 -0.0592597844 0.1)
(0.4667281597 -0.05639002832 0.1)
(0.4670384334 -0.05418245194 0.1)
(0.461005655 -0.05851192975 0.1)
(0.461406527 -0.05564178975 0.1)
(0.4617148093 -0.0534340286 0.1)
(0.5195663787 -0.06669204096 0.1)
(0.5199702194 -0.06382237726 0.1)
(0.5202814796 -0.06161499284 0.1)
(0.5248888593 -0.06744196507 0.1)
(0.5252936958 -0.06457239375 0.1)
(0.525604956 -0.06236500933 0.1)
(0.975094218 -0.1218989444 0.1)
(0.9738921721 -0.124419975 0.1)
(0.9729670604 -0.126359202 0.1)
(0.06315724814 0.08987315257 0.1)
(0.06382127837 0.0870522422 0.1)
(0.06433209951 0.08488237028 0.1)
(0.08507408433 0.09424406013 0.1)
(0.08556124954 0.09138733626 0.1)
(0.08593594408 0.0891899226 0.1)
(0.1022984938 0.09689110485 0.1)
(0.1026775923 0.09401809506 0.1)
(0.1029691604 0.09180800683 0.1)
(0.1073351789 0.09752048271 0.1)
(0.1076798294 0.09464313684 0.1)
(0.1079454708 0.09242962923 0.1)
(0.4366572524 0.07017494186 0.1)
(0.4414967125 0.06901418459 0.1)
(0.4359957728 0.06735358671 0.1)
(0.4408214591 0.06619591512 0.1)
(0.4354860906 0.06518329211 0.1)
(0.4403019583 0.06402803796 0.1)
(0.4939651608 0.05590663493 0.1)
(0.4932359279 0.05310191028 0.1)
(0.4926752164 0.05094448506 0.1)
(0.4466351751 0.06777466716 0.1)
(0.4459559943 0.06495736467 0.1)
(0.4454335524 0.06279026252 0.1)
(0.4518168768 0.06652491132 0.1)
(0.4511357322 0.06370809231 0.1)
(0.4506113173 0.06154137408 0.1)
(-0.001142527143 0.05796763414 0.1)
(0.001330678462 0.05645718761 0.1)
(0.003233139799 0.05529526977 0.1)
(0.6785549904 -0.0002886084065 0.1)
(0.6776166821 -0.003030348286 0.1)
(0.6768947527 -0.005139372409 0.1)
(0.7879307114 -0.04053368923 0.1)
(0.7868826303 -0.04323541663 0.1)
(0.7860761885 -0.0453136012 0.1)
(0.7809177363 -0.105295157 0.1)
(0.7813671494 -0.1024322323 0.1)
(0.7817130843 -0.1002299733 0.1)
(0.9326871001 -0.1018714158 0.1)
(0.9314843779 -0.104507978 0.1)
(0.9305590559 -0.1065360656 0.1)
(0.2595942202 0.09894804824 0.1)
(0.2593613575 0.09605940759 0.1)
(0.2591833118 0.09383735342 0.1)
(0.2809927855 0.09701105967 0.1)
(0.280694205 0.09412851643 0.1)
(0.2804653682 0.09191107432 0.1)
(0.03520554165 0.01050232902 0.1)
(0.03623869514 0.01320986033 0.1)
(0.03703341201 0.01529264778 0.1)
(0.84058292 -0.06180302051 0.1)
(0.8451607341 -0.06368388527 0.1)
(0.8394796162 -0.06448295296 0.1)
(0.8440506635 -0.06636098043 0.1)
(0.8386315316 -0.06654451929 0.1)
(0.8431977573 -0.06842039211 0.1)
(0.8361347358 -0.05997545956 0.1)
(0.8350333865 -0.06265597507 0.1)
(0.8341852835 -0.06471774054 0.1)
(0.4982822233 -0.06371678184 0.1)
(0.4929564578 -0.06298061309 0.1)
(0.4986791217 -0.06084617273 0.1)
(0.4933533655 -0.06010990441 0.1)
(0.4989844352 -0.05863793528 0.1)
(0.4936586698 -0.05790176653 0.1)
(0.4876297059 -0.06224425239 0.1)
(0.4880276 -0.05937373566 0.1)
(0.4883329136 -0.05716549821 0.1)
(0.4503572498 -0.05703837583 0.1)
(0.4450304517 -0.05630251299 0.1)
(0.4507541482 -0.05416776672 0.1)
(0.4454273501 -0.05343190388 0.1)
(0.4510594618 -0.05195952927 0.1)
(0.4457326637 -0.05122366643 0.1)
(0.45568107 -0.05777386194 0.1)
(0.4560789642 -0.05490334522 0.1)
(0.4563852734 -0.05269520015 0.1)
(0.5354801254 -0.06893602791 0.1)
(0.5302113399 -0.06819188917 0.1)
(0.5358859483 -0.06606664855 0.1)
(0.5306161764 -0.06532231785 0.1)
(0.5361972085 -0.06385926413 0.1)
(0.5309274273 -0.063115033 0.1)
(0.5403750659 -0.06962870895 0.1)
(0.5407808981 -0.06675923002 0.1)
(0.5410931448 -0.06455203756 0.1)
(0.8232942869 -0.1121650915 0.1)
(0.8237625078 -0.109305117 0.1)
(0.8241232862 -0.1071052394 0.1)
(0.8020991698 -0.1086847983 0.1)
(0.8025693544 -0.1058253073 0.1)
(0.8029311193 -0.1036256217 0.1)
(0.9709595445 -0.1197772894 0.1)
(0.9697260461 -0.1223667067 0.1)
(0.9687769622 -0.1243586444 0.1)
(0.1125835445 0.0981149552 0.1)
(0.1178192645 0.09868137599 0.1)
(0.1129038265 0.09523474838 0.1)
(0.1181192625 0.09579903398 0.1)
(0.1131501981 0.09301921234 0.1)
(0.1183494161 0.09358188935 0.1)
(0.12276205 0.0991862965 0.1)
(0.1230346739 0.09630117154 0.1)
(0.1232445342 0.09408179215 0.1)
(0.4570083878 0.06527263846 0.1)
(0.4621476553 0.06399849862 0.1)
(0.4563193883 0.06245775341 0.1)
(0.4614488371 0.06118603099 0.1)
(0.4557890823 0.06029248563 0.1)
(0.4609116626 0.05902250521 0.1)
(0.4670817708 0.06276468417 0.1)
(0.4663790252 0.05995318352 0.1)
(0.4658389097 0.05779043275 0.1)
(0.6003539917 0.02534802318 0.1)
(0.5994907282 0.02258164493 0.1)
(0.5988262992 0.02045372783 0.1)
(0.6410272649 0.0123407989 0.1)
(0.6401201085 0.009588435633 0.1)
(0.639422527 0.00747122712 0.1)
(0.6192145232 0.01937163564 0.1)
(0.6183288107 0.01661226129 0.1)
(0.6176477963 0.01448959891 0.1)
(-1.2 -2.2 0.15)
(-1.02836 -2.2 0.15)
(-1.0284 -2.01675 0.15)
(-1.2 -2.01667 0.15)
(-1.02845 -1.83342 0.15)
(-1.2 -1.83333 0.15)
(-1.0285 -1.65009 0.15)
(-1.2 -1.65 0.15)
(-1.02855 -1.46674 0.15)
(-1.11428 -1.46671 0.15)
(-1.2 -1.46667 0.15)
(-1.1143 -1.37504 0.15)
(-1.2 -1.375 0.15)
(-1.2 -1.28333 0.15)
(-1.11432 -1.28338 0.15)
(-1.11433 -1.19171 0.15)
(-1.2 -1.19167 0.15)
(-1.2 -1.1 0.15)
(-1.11435 -1.10005 0.15)
(-1.11437 -1.00838 0.15)
(-1.2 -1.00833 0.15)
(-1.2 -0.916667 0.15)
(-1.11439 -0.916715 0.15)
(-1.11441 -0.825051 0.15)
(-1.2 -0.825 0.15)
(-1.2 -0.733333 0.15)
(-1.11443 -0.733386 0.15)
(-1.11444 -0.641721 0.15)
(-1.2 -0.641667 0.15)
(-1.2 -0.55 0.15)
(-1.11446 -0.550056 0.15)
(-1.11448 -0.458391 0.15)
(-1.2 -0.458333 0.15)
(-1.2 -0.366667 0.15)
(-1.11449 -0.366726 0.15)
(-1.11451 -0.27506 0.15)
(-1.2 -0.275 0.15)
(-1.2 -0.183333 0.15)
(-1.11452 -0.183395 0.15)
(-1.11452 -0.0917285 0.15)
(-1.2 -0.0916667 0.15)
(-1.2 0 0.15)
(-1.11452 -6.20099e-05 0.15)
(-1.11452 0.0916048 0.15)
(-1.2 0.0916667 0.15)
(-1.2 0.183333 0.15)
(-1.11452 0.183272 0.15)
(-1.11451 0.27494 0.15)
(-1.2 0.275 0.15)
(-1.2 0.366667 0.15)
(-1.11449 0.366608 0.15)
(-1.11448 0.458276 0.15)
(-1.2 0.458333 0.15)
(-1.2 0.55 0.15)
(-1.11446 0.549944 0.15)
(-1.11444 0.641612 0.15)
(-1.2 0.641667 0.15)
(-1.2 0.733333 0.15)
(-1.11443 0.733281 0.15)
(-1.11441 0.824949 0.15)
(-1.2 0.825 0.15)
(-1.2 0.916667 0.15)
(-1.11439 0.916618 0.15)
(-1.11437 1.00829 0.15)
(-1.2 1.00833 0.15)
(-1.2 1.1 0.15)
(-1.11435 1.09995 0.15)
(-1.11433 1.19162 0.15)
(-1.2 1.19167 0.15)
(-1.2 1.28333 0.15)
(-1.11432 1.28329 0.15)
(-1.1143 1.37497 0.15)
(-1.2 1.375 0.15)
(-1.2 1.46667 0.15)
(-1.11429 1.46665 0.15)
(-1.02854 1.46685 0.15)
(-1.02831 1.65049 0.15)
(-1.2 1.65 0.15)
(-1.02824 1.83417 0.15)
(-1.2 1.83387 0.15)
(-1.02804 2.01728 0.15)
(-1.2 2.01724 0.15)
(-1.02778 2.2 0.15)
(-1.2 2.2 0.15)
(-0.85612 -2.2 0.15)
(-0.85642 -2.01697 0.15)
(-0.85678 -1.83375 0.15)
(-0.85688 -1.65042 0.15)
(-0.85704 -1.46688 0.15)
(-0.942809 -1.46678 0.15)
(-0.942854 -1.37512 0.15)
(-1.02858 -1.37508 0.15)
(-1.02862 -1.28342 0.15)
(-0.942902 -1.28346 0.15)
(-0.942953 -1.19179 0.15)
(-1.02865 -1.19175 0.15)
(-1.02869 -1.10009 0.15)
(-0.943007 -1.10013 0.15)
(-0.943063 -1.00847 0.15)
(-0.985895 -1.00845 0.15)
(-1.02872 -1.00843 0.15)
(-1.02876 -0.916763 0.15)
(-0.985943 -0.916786 0.15)
(-0.985992 -0.870958 0.15)
(-1.02881 -0.870935 0.15)
(-1.02884 -0.733437 0.15)
(-0.986043 -0.733463 0.15)
(-0.986093 -0.687634 0.15)
(-1.02889 -0.687609 0.15)
(-1.02892 -0.550112 0.15)
(-0.986141 -0.550139 0.15)
(-0.986191 -0.504311 0.15)
(-1.02897 -0.504284 0.15)
(-1.02898 -0.366785 0.15)
(-0.986227 -0.366814 0.15)
(-0.986274 -0.320985 0.15)
(-1.02903 -0.320956 0.15)
(-1.02903 -0.183456 0.15)
(-0.986288 -0.183486 0.15)
(-0.9863281318 -0.1376454137 0.15)
(-1.02908 -0.137627 0.15)
(-1.02905 -0.000123943 0.15)
(-0.9863106224 -2.520405421e-05 0.15)
(-0.9863351151 0.04578602565 0.15)
(-1.02908 0.0457059 0.15)
(-1.02903 0.183211 0.15)
(-0.986288 0.18318 0.15)
(-0.986305 0.229012 0.15)
(-1.02906 0.229042 0.15)
(-1.02898 0.366549 0.15)
(-0.986228 0.36652 0.15)
(-0.986235 0.412352 0.15)
(-1.029 0.41238 0.15)
(-1.02892 0.549888 0.15)
(-0.986141 0.549861 0.15)
(-0.986143 0.595694 0.15)
(-1.02893 0.59572 0.15)
(-1.02884 0.733229 0.15)
(-0.986043 0.733204 0.15)
(-0.986043 0.779037 0.15)
(-1.02885 0.779061 0.15)
(-1.02876 0.91657 0.15)
(-0.985944 0.916547 0.15)
(-0.985942 0.962381 0.15)
(-1.02877 0.962403 0.15)
(-1.02869 1.09992 0.15)
(-0.943013 1.09996 0.15)
(-0.942949 1.19183 0.15)
(-1.02865 1.19161 0.15)
(-1.02862 1.28331 0.15)
(-0.942852 1.2837 0.15)
(-0.942603 1.37575 0.15)
(-1.02858 1.3751 0.15)
(-0.94248 1.46749 0.15)
(-0.856309 1.46797 0.15)
(-0.856172 1.65126 0.15)
(-0.856002 1.83463 0.15)
(-0.855752 2.01733 0.15)
(-0.855556 2.2 0.15)
(-0.683333 -2.2 0.15)
(-0.683732 -2.01725 0.15)
(-0.684123 -1.8345 0.15)
(-0.68446 -1.65166 0.15)
(-0.684565 -1.46844 0.15)
(-0.77116 -1.46732 0.15)
(-0.77125 -1.37562 0.15)
(-0.857103 -1.37519 0.15)
(-0.857167 -1.28353 0.15)
(-0.771348 -1.2839 0.15)
(-0.771487 -1.19201 0.15)
(-0.857238 -1.19184 0.15)
(-0.85731 -1.10017 0.15)
(-0.771588 -1.10027 0.15)
(-0.771687 -1.00855 0.15)
(-0.814539 -1.00853 0.15)
(-0.857385 -1.00851 0.15)
(-0.857463 -0.916853 0.15)
(-0.814627 -0.916875 0.15)
(-0.814684 -0.871047 0.15)
(-0.857517 -0.871025 0.15)
(-0.857628 -0.733536 0.15)
(-0.814814 -0.733559 0.15)
(-0.814875 -0.687732 0.15)
(-0.857684 -0.687708 0.15)
(-0.857795 -0.550219 0.15)
(-0.8150765083 -0.5500792889 0.15)
(-0.815470599 -0.5033774119 0.15)
(-0.8578553064 -0.5043769677 0.15)
(-0.8587150466 -0.3641090171 0.15)
(-0.8170865829 -0.3602033795 0.15)
(-0.8174874578 -0.311990159 0.15)
(-0.8590493242 -0.3166948823 0.15)
(-0.8593291112 -0.1743547283 0.15)
(-0.8175226942 -0.1678688333 0.15)
(-0.817171954 -0.1203885476 0.15)
(-0.8591783269 -0.1272522862 0.15)
(-0.8581171553 0.01202207539 0.15)
(-0.8153483425 0.01936662961 0.15)
(-0.8146814474 0.06494135732 0.15)
(-0.8577215938 0.05765163948 0.15)
(-0.8568255259 0.1923368601 0.15)
(-0.8131136254 0.1988187478 0.15)
(-0.8129052818 0.2426629001 0.15)
(-0.8567610245 0.2366643017 0.15)
(-0.8571935611 0.3692580105 0.15)
(-0.8133085642 0.3731784885 0.15)
(-0.8137473317 0.416767146 0.15)
(-0.8574872858 0.4137339214 0.15)
(-0.857795 0.549781 0.15)
(-0.8149330228 0.5499334505 0.15)
(-0.814972 0.595592 0.15)
(-0.857769 0.595617 0.15)
(-0.857628 0.733131 0.15)
(-0.814815 0.733107 0.15)
(-0.814779 0.778944 0.15)
(-0.8576 0.778967 0.15)
(-0.857464 0.916483 0.15)
(-0.814633 0.916519 0.15)
(-0.814603 0.96244 0.15)
(-0.857438 0.962328 0.15)
(-0.85725 1.10049 0.15)
(-0.770908 1.1016 0.15)
(-0.770553 1.19343 0.15)
(-0.856875 1.19274 0.15)
(-0.856623 1.28457 0.15)
(-0.770431 1.28507 0.15)
(-0.770351 1.37669 0.15)
(-0.856389 1.37633 0.15)
(-0.770297 1.46831 0.15)
(-0.684227 1.46864 0.15)
(-0.683965 1.6519 0.15)
(-0.683689 1.8347 0.15)
(-0.683502 2.01736 0.15)
(-0.683333 2.2 0.15)
(-0.511111 -2.2 0.15)
(-0.511372 -2.01734 0.15)
(-0.511646 -1.83468 0.15)
(-0.511912 -1.65201 0.15)
(-0.512088 -1.46924 0.15)
(-0.598172 -1.46894 0.15)
(-0.5982 -1.37737 0.15)
(-0.684628 -1.37684 0.15)
(-0.684917 -1.28506 0.15)
(-0.598333 -1.28576 0.15)
(-0.598734 -1.194 0.15)
(-0.685494 -1.19278 0.15)
(-0.68575 -1.10077 0.15)
(-0.599191 -1.10213 0.15)
(-0.59999 -1.00954 0.15)
(-0.643085 -1.00875 0.15)
(-0.685965 -1.00863 0.15)
(-0.686088 -0.916936 0.15)
(-0.643229 -0.916968 0.15)
(-0.643304 -0.871132 0.15)
(-0.686158 -0.871109 0.15)
(-0.686344 -0.733627 0.15)
(-0.6437059141 -0.7333463774 0.15)
(-0.6446640927 -0.6860595218 0.15)
(-0.6866737906 -0.6873678065 0.15)
(-0.6902366713 -0.5425885238 0.15)
(-0.6495895749 -0.5384037541 0.15)
(-0.6512446054 -0.4878842411 0.15)
(-0.69165883 -0.4928913842 0.15)
(-0.6945080557 -0.3421634515 0.15)
(-0.6541469413 -0.3352476087 0.15)
(-0.6542047476 -0.284638751 0.15)
(-0.6947352542 -0.2919937043 0.15)
(-0.6929623913 -0.143777153 0.15)
(-0.6515547118 -0.1356285438 0.15)
(-0.6499131603 -0.0872145764 0.15)
(-0.6916942192 -0.09548883371 0.15)
(-0.686731758 0.04522056317 0.15)
(-0.6437523148 0.05360043868 0.15)
(-0.6416079078 0.09900982258 0.15)
(-0.6849902032 0.09066112409 0.15)
(-0.6805942871 0.2227634118 0.15)
(-0.63610687 0.2308038413 0.15)
(-0.6348736066 0.2733672212 0.15)
(-0.6796692126 0.2655248373 0.15)
(-0.679093276 0.3911348861 0.15)
(-0.6337155109 0.3979475306 0.15)
(-0.6342539129 0.4388121668 0.15)
(-0.6796782563 0.4325169636 0.15)
(-0.6830017453 0.5574872319 0.15)
(-0.6380192329 0.5616623039 0.15)
(-0.6396562581 0.6033420487 0.15)
(-0.6842905765 0.6000449871 0.15)
(-0.686358 0.733246 0.15)
(-0.6432164736 0.7344898755 0.15)
(-0.64276 0.781174 0.15)
(-0.686277 0.779542 0.15)
(-0.684856 0.918994 0.15)
(-0.641698 0.91929 0.15)
(-0.641653 0.965082 0.15)
(-0.684683 0.964872 0.15)
(-0.684589 1.10222 0.15)
(-0.598587 1.10257 0.15)
(-0.598492 1.19415 0.15)
(-0.684489 1.19382 0.15)
(-0.684423 1.28541 0.15)
(-0.598356 1.28576 0.15)
(-0.598227 1.37737 0.15)
(-0.684353 1.37701 0.15)
(-0.598044 1.46899 0.15)
(-0.511813 1.46933 0.15)
(-0.511625 1.65211 0.15)
(-0.511417 1.83475 0.15)
(-0.511259 2.01738 0.15)
(-0.511111 2.2 0.15)
(-0.338889 -2.2 0.15)
(-0.339075 -2.01738 0.15)
(-0.339307 -1.83475 0.15)
(-0.339552 -1.6521 0.15)
(-0.339914 -1.46942 0.15)
(-0.42603 -1.4694 0.15)
(-0.426107 -1.37793 0.15)
(-0.512124 -1.37767 0.15)
(-0.512175 -1.28611 0.15)
(-0.426152 -1.28638 0.15)
(-0.426205 -1.19484 0.15)
(-0.512281 -1.19454 0.15)
(-0.512399 -1.10297 0.15)
(-0.426261 -1.10332 0.15)
(-0.42631 -1.0118 0.15)
(-0.469316 -1.01165 0.15)
(-0.512427 -1.01145 0.15)
(-0.513033 -0.919636 0.15)
(-0.469459 -0.920103 0.15)
(-0.4697237261 -0.8741983054 0.15)
(-0.513554 -0.87351 0.15)
(-0.5185293805 -0.729045225 0.15)
(-0.4770145927 -0.7281899932 0.15)
(-0.4803769027 -0.6770461357 0.15)
(-0.5211879748 -0.6790026591 0.15)
(-0.5292567673 -0.5245846033 0.15)
(-0.4893605382 -0.5203602491 0.15)
(-0.4913792747 -0.4678267598 0.15)
(-0.5312629498 -0.4723591121 0.15)
(-0.5333918425 -0.3164240444 0.15)
(-0.4930053 -0.3116388091 0.15)
(-0.4920339975 -0.2606149172 0.15)
(-0.5327105366 -0.2652976779 0.15)
(-0.5270785423 -0.1160061017 0.15)
(-0.4854070959 -0.111943632 0.15)
(-0.4823116184 -0.06390345991 0.15)
(-0.5243148216 -0.06773882612 0.15)
(-0.5147278839 0.0726490575 0.15)
(-0.4717828067 0.07609364783 0.15)
(-0.4681803475 0.1214835611 0.15)
(-0.5114397305 0.1180244873 0.15)
(-0.5026108147 0.2499427404 0.15)
(-0.4583470891 0.2538250112 0.15)
(-0.4557417438 0.2966108834 0.15)
(-0.5003538304 0.2924987249 0.15)
(-0.4968635571 0.4162164876 0.15)
(-0.4513353047 0.42098911 0.15)
(-0.4512623948 0.4611701268 0.15)
(-0.4970007448 0.4563444903 0.15)
(-0.5011490102 0.5765895333 0.15)
(-0.4538750436 0.583121659 0.15)
(-0.4553675026 0.6235339435 0.15)
(-0.5024085415 0.6184611309 0.15)
(-0.5088449566 0.7424150687 0.15)
(-0.463813953 0.7450255376 0.15)
(-0.4664599454 0.7869989789 0.15)
(-0.5109147584 0.7851013202 0.15)
(-0.512777 0.919803 0.15)
(-0.469804 0.919959 0.15)
(-0.469767 0.965722 0.15)
(-0.512742 0.965571 0.15)
(-0.512576 1.1029 0.15)
(-0.426399 1.10328 0.15)
(-0.426059 1.1949 0.15)
(-0.512348 1.19452 0.15)
(-0.512064 1.28615 0.15)
(-0.425833 1.28649 0.15)
(-0.425757 1.37805 0.15)
(-0.511924 1.37774 0.15)
(-0.42569 1.46951 0.15)
(-0.339558 1.46954 0.15)
(-0.339308 1.65218 0.15)
(-0.339106 1.8348 0.15)
(-0.338986 2.0174 0.15)
(-0.338889 2.2 0.15)
(-0.166667 -2.2 0.15)
(-0.16675 -2.01741 0.15)
(-0.166857 -1.83481 0.15)
(-0.167034 -1.6522 0.15)
(-0.167458 -1.46954 0.15)
(-0.253787 -1.46946 0.15)
(-0.25393 -1.37813 0.15)
(-0.340052 -1.37808 0.15)
(-0.340133 -1.28663 0.15)
(-0.254058 -1.28681 0.15)
(-0.254132 -1.19535 0.15)
(-0.340185 -1.1951 0.15)
(-0.340241 -1.10359 0.15)
(-0.25418 -1.10384 0.15)
(-0.25416 -1.01239 0.15)
(-0.29726 -1.01222 0.15)
(-0.340301 -1.01208 0.15)
(-0.3407605736 -0.9202374553 0.15)
(-0.2982294123 -0.919973413 0.15)
(-0.3005579681 -0.8721452307 0.15)
(-0.3425325178 -0.8728345391 0.15)
(-0.3529700292 -0.7234917495 0.15)
(-0.3122385478 -0.7218869107 0.15)
(-0.3164951728 -0.6701387363 0.15)
(-0.3570005528 -0.6719043078 0.15)
(-0.3673223352 -0.5144407752 0.15)
(-0.3261985373 -0.5131126512 0.15)
(-0.3279506488 -0.4609225301 0.15)
(-0.3695054417 -0.4617308366 0.15)
(-0.370564361 -0.3049590654 0.15)
(-0.3287995343 -0.3058289196 0.15)
(-0.3269950547 -0.2556049252 0.15)
(-0.3686783631 -0.2549414966 0.15)
(-0.3595768054 -0.108906061 0.15)
(-0.3172810621 -0.111229382 0.15)
(-0.3133376658 -0.06442798586 0.15)
(-0.3557500508 -0.06193026358 0.15)
(-0.3434450671 0.07622521829 0.15)
(-0.3008479217 0.07304096665 0.15)
(-0.2965973689 0.1187162186 0.15)
(-0.3392518454 0.1217702994 0.15)
(-0.326942192 0.2578743878 0.15)
(-0.2836525973 0.2565122661 0.15)
(-0.2796487208 0.3013017008 0.15)
(-0.323229742 0.3022429437 0.15)
(-0.3150939015 0.4310624385 0.15)
(-0.2692958421 0.4327774298 0.15)
(-0.26695361 0.4750177832 0.15)
(-0.3129905832 0.4733588614 0.15)
(-0.314184186 0.5942107378 0.15)
(-0.268445423 0.5960460167 0.15)
(-0.2709762139 0.6355114463 0.15)
(-0.3167658153 0.6335468115 0.15)
(-0.327827271 0.7523364818 0.15)
(-0.2824499886 0.7542135558 0.15)
(-0.2867268943 0.794664473 0.15)
(-0.3318071807 0.7929694389 0.15)
(-0.3400651227 0.9210345899 0.15)
(-0.2961810733 0.9216859328 0.15)
(-0.2970145799 0.9665997918 0.15)
(-0.340495 0.966291 0.15)
(-0.339984 1.10368 0.15)
(-0.253752 1.104 0.15)
(-0.25369 1.1955 0.15)
(-0.33981 1.19524 0.15)
(-0.339723 1.28677 0.15)
(-0.253617 1.28696 0.15)
(-0.253479 1.37829 0.15)
(-0.339655 1.37822 0.15)
(-0.253377 1.4696 0.15)
(-0.167064 1.46964 0.15)
(-0.166945 1.65224 0.15)
(-0.166826 1.83483 0.15)
(-0.166743 2.01742 0.15)
(-0.166667 2.2 0.15)
(0.00555556 -2.2 0.15)
(0.00551007 -2.01742 0.15)
(0.00546213 -1.83484 0.15)
(0.00540281 -1.65225 0.15)
(0.0053634 -1.46967 0.15)
(-0.0809386 -1.46965 0.15)
(-0.0809705 -1.37835 0.15)
(-0.167621 -1.37821 0.15)
(-0.167738 -1.2869 0.15)
(-0.0810137 -1.28705 0.15)
(-0.081081 -1.19575 0.15)
(-0.167848 -1.19558 0.15)
(-0.167946 -1.10413 0.15)
(-0.081294 -1.10442 0.15)
(-0.08181617325 -1.01287894 0.15)
(-0.1250050171 -1.012739382 0.15)
(-0.16807 -1.01263 0.15)
(-0.1709477012 -0.9191452699 0.15)
(-0.1286381687 -0.9188942516 0.15)
(-0.1324600828 -0.8703581486 0.15)
(-0.174430641 -0.8707033382 0.15)
(-0.1885525637 -0.7198698353 0.15)
(-0.1472429571 -0.7196418684 0.15)
(-0.1519809362 -0.668298992 0.15)
(-0.1937214931 -0.6678603113 0.15)
(-0.2032981638 -0.512482495 0.15)
(-0.1616585459 -0.5136900163 0.15)
(-0.1625861035 -0.4629650648 0.15)
(-0.2043261515 -0.461388697 0.15)
(-0.2010591311 -0.3127700176 0.15)
(-0.1584475172 -0.3158385824 0.15)
(-0.1553286533 -0.2687550229 0.15)
(-0.1985067169 -0.2648937165 0.15)
(-0.1887506818 -0.1249033731 0.15)
(-0.1446227236 -0.1308324877 0.15)
(-0.1428840983 -0.1077855472 0.15)
(-0.142031433 -0.0834090714 0.15)
(-0.1638567981 -0.08027031343 0.15)
(-0.1852334087 -0.0780750486 0.15)
(-0.1731903605 0.06115269812 0.15)
(-0.1519148849 0.05917713924 0.15)
(-0.1497692327 0.08248696085 0.15)
(-0.1710544291 0.08433610014 0.15)
(-0.1540430101 0.2484177182 0.15)
(-0.1321274684 0.2470843502 0.15)
(-0.109858045 0.2458848615 0.15)
(-0.1070366479 0.2690091008 0.15)
(-0.1046676679 0.2918358645 0.15)
(-0.1486415097 0.294901495 0.15)
(-0.1357813378 0.4296524214 0.15)
(-0.092314718 0.4269000148 0.15)
(-0.08966389001 0.4702961409 0.15)
(-0.1334687159 0.4725985721 0.15)
(-0.1328793336 0.5969213888 0.15)
(-0.08799528136 0.5958304067 0.15)
(-0.0897092437 0.6367284223 0.15)
(-0.1349108599 0.6372776654 0.15)
(-0.1461801174 0.7576443369 0.15)
(-0.1010363888 0.7581663893 0.15)
(-0.1060788972 0.7988828895 0.15)
(-0.1510000187 0.7982506239 0.15)
(-0.164026935 0.9239951971 0.15)
(-0.1200605468 0.9245635976 0.15)
(-0.123046832 0.9682136949 0.15)
(-0.1666128818 0.9678066304 0.15)
(-0.167581 1.10426 0.15)
(-0.0812491 1.10447 0.15)
(-0.0810988 1.19579 0.15)
(-0.167498 1.19571 0.15)
(-0.167364 1.28702 0.15)
(-0.0810205 1.28709 0.15)
(-0.080918 1.37839 0.15)
(-0.16716 1.37833 0.15)
(-0.0808667 1.46969 0.15)
(0.00526028 1.4697 0.15)
(0.00533705 1.65227 0.15)
(0.00541418 1.83485 0.15)
(0.00548531 2.01743 0.15)
(0.00555556 2.2 0.15)
(0.177778 -2.2 0.15)
(0.177739 -2.01742 0.15)
(0.1777 -1.83484 0.15)
(0.177661 -1.65227 0.15)
(0.177627 -1.46969 0.15)
(0.0915047 -1.4697 0.15)
(0.0914852 -1.37841 0.15)
(0.00534656 -1.37838 0.15)
(0.00532381 -1.28709 0.15)
(0.0914651 -1.28711 0.15)
(0.0914414 -1.19582 0.15)
(0.00528866 -1.19579 0.15)
(0.00515509 -1.10449 0.15)
(0.0913796 -1.10453 0.15)
(0.09085445227 -1.013087189 0.15)
(0.04771700919 -1.013096206 0.15)
(0.004616345619 -1.01308483 0.15)
(-0.0003816472459 -0.9190314878 0.15)
(0.04258366652 -0.9192740084 0.15)
(0.03809407851 -0.8711196141 0.15)
(-0.004804164046 -0.8706888968 0.15)
(-0.020807582 -0.7216483502 0.15)
(0.02194337479 -0.7229434579 0.15)
(0.01703957891 -0.6727850791 0.15)
(-0.02568719848 -0.6711680167 0.15)
(-0.03458218308 -0.5200896218 0.15)
(0.008157083004 -0.5227960687 0.15)
(0.007678566898 -0.4736219401 0.15)
(-0.03513087223 -0.4705624215 0.15)
(-0.02959116197 -0.3268532048 0.15)
(0.0135823036 -0.3307512137 0.15)
(0.0174675507 -0.2849412514 0.15)
(-0.02583134222 -0.280866188 0.15)
(-0.01369702607 -0.1445276171 0.15)
(0.00824435962 -0.1466919262 0.15)
(0.01021891644 -0.1239792116 0.15)
(-0.01168807255 -0.1218201024 0.15)
(0.02088352982 0.2352779495 0.15)
(0.04263580542 0.2333902944 0.15)
(0.04483115724 0.2560764975 0.15)
(0.02311328065 0.2579850641 0.15)
(0.03858968195 0.4168121091 0.15)
(0.08174001344 0.4129503532 0.15)
(0.0852696434 0.4576168502 0.15)
(0.04196553206 0.4612791722 0.15)
(0.0451533551 0.59044046 0.15)
(0.08880526347 0.5876373402 0.15)
(0.08736633859 0.6299517527 0.15)
(0.04362858445 0.6323947715 0.15)
(0.03222988961 0.756789063 0.15)
(0.07607182743 0.7554851789 0.15)
(0.07079146721 0.7973598631 0.15)
(0.02692271044 0.7983062009 0.15)
(0.0113190684 0.9252980388 0.15)
(0.05564763278 0.9254041337 0.15)
(0.05163748808 0.9691209849 0.15)
(0.007556455441 0.9689545621 0.15)
(0.00498511 1.10452 0.15)
(0.0912177 1.10457 0.15)
(0.0912678 1.19586 0.15)
(0.00512268 1.19582 0.15)
(0.00517435 1.28712 0.15)
(0.0913049 1.28714 0.15)
(0.0913415 1.37843 0.15)
(0.00522194 1.37841 0.15)
(0.0913798 1.46972 0.15)
(0.17756 1.46972 0.15)
(0.177642 1.65229 0.15)
(0.17769 1.83486 0.15)
(0.177734 2.01743 0.15)
(0.177778 2.2 0.15)
(0.35 -2.2 0.15)
(0.349964 -2.01742 0.15)
(0.349927 -1.83485 0.15)
(0.349892 -1.65227 0.15)
(0.349867 -1.4697 0.15)
(0.263757 -1.46971 0.15)
(0.263743 -1.37842 0.15)
(0.177608 -1.3784 0.15)
(0.177589 -1.28711 0.15)
(0.263728 -1.28713 0.15)
(0.263712 -1.19584 0.15)
(0.17757 -1.19582 0.15)
(0.177544 -1.10453 0.15)
(0.263698 -1.10455 0.15)
(0.2631446769 -1.013135153 0.15)
(0.220117048 -1.013116223 0.15)
(0.1770621567 -1.01310419 0.15)
(0.1712321977 -0.9197587714 0.15)
(0.2141450116 -0.919944752 0.15)
(0.2093374132 -0.8725280351 0.15)
(0.1664792798 -0.8721183326 0.15)
(0.1499792671 -0.7266351904 0.15)
(0.1927602193 -0.7280475401 0.15)
(0.1878735583 -0.6794667148 0.15)
(0.1450933523 -0.6776546468 0.15)
(0.1365467316 -0.5312712408 0.15)
(0.1793705934 -0.5342488867 0.15)
(0.1790938547 -0.4864594662 0.15)
(0.136243847 -0.4831588148 0.15)
(0.1427364979 -0.3424434973 0.15)
(0.185681728 -0.3463365735 0.15)
(0.1897529476 -0.3008096878 0.15)
(0.1467862936 -0.2968794085 0.15)
(0.1593763972 -0.1608046024 0.15)
(0.180873459 -0.1627840723 0.15)
(0.182965423 -0.1401394957 0.15)
(0.1614686383 -0.1381570387 0.15)
(0.1943769836 0.2197001498 0.15)
(0.2159995785 0.2176989898 0.15)
(0.2181130788 0.2403375511 0.15)
(0.1965018065 0.2423416777 0.15)
(0.2113487482 0.4010264197 0.15)
(0.2544887332 0.3969751826 0.15)
(0.2582736405 0.4421182854 0.15)
(0.2150967418 0.4460927818 0.15)
(0.2197309118 0.5785759114 0.15)
(0.2631380283 0.575288261 0.15)
(0.2621582417 0.6190890061 0.15)
(0.2186648194 0.6220293051 0.15)
(0.2080943228 0.7512312957 0.15)
(0.2517761908 0.7495081468 0.15)
(0.2464821151 0.7929016417 0.15)
(0.2027763879 0.7942360411 0.15)
(0.1861826225 0.9244874595 0.15)
(0.2297836235 0.92410015 0.15)
(0.2253475571 0.9684765964 0.15)
(0.1818380992 0.9686752067 0.15)
(0.177442 1.10447 0.15)
(0.263862 1.10431 0.15)
(0.263862 1.19583 0.15)
(0.177467 1.19586 0.15)
(0.177495 1.28715 0.15)
(0.263864 1.28717 0.15)
(0.263866 1.37846 0.15)
(0.177525 1.37843 0.15)
(0.263867 1.46975 0.15)
(0.350165 1.46972 0.15)
(0.350091 1.65229 0.15)
(0.350058 1.83486 0.15)
(0.350028 2.01743 0.15)
(0.35 2.2 0.15)
(0.522222 -2.2 0.15)
(0.522182 -2.01743 0.15)
(0.522141 -1.83485 0.15)
(0.522103 -1.65228 0.15)
(0.522069 -1.46971 0.15)
(0.435968 -1.46972 0.15)
(0.43595 -1.37843 0.15)
(0.349852 -1.37841 0.15)
(0.349837 -1.28712 0.15)
(0.435933 -1.28714 0.15)
(0.435915 -1.19585 0.15)
(0.349822 -1.19584 0.15)
(0.349806 -1.10455 0.15)
(0.435897 -1.10456 0.15)
(0.4350646898 -1.013202981 0.15)
(0.3920967564 -1.013196702 0.15)
(0.3491310417 -1.013165928 0.15)
(0.342795574 -0.9206260646 0.15)
(0.385617282 -0.9208818379 0.15)
(0.3806268855 -0.8744225768 0.15)
(0.3378563284 -0.8739204016 0.15)
(0.3210752276 -0.7325257515 0.15)
(0.3637706897 -0.7340689858 0.15)
(0.3588647324 -0.6870892046 0.15)
(0.3161720021 -0.685146039 0.15)
(0.3077339325 -0.543362776 0.15)
(0.3504640663 -0.5464390568 0.15)
(0.3502594328 -0.4998802419 0.15)
(0.3075053228 -0.4965029534 0.15)
(0.3142947327 -0.357988407 0.15)
(0.3571370314 -0.3618688773 0.15)
(0.3612642135 -0.3164315517 0.15)
(0.3184089471 -0.3125347059 0.15)
(0.3309868455 -0.1765481496 0.15)
(0.3524014676 -0.1785069147 0.15)
(0.354485589 -0.1558927437 0.15)
(0.343777467 -0.1549112773 0.15)
(0.3330783065 -0.1539306423 0.15)
(0.3671454589 0.2034594924 0.15)
(0.388680307 0.2014001903 0.15)
(0.3907555593 0.2240161885 0.15)
(0.3692279584 0.2260778312 0.15)
(0.3837967481 0.3846487618 0.15)
(0.4267577259 0.3805118909 0.15)
(0.4304465956 0.4258222843 0.15)
(0.3875290896 0.4299138923 0.15)
(0.3923533109 0.5648842827 0.15)
(0.4352131024 0.5614004099 0.15)
(0.4342433945 0.6064933642 0.15)
(0.3913861443 0.6096448974 0.15)
(0.3810677369 0.7436001197 0.15)
(0.4239288485 0.7416373481 0.15)
(0.4186857853 0.7866499579 0.15)
(0.3758003882 0.7882083865 0.15)
(0.3592139554 0.9224414052 0.15)
(0.4021892328 0.9218892845 0.15)
(0.3978422715 0.9671673394 0.15)
(0.3548328822 0.9674954699 0.15)
(0.350236 1.10409 0.15)
(0.43642 1.10386 0.15)
(0.4364 1.19541 0.15)
(0.350224 1.19563 0.15)
(0.350216 1.28715 0.15)
(0.436392 1.287 0.15)
(0.436371 1.37844 0.15)
(0.350194 1.37844 0.15)
(0.436339 1.46973 0.15)
(0.52247 1.4697 0.15)
(0.522403 1.65228 0.15)
(0.522334 1.83485 0.15)
(0.522278 2.01743 0.15)
(0.522222 2.2 0.15)
(0.694444 -2.2 0.15)
(0.694421 -2.01743 0.15)
(0.694395 -1.83486 0.15)
(0.694367 -1.65229 0.15)
(0.694266 -1.46972 0.15)
(0.608164 -1.46973 0.15)
(0.608143 -1.37844 0.15)
(0.522052 -1.37842 0.15)
(0.522033 -1.28714 0.15)
(0.608122 -1.28715 0.15)
(0.608101 -1.19587 0.15)
(0.522015 -1.19585 0.15)
(0.521997 -1.10456 0.15)
(0.608086 -1.10458 0.15)
(0.6069271838 -1.01325906 0.15)
(0.5639754113 -1.013233434 0.15)
(0.5210135097 -1.013215909 0.15)
(0.5141085529 -0.9217809701 0.15)
(0.5569259886 -0.922126789 0.15)
(0.5517302325 -0.8767065739 0.15)
(0.5089645924 -0.8760924218 0.15)
(0.4918871457 -0.7389225265 0.15)
(0.5345790264 -0.7406157243 0.15)
(0.5296667069 -0.6952412373 0.15)
(0.4869759463 -0.6931462226 0.15)
(0.4787009028 -0.5558413171 0.15)
(0.5214403034 -0.559033688 0.15)
(0.521340486 -0.513624479 0.15)
(0.4785730906 -0.5101536292 0.15)
(0.4857404499 -0.3735178039 0.15)
(0.528611744 -0.3773989895 0.15)
(0.5327891011 -0.3319823702 0.15)
(0.4899071863 -0.3281021335 0.15)
(0.50247135 -0.1921986637 0.15)
(0.5239070876 -0.1941463321 0.15)
(0.5259886017 -0.1715710866 0.15)
(0.5152709639 -0.1705947631 0.15)
(0.5045554099 -0.1696176286 0.15)
(0.5391616916 0.1868397095 0.15)
(0.5606609402 0.1847214441 0.15)
(0.5627112584 0.2073176613 0.15)
(0.5412184461 0.209440351 0.15)
(0.5555598322 0.3679695406 0.15)
(0.5984405457 0.3637820693 0.15)
(0.6017448676 0.4094338889 0.15)
(0.5589897009 0.4135051812 0.15)
(0.5629653637 0.5510898989 0.15)
(0.6052109423 0.5478160051 0.15)
(0.6041617446 0.5942517114 0.15)
(0.5617635768 0.597211507 0.15)
(0.5510396866 0.7359139661 0.15)
(0.593394963 0.7341563885 0.15)
(0.5882147705 0.7807526818 0.15)
(0.5458096908 0.7821315775 0.15)
(0.5299585144 0.9202705905 0.15)
(0.5726180989 0.9198124388 0.15)
(0.5688330726 0.9659230044 0.15)
(0.5260421157 0.9661864139 0.15)
(0.522596 1.10359 0.15)
(0.608805 1.10329 0.15)
(0.608783 1.19489 0.15)
(0.522553 1.19516 0.15)
(0.522536 1.28678 0.15)
(0.608754 1.28653 0.15)
(0.608691 1.37816 0.15)
(0.522505 1.3784 0.15)
(0.608659 1.46969 0.15)
(0.694922 1.46961 0.15)
(0.694721 1.65224 0.15)
(0.69458 1.83483 0.15)
(0.694507 2.01742 0.15)
(0.694444 2.2 0.15)
(0.866667 -2.2 0.15)
(0.866804 -2.01742 0.15)
(0.866933 -1.83485 0.15)
(0.867013 -1.65228 0.15)
(0.866587 -1.46974 0.15)
(0.780367 -1.46974 0.15)
(0.780339 -1.37845 0.15)
(0.694242 -1.37843 0.15)
(0.69422 -1.28715 0.15)
(0.780315 -1.28717 0.15)
(0.780291 -1.19588 0.15)
(0.694197 -1.19586 0.15)
(0.694176 -1.10458 0.15)
(0.780267 -1.1046 0.15)
(0.7787826563 -1.013451308 0.15)
(0.7356963728 -1.0134211 0.15)
(0.6927821132 -1.013351088 0.15)
(0.685274768 -0.9233205585 0.15)
(0.7280186908 -0.9237847705 0.15)
(0.7226018752 -0.8795002164 0.15)
(0.6799177258 -0.8787420276 0.15)
(0.662545471 -0.7459495993 0.15)
(0.7051526027 -0.7478299595 0.15)
(0.7002464791 -0.7040603456 0.15)
(0.6576355043 -0.7017796188 0.15)
(0.6495761745 -0.5688027305 0.15)
(0.6922641226 -0.5721383886 0.15)
(0.6923009734 -0.5277756021 0.15)
(0.6495723984 -0.5241893593 0.15)
(0.6571938273 -0.3890361887 0.15)
(0.7000647774 -0.3929201051 0.15)
(0.7042690271 -0.3474657464 0.15)
(0.661396238 -0.3435953951 0.15)
(0.6739423453 -0.2077133488 0.15)
(0.6953778468 -0.2096419137 0.15)
(0.6974504098 -0.1871090223 0.15)
(0.6867288609 -0.1861423789 0.15)
(0.6760153703 -0.1851754788 0.15)
(0.7107231362 0.1697670052 0.15)
(0.7321458682 0.1675925685 0.15)
(0.7341775243 0.1901824828 0.15)
(0.7127554391 0.1923638896 0.15)
(0.7267171775 0.3512725374 0.15)
(0.7693796503 0.3471603539 0.15)
(0.7721737753 0.3936561461 0.15)
(0.7296613036 0.3974911047 0.15)
(0.7318538459 0.5386880697 0.15)
(0.7742507639 0.5357540962 0.15)
(0.7724873463 0.5838495335 0.15)
(0.7305266819 0.586219371 0.15)
(0.7194068983 0.7296508946 0.15)
(0.7609640777 0.7285468303 0.15)
(0.7558648046 0.7765089123 0.15)
(0.7143188871 0.7772996415 0.15)
(0.6998975965 0.9187641106 0.15)
(0.7423473673 0.9185143668 0.15)
(0.7394767643 0.9650746748 0.15)
(0.6967800287 0.9652525313 0.15)
(0.694995 1.10296 0.15)
(0.781109 1.10262 0.15)
(0.781098 1.1943 0.15)
(0.694983 1.1946 0.15)
(0.694971 1.28624 0.15)
(0.781097 1.28597 0.15)
(0.781101 1.37767 0.15)
(0.694945 1.37791 0.15)
(0.781109 1.4694 0.15)
(0.867247 1.46918 0.15)
(0.867081 1.65219 0.15)
(0.866868 1.8348 0.15)
(0.866754 2.0174 0.15)
(0.866667 2.2 0.15)
(1.03889 -2.2 0.15)
(1.03889 -2.01667 0.15)
(1.03889 -1.83333 0.15)
(1.03889 -1.65 0.15)
(1.03889 -1.46667 0.15)
(0.953286 -1.46972 0.15)
(0.953361 -1.37843 0.15)
(0.866525 -1.37846 0.15)
(0.866505 -1.28717 0.15)
(0.953429 -1.28714 0.15)
(0.953488 -1.19585 0.15)
(0.866488 -1.19589 0.15)
(0.866462 -1.10461 0.15)
(0.953452 -1.10458 0.15)
(0.9500205529 -1.01420177 0.15)
(0.906998968 -1.013987484 0.15)
(0.8642962778 -1.013762246 0.15)
(0.856156411 -0.9253905922 0.15)
(0.8984377847 -0.9261813384 0.15)
(0.8927610713 -0.8831620191 0.15)
(0.8506540049 -0.8819951498 0.15)
(0.8327802124 -0.7538405826 0.15)
(0.8751701992 -0.7560332108 0.15)
(0.8703850997 -0.7138225404 0.15)
(0.8278984321 -0.7112718822 0.15)
(0.8202108309 -0.582426924 0.15)
(0.8630175074 -0.5858534828 0.15)
(0.863082696 -0.5425181528 0.15)
(0.8203976207 -0.5387666875 0.15)
(0.8286542039 -0.4046154696 0.15)
(0.8715175593 -0.408544199 0.15)
(0.8757181987 -0.3630316343 0.15)
(0.8542936193 -0.3610719454 0.15)
(0.8328664943 -0.359118046 0.15)
(0.845420834 -0.2230931493 0.15)
(0.8561249217 -0.2240531512 0.15)
(0.8571574975 -0.2127833488 0.15)
(0.8464563045 -0.2118246198 0.15)
(0.866101196 -0.02782405894 0.15)
(0.871426751 -0.02844342874 0.15)
(0.8767566312 -0.02902700505 0.15)
(0.8776548181 -0.0179825007 0.15)
(0.8670089284 -0.0167632668 0.15)
(0.8818017181 0.1518954939 0.15)
(0.9031194991 0.1495640818 0.15)
(0.9244304743 0.1472242624 0.15)
(0.928521102 0.1925361323 0.15)
(0.8858669088 0.1971605134 0.15)
(0.8838370902 0.1745362825 0.15)
(0.8970358373 0.3352092937 0.15)
(0.9394320708 0.3315175441 0.15)
(0.9415665991 0.3794810642 0.15)
(0.8994772946 0.3826819774 0.15)
(0.9001671031 0.528386391 0.15)
(0.9419513698 0.5263405283 0.15)
(0.939758934 0.5759853926 0.15)
(0.8980250678 0.5776764052 0.15)
(0.8861442983 0.7258155522 0.15)
(0.928001951 0.7250868618 0.15)
(0.9232594916 0.7741590519 0.15)
(0.8812636309 0.7746540897 0.15)
(0.8692668348 0.9181771533 0.15)
(0.9118978879 0.9180198571 0.15)
(0.9103895551 0.9644831649 0.15)
(0.8674976073 0.964668362 0.15)
(0.867204 1.10226 0.15)
(0.953252 1.10189 0.15)
(0.953259 1.19361 0.15)
(0.867204 1.19395 0.15)
(0.867215 1.28567 0.15)
(0.953283 1.2854 0.15)
(0.953316 1.3772 0.15)
(0.867233 1.37742 0.15)
(0.953348 1.469 0.15)
(1.03943 1.46885 0.15)
(1.0394 1.65214 0.15)
(1.0392 1.83477 0.15)
(1.03904 2.01739 0.15)
(1.03889 2.2 0.15)
(1.21111 -2.2 0.15)
(1.21111 -2.01667 0.15)
(1.21111 -1.83333 0.15)
(1.21111 -1.65 0.15)
(1.21111 -1.46667 0.15)
(1.125 -1.46667 0.15)
(1.125 -1.375 0.15)
(1.03889 -1.375 0.15)
(1.03889 -1.28333 0.15)
(1.125 -1.28333 0.15)
(1.125 -1.19167 0.15)
(1.03889 -1.19167 0.15)
(1.03889 -1.1 0.15)
(1.125 -1.1 0.15)
(1.122516601 -1.009867591 0.15)
(1.079133417 -1.009948215 0.15)
(1.035890969 -1.009931854 0.15)
(1.02676615 -0.9236946958 0.15)
(1.070205009 -0.9240148158 0.15)
(1.064401915 -0.8822888441 0.15)
(1.020886878 -0.8817158369 0.15)
(1.003050224 -0.7582117651 0.15)
(1.046658673 -0.7598147019 0.15)
(1.041888749 -0.7191937903 0.15)
(0.9983020254 -0.7172041011 0.15)
(0.9913744456 -0.5920915669 0.15)
(1.034739024 -0.5951701973 0.15)
(1.0351281 -0.5525558768 0.15)
(0.9918816967 -0.5491762473 0.15)
(1.000995011 -0.4153340008 0.15)
(1.043860902 -0.4193111717 0.15)
(1.048095273 -0.3736731868 0.15)
(1.026667306 -0.3716850633 0.15)
(1.005229382 -0.369696016 0.15)
(1.017932309 -0.2327840528 0.15)
(1.039370233 -0.2347731002 0.15)
(1.041487326 -0.2119551035 0.15)
(1.030763385 -0.2109601179 0.15)
(1.020049402 -0.2099660561 0.15)
(1.018990855 -0.2213750545 0.15)
(1.034869511 -0.05023513328 0.15)
(1.045583496 -0.05122917596 0.15)
(1.056307437 -0.05222415203 0.15)
(1.058424595 -0.0294054542 0.15)
(1.036986671 -0.02741640683 0.15)
(1.051806718 0.1323138517 0.15)
(1.094672609 0.1283366808 0.15)
(1.098855853 0.1741885118 0.15)
(1.056030235 0.1779929215 0.15)
(1.066463186 0.3207761889 0.15)
(1.108506308 0.3175684425 0.15)
(1.110104811 0.3671421475 0.15)
(1.068164068 0.3699015075 0.15)
(1.066707131 0.5216837811 0.15)
(1.108499008 0.5202028285 0.15)
(1.105807204 0.5718040618 0.15)
(1.064458587 0.5723509995 0.15)
(1.052624659 0.7242901872 0.15)
(1.093862097 0.7245477174 0.15)
(1.090152471 0.7739359598 0.15)
(1.048297041 0.7739059952 0.15)
(1.039603799 0.917751272 0.15)
(1.082400781 0.9175576571 0.15)
(1.08225 0.963502 0.15)
(1.03926 0.963775 0.15)
(1.03928 1.10146 0.15)
(1.12532 1.10101 0.15)
(1.12539 1.19295 0.15)
(1.03931 1.19327 0.15)
(1.03934 1.28514 0.15)
(1.12544 1.28491 0.15)
(1.12548 1.37679 0.15)
(1.03939 1.377 0.15)
(1.12552 1.46859 0.15)
(1.2116 1.46826 0.15)
(1.21159 1.65175 0.15)
(1.21146 1.83473 0.15)
(1.21128 2.01737 0.15)
(1.21111 2.2 0.15)
(1.38333 -2.2 0.15)
(1.38333 -2.01667 0.15)
(1.38333 -1.83333 0.15)
(1.38333 -1.65 0.15)
(1.38333 -1.46667 0.15)
(1.29722 -1.46667 0.15)
(1.29722 -1.375 0.15)
(1.21111 -1.375 0.15)
(1.21111 -1.28333 0.15)
(1.29722 -1.28333 0.15)
(1.29722 -1.19167 0.15)
(1.21111 -1.19167 0.15)
(1.21111 -1.1 0.15)
(1.29722 -1.1 0.15)
(1.29664018 -1.00878813 0.15)
(1.253117794 -1.009116357 0.15)
(1.209546582 -1.009431505 0.15)
(1.202120701 -0.9235632828 0.15)
(1.246491783 -0.9229223633 0.15)
(1.241640524 -0.8815012915 0.15)
(1.196931995 -0.8821944798 0.15)
(1.18018459 -0.7618823393 0.15)
(1.225509748 -0.7614793365 0.15)
(1.220777895 -0.7220826613 0.15)
(1.175407494 -0.7222525795 0.15)
(1.167162911 -0.6015893885 0.15)
(1.212153557 -0.6024450796 0.15)
(1.211573341 -0.5614406584 0.15)
(1.166864753 -0.5601510057 0.15)
(1.172938598 -0.4305667119 0.15)
(1.216518189 -0.4334114863 0.15)
(1.21991694 -0.3890162268 0.15)
(1.176735713 -0.3855689957 0.15)
(1.189415787 -0.2486945841 0.15)
(1.232291635 -0.2526726788 0.15)
(1.236525914 -0.2070356897 0.15)
(1.193650065 -0.2030575949 0.15)
(1.19153288 -0.2258765874 0.15)
(1.206352992 -0.06614563179 0.15)
(1.24922884 -0.07012372652 0.15)
(1.253463146 -0.02448643867 0.15)
(1.210587298 -0.02050834393 0.15)
(1.223218278 0.1170044786 0.15)
(1.265977056 0.1141622441 0.15)
(1.269743081 0.1619549285 0.15)
(1.227133262 0.1641837732 0.15)
(1.235361987 0.3119639906 0.15)
(1.277376694 0.3112766684 0.15)
(1.27816953 0.3628132719 0.15)
(1.236341345 0.3630998708 0.15)
(1.232938589 0.5196146855 0.15)
(1.27446248 0.5201473113 0.15)
(1.271480961 0.5726414126 0.15)
(1.229937698 0.5719703432 0.15)
(1.218576352 0.7258765068 0.15)
(1.260587394 0.7265505154 0.15)
(1.257459087 0.7759149127 0.15)
(1.215575851 0.7749941954 0.15)
(1.21111 0.916667 0.15)
(1.25417 0.916667 0.15)
(1.25417 0.9625 0.15)
(1.21125 0.962818 0.15)
(1.21135 1.10065 0.15)
(1.29756 1.10048 0.15)
(1.29749 1.1924 0.15)
(1.21147 1.19275 0.15)
(1.21153 1.28465 0.15)
(1.29758 1.2844 0.15)
(1.29764 1.37625 0.15)
(1.21159 1.37654 0.15)
(1.29764 1.46792 0.15)
(1.38364 1.46759 0.15)
(1.38374 1.65132 0.15)
(1.38369 1.83462 0.15)
(1.38351 2.01735 0.15)
(1.38333 2.2 0.15)
(1.55556 -2.2 0.15)
(1.55556 -2.01667 0.15)
(1.55556 -1.83333 0.15)
(1.55556 -1.65 0.15)
(1.55556 -1.46667 0.15)
(1.46944 -1.46667 0.15)
(1.46944 -1.375 0.15)
(1.38333 -1.375 0.15)
(1.38333 -1.28333 0.15)
(1.46944 -1.28333 0.15)
(1.46944 -1.19167 0.15)
(1.38333 -1.19167 0.15)
(1.38333 -1.1 0.15)
(1.46944 -1.1 0.15)
(1.46944 -1.00833 0.15)
(1.42639 -1.00833 0.15)
(1.38331576 -1.008342466 0.15)
(1.379917876 -0.919936903 0.15)
(1.424248956 -0.9188215473 0.15)
(1.421404053 -0.8760921654 0.15)
(1.376477097 -0.877710955 0.15)
(1.363223888 -0.7567280599 0.15)
(1.409471194 -0.7540700161 0.15)
(1.405384727 -0.7146955984 0.15)
(1.358893964 -0.7175164524 0.15)
(1.34965963 -0.5998610858 0.15)
(1.396227242 -0.5971272292 0.15)
(1.394716405 -0.5574214564 0.15)
(1.348325087 -0.5599474696 0.15)
(1.349991854 -0.4362113226 0.15)
(1.395451646 -0.4347096517 0.15)
(1.397288956 -0.392389085 0.15)
(1.352200131 -0.3934736273 0.15)
(1.362007811 -0.2613149329 0.15)
(1.406116572 -0.2613219242 0.15)
(1.409775474 -0.2164458832 0.15)
(1.365905805 -0.2162429264 0.15)
(1.378241131 -0.07879354837 0.15)
(1.421583444 -0.07876537923 0.15)
(1.425544118 -0.0317848527 0.15)
(1.382375693 -0.03214309913 0.15)
(1.393807597 0.1116427068 0.15)
(1.436267463 0.1133259445 0.15)
(1.439075209 0.1632704094 0.15)
(1.396911867 0.1611548261 0.15)
(1.40226869 0.3145586531 0.15)
(1.443552162 0.3175631011 0.15)
(1.443468347 0.3700952464 0.15)
(1.402407122 0.3669811932 0.15)
(1.397824734 0.5253676593 0.15)
(1.438696453 0.5281868623 0.15)
(1.43604383 0.580213669 0.15)
(1.395037226 0.577687872 0.15)
(1.386290606 0.7296922036 0.15)
(1.428297808 0.7308774156 0.15)
(1.426817908 0.7786502191 0.15)
(1.384318931 0.7780268962 0.15)
(1.38333 0.916667 0.15)
(1.42639 0.916667 0.15)
(1.42639 0.9625 0.15)
(1.38333 0.9625 0.15)
(1.38333 1.1 0.15)
(1.46944 1.1 0.15)
(1.46983 1.19203 0.15)
(1.38358 1.19218 0.15)
(1.38365 1.28424 0.15)
(1.46966 1.28378 0.15)
(1.46961 1.37544 0.15)
(1.38362 1.37587 0.15)
(1.46965 1.46727 0.15)
(1.55574 1.46706 0.15)
(1.55584 1.65071 0.15)
(1.55579 1.834 0.15)
(1.55576 2.01733 0.15)
(1.55556 2.2 0.15)
(1.72778 -2.2 0.15)
(1.72778 -2.01667 0.15)
(1.72778 -1.83333 0.15)
(1.72778 -1.65 0.15)
(1.72778 -1.46667 0.15)
(1.64167 -1.46667 0.15)
(1.64167 -1.375 0.15)
(1.55556 -1.375 0.15)
(1.55556 -1.28333 0.15)
(1.64167 -1.28333 0.15)
(1.64167 -1.19167 0.15)
(1.55556 -1.19167 0.15)
(1.55556 -1.1 0.15)
(1.64167 -1.1 0.15)
(1.64167 -1.00833 0.15)
(1.59861 -1.00833 0.15)
(1.55556 -1.00833 0.15)
(1.555547498 -0.9166813614 0.15)
(1.59861 -0.916667 0.15)
(1.598481256 -0.8709949085 0.15)
(1.554798924 -0.8717520474 0.15)
(1.547842047 -0.7442555489 0.15)
(1.59347255 -0.7409296821 0.15)
(1.590940582 -0.6995237089 0.15)
(1.544839253 -0.703568252 0.15)
(1.536955704 -0.5838631636 0.15)
(1.583825897 -0.5782357871 0.15)
(1.58215162 -0.538078047 0.15)
(1.53523845 -0.544032461 0.15)
(1.533940519 -0.4223275607 0.15)
(1.580451994 -0.4159136027 0.15)
(1.581049639 -0.3741968463 0.15)
(1.534805325 -0.3806343027 0.15)
(1.540571356 -0.2513423847 0.15)
(1.585806379 -0.2449775437 0.15)
(1.588134204 -0.2004249682 0.15)
(1.543271041 -0.2067744708 0.15)
(1.552376868 -0.06856704959 0.15)
(1.596079171 -0.06211472359 0.15)
(1.598720291 -0.01445063098 0.15)
(1.555417503 -0.02097397349 0.15)
(1.563117968 0.1263790025 0.15)
(1.605226177 0.1330146547 0.15)
(1.606617337 0.1834959392 0.15)
(1.564876042 0.1769236433 0.15)
(1.566674074 0.3316048344 0.15)
(1.607618183 0.3374511268 0.15)
(1.606882903 0.3890620557 0.15)
(1.566045939 0.3836644158 0.15)
(1.561382805 0.5384387832 0.15)
(1.602553135 0.5418937107 0.15)
(1.600940136 0.5914390071 0.15)
(1.559429288 0.5887959423 0.15)
(1.555592638 0.7332853168 0.15)
(1.59861 0.733333 0.15)
(1.59861 0.779167 0.15)
(1.55556 0.779167 0.15)
(1.55556 0.916667 0.15)
(1.59861 0.916667 0.15)
(1.59861 0.9625 0.15)
(1.55556 0.9625 0.15)
(1.55556 1.1 0.15)
(1.64167 1.1 0.15)
(1.64167 1.19167 0.15)
(1.55556 1.19167 0.15)
(1.55556 1.28333 0.15)
(1.64167 1.28333 0.15)
(1.64167 1.375 0.15)
(1.55556 1.375 0.15)
(1.64167 1.46667 0.15)
(1.72778 1.46667 0.15)
(1.72778 1.65 0.15)
(1.72778 1.83333 0.15)
(1.72803 2.01725 0.15)
(1.72778 2.2 0.15)
(1.9 -2.2 0.15)
(1.9 -2.01667 0.15)
(1.9 -1.83333 0.15)
(1.9 -1.65 0.15)
(1.9 -1.46667 0.15)
(1.81389 -1.46667 0.15)
(1.81389 -1.375 0.15)
(1.72778 -1.375 0.15)
(1.72778 -1.28333 0.15)
(1.81389 -1.28333 0.15)
(1.81389 -1.19167 0.15)
(1.72778 -1.19167 0.15)
(1.72778 -1.1 0.15)
(1.81389 -1.1 0.15)
(1.81389 -1.00833 0.15)
(1.77083 -1.00833 0.15)
(1.72778 -1.00833 0.15)
(1.72778 -0.916667 0.15)
(1.77083 -0.916667 0.15)
(1.77083 -0.870833 0.15)
(1.72778 -0.870833 0.15)
(1.727449596 -0.7338831021 0.15)
(1.77083 -0.733333 0.15)
(1.770589831 -0.6879411815 0.15)
(1.726588403 -0.6896112198 0.15)
(1.722670265 -0.5611567392 0.15)
(1.76798816 -0.5564602154 0.15)
(1.766992822 -0.513629565 0.15)
(1.721434656 -0.5191733836 0.15)
(1.719360653 -0.3932293184 0.15)
(1.765068145 -0.3857247142 0.15)
(1.764953402 -0.3427841648 0.15)
(1.719364483 -0.3507484551 0.15)
(1.721400388 -0.2202692663 0.15)
(1.766259558 -0.2114520986 0.15)
(1.76713592 -0.1665925978 0.15)
(1.722609974 -0.175534965 0.15)
(1.726897168 -0.03717943557 0.15)
(1.77030064 -0.02830670484 0.15)
(1.771310239 0.01899913425 0.15)
(1.728285424 0.01030397823 0.15)
(1.73129328 0.1562297405 0.15)
(1.773340721 0.1638605257 0.15)
(1.77354746 0.2128219649 0.15)
(1.731727096 0.205740685 0.15)
(1.731102389 0.3550335639 0.15)
(1.772724872 0.3598608358 0.15)
(1.772131272 0.4083769911 0.15)
(1.730380524 0.4044873645 0.15)
(1.728080357 0.5493171994 0.15)
(1.770830844 0.5499980171 0.15)
(1.77083 0.595833 0.15)
(1.727783513 0.5958256421 0.15)
(1.72778 0.733333 0.15)
(1.77083 0.733333 0.15)
(1.77083 0.779167 0.15)
(1.72778 0.779167 0.15)
(1.72778 0.916667 0.15)
(1.77083 0.916667 0.15)
(1.77083 0.9625 0.15)
(1.72778 0.9625 0.15)
(1.72778 1.1 0.15)
(1.81389 1.1 0.15)
(1.81389 1.19167 0.15)
(1.72778 1.19167 0.15)
(1.72778 1.28333 0.15)
(1.81389 1.28333 0.15)
(1.81389 1.375 0.15)
(1.72778 1.375 0.15)
(1.81389 1.46667 0.15)
(1.9 1.46667 0.15)
(1.9 1.65 0.15)
(1.9 1.83333 0.15)
(1.9 2.01667 0.15)
(1.9 2.2 0.15)
(2.07222 -2.2 0.15)
(2.07222 -2.01667 0.15)
(2.07222 -1.83333 0.15)
(2.07222 -1.65 0.15)
(2.07222 -1.46667 0.15)
(1.98611 -1.46667 0.15)
(1.98611 -1.375 0.15)
(1.9 -1.375 0.15)
(1.9 -1.28333 0.15)
(1.98611 -1.28333 0.15)
(1.98611 -1.19167 0.15)
(1.9 -1.19167 0.15)
(1.9 -1.1 0.15)
(1.98611 -1.1 0.15)
(1.98611 -1.00833 0.15)
(1.94306 -1.00833 0.15)
(1.9 -1.00833 0.15)
(1.9 -0.916667 0.15)
(1.94306 -0.916667 0.15)
(1.94306 -0.870833 0.15)
(1.9 -0.870833 0.15)
(1.9 -0.733333 0.15)
(1.94306 -0.733333 0.15)
(1.94306 -0.6875 0.15)
(1.9 -0.6875 0.15)
(1.9 -0.55 0.15)
(1.94306 -0.55 0.15)
(1.94306 -0.504167 0.15)
(1.899962863 -0.5042691002 0.15)
(1.899333334 -0.3691642609 0.15)
(1.942985073 -0.3669573332 0.15)
(1.942896311 -0.3215553266 0.15)
(1.899154921 -0.3244318864 0.15)
(1.899127658 -0.1896498807 0.15)
(1.942779469 -0.1854540689 0.15)
(1.942819291 -0.1398897892 0.15)
(1.899283398 -0.1442817338 0.15)
(1.899951155 -0.006386976986 0.15)
(1.943047678 -0.002160315352 0.15)
(1.943106156 0.04406444433 0.15)
(1.900143685 0.04014306751 0.15)
(1.900326405 0.180708001 0.15)
(1.943100581 0.1829992464 0.15)
(1.943067483 0.2291182042 0.15)
(1.900248342 0.2275891467 0.15)
(1.9 0.366667 0.15)
(1.94306 0.366667 0.15)
(1.94306 0.4125 0.15)
(1.9 0.4125 0.15)
(1.9 0.55 0.15)
(1.94306 0.55 0.15)
(1.94306 0.595833 0.15)
(1.9 0.595833 0.15)
(1.9 0.733333 0.15)
(1.94306 0.733333 0.15)
(1.94306 0.779167 0.15)
(1.9 0.779167 0.15)
(1.9 0.916667 0.15)
(1.94306 0.916667 0.15)
(1.94306 0.9625 0.15)
(1.9 0.9625 0.15)
(1.9 1.1 0.15)
(1.98611 1.1 0.15)
(1.98611 1.19167 0.15)
(1.9 1.19167 0.15)
(1.9 1.28333 0.15)
(1.98611 1.28333 0.15)
(1.98611 1.375 0.15)
(1.9 1.375 0.15)
(1.98611 1.46667 0.15)
(2.07222 1.46667 0.15)
(2.07222 1.65 0.15)
(2.07222 1.83333 0.15)
(2.07222 2.01667 0.15)
(2.07222 2.2 0.15)
(2.24444 -2.2 0.15)
(2.24444 -2.01667 0.15)
(2.24444 -1.83333 0.15)
(2.24444 -1.65 0.15)
(2.24444 -1.46667 0.15)
(2.15833 -1.46667 0.15)
(2.15833 -1.375 0.15)
(2.07222 -1.375 0.15)
(2.07222 -1.28333 0.15)
(2.15833 -1.28333 0.15)
(2.15833 -1.19167 0.15)
(2.07222 -1.19167 0.15)
(2.07222 -1.1 0.15)
(2.15833 -1.1 0.15)
(2.15833 -1.00833 0.15)
(2.11528 -1.00833 0.15)
(2.07222 -1.00833 0.15)
(2.07222 -0.916667 0.15)
(2.11528 -0.916667 0.15)
(2.11528 -0.870833 0.15)
(2.07222 -0.870833 0.15)
(2.07222 -0.733333 0.15)
(2.11528 -0.733333 0.15)
(2.11528 -0.6875 0.15)
(2.07222 -0.6875 0.15)
(2.07222 -0.55 0.15)
(2.11528 -0.55 0.15)
(2.11528 -0.504167 0.15)
(2.07222 -0.504167 0.15)
(2.07222 -0.366667 0.15)
(2.11528 -0.366667 0.15)
(2.11528 -0.320833 0.15)
(2.07222 -0.320833 0.15)
(2.07222 -0.183333 0.15)
(2.11528 -0.183333 0.15)
(2.11528 -0.1375 0.15)
(2.07222 -0.1375 0.15)
(2.07222 0 0.15)
(2.11528 0 0.15)
(2.11528 0.0458333 0.15)
(2.07222 0.0458333 0.15)
(2.07222 0.183333 0.15)
(2.11528 0.183333 0.15)
(2.11528 0.229167 0.15)
(2.07222 0.229167 0.15)
(2.07222 0.366667 0.15)
(2.11528 0.366667 0.15)
(2.11528 0.4125 0.15)
(2.07222 0.4125 0.15)
(2.07222 0.55 0.15)
(2.11528 0.55 0.15)
(2.11528 0.595833 0.15)
(2.07222 0.595833 0.15)
(2.07222 0.733333 0.15)
(2.11528 0.733333 0.15)
(2.11528 0.779167 0.15)
(2.07222 0.779167 0.15)
(2.07222 0.916667 0.15)
(2.11528 0.916667 0.15)
(2.11528 0.9625 0.15)
(2.07222 0.9625 0.15)
(2.07222 1.1 0.15)
(2.15833 1.1 0.15)
(2.15833 1.19167 0.15)
(2.07222 1.19167 0.15)
(2.07222 1.28333 0.15)
(2.15833 1.28333 0.15)
(2.15833 1.375 0.15)
(2.07222 1.375 0.15)
(2.15833 1.46667 0.15)
(2.24444 1.46667 0.15)
(2.24444 1.65 0.15)
(2.24444 1.83333 0.15)
(2.24444 2.01667 0.15)
(2.24444 2.2 0.15)
(2.41667 -2.2 0.15)
(2.41667 -2.01667 0.15)
(2.41667 -1.83333 0.15)
(2.41667 -1.65 0.15)
(2.41667 -1.46667 0.15)
(2.33056 -1.46667 0.15)
(2.33056 -1.375 0.15)
(2.24444 -1.375 0.15)
(2.24444 -1.28333 0.15)
(2.33056 -1.28333 0.15)
(2.33056 -1.19167 0.15)
(2.24444 -1.19167 0.15)
(2.24444 -1.1 0.15)
(2.33056 -1.1 0.15)
(2.33056 -1.00833 0.15)
(2.2875 -1.00833 0.15)
(2.24444 -1.00833 0.15)
(2.24444 -0.916667 0.15)
(2.2875 -0.916667 0.15)
(2.2875 -0.870833 0.15)
(2.24444 -0.870833 0.15)
(2.24444 -0.733333 0.15)
(2.2875 -0.733333 0.15)
(2.2875 -0.6875 0.15)
(2.24444 -0.6875 0.15)
(2.24444 -0.55 0.15)
(2.2875 -0.55 0.15)
(2.2875 -0.504167 0.15)
(2.24444 -0.504167 0.15)
(2.24444 -0.366667 0.15)
(2.2875 -0.366667 0.15)
(2.2875 -0.320833 0.15)
(2.24444 -0.320833 0.15)
(2.24444 -0.183333 0.15)
(2.2875 -0.183333 0.15)
(2.2875 -0.1375 0.15)
(2.24444 -0.1375 0.15)
(2.24444 0 0.15)
(2.2875 -4.62593e-18 0.15)
(2.2875 0.0458333 0.15)
(2.24444 0.0458333 0.15)
(2.24444 0.183333 0.15)
(2.2875 0.183333 0.15)
(2.2875 0.229167 0.15)
(2.24444 0.229167 0.15)
(2.24444 0.366667 0.15)
(2.2875 0.366667 0.15)
(2.2875 0.4125 0.15)
(2.24444 0.4125 0.15)
(2.24444 0.55 0.15)
(2.2875 0.55 0.15)
(2.2875 0.595833 0.15)
(2.24444 0.595833 0.15)
(2.24444 0.733333 0.15)
(2.2875 0.733333 0.15)
(2.2875 0.779167 0.15)
(2.24444 0.779167 0.15)
(2.24444 0.916667 0.15)
(2.2875 0.916667 0.15)
(2.2875 0.9625 0.15)
(2.24444 0.9625 0.15)
(2.24444 1.1 0.15)
(2.33056 1.1 0.15)
(2.33056 1.19167 0.15)
(2.24444 1.19167 0.15)
(2.24444 1.28333 0.15)
(2.33056 1.28333 0.15)
(2.33056 1.375 0.15)
(2.24444 1.375 0.15)
(2.33056 1.46667 0.15)
(2.41667 1.46667 0.15)
(2.41667 1.65 0.15)
(2.41667 1.83333 0.15)
(2.41667 2.01667 0.15)
(2.41667 2.2 0.15)
(2.58889 -2.2 0.15)
(2.58889 -2.01667 0.15)
(2.58889 -1.83333 0.15)
(2.58889 -1.65 0.15)
(2.58889 -1.46667 0.15)
(2.50278 -1.46667 0.15)
(2.50278 -1.375 0.15)
(2.41667 -1.375 0.15)
(2.41667 -1.28333 0.15)
(2.50278 -1.28333 0.15)
(2.50278 -1.19167 0.15)
(2.41667 -1.19167 0.15)
(2.41667 -1.1 0.15)
(2.50278 -1.1 0.15)
(2.50278 -1.00833 0.15)
(2.45972 -1.00833 0.15)
(2.41667 -1.00833 0.15)
(2.41667 -0.916667 0.15)
(2.45972 -0.916667 0.15)
(2.45972 -0.870833 0.15)
(2.41667 -0.870833 0.15)
(2.41667 -0.733333 0.15)
(2.45972 -0.733333 0.15)
(2.45972 -0.6875 0.15)
(2.41667 -0.6875 0.15)
(2.41667 -0.55 0.15)
(2.45972 -0.55 0.15)
(2.45972 -0.504167 0.15)
(2.41667 -0.504167 0.15)
(2.41667 -0.366667 0.15)
(2.45972 -0.366667 0.15)
(2.45972 -0.320833 0.15)
(2.41667 -0.320833 0.15)
(2.41667 -0.183333 0.15)
(2.45972 -0.183333 0.15)
(2.45972 -0.1375 0.15)
(2.41667 -0.1375 0.15)
(2.41667 -1.85037e-17 0.15)
(2.45972 -1.85037e-17 0.15)
(2.45972 0.0458333 0.15)
(2.41667 0.0458333 0.15)
(2.41667 0.183333 0.15)
(2.45972 0.183333 0.15)
(2.45972 0.229167 0.15)
(2.41667 0.229167 0.15)
(2.41667 0.366667 0.15)
(2.45972 0.366667 0.15)
(2.45972 0.4125 0.15)
(2.41667 0.4125 0.15)
(2.41667 0.55 0.15)
(2.45972 0.55 0.15)
(2.45972 0.595833 0.15)
(2.41667 0.595833 0.15)
(2.41667 0.733333 0.15)
(2.45972 0.733333 0.15)
(2.45972 0.779167 0.15)
(2.41667 0.779167 0.15)
(2.41667 0.916667 0.15)
(2.45972 0.916667 0.15)
(2.45972 0.9625 0.15)
(2.41667 0.9625 0.15)
(2.41667 1.1 0.15)
(2.50278 1.1 0.15)
(2.50278 1.19167 0.15)
(2.41667 1.19167 0.15)
(2.41667 1.28333 0.15)
(2.50278 1.28333 0.15)
(2.50278 1.375 0.15)
(2.41667 1.375 0.15)
(2.50278 1.46667 0.15)
(2.58889 1.46667 0.15)
(2.58889 1.65 0.15)
(2.58889 1.83333 0.15)
(2.58889 2.01667 0.15)
(2.58889 2.2 0.15)
(2.76111 -2.2 0.15)
(2.76111 -2.01667 0.15)
(2.76111 -1.83333 0.15)
(2.76111 -1.65 0.15)
(2.76111 -1.46667 0.15)
(2.675 -1.46667 0.15)
(2.675 -1.375 0.15)
(2.58889 -1.375 0.15)
(2.58889 -1.28333 0.15)
(2.675 -1.28333 0.15)
(2.675 -1.19167 0.15)
(2.58889 -1.19167 0.15)
(2.58889 -1.1 0.15)
(2.675 -1.1 0.15)
(2.675 -1.00833 0.15)
(2.63194 -1.00833 0.15)
(2.58889 -1.00833 0.15)
(2.58889 -0.916667 0.15)
(2.63194 -0.916667 0.15)
(2.63194 -0.870833 0.15)
(2.58889 -0.870833 0.15)
(2.58889 -0.733333 0.15)
(2.63194 -0.733333 0.15)
(2.63194 -0.6875 0.15)
(2.58889 -0.6875 0.15)
(2.58889 -0.55 0.15)
(2.63194 -0.55 0.15)
(2.63194 -0.504167 0.15)
(2.58889 -0.504167 0.15)
(2.58889 -0.366667 0.15)
(2.63194 -0.366667 0.15)
(2.63194 -0.320833 0.15)
(2.58889 -0.320833 0.15)
(2.58889 -0.183333 0.15)
(2.63194 -0.183333 0.15)
(2.63194 -0.1375 0.15)
(2.58889 -0.1375 0.15)
(2.58889 -1.85037e-17 0.15)
(2.63194 -9.25186e-18 0.15)
(2.63194 0.0458333 0.15)
(2.58889 0.0458333 0.15)
(2.58889 0.183333 0.15)
(2.63194 0.183333 0.15)
(2.63194 0.229167 0.15)
(2.58889 0.229167 0.15)
(2.58889 0.366667 0.15)
(2.63194 0.366667 0.15)
(2.63194 0.4125 0.15)
(2.58889 0.4125 0.15)
(2.58889 0.55 0.15)
(2.63194 0.55 0.15)
(2.63194 0.595833 0.15)
(2.58889 0.595833 0.15)
(2.58889 0.733333 0.15)
(2.63194 0.733333 0.15)
(2.63194 0.779167 0.15)
(2.58889 0.779167 0.15)
(2.58889 0.916667 0.15)
(2.63194 0.916667 0.15)
(2.63194 0.9625 0.15)
(2.58889 0.9625 0.15)
(2.58889 1.1 0.15)
(2.675 1.1 0.15)
(2.675 1.19167 0.15)
(2.58889 1.19167 0.15)
(2.58889 1.28333 0.15)
(2.675 1.28333 0.15)
(2.675 1.375 0.15)
(2.58889 1.375 0.15)
(2.675 1.46667 0.15)
(2.76111 1.46667 0.15)
(2.76111 1.65 0.15)
(2.76111 1.83333 0.15)
(2.76111 2.01667 0.15)
(2.76111 2.2 0.15)
(2.93333 -2.2 0.15)
(2.93333 -2.01667 0.15)
(2.93333 -1.83333 0.15)
(2.93333 -1.65 0.15)
(2.93333 -1.46667 0.15)
(2.84722 -1.46667 0.15)
(2.84722 -1.375 0.15)
(2.76111 -1.375 0.15)
(2.76111 -1.28333 0.15)
(2.84722 -1.28333 0.15)
(2.84722 -1.19167 0.15)
(2.76111 -1.19167 0.15)
(2.76111 -1.1 0.15)
(2.84722 -1.1 0.15)
(2.84722 -1.00833 0.15)
(2.80417 -1.00833 0.15)
(2.76111 -1.00833 0.15)
(2.76111 -0.916667 0.15)
(2.80417 -0.916667 0.15)
(2.80417 -0.870833 0.15)
(2.76111 -0.870833 0.15)
(2.76111 -0.733333 0.15)
(2.80417 -0.733333 0.15)
(2.80417 -0.6875 0.15)
(2.76111 -0.6875 0.15)
(2.76111 -0.55 0.15)
(2.80417 -0.55 0.15)
(2.80417 -0.504167 0.15)
(2.76111 -0.504167 0.15)
(2.76111 -0.366667 0.15)
(2.80417 -0.366667 0.15)
(2.80417 -0.320833 0.15)
(2.76111 -0.320833 0.15)
(2.76111 -0.183333 0.15)
(2.80417 -0.183333 0.15)
(2.80417 -0.1375 0.15)
(2.76111 -0.1375 0.15)
(2.76111 1.85037e-17 0.15)
(2.80417 1.85037e-17 0.15)
(2.80417 0.0458333 0.15)
(2.76111 0.0458333 0.15)
(2.76111 0.183333 0.15)
(2.80417 0.183333 0.15)
(2.80417 0.229167 0.15)
(2.76111 0.229167 0.15)
(2.76111 0.366667 0.15)
(2.80417 0.366667 0.15)
(2.80417 0.4125 0.15)
(2.76111 0.4125 0.15)
(2.76111 0.55 0.15)
(2.80417 0.55 0.15)
(2.80417 0.595833 0.15)
(2.76111 0.595833 0.15)
(2.76111 0.733333 0.15)
(2.80417 0.733333 0.15)
(2.80417 0.779167 0.15)
(2.76111 0.779167 0.15)
(2.76111 0.916667 0.15)
(2.80417 0.916667 0.15)
(2.80417 0.9625 0.15)
(2.76111 0.9625 0.15)
(2.76111 1.1 0.15)
(2.84722 1.1 0.15)
(2.84722 1.19167 0.15)
(2.76111 1.19167 0.15)
(2.76111 1.28333 0.15)
(2.84722 1.28333 0.15)
(2.84722 1.375 0.15)
(2.76111 1.375 0.15)
(2.84722 1.46667 0.15)
(2.93333 1.46667 0.15)
(2.93333 1.65 0.15)
(2.93333 1.83333 0.15)
(2.93333 2.01667 0.15)
(2.93333 2.2 0.15)
(3.10556 -2.2 0.15)
(3.10556 -2.01667 0.15)
(3.10556 -1.83333 0.15)
(3.10556 -1.65 0.15)
(3.10556 -1.46667 0.15)
(3.01944 -1.46667 0.15)
(3.01944 -1.375 0.15)
(2.93333 -1.375 0.15)
(2.93333 -1.28333 0.15)
(3.01944 -1.28333 0.15)
(3.01944 -1.19167 0.15)
(2.93333 -1.19167 0.15)
(2.93333 -1.1 0.15)
(3.01944 -1.1 0.15)
(3.01944 -1.00833 0.15)
(2.97639 -1.00833 0.15)
(2.93333 -1.00833 0.15)
(2.93333 -0.916667 0.15)
(2.97639 -0.916667 0.15)
(2.97639 -0.870833 0.15)
(2.93333 -0.870833 0.15)
(2.93333 -0.733333 0.15)
(2.97639 -0.733333 0.15)
(2.97639 -0.6875 0.15)
(2.93333 -0.6875 0.15)
(2.93333 -0.55 0.15)
(2.97639 -0.55 0.15)
(2.97639 -0.504167 0.15)
(2.93333 -0.504167 0.15)
(2.93333 -0.366667 0.15)
(2.97639 -0.366667 0.15)
(2.97639 -0.320833 0.15)
(2.93333 -0.320833 0.15)
(2.93333 -0.183333 0.15)
(2.97639 -0.183333 0.15)
(2.97639 -0.1375 0.15)
(2.93333 -0.1375 0.15)
(2.93333 1.85037e-17 0.15)
(2.97639 1.38778e-17 0.15)
(2.97639 0.0458333 0.15)
(2.93333 0.0458333 0.15)
(2.93333 0.183333 0.15)
(2.97639 0.183333 0.15)
(2.97639 0.229167 0.15)
(2.93333 0.229167 0.15)
(2.93333 0.366667 0.15)
(2.97639 0.366667 0.15)
(2.97639 0.4125 0.15)
(2.93333 0.4125 0.15)
(2.93333 0.55 0.15)
(2.97639 0.55 0.15)
(2.97639 0.595833 0.15)
(2.93333 0.595833 0.15)
(2.93333 0.733333 0.15)
(2.97639 0.733333 0.15)
(2.97639 0.779167 0.15)
(2.93333 0.779167 0.15)
(2.93333 0.916667 0.15)
(2.97639 0.916667 0.15)
(2.97639 0.9625 0.15)
(2.93333 0.9625 0.15)
(2.93333 1.1 0.15)
(3.01944 1.1 0.15)
(3.01944 1.19167 0.15)
(2.93333 1.19167 0.15)
(2.93333 1.28333 0.15)
(3.01944 1.28333 0.15)
(3.01944 1.375 0.15)
(2.93333 1.375 0.15)
(3.01944 1.46667 0.15)
(3.10556 1.46667 0.15)
(3.10556 1.65 0.15)
(3.10556 1.83333 0.15)
(3.10556 2.01667 0.15)
(3.10556 2.2 0.15)
(3.27778 -2.2 0.15)
(3.27778 -2.01667 0.15)
(3.27778 -1.83333 0.15)
(3.27778 -1.65 0.15)
(3.27778 -1.46667 0.15)
(3.19167 -1.46667 0.15)
(3.19167 -1.375 0.15)
(3.10556 -1.375 0.15)
(3.10556 -1.28333 0.15)
(3.19167 -1.28333 0.15)
(3.19167 -1.19167 0.15)
(3.10556 -1.19167 0.15)
(3.10556 -1.1 0.15)
(3.19167 -1.1 0.15)
(3.19167 -1.00833 0.15)
(3.14861 -1.00833 0.15)
(3.10556 -1.00833 0.15)
(3.10556 -0.916667 0.15)
(3.14861 -0.916667 0.15)
(3.14861 -0.870833 0.15)
(3.10556 -0.870833 0.15)
(3.10556 -0.733333 0.15)
(3.14861 -0.733333 0.15)
(3.14861 -0.6875 0.15)
(3.10556 -0.6875 0.15)
(3.10556 -0.55 0.15)
(3.14861 -0.55 0.15)
(3.14861 -0.504167 0.15)
(3.10556 -0.504167 0.15)
(3.10556 -0.366667 0.15)
(3.14861 -0.366667 0.15)
(3.14861 -0.320833 0.15)
(3.10556 -0.320833 0.15)
(3.10556 -0.183333 0.15)
(3.14861 -0.183333 0.15)
(3.14861 -0.1375 0.15)
(3.10556 -0.1375 0.15)
(3.10556 0 0.15)
(3.14861 0 0.15)
(3.14861 0.0458333 0.15)
(3.10556 0.0458333 0.15)
(3.10556 0.183333 0.15)
(3.14861 0.183333 0.15)
(3.14861 0.229167 0.15)
(3.10556 0.229167 0.15)
(3.10556 0.366667 0.15)
(3.14861 0.366667 0.15)
(3.14861 0.4125 0.15)
(3.10556 0.4125 0.15)
(3.10556 0.55 0.15)
(3.14861 0.55 0.15)
(3.14861 0.595833 0.15)
(3.10556 0.595833 0.15)
(3.10556 0.733333 0.15)
(3.14861 0.733333 0.15)
(3.14861 0.779167 0.15)
(3.10556 0.779167 0.15)
(3.10556 0.916667 0.15)
(3.14861 0.916667 0.15)
(3.14861 0.9625 0.15)
(3.10556 0.9625 0.15)
(3.10556 1.1 0.15)
(3.19167 1.1 0.15)
(3.19167 1.19167 0.15)
(3.10556 1.19167 0.15)
(3.10556 1.28333 0.15)
(3.19167 1.28333 0.15)
(3.19167 1.375 0.15)
(3.10556 1.375 0.15)
(3.19167 1.46667 0.15)
(3.27778 1.46667 0.15)
(3.27778 1.65 0.15)
(3.27778 1.83333 0.15)
(3.27778 2.01667 0.15)
(3.27778 2.2 0.15)
(3.45 -2.2 0.15)
(3.45 -2.01667 0.15)
(3.45 -1.83333 0.15)
(3.45 -1.65 0.15)
(3.45 -1.46667 0.15)
(3.36389 -1.46667 0.15)
(3.36389 -1.375 0.15)
(3.27778 -1.375 0.15)
(3.27778 -1.28333 0.15)
(3.36389 -1.28333 0.15)
(3.36389 -1.19167 0.15)
(3.27778 -1.19167 0.15)
(3.27778 -1.1 0.15)
(3.36389 -1.1 0.15)
(3.36389 -1.00833 0.15)
(3.32083 -1.00833 0.15)
(3.27778 -1.00833 0.15)
(3.27778 -0.916667 0.15)
(3.32083 -0.916667 0.15)
(3.32083 -0.870833 0.15)
(3.27778 -0.870833 0.15)
(3.27778 -0.733333 0.15)
(3.32083 -0.733333 0.15)
(3.32083 -0.6875 0.15)
(3.27778 -0.6875 0.15)
(3.27778 -0.55 0.15)
(3.32083 -0.55 0.15)
(3.32083 -0.504167 0.15)
(3.27778 -0.504167 0.15)
(3.27778 -0.366667 0.15)
(3.32083 -0.366667 0.15)
(3.32083 -0.320833 0.15)
(3.27778 -0.320833 0.15)
(3.27778 -0.183333 0.15)
(3.32083 -0.183333 0.15)
(3.32083 -0.1375 0.15)
(3.27778 -0.1375 0.15)
(3.27778 0 0.15)
(3.32083 0 0.15)
(3.32083 0.0458333 0.15)
(3.27778 0.0458333 0.15)
(3.27778 0.183333 0.15)
(3.32083 0.183333 0.15)
(3.32083 0.229167 0.15)
(3.27778 0.229167 0.15)
(3.27778 0.366667 0.15)
(3.32083 0.366667 0.15)
(3.32083 0.4125 0.15)
(3.27778 0.4125 0.15)
(3.27778 0.55 0.15)
(3.32083 0.55 0.15)
(3.32083 0.595833 0.15)
(3.27778 0.595833 0.15)
(3.27778 0.733333 0.15)
(3.32083 0.733333 0.15)
(3.32083 0.779167 0.15)
(3.27778 0.779167 0.15)
(3.27778 0.916667 0.15)
(3.32083 0.916667 0.15)
(3.32083 0.9625 0.15)
(3.27778 0.9625 0.15)
(3.27778 1.1 0.15)
(3.36389 1.1 0.15)
(3.36389 1.19167 0.15)
(3.27778 1.19167 0.15)
(3.27778 1.28333 0.15)
(3.36389 1.28333 0.15)
(3.36389 1.375 0.15)
(3.27778 1.375 0.15)
(3.36389 1.46667 0.15)
(3.45 1.46667 0.15)
(3.45 1.65 0.15)
(3.45 1.83333 0.15)
(3.45 2.01667 0.15)
(3.45 2.2 0.15)
(3.62222 -2.2 0.15)
(3.62222 -2.01667 0.15)
(3.62222 -1.83333 0.15)
(3.62222 -1.65 0.15)
(3.62222 -1.46667 0.15)
(3.53611 -1.46667 0.15)
(3.53611 -1.375 0.15)
(3.45 -1.375 0.15)
(3.45 -1.28333 0.15)
(3.53611 -1.28333 0.15)
(3.53611 -1.19167 0.15)
(3.45 -1.19167 0.15)
(3.45 -1.1 0.15)
(3.53611 -1.1 0.15)
(3.53611 -1.00833 0.15)
(3.49306 -1.00833 0.15)
(3.45 -1.00833 0.15)
(3.45 -0.916667 0.15)
(3.49306 -0.916667 0.15)
(3.49306 -0.870833 0.15)
(3.45 -0.870833 0.15)
(3.45 -0.733333 0.15)
(3.49306 -0.733333 0.15)
(3.49306 -0.6875 0.15)
(3.45 -0.6875 0.15)
(3.45 -0.55 0.15)
(3.49306 -0.55 0.15)
(3.49306 -0.504167 0.15)
(3.45 -0.504167 0.15)
(3.45 -0.366667 0.15)
(3.49306 -0.366667 0.15)
(3.49306 -0.320833 0.15)
(3.45 -0.320833 0.15)
(3.45 -0.183333 0.15)
(3.49306 -0.183333 0.15)
(3.49306 -0.1375 0.15)
(3.45 -0.1375 0.15)
(3.45 0 0.15)
(3.49306 0 0.15)
(3.49306 0.0458333 0.15)
(3.45 0.0458333 0.15)
(3.45 0.183333 0.15)
(3.49306 0.183333 0.15)
(3.49306 0.229167 0.15)
(3.45 0.229167 0.15)
(3.45 0.366667 0.15)
(3.49306 0.366667 0.15)
(3.49306 0.4125 0.15)
(3.45 0.4125 0.15)
(3.45 0.55 0.15)
(3.49306 0.55 0.15)
(3.49306 0.595833 0.15)
(3.45 0.595833 0.15)
(3.45 0.733333 0.15)
(3.49306 0.733333 0.15)
(3.49306 0.779167 0.15)
(3.45 0.779167 0.15)
(3.45 0.916667 0.15)
(3.49306 0.916667 0.15)
(3.49306 0.9625 0.15)
(3.45 0.9625 0.15)
(3.45 1.1 0.15)
(3.53611 1.1 0.15)
(3.53611 1.19167 0.15)
(3.45 1.19167 0.15)
(3.45 1.28333 0.15)
(3.53611 1.28333 0.15)
(3.53611 1.375 0.15)
(3.45 1.375 0.15)
(3.53611 1.46667 0.15)
(3.62222 1.46667 0.15)
(3.62222 1.65 0.15)
(3.62222 1.83333 0.15)
(3.62222 2.01667 0.15)
(3.62222 2.2 0.15)
(3.79444 -2.2 0.15)
(3.79444 -2.01667 0.15)
(3.79444 -1.83333 0.15)
(3.79444 -1.65 0.15)
(3.79444 -1.46667 0.15)
(3.70833 -1.46667 0.15)
(3.70833 -1.375 0.15)
(3.62222 -1.375 0.15)
(3.62222 -1.28333 0.15)
(3.70833 -1.28333 0.15)
(3.70833 -1.19167 0.15)
(3.62222 -1.19167 0.15)
(3.62222 -1.1 0.15)
(3.70833 -1.1 0.15)
(3.70833 -1.00833 0.15)
(3.66528 -1.00833 0.15)
(3.62222 -1.00833 0.15)
(3.62222 -0.916667 0.15)
(3.66528 -0.916667 0.15)
(3.66528 -0.870833 0.15)
(3.62222 -0.870833 0.15)
(3.62222 -0.733333 0.15)
(3.66528 -0.733333 0.15)
(3.66528 -0.6875 0.15)
(3.62222 -0.6875 0.15)
(3.62222 -0.55 0.15)
(3.66528 -0.55 0.15)
(3.66528 -0.504167 0.15)
(3.62222 -0.504167 0.15)
(3.62222 -0.366667 0.15)
(3.66528 -0.366667 0.15)
(3.66528 -0.320833 0.15)
(3.62222 -0.320833 0.15)
(3.62222 -0.183333 0.15)
(3.66528 -0.183333 0.15)
(3.66528 -0.1375 0.15)
(3.62222 -0.1375 0.15)
(3.62222 0 0.15)
(3.66528 -2.31296e-18 0.15)
(3.66528 0.0458333 0.15)
(3.62222 0.0458333 0.15)
(3.62222 0.183333 0.15)
(3.66528 0.183333 0.15)
(3.66528 0.229167 0.15)
(3.62222 0.229167 0.15)
(3.62222 0.366667 0.15)
(3.66528 0.366667 0.15)
(3.66528 0.4125 0.15)
(3.62222 0.4125 0.15)
(3.62222 0.55 0.15)
(3.66528 0.55 0.15)
(3.66528 0.595833 0.15)
(3.62222 0.595833 0.15)
(3.62222 0.733333 0.15)
(3.66528 0.733333 0.15)
(3.66528 0.779167 0.15)
(3.62222 0.779167 0.15)
(3.62222 0.916667 0.15)
(3.66528 0.916667 0.15)
(3.66528 0.9625 0.15)
(3.62222 0.9625 0.15)
(3.62222 1.1 0.15)
(3.70833 1.1 0.15)
(3.70833 1.19167 0.15)
(3.62222 1.19167 0.15)
(3.62222 1.28333 0.15)
(3.70833 1.28333 0.15)
(3.70833 1.375 0.15)
(3.62222 1.375 0.15)
(3.70833 1.46667 0.15)
(3.79444 1.46667 0.15)
(3.79444 1.65 0.15)
(3.79444 1.83333 0.15)
(3.79444 2.01667 0.15)
(3.79444 2.2 0.15)
(3.96667 -2.2 0.15)
(3.96667 -2.01667 0.15)
(3.96667 -1.83333 0.15)
(3.96667 -1.65 0.15)
(3.96667 -1.46667 0.15)
(3.88056 -1.46667 0.15)
(3.88056 -1.375 0.15)
(3.79444 -1.375 0.15)
(3.79444 -1.28333 0.15)
(3.88056 -1.28333 0.15)
(3.88056 -1.19167 0.15)
(3.79444 -1.19167 0.15)
(3.79444 -1.1 0.15)
(3.88056 -1.1 0.15)
(3.88056 -1.00833 0.15)
(3.8375 -1.00833 0.15)
(3.79444 -1.00833 0.15)
(3.79444 -0.916667 0.15)
(3.8375 -0.916667 0.15)
(3.8375 -0.870833 0.15)
(3.79444 -0.870833 0.15)
(3.79444 -0.733333 0.15)
(3.8375 -0.733333 0.15)
(3.8375 -0.6875 0.15)
(3.79444 -0.6875 0.15)
(3.79444 -0.55 0.15)
(3.8375 -0.55 0.15)
(3.8375 -0.504167 0.15)
(3.79444 -0.504167 0.15)
(3.79444 -0.366667 0.15)
(3.8375 -0.366667 0.15)
(3.8375 -0.320833 0.15)
(3.79444 -0.320833 0.15)
(3.79444 -0.183333 0.15)
(3.8375 -0.183333 0.15)
(3.8375 -0.1375 0.15)
(3.79444 -0.1375 0.15)
(3.79444 -9.25186e-18 0.15)
(3.8375 -9.25186e-18 0.15)
(3.8375 0.0458333 0.15)
(3.79444 0.0458333 0.15)
(3.79444 0.183333 0.15)
(3.8375 0.183333 0.15)
(3.8375 0.229167 0.15)
(3.79444 0.229167 0.15)
(3.79444 0.366667 0.15)
(3.8375 0.366667 0.15)
(3.8375 0.4125 0.15)
(3.79444 0.4125 0.15)
(3.79444 0.55 0.15)
(3.8375 0.55 0.15)
(3.8375 0.595833 0.15)
(3.79444 0.595833 0.15)
(3.79444 0.733333 0.15)
(3.8375 0.733333 0.15)
(3.8375 0.779167 0.15)
(3.79444 0.779167 0.15)
(3.79444 0.916667 0.15)
(3.8375 0.916667 0.15)
(3.8375 0.9625 0.15)
(3.79444 0.9625 0.15)
(3.79444 1.1 0.15)
(3.88056 1.1 0.15)
(3.88056 1.19167 0.15)
(3.79444 1.19167 0.15)
(3.79444 1.28333 0.15)
(3.88056 1.28333 0.15)
(3.88056 1.375 0.15)
(3.79444 1.375 0.15)
(3.88056 1.46667 0.15)
(3.96667 1.46667 0.15)
(3.96667 1.65 0.15)
(3.96667 1.83333 0.15)
(3.96667 2.01667 0.15)
(3.96667 2.2 0.15)
(4.13889 -2.2 0.15)
(4.13889 -2.01667 0.15)
(4.13889 -1.83333 0.15)
(4.13889 -1.65 0.15)
(4.13889 -1.46667 0.15)
(4.05278 -1.46667 0.15)
(4.05278 -1.375 0.15)
(3.96667 -1.375 0.15)
(3.96667 -1.28333 0.15)
(4.05278 -1.28333 0.15)
(4.05278 -1.19167 0.15)
(3.96667 -1.19167 0.15)
(3.96667 -1.1 0.15)
(4.05278 -1.1 0.15)
(4.05278 -1.00833 0.15)
(4.00972 -1.00833 0.15)
(3.96667 -1.00833 0.15)
(3.96667 -0.916667 0.15)
(4.00972 -0.916667 0.15)
(4.00972 -0.870833 0.15)
(3.96667 -0.870833 0.15)
(3.96667 -0.733333 0.15)
(4.00972 -0.733333 0.15)
(4.00972 -0.6875 0.15)
(3.96667 -0.6875 0.15)
(3.96667 -0.55 0.15)
(4.00972 -0.55 0.15)
(4.00972 -0.504167 0.15)
(3.96667 -0.504167 0.15)
(3.96667 -0.366667 0.15)
(4.00972 -0.366667 0.15)
(4.00972 -0.320833 0.15)
(3.96667 -0.320833 0.15)
(3.96667 -0.183333 0.15)
(4.00972 -0.183333 0.15)
(4.00972 -0.1375 0.15)
(3.96667 -0.1375 0.15)
(3.96667 -9.25186e-18 0.15)
(4.00972 -1.15648e-17 0.15)
(4.00972 0.0458333 0.15)
(3.96667 0.0458333 0.15)
(3.96667 0.183333 0.15)
(4.00972 0.183333 0.15)
(4.00972 0.229167 0.15)
(3.96667 0.229167 0.15)
(3.96667 0.366667 0.15)
(4.00972 0.366667 0.15)
(4.00972 0.4125 0.15)
(3.96667 0.4125 0.15)
(3.96667 0.55 0.15)
(4.00972 0.55 0.15)
(4.00972 0.595833 0.15)
(3.96667 0.595833 0.15)
(3.96667 0.733333 0.15)
(4.00972 0.733333 0.15)
(4.00972 0.779167 0.15)
(3.96667 0.779167 0.15)
(3.96667 0.916667 0.15)
(4.00972 0.916667 0.15)
(4.00972 0.9625 0.15)
(3.96667 0.9625 0.15)
(3.96667 1.1 0.15)
(4.05278 1.1 0.15)
(4.05278 1.19167 0.15)
(3.96667 1.19167 0.15)
(3.96667 1.28333 0.15)
(4.05278 1.28333 0.15)
(4.05278 1.375 0.15)
(3.96667 1.375 0.15)
(4.05278 1.46667 0.15)
(4.13889 1.46667 0.15)
(4.13889 1.65 0.15)
(4.13889 1.83333 0.15)
(4.13889 2.01667 0.15)
(4.13889 2.2 0.15)
(4.31111 -2.2 0.15)
(4.31111 -2.01667 0.15)
(4.31111 -1.83333 0.15)
(4.31111 -1.65 0.15)
(4.31111 -1.46667 0.15)
(4.225 -1.46667 0.15)
(4.225 -1.375 0.15)
(4.13889 -1.375 0.15)
(4.13889 -1.28333 0.15)
(4.225 -1.28333 0.15)
(4.225 -1.19167 0.15)
(4.13889 -1.19167 0.15)
(4.13889 -1.1 0.15)
(4.225 -1.1 0.15)
(4.225 -1.00833 0.15)
(4.18194 -1.00833 0.15)
(4.13889 -1.00833 0.15)
(4.13889 -0.916667 0.15)
(4.18194 -0.916667 0.15)
(4.18194 -0.870833 0.15)
(4.13889 -0.870833 0.15)
(4.13889 -0.733333 0.15)
(4.18194 -0.733333 0.15)
(4.18194 -0.6875 0.15)
(4.13889 -0.6875 0.15)
(4.13889 -0.55 0.15)
(4.18194 -0.55 0.15)
(4.18194 -0.504167 0.15)
(4.13889 -0.504167 0.15)
(4.13889 -0.366667 0.15)
(4.18194 -0.366667 0.15)
(4.18194 -0.320833 0.15)
(4.13889 -0.320833 0.15)
(4.13889 -0.183333 0.15)
(4.18194 -0.183333 0.15)
(4.18194 -0.1375 0.15)
(4.13889 -0.1375 0.15)
(4.13889 -1.85037e-17 0.15)
(4.18194 -9.25186e-18 0.15)
(4.18194 0.0458333 0.15)
(4.13889 0.0458333 0.15)
(4.13889 0.183333 0.15)
(4.18194 0.183333 0.15)
(4.18194 0.229167 0.15)
(4.13889 0.229167 0.15)
(4.13889 0.366667 0.15)
(4.18194 0.366667 0.15)
(4.18194 0.4125 0.15)
(4.13889 0.4125 0.15)
(4.13889 0.55 0.15)
(4.18194 0.55 0.15)
(4.18194 0.595833 0.15)
(4.13889 0.595833 0.15)
(4.13889 0.733333 0.15)
(4.18194 0.733333 0.15)
(4.18194 0.779167 0.15)
(4.13889 0.779167 0.15)
(4.13889 0.916667 0.15)
(4.18194 0.916667 0.15)
(4.18194 0.9625 0.15)
(4.13889 0.9625 0.15)
(4.13889 1.1 0.15)
(4.225 1.1 0.15)
(4.225 1.19167 0.15)
(4.13889 1.19167 0.15)
(4.13889 1.28333 0.15)
(4.225 1.28333 0.15)
(4.225 1.375 0.15)
(4.13889 1.375 0.15)
(4.225 1.46667 0.15)
(4.31111 1.46667 0.15)
(4.31111 1.65 0.15)
(4.31111 1.83333 0.15)
(4.31111 2.01667 0.15)
(4.31111 2.2 0.15)
(4.48333 -2.2 0.15)
(4.48333 -2.01667 0.15)
(4.48333 -1.83333 0.15)
(4.48333 -1.65 0.15)
(4.48333 -1.46667 0.15)
(4.39722 -1.46667 0.15)
(4.39722 -1.375 0.15)
(4.31111 -1.375 0.15)
(4.31111 -1.28333 0.15)
(4.39722 -1.28333 0.15)
(4.39722 -1.19167 0.15)
(4.31111 -1.19167 0.15)
(4.31111 -1.1 0.15)
(4.39722 -1.1 0.15)
(4.39722 -1.00833 0.15)
(4.35417 -1.00833 0.15)
(4.31111 -1.00833 0.15)
(4.31111 -0.916667 0.15)
(4.35417 -0.916667 0.15)
(4.35417 -0.870833 0.15)
(4.31111 -0.870833 0.15)
(4.31111 -0.733333 0.15)
(4.35417 -0.733333 0.15)
(4.35417 -0.6875 0.15)
(4.31111 -0.6875 0.15)
(4.31111 -0.55 0.15)
(4.35417 -0.55 0.15)
(4.35417 -0.504167 0.15)
(4.31111 -0.504167 0.15)
(4.31111 -0.366667 0.15)
(4.35417 -0.366667 0.15)
(4.35417 -0.320833 0.15)
(4.31111 -0.320833 0.15)
(4.31111 -0.183333 0.15)
(4.35417 -0.183333 0.15)
(4.35417 -0.1375 0.15)
(4.31111 -0.1375 0.15)
(4.31111 1.85037e-17 0.15)
(4.35417 8.09538e-18 0.15)
(4.35417 0.0458333 0.15)
(4.31111 0.0458333 0.15)
(4.31111 0.183333 0.15)
(4.35417 0.183333 0.15)
(4.35417 0.229167 0.15)
(4.31111 0.229167 0.15)
(4.31111 0.366667 0.15)
(4.35417 0.366667 0.15)
(4.35417 0.4125 0.15)
(4.31111 0.4125 0.15)
(4.31111 0.55 0.15)
(4.35417 0.55 0.15)
(4.35417 0.595833 0.15)
(4.31111 0.595833 0.15)
(4.31111 0.733333 0.15)
(4.35417 0.733333 0.15)
(4.35417 0.779167 0.15)
(4.31111 0.779167 0.15)
(4.31111 0.916667 0.15)
(4.35417 0.916667 0.15)
(4.35417 0.9625 0.15)
(4.31111 0.9625 0.15)
(4.31111 1.1 0.15)
(4.39722 1.1 0.15)
(4.39722 1.19167 0.15)
(4.31111 1.19167 0.15)
(4.31111 1.28333 0.15)
(4.39722 1.28333 0.15)
(4.39722 1.375 0.15)
(4.31111 1.375 0.15)
(4.39722 1.46667 0.15)
(4.48333 1.46667 0.15)
(4.48333 1.65 0.15)
(4.48333 1.83333 0.15)
(4.48333 2.01667 0.15)
(4.48333 2.2 0.15)
(4.65556 -2.2 0.15)
(4.65556 -2.01667 0.15)
(4.65556 -1.83333 0.15)
(4.65556 -1.65 0.15)
(4.65556 -1.46667 0.15)
(4.56944 -1.46667 0.15)
(4.56944 -1.375 0.15)
(4.48333 -1.375 0.15)
(4.48333 -1.28333 0.15)
(4.56944 -1.28333 0.15)
(4.56944 -1.19167 0.15)
(4.48333 -1.19167 0.15)
(4.48333 -1.1 0.15)
(4.56944 -1.1 0.15)
(4.56944 -1.00833 0.15)
(4.52639 -1.00833 0.15)
(4.48333 -1.00833 0.15)
(4.48333 -0.916667 0.15)
(4.52639 -0.916667 0.15)
(4.52639 -0.870833 0.15)
(4.48333 -0.870833 0.15)
(4.48333 -0.733333 0.15)
(4.52639 -0.733333 0.15)
(4.52639 -0.6875 0.15)
(4.48333 -0.6875 0.15)
(4.48333 -0.55 0.15)
(4.52639 -0.55 0.15)
(4.52639 -0.504167 0.15)
(4.48333 -0.504167 0.15)
(4.48333 -0.366667 0.15)
(4.52639 -0.366667 0.15)
(4.52639 -0.320833 0.15)
(4.48333 -0.320833 0.15)
(4.48333 -0.183333 0.15)
(4.52639 -0.183333 0.15)
(4.52639 -0.1375 0.15)
(4.48333 -0.1375 0.15)
(4.48333 -2.31296e-17 0.15)
(4.52639 -1.50343e-17 0.15)
(4.52639 0.0458333 0.15)
(4.48333 0.0458333 0.15)
(4.48333 0.183333 0.15)
(4.52639 0.183333 0.15)
(4.52639 0.229167 0.15)
(4.48333 0.229167 0.15)
(4.48333 0.366667 0.15)
(4.52639 0.366667 0.15)
(4.52639 0.4125 0.15)
(4.48333 0.4125 0.15)
(4.48333 0.55 0.15)
(4.52639 0.55 0.15)
(4.52639 0.595833 0.15)
(4.48333 0.595833 0.15)
(4.48333 0.733333 0.15)
(4.52639 0.733333 0.15)
(4.52639 0.779167 0.15)
(4.48333 0.779167 0.15)
(4.48333 0.916667 0.15)
(4.52639 0.916667 0.15)
(4.52639 0.9625 0.15)
(4.48333 0.9625 0.15)
(4.48333 1.1 0.15)
(4.56944 1.1 0.15)
(4.56944 1.19167 0.15)
(4.48333 1.19167 0.15)
(4.48333 1.28333 0.15)
(4.56944 1.28333 0.15)
(4.56944 1.375 0.15)
(4.48333 1.375 0.15)
(4.56944 1.46667 0.15)
(4.65556 1.46667 0.15)
(4.65556 1.65 0.15)
(4.65556 1.83333 0.15)
(4.65556 2.01667 0.15)
(4.65556 2.2 0.15)
(4.82778 -2.2 0.15)
(4.82778 -2.01667 0.15)
(4.82778 -1.83333 0.15)
(4.82778 -1.65 0.15)
(4.82778 -1.46667 0.15)
(4.74167 -1.46667 0.15)
(4.74167 -1.375 0.15)
(4.65556 -1.375 0.15)
(4.65556 -1.28333 0.15)
(4.74167 -1.28333 0.15)
(4.74167 -1.19167 0.15)
(4.65556 -1.19167 0.15)
(4.65556 -1.1 0.15)
(4.74167 -1.1 0.15)
(4.74167 -1.00833 0.15)
(4.69861 -1.00833 0.15)
(4.65556 -1.00833 0.15)
(4.65556 -0.916667 0.15)
(4.69861 -0.916667 0.15)
(4.69861 -0.870833 0.15)
(4.65556 -0.870833 0.15)
(4.65556 -0.733333 0.15)
(4.69861 -0.733333 0.15)
(4.69861 -0.6875 0.15)
(4.65556 -0.6875 0.15)
(4.65556 -0.55 0.15)
(4.69861 -0.55 0.15)
(4.69861 -0.504167 0.15)
(4.65556 -0.504167 0.15)
(4.65556 -0.366667 0.15)
(4.69861 -0.366667 0.15)
(4.69861 -0.320833 0.15)
(4.65556 -0.320833 0.15)
(4.65556 -0.183333 0.15)
(4.69861 -0.183333 0.15)
(4.69861 -0.1375 0.15)
(4.65556 -0.1375 0.15)
(4.65556 9.25186e-18 0.15)
(4.69861 -1.15648e-18 0.15)
(4.69861 0.0458333 0.15)
(4.65556 0.0458333 0.15)
(4.65556 0.183333 0.15)
(4.69861 0.183333 0.15)
(4.69861 0.229167 0.15)
(4.65556 0.229167 0.15)
(4.65556 0.366667 0.15)
(4.69861 0.366667 0.15)
(4.69861 0.4125 0.15)
(4.65556 0.4125 0.15)
(4.65556 0.55 0.15)
(4.69861 0.55 0.15)
(4.69861 0.595833 0.15)
(4.65556 0.595833 0.15)
(4.65556 0.733333 0.15)
(4.69861 0.733333 0.15)
(4.69861 0.779167 0.15)
(4.65556 0.779167 0.15)
(4.65556 0.916667 0.15)
(4.69861 0.916667 0.15)
(4.69861 0.9625 0.15)
(4.65556 0.9625 0.15)
(4.65556 1.1 0.15)
(4.74167 1.1 0.15)
(4.74167 1.19167 0.15)
(4.65556 1.19167 0.15)
(4.65556 1.28333 0.15)
(4.74167 1.28333 0.15)
(4.74167 1.375 0.15)
(4.65556 1.375 0.15)
(4.74167 1.46667 0.15)
(4.82778 1.46667 0.15)
(4.82778 1.65 0.15)
(4.82778 1.83333 0.15)
(4.82778 2.01667 0.15)
(4.82778 2.2 0.15)
(5 -2.2 0.15)
(5 -2.01667 0.15)
(5 -1.83333 0.15)
(5 -1.65 0.15)
(5 -1.46667 0.15)
(4.91389 -1.46667 0.15)
(4.91389 -1.375 0.15)
(4.82778 -1.375 0.15)
(4.82778 -1.28333 0.15)
(4.91389 -1.28333 0.15)
(4.91389 -1.19167 0.15)
(4.82778 -1.19167 0.15)
(4.82778 -1.1 0.15)
(4.91389 -1.1 0.15)
(4.91389 -1.00833 0.15)
(4.87083 -1.00833 0.15)
(4.82778 -1.00833 0.15)
(4.82778 -0.916667 0.15)
(4.87083 -0.916667 0.15)
(4.87083 -0.870833 0.15)
(4.82778 -0.870833 0.15)
(4.82778 -0.733333 0.15)
(4.87083 -0.733333 0.15)
(4.87083 -0.6875 0.15)
(4.82778 -0.6875 0.15)
(4.82778 -0.55 0.15)
(4.87083 -0.55 0.15)
(4.87083 -0.504167 0.15)
(4.82778 -0.504167 0.15)
(4.82778 -0.366667 0.15)
(4.87083 -0.366667 0.15)
(4.87083 -0.320833 0.15)
(4.82778 -0.320833 0.15)
(4.82778 -0.183333 0.15)
(4.87083 -0.183333 0.15)
(4.87083 -0.1375 0.15)
(4.82778 -0.1375 0.15)
(4.82778 -3.23815e-17 0.15)
(4.87083 -2.42861e-17 0.15)
(4.87083 0.0458333 0.15)
(4.82778 0.0458333 0.15)
(4.82778 0.183333 0.15)
(4.87083 0.183333 0.15)
(4.87083 0.229167 0.15)
(4.82778 0.229167 0.15)
(4.82778 0.366667 0.15)
(4.87083 0.366667 0.15)
(4.87083 0.4125 0.15)
(4.82778 0.4125 0.15)
(4.82778 0.55 0.15)
(4.87083 0.55 0.15)
(4.87083 0.595833 0.15)
(4.82778 0.595833 0.15)
(4.82778 0.733333 0.15)
(4.87083 0.733333 0.15)
(4.87083 0.779167 0.15)
(4.82778 0.779167 0.15)
(4.82778 0.916667 0.15)
(4.87083 0.916667 0.15)
(4.87083 0.9625 0.15)
(4.82778 0.9625 0.15)
(4.82778 1.1 0.15)
(4.91389 1.1 0.15)
(4.91389 1.19167 0.15)
(4.82778 1.19167 0.15)
(4.82778 1.28333 0.15)
(4.91389 1.28333 0.15)
(4.91389 1.375 0.15)
(4.82778 1.375 0.15)
(4.91389 1.46667 0.15)
(5 1.46667 0.15)
(5 1.65 0.15)
(5 1.83333 0.15)
(5 2.01667 0.15)
(5 2.2 0.15)
(0.139938461 -0.1361664619 0.15)
(0.1378469384 -0.1588171053 0.15)
(0.1727878738 0.2216941858 0.15)
(0.1706234068 0.1990583448 0.15)
(0.1814054689 0.1980619837 0.15)
(0.1922249272 0.1970681788 0.15)
(0.01852202855 0.2125338485 0.15)
(0.04036909004 0.2106926352 0.15)
(0.322379146 -0.1529500074 0.15)
(0.3116680369 -0.1519682639 0.15)
(0.3095712277 -0.1745892921 0.15)
(0.3455843524 0.2055172137 0.15)
(0.3435029615 0.1829108236 0.15)
(0.3542903103 0.1818848475 0.15)
(0.3650743947 0.1808561614 0.15)
(0.2030531622 0.1960715509 0.15)
(0.2138841996 0.1950726545 0.15)
(0.4938428431 -0.1686407713 0.15)
(0.4831252977 -0.1676634521 0.15)
(0.4810377887 -0.1902491886 0.15)
(0.5176800479 0.1889312342 0.15)
(0.515639964 0.1663370803 0.15)
(0.5263776704 0.1652956242 0.15)
(0.5371069491 0.1642499286 0.15)
(0.3758592902 0.1798253914 0.15)
(0.3866163977 0.178798204 0.15)
(0.665303871 -0.1842087635 0.15)
(0.6545904728 -0.1832408677 0.15)
(0.652513003 -0.2057833467 0.15)
(0.6893093658 0.1719406104 0.15)
(0.6872845155 0.1493591032 0.15)
(0.7087110251 0.1471712602 0.15)
(0.5586154363 0.1621338188 0.15)
(0.8357420748 -0.2108656855 0.15)
(0.8347066966 -0.2221332193 0.15)
(0.8607638737 -0.02723409779 0.15)
(0.8603046298 -0.03278998105 0.15)
(0.8656439853 -0.03336885261 0.15)
(0.8563468628 -0.01556683601 0.15)
(0.8554269358 -0.02663999444 0.15)
(0.8604573196 0.1541781566 0.15)
(0.8584444385 0.1316065861 0.15)
(0.8797860141 0.1293151467 0.15)
(0.7301377091 0.1450285943 0.15)
(1.008266914 -0.2203800689 0.15)
(1.007208368 -0.2317890672 0.15)
(1.024145565 -0.04924020071 0.15)
(1.023086962 -0.0606498103 0.15)
(1.033810921 -0.06164459676 0.15)
(0.8709767417 -0.03396472723 0.15)
(1.015548747 -0.02542735946 0.15)
(1.014905019 -0.03604569948 0.15)
(1.014421799 -0.04677421916 0.15)
(1.009479337 0.1374622815 0.15)
(1.00744571 0.1148835973 0.15)
(1.005384583 0.09217088041 0.15)
(1.026620407 0.08968136372 0.15)
(1.047984689 0.087331577 0.15)
(0.9011005308 0.1269810246 0.15)
(-0.03361417974 -0.1195979574 0.15)
(-0.03563222092 -0.1423106547 0.15)
(-0.1752976557 0.0382779365 0.15)
(-0.1540191611 0.03623749824 0.15)
(-0.0009770243184 0.2371093674 0.15)
(-0.003304979666 0.2143621539 0.15)
(-0.1565846396 0.2252022424 0.15)
(-0.1348351783 0.2237999229 0.15)
(0.09905811044 0.1369752927 0.15)
(0.0935931454 0.1374527148 0.15)
(0.09305972712 0.1317392603 0.15)
(0.09852693513 0.1312459631 0.15)
(0.01139808231 0.1443012882 0.15)
(0.01017873557 0.1329101216 0.15)
(0.02125717672 0.1320793879 0.15)
(0.02244483361 0.1434576269 0.15)
(0.1749214015 0.2443429404 0.15)
(0.1682718854 0.4050582838 0.15)
(0.1639793896 0.3596840889 0.15)
(0.2071088291 0.3556573582 0.15)
(0.03429419742 0.3715648549 0.15)
(0.07750490995 0.3676360345 0.15)
(0.2755499749 -0.3086345034 0.15)
(0.27144778 -0.3541072214 0.15)
(0.3074780113 -0.1972257182 0.15)
(0.328894902 -0.1991816809 0.15)
(0.1572833246 -0.1834611277 0.15)
(0.1787785797 -0.1854384213 0.15)
(0.2723027245 0.1199163478 0.15)
(0.2669062867 0.1204428489 0.15)
(0.2663163209 0.1140084352 0.15)
(0.2717089513 0.1134841955 0.15)
(0.1858718382 0.1289410538 0.15)
(0.1853445158 0.1230194459 0.15)
(0.1907605167 0.1226821466 0.15)
(0.191288525 0.1285245524 0.15)
(0.3476720153 0.2281370819 0.15)
(0.3407458198 0.3887806367 0.15)
(0.3365504653 0.3434265962 0.15)
(0.3796191454 0.339297039 0.15)
(0.2502685612 0.3516107438 0.15)
(0.4470227463 -0.324216641 0.15)
(0.4428673876 -0.3696357369 0.15)
(0.4789492429 -0.2128569234 0.15)
(0.5003840771 -0.2148035037 0.15)
(0.3503108893 -0.2011365555 0.15)
(0.4167055392 -0.1843837745 0.15)
(0.4187903587 -0.1617837283 0.15)
(0.4080682965 -0.1608009686 0.15)
(0.3973501249 -0.1598195741 0.15)
(0.3952637554 -0.1824255022 0.15)
(0.4250406619 -0.09401755114 0.15)
(0.4196777934 -0.09354056305 0.15)
(0.4143142946 -0.09308119208 0.15)
(0.4132738784 -0.1043705537 0.15)
(0.423996772 -0.105344352 0.15)
(0.339337795 -0.08615206068 0.15)
(0.3382944819 -0.09745099566 0.15)
(0.3489888281 -0.09844022255 0.15)
(0.3500274192 -0.08714888381 0.15)
(0.3446788552 -0.0866476134 0.15)
(0.4450521301 0.1048881373 0.15)
(0.4396622939 0.1053667236 0.15)
(0.4391459486 0.0996716705 0.15)
(0.4445387319 0.09922484775 0.15)
(0.3588170211 0.1129488337 0.15)
(0.3582690675 0.1071404159 0.15)
(0.36364075 0.10646617 0.15)
(0.3642019764 0.1123526956 0.15)
(0.5197345543 0.2115401186 0.15)
(0.5126972641 0.3721664834 0.15)
(0.5085978426 0.3268069366 0.15)
(0.5515198025 0.3226006057 0.15)
(0.4226006227 0.3351584996 0.15)
(0.618529331 -0.3397265938 0.15)
(0.6143333099 -0.3851503434 0.15)
(0.6504309346 -0.2283645666 0.15)
(0.6718615498 -0.2302916738 0.15)
(0.5218201843 -0.2167471892 0.15)
(0.5882263618 -0.1999784048 0.15)
(0.5903123722 -0.1774196452 0.15)
(0.5795933691 -0.1764472122 0.15)
(0.5688714712 -0.1754735063 0.15)
(0.5667889819 -0.1980376141 0.15)
(0.596537444 -0.1098821149 0.15)
(0.5911818308 -0.1093594015 0.15)
(0.5906559092 -0.1150386021 0.15)
(0.5960140609 -0.1155447793 0.15)
(0.5107755216 -0.1020794372 0.15)
(0.509745666 -0.1132982729 0.15)
(0.5204602038 -0.1142863603 0.15)
(0.5214902236 -0.1030765785 0.15)
(0.5161305938 -0.1025863329 0.15)
(0.6169251615 0.08817538644 0.15)
(0.6062032543 0.08924640937 0.15)
(0.6052001221 0.07800169415 0.15)
(0.6159261067 0.0769421436 0.15)
(0.5310103832 0.09661450753 0.15)
(0.5299917568 0.08534351135 0.15)
(0.5353737741 0.08481312584 0.15)
(0.5407670143 0.08429545789 0.15)
(0.5417627113 0.09556828021 0.15)
(0.8114286729 -0.3571711885 0.15)
(0.789991221 -0.3552203482 0.15)
(0.7857853875 -0.4007023021 0.15)
(0.823983413 -0.2211744493 0.15)
(0.8219061589 -0.2437470771 0.15)
(0.8433454584 -0.245678003 0.15)
(0.6932982317 -0.2322183396 0.15)
(0.7596787668 -0.2154120258 0.15)
(0.7607151406 -0.2041445844 0.15)
(0.7499901427 -0.2031826424 0.15)
(0.7489546722 -0.2144511719 0.15)
(0.7680196974 -0.1249507324 0.15)
(0.7626397539 -0.1245711835 0.15)
(0.7620773132 -0.1304924455 0.15)
(0.7674474648 -0.1309234096 0.15)
(0.6822591059 -0.1174259662 0.15)
(0.681709709 -0.1232607635 0.15)
(0.6870562405 -0.1237839398 0.15)
(0.6876000984 -0.1179871935 0.15)
(0.7805458888 -0.01881196717 0.15)
(0.7810384516 -0.01320005246 0.15)
(0.7756556995 -0.01275335697 0.15)
(0.7751441385 -0.01841849415 0.15)
(0.7883100148 0.07073643016 0.15)
(0.7776069348 0.07185883348 0.15)
(0.776627351 0.06061896347 0.15)
(0.7873272611 0.05950569206 0.15)
(0.7026841608 0.07958350367 0.15)
(0.7016910269 0.06835995529 0.15)
(0.7124032592 0.06727125055 0.15)
(0.7133968458 0.07849967798 0.15)
(0.9837914578 -0.3677069686 0.15)
(0.9626641335 -0.3691462778 0.15)
(0.958379289 -0.4147112875 0.15)
(0.9964943846 -0.2307950055 0.15)
(0.9943771993 -0.2536139979 0.15)
(1.015815123 -0.2556030453 0.15)
(0.864773805 -0.2476079126 0.15)
(0.8668495501 -0.225019076 0.15)
(0.9311468261 -0.230850112 0.15)
(0.9321829433 -0.2195746125 0.15)
(0.9214705613 -0.2185957637 0.15)
(0.9204334483 -0.2298711709 0.15)
(0.9394510014 -0.1405143599 0.15)
(0.9341605111 -0.1396794277 0.15)
(0.9336070759 -0.1455144528 0.15)
(0.938921837 -0.1462285104 0.15)
(0.8538177123 -0.1322778105 0.15)
(0.8532298533 -0.1383431404 0.15)
(0.858550722 -0.1389372492 0.15)
(0.8591244584 -0.1329591878 0.15)
(1.170094956 -0.22388754 0.15)
(1.167977863 -0.2467055367 0.15)
(1.184915068 -0.06415658442 0.15)
(1.18279791 -0.08697527813 0.15)
(1.204235835 -0.0889643255 0.15)
(1.044524914 -0.06263855895 0.15)
(0.08148566882 -0.06221403803 0.15)
(0.09228226961 -0.06322580812 0.15)
(0.09331855406 -0.05189438486 0.15)
(0.08791812211 -0.05138820161 0.15)
(0.08253002481 -0.05088979115 0.15)
(0.1677481951 -0.07024875631 0.15)
(0.1688044575 -0.05887519852 0.15)
(0.1634331007 -0.05838145458 0.15)
(0.1580440365 -0.05791619657 0.15)
(0.156991375 -0.06926176734 0.15)
(-0.006044039252 -0.05356582758 0.15)
(0.004994876473 -0.05472330706 0.15)
(0.005815196617 -0.04329923573 0.15)
(-0.005201416342 -0.04214362468 0.15)
(0.07169525085 -0.04986513934 0.15)
(0.07065922198 -0.06119056055 0.15)
(0.1804525677 0.1293946525 0.15)
(0.1799267666 0.1234244965 0.15)
(0.1039806752 0.1307644605 0.15)
(0.1045069335 0.1364884215 0.15)
(0.107798995 0.227613493 0.15)
(0.1055948295 0.2049491978 0.15)
(0.1164298692 0.2039750374 0.15)
(0.1273045028 0.2030022248 0.15)
(0.1294844805 0.2256536998 0.15)
(0.1099411799 0.1360208795 0.15)
(0.1110290336 0.147366901 0.15)
(0.1001659083 0.1483306114 0.15)
(0.186400016 0.1347528129 0.15)
(0.1809798831 0.1352295904 0.15)
(0.3339991883 -0.08565171411 0.15)
(0.3286489818 -0.08515732137 0.15)
(0.3276001358 -0.09646176877 0.15)
(0.2536163091 -0.07825993619 0.15)
(0.2525734785 -0.08954284721 0.15)
(0.2632867433 -0.09053382942 0.15)
(0.2643283011 -0.07925381318 0.15)
(0.2452526103 -0.1686960183 0.15)
(0.266693655 -0.1706622564 0.15)
(0.2687862246 -0.1480328005 0.15)
(0.2473464528 -0.1460636676 0.15)
(0.2653629936 -0.06800449397 0.15)
(0.2600118284 -0.06750961055 0.15)
(0.2546591265 -0.06699881713 0.15)
(0.3398636336 -0.08047375621 0.15)
(0.3345253132 -0.0799703229 0.15)
(0.1784901511 -0.07124440913 0.15)
(0.1795412687 -0.05987218171 0.15)
(0.174173014 -0.05935582766 0.15)
(0.2493006514 -0.066496125 0.15)
(0.2439359916 -0.06598432253 0.15)
(0.2428938261 -0.07726006435 0.15)
(0.3534413876 0.1135480237 0.15)
(0.3529078133 0.1078188162 0.15)
(0.2771157004 0.1130255319 0.15)
(0.2777166726 0.1194486805 0.15)
(0.2808185625 0.2116458058 0.15)
(0.2797682588 0.2003364722 0.15)
(0.2905796179 0.1993203199 0.15)
(0.2916277453 0.2106278469 0.15)
(0.2782996174 0.1257100026 0.15)
(0.2728840217 0.126192385 0.15)
(0.359354065 0.118693788 0.15)
(0.3539700141 0.1192455528 0.15)
(0.1918166484 0.1342924288 0.15)
(0.267483793 0.1267105005 0.15)
(0.2700240383 0.2126593918 0.15)
(0.2689736423 0.2013490625 0.15)
(0.5054231595 -0.1015758058 0.15)
(0.5000732507 -0.1010673805 0.15)
(0.4990376569 -0.1123047654 0.15)
(0.4347277956 -0.1063279432 0.15)
(0.4357769618 -0.09498757179 0.15)
(0.4304095807 -0.09448345077 0.15)
(0.4381553811 -0.1863417902 0.15)
(0.4402448097 -0.1637461888 0.15)
(0.4295195756 -0.1627651434 0.15)
(0.4309469315 -0.08872436439 0.15)
(0.4255760931 -0.08826832961 0.15)
(0.5112869398 -0.09650243371 0.15)
(0.5059370885 -0.09598256483 0.15)
(0.3452029404 -0.08097738148 0.15)
(0.4202072606 -0.08783397286 0.15)
(0.5202715703 0.09765486114 0.15)
(0.519255155 0.08637522373 0.15)
(0.5246234929 0.08585976583 0.15)
(0.4499243502 0.09872244925 0.15)
(0.4504388806 0.1043762938 0.15)
(0.4532504734 0.1951873103 0.15)
(0.4512116419 0.1725850058 0.15)
(0.4619638428 0.1715482307 0.15)
(0.4726989315 0.1705110347 0.15)
(0.4747412839 0.193107991 0.15)
(0.4558097529 0.1038556797 0.15)
(0.4568286493 0.1151404097 0.15)
(0.4460794356 0.1161769077 0.15)
(0.5320270438 0.107875141 0.15)
(0.5212895222 0.1089185885 0.15)
(0.3647472621 0.1181431832 0.15)
(0.4353194333 0.117205368 0.15)
(0.4347973046 0.1115453992 0.15)
(0.4342805271 0.1058565124 0.15)
(0.4317485046 0.1972546091 0.15)
(0.4296915859 0.1746630215 0.15)
(0.4404539287 0.1736273139 0.15)
(0.6769170509 -0.1168761896 0.15)
(0.6763637113 -0.1227426581 0.15)
(0.6013704059 -0.1160487802 0.15)
(0.6018920707 -0.1104046362 0.15)
(0.6096480874 -0.2019147302 0.15)
(0.6117266658 -0.1793603025 0.15)
(0.6010244052 -0.1783914315 0.15)
(0.6024171814 -0.1047233518 0.15)
(0.597068683 -0.104167253 0.15)
(0.682830317 -0.111442649 0.15)
(0.6774963674 -0.1108379866 0.15)
(0.5166412359 -0.09701769352 0.15)
(0.5917171882 -0.1036109765 0.15)
(0.6919644061 0.08067772696 0.15)
(0.6909704776 0.06944561536 0.15)
(0.6266553094 0.0758848052 0.15)
(0.6276547246 0.08712193135 0.15)
(0.8484780574 -0.1317129914 0.15)
(0.8478813098 -0.1378308246 0.15)
(0.7728099895 -0.1314149281 0.15)
(0.7733789187 -0.1254562053 0.15)
(0.7703998742 -0.2163726025 0.15)
(0.7714362481 -0.2051051611 0.15)
(0.7800917112 -0.02432407125 0.15)
(0.7854271144 -0.02489141839 0.15)
(0.7859028748 -0.01931988408 0.15)
(0.7739648418 -0.1193900933 0.15)
(0.7686127372 -0.1188403886 0.15)
(0.8543923911 -0.1262895927 0.15)
(0.8490709936 -0.1256145891 0.15)
(0.688161571 -0.1120655404 0.15)
(0.7632249564 -0.1185128381 0.15)
(0.7746542517 -0.02402321533 0.15)
(0.8737197216 0.06150809488 0.15)
(0.8523957856 0.06385976226 0.15)
(0.8504233133 0.04137733992 0.15)
(0.8610882202 0.04018988502 0.15)
(0.8717392404 0.03899347474 0.15)
(0.798016288 0.05837254107 0.15)
(0.7990029877 0.06960251134 0.15)
(0.7863952381 -0.01371012013 0.15)
(1.02633932 -0.1415239481 0.15)
(1.015523815 -0.1405416576 0.15)
(1.015029254 -0.1461967524 0.15)
(1.014551172 -0.1518907358 0.15)
(1.025312816 -0.1529123185 0.15)
(0.9442265589 -0.1469858255 0.15)
(0.9447395701 -0.1413700032 0.15)
(0.9418558514 -0.2318326665 0.15)
(0.9428900696 -0.2205559865 0.15)
(0.9509823298 -0.03818150082 0.15)
(0.9501533 -0.04909761517 0.15)
(0.9607043205 -0.05048423041 0.15)
(0.9615269564 -0.03958290863 0.15)
(0.9451720615 -0.1364596591 0.15)
(0.9398911618 -0.135564656 0.15)
(1.027395307 -0.1301425312 0.15)
(1.016573234 -0.1292310367 0.15)
(1.016015669 -0.1349157374 0.15)
(0.8596811568 -0.1270781674 0.15)
(0.9346177536 -0.1346430312 0.15)
(0.940430642 -0.03676960581 0.15)
(0.9395878821 -0.04771463536 0.15)
(0.1037650801 -0.2929310112 0.15)
(0.09975338992 -0.3385499326 0.15)
(0.1357555801 -0.1814768025 0.15)
(-0.01571382148 -0.1672364127 0.15)
(0.006197441409 -0.1693878841 0.15)
(0.0732370954 -0.1528305276 0.15)
(0.07530481915 -0.130163616 0.15)
(0.05363769178 -0.1281271911 0.15)
(0.05156819011 -0.1507959463 0.15)
(0.06962094811 -0.07251095285 0.15)
(0.08044589212 -0.07353439133 0.15)
(-0.007025817167 -0.0649204858 0.15)
(0.004044167809 -0.06608817929 0.15)
(0.05088997297 0.09460972039 0.15)
(0.04547371796 0.09470289917 0.15)
(0.0452594321 0.08895662124 0.15)
(0.0498054532 0.09034407105 0.15)
(0.006154404182 0.09823792892 0.15)
(0.005477062185 0.09228876272 0.15)
(0.01123486124 0.09176097174 0.15)
(0.01183421346 0.0977539303 0.15)
(0.2258919299 -0.1440911575 0.15)
(0.2237997093 -0.1667276759 0.15)
(0.2418503487 -0.08854994544 0.15)
(0.166702018 -0.08157855872 0.15)
(0.1774439741 -0.08257421153 0.15)
(0.5695976313 0.04621910505 0.15)
(0.5641694499 0.04650089227 0.15)
(0.5632082663 0.04055757376 0.15)
(0.5676240402 0.03925746273 0.15)
(0.6913468115 0.194527979 0.15)
(0.6839727238 0.3554333958 0.15)
(0.6801400286 0.3098568041 0.15)
(0.7229953515 0.3055616156 0.15)
(0.5944419061 0.3183741757 0.15)
(0.7358549841 -0.0167421295 0.15)
(0.7378119108 -0.009851852845 0.15)
(0.7324329537 -0.009375079326 0.15)
(0.7315064127 -0.01515068103 0.15)
(0.741601912 0.03036891761 0.15)
(0.7308939766 0.03146063827 0.15)
(0.7299104396 0.02023228272 0.15)
(0.7352685575 0.01969326825 0.15)
(0.7406259589 0.01916817953 0.15)
(0.6987555488 0.03474057148 0.15)
(0.6982622415 0.02913145752 0.15)
(0.7036180446 0.02858914279 0.15)
(0.7041123845 0.03419856266 0.15)
(0.9518589218 -0.02715326098 0.15)
(0.9413120425 -0.02574366002 0.15)
(0.9588171408 0.05177153679 0.15)
(0.9375761791 0.05424897647 0.15)
(0.9355247288 0.03156478763 0.15)
(0.9567132253 0.02896567458 0.15)
(0.8823895308 0.03778919825 0.15)
(0.8930303977 0.03658077461 0.15)
(0.8950206945 0.05912541633 0.15)
(0.155945937 -0.08058360396 0.15)
(0.09124308316 -0.07454521188 0.15)
(0.09477428596 -0.1548277808 0.15)
(0.09685559466 -0.1321681554 0.15)
(0.1287978767 -0.02114704426 0.15)
(0.1341527319 -0.02202430385 0.15)
(0.1346121097 -0.01700819137 0.15)
(0.1292498881 -0.01608043527 0.15)
(-0.00286295074 -0.007733303372 0.15)
(0.002832072038 -0.0084429726 0.15)
(0.003215114199 -0.002698593326 0.15)
(-0.002555107834 -0.001942679047 0.15)
(0.04203360746 -0.01244552081 0.15)
(0.04248729195 -0.006746059923 0.15)
(0.03698283043 -0.006183424491 0.15)
(0.03653114574 -0.01196632698 0.15)
(0.02363793414 0.1548274268 0.15)
(0.01268418885 0.1557131757 0.15)
(0.08927802547 0.1492915974 0.15)
(0.08814685067 0.137940858 0.15)
(0.08612334669 0.2295613262 0.15)
(0.08395896696 0.2068993654 0.15)
(0.09477130421 0.2059273114 0.15)
(0.6933888184 0.03527335497 0.15)
(0.6928911125 0.02966012979 0.15)
(0.6557943935 0.03883835918 0.15)
(0.6552323058 0.03302914374 0.15)
(0.6606240584 0.03259286128 0.15)
(0.6611680559 0.03834781593 0.15)
(0.6250245199 0.1783710615 0.15)
(0.6229869818 0.1557826972 0.15)
(0.6444226479 0.1536502452 0.15)
(0.6464538421 0.1762351809 0.15)
(0.6286586307 0.09836416445 0.15)
(0.617932914 0.09942660261 0.15)
(0.7036824047 0.09081883034 0.15)
(0.6929650849 0.09191764834 0.15)
(0.5427724389 0.1068299587 0.15)
(0.6072104617 0.1004917508 0.15)
(0.6035628727 0.1805049199 0.15)
(0.6015239693 0.157912665 0.15)
(0.8233755616 -0.0232660918 0.15)
(0.8228549029 -0.02895351379 0.15)
(0.8282366308 -0.02944372074 0.15)
(0.8287356571 -0.0238054404 0.15)
(0.9048246338 -0.07758508027 0.15)
(0.9053871762 -0.07176013959 0.15)
(0.9001020241 -0.07107333401 0.15)
(0.8995427541 -0.07685217988 0.15)
(0.9086505549 -0.0327989941 0.15)
(0.8980380887 -0.03151177729 0.15)
(0.8971739698 -0.04250300115 0.15)
(0.9024877393 -0.04314115247 0.15)
(0.9077900137 -0.04377330616 0.15)
(-0.08806289064 0.05364076872 0.15)
(-0.08911005708 0.04122761663 0.15)
(-0.07846354366 0.04024674449 0.15)
(-0.07741664703 0.05264399952 0.15)
(-0.09525282141 -0.04202291643 0.15)
(-0.07252110467 -0.04585577604 0.15)
(-0.0717632968 -0.03422544743 0.15)
(-0.07128427364 -0.02220861036 0.15)
(-0.08254977237 -0.0202821092 0.15)
(-0.09364231493 -0.01839656173 0.15)
(-0.01636323448 -0.04087591947 0.15)
(-0.01698826042 -0.05243400618 0.15)
(0.0003737692764 0.145138047 0.15)
(-0.0008627443041 0.1337276843 0.15)
(-0.07735975305 0.1497816112 0.15)
(-0.08027915906 0.1260556531 0.15)
(-0.06949077286 0.1252616733 0.15)
(-0.05825939452 0.1250283655 0.15)
(-0.05641078818 0.137167798 0.15)
(-0.05497083401 0.1488244191 0.15)
(-0.07612437102 0.06559253482 0.15)
(-0.08678880939 0.06650577371 0.15)
(0.0577105278 0.0924479589 0.15)
(0.05539750638 0.1407682955 0.15)
(0.05426943888 0.1294088317 0.15)
(0.05976713036 0.1289301809 0.15)
(0.06525571662 0.1284529774 0.15)
(0.06636145319 0.1398391184 0.15)
(0.05707932816 0.09963852363 0.15)
(0.05153593275 0.1002480565 0.15)
(0.01240697069 0.1036532454 0.15)
(0.006765649548 0.1040897853 0.15)
(0.04599681422 0.1006255018 0.15)
(0.04446968791 0.1416950244 0.15)
(0.04337462604 0.1303481653 0.15)
(0.04881431714 0.1298776074 0.15)
(0.2292067682 0.125548752 0.15)
(0.2286927434 0.1201817876 0.15)
(0.234097224 0.119622905 0.15)
(0.2346106412 0.1249941438 0.15)
(0.223793164 0.1260309496 0.15)
(0.2232768922 0.120628943 0.15)
(0.4019908676 0.1090435197 0.15)
(0.4014852698 0.1034318302 0.15)
(0.406883656 0.1028722074 0.15)
(0.4073920715 0.1085142665 0.15)
(0.3965721924 0.1095251835 0.15)
(0.3960583291 0.1038893543 0.15)
(0.6127966718 0.04283428947 0.15)
(0.6074451144 0.04340071508 0.15)
(0.6069255694 0.03770364894 0.15)
(0.6122325752 0.03698177443 0.15)
(0.5747066123 0.04091663553 0.15)
(0.5751193014 0.04623053487 0.15)
(0.573988392 0.09241693608 0.15)
(0.5729795606 0.08116491614 0.15)
(0.5836999312 0.08010980322 0.15)
(0.5847093169 0.09136779749 0.15)
(0.5756506092 0.05196778616 0.15)
(0.5702156661 0.05223081785 0.15)
(0.6133561881 0.04864826282 0.15)
(0.6079922027 0.04916733407 0.15)
(0.526707553 0.05106130992 0.15)
(0.5316239408 0.04969054757 0.15)
(0.5325693398 0.05558280598 0.15)
(0.5272596587 0.05639491353 0.15)
(0.5648226345 0.05263166693 0.15)
(0.5632586073 0.09346800142 0.15)
(0.5622488264 0.08221657173 0.15)
(0.5676158893 0.08168737285 0.15)
(0.7250431494 -0.1219605595 0.15)
(0.7245423823 -0.1274768874 0.15)
(0.7298983373 -0.1279959166 0.15)
(0.7303938795 -0.1225142542 0.15)
(0.7209622416 -0.1665723332 0.15)
(0.7316747366 -0.1675391409 0.15)
(0.7327012149 -0.1563350563 0.15)
(0.7219900852 -0.1553643581 0.15)
(0.7638084233 -0.170437203 0.15)
(0.7648345321 -0.1592371013 0.15)
(0.7541110842 -0.1582692774 0.15)
(0.7530857863 -0.1694714629 0.15)
(0.7844176317 0.02591594698 0.15)
(0.7737219098 0.02704188563 0.15)
(0.7727610002 0.01587339567 0.15)
(0.7834600532 0.01476171023 0.15)
(0.7459799368 0.01862784187 0.15)
(0.7513373084 0.01809160824 0.15)
(0.7523054118 0.02927268745 0.15)
(0.7428841516 -0.01547453757 0.15)
(0.743294511 -0.01006668117 0.15)
(0.8963309227 -0.1381943931 0.15)
(0.8958746958 -0.1434688014 0.15)
(0.9012209501 -0.1439949649 0.15)
(0.9016614304 -0.1388145037 0.15)
(0.8924039502 -0.1820129961 0.15)
(0.9031135504 -0.1829785309 0.15)
(0.9041282547 -0.1718255772 0.15)
(0.8934191883 -0.1708651134 0.15)
(0.9352627581 -0.1859041448 0.15)
(0.9362776471 -0.1747491996 0.15)
(0.9309248231 -0.1742505468 0.15)
(0.9255718861 -0.1737639351 0.15)
(0.9245515565 -0.1849233969 0.15)
(0.8495421142 -0.178143661 0.15)
(0.8602409461 -0.1791061882 0.15)
(0.8612589558 -0.1679284338 0.15)
(0.8505639424 -0.1669572223 0.15)
(0.8827123187 -0.1698917976 0.15)
(0.8816954382 -0.181046558 0.15)
(0.8910237578 -0.1374850576 0.15)
(0.8905490537 -0.1428611938 0.15)
(0.08566963815 -0.0164979629 0.15)
(0.09127049648 -0.01620564763 0.15)
(0.09324463165 -0.009253295308 0.15)
(0.08607939269 -0.01133584155 0.15)
(0.1239272706 -0.01512632529 0.15)
(0.1234679392 -0.02023935655 0.15)
(0.1246557924 -0.06626663801 0.15)
(0.1256939719 -0.05495808763 0.15)
(0.120296333 -0.0544445309 0.15)
(0.1149143948 -0.05393494163 0.15)
(0.1138712255 -0.06525397585 0.15)
(0.1229417568 -0.02593219139 0.15)
(0.1282893328 -0.02673636594 0.15)
(0.08515527911 -0.02214238299 0.15)
(0.09067504311 -0.02221644268 0.15)
(0.1723037007 -0.02289229018 0.15)
(0.1672592691 -0.02215470639 0.15)
(0.1663313592 -0.02815072426 0.15)
(0.1717332566 -0.02842354489 0.15)
(0.1336586638 -0.0275117271 0.15)
(0.1354496904 -0.06727614873 0.15)
(0.1364990887 -0.05597657319 0.15)
(0.1311027022 -0.05547116701 0.15)
(0.03797225251 -0.05804371955 0.15)
(0.03898282165 -0.04670910694 0.15)
(0.02794077286 -0.0455977352 0.15)
(0.02693793547 -0.05693236217 0.15)
(0.03602492925 -0.01772107113 0.15)
(0.04153298757 -0.0182092203 0.15)
(-0.003055036091 -0.0135881968 0.15)
(0.002471305349 -0.01419514311 0.15)
(0.08015709874 -0.01639474596 0.15)
(0.07967260706 -0.02190776338 0.15)
(0.04703152994 -0.01863432071 0.15)
(0.04753658221 -0.01279470604 0.15)
(0.04891912035 -0.05911151164 0.15)
(0.04993717793 -0.04777628823 0.15)
(0.04802749129 -0.007063146871 0.15)
(0.08058021638 -0.01116436724 0.15)
(0.1425472296 0.1330940552 0.15)
(0.1420070692 0.1273479841 0.15)
(0.1474340991 0.1269238947 0.15)
(0.1479856755 0.132630643 0.15)
(0.1371221181 0.1335712947 0.15)
(0.1365804333 0.1278087941 0.15)
(0.2965041162 -0.08218490856 0.15)
(0.2970322993 -0.07649215891 0.15)
(0.2916740306 -0.07601971521 0.15)
(0.2911484692 -0.08169503251 0.15)
(0.2576158577 -0.03460082022 0.15)
(0.2571577364 -0.03960339087 0.15)
(0.2624877351 -0.04028310929 0.15)
(0.2629440642 -0.03529985567 0.15)
(0.3018623089 -0.08266899503 0.15)
(0.3023910001 -0.07697076891 0.15)
(0.2107157012 -0.07425644542 0.15)
(0.211766164 -0.06293457286 0.15)
(0.2063919257 -0.06241776408 0.15)
(0.2010186256 -0.06191249131 0.15)
(0.1999715894 -0.07325155394 0.15)
(0.2149364606 -0.02892752485 0.15)
(0.2095890346 -0.02820832758 0.15)
(0.2091113102 -0.03336805931 0.15)
(0.2144590708 -0.03407282579 0.15)
(0.1770833595 -0.02902729575 0.15)
(0.1775893519 -0.02367113549 0.15)
(0.2522854289 -0.0339040893 0.15)
(0.2518237641 -0.03892320333 0.15)
(0.2198024902 -0.03477025984 0.15)
(0.2202772307 -0.02964268997 0.15)
(0.2214459652 -0.07525904779 0.15)
(0.222494028 -0.06395221784 0.15)
(0.2171343745 -0.06344057858 0.15)
(0.3156949715 0.1175423055 0.15)
(0.3152146153 0.1122134938 0.15)
(0.3206184811 0.1116696322 0.15)
(0.3211013593 0.1170256271 0.15)
(0.3102839234 0.117987107 0.15)
(0.3098014629 0.112646439 0.15)
(0.3161927413 0.1230046796 0.15)
(0.3107850909 0.1234752776 0.15)
(0.3198228113 0.1623676569 0.15)
(0.3090325472 0.1633838605 0.15)
(0.307987797 0.1520910846 0.15)
(0.3187805145 0.1510796748 0.15)
(0.2766209098 0.1664252138 0.15)
(0.2755719714 0.1551197707 0.15)
(0.2863898591 0.1541090385 0.15)
(0.287437617 0.1654125825 0.15)
(0.3629978387 0.1582694086 0.15)
(0.3522106746 0.1592973762 0.15)
(0.3511714573 0.1480101127 0.15)
(0.3619595247 0.1469810571 0.15)
(0.3295795553 0.1500606483 0.15)
(0.3306206717 0.1613467313 0.15)
(0.3215990572 0.1224980509 0.15)
(0.2297261359 0.1310382468 0.15)
(0.2243148208 0.1315342922 0.15)
(0.2334044728 0.1704559992 0.15)
(0.2225898289 0.1714583961 0.15)
(0.2215353781 0.1601584859 0.15)
(0.2323512025 0.159157988 0.15)
(0.1901039435 0.1744463806 0.15)
(0.1890445859 0.1631368827 0.15)
(0.1998804376 0.1621465782 0.15)
(0.2009385223 0.1734531813 0.15)
(0.2658230289 0.1674350941 0.15)
(0.2647730024 0.1561287476 0.15)
(0.2431614015 0.158150982 0.15)
(0.2442138609 0.169451077 0.15)
(0.2351309532 0.1305046412 0.15)
(0.4679174002 -0.09801852595 0.15)
(0.4684452712 -0.09231831557 0.15)
(0.4630918527 -0.0917935964 0.15)
(0.4625622192 -0.09750197889 0.15)
(0.4732768802 -0.09852121089 0.15)
(0.4738028019 -0.09284201028 0.15)
(0.382162728 -0.09014853019 0.15)
(0.3826805259 -0.08452441464 0.15)
(0.3773254445 -0.08401761848 0.15)
(0.3768060134 -0.08964851214 0.15)
(0.3875203459 -0.09064963635 0.15)
(0.3880376634 -0.08503069856 0.15)
(0.4880438346 0.1007624078 0.15)
(0.4875263426 0.09509829293 0.15)
(0.492908715 0.09459338357 0.15)
(0.4934242227 0.1002469366 0.15)
(0.5220296792 0.05748153185 0.15)
(0.5215825601 0.05244600381 0.15)
(0.4826640243 0.1012624597 0.15)
(0.4821421964 0.09558408441 0.15)
(0.6393439183 -0.1139801133 0.15)
(0.6398436599 -0.1084748378 0.15)
(0.634477137 -0.108015588 0.15)
(0.6339784578 -0.1135094126 0.15)
(0.6447163405 -0.1143974288 0.15)
(0.6452263564 -0.1088247141 0.15)
(0.5536810932 -0.1057696467 0.15)
(0.5542394196 -0.09986025537 0.15)
(0.5488676236 -0.09944701514 0.15)
(0.5483155291 -0.1053108876 0.15)
(0.5590423008 -0.1062537116 0.15)
(0.5596014957 -0.1003349605 0.15)
(0.6181535477 0.04226023991 0.15)
(0.618726809 0.04811411407 0.15)
(0.6563272564 0.0445598996 0.15)
(0.6509511817 0.04506773969 0.15)
(0.650406364 0.0393147693 0.15)
(0.6598168515 0.08391341412 0.15)
(0.6490882236 0.08498777221 0.15)
(0.6480881823 0.07375472133 0.15)
(0.6588219551 0.07268169362 0.15)
(0.6498255116 0.03344402429 0.15)
(0.6175519331 0.03629561151 0.15)
(0.8106865378 -0.1298825968 0.15)
(0.8101941676 -0.135362545 0.15)
(0.8155482748 -0.1359014886 0.15)
(0.8160309343 -0.1304829058 0.15)
(0.8066541635 -0.1742960061 0.15)
(0.81737988 -0.1752610276 0.15)
(0.8183997887 -0.1640844537 0.15)
(0.8076752527 -0.1631175331 0.15)
(0.8398508008 -0.1659973846 0.15)
(0.8388289725 -0.1771838234 0.15)
(0.7745289764 -0.1714037541 0.15)
(0.7755547157 -0.1602076352 0.15)
(0.7969580563 -0.1621472763 0.15)
(0.7959375009 -0.1733308203 0.15)
(0.8053496533 -0.1292446208 0.15)
(0.8048455418 -0.134796994 0.15)
(0.818015987 -0.0227319536 0.15)
(0.8174785222 -0.02845979583 0.15)
(0.8111717174 -0.124447677 0.15)
(0.8058498979 -0.1237122761 0.15)
(0.8165000717 -0.1251451193 0.15)
(0.725536809 -0.1164883636 0.15)
(0.7201948422 -0.1158618671 0.15)
(0.7196913148 -0.121397121 0.15)
(0.730878087 -0.1171006356 0.15)
(0.7432485609 -0.01945948565 0.15)
(0.8238670993 -0.01764357705 0.15)
(0.8185175405 -0.01708808283 0.15)
(0.8271619305 0.02134266 0.15)
(0.8164757028 0.02250598141 0.15)
(0.8155215827 0.0113565457 0.15)
(0.8262115161 0.01018986758 0.15)
(0.7941366603 0.01362458967 0.15)
(0.7950991178 0.02478811539 0.15)
(0.945967431 -0.1868903126 0.15)
(0.9469773209 -0.1757459509 0.15)
(0.9416278536 -0.1752435923 0.15)
(0.9795648474 -0.187575136 0.15)
(0.9801700219 -0.1763440137 0.15)
(0.9740642898 -0.1772166681 0.15)
(0.9684798228 -0.1774286541 0.15)
(0.9676243419 -0.1885973851 0.15)
(0.983251827 -0.1426304455 0.15)
(0.9770468841 -0.1441718945 0.15)
(0.9766455247 -0.1494935738 0.15)
(0.9829716905 -0.1480960394 0.15)
(0.9820880699 -0.1397488081 0.15)
(0.9771210963 -0.1407200885 0.15)
(0.9901644358 -0.08686327062 0.15)
(0.9848393881 -0.08628172947 0.15)
(0.9844587142 -0.09167271621 0.15)
(0.9897804514 -0.09225746523 0.15)
(0.9477233367 -0.08171734577 0.15)
(0.9472620413 -0.08727369148 0.15)
(0.9526003957 -0.08784170411 0.15)
(0.9530498861 -0.08230434902 0.15)
(0.8967754658 -0.1329809663 0.15)
(0.8914900537 -0.1321562469 0.15)
(0.8986636318 -0.08247390429 0.15)
(0.9029416592 -0.08432775777 0.15)
(0.9423956324 -0.08114278906 0.15)
(0.9419166277 -0.08673846689 0.15)
(0.9098482001 -0.08344012192 0.15)
(0.910242848 -0.07801759126 0.15)
(0.9020792341 -0.1337593835 0.15)
(0.9184007682 -0.04506814745 0.15)
(0.9192603645 -0.03409319535 0.15)
(0.9107613109 -0.07228888987 0.15)
(0.9481573586 -0.07621681912 0.15)
(0.9428469295 -0.07560761019 0.15)
(0.002895462205 0.07462893907 0.15)
(0.002250718359 0.06762655707 0.15)
(0.009502884444 0.07333718854 0.15)
(0.7180914219 0.009760096063 0.15)
(0.7127331952 0.01030876186 0.15)
(0.7121271213 0.004361017634 0.15)
(0.7174831092 0.00382069435 0.15)
(0.6967414265 0.01218809738 0.15)
(0.6962705343 0.006636558845 0.15)
(0.7016074639 0.006042365875 0.15)
(0.702094224 0.01164586066 0.15)
(1.133846969 -0.3816293763 0.15)
(1.12972035 -0.4271175197 0.15)
(1.146549896 -0.2447174132 0.15)
(1.144432711 -0.2675364056 0.15)
(1.142315526 -0.290355398 0.15)
(1.185181417 -0.2943325689 0.15)
(1.037253048 -0.2575920926 0.15)
(1.103674048 -0.2407393184 0.15)
(1.105791141 -0.2179213217 0.15)
(1.084353217 -0.2159322744 0.15)
(1.082236124 -0.2387502711 0.15)
(1.112142632 -0.1494650415 0.15)
(1.090704708 -0.1474759941 0.15)
(1.088587587 -0.1702942895 0.15)
(1.110025511 -0.1722833369 0.15)
(1.036046345 -0.1539122108 0.15)
(1.037094269 -0.1425094578 0.15)
(1.167721407 -0.01653117305 0.15)
(1.165604259 -0.03934976719 0.15)
(1.163487101 -0.06216846091 0.15)
(1.180410704 0.1204832122 0.15)
(1.176190028 0.07474350224 0.15)
(1.219055002 0.07078247633 0.15)
(1.069010364 0.08468781523 0.15)
(1.090438331 0.08269969171 0.15)
(-0.002190830912 0.01577684714 0.15)
(0.003988290128 0.01468702878 0.15)
(0.005480846696 0.02178660131 0.15)
(-0.002455654168 0.02195031447 0.15)
(0.6913447764 0.01261489173 0.15)
(0.6908161366 0.006895570645 0.15)
(0.6752021698 0.01409164069 0.15)
(0.6748101065 0.008783560721 0.15)
(0.6801477547 0.008186288197 0.15)
(0.6806036363 0.01368428452 0.15)
(0.8698062847 0.01661223438 0.15)
(0.8591595523 0.01781156101 0.15)
(0.8582126978 0.006664664915 0.15)
(0.8688616434 0.005467543257 0.15)
(0.8368867262 0.009026865398 0.15)
(0.8378359232 0.02017736047 0.15)
(0.8292151173 -0.01820485365 0.15)
(1.043338134 0.04103957474 0.15)
(1.022342224 0.04389589575 0.15)
(1.020333119 0.02115937095 0.15)
(1.041220977 0.01822088103 0.15)
(0.9778650876 0.02629644613 0.15)
(0.9800507814 0.04929096005 0.15)
(0.9623961538 -0.02858024503 0.15)
(-0.04550113338 0.04937964384 0.15)
(-0.04638909725 0.0361332574 0.15)
(-0.03567593024 0.034758041 0.15)
(-0.03537539206 0.04189072969 0.15)
(-0.03485173022 0.04865722705 0.15)
(-0.04827900027 -0.0009704228356 0.15)
(-0.0368719701 -0.00298648237 0.15)
(-0.0363629151 0.00902606185 0.15)
(-0.04782156857 0.01143718012 0.15)
(-0.008337299897 -0.001128409354 0.15)
(-0.008643821332 -0.006938237892 0.15)
(0.0004369282969 0.09864116197 0.15)
(-0.0002867236959 0.09273676557 0.15)
(-0.03908808627 0.1003806164 0.15)
(-0.04071941362 0.08831532761 0.15)
(-0.02964119974 0.08788924549 0.15)
(-0.02775713656 0.100103422 0.15)
(-0.0340844079 0.05590343942 0.15)
(-0.03327098566 0.06253053311 0.15)
(-0.04407294506 0.06306997829 0.15)
(0.2507714455 0.122620277 0.15)
(0.2502149219 0.1165896004 0.15)
(0.2555778017 0.1154849269 0.15)
(0.2561532744 0.1217739578 0.15)
(0.1838010214 0.1057883504 0.15)
(0.1892191158 0.105798343 0.15)
(0.1897014329 0.1109642769 0.15)
(0.1842866376 0.1110439631 0.15)
(0.2055031683 0.105575489 0.15)
(0.2059783082 0.11062077 0.15)
(0.2005500839 0.1107722037 0.15)
(0.2000697304 0.1057032029 0.15)
(0.2075555852 0.1273175594 0.15)
(0.2021338717 0.1277231787 0.15)
(0.2016067623 0.1220528256 0.15)
(0.2070296798 0.1217251284 0.15)
(0.4235130446 0.1068692967 0.15)
(0.4229778085 0.101078881 0.15)
(0.4283589799 0.1005610272 0.15)
(0.4288990283 0.1063491887 0.15)
(0.4212017545 0.08311644286 0.15)
(0.4265563721 0.08249640526 0.15)
(0.4271817206 0.08861941836 0.15)
(0.4218102815 0.08916639757 0.15)
(0.4430635258 0.08246998014 0.15)
(0.4435289059 0.08792963498 0.15)
(0.4380924558 0.08821972159 0.15)
(0.4375955413 0.08264749865 0.15)
(0.3566975493 0.09037580444 0.15)
(0.3620373055 0.08946569929 0.15)
(0.3625115388 0.0946419241 0.15)
(0.3571745789 0.09551722205 0.15)
(0.3776258122 0.08657388912 0.15)
(0.3785573828 0.0925227672 0.15)
(0.3731690351 0.09297409946 0.15)
(0.3726018213 0.08751013409 0.15)
(0.3803561049 0.1107619949 0.15)
(0.374970887 0.1112362359 0.15)
(0.3743879284 0.1052453718 0.15)
(0.3797777337 0.1047989258 0.15)
(0.5531436223 -0.1115300275 0.15)
(0.5585043403 -0.1120193698 0.15)
(0.5495062334 -0.1509827122 0.15)
(0.5602275769 -0.1519623925 0.15)
(0.5612639303 -0.1407059964 0.15)
(0.5505437672 -0.1397244172 0.15)
(0.5923890823 -0.1548961773 0.15)
(0.5934246042 -0.1436487428 0.15)
(0.5827053445 -0.1426682517 0.15)
(0.5816695455 -0.1539186733 0.15)
(0.5066348916 -0.147064289 0.15)
(0.5173501685 -0.1480444107 0.15)
(0.5183882566 -0.1367801412 0.15)
(0.5076731646 -0.1357980282 0.15)
(0.5398235118 -0.1387438336 0.15)
(0.5387857931 -0.1500041201 0.15)
(0.5477822577 -0.1110476554 0.15)
(0.6780820616 -0.1626842232 0.15)
(0.6887950904 -0.1636561018 0.15)
(0.6898255003 -0.1524312918 0.15)
(0.6791139292 -0.1514545269 0.15)
(0.7112674688 -0.1543875727 0.15)
(0.7102390709 -0.1656015221 0.15)
(0.7191849902 -0.1269516991 0.15)
(0.9179822769 -0.1387057386 0.15)
(0.9174452443 -0.1444397472 0.15)
(0.9228829094 -0.1445435494 0.15)
(0.9234536474 -0.1385761566 0.15)
(0.9158499106 -0.161601758 0.15)
(0.9212312513 -0.1620528419 0.15)
(0.9217618179 -0.1563344025 0.15)
(0.9163706741 -0.1559456797 0.15)
(0.9373016003 -0.1635398592 0.15)
(0.9378292311 -0.1578422377 0.15)
(0.9324865592 -0.1572882863 0.15)
(0.9319526153 -0.1630214767 0.15)
(1.038152168 -0.1311074295 0.15)
(1.114259789 -0.1266463477 0.15)
(1.092821865 -0.1246573004 0.15)
(1.120611253 -0.05819036626 0.15)
(1.099173329 -0.05620131917 0.15)
(1.097056171 -0.07902001251 0.15)
(1.118494095 -0.08100905988 0.15)
(0.1642017389 0.131068844 0.15)
(0.1636616781 0.1253130219 0.15)
(0.1690736362 0.124607421 0.15)
(0.1696021936 0.130477394 0.15)
(0.1620436068 0.1088801299 0.15)
(0.1686729848 0.1055573651 0.15)
(0.1680267549 0.1127179903 0.15)
(0.1625945745 0.1139958067 0.15)
(0.1788779068 0.1112106612 0.15)
(0.1784332522 0.1057470749 0.15)
(0.1430788433 0.1387913072 0.15)
(0.1376573656 0.1392752396 0.15)
(0.1468181961 0.1784012445 0.15)
(0.1360048764 0.1793854412 0.15)
(0.1349350073 0.1680708928 0.15)
(0.1457535827 0.1670892213 0.15)
(0.1034166153 0.1823015764 0.15)
(0.1023454877 0.1709821233 0.15)
(0.113210818 0.1700161997 0.15)
(0.1142839514 0.1813334581 0.15)
(0.1792782337 0.1754377527 0.15)
(0.1782166999 0.1641264481 0.15)
(0.1566032103 0.1661066774 0.15)
(0.1576667356 0.1774177972 0.15)
(0.148520882 0.1383124972 0.15)
(0.3372845744 0.1153262746 0.15)
(0.3367828116 0.109810039 0.15)
(0.3421545629 0.1091581824 0.15)
(0.3426654842 0.1147406552 0.15)
(0.3353515956 0.09385402377 0.15)
(0.3406836958 0.0930237674 0.15)
(0.3411454941 0.09806596784 0.15)
(0.3357978811 0.0988697441 0.15)
(0.3518461186 0.09638670991 0.15)
(0.3513854609 0.09128103264 0.15)
(0.2940006759 0.1186191365 0.15)
(0.2885642384 0.118779467 0.15)
(0.2879764608 0.1125093539 0.15)
(0.293438762 0.1126061335 0.15)
(0.4668775269 -0.109312859 0.15)
(0.4776001947 -0.1103107394 0.15)
(0.4786392622 -0.09903591534 0.15)
(0.463758407 -0.14313635 0.15)
(0.4744823682 -0.1441202903 0.15)
(0.4755222836 -0.1328471517 0.15)
(0.4647985072 -0.13186122 0.15)
(0.4969631435 -0.1348153813 0.15)
(0.4959236901 -0.1460835412 0.15)
(0.5127773605 -0.08008149982 0.15)
(0.5074479674 -0.07941690203 0.15)
(0.5069499903 -0.08490315915 0.15)
(0.5122873706 -0.08550331927 0.15)
(0.491454782 -0.07742294542 0.15)
(0.4909297287 -0.08309278624 0.15)
(0.4962737927 -0.0836966798 0.15)
(0.4967892183 -0.07808730814 0.15)
(0.4893631988 -0.1000525933 0.15)
(0.4947202624 -0.1005596738 0.15)
(0.4952378201 -0.09493814717 0.15)
(0.4898832304 -0.09441522748 0.15)
(0.4484048347 0.08182556783 0.15)
(0.4488997577 0.08739797554 0.15)
(0.46426408 0.07922147595 0.15)
(0.4648838155 0.08530564147 0.15)
(0.4595469669 0.08598730102 0.15)
(0.4589663332 0.08005396813 0.15)
(0.4665447914 0.1027962934 0.15)
(0.4611730804 0.1033186926 0.15)
(0.4606470643 0.09762765009 0.15)
(0.4660144835 0.09708064213 0.15)
(0.4890578334 0.1120376497 0.15)
(0.4783171193 0.1130683376 0.15)
(0.4772948273 0.1017686574 0.15)
(0.4921187394 0.1458615203 0.15)
(0.4813885369 0.1468972587 0.15)
(0.480364276 0.1356196548 0.15)
(0.4911005452 0.1345843579 0.15)
(0.4491573819 0.1500112489 0.15)
(0.448129949 0.1387319307 0.15)
(0.4588802507 0.137696336 0.15)
(0.4599076836 0.1489756542 0.15)
(0.4024886884 0.1146796321 0.15)
(0.3970836248 0.1151781103 0.15)
(0.4060645683 0.1541621269 0.15)
(0.3952867353 0.1551932458 0.15)
(0.3942495095 0.1439057976 0.15)
(0.4050259053 0.1428808377 0.15)
(0.3727503945 0.1459497328 0.15)
(0.3737869018 0.1572402606 0.15)
(0.4383935095 0.1510521198 0.15)
(0.4373667952 0.139769722 0.15)
(0.415815225 0.1418436315 0.15)
(0.4168431199 0.1531279283 0.15)
(0.4078860223 0.1141627895 0.15)
(0.6388348261 -0.1195428707 0.15)
(0.6442013952 -0.1200016227 0.15)
(0.63522814 -0.1587945322 0.15)
(0.6459464245 -0.1597638856 0.15)
(0.646981464 -0.1485324751 0.15)
(0.6362625533 -0.1475590463 0.15)
(0.6684052529 -0.1504790348 0.15)
(0.6673730158 -0.161712714 0.15)
(0.6031007458 -0.1558719465 0.15)
(0.6041359906 -0.1446274992 0.15)
(0.6255430164 -0.1465815423 0.15)
(0.6245093217 -0.1578201077 0.15)
(0.6334723734 -0.1190614018 0.15)
(0.6179180393 -0.1119694864 0.15)
(0.6184294759 -0.1063922838 0.15)
(0.6130961166 -0.1058353801 0.15)
(0.6125803953 -0.1114479381 0.15)
(0.6199443664 -0.08977256039 0.15)
(0.6146395686 -0.0890268881 0.15)
(0.6141275592 -0.09461026419 0.15)
(0.6194421786 -0.09529337631 0.15)
(0.5986862395 -0.08684149491 0.15)
(0.5981511131 -0.09258743055 0.15)
(0.6034837407 -0.09326046325 0.15)
(0.6040118037 -0.08756900805 0.15)
(0.684468673 -0.09421744254 0.15)
(0.6791593205 -0.09342344278 0.15)
(0.678671913 -0.0986442411 0.15)
(0.6839855871 -0.09940248721 0.15)
(0.663545972 -0.09109163251 0.15)
(0.662629212 -0.09702159798 0.15)
(0.6680130735 -0.09730479674 0.15)
(0.6685711317 -0.09184209093 0.15)
(0.66084492 -0.115451675 0.15)
(0.6662093302 -0.1158687492 0.15)
(0.6667946476 -0.1097875166 0.15)
(0.6614214577 -0.109432597 0.15)
(0.53221377 -0.1040108681 0.15)
(0.5327296114 -0.09839701568 0.15)
(0.5273608118 -0.09798395303 0.15)
(0.5268495968 -0.1035587659 0.15)
(0.5341997031 -0.0821194167 0.15)
(0.5288084795 -0.08186144568 0.15)
(0.5283460739 -0.08709420496 0.15)
(0.5337354519 -0.08736124425 0.15)
(0.5176319724 -0.08609059144 0.15)
(0.5181118081 -0.08073491677 0.15)
(0.5933596795 -0.08611388938 0.15)
(0.5928164571 -0.09191461138 0.15)
(0.5773781375 -0.08392949402 0.15)
(0.5768113733 -0.08989735589 0.15)
(0.5821461494 -0.09056888063 0.15)
(0.5827046421 -0.08465769698 0.15)
(0.5751128983 -0.107792172 0.15)
(0.5804695903 -0.1083140815 0.15)
(0.5810141431 -0.1024990211 0.15)
(0.5756625005 -0.1019443379 0.15)
(0.6695396372 0.07159760514 0.15)
(0.6705342031 0.08283658724 0.15)
(0.6616906711 0.04404550107 0.15)
(0.6997295289 0.04594169348 0.15)
(0.6890048839 0.04701568202 0.15)
(0.6880183546 0.03580919645 0.15)
(0.8009836509 -0.04163650035 0.15)
(0.8005969145 -0.03764323401 0.15)
(0.7936266165 -0.03870930275 0.15)
(0.8019553957 -0.02103152503 0.15)
(0.7965845265 -0.02048922849 0.15)
(0.7960618509 -0.02620921341 0.15)
(0.8014446233 -0.0267098113 0.15)
(0.789381399 -0.1272958607 0.15)
(0.789927934 -0.1214810847 0.15)
(0.7846211129 -0.1207572187 0.15)
(0.7840604276 -0.126659562 0.15)
(0.8322088871 -0.1313838577 0.15)
(0.8376615114 -0.1313156061 0.15)
(0.8382163067 -0.1254550976 0.15)
(0.8326946949 -0.125942167 0.15)
(0.7036422031 -0.1196920331 0.15)
(0.704175685 -0.1139638213 0.15)
(0.6988354345 -0.1133296506 0.15)
(0.6982929327 -0.1191226059 0.15)
(0.7057008891 -0.09746024745 0.15)
(0.7003880915 -0.09664925675 0.15)
(0.699921674 -0.1017412434 0.15)
(0.7052381557 -0.1025233509 0.15)
(0.6892936431 -0.1001779881 0.15)
(0.6897675489 -0.0950269407 0.15)
(0.7480819874 -0.1039239648 0.15)
(0.7477788581 -0.1083492857 0.15)
(0.7532340721 -0.1081881762 0.15)
(0.7529634058 -0.1046974422 0.15)
(0.7464427514 -0.1238755497 0.15)
(0.7518335151 -0.1241276532 0.15)
(0.752345619 -0.1185324352 0.15)
(0.7469249007 -0.1184732896 0.15)
(0.758763006 -0.01762914877 0.15)
(0.756797147 -0.02455075219 0.15)
(0.7638479304 -0.02322337355 0.15)
(0.7642743772 -0.01777201737 0.15)
(0.9892892565 -0.1440310026 0.15)
(0.9910715542 -0.1367281283 0.15)
(0.9900156031 -0.1841539973 0.15)
(0.9910759972 -0.1727250845 0.15)
(0.9860755276 -0.1732563887 0.15)
(1.022166679 -0.187146068 0.15)
(1.023215546 -0.1757331586 0.15)
(1.012502116 -0.1747331225 0.15)
(1.011443016 -0.1861480952 0.15)
(0.9426454937 -0.1640698208 0.15)
(0.9431648919 -0.1584176331 0.15)
(0.9587015331 -0.1656569443 0.15)
(0.9592002164 -0.1601414273 0.15)
(0.9538474025 -0.1595885435 0.15)
(0.9533442129 -0.1651418057 0.15)
(0.960623805 -0.1439537166 0.15)
(0.9553191693 -0.1431305277 0.15)
(0.9548439068 -0.1485343307 0.15)
(0.9601685328 -0.1492503078 0.15)
(0.9534655539 -0.07683927836 0.15)
(0.9909167145 -0.0762115162 0.15)
(0.9803530864 -0.07473347521 0.15)
(0.979641846 -0.08543001246 0.15)
(0.9930603518 -0.04400420716 0.15)
(0.9825467464 -0.04252823637 0.15)
(0.9817777952 -0.0533488627 0.15)
(0.9923413964 -0.05471894954 0.15)
(0.961028825 -0.1392203916 0.15)
(0.9557321672 -0.1383328647 0.15)
(0.967220421 -0.1063890944 0.15)
(0.9619605817 -0.1056784252 0.15)
(0.9612937799 -0.110970957 0.15)
(0.9654286318 -0.1129283259 0.15)
(1.030624567 -0.0958788329 0.15)
(1.019899684 -0.09489400367 0.15)
(1.018818479 -0.1063307273 0.15)
(1.029555001 -0.1072983582 0.15)
(0.9949086495 -0.09331535763 0.15)
(0.9953097942 -0.08790939805 0.15)
(0.8750688467 -0.1352301208 0.15)
(0.875578377 -0.1296409911 0.15)
(0.8702656708 -0.1287857195 0.15)
(0.8697408741 -0.1344636184 0.15)
(0.9243301324 -0.1329070861 0.15)
(0.9198710752 -0.1321276029 0.15)
(0.02877623275 0.09617850566 0.15)
(0.02819608359 0.09026230127 0.15)
(0.0338116954 0.08977732937 0.15)
(0.03444729212 0.09561246454 0.15)
(0.009737024922 0.07977729948 0.15)
(0.003914484372 0.08040981948 0.15)
(0.02313108377 0.09672938823 0.15)
(0.02259707874 0.09077797022 0.15)
(0.5485158072 0.04959990617 0.15)
(0.548225363 0.04492163158 0.15)
(0.5532827803 0.04346888963 0.15)
(0.5537235595 0.04852268149 0.15)
(0.5431480637 0.05008929768 0.15)
(0.5434956651 0.04628039528 0.15)
(0.7395882589 0.007810675504 0.15)
(0.7342206006 0.00831180936 0.15)
(0.7336439959 0.002476021428 0.15)
(0.7390180924 0.001990158076 0.15)
(0.7228906465 0.003435471984 0.15)
(0.7234710996 0.009291089186 0.15)
(0.7222656748 -0.01177587337 0.15)
(0.7219084194 -0.007789590495 0.15)
(0.7148821327 -0.009112726118 0.15)
(0.1502045676 -0.0241005307 0.15)
(0.1505235452 -0.01958016749 0.15)
(0.1452589477 -0.01872594487 0.15)
(0.1448323023 -0.02358410583 0.15)
(0.1556983326 -0.02392441858 0.15)
(0.1554408076 -0.02036781688 0.15)
(0.01970972763 -0.01033379986 0.15)
(0.02017928005 -0.004640832706 0.15)
(0.01451475845 -0.004001080335 0.15)
(0.01405923754 -0.009709509921 0.15)
(0.02160446061 0.01219942166 0.15)
(0.01717797321 0.01445350223 0.15)
(0.01532646186 0.007502225913 0.15)
(0.02090050845 0.006690496587 0.15)
(-0.002139745302 0.00975547642 0.15)
(0.003777843148 0.008878429667 0.15)
(0.02646723901 0.005902745699 0.15)
(0.02614688177 0.01008322023 0.15)
(0.02538000381 -0.01092668343 0.15)
(0.02582295703 -0.005204333246 0.15)
(0.6536623875 0.01594622316 0.15)
(0.6590182183 0.01540420714 0.15)
(0.6595132029 0.02100975088 0.15)
(0.6540933505 0.02135965995 0.15)
(0.6757078383 0.01973656581 0.15)
(0.6702821461 0.02006683038 0.15)
(0.6697102428 0.01422759335 0.15)
(0.6772909472 0.03685341286 0.15)
(0.671920193 0.0373644752 0.15)
(0.6713923127 0.03166416525 0.15)
(0.676775225 0.03118672347 0.15)
(0.6677711159 0.007366798352 0.15)
(0.6540045959 0.01199260008 0.15)
(0.6586301681 0.01045328386 0.15)
(0.8213817359 -0.04583794387 0.15)
(0.8267391537 -0.04637367964 0.15)
(0.8272095052 -0.04079549719 0.15)
(0.821789367 -0.04041619601 0.15)
(0.8428049923 -0.0479201345 0.15)
(0.8433008427 -0.04229443455 0.15)
(0.8379709512 -0.04172180401 0.15)
(0.8375076267 -0.04726754691 0.15)
(0.8447656972 -0.0254779471 0.15)
(0.8394318088 -0.02491592266 0.15)
(0.8389581543 -0.03048640704 0.15)
(0.844290781 -0.03105120678 0.15)
(0.8371687554 -0.05251106491 0.15)
(0.8423601632 -0.05342889795 0.15)
(0.8216936613 -0.04996641702 0.15)
(0.8260188807 -0.05174460675 0.15)
(0.8641703503 -0.05023667843 0.15)
(0.8587782969 -0.04978198946 0.15)
(0.8582541573 -0.05549610403 0.15)
(0.8636578904 -0.055911504 0.15)
(0.8474899956 -0.05452329746 0.15)
(0.8480526562 -0.04870790853 0.15)
(0.8825144856 -0.07540654217 0.15)
(0.8843012182 -0.06888933764 0.15)
(0.8789585175 -0.06829239977 0.15)
(0.8782726122 -0.07358516768 0.15)
(0.8856362606 -0.05230294152 0.15)
(0.8802842042 -0.05174189282 0.15)
(0.879822061 -0.05729655298 0.15)
(0.8851816068 -0.05784182613 0.15)
(0.8690372818 -0.05638359762 0.15)
(0.8695455905 -0.05072104101 0.15)
(0.9069119176 -0.05477446121 0.15)
(0.901611496 -0.05414398587 0.15)
(0.9011392642 -0.0597099624 0.15)
(0.9064428392 -0.06033892259 0.15)
(0.8905307735 -0.05842319478 0.15)
(0.8909805021 -0.05289409701 0.15)
(0.8893626906 -0.07462808388 0.15)
(0.8896614825 -0.06943769035 0.15)
(0.07483603119 0.0962382302 0.15)
(0.06798915577 0.09876468296 0.15)
(0.06694132048 0.09462056428 0.15)
(0.07514824517 0.1157065452 0.15)
(0.06965848131 0.1162857938 0.15)
(0.06914226383 0.1103182636 0.15)
(0.0746386961 0.109653935 0.15)
(0.05313941304 0.1179016169 0.15)
(0.05262348072 0.1120486503 0.15)
(0.0581255997 0.1115018992 0.15)
(0.05863316789 0.1173848668 0.15)
(0.09697183705 0.1134070402 0.15)
(0.09151136576 0.1140811885 0.15)
(0.09096378904 0.108178332 0.15)
(0.09647253892 0.1072873963 0.15)
(0.08010826927 0.1091276783 0.15)
(0.08061032477 0.1151720455 0.15)
(0.0476652134 0.1183985757 0.15)
(0.04710870176 0.1125498763 0.15)
(0.03111912138 0.11979566 0.15)
(0.03056745681 0.114031675 0.15)
(0.03605639727 0.1135258163 0.15)
(0.03659273383 0.1193042792 0.15)
(0.03502171516 0.1016433886 0.15)
(0.02942316395 0.1022083263 0.15)
(0.2272079308 0.1048063067 0.15)
(0.2326475805 0.1045182331 0.15)
(0.2331015602 0.1093138011 0.15)
(0.2276774836 0.109704776 0.15)
(0.2503155358 0.1034509159 0.15)
(0.243844406 0.1073102557 0.15)
(0.242991185 0.1039160647 0.15)
(0.2453823774 0.1235076406 0.15)
(0.2448477561 0.1177996204 0.15)
(0.2124431719 0.1213824378 0.15)
(0.2129664177 0.1269029068 0.15)
(0.2109207815 0.1054287557 0.15)
(0.21139811 0.1104435039 0.15)
(0.2222520604 0.109994643 0.15)
(0.2217815756 0.1050428316 0.15)
(0.4000687973 0.08713680306 0.15)
(0.4053812113 0.08614848946 0.15)
(0.405869459 0.09167059877 0.15)
(0.4005144469 0.092448749 0.15)
(0.4164828079 0.08993827685 0.15)
(0.4159167158 0.08406425419 0.15)
(0.4181398523 0.1074082034 0.15)
(0.4176083023 0.101657517 0.15)
(0.415432316 0.07885422405 0.15)
(0.4206354522 0.07769477418 0.15)
(0.3996635589 0.08227123273 0.15)
(0.404947399 0.08112648994 0.15)
(0.4372016136 0.07752498453 0.15)
(0.4426578939 0.07727543929 0.15)
(0.4256157681 0.07655840826 0.15)
(0.3946842637 0.08786737718 0.15)
(0.3943685279 0.08332783244 0.15)
(0.3851968829 0.1044847344 0.15)
(0.3857557442 0.1103457696 0.15)
(0.3820954776 0.08572472788 0.15)
(0.3840498144 0.0926195633 0.15)
(0.395096212 0.09296763127 0.15)
(0.5912365237 0.04454513874 0.15)
(0.5906118566 0.03851606442 0.15)
(0.5960309648 0.03817978239 0.15)
(0.5966334879 0.04412172986 0.15)
(0.5858933825 0.04520227475 0.15)
(0.5853403948 0.03939372143 0.15)
(0.5918286687 0.05050512212 0.15)
(0.5864449504 0.05106047154 0.15)
(0.5934584521 0.06778947351 0.15)
(0.5880652304 0.06830734061 0.15)
(0.5875447215 0.06263235797 0.15)
(0.5929416675 0.06211133331 0.15)
(0.5719443181 0.06983389835 0.15)
(0.5713990385 0.06407594934 0.15)
(0.5767730283 0.06361058352 0.15)
(0.5773048103 0.06932047398 0.15)
(0.5489399707 0.05494005772 0.15)
(0.5435381655 0.0553112907 0.15)
(0.5504893505 0.07194233085 0.15)
(0.545115143 0.07242699933 0.15)
(0.5445814281 0.06668545206 0.15)
(0.5499599572 0.06623653723 0.15)
(0.5289412891 0.07394581498 0.15)
(0.5284038193 0.06814214895 0.15)
(0.5337800183 0.06755987906 0.15)
(0.5343230826 0.07340219354 0.15)
(0.5665790413 0.07034987568 0.15)
(0.5660290007 0.06457308593 0.15)
(0.5553152726 0.06569979137 0.15)
(0.5558493068 0.07142313128 0.15)
(0.5542353707 0.0541796908 0.15)
(0.7593773847 -0.01167848932 0.15)
(0.7539935229 -0.0112004573 0.15)
(0.7533832233 -0.01713962445 0.15)
(0.7610703039 0.00574512485 0.15)
(0.7557084598 0.006276450686 0.15)
(0.7551725522 0.0005437437885 0.15)
(0.7605427543 3.75533053e-05 0.15)
(0.7444074728 0.001539131719 0.15)
(0.7449625012 0.007315559112 0.15)
(0.894422447 -0.1597813984 0.15)
(0.8997757535 -0.1602640273 0.15)
(0.9002709672 -0.1547642571 0.15)
(0.8949165726 -0.1542825316 0.15)
(0.9109968785 -0.1555756395 0.15)
(0.9104906606 -0.1611507152 0.15)
(0.9124773593 -0.1391102974 0.15)
(0.9120076307 -0.1444544566 0.15)
(0.8745446783 -0.1409012489 0.15)
(0.8798883255 -0.1415637546 0.15)
(0.8803963038 -0.135991353 0.15)
(0.8729972312 -0.1577744486 0.15)
(0.8783655249 -0.1582795581 0.15)
(0.8788710755 -0.1527224979 0.15)
(0.8735063643 -0.1521896004 0.15)
(0.8895737263 -0.1537737573 0.15)
(0.889075043 -0.1592892743 0.15)
(0.1075346118 -0.01749200795 0.15)
(0.1080342943 -0.0122038556 0.15)
(0.1027720052 -0.01118403805 0.15)
(0.1021967015 -0.01667025117 0.15)
(0.1128543334 -0.01840155983 0.15)
(0.1133412585 -0.01319678546 0.15)
(0.1069427277 -0.02353577374 0.15)
(0.1122888522 -0.02431229593 0.15)
(0.1051999452 -0.04146434079 0.15)
(0.1105930705 -0.042004896 0.15)
(0.1111424448 -0.03619199025 0.15)
(0.1057583631 -0.03560808514 0.15)
(0.1267339857 -0.04365141475 0.15)
(0.1272542595 -0.03800061382 0.15)
(0.1218719978 -0.03739709295 0.15)
(0.1213417566 -0.04310120102 0.15)
(0.08357109172 -0.03950357538 0.15)
(0.08897309316 -0.03996902944 0.15)
(0.08951419988 -0.03415214286 0.15)
(0.08408195731 -0.03374635013 0.15)
(0.1003576693 -0.03506250924 0.15)
(0.09979523674 -0.04094038646 0.15)
(0.1015723642 -0.02285813512 0.15)
(0.1497789183 -0.02915361731 0.15)
(0.1552746859 -0.02896674418 0.15)
(0.1482947184 -0.04563739466 0.15)
(0.1537018975 -0.04601565415 0.15)
(0.1542385204 -0.04025358779 0.15)
(0.1488113009 -0.04000473027 0.15)
(0.1699091157 -0.0471532217 0.15)
(0.1705013302 -0.04101930087 0.15)
(0.1651102542 -0.04066232006 0.15)
(0.164528083 -0.04673129098 0.15)
(0.1321398429 -0.04419546113 0.15)
(0.1326538109 -0.03859097571 0.15)
(0.1434178126 -0.03963045262 0.15)
(0.1429096402 -0.04520494521 0.15)
(0.1443797985 -0.02881838639 0.15)
(0.06398115242 -0.01411588658 0.15)
(0.06340401104 -0.02007977276 0.15)
(0.06882817129 -0.02076210145 0.15)
(0.069364089 -0.0149654219 0.15)
(0.061841938 -0.03747214152 0.15)
(0.06729295684 -0.03800029218 0.15)
(0.06781608636 -0.03230355862 0.15)
(0.0623652502 -0.03175503773 0.15)
(0.07866024268 -0.03331692897 0.15)
(0.07815123499 -0.0390194921 0.15)
(0.06458654457 -0.008125697853 0.15)
(0.05921179557 -0.007313478524 0.15)
(0.05856681289 -0.01344461245 0.15)
(0.0699005837 -0.00921880978 0.15)
(0.140407347 0.1096948784 0.15)
(0.145793616 0.109762357 0.15)
(0.1463264934 0.1154624042 0.15)
(0.1409213965 0.1156357951 0.15)
(0.1571797839 0.1148873645 0.15)
(0.156633138 0.1097100248 0.15)
(0.1588112005 0.1316372794 0.15)
(0.158260901 0.1259551183 0.15)
(0.1560958703 0.1051316803 0.15)
(0.1610642896 0.1053067219 0.15)
(0.1399688544 0.1042977068 0.15)
(0.1452971062 0.104627467 0.15)
(0.1185993893 0.1123934457 0.15)
(0.1132109004 0.1125834735 0.15)
(0.1126622659 0.1069300816 0.15)
(0.118016605 0.1070863899 0.15)
(0.101935835 0.106691321 0.15)
(0.1024208162 0.1128872136 0.15)
(0.1350040617 0.109941917 0.15)
(0.1348506078 0.1039474578 0.15)
(0.1234510824 0.1066018539 0.15)
(0.1240407569 0.1117775112 0.15)
(0.1208093259 0.1350647376 0.15)
(0.120275113 0.1293719449 0.15)
(0.1257258208 0.1288566781 0.15)
(0.126264268 0.1345626359 0.15)
(0.1246103561 0.1173754291 0.15)
(0.119181319 0.1179618984 0.15)
(0.1355107755 0.1159986065 0.15)
(0.2789208594 -0.03742716838 0.15)
(0.2784955987 -0.04222710828 0.15)
(0.2838906001 -0.04259590226 0.15)
(0.2842289297 -0.03812674587 0.15)
(0.2771002559 -0.05789390074 0.15)
(0.2824957438 -0.05822497837 0.15)
(0.2829912799 -0.05277585454 0.15)
(0.2775845826 -0.05253311914 0.15)
(0.2987004101 -0.05876224288 0.15)
(0.2992982939 -0.05253474561 0.15)
(0.2938731032 -0.05257792446 0.15)
(0.2933060393 -0.05857066504 0.15)
(0.2556798267 -0.05587865761 0.15)
(0.2610287521 -0.05641932993 0.15)
(0.261519322 -0.05100208362 0.15)
(0.2561771438 -0.05042116252 0.15)
(0.2722098219 -0.05209771021 0.15)
(0.2717271377 -0.05745161414 0.15)
(0.2735821917 -0.03671099316 0.15)
(0.2731434211 -0.04162406879 0.15)
(0.3201474772 -0.06062027461 0.15)
(0.3254948372 -0.06119946705 0.15)
(0.3260846968 -0.05503680575 0.15)
(0.3207431365 -0.05440592808 0.15)
(0.3415053252 -0.06296363945 0.15)
(0.3420755447 -0.05695853752 0.15)
(0.3367543444 -0.05631388189 0.15)
(0.3361781219 -0.06237285964 0.15)
(0.3040796544 -0.05908438161 0.15)
(0.3046887845 -0.05276814383 0.15)
(0.3154000057 -0.05379197772 0.15)
(0.3147976433 -0.06005692137 0.15)
(0.1935881406 -0.02597272539 0.15)
(0.1931000402 -0.03120099164 0.15)
(0.1984341338 -0.03192316995 0.15)
(0.1989196033 -0.02671243562 0.15)
(0.1913797839 -0.04926562166 0.15)
(0.1967372808 -0.04982215368 0.15)
(0.1973015989 -0.04386983228 0.15)
(0.1919508051 -0.04326270314 0.15)
(0.2128300646 -0.05148951495 0.15)
(0.2133738321 -0.04568291819 0.15)
(0.208010443 -0.0450816505 0.15)
(0.2074603419 -0.05093486149 0.15)
(0.1752764916 -0.0476357499 0.15)
(0.1758687246 -0.04150162993 0.15)
(0.1865918885 -0.04265652766 0.15)
(0.1860131962 -0.0487096522 0.15)
(0.1882547995 -0.02522078933 0.15)
(0.1877625458 -0.03047217074 0.15)
(0.2362535178 -0.03177547917 0.15)
(0.2357916673 -0.03685071606 0.15)
(0.2411318409 -0.03755066099 0.15)
(0.2415924052 -0.03250011085 0.15)
(0.234241544 -0.05368781411 0.15)
(0.2396016697 -0.0542376604 0.15)
(0.2401147396 -0.04865367969 0.15)
(0.2347607441 -0.04805940976 0.15)
(0.250829407 -0.04983520635 0.15)
(0.250327251 -0.05533403116 0.15)
(0.2181930205 -0.05204133112 0.15)
(0.2187295973 -0.04627976262 0.15)
(0.2294187065 -0.04746614888 0.15)
(0.2288943534 -0.05313926839 0.15)
(0.2309332535 -0.03105578911 0.15)
(0.2304643642 -0.03615276871 0.15)
(0.3138379709 0.09694306901 0.15)
(0.3192465477 0.09620102462 0.15)
(0.3196831369 0.1011338864 0.15)
(0.3142845072 0.1018207759 0.15)
(0.3304289864 0.09966063136 0.15)
(0.3299774347 0.09468557142 0.15)
(0.3318911617 0.1159070283 0.15)
(0.3313980215 0.1104512546 0.15)
(0.2989153101 0.1128131684 0.15)
(0.2994400348 0.118501117 0.15)
(0.2981783395 0.0988842847 0.15)
(0.2979664281 0.1023588214 0.15)
(0.2909209674 0.09972495168 0.15)
(0.308887167 0.1024024966 0.15)
(0.3084514634 0.09761989563 0.15)
(0.4487710618 -0.0720884998 0.15)
(0.4541051675 -0.07274560093 0.15)
(0.4546770387 -0.06673352175 0.15)
(0.4493500795 -0.06602104403 0.15)
(0.47009754 -0.0747483199 0.15)
(0.470647216 -0.06889968924 0.15)
(0.4653214763 -0.06817406797 0.15)
(0.4647646814 -0.07407777651 0.15)
(0.4273135003 -0.07009461757 0.15)
(0.4327099685 -0.07036100911 0.15)
(0.4333231144 -0.06406643498 0.15)
(0.4279240061 -0.06381767492 0.15)
(0.4440183613 -0.06531656085 0.15)
(0.443430453 -0.07144736619 0.15)
(0.4973023436 -0.07250272999 0.15)
(0.491974675 -0.07178707315 0.15)
(0.5132662899 -0.074660285 0.15)
(0.5079453348 -0.07393721667 0.15)
(0.4754343445 -0.07541963112 0.15)
(0.4759759153 -0.06962588638 0.15)
(0.486643079 -0.07107044933 0.15)
(0.4861164182 -0.07675761573 0.15)
(0.3628483916 -0.06536890339 0.15)
(0.3681902423 -0.06597500192 0.15)
(0.3687181872 -0.06027399496 0.15)
(0.3633861119 -0.05960583412 0.15)
(0.3842146695 -0.06779459912 0.15)
(0.3847170678 -0.06228233924 0.15)
(0.3793841169 -0.06161279157 0.15)
(0.3788728188 -0.06718850059 0.15)
(0.3468320389 -0.06355969659 0.15)
(0.3473947978 -0.05761335672 0.15)
(0.3580539072 -0.05893906729 0.15)
(0.3575074534 -0.0647637934 0.15)
(0.4056156116 -0.06998740129 0.15)
(0.4110061424 -0.07025284024 0.15)
(0.411473893 -0.06498412097 0.15)
(0.4060814889 -0.06472804901 0.15)
(0.4224518014 -0.06411861272 0.15)
(0.4218820089 -0.07010828812 0.15)
(0.3895579041 -0.06839660799 0.15)
(0.3900513378 -0.06294849426 0.15)
(0.4007257721 -0.06421727715 0.15)
(0.4002516787 -0.06953271022 0.15)
(0.5074067554 0.07581366932 0.15)
(0.5020079937 0.07623935399 0.15)
(0.5014087175 0.07025663218 0.15)
(0.5068337538 0.06991929797 0.15)
(0.4859322049 0.07787340271 0.15)
(0.485425515 0.07223911745 0.15)
(0.4907635985 0.07160323961 0.15)
(0.4913053572 0.07736653678 0.15)
(0.5235807866 0.07450242501 0.15)
(0.5230546627 0.06877774858 0.15)
(0.5122880652 0.06969182904 0.15)
(0.5128150687 0.07543681103 0.15)
(0.5117401344 0.05510516781 0.15)
(0.5114005758 0.05888168869 0.15)
(0.5042986951 0.05711182634 0.15)
(0.4583894299 0.07415001628 0.15)
(0.4636323804 0.07310578089 0.15)
(0.4479374283 0.07637654568 0.15)
(0.4805003568 0.07816979112 0.15)
(0.4799698548 0.07245204882 0.15)
(0.4689541876 0.07240271942 0.15)
(0.4696125333 0.07862159403 0.15)
(0.6412396276 -0.09267141878 0.15)
(0.6359034677 -0.0920039837 0.15)
(0.6354350222 -0.09729101709 0.15)
(0.6407917214 -0.0978236733 0.15)
(0.6247646344 -0.09597862152 0.15)
(0.6252566496 -0.09052414953 0.15)
(0.6232656959 -0.1124913611 0.15)
(0.6237709488 -0.1069483334 0.15)
(0.6257072352 -0.08553785229 0.15)
(0.6203967279 -0.08475629907 0.15)
(0.6416626547 -0.0878847292 0.15)
(0.6363411204 -0.08710295632 0.15)
(0.6044794366 -0.08248557029 0.15)
(0.5991559418 -0.08173575294 0.15)
(0.615101644 -0.08398170049 0.15)
(0.6466086521 -0.09311453072 0.15)
(0.6469299322 -0.08865594443 0.15)
(0.6560285948 -0.1092139426 0.15)
(0.6554729106 -0.1150948563 0.15)
(0.6591033393 -0.09043820577 0.15)
(0.6571628122 -0.09729244337 0.15)
(0.6461840014 -0.0981027321 0.15)
(0.5560432233 -0.08121988162 0.15)
(0.5506483104 -0.08096920094 0.15)
(0.5500427062 -0.08721496307 0.15)
(0.5554349327 -0.0874837731 0.15)
(0.5391636492 -0.08736142863 0.15)
(0.5396639709 -0.08186072633 0.15)
(0.5375815903 -0.1044344854 0.15)
(0.5381074658 -0.09875578266 0.15)
(0.5400927615 -0.07687120175 0.15)
(0.5346268883 -0.07713637152 0.15)
(0.5566048086 -0.07572998538 0.15)
(0.5515651299 -0.07501694564 0.15)
(0.5185915791 -0.07537993911 0.15)
(0.5292583381 -0.07672062041 0.15)
(0.5831835953 -0.07948472213 0.15)
(0.5778602945 -0.07873281376 0.15)
(0.593832447 -0.0809859356 0.15)
(0.5613907404 -0.08179738133 0.15)
(0.561890392 -0.07647708867 0.15)
(0.5725369937 -0.0779809054 0.15)
(0.572051439 -0.08320338208 0.15)
(0.5703115025 -0.1013935307 0.15)
(0.5697570357 -0.1072721471 0.15)
(0.5714761167 -0.08923100892 0.15)
(0.5607943963 -0.08797581099 0.15)
(0.6466054411 0.01445500119 0.15)
(0.6342945692 0.04088547353 0.15)
(0.6337379148 0.0350915214 0.15)
(0.6390802408 0.03451219346 0.15)
(0.6396518874 0.04035948866 0.15)
(0.6324356471 0.01908568022 0.15)
(0.6373958153 0.01749402856 0.15)
(0.6379296993 0.02276113118 0.15)
(0.6327419395 0.02385899714 0.15)
(0.6485823171 0.02143039887 0.15)
(0.6274127303 0.02447145497 0.15)
(0.627766107 0.02058408343 0.15)
(0.6289211686 0.04134636579 0.15)
(0.6283545693 0.03552099806 0.15)
(0.8143765912 -0.04700898222 0.15)
(0.8067980059 -0.02727821398 0.15)
(0.8073163045 -0.02159458015 0.15)
(0.8054767246 -0.04342403725 0.15)
(0.8058287047 -0.03850467661 0.15)
(0.8163182342 -0.04015354256 0.15)
(0.7946964587 -0.1279417544 0.15)
(0.7952284645 -0.122218628 0.15)
(0.8272295811 -0.126090909 0.15)
(0.826777761 -0.1313178212 0.15)
(0.7269562398 -0.1006918417 0.15)
(0.7216399747 -0.09988575161 0.15)
(0.72119117 -0.1048636776 0.15)
(0.7265112116 -0.1056398888 0.15)
(0.7105557625 -0.1033041568 0.15)
(0.7110139176 -0.09826874884 0.15)
(0.7089915104 -0.1202610619 0.15)
(0.7095149767 -0.1145975014 0.15)
(0.7415567367 -0.1181616193 0.15)
(0.7410826927 -0.1235089935 0.15)
(0.742854163 -0.1030955499 0.15)
(0.7424419287 -0.1078525094 0.15)
(0.7318289036 -0.1064089523 0.15)
(0.7322717587 -0.101495151 0.15)
(0.7524543343 -0.02291888488 0.15)
(0.9655190576 -0.1498170394 0.15)
(0.9659503402 -0.1446166432 0.15)
(0.964067127 -0.1661045586 0.15)
(0.9645651431 -0.160607057 0.15)
(0.9811797679 -0.1650821361 0.15)
(0.9817555938 -0.1594171064 0.15)
(0.9756047568 -0.1604944693 0.15)
(0.9750740155 -0.1660632525 0.15)
(0.9880322408 -0.1096816739 0.15)
(0.9829955145 -0.1085146654 0.15)
(0.9821532692 -0.1148863038 0.15)
(0.9864583614 -0.1176499485 0.15)
(0.9721911833 -0.1123045159 0.15)
(0.972563023 -0.1069221499 0.15)
(0.9663136418 -0.140073176 0.15)
(0.9456745335 -0.1036586019 0.15)
(0.9498753422 -0.1055761941 0.15)
(0.9516641699 -0.09904723288 0.15)
(0.9463509856 -0.09838112607 0.15)
(0.9677101539 -0.1007643835 0.15)
(0.9624040608 -0.1001409141 0.15)
(0.9690309051 -0.08418047772 0.15)
(0.9637080274 -0.08353225185 0.15)
(0.9633013632 -0.08901934851 0.15)
(0.9686339661 -0.08962770231 0.15)
(0.8808919425 -0.1304870025 0.15)
(0.8897910999 -0.07860517097 0.15)
(0.9263371642 -0.07952772168 0.15)
(0.9258482679 -0.08516506387 0.15)
(0.9312173079 -0.08567295427 0.15)
(0.9317053173 -0.08004517102 0.15)
(0.94109675 -0.09763170895 0.15)
(0.9414535167 -0.1017315021 0.15)
(0.9209579945 -0.07905323832 0.15)
(0.9204400828 -0.08474352635 0.15)
(0.9128612789 -0.1342580144 0.15)
(0.001231305734 0.2598174651 0.15)
(-0.004911701631 0.4204320223 0.15)
(-0.009177475097 0.37539213 0.15)
(-0.1390276799 0.3858116815 0.15)
(-0.09582290889 0.3826202014 0.15)
(0.70630852 -0.0006042660234 0.15)
(0.7011891886 0.0006357862513 0.15)
(0.7009090683 -0.004104406912 0.15)
(0.7057882608 -0.005832762273 0.15)
(0.6959155785 0.001414518665 0.15)
(0.6962930815 -0.002483427001 0.15)
(0.862487323 0.1768043789 0.15)
(0.8545585443 0.3390878848 0.15)
(0.8511779559 0.2926748643 0.15)
(0.8937669278 0.2884496432 0.15)
(0.7657820222 0.3012550953 0.15)
(0.6889051721 0.0001109998439 0.15)
(0.8496221605 -0.03162944879 0.15)
(0.850088695 -0.02607075707 0.15)
(0.8486061688 -0.04293699468 0.15)
(0.8646833256 -0.04456712301 0.15)
(0.8593149877 -0.04405166511 0.15)
(0.7143945097 0.08973957779 0.15)
(0.7903007007 0.0932419687 0.15)
(0.7689108582 0.09547863301 0.15)
(0.7669101156 0.07298376922 0.15)
(0.7963419103 0.1609735149 0.15)
(0.7749517702 0.1631961467 0.15)
(0.7729404391 0.1406304582 0.15)
(0.7943276844 0.1384090993 0.15)
(-0.02421572836 0.04755223721 0.15)
(-0.0247320169 0.04055671723 0.15)
(-0.01933711255 0.03924732964 0.15)
(-0.01892438018 0.04675144674 0.15)
(-0.02509868231 0.01995706446 0.15)
(-0.01953486781 0.01900799306 0.15)
(-0.01972837368 0.02589030319 0.15)
(-0.02522444731 0.0269135335 0.15)
(-0.008252857152 0.02311928788 0.15)
(-0.008179220792 0.01695271282 0.15)
(-0.002940961504 0.07477867699 0.15)
(-0.004147685421 0.06846646508 0.15)
(-0.02050032876 0.07484468004 0.15)
(-0.02143749829 0.06846959649 0.15)
(-0.01593042258 0.06811048996 0.15)
(-0.01489217916 0.0746072562 0.15)
(-0.01801083587 0.05447930321 0.15)
(-0.02338242476 0.05495972161 0.15)
(-0.06607220147 0.2426287848 0.15)
(-0.06867504589 0.2196941654 0.15)
(-0.04683421055 0.2179680195 0.15)
(-0.04442042296 0.2407906258 0.15)
(-0.0521888994 0.171979034 0.15)
(-0.0743766553 0.1733075296 0.15)
(0.00164025073 0.156553061 0.15)
(0.0772776402 0.1389039278 0.15)
(0.07673093873 0.1332042594 0.15)
(0.08214839649 0.1327202983 0.15)
(0.0827021255 0.138421022 0.15)
(0.08110304732 0.1211244817 0.15)
(0.07564870565 0.1216427973 0.15)
(0.09749986136 0.1194823405 0.15)
(0.09203130334 0.1200530937 0.15)
(0.3811243626 -0.1014157868 0.15)
(0.391839619 -0.1024069538 0.15)
(0.39287743 -0.0911456715 0.15)
(0.378001845 -0.1352650742 0.15)
(0.388717748 -0.1362492711 0.15)
(0.3897589568 -0.1249621924 0.15)
(0.3790432385 -0.123976004 0.15)
(0.4208734229 -0.1392026009 0.15)
(0.4219143545 -0.1279185094 0.15)
(0.4111925695 -0.1269327624 0.15)
(0.4101515455 -0.1382178497 0.15)
(0.3351663904 -0.1313278861 0.15)
(0.3458632823 -0.1323113235 0.15)
(0.3469061334 -0.1210173671 0.15)
(0.3362093339 -0.1200329341 0.15)
(0.368328516 -0.1229899081 0.15)
(0.3672860344 -0.1342798815 0.15)
(0.3714492988 -0.08914849409 0.15)
(0.3704101944 -0.1004237165 0.15)
(0.782508063 0.003613583332 0.15)
(0.7771580218 0.004153053589 0.15)
(0.7766700258 -0.001452937694 0.15)
(0.7820258329 -0.00197356003 0.15)
(0.7659203718 -0.0004536582029 0.15)
(0.7664323216 0.00520484469 0.15)
(0.7648153859 -0.01200597919 0.15)
(0.7094680028 0.03365425648 0.15)
(0.710441944 0.04484413399 0.15)
(0.7425767565 0.04155770701 0.15)
(0.7318727506 0.0426593069 0.15)
(0.7455185548 0.07520191308 0.15)
(0.7348215559 0.07630326456 0.15)
(0.7338334448 0.06506890591 0.15)
(0.7445319567 0.0639730381 0.15)
(0.8515909341 -0.155769254 0.15)
(0.8569313885 -0.1562496861 0.15)
(0.8574512281 -0.1506035651 0.15)
(0.8521149824 -0.1500994204 0.15)
(0.868139754 -0.1516555225 0.15)
(0.8676278699 -0.157259197 0.15)
(0.8691993167 -0.1402355712 0.15)
(0.1029521335 0.1189904291 0.15)
(0.1137726731 0.1183351721 0.15)
(0.115366199 0.1355426443 0.15)
(0.1148357011 0.1298465944 0.15)
(0.431603266 -0.1401880912 0.15)
(0.4326441052 -0.1289049954 0.15)
(0.4540836923 -0.1308761198 0.15)
(0.453043315 -0.1421542369 0.15)
(0.4572094044 -0.09700322654 0.15)
(0.4561648164 -0.1083159025 0.15)
(0.4465031506 -0.09599080034 0.15)
(0.4470406122 -0.09023051909 0.15)
(0.4416824349 -0.08971379445 0.15)
(0.4411450379 -0.0954733787 0.15)
(0.4428285032 -0.07767539007 0.15)
(0.4481777069 -0.07825636043 0.15)
(0.4267106934 -0.07632105548 0.15)
(0.4320971531 -0.07666284484 0.15)
(0.4213098626 -0.07611250827 0.15)
(0.4051277353 -0.07539726487 0.15)
(0.4105070864 -0.07573990113 0.15)
(0.403593333 -0.09212986841 0.15)
(0.4089538867 -0.09261015676 0.15)
(0.4094740107 -0.08697179518 0.15)
(0.4041105581 -0.08651192635 0.15)
(0.83169321 -0.1370067641 0.15)
(0.8371024612 -0.1372003251 0.15)
(0.8301434019 -0.1538837619 0.15)
(0.8355101558 -0.1543405224 0.15)
(0.8360268748 -0.1487172106 0.15)
(0.8306554503 -0.1482891413 0.15)
(0.8467622302 -0.1496108172 0.15)
(0.8462399167 -0.1552727774 0.15)
(0.7797514503 -0.02953926975 0.15)
(0.7849973995 -0.03034552442 0.15)
(0.7901796429 -0.03135130693 0.15)
(0.7907117939 -0.02561579097 0.15)
(0.7912314756 -0.01991725116 0.15)
(0.8548749648 -0.1211317169 0.15)
(0.8496143502 -0.1202778639 0.15)
(0.8445885026 -0.1194590495 0.15)
(0.8436883987 -0.1252636175 0.15)
(0.8430933859 -0.1313735773 0.15)
(0.7697292928 -0.01804709572 0.15)
(0.7692477896 -0.02363722903 0.15)
(0.7685115707 -0.0290284799 0.15)
(0.7727928965 -0.0306735954 0.15)
(0.8024592363 -0.01538465271 0.15)
(0.7970937736 -0.01482738162 0.15)
(0.8038804516 0.001372813942 0.15)
(0.798531135 0.001941743237 0.15)
(0.7980595755 -0.003627810707 0.15)
(0.8034105325 -0.00420070852 0.15)
(0.7873694656 -0.002517155878 0.15)
(0.7878512338 0.003065008867 0.15)
(0.9500237731 -0.1422510518 0.15)
(0.9504434208 -0.1373925428 0.15)
(0.8644247394 -0.1336994196 0.15)
(0.8649667126 -0.127922986 0.15)
(0.8654176483 -0.1228896198 0.15)
(0.860142494 -0.1219868141 0.15)
(0.9288401544 -0.1389607333 0.15)
(0.929365732 -0.133739861 0.15)
(0.04005036326 0.09495119725 0.15)
(0.04074762284 0.08755364437 0.15)
(0.5589064302 0.04736129556 0.15)
(0.5583437699 0.04198970458 0.15)
(0.738418461 -0.003920623251 0.15)
(0.7330403795 -0.003445236557 0.15)
(0.7277140394 -0.002823504123 0.15)
(0.7272100851 -0.008471601182 0.15)
(0.7268295515 -0.01343892905 0.15)
(0.7026077792 0.01731084294 0.15)
(0.697249107 0.01784388307 0.15)
(0.7186628982 0.01558390656 0.15)
(0.7133015365 0.01613125636 0.15)
(0.7201860802 0.03256360342 0.15)
(0.714826673 0.03311037015 0.15)
(0.714338795 0.02749482711 0.15)
(0.7196959429 0.02694535755 0.15)
(0.1395001858 -0.02284061904 0.15)
(0.139956716 -0.01786602103 0.15)
(0.09255348288 0.1832662918 0.15)
(0.09147719188 0.1719453092 0.15)
(0.05994506209 0.186135087 0.15)
(0.05883950507 0.1748017553 0.15)
(0.06970474906 0.1738478912 0.15)
(0.0708246445 0.1851798926 0.15)
(0.06746476622 0.1511829021 0.15)
(0.05653550651 0.152113581 0.15)
(0.6821476607 0.0306937833 0.15)
(0.6826512803 0.03632744956 0.15)
(0.6811064008 0.01933038294 0.15)
(0.6918651179 0.01833136728 0.15)
(0.8631813667 -0.06150208927 0.15)
(0.8578496816 -0.06091631683 0.15)
(0.8581689353 -0.06505239955 0.15)
(0.8624641106 -0.06686214862 0.15)
(0.8508836379 -0.06199065396 0.15)
(0.873981472 -0.0717427517 0.15)
(0.8736422403 -0.06764880349 0.15)
(0.8666989646 -0.06865093526 0.15)
(0.8739835341 -0.06236835134 0.15)
(0.8685444765 -0.0620197737 0.15)
(-0.03259292695 0.1475829285 0.15)
(-0.03407593855 0.135980718 0.15)
(-0.02295231616 0.1352939259 0.15)
(-0.02166251567 0.146755585 0.15)
(-0.02616646399 0.1118885686 0.15)
(-0.03739740241 0.1123734114 0.15)
(0.001130971998 0.1044878469 0.15)
(0.06229404405 0.09354028258 0.15)
(0.06254252857 0.09918104984 0.15)
(0.0631047713 0.1050103368 0.15)
(0.05761803058 0.1055648001 0.15)
(0.0520854178 0.1061303488 0.15)
(0.09715271397 0.09998713791 0.15)
(0.09037152724 0.1026771214 0.15)
(0.0892922503 0.09876781162 0.15)
(0.08497374198 0.1029996748 0.15)
(0.0844406746 0.0979578602 0.15)
(0.6020552198 0.04381372636 0.15)
(0.6015306408 0.03811652472 0.15)
(0.6011270076 0.03281363583 0.15)
(0.6064737877 0.03223901654 0.15)
(0.6116733545 0.0311709874 0.15)
(0.575043964 0.03707303165 0.15)
(0.5797950351 0.03567402126 0.15)
(0.5800986853 0.04041886049 0.15)
(0.5805504763 0.04588359246 0.15)
(0.6149268024 0.06570621231 0.15)
(0.6095629371 0.066226578 0.15)
(0.6090537476 0.06058700104 0.15)
(0.6144187749 0.06006833526 0.15)
(0.5983252091 0.06159737723 0.15)
(0.5988396307 0.06726087312 0.15)
(0.5972211707 0.0500336198 0.15)
(0.536075842 0.04841179025 0.15)
(0.5380249528 0.05531524533 0.15)
(0.5386096649 0.06121676538 0.15)
(0.5331913799 0.06161604077 0.15)
(0.5278368536 0.06228035931 0.15)
(0.7481744969 -0.01620279017 0.15)
(0.7486711328 -0.0105578003 0.15)
(0.7492308041 -0.004752980414 0.15)
(0.7438348048 -0.004297523614 0.15)
(0.09679421134 -0.01616568469 0.15)
(0.09774144452 -0.01017788715 0.15)
(0.08577845705 -0.007651784278 0.15)
(0.118161358 -0.01931806846 0.15)
(0.1186373035 -0.01415586179 0.15)
(0.1176151392 -0.02511861286 0.15)
(0.1170591008 -0.03097087125 0.15)
(0.122406651 -0.03166708169 0.15)
(0.1277737388 -0.0323583761 0.15)
(0.1627982627 -0.02149364957 0.15)
(0.1608348752 -0.02842108827 0.15)
(0.1602602499 -0.03441955478 0.15)
(0.1657163254 -0.03443317214 0.15)
(0.1711178143 -0.03472122014 0.15)
(0.1331599528 -0.03302754283 0.15)
(0.1385381095 -0.03364283479 0.15)
(0.1390218109 -0.0282238465 0.15)
(0.03996211272 -0.03535873732 0.15)
(0.04545075759 -0.03588726567 0.15)
(0.04597390558 -0.03019033297 0.15)
(0.04047552831 -0.02967144673 0.15)
(0.05689578889 -0.0312124214 0.15)
(0.05637065462 -0.03693076215 0.15)
(0.05796531133 -0.01948487475 0.15)
(0.05307491113 -0.01305618236 0.15)
(0.05367450038 -0.007065756524 0.15)
(0.05566792997 -9.81213525e-05 0.15)
(0.04842865562 -0.001729498356 0.15)
(0.04293657916 -0.00123037875 0.15)
(0.0808849457 -0.006555107532 0.15)
(0.07565753017 -0.005345600541 0.15)
(0.07522392308 -0.01030585496 0.15)
(0.07474489962 -0.01579457365 0.15)
(0.2891414729 -0.03875959727 0.15)
(0.2893676694 -0.04226418224 0.15)
(0.2963861687 -0.03969359228 0.15)
(0.2889313842 -0.04724788954 0.15)
(0.2944375086 -0.04660301452 0.15)
(0.2999017834 -0.04625765414 0.15)
(0.3008186552 -0.04027236238 0.15)
(0.2566664757 -0.0450172589 0.15)
(0.2620028172 -0.04565026352 0.15)
(0.2673362382 -0.04627144778 0.15)
(0.2678140743 -0.04095897313 0.15)
(0.268265319 -0.03599804528 0.15)
(0.331993048 -0.0496562376 0.15)
(0.3373197085 -0.05033946262 0.15)
(0.3378071992 -0.04511776814 0.15)
(0.3324819984 -0.0444188107 0.15)
(0.3426368532 -0.05102783051 0.15)
(0.3431242309 -0.04581817709 0.15)
(0.3052972772 -0.04645877654 0.15)
(0.305860391 -0.04093075847 0.15)
(0.3106514143 -0.04698657527 0.15)
(0.311156145 -0.04162236403 0.15)
(0.2042454775 -0.02745825569 0.15)
(0.2037681258 -0.03264644355 0.15)
(0.2032145808 -0.03852594883 0.15)
(0.2085648933 -0.03919238714 0.15)
(0.2139200016 -0.03985043262 0.15)
(0.1764805289 -0.03523233998 0.15)
(0.1818319469 -0.03585439059 0.15)
(0.1824204423 -0.02973890501 0.15)
(0.1829130993 -0.0244507034 0.15)
(0.2469449319 -0.03320762941 0.15)
(0.246480941 -0.03824098947 0.15)
(0.2459777523 -0.04374012018 0.15)
(0.2513264839 -0.04438030014 0.15)
(0.2192686665 -0.04050215579 0.15)
(0.2246096889 -0.04114965484 0.15)
(0.2251374008 -0.03546198339 0.15)
(0.2256106724 -0.03035024552 0.15)
(0.4641966237 -0.08005957851 0.15)
(0.4695383821 -0.08066667276 0.15)
(0.4535205 -0.07885230258 0.15)
(0.451860364 -0.09648544149 0.15)
(0.452393617 -0.09074887283 0.15)
(0.4845257182 -0.09389133363 0.15)
(0.4840034806 -0.09954165108 0.15)
(0.4855827238 -0.08248811766 0.15)
(0.4748830907 -0.08127444245 0.15)
(0.3783587697 -0.07278303597 0.15)
(0.3837083562 -0.07333823147 0.15)
(0.3623131636 -0.07111593433 0.15)
(0.3676617174 -0.07167143573 0.15)
(0.3607368654 -0.08814855037 0.15)
(0.3660936724 -0.0886475727 0.15)
(0.3666143414 -0.08300333635 0.15)
(0.3612582736 -0.08249634824 0.15)
(0.3745679291 -0.05533028046 0.15)
(0.3798928579 -0.05605381789 0.15)
(0.3803557186 -0.05100016663 0.15)
(0.3750337902 -0.05025511439 0.15)
(0.3852186901 -0.05677844344 0.15)
(0.3856774437 -0.05174740947 0.15)
(0.3479481765 -0.05173564375 0.15)
(0.3484250663 -0.04655243451 0.15)
(0.3532679624 -0.05244966537 0.15)
(0.3537447466 -0.04728924381 0.15)
(0.4173697137 -0.0597061339 0.15)
(0.4244004985 -0.05720879219 0.15)
(0.4171276081 -0.05617817923 0.15)
(0.3905436189 -0.05750198087 0.15)
(0.3910001552 -0.05249484427 0.15)
(0.3958700053 -0.05822063207 0.15)
(0.3963218896 -0.05324198754 0.15)
(0.3987501522 -0.08603004484 0.15)
(0.3982344217 -0.09164270238 0.15)
(0.3997635991 -0.07494476439 0.15)
(0.3890582476 -0.07389014109 0.15)
(0.4954741531 0.06491826623 0.15)
(0.4902454527 0.06594290129 0.15)
(0.4898010304 0.06088231696 0.15)
(0.4949130613 0.05955275634 0.15)
(0.4849856931 0.06688173884 0.15)
(0.4846899767 0.06221158605 0.15)
(0.5225315507 0.06308553274 0.15)
(0.5172141494 0.0637819588 0.15)
(0.5167934411 0.0584790473 0.15)
(0.5165016542 0.05381877374 0.15)
(0.4795560344 0.06720172589 0.15)
(0.4798786328 0.06344806966 0.15)
(0.4724426148 0.06530749769 0.15)
(0.4713920303 0.09655619503 0.15)
(0.471920936 0.1022675575 0.15)
(0.4702467437 0.08475352657 0.15)
(0.4864638955 0.08363642885 0.15)
(0.4810578693 0.08401628869 0.15)
(0.8086891255 -0.1519735409 0.15)
(0.8140507468 -0.1524639713 0.15)
(0.8145547474 -0.146912793 0.15)
(0.8091934956 -0.1464183797 0.15)
(0.8252848573 -0.1478521104 0.15)
(0.8247784753 -0.1534181322 0.15)
(0.8262923966 -0.1367547325 0.15)
(0.7888402737 -0.1330739798 0.15)
(0.7941672502 -0.1336455565 0.15)
(0.7872823049 -0.150006461 0.15)
(0.792623016 -0.1504949512 0.15)
(0.7931332373 -0.1449091998 0.15)
(0.7877946305 -0.1444088532 0.15)
(0.8038338863 -0.1459170888 0.15)
(0.8033276889 -0.1514811191 0.15)
(0.8116503345 -0.1190510144 0.15)
(0.8063441415 -0.1182229609 0.15)
(0.8010425042 -0.1173891035 0.15)
(0.8005342026 -0.1229649901 0.15)
(0.8000180081 -0.1285934725 0.15)
(0.821389897 -0.1309911668 0.15)
(0.8218448839 -0.1257409475 0.15)
(0.8222798786 -0.1206087861 0.15)
(0.8169602558 -0.1198605331 0.15)
(0.7477980811 -0.02116903382 0.15)
(0.9713855008 -0.1448015609 0.15)
(0.9709648016 -0.1500069562 0.15)
(0.9704937519 -0.1553653542 0.15)
(0.9761388858 -0.1549541208 0.15)
(0.9823662187 -0.1537342153 0.15)
(0.9858903169 -0.1235125419 0.15)
(0.9805435082 -0.1212712924 0.15)
(0.9862564737 -0.1267534294 0.15)
(0.9716947076 -0.1407112341 0.15)
(0.973943501 -0.09023572357 0.15)
(0.974340556 -0.08480889692 0.15)
(0.9730391053 -0.1013254979 0.15)
(0.9886070584 -0.1038867958 0.15)
(0.9835417766 -0.1027786008 0.15)
(0.8971830284 -0.1282094128 0.15)
(0.8919153852 -0.1273230714 0.15)
(0.8866310047 -0.1264547609 0.15)
(0.8861971654 -0.1313255111 0.15)
(0.8857154462 -0.1367447837 0.15)
(0.89448134 -0.07566982505 0.15)
(0.8941586861 -0.08052206794 0.15)
(0.9101809043 -0.08758277537 0.15)
(0.91441547 -0.08948291157 0.15)
(0.9151220555 -0.08414044164 0.15)
(0.9156137152 -0.07851661254 0.15)
(0.9070336555 -0.1392014712 0.15)
(0.9074225301 -0.1343282564 0.15)
(0.9077094693 -0.130001662 0.15)
(0.9024660469 -0.1291140528 0.15)
(0.9268363061 -0.07387737039 0.15)
(0.9214830539 -0.07335085891 0.15)
(0.9281773136 -0.05729162815 0.15)
(0.9228685197 -0.05666479492 0.15)
(0.9224414053 -0.06215581907 0.15)
(0.9277521094 -0.06277288703 0.15)
(0.9117772949 -0.06094895475 0.15)
(0.9122250598 -0.05541937349 0.15)
(0.7168539685 -0.002170002543 0.15)
(0.7114853884 -0.001667979723 0.15)
(0.7105295467 -0.007542899223 0.15)
(0.7068561626 0.005168327309 0.15)
(0.7074084297 0.01096911399 0.15)
(0.009774337042 0.01383463993 0.15)
(0.009715368026 0.01882553199 0.15)
(-0.001823111575 0.02871530846 0.15)
(0.6859552913 0.01309726181 0.15)
(0.6854158587 0.00734821067 0.15)
(0.6845206428 0.001650447886 0.15)
(0.67516494 0.004846944 0.15)
(0.6797754871 0.00327557881 0.15)
(-0.0164306704 0.09967399078 0.15)
(-0.01730631729 0.09371520382 0.15)
(-0.01163264907 0.09346195939 0.15)
(-0.0108390014 0.09935202796 0.15)
(-0.01364969661 0.08118158553 0.15)
(-0.01932989854 0.08138281111 0.15)
(-0.001863988919 0.0808467318 0.15)
(0.2603618755 0.1082609563 0.15)
(0.2550022028 0.109162063 0.15)
(0.2548013926 0.1031009939 0.15)
(0.2598964402 0.1027032874 0.15)
(0.2496635308 0.1105925936 0.15)
(0.271127997 0.1071685573 0.15)
(0.2657338679 0.1076658201 0.15)
(0.2652296279 0.1022636009 0.15)
(0.2706363585 0.1018047382 0.15)
(0.194634104 0.105764033 0.15)
(0.1951198138 0.1108799395 0.15)
(0.1956514685 0.1165992822 0.15)
(0.190231523 0.1167966475 0.15)
(0.1848165786 0.1170154424 0.15)
(0.2065044252 0.1161613598 0.15)
(0.2010785946 0.1163927142 0.15)
(0.3673458125 0.08848939801 0.15)
(0.367837673 0.0937581902 0.15)
(0.3684235027 0.09976917513 0.15)
(0.3630692237 0.1005227526 0.15)
(0.3577172265 0.1013009244 0.15)
(0.3791743691 0.09869636918 0.15)
(0.3737804937 0.09912059621 0.15)
(0.1732978448 0.1056773107 0.15)
(0.1734635009 0.1116950422 0.15)
(0.1739792243 0.1178596609 0.15)
(0.1685492045 0.1186628478 0.15)
(0.1631293932 0.1195760622 0.15)
(0.179402482 0.1173299684 0.15)
(0.3460425143 0.09218922434 0.15)
(0.3465017524 0.09724712846 0.15)
(0.3470137659 0.1028521969 0.15)
(0.3416481089 0.1036022103 0.15)
(0.3362889765 0.1043359513 0.15)
(0.3523723749 0.1020803413 0.15)
(0.2819381024 0.1063012574 0.15)
(0.2765196881 0.1066991388 0.15)
(0.2760080386 0.1013144793 0.15)
(0.2813806469 0.1007584533 0.15)
(0.2928757107 0.1066241683 0.15)
(0.287384805 0.1062082665 0.15)
(0.2864806579 0.1002302302 0.15)
(0.6093313105 -0.08829686303 0.15)
(0.6088112696 -0.09393432847 0.15)
(0.6082857175 -0.09960954619 0.15)
(0.6136121335 -0.1002196358 0.15)
(0.6189372582 -0.1008328194 0.15)
(0.6738478933 -0.09263015439 0.15)
(0.6733512072 -0.09791848433 0.15)
(0.672757221 -0.1040606768 0.15)
(0.6780915341 -0.104693895 0.15)
(0.6834153737 -0.1053750505 0.15)
(0.6620220156 -0.1032520475 0.15)
(0.6674052027 -0.1035425151 0.15)
(0.7846463622 -0.03523307612 0.15)
(0.7892930205 -0.03702139527 0.15)
(0.7801364147 -0.03349751261 0.15)
(0.8009623547 -0.03232984175 0.15)
(0.7955305376 -0.03194652444 0.15)
(0.7798593096 -0.1141483361 0.15)
(0.7851679713 -0.1149389576 0.15)
(0.7856372743 -0.1098483435 0.15)
(0.7803334053 -0.1090168901 0.15)
(0.7904626723 -0.1157393311 0.15)
(0.7909243175 -0.110677131 0.15)
(0.7692055646 -0.112732335 0.15)
(0.7745419759 -0.1133862355 0.15)
(0.7750257567 -0.1081828767 0.15)
(0.7697540373 -0.1073512929 0.15)
(0.8330980926 -0.1210098411 0.15)
(0.8401355389 -0.1187329576 0.15)
(0.8328195673 -0.1175388655 0.15)
(0.6950763359 -0.09583786058 0.15)
(0.694606225 -0.1009588299 0.15)
(0.6940573825 -0.1067876529 0.15)
(0.6993842586 -0.1075010267 0.15)
(0.7047111162 -0.1082145998 0.15)
(0.6887342491 -0.1060772374 0.15)
(0.7583456969 -0.1126178574 0.15)
(0.7638188441 -0.1124041799 0.15)
(0.764723824 -0.1065578839 0.15)
(0.7602716672 -0.1058555682 0.15)
(0.7473721314 -0.1132850186 0.15)
(0.7528290617 -0.1131162349 0.15)
(0.7641410284 -0.02734910562 0.15)
(0.9871795384 -0.1617903466 0.15)
(0.9877701459 -0.1559660013 0.15)
(1.002812209 -0.162268615 0.15)
(1.003305441 -0.1565195958 0.15)
(0.9979462522 -0.1559380003 0.15)
(0.9974601135 -0.1617188108 0.15)
(1.004483312 -0.1394948046 0.15)
(0.9989179429 -0.1387540806 0.15)
(0.9987108968 -0.1443411465 0.15)
(1.0041379 -0.1450577845 0.15)
(0.9495284373 -0.1477629626 0.15)
(0.9490146335 -0.1533765019 0.15)
(0.9543490422 -0.1540411634 0.15)
(0.9596916834 -0.1546603911 0.15)
(0.9567373571 -0.1048545547 0.15)
(0.9571099815 -0.1089566226 0.15)
(1.004814237 -0.1341962169 0.15)
(0.9988426886 -0.1340447883 0.15)
(1.006841369 -0.1170022611 0.15)
(1.001355317 -0.1167055638 0.15)
(1.00056136 -0.1226650004 0.15)
(1.006148999 -0.1228409666 0.15)
(0.992107166 -0.118314053 0.15)
(0.9925676514 -0.1121602775 0.15)
(0.8760189604 -0.1246975531 0.15)
(0.8707098479 -0.1238035478 0.15)
(0.02873656236 0.08320127176 0.15)
(0.0330195898 0.08491270377 0.15)
(0.01702883815 0.07770086574 0.15)
(0.01645918398 0.08516401031 0.15)
(0.01056690931 0.08572767825 0.15)
(0.004712899037 0.08629311871 0.15)
(0.02195760489 0.08492702563 0.15)
(0.02114296559 0.07981412001 0.15)
(0.7223337704 -0.002360869876 0.15)
(0.009587896465 0.008125448121 0.15)
(0.009253033659 0.002378506844 0.15)
(0.01495471117 0.001719238364 0.15)
(0.0205799418 0.001041352805 0.15)
(0.03189699361 0.0001153677607 0.15)
(0.03749685458 -0.0004073102593 0.15)
(0.03841557563 0.005320810832 0.15)
(0.03386242406 0.006982560074 0.15)
(0.04333249665 0.003696012805 0.15)
(0.02617927111 0.000476142005 0.15)
(0.6642969436 0.01461566019 0.15)
(0.6633825309 0.008862534139 0.15)
(0.8321076897 -0.04686535412 0.15)
(0.8302638202 -0.053489638 0.15)
(0.8375657892 -0.05649076455 0.15)
(0.8420159186 -0.05831900814 0.15)
(0.8533804632 -0.04932465516 0.15)
(0.8528035792 -0.05517427646 0.15)
(0.846603422 -0.06020368434 0.15)
(0.8847274128 -0.06338657833 0.15)
(0.8793728662 -0.06283072176 0.15)
(0.8949115577 -0.070199476 0.15)
(0.8953780646 -0.06463025671 0.15)
(0.8900805183 -0.06395796818 0.15)
(0.07413889494 0.1035559302 0.15)
(0.06858616501 0.1043798423 0.15)
(0.08605571516 0.1146698257 0.15)
(0.08553150102 0.1087449166 0.15)
(0.07960925539 0.103058725 0.15)
(0.07947636465 0.09708997596 0.15)
(0.2380052278 0.1042231051 0.15)
(0.2384954319 0.1086730484 0.15)
(0.2389785213 0.1136308208 0.15)
(0.2335955663 0.114421707 0.15)
(0.2281856462 0.1149327877 0.15)
(0.24432725 0.112287032 0.15)
(0.2163412485 0.1052586588 0.15)
(0.2168204237 0.1102391901 0.15)
(0.2173405564 0.1156286866 0.15)
(0.2119211609 0.1159077505 0.15)
(0.2227644809 0.1153118428 0.15)
(0.410650143 0.08510284779 0.15)
(0.411178014 0.09080305817 0.15)
(0.411714402 0.09654094283 0.15)
(0.4063719803 0.0972491307 0.15)
(0.4009874561 0.09788238775 0.15)
(0.4101859162 0.07999117461 0.15)
(0.4320367527 0.08244166664 0.15)
(0.4300768183 0.0755406218 0.15)
(0.437516785 0.07384282018 0.15)
(0.4423739464 0.07267801024 0.15)
(0.3891975742 0.08790823931 0.15)
(0.3894857511 0.08428150591 0.15)
(0.3896036621 0.09297780357 0.15)
(0.3901005613 0.09851738834 0.15)
(0.3846241781 0.09855026418 0.15)
(0.3955589191 0.09833353209 0.15)
(0.5896659146 0.03262877744 0.15)
(0.5940698273 0.03125494695 0.15)
(0.6014770225 0.02894415138 0.15)
(0.6061698398 0.0274801448 0.15)
(0.6111437787 0.02591784647 0.15)
(0.5848159454 0.03414171173 0.15)
(0.5494327955 0.06053314773 0.15)
(0.5440430467 0.06093690597 0.15)
(0.1493114808 -0.03447308253 0.15)
(0.1547704266 -0.0345207105 0.15)
(0.143909841 -0.03415418866 0.15)
(0.06515361886 -0.002727099149 0.15)
(0.06017795881 -0.001345715515 0.15)
(0.04809585338 0.002165304189 0.15)
(0.07036661615 -0.004075769261 0.15)
(0.1512069236 0.1098614729 0.15)
(0.1517506661 0.1152889506 0.15)
(0.1522918595 0.1208404944 0.15)
(0.1468672594 0.1211933547 0.15)
(0.1414501428 0.121529452 0.15)
(0.1577193351 0.120334614 0.15)
(0.1507110437 0.1049390332 0.15)
(0.1078298027 0.1126583259 0.15)
(0.1073172653 0.1066687615 0.15)
(0.1068868381 0.1012610999 0.15)
(0.1121666809 0.1018592802 0.15)
(0.1174287793 0.1024285763 0.15)
(0.1018057438 0.1006261007 0.15)
(0.129545517 0.1107515668 0.15)
(0.1302115268 0.1036092927 0.15)
(0.1224080299 0.1029368423 0.15)
(0.2780455244 -0.04733778468 0.15)
(0.2834573061 -0.04755819432 0.15)
(0.2726779822 -0.04685704878 0.15)
(0.3213260805 -0.04829615407 0.15)
(0.32666021 -0.04897464887 0.15)
(0.3271508417 -0.0437190998 0.15)
(0.3218186154 -0.0430200931 0.15)
(0.3159901517 -0.04762622968 0.15)
(0.3164863891 -0.04232108639 0.15)
(0.1925325348 -0.0371876655 0.15)
(0.1978735255 -0.03785715567 0.15)
(0.1871836431 -0.03651673925 0.15)
(0.2352786508 -0.04244494554 0.15)
(0.2406244856 -0.04309469882 0.15)
(0.2299437875 -0.04179600934 0.15)
(0.324602578 0.09544467354 0.15)
(0.3250540445 0.1004079911 0.15)
(0.3255312308 0.1057459347 0.15)
(0.3201502244 0.1064062826 0.15)
(0.3147498641 0.1070095746 0.15)
(0.3309134023 0.1050548477 0.15)
(0.3031364262 0.09828768079 0.15)
(0.3034710645 0.1027387006 0.15)
(0.3039069628 0.1076749407 0.15)
(0.2984107212 0.1073205951 0.15)
(0.309339282 0.1074810471 0.15)
(0.4594346437 -0.07340930258 0.15)
(0.4600005581 -0.06745060136 0.15)
(0.4604847269 -0.06224306053 0.15)
(0.4551641064 -0.0615055614 0.15)
(0.4498412727 -0.06077026725 0.15)
(0.4711230322 -0.06373887658 0.15)
(0.4658014087 -0.06299053845 0.15)
(0.4380778043 -0.0708494049 0.15)
(0.4386770678 -0.06463951037 0.15)
(0.4391787519 -0.05929731181 0.15)
(0.4338878573 -0.05855333119 0.15)
(0.4288443158 -0.05783862748 0.15)
(0.4445144746 -0.0600344044 0.15)
(0.5021206397 -0.07875169242 0.15)
(0.5026259738 -0.07321861473 0.15)
(0.5030880472 -0.06818427332 0.15)
(0.4977662461 -0.06744867326 0.15)
(0.4924404807 -0.06671250451 0.15)
(0.5137180007 -0.06967268614 0.15)
(0.5084024624 -0.06892370744 0.15)
(0.4807742471 -0.07609002462 0.15)
(0.4813087175 -0.07035115862 0.15)
(0.4817801916 -0.06523714496 0.15)
(0.4764486386 -0.06448758426 0.15)
(0.4871127423 -0.06597595185 0.15)
(0.3639167616 -0.05388649866 0.15)
(0.369242871 -0.05460813704 0.15)
(0.3697106906 -0.04951186163 0.15)
(0.364388596 -0.04876860168 0.15)
(0.3735320377 -0.06658169788 0.15)
(0.3740511844 -0.06094304476 0.15)
(0.3585925145 -0.05316643907 0.15)
(0.359066409 -0.04802633746 0.15)
(0.4065347083 -0.05956182561 0.15)
(0.4119043927 -0.05997617552 0.15)
(0.4122345019 -0.05548737568 0.15)
(0.4069636788 -0.05474355004 0.15)
(0.4164336489 -0.07024964634 0.15)
(0.416938595 -0.0647207507 0.15)
(0.3949014732 -0.06898418606 0.15)
(0.3953857854 -0.06360191121 0.15)
(0.4011969481 -0.05892246274 0.15)
(0.4016413091 -0.05399243106 0.15)
(0.5062531704 0.06400815534 0.15)
(0.5007842087 0.06418596537 0.15)
(0.4998329052 0.05827336546 0.15)
(0.5117902392 0.06407730942 0.15)
(0.4536879536 0.08096530829 0.15)
(0.4531633582 0.07527875369 0.15)
(0.4527019563 0.07018670345 0.15)
(0.457903286 0.06893201316 0.15)
(0.4630553223 0.06765478044 0.15)
(0.4475183002 0.07143704235 0.15)
(0.4750346275 0.07832832006 0.15)
(0.4744193244 0.07228110307 0.15)
(0.4679953383 0.0664196151 0.15)
(0.6305772219 -0.09127299271 0.15)
(0.6300960538 -0.09665385199 0.15)
(0.6296128461 -0.1020458706 0.15)
(0.6349628094 -0.1026078298 0.15)
(0.6403284731 -0.1030763399 0.15)
(0.624270478 -0.1014453481 0.15)
(0.6310236892 -0.08632025854 0.15)
(0.609798967 -0.08323481895 0.15)
(0.6520747963 -0.09287891237 0.15)
(0.6518236697 -0.08937241607 0.15)
(0.6516501179 -0.09786741247 0.15)
(0.651150635 -0.1033698999 0.15)
(0.6565963733 -0.103245974 0.15)
(0.6457206607 -0.1033563944 0.15)
(0.5451775171 -0.08126575037 0.15)
(0.547122216 -0.07438819846 0.15)
(0.5398481913 -0.0733589867 0.15)
(0.5349532415 -0.07266640523 0.15)
(0.5234527904 -0.0813503751 0.15)
(0.5239215367 -0.07608174822 0.15)
(0.5243629619 -0.07117253434 0.15)
(0.5190404905 -0.07042251067 0.15)
(0.5296854517 -0.07192235888 0.15)
(0.5880321238 -0.08538619147 0.15)
(0.5885079657 -0.0802359263 0.15)
(0.5667229687 -0.08248554183 0.15)
(0.5672146886 -0.07722908942 0.15)
(0.6422068651 0.01591882352 0.15)
(0.6431684933 0.02182363628 0.15)
(0.6438186641 0.02791110416 0.15)
(0.6385007937 0.02861329823 0.15)
(0.6332038416 0.02935693701 0.15)
(0.654650162 0.0271553048 0.15)
(0.6492149129 0.02745833581 0.15)
(0.6223286278 0.02989052474 0.15)
(0.6169204879 0.03025842871 0.15)
(0.6159703506 0.02436922111 0.15)
(0.6203648522 0.02295890401 0.15)
(0.6278206737 0.02979915174 0.15)
(0.8100776312 -0.04527249683 0.15)
(0.8109828176 -0.03955386593 0.15)
(0.8115605707 -0.03370570115 0.15)
(0.8062874229 -0.03295445902 0.15)
(0.8223137431 -0.03469953239 0.15)
(0.8169059615 -0.03428446984 0.15)
(0.8067851499 -0.1132749426 0.15)
(0.8014881113 -0.1124023443 0.15)
(0.8120854435 -0.1141449304 0.15)
(0.7957506579 -0.1165579622 0.15)
(0.796203934 -0.1115318432 0.15)
(0.8276357299 -0.1211397567 0.15)
(0.827935406 -0.1167408297 0.15)
(0.8226862063 -0.1158830142 0.15)
(0.8173858203 -0.1150140221 0.15)
(0.7163269461 -0.09907725022 0.15)
(0.7158734247 -0.1040843653 0.15)
(0.7153670354 -0.1096396404 0.15)
(0.7206951843 -0.1103501195 0.15)
(0.7260247725 -0.1110559115 0.15)
(0.7100390434 -0.1089274686 0.15)
(0.7375783622 -0.1022971309 0.15)
(0.7371402465 -0.1071598517 0.15)
(0.736679821 -0.1124037415 0.15)
(0.7420070859 -0.1129613853 0.15)
(0.7313545936 -0.111748368 0.15)
(0.9650531918 -0.1551628625 0.15)
(0.9777238108 -0.1078452768 0.15)
(0.9772727149 -0.1133891112 0.15)
(0.9766566795 -0.1186215762 0.15)
(0.9725623962 -0.1164109722 0.15)
(0.9570585814 -0.09956310134 0.15)
(0.9575010267 -0.09398261092 0.15)
(0.9521248287 -0.09344362625 0.15)
(0.9467913647 -0.09285537887 0.15)
(0.8813291908 -0.1255795101 0.15)
(0.9360590774 -0.09187458285 0.15)
(0.9307585747 -0.09123415746 0.15)
(0.9300765117 -0.09653963469 0.15)
(0.9342504287 -0.09844398589 0.15)
(0.9254937424 -0.09050153317 0.15)
(0.9258455839 -0.09461111318 0.15)
(0.9414411089 -0.09232904498 0.15)
(0.918608977 -0.09134931029 0.15)
(0.9125607677 -0.1308183415 0.15)
(-0.900345 -0.871003 0.15)
(-0.900294 -0.916832 0.15)
(-0.900437 -0.733512 0.15)
(-0.900417 -0.779343 0.15)
(-0.8576 -0.779366 0.15)
(-1.02885 -0.779272 0.15)
(-0.986042 -0.779296 0.15)
(-0.90049 -0.687683 0.15)
(-0.90058 -0.550192 0.15)
(-0.900562 -0.596024 0.15)
(-0.857768 -0.596049 0.15)
(-1.02893 -0.595946 0.15)
(-0.986143 -0.595973 0.15)
(-0.900632 -0.504364 0.15)
(-0.9008390493 -0.366385415 0.15)
(-0.9007133624 -0.412649606 0.15)
(-0.8583723207 -0.4112939124 0.15)
(-1.029 -0.41262 0.15)
(-0.986235 -0.412648 0.15)
(-0.901044006 -0.3198075174 0.15)
(-0.9013670196 -0.1793636671 0.15)
(-0.9013392939 -0.2261842294 0.15)
(-0.8593790032 -0.2216999932 0.15)
(-1.02906 -0.229292 0.15)
(-0.986305 -0.229321 0.15)
(-0.9013497192 -0.1326712073 0.15)
(-0.9008558417 0.006073930287 0.15)
(-0.9010733472 -0.0399104167 0.15)
(-0.8585392299 -0.03402124504 0.15)
(-1.02908 -0.0459608 0.15)
(-0.9863419175 -0.04588143376 0.15)
(-0.9006696933 0.05176205081 0.15)
(-0.9002651139 0.1873232186 0.15)
(-0.9003536944 0.1423449384 0.15)
(-0.8570436159 0.1477668395 0.15)
(-1.02908 0.137373 0.15)
(-0.9863259146 0.1373553307 0.15)
(-0.9002859455 0.2321709404 0.15)
(-0.9005802358 0.3669614586 0.15)
(-0.900472399 0.3218790035 0.15)
(-0.8569655825 0.3250074882 0.15)
(-1.02904 0.32071 0.15)
(-0.986274 0.320682 0.15)
(-0.9006806807 0.4123556144 0.15)
(-0.90058 0.549808 0.15)
(-0.900633 0.503969 0.15)
(-0.8578445895 0.5039604443 0.15)
(-1.02897 0.50405 0.15)
(-0.986191 0.504023 0.15)
(-0.900563 0.595643 0.15)
(-0.900437 0.733155 0.15)
(-0.90049 0.687316 0.15)
(-0.857685 0.687292 0.15)
(-1.02889 0.687391 0.15)
(-0.986093 0.687366 0.15)
(-0.900417 0.77899 0.15)
(-0.900295 0.916502 0.15)
(-0.900346 0.870664 0.15)
(-0.857517 0.870642 0.15)
(-1.02881 0.870732 0.15)
(-0.985992 0.870709 0.15)
(-0.729005 -0.871089 0.15)
(-0.72894 -0.916916 0.15)
(-0.729173 -0.733605 0.15)
(-0.729122 -0.779433 0.15)
(-0.686286 -0.779455 0.15)
(-0.814778 -0.779389 0.15)
(-0.729242 -0.687778 0.15)
(-0.7313120549 -0.5461153083 0.15)
(-0.7302985132 -0.5942266598 0.15)
(-0.6888201866 -0.5916933197 0.15)
(-0.814971 -0.596074 0.15)
(-0.7324431767 -0.4973442129 0.15)
(-0.7350613977 -0.3488681294 0.15)
(-0.734420799 -0.3985388621 0.15)
(-0.6938928166 -0.3924886869 0.15)
(-0.8165823032 -0.4082809569 0.15)
(-0.7354067333 -0.2992562359 0.15)
(-0.7343938031 -0.1521458622 0.15)
(-0.7350609975 -0.2007735413 0.15)
(-0.6939377781 -0.1926848946 0.15)
(-0.8177174576 -0.2157003208 0.15)
(-0.7334726125 -0.1040601353 0.15)
(-0.7296615628 0.03642805129 0.15)
(-0.7310359892 -0.009738089412 0.15)
(-0.6884974281 -0.0009602499782 0.15)
(-0.8160382046 -0.02672845835 0.15)
(-0.7283097473 0.08190729285 0.15)
(-0.7249602864 0.2144715731 0.15)
(-0.7258919507 0.1708911383 0.15)
(-0.6818448114 0.1793984249 0.15)
(-0.8135195166 0.1546246393 0.15)
(-0.7243141931 0.2575188995 0.15)
(-0.724200905 0.384489867 0.15)
(-0.7239268042 0.3424108253 0.15)
(-0.6789009262 0.349598704 0.15)
(-0.8130142093 0.3297219767 0.15)
(-0.7247843784 0.4265087909 0.15)
(-0.7275279617 0.5539474895 0.15)
(-0.7265451215 0.5110580058 0.15)
(-0.6817267884 0.5155071432 0.15)
(-0.814659889 0.5049851242 0.15)
(-0.7284286173 0.5974888856 0.15)
(-0.729175 0.733074 0.15)
(-0.729243 0.687221 0.15)
(-0.6861571281 0.687682648 0.15)
(-0.814875 0.687268 0.15)
(-0.729129 0.778979 0.15)
(-0.72839 0.918285 0.15)
(-0.728927 0.871522 0.15)
(-0.685475 0.872713 0.15)
(-0.814686 0.87063 0.15)
(-0.557431 -0.871881 0.15)
(-0.55714 -0.918199 0.15)
(-0.5598977941 -0.7307438946 0.15)
(-0.5583498256 -0.7787803264 0.15)
(-0.5162505444 -0.7783514048 0.15)
(-0.643444 -0.779476 0.15)
(-0.5620195394 -0.6816139091 0.15)
(-0.5691973833 -0.5291533866 0.15)
(-0.5669063006 -0.5806112191 0.15)
(-0.5267888537 -0.5765780253 0.15)
(-0.6478242916 -0.5884088975 0.15)
(-0.5711423606 -0.4773594675 0.15)
(-0.573665723 -0.3220985196 0.15)
(-0.5734457589 -0.3736342094 0.15)
(-0.5333849807 -0.3680828828 0.15)
(-0.6536139352 -0.386111226 0.15)
(-0.5732603527 -0.2710071407 0.15)
(-0.5686440127 -0.121447887 0.15)
(-0.5706806381 -0.1706055216 0.15)
(-0.5294710998 -0.1650350514 0.15)
(-0.6528687522 -0.1847223142 0.15)
(-0.5662417112 -0.07304210592 0.15)
(-0.5577234259 0.06761403966 0.15)
(-0.5606820023 0.02148634326 0.15)
(-0.5180401782 0.0265708881 0.15)
(-0.6459233516 0.007420738377 0.15)
(-0.5547916733 0.11298912 0.15)
(-0.5470403217 0.2446815263 0.15)
(-0.5493542124 0.2015151268 0.15)
(-0.50528387 0.2066769536 0.15)
(-0.6376999236 0.1875840478 0.15)
(-0.5451338549 0.2871384687 0.15)
(-0.5425036309 0.4107491754 0.15)
(-0.5428090773 0.3701003216 0.15)
(-0.4974103352 0.375594489 0.15)
(-0.6336482203 0.356837504 0.15)
(-0.5428167674 0.4509837997 0.15)
(-0.5470593583 0.5710398583 0.15)
(-0.5451580051 0.5308531868 0.15)
(-0.4992731023 0.5360014422 0.15)
(-0.636495679 0.5204821225 0.15)
(-0.5492538119 0.6118669256 0.15)
(-0.553783718 0.7398606162 0.15)
(-0.5525887125 0.6967509203 0.15)
(-0.5065621787 0.7006098259 0.15)
(-0.6425253113 0.6892736827 0.15)
(-0.5550329871 0.7834971445 0.15)
(-0.555747 0.919642 0.15)
(-0.555785 0.873881 0.15)
(-0.512818 0.874046 0.15)
(-0.641892 0.873428 0.15)
(-0.3846220078 -0.873493846 0.15)
(-0.383446713 -0.920375279 0.15)
(-0.3937499626 -0.7253637737 0.15)
(-0.3900723307 -0.7758614215 0.15)
(-0.3489880357 -0.7743117432 0.15)
(-0.4738158276 -0.7783365189 0.15)
(-0.3976467841 -0.6739896161 0.15)
(-0.4088102977 -0.5154460541 0.15)
(-0.4055426616 -0.5689173849 0.15)
(-0.3642371565 -0.5672501324 0.15)
(-0.4867554545 -0.5728501615 0.15)
(-0.4110489594 -0.4619845607 0.15)
(-0.4116569593 -0.3056471396 0.15)
(-0.4124040099 -0.3569477316 0.15)
(-0.3714552238 -0.3562288703 0.15)
(-0.4932399125 -0.3632796113 0.15)
(-0.4101004499 -0.2551213136 0.15)
(-0.4016729052 -0.1083444899 0.15)
(-0.4049842391 -0.1564109015 0.15)
(-0.3631091317 -0.1566844313 0.15)
(-0.4881365386 -0.1607367706 0.15)
(-0.3980410167 -0.06100119146 0.15)
(-0.3861304616 0.07786752019 0.15)
(-0.3901931219 0.03201527657 0.15)
(-0.3476221529 0.03046959546 0.15)
(-0.4754042122 0.03007895925 0.15)
(-0.3820682623 0.1233365504 0.15)
(-0.3705319416 0.2576218856 0.15)
(-0.374186882 0.2131568865 0.15)
(-0.330967465 0.2125942349 0.15)
(-0.4613645233 0.2103685776 0.15)
(-0.3672006404 0.3015888817 0.15)
(-0.3604124117 0.4287555981 0.15)
(-0.3619886449 0.3871283967 0.15)
(-0.3173776644 0.388399857 0.15)
(-0.4521513142 0.3802333116 0.15)
(-0.3593561186 0.4702549521 0.15)
(-0.3602016945 0.5915548866 0.15)
(-0.35865321 0.5519479242 0.15)
(-0.3124721731 0.5546389053 0.15)
(-0.4531865082 0.5414905319 0.15)
(-0.36275496 0.6308810913 0.15)
(-0.3732260479 0.7501178039 0.15)
(-0.3695069637 0.7099252005 0.15)
(-0.3238096656 0.712380245 0.15)
(-0.4608738639 0.7039636915 0.15)
(-0.3768179849 0.7910702949 0.15)
(-0.3836428038 0.9204362643 0.15)
(-0.3823526522 0.8760601951 0.15)
(-0.3382971195 0.8771255223 0.15)
(-0.4696648032 0.8744085602 0.15)
(-0.2163094502 -0.8712168985 0.15)
(-0.2132118653 -0.9194804571 0.15)
(-0.2303129072 -0.7198551348 0.15)
(-0.2254604223 -0.7710797344 0.15)
(-0.1836307018 -0.770900927 0.15)
(-0.3079266164 -0.7729446496 0.15)
(-0.2349443613 -0.6680809098 0.15)
(-0.2445317903 -0.5119722867 0.15)
(-0.2422648391 -0.5638857172 0.15)
(-0.2010946057 -0.5640972385 0.15)
(-0.3236546852 -0.5655180892 0.15)
(-0.2457095778 -0.4605126628 0.15)
(-0.2437930595 -0.3099339524 0.15)
(-0.2451118024 -0.3595438008 0.15)
(-0.2030092053 -0.3614586186 0.15)
(-0.3296038787 -0.356808771 0.15)
(-0.2416336826 -0.2613004163 0.15)
(-0.2319126128 -0.1197006112 0.15)
(-0.2355365117 -0.1663446765 0.15)
(-0.1919591372 -0.1716830195 0.15)
(-0.32093255 -0.1588157462 0.15)
(-0.2280575629 -0.07326918957 0.15)
(-0.1944672123 0.06310259843 0.15)
(-0.1965751811 0.04027469844 0.15)
(-0.3050641688 0.02739034551 0.15)
(-0.1923403222 0.08605866248 0.15)
(-0.1974955133 0.2511598012 0.15)
(-0.2022983684 0.2046877688 0.15)
(-0.1591432168 0.2018798751 0.15)
(-0.2879467757 0.2109114633 0.15)
(-0.1924464508 0.2976504097 0.15)
(-0.1795206997 0.4317939491 0.15)
(-0.1826695723 0.3883416952 0.15)
(-0.2726678385 0.3892422071 0.15)
(-0.1774980771 0.4742883869 0.15)
(-0.1778621082 0.5973212065 0.15)
(-0.1766389168 0.5569316325 0.15)
(-0.1319941643 0.5561068803 0.15)
(-0.2668388729 0.5562830505 0.15)
(-0.1801511258 0.6373033256 0.15)
(-0.1918568738 0.7565492554 0.15)
(-0.1872014275 0.7168842714 0.15)
(-0.1418141023 0.7173329465 0.15)
(-0.2782099118 0.7143631645 0.15)
(-0.1963141946 0.7971656974 0.15)
(-0.2080240714 0.9233062048 0.15)
(-0.2047595433 0.8803555446 0.15)
(-0.1603084816 0.8812362325 0.15)
(-0.2938876142 0.8782911186 0.15)
(-0.04750884577 -0.8704138279 0.15)
(-0.04322082433 -0.9188890477 0.15)
(-0.06323682045 -0.7206215424 0.15)
(-0.05793857531 -0.7711256999 0.15)
(-0.01544217809 -0.7718520545 0.15)
(-0.1421692208 -0.770568508 0.15)
(-0.06807710891 -0.6698066151 0.15)
(-0.07705898977 -0.5176921748 0.15)
(-0.07518267218 -0.5681176311 0.15)
(-0.03277890408 -0.570173167 0.15)
(-0.1591725401 -0.5653258248 0.15)
(-0.07778584944 -0.467803577 0.15)
(-0.07296870108 -0.3229674076 0.15)
(-0.07579339842 -0.3702487015 0.15)
(-0.03257763939 -0.3738145337 0.15)
(-0.1608607082 -0.3639160452 0.15)
(-0.06934745737 -0.2766770804 0.15)
(-0.03766848384 -0.1650216613 0.15)
(-0.148101781 -0.1768267759 0.15)
(-0.1010480857 -0.1356115656 0.15)
(-0.09936346753 -0.1126098289 0.15)
(-0.121045174 -0.110301896 0.15)
(-0.1228808774 -0.1332152969 0.15)
(-0.1171138899 -0.03886738829 0.15)
(-0.1186932577 -0.06263331664 0.15)
(-0.09638963492 -0.06606852622 0.15)
(-0.1813541113 -0.0316961919 0.15)
(-0.1832445385 -0.05512363548 0.15)
(-0.1618956338 -0.05727113644 0.15)
(-0.1599144903 -0.03427311014 0.15)
(-0.08547237521 0.07875132475 0.15)
(-0.1070455414 0.07972653062 0.15)
(-0.1093559782 0.05548495686 0.15)
(-0.09930050154 0.1509385533 0.15)
(-0.1019767358 0.1273547377 0.15)
(-0.1641090701 0.1550582061 0.15)
(-0.166447224 0.1317626899 0.15)
(-0.1450815324 0.1300450766 0.15)
(-0.142640535 0.1535181509 0.15)
(-0.06368984281 0.2654492856 0.15)
(-0.08530556071 0.2672680301 0.15)
(-0.08790044653 0.2443336767 0.15)
(-0.05702379519 0.3336902849 0.15)
(-0.1000466076 0.3374309415 0.15)
(-0.0829761016 0.290069336 0.15)
(-0.06146667245 0.2881971826 0.15)
(-0.1432962512 0.3409388378 0.15)
(-0.00162604918 0.4646405002 0.15)
(0.001278625394 0.5928564588 0.15)
(0.001615120944 0.5507742298 0.15)
(0.04536390162 0.5480109693 0.15)
(-0.08738791934 0.5547198029 0.15)
(-0.0003642691694 0.6344439996 0.15)
(-0.01187170342 0.7577559084 0.15)
(-0.007132307476 0.7167332762 0.15)
(0.03697800586 0.7154186657 0.15)
(-0.09642488026 0.7177086099 0.15)
(-0.01713559476 0.7989291154 0.15)
(-0.03241164087 0.9252350034 0.15)
(-0.02780057814 0.882497653 0.15)
(0.01610295714 0.8823982927 0.15)
(-0.1159772271 0.8818963193 0.15)
(0.1236678716 -0.8717651248 0.15)
(0.1283488012 -0.9196054466 0.15)
(0.1072631481 -0.7253061493 0.15)
(0.1126984229 -0.7744998988 0.15)
(0.1554270778 -0.7754570479 0.15)
(0.02734684405 -0.7728380143 0.15)
(0.1023739412 -0.6759297181 0.15)
(0.09374709754 -0.5283619969 0.15)
(0.09541771823 -0.5772869664 0.15)
(0.1381816395 -0.579819354 0.15)
(0.009940325403 -0.5725076737 0.15)
(0.09340088219 -0.4799123159 0.15)
(0.09653572688 -0.3849252992 0.15)
(0.1394714233 -0.3886747211 0.15)
(0.01050578312 -0.3774932504 0.15)
(0.05674992075 -0.3346563827 0.15)
(0.06071958428 -0.2889683094 0.15)
(0.06488226621 -0.2435606868 0.15)
(0.04322826188 -0.2415365267 0.15)
(0.02158659014 -0.2395115023 0.15)
(-0.02175903838 -0.2354024469 0.15)
(-3.640511721e-05 -0.2374821849 0.15)
(0.02990589866 -0.1487539443 0.15)
(0.03194694316 -0.1260715016 0.15)
(0.03393489403 -0.1033811199 0.15)
(0.02303969297 -0.1023290683 0.15)
(0.01204973183 -0.1012310659 0.15)
(-0.00979721834 -0.09907150143 0.15)
(0.1099511346 0.2502755852 0.15)
(0.08827336645 0.2522276323 0.15)
(0.1163980485 0.3182968896 0.15)
(0.09480305063 0.3202794203 0.15)
(0.09259810498 0.2975850687 0.15)
(0.1142311949 0.2956190896 0.15)
(0.02985562414 0.3261336195 0.15)
(0.02763480218 0.3034246722 0.15)
(0.04939109983 0.3015075193 0.15)
(0.05159758114 0.3242097629 0.15)
(0.1720433995 0.4500466207 0.15)
(0.1765375555 0.5818683804 0.15)
(0.1763034955 0.5383927248 0.15)
(0.2194426966 0.5348162813 0.15)
(0.08891026615 0.5448784158 0.15)
(0.1754238331 0.624977899 0.15)
(0.1647645946 0.7530153 0.15)
(0.1693759001 0.7104469464 0.15)
(0.2126887532 0.708258203 0.15)
(0.08080881027 0.713736864 0.15)
(0.1594445634 0.7956315555 0.15)
(0.1429267681 0.9249325192 0.15)
(0.1481217746 0.8814699465 0.15)
(0.191408576 0.8807589805 0.15)
(0.06057608921 0.8823496813 0.15)
(0.2950341545 -0.8734348138 0.15)
(0.2999304729 -0.9203826418 0.15)
(0.2783202192 -0.7310030655 0.15)
(0.2838061897 -0.7786855062 0.15)
(0.3265743752 -0.7798254614 0.15)
(0.1982217838 -0.7764930283 0.15)
(0.2734233543 -0.6832224837 0.15)
(0.2649662972 -0.5403029686 0.15)
(0.2665541384 -0.5877690074 0.15)
(0.309311461 -0.5904777215 0.15)
(0.1809849147 -0.5824307955 0.15)
(0.2647221992 -0.4931385139 0.15)
(0.2680990732 -0.3999987238 0.15)
(0.3109225174 -0.4037823303 0.15)
(0.1823827496 -0.3924430596 0.15)
(0.2285793381 -0.3502239957 0.15)
(0.2326665716 -0.3047270126 0.15)
(0.236867242 -0.2593440048 0.15)
(0.2154145053 -0.2573847162 0.15)
(0.1939598695 -0.2554242472 0.15)
(0.1509936774 -0.2514889892 0.15)
(0.1724875878 -0.253459128 0.15)
(0.2023469007 -0.1647583377 0.15)
(0.2044404866 -0.1421179288 0.15)
(0.2065349553 -0.1194896533 0.15)
(0.1957926297 -0.1184979834 0.15)
(0.185054287 -0.117506683 0.15)
(0.1635668333 -0.1155210746 0.15)
(0.1743100623 -0.1165138326 0.15)
(0.2829190979 0.2342745227 0.15)
(0.2613322259 0.2363035014 0.15)
(0.2592294218 0.2136719821 0.15)
(0.2892229626 0.3022066614 0.15)
(0.2676459759 0.3042447659 0.15)
(0.2655412317 0.2815923364 0.15)
(0.2871214827 0.279556942 0.15)
(0.2028544512 0.3103124752 0.15)
(0.2007358388 0.2876512895 0.15)
(0.222339402 0.2856398437 0.15)
(0.2244527587 0.3082985042 0.15)
(0.3445241033 0.4340117256 0.15)
(0.3494685711 0.5683939114 0.15)
(0.3490547753 0.5237884096 0.15)
(0.3919759183 0.5200039252 0.15)
(0.2627639778 0.5312312552 0.15)
(0.3485362718 0.6128453003 0.15)
(0.3382768002 0.7456292177 0.15)
(0.3427908845 0.7014188605 0.15)
(0.3855900075 0.6989853171 0.15)
(0.2563262815 0.7061135097 0.15)
(0.3330062647 0.7898314953 0.15)
(0.3163151213 0.9230416773 0.15)
(0.3216129649 0.8784784197 0.15)
(0.3644605547 0.8775807425 0.15)
(0.2350734807 0.8801108362 0.15)
(0.4661815814 -0.8755083525 0.15)
(0.47127543 -0.9214585902 0.15)
(0.4491755696 -0.7372667023 0.15)
(0.4547136209 -0.7834073517 0.15)
(0.4974364624 -0.7846733823 0.15)
(0.369283683 -0.7809841142 0.15)
(0.4442664937 -0.6910887551 0.15)
(0.4359509131 -0.5526784182 0.15)
(0.4374669039 -0.598756878 0.15)
(0.4801977235 -0.6015832112 0.15)
(0.3520224193 -0.5932038391 0.15)
(0.4357967955 -0.506705862 0.15)
(0.439395528 -0.4151759557 0.15)
(0.4822345629 -0.4189913775 0.15)
(0.3537328237 -0.4075710192 0.15)
(0.3999960672 -0.3657515318 0.15)
(0.4041377724 -0.3203260775 0.15)
(0.4083350655 -0.2749578208 0.15)
(0.386893446 -0.2730086024 0.15)
(0.3654568975 -0.2710588501 0.15)
(0.3226078826 -0.2671595715 0.15)
(0.3440273191 -0.2691097446 0.15)
(0.3738291265 -0.1804658851 0.15)
(0.3759168613 -0.1578560665 0.15)
(0.3652006811 -0.1568748567 0.15)
(0.3662440866 -0.145574926 0.15)
(0.3769590862 -0.1465580348 0.15)
(0.3341220816 -0.1426267287 0.15)
(0.3448201539 -0.143608267 0.15)
(0.4553125966 0.2178025181 0.15)
(0.4338185936 0.2198690778 0.15)
(0.4615266306 0.2856757037 0.15)
(0.4400360768 0.2877469648 0.15)
(0.4379659468 0.2651104054 0.15)
(0.4594555973 0.2630402324 0.15)
(0.3754796144 0.2939776549 0.15)
(0.3733969814 0.2713362298 0.15)
(0.3949180537 0.2692691671 0.15)
(0.3969985104 0.2919087856 0.15)
(0.5162268047 0.4175999953 0.15)
(0.5204901251 0.5544600175 0.15)
(0.5202897459 0.5087566315 0.15)
(0.5628605747 0.5050973579 0.15)
(0.4348443167 0.5162502034 0.15)
(0.5193658378 0.6002284559 0.15)
(0.5087646497 0.7377370924 0.15)
(0.5133223892 0.6919088038 0.15)
(0.5556213191 0.6896769831 0.15)
(0.4284312671 0.696625274 0.15)
(0.5035217661 0.7835508186 0.15)
(0.487422631 0.9207604993 0.15)
(0.4924331631 0.8750454309 0.15)
(0.5348473394 0.8742921542 0.15)
(0.4074026991 0.8767402252 0.15)
(0.6370460975 -0.8780560555 0.15)
(0.6423645659 -0.9229179866 0.15)
(0.6197643614 -0.7441523874 0.15)
(0.6253325782 -0.7887263281 0.15)
(0.6681403014 -0.7901257502 0.15)
(0.5401403847 -0.7859761194 0.15)
(0.6148756887 -0.6995762325 0.15)
(0.6068365214 -0.5655190892 0.15)
(0.6082328796 -0.610285531 0.15)
(0.6509708848 -0.6132484343 0.15)
(0.5229135613 -0.6044439936 0.15)
(0.6068203138 -0.5206423431 0.15)
(0.610716474 -0.4304780084 0.15)
(0.6535287556 -0.4343335532 0.15)
(0.5250693517 -0.4228134447 0.15)
(0.5714789924 -0.381278521 0.15)
(0.5756674949 -0.3358572587 0.15)
(0.5798660609 -0.2904861072 0.15)
(0.5584281266 -0.2885512908 0.15)
(0.5369853985 -0.286614021 0.15)
(0.4941053828 -0.2827349648 0.15)
(0.5155438508 -0.2846748522 0.15)
(0.5453469004 -0.1960933743 0.15)
(0.5474289484 -0.1735231998 0.15)
(0.536708231 -0.1725475949 0.15)
(0.5377473354 -0.1612723725 0.15)
(0.5484679604 -0.1622489731 0.15)
(0.5055949763 -0.1583374276 0.15)
(0.5163114336 -0.1593156502 0.15)
(0.6270688433 0.2009567877 0.15)
(0.6056083765 0.2030925451 0.15)
(0.6331985694 0.2688197182 0.15)
(0.6117607066 0.2709393182 0.15)
(0.6097113226 0.2483098726 0.15)
(0.6311618321 0.2461750391 0.15)
(0.547381842 0.277298149 0.15)
(0.5453204169 0.2546688162 0.15)
(0.5667823823 0.2525600358 0.15)
(0.5688371145 0.2751930024 0.15)
(0.687079089 0.4014145591 0.15)
(0.6899778937 0.5415063808 0.15)
(0.6902284939 0.4944978183 0.15)
(0.7323588427 0.4912477051 0.15)
(0.6052851596 0.5014933523 0.15)
(0.6884700266 0.5887654782 0.15)
(0.677322244 0.7310581454 0.15)
(0.6819548423 0.6836163197 0.15)
(0.7239924815 0.681832365 0.15)
(0.5979610173 0.6875141405 0.15)
(0.6721548745 0.7783763253 0.15)
(0.6572968032 0.9190856753 0.15)
(0.6617092143 0.872419802 0.15)
(0.7041477516 0.8719016001 0.15)
(0.5773989107 0.8735798265 0.15)
(0.8076009942 -0.8812571887 0.15)
(0.8131743052 -0.9249147805 0.15)
(0.7900090557 -0.7518710331 0.15)
(0.7956103757 -0.7948497864 0.15)
(0.8388730194 -0.7962133349 0.15)
(0.7107571591 -0.7916070404 0.15)
(0.7851484905 -0.7088938139 0.15)
(0.7774770968 -0.5789931463 0.15)
(0.7787132729 -0.6225432399 0.15)
(0.8214423276 -0.6256697724 0.15)
(0.6936236517 -0.616273005 0.15)
(0.7776485844 -0.535091374 0.15)
(0.781961836 -0.4459895863 0.15)
(0.8247817501 -0.4499107793 0.15)
(0.6963513905 -0.438201059 0.15)
(0.7429238696 -0.3968078892 0.15)
(0.7471285021 -0.3513388796 0.15)
(0.7256949203 -0.3494004499 0.15)
(0.7513278687 -0.3059266263 0.15)
(0.7298915564 -0.3039959776 0.15)
(0.7277940698 -0.3266892522 0.15)
(0.7492290169 -0.3286237915 0.15)
(0.6655911188 -0.2982098415 0.15)
(0.706367807 -0.3247585316 0.15)
(0.7084670079 -0.3020684289 0.15)
(0.6870285193 -0.3001395869 0.15)
(0.7168175159 -0.2115688566 0.15)
(0.718896587 -0.1890415906 0.15)
(0.70817395 -0.1880758505 0.15)
(0.7092072034 -0.1768312184 0.15)
(0.7199307436 -0.1777980466 0.15)
(0.6770492703 -0.1739238767 0.15)
(0.6877625762 -0.1748927682 0.15)
(0.7983775698 0.1835741051 0.15)
(0.7769850687 0.1857929387 0.15)
(0.8044912206 0.2514586129 0.15)
(0.7617105094 0.2558667576 0.15)
(0.7576201485 0.2106010606 0.15)
(0.7790238078 0.2083942474 0.15)
(0.8004135065 0.2061776824 0.15)
(0.7188900514 0.2602253624 0.15)
(0.7147982534 0.2149658245 0.15)
(0.7362168896 0.2127797163 0.15)
(0.8571215677 0.3862275578 0.15)
(0.8580618954 0.53078809 0.15)
(0.8589481371 0.4820901734 0.15)
(0.9011029573 0.4792754716 0.15)
(0.774784228 0.4879620387 0.15)
(0.8563274774 0.5795008484 0.15)
(0.8446714801 0.7264729787 0.15)
(0.8492943707 0.677574365 0.15)
(0.8907837142 0.6766054926 0.15)
(0.765631392 0.6803173488 0.15)
(0.8397243465 0.7750413607 0.15)
(0.8269738105 0.9182412817 0.15)
(0.8304574214 0.8710197588 0.15)
(0.8724107155 0.8709512692 0.15)
(0.7459559897 0.871603865 0.15)
(0.9786367597 -0.883693426 0.15)
(0.9844928944 -0.9259974835 0.15)
(0.9607602142 -0.7590593013 0.15)
(0.966367717 -0.8004025707 0.15)
(1.008628748 -0.7991700678 0.15)
(0.8807268888 -0.7982309777 0.15)
(0.9559724195 -0.7176786026 0.15)
(0.9488926497 -0.5916801796 0.15)
(0.9498786033 -0.6341375344 0.15)
(0.9923084108 -0.6343074116 0.15)
(0.8641506413 -0.628847633 0.15)
(0.9493495088 -0.5485932601 0.15)
(0.9542955462 -0.460136554 0.15)
(0.9969076977 -0.4608204597 0.15)
(0.867593326 -0.4538592279 0.15)
(0.9145075873 -0.4125148103 0.15)
(0.9185911213 -0.3669763159 0.15)
(0.8971420389 -0.3649992891 0.15)
(0.9227902414 -0.3215017734 0.15)
(0.9013456757 -0.3195301871 0.15)
(0.8992440524 -0.342257224 0.15)
(0.9206883409 -0.3442317974 0.15)
(0.8370699977 -0.3136720304 0.15)
(0.8349695753 -0.3363861229 0.15)
(0.8563959818 -0.3383369427 0.15)
(0.8584968661 -0.3156178717 0.15)
(0.8882876692 -0.226951901 0.15)
(0.8893235093 -0.2156793886 0.15)
(0.878612821 -0.2147147571 0.15)
(0.87757617 -0.2259851857 0.15)
(0.8806729632 -0.1922399668 0.15)
(0.8913826558 -0.1932045059 0.15)
(0.8485176273 -0.1893479304 0.15)
(0.8592167364 -0.1903074704 0.15)
(0.9095482579 -0.02174888106 0.15)
(0.8989311639 -0.02046824486 0.15)
(0.9123514817 0.01164656334 0.15)
(0.901731491 0.01291762622 0.15)
(0.9007830937 0.001754101546 0.15)
(0.9114091902 0.0004947245636 0.15)
(0.8795098018 0.004251111753 0.15)
(0.8804555404 0.01539680579 0.15)
(1.013654118 0.1829451079 0.15)
(1.024154505 0.3243741127 0.15)
(1.021286242 0.2761731422 0.15)
(1.063845378 0.2725223937 0.15)
(0.9363351657 0.2842535977 0.15)
(1.026063423 0.3729090427 0.15)
(1.025363789 0.5228173439 0.15)
(1.02681249 0.4724731806 0.15)
(1.068393983 0.4708377485 0.15)
(0.9429758489 0.4768445077 0.15)
(1.022838796 0.5734357885 0.15)
(1.010762223 0.7246433946 0.15)
(1.015279381 0.6746711197 0.15)
(1.057013698 0.6741218387 0.15)
(0.9325562453 0.6756371766 0.15)
(1.006247598 0.774105952 0.15)
(0.9970395685 0.9178175313 0.15)
(0.9992742756 0.8707309629 0.15)
(1.041409096 0.8708314268 0.15)
(0.9148028312 0.8707734138 0.15)
(1.152466712 -0.8825531028 0.15)
(1.157925815 -0.9239626319 0.15)
(1.135254863 -0.761709956 0.15)
(1.140745508 -0.8016560602 0.15)
(1.185586541 -0.8015891665 0.15)
(1.052231498 -0.8003980603 0.15)
(1.130462544 -0.7217890661 0.15)
(1.122618557 -0.6000212158 0.15)
(1.123982316 -0.6411399106 0.15)
(1.168731981 -0.642308208 0.15)
(1.03577122 -0.6370477086 0.15)
(1.122588591 -0.5581566934 0.15)
(1.126291792 -0.4717548232 0.15)
(1.169889194 -0.4746840628 0.15)
(1.03987328 -0.4646760974 0.15)
(1.086738507 -0.4232869703 0.15)
(1.090971121 -0.3776512816 0.15)
(1.095205399 -0.3320142924 0.15)
(1.073767475 -0.3300252451 0.15)
(1.052329551 -0.3280361977 0.15)
(1.050212366 -0.3508551901 0.15)
(1.00946366 -0.3240590268 0.15)
(1.007346475 -0.3468780193 0.15)
(1.028784399 -0.3488670666 0.15)
(1.030901584 -0.3260480742 0.15)
(1.0607982 -0.2367612237 0.15)
(1.062915293 -0.213943227 0.15)
(1.052201309 -0.2129491652 0.15)
(1.065032478 -0.1911242346 0.15)
(1.054318494 -0.1901301728 0.15)
(1.053259948 -0.2015391712 0.15)
(1.063973931 -0.2025332329 0.15)
(1.02110804 -0.198556062 0.15)
(1.031822024 -0.1995501238 0.15)
(1.03288057 -0.1881411254 0.15)
(1.12272841 -0.03537167245 0.15)
(1.101290486 -0.03338262508 0.15)
(1.129079874 0.03308430912 0.15)
(1.10764195 0.03507335649 0.15)
(1.105524792 0.01225466277 0.15)
(1.126962716 0.0102656154 0.15)
(1.062658901 0.01623183366 0.15)
(1.064776059 0.03905052737 0.15)
(1.184445155 0.1670930037 0.15)
(1.193171981 0.3134025829 0.15)
(1.191037015 0.2635798882 0.15)
(1.23339947 0.2616894257 0.15)
(1.105969539 0.2688628918 0.15)
(1.194309884 0.3641266507 0.15)
(1.191176159 0.5196819128 0.15)
(1.193289665 0.4675078374 0.15)
(1.235097115 0.4671708826 0.15)
(1.110238513 0.468981536 0.15)
(1.188580431 0.5713066017 0.15)
(1.177322907 0.7246122427 0.15)
(1.181274901 0.6741115566 0.15)
(1.222425265 0.6753441228 0.15)
(1.09818933 0.6741959807 0.15)
(1.173775449 0.7746639258 0.15)
(1.16818 0.91701 0.15)
(1.168779836 0.8707307902 0.15)
(1.211385355 0.8706044758 0.15)
(1.083868211 0.8707743153 0.15)
(1.331489801 -0.8792071164 0.15)
(1.335465604 -0.9210496906 0.15)
(1.31709823 -0.7588853854 0.15)
(1.321961755 -0.7983593664 0.15)
(1.367798848 -0.7963344354 0.15)
(1.230781909 -0.8010177947 0.15)
(1.312582742 -0.7197143959 0.15)
(1.303428507 -0.6016449672 0.15)
(1.305574109 -0.6413111093 0.15)
(1.351935254 -0.6393033879 0.15)
(1.21393222 -0.6427733532 0.15)
(1.30231512 -0.5614293156 0.15)
(1.305013863 -0.4364144865 0.15)
(1.303180496 -0.4788722855 0.15)
(1.348541658 -0.4781937363 0.15)
(1.213872797 -0.476967712 0.15)
(1.307609814 -0.3931779194 0.15)
(1.318359474 -0.2597005242 0.15)
(1.314439972 -0.3046970042 0.15)
(1.358345427 -0.3059405703 0.15)
(1.228057265 -0.2983106637 0.15)
(1.322447026 -0.2143828682 0.15)
(1.335084441 -0.07718551247 0.15)
(1.330844594 -0.1231239843 0.15)
(1.374081469 -0.1249842591 0.15)
(1.202118686 -0.1117829196 0.15)
(1.244994534 -0.1157610144 0.15)
(1.339314627 -0.0309238566 0.15)
(1.351276477 0.1112986463 0.15)
(1.347510782 0.06317036926 0.15)
(1.390264051 0.06296989816 0.15)
(1.261907292 0.06728911259 0.15)
(1.354639719 0.1602907075 0.15)
(1.360826547 0.312516715 0.15)
(1.359550656 0.2609543598 0.15)
(1.401258293 0.2626844486 0.15)
(1.275618528 0.2605424592 0.15)
(1.361191019 0.3647217515 0.15)
(1.356867593 0.5230474695 0.15)
(1.359138112 0.4702364035 0.15)
(1.400096877 0.4726339496 0.15)
(1.276667558 0.4674967043 0.15)
(1.353985172 0.5755365349 0.15)
(1.344386775 0.7285184493 0.15)
(1.347425543 0.6785043996 0.15)
(1.388958142 0.6800735806 0.15)
(1.264214857 0.6760853594 0.15)
(1.341975352 0.7773051798 0.15)
(1.34028 0.916667 0.15)
(1.34028 0.870833 0.15)
(1.38333 0.870833 0.15)
(1.254196395 0.8708097853 0.15)
(1.510656182 -0.8729661644 0.15)
(1.512148222 -0.9170545526 0.15)
(1.501883817 -0.7476827583 0.15)
(1.505236823 -0.7884705519 0.15)
(1.55067528 -0.7857112837 0.15)
(1.413697855 -0.7939347171 0.15)
(1.498462428 -0.707575153 0.15)
(1.489978151 -0.5890117683 0.15)
(1.492328725 -0.6284634557 0.15)
(1.539215744 -0.6235932814 0.15)
(1.398583904 -0.6364471861 0.15)
(1.488273561 -0.5493610048 0.15)
(1.487517444 -0.4277043214 0.15)
(1.487036959 -0.4688243764 0.15)
(1.533710095 -0.4633956133 0.15)
(1.394358151 -0.4762987966 0.15)
(1.488679778 -0.3859152539 0.15)
(1.495472476 -0.2562899379 0.15)
(1.492749035 -0.3002133761 0.15)
(1.538200105 -0.2951688755 0.15)
(1.402741627 -0.3056448078 0.15)
(1.498524526 -0.2116642768 0.15)
(1.508687056 -0.07359949256 0.15)
(1.505227142 -0.1203251955 0.15)
(1.549271902 -0.1153928937 0.15)
(1.417585345 -0.125171895 0.15)
(1.512090228 -0.02614509304 0.15)
(1.520918959 0.1207709921 0.15)
(1.518313994 0.07103384256 0.15)
(1.560891333 0.07651689986 0.15)
(1.43299464 0.06419331455 0.15)
(1.523043984 0.1712435861 0.15)
(1.525710621 0.3262125923 0.15)
(1.525497388 0.2740881806 0.15)
(1.566693283 0.2796742619 0.15)
(1.442813622 0.2654787516 0.15)
(1.525233324 0.3785734018 0.15)
(1.520397478 0.5348749049 0.15)
(1.522449941 0.4831421175 0.15)
(1.563264525 0.4873121977 0.15)
(1.440937957 0.47565321 0.15)
(1.518157949 0.5859202719 0.15)
(1.512870916 0.7328127911 0.15)
(1.514117349 0.6850731253 0.15)
(1.556273172 0.6863864583 0.15)
(1.430541751 0.6817711602 0.15)
(1.5125 0.779167 0.15)
(1.5125 0.916667 0.15)
(1.5125 0.870833 0.15)
(1.55556 0.870833 0.15)
(1.42639 0.870833 0.15)
(1.68472 -0.870833 0.15)
(1.68472 -0.916667 0.15)
(1.683370919 -0.7354969285 0.15)
(1.684377135 -0.779685818 0.15)
(1.72778 -0.779167 0.15)
(1.595737254 -0.7831839146 0.15)
(1.681915897 -0.692280289 0.15)
(1.676797439 -0.5665760807 0.15)
(1.6784573 -0.6080173709 0.15)
(1.724032063 -0.6034317701 0.15)
(1.58593858 -0.6183929116 0.15)
(1.675366798 -0.5253321288 0.15)
(1.673280439 -0.401025846 0.15)
(1.673556384 -0.4427141386 0.15)
(1.719720926 -0.4353689407 0.15)
(1.580431594 -0.4570595725 0.15)
(1.673444777 -0.3589092852 0.15)
(1.676314578 -0.2290815653 0.15)
(1.675007841 -0.2730085111 0.15)
(1.720419855 -0.2643480028 0.15)
(1.583794595 -0.2887741387 0.15)
(1.677885312 -0.1844426641 0.15)
(1.683374181 -0.04605807023 0.15)
(1.681501384 -0.09293495854 0.15)
(1.725435641 -0.08399325848 0.15)
(1.593367785 -0.1089991751 0.15)
(1.685171755 0.001548048387 0.15)
(1.689281943 0.1482824345 0.15)
(1.688200794 0.09878519351 0.15)
(1.730545892 0.1070845279 0.15)
(1.603389879 0.08315204898 0.15)
(1.689996933 0.1982388862 0.15)
(1.689756419 0.3494689946 0.15)
(1.69022442 0.2989925306 0.15)
(1.731608581 0.3053035328 0.15)
(1.607835002 0.285862823 0.15)
(1.688969195 0.3997640677 0.15)
(1.685822462 0.5475757506 0.15)
(1.686856004 0.499016474 0.15)
(1.7287256 0.5018136772 0.15)
(1.604208252 0.4915055335 0.15)
(1.685043811 0.5951779239 0.15)
(1.68472 0.733333 0.15)
(1.68472 0.6875 0.15)
(1.72778 0.6875 0.15)
(1.598763057 0.6872515833 0.15)
(1.68472 0.779167 0.15)
(1.68472 0.916667 0.15)
(1.68472 0.870833 0.15)
(1.72778 0.870833 0.15)
(1.59861 0.870833 0.15)
(1.85694 -0.870833 0.15)
(1.85694 -0.916667 0.15)
(1.85694 -0.733333 0.15)
(1.85694 -0.779167 0.15)
(1.9 -0.779167 0.15)
(1.77083 -0.779167 0.15)
(1.85694 -0.6875 0.15)
(1.856699619 -0.5505875813 0.15)
(1.856922747 -0.5958719931 0.15)
(1.9 -0.595833 0.15)
(1.769009073 -0.599671119 0.15)
(1.856312778 -0.5058352222 0.15)
(1.855106823 -0.3732777424 0.15)
(1.855443655 -0.4173245451 0.15)
(1.899561866 -0.4139647436 0.15)
(1.765468185 -0.4284196061 0.15)
(1.854896719 -0.3291928328 0.15)
(1.855149084 -0.1956728664 0.15)
(1.854922656 -0.2404772899 0.15)
(1.899047035 -0.234758906 0.15)
(1.76557426 -0.2557326367 0.15)
(1.855488356 -0.1504913594 0.15)
(1.856809047 -0.01244333205 0.15)
(1.856360384 -0.05887805949 0.15)
(1.899724269 -0.05265147641 0.15)
(1.769223048 -0.07502237483 0.15)
(1.857209714 0.03437590298 0.15)
(1.857802891 0.1765077526 0.15)
(1.857728334 0.1289355963 0.15)
(1.900340284 0.133772039 0.15)
(1.772879172 0.115164442 0.15)
(1.857749716 0.2241325125 0.15)
(1.85712164 0.3659780933 0.15)
(1.857358242 0.3190107149 0.15)
(1.900031652 0.3206912039 0.15)
(1.773205078 0.3109802062 0.15)
(1.856961022 0.4124293578 0.15)
(1.85694 0.55 0.15)
(1.85694 0.504167 0.15)
(1.9 0.504167 0.15)
(1.771045368 0.503613675 0.15)
(1.85694 0.595833 0.15)
(1.85694 0.733333 0.15)
(1.85694 0.6875 0.15)
(1.9 0.6875 0.15)
(1.77083 0.6875 0.15)
(1.85694 0.779167 0.15)
(1.85694 0.916667 0.15)
(1.85694 0.870833 0.15)
(1.9 0.870833 0.15)
(1.77083 0.870833 0.15)
(2.02917 -0.870833 0.15)
(2.02917 -0.916667 0.15)
(2.02917 -0.733333 0.15)
(2.02917 -0.779167 0.15)
(2.07222 -0.779167 0.15)
(1.94306 -0.779167 0.15)
(2.02917 -0.6875 0.15)
(2.02917 -0.55 0.15)
(2.02917 -0.595833 0.15)
(2.07222 -0.595833 0.15)
(1.94306 -0.595833 0.15)
(2.02917 -0.504167 0.15)
(2.02917 -0.366667 0.15)
(2.02917 -0.4125 0.15)
(2.07222 -0.4125 0.15)
(1.943051015 -0.4125310241 0.15)
(2.02917 -0.320833 0.15)
(2.02917 -0.183333 0.15)
(2.02917 -0.229167 0.15)
(2.07222 -0.229167 0.15)
(1.942779017 -0.2308830383 0.15)
(2.02917 -0.1375 0.15)
(2.02917 0 0.15)
(2.02917 -0.0458333 0.15)
(2.07222 -0.0458333 0.15)
(1.942969732 -0.04824394208 0.15)
(2.02917 0.0458333 0.15)
(2.02917 0.183333 0.15)
(2.02917 0.1375 0.15)
(2.07222 0.1375 0.15)
(1.94312994 0.1367208961 0.15)
(2.02917 0.229167 0.15)
(2.02917 0.366667 0.15)
(2.02917 0.320833 0.15)
(2.07222 0.320833 0.15)
(1.94306 0.320833 0.15)
(2.02917 0.4125 0.15)
(2.02917 0.55 0.15)
(2.02917 0.504167 0.15)
(2.07222 0.504167 0.15)
(1.94306 0.504167 0.15)
(2.02917 0.595833 0.15)
(2.02917 0.733333 0.15)
(2.02917 0.6875 0.15)
(2.07222 0.6875 0.15)
(1.94306 0.6875 0.15)
(2.02917 0.779167 0.15)
(2.02917 0.916667 0.15)
(2.02917 0.870833 0.15)
(2.07222 0.870833 0.15)
(1.94306 0.870833 0.15)
(2.20139 -0.870833 0.15)
(2.20139 -0.916667 0.15)
(2.20139 -0.733333 0.15)
(2.20139 -0.779167 0.15)
(2.24444 -0.779167 0.15)
(2.11528 -0.779167 0.15)
(2.20139 -0.6875 0.15)
(2.20139 -0.55 0.15)
(2.20139 -0.595833 0.15)
(2.24444 -0.595833 0.15)
(2.11528 -0.595833 0.15)
(2.20139 -0.504167 0.15)
(2.20139 -0.366667 0.15)
(2.20139 -0.4125 0.15)
(2.24444 -0.4125 0.15)
(2.11528 -0.4125 0.15)
(2.20139 -0.320833 0.15)
(2.20139 -0.183333 0.15)
(2.20139 -0.229167 0.15)
(2.24444 -0.229167 0.15)
(2.11528 -0.229167 0.15)
(2.20139 -0.1375 0.15)
(2.20139 0 0.15)
(2.20139 -0.0458333 0.15)
(2.24444 -0.0458333 0.15)
(2.11528 -0.0458333 0.15)
(2.20139 0.0458333 0.15)
(2.20139 0.183333 0.15)
(2.20139 0.1375 0.15)
(2.24444 0.1375 0.15)
(2.11528 0.1375 0.15)
(2.20139 0.229167 0.15)
(2.20139 0.366667 0.15)
(2.20139 0.320833 0.15)
(2.24444 0.320833 0.15)
(2.11528 0.320833 0.15)
(2.20139 0.4125 0.15)
(2.20139 0.55 0.15)
(2.20139 0.504167 0.15)
(2.24444 0.504167 0.15)
(2.11528 0.504167 0.15)
(2.20139 0.595833 0.15)
(2.20139 0.733333 0.15)
(2.20139 0.6875 0.15)
(2.24444 0.6875 0.15)
(2.11528 0.6875 0.15)
(2.20139 0.779167 0.15)
(2.20139 0.916667 0.15)
(2.20139 0.870833 0.15)
(2.24444 0.870833 0.15)
(2.11528 0.870833 0.15)
(2.37361 -0.870833 0.15)
(2.37361 -0.916667 0.15)
(2.37361 -0.733333 0.15)
(2.37361 -0.779167 0.15)
(2.41667 -0.779167 0.15)
(2.2875 -0.779167 0.15)
(2.37361 -0.6875 0.15)
(2.37361 -0.55 0.15)
(2.37361 -0.595833 0.15)
(2.41667 -0.595833 0.15)
(2.2875 -0.595833 0.15)
(2.37361 -0.504167 0.15)
(2.37361 -0.366667 0.15)
(2.37361 -0.4125 0.15)
(2.41667 -0.4125 0.15)
(2.2875 -0.4125 0.15)
(2.37361 -0.320833 0.15)
(2.37361 -0.183333 0.15)
(2.37361 -0.229167 0.15)
(2.41667 -0.229167 0.15)
(2.2875 -0.229167 0.15)
(2.37361 -0.1375 0.15)
(2.37361 -1.38778e-17 0.15)
(2.37361 -0.0458333 0.15)
(2.41667 -0.0458333 0.15)
(2.2875 -0.0458333 0.15)
(2.37361 0.0458333 0.15)
(2.37361 0.183333 0.15)
(2.37361 0.1375 0.15)
(2.41667 0.1375 0.15)
(2.2875 0.1375 0.15)
(2.37361 0.229167 0.15)
(2.37361 0.366667 0.15)
(2.37361 0.320833 0.15)
(2.41667 0.320833 0.15)
(2.2875 0.320833 0.15)
(2.37361 0.4125 0.15)
(2.37361 0.55 0.15)
(2.37361 0.504167 0.15)
(2.41667 0.504167 0.15)
(2.2875 0.504167 0.15)
(2.37361 0.595833 0.15)
(2.37361 0.733333 0.15)
(2.37361 0.6875 0.15)
(2.41667 0.6875 0.15)
(2.2875 0.6875 0.15)
(2.37361 0.779167 0.15)
(2.37361 0.916667 0.15)
(2.37361 0.870833 0.15)
(2.41667 0.870833 0.15)
(2.2875 0.870833 0.15)
(2.54583 -0.870833 0.15)
(2.54583 -0.916667 0.15)
(2.54583 -0.733333 0.15)
(2.54583 -0.779167 0.15)
(2.58889 -0.779167 0.15)
(2.45972 -0.779167 0.15)
(2.54583 -0.6875 0.15)
(2.54583 -0.55 0.15)
(2.54583 -0.595833 0.15)
(2.58889 -0.595833 0.15)
(2.45972 -0.595833 0.15)
(2.54583 -0.504167 0.15)
(2.54583 -0.366667 0.15)
(2.54583 -0.4125 0.15)
(2.58889 -0.4125 0.15)
(2.45972 -0.4125 0.15)
(2.54583 -0.320833 0.15)
(2.54583 -0.183333 0.15)
(2.54583 -0.229167 0.15)
(2.58889 -0.229167 0.15)
(2.45972 -0.229167 0.15)
(2.54583 -0.1375 0.15)
(2.54583 -1.85037e-17 0.15)
(2.54583 -0.0458333 0.15)
(2.58889 -0.0458333 0.15)
(2.45972 -0.0458333 0.15)
(2.54583 0.0458333 0.15)
(2.54583 0.183333 0.15)
(2.54583 0.1375 0.15)
(2.58889 0.1375 0.15)
(2.45972 0.1375 0.15)
(2.54583 0.229167 0.15)
(2.54583 0.366667 0.15)
(2.54583 0.320833 0.15)
(2.58889 0.320833 0.15)
(2.45972 0.320833 0.15)
(2.54583 0.4125 0.15)
(2.54583 0.55 0.15)
(2.54583 0.504167 0.15)
(2.58889 0.504167 0.15)
(2.45972 0.504167 0.15)
(2.54583 0.595833 0.15)
(2.54583 0.733333 0.15)
(2.54583 0.6875 0.15)
(2.58889 0.6875 0.15)
(2.45972 0.6875 0.15)
(2.54583 0.779167 0.15)
(2.54583 0.916667 0.15)
(2.54583 0.870833 0.15)
(2.58889 0.870833 0.15)
(2.45972 0.870833 0.15)
(2.71806 -0.870833 0.15)
(2.71806 -0.916667 0.15)
(2.71806 -0.733333 0.15)
(2.71806 -0.779167 0.15)
(2.76111 -0.779167 0.15)
(2.63194 -0.779167 0.15)
(2.71806 -0.6875 0.15)
(2.71806 -0.55 0.15)
(2.71806 -0.595833 0.15)
(2.76111 -0.595833 0.15)
(2.63194 -0.595833 0.15)
(2.71806 -0.504167 0.15)
(2.71806 -0.366667 0.15)
(2.71806 -0.4125 0.15)
(2.76111 -0.4125 0.15)
(2.63194 -0.4125 0.15)
(2.71806 -0.320833 0.15)
(2.71806 -0.183333 0.15)
(2.71806 -0.229167 0.15)
(2.76111 -0.229167 0.15)
(2.63194 -0.229167 0.15)
(2.71806 -0.1375 0.15)
(2.71806 9.25186e-18 0.15)
(2.71806 -0.0458333 0.15)
(2.76111 -0.0458333 0.15)
(2.63194 -0.0458333 0.15)
(2.71806 0.0458333 0.15)
(2.71806 0.183333 0.15)
(2.71806 0.1375 0.15)
(2.76111 0.1375 0.15)
(2.63194 0.1375 0.15)
(2.71806 0.229167 0.15)
(2.71806 0.366667 0.15)
(2.71806 0.320833 0.15)
(2.76111 0.320833 0.15)
(2.63194 0.320833 0.15)
(2.71806 0.4125 0.15)
(2.71806 0.55 0.15)
(2.71806 0.504167 0.15)
(2.76111 0.504167 0.15)
(2.63194 0.504167 0.15)
(2.71806 0.595833 0.15)
(2.71806 0.733333 0.15)
(2.71806 0.6875 0.15)
(2.76111 0.6875 0.15)
(2.63194 0.6875 0.15)
(2.71806 0.779167 0.15)
(2.71806 0.916667 0.15)
(2.71806 0.870833 0.15)
(2.76111 0.870833 0.15)
(2.63194 0.870833 0.15)
(2.89028 -0.870833 0.15)
(2.89028 -0.916667 0.15)
(2.89028 -0.733333 0.15)
(2.89028 -0.779167 0.15)
(2.93333 -0.779167 0.15)
(2.80417 -0.779167 0.15)
(2.89028 -0.6875 0.15)
(2.89028 -0.55 0.15)
(2.89028 -0.595833 0.15)
(2.93333 -0.595833 0.15)
(2.80417 -0.595833 0.15)
(2.89028 -0.504167 0.15)
(2.89028 -0.366667 0.15)
(2.89028 -0.4125 0.15)
(2.93333 -0.4125 0.15)
(2.80417 -0.4125 0.15)
(2.89028 -0.320833 0.15)
(2.89028 -0.183333 0.15)
(2.89028 -0.229167 0.15)
(2.93333 -0.229167 0.15)
(2.80417 -0.229167 0.15)
(2.89028 -0.1375 0.15)
(2.89028 1.85037e-17 0.15)
(2.89028 -0.0458333 0.15)
(2.93333 -0.0458333 0.15)
(2.80417 -0.0458333 0.15)
(2.89028 0.0458333 0.15)
(2.89028 0.183333 0.15)
(2.89028 0.1375 0.15)
(2.93333 0.1375 0.15)
(2.80417 0.1375 0.15)
(2.89028 0.229167 0.15)
(2.89028 0.366667 0.15)
(2.89028 0.320833 0.15)
(2.93333 0.320833 0.15)
(2.80417 0.320833 0.15)
(2.89028 0.4125 0.15)
(2.89028 0.55 0.15)
(2.89028 0.504167 0.15)
(2.93333 0.504167 0.15)
(2.80417 0.504167 0.15)
(2.89028 0.595833 0.15)
(2.89028 0.733333 0.15)
(2.89028 0.6875 0.15)
(2.93333 0.6875 0.15)
(2.80417 0.6875 0.15)
(2.89028 0.779167 0.15)
(2.89028 0.916667 0.15)
(2.89028 0.870833 0.15)
(2.93333 0.870833 0.15)
(2.80417 0.870833 0.15)
(3.0625 -0.870833 0.15)
(3.0625 -0.916667 0.15)
(3.0625 -0.733333 0.15)
(3.0625 -0.779167 0.15)
(3.10556 -0.779167 0.15)
(2.97639 -0.779167 0.15)
(3.0625 -0.6875 0.15)
(3.0625 -0.55 0.15)
(3.0625 -0.595833 0.15)
(3.10556 -0.595833 0.15)
(2.97639 -0.595833 0.15)
(3.0625 -0.504167 0.15)
(3.0625 -0.366667 0.15)
(3.0625 -0.4125 0.15)
(3.10556 -0.4125 0.15)
(2.97639 -0.4125 0.15)
(3.0625 -0.320833 0.15)
(3.0625 -0.183333 0.15)
(3.0625 -0.229167 0.15)
(3.10556 -0.229167 0.15)
(2.97639 -0.229167 0.15)
(3.0625 -0.1375 0.15)
(3.0625 4.62593e-18 0.15)
(3.0625 -0.0458333 0.15)
(3.10556 -0.0458333 0.15)
(2.97639 -0.0458333 0.15)
(3.0625 0.0458333 0.15)
(3.0625 0.183333 0.15)
(3.0625 0.1375 0.15)
(3.10556 0.1375 0.15)
(2.97639 0.1375 0.15)
(3.0625 0.229167 0.15)
(3.0625 0.366667 0.15)
(3.0625 0.320833 0.15)
(3.10556 0.320833 0.15)
(2.97639 0.320833 0.15)
(3.0625 0.4125 0.15)
(3.0625 0.55 0.15)
(3.0625 0.504167 0.15)
(3.10556 0.504167 0.15)
(2.97639 0.504167 0.15)
(3.0625 0.595833 0.15)
(3.0625 0.733333 0.15)
(3.0625 0.6875 0.15)
(3.10556 0.6875 0.15)
(2.97639 0.6875 0.15)
(3.0625 0.779167 0.15)
(3.0625 0.916667 0.15)
(3.0625 0.870833 0.15)
(3.10556 0.870833 0.15)
(2.97639 0.870833 0.15)
(3.23472 -0.870833 0.15)
(3.23472 -0.916667 0.15)
(3.23472 -0.733333 0.15)
(3.23472 -0.779167 0.15)
(3.27778 -0.779167 0.15)
(3.14861 -0.779167 0.15)
(3.23472 -0.6875 0.15)
(3.23472 -0.55 0.15)
(3.23472 -0.595833 0.15)
(3.27778 -0.595833 0.15)
(3.14861 -0.595833 0.15)
(3.23472 -0.504167 0.15)
(3.23472 -0.366667 0.15)
(3.23472 -0.4125 0.15)
(3.27778 -0.4125 0.15)
(3.14861 -0.4125 0.15)
(3.23472 -0.320833 0.15)
(3.23472 -0.183333 0.15)
(3.23472 -0.229167 0.15)
(3.27778 -0.229167 0.15)
(3.14861 -0.229167 0.15)
(3.23472 -0.1375 0.15)
(3.23472 0 0.15)
(3.23472 -0.0458333 0.15)
(3.27778 -0.0458333 0.15)
(3.14861 -0.0458333 0.15)
(3.23472 0.0458333 0.15)
(3.23472 0.183333 0.15)
(3.23472 0.1375 0.15)
(3.27778 0.1375 0.15)
(3.14861 0.1375 0.15)
(3.23472 0.229167 0.15)
(3.23472 0.366667 0.15)
(3.23472 0.320833 0.15)
(3.27778 0.320833 0.15)
(3.14861 0.320833 0.15)
(3.23472 0.4125 0.15)
(3.23472 0.55 0.15)
(3.23472 0.504167 0.15)
(3.27778 0.504167 0.15)
(3.14861 0.504167 0.15)
(3.23472 0.595833 0.15)
(3.23472 0.733333 0.15)
(3.23472 0.6875 0.15)
(3.27778 0.6875 0.15)
(3.14861 0.6875 0.15)
(3.23472 0.779167 0.15)
(3.23472 0.916667 0.15)
(3.23472 0.870833 0.15)
(3.27778 0.870833 0.15)
(3.14861 0.870833 0.15)
(3.40694 -0.870833 0.15)
(3.40694 -0.916667 0.15)
(3.40694 -0.733333 0.15)
(3.40694 -0.779167 0.15)
(3.45 -0.779167 0.15)
(3.32083 -0.779167 0.15)
(3.40694 -0.6875 0.15)
(3.40694 -0.55 0.15)
(3.40694 -0.595833 0.15)
(3.45 -0.595833 0.15)
(3.32083 -0.595833 0.15)
(3.40694 -0.504167 0.15)
(3.40694 -0.366667 0.15)
(3.40694 -0.4125 0.15)
(3.45 -0.4125 0.15)
(3.32083 -0.4125 0.15)
(3.40694 -0.320833 0.15)
(3.40694 -0.183333 0.15)
(3.40694 -0.229167 0.15)
(3.45 -0.229167 0.15)
(3.32083 -0.229167 0.15)
(3.40694 -0.1375 0.15)
(3.40694 0 0.15)
(3.40694 -0.0458333 0.15)
(3.45 -0.0458333 0.15)
(3.32083 -0.0458333 0.15)
(3.40694 0.0458333 0.15)
(3.40694 0.183333 0.15)
(3.40694 0.1375 0.15)
(3.45 0.1375 0.15)
(3.32083 0.1375 0.15)
(3.40694 0.229167 0.15)
(3.40694 0.366667 0.15)
(3.40694 0.320833 0.15)
(3.45 0.320833 0.15)
(3.32083 0.320833 0.15)
(3.40694 0.4125 0.15)
(3.40694 0.55 0.15)
(3.40694 0.504167 0.15)
(3.45 0.504167 0.15)
(3.32083 0.504167 0.15)
(3.40694 0.595833 0.15)
(3.40694 0.733333 0.15)
(3.40694 0.6875 0.15)
(3.45 0.6875 0.15)
(3.32083 0.6875 0.15)
(3.40694 0.779167 0.15)
(3.40694 0.916667 0.15)
(3.40694 0.870833 0.15)
(3.45 0.870833 0.15)
(3.32083 0.870833 0.15)
(3.57917 -0.870833 0.15)
(3.57917 -0.916667 0.15)
(3.57917 -0.733333 0.15)
(3.57917 -0.779167 0.15)
(3.62222 -0.779167 0.15)
(3.49306 -0.779167 0.15)
(3.57917 -0.6875 0.15)
(3.57917 -0.55 0.15)
(3.57917 -0.595833 0.15)
(3.62222 -0.595833 0.15)
(3.49306 -0.595833 0.15)
(3.57917 -0.504167 0.15)
(3.57917 -0.366667 0.15)
(3.57917 -0.4125 0.15)
(3.62222 -0.4125 0.15)
(3.49306 -0.4125 0.15)
(3.57917 -0.320833 0.15)
(3.57917 -0.183333 0.15)
(3.57917 -0.229167 0.15)
(3.62222 -0.229167 0.15)
(3.49306 -0.229167 0.15)
(3.57917 -0.1375 0.15)
(3.57917 0 0.15)
(3.57917 -0.0458333 0.15)
(3.62222 -0.0458333 0.15)
(3.49306 -0.0458333 0.15)
(3.57917 0.0458333 0.15)
(3.57917 0.183333 0.15)
(3.57917 0.1375 0.15)
(3.62222 0.1375 0.15)
(3.49306 0.1375 0.15)
(3.57917 0.229167 0.15)
(3.57917 0.366667 0.15)
(3.57917 0.320833 0.15)
(3.62222 0.320833 0.15)
(3.49306 0.320833 0.15)
(3.57917 0.4125 0.15)
(3.57917 0.55 0.15)
(3.57917 0.504167 0.15)
(3.62222 0.504167 0.15)
(3.49306 0.504167 0.15)
(3.57917 0.595833 0.15)
(3.57917 0.733333 0.15)
(3.57917 0.6875 0.15)
(3.62222 0.6875 0.15)
(3.49306 0.6875 0.15)
(3.57917 0.779167 0.15)
(3.57917 0.916667 0.15)
(3.57917 0.870833 0.15)
(3.62222 0.870833 0.15)
(3.49306 0.870833 0.15)
(3.75139 -0.870833 0.15)
(3.75139 -0.916667 0.15)
(3.75139 -0.733333 0.15)
(3.75139 -0.779167 0.15)
(3.79444 -0.779167 0.15)
(3.66528 -0.779167 0.15)
(3.75139 -0.6875 0.15)
(3.75139 -0.55 0.15)
(3.75139 -0.595833 0.15)
(3.79444 -0.595833 0.15)
(3.66528 -0.595833 0.15)
(3.75139 -0.504167 0.15)
(3.75139 -0.366667 0.15)
(3.75139 -0.4125 0.15)
(3.79444 -0.4125 0.15)
(3.66528 -0.4125 0.15)
(3.75139 -0.320833 0.15)
(3.75139 -0.183333 0.15)
(3.75139 -0.229167 0.15)
(3.79444 -0.229167 0.15)
(3.66528 -0.229167 0.15)
(3.75139 -0.1375 0.15)
(3.75139 -6.93889e-18 0.15)
(3.75139 -0.0458333 0.15)
(3.79444 -0.0458333 0.15)
(3.66528 -0.0458333 0.15)
(3.75139 0.0458333 0.15)
(3.75139 0.183333 0.15)
(3.75139 0.1375 0.15)
(3.79444 0.1375 0.15)
(3.66528 0.1375 0.15)
(3.75139 0.229167 0.15)
(3.75139 0.366667 0.15)
(3.75139 0.320833 0.15)
(3.79444 0.320833 0.15)
(3.66528 0.320833 0.15)
(3.75139 0.4125 0.15)
(3.75139 0.55 0.15)
(3.75139 0.504167 0.15)
(3.79444 0.504167 0.15)
(3.66528 0.504167 0.15)
(3.75139 0.595833 0.15)
(3.75139 0.733333 0.15)
(3.75139 0.6875 0.15)
(3.79444 0.6875 0.15)
(3.66528 0.6875 0.15)
(3.75139 0.779167 0.15)
(3.75139 0.916667 0.15)
(3.75139 0.870833 0.15)
(3.79444 0.870833 0.15)
(3.66528 0.870833 0.15)
(3.92361 -0.870833 0.15)
(3.92361 -0.916667 0.15)
(3.92361 -0.733333 0.15)
(3.92361 -0.779167 0.15)
(3.96667 -0.779167 0.15)
(3.8375 -0.779167 0.15)
(3.92361 -0.6875 0.15)
(3.92361 -0.55 0.15)
(3.92361 -0.595833 0.15)
(3.96667 -0.595833 0.15)
(3.8375 -0.595833 0.15)
(3.92361 -0.504167 0.15)
(3.92361 -0.366667 0.15)
(3.92361 -0.4125 0.15)
(3.96667 -0.4125 0.15)
(3.8375 -0.4125 0.15)
(3.92361 -0.320833 0.15)
(3.92361 -0.183333 0.15)
(3.92361 -0.229167 0.15)
(3.96667 -0.229167 0.15)
(3.8375 -0.229167 0.15)
(3.92361 -0.1375 0.15)
(3.92361 -9.25186e-18 0.15)
(3.92361 -0.0458333 0.15)
(3.96667 -0.0458333 0.15)
(3.8375 -0.0458333 0.15)
(3.92361 0.0458333 0.15)
(3.92361 0.183333 0.15)
(3.92361 0.1375 0.15)
(3.96667 0.1375 0.15)
(3.8375 0.1375 0.15)
(3.92361 0.229167 0.15)
(3.92361 0.366667 0.15)
(3.92361 0.320833 0.15)
(3.96667 0.320833 0.15)
(3.8375 0.320833 0.15)
(3.92361 0.4125 0.15)
(3.92361 0.55 0.15)
(3.92361 0.504167 0.15)
(3.96667 0.504167 0.15)
(3.8375 0.504167 0.15)
(3.92361 0.595833 0.15)
(3.92361 0.733333 0.15)
(3.92361 0.6875 0.15)
(3.96667 0.6875 0.15)
(3.8375 0.6875 0.15)
(3.92361 0.779167 0.15)
(3.92361 0.916667 0.15)
(3.92361 0.870833 0.15)
(3.96667 0.870833 0.15)
(3.8375 0.870833 0.15)
(4.09583 -0.870833 0.15)
(4.09583 -0.916667 0.15)
(4.09583 -0.733333 0.15)
(4.09583 -0.779167 0.15)
(4.13889 -0.779167 0.15)
(4.00972 -0.779167 0.15)
(4.09583 -0.6875 0.15)
(4.09583 -0.55 0.15)
(4.09583 -0.595833 0.15)
(4.13889 -0.595833 0.15)
(4.00972 -0.595833 0.15)
(4.09583 -0.504167 0.15)
(4.09583 -0.366667 0.15)
(4.09583 -0.4125 0.15)
(4.13889 -0.4125 0.15)
(4.00972 -0.4125 0.15)
(4.09583 -0.320833 0.15)
(4.09583 -0.183333 0.15)
(4.09583 -0.229167 0.15)
(4.13889 -0.229167 0.15)
(4.00972 -0.229167 0.15)
(4.09583 -0.1375 0.15)
(4.09583 -1.61908e-17 0.15)
(4.09583 -0.0458333 0.15)
(4.13889 -0.0458333 0.15)
(4.00972 -0.0458333 0.15)
(4.09583 0.0458333 0.15)
(4.09583 0.183333 0.15)
(4.09583 0.1375 0.15)
(4.13889 0.1375 0.15)
(4.00972 0.1375 0.15)
(4.09583 0.229167 0.15)
(4.09583 0.366667 0.15)
(4.09583 0.320833 0.15)
(4.13889 0.320833 0.15)
(4.00972 0.320833 0.15)
(4.09583 0.4125 0.15)
(4.09583 0.55 0.15)
(4.09583 0.504167 0.15)
(4.13889 0.504167 0.15)
(4.00972 0.504167 0.15)
(4.09583 0.595833 0.15)
(4.09583 0.733333 0.15)
(4.09583 0.6875 0.15)
(4.13889 0.6875 0.15)
(4.00972 0.6875 0.15)
(4.09583 0.779167 0.15)
(4.09583 0.916667 0.15)
(4.09583 0.870833 0.15)
(4.13889 0.870833 0.15)
(4.00972 0.870833 0.15)
(4.26806 -0.870833 0.15)
(4.26806 -0.916667 0.15)
(4.26806 -0.733333 0.15)
(4.26806 -0.779167 0.15)
(4.31111 -0.779167 0.15)
(4.18194 -0.779167 0.15)
(4.26806 -0.6875 0.15)
(4.26806 -0.55 0.15)
(4.26806 -0.595833 0.15)
(4.31111 -0.595833 0.15)
(4.18194 -0.595833 0.15)
(4.26806 -0.504167 0.15)
(4.26806 -0.366667 0.15)
(4.26806 -0.4125 0.15)
(4.31111 -0.4125 0.15)
(4.18194 -0.4125 0.15)
(4.26806 -0.320833 0.15)
(4.26806 -0.183333 0.15)
(4.26806 -0.229167 0.15)
(4.31111 -0.229167 0.15)
(4.18194 -0.229167 0.15)
(4.26806 -0.1375 0.15)
(4.26806 9.25186e-18 0.15)
(4.26806 -0.0458333 0.15)
(4.31111 -0.0458333 0.15)
(4.18194 -0.0458333 0.15)
(4.26806 0.0458333 0.15)
(4.26806 0.183333 0.15)
(4.26806 0.1375 0.15)
(4.31111 0.1375 0.15)
(4.18194 0.1375 0.15)
(4.26806 0.229167 0.15)
(4.26806 0.366667 0.15)
(4.26806 0.320833 0.15)
(4.31111 0.320833 0.15)
(4.18194 0.320833 0.15)
(4.26806 0.4125 0.15)
(4.26806 0.55 0.15)
(4.26806 0.504167 0.15)
(4.31111 0.504167 0.15)
(4.18194 0.504167 0.15)
(4.26806 0.595833 0.15)
(4.26806 0.733333 0.15)
(4.26806 0.6875 0.15)
(4.31111 0.6875 0.15)
(4.18194 0.6875 0.15)
(4.26806 0.779167 0.15)
(4.26806 0.916667 0.15)
(4.26806 0.870833 0.15)
(4.31111 0.870833 0.15)
(4.18194 0.870833 0.15)
(4.44028 -0.870833 0.15)
(4.44028 -0.916667 0.15)
(4.44028 -0.733333 0.15)
(4.44028 -0.779167 0.15)
(4.48333 -0.779167 0.15)
(4.35417 -0.779167 0.15)
(4.44028 -0.6875 0.15)
(4.44028 -0.55 0.15)
(4.44028 -0.595833 0.15)
(4.48333 -0.595833 0.15)
(4.35417 -0.595833 0.15)
(4.44028 -0.504167 0.15)
(4.44028 -0.366667 0.15)
(4.44028 -0.4125 0.15)
(4.48333 -0.4125 0.15)
(4.35417 -0.4125 0.15)
(4.44028 -0.320833 0.15)
(4.44028 -0.183333 0.15)
(4.44028 -0.229167 0.15)
(4.48333 -0.229167 0.15)
(4.35417 -0.229167 0.15)
(4.44028 -0.1375 0.15)
(4.44028 -1.27213e-17 0.15)
(4.44028 -0.0458333 0.15)
(4.48333 -0.0458333 0.15)
(4.35417 -0.0458333 0.15)
(4.44028 0.0458333 0.15)
(4.44028 0.183333 0.15)
(4.44028 0.1375 0.15)
(4.48333 0.1375 0.15)
(4.35417 0.1375 0.15)
(4.44028 0.229167 0.15)
(4.44028 0.366667 0.15)
(4.44028 0.320833 0.15)
(4.48333 0.320833 0.15)
(4.35417 0.320833 0.15)
(4.44028 0.4125 0.15)
(4.44028 0.55 0.15)
(4.44028 0.504167 0.15)
(4.48333 0.504167 0.15)
(4.35417 0.504167 0.15)
(4.44028 0.595833 0.15)
(4.44028 0.733333 0.15)
(4.44028 0.6875 0.15)
(4.48333 0.6875 0.15)
(4.35417 0.6875 0.15)
(4.44028 0.779167 0.15)
(4.44028 0.916667 0.15)
(4.44028 0.870833 0.15)
(4.48333 0.870833 0.15)
(4.35417 0.870833 0.15)
(4.6125 -0.870833 0.15)
(4.6125 -0.916667 0.15)
(4.6125 -0.733333 0.15)
(4.6125 -0.779167 0.15)
(4.65556 -0.779167 0.15)
(4.52639 -0.779167 0.15)
(4.6125 -0.6875 0.15)
(4.6125 -0.55 0.15)
(4.6125 -0.595833 0.15)
(4.65556 -0.595833 0.15)
(4.52639 -0.595833 0.15)
(4.6125 -0.504167 0.15)
(4.6125 -0.366667 0.15)
(4.6125 -0.4125 0.15)
(4.65556 -0.4125 0.15)
(4.52639 -0.4125 0.15)
(4.6125 -0.320833 0.15)
(4.6125 -0.183333 0.15)
(4.6125 -0.229167 0.15)
(4.65556 -0.229167 0.15)
(4.52639 -0.229167 0.15)
(4.6125 -0.1375 0.15)
(4.6125 1.15648e-18 0.15)
(4.6125 -0.0458333 0.15)
(4.65556 -0.0458333 0.15)
(4.52639 -0.0458333 0.15)
(4.6125 0.0458333 0.15)
(4.6125 0.183333 0.15)
(4.6125 0.1375 0.15)
(4.65556 0.1375 0.15)
(4.52639 0.1375 0.15)
(4.6125 0.229167 0.15)
(4.6125 0.366667 0.15)
(4.6125 0.320833 0.15)
(4.65556 0.320833 0.15)
(4.52639 0.320833 0.15)
(4.6125 0.4125 0.15)
(4.6125 0.55 0.15)
(4.6125 0.504167 0.15)
(4.65556 0.504167 0.15)
(4.52639 0.504167 0.15)
(4.6125 0.595833 0.15)
(4.6125 0.733333 0.15)
(4.6125 0.6875 0.15)
(4.65556 0.6875 0.15)
(4.52639 0.6875 0.15)
(4.6125 0.779167 0.15)
(4.6125 0.916667 0.15)
(4.6125 0.870833 0.15)
(4.65556 0.870833 0.15)
(4.52639 0.870833 0.15)
(4.78472 -0.870833 0.15)
(4.78472 -0.916667 0.15)
(4.78472 -0.733333 0.15)
(4.78472 -0.779167 0.15)
(4.82778 -0.779167 0.15)
(4.69861 -0.779167 0.15)
(4.78472 -0.6875 0.15)
(4.78472 -0.55 0.15)
(4.78472 -0.595833 0.15)
(4.82778 -0.595833 0.15)
(4.69861 -0.595833 0.15)
(4.78472 -0.504167 0.15)
(4.78472 -0.366667 0.15)
(4.78472 -0.4125 0.15)
(4.82778 -0.4125 0.15)
(4.69861 -0.4125 0.15)
(4.78472 -0.320833 0.15)
(4.78472 -0.183333 0.15)
(4.78472 -0.229167 0.15)
(4.82778 -0.229167 0.15)
(4.69861 -0.229167 0.15)
(4.78472 -0.1375 0.15)
(4.78472 -2.19732e-17 0.15)
(4.78472 -0.0458333 0.15)
(4.82778 -0.0458333 0.15)
(4.69861 -0.0458333 0.15)
(4.78472 0.0458333 0.15)
(4.78472 0.183333 0.15)
(4.78472 0.1375 0.15)
(4.82778 0.1375 0.15)
(4.69861 0.1375 0.15)
(4.78472 0.229167 0.15)
(4.78472 0.366667 0.15)
(4.78472 0.320833 0.15)
(4.82778 0.320833 0.15)
(4.69861 0.320833 0.15)
(4.78472 0.4125 0.15)
(4.78472 0.55 0.15)
(4.78472 0.504167 0.15)
(4.82778 0.504167 0.15)
(4.69861 0.504167 0.15)
(4.78472 0.595833 0.15)
(4.78472 0.733333 0.15)
(4.78472 0.6875 0.15)
(4.82778 0.6875 0.15)
(4.69861 0.6875 0.15)
(4.78472 0.779167 0.15)
(4.78472 0.916667 0.15)
(4.78472 0.870833 0.15)
(4.82778 0.870833 0.15)
(4.69861 0.870833 0.15)
(5 -0.916667 0.15)
(5 -0.870833 0.15)
(4.95694 -0.870833 0.15)
(4.95694 -0.916667 0.15)
(5 -0.733333 0.15)
(4.95694 -0.733333 0.15)
(4.95694 -0.779167 0.15)
(5 -0.779167 0.15)
(4.87083 -0.779167 0.15)
(5 -0.6875 0.15)
(4.95694 -0.6875 0.15)
(5 -0.55 0.15)
(4.95694 -0.55 0.15)
(4.95694 -0.595833 0.15)
(5 -0.595833 0.15)
(4.87083 -0.595833 0.15)
(5 -0.504167 0.15)
(4.95694 -0.504167 0.15)
(5 -0.366667 0.15)
(4.95694 -0.366667 0.15)
(4.95694 -0.4125 0.15)
(5 -0.4125 0.15)
(4.87083 -0.4125 0.15)
(5 -0.320833 0.15)
(4.95694 -0.320833 0.15)
(5 -0.183333 0.15)
(4.95694 -0.183333 0.15)
(4.95694 -0.229167 0.15)
(5 -0.229167 0.15)
(4.87083 -0.229167 0.15)
(5 -0.1375 0.15)
(4.95694 -0.1375 0.15)
(5 0 0.15)
(4.95694 -8.09538e-18 0.15)
(4.95694 -0.0458333 0.15)
(5 -0.0458333 0.15)
(4.87083 -0.0458333 0.15)
(5 0.0458333 0.15)
(4.95694 0.0458333 0.15)
(5 0.183333 0.15)
(4.95694 0.183333 0.15)
(4.95694 0.1375 0.15)
(5 0.1375 0.15)
(4.87083 0.1375 0.15)
(5 0.229167 0.15)
(4.95694 0.229167 0.15)
(5 0.366667 0.15)
(4.95694 0.366667 0.15)
(4.95694 0.320833 0.15)
(5 0.320833 0.15)
(4.87083 0.320833 0.15)
(5 0.4125 0.15)
(4.95694 0.4125 0.15)
(5 0.55 0.15)
(4.95694 0.55 0.15)
(4.95694 0.504167 0.15)
(5 0.504167 0.15)
(4.87083 0.504167 0.15)
(5 0.595833 0.15)
(4.95694 0.595833 0.15)
(5 0.733333 0.15)
(4.95694 0.733333 0.15)
(4.95694 0.6875 0.15)
(5 0.6875 0.15)
(4.87083 0.6875 0.15)
(5 0.779167 0.15)
(4.95694 0.779167 0.15)
(5 0.916667 0.15)
(4.95694 0.916667 0.15)
(4.95694 0.870833 0.15)
(5 0.870833 0.15)
(4.87083 0.870833 0.15)
(0.1528117481 -0.1145262122 0.15)
(0.1420410084 -0.1135268845 0.15)
(0.1204867694 -0.1115250366 0.15)
(0.1183948054 -0.1341696132 0.15)
(0.1312761507 -0.1125291068 0.15)
(0.1163049971 -0.1568234285 0.15)
(0.1511061207 0.2236747229 0.15)
(0.1489572157 0.2010334208 0.15)
(0.1598065661 0.2000478896 0.15)
(0.1587345208 0.1887315346 0.15)
(0.147885078 0.18971607 0.15)
(0.191163301 0.1857558785 0.15)
(0.1803387718 0.1867491496 0.15)
(0.01622731336 0.1898207098 0.15)
(0.0272403396 0.1889314693 0.15)
(0.03818936285 0.1880200468 0.15)
(0.06113816266 0.1974854036 0.15)
(0.06221448854 0.2088154216 0.15)
(0.04903040357 0.1870694327 0.15)
(0.0644516823 0.2314947297 0.15)
(0.3244694061 -0.1303454445 0.15)
(0.3234249125 -0.1416462786 0.15)
(0.2923249614 -0.1273901438 0.15)
(0.2912801906 -0.138693965 0.15)
(0.3019970894 -0.1396782543 0.15)
(0.3030417677 -0.1283754288 0.15)
(0.2881387749 -0.1726278684 0.15)
(0.3009520415 -0.1509850627 0.15)
(0.2902340546 -0.1500016767 0.15)
(0.3239955299 0.2075684678 0.15)
(0.3229337395 0.1962652214 0.15)
(0.3219079799 0.1849606406 0.15)
(0.332705563 0.1839367278 0.15)
(0.3316624347 0.1726397843 0.15)
(0.3208666582 0.1736615208 0.15)
(0.3640364298 0.1695607474 0.15)
(0.3532502615 0.1705886225 0.15)
(0.2019957037 0.1847608725 0.15)
(0.2344582974 0.1817599847 0.15)
(0.2236446493 0.1827622892 0.15)
(0.2376264129 0.2156894022 0.15)
(0.2246998392 0.1940701652 0.15)
(0.2355153864 0.1930666801 0.15)
(0.2365917636 0.2043756032 0.15)
(0.49488359 -0.1573586712 0.15)
(0.4627177526 -0.1544174544 0.15)
(0.4734418986 -0.1553994032 0.15)
(0.4595935515 -0.1882957101 0.15)
(0.4724008746 -0.1666844904 0.15)
(0.4616775396 -0.1657046254 0.15)
(0.4962175076 0.1910229949 0.15)
(0.4941695504 0.1684305759 0.15)
(0.5049030891 0.1673874979 0.15)
(0.5028539 0.1448142747 0.15)
(0.5038748248 0.1560992182 0.15)
(0.4931434623 0.1571441028 0.15)
(0.5350736916 0.1416752272 0.15)
(0.5360750714 0.1529660013 0.15)
(0.5253537585 0.1540109578 0.15)
(0.5243371862 0.1427296277 0.15)
(0.374823409 0.1685307884 0.15)
(0.4071150876 0.1654413116 0.15)
(0.3963300279 0.1664811355 0.15)
(0.4101966778 0.1993365767 0.15)
(0.3973707029 0.1777732852 0.15)
(0.4081496958 0.1767330199 0.15)
(0.6663389515 -0.1729552623 0.15)
(0.6341925257 -0.1700429624 0.15)
(0.6449108102 -0.1710123159 0.15)
(0.631079955 -0.203849988 0.15)
(0.6438742721 -0.1822707033 0.15)
(0.6331569833 -0.1813014423 0.15)
(0.6678832361 0.1740892507 0.15)
(0.6658494243 0.151508575 0.15)
(0.6638250564 0.1289430918 0.15)
(0.6852584128 0.1267857466 0.15)
(0.7066899934 0.1245984374 0.15)
(0.5458268676 0.1406273143 0.15)
(0.5565792121 0.13957044 0.15)
(0.5780370099 0.1374600376 0.15)
(0.5800730493 0.160021425 0.15)
(0.5673088398 0.1385176819 0.15)
(0.5821124145 0.1826186584 0.15)
(0.8378033975 -0.1883889961 0.15)
(0.8056294918 -0.1855022669 0.15)
(0.8163543974 -0.1864652046 0.15)
(0.8025336019 -0.2192485739 0.15)
(0.8132576041 -0.2202104235 0.15)
(0.8142929823 -0.2089428897 0.15)
(0.803567892 -0.2079819434 0.15)
(0.8549612675 -0.03221099884 0.15)
(0.8544713528 -0.03782684502 0.15)
(0.8598255567 -0.03838639572 0.15)
(0.8651724811 -0.0389486354 0.15)
(0.8679263794 -0.005673498578 0.15)
(0.8572715888 -0.004474428598 0.15)
(0.8466181244 -0.003282712595 0.15)
(0.8456925578 -0.01438418109 0.15)
(0.8157051162 0.136168565 0.15)
(0.8177224217 0.1587336992 0.15)
(0.8096851462 0.06847110234 0.15)
(0.81167223 0.09099193909 0.15)
(0.87573966 0.08410160716 0.15)
(0.8544066455 0.08642037254 0.15)
(0.7281081368 0.1224394909 0.15)
(0.7495233034 0.1202376359 0.15)
(0.7515427336 0.1428256717 0.15)
(0.7535488295 0.1653998803 0.15)
(1.010384192 -0.1975600807 0.15)
(0.9785452366 -0.1988350941 0.15)
(0.9889563176 -0.1955709615 0.15)
(0.975413193 -0.2327437553 0.15)
(0.9857804011 -0.2298009437 0.15)
(0.9868389475 -0.2183919453 0.15)
(0.9764219534 -0.2214275543 0.15)
(1.002945872 -0.0561572342 0.15)
(1.003585087 -0.04547929236 0.15)
(1.000867156 -0.08862818845 0.15)
(1.001916033 -0.07764813125 0.15)
(1.03169356 -0.08446548107 0.15)
(1.020969342 -0.08347348263 0.15)
(0.8700428477 -0.04509100249 0.15)
(0.8860818862 -0.04677476865 0.15)
(0.8807390336 -0.04620111633 0.15)
(0.887397035 -0.03026206984 0.15)
(0.8763056973 -0.03454744545 0.15)
(0.8758556113 -0.04008039567 0.15)
(0.8811856808 -0.04067275704 0.15)
(0.8865198523 -0.04126420346 0.15)
(1.039103819 -0.004597812688 0.15)
(1.017665895 -0.002608765321 0.15)
(0.9968175881 0.0005611605147 0.15)
(0.9947701534 -0.02204727534 0.15)
(1.005194198 -0.02369836095 0.15)
(1.004313679 -0.03470398126 0.15)
(0.993849665 -0.03315895666 0.15)
(0.9669978756 0.1424221395 0.15)
(0.9649756943 0.1198152773 0.15)
(0.9862179237 0.1173623252 0.15)
(0.9882420041 0.1399680069 0.15)
(0.9820944374 0.07195608745 0.15)
(0.9608906714 0.07449887025 0.15)
(1.045455255 0.06385787016 0.15)
(1.024411903 0.06663583897 0.15)
(0.897051559 0.08177174507 0.15)
(0.9396499612 0.07698984459 0.15)
(0.9457269448 0.1448255312 0.15)
(0.9437064983 0.1222265424 0.15)
(-0.01791486669 -0.06382280744 0.15)
(-0.07410531669 -0.06900281007 0.15)
(-0.07911138776 -0.1379552086 0.15)
(-0.07754560974 -0.1149354157 0.15)
(-0.01368387407 0.04619934787 0.15)
(-0.01401077707 0.03827159369 0.15)
(-0.007299993339 0.03854809094 0.15)
(-0.008471483504 0.04600980497 0.15)
(-0.01407550021 0.03116170677 0.15)
(-0.008400184206 0.02951213855 0.15)
(-0.158014808 -0.01085415791 0.15)
(-0.179417761 -0.008076870325 0.15)
(-0.1152165374 -0.01567920775 0.15)
(-0.1114243242 0.03156871088 0.15)
(-0.08997261217 0.02857007206 0.15)
(-0.01126196035 0.06138533342 0.15)
(-0.01258672639 0.0542391402 0.15)
(-0.007222086297 0.0536928119 0.15)
(-0.004357706586 0.05993116554 0.15)
(-0.0228231782 0.2389113289 0.15)
(-0.02513572753 0.2161526431 0.15)
(-0.02767297341 0.1932842467 0.15)
(-0.00575726072 0.1915652136 0.15)
(0.00520424185 0.1906897922 0.15)
(-0.1400623753 0.1770840505 0.15)
(-0.1615261569 0.1787511097 0.15)
(-0.09651602799 0.1744658274 0.15)
(-0.0906365503 0.2212627857 0.15)
(0.08759815983 0.1322327372 0.15)
(0.08706444704 0.1264630695 0.15)
(0.09253905423 0.1259466899 0.15)
(0.09801092268 0.1254278529 0.15)
(0.0088424151 0.1214499666 0.15)
(0.01994397055 0.1206360695 0.15)
(0.03231333251 0.1312174798 0.15)
(0.025575251 0.1202322973 0.15)
(0.03344467872 0.1425776437 0.15)
(0.181276243 0.3123265899 0.15)
(0.1791613363 0.2896620475 0.15)
(0.1358832467 0.2936453254 0.15)
(0.1380168155 0.3163161707 0.15)
(0.1316258098 0.2483107692 0.15)
(0.1250080425 0.4090260624 0.15)
(0.1207073595 0.3636688132 0.15)
(0.1596281802 0.3143130398 0.15)
(0.07322185839 0.3222516315 0.15)
(0.3011873581 -0.2652103017 0.15)
(0.2797531705 -0.2632567513 0.15)
(0.2583091182 -0.2613012814 0.15)
(0.2431584701 -0.1913424016 0.15)
(0.2645998843 -0.1933046568 0.15)
(0.2604070256 -0.2386251188 0.15)
(0.2389652419 -0.2366668465 0.15)
(0.3247053282 -0.2444883875 0.15)
(0.3032859841 -0.2425372187 0.15)
(0.1745871377 -0.2307760878 0.15)
(0.153092324 -0.2288048609 0.15)
(0.2175116942 -0.2347054741 0.15)
(0.2217053843 -0.1893760506 0.15)
(0.2615272893 0.1210490798 0.15)
(0.260941874 0.1146420629 0.15)
(0.1961806708 0.1223679624 0.15)
(0.1967086166 0.1281231008 0.15)
(0.3539373547 0.2960436705 0.15)
(0.3518485627 0.2734008082 0.15)
(0.3087088681 0.2775118469 0.15)
(0.3108060879 0.3001589488 0.15)
(0.3024268785 0.2096098161 0.15)
(0.3045160915 0.2322355663 0.15)
(0.2976286969 0.3928927672 0.15)
(0.2934203584 0.3475327282 0.15)
(0.3323736306 0.2981056518 0.15)
(0.2460552133 0.3062751098 0.15)
(0.4726689985 -0.2807942665 0.15)
(0.4512259213 -0.2788499343 0.15)
(0.429784928 -0.2769047912 0.15)
(0.4146158848 -0.207003458 0.15)
(0.4360660963 -0.2089574908 0.15)
(0.4318817269 -0.2542405773 0.15)
(0.4104310535 -0.2522915231 0.15)
(0.4962009087 -0.2600736457 0.15)
(0.4747656126 -0.2581320441 0.15)
(0.3461226808 -0.2464393716 0.15)
(0.3889885306 -0.2503412165 0.15)
(0.3931748196 -0.2050482653 0.15)
(0.409110152 -0.1495069198 0.15)
(0.4198321217 -0.1504906753 0.15)
(0.3876760774 -0.1475413284 0.15)
(0.386632949 -0.1588382719 0.15)
(0.4025553372 -0.1033931421 0.15)
(0.4015163252 -0.1146673688 0.15)
(0.4122332239 -0.1156516581 0.15)
(0.4229551013 -0.1166364093 0.15)
(0.3372519079 -0.1087419649 0.15)
(0.3479475269 -0.109728297 0.15)
(0.3586550946 -0.1107157377 0.15)
(0.3596970219 -0.09943173855 0.15)
(0.3553813314 -0.08764663326 0.15)
(0.4337480092 0.1001062171 0.15)
(0.4331906003 0.09427166104 0.15)
(0.4386181454 0.09393971811 0.15)
(0.4440256827 0.09355449574 0.15)
(0.369015895 0.1058184174 0.15)
(0.3695914894 0.1117732076 0.15)
(0.5259246705 0.2794044761 0.15)
(0.5238550948 0.256773891 0.15)
(0.4809416859 0.2609533168 0.15)
(0.483012442 0.2835858009 0.15)
(0.4768040333 0.2157191235 0.15)
(0.4697736223 0.3763400297 0.15)
(0.4656356432 0.3309908892 0.15)
(0.5044735246 0.2814891539 0.15)
(0.4184898034 0.2898454902 0.15)
(0.644159785 -0.2962796547 0.15)
(0.6227254641 -0.2943491908 0.15)
(0.6012923237 -0.2924168278 0.15)
(0.5861414705 -0.2225684014 0.15)
(0.6075645613 -0.2245008363 0.15)
(0.6033857658 -0.2697563196 0.15)
(0.5819604988 -0.2678256914 0.15)
(0.6676849305 -0.2755453505 0.15)
(0.646253412 -0.2736171551 0.15)
(0.5176382887 -0.2620144365 0.15)
(0.5605225645 -0.265890875 0.15)
(0.5647038133 -0.2206305978 0.15)
(0.5806318268 -0.1651789599 0.15)
(0.5913516409 -0.1661534767 0.15)
(0.5591894887 -0.1632266619 0.15)
(0.5581496658 -0.1744988047 0.15)
(0.5745800888 -0.1135239611 0.15)
(0.5799384253 -0.1140281469 0.15)
(0.5730207957 -0.1304382421 0.15)
(0.5837405893 -0.1314238043 0.15)
(0.5847767374 -0.1201804451 0.15)
(0.579417128 -0.1196791541 0.15)
(0.574056872 -0.1191848333 0.15)
(0.5944593871 -0.1324092741 0.15)
(0.595495607 -0.1211759645 0.15)
(0.590136901 -0.1206757616 0.15)
(0.5087105137 -0.1245417245 0.15)
(0.519425421 -0.125525829 0.15)
(0.5301425969 -0.1265071312 0.15)
(0.5311783035 -0.1152577052 0.15)
(0.5954506161 0.09031094363 0.15)
(0.5944488472 0.07905927272 0.15)
(0.6042053879 0.06675007356 0.15)
(0.5348547414 0.07914322858 0.15)
(0.5294716729 0.07967310904 0.15)
(0.5510097392 0.07761601905 0.15)
(0.5456404683 0.07812142014 0.15)
(0.5525217324 0.09451841902 0.15)
(0.546152841 0.08377365717 0.15)
(0.5515203771 0.08326038267 0.15)
(0.8156304415 -0.3117330464 0.15)
(0.813531292 -0.3344442441 0.15)
(0.7706618802 -0.3305591416 0.15)
(0.7727611016 -0.3078579936 0.15)
(0.7685610883 -0.353277217 0.15)
(0.7575974374 -0.2379852798 0.15)
(0.7790316864 -0.2399056941 0.15)
(0.7811102134 -0.2173301715 0.15)
(0.7748553957 -0.2851774786 0.15)
(0.753421701 -0.2832510899 0.15)
(0.8391665809 -0.2909776677 0.15)
(0.8177266552 -0.2890426665 0.15)
(0.6891225158 -0.2774731044 0.15)
(0.7319861071 -0.2813235208 0.15)
(0.738235741 -0.2134887885 0.15)
(0.7361612893 -0.236063685 0.15)
(0.7520568341 -0.1806913867 0.15)
(0.7627796558 -0.1816551354 0.15)
(0.7306443267 -0.178763951 0.15)
(0.7392693124 -0.2022190785 0.15)
(0.7403104597 -0.1909651359 0.15)
(0.7296104472 -0.1900045078 0.15)
(0.7459428691 -0.129393165 0.15)
(0.7513144885 -0.1297650118 0.15)
(0.7444212284 -0.1461181147 0.15)
(0.7551340929 -0.1470809395 0.15)
(0.7556490772 -0.1414655012 0.15)
(0.7561672744 -0.1358262578 0.15)
(0.7507992271 -0.1353834374 0.15)
(0.7454368566 -0.1349552038 0.15)
(0.7658587213 -0.1480468644 0.15)
(0.7663744446 -0.1424234602 0.15)
(0.7610119919 -0.1419419914 0.15)
(0.7604969152 -0.1475584255 0.15)
(0.6801458891 -0.1402238349 0.15)
(0.6908543601 -0.1412123637 0.15)
(0.6918832405 -0.1299823903 0.15)
(0.686531176 -0.1294647264 0.15)
(0.6811799739 -0.1289702412 0.15)
(0.7015727884 -0.1422018164 0.15)
(0.7025992667 -0.1309977318 0.15)
(0.6972418541 -0.1304835888 0.15)
(0.6977616013 -0.1248384635 0.15)
(0.7031175358 -0.125368538 0.15)
(0.781536021 -0.007577474669 0.15)
(0.7761693194 -0.007087677684 0.15)
(0.7707837577 -0.006627966971 0.15)
(0.7702500191 -0.01234812057 0.15)
(0.755229591 0.06286771092 0.15)
(0.7562170093 0.07409460164 0.15)
(0.7532737368 0.04045615639 0.15)
(0.7853797679 0.03708683387 0.15)
(0.7746845541 0.038218249 0.15)
(0.7007068842 0.05714672036 0.15)
(0.7114164692 0.05605113075 0.15)
(0.7221422906 0.05495734887 0.15)
(0.7231261192 0.06616719835 0.15)
(0.7241142098 0.07739051165 0.15)
(0.9880257359 -0.3220699795 0.15)
(0.9859085507 -0.3448889719 0.15)
(0.9422674011 -0.3462259053 0.15)
(0.9443683983 -0.3234947931 0.15)
(0.9402047546 -0.3689766444 0.15)
(0.9290717791 -0.2534530735 0.15)
(0.9506554688 -0.2554405809 0.15)
(0.9525902318 -0.232812552 0.15)
(0.9464706273 -0.3007828769 0.15)
(0.9248883028 -0.2987914791 0.15)
(1.011580845 -0.3012400344 0.15)
(0.9901429212 -0.299250987 0.15)
(0.8605939113 -0.2929185303 0.15)
(0.90344346 -0.29682288 0.15)
(0.9097067566 -0.2288950117 0.15)
(0.9076252014 -0.2514923478 0.15)
(0.9235289892 -0.1961178015 0.15)
(0.9342414636 -0.1970956545 0.15)
(0.9020921635 -0.1941710364 0.15)
(0.8989969922 -0.2279204229 0.15)
(0.9000329247 -0.2166469148 0.15)
(0.9282705528 -0.1449158787 0.15)
(0.9276951278 -0.1509013156 0.15)
(0.9330404583 -0.1514374363 0.15)
(0.9383723313 -0.1520536564 0.15)
(0.8526600022 -0.1443009742 0.15)
(0.8579902121 -0.1448377006 0.15)
(0.8633168395 -0.1454022149 0.15)
(0.86386653 -0.1395750774 0.15)
(1.197884371 -0.1574203071 0.15)
(1.176446447 -0.1554312597 0.15)
(1.174329326 -0.1782495551 0.15)
(1.195767251 -0.1802386025 0.15)
(1.131463435 -0.1742723842 0.15)
(1.133580556 -0.1514540888 0.15)
(1.125111972 -0.2427283658 0.15)
(1.127229065 -0.2199103691 0.15)
(1.139932019 -0.08299810725 0.15)
(1.142049177 -0.06017941355 0.15)
(1.135697714 -0.1286353951 0.15)
(1.200001529 -0.1346016134 0.15)
(1.178563605 -0.132612566 0.15)
(1.041348951 -0.09686903904 0.15)
(1.042407691 -0.08545794967 0.15)
(1.073501089 -0.09984965886 0.15)
(1.074559673 -0.08844026222 0.15)
(1.06384568 -0.08744630003 0.15)
(1.062787097 -0.09885569667 0.15)
(1.077735404 -0.05421227251 0.15)
(1.055248854 -0.06363354456 0.15)
(1.05419028 -0.07504284163 0.15)
(1.064904264 -0.07603690339 0.15)
(1.075618247 -0.07703096514 0.15)
(0.1030847595 -0.06424013321 0.15)
(0.104132697 -0.05291300487 0.15)
(0.09872709244 -0.05239870906 0.15)
(0.09925450151 -0.0467034773 0.15)
(0.1046610372 -0.0472185625 0.15)
(0.08306504453 -0.04521103295 0.15)
(0.08844320408 -0.04570289732 0.15)
(0.1639711239 -0.05262594562 0.15)
(0.1693462018 -0.0530904081 0.15)
(0.1477724696 -0.05129865789 0.15)
(0.1531701576 -0.05174673915 0.15)
(0.1462137371 -0.06827184257 0.15)
(0.1526443262 -0.05743579024 0.15)
(0.1472522122 -0.05696010588 0.15)
(0.01596194422 -0.05583424985 0.15)
(0.01690375502 -0.04447327225 0.15)
(0.01789325689 -0.03312867062 0.15)
(0.006706759278 -0.03190939251 0.15)
(-0.004448037118 -0.03066764703 0.15)
(0.07272597362 -0.03852546698 0.15)
(0.06084687447 -0.04882797738 0.15)
(0.05982348822 -0.06016109951 0.15)
(0.1750247338 0.1299074958 0.15)
(0.17450018 0.123950782 0.15)
(0.1034654645 0.124944167 0.15)
(0.1088926279 0.124513939 0.15)
(0.1094126787 0.130303052 0.15)
(0.1153532867 0.1926530775 0.15)
(0.104494791 0.1936233884 0.15)
(0.1370699517 0.190702443 0.15)
(0.138136115 0.2020203481 0.15)
(0.1218974362 0.1464027009 0.15)
(0.1229911308 0.1577250817 0.15)
(0.1121243706 0.1586961594 0.15)
(0.1012669066 0.1596613532 0.15)
(0.1879855774 0.1518203224 0.15)
(0.1771535237 0.1528082659 0.15)
(0.1760838703 0.1414635686 0.15)
(0.1815083864 0.1409582641 0.15)
(0.1869283345 0.1404794951 0.15)
(0.1663514547 0.1538054789 0.15)
(0.1652817499 0.1424818766 0.15)
(0.1706700299 0.1419648697 0.15)
(0.170136589 0.1362587486 0.15)
(0.164745989 0.1367940481 0.15)
(0.2954588835 -0.09349370839 0.15)
(0.3061735137 -0.09448080008 0.15)
(0.3072192083 -0.08316702163 0.15)
(0.3040860765 -0.1170765862 0.15)
(0.2933693626 -0.1160903055 0.15)
(0.325512442 -0.1190494967 0.15)
(0.2494401825 -0.1234433579 0.15)
(0.260154905 -0.1244294539 0.15)
(0.2611996757 -0.1131256327 0.15)
(0.2504860413 -0.1121386334 0.15)
(0.2826501234 -0.115098769 0.15)
(0.2816044493 -0.1264015021 0.15)
(0.2857881927 -0.08121175699 0.15)
(0.2847399934 -0.09250923432 0.15)
(0.2795132654 -0.1490160222 0.15)
(0.2805594938 -0.1377073147 0.15)
(0.2698315497 -0.1367230049 0.15)
(0.2708746061 -0.1254160118 0.15)
(0.2750501785 -0.0802385644 0.15)
(0.2760859888 -0.06897719693 0.15)
(0.2707166748 -0.06850473272 0.15)
(0.27122883 -0.06293060967 0.15)
(0.2765980352 -0.06339342255 0.15)
(0.2551737463 -0.06140895446 0.15)
(0.2605248705 -0.06192592856 0.15)
(0.3356115383 -0.06836042246 0.15)
(0.3409438947 -0.0689064871 0.15)
(0.3195643853 -0.06673164179 0.15)
(0.324917423 -0.06727128963 0.15)
(0.3179352755 -0.08416027244 0.15)
(0.3232935401 -0.08465440853 0.15)
(0.323821714 -0.07896175847 0.15)
(0.3184642901 -0.07845856129 0.15)
(0.189235351 -0.07224839727 0.15)
(0.1902900245 -0.06089196592 0.15)
(0.184918295 -0.06036976585 0.15)
(0.1854557567 -0.0546094846 0.15)
(0.190827052 -0.05513636457 0.15)
(0.1747131066 -0.0535780145 0.15)
(0.2498167494 -0.06089033076 0.15)
(0.2337215586 -0.0593246821 0.15)
(0.2390852391 -0.05984703924 0.15)
(0.2321624739 -0.07625836532 0.15)
(0.2385659097 -0.06547683761 0.15)
(0.2332020977 -0.06496672068 0.15)
(0.3480547088 0.1141472342 0.15)
(0.347533236 0.1084943351 0.15)
(0.2825366204 0.1126654808 0.15)
(0.2831366185 0.119056482 0.15)
(0.2884850054 0.1767121437 0.15)
(0.2776705668 0.1777275774 0.15)
(0.3100765789 0.1746797159 0.15)
(0.3132127902 0.2085899991 0.15)
(0.3121647551 0.1972834678 0.15)
(0.2945532815 0.124553463 0.15)
(0.2891349658 0.1248874621 0.15)
(0.2961487588 0.1417927912 0.15)
(0.2907501109 0.1422846484 0.15)
(0.2902214844 0.1365871193 0.15)
(0.2956147122 0.1361017908 0.15)
(0.2745160219 0.1437928836 0.15)
(0.2739849934 0.1380694657 0.15)
(0.2794007328 0.1375669841 0.15)
(0.2799311146 0.1432834319 0.15)
(0.3609218369 0.1356886302 0.15)
(0.3501334205 0.1367247483 0.15)
(0.3490957533 0.1254433668 0.15)
(0.3544925124 0.1249095045 0.15)
(0.3598809567 0.1243834437 0.15)
(0.3393427355 0.137758064 0.15)
(0.338306916 0.126496597 0.15)
(0.3436985322 0.1259722505 0.15)
(0.3431807251 0.1203480354 0.15)
(0.337792948 0.1208921116 0.15)
(0.2080817072 0.132933973 0.15)
(0.2026615333 0.1333886599 0.15)
(0.2096608428 0.1498564559 0.15)
(0.1988232563 0.150838887 0.15)
(0.1977652435 0.1395222343 0.15)
(0.2031893592 0.1390450872 0.15)
(0.208608404 0.1385674063 0.15)
(0.1923456444 0.1399939408 0.15)
(0.2691130421 0.1442921727 0.15)
(0.2685825679 0.1385747292 0.15)
(0.2529296118 0.1458268409 0.15)
(0.2524111272 0.1401303794 0.15)
(0.2578021173 0.1396101082 0.15)
(0.2583299329 0.1453097211 0.15)
(0.2567162044 0.1278953304 0.15)
(0.2513213338 0.1285686145 0.15)
(0.2473748934 0.2033691002 0.15)
(0.2484254742 0.214681421 0.15)
(0.2452665974 0.1807541592 0.15)
(0.2668736816 0.1787373653 0.15)
(0.4883228625 -0.1113086198 0.15)
(0.4872852363 -0.1225679107 0.15)
(0.4980008622 -0.1235550947 0.15)
(0.433684852 -0.1176228953 0.15)
(0.4444103428 -0.118611999 0.15)
(0.4454530092 -0.1073200341 0.15)
(0.4509611746 -0.1647254071 0.15)
(0.4520024758 -0.1534373327 0.15)
(0.4305611539 -0.1514740818 0.15)
(0.4363169436 -0.08921095349 0.15)
(0.4368790834 -0.08327128497 0.15)
(0.4315069855 -0.08279635301 0.15)
(0.4261310772 -0.08238413725 0.15)
(0.5117919228 -0.09097313978 0.15)
(0.5064459034 -0.09042279457 0.15)
(0.5011021342 -0.08986984611 0.15)
(0.5005894411 -0.09546059056 0.15)
(0.3559042064 -0.08198944532 0.15)
(0.35696555 -0.07056112275 0.15)
(0.3462760016 -0.0694552402 0.15)
(0.4207507602 -0.08203026369 0.15)
(0.4153694249 -0.08169818929 0.15)
(0.4148395789 -0.08740886195 0.15)
(0.5095211689 0.09870020668 0.15)
(0.5090010429 0.0930509989 0.15)
(0.5084881211 0.08737119472 0.15)
(0.5138685205 0.08686666926 0.15)
(0.5133477509 0.0811780524 0.15)
(0.5079596527 0.08163207312 0.15)
(0.5241064813 0.08020082871 0.15)
(0.4494063409 0.09305275832 0.15)
(0.4547602552 0.09246843844 0.15)
(0.4552894566 0.09818298723 0.15)
(0.4609355784 0.160259951 0.15)
(0.4501851843 0.1612945499 0.15)
(0.4824141631 0.1581787531 0.15)
(0.4834407132 0.1694702048 0.15)
(0.4675675362 0.1141008527 0.15)
(0.4685923514 0.1253844309 0.15)
(0.4578540907 0.1264199126 0.15)
(0.4471057804 0.1274553225 0.15)
(0.5233202648 0.13145536 0.15)
(0.5340588541 0.1304017705 0.15)
(0.5018438564 0.1335383646 0.15)
(0.4987947553 0.09973348452 0.15)
(0.4998091309 0.1110019626 0.15)
(0.3809075651 0.1165865578 0.15)
(0.3755250336 0.1170789282 0.15)
(0.3824729862 0.1336318328 0.15)
(0.3717123372 0.1346533231 0.15)
(0.3706755836 0.1233276678 0.15)
(0.3760581459 0.1228031571 0.15)
(0.3814395893 0.1223098833 0.15)
(0.3652765353 0.1238476824 0.15)
(0.4363450595 0.1284868624 0.15)
(0.4255789186 0.1295249309 0.15)
(0.4245511162 0.1182416298 0.15)
(0.4299380309 0.1177207324 0.15)
(0.4294207884 0.112059306 0.15)
(0.4240326932 0.1125783043 0.15)
(0.4189197478 0.1757046315 0.15)
(0.4178831481 0.1644131079 0.15)
(0.4394224924 0.1623373199 0.15)
(0.6602947379 -0.1212949359 0.15)
(0.6656535259 -0.1217509573 0.15)
(0.6587279103 -0.1382687755 0.15)
(0.6694378595 -0.1392413728 0.15)
(0.670476502 -0.127971129 0.15)
(0.6651218712 -0.1274703 0.15)
(0.6597647256 -0.1270074009 0.15)
(0.6758327032 -0.1284550307 0.15)
(0.6051693157 -0.1333929167 0.15)
(0.6062057 -0.122168661 0.15)
(0.6008527835 -0.1216710039 0.15)
(0.6158653043 -0.1343752659 0.15)
(0.6168928913 -0.1231592326 0.15)
(0.6115497473 -0.1226644908 0.15)
(0.6120649882 -0.1170571106 0.15)
(0.6174063973 -0.1175597258 0.15)
(0.6224377954 -0.1803310007 0.15)
(0.6234735226 -0.1690705294 0.15)
(0.6020635815 -0.1671262588 0.15)
(0.6072407045 -0.1109268025 0.15)
(0.6077616599 -0.1052794794 0.15)
(0.6029491872 -0.09900022541 0.15)
(0.5976075951 -0.09839133886 0.15)
(0.6721517522 -0.1102725064 0.15)
(0.6715667397 -0.1163504532 0.15)
(0.5219990663 -0.09751650951 0.15)
(0.522498344 -0.09202705888 0.15)
(0.5171418532 -0.0915138049 0.15)
(0.5922639746 -0.09778266583 0.15)
(0.5869203449 -0.09717409237 0.15)
(0.5863656749 -0.1030548993 0.15)
(0.5858262085 -0.1088367877 0.15)
(0.6812532598 0.08175648885 0.15)
(0.6802598302 0.07052975415 0.15)
(0.6792742022 0.05931133426 0.15)
(0.6899853372 0.05822162661 0.15)
(0.6202965569 0.06517354996 0.15)
(0.6256616192 0.06464443627 0.15)
(0.6363720397 0.06357950057 0.15)
(0.6373717967 0.07482031091 0.15)
(0.6383741251 0.08605636333 0.15)
(0.8425037365 -0.137447378 0.15)
(0.8419373756 -0.1433784197 0.15)
(0.8473077119 -0.1438073924 0.15)
(0.7712209893 -0.1485303247 0.15)
(0.7717372464 -0.1429119915 0.15)
(0.7824510451 -0.1439080447 0.15)
(0.7819370771 -0.1495125302 0.15)
(0.7835088525 -0.1325070122 0.15)
(0.7928497717 -0.2070216439 0.15)
(0.7918153893 -0.21828927 0.15)
(0.7949115563 -0.1845399759 0.15)
(0.7735014818 -0.1826187916 0.15)
(0.7787259185 -0.1260392811 0.15)
(0.7792995737 -0.1200512697 0.15)
(0.6929445934 -0.1185539681 0.15)
(0.6934971293 -0.1126961624 0.15)
(0.7577944544 -0.118461723 0.15)
(0.7572405532 -0.1243234192 0.15)
(0.8310479 0.06618061042 0.15)
(0.8300543852 0.05494213337 0.15)
(0.8290813136 0.04371833045 0.15)
(0.8397580255 0.04254986616 0.15)
(0.8387913572 0.03135178165 0.15)
(0.8281169304 0.03251240128 0.15)
(0.8707658218 0.02778758047 0.15)
(0.8601171164 0.028987291 0.15)
(0.7960668332 0.03596501256 0.15)
(0.8174376912 0.03367527514 0.15)
(0.8203689965 0.06731462986 0.15)
(0.8193809962 0.05608146609 0.15)
(0.7917387301 -0.01426605576 0.15)
(0.7922312357 -0.008654758391 0.15)
(0.7868860827 -0.008105899584 0.15)
(1.009605565 -0.1456608936 0.15)
(1.010036372 -0.14004347 0.15)
(1.008176571 -0.16279445 0.15)
(1.008677358 -0.1570722434 0.15)
(1.024274277 -0.1643221688 0.15)
(1.014051862 -0.1575970108 0.15)
(1.01354158 -0.1633133149 0.15)
(0.9436947194 -0.1527071596 0.15)
(0.9645421456 -0.2222826963 0.15)
(0.9635500045 -0.2335713147 0.15)
(0.9666077489 -0.199792344 0.15)
(0.9449474094 -0.1980789276 0.15)
(0.9493549486 -0.05994286066 0.15)
(0.9599204981 -0.06130277397 0.15)
(0.9704939487 -0.06266412336 0.15)
(0.9712460973 -0.05189470372 0.15)
(0.9720414867 -0.04103808595 0.15)
(1.028484871 -0.1187239575 0.15)
(1.017715771 -0.1177827297 0.15)
(1.017132471 -0.1235283133 0.15)
(1.011685641 -0.1231336204 0.15)
(1.012279932 -0.1173778085 0.15)
(1.010500126 -0.1345039233 0.15)
(0.9298504853 -0.03541558823 0.15)
(0.9289995237 -0.04638407037 0.15)
(0.9334751411 -0.05793923712 0.15)
(0.9387681615 -0.05860618469 0.15)
(0.1294713529 -0.2495111927 0.15)
(0.1079393484 -0.2475294851 0.15)
(0.08641378008 -0.2455433532 0.15)
(0.07115209639 -0.1755028663 0.15)
(0.09268526811 -0.1774947252 0.15)
(0.08850401945 -0.222852419 0.15)
(0.06697298906 -0.2208677889 0.15)
(0.1315671971 -0.2268247957 0.15)
(0.002061045528 -0.2147838855 0.15)
(-0.01964906708 -0.2127073177 0.15)
(0.04531438284 -0.218840189 0.15)
(0.04948569477 -0.173470526 0.15)
(0.07733495486 -0.1075002471 0.15)
(0.06650654738 -0.1064795001 0.15)
(0.05567545144 -0.1054585038 0.15)
(0.04479168068 -0.10441856 0.15)
(0.0369577785 -0.06937495698 0.15)
(0.0478867849 -0.0704371751 0.15)
(0.0458248353 -0.09309056224 0.15)
(0.03495925753 -0.09204828927 0.15)
(0.07836773274 -0.09617522725 0.15)
(0.06754380602 -0.09515489604 0.15)
(0.0130571249 -0.08989063496 0.15)
(0.01400246898 -0.07852837831 0.15)
(0.003029399195 -0.07742692159 0.15)
(-0.008001946245 -0.07627888186 0.15)
(0.02407252011 -0.090997023 0.15)
(0.02596015028 -0.06827624316 0.15)
(0.01696962508 0.0912240699 0.15)
(0.01748517012 0.09723414418 0.15)
(0.2387165908 -0.1224554347 0.15)
(0.2279860291 -0.1214668649 0.15)
(0.2172664204 -0.1204793113 0.15)
(0.2096703762 -0.08556624098 0.15)
(0.2204012869 -0.08656187328 0.15)
(0.2183126488 -0.1091706038 0.15)
(0.2075812761 -0.1081799501 0.15)
(0.2397625421 -0.1111497145 0.15)
(0.1753546688 -0.1052009575 0.15)
(0.1646125279 -0.1042072961 0.15)
(0.1968370514 -0.1071870997 0.15)
(0.1989256177 -0.08456831956 0.15)
(0.6760473283 0.2645388312 0.15)
(0.6740015371 0.2418939878 0.15)
(0.6719657442 0.2192703112 0.15)
(0.6933901596 0.2171248429 0.15)
(0.6525921705 0.2440501114 0.15)
(0.6546327778 0.2666823799 0.15)
(0.6484957326 0.1988271586 0.15)
(0.6412347533 0.3596002969 0.15)
(0.6373035067 0.3141342776 0.15)
(0.5903109157 0.2730710722 0.15)
(0.7191940448 0.02129777273 0.15)
(0.7245484734 0.02075146792 0.15)
(0.724027558 0.01507210409 0.15)
(0.7401216648 0.0135272445 0.15)
(0.7347607312 0.0140467356 0.15)
(0.6977598301 0.02349998904 0.15)
(0.7031193594 0.02296536294 0.15)
(0.7084738507 0.02240890894 0.15)
(0.7089778121 0.02804625938 0.15)
(0.954705097 0.006369560098 0.15)
(0.9441395475 0.007729473409 0.15)
(0.9431873388 -0.003453482244 0.15)
(0.9537511832 -0.004810124043 0.15)
(0.9220121479 -0.000797555466 0.15)
(0.9229596511 0.01036715689 0.15)
(0.920147744 -0.02306775409 0.15)
(0.9163038707 0.05668081711 0.15)
(0.9142969506 0.0340869004 0.15)
(0.9335525182 0.0090527143 0.15)
(0.8814145067 0.02657682458 0.15)
(0.8920482353 0.02535640914 0.15)
(0.891089348 0.0141555941 0.15)
(0.1236144503 -0.0775768031 0.15)
(0.1344075373 -0.07858423 0.15)
(0.1323212191 -0.1012112531 0.15)
(0.1215298464 -0.1002069981 0.15)
(0.153857535 -0.103211438 0.15)
(0.08812425093 -0.108506318 0.15)
(0.08916271881 -0.09718383464 0.15)
(0.1107466242 -0.09920149082 0.15)
(0.1097044506 -0.1105206174 0.15)
(0.1128305095 -0.07656821623 0.15)
(0.09892014033 -0.1095160134 0.15)
(0.008422968818 -0.009071575465 0.15)
(0.008856033596 -0.003355137019 0.15)
(0.003499435034 0.003097427161 0.15)
(-0.002264502757 0.003855369543 0.15)
(0.0314231238 -0.005669593965 0.15)
(0.0309822186 -0.01145430003 0.15)
(0.04561878572 0.1530441009 0.15)
(0.0479290214 0.175736718 0.15)
(0.01499727851 0.1784366611 0.15)
(0.02599443292 0.1775488932 0.15)
(0.09039514007 0.1606228525 0.15)
(0.07954092704 0.1615787059 0.15)
(0.07839666513 0.1502449482 0.15)
(0.0731221996 0.2078646475 0.15)
(0.07201507099 0.1965284487 0.15)
(0.0936526252 0.1945921843 0.15)
(0.6875165437 0.03018420017 0.15)
(0.687002547 0.02452528461 0.15)
(0.6923834248 0.02401509072 0.15)
(0.6600620168 0.0267841437 0.15)
(0.665448798 0.02633757653 0.15)
(0.6660072704 0.03214029821 0.15)
(0.6665438503 0.03786942769 0.15)
(0.6209684959 0.133215664 0.15)
(0.6316870372 0.1321408357 0.15)
(0.6424002714 0.1310845772 0.15)
(0.6608174472 0.09515243934 0.15)
(0.6500918434 0.09622691856 0.15)
(0.6413881439 0.1198078561 0.15)
(0.6403845571 0.1085474157 0.15)
(0.6510983045 0.1074750408 0.15)
(0.6618199254 0.1064009311 0.15)
(0.6199549313 0.121945102 0.15)
(0.6306767369 0.1208729838 0.15)
(0.6832530971 0.1042415945 0.15)
(0.6939697393 0.1031679468 0.15)
(0.7046828915 0.1020675069 0.15)
(0.6725399244 0.1053309891 0.15)
(0.6715341818 0.09407978731 0.15)
(0.5749970756 0.1036673629 0.15)
(0.5642683512 0.1047190328 0.15)
(0.5662889313 0.1272436914 0.15)
(0.5770205505 0.1261907485 0.15)
(0.5448061481 0.1293554076 0.15)
(0.6102443088 0.1342729387 0.15)
(0.6092319246 0.1230042759 0.15)
(0.5877460105 0.1251363685 0.15)
(0.5887633732 0.1364045695 0.15)
(0.5857201028 0.1026192344 0.15)
(0.5994980514 0.1353412999 0.15)
(0.8277196753 -0.03512370304 0.15)
(0.8331029802 -0.03559691299 0.15)
(0.8336074387 -0.02995420556 0.15)
(0.834093132 -0.0243513851 0.15)
(0.9059363761 -0.06599241093 0.15)
(0.9006394334 -0.06534608921 0.15)
(0.8918496212 -0.04188145349 0.15)
(0.8914163696 -0.04738450209 0.15)
(0.9073542121 -0.04926054155 0.15)
(0.9020549157 -0.04862876459 0.15)
(-0.09185259854 0.005075476722 0.15)
(-0.08112770385 0.003867793347 0.15)
(-0.08017295524 0.01547753958 0.15)
(-0.09084634616 0.01654757612 0.15)
(-0.05878385392 0.01321232162 0.15)
(-0.05947680227 0.001030843908 0.15)
(-0.05613371082 0.05060164171 0.15)
(-0.05714514469 0.03789709729 0.15)
(-0.05051230157 -0.04846140089 0.15)
(-0.04963452931 -0.03698963329 0.15)
(-0.06066461954 -0.0356595309 0.15)
(-0.06140378379 -0.04727401414 0.15)
(-0.05977419517 -0.01160672771 0.15)
(-0.04857343322 -0.01331089733 0.15)
(-0.0927844372 -0.006590426206 0.15)
(-0.08188898471 -0.008179899324 0.15)
(-0.01429455901 -0.00619863191 0.15)
(-0.01510979131 -0.01768574288 0.15)
(-0.003562918873 -0.01925882729 0.15)
(-0.03728343709 -0.01497011862 0.15)
(-0.03954140778 -0.04969130591 0.15)
(-0.03874662348 -0.03817226931 0.15)
(-0.01070666211 0.1459242742 0.15)
(-0.01196274665 0.134496947 0.15)
(-0.01336683245 0.1229757916 0.15)
(-0.002269225833 0.1222298499 0.15)
(-0.08268025421 0.1029206381 0.15)
(-0.07192608391 0.1021107514 0.15)
(-0.07073831542 0.1136514749 0.15)
(-0.08146656314 0.1145210219 0.15)
(-0.04867609419 0.1126996878 0.15)
(-0.05025097443 0.1007113132 0.15)
(-0.04382335439 0.1481966754 0.15)
(-0.0453215861 0.1365451602 0.15)
(-0.05474960818 0.06394779508 0.15)
(-0.05165264323 0.08886333681 0.15)
(-0.08390978742 0.09125775058 0.15)
(-0.0732079828 0.09037488952 0.15)
(0.05919088575 0.1231956929 0.15)
(0.05369287501 0.1236828094 0.15)
(0.07017062059 0.1221682369 0.15)
(0.07071241824 0.1279427785 0.15)
(0.07616779765 0.127461626 0.15)
(0.02371548876 0.1027141928 0.15)
(0.02499094413 0.114485602 0.15)
(0.00742868623 0.1099038955 0.15)
(0.01298664007 0.1094514896 0.15)
(0.01865131036 0.1090678187 0.15)
(0.0193637297 0.1148996424 0.15)
(0.04651373487 0.1065962809 0.15)
(0.04100212377 0.1070872704 0.15)
(0.04053090795 0.1010592239 0.15)
(0.04211627198 0.1188541626 0.15)
(0.0428166914 0.1246399983 0.15)
(0.04825298986 0.1241707595 0.15)
(0.2394813543 0.1188555107 0.15)
(0.2399992603 0.1243184268 0.15)
(0.2183792211 0.126477024 0.15)
(0.2178589193 0.1210207576 0.15)
(0.4122486948 0.1022670708 0.15)
(0.4127700557 0.1079620603 0.15)
(0.3911621914 0.1099487977 0.15)
(0.390628654 0.1042199885 0.15)
(0.582679533 0.06883053535 0.15)
(0.5724656769 0.07551804165 0.15)
(0.5810624917 0.05159692378 0.15)
(0.5816106537 0.05738593936 0.15)
(0.5762169169 0.05781165996 0.15)
(0.5708222429 0.05820563137 0.15)
(0.6138979612 0.05439006673 0.15)
(0.608531467 0.05490374671 0.15)
(0.603163354 0.05538915532 0.15)
(0.6026138769 0.04961843949 0.15)
(0.565443219 0.05867086169 0.15)
(0.5600964985 0.05926777081 0.15)
(0.5595068366 0.05332372619 0.15)
(0.5568821494 0.08273910645 0.15)
(0.5563708576 0.07709851939 0.15)
(0.5671051683 0.07604211308 0.15)
(0.7230148083 -0.1441791922 0.15)
(0.7337251989 -0.1451578562 0.15)
(0.7347462984 -0.1340225689 0.15)
(0.729393731 -0.1335319743 0.15)
(0.7240364826 -0.1330268852 0.15)
(0.7400888367 -0.13450219 0.15)
(0.7405919853 -0.1289710186 0.15)
(0.742372388 -0.1685035671 0.15)
(0.743398774 -0.1573004782 0.15)
(0.7630144958 0.02816087474 0.15)
(0.7620554115 0.0169904077 0.15)
(0.7718001236 0.004683611597 0.15)
(0.7615651099 0.01138121573 0.15)
(0.7454843404 0.01300488017 0.15)
(0.7562112541 0.01193369402 0.15)
(0.7566974065 0.01754146324 0.15)
(0.8954018189 -0.1488360685 0.15)
(0.9007544787 -0.1493256674 0.15)
(0.9061254309 -0.1497155297 0.15)
(0.9065982154 -0.1443492583 0.15)
(0.9138206048 -0.1839498553 0.15)
(0.9148317881 -0.1727915535 0.15)
(0.9051343568 -0.1607220402 0.15)
(0.9153382112 -0.167203441 0.15)
(0.9314343258 -0.1686617158 0.15)
(0.9367857846 -0.1691642591 0.15)
(0.9207137008 -0.1676851151 0.15)
(0.9202052862 -0.1732730428 0.15)
(0.8709671964 -0.1800762807 0.15)
(0.8719850932 -0.1689105673 0.15)
(0.8622690715 -0.1567599899 0.15)
(0.8837254833 -0.1587879115 0.15)
(0.8852234732 -0.1422204503 0.15)
(0.8847275204 -0.1477281863 0.15)
(0.8900651008 -0.1482937168 0.15)
(0.1208167937 -0.04878089232 0.15)
(0.1262134994 -0.04930450585 0.15)
(0.1100581032 -0.04773829272 0.15)
(0.1095317473 -0.05342217324 0.15)
(0.08461187809 -0.02794178282 0.15)
(0.09008306349 -0.02822876518 0.15)
(0.09553448746 -0.02856312449 0.15)
(0.09615664441 -0.0223987396 0.15)
(0.1418741789 -0.05647337512 0.15)
(0.142393843 -0.05082914596 0.15)
(0.1316234174 -0.0498264328 0.15)
(0.03445731043 -0.03481384629 0.15)
(0.02895608041 -0.03426617339 0.15)
(0.01928228099 -0.01605246687 0.15)
(0.02489212805 -0.01663853857 0.15)
(0.02950013455 -0.02860261484 0.15)
(0.02997164454 -0.0229037031 0.15)
(0.02442000729 -0.02233970351 0.15)
(0.0188769466 -0.02177418979 0.15)
(0.03497802561 -0.02913988709 0.15)
(0.00762031717 -0.02052711367 0.15)
(0.001997918964 -0.0198821305 0.15)
(0.01326678641 -0.02116659713 0.15)
(0.01369298482 -0.01545705382 0.15)
(0.07424006562 -0.02141426796 0.15)
(0.07373786785 -0.02711595648 0.15)
(0.07916224433 -0.02758921101 0.15)
(0.04100240254 -0.02395708374 0.15)
(0.04650269831 -0.02444230324 0.15)
(0.05196276272 -0.02490651613 0.15)
(0.05250374513 -0.01902494142 0.15)
(0.05091800364 -0.03641370817 0.15)
(0.1528473142 0.1264808003 0.15)
(0.1534097912 0.1321534959 0.15)
(0.1316995729 0.1340653691 0.15)
(0.1311484688 0.1283204137 0.15)
(0.1306053459 0.1225099408 0.15)
(0.1360334673 0.1219568991 0.15)
(0.2927492608 -0.06448502063 0.15)
(0.2981233192 -0.06483058043 0.15)
(0.2819821587 -0.06380368894 0.15)
(0.2863149972 -0.07554468982 0.15)
(0.2868385486 -0.0698693869 0.15)
(0.2814628385 -0.06943338773 0.15)
(0.3131067553 -0.07795655898 0.15)
(0.3125778424 -0.08365717484 0.15)
(0.3142103869 -0.06620234947 0.15)
(0.3034931073 -0.06523298884 0.15)
(0.2069213005 -0.0567121696 0.15)
(0.2122946889 -0.05723813904 0.15)
(0.196189552 -0.05566062077 0.15)
(0.1956556359 -0.06139351244 0.15)
(0.2278471642 -0.06445833136 0.15)
(0.228369799 -0.0588037323 0.15)
(0.2176613196 -0.05776117163 0.15)
(0.3260075116 0.1110741202 0.15)
(0.3264945565 0.1164750223 0.15)
(0.3048685744 0.1183097836 0.15)
(0.3043741007 0.1128721106 0.15)
(0.317739511 0.1398056329 0.15)
(0.3069443197 0.1408012035 0.15)
(0.3058998466 0.1295114148 0.15)
(0.3112989255 0.1290566766 0.15)
(0.3167026443 0.1285653532 0.15)
(0.2950932714 0.1303734661 0.15)
(0.3004980885 0.1299372771 0.15)
(0.2999699034 0.1242336812 0.15)
(0.2982411027 0.1643981651 0.15)
(0.2971957981 0.1530994149 0.15)
(0.2853444211 0.1427872019 0.15)
(0.341421242 0.1603225413 0.15)
(0.3403821171 0.1490362736 0.15)
(0.3285396399 0.1387875097 0.15)
(0.3323950289 0.1214351201 0.15)
(0.3275053909 0.12754297 0.15)
(0.3329077959 0.1270266612 0.15)
(0.3221086113 0.1280657869 0.15)
(0.2312989484 0.1478709299 0.15)
(0.2204809478 0.148869621 0.15)
(0.2194265585 0.1376028469 0.15)
(0.2248390746 0.1371197459 0.15)
(0.2302494658 0.1366137434 0.15)
(0.2140174915 0.1380906492 0.15)
(0.2134914619 0.1324752314 0.15)
(0.2117718283 0.1724570873 0.15)
(0.2107161046 0.1611542823 0.15)
(0.2550250557 0.1684439786 0.15)
(0.2539743106 0.1571407117 0.15)
(0.2637224011 0.1448053815 0.15)
(0.2421099379 0.1468507947 0.15)
(0.245917707 0.1292557668 0.15)
(0.2410523151 0.1355491702 0.15)
(0.2464507065 0.1349679546 0.15)
(0.2518641466 0.1343973943 0.15)
(0.2356550427 0.1360991489 0.15)
(0.4689855763 -0.08653821224 0.15)
(0.4636360636 -0.08598222017 0.15)
(0.4582914188 -0.08542788488 0.15)
(0.457742177 -0.09127183564 0.15)
(0.4791631996 -0.09336727658 0.15)
(0.4796945495 -0.08765121982 0.15)
(0.4743380668 -0.08709458105 0.15)
(0.3831967255 -0.0789175251 0.15)
(0.3778431593 -0.07839439908 0.15)
(0.3724896484 -0.07787067563 0.15)
(0.3719693859 -0.08351053079 0.15)
(0.3933931051 -0.08553361139 0.15)
(0.3939047635 -0.07995401905 0.15)
(0.3885504581 -0.07943885882 0.15)
(0.4918474155 0.08315471266 0.15)
(0.5025766572 0.08210861874 0.15)
(0.5041567862 0.09921499632 0.15)
(0.5036405877 0.09356482157 0.15)
(0.476767333 0.09606168326 0.15)
(0.476218746 0.09026808735 0.15)
(0.4816060836 0.08983834072 0.15)
(0.4869978711 0.08939161035 0.15)
(0.6291202787 -0.1074954707 0.15)
(0.6286198442 -0.1130082141 0.15)
(0.6500938623 -0.1147597804 0.15)
(0.6506245562 -0.1090507932 0.15)
(0.5548250552 -0.09375394483 0.15)
(0.5494437589 -0.09341062594 0.15)
(0.5440441548 -0.09319968181 0.15)
(0.5434884963 -0.09909114295 0.15)
(0.5429490668 -0.1048726331 0.15)
(0.5644006743 -0.1067574991 0.15)
(0.5649585665 -0.1008527876 0.15)
(0.5655408413 -0.0947718752 0.15)
(0.5601885889 -0.09422376371 0.15)
(0.6348380124 0.04663445384 0.15)
(0.6294743257 0.04712427239 0.15)
(0.6251558788 0.05900956077 0.15)
(0.6246410137 0.05334128542 0.15)
(0.6299996048 0.05281819534 0.15)
(0.6353602191 0.05231691159 0.15)
(0.6197908996 0.05953957061 0.15)
(0.6578290039 0.06144929048 0.15)
(0.647091008 0.06252009885 0.15)
(0.6460902071 0.05126803684 0.15)
(0.6514666822 0.05073203934 0.15)
(0.6568388921 0.05021501704 0.15)
(0.6407183113 0.05178844461 0.15)
(0.6401990938 0.0461165559 0.15)
(0.6450201658 0.03982174093 0.15)
(0.6444353818 0.0339302705 0.15)
(0.6229387235 0.03584914392 0.15)
(0.6235337572 0.04177531583 0.15)
(0.80969648 -0.1408781544 0.15)
(0.8150544469 -0.141386323 0.15)
(0.8204192607 -0.1418639937 0.15)
(0.8209119081 -0.1363810584 0.15)
(0.8281065204 -0.1762160919 0.15)
(0.8291262443 -0.1650415094 0.15)
(0.8194141953 -0.1529455325 0.15)
(0.8408746205 -0.1548111307 0.15)
(0.7852366775 -0.1723681084 0.15)
(0.7862599634 -0.1611767834 0.15)
(0.7765812454 -0.1490246456 0.15)
(0.797971231 -0.1509891592 0.15)
(0.7995008271 -0.1342217629 0.15)
(0.7989887582 -0.1398274288 0.15)
(0.8043398988 -0.1403550499 0.15)
(0.8126647518 -0.0221728792 0.15)
(0.8121264215 -0.02789922507 0.15)
(0.7148543423 -0.1152303848 0.15)
(0.7143408547 -0.1208296925 0.15)
(0.7357401338 -0.1230404177 0.15)
(0.7362168273 -0.1176753124 0.15)
(0.8252701966 -0.0009406699001 0.15)
(0.8145747836 0.0002102470394 0.15)
(0.8136457618 -0.01092846151 0.15)
(0.8189961573 -0.01149658704 0.15)
(0.8243403659 -0.01206644842 0.15)
(0.8029430647 -0.009780283333 0.15)
(0.8082944723 -0.0103591483 0.15)
(0.8078164448 -0.01595511766 0.15)
(0.8057835429 0.0236486626 0.15)
(0.8048289352 0.01250479575 0.15)
(0.7931854667 0.00249587219 0.15)
(0.956696648 -0.1878717276 0.15)
(0.957698644 -0.1767366764 0.15)
(0.9523380184 -0.1762463385 0.15)
(0.952841208 -0.1706930763 0.15)
(0.9582011869 -0.1711903844 0.15)
(0.9421348824 -0.1696706005 0.15)
(0.9745537651 -0.1716380305 0.15)
(0.9806365852 -0.1707200655 0.15)
(0.9635665241 -0.1716299405 0.15)
(0.963064166 -0.1771742411 0.15)
(0.9792498455 -0.09084565825 0.15)
(0.9788112382 -0.09636313376 0.15)
(0.9840306687 -0.09716295097 0.15)
(0.9891157603 -0.09824164995 0.15)
(0.9579545154 -0.0884129872 0.15)
(0.9583802317 -0.08290455945 0.15)
(0.9370532634 -0.080596398 0.15)
(0.9365549714 -0.08623758863 0.15)
(0.9175536243 -0.05602795518 0.15)
(0.9161335927 -0.07281596179 0.15)
(0.9166412105 -0.06715002691 0.15)
(0.9112865201 -0.06657407111 0.15)
(0.9383616051 -0.06405964746 0.15)
(0.9379559982 -0.06951370047 0.15)
(0.9432657046 -0.07014152224 0.15)
(0.9485708851 -0.07076400305 0.15)
(0.9330635414 -0.06339293497 0.15)
(0.9321823234 -0.07443856179 0.15)
(1.180947139 -0.3399695581 0.15)
(1.138081248 -0.3359923872 0.15)
(1.101556863 -0.2635583109 0.15)
(1.122994787 -0.2655473582 0.15)
(1.120877602 -0.2883663507 0.15)
(1.099439677 -0.2863773033 0.15)
(1.097322585 -0.3091953 0.15)
(1.033018769 -0.3032290818 0.15)
(1.07588466 -0.3072062526 0.15)
(1.080118939 -0.2615692635 0.15)
(1.107908326 -0.1951023293 0.15)
(1.086470402 -0.1931132819 0.15)
(1.069266774 -0.1454870463 0.15)
(1.068208209 -0.1568962438 0.15)
(1.067149663 -0.1683052421 0.15)
(1.066091024 -0.1797152362 0.15)
(1.033939209 -0.1767311314 0.15)
(1.055377041 -0.1787211745 0.15)
(1.058552745 -0.1444934824 0.15)
(1.057494226 -0.155902182 0.15)
(1.214821613 0.0251290435 0.15)
(1.171955722 0.02910621438 0.15)
(1.124845559 -0.01255307831 0.15)
(1.146283483 -0.01454212568 0.15)
(1.144166334 -0.03736071982 0.15)
(1.137548458 0.1243585861 0.15)
(1.13331418 0.07872159697 0.15)
(1.066893179 0.0618688228 0.15)
(1.088321146 0.05988069928 0.15)
(1.086204025 0.03706240385 0.15)
(0.8484981088 0.01898222412 0.15)
(0.8475559024 0.007842127699 0.15)
(0.8359421218 -0.002117427438 0.15)
(0.8350248978 -0.01322639874 0.15)
(0.8345607169 -0.018781372 0.15)
(0.8296855517 -0.01263660133 0.15)
(1.001225361 0.04667174671 0.15)
(0.9990174302 0.02363239544 0.15)
(0.9757918485 0.003550606585 0.15)
(0.9833842828 -0.03158538356 0.15)
(0.9738292225 -0.01893393447 0.15)
(0.9843170658 -0.02044943429 0.15)
(0.9527858023 -0.01602680702 0.15)
(0.963321549 -0.01745897601 0.15)
(-0.04716522097 0.02374698801 0.15)
(-0.03628775197 0.02210223991 0.15)
(-0.03601589279 0.02843440455 0.15)
(-0.03066705552 0.02781701228 0.15)
(-0.0308213974 0.02125661474 0.15)
(-0.02952996972 0.04815932427 0.15)
(-0.03006220095 0.04138381305 0.15)
(-0.0255328139 -0.004694955942 0.15)
(-0.02545450647 0.001400979704 0.15)
(-0.02539377217 0.007584613896 0.15)
(-0.03089832948 0.008324817571 0.15)
(-0.03064474182 0.01436371604 0.15)
(-0.02510635851 0.01353671616 0.15)
(-0.03609082854 0.01506625684 0.15)
(-0.008058564989 0.01075375539 0.15)
(-0.01962504365 0.01280037626 0.15)
(-0.01988355535 -0.005485141585 0.15)
(-0.01971718265 0.0004894391679 0.15)
(-0.005254407106 0.09899386392 0.15)
(-0.005952137964 0.09314932881 0.15)
(-0.006777007062 0.08718362114 0.15)
(-0.001021803473 0.0868107324 0.15)
(-0.04230586133 0.07611893197 0.15)
(-0.03143629117 0.0755104453 0.15)
(-0.03062885877 0.08161294888 0.15)
(-0.02511326931 0.08136292231 0.15)
(-0.02602907515 0.07511310078 0.15)
(-0.02405940195 0.0876827886 0.15)
(-0.01829854771 0.08761478169 0.15)
(-0.02873571743 0.05546198312 0.15)
(-0.02684321058 0.06893077508 0.15)
(-0.0322214614 0.06936861685 0.15)
(0.4224083187 0.09517906191 0.15)
(0.4277859301 0.09465531181 0.15)
(0.4326161761 0.08836195555 0.15)
(0.5515811163 -0.1284681135 0.15)
(0.5623010022 -0.12945268 0.15)
(0.5633388132 -0.1181913977 0.15)
(0.5579801072 -0.1176911949 0.15)
(0.5526191121 -0.1172048398 0.15)
(0.5686982583 -0.1186836347 0.15)
(0.5692218447 -0.1130187797 0.15)
(0.5709480171 -0.1529409846 0.15)
(0.5719851814 -0.1416866724 0.15)
(0.5280675291 -0.1490237213 0.15)
(0.5291054325 -0.1377614434 0.15)
(0.5408608609 -0.1274875299 0.15)
(0.541897399 -0.1162291425 0.15)
(0.5424207082 -0.1105672746 0.15)
(0.5472587637 -0.1167115146 0.15)
(0.6995150892 -0.1646286272 0.15)
(0.7005449448 -0.1534097915 0.15)
(0.7122942038 -0.1431915462 0.15)
(0.708473655 -0.1258966211 0.15)
(0.7133172844 -0.132013258 0.15)
(0.7079585065 -0.1315030056 0.15)
(0.7186762471 -0.132521519 0.15)
(0.9169032526 -0.1502163798 0.15)
(0.9223137051 -0.1504944131 0.15)
(0.9266016903 -0.1625240044 0.15)
(0.9271376461 -0.1567799535 0.15)
(1.070325339 -0.1340778488 0.15)
(1.059611282 -0.1330845836 0.15)
(1.061728486 -0.110265392 0.15)
(1.072442506 -0.1112590555 0.15)
(1.040290026 -0.1082821199 0.15)
(1.116376947 -0.103827654 0.15)
(1.094939023 -0.1018386067 0.15)
(1.071383923 -0.1226684521 0.15)
(0.1446849865 0.1557775677 0.15)
(0.1338529124 0.1567544659 0.15)
(0.1327726241 0.1454358627 0.15)
(0.1381875731 0.1449465103 0.15)
(0.1436110421 0.1444623932 0.15)
(0.1322543654 0.1397634834 0.15)
(0.1251639331 0.1803641666 0.15)
(0.1240867244 0.169046282 0.15)
(0.1684828576 0.1764313318 0.15)
(0.1674193324 0.165120212 0.15)
(0.1555387818 0.1547966457 0.15)
(0.1593544652 0.1373193903 0.15)
(0.1544834071 0.1434867782 0.15)
(0.1598872902 0.142986401 0.15)
(0.1490513461 0.1439757098 0.15)
(0.4658374268 -0.1205879891 0.15)
(0.4765608337 -0.1215779037 0.15)
(0.4852075099 -0.1451023315 0.15)
(0.4862471481 -0.1338321801 0.15)
(0.501612878 -0.08430011143 0.15)
(0.4904057359 -0.08876202243 0.15)
(0.4957564105 -0.08931631459 0.15)
(0.4542264829 0.08671544753 0.15)
(0.4654626651 0.09126304211 0.15)
(0.4601044834 0.09185549098 0.15)
(0.4900786452 0.1233105521 0.15)
(0.4793403846 0.1243460338 0.15)
(0.4706448562 0.1479392691 0.15)
(0.4696185114 0.1366608543 0.15)
(0.4040012748 0.1315992509 0.15)
(0.3932211527 0.1326165222 0.15)
(0.3922033794 0.1213222476 0.15)
(0.39758781 0.1208286967 0.15)
(0.4029811816 0.120323269 0.15)
(0.3868223775 0.1218094547 0.15)
(0.3862971076 0.1161156313 0.15)
(0.3845431984 0.156215157 0.15)
(0.3835078716 0.1449265283 0.15)
(0.4276261881 0.1520882893 0.15)
(0.4265984781 0.1408059839 0.15)
(0.4148016399 0.1305620242 0.15)
(0.4186552018 0.1131033489 0.15)
(0.4137862481 0.1192825931 0.15)
(0.4191698986 0.1187589857 0.15)
(0.4083864813 0.1198056873 0.15)
(0.6372937741 -0.1363363201 0.15)
(0.6480142348 -0.1373038669 0.15)
(0.6490488124 -0.1260774349 0.15)
(0.6436862467 -0.1256080072 0.15)
(0.638323332 -0.1251315169 0.15)
(0.6544094995 -0.1265346369 0.15)
(0.6549337326 -0.1208628118 0.15)
(0.656659987 -0.1607408353 0.15)
(0.6576944003 -0.1495053495 0.15)
(0.6137985615 -0.1568454266 0.15)
(0.6148335291 -0.1456039665 0.15)
(0.626574422 -0.1353568247 0.15)
(0.6227556799 -0.1180640758 0.15)
(0.627599997 -0.1241516519 0.15)
(0.6222428205 -0.1236566125 0.15)
(0.6329602531 -0.1246459728 0.15)
(0.5332408078 -0.09282240196 0.15)
(0.5278614937 -0.09247936741 0.15)
(0.5229821779 -0.08663911559 0.15)
(0.5874818011 -0.0912417922 0.15)
(0.5762318957 -0.09595894409 0.15)
(0.5815756917 -0.09656572524 0.15)
(0.668550902 0.06037816798 0.15)
(0.6777922336 0.04248357971 0.15)
(0.6724291443 0.04301230948 0.15)
(0.6675615682 0.0491631048 0.15)
(0.6729281785 0.04862902688 0.15)
(0.6782909352 0.04809671251 0.15)
(0.6621979615 0.04968625852 0.15)
(0.9884394154 -0.1500515377 0.15)
(0.9931245794 -0.1494548243 0.15)
(0.993474349 -0.1435201573 0.15)
(0.9919063379 -0.1356325644 0.15)
(1.000729402 -0.1851500505 0.15)
(1.001779562 -0.173723201 0.15)
(0.9921250687 -0.1612017217 0.15)
(0.9916089658 -0.1669807564 0.15)
(0.9866153123 -0.167546839 0.15)
(0.947987837 -0.1646056644 0.15)
(0.9484995364 -0.1590039814 0.15)
(0.9693945593 -0.07878891616 0.15)
(0.9640954115 -0.07810141462 0.15)
(0.9591658031 -0.07205634058 0.15)
(0.9644651674 -0.07271985956 0.15)
(0.9697614408 -0.07339504288 0.15)
(0.9538555239 -0.07143469229 0.15)
(0.9916760123 -0.06539751637 0.15)
(0.9810592241 -0.06405946287 0.15)
(1.009174283 -0.09391475049 0.15)
(1.008069644 -0.1053875635 0.15)
(1.00747078 -0.1111926637 0.15)
(0.9931468531 -0.1062423783 0.15)
(1.002055225 -0.1107856073 0.15)
(0.9986889852 -0.0971669756 0.15)
(0.9982939027 -0.1029405675 0.15)
(1.002676379 -0.1049567647 0.15)
(0.9939000896 -0.1285402257 0.15)
(0.9901226009 -0.1267145349 0.15)
(0.989120896 -0.1312328155 0.15)
(0.9903519896 -0.1346334934 0.15)
(0.7288513019 0.008816911735 0.15)
(0.7282798718 0.002993599095 0.15)
(0.6648772972 0.0204810283 0.15)
(0.6762440692 0.02547275774 0.15)
(0.6708439607 0.02589475105 0.15)
(0.8325940001 -0.04125588222 0.15)
(0.8438029661 -0.03665524645 0.15)
(0.8384665826 -0.03609846393 0.15)
(0.8749201839 -0.05121237366 0.15)
(0.8744385779 -0.05681443849 0.15)
(0.8962999255 -0.05352543151 0.15)
(0.8958466462 -0.05906032604 0.15)
(0.06413433732 0.1168484477 0.15)
(0.0636302265 0.110935633 0.15)
(0.04154587151 0.1130246282 0.15)
(0.02997547078 0.1081621638 0.15)
(0.03551624535 0.1076282967 0.15)
(0.4170525082 0.09582953989 0.15)
(0.5923979471 0.05635936582 0.15)
(0.5870022925 0.05688348441 0.15)
(0.5821535077 0.06313939324 0.15)
(0.5397228719 0.07290099096 0.15)
(0.5391820547 0.06709371876 0.15)
(0.5612124218 0.07088385403 0.15)
(0.5606670128 0.065124511 0.15)
(0.5547702866 0.05993418247 0.15)
(0.7599768776 -0.005769201577 0.15)
(0.7545976269 -0.005284768175 0.15)
(0.7503401147 0.006802655209 0.15)
(0.7497981569 0.001058859845 0.15)
(0.9056339639 -0.1551965659 0.15)
(0.911506104 -0.1499897957 0.15)
(0.8740219952 -0.146567192 0.15)
(0.8793791 -0.1471495984 0.15)
(0.8842280057 -0.1532526648 0.15)
(0.1063419941 -0.02962079842 0.15)
(0.1117108578 -0.03028212874 0.15)
(0.1159685293 -0.04255184646 0.15)
(0.116507964 -0.03679194913 0.15)
(0.09438409718 -0.04044244926 0.15)
(0.09494328184 -0.0345779291 0.15)
(0.1009515336 -0.02902987398 0.15)
(0.1591238152 -0.04636495142 0.15)
(0.1596851329 -0.04043414483 0.15)
(0.1375335707 -0.04471869794 0.15)
(0.1380416876 -0.03914480279 0.15)
(0.06289097459 -0.02596755581 0.15)
(0.06832911484 -0.026556577 0.15)
(0.07323978851 -0.03283279025 0.15)
(0.1197399004 0.1236575521 0.15)
(0.1251807834 0.1231121641 0.15)
(0.1300674852 0.1166371152 0.15)
(0.2879007977 -0.05843130624 0.15)
(0.2884282694 -0.05274622367 0.15)
(0.2663746924 -0.05694887889 0.15)
(0.2668607929 -0.05156897939 0.15)
(0.3308396238 -0.06178474777 0.15)
(0.3314226879 -0.05567367931 0.15)
(0.3094442802 -0.05953160476 0.15)
(0.3100516479 -0.0532235391 0.15)
(0.2020937819 -0.0503785933 0.15)
(0.2026514432 -0.04447637116 0.15)
(0.180643841 -0.04816186204 0.15)
(0.1812299272 -0.04206151865 0.15)
(0.2449668758 -0.05478687332 0.15)
(0.2454749311 -0.04924611419 0.15)
(0.2235471443 -0.05259092182 0.15)
(0.2240785957 -0.04687376977 0.15)
(0.3521673631 -0.06416036895 0.15)
(0.352722495 -0.05827458344 0.15)
(0.4966486491 0.07677597154 0.15)
(0.496065326 0.07085694832 0.15)
(0.5182141722 0.07501481054 0.15)
(0.5176992959 0.06933558941 0.15)
(0.5446115566 -0.08722494945 0.15)
(0.538637552 -0.09304252112 0.15)
(0.5708875823 -0.09535773898 0.15)
(0.5661383586 -0.08858079985 0.15)
(0.9694867154 -0.1663382462 0.15)
(0.9699941754 -0.1608255521 0.15)
(0.9681912076 -0.09515744678 0.15)
(0.9628604371 -0.09456181667 0.15)
(0.008122222578 0.3280466394 0.15)
(0.005898153961 0.305326946 0.15)
(-0.03998841136 0.2862586246 0.15)
(-0.01831884938 0.284382661 0.15)
(-0.01585967119 0.3072030645 0.15)
(-0.01365153414 0.329924236 0.15)
(-0.04219191058 0.2635289884 0.15)
(-0.04881176631 0.4237904691 0.15)
(-0.05268763935 0.3790920689 0.15)
(0.8899568117 0.2425023494 0.15)
(0.8472407257 0.247017209 0.15)
(0.8431518329 0.2017132125 0.15)
(0.864513364 0.1994420161 0.15)
(0.8217928579 0.2039470129 0.15)
(0.8197585431 0.1813392679 0.15)
(0.8120018254 0.3430861595 0.15)
(0.80848668 0.2969757236 0.15)
(0.8491301916 -0.03724578729 0.15)
(0.8539455361 -0.04352656307 0.15)
(0.7465093503 0.08644355488 0.15)
(0.7358132178 0.08754341996 0.15)
(0.726095851 0.0998959855 0.15)
(0.7368090955 0.09879654133 0.15)
(0.7475131014 0.09769494144 0.15)
(0.7153902951 0.1009917034 0.15)
(0.7923128427 0.1158055733 0.15)
(0.770922795 0.1180292009 0.15)
(-0.02500995453 0.03348793389 0.15)
(-0.01959965378 0.03248953389 0.15)
(-0.01391465321 0.01801301482 0.15)
(-0.01398608873 0.02442282679 0.15)
(-0.008936563841 0.07472464919 0.15)
(-0.0100918694 0.06821855785 0.15)
(-0.02252330373 0.06157602728 0.15)
(-0.01701508049 0.06127908058 0.15)
(-0.03128743923 0.1590577949 0.15)
(-0.03014906242 0.1704352833 0.15)
(-0.04949836786 0.1950079557 0.15)
(-0.07143782681 0.1966106852 0.15)
(0.003964757508 0.1792885429 0.15)
(-0.01921778882 0.1695847611 0.15)
(-0.008162580619 0.1687829977 0.15)
(-0.006922628813 0.1801912337 0.15)
(-0.02041947715 0.1581830179 0.15)
(0.08161129 0.1269660098 0.15)
(0.08655564287 0.1206068303 0.15)
(0.3800840777 -0.1126929082 0.15)
(0.3907996112 -0.1136810881 0.15)
(0.3994346468 -0.1372335604 0.15)
(0.4004756708 -0.1259484731 0.15)
(0.3565722152 -0.1332948737 0.15)
(0.3576138859 -0.1220028164 0.15)
(0.36936954 -0.1117048208 0.15)
(0.7713016951 -0.0009482264208 0.15)
(0.7653784417 -0.00619715485 0.15)
(0.721163452 0.04375798324 0.15)
(0.7435532341 0.05275327452 0.15)
(0.7328535437 0.05385808947 0.15)
(0.862785811 -0.1511256328 0.15)
(0.8686630838 -0.1459826093 0.15)
(0.1083718124 0.118629991 0.15)
(0.1143091596 0.124106591 0.15)
(0.4423282229 -0.1411721239 0.15)
(0.4433698731 -0.1298911119 0.15)
(0.4551238848 -0.119599994 0.15)
(0.4475973886 -0.0843270097 0.15)
(0.4422422856 -0.08378797367 0.15)
(0.4374688928 -0.07713081392 0.15)
(0.4159039692 -0.0759585267 0.15)
(0.4046231311 -0.08092247634 0.15)
(0.4099927324 -0.0813377224 0.15)
(0.8311716356 -0.1426607585 0.15)
(0.8365564252 -0.1430097243 0.15)
(0.8413966568 -0.1491521576 0.15)
(0.7975833844 -0.009214811372 0.15)
(0.7927110956 -0.003071512725 0.15)
(0.7079511451 0.01672107428 0.15)
(0.7138339005 0.02184741988 0.15)
(0.08172813759 0.1842345313 0.15)
(0.08063835507 0.1729077703 0.15)
(0.0686046182 0.1625210862 0.15)
(0.05772350733 0.1634673837 0.15)
(0.6816293835 0.02502120477 0.15)
(0.6864799318 0.01882759948 0.15)
(-0.03572757202 0.1242280422 0.15)
(-0.02449260745 0.1236588667 0.15)
(-0.01494327257 0.1113223936 0.15)
(-0.00375804471 0.1106577045 0.15)
(0.001821287888 0.1102811479 0.15)
(-0.00450735509 0.1048320152 0.15)
(0.6036927842 0.06109534723 0.15)
(0.5977871068 0.05586266451 0.15)
(0.05143570488 -0.03069538078 0.15)
(0.0574279444 -0.02540866402 0.15)
(0.4588577232 -0.07945415543 0.15)
(0.4529466076 -0.0848753419 0.15)
(0.4850521018 -0.0882071544 0.15)
(0.4802328334 -0.08188207663 0.15)
(0.3730102435 -0.07222723585 0.15)
(0.361783604 -0.07682352025 0.15)
(0.3671361376 -0.07734695217 0.15)
(0.3992614688 -0.08045413667 0.15)
(0.3944091367 -0.07443129689 0.15)
(0.470837315 0.09072902168 0.15)
(0.4756418222 0.08435309015 0.15)
(0.8199182883 -0.1473933585 0.15)
(0.8257909623 -0.1422890759 0.15)
(0.7883124582 -0.1387735928 0.15)
(0.7936466715 -0.1392996434 0.15)
(0.798478537 -0.1454131802 0.15)
(0.973510133 -0.09574002678 0.15)
(0.9782159878 -0.1022158716 0.15)
(0.9273086344 -0.06828870574 0.15)
(0.9219786338 -0.06771725015 0.15)
(0.9171111871 -0.06156506082 0.15)
(-0.01261034403 0.08738830889 0.15)
(-0.007784956524 0.08105774234 0.15)
(0.9926467146 -0.1553629436 0.15)
(1.003748979 -0.1507649616 0.15)
(0.9983755115 -0.1501207793 0.15)
(1.005442342 -0.1286171849 0.15)
(0.9996866466 -0.1285206325 0.15)
(0.9971929423 -0.1148067024 0.15)
(0.9949863083 -0.1225698428 0.15)
(-1.02877 -0.962597 0.15)
(-1.0288 -0.8251 0.15)
(-1.02888 -0.641775 0.15)
(-1.02895 -0.458448 0.15)
(-1.02901 -0.275121 0.15)
(-1.02904 -0.0917902 0.15)
(-1.02904 0.0915431 0.15)
(-1.02901 0.274879 0.15)
(-1.02895 0.458218 0.15)
(-1.02888 0.641559 0.15)
(-1.0288 0.8249 0.15)
(-1.02872 1.00824 0.15)
(-0.900226 -1.00849 0.15)
(-0.900275 -0.962663 0.15)
(-0.857436 -0.962684 0.15)
(-0.985942 -0.96262 0.15)
(-0.943121 -0.916809 0.15)
(-0.94317 -0.870981 0.15)
(-0.943181 -0.825148 0.15)
(-0.985993 -0.825125 0.15)
(-0.943242 -0.733488 0.15)
(-0.943293 -0.687659 0.15)
(-0.943302 -0.641827 0.15)
(-0.986092 -0.641801 0.15)
(-0.943362 -0.550166 0.15)
(-0.943412 -0.504337 0.15)
(-0.943418 -0.458504 0.15)
(-0.986186 -0.458477 0.15)
(-0.943469 -0.366843 0.15)
(-0.9435156618 -0.321006715 0.15)
(-0.9435504907 -0.274983795 0.15)
(-0.986262 -0.27515 0.15)
(-0.9436775934 -0.1825139604 0.15)
(-0.9437240649 -0.1362491436 0.15)
(-0.9436878957 -0.09005050546 0.15)
(-0.9863090918 -0.09175977123 0.15)
(-0.9435813115 0.001937910681 0.15)
(-0.9435379314 0.04768680305 0.15)
(-0.9434578359 0.0932893972 0.15)
(-0.9863014342 0.09157465736 0.15)
(-0.9434206415 0.1841627421 0.15)
(-0.9434650928 0.2295518429 0.15)
(-0.9434742605 0.2750225634 0.15)
(-0.986262 0.27485 0.15)
(-0.943469 0.366491 0.15)
(-0.943467 0.412324 0.15)
(-0.943418 0.458162 0.15)
(-0.986187 0.45819 0.15)
(-0.943362 0.549834 0.15)
(-0.943354 0.595668 0.15)
(-0.943303 0.641507 0.15)
(-0.986093 0.641532 0.15)
(-0.943242 0.733179 0.15)
(-0.943231 0.779013 0.15)
(-0.943181 0.824852 0.15)
(-0.985993 0.824875 0.15)
(-0.900276 0.962338 0.15)
(-0.943063 1.0082 0.15)
(-0.900227 1.00818 0.15)
(-0.857392 1.00825 0.15)
(-0.985895 1.00822 0.15)
(-0.728831 -1.00857 0.15)
(-0.728893 -0.962745 0.15)
(-0.686035 -0.962769 0.15)
(-0.814593 -0.962705 0.15)
(-0.771786 -0.916895 0.15)
(-0.771847 -0.871068 0.15)
(-0.771889 -0.825239 0.15)
(-0.814719 -0.825217 0.15)
(-0.857544 -0.825194 0.15)
(-0.771996 -0.733582 0.15)
(-0.772061 -0.687755 0.15)
(-0.772105 -0.641926 0.15)
(-0.814911 -0.641902 0.15)
(-0.857712 -0.641877 0.15)
(-0.7729011152 -0.5487037173 0.15)
(-0.7736870725 -0.5009389193 0.15)
(-0.7745090008 -0.4526167078 0.15)
(-0.8159955433 -0.4560560202 0.15)
(-0.8580334576 -0.4580966004 0.15)
(-0.7758928288 -0.3550046233 0.15)
(-0.7762970145 -0.3060506572 0.15)
(-0.7764221076 -0.2571952241 0.15)
(-0.8176889738 -0.2637746179 0.15)
(-0.8592609419 -0.2691789203 0.15)
(-0.775895774 -0.1603207184 0.15)
(-0.7752846802 -0.1125084003 0.15)
(-0.7744673797 -0.06520694694 0.15)
(-0.8166446421 -0.07331885701 0.15)
(-0.8588842145 -0.08045148948 0.15)
(-0.7725332457 0.02765698844 0.15)
(-0.7715440227 0.07318129838 0.15)
(-0.7705957899 0.1181176667 0.15)
(-0.8140380736 0.1100216862 0.15)
(-0.8573297091 0.1028944734 0.15)
(-0.7691481206 0.2063440155 0.15)
(-0.7687428124 0.2497566313 0.15)
(-0.7685597118 0.2928262451 0.15)
(-0.8128540622 0.2862633928 0.15)
(-0.8567905053 0.2808560451 0.15)
(-0.7689608464 0.3783787824 0.15)
(-0.7694959216 0.4211410134 0.15)
(-0.7701487376 0.464110119 0.15)
(-0.8142095235 0.460652546 0.15)
(-0.8577145381 0.4585877959 0.15)
(-0.7715246824 0.5513364354 0.15)
(-0.771999112 0.5959367938 0.15)
(-0.772106 0.641407 0.15)
(-0.814911 0.641431 0.15)
(-0.857712 0.641456 0.15)
(-0.771997 0.733084 0.15)
(-0.771954 0.778925 0.15)
(-0.771892 0.82478 0.15)
(-0.81472 0.824783 0.15)
(-0.857545 0.824806 0.15)
(-0.728055 0.964401 0.15)
(-0.771406 1.00946 0.15)
(-0.727837 1.01033 0.15)
(-0.68461 1.01067 0.15)
(-0.814541 1.00851 0.15)
(-0.556084 -1.01091 0.15)
(-0.556399 -0.964912 0.15)
(-0.512556 -0.965648 0.15)
(-0.643164 -0.962856 0.15)
(-0.600338 -0.917186 0.15)
(-0.600435 -0.871234 0.15)
(-0.600512 -0.825335 0.15)
(-0.643366 -0.825301 0.15)
(-0.686213 -0.825281 0.15)
(-0.6015813287 -0.7323180657 0.15)
(-0.6031422547 -0.6840685637 0.15)
(-0.6050935919 -0.6347766442 0.15)
(-0.6461039732 -0.6376890158 0.15)
(-0.6875558028 -0.6400094721 0.15)
(-0.6092758945 -0.5338386771 0.15)
(-0.6111052016 -0.4826154475 0.15)
(-0.6125374237 -0.4311741016 0.15)
(-0.6526135686 -0.4370499197 0.15)
(-0.6929059119 -0.4427914802 0.15)
(-0.6138931886 -0.3284589416 0.15)
(-0.6137373992 -0.2775404731 0.15)
(-0.6130167274 -0.2271005766 0.15)
(-0.6537606348 -0.2344214709 0.15)
(-0.6945306675 -0.2421219248 0.15)
(-0.6101268113 -0.1280769717 0.15)
(-0.60810274 -0.07962230171 0.15)
(-0.6057918767 -0.03191775891 0.15)
(-0.6479970167 -0.03951912286 0.15)
(-0.690168346 -0.0478666773 0.15)
(-0.6007411641 0.0611762405 0.15)
(-0.5981952446 0.1065632016 0.15)
(-0.5957461601 0.1511902749 0.15)
(-0.6395510173 0.1436668256 0.15)
(-0.6833226233 0.1353820979 0.15)
(-0.5915642251 0.2382170557 0.15)
(-0.5900015486 0.2806773752 0.15)
(-0.5888713521 0.3225061326 0.15)
(-0.6340308866 0.3153505292 0.15)
(-0.6790833222 0.3077731859 0.15)
(-0.5881536086 0.4045857237 0.15)
(-0.58860165 0.4450660062 0.15)
(-0.5895430397 0.4853740896 0.15)
(-0.6351944911 0.4795991042 0.15)
(-0.6805697092 0.4739165021 0.15)
(-0.5926658722 0.5662051652 0.15)
(-0.5946172648 0.6071999467 0.15)
(-0.5965910364 0.648943319 0.15)
(-0.6412100927 0.6457475698 0.15)
(-0.6853930579 0.6433781365 0.15)
(-0.5987647594 0.7372322044 0.15)
(-0.5989149751 0.7822576784 0.15)
(-0.598865 0.827889 0.15)
(-0.642315 0.827359 0.15)
(-0.686094 0.82587 0.15)
(-0.555714 0.965414 0.15)
(-0.598649 1.01102 0.15)
(-0.555678 1.01118 0.15)
(-0.512702 1.01133 0.15)
(-0.641617 1.01086 0.15)
(-0.383309 -1.01194 0.15)
(-0.383341 -0.966197 0.15)
(-0.340336 -0.966337 0.15)
(-0.469354 -0.965893 0.15)
(-0.426375 -0.920295 0.15)
(-0.4269290335 -0.8740150349 0.15)
(-0.4287218851 -0.8263498817 0.15)
(-0.471277994 -0.826980621 0.15)
(-0.5146569682 -0.8263724837 0.15)
(-0.4351468406 -0.7271202646 0.15)
(-0.4391089897 -0.6757629784 0.15)
(-0.4430273451 -0.623370433 0.15)
(-0.4837187264 -0.6250402554 0.15)
(-0.524021639 -0.6281033128 0.15)
(-0.4493757002 -0.5169434901 0.15)
(-0.4513961102 -0.4640599255 0.15)
(-0.4525924573 -0.4114992306 0.15)
(-0.4926881785 -0.4153992619 0.15)
(-0.5326591911 -0.4201202294 0.15)
(-0.4524510367 -0.307925898 0.15)
(-0.4511808537 -0.257126941 0.15)
(-0.4492077419 -0.2070689543 0.15)
(-0.4903750364 -0.2102953506 0.15)
(-0.531372593 -0.2148095287 0.15)
(-0.4436112546 -0.109375472 0.15)
(-0.440224058 -0.06164671691 0.15)
(-0.4365799713 -0.01457609145 0.15)
(-0.478939046 -0.01657485587 0.15)
(-0.5212623799 -0.02021784713 0.15)
(-0.4289118141 0.07784142419 0.15)
(-0.4250482761 0.1232618791 0.15)
(-0.4212604515 0.1681569057 0.15)
(-0.4646710172 0.1662489186 0.15)
(-0.5082527907 0.162703278 0.15)
(-0.4143124122 0.2563085737 0.15)
(-0.4113634919 0.2995712423 0.15)
(-0.4089066583 0.3421298819 0.15)
(-0.4536374771 0.3387150853 0.15)
(-0.4985860259 0.3343661568 0.15)
(-0.4056906418 0.425772624 0.15)
(-0.4052649299 0.4664021322 0.15)
(-0.4054003724 0.5070729409 0.15)
(-0.4519318421 0.5011359832 0.15)
(-0.4978043763 0.4961474447 0.15)
(-0.4066706385 0.5879790329 0.15)
(-0.4089020775 0.6275596165 0.15)
(-0.4119014434 0.6671314815 0.15)
(-0.4579518886 0.6635539275 0.15)
(-0.5044348094 0.6593242667 0.15)
(-0.4185857469 0.7476393465 0.15)
(-0.421730268 0.7890395535 0.15)
(-0.4243513157 0.8314723203 0.15)
(-0.4685027752 0.8300706589 0.15)
(-0.5123338149 0.8289218861 0.15)
(-0.383744 0.966037 0.15)
(-0.426704 1.01164 0.15)
(-0.383585 1.01184 0.15)
(-0.340202 1.01213 0.15)
(-0.469724 1.01148 0.15)
(-0.211093 -1.01252 0.15)
(-0.2114266807 -0.9665604882 0.15)
(-0.1687254091 -0.9664675067 0.15)
(-0.2973044996 -0.966476967 0.15)
(-0.2555459411 -0.9198387468 0.15)
(-0.2585887303 -0.87151895 0.15)
(-0.2623849529 -0.8221933038 0.15)
(-0.3039076877 -0.82308672 0.15)
(-0.3453899558 -0.8241461373 0.15)
(-0.2713843177 -0.7206547822 0.15)
(-0.2758374769 -0.6688493943 0.15)
(-0.2798257796 -0.616660802 0.15)
(-0.3203853626 -0.6179275748 0.15)
(-0.3608412622 -0.6197388108 0.15)
(-0.2854517212 -0.5121861283 0.15)
(-0.2868458729 -0.4603710169 0.15)
(-0.2874523635 -0.4089949358 0.15)
(-0.3294895646 -0.4083600414 0.15)
(-0.3712783198 -0.4083888721 0.15)
(-0.2865265558 -0.3074912839 0.15)
(-0.2847137995 -0.2578776285 0.15)
(-0.281865297 -0.2094613079 0.15)
(-0.3242632961 -0.2066846097 0.15)
(-0.3662045251 -0.2052461459 0.15)
(-0.2747325215 -0.1150013865 0.15)
(-0.2707651866 -0.06850627988 0.15)
(-0.266669085 -0.02232359155 0.15)
(-0.3092326193 -0.01834602171 0.15)
(-0.3517361038 -0.01554354264 0.15)
(-0.258294992 0.06906881217 0.15)
(-0.2540383928 0.1148489594 0.15)
(-0.2496899773 0.1611532578 0.15)
(-0.292308748 0.1646248973 0.15)
(-0.3350751209 0.16716935 0.15)
(-0.2405891604 0.2540469217 0.15)
(-0.2360935946 0.2998011038 0.15)
(-0.231662818 0.3450514875 0.15)
(-0.2760357587 0.3453822412 0.15)
(-0.3200340478 0.345603615 0.15)
(-0.2238731916 0.4330176622 0.15)
(-0.2219027778 0.4751793805 0.15)
(-0.2211892912 0.5164423529 0.15)
(-0.2662561768 0.5160258927 0.15)
(-0.3119322891 0.5145198243 0.15)
(-0.2230014716 0.59706907 0.15)
(-0.2254441602 0.636751428 0.15)
(-0.2287446585 0.6762702896 0.15)
(-0.2742936866 0.6748742336 0.15)
(-0.3200376559 0.6728589744 0.15)
(-0.2370288859 0.7557457038 0.15)
(-0.2414694237 0.7961556228 0.15)
(-0.2459059158 0.837012538 0.15)
(-0.290624329 0.8359682116 0.15)
(-0.33540553 0.8344981173 0.15)
(-0.2101381153 0.9673722411 0.15)
(-0.253793 1.01252 0.15)
(-0.210761 1.01264 0.15)
(-0.1677055269 1.012773479 0.15)
(-0.296897 1.01235 0.15)
(-0.03856813507 -1.013018463 0.15)
(-0.04011475261 -0.9664435174 0.15)
(0.002877665113 -0.9665251542 0.15)
(-0.1260408298 -0.9663747888 0.15)
(-0.08611644083 -0.9187937391 0.15)
(-0.09020937948 -0.870248577 0.15)
(-0.09508976125 -0.820811431 0.15)
(-0.1371070747 -0.8208654341 0.15)
(-0.1787853222 -0.8212390093 0.15)
(-0.1055410448 -0.7198824674 0.15)
(-0.1103330216 -0.6687765098 0.15)
(-0.114389962 -0.6175375549 0.15)
(-0.1560270981 -0.6167812655 0.15)
(-0.1978533645 -0.6159663176 0.15)
(-0.1194451774 -0.5156059365 0.15)
(-0.1202310621 -0.4653474049 0.15)
(-0.1200938165 -0.4155526721 0.15)
(-0.1623142875 -0.4129767604 0.15)
(-0.2041874367 -0.4110017181 0.15)
(-0.1158690343 -0.3192352045 0.15)
(-0.112396693 -0.2726635533 0.15)
(-0.1083931856 -0.2270289476 0.15)
(-0.1516426131 -0.2226647931 0.15)
(-0.1951812681 -0.2181258741 0.15)
(-0.1306375862 0.05726452813 0.15)
(-0.1284626666 0.08082484716 0.15)
(-0.1260773456 0.1048993372 0.15)
(-0.1474327997 0.1065865748 0.15)
(-0.1687822948 0.10824062 0.15)
(-0.04577627702 0.4675979329 0.15)
(-0.04357707768 0.5106221923 0.15)
(-0.08793640658 0.5128890877 0.15)
(-0.1321687164 0.5147197961 0.15)
(-0.04301912611 0.5947147954 0.15)
(-0.04474426119 0.6359276528 0.15)
(-0.04764822698 0.6767928236 0.15)
(-0.09253359114 0.6772998744 0.15)
(-0.1380850365 0.6771223722 0.15)
(-0.05627755438 0.758188491 0.15)
(-0.06145362471 0.7991010288 0.15)
(-0.06675383731 0.8404122361 0.15)
(-0.1111840604 0.8400592329 0.15)
(-0.1558304837 0.8393793769 0.15)
(-0.03598606527 0.9688107367 0.15)
(-0.08131972897 1.013163843 0.15)
(-0.03811676552 1.01333659 0.15)
(0.005250956983 1.013482008 0.15)
(-0.1245616445 1.01295269 0.15)
(0.1339874131 -1.013102657 0.15)
(0.1319198632 -0.9666899244 0.15)
(0.1748921531 -0.9667482042 0.15)
(0.04591571009 -0.9666320814 0.15)
(0.08527689464 -0.9193638656 0.15)
(0.08063136051 -0.8713595445 0.15)
(0.07530148507 -0.8226610133 0.15)
(0.03287017309 -0.8222654942 0.15)
(-0.009968495108 -0.8215848558 0.15)
(0.06431165585 -0.7239018918 0.15)
(0.05944190111 -0.6741330236 0.15)
(0.05542735169 -0.6243383046 0.15)
(0.01295560167 -0.6225704994 0.15)
(-0.02976097379 -0.6206128918 0.15)
(0.05083642951 -0.5254204203 0.15)
(0.05048254065 -0.4766480144 0.15)
(0.05142566367 -0.4285312052 0.15)
(0.008478961625 -0.425143917 0.15)
(-0.03450019434 -0.4217408652 0.15)
(0.0666357188 0.2541769612 0.15)
(0.06880610671 0.2768614633 0.15)
(0.04705478655 0.2787741372 0.15)
(0.0253231159 0.2806900093 0.15)
(0.1287405487 0.4538450614 0.15)
(0.1313833133 0.4980674355 0.15)
(0.08770456944 0.501568895 0.15)
(0.04427846753 0.5049891144 0.15)
(0.1329237424 0.5848923071 0.15)
(0.1317183862 0.6276532752 0.15)
(0.1292224312 0.6701103518 0.15)
(0.08465077509 0.6719464429 0.15)
(0.04085199799 0.6740126386 0.15)
(0.1209423539 0.7545425386 0.15)
(0.115664926 0.7967939652 0.15)
(0.1101148201 0.8392348767 0.15)
(0.06538456127 0.8395088386 0.15)
(0.02145720124 0.8401208718 0.15)
(0.13862117 0.9689207437 0.15)
(0.09238257326 1.013601779 0.15)
(0.1356236464 1.013522976 0.15)
(0.1788003383 1.013402253 0.15)
(0.04895572787 1.013604673 0.15)
(0.3061469372 -1.01314832 0.15)
(0.3037712837 -0.9669949737 0.15)
(0.346690232 -0.9670671366 0.15)
(0.2178720571 -0.9668330845 0.15)
(0.2570483922 -0.9201557135 0.15)
(0.2521962104 -0.8729707796 0.15)
(0.2467102353 -0.8254230118 0.15)
(0.2038852812 -0.8246849975 0.15)
(0.1610653677 -0.823988639 0.15)
(0.2355507628 -0.7295099148 0.15)
(0.2306581969 -0.6813299374 0.15)
(0.2266575114 -0.6331478709 0.15)
(0.1838689176 -0.6308815654 0.15)
(0.1410813656 -0.6286641985 0.15)
(0.222180546 -0.5372646593 0.15)
(0.2219204641 -0.4897911017 0.15)
(0.2229786254 -0.4427536995 0.15)
(0.1801309163 -0.4391658561 0.15)
(0.1372513977 -0.4355971358 0.15)
(0.2397295865 0.2383249043 0.15)
(0.2418380364 0.2609739771 0.15)
(0.2202258812 0.2629902372 0.15)
(0.1986189612 0.2649979772 0.15)
(0.3014255384 0.4380866962 0.15)
(0.3042743902 0.4829590329 0.15)
(0.2610975215 0.4868571803 0.15)
(0.2178559444 0.4906738102 0.15)
(0.3063892635 0.5718794841 0.15)
(0.3054538966 0.6160103652 0.15)
(0.3031873385 0.659966188 0.15)
(0.2598517831 0.6626681255 0.15)
(0.2162786643 0.6652218238 0.15)
(0.2951743858 0.7476179226 0.15)
(0.2898954009 0.7914149192 0.15)
(0.2841978303 0.835299046 0.15)
(0.2407823717 0.8364066413 0.15)
(0.197083839 0.8373719585 0.15)
(0.3118655524 0.9678600665 0.15)
(0.2654975754 1.013171594 0.15)
(0.3086879389 1.012994214 0.15)
(0.351738059 1.012797723 0.15)
(0.2221908605 1.013315318 0.15)
(0.4780415612 -1.013206016 0.15)
(0.4753654819 -0.9673536567 0.15)
(0.5182621682 -0.9674811502 0.15)
(0.3895768578 -0.967147806 0.15)
(0.4284379781 -0.9211585298 0.15)
(0.4233944202 -0.8749511963 0.15)
(0.4177670707 -0.8286197338 0.15)
(0.3750383163 -0.827781381 0.15)
(0.3323054327 -0.826975009 0.15)
(0.4064606046 -0.7356474192 0.15)
(0.401553997 -0.6890692291 0.15)
(0.3975684708 -0.6424888615 0.15)
(0.3548727394 -0.6401111624 0.15)
(0.31217397 -0.6377674044 0.15)
(0.3931978066 -0.5495427428 0.15)
(0.393018952 -0.5032802507 0.15)
(0.3941741461 -0.4572148761 0.15)
(0.3513829964 -0.4535793813 0.15)
(0.3086020854 -0.4499621991 0.15)
(0.412261162 0.2219555827 0.15)
(0.4143382415 0.2445804501 0.15)
(0.3928367141 0.2466416821 0.15)
(0.3713124699 0.2487070305 0.15)
(0.4733843873 0.4217001851 0.15)
(0.476054948 0.4670752688 0.15)
(0.4332091862 0.4710620444 0.15)
(0.3903221594 0.4750242605 0.15)
(0.477647102 0.5578881932 0.15)
(0.4765051232 0.603303735 0.15)
(0.4743991787 0.6487824032 0.15)
(0.4319287055 0.6515670348 0.15)
(0.3890924105 0.6543390266 0.15)
(0.4663928456 0.7396631849 0.15)
(0.4611917587 0.7850798189 0.15)
(0.4556126419 0.8304848775 0.15)
(0.4130445721 0.8316818065 0.15)
(0.3701313952 0.8328630976 0.15)
(0.4833487766 0.9664776721 0.15)
(0.4377497276 1.012412432 0.15)
(0.4806242366 1.012203867 0.15)
(0.5234992909 1.012028035 0.15)
(0.3947896564 1.012610837 0.15)
(0.6497910267 -1.013314559 0.15)
(0.6467518809 -0.9679870714 0.15)
(0.6897014587 -0.9681710111 0.15)
(0.5611456088 -0.9676245135 0.15)
(0.599736598 -0.9224954158 0.15)
(0.5944900631 -0.8773501488 0.15)
(0.5887159777 -0.8323040338 0.15)
(0.5459920016 -0.8313321189 0.15)
(0.5032640278 -0.8303951354 0.15)
(0.5772665798 -0.7423487137 0.15)
(0.5723540854 -0.6973752727 0.15)
(0.5683985744 -0.6523768647 0.15)
(0.5257031599 -0.6498498336 0.15)
(0.4830042363 -0.6473594455 0.15)
(0.5641740677 -0.5622563682 0.15)
(0.5641022011 -0.5171191118 0.15)
(0.5653800791 -0.4719193742 0.15)
(0.522586077 -0.4682189222 0.15)
(0.4797864736 -0.4645347147 0.15)
(0.5841597456 0.2052151528 0.15)
(0.5862124453 0.2278262135 0.15)
(0.5647549966 0.2299295534 0.15)
(0.5432732296 0.2320522226 0.15)
(0.6444360071 0.4054020713 0.15)
(0.6466648723 0.4515410724 0.15)
(0.60408889 0.4553438805 0.15)
(0.5614890107 0.4592120844 0.15)
(0.6475499172 0.5446333651 0.15)
(0.6460725548 0.5915146581 0.15)
(0.6433558709 0.6385361808 0.15)
(0.6016424662 0.6408666819 0.15)
(0.559275425 0.6434285489 0.15)
(0.6354243019 0.7325222073 0.15)
(0.6303193475 0.7794723394 0.15)
(0.6249551914 0.8262709484 0.15)
(0.5827515636 0.8272189057 0.15)
(0.5402774976 0.8282434972 0.15)
(0.6539986602 0.9654637096 0.15)
(0.6093418958 1.011685124 0.15)
(0.652196602 1.01151554 0.15)
(0.6951734207 1.011352946 0.15)
(0.5664417141 1.011853665 0.15)
(0.8213400846 -1.013667042 0.15)
(0.817893858 -0.969020522 0.15)
(0.8608408197 -0.96928009 0.15)
(0.7325226635 -0.9684015227 0.15)
(0.7711774989 -0.9241518276 0.15)
(0.7657896423 -0.8801397049 0.15)
(0.7593082426 -0.8366238686 0.15)
(0.7167067805 -0.835469129 0.15)
(0.6740647134 -0.8343671358 0.15)
(0.7477207353 -0.7497682457 0.15)
(0.7428204769 -0.7063992535 0.15)
(0.7389228588 -0.6629519686 0.15)
(0.696330205 -0.6602290922 0.15)
(0.6537033207 -0.6575605652 0.15)
(0.7349245577 -0.5755166459 0.15)
(0.7350064366 -0.5313970541 0.15)
(0.7364572493 -0.4869351249 0.15)
(0.6937021324 -0.4831433115 0.15)
(0.6509273249 -0.4793769846 0.15)
(0.7555803213 0.1879988485 0.15)
(0.814716802 0.3898549536 0.15)
(0.8164064661 0.4371409445 0.15)
(0.774089797 0.4405848828 0.15)
(0.7316025234 0.4441945505 0.15)
(0.8162554675 0.5331344339 0.15)
(0.8143388005 0.581646804 0.15)
(0.8112874494 0.630273963 0.15)
(0.7695550665 0.6320470973 0.15)
(0.7277766665 0.6339932958 0.15)
(0.8026060311 0.7275376737 0.15)
(0.7975579711 0.77581304 0.15)
(0.792546685 0.8237790561 0.15)
(0.7507259038 0.8242196089 0.15)
(0.7090979979 0.8247295448 0.15)
(0.8247826535 0.9647998776 0.15)
(0.7811583305 1.010989335 0.15)
(0.824205 1.01078 0.15)
(0.867232 1.01058 0.15)
(0.7381398618 1.011177416 0.15)
(0.9936204787 -1.012711961 0.15)
(0.9896056128 -0.9689611951 0.15)
(1.031909248 -0.9663836879 0.15)
(0.9033212725 -0.96975203 0.15)
(0.941107817 -0.9269294802 0.15)
(0.9353195157 -0.8842699037 0.15)
(0.9291842157 -0.8420697786 0.15)
(0.886718132 -0.8405593054 0.15)
(0.8447552327 -0.8389776789 0.15)
(0.9175164672 -0.7584035224 0.15)
(0.9127103503 -0.7166142431 0.15)
(0.9089773891 -0.6746508234 0.15)
(0.8666454581 -0.6714684028 0.15)
(0.8240487061 -0.668585413 0.15)
(0.9054571761 -0.5896533632 0.15)
(0.9058194622 -0.5463853028 0.15)
(0.9075566048 -0.5024765408 0.15)
(0.8647091005 -0.4985074229 0.15)
(0.8219625242 -0.4946152841 0.15)
(0.8678842097 -0.2137484627 0.15)
(0.8689158411 -0.2024996629 0.15)
(0.8581891289 -0.201534549 0.15)
(0.8474889317 -0.2005759124 0.15)
(0.8882979034 -0.0192103122 0.15)
(0.889215299 -0.008121141417 0.15)
(0.8785738376 -0.006886651383 0.15)
(0.9711122671 0.1878061223 0.15)
(0.9751690499 0.233444139 0.15)
(0.9326029559 0.2379818351 0.15)
(0.9819312291 0.3277887292 0.15)
(0.9839631828 0.3759833788 0.15)
(0.9849367216 0.4249662063 0.15)
(0.9428390403 0.4277994903 0.15)
(0.9008480276 0.430660665 0.15)
(0.9834087668 0.5247411065 0.15)
(0.9808915612 0.5749677904 0.15)
(0.9779770749 0.6249019744 0.15)
(0.9365583993 0.6258192972 0.15)
(0.8948310322 0.6271359314 0.15)
(0.9695901533 0.7246446496 0.15)
(0.965023858 0.7738952235 0.15)
(0.9607124685 0.8226307209 0.15)
(0.9187216258 0.8227621456 0.15)
(0.8765464952 0.823068912 0.15)
(0.996255 0.964048 0.15)
(0.953252 1.01014 0.15)
(0.996254 1.00991 0.15)
(1.03926 1.00967 0.15)
(0.91025 1.01035 0.15)
(1.166003628 -1.009690936 0.15)
(1.162572672 -0.9662869403 0.15)
(1.20645613 -0.9659208601 0.15)
(1.075255706 -0.9665156066 0.15)
(1.113937385 -0.9241109593 0.15)
(1.108273897 -0.8825785893 0.15)
(1.102252375 -0.8416953719 0.15)
(1.058273096 -0.841151878 0.15)
(1.014702287 -0.8402719701 0.15)
(1.090734849 -0.7610025194 0.15)
(1.085947841 -0.7207470942 0.15)
(1.08219026 -0.6802643395 0.15)
(1.038193469 -0.678333783 0.15)
(0.9946557634 -0.6759603866 0.15)
(1.078482082 -0.5978462214 0.15)
(1.07868724 -0.5555845947 0.15)
(1.080228873 -0.5124504288 0.15)
(1.036884409 -0.5090859845 0.15)
(0.993772281 -0.505447484 0.15)
(1.079852562 -0.03139357772 0.15)
(1.08196971 -0.008574983575 0.15)
(1.060541744 -0.006586860056 0.15)
(1.141676123 0.1704873913 0.15)
(1.145414084 0.2177285555 0.15)
(1.102680743 0.2210785004 0.15)
(1.060005912 0.2243723731 0.15)
(1.150795013 0.3154869723 0.15)
(1.152057151 0.3658092993 0.15)
(1.152474039 0.416424965 0.15)
(1.110898927 0.4181153945 0.15)
(1.068858699 0.4200759927 0.15)
(1.149965734 0.5192300873 0.15)
(1.147395662 0.5714248409 0.15)
(1.143852742 0.6229006226 0.15)
(1.102292444 0.62329864 0.15)
(1.061077597 0.6234861008 0.15)
(1.135691607 0.7244437198 0.15)
(1.131782881 0.7743040791 0.15)
(1.128501772 0.8232081151 0.15)
(1.086580273 0.8229369126 0.15)
(1.044428138 0.8228478721 0.15)
(1.16822 0.962976 0.15)
(1.12529 1.00921 0.15)
(1.16826 1.00895 0.15)
(1.21123 1.00864 0.15)
(1.08228 1.00943 0.15)
(1.340069586 -1.008505244 0.15)
(1.33844036 -0.964101508 0.15)
(1.382305982 -0.9634377365 0.15)
(1.25044344 -0.9654072507 0.15)
(1.290956927 -0.9220684066 0.15)
(1.28651019 -0.8804921916 0.15)
(1.281487376 -0.8398576748 0.15)
(1.236277354 -0.8409433507 0.15)
(1.191290419 -0.8416127804 0.15)
(1.271161191 -0.7604796981 0.15)
(1.266513819 -0.7212415726 0.15)
(1.262575377 -0.6819771507 0.15)
(1.216851209 -0.6825880364 0.15)
(1.171522765 -0.6824665036 0.15)
(1.257573481 -0.6024899431 0.15)
(1.256716073 -0.5619019217 0.15)
(1.256975513 -0.5205698781 0.15)
(1.212175284 -0.5196383896 0.15)
(1.167808146 -0.5178728412 0.15)
(1.260520099 -0.4354273413 0.15)
(1.263515264 -0.3916297452 0.15)
(1.267079321 -0.3471248853 0.15)
(1.223846957 -0.3439008474 0.15)
(1.275166103 -0.2566264576 0.15)
(1.279391805 -0.2110128606 0.15)
(1.28362611 -0.1653755727 0.15)
(1.240760219 -0.1613984018 0.15)
(1.292096729 -0.0740855359 0.15)
(1.296342981 -0.02827067304 0.15)
(1.300574307 0.01791202516 0.15)
(1.257697751 0.02117716458 0.15)
(1.308658338 0.1121920014 0.15)
(1.312241683 0.1606007742 0.15)
(1.315299313 0.2099598187 0.15)
(1.273018993 0.2107463456 0.15)
(1.230595373 0.2124084188 0.15)
(1.319191694 0.3114363314 0.15)
(1.319777083 0.3633378028 0.15)
(1.319372812 0.4157756616 0.15)
(1.277931361 0.4149639046 0.15)
(1.236255856 0.4149118721 0.15)
(1.315754548 0.5212945113 0.15)
(1.312809981 0.5738375479 0.15)
(1.30940993 0.625875459 0.15)
(1.267963419 0.6247069717 0.15)
(1.226331365 0.6239664175 0.15)
(1.302499646 0.7274475215 0.15)
(1.299702372 0.7765766144 0.15)
(1.297831336 0.824399536 0.15)
(1.255209942 0.8240327444 0.15)
(1.212939672 0.8233928572 0.15)
(1.34028 0.9625 0.15)
(1.29722 1.00833 0.15)
(1.34028 1.00833 0.15)
(1.38333 1.00833 0.15)
(1.25417 1.00833 0.15)
(1.5125 -1.00833 0.15)
(1.5125 -0.9625 0.15)
(1.55556 -0.9625 0.15)
(1.425991133 -0.9628832329 0.15)
(1.468349042 -0.9178170264 0.15)
(1.466155696 -0.8744652294 0.15)
(1.4631163 -0.8323458384 0.15)
(1.41777909 -0.8345316449 0.15)
(1.372324341 -0.8365822838 0.15)
(1.455719618 -0.7510107039 0.15)
(1.451936131 -0.711340046 0.15)
(1.448431586 -0.6720144371 0.15)
(1.401687543 -0.6755661856 0.15)
(1.355062933 -0.6784526869 0.15)
(1.443026689 -0.5934815395 0.15)
(1.441391288 -0.5538687531 0.15)
(1.440560908 -0.5138023709 0.15)
(1.394095731 -0.5171806959 0.15)
(1.347961191 -0.5194227831 0.15)
(1.441315032 -0.4318656338 0.15)
(1.442802563 -0.3898649743 0.15)
(1.44491891 -0.3471503654 0.15)
(1.399759312 -0.3493533246 0.15)
(1.355031826 -0.3500248643 0.15)
(1.450621104 -0.2596458434 0.15)
(1.453995808 -0.2149180224 0.15)
(1.457588335 -0.1695730085 0.15)
(1.413625027 -0.171058105 0.15)
(1.369952023 -0.1707912872 0.15)
(1.465070544 -0.0770307333 0.15)
(1.468784466 -0.02978133717 0.15)
(1.472354443 0.01817795095 0.15)
(1.429381558 0.01584292337 0.15)
(1.386414513 0.01507360709 0.15)
(1.478632324 0.1163814197 0.15)
(1.481110972 0.166650804 0.15)
(1.483001441 0.2176545603 0.15)
(1.441293902 0.2140093636 0.15)
(1.399438312 0.2115163684 0.15)
(1.48468174 0.3214805669 0.15)
(1.48438931 0.3739964512 0.15)
(1.483364972 0.4266473245 0.15)
(1.442573294 0.422870402 0.15)
(1.401665042 0.4197515027 0.15)
(1.479524528 0.5314009988 0.15)
(1.477052932 0.5830036855 0.15)
(1.4745273 0.6337700223 0.15)
(1.433228816 0.631485135 0.15)
(1.391982849 0.6293368106 0.15)
(1.470460254 0.7319611409 0.15)
(1.469520215 0.7790657035 0.15)
(1.46944 0.825 0.15)
(1.42639 0.825 0.15)
(1.383371282 0.8249551383 0.15)
(1.5125 0.9625 0.15)
(1.46944 1.00833 0.15)
(1.5125 1.00833 0.15)
(1.55556 1.00833 0.15)
(1.42639 1.00833 0.15)
(1.68472 -1.00833 0.15)
(1.68472 -0.9625 0.15)
(1.72778 -0.9625 0.15)
(1.59861 -0.9625 0.15)
(1.64167 -0.916667 0.15)
(1.64167 -0.870833 0.15)
(1.641404486 -0.825365966 0.15)
(1.597491468 -0.8264820462 0.15)
(1.553084008 -0.8281467809 0.15)
(1.638689126 -0.7379288214 0.15)
(1.636675153 -0.6956744177 0.15)
(1.634514677 -0.6541367607 0.15)
(1.588364203 -0.658751388 0.15)
(1.541897525 -0.663423191 0.15)
(1.630486714 -0.5723756112 0.15)
(1.62890892 -0.5317444014 0.15)
(1.627758667 -0.4910271964 0.15)
(1.581003363 -0.4977375999 0.15)
(1.534143492 -0.5039249467 0.15)
(1.626946956 -0.4087077983 0.15)
(1.627310197 -0.3668485349 0.15)
(1.628157599 -0.32439512 0.15)
(1.582184001 -0.3318351294 0.15)
(1.536249636 -0.3382599213 0.15)
(1.631094296 -0.2374466864 0.15)
(1.633041788 -0.1928694782 0.15)
(1.635197592 -0.1475242001 0.15)
(1.590686591 -0.1551014896 0.15)
(1.546203656 -0.1614596115 0.15)
(1.639765398 -0.05449967862 0.15)
(1.641986312 -0.006831951227 0.15)
(1.644037963 0.04157697841 0.15)
(1.6011902 0.03398082691 0.15)
(1.558290461 0.02739004805 0.15)
(1.647278602 0.1404230158 0.15)
(1.648317169 0.1907063044 0.15)
(1.648897077 0.241414058 0.15)
(1.607499632 0.2344899137 0.15)
(1.566086282 0.2280621921 0.15)
(1.648627488 0.3435032252 0.15)
(1.64783705 0.3945224485 0.15)
(1.646713316 0.4452558059 0.15)
(1.605705924 0.4404868055 0.15)
(1.564872131 0.4356423439 0.15)
(1.644011929 0.5450193829 0.15)
(1.642792172 0.5936406751 0.15)
(1.641939243 0.6411800369 0.15)
(1.599596084 0.6399478666 0.15)
(1.55764014 0.6381739723 0.15)
(1.64167 0.733333 0.15)
(1.64167 0.779167 0.15)
(1.64167 0.825 0.15)
(1.59861 0.825 0.15)
(1.55556 0.825 0.15)
(1.68472 0.9625 0.15)
(1.64167 1.00833 0.15)
(1.68472 1.00833 0.15)
(1.72778 1.00833 0.15)
(1.59861 1.00833 0.15)
(1.85694 -1.00833 0.15)
(1.85694 -0.9625 0.15)
(1.9 -0.9625 0.15)
(1.77083 -0.9625 0.15)
(1.81389 -0.916667 0.15)
(1.81389 -0.870833 0.15)
(1.81389 -0.825 0.15)
(1.77083 -0.825 0.15)
(1.72778 -0.825 0.15)
(1.81389 -0.733333 0.15)
(1.81389 -0.6875 0.15)
(1.813775024 -0.6419008081 0.15)
(1.769926712 -0.6434408666 0.15)
(1.725390054 -0.6461877651 0.15)
(1.812692408 -0.552827085 0.15)
(1.811980609 -0.5090641749 0.15)
(1.811301867 -0.4655971317 0.15)
(1.766126923 -0.4710038127 0.15)
(1.720427169 -0.4772996033 0.15)
(1.810344226 -0.3789318254 0.15)
(1.810156743 -0.3354506822 0.15)
(1.810187499 -0.291712056 0.15)
(1.765127635 -0.2994851822 0.15)
(1.719726488 -0.3078179732 0.15)
(1.810860606 -0.2030933918 0.15)
(1.811443213 -0.1580831852 0.15)
(1.812131028 -0.1125527308 0.15)
(1.768145386 -0.1211201908 0.15)
(1.723980204 -0.1301136682 0.15)
(1.81360647 -0.0199021438 0.15)
(1.814282673 0.02717912989 0.15)
(1.814848967 0.07470261289 0.15)
(1.772188174 0.0668464174 0.15)
(1.729524474 0.0584135619 0.15)
(1.815498305 0.1707600884 0.15)
(1.815540807 0.2190857696 0.15)
(1.815399676 0.2674367463 0.15)
(1.773495316 0.2619122278 0.15)
(1.731829444 0.2554826906 0.15)
(1.814716897 0.3636172693 0.15)
(1.814312185 0.4111232876 0.15)
(1.813996357 0.4580219343 0.15)
(1.771528449 0.4563520641 0.15)
(1.729544502 0.4534765319 0.15)
(1.81389 0.55 0.15)
(1.81389 0.595833 0.15)
(1.81389 0.641667 0.15)
(1.77083 0.641667 0.15)
(1.72778 0.641667 0.15)
(1.81389 0.733333 0.15)
(1.81389 0.779167 0.15)
(1.81389 0.825 0.15)
(1.77083 0.825 0.15)
(1.72778 0.825 0.15)
(1.85694 0.9625 0.15)
(1.81389 1.00833 0.15)
(1.85694 1.00833 0.15)
(1.9 1.00833 0.15)
(1.77083 1.00833 0.15)
(2.02917 -1.00833 0.15)
(2.02917 -0.9625 0.15)
(2.07222 -0.9625 0.15)
(1.94306 -0.9625 0.15)
(1.98611 -0.916667 0.15)
(1.98611 -0.870833 0.15)
(1.98611 -0.825 0.15)
(1.94306 -0.825 0.15)
(1.9 -0.825 0.15)
(1.98611 -0.733333 0.15)
(1.98611 -0.6875 0.15)
(1.98611 -0.641667 0.15)
(1.94306 -0.641667 0.15)
(1.9 -0.641667 0.15)
(1.98611 -0.55 0.15)
(1.98611 -0.504167 0.15)
(1.98611 -0.458333 0.15)
(1.94306 -0.458333 0.15)
(1.899793643 -0.4589557679 0.15)
(1.98611 -0.366667 0.15)
(1.98611 -0.320833 0.15)
(1.986109975 -0.2750001299 0.15)
(1.942820624 -0.2762264269 0.15)
(1.899055411 -0.2796612052 0.15)
(1.986094148 -0.1834571854 0.15)
(1.986091235 -0.1376935565 0.15)
(1.986095283 -0.09188889877 0.15)
(1.942887878 -0.09415687758 0.15)
(1.899491637 -0.09861960138 0.15)
(1.986109366 -0.0001335553254 0.15)
(1.986111361 0.04578098106 0.15)
(1.986110078 0.09166531749 0.15)
(1.94313448 0.09038094572 0.15)
(1.900278361 0.08688681087 0.15)
(1.98611 0.183333 0.15)
(1.98611 0.229167 0.15)
(1.98611 0.275 0.15)
(1.94306 0.275 0.15)
(1.900134559 0.2742931707 0.15)
(1.98611 0.366667 0.15)
(1.98611 0.4125 0.15)
(1.98611 0.458333 0.15)
(1.94306 0.458333 0.15)
(1.9 0.458333 0.15)
(1.98611 0.55 0.15)
(1.98611 0.595833 0.15)
(1.98611 0.641667 0.15)
(1.94306 0.641667 0.15)
(1.9 0.641667 0.15)
(1.98611 0.733333 0.15)
(1.98611 0.779167 0.15)
(1.98611 0.825 0.15)
(1.94306 0.825 0.15)
(1.9 0.825 0.15)
(2.02917 0.9625 0.15)
(1.98611 1.00833 0.15)
(2.02917 1.00833 0.15)
(2.07222 1.00833 0.15)
(1.94306 1.00833 0.15)
(2.20139 -1.00833 0.15)
(2.20139 -0.9625 0.15)
(2.24444 -0.9625 0.15)
(2.11528 -0.9625 0.15)
(2.15833 -0.916667 0.15)
(2.15833 -0.870833 0.15)
(2.15833 -0.825 0.15)
(2.11528 -0.825 0.15)
(2.07222 -0.825 0.15)
(2.15833 -0.733333 0.15)
(2.15833 -0.6875 0.15)
(2.15833 -0.641667 0.15)
(2.11528 -0.641667 0.15)
(2.07222 -0.641667 0.15)
(2.15833 -0.55 0.15)
(2.15833 -0.504167 0.15)
(2.15833 -0.458333 0.15)
(2.11528 -0.458333 0.15)
(2.07222 -0.458333 0.15)
(2.15833 -0.366667 0.15)
(2.15833 -0.320833 0.15)
(2.15833 -0.275 0.15)
(2.11528 -0.275 0.15)
(2.07222 -0.275 0.15)
(2.15833 -0.183333 0.15)
(2.15833 -0.1375 0.15)
(2.15833 -0.0916667 0.15)
(2.11528 -0.0916667 0.15)
(2.07222 -0.0916667 0.15)
(2.15833 0 0.15)
(2.15833 0.0458333 0.15)
(2.15833 0.0916667 0.15)
(2.11528 0.0916667 0.15)
(2.07222 0.0916667 0.15)
(2.15833 0.183333 0.15)
(2.15833 0.229167 0.15)
(2.15833 0.275 0.15)
(2.11528 0.275 0.15)
(2.07222 0.275 0.15)
(2.15833 0.366667 0.15)
(2.15833 0.4125 0.15)
(2.15833 0.458333 0.15)
(2.11528 0.458333 0.15)
(2.07222 0.458333 0.15)
(2.15833 0.55 0.15)
(2.15833 0.595833 0.15)
(2.15833 0.641667 0.15)
(2.11528 0.641667 0.15)
(2.07222 0.641667 0.15)
(2.15833 0.733333 0.15)
(2.15833 0.779167 0.15)
(2.15833 0.825 0.15)
(2.11528 0.825 0.15)
(2.07222 0.825 0.15)
(2.20139 0.9625 0.15)
(2.15833 1.00833 0.15)
(2.20139 1.00833 0.15)
(2.24444 1.00833 0.15)
(2.11528 1.00833 0.15)
(2.37361 -1.00833 0.15)
(2.37361 -0.9625 0.15)
(2.41667 -0.9625 0.15)
(2.2875 -0.9625 0.15)
(2.33056 -0.916667 0.15)
(2.33056 -0.870833 0.15)
(2.33056 -0.825 0.15)
(2.2875 -0.825 0.15)
(2.24444 -0.825 0.15)
(2.33056 -0.733333 0.15)
(2.33056 -0.6875 0.15)
(2.33056 -0.641667 0.15)
(2.2875 -0.641667 0.15)
(2.24444 -0.641667 0.15)
(2.33056 -0.55 0.15)
(2.33056 -0.504167 0.15)
(2.33056 -0.458333 0.15)
(2.2875 -0.458333 0.15)
(2.24444 -0.458333 0.15)
(2.33056 -0.366667 0.15)
(2.33056 -0.320833 0.15)
(2.33056 -0.275 0.15)
(2.2875 -0.275 0.15)
(2.24444 -0.275 0.15)
(2.33056 -0.183333 0.15)
(2.33056 -0.1375 0.15)
(2.33056 -0.0916667 0.15)
(2.2875 -0.0916667 0.15)
(2.24444 -0.0916667 0.15)
(2.33056 -9.25186e-18 0.15)
(2.33056 0.0458333 0.15)
(2.33056 0.0916667 0.15)
(2.2875 0.0916667 0.15)
(2.24444 0.0916667 0.15)
(2.33056 0.183333 0.15)
(2.33056 0.229167 0.15)
(2.33056 0.275 0.15)
(2.2875 0.275 0.15)
(2.24444 0.275 0.15)
(2.33056 0.366667 0.15)
(2.33056 0.4125 0.15)
(2.33056 0.458333 0.15)
(2.2875 0.458333 0.15)
(2.24444 0.458333 0.15)
(2.33056 0.55 0.15)
(2.33056 0.595833 0.15)
(2.33056 0.641667 0.15)
(2.2875 0.641667 0.15)
(2.24444 0.641667 0.15)
(2.33056 0.733333 0.15)
(2.33056 0.779167 0.15)
(2.33056 0.825 0.15)
(2.2875 0.825 0.15)
(2.24444 0.825 0.15)
(2.37361 0.9625 0.15)
(2.33056 1.00833 0.15)
(2.37361 1.00833 0.15)
(2.41667 1.00833 0.15)
(2.2875 1.00833 0.15)
(2.54583 -1.00833 0.15)
(2.54583 -0.9625 0.15)
(2.58889 -0.9625 0.15)
(2.45972 -0.9625 0.15)
(2.50278 -0.916667 0.15)
(2.50278 -0.870833 0.15)
(2.50278 -0.825 0.15)
(2.45972 -0.825 0.15)
(2.41667 -0.825 0.15)
(2.50278 -0.733333 0.15)
(2.50278 -0.6875 0.15)
(2.50278 -0.641667 0.15)
(2.45972 -0.641667 0.15)
(2.41667 -0.641667 0.15)
(2.50278 -0.55 0.15)
(2.50278 -0.504167 0.15)
(2.50278 -0.458333 0.15)
(2.45972 -0.458333 0.15)
(2.41667 -0.458333 0.15)
(2.50278 -0.366667 0.15)
(2.50278 -0.320833 0.15)
(2.50278 -0.275 0.15)
(2.45972 -0.275 0.15)
(2.41667 -0.275 0.15)
(2.50278 -0.183333 0.15)
(2.50278 -0.1375 0.15)
(2.50278 -0.0916667 0.15)
(2.45972 -0.0916667 0.15)
(2.41667 -0.0916667 0.15)
(2.50278 -1.85037e-17 0.15)
(2.50278 0.0458333 0.15)
(2.50278 0.0916667 0.15)
(2.45972 0.0916667 0.15)
(2.41667 0.0916667 0.15)
(2.50278 0.183333 0.15)
(2.50278 0.229167 0.15)
(2.50278 0.275 0.15)
(2.45972 0.275 0.15)
(2.41667 0.275 0.15)
(2.50278 0.366667 0.15)
(2.50278 0.4125 0.15)
(2.50278 0.458333 0.15)
(2.45972 0.458333 0.15)
(2.41667 0.458333 0.15)
(2.50278 0.55 0.15)
(2.50278 0.595833 0.15)
(2.50278 0.641667 0.15)
(2.45972 0.641667 0.15)
(2.41667 0.641667 0.15)
(2.50278 0.733333 0.15)
(2.50278 0.779167 0.15)
(2.50278 0.825 0.15)
(2.45972 0.825 0.15)
(2.41667 0.825 0.15)
(2.54583 0.9625 0.15)
(2.50278 1.00833 0.15)
(2.54583 1.00833 0.15)
(2.58889 1.00833 0.15)
(2.45972 1.00833 0.15)
(2.71806 -1.00833 0.15)
(2.71806 -0.9625 0.15)
(2.76111 -0.9625 0.15)
(2.63194 -0.9625 0.15)
(2.675 -0.916667 0.15)
(2.675 -0.870833 0.15)
(2.675 -0.825 0.15)
(2.63194 -0.825 0.15)
(2.58889 -0.825 0.15)
(2.675 -0.733333 0.15)
(2.675 -0.6875 0.15)
(2.675 -0.641667 0.15)
(2.63194 -0.641667 0.15)
(2.58889 -0.641667 0.15)
(2.675 -0.55 0.15)
(2.675 -0.504167 0.15)
(2.675 -0.458333 0.15)
(2.63194 -0.458333 0.15)
(2.58889 -0.458333 0.15)
(2.675 -0.366667 0.15)
(2.675 -0.320833 0.15)
(2.675 -0.275 0.15)
(2.63194 -0.275 0.15)
(2.58889 -0.275 0.15)
(2.675 -0.183333 0.15)
(2.675 -0.1375 0.15)
(2.675 -0.0916667 0.15)
(2.63194 -0.0916667 0.15)
(2.58889 -0.0916667 0.15)
(2.675 0 0.15)
(2.675 0.0458333 0.15)
(2.675 0.0916667 0.15)
(2.63194 0.0916667 0.15)
(2.58889 0.0916667 0.15)
(2.675 0.183333 0.15)
(2.675 0.229167 0.15)
(2.675 0.275 0.15)
(2.63194 0.275 0.15)
(2.58889 0.275 0.15)
(2.675 0.366667 0.15)
(2.675 0.4125 0.15)
(2.675 0.458333 0.15)
(2.63194 0.458333 0.15)
(2.58889 0.458333 0.15)
(2.675 0.55 0.15)
(2.675 0.595833 0.15)
(2.675 0.641667 0.15)
(2.63194 0.641667 0.15)
(2.58889 0.641667 0.15)
(2.675 0.733333 0.15)
(2.675 0.779167 0.15)
(2.675 0.825 0.15)
(2.63194 0.825 0.15)
(2.58889 0.825 0.15)
(2.71806 0.9625 0.15)
(2.675 1.00833 0.15)
(2.71806 1.00833 0.15)
(2.76111 1.00833 0.15)
(2.63194 1.00833 0.15)
(2.89028 -1.00833 0.15)
(2.89028 -0.9625 0.15)
(2.93333 -0.9625 0.15)
(2.80417 -0.9625 0.15)
(2.84722 -0.916667 0.15)
(2.84722 -0.870833 0.15)
(2.84722 -0.825 0.15)
(2.80417 -0.825 0.15)
(2.76111 -0.825 0.15)
(2.84722 -0.733333 0.15)
(2.84722 -0.6875 0.15)
(2.84722 -0.641667 0.15)
(2.80417 -0.641667 0.15)
(2.76111 -0.641667 0.15)
(2.84722 -0.55 0.15)
(2.84722 -0.504167 0.15)
(2.84722 -0.458333 0.15)
(2.80417 -0.458333 0.15)
(2.76111 -0.458333 0.15)
(2.84722 -0.366667 0.15)
(2.84722 -0.320833 0.15)
(2.84722 -0.275 0.15)
(2.80417 -0.275 0.15)
(2.76111 -0.275 0.15)
(2.84722 -0.183333 0.15)
(2.84722 -0.1375 0.15)
(2.84722 -0.0916667 0.15)
(2.80417 -0.0916667 0.15)
(2.76111 -0.0916667 0.15)
(2.84722 1.85037e-17 0.15)
(2.84722 0.0458333 0.15)
(2.84722 0.0916667 0.15)
(2.80417 0.0916667 0.15)
(2.76111 0.0916667 0.15)
(2.84722 0.183333 0.15)
(2.84722 0.229167 0.15)
(2.84722 0.275 0.15)
(2.80417 0.275 0.15)
(2.76111 0.275 0.15)
(2.84722 0.366667 0.15)
(2.84722 0.4125 0.15)
(2.84722 0.458333 0.15)
(2.80417 0.458333 0.15)
(2.76111 0.458333 0.15)
(2.84722 0.55 0.15)
(2.84722 0.595833 0.15)
(2.84722 0.641667 0.15)
(2.80417 0.641667 0.15)
(2.76111 0.641667 0.15)
(2.84722 0.733333 0.15)
(2.84722 0.779167 0.15)
(2.84722 0.825 0.15)
(2.80417 0.825 0.15)
(2.76111 0.825 0.15)
(2.89028 0.9625 0.15)
(2.84722 1.00833 0.15)
(2.89028 1.00833 0.15)
(2.93333 1.00833 0.15)
(2.80417 1.00833 0.15)
(3.0625 -1.00833 0.15)
(3.0625 -0.9625 0.15)
(3.10556 -0.9625 0.15)
(2.97639 -0.9625 0.15)
(3.01944 -0.916667 0.15)
(3.01944 -0.870833 0.15)
(3.01944 -0.825 0.15)
(2.97639 -0.825 0.15)
(2.93333 -0.825 0.15)
(3.01944 -0.733333 0.15)
(3.01944 -0.6875 0.15)
(3.01944 -0.641667 0.15)
(2.97639 -0.641667 0.15)
(2.93333 -0.641667 0.15)
(3.01944 -0.55 0.15)
(3.01944 -0.504167 0.15)
(3.01944 -0.458333 0.15)
(2.97639 -0.458333 0.15)
(2.93333 -0.458333 0.15)
(3.01944 -0.366667 0.15)
(3.01944 -0.320833 0.15)
(3.01944 -0.275 0.15)
(2.97639 -0.275 0.15)
(2.93333 -0.275 0.15)
(3.01944 -0.183333 0.15)
(3.01944 -0.1375 0.15)
(3.01944 -0.0916667 0.15)
(2.97639 -0.0916667 0.15)
(2.93333 -0.0916667 0.15)
(3.01944 9.25186e-18 0.15)
(3.01944 0.0458333 0.15)
(3.01944 0.0916667 0.15)
(2.97639 0.0916667 0.15)
(2.93333 0.0916667 0.15)
(3.01944 0.183333 0.15)
(3.01944 0.229167 0.15)
(3.01944 0.275 0.15)
(2.97639 0.275 0.15)
(2.93333 0.275 0.15)
(3.01944 0.366667 0.15)
(3.01944 0.4125 0.15)
(3.01944 0.458333 0.15)
(2.97639 0.458333 0.15)
(2.93333 0.458333 0.15)
(3.01944 0.55 0.15)
(3.01944 0.595833 0.15)
(3.01944 0.641667 0.15)
(2.97639 0.641667 0.15)
(2.93333 0.641667 0.15)
(3.01944 0.733333 0.15)
(3.01944 0.779167 0.15)
(3.01944 0.825 0.15)
(2.97639 0.825 0.15)
(2.93333 0.825 0.15)
(3.0625 0.9625 0.15)
(3.01944 1.00833 0.15)
(3.0625 1.00833 0.15)
(3.10556 1.00833 0.15)
(2.97639 1.00833 0.15)
(3.23472 -1.00833 0.15)
(3.23472 -0.9625 0.15)
(3.27778 -0.9625 0.15)
(3.14861 -0.9625 0.15)
(3.19167 -0.916667 0.15)
(3.19167 -0.870833 0.15)
(3.19167 -0.825 0.15)
(3.14861 -0.825 0.15)
(3.10556 -0.825 0.15)
(3.19167 -0.733333 0.15)
(3.19167 -0.6875 0.15)
(3.19167 -0.641667 0.15)
(3.14861 -0.641667 0.15)
(3.10556 -0.641667 0.15)
(3.19167 -0.55 0.15)
(3.19167 -0.504167 0.15)
(3.19167 -0.458333 0.15)
(3.14861 -0.458333 0.15)
(3.10556 -0.458333 0.15)
(3.19167 -0.366667 0.15)
(3.19167 -0.320833 0.15)
(3.19167 -0.275 0.15)
(3.14861 -0.275 0.15)
(3.10556 -0.275 0.15)
(3.19167 -0.183333 0.15)
(3.19167 -0.1375 0.15)
(3.19167 -0.0916667 0.15)
(3.14861 -0.0916667 0.15)
(3.10556 -0.0916667 0.15)
(3.19167 0 0.15)
(3.19167 0.0458333 0.15)
(3.19167 0.0916667 0.15)
(3.14861 0.0916667 0.15)
(3.10556 0.0916667 0.15)
(3.19167 0.183333 0.15)
(3.19167 0.229167 0.15)
(3.19167 0.275 0.15)
(3.14861 0.275 0.15)
(3.10556 0.275 0.15)
(3.19167 0.366667 0.15)
(3.19167 0.4125 0.15)
(3.19167 0.458333 0.15)
(3.14861 0.458333 0.15)
(3.10556 0.458333 0.15)
(3.19167 0.55 0.15)
(3.19167 0.595833 0.15)
(3.19167 0.641667 0.15)
(3.14861 0.641667 0.15)
(3.10556 0.641667 0.15)
(3.19167 0.733333 0.15)
(3.19167 0.779167 0.15)
(3.19167 0.825 0.15)
(3.14861 0.825 0.15)
(3.10556 0.825 0.15)
(3.23472 0.9625 0.15)
(3.19167 1.00833 0.15)
(3.23472 1.00833 0.15)
(3.27778 1.00833 0.15)
(3.14861 1.00833 0.15)
(3.40694 -1.00833 0.15)
(3.40694 -0.9625 0.15)
(3.45 -0.9625 0.15)
(3.32083 -0.9625 0.15)
(3.36389 -0.916667 0.15)
(3.36389 -0.870833 0.15)
(3.36389 -0.825 0.15)
(3.32083 -0.825 0.15)
(3.27778 -0.825 0.15)
(3.36389 -0.733333 0.15)
(3.36389 -0.6875 0.15)
(3.36389 -0.641667 0.15)
(3.32083 -0.641667 0.15)
(3.27778 -0.641667 0.15)
(3.36389 -0.55 0.15)
(3.36389 -0.504167 0.15)
(3.36389 -0.458333 0.15)
(3.32083 -0.458333 0.15)
(3.27778 -0.458333 0.15)
(3.36389 -0.366667 0.15)
(3.36389 -0.320833 0.15)
(3.36389 -0.275 0.15)
(3.32083 -0.275 0.15)
(3.27778 -0.275 0.15)
(3.36389 -0.183333 0.15)
(3.36389 -0.1375 0.15)
(3.36389 -0.0916667 0.15)
(3.32083 -0.0916667 0.15)
(3.27778 -0.0916667 0.15)
(3.36389 0 0.15)
(3.36389 0.0458333 0.15)
(3.36389 0.0916667 0.15)
(3.32083 0.0916667 0.15)
(3.27778 0.0916667 0.15)
(3.36389 0.183333 0.15)
(3.36389 0.229167 0.15)
(3.36389 0.275 0.15)
(3.32083 0.275 0.15)
(3.27778 0.275 0.15)
(3.36389 0.366667 0.15)
(3.36389 0.4125 0.15)
(3.36389 0.458333 0.15)
(3.32083 0.458333 0.15)
(3.27778 0.458333 0.15)
(3.36389 0.55 0.15)
(3.36389 0.595833 0.15)
(3.36389 0.641667 0.15)
(3.32083 0.641667 0.15)
(3.27778 0.641667 0.15)
(3.36389 0.733333 0.15)
(3.36389 0.779167 0.15)
(3.36389 0.825 0.15)
(3.32083 0.825 0.15)
(3.27778 0.825 0.15)
(3.40694 0.9625 0.15)
(3.36389 1.00833 0.15)
(3.40694 1.00833 0.15)
(3.45 1.00833 0.15)
(3.32083 1.00833 0.15)
(3.57917 -1.00833 0.15)
(3.57917 -0.9625 0.15)
(3.62222 -0.9625 0.15)
(3.49306 -0.9625 0.15)
(3.53611 -0.916667 0.15)
(3.53611 -0.870833 0.15)
(3.53611 -0.825 0.15)
(3.49306 -0.825 0.15)
(3.45 -0.825 0.15)
(3.53611 -0.733333 0.15)
(3.53611 -0.6875 0.15)
(3.53611 -0.641667 0.15)
(3.49306 -0.641667 0.15)
(3.45 -0.641667 0.15)
(3.53611 -0.55 0.15)
(3.53611 -0.504167 0.15)
(3.53611 -0.458333 0.15)
(3.49306 -0.458333 0.15)
(3.45 -0.458333 0.15)
(3.53611 -0.366667 0.15)
(3.53611 -0.320833 0.15)
(3.53611 -0.275 0.15)
(3.49306 -0.275 0.15)
(3.45 -0.275 0.15)
(3.53611 -0.183333 0.15)
(3.53611 -0.1375 0.15)
(3.53611 -0.0916667 0.15)
(3.49306 -0.0916667 0.15)
(3.45 -0.0916667 0.15)
(3.53611 0 0.15)
(3.53611 0.0458333 0.15)
(3.53611 0.0916667 0.15)
(3.49306 0.0916667 0.15)
(3.45 0.0916667 0.15)
(3.53611 0.183333 0.15)
(3.53611 0.229167 0.15)
(3.53611 0.275 0.15)
(3.49306 0.275 0.15)
(3.45 0.275 0.15)
(3.53611 0.366667 0.15)
(3.53611 0.4125 0.15)
(3.53611 0.458333 0.15)
(3.49306 0.458333 0.15)
(3.45 0.458333 0.15)
(3.53611 0.55 0.15)
(3.53611 0.595833 0.15)
(3.53611 0.641667 0.15)
(3.49306 0.641667 0.15)
(3.45 0.641667 0.15)
(3.53611 0.733333 0.15)
(3.53611 0.779167 0.15)
(3.53611 0.825 0.15)
(3.49306 0.825 0.15)
(3.45 0.825 0.15)
(3.57917 0.9625 0.15)
(3.53611 1.00833 0.15)
(3.57917 1.00833 0.15)
(3.62222 1.00833 0.15)
(3.49306 1.00833 0.15)
(3.75139 -1.00833 0.15)
(3.75139 -0.9625 0.15)
(3.79444 -0.9625 0.15)
(3.66528 -0.9625 0.15)
(3.70833 -0.916667 0.15)
(3.70833 -0.870833 0.15)
(3.70833 -0.825 0.15)
(3.66528 -0.825 0.15)
(3.62222 -0.825 0.15)
(3.70833 -0.733333 0.15)
(3.70833 -0.6875 0.15)
(3.70833 -0.641667 0.15)
(3.66528 -0.641667 0.15)
(3.62222 -0.641667 0.15)
(3.70833 -0.55 0.15)
(3.70833 -0.504167 0.15)
(3.70833 -0.458333 0.15)
(3.66528 -0.458333 0.15)
(3.62222 -0.458333 0.15)
(3.70833 -0.366667 0.15)
(3.70833 -0.320833 0.15)
(3.70833 -0.275 0.15)
(3.66528 -0.275 0.15)
(3.62222 -0.275 0.15)
(3.70833 -0.183333 0.15)
(3.70833 -0.1375 0.15)
(3.70833 -0.0916667 0.15)
(3.66528 -0.0916667 0.15)
(3.62222 -0.0916667 0.15)
(3.70833 -4.62593e-18 0.15)
(3.70833 0.0458333 0.15)
(3.70833 0.0916667 0.15)
(3.66528 0.0916667 0.15)
(3.62222 0.0916667 0.15)
(3.70833 0.183333 0.15)
(3.70833 0.229167 0.15)
(3.70833 0.275 0.15)
(3.66528 0.275 0.15)
(3.62222 0.275 0.15)
(3.70833 0.366667 0.15)
(3.70833 0.4125 0.15)
(3.70833 0.458333 0.15)
(3.66528 0.458333 0.15)
(3.62222 0.458333 0.15)
(3.70833 0.55 0.15)
(3.70833 0.595833 0.15)
(3.70833 0.641667 0.15)
(3.66528 0.641667 0.15)
(3.62222 0.641667 0.15)
(3.70833 0.733333 0.15)
(3.70833 0.779167 0.15)
(3.70833 0.825 0.15)
(3.66528 0.825 0.15)
(3.62222 0.825 0.15)
(3.75139 0.9625 0.15)
(3.70833 1.00833 0.15)
(3.75139 1.00833 0.15)
(3.79444 1.00833 0.15)
(3.66528 1.00833 0.15)
(3.92361 -1.00833 0.15)
(3.92361 -0.9625 0.15)
(3.96667 -0.9625 0.15)
(3.8375 -0.9625 0.15)
(3.88056 -0.916667 0.15)
(3.88056 -0.870833 0.15)
(3.88056 -0.825 0.15)
(3.8375 -0.825 0.15)
(3.79444 -0.825 0.15)
(3.88056 -0.733333 0.15)
(3.88056 -0.6875 0.15)
(3.88056 -0.641667 0.15)
(3.8375 -0.641667 0.15)
(3.79444 -0.641667 0.15)
(3.88056 -0.55 0.15)
(3.88056 -0.504167 0.15)
(3.88056 -0.458333 0.15)
(3.8375 -0.458333 0.15)
(3.79444 -0.458333 0.15)
(3.88056 -0.366667 0.15)
(3.88056 -0.320833 0.15)
(3.88056 -0.275 0.15)
(3.8375 -0.275 0.15)
(3.79444 -0.275 0.15)
(3.88056 -0.183333 0.15)
(3.88056 -0.1375 0.15)
(3.88056 -0.0916667 0.15)
(3.8375 -0.0916667 0.15)
(3.79444 -0.0916667 0.15)
(3.88056 -9.25186e-18 0.15)
(3.88056 0.0458333 0.15)
(3.88056 0.0916667 0.15)
(3.8375 0.0916667 0.15)
(3.79444 0.0916667 0.15)
(3.88056 0.183333 0.15)
(3.88056 0.229167 0.15)
(3.88056 0.275 0.15)
(3.8375 0.275 0.15)
(3.79444 0.275 0.15)
(3.88056 0.366667 0.15)
(3.88056 0.4125 0.15)
(3.88056 0.458333 0.15)
(3.8375 0.458333 0.15)
(3.79444 0.458333 0.15)
(3.88056 0.55 0.15)
(3.88056 0.595833 0.15)
(3.88056 0.641667 0.15)
(3.8375 0.641667 0.15)
(3.79444 0.641667 0.15)
(3.88056 0.733333 0.15)
(3.88056 0.779167 0.15)
(3.88056 0.825 0.15)
(3.8375 0.825 0.15)
(3.79444 0.825 0.15)
(3.92361 0.9625 0.15)
(3.88056 1.00833 0.15)
(3.92361 1.00833 0.15)
(3.96667 1.00833 0.15)
(3.8375 1.00833 0.15)
(4.09583 -1.00833 0.15)
(4.09583 -0.9625 0.15)
(4.13889 -0.9625 0.15)
(4.00972 -0.9625 0.15)
(4.05278 -0.916667 0.15)
(4.05278 -0.870833 0.15)
(4.05278 -0.825 0.15)
(4.00972 -0.825 0.15)
(3.96667 -0.825 0.15)
(4.05278 -0.733333 0.15)
(4.05278 -0.6875 0.15)
(4.05278 -0.641667 0.15)
(4.00972 -0.641667 0.15)
(3.96667 -0.641667 0.15)
(4.05278 -0.55 0.15)
(4.05278 -0.504167 0.15)
(4.05278 -0.458333 0.15)
(4.00972 -0.458333 0.15)
(3.96667 -0.458333 0.15)
(4.05278 -0.366667 0.15)
(4.05278 -0.320833 0.15)
(4.05278 -0.275 0.15)
(4.00972 -0.275 0.15)
(3.96667 -0.275 0.15)
(4.05278 -0.183333 0.15)
(4.05278 -0.1375 0.15)
(4.05278 -0.0916667 0.15)
(4.00972 -0.0916667 0.15)
(3.96667 -0.0916667 0.15)
(4.05278 -1.38778e-17 0.15)
(4.05278 0.0458333 0.15)
(4.05278 0.0916667 0.15)
(4.00972 0.0916667 0.15)
(3.96667 0.0916667 0.15)
(4.05278 0.183333 0.15)
(4.05278 0.229167 0.15)
(4.05278 0.275 0.15)
(4.00972 0.275 0.15)
(3.96667 0.275 0.15)
(4.05278 0.366667 0.15)
(4.05278 0.4125 0.15)
(4.05278 0.458333 0.15)
(4.00972 0.458333 0.15)
(3.96667 0.458333 0.15)
(4.05278 0.55 0.15)
(4.05278 0.595833 0.15)
(4.05278 0.641667 0.15)
(4.00972 0.641667 0.15)
(3.96667 0.641667 0.15)
(4.05278 0.733333 0.15)
(4.05278 0.779167 0.15)
(4.05278 0.825 0.15)
(4.00972 0.825 0.15)
(3.96667 0.825 0.15)
(4.09583 0.9625 0.15)
(4.05278 1.00833 0.15)
(4.09583 1.00833 0.15)
(4.13889 1.00833 0.15)
(4.00972 1.00833 0.15)
(4.26806 -1.00833 0.15)
(4.26806 -0.9625 0.15)
(4.31111 -0.9625 0.15)
(4.18194 -0.9625 0.15)
(4.225 -0.916667 0.15)
(4.225 -0.870833 0.15)
(4.225 -0.825 0.15)
(4.18194 -0.825 0.15)
(4.13889 -0.825 0.15)
(4.225 -0.733333 0.15)
(4.225 -0.6875 0.15)
(4.225 -0.641667 0.15)
(4.18194 -0.641667 0.15)
(4.13889 -0.641667 0.15)
(4.225 -0.55 0.15)
(4.225 -0.504167 0.15)
(4.225 -0.458333 0.15)
(4.18194 -0.458333 0.15)
(4.13889 -0.458333 0.15)
(4.225 -0.366667 0.15)
(4.225 -0.320833 0.15)
(4.225 -0.275 0.15)
(4.18194 -0.275 0.15)
(4.13889 -0.275 0.15)
(4.225 -0.183333 0.15)
(4.225 -0.1375 0.15)
(4.225 -0.0916667 0.15)
(4.18194 -0.0916667 0.15)
(4.13889 -0.0916667 0.15)
(4.225 0 0.15)
(4.225 0.0458333 0.15)
(4.225 0.0916667 0.15)
(4.18194 0.0916667 0.15)
(4.13889 0.0916667 0.15)
(4.225 0.183333 0.15)
(4.225 0.229167 0.15)
(4.225 0.275 0.15)
(4.18194 0.275 0.15)
(4.13889 0.275 0.15)
(4.225 0.366667 0.15)
(4.225 0.4125 0.15)
(4.225 0.458333 0.15)
(4.18194 0.458333 0.15)
(4.13889 0.458333 0.15)
(4.225 0.55 0.15)
(4.225 0.595833 0.15)
(4.225 0.641667 0.15)
(4.18194 0.641667 0.15)
(4.13889 0.641667 0.15)
(4.225 0.733333 0.15)
(4.225 0.779167 0.15)
(4.225 0.825 0.15)
(4.18194 0.825 0.15)
(4.13889 0.825 0.15)
(4.26806 0.9625 0.15)
(4.225 1.00833 0.15)
(4.26806 1.00833 0.15)
(4.31111 1.00833 0.15)
(4.18194 1.00833 0.15)
(4.44028 -1.00833 0.15)
(4.44028 -0.9625 0.15)
(4.48333 -0.9625 0.15)
(4.35417 -0.9625 0.15)
(4.39722 -0.916667 0.15)
(4.39722 -0.870833 0.15)
(4.39722 -0.825 0.15)
(4.35417 -0.825 0.15)
(4.31111 -0.825 0.15)
(4.39722 -0.733333 0.15)
(4.39722 -0.6875 0.15)
(4.39722 -0.641667 0.15)
(4.35417 -0.641667 0.15)
(4.31111 -0.641667 0.15)
(4.39722 -0.55 0.15)
(4.39722 -0.504167 0.15)
(4.39722 -0.458333 0.15)
(4.35417 -0.458333 0.15)
(4.31111 -0.458333 0.15)
(4.39722 -0.366667 0.15)
(4.39722 -0.320833 0.15)
(4.39722 -0.275 0.15)
(4.35417 -0.275 0.15)
(4.31111 -0.275 0.15)
(4.39722 -0.183333 0.15)
(4.39722 -0.1375 0.15)
(4.39722 -0.0916667 0.15)
(4.35417 -0.0916667 0.15)
(4.31111 -0.0916667 0.15)
(4.39722 -2.31296e-18 0.15)
(4.39722 0.0458333 0.15)
(4.39722 0.0916667 0.15)
(4.35417 0.0916667 0.15)
(4.31111 0.0916667 0.15)
(4.39722 0.183333 0.15)
(4.39722 0.229167 0.15)
(4.39722 0.275 0.15)
(4.35417 0.275 0.15)
(4.31111 0.275 0.15)
(4.39722 0.366667 0.15)
(4.39722 0.4125 0.15)
(4.39722 0.458333 0.15)
(4.35417 0.458333 0.15)
(4.31111 0.458333 0.15)
(4.39722 0.55 0.15)
(4.39722 0.595833 0.15)
(4.39722 0.641667 0.15)
(4.35417 0.641667 0.15)
(4.31111 0.641667 0.15)
(4.39722 0.733333 0.15)
(4.39722 0.779167 0.15)
(4.39722 0.825 0.15)
(4.35417 0.825 0.15)
(4.31111 0.825 0.15)
(4.44028 0.9625 0.15)
(4.39722 1.00833 0.15)
(4.44028 1.00833 0.15)
(4.48333 1.00833 0.15)
(4.35417 1.00833 0.15)
(4.6125 -1.00833 0.15)
(4.6125 -0.9625 0.15)
(4.65556 -0.9625 0.15)
(4.52639 -0.9625 0.15)
(4.56944 -0.916667 0.15)
(4.56944 -0.870833 0.15)
(4.56944 -0.825 0.15)
(4.52639 -0.825 0.15)
(4.48333 -0.825 0.15)
(4.56944 -0.733333 0.15)
(4.56944 -0.6875 0.15)
(4.56944 -0.641667 0.15)
(4.52639 -0.641667 0.15)
(4.48333 -0.641667 0.15)
(4.56944 -0.55 0.15)
(4.56944 -0.504167 0.15)
(4.56944 -0.458333 0.15)
(4.52639 -0.458333 0.15)
(4.48333 -0.458333 0.15)
(4.56944 -0.366667 0.15)
(4.56944 -0.320833 0.15)
(4.56944 -0.275 0.15)
(4.52639 -0.275 0.15)
(4.48333 -0.275 0.15)
(4.56944 -0.183333 0.15)
(4.56944 -0.1375 0.15)
(4.56944 -0.0916667 0.15)
(4.52639 -0.0916667 0.15)
(4.48333 -0.0916667 0.15)
(4.56944 -6.93889e-18 0.15)
(4.56944 0.0458333 0.15)
(4.56944 0.0916667 0.15)
(4.52639 0.0916667 0.15)
(4.48333 0.0916667 0.15)
(4.56944 0.183333 0.15)
(4.56944 0.229167 0.15)
(4.56944 0.275 0.15)
(4.52639 0.275 0.15)
(4.48333 0.275 0.15)
(4.56944 0.366667 0.15)
(4.56944 0.4125 0.15)
(4.56944 0.458333 0.15)
(4.52639 0.458333 0.15)
(4.48333 0.458333 0.15)
(4.56944 0.55 0.15)
(4.56944 0.595833 0.15)
(4.56944 0.641667 0.15)
(4.52639 0.641667 0.15)
(4.48333 0.641667 0.15)
(4.56944 0.733333 0.15)
(4.56944 0.779167 0.15)
(4.56944 0.825 0.15)
(4.52639 0.825 0.15)
(4.48333 0.825 0.15)
(4.6125 0.9625 0.15)
(4.56944 1.00833 0.15)
(4.6125 1.00833 0.15)
(4.65556 1.00833 0.15)
(4.52639 1.00833 0.15)
(4.78472 -1.00833 0.15)
(4.78472 -0.9625 0.15)
(4.82778 -0.9625 0.15)
(4.69861 -0.9625 0.15)
(4.74167 -0.916667 0.15)
(4.74167 -0.870833 0.15)
(4.74167 -0.825 0.15)
(4.69861 -0.825 0.15)
(4.65556 -0.825 0.15)
(4.74167 -0.733333 0.15)
(4.74167 -0.6875 0.15)
(4.74167 -0.641667 0.15)
(4.69861 -0.641667 0.15)
(4.65556 -0.641667 0.15)
(4.74167 -0.55 0.15)
(4.74167 -0.504167 0.15)
(4.74167 -0.458333 0.15)
(4.69861 -0.458333 0.15)
(4.65556 -0.458333 0.15)
(4.74167 -0.366667 0.15)
(4.74167 -0.320833 0.15)
(4.74167 -0.275 0.15)
(4.69861 -0.275 0.15)
(4.65556 -0.275 0.15)
(4.74167 -0.183333 0.15)
(4.74167 -0.1375 0.15)
(4.74167 -0.0916667 0.15)
(4.69861 -0.0916667 0.15)
(4.65556 -0.0916667 0.15)
(4.74167 -1.15648e-17 0.15)
(4.74167 0.0458333 0.15)
(4.74167 0.0916667 0.15)
(4.69861 0.0916667 0.15)
(4.65556 0.0916667 0.15)
(4.74167 0.183333 0.15)
(4.74167 0.229167 0.15)
(4.74167 0.275 0.15)
(4.69861 0.275 0.15)
(4.65556 0.275 0.15)
(4.74167 0.366667 0.15)
(4.74167 0.4125 0.15)
(4.74167 0.458333 0.15)
(4.69861 0.458333 0.15)
(4.65556 0.458333 0.15)
(4.74167 0.55 0.15)
(4.74167 0.595833 0.15)
(4.74167 0.641667 0.15)
(4.69861 0.641667 0.15)
(4.65556 0.641667 0.15)
(4.74167 0.733333 0.15)
(4.74167 0.779167 0.15)
(4.74167 0.825 0.15)
(4.69861 0.825 0.15)
(4.65556 0.825 0.15)
(4.78472 0.9625 0.15)
(4.74167 1.00833 0.15)
(4.78472 1.00833 0.15)
(4.82778 1.00833 0.15)
(4.69861 1.00833 0.15)
(5 -1.375 0.15)
(5 -1.28333 0.15)
(5 -1.19167 0.15)
(5 -1.1 0.15)
(5 -1.00833 0.15)
(4.95694 -1.00833 0.15)
(4.95694 -0.9625 0.15)
(5 -0.9625 0.15)
(4.87083 -0.9625 0.15)
(4.91389 -0.916667 0.15)
(4.91389 -0.870833 0.15)
(4.91389 -0.825 0.15)
(4.87083 -0.825 0.15)
(4.82778 -0.825 0.15)
(4.91389 -0.733333 0.15)
(4.91389 -0.6875 0.15)
(4.91389 -0.641667 0.15)
(4.87083 -0.641667 0.15)
(4.82778 -0.641667 0.15)
(4.91389 -0.55 0.15)
(4.91389 -0.504167 0.15)
(4.91389 -0.458333 0.15)
(4.87083 -0.458333 0.15)
(4.82778 -0.458333 0.15)
(4.91389 -0.366667 0.15)
(4.91389 -0.320833 0.15)
(4.91389 -0.275 0.15)
(4.87083 -0.275 0.15)
(4.82778 -0.275 0.15)
(4.91389 -0.183333 0.15)
(4.91389 -0.1375 0.15)
(4.91389 -0.0916667 0.15)
(4.87083 -0.0916667 0.15)
(4.82778 -0.0916667 0.15)
(4.91389 -1.61908e-17 0.15)
(4.91389 0.0458333 0.15)
(4.91389 0.0916667 0.15)
(4.87083 0.0916667 0.15)
(4.82778 0.0916667 0.15)
(4.91389 0.183333 0.15)
(4.91389 0.229167 0.15)
(4.91389 0.275 0.15)
(4.87083 0.275 0.15)
(4.82778 0.275 0.15)
(4.91389 0.366667 0.15)
(4.91389 0.4125 0.15)
(4.91389 0.458333 0.15)
(4.87083 0.458333 0.15)
(4.82778 0.458333 0.15)
(4.91389 0.55 0.15)
(4.91389 0.595833 0.15)
(4.91389 0.641667 0.15)
(4.87083 0.641667 0.15)
(4.82778 0.641667 0.15)
(4.91389 0.733333 0.15)
(4.91389 0.779167 0.15)
(4.91389 0.825 0.15)
(4.87083 0.825 0.15)
(4.82778 0.825 0.15)
(5 0.9625 0.15)
(4.95694 0.9625 0.15)
(5 1.1 0.15)
(4.91389 1.00833 0.15)
(4.95694 1.00833 0.15)
(5 1.00833 0.15)
(4.87083 1.00833 0.15)
(5 1.19167 0.15)
(5 1.28333 0.15)
(5 1.375 0.15)
(0.8367747019 -0.1996169781 0.15)
(0.8260516954 -0.1986552209 0.15)
(0.8250188835 -0.2099059198 0.15)
(0.8390881409 0.15647517 0.15)
(0.8370706302 0.133896999 0.15)
(0.8350680554 0.1113174423 0.15)
(0.8564427156 0.1090470363 0.15)
(0.8777760997 0.1067322538 0.15)
(1.009325553 -0.2089700748 0.15)
(0.9986115698 -0.207976013 0.15)
(0.997552931 -0.2193860071 0.15)
(1.013992143 -0.05757488588 0.15)
(1.011314192 -0.07106733577 0.15)
(1.022028286 -0.07206020266 0.15)
(1.032752301 -0.07305439169 0.15)
(0.8705186212 -0.03950850249 0.15)
(0.8990860072 0.1044025765 0.15)
(0.9203839765 0.1020308221 0.15)
(0.9224075025 0.1246305294 0.15)
(-0.0316344534 -0.09687065798 0.15)
(-0.05363701069 -0.09452893877 0.15)
(-0.05545253489 -0.1173698941 0.15)
(-0.05729458231 -0.1401893069 0.15)
(-0.1773841642 0.01532413346 0.15)
(-0.1560876219 0.01301276922 0.15)
(-0.1347684581 0.01063131533 0.15)
(-0.1327385158 0.0341119975 0.15)
(0.1770430935 0.2670048446 0.15)
(0.1553502027 0.2689844065 0.15)
(0.1532292293 0.2463194227 0.15)
(0.2860442857 -0.1952671892 0.15)
(0.2839486878 -0.2179184587 0.15)
(0.3053825982 -0.2198749962 0.15)
(0.3268007618 -0.2218280641 0.15)
(0.15518824 -0.2061285135 0.15)
(0.1766837723 -0.20810282 0.15)
(0.1981566802 -0.2100720144 0.15)
(0.2002522985 -0.1874096996 0.15)
(0.3497597911 0.2507689913 0.15)
(0.3281875469 0.2528257373 0.15)
(0.3260934272 0.2301903994 0.15)
(0.457505632 -0.2109075202 0.15)
(0.455414869 -0.2335391524 0.15)
(0.4768587571 -0.2354855684 0.15)
(0.4982938685 -0.2374291615 0.15)
(0.3482179296 -0.2237810397 0.15)
(0.3696470462 -0.2257351238 0.15)
(0.3717398211 -0.2030926311 0.15)
(0.5217926945 0.234155696 0.15)
(0.500341641 0.2362413695 0.15)
(0.4982787993 0.2136292413 0.15)
(0.6289976093 -0.226434195 0.15)
(0.6269105007 -0.2490480889 0.15)
(0.648344914 -0.2509775572 0.15)
(0.6697755292 -0.2529046644 0.15)
(0.5197311561 -0.239370948 0.15)
(0.5411726113 -0.2413111125 0.15)
(0.5432613624 -0.2186903409 0.15)
(0.5852975727 -0.1145344164 0.15)
(0.8004608645 -0.2418266423 0.15)
(0.7983769073 -0.2644498672 0.15)
(0.8198194712 -0.2663780831 0.15)
(0.8412586783 -0.2683100047 0.15)
(0.6912122112 -0.2548313302 0.15)
(0.7126510693 -0.2567561894 0.15)
(0.7147370898 -0.2341431988 0.15)
(0.7566968247 -0.1301187715 0.15)
(0.7615363173 -0.1362691706 0.15)
(0.7669014287 -0.1367328088 0.15)
(0.6924073812 -0.1243115609 0.15)
(0.7659265232 0.06175481624 0.15)
(0.7649453307 0.05054090586 0.15)
(0.7756536183 0.04940968373 0.15)
(0.7863500977 0.04829191 0.15)
(0.9732323428 -0.2554262824 0.15)
(0.9710949862 -0.2781379524 0.15)
(0.992260014 -0.2764329903 0.15)
(1.013697938 -0.2784220377 0.15)
(0.8626864706 -0.2702458887 0.15)
(0.884113801 -0.2721867513 0.15)
(0.8862015973 -0.2495437966 0.15)
(0.9332149443 -0.2083218298 0.15)
(0.9225025622 -0.2073429811 0.15)
(0.9117726986 -0.2063685361 0.15)
(0.9107417857 -0.2176204154 0.15)
(0.1755531908 0.1357330882 0.15)
(0.3168888624 -0.09547097133 0.15)
(0.3158457341 -0.1067679149 0.15)
(0.3265562889 -0.1077556328 0.15)
(0.2515305349 -0.1008377993 0.15)
(0.2622439846 -0.1018267901 0.15)
(0.2729644966 -0.1028154318 0.15)
(0.2740082512 -0.09152256353 0.15)
(0.3403978545 -0.07473757866 0.15)
(0.3350608645 -0.07421980693 0.15)
(0.3297138618 -0.07370170879 0.15)
(0.3291769709 -0.07946666275 0.15)
(0.2837171942 0.1252706211 0.15)
(0.2842748809 0.1312597124 0.15)
(0.2788595419 0.1317340366 0.15)
(0.2734430634 0.1322285524 0.15)
(0.348576006 0.1197982415 0.15)
(0.1972370994 0.1338407291 0.15)
(0.2680411923 0.1327397902 0.15)
(0.2626532099 0.1332708296 0.15)
(0.2620988593 0.1272743987 0.15)
(0.3505510795 -0.08148323222 0.15)
(0.3510804266 -0.07577793647 0.15)
(0.3457337195 -0.07525665201 0.15)
(0.5330437599 0.1191363719 0.15)
(0.522305335 0.1201809075 0.15)
(0.5115641076 0.1212277118 0.15)
(0.510545123 0.1099636785 0.15)
(0.3701432822 0.1176013551 0.15)
(0.6710104458 -0.1222379386 0.15)
(0.6067226756 -0.1165534073 0.15)
(0.7722640458 -0.1372233315 0.15)
(0.7776220127 -0.1377315001 0.15)
(0.7781634706 -0.1319497965 0.15)
(0.7821454992 -0.2060636335 0.15)
(0.7831793992 -0.1948120313 0.15)
(0.7724701481 -0.1938535589 0.15)
(0.7617492254 -0.1928909908 0.15)
(0.7970382306 0.04715994669 0.15)
(0.8077160049 0.04600293323 0.15)
(0.808697689 0.05723296714 0.15)
(0.9536184756 -0.2215353177 0.15)
(0.9546495732 -0.2102814469 0.15)
(0.9439210748 -0.2093031114 0.15)
(0.1142152607 -0.1794872933 0.15)
(0.1121236971 -0.2021600273 0.15)
(0.1336623022 -0.2041463645 0.15)
(-0.01774674595 -0.1899467248 0.15)
(0.004123439524 -0.1920813291 0.15)
(0.0257499845 -0.1941200145 0.15)
(0.02783170377 -0.1714343156 0.15)
(0.05878772522 -0.07148473766 0.15)
(0.05775045939 -0.0828083368 0.15)
(0.06858237347 -0.08383242197 0.15)
(0.07940640696 -0.08485376737 0.15)
(0.01497456313 -0.06717764224 0.15)
(0.2311193456 -0.08755530886 0.15)
(0.2300759401 -0.09885523956 0.15)
(0.240807128 -0.0998478847 0.15)
(0.1656572268 -0.09289342528 0.15)
(0.1763991829 -0.09388907809 0.15)
(0.1871442185 -0.09488401234 0.15)
(0.188188825 -0.08357113723 0.15)
(0.6699234842 0.1966743506 0.15)
(0.942231912 -0.01463865005 0.15)
(0.9316593462 -0.01327858791 0.15)
(0.9307398556 -0.02437951541 0.15)
(0.1451722102 -0.07958399911 0.15)
(0.1441285994 -0.09089696661 0.15)
(0.1549022339 -0.09189756718 0.15)
(0.09020299337 -0.08586352754 0.15)
(0.1010016852 -0.08687549163 0.15)
(0.1020426783 -0.07555826409 0.15)
(0.03461975052 0.1539360605 0.15)
(0.03586947689 0.1653132607 0.15)
(0.02481940525 0.1661898697 0.15)
(0.0138545289 0.1670806685 0.15)
(0.6393779111 0.09729730199 0.15)
(0.6296672681 0.1096140934 0.15)
(0.6189431015 0.1106824135 0.15)
(0.6822516145 0.09299301038 0.15)
(0.5535320306 0.1057754248 0.15)
(0.554544579 0.1170350338 0.15)
(0.5437890625 0.1180901938 0.15)
(0.608220372 0.1117445745 0.15)
(0.5974710351 0.112812217 0.15)
(0.5964601291 0.1015594857 0.15)
(-0.07928048605 0.0273848119 0.15)
(-0.06862126421 0.0263341673 0.15)
(-0.06781527889 0.03920464872 0.15)
(-0.06677279239 0.05164854264 0.15)
(-0.01588277165 -0.0291939475 0.15)
(-0.0270083196 -0.02786643735 0.15)
(-0.02765299793 -0.03948436439 0.15)
(-0.02814918509 -0.05115905252 0.15)
(-0.06545651951 0.06469876386 0.15)
(-0.06403816162 0.07715309155 0.15)
(-0.07478102057 0.07788680757 0.15)
(0.01807793305 0.1032051175 0.15)
(0.7352478046 -0.1284982751 0.15)
(0.03048117163 -0.01719445939 0.15)
(0.03549701723 -0.02344337219 0.15)
(0.008064618248 -0.01482487401 0.15)
(0.2975693195 -0.07072581094 0.15)
(0.2922062212 -0.07029459738 0.15)
(0.3077496805 -0.07746042425 0.15)
(0.3082909853 -0.07165872091 0.15)
(0.3029313627 -0.07117922195 0.15)
(0.3053807666 0.1238843049 0.15)
(0.3269944716 0.1219713434 0.15)
(0.2189015657 0.1320094273 0.15)
(0.240525064 0.1299097626 0.15)
(0.4923835191 0.08890035677 0.15)
(0.4977529359 0.08838570264 0.15)
(0.4982792106 0.0940795332 0.15)
(0.6241030408 0.04760796671 0.15)
(0.6192702799 0.0538633931 0.15)
(0.6455703798 0.04558957636 0.15)
(0.8131688409 -0.01652332839 0.15)
(0.937522621 -0.07501810325 0.15)
(1.035135862 -0.2804110851 0.15)
(1.056563829 -0.2823992086 0.15)
(1.058681014 -0.2595802161 0.15)
(1.034997848 -0.1653211373 0.15)
(1.045711739 -0.1663161948 0.15)
(1.046770285 -0.1549071964 0.15)
(1.047828647 -0.1435001895 0.15)
(0.9728991793 -0.03006200315 0.15)
(-0.008071606135 0.0047064983 0.15)
(-0.01388998248 0.005643736768 0.15)
(-0.01399211864 -0.00036914226 0.15)
(0.5638632311 -0.1125175812 0.15)
(0.7138287785 -0.1264246118 0.15)
(1.048887055 -0.1320926847 0.15)
(1.049945703 -0.1206825911 0.15)
(1.039220986 -0.1196959696 0.15)
(0.1539520397 0.1378246538 0.15)
(0.3916882926 0.1156515825 0.15)
(0.4132771767 0.1136334644 0.15)
(0.6495690934 -0.1204373806 0.15)
(0.6281122097 -0.1185660853 0.15)
(0.667058586 0.04353630904 0.15)
(0.9587803426 -0.07745562057 0.15)
(0.9945265028 -0.09884128539 0.15)
(0.003496205146 0.282546426 0.15)
(-0.02061342643 0.2616293377 0.15)
(0.7251046542 0.0886283697 0.15)
(0.002793271256 0.1679171392 0.15)
(-0.009378308649 0.1573825572 0.15)
(-0.900365 -0.825172 0.15)
(-0.943231 -0.77932 0.15)
(-0.900509 -0.641852 0.15)
(-0.943354 -0.595998 0.15)
(-0.900647 -0.458532 0.15)
(-0.943466 -0.412676 0.15)
(-0.9012004402 -0.273030164 0.15)
(-0.943644913 -0.228791213 0.15)
(-0.9012215639 -0.08616401013 0.15)
(-0.9436679458 -0.04398326725 0.15)
(-0.9004694377 0.09718050869 0.15)
(-0.9434482992 0.1387596221 0.15)
(-0.9003368668 0.2769919839 0.15)
(-0.9435120905 0.3206617544 0.15)
(-0.900648 0.458135 0.15)
(-0.943413 0.503996 0.15)
(-0.90051 0.641481 0.15)
(-0.943293 0.687341 0.15)
(-0.900365 0.824828 0.15)
(-0.943121 0.916525 0.15)
(-0.94317 0.870686 0.15)
(-0.729054 -0.82526 0.15)
(-0.771953 -0.779411 0.15)
(-0.7295346133 -0.6414960939 0.15)
(-0.7723362741 -0.5957496867 0.15)
(-0.7335068461 -0.448086835 0.15)
(-0.7752894562 -0.4039170638 0.15)
(-0.7353937365 -0.2498430633 0.15)
(-0.7762993027 -0.2085844836 0.15)
(-0.7323184798 -0.05657220388 0.15)
(-0.7735452084 -0.01848004312 0.15)
(-0.7270153581 0.1267226702 0.15)
(-0.7697944316 0.1624838442 0.15)
(-0.7239505456 0.300133394 0.15)
(-0.7686519039 0.3356528054 0.15)
(-0.7255808214 0.4686422582 0.15)
(-0.770877543 0.5074479733 0.15)
(-0.7290463764 0.6418624123 0.15)
(-0.772062 0.687245 0.15)
(-0.729068 0.824984 0.15)
(-0.77178 0.916958 0.15)
(-0.771858 0.870764 0.15)
(-0.5576267608 -0.8255719841 0.15)
(-0.6006856181 -0.7793738182 0.15)
(-0.5644327737 -0.6315015301 0.15)
(-0.6072179757 -0.5846326623 0.15)
(-0.5725825739 -0.4254481959 0.15)
(-0.6134944188 -0.37972846 0.15)
(-0.5722387782 -0.2204764557 0.15)
(-0.6117996832 -0.1772553866 0.15)
(-0.5635466993 -0.02539539187 0.15)
(-0.6033145289 0.01501439145 0.15)
(-0.5519627244 0.1576224509 0.15)
(-0.5935156805 0.1950647658 0.15)
(-0.5436936896 0.3289266405 0.15)
(-0.5882542378 0.3637728232 0.15)
(-0.5437107267 0.4909542683 0.15)
(-0.5909402187 0.5256815541 0.15)
(-0.5514489246 0.6532937988 0.15)
(-0.5982877275 0.6922150411 0.15)
(-0.5557653854 0.8281836903 0.15)
(-0.598713 0.919474 0.15)
(-0.598763 0.873702 0.15)
(-0.3869375338 -0.8252790867 0.15)
(-0.4314690118 -0.7774059977 0.15)
(-0.4017839783 -0.6217307265 0.15)
(-0.4465264198 -0.5702982253 0.15)
(-0.4122394563 -0.4089995342 0.15)
(-0.4529435046 -0.3594215703 0.15)
(-0.4078367419 -0.2052809503 0.15)
(-0.4466487885 -0.1578327557 0.15)
(-0.3941812065 -0.01424948299 0.15)
(-0.4327863857 0.0319025373 0.15)
(-0.3780563315 0.1684187903 0.15)
(-0.4176524712 0.2125012725 0.15)
(-0.3642497222 0.3448547794 0.15)
(-0.4068798266 0.3846040325 0.15)
(-0.3585256499 0.5115384063 0.15)
(-0.4057142784 0.5478070061 0.15)
(-0.3659320127 0.6702533552 0.15)
(-0.4152191008 0.707081552 0.15)
(-0.3799645412 0.8329858742 0.15)
(-0.4268255591 0.9201094538 0.15)
(-0.4261511166 0.8751231936 0.15)
(-0.2203286615 -0.821868134 0.15)
(-0.2667861444 -0.7718443915 0.15)
(-0.2390078885 -0.6160033751 0.15)
(-0.2830907477 -0.5643589673 0.15)
(-0.245842578 -0.4096715412 0.15)
(-0.2874022364 -0.3578764495 0.15)
(-0.2386472168 -0.2137007165 0.15)
(-0.2784802438 -0.1618984899 0.15)
(-0.2027854264 -0.02868337682 0.15)
(-0.2240893246 -0.02646211835 0.15)
(-0.2625073286 0.02341935062 0.15)
(-0.2199485771 0.01944406285 0.15)
(-0.2178523298 0.04226469665 0.15)
(-0.2157429119 0.06508656697 0.15)
(-0.2220275635 -0.003417842105 0.15)
(-0.200740441 -0.005516827848 0.15)
(-0.1855577985 0.1565627797 0.15)
(-0.1878246773 0.1333968329 0.15)
(-0.2114636017 0.1112522087 0.15)
(-0.2091527482 0.1351843697 0.15)
(-0.206909276 0.1583145258 0.15)
(-0.2136186636 0.08798168444 0.15)
(-0.2451714127 0.2077868452 0.15)
(-0.1871228626 0.343656507 0.15)
(-0.2273424446 0.3896125773 0.15)
(-0.1765181117 0.5159639721 0.15)
(-0.2215661175 0.5570248131 0.15)
(-0.1832904502 0.6771012935 0.15)
(-0.2327210038 0.7158473291 0.15)
(-0.2007005435 0.8383724547 0.15)
(-0.2520441157 0.922532248 0.15)
(-0.2494018366 0.8792570662 0.15)
(-0.05255773465 -0.8211116383 0.15)
(-0.1003370728 -0.7706325788 0.15)
(-0.07214043849 -0.6188930953 0.15)
(-0.1174748901 -0.5664084635 0.15)
(-0.07748954334 -0.4185588836 0.15)
(-0.1185271843 -0.3668709553 0.15)
(-0.06529891549 -0.2311608791 0.15)
(-0.1024436523 -0.1587365332 0.15)
(-0.08080047858 -0.1608741781 0.15)
(-0.06130843533 -0.1856619572 0.15)
(-0.08279833936 -0.1836259066 0.15)
(-0.1043817532 -0.1815239353 0.15)
(-0.03970301809 -0.1877378498 0.15)
(-0.1385560984 -0.03646989835 0.15)
(-0.1404661675 -0.05962194957 0.15)
(-0.1197947927 -0.08675872691 0.15)
(-0.09764543621 -0.08960516666 0.15)
(-0.1045280765 0.1037315153 0.15)
(-0.1210547727 0.15215914 0.15)
(-0.1236305856 0.1285211151 0.15)
(0.0006576912734 0.508075318 0.15)
(-0.04267235126 0.5529842014 0.15)
(-0.003221582199 0.6756917087 0.15)
(-0.05157789357 0.7174849558 0.15)
(-0.02256720015 0.8404493833 0.15)
(-0.07617781419 0.9249811702 0.15)
(-0.07179773121 0.8823170008 0.15)
(0.1183057682 -0.8233609302 0.15)
(0.06972301222 -0.7734659752 0.15)
(0.09834609462 -0.6265325787 0.15)
(0.05250714981 -0.574706022 0.15)
(0.09436271775 -0.4320665236 0.15)
(0.05357099884 -0.3811790128 0.15)
(0.1120866732 0.2729492605 0.15)
(0.09041876275 0.274900393 0.15)
(0.07103201899 0.2995598954 0.15)
(0.1747698824 0.4944748247 0.15)
(0.1328003304 0.5417264658 0.15)
(0.1729955477 0.6678073381 0.15)
(0.1255618673 0.7123619745 0.15)
(0.1537737041 0.8384023493 0.15)
(0.09945846549 0.9252508364 0.15)
(0.1045572479 0.8820176939 0.15)
(0.2895153582 -0.8261866814 0.15)
(0.2410236744 -0.77757534 0.15)
(0.269423274 -0.635443544 0.15)
(0.223781258 -0.5850863391 0.15)
(0.2657998559 -0.4463526377 0.15)
(0.2252543355 -0.3962195267 0.15)
(0.2850198387 0.2569162764 0.15)
(0.263437319 0.2589488684 0.15)
(0.2439472048 0.2836199703 0.15)
(0.3473598839 0.4790050261 0.15)
(0.3059754052 0.5275438552 0.15)
(0.3462746599 0.6571712377 0.15)
(0.2996976021 0.7038142261 0.15)
(0.327318145 0.8341076576 0.15)
(0.2731663922 0.9236072441 0.15)
(0.278479524 0.8793370335 0.15)
(0.4605174885 -0.8294917211 0.15)
(0.4119862777 -0.7821769825 0.15)
(0.4402872837 -0.6449062144 0.15)
(0.3947344751 -0.5959618448 0.15)
(0.4369807451 -0.4608672884 0.15)
(0.3965573096 -0.4113687407 0.15)
(0.3555290869 -0.1445918172 0.15)
(0.4573828703 0.2404189783 0.15)
(0.4358920392 0.2424872523 0.15)
(0.4164164091 0.2672062208 0.15)
(0.5188241066 0.4631281312 0.15)
(0.4775902358 0.5124748049 0.15)
(0.516921081 0.6460591693 0.15)
(0.4708785448 0.6942412122 0.15)
(0.4979442656 0.8293181365 0.15)
(0.4449296539 0.9213215402 0.15)
(0.4500494384 0.875884009 0.15)
(0.6312263782 -0.8333440842 0.15)
(0.5828406298 -0.7873159723 0.15)
(0.6109587568 -0.6549636859 0.15)
(0.5656248615 -0.6073394565 0.15)
(0.6081519076 -0.4756359555 0.15)
(0.5678987347 -0.4266434814 0.15)
(0.5270288866 -0.1602939651 0.15)
(0.6291162667 0.2235542778 0.15)
(0.6076598752 0.2256906614 0.15)
(0.6892269137 0.4477961657 0.15)
(0.6477409059 0.4979679316 0.15)
(0.6857501755 0.6361677316 0.15)
(0.6395294855 0.6855872327 0.15)
(0.6668153515 0.8255015292 0.15)
(0.6151047819 0.9194004981 0.15)
(0.6197211885 0.8729341214 0.15)
(0.8016048169 -0.8379400385 0.15)
(0.7533341429 -0.7931447679 0.15)
(0.7813123294 -0.6658156466 0.15)
(0.7362457783 -0.61934702 0.15)
(0.7791843216 -0.4907739744 0.15)
(0.7391595098 -0.4420835817 0.15)
(0.6984838478 -0.1758623988 0.15)
(0.858611561 0.4338702941 0.15)
(0.8169419816 0.4849132654 0.15)
(0.8532622886 0.6285158746 0.15)
(0.8072907505 0.6789559662 0.15)
(0.8348480299 0.8232568088 0.15)
(0.7847054635 0.9183381825 0.15)
(0.787989104 0.8713481823 0.15)
(0.9724556004 -0.8418868061 0.15)
(0.9231206231 -0.8001679781 0.15)
(0.9522783619 -0.6760896075 0.15)
(0.9065206846 -0.6323721472 0.15)
(0.9511952801 -0.5047723488 0.15)
(0.9105325164 -0.4578575397 0.15)
(0.8903553254 -0.2044285974 0.15)
(0.8796445448 -0.2034649616 0.15)
(0.8699443519 -0.1912736724 0.15)
(0.9104682823 -0.01065302456 0.15)
(0.8998463001 -0.009381776902 0.15)
(0.8901497777 0.00301143677 0.15)
(1.017663618 0.2288991103 0.15)
(0.9788624963 0.2800838101 0.15)
(1.026864295 0.422460709 0.15)
(0.9847790352 0.4746829192 0.15)
(1.019407143 0.6241913661 0.15)
(0.9740292453 0.6749930906 0.15)
(1.0025809 0.8226723027 0.15)
(0.9544688089 0.9179069773 0.15)
(0.9570722231 0.8707134019 0.15)
(1.146606646 -0.841858966 0.15)
(1.09628023 -0.8012449546 0.15)
(1.126638161 -0.681668441 0.15)
(1.079661674 -0.63935565 0.15)
(1.123852306 -0.5154261051 0.15)
(1.082978887 -0.4683636348 0.15)
(1.042545964 -0.2005451094 0.15)
(1.043604511 -0.1891361111 0.15)
(1.103407635 -0.01056403094 0.15)
(1.084086868 0.01424371014 0.15)
(1.18806147 0.2147890115 0.15)
(1.148524654 0.2660836861 0.15)
(1.194355713 0.4155701039 0.15)
(1.151751751 0.4676669999 0.15)
(1.185136662 0.6229371857 0.15)
(1.139851088 0.673976067 0.15)
(1.170751765 0.8232645305 0.15)
(1.125227061 0.9173341072 0.15)
(1.126181887 0.8708395833 0.15)
(1.326870589 -0.8383851649 0.15)
(1.276255796 -0.7999356142 0.15)
(1.308673329 -0.6805999032 0.15)
(1.259549281 -0.6424594009 0.15)
(1.302247977 -0.5205325428 0.15)
(1.258284731 -0.4784193154 0.15)
(1.3108069 -0.3492348989 0.15)
(1.271019644 -0.3020619931 0.15)
(1.326623566 -0.168844255 0.15)
(1.287860425 -0.1197381853 0.15)
(1.343484563 0.01580883495 0.15)
(1.304718622 0.06467245582 0.15)
(1.357446994 0.2101835677 0.15)
(1.317664304 0.2602632347 0.15)
(1.360615705 0.4173733274 0.15)
(1.317999789 0.4685161346 0.15)
(1.350737552 0.6274386523 0.15)
(1.305857898 0.6771528201 0.15)
(1.340539229 0.8247318566 0.15)
(1.29722 0.916667 0.15)
(1.29722 0.870833 0.15)
(1.508255571 -0.8301628208 0.15)
(1.45953837 -0.7912678054 0.15)
(1.495210202 -0.6679126444 0.15)
(1.445409332 -0.6327997083 0.15)
(1.487284517 -0.5093428867 0.15)
(1.440546005 -0.4731626286 0.15)
(1.490452805 -0.3434226649 0.15)
(1.447560814 -0.3037346256 0.15)
(1.501807912 -0.1663429095 0.15)
(1.461308829 -0.1236160645 0.15)
(1.515334766 0.0220609239 0.15)
(1.47567489 0.06689007157 0.15)
(1.524594548 0.222383936 0.15)
(1.484212268 0.2693079034 0.15)
(1.524113026 0.4309602588 0.15)
(1.481695133 0.4791992548 0.15)
(1.515974202 0.6360538995 0.15)
(1.472229566 0.6834827224 0.15)
(1.5125 0.825 0.15)
(1.46944 0.916667 0.15)
(1.46944 0.870833 0.15)
(1.68472 -0.825 0.15)
(1.640342445 -0.7811002267 0.15)
(1.680216516 -0.6498526982 0.15)
(1.632398094 -0.6131061114 0.15)
(1.674264053 -0.4841001379 0.15)
(1.62709566 -0.4500619829 0.15)
(1.674033057 -0.3162639701 0.15)
(1.629440568 -0.2812779818 0.15)
(1.679642375 -0.1390642375 0.15)
(1.63747041 -0.1014008591 0.15)
(1.686807458 0.04984772192 0.15)
(1.645829472 0.09068368839 0.15)
(1.690313067 0.248525506 0.15)
(1.648996862 0.2924026715 0.15)
(1.687958797 0.4496800102 0.15)
(1.645383638 0.4954921278 0.15)
(1.684720557 0.6416659548 0.15)
(1.64167 0.6875 0.15)
(1.68472 0.825 0.15)
(1.64167 0.916667 0.15)
(1.64167 0.870833 0.15)
(1.85694 -0.825 0.15)
(1.81389 -0.779167 0.15)
(1.85694 -0.641667 0.15)
(1.813332699 -0.597051058 0.15)
(1.855866308 -0.4614630838 0.15)
(1.810737319 -0.4222692732 0.15)
(1.854834341 -0.2849582296 0.15)
(1.810429837 -0.2476186223 0.15)
(1.855905727 -0.1048972252 0.15)
(1.81287083 -0.06648944946 0.15)
(1.857525476 0.08152692419 0.15)
(1.815263739 0.1225945741 0.15)
(1.857588144 0.2716798689 0.15)
(1.815106354 0.3156663827 0.15)
(1.85694 0.458333 0.15)
(1.81389 0.504167 0.15)
(1.85694 0.641667 0.15)
(1.81389 0.6875 0.15)
(1.85694 0.825 0.15)
(1.81389 0.916667 0.15)
(1.81389 0.870833 0.15)
(2.02917 -0.825 0.15)
(1.98611 -0.779167 0.15)
(2.02917 -0.641667 0.15)
(1.98611 -0.595833 0.15)
(2.02917 -0.458333 0.15)
(1.98611 -0.4125 0.15)
(2.02917 -0.275 0.15)
(1.986103067 -0.2292107863 0.15)
(2.02917 -0.0916667 0.15)
(1.986102923 -0.04603265992 0.15)
(2.02917 0.0916667 0.15)
(1.98611 0.1375 0.15)
(2.02917 0.275 0.15)
(1.98611 0.320833 0.15)
(2.02917 0.458333 0.15)
(1.98611 0.504167 0.15)
(2.02917 0.641667 0.15)
(1.98611 0.6875 0.15)
(2.02917 0.825 0.15)
(1.98611 0.916667 0.15)
(1.98611 0.870833 0.15)
(2.20139 -0.825 0.15)
(2.15833 -0.779167 0.15)
(2.20139 -0.641667 0.15)
(2.15833 -0.595833 0.15)
(2.20139 -0.458333 0.15)
(2.15833 -0.4125 0.15)
(2.20139 -0.275 0.15)
(2.15833 -0.229167 0.15)
(2.20139 -0.0916667 0.15)
(2.15833 -0.0458333 0.15)
(2.20139 0.0916667 0.15)
(2.15833 0.1375 0.15)
(2.20139 0.275 0.15)
(2.15833 0.320833 0.15)
(2.20139 0.458333 0.15)
(2.15833 0.504167 0.15)
(2.20139 0.641667 0.15)
(2.15833 0.6875 0.15)
(2.20139 0.825 0.15)
(2.15833 0.916667 0.15)
(2.15833 0.870833 0.15)
(2.37361 -0.825 0.15)
(2.33056 -0.779167 0.15)
(2.37361 -0.641667 0.15)
(2.33056 -0.595833 0.15)
(2.37361 -0.458333 0.15)
(2.33056 -0.4125 0.15)
(2.37361 -0.275 0.15)
(2.33056 -0.229167 0.15)
(2.37361 -0.0916667 0.15)
(2.33056 -0.0458333 0.15)
(2.37361 0.0916667 0.15)
(2.33056 0.1375 0.15)
(2.37361 0.275 0.15)
(2.33056 0.320833 0.15)
(2.37361 0.458333 0.15)
(2.33056 0.504167 0.15)
(2.37361 0.641667 0.15)
(2.33056 0.6875 0.15)
(2.37361 0.825 0.15)
(2.33056 0.916667 0.15)
(2.33056 0.870833 0.15)
(2.54583 -0.825 0.15)
(2.50278 -0.779167 0.15)
(2.54583 -0.641667 0.15)
(2.50278 -0.595833 0.15)
(2.54583 -0.458333 0.15)
(2.50278 -0.4125 0.15)
(2.54583 -0.275 0.15)
(2.50278 -0.229167 0.15)
(2.54583 -0.0916667 0.15)
(2.50278 -0.0458333 0.15)
(2.54583 0.0916667 0.15)
(2.50278 0.1375 0.15)
(2.54583 0.275 0.15)
(2.50278 0.320833 0.15)
(2.54583 0.458333 0.15)
(2.50278 0.504167 0.15)
(2.54583 0.641667 0.15)
(2.50278 0.6875 0.15)
(2.54583 0.825 0.15)
(2.50278 0.916667 0.15)
(2.50278 0.870833 0.15)
(2.71806 -0.825 0.15)
(2.675 -0.779167 0.15)
(2.71806 -0.641667 0.15)
(2.675 -0.595833 0.15)
(2.71806 -0.458333 0.15)
(2.675 -0.4125 0.15)
(2.71806 -0.275 0.15)
(2.675 -0.229167 0.15)
(2.71806 -0.0916667 0.15)
(2.675 -0.0458333 0.15)
(2.71806 0.0916667 0.15)
(2.675 0.1375 0.15)
(2.71806 0.275 0.15)
(2.675 0.320833 0.15)
(2.71806 0.458333 0.15)
(2.675 0.504167 0.15)
(2.71806 0.641667 0.15)
(2.675 0.6875 0.15)
(2.71806 0.825 0.15)
(2.675 0.916667 0.15)
(2.675 0.870833 0.15)
(2.89028 -0.825 0.15)
(2.84722 -0.779167 0.15)
(2.89028 -0.641667 0.15)
(2.84722 -0.595833 0.15)
(2.89028 -0.458333 0.15)
(2.84722 -0.4125 0.15)
(2.89028 -0.275 0.15)
(2.84722 -0.229167 0.15)
(2.89028 -0.0916667 0.15)
(2.84722 -0.0458333 0.15)
(2.89028 0.0916667 0.15)
(2.84722 0.1375 0.15)
(2.89028 0.275 0.15)
(2.84722 0.320833 0.15)
(2.89028 0.458333 0.15)
(2.84722 0.504167 0.15)
(2.89028 0.641667 0.15)
(2.84722 0.6875 0.15)
(2.89028 0.825 0.15)
(2.84722 0.916667 0.15)
(2.84722 0.870833 0.15)
(3.0625 -0.825 0.15)
(3.01944 -0.779167 0.15)
(3.0625 -0.641667 0.15)
(3.01944 -0.595833 0.15)
(3.0625 -0.458333 0.15)
(3.01944 -0.4125 0.15)
(3.0625 -0.275 0.15)
(3.01944 -0.229167 0.15)
(3.0625 -0.0916667 0.15)
(3.01944 -0.0458333 0.15)
(3.0625 0.0916667 0.15)
(3.01944 0.1375 0.15)
(3.0625 0.275 0.15)
(3.01944 0.320833 0.15)
(3.0625 0.458333 0.15)
(3.01944 0.504167 0.15)
(3.0625 0.641667 0.15)
(3.01944 0.6875 0.15)
(3.0625 0.825 0.15)
(3.01944 0.916667 0.15)
(3.01944 0.870833 0.15)
(3.23472 -0.825 0.15)
(3.19167 -0.779167 0.15)
(3.23472 -0.641667 0.15)
(3.19167 -0.595833 0.15)
(3.23472 -0.458333 0.15)
(3.19167 -0.4125 0.15)
(3.23472 -0.275 0.15)
(3.19167 -0.229167 0.15)
(3.23472 -0.0916667 0.15)
(3.19167 -0.0458333 0.15)
(3.23472 0.0916667 0.15)
(3.19167 0.1375 0.15)
(3.23472 0.275 0.15)
(3.19167 0.320833 0.15)
(3.23472 0.458333 0.15)
(3.19167 0.504167 0.15)
(3.23472 0.641667 0.15)
(3.19167 0.6875 0.15)
(3.23472 0.825 0.15)
(3.19167 0.916667 0.15)
(3.19167 0.870833 0.15)
(3.40694 -0.825 0.15)
(3.36389 -0.779167 0.15)
(3.40694 -0.641667 0.15)
(3.36389 -0.595833 0.15)
(3.40694 -0.458333 0.15)
(3.36389 -0.4125 0.15)
(3.40694 -0.275 0.15)
(3.36389 -0.229167 0.15)
(3.40694 -0.0916667 0.15)
(3.36389 -0.0458333 0.15)
(3.40694 0.0916667 0.15)
(3.36389 0.1375 0.15)
(3.40694 0.275 0.15)
(3.36389 0.320833 0.15)
(3.40694 0.458333 0.15)
(3.36389 0.504167 0.15)
(3.40694 0.641667 0.15)
(3.36389 0.6875 0.15)
(3.40694 0.825 0.15)
(3.36389 0.916667 0.15)
(3.36389 0.870833 0.15)
(3.57917 -0.825 0.15)
(3.53611 -0.779167 0.15)
(3.57917 -0.641667 0.15)
(3.53611 -0.595833 0.15)
(3.57917 -0.458333 0.15)
(3.53611 -0.4125 0.15)
(3.57917 -0.275 0.15)
(3.53611 -0.229167 0.15)
(3.57917 -0.0916667 0.15)
(3.53611 -0.0458333 0.15)
(3.57917 0.0916667 0.15)
(3.53611 0.1375 0.15)
(3.57917 0.275 0.15)
(3.53611 0.320833 0.15)
(3.57917 0.458333 0.15)
(3.53611 0.504167 0.15)
(3.57917 0.641667 0.15)
(3.53611 0.6875 0.15)
(3.57917 0.825 0.15)
(3.53611 0.916667 0.15)
(3.53611 0.870833 0.15)
(3.75139 -0.825 0.15)
(3.70833 -0.779167 0.15)
(3.75139 -0.641667 0.15)
(3.70833 -0.595833 0.15)
(3.75139 -0.458333 0.15)
(3.70833 -0.4125 0.15)
(3.75139 -0.275 0.15)
(3.70833 -0.229167 0.15)
(3.75139 -0.0916667 0.15)
(3.70833 -0.0458333 0.15)
(3.75139 0.0916667 0.15)
(3.70833 0.1375 0.15)
(3.75139 0.275 0.15)
(3.70833 0.320833 0.15)
(3.75139 0.458333 0.15)
(3.70833 0.504167 0.15)
(3.75139 0.641667 0.15)
(3.70833 0.6875 0.15)
(3.75139 0.825 0.15)
(3.70833 0.916667 0.15)
(3.70833 0.870833 0.15)
(3.92361 -0.825 0.15)
(3.88056 -0.779167 0.15)
(3.92361 -0.641667 0.15)
(3.88056 -0.595833 0.15)
(3.92361 -0.458333 0.15)
(3.88056 -0.4125 0.15)
(3.92361 -0.275 0.15)
(3.88056 -0.229167 0.15)
(3.92361 -0.0916667 0.15)
(3.88056 -0.0458333 0.15)
(3.92361 0.0916667 0.15)
(3.88056 0.1375 0.15)
(3.92361 0.275 0.15)
(3.88056 0.320833 0.15)
(3.92361 0.458333 0.15)
(3.88056 0.504167 0.15)
(3.92361 0.641667 0.15)
(3.88056 0.6875 0.15)
(3.92361 0.825 0.15)
(3.88056 0.916667 0.15)
(3.88056 0.870833 0.15)
(4.09583 -0.825 0.15)
(4.05278 -0.779167 0.15)
(4.09583 -0.641667 0.15)
(4.05278 -0.595833 0.15)
(4.09583 -0.458333 0.15)
(4.05278 -0.4125 0.15)
(4.09583 -0.275 0.15)
(4.05278 -0.229167 0.15)
(4.09583 -0.0916667 0.15)
(4.05278 -0.0458333 0.15)
(4.09583 0.0916667 0.15)
(4.05278 0.1375 0.15)
(4.09583 0.275 0.15)
(4.05278 0.320833 0.15)
(4.09583 0.458333 0.15)
(4.05278 0.504167 0.15)
(4.09583 0.641667 0.15)
(4.05278 0.6875 0.15)
(4.09583 0.825 0.15)
(4.05278 0.916667 0.15)
(4.05278 0.870833 0.15)
(4.26806 -0.825 0.15)
(4.225 -0.779167 0.15)
(4.26806 -0.641667 0.15)
(4.225 -0.595833 0.15)
(4.26806 -0.458333 0.15)
(4.225 -0.4125 0.15)
(4.26806 -0.275 0.15)
(4.225 -0.229167 0.15)
(4.26806 -0.0916667 0.15)
(4.225 -0.0458333 0.15)
(4.26806 0.0916667 0.15)
(4.225 0.1375 0.15)
(4.26806 0.275 0.15)
(4.225 0.320833 0.15)
(4.26806 0.458333 0.15)
(4.225 0.504167 0.15)
(4.26806 0.641667 0.15)
(4.225 0.6875 0.15)
(4.26806 0.825 0.15)
(4.225 0.916667 0.15)
(4.225 0.870833 0.15)
(4.44028 -0.825 0.15)
(4.39722 -0.779167 0.15)
(4.44028 -0.641667 0.15)
(4.39722 -0.595833 0.15)
(4.44028 -0.458333 0.15)
(4.39722 -0.4125 0.15)
(4.44028 -0.275 0.15)
(4.39722 -0.229167 0.15)
(4.44028 -0.0916667 0.15)
(4.39722 -0.0458333 0.15)
(4.44028 0.0916667 0.15)
(4.39722 0.1375 0.15)
(4.44028 0.275 0.15)
(4.39722 0.320833 0.15)
(4.44028 0.458333 0.15)
(4.39722 0.504167 0.15)
(4.44028 0.641667 0.15)
(4.39722 0.6875 0.15)
(4.44028 0.825 0.15)
(4.39722 0.916667 0.15)
(4.39722 0.870833 0.15)
(4.6125 -0.825 0.15)
(4.56944 -0.779167 0.15)
(4.6125 -0.641667 0.15)
(4.56944 -0.595833 0.15)
(4.6125 -0.458333 0.15)
(4.56944 -0.4125 0.15)
(4.6125 -0.275 0.15)
(4.56944 -0.229167 0.15)
(4.6125 -0.0916667 0.15)
(4.56944 -0.0458333 0.15)
(4.6125 0.0916667 0.15)
(4.56944 0.1375 0.15)
(4.6125 0.275 0.15)
(4.56944 0.320833 0.15)
(4.6125 0.458333 0.15)
(4.56944 0.504167 0.15)
(4.6125 0.641667 0.15)
(4.56944 0.6875 0.15)
(4.6125 0.825 0.15)
(4.56944 0.916667 0.15)
(4.56944 0.870833 0.15)
(4.78472 -0.825 0.15)
(4.74167 -0.779167 0.15)
(4.78472 -0.641667 0.15)
(4.74167 -0.595833 0.15)
(4.78472 -0.458333 0.15)
(4.74167 -0.4125 0.15)
(4.78472 -0.275 0.15)
(4.74167 -0.229167 0.15)
(4.78472 -0.0916667 0.15)
(4.74167 -0.0458333 0.15)
(4.78472 0.0916667 0.15)
(4.74167 0.1375 0.15)
(4.78472 0.275 0.15)
(4.74167 0.320833 0.15)
(4.78472 0.458333 0.15)
(4.74167 0.504167 0.15)
(4.78472 0.641667 0.15)
(4.74167 0.6875 0.15)
(4.78472 0.825 0.15)
(4.74167 0.916667 0.15)
(4.74167 0.870833 0.15)
(5 -0.825 0.15)
(4.95694 -0.825 0.15)
(4.91389 -0.779167 0.15)
(5 -0.641667 0.15)
(4.95694 -0.641667 0.15)
(4.91389 -0.595833 0.15)
(5 -0.458333 0.15)
(4.95694 -0.458333 0.15)
(4.91389 -0.4125 0.15)
(5 -0.275 0.15)
(4.95694 -0.275 0.15)
(4.91389 -0.229167 0.15)
(5 -0.0916667 0.15)
(4.95694 -0.0916667 0.15)
(4.91389 -0.0458333 0.15)
(5 0.0916667 0.15)
(4.95694 0.0916667 0.15)
(4.91389 0.1375 0.15)
(5 0.275 0.15)
(4.95694 0.275 0.15)
(4.91389 0.320833 0.15)
(5 0.458333 0.15)
(4.95694 0.458333 0.15)
(4.91389 0.504167 0.15)
(5 0.641667 0.15)
(4.95694 0.641667 0.15)
(4.91389 0.6875 0.15)
(5 0.825 0.15)
(4.95694 0.825 0.15)
(4.91389 0.916667 0.15)
(4.91389 0.870833 0.15)
(0.1695484667 0.1877432626 0.15)
(0.342461917 0.171614691 0.15)
(0.2128278292 0.1837628794 0.15)
(0.484167225 -0.1563794529 0.15)
(0.5135964926 0.1437713609 0.15)
(0.5146179512 0.1550512334 0.15)
(0.385580609 0.1675045967 0.15)
(0.655625738 -0.171985375 0.15)
(0.8270815715 -0.1874253399 0.15)
(0.8046006115 -0.1967322403 0.15)
(0.8153257018 -0.1976931866 0.15)
(0.8136928408 0.1135818739 0.15)
(0.8330454326 0.08871664685 0.15)
(0.999670301 -0.1965650232 0.15)
(0.9774799457 -0.2101219469 0.15)
(0.9878975864 -0.2069819513 0.15)
(1.002489156 -0.06692481955 0.15)
(1.010254934 -0.08248400119 0.15)
(0.8753960239 -0.04562915674 0.15)
(1.003265735 0.06933396496 0.15)
(0.9841729948 0.09469430305 0.15)
(0.9629396756 0.09716751862 0.15)
(0.9183546917 0.07940152025 0.15)
(0.9416807755 0.09961398307 0.15)
(-0.05140447182 -0.05991516133 0.15)
(-0.04034107012 -0.06119472505 0.15)
(-0.02975028372 -0.07409733373 0.15)
(-0.0409726963 -0.07278996087 0.15)
(-0.05215092857 -0.07146860982 0.15)
(-0.0188922941 -0.07518610452 0.15)
(-0.0757469811 -0.09204167377 0.15)
(-0.1366335141 -0.01324790424 0.15)
(-0.1133493322 0.007811853258 0.15)
(-0.1184139851 0.1756639926 0.15)
(-0.1156717948 0.1991360368 0.15)
(-0.1375293585 0.2003907119 0.15)
(-0.09356437657 0.1979656394 0.15)
(-0.112745447 0.2226120848 0.15)
(0.157479768 0.291644576 0.15)
(0.1337542152 0.2709800849 0.15)
(0.2410624103 -0.2139986497 0.15)
(0.2625039169 -0.2159599092 0.15)
(0.281851889 -0.2405826726 0.15)
(0.219608955 -0.2120362816 0.15)
(0.3302795828 0.2754602643 0.15)
(0.3066125722 0.2548747023 0.15)
(0.4125246599 -0.2296400688 0.15)
(0.4339751485 -0.2315911144 0.15)
(0.4533216321 -0.2561866238 0.15)
(0.3675530702 -0.248390561 0.15)
(0.3910823218 -0.2276877708 0.15)
(0.3983930685 -0.148524622 0.15)
(0.5024079319 0.2588581993 0.15)
(0.4788721308 0.238333777 0.15)
(0.584053089 -0.2451851901 0.15)
(0.6054772679 -0.2471167216 0.15)
(0.6248199944 -0.2716877793 0.15)
(0.5390798364 -0.2639536053 0.15)
(0.5626152471 -0.243249378 0.15)
(0.5699102061 -0.1642022668 0.15)
(0.5402521215 0.07862688382 0.15)
(0.755512043 -0.2606023457 0.15)
(0.7769461073 -0.2625247515 0.15)
(0.7941900744 -0.3097919785 0.15)
(0.7962857337 -0.287107573 0.15)
(0.7105611891 -0.279399955 0.15)
(0.7340761721 -0.2586777637 0.15)
(0.741343251 -0.1797254824 0.15)
(0.7510252232 -0.1919291412 0.15)
(0.7542480198 0.05164971807 0.15)
(0.7639712952 0.03933918643 0.15)
(0.9269831513 -0.2761049897 0.15)
(0.9485686477 -0.2780946733 0.15)
(0.9668500423 -0.3236192905 0.15)
(0.9689717136 -0.3008710149 0.15)
(0.8799231803 -0.3175696872 0.15)
(0.8820206874 -0.2948653672 0.15)
(0.9055369432 -0.2741402811 0.15)
(0.9127991256 -0.1951433565 0.15)
(0.9010648332 -0.2053951279 0.15)
(1.12934625 -0.1970913767 0.15)
(1.150784174 -0.199080424 0.15)
(1.15290136 -0.1762614316 0.15)
(1.15501848 -0.1534431362 0.15)
(1.148666989 -0.2218994165 0.15)
(1.137814871 -0.1058167014 0.15)
(1.159252795 -0.1078057488 0.15)
(1.161369943 -0.08498715462 0.15)
(1.157135638 -0.1306244425 0.15)
(1.052073058 -0.09786223235 0.15)
(1.053131678 -0.08645243741 0.15)
(1.043466321 -0.07404805516 0.15)
(0.09384499513 -0.04619876199 0.15)
(0.1585777863 -0.0521850972 0.15)
(0.126232088 0.1916818869 0.15)
(0.2944145747 -0.104792551 0.15)
(0.3051302006 -0.1057797351 0.15)
(0.313757486 -0.1293616172 0.15)
(0.3148017024 -0.1180637703 0.15)
(0.2719191921 -0.114114182 0.15)
(0.283694966 -0.1038049974 0.15)
(0.2658737281 -0.06243485886 0.15)
(0.3302680627 -0.06781513388 0.15)
(0.3190045418 -0.07266820919 0.15)
(0.3243608016 -0.07318395249 0.15)
(0.180081814 -0.0540894895 0.15)
(0.2444539722 -0.06036906173 0.15)
(0.2992874029 0.1756968229 0.15)
(0.3003338879 0.1869974722 0.15)
(0.2895326709 0.188014692 0.15)
(0.278719228 0.1890300334 0.15)
(0.3111219758 0.1859794619 0.15)
(0.289686278 0.1308078485 0.15)
(0.2848154046 0.1370746445 0.15)
(0.2631921116 0.1390899294 0.15)
(0.2572643652 0.1338250478 0.15)
(0.2560758008 0.1797472455 0.15)
(0.2571277264 0.1910524115 0.15)
(0.2463196111 0.1920602285 0.15)
(0.2679235234 0.1900417203 0.15)
(0.4412872913 -0.1524562154 0.15)
(0.3564310427 -0.07630038704 0.15)
(0.3516188491 -0.0700072997 0.15)
(0.5187373674 0.08070792253 0.15)
(0.4716716629 0.1592226626 0.15)
(0.512580567 0.1324970009 0.15)
(0.5008283003 0.1222679874 0.15)
(0.4286591539 0.1633731199 0.15)
(0.6127635734 -0.1680979322 0.15)
(0.7770973177 -0.1434083038 0.15)
(0.7829728967 -0.1382510631 0.15)
(0.7938815879 -0.1957708527 0.15)
(0.78420946 -0.1835801588 0.15)
(0.8494526508 0.03016867918 0.15)
(0.8067471809 0.03481408738 0.15)
(0.8184048379 0.04486769122 0.15)
(1.009157954 -0.1513511763 0.15)
(0.9655747932 -0.2110229436 0.15)
(0.9556759078 -0.199057263 0.15)
(1.011073633 -0.1288638863 0.15)
(0.06906316479 -0.1981818703 0.15)
(0.09059551118 -0.2001696354 0.15)
(0.04740066087 -0.1961519001 0.15)
(0.03597666533 -0.08071682189 0.15)
(0.04685939111 -0.08176369877 0.15)
(0.05671239699 -0.09413186203 0.15)
(0.02505319186 -0.07964909136 0.15)
(0.208626324 -0.09687314175 0.15)
(0.2193576043 -0.09786479116 0.15)
(0.2290311694 -0.1101590608 0.15)
(0.1860997968 -0.106194896 0.15)
(0.1978812883 -0.0958782075 0.15)
(0.6505434331 0.2214276358 0.15)
(0.7293956669 0.01456500308 0.15)
(0.9326082701 -0.002109387611 0.15)
(0.9210621154 -0.01197870444 0.15)
(0.1225727386 -0.08889095109 0.15)
(0.1333649222 -0.08989728988 0.15)
(0.1430848963 -0.1022109298 0.15)
(0.09996050727 -0.09819471063 0.15)
(0.1117886131 -0.08788435566 0.15)
(0.04681463119 0.1644001886 0.15)
(0.03703289053 0.1766683404 0.15)
(0.0828528977 0.1955680898 0.15)
(0.5760067292 0.1149282447 0.15)
(0.56527356 0.1159753056 0.15)
(0.5555605765 0.1282993442 0.15)
(0.5984836759 0.1240728218 0.15)
(0.5867312859 0.1138749529 0.15)
(0.8967422036 -0.0480008648 0.15)
(-0.07033016006 0.002486254776 0.15)
(-0.06949752256 0.01440028354 0.15)
(-0.05794497328 0.02521204008 0.15)
(-0.07077006265 -0.0100766317 0.15)
(-0.06019835687 -0.02373259945 0.15)
(-0.04898007658 -0.02530532537 0.15)
(-0.02619075375 -0.01636056172 0.15)
(-0.03792478424 -0.02666146741 0.15)
(-0.06117552283 0.1012879428 0.15)
(-0.05982130164 0.1130542533 0.15)
(-0.04697526115 0.1247022872 0.15)
(-0.05312857609 0.07675832206 0.15)
(-0.06249919273 0.08950453661 0.15)
(0.06467576736 0.1226883026 0.15)
(0.02429086052 0.1086222035 0.15)
(0.5617360769 0.07657109844 0.15)
(0.7508488022 0.01246929428 0.15)
(0.9260829388 -0.1681692221 0.15)
(0.1154379833 -0.04825924042 0.15)
(0.137018337 -0.05033682478 0.15)
(0.2873683115 -0.06415961039 0.15)
(0.313648788 -0.07215783562 0.15)
(0.3088542359 -0.06569625751 0.15)
(0.2015498574 -0.05618688279 0.15)
(0.2230189981 -0.05828327317 0.15)
(0.497211362 0.08262439692 0.15)
(0.5031165261 0.08787319597 0.15)
(0.9474815268 -0.1701817358 0.15)
(0.9689800253 -0.1718751149 0.15)
(0.9326316865 -0.06889175452 0.15)
(1.054446736 -0.3052172053 0.15)
(1.078001753 -0.2843882559 0.15)
(1.04466315 -0.177726117 0.15)
(1.05643568 -0.1673111804 0.15)
(-0.03034877002 0.03417329096 0.15)
(-0.01394928009 0.01185206571 0.15)
(-0.01975269583 0.006702993132 0.15)
(-0.0279132631 0.0620565332 0.15)
(1.060669875 -0.1216750874 0.15)
(1.051004425 -0.1092717009 0.15)
(0.9977331946 -0.1087673856 0.15)
(-0.94311 0.962359 0.15)
(-0.771676 0.963108 0.15)
(-0.598684 0.965251 0.15)
(-0.426783 0.965869 0.15)
(-0.2535849506 0.9669586883 0.15)
(-0.07948895201 0.9685567172 0.15)
(0.09526274932 0.969078881 0.15)
(0.268696916 0.9681970177 0.15)
(0.440689462 0.9668247248 0.15)
(0.6115175215 0.9656659136 0.15)
(0.7821604802 0.9649062235 0.15)
(0.9532905718 0.9642859095 0.15)
(1.12524 0.963225 0.15)
(1.29722 0.9625 0.15)
(1.46944 0.9625 0.15)
(1.64167 0.9625 0.15)
(1.81389 0.9625 0.15)
(1.98611 0.9625 0.15)
(2.15833 0.9625 0.15)
(2.33056 0.9625 0.15)
(2.50278 0.9625 0.15)
(2.675 0.9625 0.15)
(2.84722 0.9625 0.15)
(3.01944 0.9625 0.15)
(3.19167 0.9625 0.15)
(3.36389 0.9625 0.15)
(3.53611 0.9625 0.15)
(3.70833 0.9625 0.15)
(3.88056 0.9625 0.15)
(4.05278 0.9625 0.15)
(4.225 0.9625 0.15)
(4.39722 0.9625 0.15)
(4.56944 0.9625 0.15)
(4.74167 0.9625 0.15)
(4.91389 0.9625 0.15)
(1.172212141 -0.2010685476 0.15)
(1.180680762 -0.1097938723 0.15)
(0.3013797468 0.1983021967 0.15)
(0.2581789334 0.202360657 0.15)
(0.8411236567 0.1790958593 0.15)
(-0.1986676046 0.01744115617 0.15)
(-0.1901592661 0.1095444057 0.15)
(-0.05926617756 -0.1629404595 0.15)
(0.5882545616 0.2504422733 0.15)
(0.8778219264 -0.3402927412 0.15)
(0.3127129924 -0.1406624512 0.15)
(-0.02892917629 -0.06264421089 0.15)
(0.1960592346 -0.2327431984 0.15)
(0.7920914792 -0.3324972018 0.15)
(0.9647362239 -0.3463803462 0.15)
(0.1100313944 -0.2248407271 0.15)
(0.02366771092 -0.2168116877 0.15)
(-0.94311 -0.962641 0.15)
(-0.771746 -0.962725 0.15)
(-0.600176 -0.963422 0.15)
(-0.426342 -0.966051 0.15)
(-0.2542535662 -0.9665895821 0.15)
(-0.08321242546 -0.9663529322 0.15)
(0.08881362282 -0.9666014617 0.15)
(0.2608338963 -0.9669345632 0.15)
(0.4324652517 -0.9672430542 0.15)
(0.6040202276 -0.9677851406 0.15)
(0.7756470372 -0.9685648796 0.15)
(0.9461235493 -0.9701966581 0.15)
(1.118822737 -0.9664864945 0.15)
(1.294454222 -0.9647826576 0.15)
(1.46939269 -0.9625475744 0.15)
(1.64167 -0.9625 0.15)
(1.81389 -0.9625 0.15)
(1.98611 -0.9625 0.15)
(2.15833 -0.9625 0.15)
(2.33056 -0.9625 0.15)
(2.50278 -0.9625 0.15)
(2.675 -0.9625 0.15)
(2.84722 -0.9625 0.15)
(3.01944 -0.9625 0.15)
(3.19167 -0.9625 0.15)
(3.36389 -0.9625 0.15)
(3.53611 -0.9625 0.15)
(3.70833 -0.9625 0.15)
(3.88056 -0.9625 0.15)
(4.05278 -0.9625 0.15)
(4.225 -0.9625 0.15)
(4.39722 -0.9625 0.15)
(4.56944 -0.9625 0.15)
(4.74167 -0.9625 0.15)
(4.91389 -0.9625 0.15)
(0.9405318795 -0.1318521717 0.15)
(0.9352584806 -0.1309304473 0.15)
(0.941024818 -0.1289963987 0.15)
(0.9357504233 -0.1280745819 0.15)
(0.9414033809 -0.1267996777 0.15)
(0.9361289954 -0.1258777613 0.15)
(0.9458167251 -0.1327479427 0.15)
(0.9463136188 -0.1298928379 0.15)
(0.9466951596 -0.1276964936 0.15)
(0.1352340472 -0.01329245819 0.15)
(0.1299004891 -0.01236967143 0.15)
(0.1357121422 -0.01043430369 0.15)
(0.1304013379 -0.009515234934 0.15)
(0.136080831 -0.008235762624 0.15)
(0.1307868247 -0.007319658425 0.15)
(0.04636586558 0.08535540238 0.15)
(0.05084207215 0.08672211331 0.15)
(0.0472168833 0.08258523419 0.15)
(0.05163949022 0.08393602885 0.15)
(0.04787162026 0.08045433329 0.15)
(0.05225292008 0.08179289177 0.15)
(0.5621448198 0.03694336354 0.15)
(0.5665596165 0.03564354404 0.15)
(0.5613264819 0.03416327621 0.15)
(0.5657412879 0.03286355628 0.15)
(0.5606972245 0.03202476447 0.15)
(0.5651120305 0.03072504455 0.15)
(0.1245976382 -0.0114190023 0.15)
(0.1251123071 -0.00856715364 0.15)
(0.1255086729 -0.006373389944 0.15)
(0.7345567104 -0.02027865299 0.15)
(0.7419357235 -0.0229906129 0.15)
(0.7335581158 -0.02299905306 0.15)
(0.7409254651 -0.02570683423 0.15)
(0.7327895059 -0.02509163329 0.15)
(0.7401481144 -0.02779620421 0.15)
(0.8971600795 -0.08592817135 0.15)
(0.9014216785 -0.08777507738 0.15)
(0.8960026596 -0.08858520637 0.15)
(0.9002536845 -0.0904270137 0.15)
(0.8951130246 -0.09062915874 0.15)
(0.8993543879 -0.09246685591 0.15)
(0.9825071563 -0.1373426351 0.15)
(0.977669069 -0.137563413 0.15)
(0.9828305197 -0.1354918941 0.15)
(0.9780902063 -0.1351351349 0.15)
(0.9830791134 -0.1340681716 0.15)
(0.9784141539 -0.1332672746 0.15)
(0.05863323197 0.08879539428 0.15)
(0.05934298538 0.08598560734 0.15)
(0.05988895041 0.0838243254 0.15)
(0.00486697547 0.06491576129 0.15)
(0.01164150497 0.07023564811 0.15)
(0.00687948646 0.06283061823 0.15)
(0.01328655931 0.06784996721 0.15)
(0.008427554338 0.06122654005 0.15)
(0.01455202103 0.06601470891 0.15)
(0.6850312274 -0.09049228295 0.15)
(0.6797169147 -0.08969762212 0.15)
(0.685464792 -0.08762698396 0.15)
(0.6801465242 -0.08683165487 0.15)
(0.6857978565 -0.0854227273 0.15)
(0.6804766107 -0.08462702148 0.15)
(0.6691277395 -0.08811607831 0.15)
(0.6640986246 -0.08736495163 0.15)
(0.669554371 -0.08524973433 0.15)
(0.6645232832 -0.08449822374 0.15)
(0.6698834711 -0.08304490899 0.15)
(0.6648493961 -0.08229312124 0.15)
(0.69033605 -0.09130263414 0.15)
(0.6907725833 -0.08843781144 0.15)
(0.6911086164 -0.08623403109 0.15)
(0.7062683852 -0.09373594807 0.15)
(0.7009565833 -0.09292504976 0.15)
(0.7067049277 -0.0908710258 0.15)
(0.7013941124 -0.09006031945 0.15)
(0.7070409609 -0.08866724544 0.15)
(0.7017301363 -0.08785663866 0.15)
(0.7535526877 -0.1009764697 0.15)
(0.7486702828 -0.1002028004 0.15)
(0.7540060559 -0.09811421328 0.15)
(0.7491216688 -0.09734025965 0.15)
(0.7543549503 -0.09591253008 0.15)
(0.749469586 -0.09513828491 0.15)
(0.7922487851 -0.04221570751 0.15)
(0.7995912901 -0.04513713815 0.15)
(0.7911890601 -0.0449130404 0.15)
(0.7985209356 -0.04782996977 0.15)
(0.7903738878 -0.0469879042 0.15)
(0.7976970419 -0.04990141322 0.15)
(0.9249658992 -0.1291938412 0.15)
(0.9205216762 -0.128416839 0.15)
(0.9254548825 -0.1263373999 0.15)
(0.9210215293 -0.1255623101 0.15)
(0.9258304859 -0.124140103 0.15)
(0.9214060388 -0.1233664421 0.15)
(0.9908589085 -0.135989223 0.15)
(0.990690735 -0.1354204539 0.15)
(0.9616747871 -0.1355163279 0.15)
(0.9563807029 -0.1346227126 0.15)
(0.9621711357 -0.1326670979 0.15)
(0.9568794956 -0.1317687884 0.15)
(0.9625532565 -0.1304753267 0.15)
(0.9572639497 -0.1295735178 0.15)
(0.9596765569 -0.1143730997 0.15)
(0.963816683 -0.1163277442 0.15)
(0.9584334648 -0.1169901489 0.15)
(0.9625758041 -0.1189425885 0.15)
(0.9574773883 -0.1190033315 0.15)
(0.9616218946 -0.1209540639 0.15)
(0.1784764045 0.1019798773 0.15)
(0.183818054 0.1020210656 0.15)
(0.1785088405 0.09908218838 0.15)
(0.1838313864 0.09912314053 0.15)
(0.1785340075 0.09685303004 0.15)
(0.1838414882 0.09689397395 0.15)
(0.1892110335 0.102030978 0.15)
(0.1892042759 0.09913300875 0.15)
(0.1892003083 0.09690374155 0.15)
(0.2000044576 0.101936424 0.15)
(0.2054098398 0.101809405 0.15)
(0.1999545514 0.09903884268 0.15)
(0.2053388848 0.09891227015 0.15)
(0.1999164705 0.09680992854 0.15)
(0.2052837657 0.09668373169 0.15)
(0.3507575953 0.08756635163 0.15)
(0.3560607868 0.0866626519 0.15)
(0.3502745401 0.0847088582 0.15)
(0.355570817 0.0838064026 0.15)
(0.3499038783 0.08251070105 0.15)
(0.3551932314 0.08160939 0.15)
(0.3347781529 0.09013057742 0.15)
(0.3400993648 0.08930203429 0.15)
(0.3343366594 0.08726641579 0.15)
(0.3396509475 0.08643901722 0.15)
(0.3339976576 0.08506311173 0.15)
(0.3393050126 0.08423675815 0.15)
(0.3613788034 0.08575637153 0.15)
(0.3608730221 0.08290289483 0.15)
(0.3604835802 0.08070798657 0.15)
(0.371910719 0.08380664306 0.15)
(0.376926818 0.08287193374 0.15)
(0.3713792522 0.08095775895 0.15)
(0.3763894415 0.08002430095 0.15)
(0.3709710486 0.07876629875 0.15)
(0.3759762962 0.07783370096 0.15)
(0.1560241521 -0.01664589181 0.15)
(0.1511207467 -0.01586043196 0.15)
(0.1564725694 -0.01378287474 0.15)
(0.1515800523 -0.01299912813 0.15)
(0.1568175087 -0.01158052328 0.15)
(0.1519339068 -0.010798106 0.15)
(0.1458611001 -0.01500696998 0.15)
(0.1463233744 -0.01214614245 0.15)
(0.1466801884 -0.009945696192 0.15)
(0.8202703058 -0.0534547387 0.15)
(0.8245887769 -0.055229892 0.15)
(0.8191757233 -0.0561380915 0.15)
(0.8234883956 -0.05791079861 0.15)
(0.8183334375 -0.05820210402 0.15)
(0.822642247 -0.05997314715 0.15)
(0.8767844925 -0.07704628981 0.15)
(0.881014796 -0.07886247321 0.15)
(0.875640634 -0.07970870068 0.15)
(0.879860271 -0.08152078111 0.15)
(0.8747596649 -0.08175667083 0.15)
(0.8789735492 -0.08356580721 0.15)
(0.5424557003 0.04265948706 0.15)
(0.5471844302 0.04130111446 0.15)
(0.5416549621 0.03987425177 0.15)
(0.5463827055 0.03851607113 0.15)
(0.5410393862 0.03773165862 0.15)
(0.5457661616 0.03637386908 0.15)
(0.5522330153 0.039850598 0.15)
(0.551426432 0.03706731103 0.15)
(0.5508059699 0.03492617553 0.15)
(0.6528142829 0.008418180575 0.15)
(0.6574359646 0.006880229617 0.15)
(0.6518993546 0.005668647406 0.15)
(0.6565171182 0.004131762995 0.15)
(0.6511949417 0.003553579172 0.15)
(0.6558107692 0.002017476964 0.15)
(0.1087392074 -0.008503051966 0.15)
(0.1034996075 -0.00748764943 0.15)
(0.1092815256 -0.005656279388 0.15)
(0.1040586959 -0.004644140127 0.15)
(0.1096986168 -0.003466447223 0.15)
(0.1044895979 -0.002456995362 0.15)
(0.1140254369 -0.009492149875 0.15)
(0.1145529578 -0.006642497939 0.15)
(0.114958202 -0.004450461858 0.15)
(0.5571316833 -0.07199970763 0.15)
(0.5520930095 -0.07128666071 0.15)
(0.5575375155 -0.0691302287 0.15)
(0.5524988325 -0.06841728135 0.15)
(0.5578497622 -0.06692303623 0.15)
(0.5528110791 -0.06621008888 0.15)
(0.5996818392 -0.07800518367 0.15)
(0.5943583444 -0.07725536632 0.15)
(0.6000856799 -0.07513551997 0.15)
(0.5947621851 -0.07438570262 0.15)
(0.6003969401 -0.07292813554 0.15)
(0.5950734453 -0.0721783182 0.15)
(0.5837104792 -0.07575434481 0.15)
(0.5783871784 -0.07500243644 0.15)
(0.5841153156 -0.07288477349 0.15)
(0.5787920148 -0.07213286513 0.15)
(0.5844275623 -0.07067758103 0.15)
(0.5791042615 -0.06992567266 0.15)
(0.5624182717 -0.07274680374 0.15)
(0.5628230989 -0.06987733199 0.15)
(0.5631353548 -0.06767003996 0.15)
(0.5730638776 -0.07425052808 0.15)
(0.5734697005 -0.07138114872 0.15)
(0.5737809607 -0.0691737643 0.15)
(0.6596510318 -0.08671086382 0.15)
(0.6600727124 -0.0838437592 0.15)
(0.6603968523 -0.08163827279 0.15)
(0.6474766382 -0.08492841053 0.15)
(0.6422093606 -0.0841571953 0.15)
(0.6478963366 -0.08206102156 0.15)
(0.6426300548 -0.08128989872 0.15)
(0.64821949 -0.07985534319 0.15)
(0.642953199 -0.07908431992 0.15)
(0.6050043383 -0.07875490863 0.15)
(0.6054091748 -0.07588533731 0.15)
(0.6057194392 -0.0736778605 0.15)
(0.6209424474 -0.08102857321 0.15)
(0.6156374525 -0.08025255292 0.15)
(0.6213621458 -0.07816118425 0.15)
(0.616049222 -0.07738402659 0.15)
(0.6216843035 -0.0759554135 0.15)
(0.6163664288 -0.07517749519 0.15)
(0.6368898086 -0.08337570676 0.15)
(0.6373104935 -0.08050850976 0.15)
(0.6376356292 -0.07830311573 0.15)
(0.6262549277 -0.08181051035 0.15)
(0.6266766083 -0.07894340573 0.15)
(0.627001744 -0.0767380117 0.15)
(0.7275207764 -0.09696696645 0.15)
(0.7222064935 -0.09616116071 0.15)
(0.7279543411 -0.09410166746 0.15)
(0.7226410538 -0.0932959541 0.15)
(0.728288392 -0.09189760276 0.15)
(0.7229760913 -0.09109208135 0.15)
(0.7115814229 -0.09454434989 0.15)
(0.7120169698 -0.09167933523 0.15)
(0.7123530029 -0.08947555488 0.15)
(0.7511279089 -0.02644492274 0.15)
(0.7554639223 -0.02807430326 0.15)
(0.7501069699 -0.02915719275 0.15)
(0.7544381349 -0.03078470737 0.15)
(0.7493218613 -0.03124358327 0.15)
(0.753649145 -0.03286963306 0.15)
(0.7328343131 -0.09776999136 0.15)
(0.7332678777 -0.09490469237 0.15)
(0.7336009422 -0.09270043571 0.15)
(0.7434315701 -0.0993726722 0.15)
(0.7438750458 -0.09650879492 0.15)
(0.7442160206 -0.09430587477 0.15)
(0.8040775878 -0.04692193734 0.15)
(0.8030014067 -0.0496126215 0.15)
(0.8021736503 -0.05168240097 0.15)
(0.8129648703 -0.05050179798 0.15)
(0.8118790092 -0.05318857112 0.15)
(0.8110434994 -0.05525532135 0.15)
(0.9669604273 -0.1364035356 0.15)
(0.967458329 -0.1335808627 0.15)
(0.9678415616 -0.1314095818 0.15)
(0.1611909831 0.1015415149 0.15)
(0.1687785279 0.1017915093 0.15)
(0.1612888339 0.09864528888 0.15)
(0.1688602439 0.09889457085 0.15)
(0.1613643229 0.09641728649 0.15)
(0.16892265 0.09666627587 0.15)
(0.1402145953 0.1005383266 0.15)
(0.1455165888 0.1008665058 0.15)
(0.1404022388 0.09764652399 0.15)
(0.1456860414 0.09797347857 0.15)
(0.1405473474 0.0954220047 0.15)
(0.1458160016 0.09574805489 0.15)
(0.156235656 0.1013668655 0.15)
(0.15634257 0.09847090331 0.15)
(0.1564251214 0.09624324994 0.15)
(0.1351185964 0.1001897292 0.15)
(0.1353244309 0.09729915129 0.15)
(0.1354836828 0.0950755292 0.15)
(0.2216241605 0.1012787769 0.15)
(0.2270275124 0.1010432815 0.15)
(0.2215031421 0.09838327418 0.15)
(0.2268875014 0.09814873754 0.15)
(0.2214099823 0.09615605575 0.15)
(0.2267813233 0.09592192354 0.15)
(0.2108094099 0.1016630402 0.15)
(0.2107234266 0.0987662954 0.15)
(0.2106572899 0.09653807616 0.15)
(0.2324451638 0.1007562447 0.15)
(0.2322901523 0.09786238946 0.15)
(0.2321699971 0.09563647055 0.15)
(0.3133457988 0.09320796463 0.15)
(0.3187305706 0.0924691332 0.15)
(0.3129667495 0.09033489601 0.15)
(0.3183336629 0.08959842452 0.15)
(0.3126753206 0.08812476774 0.15)
(0.3180283586 0.08739028664 0.15)
(0.3294257778 0.09095879816 0.15)
(0.3290011193 0.08809207027 0.15)
(0.3286740015 0.08588696059 0.15)
(0.3079801368 0.09388215416 0.15)
(0.3076179593 0.09100691756 0.15)
(0.3073384422 0.08879528238 0.15)
(0.3813846363 0.08202497642 0.15)
(0.3808383722 0.07917897167 0.15)
(0.3804183308 0.07698981495 0.15)
(0.3936340202 0.07963278753 0.15)
(0.3988975022 0.07858252959 0.15)
(0.3930690129 0.07679042997 0.15)
(0.3983078513 0.07574517011 0.15)
(0.392634165 0.07460405304 0.15)
(0.3978542693 0.07356253993 0.15)
(0.4198083536 0.07401926683 0.15)
(0.424779828 0.07288502682 0.15)
(0.4191724302 0.07119192506 0.15)
(0.4241360313 0.07005941986 0.15)
(0.418683418 0.0690171015 0.15)
(0.4236411094 0.06788584761 0.15)
(0.4041547441 0.07744336793 0.15)
(0.4035454004 0.07461024588 0.15)
(0.4030760625 0.07243098574 0.15)
(0.4146219506 0.07517505514 0.15)
(0.4139988146 0.07234481964 0.15)
(0.4135186438 0.07016787017 0.15)
(0.6454180599 0.0108797071 0.15)
(0.6445040812 0.008129583684 0.15)
(0.643801632 0.006014031963 0.15)
(0.7671608796 -0.03254544718 0.15)
(0.7714412448 -0.03419009192 0.15)
(0.7661224998 -0.03525085658 0.15)
(0.7704018951 -0.03689513013 0.15)
(0.7653238215 -0.03733196086 0.15)
(0.7696012429 -0.03897586046 0.15)
(0.8554810631 -0.1174135099 0.15)
(0.8502194713 -0.1165593653 0.15)
(0.8559472926 -0.1145533506 0.15)
(0.8506847143 -0.113699014 0.15)
(0.8563070846 -0.1123532811 0.15)
(0.8510425241 -0.1114986602 0.15)
(0.8451946102 -0.1157407429 0.15)
(0.8456608489 -0.1128804841 0.15)
(0.8460196452 -0.1106803222 0.15)
(0.8607624493 -0.1182707966 0.15)
(0.8612395671 -0.1154123506 0.15)
(0.8616062737 -0.1132135252 0.15)
(0.8660524378 -0.1191760834 0.15)
(0.8665404346 -0.1163194502 0.15)
(0.8669150515 -0.1141219613 0.15)
(0.9299955706 -0.1300255639 0.15)
(0.9304805987 -0.1271684544 0.15)
(0.9308542292 -0.1249707736 0.15)
(0.9510979677 -0.1336825468 0.15)
(0.9516007803 -0.1308285938 0.15)
(0.95198824 -0.1286334012 0.15)
(0.1405608506 -0.01414733049 0.15)
(0.1410250979 -0.01128688687 0.15)
(0.1413829077 -0.009086532995 0.15)
(0.8652292002 -0.07211988661 0.15)
(0.8725020644 -0.07520739374 0.15)
(0.8640988384 -0.07478837035 0.15)
(0.871363977 -0.07787254952 0.15)
(0.8632294761 -0.07684113329 0.15)
(0.8704888344 -0.07992266713 0.15)
(0.0419204854 0.08397347851 0.15)
(0.0428226227 0.08121955711 0.15)
(0.04351657573 0.0791010864 0.15)
(0.5572842231 0.03837422866 0.15)
(0.5564698035 0.03559307479 0.15)
(0.5558434871 0.03345378803 0.15)
(0.08658714816 -0.00397225917 0.15)
(0.08172069585 -0.002881608041 0.15)
(0.08720919811 -0.001141822471 0.15)
(0.08236370527 -5.582759347e-05 0.15)
(0.08768779425 0.001035473957 0.15)
(0.08285822889 0.002117781607 0.15)
(0.07652493613 -0.001679457027 0.15)
(0.07719222581 0.001140656053 0.15)
(0.07770553678 0.003310011393 0.15)
(0.09401787398 -0.005566162733 0.15)
(0.09461274684 -0.002729890323 0.15)
(0.09507036503 -0.0005481367875 0.15)
(0.09849173593 -0.006485913555 0.15)
(0.09906955831 -0.003646151011 0.15)
(0.09951328462 -0.001461501692 0.15)
(0.1193135901 -0.01044969054 0.15)
(0.1198341871 -0.007598894048 0.15)
(0.1202335031 -0.005405805796 0.15)
(0.7464755388 -0.0246965166 0.15)
(0.7454575094 -0.02740990017 0.15)
(0.744674333 -0.02949711273 0.15)
(0.8978108849 -0.1244948314 0.15)
(0.8925353405 -0.1236070539 0.15)
(0.8982949265 -0.1216375299 0.15)
(0.8930114626 -0.1207485155 0.15)
(0.898666584 -0.1194394651 0.15)
(0.8933771827 -0.1185494981 0.15)
(0.8872450226 -0.1227377908 0.15)
(0.8877171895 -0.1198785841 0.15)
(0.8880799409 -0.1176790904 0.15)
(0.8926532162 -0.08397535366 0.15)
(0.8914938696 -0.0866315069 0.15)
(0.890603285 -0.08867486902 0.15)
(0.9030968812 -0.1253998481 0.15)
(0.9035819001 -0.1225428382 0.15)
(0.9039555398 -0.1203450578 0.15)
(0.9083412994 -0.1262875497 0.15)
(0.9088263183 -0.1234305397 0.15)
(0.9091999488 -0.1212328589 0.15)
(0.908641665 -0.09102117764 0.15)
(0.912876203 -0.09292161257 0.15)
(0.9074572518 -0.09366606694 0.15)
(0.9116927671 -0.0955667934 0.15)
(0.9065463945 -0.09570061849 0.15)
(0.9107818913 -0.09760154409 0.15)
(0.9723152751 -0.1371726319 0.15)
(0.9727927914 -0.1344506061 0.15)
(0.9731598102 -0.1323566581 0.15)
(0.4715270836 0.06165305025 0.15)
(0.4789503419 0.05979681467 0.15)
(0.4708233699 0.0588419407 0.15)
(0.4782368004 0.05698802298 0.15)
(0.4702812815 0.05667957385 0.15)
(0.4776878528 0.05482749769 0.15)
(0.5739756221 0.0334601795 0.15)
(0.5731543617 0.03068106633 0.15)
(0.5725231498 0.02854313765 0.15)
(0.578712053 0.0320657412 0.15)
(0.5778780791 0.02929031835 0.15)
(0.5772370948 0.02715530496 0.15)
(0.01179186107 0.02196903896 0.15)
(0.007848967632 0.02471655297 0.15)
(0.01338917644 0.02438701189 0.15)
(0.009670648678 0.02697049639 0.15)
(0.01461777136 0.02624706299 0.15)
(0.01107190531 0.02870415563 0.15)
(0.6744045011 -0.08890414178 0.15)
(0.6748321284 -0.08603789018 0.15)
(0.6751622149 -0.0838332568 0.15)
(0.6956448277 -0.09211365359 0.15)
(0.6960823567 -0.08924892328 0.15)
(0.6964193764 -0.08704533487 0.15)
(0.7627951902 -0.03086788901 0.15)
(0.7617606963 -0.03357471346 0.15)
(0.7609639346 -0.03565680905 0.15)
(0.7608599626 -0.1021344038 0.15)
(0.7613123443 -0.0992719554 0.15)
(0.761661248 -0.09707017262 0.15)
(0.8407426422 -0.1150147434 0.15)
(0.8412088717 -0.1121545841 0.15)
(0.8415676679 -0.1099544222 0.15)
(0.8334266613 -0.1138207508 0.15)
(0.8338928908 -0.1109605915 0.15)
(0.8342526735 -0.1087606215 0.15)
(0.8766408887 -0.1209819195 0.15)
(0.8713416687 -0.1200895351 0.15)
(0.8771199886 -0.1181237578 0.15)
(0.8718286791 -0.1172327099 0.15)
(0.8774886774 -0.1159252167 0.15)
(0.8722023095 -0.115035029 0.15)
(0.9482946541 -0.1089958872 0.15)
(0.9554994699 -0.1123622 0.15)
(0.9470784352 -0.1116263765 0.15)
(0.9542601574 -0.1149818093 0.15)
(0.9461434886 -0.1136499556 0.15)
(0.9533069203 -0.1169968622 0.15)
(0.1733731836 0.1019106419 0.15)
(0.1734307621 0.09901333178 0.15)
(0.1734760468 0.09678451633 0.15)
(0.1945999204 0.1019967799 0.15)
(0.194574087 0.09909887319 0.15)
(0.194553072 0.09686988209 0.15)
(0.3454374025 0.08847082533 0.15)
(0.3449711638 0.08561056648 0.15)
(0.3446123675 0.08341040456 0.15)
(0.3666635978 0.08478427893 0.15)
(0.3661400413 0.08193405831 0.15)
(0.3657367701 0.07974163832 0.15)
(0.8288317803 -0.05697414105 0.15)
(0.8277304403 -0.05965455699 0.15)
(0.8268823372 -0.06171632246 0.15)
(0.01882962689 0.07439174813 0.15)
(0.02021488872 0.07184628482 0.15)
(0.0212804546 0.06988826889 0.15)
(0.02279082884 0.0764262938 0.15)
(0.03018777967 0.07972463286 0.15)
(0.02405839013 0.07382024514 0.15)
(0.03130408251 0.07705026603 0.15)
(0.02503346025 0.07181559019 0.15)
(0.03216280709 0.07499313523 0.15)
(0.03434600202 0.08138658336 0.15)
(0.03536628437 0.0786742249 0.15)
(0.03615117664 0.07658768935 0.15)
(0.6621776147 0.005293085014 0.15)
(0.6612499915 0.002547441303 0.15)
(0.6605368203 0.0004353951239 0.15)
(0.6665584186 0.003800079754 0.15)
(0.673949311 0.00128109999 0.15)
(0.6656249596 0.001056483937 0.15)
(0.673013916 -0.001461713623 0.15)
(0.6649069207 -0.001053905449 0.15)
(0.672294909 -0.003571711907 0.15)
(0.07128106132 -0.0004211206214 0.15)
(0.06612367161 0.0009131506109 0.15)
(0.07198449474 0.002390215787 0.15)
(0.06686986263 0.003713389401 0.15)
(0.07252559666 0.004552774596 0.15)
(0.06744392198 0.00586746717 0.15)
(0.05671161392 0.003521738796 0.15)
(0.04921292114 0.005763190807 0.15)
(0.05751439695 0.006306282215 0.15)
(0.05007208575 0.008530853225 0.15)
(0.05813192734 0.008448292306 0.15)
(0.0507331036 0.01065989025 0.15)
(0.0611856376 0.002284414889 0.15)
(0.06196082164 0.005076741324 0.15)
(0.06255711436 0.007224739062 0.15)
(0.5476500863 -0.0706580131 0.15)
(0.5480559093 -0.06778863374 0.15)
(0.5483681652 -0.0655813417 0.15)
(0.5890338539 -0.07650545659 0.15)
(0.5894386903 -0.07363588528 0.15)
(0.5897499505 -0.07142850085 0.15)
(0.5677415725 -0.0734987121 0.15)
(0.5681463997 -0.07062924036 0.15)
(0.5684586556 -0.06842194832 0.15)
(0.65236938 -0.08564478979 0.15)
(0.6527890784 -0.08277740082 0.15)
(0.6531122318 -0.08057172245 0.15)
(0.6103258509 -0.07950444163 0.15)
(0.6107316738 -0.07663506227 0.15)
(0.611042934 -0.07442767785 0.15)
(0.6315713725 -0.08259301617 0.15)
(0.6319940488 -0.07972600394 0.15)
(0.6323181887 -0.07752051752 0.15)
(0.716893465 -0.09535265932 0.15)
(0.7173290118 -0.09248764467 0.15)
(0.7176640492 -0.09028377192 0.15)
(0.7381438853 -0.09857244759 0.15)
(0.7385794414 -0.09570733336 0.15)
(0.7389134831 -0.09350336824 0.15)
(0.8086707411 -0.04876736767 0.15)
(0.807588752 -0.05145570522 0.15)
(0.806756137 -0.05352372833 0.15)
(0.8819451909 -0.1218628243 0.15)
(0.88241934 -0.119003902 0.15)
(0.8827840736 -0.1168046927 0.15)
(0.8882798312 -0.0820560105 0.15)
(0.8871166218 -0.08471049977 0.15)
(0.886222156 -0.08675239705 0.15)
(0.9132034676 -0.1271061415 0.15)
(0.913698379 -0.1242507524 0.15)
(0.9140789334 -0.1220542161 0.15)
(0.9170677925 -0.09478702994 0.15)
(0.9158824297 -0.09743132899 0.15)
(0.9149706045 -0.09946548943 0.15)
(0.1508881331 0.1011757788 0.15)
(0.1510242833 0.09828102075 0.15)
(0.1511290086 0.09605422251 0.15)
(0.1305098491 0.09985377123 0.15)
(0.1307399412 0.09696485937 0.15)
(0.1309164068 0.09474275348 0.15)
(0.2162078508 0.1014936813 0.15)
(0.2161048479 0.09859751139 0.15)
(0.2160266978 0.09636970376 0.15)
(0.2377858284 0.1004620898 0.15)
(0.2376168306 0.09756903011 0.15)
(0.2374866812 0.09534363677 0.15)
(0.2427548121 0.1001561221 0.15)
(0.2425738286 0.09726377276 0.15)
(0.2424336943 0.09503900455 0.15)
(0.3240727254 0.09171477252 0.15)
(0.3236649203 0.0888456775 0.15)
(0.3233516779 0.08663857742 0.15)
(0.3026779978 0.09454824046 0.15)
(0.3023257499 0.09167178129 0.15)
(0.3020541801 0.08945920789 0.15)
(0.2977348192 0.09514315987 0.15)
(0.2973934966 0.09226538576 0.15)
(0.2971308605 0.09005168217 0.15)
(0.388763072 0.08058405793 0.15)
(0.3882079388 0.07773988037 0.15)
(0.387779987 0.07555206016 0.15)
(0.429235955 0.07186829971 0.15)
(0.428589208 0.06904336819 0.15)
(0.4280923224 0.06687027943 0.15)
(0.4093863837 0.07630969502 0.15)
(0.4087711303 0.07347782429 0.15)
(0.4082978556 0.07129943155 0.15)
(0.5885458156 0.02903177465 0.15)
(0.5929477738 0.02765852722 0.15)
(0.5876845066 0.02626481334 0.15)
(0.5920854968 0.02489195701 0.15)
(0.5870220321 0.02413631319 0.15)
(0.5914210585 0.02276394034 0.15)
(0.5837085413 0.03054081949 0.15)
(0.5828560091 0.02777103527 0.15)
(0.5822003661 0.02564039483 0.15)
(0.687660355 -0.003444704265 0.15)
(0.6950433874 -0.00603757389 0.15)
(0.68670158 -0.006179724589 0.15)
(0.6940826959 -0.008771602908 0.15)
(0.6859650612 -0.008283628976 0.15)
(0.6933442382 -0.01087475496 0.15)
(0.6996545249 -0.007656697864 0.15)
(0.6986889545 -0.01038918958 0.15)
(0.6979465916 -0.01249113568 0.15)
(0.001163575194 0.03101150361 0.15)
(-0.003709677199 0.03968942091 0.15)
(0.003461029666 0.03277790772 0.15)
(-0.000947893884 0.04056735839 0.15)
(0.005228285661 0.03413655033 0.15)
(0.001176548966 0.04124270009 0.15)
(-0.004704173274 0.0460294925 0.15)
(-0.001806240779 0.0460446368 0.15)
(0.0004229349498 0.0460562866 0.15)
(-0.003624850283 0.05257349462 0.15)
(-0.0008577408476 0.0517124832 0.15)
(0.001270803892 0.05105017532 0.15)
(0.1728514024 -0.01916484867 0.15)
(0.167810926 -0.01842793314 0.15)
(0.1732720873 -0.01629765166 0.15)
(0.1682345888 -0.01556111286 0.15)
(0.1735962272 -0.01409216525 0.15)
(0.168560711 -0.01335591079 0.15)
(0.1781360579 -0.01994360159 0.15)
(0.1785557563 -0.01707621263 0.15)
(0.1788798962 -0.01487072622 0.15)
(0.2154385438 -0.02519384219 0.15)
(0.2101020338 -0.02447605944 0.15)
(0.2158255312 -0.02232181136 0.15)
(0.2104959635 -0.02160497402 0.15)
(0.2161229067 -0.02011253612 0.15)
(0.2107992856 -0.01939655181 0.15)
(0.7302120267 -0.01868859966 0.15)
(0.729216345 -0.02141007744 0.15)
(0.7284496706 -0.02350344585 0.15)
(0.8567078829 -0.06852487082 0.15)
(0.860999177 -0.07033315506 0.15)
(0.8555843064 -0.0711959927 0.15)
(0.8598726964 -0.07300310363 0.15)
(0.8547197841 -0.07325071115 0.15)
(0.8590052425 -0.07505694749 0.15)
(0.5205974042 0.04880966609 0.15)
(0.5257077107 0.04742904642 0.15)
(0.5198397572 0.04601259922 0.15)
(0.5249392863 0.04463488766 0.15)
(0.5192574816 0.04386089064 0.15)
(0.5243472012 0.04248569609 0.15)
(0.5306006076 0.04606488249 0.15)
(0.5298135878 0.04327596408 0.15)
(0.5292077936 0.0411305552 0.15)
(0.258105052 -0.03086533911 0.15)
(0.2527736274 -0.03016851581 0.15)
(0.2584811233 -0.02799189376 0.15)
(0.253149708 -0.02729497089 0.15)
(0.2587705607 -0.02578158072 0.15)
(0.2534381497 -0.02508456547 0.15)
(0.2207753587 -0.02590833905 0.15)
(0.2211583724 -0.02303583911 0.15)
(0.2214527699 -0.02082618714 0.15)
(0.3436283056 -0.0420846792 0.15)
(0.3383003578 -0.04138285572 0.15)
(0.3440162794 -0.03921284033 0.15)
(0.3386804028 -0.03850987948 0.15)
(0.3443146506 -0.03700365747 0.15)
(0.3389718224 -0.03629985079 0.15)
(0.3063485987 -0.0371950854 0.15)
(0.301305858 -0.03653669651 0.15)
(0.3067246701 -0.03432164006 0.15)
(0.3016809428 -0.0336630592 0.15)
(0.307013121 -0.03211113506 0.15)
(0.3019693938 -0.0314525542 0.15)
(0.2634352406 -0.03156465891 0.15)
(0.2638122984 -0.02869140552 0.15)
(0.2641027316 -0.02648118486 0.15)
(0.2968713985 -0.03595754249 0.15)
(0.297244492 -0.03308372041 0.15)
(0.2975309514 -0.03087303065 0.15)
(0.3489400477 -0.04282045071 0.15)
(0.3493359596 -0.03994964964 0.15)
(0.3496402775 -0.0377413198 0.15)
(0.3862013496 -0.04801665542 0.15)
(0.3808786288 -0.0472693202 0.15)
(0.3866042039 -0.04514679977 0.15)
(0.3812804873 -0.04439937216 0.15)
(0.3869134726 -0.04293923058 0.15)
(0.3815897653 -0.04219170339 0.15)
(0.3915240612 -0.04876409022 0.15)
(0.3919279112 -0.04589432695 0.15)
(0.3922371799 -0.04368675776 0.15)
(0.9791129693 -0.1242741744 0.15)
(0.9852820431 -0.1288020679 0.15)
(0.9780128512 -0.1265842193 0.15)
(0.9845332548 -0.1303779306 0.15)
(0.9771670696 -0.1283611812 0.15)
(0.9839567979 -0.1315901589 0.15)
(0.08989170793 0.09504852475 0.15)
(0.09769297125 0.09625868104 0.15)
(0.09035286322 0.09218748535 0.15)
(0.09810849266 0.09339072795 0.15)
(0.09070755194 0.0899866051 0.15)
(0.0984282428 0.09118455286 0.15)
(0.4837489262 0.0585635235 0.15)
(0.4888531207 0.05723609598 0.15)
(0.4830255845 0.0557573484 0.15)
(0.4881248742 0.05443117937 0.15)
(0.4824687819 0.05359875705 0.15)
(0.4875641535 0.05227365458 0.15)
(0.02325594879 0.0155855302 0.15)
(0.01897821436 0.01776294034 0.15)
(0.02452631452 0.0181902068 0.15)
(0.02036301651 0.02030859232 0.15)
(0.02550359481 0.02019378942 0.15)
(0.02142828596 0.02226685224 0.15)
(0.7092526329 -0.01108733991 0.15)
(0.7136032876 -0.01265633482 0.15)
(0.7082715383 -0.01381396233 0.15)
(0.712619252 -0.01538218221 0.15)
(0.7075155475 -0.0159112495 0.15)
(0.7118623024 -0.01747897871 0.15)
(0.7787837875 -0.03701369768 0.15)
(0.7777434597 -0.03971845432 0.15)
(0.7769428259 -0.0417989855 0.15)
(0.7703403413 -0.1036299437 0.15)
(0.7653111329 -0.1028365275 0.15)
(0.7707917366 -0.1007673034 0.15)
(0.7657635147 -0.09997407915 0.15)
(0.7711396537 -0.09856532863 0.15)
(0.7661104269 -0.09777211161 0.15)
(0.7832917888 -0.03874858852 0.15)
(0.7822505022 -0.04145285449 0.15)
(0.7814489005 -0.04353299456 0.15)
(0.7756110742 -0.1044613355 0.15)
(0.7760624695 -0.1015986952 0.15)
(0.7764083952 -0.09939653567 0.15)
(0.7915175546 -0.1069568268 0.15)
(0.7862225918 -0.1061268023 0.15)
(0.7919748873 -0.104095139 0.15)
(0.7866730005 -0.10326397 0.15)
(0.7923257639 -0.1018937402 0.15)
(0.7870189263 -0.1010618105 0.15)
(0.9398892016 -0.10515874 0.15)
(0.9441073328 -0.1070844674 0.15)
(0.9386855022 -0.1077950107 0.15)
(0.9429017158 -0.1097197567 0.15)
(0.9377601987 -0.1098228991 0.15)
(0.9419734806 -0.1117467706 0.15)
(0.9884699119 -0.132512246 0.15)
(0.9879638635 -0.1334960019 0.15)
(0.2649144543 0.09850946316 0.15)
(0.2703032526 0.09805216375 0.15)
(0.2646726208 0.09562155441 0.15)
(0.2700464741 0.09516554119 0.15)
(0.2644866001 0.09340013975 0.15)
(0.2698484954 0.09294513558 0.15)
(0.2500482216 0.09969304064 0.15)
(0.2498422896 0.09680240346 0.15)
(0.249684186 0.09457880031 0.15)
(0.2545121356 0.09934475279 0.15)
(0.2542892393 0.09645528787 0.15)
(0.2541181729 0.09423268658 0.15)
(0.2756450611 0.09756467639 0.15)
(0.2753663859 0.09468018587 0.15)
(0.2751514799 0.09246135081 0.15)
(0.2904943282 0.09598175845 0.15)
(0.2901659222 0.09310248462 0.15)
(0.2899132249 0.09088765804 0.15)
(0.2860729097 0.09648498295 0.15)
(0.2857584162 0.09360411701 0.15)
(0.2855166534 0.09138807505 0.15)
(0.626614773 0.01699680787 0.15)
(0.631282377 0.01549918687 0.15)
(0.6257300655 0.01423744071 0.15)
(0.6303956966 0.01274020362 0.15)
(0.6250490511 0.01211477833 0.15)
(0.6297137141 0.01061793234 0.15)
(0.02765873864 0.01353390475 0.15)
(0.02882173966 0.01618831292 0.15)
(0.02971630506 0.01823020097 0.15)
(0.04450263239 0.007277024575 0.15)
(0.03966117081 0.008876241888 0.15)
(0.0454026771 0.01003175498 0.15)
(0.0406193391 0.01161121807 0.15)
(0.0460949925 0.01215065724 0.15)
(0.04135636044 0.01371512605 0.15)
(0.1941120559 -0.02224187177 0.15)
(0.1887866343 -0.02149117265 0.15)
(0.1945139144 -0.01937192373 0.15)
(0.1891954351 -0.01862217002 0.15)
(0.1948241788 -0.01716444692 0.15)
(0.189509664 -0.0164152619 0.15)
(0.1994405313 -0.02298130484 0.15)
(0.1998404076 -0.02011107246 0.15)
(0.2001486991 -0.01790321174 0.15)
(0.7209800064 -0.01531725218 0.15)
(0.7199921035 -0.01804148538 0.15)
(0.7192312582 -0.02013697238 0.15)
(0.5033360989 0.05346967958 0.15)
(0.5107598739 0.05146747201 0.15)
(0.5025941064 0.05066814739 0.15)
(0.5100061359 0.04866923902 0.15)
(0.5020245719 0.04851304721 0.15)
(0.5094268013 0.04651675543 0.15)
(0.2420915105 -0.02876605145 0.15)
(0.2367575924 -0.02804198127 0.15)
(0.2424755199 -0.0258936439 0.15)
(0.2371455755 -0.02517004283 0.15)
(0.2427719089 -0.0236841767 0.15)
(0.2374429418 -0.02296086716 0.15)
(0.2314333637 -0.02732172253 0.15)
(0.2318183596 -0.02444950694 0.15)
(0.2321147486 -0.02224003974 0.15)
(0.3276410224 -0.03998381065 0.15)
(0.3223078096 -0.03928461199 0.15)
(0.3280180895 -0.03711045769 0.15)
(0.3226848767 -0.03641125903 0.15)
(0.3283075269 -0.03490014465 0.15)
(0.3229743141 -0.03420094599 0.15)
(0.3169765791 -0.03858569767 0.15)
(0.3173526504 -0.03571225233 0.15)
(0.3176420878 -0.03350193929 0.15)
(0.2794160003 -0.0336925403 0.15)
(0.2740813062 -0.0329768342 0.15)
(0.2797970318 -0.03081975603 0.15)
(0.2744653156 -0.03010442665 0.15)
(0.2800904428 -0.0286099121 0.15)
(0.2747607089 -0.02789486706 0.15)
(0.2847161417 -0.03439098043 0.15)
(0.2850912173 -0.03151744269 0.15)
(0.2853796682 -0.0293069377 0.15)
(0.3649085376 -0.04503727895 0.15)
(0.3595853548 -0.04429492234 0.15)
(0.3653094096 -0.04216713895 0.15)
(0.3599842447 -0.041424498 0.15)
(0.3656166961 -0.03995928542 0.15)
(0.3602915312 -0.03921664447 0.15)
(0.3702326237 -0.04578072367 0.15)
(0.3706334865 -0.04291068324 0.15)
(0.3709417687 -0.04070292209 0.15)
(0.4127603901 -0.05175690598 0.15)
(0.4074905627 -0.05101317271 0.15)
(0.4131662131 -0.04888752662 0.15)
(0.4078953992 -0.0481436014 0.15)
(0.4134774732 -0.0466801422 0.15)
(0.4082066594 -0.04593621698 0.15)
(0.402168193 -0.05026205374 0.15)
(0.4025720337 -0.04739239004 0.15)
(0.4028832939 -0.04518500562 0.15)
(0.8179948873 -0.1112962914 0.15)
(0.8126955063 -0.1104272921 0.15)
(0.818463099 -0.1084364164 0.15)
(0.8131647044 -0.1075676091 0.15)
(0.8188238682 -0.1062366384 0.15)
(0.8135264786 -0.1053678239 0.15)
(0.8285434958 -0.1130228074 0.15)
(0.829010721 -0.1101627405 0.15)
(0.8293705037 -0.1079627706 0.15)
(0.8073961991 -0.1095574962 0.15)
(0.807866393 -0.1066979056 0.15)
(0.8082281579 -0.10449822 0.15)
(0.7968100416 -0.1078135366 0.15)
(0.7972762803 -0.1049532777 0.15)
(0.7976340808 -0.1027530234 0.15)
(0.9242899254 -0.09804246844 0.15)
(0.9285151006 -0.0999680459 0.15)
(0.9230939516 -0.1006820671 0.15)
(0.927313328 -0.1026051984 0.15)
(0.9221744284 -0.1027126008 0.15)
(0.9263889648 -0.1046337766 0.15)
(0.0677477889 0.09094052056 0.15)
(0.07555373143 0.09253990917 0.15)
(0.06836801759 0.08810971447 0.15)
(0.07610576029 0.08969494315 0.15)
(0.06884518125 0.08593211897 0.15)
(0.07653041138 0.08750665328 0.15)
(0.08014571998 0.09338258247 0.15)
(0.08066055295 0.09053072331 0.15)
(0.08105657546 0.08833695486 0.15)
(0.4988820638 0.05462801907 0.15)
(0.4981498899 0.05182406944 0.15)
(0.4975872054 0.04966702813 0.15)
(0.6050429093 0.02388528229 0.15)
(0.6100041624 0.02232697299 0.15)
(0.604175746 0.02112016973 0.15)
(0.6091272267 0.01956477572 0.15)
(0.6035083853 0.01899312722 0.15)
(0.6084530438 0.01743997307 0.15)
(0.6362328005 0.01391074922 0.15)
(0.6353383205 0.01115429735 0.15)
(0.6346494974 0.009034066782 0.15)
(0.6148209711 0.02078136249 0.15)
(0.6139372223 0.01802150465 0.15)
(0.6132571851 0.01589855075 0.15)
(0.6832865293 -0.00190896091 0.15)
(0.6823375083 -0.004647095675 0.15)
(0.6816068021 -0.006753296887 0.15)
(0.7045210687 -0.009380665905 0.15)
(0.7035467733 -0.0121097771 0.15)
(0.7027966238 -0.01420905243 0.15)
(0.1633598214 -0.01776839759 0.15)
(0.1637914131 -0.01490271469 0.15)
(0.1641244776 -0.01269845803 0.15)
(0.1834538494 -0.02072241605 0.15)
(0.1838695834 -0.0178544584 0.15)
(0.1841897681 -0.01564830373 0.15)
(0.2047664056 -0.02372712492 0.15)
(0.2051672776 -0.02085698492 0.15)
(0.2054755599 -0.01864922377 0.15)
(0.7255380641 -0.01697808073 0.15)
(0.724544305 -0.01970048509 0.15)
(0.7237805646 -0.02179470319 0.15)
(0.8494303111 -0.06546645319 0.15)
(0.8483125241 -0.06814012083 0.15)
(0.847451837 -0.07019680198 0.15)
(0.5155184528 0.05018185295 0.15)
(0.514762751 0.04738410346 0.15)
(0.5141814434 0.04523200377 0.15)
(0.5350388089 0.04479000744 0.15)
(0.5342410117 0.04200399713 0.15)
(0.5336273995 0.0398609205 0.15)
(0.2474361084 -0.02947243264 0.15)
(0.2478141712 -0.02659917207 0.15)
(0.2481055908 -0.02438914337 0.15)
(0.2261078047 -0.02661580221 0.15)
(0.2264898319 -0.02374311032 0.15)
(0.2267832429 -0.02153326639 0.15)
(0.3329721791 -0.04068352155 0.15)
(0.3333492461 -0.03781016859 0.15)
(0.3336396793 -0.03559994793 0.15)
(0.3116443436 -0.03788679054 0.15)
(0.3120204149 -0.0350133452 0.15)
(0.3123098523 -0.03280303215 0.15)
(0.2687614556 -0.03226350959 0.15)
(0.2691424963 -0.02939062574 0.15)
(0.2694349024 -0.027180789 0.15)
(0.2896247113 -0.03502336271 0.15)
(0.2899958225 -0.03214925629 0.15)
(0.2902812955 -0.02993837457 0.15)
(0.3542617102 -0.04355754435 0.15)
(0.3546596043 -0.04068702763 0.15)
(0.3549659043 -0.03847898214 0.15)
(0.375555714 -0.046524076 0.15)
(0.3759575725 -0.04365412795 0.15)
(0.3762658548 -0.0414463668 0.15)
(0.4249283596 -0.0534787064 0.15)
(0.4176544828 -0.05244790148 0.15)
(0.4253351783 -0.05060941943 0.15)
(0.418060315 -0.04957842255 0.15)
(0.4256474342 -0.04840212739 0.15)
(0.4183725616 -0.04737123008 0.15)
(0.4293721862 -0.05410844211 0.15)
(0.4297790048 -0.05123915514 0.15)
(0.4300912607 -0.0490318631 0.15)
(0.396846782 -0.04951142544 0.15)
(0.397250632 -0.04664166217 0.15)
(0.3975608964 -0.04443418536 0.15)
(0.5142429024 -0.06594202447 0.15)
(0.5089243862 -0.06519266905 0.15)
(0.5146477388 -0.06307245316 0.15)
(0.509325249 -0.06232262862 0.15)
(0.5149580033 -0.06086497635 0.15)
(0.509634527 -0.06011495986 0.15)
(0.5036059973 -0.06445276582 0.15)
(0.5040038914 -0.06158224909 0.15)
(0.5043111872 -0.05937429598 0.15)
(0.4769725445 -0.06075683021 0.15)
(0.4716479339 -0.06000821492 0.15)
(0.4773753988 -0.05788697455 0.15)
(0.4720517839 -0.05713845165 0.15)
(0.4776856633 -0.05567949775 0.15)
(0.4723620483 -0.05493097484 0.15)
(0.4823001239 -0.0615059218 0.15)
(0.4827009959 -0.0586357818 0.15)
(0.4830092782 -0.05642802065 0.15)
(0.4344137455 -0.05482286148 0.15)
(0.4348185819 -0.05195329017 0.15)
(0.4351298421 -0.04974590575 0.15)
(0.4396986935 -0.05556598907 0.15)
(0.4400995655 -0.05269584908 0.15)
(0.440406852 -0.05048799554 0.15)
(0.4663253147 -0.0592597844 0.15)
(0.4667281597 -0.05639002832 0.15)
(0.4670384334 -0.05418245194 0.15)
(0.461005655 -0.05851192975 0.15)
(0.461406527 -0.05564178975 0.15)
(0.4617148093 -0.0534340286 0.15)
(0.5195663787 -0.06669204096 0.15)
(0.5199702194 -0.06382237726 0.15)
(0.5202814796 -0.06161499284 0.15)
(0.5248888593 -0.06744196507 0.15)
(0.5252936958 -0.06457239375 0.15)
(0.525604956 -0.06236500933 0.15)
(0.975094218 -0.1218989444 0.15)
(0.9738921721 -0.124419975 0.15)
(0.9729670604 -0.126359202 0.15)
(0.06315724814 0.08987315257 0.15)
(0.06382127837 0.0870522422 0.15)
(0.06433209951 0.08488237028 0.15)
(0.08507408433 0.09424406013 0.15)
(0.08556124954 0.09138733626 0.15)
(0.08593594408 0.0891899226 0.15)
(0.1022984938 0.09689110485 0.15)
(0.1026775923 0.09401809506 0.15)
(0.1029691604 0.09180800683 0.15)
(0.1073351789 0.09752048271 0.15)
(0.1076798294 0.09464313684 0.15)
(0.1079454708 0.09242962923 0.15)
(0.4366572524 0.07017494186 0.15)
(0.4414967125 0.06901418459 0.15)
(0.4359957728 0.06735358671 0.15)
(0.4408214591 0.06619591512 0.15)
(0.4354860906 0.06518329211 0.15)
(0.4403019583 0.06402803796 0.15)
(0.4939651608 0.05590663493 0.15)
(0.4932359279 0.05310191028 0.15)
(0.4926752164 0.05094448506 0.15)
(0.4466351751 0.06777466716 0.15)
(0.4459559943 0.06495736467 0.15)
(0.4454335524 0.06279026252 0.15)
(0.4518168768 0.06652491132 0.15)
(0.4511357322 0.06370809231 0.15)
(0.4506113173 0.06154137408 0.15)
(-0.001142527143 0.05796763414 0.15)
(0.001330678462 0.05645718761 0.15)
(0.003233139799 0.05529526977 0.15)
(0.6785549904 -0.0002886084065 0.15)
(0.6776166821 -0.003030348286 0.15)
(0.6768947527 -0.005139372409 0.15)
(0.7879307114 -0.04053368923 0.15)
(0.7868826303 -0.04323541663 0.15)
(0.7860761885 -0.0453136012 0.15)
(0.7809177363 -0.105295157 0.15)
(0.7813671494 -0.1024322323 0.15)
(0.7817130843 -0.1002299733 0.15)
(0.9326871001 -0.1018714158 0.15)
(0.9314843779 -0.104507978 0.15)
(0.9305590559 -0.1065360656 0.15)
(0.2595942202 0.09894804824 0.15)
(0.2593613575 0.09605940759 0.15)
(0.2591833118 0.09383735342 0.15)
(0.2809927855 0.09701105967 0.15)
(0.280694205 0.09412851643 0.15)
(0.2804653682 0.09191107432 0.15)
(0.03520554165 0.01050232902 0.15)
(0.03623869514 0.01320986033 0.15)
(0.03703341201 0.01529264778 0.15)
(0.84058292 -0.06180302051 0.15)
(0.8451607341 -0.06368388527 0.15)
(0.8394796162 -0.06448295296 0.15)
(0.8440506635 -0.06636098043 0.15)
(0.8386315316 -0.06654451929 0.15)
(0.8431977573 -0.06842039211 0.15)
(0.8361347358 -0.05997545956 0.15)
(0.8350333865 -0.06265597507 0.15)
(0.8341852835 -0.06471774054 0.15)
(0.4982822233 -0.06371678184 0.15)
(0.4929564578 -0.06298061309 0.15)
(0.4986791217 -0.06084617273 0.15)
(0.4933533655 -0.06010990441 0.15)
(0.4989844352 -0.05863793528 0.15)
(0.4936586698 -0.05790176653 0.15)
(0.4876297059 -0.06224425239 0.15)
(0.4880276 -0.05937373566 0.15)
(0.4883329136 -0.05716549821 0.15)
(0.4503572498 -0.05703837583 0.15)
(0.4450304517 -0.05630251299 0.15)
(0.4507541482 -0.05416776672 0.15)
(0.4454273501 -0.05343190388 0.15)
(0.4510594618 -0.05195952927 0.15)
(0.4457326637 -0.05122366643 0.15)
(0.45568107 -0.05777386194 0.15)
(0.4560789642 -0.05490334522 0.15)
(0.4563852734 -0.05269520015 0.15)
(0.5354801254 -0.06893602791 0.15)
(0.5302113399 -0.06819188917 0.15)
(0.5358859483 -0.06606664855 0.15)
(0.5306161764 -0.06532231785 0.15)
(0.5361972085 -0.06385926413 0.15)
(0.5309274273 -0.063115033 0.15)
(0.5403750659 -0.06962870895 0.15)
(0.5407808981 -0.06675923002 0.15)
(0.5410931448 -0.06455203756 0.15)
(0.8232942869 -0.1121650915 0.15)
(0.8237625078 -0.109305117 0.15)
(0.8241232862 -0.1071052394 0.15)
(0.8020991698 -0.1086847983 0.15)
(0.8025693544 -0.1058253073 0.15)
(0.8029311193 -0.1036256217 0.15)
(0.9709595445 -0.1197772894 0.15)
(0.9697260461 -0.1223667067 0.15)
(0.9687769622 -0.1243586444 0.15)
(0.1125835445 0.0981149552 0.15)
(0.1178192645 0.09868137599 0.15)
(0.1129038265 0.09523474838 0.15)
(0.1181192625 0.09579903398 0.15)
(0.1131501981 0.09301921234 0.15)
(0.1183494161 0.09358188935 0.15)
(0.12276205 0.0991862965 0.15)
(0.1230346739 0.09630117154 0.15)
(0.1232445342 0.09408179215 0.15)
(0.4570083878 0.06527263846 0.15)
(0.4621476553 0.06399849862 0.15)
(0.4563193883 0.06245775341 0.15)
(0.4614488371 0.06118603099 0.15)
(0.4557890823 0.06029248563 0.15)
(0.4609116626 0.05902250521 0.15)
(0.4670817708 0.06276468417 0.15)
(0.4663790252 0.05995318352 0.15)
(0.4658389097 0.05779043275 0.15)
(0.6003539917 0.02534802318 0.15)
(0.5994907282 0.02258164493 0.15)
(0.5988262992 0.02045372783 0.15)
(0.6410272649 0.0123407989 0.15)
(0.6401201085 0.009588435633 0.15)
(0.639422527 0.00747122712 0.15)
(0.6192145232 0.01937163564 0.15)
(0.6183288107 0.01661226129 0.15)
(0.6176477963 0.01448959891 0.15)
)
// ************************************************************************* //
| |
9c718bf2917c0ceb708180a56c4ad29f0f5441c1 | b43c50bc5a138758ecf6c49ab2e6a4b79ff601bd | /1044_seminar6.cpp | d363e47ae13d63205897f607fef943f370719d5a | [] | no_license | zamfiroiu/Structuri2018 | c6504a7dbc50ed578e49baba617b2bb7a9d66445 | d57eda651a8ea65de50248393d01a7c91c376080 | refs/heads/master | 2021-04-03T07:57:20.353951 | 2019-05-22T04:55:35 | 2019-05-22T04:55:35 | 124,534,172 | 9 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,758 | cpp | 1044_seminar6.cpp | #include<iostream>
struct Curs {
int id;
char* denumire;
int prezenti;
};
struct nod {
Curs info;
nod* next;
};
struct HashTable {
nod** vector;
int dim;
};
Curs creareCurs(char* denumire, int prezenti, int id) {
Curs c;
c.denumire = (char*)malloc(sizeof(char)*(strlen(denumire) + 1));
strcpy_s(c.denumire, strlen(denumire) + 1, denumire);
c.prezenti = prezenti;
c.id = id;
return c;
}
nod* inserareInceput(nod* cap, Curs curs) {
nod* nou = (nod*)malloc(sizeof(nod));
nou->info = creareCurs(curs.denumire, curs.prezenti,curs.id);
nou->next = cap;
return nou;
}
int hashCode(int id, HashTable tabela) {
return id% tabela.dim;
}
int inserareTabelaDispersie(HashTable tabela, Curs curs) {
if (tabela.vector) {
int pozitie = hashCode(curs.id, tabela);
if (tabela.vector[pozitie]) {
//avem coliziune
tabela.vector[pozitie] = inserareInceput(tabela.vector[pozitie], curs);
}
else {
tabela.vector[pozitie] = inserareInceput(tabela.vector[pozitie], curs);
}
return pozitie;
}
else {
return -1;
}
}
HashTable initializareTabelaDispersie(int dim) {
HashTable tabela;
tabela.dim = dim;
tabela.vector = (nod**)malloc(sizeof(nod*)*dim);
for (int i = 0; i < dim; i++) {
tabela.vector[i] = NULL;
}
return tabela;
}
void afisareCurs(Curs c) {
printf("%d.Cursul %s are %d prezenti.\n", c.id, c.denumire, c.prezenti);
}
void afisareTabela(HashTable tabela) {
for (int i = 0; i < tabela.dim; i++) {
nod* p = tabela.vector[i];
while (p) {
afisareCurs(p->info);
p = p->next;
}
printf("\n");
}
}
Curs cautareCursInLista(nod* cap, int id) {
while (cap && cap->info.id!= id) {
cap = cap->next;
}
if (cap)
return cap->info;
else {
Curs c;
c.id = -1;
c.denumire = NULL;
return c;
}
}
Curs cautareCursDupaID(HashTable tabela, int id) {
if (tabela.vector) {
int pozitie = hashCode(id, tabela);
return cautareCursInLista(tabela.vector[pozitie], id);
}
else {
Curs c;
c.id = -1;
c.denumire = NULL;
return c;
}
}
void stergere(HashTable *tabela) {
for (int i = 0; i < tabela->dim; i++) {
nod* p = tabela->vector[i];
while (p) {
free(p->info.denumire);
nod*temp = p;
p = p->next;
free(temp);
}
}
free(tabela->vector);
tabela->vector = NULL;
tabela->dim = 0;
}
void main() {
HashTable tabela = initializareTabelaDispersie(5);
inserareTabelaDispersie(tabela, creareCurs("SDD", 35, 1));
inserareTabelaDispersie(tabela, creareCurs("PAG", 15, 3));
inserareTabelaDispersie(tabela, creareCurs("Java", 20, 6));
afisareTabela(tabela);
printf("Curs:");
afisareCurs(cautareCursDupaID(tabela,3));
stergere(&tabela);
} |
0481395d3f193a13eda9bbdd22db460dc803090e | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_repos_log_2488.cpp | 5ab2299593a4f870b3bff25b78dc76a9209ef8e2 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27 | cpp | Kitware_CMake_repos_log_2488.cpp | fprintf(file, "EXPORTS \n") |
7a34508e26d08d6817b33ef35f11be495ff46031 | dab91895dd35cabec33e0711c3876e712546a5cf | /other/force_cast.cpp | de3bb6b43b0494a645fd7fadc18ebf65d3931dab | [] | no_license | mmix574/CSE123SWP | 7137091df80a18c0ce96d97d6456c6a9e3fdad09 | b0014acfca8d4dbc528f8cab584cc5766ebb6863 | refs/heads/master | 2021-08-31T06:35:23.481123 | 2017-12-20T15:23:57 | 2017-12-20T15:23:57 | 114,137,053 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 247 | cpp | force_cast.cpp | #include <stdio.h>
#include <stdint.h>
void test1(){
int a = 0;
uint16_t b = a;
printf("%u\n", b);
int c = (int)b;
printf("%d\n", c);
}
void test2(){
char a = 12;
char b = a%10;
printf("%d\n", b);
}
int main(void){
test2();
return 0;
} |
c14c31b9b2e8bbb3093a2309c01813ca2c4e6749 | 2b090d51eb8b0603a02a82f03c7f8bd1a3b90893 | /CCC/ccc14j1.cpp | 9e37fad58384f0ebfe0d8b06d1acd79212c3ffe6 | [] | no_license | AnishMahto/Competitive-Programming-Code-and-Solutions | eecffc3a2c72cf557c48a25fa133a3a2b645cd69 | 20a7bed2cdda0efdb48b915fc4a68d6edc446f69 | refs/heads/master | 2020-04-28T14:13:25.614349 | 2019-03-13T03:07:50 | 2019-03-13T03:07:50 | 175,331,066 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 514 | cpp | ccc14j1.cpp | #include <iostream>
using namespace std;
int main() {
// your code goes here
int angle1;
int angle2;
int angle3;
cin >> angle1;
cin >> angle2;
cin >> angle3;
if (angle1 + angle2 + angle3 == 180) {
if (angle1 == angle2 && angle2 == angle3 && angle3 == angle1) {
cout << "Equilateral" << endl;
} else if (angle1 != angle2 && angle2 != angle3 && angle3 != angle1) {
cout << "Scalene" << endl;
} else {
cout << "Isosceles" << endl;
}
} else {
cout << "Error" << endl;
}
return 0;
}
|
bb5c4e29af9ad9f99f7f6b440d4792e826d8869b | 6ef43bccb883da1f650934473be4b9a375542f5e | /sort.cpp | 9bb57f2ba1d520acc66ce931d06fa81a9f5eeafd | [] | no_license | GeertBosch/snippets | 5f633c9a889cd4cb208cc1815f61f73d87c6251e | d2cea82ed831b86504438a53435d99f25a58eb72 | refs/heads/master | 2023-05-25T10:12:03.306200 | 2023-05-03T01:31:28 | 2023-05-03T01:31:28 | 114,699,237 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 908 | cpp | sort.cpp | #include <algorithm>
#include <cstdint>
#include <iostream>
#include <string>
#include <random>
using vec = std::vector<int64_t>;
std::mt19937_64 gen64;
vec makeVec(int64_t size) {
vec result(size);
for (auto& elem : result)
elem = gen64();
return result;
}
std::string showVec(const vec& v) {
std::string result = "[";
for (auto elem : v)
result += " " + std::to_string(elem);
result += " ]";
return result;
}
template<class ForwardIt>
void sort(ForwardIt first, ForwardIt last) {
std::for_each(first, last, [first, last](auto& left){
std::for_each(first, last, [left](auto& right){
if (left < right) std::swap(left, right);
});
});
}
int main() {
vec v = makeVec(5);
std::cout << "random: " << showVec(v) << "\n";
sort(v.begin(), v.end());
std::cout << "sorted: " << showVec(v) << "\n";
return 0;
}
|
b4fc1169fac24a1fa3a3dad2ce8600e67ef5ffbe | 722a65cee792297fabfea6edad74638224304b94 | /chapter5/mathTutor/mathTutor/main.cpp | 4a9f27fa0d88676275a1a81f301a3182c068582b | [] | no_license | brianlobo/MDC_C_PlusPlus | 47f4cc839c4ad8b487a1f2a20c6627c7b5f20fbc | 5f4de284bfcac8e8ddd5ea000aa66a51da911ae9 | refs/heads/master | 2020-04-24T17:28:50.479703 | 2019-04-18T13:10:52 | 2019-04-18T13:10:52 | 172,148,801 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,988 | cpp | main.cpp | // 8.
// Math Tutor
//
// This program started in Programming Challenge 15 of Chapter 3 , and was modified
// in Programming Challenge 9 of Chapter 4 . Modify the program again so it displays a
// menu allowing the user to select an addition, subtraction, multiplication, or division
// problem. The final selection on the menu should let the user quit the program. After
// the user has finished the math problem, the program should display the menu again.
// This process is repeated until the user chooses to quit the program.
//
// Input Validation: If the user selects an item not on the menu, display an error message
// and display the menu again.
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
const int MIN_VALUE = 1, MAX_VALUE = 999;
float userAnswer, firstNum, secondNum;
int choice, total, counter;
char sign;
unsigned int seed;
while (MIN_VALUE)
{
counter = 1;
seed = time(0);
srand(seed);
firstNum = (rand() % (MAX_VALUE - MIN_VALUE + 1)) + MIN_VALUE;
secondNum = (rand() % (MAX_VALUE - MIN_VALUE + 1)) + MIN_VALUE;
cout << "\nMath Tutor\n\n";
cout << "\t1. Addition\n";
cout << "\t2. Subtration\n";
cout << "\t3. Multiplication\n";
cout << "\t4. Division\n";
cout << "\t5. Quit\n";
cout << "\n\tYour choice: ";
cin >> choice;
if (choice < 1 || choice > 5)
cout << "\n\nInput valid number\n\n";
else
{
switch (choice)
{
case 1:
sign = '+';
total = firstNum + secondNum;
break;
case 2:
sign = '-';
total = firstNum - secondNum;
break;
case 3:
sign = 'x';
total = firstNum * secondNum;
break;
case 4:
sign = '/';
total = firstNum / secondNum;
break;
default:
return 0;
}
do {
cout << "\n\tAttempts left: " << (4 - counter) << "\n\n";
cout << "\n\t" << setw(4) << right << firstNum << endl;
cout << "\t" << sign << setw(3) << secondNum << endl;
cout << "\t" << "----" << endl << "\t ";
cin >> userAnswer;
if (userAnswer == total)
cout << "\n\tCorrect!\n\n" << "-----------------------";
else
cout << "\n\tIncorrect\n\n" << "-----------------------";
} while (counter++ < 3 && userAnswer != total);
}
}
return 0;
}
|
0b4bddff4322675031332b9185aec389b0c41063 | b4d9276f4c26ed555a509a090b8b0441554cef70 | /Linear.cc | 87fd51b64de8b6e602c51ebafda116af79581bdf | [] | no_license | Vicara12/neural_network | eacac4f14c6050a6df4a4db2d99ed8e93b6b38c9 | 1dcf0450a18e787b23cd2a0077d2c4b132b869bb | refs/heads/master | 2022-11-16T11:52:49.094631 | 2020-07-14T14:33:23 | 2020-07-14T14:33:23 | 278,443,664 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cc | Linear.cc | #include "Linear.hh"
ActivationFunction* Linear::instance = new Linear();
Linear::Linear () {}
ActivationFunction* Linear::getInstance ()
{
return instance;
}
std::string Linear::getName () const
{
return "linear";
}
double Linear::f (double x) const
{
return x;
}
double Linear::df (double x) const
{
return x-x;
} |
1aa0b0f9598227f37b20a882f344b7e2617c7ec7 | 9cedbc129ee0ab564f244b8d83f2d9bb124f8cd6 | /artist.cpp | 78f54d65973572af53d9d5b87bc01159b0902008 | [] | no_license | ggg33372/contest | 3a84a31e29176768abf006640c9963abaec47ab6 | fdb1ae93e98f9d64c247f97699116eabcbd89724 | refs/heads/master | 2021-01-19T16:45:47.061276 | 2017-04-20T14:11:27 | 2017-04-20T14:11:27 | 88,283,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,331 | cpp | artist.cpp | //#include <math.h>
//#include <stdlib.h>
#include "artist.h"
#include "corruptedspectator.h"
double Artist::S = 0;
int Artist::winner = -1;
QList<Artist*> Artist::artists;
Artist::Artist(const QString &name, double earnings):
name_(name), toTribe(0)
{
setEarnings(earnings);
artists.append(this);
}
void Artist::earnMoney()
{
money += earnings_;
if (isWinner())
money += S;
toTribe = money/1000;
}
bool Artist::tribe(CorruptedSpectator *spectator)
{
if (spectator->tribe(this, toTribe))
{
money -= toTribe;
return true;
}
return false;
}
bool Artist::tribe()
{
}
void Artist::setEarnings(double earnings)
{
earnings_ = earnings;
}
void Artist::win()
{
setWinner(index());
}
bool Artist::isWinner() const
{
return (winner >=0 && artists.at(winner)==this);
}
const QString &Artist::name() const
{
return name_;
}
int Artist::index()
{
return artists.indexOf(this);
}
void Artist::setProfit(double p)
{
S = p;
}
const QList<Artist*> &Artist::artistList()
{
return artists;
}
void Artist::cleanupArtistList()
{
while (!artists.isEmpty())
delete artists.takeFirst();
}
void Artist::setWinner(int index)
{
winner = index;
}
|
79fd27fe02e0de40e9ed8aa4dd4696d400e18b54 | 4f30a549f4f2463a69b66c3f8dec7ac74eb111e1 | /model.cpp | 4133dc6a63aff78de42ca3c90a2cda941988103b | [] | no_license | SeriyyKust/MyVim | b975bb92fc5011cc031e59eb392054f260e7a7b7 | 105cc92b08101484967094dd302e96544e88830f | refs/heads/master | 2023-09-05T11:00:52.545885 | 2021-11-20T10:30:07 | 2021-11-20T10:30:07 | 430,072,016 | 0 | 0 | null | null | null | null | MacCentralEurope | C++ | false | false | 43,749 | cpp | model.cpp | #include "model.h"
int amount_line_check(BasicString * string, int width, bool type)
{
int index = 0;
int amount_symbol = 0;
int amount_line = 0;
while (index < string->Size())
{
if (string->At(index) == '\n')
{
if (type)
{
amount_line++;
amount_symbol = 0;
}
else
{
amount_symbol++;
if (amount_symbol == width)
{
amount_line++;
amount_symbol = 0;
}
}
}
else
{
amount_symbol++;
if (amount_symbol == width)
{
amount_line++;
amount_symbol = 0;
}
}
index++;
}
if (amount_symbol > 0)
amount_line++;
return amount_line;
}
////////////////////////////////////////////////////
///////////////////////////////////////////////////////
////////////TTTTTTTTTTTTTTTTTTTTTTTT?/////////////////////
//PART 1@@@@@@@@@@@@@@@
void NavigationEdit::Start(const BasicString& path)
{
AddObserver(screen_);
base_buffer_->Clear();
file_ = new WorkWithFile(path);
amount_line_ = file_->GetAmountLine(width_);
BasicString line;
int length = 0;
for (int i = 0; i < amount_line_; i++)
{
line = file_->GetLine(i, width_);
ChangeLine(line, i, 0, 0, 1);
base_buffer_->Insert(length, line.CStr());
length = base_buffer_->Size();
line.Clear();
}
line.Clear();
for (int i = amount_line_; i <height_; i++)
ChangeLine(line, i, 0, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
DeleteObserver();
}
BasicString NavigationEdit::GetLine(int number_line, int width)
{
int index = 0;
BasicString line;
if (base_buffer_->Size() == 0)
{
return line;
}
char buffer;
int amount_symbol = 0;
int amount_line = 0;
int amount = 0;
while (index < base_buffer_->Size() && amount_line < number_line)
{
buffer = base_buffer_->At(index++);
amount++;
if (buffer == '\n')
{
amount_line++;
amount_symbol = 0;
}
else
{
amount_symbol++;
if (amount_symbol == width)
{
amount_line++;
amount_symbol = 0;
}
}
}
if (amount_line > number_line)
return line;
while (index < base_buffer_->Size())
{
buffer = base_buffer_->At(index++);
if (buffer == '\n')
{
line.PushBack(buffer);
return line;
}
else
{
amount_symbol++;
line.PushBack(buffer);
if (amount_symbol == width)
{
amount_line++;
amount_symbol = 0;
return line;
}
}
}
line.PopBack();
return line;
}
void NavigationEdit::Continuation(const IModel* latest_model, bool after_hex)
{
first_line_screen_ = latest_model->GetFirstLineScreen();
last_line_screen_ = latest_model->GetLastLineScreen();
index_cursor_ = latest_model->GetIndexCursor();
y_cursor_ = latest_model->GetYCursor();
x_cursor_ = latest_model->GetXCursor();
save_ = latest_model->GetSave();
if (file_ == nullptr)
{
file_ = new WorkWithFile(latest_model->GetFilePath());
}
else if (!(strcmp((file_->GetPath()).CStr(), (latest_model->GetFilePath()).CStr()) == 0))
{
delete file_;
BasicString newPath = latest_model->GetFilePath().CStr();
Start(newPath);
}
AddObserver(screen_);
if (after_hex)
{
y_cursor_ = latest_model->GetYCursor();
x_cursor_ = latest_model->GetXCursor();
first_line_screen_ = 0;
last_line_screen_ = height_ - 1;
int index = index_cursor_;
index_cursor_ = 0;
while (index > index_cursor_)
{
MoveRight();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
FindYX(y_cursor_, x_cursor_);
amount_line_ = amount_line_check(base_buffer_, width_, true);
BasicString line;
int i = 0;
for ( ;i < amount_line_; i++)
{
line = GetLine(i, width_);
ChangeLine(line, i, 0, 0, 1);
line.Clear();
}
line.Clear();
for (; i < height_; i++)
{
ChangeLine(line, i, 0, 0, 1);
}
}
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
}
void NavigationEdit::End()
{
DeleteObserver();
}
int NavigationEdit::HandlingSymbol(const char symbol_getch)
{
amount_line_ = amount_line_check(base_buffer_, width_,true);
if (symbol_getch == cEscape)
{
buffer_command_.Clear();
return 0;
}
if (symbol_getch == '\r')
{
ChangeType(TypeUpdate::cHex);
buffer_command_.Clear();
return 5;
}
buffer_command_.Insert(buffer_command_.Size(), 1, symbol_getch);
if (!CheckBufferCommand())
{
buffer_command_.Clear();
return 0;
}
if (buffer_command_.At(0) == 'y')
{
if (buffer_command_.Size() == 2)
{
if (strcmp(buffer_command_.CStr(), "yw") == 0)
{
CopyWordToBuffer();
buffer_command_.Clear();
}
buffer_command_.Clear();
}
else
{
CopyLineToBuffer();
}
}
else if (buffer_command_.At(0) >= '0' && buffer_command_.At(0) <= '9')
{
if (!(buffer_command_.At(buffer_command_.Size() - 1) >= '0' && buffer_command_.At(buffer_command_.Size() - 1) <= '9'))
{
if (buffer_command_.At(buffer_command_.Size() - 1) == 'G')
{
int line = Translate(buffer_command_.Substr(0, buffer_command_.Size() - 1)) - 1;
if (line + 1 > amount_line_)
{
line = amount_line_ - 1;
}
if (y_cursor_ < line)
{
while (y_cursor_ < line)
{
MoveDown();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
}
}
else if (y_cursor_ > line)
{
while (y_cursor_ > line)
{
MoveUp();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
}
}
buffer_command_.Clear();
}
}
buffer_command_.Clear();
}
else if (buffer_command_.Size() == 1)
{
switch (symbol_getch)
{
case (cRight):
{
MoveRight();
buffer_command_.Clear();
break;
}
case ('l'):
{
MoveRight();
buffer_command_.Clear();
break;
}
case (cLeft):
{
MoveLeft();
buffer_command_.Clear();
break;
}
case ('h'):
{
MoveLeft();
buffer_command_.Clear();
break;
}
case (cUp):
{
MoveUp();
buffer_command_.Clear();
break;
}
case ('k'):
{
MoveUp();
buffer_command_.Clear();
break;
}
case (cDown):
{
MoveDown();
buffer_command_.Clear();
break;
}
case ('j'):
{
MoveDown();
buffer_command_.Clear();
break;
}
case ('G'):
{
GoToTheEnd();
buffer_command_.Clear();
break;
}
case ('^'):
{
GoToTheBeginningLine();
buffer_command_.Clear();
break;
}
case ('$'):
{
GoToTheEndLine();
buffer_command_.Clear();
break;
}
case ('w'):
{
GoToWordEnd();
buffer_command_.Clear();
break;
}
case ('b'):
{
GoToWordFront();
buffer_command_.Clear();
break;
}
case ('x'):
{
DeleteSymbols(index_cursor_, 1);
save_ = true;
buffer_command_.Clear();
break;
}
case ('p'):
{
InsertFromBufferToLine();
save_ = true;
buffer_command_.Clear();
break;
}
case ('i'):
{
MoveRight();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
buffer_command_.Clear();
save_ = true;
return 2;
break;
}
case ('I'):
{
GoToTheBeginningLine();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
buffer_command_.Clear();
save_ = true;
return 2;
break;
}
case ('A'):
{
GoToTheEndLine();
if (x_cursor_ < (width_ - 1))
index_cursor_++;
FindYX(y_cursor_, x_cursor_);
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
buffer_command_.Clear();
save_ = true;
return 2;
break;
}
case ('S'):
{
GoToTheBeginningLine();
int start_index = index_cursor_;
GoToTheEndLine();
int finish_index = index_cursor_;
if (base_buffer_->Size() == start_index)
return 2;
base_buffer_->Erase(start_index, finish_index - start_index + 1);
if (base_buffer_->Size() <= start_index)
index_cursor_ = base_buffer_->Size() - 1;
else
index_cursor_ = start_index;
//index_cursor_--;
FindYX(y_cursor_, x_cursor_);
if (base_buffer_->At(index_cursor_) != '\n')
base_buffer_->Insert(index_cursor_, 1, '\n');
FindYX(y_cursor_, x_cursor_);
UpdateLines(y_cursor_+1);
save_ = true;
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
buffer_command_.Clear();
return 2;
break;
}
case ('r'):
{
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
DeleteSymbols(index_cursor_, 1);
save_ = true;
buffer_command_.Clear();
break;
}
default:
break;
}
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
}
else if (buffer_command_.Size() == 2)
{
if (strcmp(buffer_command_.CStr(), "gg") == 0)
{
GoToTheBeginning();
buffer_command_.Clear();
}
else if (strcmp(buffer_command_.CStr(), "dd") == 0)
{
GoToTheBeginningLine();
int start_index = index_cursor_;
GoToTheEndLine();
int finish_index = index_cursor_;
DeleteSymbols(start_index, finish_index - start_index + 1);
FindYX(y_cursor_, x_cursor_);
if (base_buffer_->At(index_cursor_) == '\n')
{
base_buffer_->Erase(index_cursor_, 1);
UpdateLines(y_cursor_ - 1);
}
save_ = true;
buffer_command_.Clear();
}
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
}
else if (buffer_command_.Size() == 3)
{
if (strcmp(buffer_command_.CStr(), "diw") == 0)
{
if (base_buffer_->At(index_cursor_) == '\n')
{
DeleteSymbols(index_cursor_, 1);
}
else
{
GoToWordFront();
int start_index = index_cursor_;
GoToWordEnd();
int finish_index = index_cursor_;
if ((finish_index + 1) < base_buffer_->Size())
++finish_index;
DeleteSymbols(start_index, finish_index - start_index + 1);
}
save_ = true;
buffer_command_.Clear();
}
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "NAVIGATION AND EDIT", 0, 1);
}
return 0;
}
void NavigationEdit::GoToTheEnd()
{
index_cursor_ = base_buffer_->Size() - 1;
int y = 0;
FindYX(y, x_cursor_);
while (y_cursor_ < y)
{
y_cursor_++;
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
void NavigationEdit::GoToTheBeginning()
{
index_cursor_ = 0;
int y = y_cursor_;
FindYX(y, x_cursor_);
while (y_cursor_ > y)
{
--y_cursor_;
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
void NavigationEdit::GoToTheBeginningLine()
{
while (x_cursor_ > 0)
{
--x_cursor_;
--index_cursor_;
}
}
void NavigationEdit::GoToTheEndLine()
{
while (index_cursor_ < base_buffer_->Size() && x_cursor_ < width_ && base_buffer_->At(index_cursor_) != '\n')
{
++x_cursor_;
++index_cursor_;
}
if (x_cursor_ != 0)
{
--x_cursor_;
--index_cursor_;
}
}
void NavigationEdit::GoToWordEnd()
{
int index = index_cursor_ + 1;
while (index < base_buffer_->Size() && (base_buffer_->At(index) == ' ' || base_buffer_->At(index) == '\n'))
index++;
if (index < base_buffer_->Size() && (base_buffer_->At(index) != ' ' && base_buffer_->At(index) != '\n'))
{
while (index < base_buffer_->Size() && (base_buffer_->At(index) != ' ' && base_buffer_->At(index) != '\n'))
index++;
index_cursor_ = index - 1;
FindYX(y_cursor_, x_cursor_);
return;
}
return;
}
void NavigationEdit::GoToWordFront()
{
int index = index_cursor_ - 1;
while (index > -1 && (base_buffer_->At(index) == ' ' || base_buffer_->At(index) == '\n'))
--index;
if (index > -1 && (base_buffer_->At(index) != ' ' && base_buffer_->At(index) != '\n'))
{
while (index > -1 && (base_buffer_->At(index) != ' ' && base_buffer_->At(index) != '\n'))
--index;
index_cursor_ = index + 1;
FindYX(y_cursor_, x_cursor_);
return;
}
return;
}
void NavigationEdit::UpdateLines(int edit_line)
{
int amount_line = 0;
int position_start_line = 0;
int index_width = 1;
while (amount_line < (edit_line -1) && position_start_line < base_buffer_->Size())
{
if (base_buffer_->At(position_start_line) == '\n')
{
amount_line++;
index_width = 0;
}
else if (index_width == width_)
{
amount_line++;
index_width = 0;
}
index_width++;
position_start_line++;
}
index_width = 1;
int position_end_line = position_start_line;
while (position_end_line < base_buffer_->Size())
{
if (base_buffer_->At(position_end_line) == '\n')
{
if (position_start_line != position_end_line)
{
ChangeLine(base_buffer_->Substr(position_start_line, position_end_line - position_start_line), amount_line,0, 0, 1);
}
else
{
BasicString space(" ");
ChangeLine(space, amount_line,0, 0, 1);
}
amount_line++;
index_width = 1;
position_end_line++;
position_start_line = position_end_line;
}
else if (index_width > width_)
{
if (position_start_line != position_end_line)
{
ChangeLine(base_buffer_->Substr(position_start_line, position_end_line - position_start_line), amount_line,0, 0, 1);
}
amount_line++;
index_width = 1;
position_start_line = position_end_line;
}
else
{
index_width++;
position_end_line++;
}
}
if (position_start_line != position_end_line)
{
ChangeLine(base_buffer_->Substr(position_start_line, position_end_line - position_start_line), amount_line,0, 0, 1);
amount_line++;
}
if (amount_line < amount_line_)
{
BasicString empty;
for (int i = amount_line; i < amount_line_ ; i++)
ChangeLine(empty, i,0, 0, 1);
amount_line_ = amount_line + 1;
}
if (base_buffer_->Size() == 0)
{
BasicString empty;
ChangeLine(empty, 0,0, 0, 1);
y_cursor_ = 0;
x_cursor_ = 0;
index_cursor_ = 0;
}
}
void NavigationEdit::DeleteSymbols(int position, int count)
{
if (base_buffer_->Size() == position)
return;
base_buffer_->Erase(position, count);
if (base_buffer_->Size() <= position)
index_cursor_ = base_buffer_->Size() - 1;
else
index_cursor_ = position;
FindYX(y_cursor_, x_cursor_);
UpdateLines(y_cursor_);
}
void NavigationEdit::CopyLineToBuffer()
{
int index_cursor = index_cursor_;
GoToTheBeginningLine();
int index_cursor_start = index_cursor_;
GoToTheEndLine();
int index_cursor_finish = index_cursor_;
buffer_line_ = base_buffer_->Substr(index_cursor_start, index_cursor_finish - index_cursor_start + 1);
index_cursor_ = index_cursor;
}
void NavigationEdit::InsertFromBufferToLine()
{
if (buffer_line_.Empty())
return;
base_buffer_->Insert(index_cursor_ + 1, buffer_line_.CStr());
UpdateLines(y_cursor_);
}
void NavigationEdit::CopyWordToBuffer()
{
int index_cursor = index_cursor_;
GoToWordEnd();
int index_cursor_finish = index_cursor_;
buffer_line_ = base_buffer_->Substr(index_cursor, index_cursor_finish - index_cursor + 1);
index_cursor_ = index_cursor;
FindYX(y_cursor_, x_cursor_);
}
bool NavigationEdit::CheckBufferCommand()
{
BasicString first_symbol = { '^','$','w','b','g','G','x','d','y','p','i','I','A','S','r',(char)(cRight),(char)(cUp),(char)(cLeft),(char)(cDown), 'l','k','j','h'};
BasicString second_symbol = { 'g','i','d','w' };
char symbol = 'w';
if (buffer_command_[0] >= '0' && buffer_command_[0] <= '9')
{
for (int i = 0; i < buffer_command_.Size() - 1; i++)
{
if (!(buffer_command_[i] >= '0' && buffer_command_[i] <= '9'))
return false;
}
}
else
{
int size = buffer_command_.Size();
if (size == 1)
{
for (int i = 0; i < first_symbol.Size(); i++)
{
if (first_symbol[i] == buffer_command_[0])
return true;
}
return false;
}
else if (size == 2)
{
for (int i = 0; i < second_symbol.Size(); i++)
{
if (second_symbol[i] == buffer_command_[1])
return true;
}
return false;
}
else if (size == 3)
{
if (symbol == buffer_command_[2])
return true;
return false;
}
}
}
////////////////////////////////////////////////////
///////////////////////////////////////////////////////
////////////TTTTTTTTTTTTTTTTTTTTTTTT?/////////////////////
//PART 2@@@@@@@@@@@@@@@
void CommandModel::Start(const BasicString& path)
{
AddObserver(screen_);
file_ = new WorkWithFile(path);
amount_line_ = file_->GetAmountLine(width_);
DeleteObserver();
}
void CommandModel::Continuation(const IModel* latest_model, bool after_hex)
{
first_line_screen_ = latest_model->GetFirstLineScreen();
last_line_screen_ = latest_model->GetLastLineScreen();
index_cursor_ = latest_model->GetIndexCursor();
y_cursor_ = latest_model->GetYCursor();
x_cursor_ = latest_model->GetXCursor();
save_ = latest_model->GetSave();
if (file_ == nullptr)
{
file_ = new WorkWithFile(latest_model->GetFilePath());
}
AddObserver(screen_);
if (buffer_command_.Size() != 0)
buffer_command_.Clear();
buffer_command_.PushBack(':');
ChangeLine(buffer_command_, -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "COMMAND", 0, 1);
}
void CommandModel::End()
{
DeleteObserver();
}
void CommandModel::Error(bool type)
{
buffer_command_.Clear();
if(type)
ChangeLine("Error: Invalid Command", -1,0, 0, 1);
else
ChangeLine("Error: File not saved (To exit without saving enter \"q!\")", -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "COMMAND", 0, 1);
}
int CommandModel::HandlingSymbol(const char symbol_getch)
{
amount_line_ = amount_line_check(base_buffer_, width_,true);
if (symbol_getch == cBackSpace)
{
if (buffer_command_.Size() <= 1)
return 1;
buffer_command_.PopBack();
ChangeLine(buffer_command_, -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "COMMAND", 0, 1);
return 0;
}
else if (symbol_getch != cEnter && symbol_getch != cEscape)
{
buffer_command_.PushBack(symbol_getch);
ChangeLine(buffer_command_, -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "COMMAND", 0, 1);
return 0;
}
else
{
buffer_command_.Erase(0, 1);
if (buffer_command_.Size() == 0)
return 1;
if (buffer_command_.At(0) >= '0' && buffer_command_.At(0) <= '9')
{
int number = Translate(buffer_command_);
if (number < 0)
{
Error(true);
return 3;
}
if (number > amount_line_)
{
y_cursor_ = amount_line_ - 1;
}
else
{
y_cursor_ = number - 1;
}
x_cursor_ - 0;
return 1;
}
switch (buffer_command_.At(0))
{
case 'o':
{
if (buffer_command_.At(1) != ' ')
{
Error(true);
return 3;
}
else
{
if (save_)
{
SaveBuffer();
save_ = false;
}
file_->NewPath(buffer_command_.Substr(2));
return 2;
}
break;
}
case 'h':
{
if (buffer_command_.Size() > 1)
{
Error(true);
return 3;
}
else
{
BasicString buf_help;
buf_help = ":o filename - Open file filename\n:x - Write to current file and exit\n:w - Write to current file\n:w filename - Write to filename\n:q - Go out. If the file has been changed, then the exit is possible only with q!\n:q! - Exit without saving\n:wq! - Write to current file and exit\n:number - Jump to line number\n:h - Display command help\n";
int i = 0;
int i_line = 0;
BasicString line;
while (i < buf_help.Size())
{
if (buf_help[i] == '\n')
{
ChangeLine(line, i_line, 0, 0, 1);
i_line += 1;
line.Clear();
}
else
{
line.PushBack(buf_help[i]);
}
i++;
}
line.Clear();
for (int i = i_line; i < height_; i++)
ChangeLine(line, i, 0, 0, 1);
ChangeCursor(0, 0, file_->GetName(), "COMMAND", 0, 1);
return 5;
}
break;
}
case 'x':
{
if (buffer_command_.Size() > 1)
{
Error(true);
return 3;
}
if (save_)
{
SaveBuffer();
save_ = false;
}
return 4;
break;
}
case 'w':
{
if (buffer_command_.Size() > 1)
{
if (buffer_command_.At(1) != ' ')
{
if (strcmp(buffer_command_.CStr(), "wq!") == 0)
{
if (save_)
{
SaveBuffer();
save_ = false;
}
return 4;
}
else
{
Error(true);
return 3;
}
}
else
{
BasicString tmp_path = file_->GetPath();
file_->NewPath(buffer_command_.Substr(2));
SaveBuffer();
file_->NewPath(tmp_path);
return 1;
}
}
else
{
if (save_)
{
SaveBuffer();
save_ = false;
}
return 1;
}
break;
}
case 'q':
{
if (buffer_command_.Size() > 1)
{
if (buffer_command_.Size() > 2)
{
Error(true);
return 3;
}
else
{
if (buffer_command_.At(1) != '!')
{
Error(true);
return 3;
}
else
{
return 4;
}
}
}
else
{
if (save_)
{
Error(false);
return 3;
}
return 4;
}
break;
}
default:
Error(true);
return 3;
}
}
}
void CommandModel::SaveBuffer()
{
file_->WriteFromBuffer(base_buffer_->CStr(), base_buffer_->Size());
}
////////////////////////////////////////////////////
///////////////////////////////////////////////////////
////////////TTTTTTTTTTTTTTTTTTTTTTTT?/////////////////////
//PART 3@@@@@@@@@@@@@@@
void SearchModel::Start(const BasicString& path)
{
AddObserver(screen_);
file_ = new WorkWithFile(path);
amount_line_ = file_->GetAmountLine(width_);
DeleteObserver();
}
void SearchModel::Continuation(const IModel* latest_model, bool after_hex)
{
first_line_screen_ = latest_model->GetFirstLineScreen();
last_line_screen_ = latest_model->GetLastLineScreen();
index_cursor_ = latest_model->GetIndexCursor();
y_cursor_ = latest_model->GetYCursor();
x_cursor_ = latest_model->GetXCursor();
save_ = latest_model->GetSave();
if (file_ == nullptr)
{
file_ = new WorkWithFile(latest_model->GetFilePath());
}
find_ = false;
AddObserver(screen_);
ChangeCursor(-1, -1, file_->GetName(), "SEARCH", 0, 1);
}
void SearchModel::End()
{
buffer_search_.Clear();
DeleteObserver();
}
int SearchModel::HandlingSymbol(const char symbol_getch)
{
if (symbol_getch == cBackSpace)
{
if (buffer_search_.Size() <= 1)
return 4;
buffer_search_.PopBack();
ChangeLine(buffer_search_, -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "SEARCH", 0, 1);
return 1;
}
if (buffer_search_.Size() == 0)
{
if (symbol_getch == '/')
{
type_ = true;
}
else if (symbol_getch == '?')
{
type_ = false;
}
else
{
return -1;
}
buffer_search_.PushBack(symbol_getch);
ChangeLine(buffer_search_, -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "SEARCH", 0, 1);
}
else
{
if (find_)
{
if (symbol_getch == 'n')
type_ = true;
if (symbol_getch == 'N')
type_ = false;
}
if ((symbol_getch != cEnter && symbol_getch != cEscape) && (!find_))
{
buffer_search_.PushBack(symbol_getch);
ChangeLine(buffer_search_, -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "SEARCH", 0, 1);
return 1;
}
else
{
if (!find_)
buffer_search_.Erase(0, 1);
if (buffer_search_.Size() == 0)
{
ChangeLine("Error: Invalid Command", -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "SEARCH", 0, 1);
return 3;
}
int index = 0;
if (type_)
{
if (index_cursor_ + 1 == base_buffer_->Size())
{
return 3;
}
else
{
index_cursor_++;
}
index = SearchToEnd(buffer_search_);
}
else
{
if (index_cursor_ - 1 < 0)
{
return 3;
}
else
{
index_cursor_--;
}
index = SearchToBeg(buffer_search_);
}
if (index == -1)
{
ChangeLine("Not found", -1,0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "SEARCH", 0, 1);
find_ = true;
return 3;
}
index_cursor_ = index;
FindYX(y_cursor_, x_cursor_);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "SEARCH", 0, 1);
find_ = true;
return 4;
}
}
}
int SearchModel::SearchToEnd(const BasicString& word)
{
return base_buffer_->Find(word.CStr(), index_cursor_);
}
int SearchModel::SearchToBeg(const BasicString& word)
{
BasicString reBuffer;
int index = index_cursor_;
while (index >= 0)
reBuffer.PushBack(base_buffer_->At(index--));
BasicString reWord;
index = word.Size() - 1;
while (index >= 0)
reWord.PushBack(word[index--]);
index = reBuffer.Find(reWord.CStr());
if (index == -1)
return -1;
return(index_cursor_ - index - (reWord.Size() - 1));
}
////////////////////////////////////////////////////
///////////////////////////////////////////////////////
////////////TTTTTTTTTTTTTTTTTTTTTTTT?/////////////////////
//PART 4@@@@@@@@@@@@@@@
void EditModel::Start(const BasicString& path)
{
AddObserver(screen_);
file_ = new WorkWithFile(path);
amount_line_ = file_->GetAmountLine(width_);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
DeleteObserver();
}
void EditModel::Continuation(const IModel* latest_model, bool after_hex)
{
first_line_screen_ = latest_model->GetFirstLineScreen();
last_line_screen_ = latest_model->GetLastLineScreen();
index_cursor_ = latest_model->GetIndexCursor();
y_cursor_ = latest_model->GetYCursor();
x_cursor_ = latest_model->GetXCursor();
save_ = latest_model->GetSave();
if (file_ == nullptr)
{
file_ = new WorkWithFile(latest_model->GetFilePath());
}
else if (!(strcmp((file_->GetPath()).CStr(), (latest_model->GetFilePath()).CStr()) == 0))
{
delete file_;
BasicString newPath = latest_model->GetFilePath().CStr();
}
AddObserver(screen_);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
}
void EditModel::End()
{
if (index_cursor_ != 0)
{
index_cursor_--;
FindYX(y_cursor_, x_cursor_);
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
}
DeleteObserver();
}
int EditModel::HandlingSymbol(char symbol_getch)
{
amount_line_ = amount_line_check(base_buffer_, width_,true);
if (symbol_getch == cBackSpace)
{
if (index_cursor_ == 0)
{
return 1;
}
else
{
if (x_cursor_ == 0)
{
if (base_buffer_->At(index_cursor_ - 1) == '\n')
x_cursor_ = WidthLine(y_cursor_ - 1);
else
{
x_cursor_ = WidthLine(y_cursor_ - 1) - 1;
}
--y_cursor_;
}
else
{
--x_cursor_;
}
base_buffer_->Erase(index_cursor_ - 1, 1);
index_cursor_--;
FindYX(y_cursor_, x_cursor_);
UpdateLines(y_cursor_);
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
return 1;
}
}
else if (symbol_getch == cRight)
{
MoveRight();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
return 1;
}
else if (symbol_getch == cLeft)
{
MoveLeft();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
return 1;
}
else if (symbol_getch == cUp || symbol_getch == cDown)
{
if (symbol_getch == cUp)
{
MoveUp();
}
else
{
MoveDown();
}
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
return 1;
}
else
{
base_buffer_->Insert(index_cursor_++, 1, symbol_getch);
FindYX(y_cursor_, x_cursor_);
UpdateLines(y_cursor_);
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "EDIT", 0, 1);
return 1;
}
return 1;
}
void EditModel::UpdateLines(int edit_line)
{
int amount_line = 0;
int position_start_line = 0;
int index_width = 1;
while (amount_line < (edit_line - 1) && position_start_line < base_buffer_->Size())
{
if (base_buffer_->At(position_start_line) == '\n')
{
amount_line++;
index_width = 0;
}
else if (index_width == width_)
{
amount_line++;
index_width = 0;
}
index_width++;
position_start_line++;
}
index_width = 1;
int position_end_line = position_start_line;
while (position_end_line < base_buffer_->Size())
{
if (base_buffer_->At(position_end_line) == '\n')
{
if (position_start_line != position_end_line)
{
ChangeLine(base_buffer_->Substr(position_start_line, position_end_line - position_start_line), amount_line,0, 0, 1);
}
else
{
BasicString space(" ");
ChangeLine(space, amount_line,0, 0, 1);
}
amount_line++;
index_width = 1;
position_end_line++;
position_start_line = position_end_line;
}
else if (index_width > width_)
{
if (position_start_line != position_end_line)
{
ChangeLine(base_buffer_->Substr(position_start_line, position_end_line - position_start_line), amount_line,0, 0, 1);
}
amount_line++;
index_width = 1;
position_start_line = position_end_line;
}
else
{
index_width++;
position_end_line++;
}
}
if (position_start_line != position_end_line)
{
ChangeLine(base_buffer_->Substr(position_start_line, position_end_line - position_start_line), amount_line,0, 0, 1);
amount_line++;
}
if (amount_line < amount_line_)
{
BasicString empty;
for (int i = amount_line; i < amount_line_; i++)
ChangeLine(empty, i, 0, 0, 1);
amount_line_ = amount_line + 1;
}
if (base_buffer_->Size() == 0)
{
BasicString empty;
ChangeLine(empty, 0, 0, 0, 1);
y_cursor_ = 0;
x_cursor_ = 0;
index_cursor_ = 0;
}
}
////////////////////////////////////////////////////
///////////////////////////////////////////////////////
////////////TTTTTTTTTTTTTTTTTTTTTTTT?/////////////////////
//PART 4@@@@@@@@@@@@@@@
void HexModel::Start(const BasicString& path)
{
AddObserver(screen_);
file_ = new WorkWithFile(path);
amount_line_ = file_->GetAmountLine(width_);
BasicString line;
int length = 0;
for (int i = 0; i < amount_line_; i++)
{
line = file_->GetLine(i, width_);
ChangeLine(line, i,0, 0, 1);
base_buffer_->Insert(length, line.CStr());
length = base_buffer_->Size();
line.Clear();
}
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "HEX", 0, 1);
DeleteObserver();
}
void HexModel::Continuation(const IModel* latest_model, bool after_hex)
{
width_old_ = latest_model->GetWidth();
height_old_ = latest_model->GetHeight();
first_line_screen_ = 0;
last_line_screen_ = height_-1;
index_cursor_ = latest_model->GetIndexCursor();
AddObserver(screen_);
TranslateBuffer();
TranslateLineScreenToHex();
FindYX(y_cursor_, x_cursor_);
save_ = latest_model->GetSave();
if (file_ == nullptr)
{
file_ = new WorkWithFile(latest_model->GetFilePath());
}
else if (!(strcmp((file_->GetPath()).CStr(), (latest_model->GetFilePath()).CStr()) == 0))
{
delete file_;
BasicString newPath = latest_model->GetFilePath().CStr();
file_ = new WorkWithFile(newPath);
}
FindYX(y_cursor_, x_cursor_);
amount_line_ = amount_line_check(&hex_base_buffer_, width_,false);
BasicString line;
int length = 0;
for (int i = 0; i < 150; i++)
{
if (i < amount_line_)
{
if ((length + width_) < hex_base_buffer_.Size())
line = hex_base_buffer_.Substr(length, width_);
else
line = hex_base_buffer_.Substr(length);
if (index_cursor_ >= length && index_cursor_ < (length + width_))
ChangeLine(line, i, index_cursor_, 0, 1);
else
ChangeLine(line, i, -1, 0, 1);
length += width_;
line.Clear();
}
else
{
line.Clear();
ChangeLine(line, i, -1, 0, 1);
}
}
FindYX(y_cursor_, x_cursor_);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "HEX", 0, 1);
}
void HexModel::End()
{
ChangeType(TypeUpdate::cNorm);
int index = index_cursor_;
while (index >= 0)
{
if (hex_base_buffer_.At(index) == (char)(0x0d))
{
index_cursor_--;
}
index--;
}
DeleteObserver();
}
int HexModel::HandlingSymbol(const char symbol_getch)
{
if (!type)
{
int check = Search(symbol_getch);
if (check == 0)
return 0;
else if (check == 1)
{
type = true;
}
}
amount_line_ = amount_line_check(&hex_base_buffer_, width_,false);
buffer_command_.Append(1, symbol_getch);
if (symbol_getch == cEscape)
{
buffer_command_.Clear();
return 0;
}
else if (buffer_command_.At(0) >= '0' && buffer_command_.At(0) <= '9')
{
if (!(buffer_command_.At(buffer_command_.Size() - 1) >= '0' && buffer_command_.At(buffer_command_.Size() - 1) <= '9'))
{
if (buffer_command_.At(buffer_command_.Size() - 1) == 'G')
{
int index = Translate(buffer_command_.Substr(0, buffer_command_.Size() - 1)) - 1;
if (index >= hex_base_buffer_.Size())
{
if (hex_base_buffer_.Size() == 0)
{
index = 0;
}
else
{
index = hex_base_buffer_.Size() - 1;
}
}
int now_index_cursor = index_cursor_;
GoToTheBeginningLine();
int start = index_cursor_;
GoToTheEndLine();
int finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, -1, 0, 1);
if (index_cursor_< index)
{
while (index_cursor_ < index)
{
MoveRight();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
else if (index_cursor_ > index)
{
while (index_cursor_ > index)
{
MoveLeft();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
now_index_cursor = index_cursor_;
GoToTheBeginningLine();
start = index_cursor_;
GoToTheEndLine();
finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, index_cursor_, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "HEX", 0, 1);
buffer_command_.Clear();
}
else
{
buffer_command_.Clear();
int now_index_cursor = index_cursor_;
GoToTheBeginningLine();
int start = index_cursor_;
GoToTheEndLine();
int finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, -1, 0, 1);
switch (symbol_getch)
{
case (cRight):
{
MoveRight();
break;
}
case (cLeft):
{
MoveLeft();
break;
}
case (cUp):
{
MoveUp();
break;
}
case (cDown):
{
MoveDown();
break;
}
default:
break;
}
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
now_index_cursor = index_cursor_;
GoToTheBeginningLine();
start = index_cursor_;
GoToTheEndLine();
finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, index_cursor_, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "HEX", 0, 1);
}
}
}
else if (symbol_getch == '/')
{
buffer_command_.Clear();
Search(symbol_getch);
type = false;
}
else
{
buffer_command_.Clear();
int now_index_cursor = index_cursor_;
GoToTheBeginningLine();
int start = index_cursor_;
GoToTheEndLine();
int finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, -1, 0, 1);
switch (symbol_getch)
{
case (cRight):
{
MoveRight();
break;
}
case (cLeft):
{
MoveLeft();
break;
}
case (cUp):
{
MoveUp();
break;
}
case (cDown):
{
MoveDown();
break;
}
default:
break;
}
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
now_index_cursor = index_cursor_;
GoToTheBeginningLine();
start = index_cursor_;
GoToTheEndLine();
finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, index_cursor_, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "HEX", 0, 1);
}
return 0;
}
void HexModel::GoToTheBeginningLine()
{
while (x_cursor_ > 0)
{
--x_cursor_;
--index_cursor_;
}
}
void HexModel::GoToTheEndLine()
{
while (index_cursor_ < hex_base_buffer_.Size() && x_cursor_ < width_)
{
++x_cursor_;
++index_cursor_;
}
if (x_cursor_ != 0)
{
--x_cursor_;
--index_cursor_;
}
}
void HexModel::TranslateLineScreenToHex()
{
int index = index_cursor_;
index_cursor_ = 0;
while (index > index_cursor_)
{
MoveRight();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true,0,1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
void HexModel::TranslateBuffer()
{
for (int i = 0; i < base_buffer_->Size(); i++)
{
if (base_buffer_->At(i) == '\n')
{
hex_base_buffer_.Append(1, (char)(0x0d));
hex_base_buffer_.Append(1, (char)(0x0a));
if (i <= index_cursor_)
{
index_cursor_++;
}
}
//else if (base_buffer_->At(i) == '\t')
//{
// hex_base_buffer_.Append(1, ' ');
// hex_base_buffer_.Append(1, (char)(0x09));
//}
else
{
hex_base_buffer_.Append(1, base_buffer_->At(i));
}
}
}
bool HexModel::FindYX(int& y, int& x)
{
y = 0;
x = 1;
int position_start_line = 0;
while (position_start_line < index_cursor_ && position_start_line < hex_base_buffer_.Size())
{
if (x == width_)
{
y++;
x = 0;
}
x++;
position_start_line++;
}
x--;
if (position_start_line == base_buffer_->Size())
return false;
return true;
}
void HexModel::MoveRight()
{
if (index_cursor_ + 1 >= hex_base_buffer_.Size())
return;
index_cursor_++;
FindYX(y_cursor_, x_cursor_);
return;
}
void HexModel::MoveLeft()
{
if (index_cursor_ - 1 < 0)
return;
index_cursor_--;
FindYX(y_cursor_, x_cursor_);
return;
}
int HexModel::WidthLine(int line)
{
int amount_line = 0;
int position_start_line = 0;
int index_width = 1;
while (amount_line < line && position_start_line < hex_base_buffer_.Size())
{
if (index_width == width_)
{
amount_line++;
index_width = 0;
}
index_width++;
position_start_line++;
}
index_width = 1;
int position_end_line = position_start_line;
while (position_end_line < hex_base_buffer_.Size() && index_width <= width_)
{
index_width++;
position_end_line++;
}
return position_end_line - position_start_line;
}
void HexModel::MoveUp()
{
if (y_cursor_ - 1 < 0)
return;
y_cursor_--;
int size_line = WidthLine(y_cursor_);
if (size_line >= x_cursor_)
{
FindIndexCursor(index_cursor_, y_cursor_, x_cursor_);
return;
}
else
{
x_cursor_ = size_line;
FindIndexCursor(index_cursor_, y_cursor_, x_cursor_);
return;
}
}
bool HexModel::FindIndexCursor(int& index_cursor, int y, int x)
{
index_cursor = 0;
int amount_line = 0;
int index_width = 1;
while (amount_line < y && index_cursor < hex_base_buffer_.Size())
{
if (index_width == width_)
{
amount_line++;
index_width = 0;
}
index_width++;
index_cursor++;
}
index_width = 1;
while (index_cursor < hex_base_buffer_.Size())
{
if (index_width > width_ || index_width - 1 == x)
{
return true;
}
else
{
index_width++;
index_cursor++;
}
}
return true;
}
void HexModel::MoveDown()
{
if (y_cursor_ + 1 >= amount_line_)
return;
y_cursor_++;
int size_line = WidthLine(y_cursor_) - 1;
if (size_line >= x_cursor_)
{
FindIndexCursor(index_cursor_, y_cursor_, x_cursor_);
return;
}
else
{
x_cursor_ = size_line;
FindIndexCursor(index_cursor_, y_cursor_, x_cursor_);
return;
}
}
int HexModel::Screen—rossing—heck()
{
if (y_cursor_ < first_line_screen_)
{
first_line_screen_--;
last_line_screen_--;
return -1;
}
else if (y_cursor_ > last_line_screen_)
{
first_line_screen_++;
last_line_screen_++;
return 1;
}
return 0;
}
int TranslateToNOneSymbol(char symbol)
{
if (symbol >= '0' && symbol < '9')
{
return ((int)(symbol)- 48);
}
switch (symbol)
{
case 'A': return 10;
break;
case 'B': return 11;
break;
case 'C': return 12;
break;
case 'D': return 13;
break;
case 'E': return 14;
break;
case 'F': return 15;
break;
}
}
int HexModel::Search(char symbol)
{
if (symbol == cEnter)
{
BasicString word;
buffer_command_.Erase(0, 1);
int index = 0;
while (index < buffer_command_.Size())
{
int number = (TranslateToNOneSymbol(buffer_command_[index]) * 16) + (TranslateToNOneSymbol(buffer_command_[index + 1]));
index += 2;
word.Append(1, (char)(number));
}
index = SearchToEnd(word);
if (index < 0)
{
buffer_command_.Clear();
return index;
}
int now_index_cursor = index_cursor_;
GoToTheBeginningLine();
int start = index_cursor_;
GoToTheEndLine();
int finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, -1, 0, 1);
if (index_cursor_ < index)
{
while (index_cursor_ < index)
{
MoveRight();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
else if (index_cursor_ > index)
{
while (index_cursor_ > index)
{
MoveLeft();
int check = Screen—rossing—heck();
if (check > 0)
ChangeCross(true, 0, 1);
if (check < 0)
ChangeCross(false, 0, 1);
}
}
now_index_cursor = index_cursor_;
GoToTheBeginningLine();
start = index_cursor_;
GoToTheEndLine();
finish = index_cursor_;
index_cursor_ = now_index_cursor;
FindYX(y_cursor_, x_cursor_);
ChangeLine(hex_base_buffer_.Substr(start, finish - start + 1), y_cursor_, index_cursor_, 0, 1);
ChangeCursor(y_cursor_, x_cursor_, file_->GetName(), "HEX", 0, 1);
buffer_command_.Clear();
return 1;
}
else
{
buffer_command_.Append(1,symbol);
ChangeLine(buffer_command_, -1, 0, 0, 1);
ChangeCursor(-1, -1, file_->GetName(), "HEX", 0, 1);
return 0;
}
}
int HexModel::SearchToEnd(const BasicString& word)
{
return hex_base_buffer_.Find(word.CStr(), index_cursor_);
}
|
0db586bb47753e198f656e64ddd03a2c1aca3323 | ea8ba7cfc4f4773ed516e094ded4bc36502f93b5 | /branch/old_angsys/angsys_beta2/source/angsys/angsys.shared/source/streams/binary_buffer_output_stream.cpp | c2c853efda0993c0f08e39cf3b6c738cc39def7e | [
"Apache-2.0"
] | permissive | ChuyX3/angsys | 15f896f0b4823b63a14aff8e35a30f344f2c30e8 | 89b2eaee866bcfd11e66efda49b38acc7468c780 | refs/heads/master | 2021-07-07T18:58:39.437477 | 2020-06-29T05:33:08 | 2020-06-29T05:33:08 | 92,321,439 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,474 | cpp | binary_buffer_output_stream.cpp | /*********************************************************************************************************************/
/* File Name: binary_buffer_output_stream.cpp */
/* Author: Ing. Jesus Rocha <chuyangel.rm@gmail.com>, July 2016. */
/* Copyright (C) Angsys, - All Rights Reserved */
/* Confidential Information of Angsys. Not for disclosure or distribution without the author's prior written */
/* consent. This file contains code, techniques and know-how which is confidential and proprietary to Jesus Rocha */
/* */
/*********************************************************************************************************************/
#include "pch.h"
#include "ang/streams.hpp"
using namespace ang;
using namespace ang::streams;
binary_buffer_output_stream::binary_buffer_output_stream()
: _buffer(null)
, _cursor(0)
{
}
binary_buffer_output_stream::binary_buffer_output_stream(binary_buffer_output_stream* stream)
: binary_buffer_output_stream()
{
if (stream)
_buffer = stream->_buffer;
}
binary_buffer_output_stream::binary_buffer_output_stream(ibuffer_t buff)
: binary_buffer_output_stream()
{
_buffer = buff;
}
binary_buffer_output_stream::~binary_buffer_output_stream()
{
_buffer = null;
_cursor = 0;
}
ANG_IMPLEMENT_CLASSNAME(ang::streams::binary_buffer_output_stream);
ANG_IMPLEMENT_OBJECTNAME(ang::streams::binary_buffer_output_stream);
bool binary_buffer_output_stream::is_kind_of(type_name_t type)const
{
return (type == type_of<binary_buffer_output_stream>())
|| object::is_kind_of(type)
|| (type == type_of<ibinary_output_stream>());
}
bool binary_buffer_output_stream::is_inherited_of(type_name_t type)
{
return (type == type_of<binary_buffer_output_stream>())
|| object::is_inherited_of(type)
|| (type == type_of<ibinary_output_stream>());
}
bool binary_buffer_output_stream::query_object(type_name_t type, unknown_ptr_t out)
{
if (out == null)
return false;
if (type == type_of<binary_buffer_output_stream>())
{
*out = this;
return true;
}
else if (object::query_object(type, out))
{
return true;
}
else if (type == type_of<ibinary_output_stream>())
{
*out = static_cast<ibinary_output_stream*>(this);
return true;
}
else if (type == type_of<ibuffer>())
{
*out = buffer();
return true;
}
return false;
}
text::encoding_t binary_buffer_output_stream::format()const
{
return text::encoding::binary;
}
bool binary_buffer_output_stream::is_valid()const
{
return _buffer.get() != null;
}
stream_index_t binary_buffer_output_stream::position()const
{
return _cursor;
}
stream_size_t binary_buffer_output_stream::stream_size()const
{
return _buffer.get() ? _buffer->buffer_size() : 0U;
}
bool binary_buffer_output_stream::move_to(stream_index_t size, stream_reference_t ref)
{
if (!is_valid())
return false;
auto curSize = stream_size();
if (curSize == 0)
return false;
stream_index_t maxPos = curSize;
switch (ref)
{
default:break;
case ang::streams::stream_reference::begin:
if (size < 0)
_cursor = 0;
else
{
if (size > maxPos)
_cursor = maxPos;
else
_cursor = size;
}
break;
case ang::streams::stream_reference::current:
if (size < 0)
{
if ((_cursor - size) <= 0)
_cursor = 0;
else
_cursor -= size;
}
else
{
if ((_cursor + size) > maxPos)
_cursor = maxPos;
else
_cursor += size;
}
break;
case ang::streams::stream_reference::end:
if (size > 0)
_cursor = maxPos;
else
{
if (size >= maxPos)
_cursor = 0;
else
_cursor = maxPos - size;
}
break;
}
return true;
}
bool binary_buffer_output_stream::forward(stream_index_t size)
{
auto curSize = stream_size();
stream_index_t maxPos = curSize;
if ((_cursor + size) > maxPos)
_cursor = maxPos;
else
_cursor += size;
return true;
}
bool binary_buffer_output_stream::backward(stream_index_t size)
{
auto curSize = stream_size();
stream_index_t maxPos = curSize;
if ((_cursor - size) <= 0)
_cursor = 0;
else
_cursor -= size;
return true;
}
ibuffer* binary_buffer_output_stream::buffer()const
{
return _buffer.get();
}
bool binary_buffer_output_stream::attach(ibuffer* buff)
{
_buffer = buff;
_cursor = 0;
return true;
}
bool binary_buffer_output_stream::can_move_to(stream_index_t size, stream_reference_t ref)
{
if (!is_valid())
return false;
auto curSize = stream_size();
if (curSize == 0)
return false;
stream_index_t maxPos = curSize;
switch (ref)
{
default:break;
case ang::streams::stream_reference::begin:
if (size < 0)
return false;
else
{
if (size > maxPos)
return _buffer->realloc_buffer((wsize)size);
else
return true;
}
case ang::streams::stream_reference::current:
if (size < 0)
{
if ((_cursor - size) <= 0)
return false;
else
return true;
}
else
{
if ((_cursor + size) > maxPos)
return _buffer->realloc_buffer((wsize)(_cursor + size));
else
return true;
}
case ang::streams::stream_reference::end:
if (size > 0)
return _buffer->realloc_buffer((wsize)(maxPos + size));
else
{
if ((maxPos + size) < 0)
return false;
else
return true;
}
}
return false;
}
bool binary_buffer_output_stream::can_forward(stream_index_t size)
{
stream_index_t maxPos = stream_size();
if ((_cursor + size) > maxPos)
return _buffer->realloc_buffer((wsize)(_cursor + size));
else
return true;
return false;
}
bool binary_buffer_output_stream::can_backward(stream_index_t size)
{
stream_index_t maxPos = stream_size();
if ((_cursor - size) <= 0)
return false;
else
return true;
}
pointer binary_buffer_output_stream::pointer_at(stream_index_t idx)
{
if (!can_move_to(idx, stream_reference::begin))
return null;
if (_buffer.get())
return pointer(wsize(_buffer->buffer_ptr()) + idx);
return null;
}
wsize binary_buffer_output_stream::write(pointer ptr, wsize sz)
{
if (!can_forward(sz))
return 0;
memcpy(pointer_at(position()), ptr, sz);
forward(sz);
return sz;
}
wsize binary_buffer_output_stream::write(pointer ptr, wsize sz, text::text_format_t)
{
if (!can_forward(sz))
return 0;
memcpy(pointer_at(position()), ptr, sz);
forward(sz);
return sz;
} |
a02f600a0088bdeb66e211e6aae37b49c940d8db | f7ecfb5cc4f7c4c1b0e6b9018dfec14e13b36b8a | /GraphDungeon/GraphDungeon/Hallway.cpp | c0b4aaf50eef106dbca80e5c44e60860390d5f24 | [] | no_license | Remcovdo/ALGA_Week_5-6 | f9dd46f2616c421a521f409237dabaa14531463a | 4a334c8cf486d1468991bc6d9a0db4a215356e6d | refs/heads/master | 2020-03-30T12:53:50.566308 | 2018-10-21T15:09:17 | 2018-10-21T15:09:17 | 151,246,751 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 647 | cpp | Hallway.cpp | #include "Hallway.h"
#include "Room.h"
#include <stdlib.h>
Hallway::Hallway(Room* firstRoom, Room* secondRoom) : enemy { rand() % 10 }, destroyed { false }, rooms{ firstRoom, secondRoom }
{
}
Hallway::~Hallway()
{
}
int Hallway::getEnemy() const
{
return this->enemy;
}
void Hallway::setEnemy(int enemy)
{
this->enemy = enemy;
}
void Hallway::destroyEnemy()
{
this->enemy = 0;
}
bool Hallway::isDestroyed() const
{
return this->destroyed;
}
void Hallway::destroyHallway()
{
this->destroyed = true;
}
Room* Hallway::getRoom(int index) const
{
if (index == 0 || index == 1)
return this->rooms[index];
else
return nullptr;
}
|
86e320d806e8d5defe3d4e5a963db09dc1a1a01b | 37e4dc11ee6d580342ef845163fd8c360a318d6b | /曜日を出す00/main.cpp | fcadc48518ee681b9239093fac9ba0cdc2f2c28d | [] | no_license | confinature/C- | f658937b3312ff9a75ca2a4cac0a83fc3880f74b | f748c1b73b3c2c2b6fb15bce1ebfba0b87af841b | refs/heads/master | 2021-06-11T01:30:39.666211 | 2017-02-28T14:01:39 | 2017-02-28T14:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,111 | cpp | main.cpp | #include <stdio.h>
int main(void)
{
//変数の宣言
int num;
//入力部分
printf("2016年11月の日にちを入力せよ。 \n");
printf("日にち: ");
scanf("%d",&num);
//条件分岐
if (1 <= num && num <= 30){
if (num % 7 == 0){
printf("11月%d日は月曜日です。 \n",num);
}
else if (num % 7 == 1){
printf("11月%d日は火曜日です。 \n",num);
}
else if (num % 7 == 2){
printf("11月%d日は水曜日です。 \n",num);
}
else if (num % 7 == 3){
printf("11月%d日は木曜日です。 \n",num);
}
else if (num % 7 == 4){
printf("11月%d日は金曜日です。 \n",num);
}
else if (num % 7 == 5){
printf("11月%d日は土曜日です。 \n",num);
}
else if (num % 7 == 6){
printf("11月%d日は日曜日です。 \n",num);
}
}
else{
printf("%d日は11月にはありません。 \n",num);
}
//プログラム終了
return 0;
}
|
881a62bcc23b12b1a713dfee57244a94b40ca885 | c1b0f08d25898c64f035b29318328f9364ad748b | /Source/Frameworks/Common/String.cpp | 22ac6ae94efbce1390bfa39300e85172025de029 | [] | no_license | ilijabc/SpriteWars3D | a508207b50748a1c54d69aea13923f2347e1fc65 | cb95e9a85e3e7977710377755bfdb4651b269aec | refs/heads/master | 2016-09-06T08:52:33.089135 | 2013-08-07T13:57:19 | 2013-08-07T13:57:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,888 | cpp | String.cpp | #include "String.h"
#include <stdarg.h>
#include <stdio.h>
String::String()
{
data = NULL;
length = 0;
allocate(255);
updateLength();
}
String::String(int size)
{
data = NULL;
length = 0;
allocate(size);
updateLength();
}
String::String(const char *ss)
{
data = NULL;
length = 0;
allocate(strlen(ss));
strcpy(data, ss);
updateLength();
}
String::String(const String& ss)
{
data = NULL;
length = 0;
allocate(ss.getLength());
strcpy(data, ss.c_str());
updateLength();
}
String::~String()
{
delete [] data;
}
String String::printf(const char *format, ...)
{
char data[256] = "";
va_list ap;
va_start(ap, format);
vsprintf(data, format, ap);
va_end(ap);
return String(data);
}
//
//memory
//
void String::allocate(int size)
{
if (getLength() < size)
{
delete [] data;
}
data = new char [size + 1];
data[0] = '\0';
length = 0;
}
void String::reallocate(int size)
{
if (getLength() < size)
{
char* new_data = new char [size + 1];
int new_len = (size < length) ? size : length;
for (int i = 0; i < new_len; i++)
{
new_data[i] = data[i];
}
new_data[new_len] = '\0';
delete [] data;
data = new_data;
length = new_len;
}
}
void String::append(const char c)
{
reallocate(getLength() + 1);
data[getLength()] = c;
data[getLength() + 1] = '\0';
updateLength();
}
void String::append(const char* ss)
{
int n = strlen(ss);
reallocate(getLength() + n);
for (int i = 0; i < n; i++)
{
data[getLength() + i] = ss[i];
}
data[getLength() + n] = '\0';
updateLength();
}
void String::clear()
{
data[0] = '\0';
length = 0;
}
void String::erase(int size)
{
if (size > getLength())
return;
data[getLength() - size] = '\0';
updateLength();
}
//
// set
//
String& String::operator = (const String& str)
{
reallocate(str.getLength());
strcpy(data, str.data);
updateLength();
return *this;
}
//
//concatenation
//
String& String::operator += (const char c)
{
append(c);
return *this;
}
String& String::operator += (const char* ss)
{
append(ss);
return *this;
}
String& String::operator += (const int i)
{
char ss[16];
sprintf(ss, "%d", i);
append(ss);
return *this;
}
String& String::operator += (const float f)
{
char ss[64];
sprintf(ss, "%f", f);
append(ss);
return *this;
}
String& String::operator += (const String& str)
{
append(str.c_str());
return *this;
}
String String::operator + (const String& str)
{
String s(*this);
s += str;
return s;
}
//
//comperation
//
bool String::operator == (const String& str) const
{
return (strcmp(data, str.data) == 0);
}
bool String::operator == (const char* ss) const
{
return (strcmp(data, ss) == 0);
}
bool String::operator != (const String& str) const
{
return (strcmp(data, str.data) != 0);
}
bool String::operator != (const char* ss) const
{
return (strcmp(data, ss) != 0);
}
//
//conversion
//
String String::getSubString(int start, int len) const
{
if (start >= getLength())
return String();
if (len <= 0)
len = getLength() - start;
String str(len);
for (int i = start; i < start + len; i++)
{
str += data[i];
}
return str;
}
// cont_sep - da li se separatori ponavljaju
String String::getWord(int index, char sep, bool cont_sep) const
{
String word;
bool wait_word = true;
int word_i = cont_sep ? -1 : 0;
const char* c = data;
while (*c)
{
if (*c == sep)
{
if (!cont_sep)
word_i++;
if (word_i == index)
{
break;
}
wait_word = true;
}
else
{
if (wait_word && cont_sep)
{
word_i++;
wait_word = false;
}
if (word_i == index)
{
word += *c;
}
}
c++;
}
return word;
}
int String::getWordCount() const
{
bool wait_space = false;
int word_i = 0;
const char* c = data;
while (*c)
{
if (*c == 32)
{
if (wait_space)
{
word_i++;
wait_space = false;
}
}
else
{
if (wait_space == false)
{
wait_space = true;
}
}
}
return word_i;
}
int String::findFirst(char c) const
{
for (int i = 0; i < length; i++)
{
if (data[i] == c)
return i;
}
return -1;
}
int String::findLast(char c) const
{
for (int i = length - 1; i >= 0; i--)
{
if (data[i] == c)
return i;
}
return -1;
}
void String::trim(char st)
{
char* lp = data;
while (*lp && *lp == st)
lp++;
char* rp = &data[length+1];
while (rp != lp && *rp == st)
rp--;
char* oc = data;
char* pc = lp;
while (pc != rp)
{
*oc = *pc;
pc++;
oc++;
}
oc = 0;
updateLength();
}
|
ab80f362b551c7c823e35081b09382f687e86add | e1edd90c305915644b9b259a126c93a16806c13a | /src/Patterns/BufferPattern.h | de152922c3a6b6ad654324955f8b480aeb30333a | [] | no_license | srini2204/ofxProjectionMask | 9f0ba72efaf1c8d7f582c58f304eda6f4aed8be4 | d75db3fba403487c67e004c08263eaed41f071c4 | refs/heads/master | 2021-01-20T17:36:57.646178 | 2015-01-31T18:14:21 | 2015-01-31T18:15:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 289 | h | BufferPattern.h | #pragma once
#include "ofMain.h"
#include "Canvas.h"
#include "MaskFrame.h"
class BufferPattern{
public:
void setup();
void update();
void draw();
vector<ofFbo> *getBuffers();
int test();
protected:
vector<ofFbo> buffers;
int width, height, numBuffers;
}; |
1bff36c38abfd443b744657ea59a3b3d4094f519 | 93bf86941368c1ddbd16fc4d6a778460f49b210a | /fordulo.cpp | dae181a75ebf1add66f8969a19b2c4e3615c4194 | [
"MIT"
] | permissive | matmedev/LedCube | bd4117b9b7813236c474b90634814a34188ecafa | 066a49a558f16f84ce790e341710b85eb69d4cb9 | refs/heads/master | 2020-03-30T19:47:51.499301 | 2018-10-04T11:10:27 | 2018-10-04T11:10:27 | 151,558,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,873 | cpp | fordulo.cpp | #include "fordulo.h"
#include "cube.h"
void fordulo(int sebesseg) {
setSideSi(4,true);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(4,3,true);
setRowFront(4,4,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(4,2,true);
setRowFront(3,3,true);
setRowFront(4,3,false);
setRowFront(3,4,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(4,1,true);
setRowFront(3,2,true);
setRowFront(2,3,true);
setRowFront(4,2,false);
setRowFront(3,3,false);
setRowFront(2,4,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(4,0,true);
setRowFront(3,1,true);
setRowFront(2,2,true);
setRowFront(1,3,true);
setRowFront(4,1,false);
setRowFront(3,2,false);
setRowFront(2,3,false);
setRowFront(1,4,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(3,0,true);
setRowFront(2,1,true);
setRowFront(3,1,false);
setRowFront(4,0,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(1,2,true);
setRowFront(0,3,true);
setRowFront(1,3,false);
setRowFront(2,2,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(0,2,true);
setRowFront(1,1,true);
setRowFront(2,0,true);
setRowFront(1,2,false);
setRowFront(2,1,false);
setRowFront(3,0,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(0,1,true);
setRowFront(1,0,true);
setRowFront(1,1,false);
setRowFront(2,0,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
setRowFront(0,0,true);
setRowFront(1,0,false);
for(int i=0; i<sebesseg/2; i++) {
showNextLevel();
delay(2);
}
}
|
b6441eaa1165d43ed510e3bad0cc18398d466721 | 980d1a5328066efac35639b8bcd4e5da71a955a3 | /src/fibonacci.cc | b6c87fc413c88155f872caa92e8cd959e2391c3f | [
"MIT"
] | permissive | alibaba-archive/nan-example | 04b8412a7ea7323f28d410f0fa7831be86d7e38c | 9aee1923b2f6706302dda9917818c26eafb2b9b3 | refs/heads/master | 2023-02-04T16:31:27.328733 | 2014-05-05T08:03:15 | 2014-05-05T08:03:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 609 | cc | fibonacci.cc | /**!
* nan-example - src/fibonacci.cc
*
* Copyright(c) 2014 fengmk2 and other contributors.
* MIT Licensed
*
* Authors:
* fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com)
*/
#include <nan.h>
#include "./fibonacci.h"
int _fibonacci(int n) {
if (n == 0 || n == 1) {
return n;
}
return _fibonacci(n - 1) + _fibonacci(n - 2);
}
// function fibonacci(n = 40) {}
NAN_METHOD(fibonacci) {
NanScope();
int n;
if (args.Length() == 0 || !args[0]->IsNumber()) {
n = 40;
} else {
n = args[0]->ToNumber()->Value();
}
NanReturnValue(NanNew<v8::Number>(_fibonacci(n)));
}
|
4b3a44d15179f6614bbecb7bfa4417a88b6e06ca | 50dd200b61f409da284660cfd6e1e05362f4d54d | /src/jimi/internal/NonAssignable.h | 446ba8382004fd7a2698c956c3713615679ac7cb | [
"MIT"
] | permissive | shines77/jimi | f16db3fab4e538bc57fc0d270b8445545706e4e6 | 7c4cbd433d821ad7f5cb2b18b738223434a63edb | refs/heads/master | 2021-01-13T02:19:48.220847 | 2020-09-27T14:17:48 | 2020-09-27T14:17:48 | 20,263,126 | 11 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 882 | h | NonAssignable.h |
#ifndef _JIMI_INTERNAL_NONASSIGNABLE_H_
#define _JIMI_INTERNAL_NONASSIGNABLE_H_
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#include "jimi/basic/stddef.h"
namespace jimi {
namespace internal { // protection from unintended ADL
class NonAssignable
{
public:
#ifdef __GNUC__
//! Explicitly define default construction, because otherwise gcc issues gratuitous warning.
NonAssignable() {}
#endif /* __GNUC__ */
#if defined(JIMI_HAS_DELETED_FUNCTIONS) && (JIMI_HAS_DELETED_FUNCTIONS != 0)
//! Deny assignment operator
NonCopyable & operator =(const NonCopyable &) = delete;
#else
private:
//! Deny assignment operator
NonAssignable & operator =(const NonAssignable &);
#endif
};
} /* namespace of internal */
typedef internal::NonAssignable NonAssignable;
} /* namespace jimi */
#endif /* !_JIMI_INTERNAL_NONASSIGNABLE_H_ */
|
bc5f379a7a4e3855a848b51c1077ef62aeea9854 | d0dcd8492a5afd746bad488ee90c2c282998728f | /src/Timing/timemaster_node.cpp | 470e14b347646dbee3201b34d76acee9469bd304 | [] | no_license | dgitz/icarus_rover_v2 | 4c99bcf31b83701cfb130348acb3113721aa4c9e | 1d25266f4bf9872bb5b98912d9c938e0d280756c | refs/heads/master | 2021-03-09T05:55:47.352511 | 2020-04-05T20:07:07 | 2020-04-05T20:07:07 | 47,700,940 | 1 | 0 | null | 2020-04-05T20:07:08 | 2015-12-09T15:44:10 | C++ | UTF-8 | C++ | false | false | 6,299 | cpp | timemaster_node.cpp | #include "timemaster_node.h"
bool kill_node = false;
bool TimeMasterNode::start(int argc,char **argv)
{
bool status = false;
process = new TimeMasterNodeProcess();
set_basenodename(BASE_NODE_NAME);
initialize_firmware(MAJOR_RELEASE_VERSION,MINOR_RELEASE_VERSION,BUILD_NUMBER,FIRMWARE_DESCRIPTION);
diagnostic = preinitialize_basenode(argc,argv);
if(diagnostic.Level > WARN)
{
return false;
}
diagnostic = read_launchparameters();
if(diagnostic.Level > WARN)
{
return false;
}
process->initialize(get_basenodename(),get_nodename(),get_hostname(),DIAGNOSTIC_SYSTEM,DIAGNOSTIC_SUBSYSTEM,DIAGNOSTIC_COMPONENT);
std::vector<uint8_t> diagnostic_types;
diagnostic_types.push_back(SOFTWARE);
diagnostic_types.push_back(DATA_STORAGE);
diagnostic_types.push_back(SYSTEM_RESOURCE);
diagnostic_types.push_back(TIMING);
diagnostic_types.push_back(SENSORS);
process->enable_diagnostics(diagnostic_types);
process->finish_initialization();
diagnostic = finish_initialization();
if(diagnostic.Level > WARN)
{
return false;
}
if(diagnostic.Level < WARN)
{
diagnostic = process->update_diagnostic(SOFTWARE,INFO,INITIALIZING,"Node Configured. Initializing.");
get_logger()->log_diagnostic(diagnostic);
}
status = true;
return status;
}
eros::diagnostic TimeMasterNode::read_launchparameters()
{
eros::diagnostic diag = diagnostic;
std::string pps_source;
std::string param_pps_source = node_name +"/pps_source";
if(n->getParam(param_pps_source,pps_source) == false)
{
logger->log_warn(__FILE__,__LINE__,"Missing Parameter: pps_source. Using default: self");
pps_source = "self";
}
if(process->set_ppssource(pps_source) == false)
{
char tempstr[512];
sprintf(tempstr,"PPS Source: %s Not Supported",pps_source.c_str());
logger->log_error(__FILE__,__LINE__,std::string(tempstr));
}
if(pps_source == "self")
{
publish_1pps = true;
std::string pps1_topic = "/1PPS";
pps1_pub = n->advertise<std_msgs::Bool>(pps1_topic,10);
}
get_logger()->log_notice(__FILE__,__LINE__,"Configuration Files Loaded.");
return diagnostic;
}
eros::diagnostic TimeMasterNode::finish_initialization()
{
eros::diagnostic diag = diagnostic;
pps1_sub = n->subscribe<std_msgs::Bool>("/1PPS",1,&TimeMasterNode::PPS1_Callback,this);
command_sub = n->subscribe<eros::command>("/command",1,&TimeMasterNode::Command_Callback,this);
std::string device_topic = "/" + std::string(host_name) + "_master_node/srv_device";
srv_device = n->serviceClient<eros::srv_device>(device_topic);
last_pps1_timer = ros::Time::now();
return diagnostic;
}
bool TimeMasterNode::run_001hz()
{
return true;
}
bool TimeMasterNode::run_01hz()
{
return true;
}
bool TimeMasterNode::run_01hz_noisy()
{
std::vector<eros::diagnostic> diaglist = process->get_diagnostics();
for (std::size_t i = 0; i < diaglist.size(); ++i)
{
get_logger()->log_diagnostic(diaglist.at(i));
diagnostic_pub.publish(diaglist.at(i));
}
return true;
}
bool TimeMasterNode::run_1hz()
{
process->update_diagnostic(get_resource_diagnostic());
if(process->get_taskstate() == TASKSTATE_INITIALIZING)
{
logger->log_warn(__FILE__,__LINE__,"Node Not Initialized Yet. Waiting on comms with Master Node.");
{
eros::srv_device srv;
srv.request.query = "SELF";
if(srv_device.call(srv) == true)
{
if(srv.response.data.size() != 1)
{
get_logger()->log_error(__FILE__,__LINE__,"Got unexpected device message.");
}
else
{
new_devicemsg(srv.request.query,srv.response.data.at(0));
}
}
else
{
}
}
}
std::vector<eros::diagnostic> diaglist = process->get_diagnostics();
for (std::size_t i = 0; i < diaglist.size(); ++i)
{
if (diaglist.at(i).Level == WARN)
{
get_logger()->log_diagnostic(diaglist.at(i));
diagnostic_pub.publish(diaglist.at(i));
}
}
return true;
}
bool TimeMasterNode::run_10hz()
{
ready_to_arm = process->get_ready_to_arm();
std::vector<eros::diagnostic> diaglist = process->get_diagnostics();
for (std::size_t i = 0; i < diaglist.size(); ++i)
{
if (diaglist.at(i).Level > WARN)
{
get_logger()->log_diagnostic(diaglist.at(i));
diagnostic_pub.publish(diaglist.at(i));
}
}
return true;
}
bool TimeMasterNode::run_loop1()
{
if(process->publish_1pps())
{
if(process->get_taskstate() == TASKSTATE_RUNNING)
{
std_msgs::Bool msg;
msg.data = true;
pps1_pub.publish(msg);
}
}
return true;
}
bool TimeMasterNode::run_loop2()
{
eros::diagnostic diag = process->update(measure_time_diff(ros::Time::now(),last_loop2_timer),ros::Time::now().toSec());
if(diag.Level > WARN)
{
get_logger()->log_diagnostic(diag);
diagnostic_pub.publish(diag);
}
return true;
}
bool TimeMasterNode::run_loop3()
{
return true;
}
void TimeMasterNode::PPS1_Callback(const std_msgs::Bool::ConstPtr& msg)
{
new_ppsmsg(msg);
}
void TimeMasterNode::Command_Callback(const eros::command::ConstPtr& t_msg)
{
std::vector<eros::diagnostic> diaglist = process->new_commandmsg(t_msg);
new_commandmsg_result(t_msg,diaglist);
}
bool TimeMasterNode::new_devicemsg(std::string query,eros::device t_device)
{
if(query == "SELF")
{
if(t_device.DeviceName == std::string(host_name))
{
set_mydevice(t_device);
process->set_mydevice(t_device);
}
}
if((process->get_taskstate() == TASKSTATE_INITIALIZED))
{
eros::device::ConstPtr device_ptr(new eros::device(t_device));
eros::diagnostic diag = process->new_devicemsg(device_ptr);
}
return true;
}
void TimeMasterNode::thread_loop()
{
while(kill_node == false)
{
ros::Duration(1.0).sleep();
}
}
void TimeMasterNode::cleanup()
{
base_cleanup();
get_logger()->log_info(__FILE__,__LINE__,"[TimeMasterNode] Finished Safely.");
}
/*! \brief Attempts to kill a node when an interrupt is received.
*
*/
void signalinterrupt_handler(int sig)
{
printf("Killing TimeMasterNode with Signal: %d", sig);
kill_node = true;
exit(0);
}
int main(int argc, char **argv) {
signal(SIGINT, signalinterrupt_handler);
signal(SIGTERM, signalinterrupt_handler);
TimeMasterNode *node = new TimeMasterNode();
bool status = node->start(argc,argv);
std::thread thread(&TimeMasterNode::thread_loop, node);
while((status == true) and (kill_node == false))
{
status = node->update(node->get_process()->get_taskstate());
}
node->cleanup();
thread.detach();
return 0;
}
|
c3a1077b94e3c7163c3e77ae9521c126d31362a2 | d0889089b86bc407b154879cb294e703f9303989 | /Lumos/External/imgui/Plugins/ImGuiAl/fonts/MaterialDesign.inl | 752b24522e81eff8750e429459c38d887ac12be2 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain"
] | permissive | jmorton06/Lumos | 9ab96420c619d9baac07e4561d0a7e83645d54c8 | e5f0ebfa9049d3515caaad056fda082a1e9d74ae | refs/heads/main | 2023-09-01T02:48:00.496623 | 2023-07-06T07:31:44 | 2023-07-06T07:31:44 | 164,933,352 | 1,052 | 126 | MIT | 2023-09-06T08:08:18 | 2019-01-09T20:32:10 | C++ | UTF-8 | C++ | false | false | 1,122,614 | inl | MaterialDesign.inl | // File: 'materialdesignicons-webfont.ttf' (531476 bytes)
// Exported using binary_to_compressed_c.cpp
static const unsigned int MaterialDesign_compressed_size = 361566;
static const unsigned int MaterialDesign_compressed_data[361568/4] =
{
0x0000bc57, 0x00000000, 0x141c0800, 0x00000400, 0x00010037, 0x000a0000, 0x00030080, 0x2f534f20, 0x57eb4f32, 0x0100005b, 0x2c158228, 0x616d6356,
0xa050b970, 0x3900000a, 0x381382b0, 0x796c6762, 0x68a58066, 0x73000074, 0xc2060048, 0x61656808, 0x495e1264, 0x202b8273, 0x210382d0, 0x10826836,
0x0ffd0323, 0x200b82c1, 0x260382ac, 0x746d6824, 0x82181678, 0x01003209, 0x38000080, 0x636f6c30, 0xcfaf2d61, 0x3b00007c, 0x080f8214, 0x616d3430,
0x430f7078, 0x0000e800, 0x00000801, 0x616e2000, 0xaa65656d, 0x070044ec, 0x00005035, 0x6f70b202, 0x50cc7473, 0x0700d734, 0x00000438, 0xab830fe4,
0xffc0012d, 0x022e00c0, 0xff000000, 0x830c02f4, 0x8a002011, 0x850e2000, 0x00012e11, 0xe2fb5a00, 0x3c0f5f28, 0x020b00f5, 0x22008300, 0x82849ad8,
0x000022b7, 0x270782d8, 0xbffffeff, 0xce010c02, 0x08221782, 0x43860200, 0x3d823382, 0x2d00dc22, 0x00201582, 0x00221582, 0x01820a00, 0x00206682,
0x01200085, 0x90282882, 0x08000500, 0x66010f00, 0x47201282, 0xf5240786, 0x84001900, 0x05213083, 0x92158203, 0x66502902, 0x40006445, 0xe8fd3000,
0x7782bb85, 0x26824120, 0x03820120, 0x18200283, 0x00103b83, 0x23293803, 0x03000000, 0x1c200386, 0x2206b978, 0x8403005c, 0x001c2409, 0x82400004,
0x000c261b, 0x00020008, 0x28098204, 0xfb5a0039, 0xffe8fd1d, 0x280b82ff, 0x00300000, 0xfb01f041, 0x270d831f, 0xcaffd1ff, 0x23102410, 0x1c843784,
0x01210485, 0xab078506, 0x02012905, 0x06050403, 0x0a090807, 0x0b393586, 0x0f0e0d0c, 0x13121110, 0x17161514, 0x1b1a1918, 0x1f1e1d1c, 0x23222120,
0x40208624, 0x4420aa06, 0x6020ab82, 0xa0200382, 0xe8240382, 0x0c010000, 0x13820382, 0x82900121, 0x00b02407, 0x821c0200, 0x82682003, 0x82a42003,
0x00f42403, 0x823c0300, 0x82702003, 0x82982003, 0x82bc2003, 0x00f82403, 0x82200400, 0x824c2003, 0x82802003, 0x82ac2003, 0x00c82403, 0x82040500,
0x822c2003, 0x212b8203, 0x0782a805, 0x0000f024, 0x03823006, 0x03827820, 0x06203b82, 0x06252382, 0x070000ec, 0x20038228, 0x82038258, 0x8207203b,
0x82082027, 0xdc082933, 0xc4090000, 0x080a0000, 0x64200382, 0xd0240382, 0x480b0000, 0x9c240382, 0x0c0c0000, 0x8c240382, 0x180d0000, 0x07830382,
0x0e202b82, 0x0f203f82, 0x0f201782, 0x1024a382, 0x1000001c, 0x10204b82, 0x11249782, 0x11000054, 0x1220a382, 0x12250782, 0x130000b8, 0x8203825c,
0x82142073, 0x82152053, 0x82162013, 0x441624f2, 0x82160000, 0xfc1629fb, 0x84170000, 0x10180000, 0xcc270382, 0x7c190000, 0x821a0000, 0x821a200b,
0x821a20af, 0x821a2097, 0x821b204f, 0x821b202b, 0x821b2073, 0x821c201f, 0x821c200b, 0x821d2097, 0x4c1e28d7, 0xf41e0000, 0x821f0000, 0x50202563,
0x38210000, 0xdf820382, 0x00642224, 0x37822200, 0x0b822320, 0x005c2424, 0x1f822400, 0x3f822520, 0xab822620, 0x007c2624, 0x9b822600, 0x37822620,
0x003c2725, 0x82782700, 0x25278203, 0x00003028, 0x03825828, 0x28251f82, 0x290000e8, 0x82038214, 0x8429211f, 0x6b820782, 0x47822a20, 0x009c2a25,
0x82042b00, 0x826c2003, 0x82982003, 0x00c02403, 0x82082c00, 0x82742003, 0x00e02403, 0x82202d00, 0x212f8203, 0x0782ac2d, 0x0000d424, 0x03821c2e,
0x03828820, 0x2f246b82, 0x2f000034, 0x2f243382, 0x2f0000bc, 0x30202b82, 0x30208b82, 0x30201382, 0x30206f82, 0x31206f82, 0x31207b82, 0x31241f82,
0x320000fc, 0x32200b82, 0x33202382, 0x33257382, 0x340000c8, 0x24038260, 0x350000b0, 0x24038218, 0x360000cc, 0x82038248, 0xec362557, 0x68370000,
0xb4230382, 0x82380000, 0xd438216b, 0x20054f7d, 0x205b823a, 0x20d7823a, 0x201f823a, 0x20ab823b, 0x2407823b, 0x00002c3c, 0x2513823c, 0x0000c43c,
0x0382103d, 0x03825c20, 0x0382a820, 0x0000f424, 0x0382403e, 0x03828c20, 0x0000d824, 0x0382303f, 0x3f20c382, 0x40200b82, 0x40249f82, 0x40000090,
0x41203f82, 0x41207382, 0x42202f82, 0x4224ef82, 0x42000054, 0x42248f82, 0x430000fc, 0x4320ab82, 0x44245382, 0x44000050, 0x45247f82, 0x45000070,
0x4624b382, 0x4600004c, 0x47283782, 0x47000064, 0x480000a4, 0x48245382, 0x490000dc, 0x49241782, 0x4a0000bc, 0x4a208f82, 0x4b20b782, 0x4b244b82,
0x4c0000c0, 0x4c200f82, 0x4d206b82, 0x4d243f82, 0x4e00009c, 0x4e20cf82, 0x4f201f82, 0x50204382, 0x50248782, 0x51000094, 0x5224a782, 0x52000018,
0x53248782, 0x53000020, 0x54206f82, 0x54240782, 0x54000098, 0x55208b82, 0x55208382, 0x56205b82, 0x58204b82, 0x59202b82, 0x5b25ef82, 0x5c000044,
0x82038274, 0x245d247b, 0x825d0000, 0xe85d2487, 0x825e0000, 0xe45e2477, 0x825f0000, 0x605f21ef, 0xa3820782, 0x00f45f24, 0x0f826000, 0x82886021,
0x00d02307, 0x2f826100, 0x006c6125, 0x82386200, 0x20438203, 0x28538263, 0x0000f063, 0x0000b864, 0x242f8265, 0x00000866, 0x25278266, 0x00003c67,
0x03820468, 0x0000cc23, 0x20838269, 0x20e3826a, 0x201f826a, 0x2493826a, 0x0000686b, 0x20a7826b, 0x2023826c, 0x24db826c, 0x0000ac6c, 0x20d3826c,
0x2527826d, 0x0000b06d, 0x0382006e, 0x6e20a782, 0x6f202382, 0x6f20cb82, 0x70250b82, 0x70000014, 0x82038290, 0x8c712427, 0x82710000, 0x82722097,
0x8273200f, 0xc4732563, 0x64740000, 0x07820382, 0x00187529, 0x00807500, 0x82347600, 0x00b42303, 0x63827700, 0x53827720, 0xff827820, 0x00987828,
0x00f87800, 0x53827900, 0xeb827920, 0x27827920, 0x82a87921, 0x25f3820f, 0x0000287a, 0x0382787a, 0x0000e023, 0x20ef827b, 0x203b827b, 0x24e3827c,
0x0000c07c, 0x2497827d, 0x0000dc7d, 0x241f827e, 0x0000e87e, 0x203b827f, 0x201f827f, 0x205b8280, 0x24f78280, 0x00004881, 0x24478281, 0x00007c82,
0x24538283, 0x00001c84, 0x20738284, 0x25378285, 0x0000f085, 0x0382a086, 0x8720f782, 0x8824cf82, 0x88000044, 0x89200782, 0x89204382, 0x8a25cb82,
0x8b00005c, 0x20038260, 0x820382a4, 0x828c209b, 0x828d2037, 0x828d20ff, 0xcc8d24cf, 0x828e0000, 0xac8e242f, 0x828f0000, 0x948f2493, 0x82900000,
0x8290205b, 0x82902033, 0xbc9021fb, 0x5f820f82, 0x7f829120, 0x006c9124, 0x27829100, 0x9f829120, 0x23829220, 0xab829220, 0xbb829220, 0x000c9324,
0x6b829300, 0x0b829320, 0x00149425, 0x82689400, 0x00c82303, 0x4f829500, 0x829c9521, 0x25638207, 0x0000d096, 0x03820897, 0x03824020, 0x03827420,
0x9720cb82, 0x97201782, 0x98245b82, 0x98000010, 0x98202b82, 0x9824c382, 0x990000f4, 0x99245782, 0x9a0000d8, 0x9a256f82, 0x9b0000e4, 0x82038258,
0x829c202b, 0xb89c293b, 0x3c9d0000, 0x809e0000, 0xdb820382, 0x2b829f20, 0x0034a029, 0x00b4a000, 0x8238a100, 0x82c42003, 0x20e38203, 0x203382a2,
0x248382a2, 0x000024a3, 0x20f782a3, 0x243382a4, 0x000088a4, 0x28bb82a4, 0x000098a5, 0x0000e0a5, 0x201382a6, 0x281b82a6, 0x000000a7, 0x000084a7,
0x20d382a8, 0x241b82a8, 0x000050a9, 0x20e782a9, 0x24d782aa, 0x0000b0aa, 0x243382aa, 0x00004cab, 0x201b82ab, 0x245b82ab, 0x000044ac, 0x203782ac,
0x29cf82ad, 0x000064ad, 0x0000bcad, 0x03825cae, 0x00009423, 0x215382af, 0x078290af, 0xb020c782, 0xb0202f82, 0xb0243f82, 0xb10000fc, 0xb220a782,
0xb2244f82, 0xb2000070, 0xb3284f82, 0xb3000048, 0xb40000c0, 0xb4252f82, 0xb500009c, 0x82038218, 0x82b62083, 0x82b62053, 0x82b720cb, 0x82b72017,
0x82b82083, 0x82b820bf, 0x82b82017, 0x60b928af, 0xd0b90000, 0x82ba0000, 0x82ba206b, 0x6cbb2873, 0xe4bb0000, 0x82bc0000, 0x82bc20eb, 0x2cbd2533,
0x74bd0000, 0x13820382, 0x2b82be20, 0x0040bf24, 0x1382c000, 0x2782c120, 0x00c4c125, 0x8234c200, 0x20478203, 0x201382c3, 0x24ab82c3, 0x0000d8c3,
0x21f382c4, 0x078268c4, 0xc5200b82, 0xc520cb82, 0xc520d782, 0xc620af82, 0xc624a782, 0xc70000dc, 0xc720a782, 0xc7207f82, 0xc820b382, 0xc820c382,
0xc920ff82, 0xc9201382, 0xca202782, 0xca20b382, 0xca205b82, 0xcb20c782, 0xcb255b82, 0xcc00008c, 0x82038210, 0x82cc209f, 0x28cd248f, 0x82cd0000,
0x82ce20a7, 0x82ce209f, 0x82ce20e3, 0x82cf207b, 0x82cf20d7, 0x82d02013, 0xc8d02553, 0x20d10000, 0x4f820382, 0x5782d120, 0x0050d225, 0x82a8d200,
0x24e38203, 0x000000d3, 0x208f82d3, 0x295b82d3, 0x000014d4, 0x000080d4, 0x038204d5, 0x0000a023, 0x204f82d6, 0x205b82d7, 0x204382d7, 0x209782d7,
0x200f82d8, 0x243f82d8, 0x000044d9, 0x245b82d9, 0x000054da, 0x200f82da, 0x240782db, 0x0000b0db, 0x20c782db, 0x204b82dc, 0x207f82dc, 0x209b82dd,
0x208b82dd, 0x245f82de, 0x0000f4de, 0x205382e0, 0x246382e0, 0x00001ce1, 0x200782e1, 0x204382e2, 0x241b82e3, 0x000098e3, 0x202b82e4, 0x208f82e4,
0x258f82e4, 0x000008e5, 0x038240e5, 0xe5200f82, 0xe6205b82, 0xe6200b82, 0xe7202382, 0xe720cf82, 0xe8245782, 0xe9000094, 0xea246382, 0xea000018,
0xec29fb82, 0xec000038, 0xed0000ec, 0x2303828c, 0xee0000dc, 0xee202782, 0xee201f82, 0xef201b82, 0xef244b82, 0xef000078, 0xf0201782, 0xf020db82,
0xf1246782, 0xf2000088, 0xf220af82, 0xf2201782, 0xf3204f82, 0xf3208782, 0xf424cb82, 0xf4000068, 0xf5209782, 0xf5202782, 0xf5201f82, 0xf6291382,
0xf6000010, 0xf7000074, 0x20038220, 0x24038248, 0xf80000d8, 0x23038290, 0xf90000d4, 0xf9207782, 0xfa200b82, 0xfa286382, 0xfa00006c, 0xfb0000c8,
0xfb242782, 0xfc0000a4, 0xfc21d782, 0x82078258, 0x82fd20cf, 0x82fd208f, 0x82fe20b3, 0x82fe204b, 0x82fe2027, 0x1cff293b, 0x40000100, 0x74010100,
0xf0240382, 0x68020100, 0xac240382, 0x00030100, 0x58200382, 0xcc240382, 0x28040100, 0x94240382, 0x2c050100, 0xa8240382, 0x30060100, 0x7c200382,
0xd8240382, 0x4c070100, 0x23820382, 0x012a7a82, 0x0100c409, 0x0100980a, 0x0382340c, 0x0d201b82, 0x0d284382, 0x0d010078, 0x0e0100b4, 0x0e202782,
0x0e216382, 0x240b82d0, 0x0f0100f4, 0x8203823c, 0xc80f251b, 0x14100100, 0x1b820382, 0x5f821120, 0x00c01124, 0x5f821201, 0x3b821320, 0x97821320,
0x00b01325, 0x82041401, 0x201f8203, 0x205f8214, 0x20378215, 0x25838215, 0x0100f815, 0x03825016, 0x0100b824, 0x03822017, 0x03826c20, 0x18204b82,
0x18284382, 0x18010080, 0x190100fc, 0x1924bf82, 0x1a0100bc, 0x1a250782, 0x1b0100ec, 0x23038288, 0x1c0100d4, 0x1c202f82, 0x1c202f82, 0x1d201b82,
0x1d240b82, 0x1d010060, 0x1e253b82, 0x1e010008, 0x8203825c, 0x821f205f, 0x441f247f, 0x821f0100, 0x1820250b, 0x68200100, 0xe0240382, 0x54210100,
0x94200382, 0x47820382, 0xb7822220, 0x00902224, 0x17822201, 0xb3822320, 0x3b822320, 0x2f822320, 0x00282429, 0x008c2401, 0x820c2501, 0x21678203,
0x0782ac25, 0x26202382, 0x26292f82, 0x2601004c, 0x270100cc, 0x82038248, 0x242824cf, 0x82280100, 0x82282023, 0x822820e7, 0x382928d3, 0xb4290100,
0x822a0100, 0x642a214f, 0xa3820782, 0x3b822a20, 0x13822b20, 0x2b822c20, 0x57822c20, 0x00f02c24, 0x87822d01, 0x829c2d21, 0x00e42307, 0x77822e01,
0x00a42e24, 0x3b822f01, 0x97822f20, 0x00783024, 0xaf823101, 0x001c3225, 0x82803201, 0x20238203, 0x20238233, 0x20d38234, 0x2c6b8234, 0x01005035,
0x0100ec35, 0x0100b836, 0x201f8237, 0x20778237, 0x241f8238, 0x01008438, 0x20b38239, 0x201f8239, 0x206b823a, 0x281b823a, 0x0100303b, 0x0100983b,
0x240f823c, 0x0100dc3c, 0x203f823d, 0x20c7823e, 0x2467823e, 0x0100883f, 0x202b8240, 0x201b8241, 0x203f8241, 0x2d3b8242, 0x01007042, 0x0100c842,
0x01003443, 0x03820844, 0x03825820, 0x0100d827, 0x01007445, 0x241b8246, 0x01003c47, 0x240f8247, 0x01009448, 0x209f8249, 0x20cf8249, 0x20cf8249,
0x20e7824a, 0x240f824b, 0x0100ac4b, 0x2047824c, 0x2043824c, 0x2057824d, 0x24d7824d, 0x0100204e, 0x259b824e, 0x0100044f, 0x0382904f, 0x50208782,
0x50207782, 0x51208382, 0x51209f82, 0x5220c782, 0x52209382, 0x52205382, 0x53281b82, 0x53010038, 0x540100b0, 0x54201b82, 0x54207f82, 0x54205382,
0x55202b82, 0x55204b82, 0x5620eb82, 0x56204b82, 0x57200f82, 0x57255f82, 0x5701004c, 0x240382a0, 0x580100e8, 0x2403822c, 0x590100b4, 0x20038200,
0x20038260, 0x230382a8, 0x5a0100fc, 0x5a24e782, 0x5b0100e4, 0x5b20e382, 0x5c291382, 0x5c010028, 0x5d0100c4, 0x82038254, 0xe05d287b, 0x445e0100,
0x825f0100, 0x825f20ef, 0x4060247f, 0x82600100, 0x8261206b, 0x826120c7, 0xcc61247f, 0x82620100, 0x826220b7, 0x8263201b, 0x82632017, 0x82642083,
0x82652073, 0xc06524ef, 0x82660100, 0x82662077, 0x82672063, 0x826720af, 0x82682027, 0x7c68247f, 0x82680100, 0x8269202f, 0x826920ab, 0x826920cb,
0x826a2063, 0x826b20df, 0x706b245b, 0x826b0100, 0x746c2487, 0x826d0100, 0x826d20bf, 0xc86d2823, 0x8c6e0100, 0x826f0100, 0x826f20d3, 0x827020db,
0x3c712447, 0x82710100, 0x82712047, 0x6c72287f, 0x48730100, 0x82740100, 0x8274201f, 0xf074247b, 0x82750100, 0x8275206f, 0x8275208f, 0x8276208f,
0x8277204f, 0x38772477, 0x82770100, 0x8277203b, 0x827820ef, 0x8278202b, 0x8279201f, 0x82792017, 0x987928c7, 0xf4790100, 0x827a0100, 0x827a20eb,
0x347b24f7, 0x827b0100, 0x047c241f, 0x827c0100, 0x827d2033, 0x827d20ff, 0x827e205b, 0x827f2093, 0x827f20fb, 0x8280209f, 0x8280201b, 0x8281202b,
0xbc8124b7, 0x82820100, 0x82822083, 0x828320d7, 0x8283203b, 0x828320af, 0x68842987, 0xc4840100, 0x1c850100, 0xcb820382, 0x00ec8524, 0x2f828601,
0x5b828620, 0x00788724, 0xbf828701, 0x00188829, 0x00b48801, 0x822c8901, 0x009c2303, 0x07828a01, 0xa3828a20, 0xa3828b20, 0x00708b28, 0x00ac8b01,
0x73828c01, 0x82948c21, 0x00e02407, 0x82548d01, 0x25478203, 0x0100208e, 0x0382388e, 0x8e210f82, 0x8207826c, 0x828e205f, 0x828f2087, 0x828f20ab,
0xb08f2477, 0x828f0100, 0x509024ff, 0x82900100, 0x8290201b, 0x3c91243b, 0x82910100, 0x829120eb, 0x8292205f, 0xc89224af, 0x82930100, 0x829320d3,
0x64942487, 0x82950100, 0x60952173, 0xb3820782, 0x2f829520, 0x0f829620, 0x17829620, 0x1f829620, 0x2f829720, 0x00a09725, 0x82109801, 0x248b8203,
0x01002899, 0x209f8299, 0x204b8299, 0x2007829a, 0x20e3829b, 0x8207839b, 0x829c2077, 0x7c9c280b, 0xe89c0100, 0x829d0100, 0x749d21ef, 0xb8240782,
0x149e0100, 0x5f820382, 0x47829e20, 0xc3829e20, 0x1b829f20, 0x9b829f20, 0x00fc9f24, 0xcf82a001, 0x0b82a020, 0x0b82a020, 0x0080a124, 0x4382a201,
0x6782a220, 0x5382a320, 0x0004a428, 0x0090a401, 0x9782a501, 0x0b82a620, 0xf382a620, 0x00aca625, 0x8218a701, 0x20fb8203, 0x294f82a7, 0x01002ca8,
0x01009ca8, 0x038238a9, 0x0382b420, 0xaa204782, 0xaa203b82, 0xab24e382, 0xab010034, 0xac24c382, 0xac010044, 0xad288782, 0xad01005c, 0xae0100dc,
0xae253382, 0xaf0100a8, 0x82038208, 0x82af2047, 0x82b02033, 0x82b02007, 0x82b120d3, 0x82b2208b, 0x50b2246b, 0x82b20100, 0x82b32043, 0x82b3209f,
0x82b4203b, 0x24b5299b, 0x98b50100, 0x3cb60100, 0xbc270382, 0x4cb70100, 0x82b80100, 0xa4b82443, 0x82b90100, 0x82b92053, 0x8cb92433, 0x82ba0100,
0x82ba20a7, 0x82bb2047, 0x82bc200f, 0x82bd2093, 0x82bd204f, 0x82be202f, 0x74be28db, 0xd8be0100, 0x82bf0100, 0x82c0201b, 0x14c1284f, 0x7cc10100,
0x82c20100, 0xb0c2240f, 0x82c30100, 0x82c3200f, 0x82c4200f, 0x82c4202b, 0x82c520d7, 0xc0c52863, 0xe0c60100, 0x82c70100, 0x64c7211b, 0x0f820782,
0x0028c824, 0x6b82c801, 0x0010c925, 0x8230ca01, 0x243b8203, 0x0100f4ca, 0x213782cb, 0x078268cb, 0xcc206382, 0xcc202f82, 0xcd202f82, 0xcd201f82,
0xcd25b782, 0xce0100d4, 0x23038238, 0xcf0100ac, 0xcf20c382, 0xcf241382, 0xd00100ec, 0xd0200b82, 0xd1280b82, 0xd1010034, 0xd20100a8, 0xd2203782,
0xd320d382, 0xd3254b82, 0xd40100cc, 0x23038270, 0xd50100f8, 0xd5240782, 0xd60100e8, 0xd7205f82, 0xd7205382, 0xd725cb82, 0xd90100e4, 0x20038220,
0x82038278, 0x82d92057, 0x2cda2427, 0x82da0100, 0x60db249b, 0x82dc0100, 0x90dc2153, 0x57820782, 0x1b82dc20, 0x0f82dd20, 0xd782dd20, 0x5782dd20,
0xbb82de20, 0xdf82de20, 0x2b82de20, 0xaf82de20, 0x5382df20, 0x00dcdf25, 0x8204e001, 0x82582003, 0x24338203, 0x010048e1, 0x20ef82e1, 0x252782e2,
0x010088e2, 0x038224e3, 0xe4240f82, 0xe401000c, 0xe420b782, 0xe424b782, 0xe50100d0, 0xe5209b82, 0xe620df82, 0xe6257382, 0xe70100c8, 0x82038254,
0x82e7203f, 0x82e82073, 0x82e8209b, 0x82e92057, 0x82ea2067, 0x82ea205b, 0xb0eb24c3, 0x82ec0100, 0x40ec2143, 0x4f820782, 0xcb82ed20, 0x0084ee24,
0x6782f001, 0x00e0f028, 0x0064f101, 0xd782f201, 0x0028f324, 0xaf82f301, 0x3382f320, 0x3382f420, 0x7f82f520, 0x0080f525, 0x8200f601, 0x20c38203,
0x204f82f7, 0x204382f7, 0x256382f7, 0x0100b8f7, 0x038208f8, 0xf8200f82, 0xf9207b82, 0xf9201b82, 0xf9204782, 0xfa243b82, 0xfa01001c, 0xfb242f82,
0xfc010068, 0xfc219b82, 0x24078294, 0xfd0100ec, 0x82038250, 0x82fe206f, 0xb4fe2413, 0x82ff0100, 0x82ff2007, 0xf8ff2547, 0x50000200, 0xa0200382,
0xf4240382, 0x20010200, 0x60240382, 0x18020200, 0x68240382, 0x10030200, 0x34200382, 0xac200382, 0xe8240382, 0x48040200, 0xc4240382, 0x2c050200,
0xa4240382, 0x1c060200, 0x94240382, 0x0c070200, 0xb0280382, 0x00080200, 0x58080200, 0xdc240382, 0x40090200, 0xfc270382, 0x8c0a0200, 0x820b0200,
0xa80b2517, 0x380c0200, 0x9c200382, 0xd4280382, 0x640d0200, 0x280e0200, 0x7c200382, 0xec240382, 0x440f0200, 0x43820382, 0x00041024, 0x83821002,
0x5f821020, 0x57821120, 0x006c1124, 0x2f821102, 0x07821220, 0xaf821220, 0x003c1330, 0x00bc1302, 0x00981402, 0x00781502, 0x5b821602, 0x00c81624,
0x33821702, 0x00841725, 0x82541802, 0x24af8203, 0x02007019, 0x208b821a, 0x202f821b, 0x204b821b, 0x20d3821c, 0x20cf821d, 0x209b821d, 0x254f821e,
0x0200301f, 0x03825c1f, 0x1f203b82, 0x2020fb82, 0x2020af82, 0x21200b82, 0x2124a382, 0x220200b4, 0x22205782, 0x2221fb82, 0x240b8288, 0x230200b8,
0x20038214, 0x82038250, 0x8223205b, 0x822420d7, 0x82242027, 0x1c252557, 0x68250200, 0xbb820382, 0x5f822620, 0x00402624, 0x7b822602, 0x9f822620,
0xa7822620, 0xff822720, 0x0b822820, 0x00902928, 0x00e82902, 0x43822a02, 0x00f02a24, 0x13822b02, 0x1b822c20, 0xf7822d20, 0x00242e24, 0x3f822e02,
0x57822e20, 0x00642f25, 0x82a82f02, 0x00ec2303, 0x87823002, 0x33823020, 0x83823120, 0x2b823220, 0x67823320, 0x23823320, 0x77823420, 0x37823520,
0x13823520, 0xef823620, 0x00e43624, 0x77823702, 0xbf823720, 0x13823820, 0xcf823820, 0x00283924, 0xff823902, 0xaf823920, 0x4b823920, 0xef823a20,
0x00803a24, 0x7f823b02, 0x82c43b21, 0x24138207, 0x0200203c, 0x2447823c, 0x0200783c, 0x20c7823d, 0x211f823d, 0x0b829c3d, 0x3e204f82, 0x3f244f82,
0x3f020034, 0x40202b82, 0x40240b82, 0x40020074, 0x41209782, 0x41250b82, 0x420200d8, 0x2403822c, 0x43020094, 0x82038214, 0x82432063, 0x82442097,
0x8245207f, 0x82452067, 0x004624db, 0x82460200, 0xf846244f, 0x82470200, 0x82482007, 0x8248205f, 0x1049242f, 0x82490200, 0x824a20a3, 0x604a2807,
0xbc4a0200, 0x824b0200, 0x7c4b25ff, 0x404c0200, 0xb8230382, 0x824d0200, 0x824d2097, 0x484e28e3, 0xe04e0200, 0x824f0200, 0x824f20c7, 0x824f2063,
0x82502063, 0x825020ab, 0x82512053, 0x825120c7, 0x82522057, 0x82522047, 0x88522447, 0x82530200, 0x8253200b, 0x825420bf, 0x9054247b, 0x82550200,
0x82552037, 0x825620bf, 0xf0562477, 0x82570200, 0xc0572427, 0x82580200, 0x825820a3, 0x38592477, 0x82590200, 0x825a201f, 0x645a2477, 0x825a0200,
0x825b206b, 0x825c2007, 0x825d2063, 0x825e20eb, 0x825e2063, 0x825f2007, 0xb45f2537, 0x08600200, 0x48200382, 0xb0230382, 0x82610200, 0x706121cf,
0x33820782, 0x00446225, 0x82146302, 0x00dc2303, 0x1b826402, 0x23826520, 0x00cc6525, 0x822c6602, 0x82982003, 0x00d42403, 0x82286702, 0x24438203,
0x0200e467, 0x20478268, 0x207b8268, 0x205f8268, 0x206b8268, 0x20d78268, 0x240b8269, 0x0200e869, 0x206b826a, 0x25ab826a, 0x02007c6b, 0x0382186c,
0x6d203382, 0x6d201b82, 0x6d20c382, 0x6e206b82, 0x6e203782, 0x6f245b82, 0x70020074, 0x70201f82, 0x7120af82, 0x71244382, 0x720200f4, 0x7221c782,
0x820782a4, 0x3c732463, 0x82730200, 0xac732823, 0x58740200, 0x82750200, 0x82752043, 0x04762453, 0x82760200, 0xec76242f, 0x82770200, 0x0c78249b,
0x82780200, 0x5c792407, 0x827a0200, 0xb87a24c3, 0x827b0200, 0x827c2083, 0x887c24c3, 0x827c0200, 0x687d246b, 0x827d0200, 0x827e207b, 0x547f2497,
0x827f0200, 0xf87f2423, 0x82800200, 0x82802017, 0x8280205f, 0x828120bf, 0xbc812463, 0x82810200, 0x24822423, 0x82820200, 0x8282204f, 0xec822457,
0x82830200, 0x8283200f, 0x828320a7, 0x82842037, 0x828420fb, 0x7084245b, 0x82840200, 0x6c852437, 0x82850200, 0x82862043, 0x828720ab, 0x288828a3,
0xd4880200, 0x82890200, 0x82892083, 0xdc89244f, 0x828a0200, 0x828a2097, 0x828b204b, 0x9c8b25fb, 0x108c0200, 0xd8240382, 0x348d0200, 0xb4280382,
0xc88e0200, 0x308f0200, 0xfb820382, 0x00189025, 0x824c9002, 0x00a82403, 0x82209102, 0x24438203, 0x02003c92, 0x201f8293, 0x20378294, 0x200f8294,
0x20b78295, 0x246f8296, 0x02009497, 0x24078298, 0x02008499, 0x305b829a, 0x0200049b, 0x0200c09b, 0x0200789c, 0x0200449d, 0x290f829e, 0x0200e89e,
0x0200909f, 0x03820ca0, 0xa1209782, 0xa220c382, 0xa3205b82, 0xa3205b82, 0xa4209382, 0xa4202382, 0xa5209382, 0xa520d782, 0xa6200f82, 0xa6246b82,
0xa70200f0, 0xa721c782, 0x20078288, 0x230382b0, 0xa80200cc, 0xa8205f82, 0xa8205782, 0xa9203f82, 0xaa204782, 0xaa20eb82, 0xab244782, 0xab020000,
0xac248382, 0xac02005c, 0xad292782, 0xad020040, 0xae0200e0, 0x24038258, 0xaf0200ec, 0x27038280, 0xb00200c4, 0xb1020060, 0xb1254382, 0xb20200ac,
0x8203821c, 0x82b320ff, 0x82b32033, 0x2cb424f3, 0x82b40200, 0xdcb424d3, 0x82b50200, 0x82b52057, 0xc8b52513, 0x4cb60200, 0x93820382, 0x1f82b720,
0x00d0b724, 0x2382b802, 0x9b82b820, 0x4782b920, 0xf382b920, 0x00f4b924, 0x2f82ba02, 0x00b4ba24, 0xbf82bb02, 0x828cbb21, 0x251f8207, 0x0200bcbc,
0x038270bd, 0x0200e423, 0x20fb82be, 0x205782be, 0x204b82bf, 0x249782bf, 0x020048c0, 0x201f82c0, 0x202f82c1, 0x285382c1, 0x020044c2, 0x0200a8c2,
0x240f82c3, 0x0200e8c3, 0x202782c4, 0x20b782c4, 0x208382c5, 0x205f82c5, 0x240f82c6, 0x0200a0c6, 0x202782c7, 0x201782c7, 0x20eb82c8, 0x209382c8,
0x20bb82c9, 0x20fb82ca, 0x230783ca, 0xcb0200c0, 0xcc292382, 0xcc020034, 0xcd0200b8, 0x20038220, 0x23038288, 0xce0200f8, 0xce20a782, 0xce209f82,
0xcf207b82, 0xd024fb82, 0xd0020010, 0xd1204382, 0xd1202382, 0xd2201f82, 0xd3207b82, 0xd320df82, 0xd4249382, 0xd4020028, 0xd420af82, 0x8b820b83,
0x0080d525, 0x8218d602, 0x20638203, 0x20f382d7, 0x244b82d7, 0x020068d8, 0x204f82d8, 0x249b82d8, 0x020030d9, 0x200f82d9, 0x200b82d9, 0x20cb82da,
0x24ab82db, 0x0200ccdb, 0x206b82dc, 0x24ff82dd, 0x0200b0dd, 0x20fb82dd, 0x20db82de, 0x209b82de, 0x241382de, 0x02009cde, 0x202b82de, 0x240b82df,
0x020060e0, 0x200f82e0, 0x240b82e1, 0x020024e2, 0x242382e3, 0x020094e3, 0x209f82e4, 0x20ef82e5, 0x203f82e5, 0x24f382e6, 0x020050e7, 0x20bb82e7,
0x24af82e7, 0x0200e4e8, 0x204f82e9, 0x218f82e9, 0x0b826ce9, 0xea20a782, 0xea204782, 0xeb201782, 0xeb203782, 0xec207b82, 0xec244f82, 0xed0200f0,
0xee254b82, 0xee020040, 0x8203828c, 0x82ef2017, 0xc0ef24df, 0x82f00200, 0x82f020a7, 0x82f0201b, 0x82f12013, 0x82f12077, 0x82f120e7, 0x20f225b7,
0x7cf20200, 0xb3820382, 0x2b82f320, 0x7382f320, 0x0004f424, 0xff82f402, 0x00c4f425, 0x8218f502, 0x20ef8203, 0x201f82f5, 0x20b782f6, 0x208782f7,
0x203782f7, 0x208b82f8, 0x20ab82f8, 0x204b82f9, 0x208b82f9, 0x243782f9, 0x020010fa, 0x213782fa, 0x0782a0fa, 0xfb249b82, 0xfb020030, 0xfb200b82,
0xfc20cf82, 0xfc201782, 0xfd240782, 0xfd02002c, 0xfe248782, 0xfe020000, 0xfe20b382, 0xff204b82, 0xff255f82, 0x000300bc, 0x24038214, 0x01030060,
0x24038254, 0x020300d8, 0x82038230, 0x04032517, 0x24030300, 0x90230382, 0x82040300, 0x3404210b, 0xac240782, 0x2c050300, 0xb4200382, 0xf0270382,
0x5c060300, 0x82070300, 0x8208200f, 0x82082007, 0x8209200f, 0xcc092407, 0x820a0300, 0x180b2843, 0x880b0300, 0x820c0300, 0x840c210b, 0xc0240782,
0x000d0300, 0x48200382, 0xc8240382, 0x4c0e0300, 0x68200382, 0xf8280382, 0x9c0f0300, 0x0c100300, 0xa8230382, 0x82110300, 0x82112017, 0x8212205f,
0x8212202b, 0x82132037, 0xa413299f, 0xe4130300, 0x50140300, 0x0b820382, 0x00641528, 0x00fc1503, 0x6f821603, 0x008c1628, 0x00441703, 0x3f821803,
0x3b821820, 0x00c41824, 0x73821903, 0x82b81921, 0x205b8207, 0x202b821a, 0x24c3821a, 0x0300081b, 0x2877821b, 0x03003c1c, 0x0300981c, 0x252b821d,
0x0300941d, 0x0382281e, 0x03828020, 0x0300ec24, 0x0382701f, 0x20207b82, 0x20247b82, 0x20030040, 0x20200f82, 0x20202b82, 0x2124bb82, 0x2103001c,
0x2124cf82, 0x220300d4, 0x22204382, 0x2320ab82, 0x23205382, 0x23201f82, 0x2420fb82, 0x24208382, 0x24200b82, 0x25204782, 0x25203b82, 0x2624bb82,
0x26030018, 0x2720af82, 0x27246382, 0x280300b0, 0x28242f82, 0x29030074, 0x29215f82, 0x24078248, 0x2a0300cc, 0x82038260, 0x2c2b285f, 0xd02b0300,
0x822c0300, 0x822c20c7, 0x042d2567, 0x382d0300, 0x3f820382, 0x00242e25, 0x82582e03, 0x829c2003, 0x20338203, 0x20f3822f, 0x24638230, 0x0300bc30,
0x215b8231, 0x07825c31, 0x0300ac24, 0x03825432, 0x3320e382, 0x33200782, 0x34208782, 0x3429bf82, 0x350300fc, 0x36030068, 0x23038210, 0x370300e0,
0x3720f382, 0x38201382, 0x38241b82, 0x390300f4, 0x39205782, 0x3a205382, 0x3b246382, 0x3b030014, 0x3b242b82, 0x3c0300d8, 0x3d205382, 0x3d20bf82,
0x3e207382, 0x3e208b82, 0x3e24b782, 0x3e0300b4, 0x3f203b82, 0x3f24bb82, 0x3f030090, 0x40242782, 0x40030020, 0x4020eb82, 0x4024a782, 0x410300d4,
0x4120b382, 0x4225c782, 0x42030034, 0x82038278, 0x82432023, 0x8245204b, 0x824520df, 0x82452023, 0x1c462483, 0x82460300, 0x82472067, 0x82472013,
0x82482013, 0x82492057, 0x8249206b, 0x824a209b, 0x824a20ff, 0xe84a24df, 0x824b0300, 0x824b208f, 0x824c203b, 0x824c202f, 0x824c207f, 0x824d20db,
0x824d20a7, 0x824d201f, 0x404e24df, 0x824e0300, 0x824f209f, 0x8250204b, 0xcc5024a3, 0x82510300, 0x825120cf, 0x8852241b, 0x82520300, 0x8253208f,
0x82532063, 0x8253209f, 0x82532063, 0x82542053, 0x82552063, 0x5455256b, 0xac550300, 0x33820382, 0x0f825620, 0x5f825620, 0x00985629, 0x00e45603,
0x823c5703, 0x24778203, 0x0300a857, 0x20578258, 0x21738258, 0x0b827058, 0x59202b82, 0x59207382, 0x5a204b82, 0x5a25ff82, 0x5b0300f0, 0x23038250,
0x5c0300b0, 0x5c20ab82, 0x5d20cb82, 0x5e200b82, 0x5e254b82, 0x5f0300f8, 0x82038264, 0x82602053, 0x8260201b, 0x6c61242f, 0x82610300, 0x82622043,
0x0063244b, 0x82630300, 0x10642497, 0x82640300, 0x826520c3, 0x8265201b, 0x4866249f, 0x82660300, 0xdc6624df, 0x82670300, 0x826720f7, 0x826720db,
0x8268201f, 0x82682087, 0xb868240b, 0x82690300, 0x806921af, 0xbc200782, 0x33820382, 0x00306a24, 0x1b826a03, 0x00a06a25, 0x82286b03, 0x20db8203,
0x2063826b, 0x208f826b, 0x2067826c, 0x240f826c, 0x03005c6d, 0x25fb826d, 0x0300fc6d, 0x0382386e, 0x6f207b82, 0x70247b82, 0x7003000c, 0x7120cf82,
0x71202782, 0x71241382, 0x720300ac, 0x7225b782, 0x730300f0, 0x23038260, 0x740300e4, 0x75288f82, 0x75030024, 0x760300c8, 0x76241382, 0x770300f4,
0x77201382, 0x78200782, 0x79243b82, 0x79030044, 0x79203b82, 0x7a201f82, 0x7a205b82, 0x7a25eb82, 0x7b0300e0, 0x230382a8, 0x7c0300d4, 0x7d203382,
0x7d20bf82, 0x7e20fb82, 0x7e200b82, 0x7f24db82, 0x7f030008, 0x80200f82, 0x80209782, 0x81202b82, 0x8120bf82, 0x82203f82, 0x82208782, 0x82204382,
0x8220bf82, 0x82203f82, 0x83202b82, 0x8320a782, 0x83286382, 0x83030078, 0x840300f8, 0x84241b82, 0x850300ec, 0x8624ef82, 0x8703007c, 0x87249b82,
0x880300d0, 0x89281782, 0x89030020, 0x8a0300d8, 0x8a200b82, 0x8b207b82, 0x8b205782, 0x8c203382, 0x8d209382, 0x8d202782, 0x8e24df82, 0x8e030048,
0x8f245782, 0x8f030050, 0x90207382, 0x91206f82, 0x91257782, 0x92030028, 0x23038230, 0x930300e8, 0x94251b82, 0x9403002c, 0x8203829c, 0x8095245b,
0x82950300, 0xfc9524eb, 0x82960300, 0x82962023, 0x1897248b, 0x82970300, 0x8297201f, 0x749824bf, 0x82990300, 0x82992017, 0x1c9a280f, 0x989a0300,
0x829b0300, 0x829b20db, 0x829c2033, 0x829c2093, 0x829d208f, 0x829d2063, 0x829e20b3, 0x829e203b, 0x829f2053, 0x829f2063, 0x34a024a3, 0x83a10300,
0x00b82303, 0xeb82a203, 0x8f82a320, 0xb382a320, 0x5382a420, 0x00f4a425, 0x8258a503, 0x29ef8203, 0x030060a6, 0x0300e4a6, 0x038244a7, 0x0300a423,
0x28cf82a8, 0x030004a9, 0x0300a8a9, 0x20e782aa, 0x245f82ab, 0x03008cab, 0x208382ac, 0x244f82ad, 0x030088ad, 0x20cb82ad, 0x206f82ae, 0x244f82ae,
0x030084af, 0x200782af, 0x202b82b0, 0x202782b1, 0x24cb82b1, 0x03006cb2, 0x205b82b2, 0x249f82b3, 0x0300dcb3, 0x209382b4, 0x20a382b4, 0x20fb82b5,
0x207b82b5, 0x240b82b6, 0x0300d8b7, 0x259382b8, 0x0300c0b8, 0x038264b9, 0x0300f023, 0x200782ba, 0x20bb82ba, 0x20f382bb, 0x206782bb, 0x203782bc,
0x259b82bc, 0x030018bd, 0x038280bd, 0xbe202382, 0xbe20f782, 0xbf205b82, 0xbf24b782, 0xc00300e0, 0xc0200782, 0xc1200782, 0xc1200782, 0xc2200782,
0xc2200782, 0xc3200782, 0xc3200782, 0xc4200782, 0xc4209782, 0xc520af82, 0xc5208b82, 0xc6205b82, 0xc7244782, 0xc7030040, 0xc8207f82, 0xc8246f82,
0xc80300b8, 0xc920bf82, 0xc924ff82, 0xca030090, 0xca215f82, 0x820782a4, 0x82cb2013, 0x82cb2087, 0x82cb2087, 0x82cc200b, 0x82cc208b, 0x94cd2447,
0x82cd0300, 0x82ce2007, 0x82cf202f, 0x7ccf29bf, 0xd0cf0300, 0x24d00300, 0x3f820382, 0x0010d124, 0x0782d103, 0x0782d220, 0x2782d220, 0x1782d320,
0x0f82d320, 0x8b82d420, 0xf782d520, 0x4b82d520, 0x004cd624, 0x6382d603, 0x002cd724, 0x5f82d703, 0x0782d820, 0x009cd825, 0x8228d903, 0x20b78203,
0x209b82d9, 0x20af82da, 0x245f82db, 0x03008cdb, 0x200b82dc, 0x20a782dc, 0x20ff82dc, 0x200f82dd, 0x2d2382de, 0x03001cdf, 0x030084df, 0x030048e0,
0x03820ce1, 0x03827820, 0x0300c824, 0x038218e2, 0x03825c20, 0xe3206b82, 0xe4244f82, 0xe5030034, 0xe525ab82, 0xe60300c0, 0x82038208, 0x98e6250b,
0x00e70300, 0xff820382, 0x8782e720, 0x7f82e820, 0x0074e824, 0x7782e803, 0x5b82e920, 0x1b82ea20, 0x006cea2c, 0x00ecea03, 0x0080eb03, 0xfb82ec03,
0x7f82ec20, 0x8f82ed20, 0x0068ed24, 0x2f82ee03, 0x00b4ee24, 0x0382ef03, 0x0b82f020, 0x0058f02c, 0x00fcf003, 0x0094f103, 0x0f82f203, 0x00c4f224,
0x6782f303, 0x3382f320, 0x0054f424, 0x6382f403, 0x0090f528, 0x007cf603, 0x5782f703, 0x00e4f728, 0x00dcf803, 0x1b82f903, 0x4382f920, 0x00f4f924,
0x3782fa03, 0x9782fa20, 0xb382fb20, 0x8782fb20, 0x9b82fc20, 0x1782fc20, 0x3382fd20, 0xbb82fd20, 0x5b82fe20, 0x0014ff29, 0x00acff03, 0x82440004,
0x00d42703, 0x00e40104, 0x0b820204, 0x00d00229, 0x004c0304, 0x82040404, 0x82542003, 0x00dc2403, 0x82500504, 0x00c02403, 0x82480604, 0x00ec2403,
0x82740704, 0x00f42403, 0x82600804, 0x00c82403, 0x821c0904, 0x008c2403, 0x820c0a04, 0x82a02003, 0x00e02403, 0x82400b04, 0x829c2003, 0x00f82403,
0x82580c04, 0x241f8203, 0x0400b80c, 0x205b820d, 0x206b820d, 0x2427820e, 0x0400340f, 0x203f820f, 0x242b8210, 0x0400cc10, 0x204f8211, 0x253b8211,
0x0400b412, 0x03823c13, 0x0400fc23, 0x25938214, 0x0400e814, 0x03826815, 0x16249b82, 0x16040088, 0x17245382, 0x18040078, 0x1924a382, 0x19040020,
0x1a2c0b82, 0x1a040038, 0x1b0400bc, 0x1c040010, 0x1c21af82, 0x24078298, 0x1d0400d8, 0x20038208, 0x2303825c, 0x1e0400f0, 0x1e208782, 0x1f29c782,
0x1f040028, 0x20040094, 0x82038224, 0x82212097, 0x82212047, 0x8222203f, 0x82222007, 0x822320ef, 0xa823243f, 0x82240400, 0x8324201f, 0x00c42307,
0x57822504, 0x83822520, 0xaf822520, 0x00302624, 0x3f822604, 0x13822720, 0x00842824, 0xa7822804, 0x00542924, 0x1b822904, 0x07822c20, 0xbf822e20,
0x3b822f20, 0x0b822f20, 0x6f822f20, 0xcb823020, 0x57823020, 0x13823120, 0x009c3125, 0x82183204, 0x20b38203, 0x202f8232, 0x20938233, 0x242f8233,
0x04008034, 0x20178235, 0x82078335, 0x2c36242b, 0x82360400, 0x823720bf, 0x8238201f, 0x82382067, 0x743924f3, 0x823a0400, 0xf43a2453, 0x823b0400,
0x823b202b, 0x7c3b211b, 0xf7820b82, 0x00e03b25, 0x82203c04, 0x21c78203, 0x07826c3c, 0x0382a020, 0x0400e423, 0x20ff823d, 0x2073823d, 0x24a3823d,
0x0400643e, 0x208f823e, 0x245f823e, 0x04001c3f, 0x2023823f, 0x20f38240, 0x205b8240, 0x24778241, 0x04000042, 0x24978242, 0x04003043, 0x201b8243,
0x296f8244, 0x04002445, 0x0400cc45, 0x03824846, 0x04009023, 0x218b8247, 0x07829847, 0x48283382, 0x490400d4, 0x4a04005c, 0x4a24df82, 0x4b0400ac,
0x4b207f82, 0x4b243f82, 0x4c0400d0, 0x4c205782, 0x4c203382, 0x4c202b82, 0x4d248782, 0x4d04004c, 0x4e28b782, 0x4e040044, 0x4f0400b0, 0x4f20a382,
0x50208b82, 0x5020e782, 0x51201f82, 0x51205782, 0x5124cf82, 0x520400e8, 0x52203782, 0x53202b82, 0x5324cb82, 0x530400a4, 0x54201382, 0x542c3782,
0x54040088, 0x550400d8, 0x5604008c, 0x56202f82, 0x57209782, 0x5720b382, 0x57201b82, 0x57241b82, 0x580400b4, 0x5821af82, 0x82078268, 0x8259208f,
0x8259204f, 0x825a203b, 0x825b20c7, 0x825b2027, 0x185c2437, 0x825c0400, 0x825d2053, 0xbc5d24e3, 0x825e0400, 0x825e206b, 0x645f247f, 0x825f0400,
0x82602007, 0x82612043, 0x82622063, 0x82622033, 0x8263200f, 0x826420cf, 0x8264206b, 0x7c65240f, 0x82650400, 0x1c662497, 0x82660400, 0xc466242f,
0x82670400, 0x8268206b, 0x826820a7, 0x6069244b, 0x82690400, 0x406a2433, 0x826a0400, 0x826b202b, 0x826b2027, 0x286c244f, 0x826c0400, 0x826d202b,
0x826e2033, 0x826e204b, 0x086f251b, 0x5c6f0400, 0xb8230382, 0x82700400, 0x82702013, 0x82712093, 0x82722047, 0xec722517, 0x6c730400, 0x90200382,
0x37820382, 0x4f827420, 0x00d07424, 0x07827504, 0x9b827520, 0xc7827620, 0x37827620, 0x8b827620, 0x004c7729, 0x00f07704, 0x82847804, 0x20378203,
0x24378279, 0x0400247a, 0x20d7827a, 0x2067827a, 0x20ff827a, 0x2447827b, 0x0400047c, 0x246f827c, 0x0400c87c, 0x2447827d, 0x0400e07d, 0x2017827e,
0x207b827f, 0x20db827f, 0x207f827f, 0x20378280, 0x296f8280, 0x04005081, 0x0400c081, 0x03820082, 0x82202b82, 0x8224e382, 0x8304009c, 0x83219f82,
0x82078270, 0x9484258b, 0x30850400, 0xcc230382, 0x82860400, 0xfc8628d7, 0xa0870400, 0x82880400, 0x82882063, 0x82892043, 0x8289202b, 0x828a20a3,
0x828a2043, 0x828b202b, 0x808c245b, 0x828d0400, 0x828d2097, 0x3c8e281f, 0xb08e0400, 0x828f0400, 0x828f2017, 0x828f205b, 0x828f2053, 0x829020cf,
0x82902053, 0x20912847, 0xbc910400, 0x82920400, 0xb492210f, 0x1b820782, 0x4b829420, 0xef829420, 0x00a89424, 0xf3829504, 0x17829620, 0x001c9725,
0x82589704, 0x205b8203, 0x202f8297, 0x24d78297, 0x04006098, 0x20078298, 0x24ff8299, 0x0400149a, 0x2073829a, 0x820b839a, 0x829a20d3, 0x829b2047,
0x549b2453, 0x829b0400, 0x829b20ff, 0xe89b2543, 0x2c9c0400, 0x57820382, 0x00349d24, 0x07839d04, 0x9e243f82, 0x9e040028, 0x9e20fb82, 0x9f243782,
0xa1040074, 0xa1203382, 0xa2201782, 0xa2240782, 0xa30400d4, 0xa3204782, 0xa3247782, 0xa40400dc, 0xa4213f82, 0x23078288, 0xa50400d8, 0xa5214382,
0x82078284, 0x08a6242b, 0x82a60400, 0x82a62027, 0xf8a6246b, 0x82a70400, 0x82a72047, 0x82a8202f, 0x82a820b3, 0x44a92457, 0x82a90400, 0x82aa201b,
0x5caa28ef, 0xa4aa0400, 0x82ab0400, 0x82ab20d3, 0x82ab204b, 0x4cac24e3, 0x82ac0400, 0x24ae2413, 0x82ae0400, 0x82af2027, 0x83af202f, 0x20438207,
0x202f82b0, 0x202382b0, 0x291382b1, 0x0400acb1, 0x040078b2, 0x038250b3, 0xb8230783, 0x82b40400, 0x6cb42193, 0xcc230782, 0x82b50400, 0xc4b5210b,
0xec240782, 0x14b60400, 0x70200382, 0xc3820382, 0x0060b729, 0x00f4b704, 0x8218b904, 0x208f8203, 0x240f82ba, 0x0400e8ba, 0x243782bb, 0x040010bc,
0x20c782bc, 0x200f82bc, 0x257f82bd, 0x04008cbd, 0x03823cbe, 0xbe21bb82, 0x2007827c, 0x23038294, 0xbf0400fc, 0xc020d382, 0xc0251f82, 0xc1040098,
0x8203820c, 0x82c2205b, 0x82c22007, 0x82c22017, 0x82c32073, 0xd0c3249f, 0x82c60400, 0xe4c62407, 0x82c70400, 0xb0c72507, 0x00c90400, 0xdf820382,
0x7782c920, 0xff82ca20, 0x0080ca24, 0xcf82ca04, 0x3f82cb20, 0x5782cb20, 0xd382cc20, 0x6b82cd20, 0xbb82ce20, 0xb782ce20, 0x0b82cf20, 0x00d8cf24,
0x8382d004, 0x009cd025, 0x8204d104, 0x00a82303, 0xab82d204, 0x2f82d220, 0x0090d324, 0x5b82d404, 0x00f8d424, 0x1f82d504, 0x0040d624, 0x9382d604,
0x00dcd628, 0x001cd704, 0xa382d804, 0x00a4d824, 0x1382d904, 0xd382d920, 0xff82da20, 0x0034db24, 0x8b82db04, 0x0048dc24, 0x5b82dc04, 0x0068dd29,
0x00bcdd04, 0x8218de04, 0x24578203, 0x0400c8de, 0x241382df, 0x040028e0, 0x294782e0, 0x04005ce1, 0x0400b8e1, 0x038214e2, 0xe220a782, 0xe320d782,
0xe4280782, 0xe4040054, 0xe50400cc, 0xe520cf82, 0xe620f382, 0xe624a382, 0xe70400b4, 0xe7200782, 0xe824a382, 0xe8040050, 0xe9206782, 0xe9243782,
0xe9040088, 0xe920db82, 0xea20d382, 0xeb206b82, 0xeb203b82, 0xec209782, 0xed246782, 0xed040008, 0xee25bf82, 0xef040080, 0x20038200, 0x20038230,
0x230382a0, 0xf00400f4, 0xf0208f82, 0xf1285b82, 0xf1040020, 0xf2040084, 0xf2202b82, 0xf320cb82, 0xf3205382, 0xf3209782, 0xf4205382, 0xf4281382,
0xf4040074, 0xf50400e4, 0xf520d382, 0xf6249382, 0xf7040090, 0xf720ff82, 0xf8205382, 0xf8208f82, 0xf9248782, 0xf904000c, 0xf920ab82, 0xfa20bf82,
0xfb249b82, 0xfb040010, 0xfc244b82, 0xfc040040, 0xfd209382, 0xfe208b82, 0xfe203382, 0xfe204b82, 0xff204b82, 0xff255f82, 0x000500e8, 0x24038270,
0x010500f8, 0x23038264, 0x020500e0, 0x022d0782, 0x030500d4, 0x04050054, 0x05050044, 0x2303825c, 0x060500c8, 0x06210b82, 0x24078284, 0x070500f0,
0x82038260, 0x50082423, 0x82080500, 0x58092907, 0xe4090500, 0x6c0a0500, 0xdc230382, 0x820b0500, 0xcc0b240f, 0x820c0500, 0x380d244b, 0x820d0500,
0x820e200b, 0xf40e2467, 0x820f0500, 0x940f253b, 0x34100500, 0xa4240382, 0x08110500, 0xbc240382, 0x3c120500, 0x67820382, 0x17821320, 0x00ac1324,
0x07821405, 0x27821420, 0x00201524, 0x3f821505, 0x27821620, 0x00ec1624, 0x0b821705, 0x53821820, 0x00a01825, 0x82141905, 0x252b8203, 0x0500101a,
0x0382781a, 0x1b20bf82, 0x1b259382, 0x1c0500c0, 0x82038230, 0x821c207f, 0x821d200b, 0x681d243b, 0x821d0500, 0x821d204f, 0xd81e28af, 0x981f0500,
0x82200500, 0x1c2124e3, 0x82230500, 0x8223209b, 0x822420d7, 0x822520b7, 0x8225202b, 0x8226208f, 0x82272037, 0xb027241f, 0x82280500, 0x88282983,
0x00290500, 0x0c2a0500, 0xe8230382, 0x822b0500, 0x822b209f, 0x822b2073, 0x822b2087, 0x822c20fb, 0x402c2937, 0x9c2d0500, 0x282e0500, 0x17820382,
0x23822f20, 0x3f822f20, 0x63823020, 0x0f823020, 0xe3823120, 0xf3823120, 0x0f823220, 0x00903224, 0x73823205, 0x00443324, 0x97823305, 0x00fc3324,
0xbb823405, 0x1f823420, 0x67823520, 0x8b823520, 0x33823520, 0x57823620, 0x005c3624, 0xf7823605, 0xd3823720, 0x1f823720, 0xef823820, 0x00843829,
0x00d03805, 0x822c3905, 0x827c2003, 0x20fb8203, 0x205f823a, 0x2057823a, 0x208f823a, 0x201f823b, 0x205f823b, 0x243b823c, 0x0500c83c, 0x2133823d,
0x0782803d, 0x3e240b82, 0x3e050038, 0x3e200b82, 0x3f201f82, 0x3f240b82, 0x400500a8, 0x41206f82, 0x4125e782, 0x420500b4, 0x82038260, 0x4843285b,
0xdc430500, 0x82440500, 0x8245205f, 0x824620b3, 0x8247204b, 0x6c472563, 0x14480500, 0xbc240382, 0x04490500, 0xf7820382, 0x0b834920, 0x4a204f82,
0x4a203382, 0x4b200b82, 0x4b202f82, 0x4b288b82, 0x4c0500ec, 0x4d050074, 0x4d20d382, 0x4d203f82, 0x4e200f82, 0x4e242382, 0x4f0500d4, 0x50281f82,
0x50050024, 0x510500f4, 0x52201782, 0x5324b382, 0x53050050, 0x5420f782, 0x5420af82, 0x5524d382, 0x55050034, 0x57299382, 0x580500c0, 0x59050078,
0x82038244, 0x825a205f, 0x885a2437, 0x825a0500, 0x825b2037, 0x825b2057, 0x825c20f3, 0x825d2007, 0x4c5d2437, 0x825d0500, 0xcc5e248b, 0x825f0500,
0x825f20db, 0x8260201b, 0x82602057, 0x8261200f, 0xc8612407, 0x82620500, 0xe8622407, 0x82630500, 0x8263205f, 0x82632047, 0x38642847, 0x98640500,
0x82650500, 0x946525d3, 0x2c660500, 0x2b820382, 0x00086729, 0x00706705, 0x820c6805, 0x00a82303, 0x0b826905, 0x37826a20, 0x57826a20, 0x00806b24,
0x2f826c05, 0x828c6c21, 0x00fc2307, 0xf7826d05, 0x5b826d20, 0x13826e20, 0x2b826e20, 0x8b826f20, 0xe7826f20, 0x3b827020, 0x003c702c, 0x00b07005,
0x00187105, 0x53827205, 0x00b87224, 0xf3827305, 0x0f827420, 0x47827420, 0xe7827420, 0x00007525, 0x82587505, 0x00d82403, 0x82487605, 0x20f78203,
0x206b8277, 0x20438277, 0x240f8279, 0x0500a479, 0x2053827a, 0x2017827a, 0x2007827b, 0x20c3827b, 0x2473827c, 0x0500e07c, 0x20bf827d, 0x245f827d,
0x0500f87d, 0x20b7827e, 0x285f827f, 0x05007c80, 0x0500c480, 0x247b8281, 0x0500bc81, 0x24d38282, 0x0500ac82, 0x20678283, 0x21578283, 0x0b826883,
0x03829c20, 0x84206f82, 0x8425a382, 0x84050040, 0x82038274, 0xdc8424bb, 0x82850500, 0x8285205b, 0x148624a3, 0x82860500, 0x828720a3, 0x82872037,
0x8288208b, 0xa08824bf, 0x82890500, 0x208a2883, 0xd48a0500, 0x828b0500, 0x828c204b, 0x828d2007, 0x508d241b, 0x828d0500, 0x828d2037, 0x828e2083,
0x828f2023, 0x828f2013, 0xf48f2857, 0x78900500, 0x82910500, 0x8c91216b, 0xbf820782, 0x00549224, 0xbb829305, 0x005c9324, 0xfb829405, 0xa7829420,
0x1f829520, 0x5f829520, 0x00049725, 0x82449705, 0x24578203, 0x0500d098, 0x20578299, 0x2013829a, 0x20d3829a, 0x20db829b, 0x207b829c, 0x2063829c,
0x2417829d, 0x0500e49d, 0x20a3829e, 0x2063829e, 0x2447829f, 0x0500e09f, 0x209382a0, 0x20c782a0, 0x247382a1, 0x0500f8a1, 0x240f82a2, 0x0500fca2,
0x200782a3, 0x204382a3, 0x205b82a4, 0x20eb82a4, 0x241b82a4, 0x050070a5, 0x206382a5, 0x20f382a6, 0x20e382a6, 0x206782a7, 0x242782a7, 0x0500f0a7,
0x24a382a8, 0x0500a4a8, 0x201b82a9, 0x206382a9, 0x282782a9, 0x050048aa, 0x0500b4aa, 0x20ab82ab, 0x20cb82ab, 0x202782ab, 0x204f82ac, 0x24bf82ac,
0x050014ad, 0x208382ad, 0x206382ad, 0x24db82ae, 0x050098ae, 0x20ab82af, 0x253b82af, 0x0500ccaf, 0x038240b0, 0xb1242782, 0xb1050028, 0xb220bf82,
0xb2250782, 0xb3050084, 0x20038208, 0x82038288, 0x82b4208f, 0x82b52053, 0x6cb52483, 0x82b50500, 0x82b6200f, 0x82b620c3, 0x82b720e3, 0xd4b72407,
0x82b80500, 0x82b8208b, 0x82b8202b, 0x4cb924ef, 0x82b90500, 0x82ba2057, 0x82ba2047, 0x82ba20c7, 0x82bb20fb, 0x82bb20b3, 0x3cbc249f, 0x82bc0500,
0x82bc20bb, 0x82bd20f7, 0xd8bd253b, 0x24be0500, 0x93820382, 0x5782be20, 0xb382bf20, 0x8382bf20, 0x6f82c020, 0x0064c128, 0x00ecc105, 0x2782c205,
0x0782c220, 0x0782c320, 0x00e8c325, 0x8268c405, 0x24678203, 0x05009cc5, 0x20db82c6, 0x2c2b82c6, 0x050018c7, 0x050094c7, 0x0500d0c8, 0x208782c9,
0x200b82ca, 0x20e382cb, 0x204b82cb, 0x205382cc, 0x25a382cc, 0x050074cd, 0x038248ce, 0x0500b023, 0x209b82cf, 0x20e382cf, 0x20e382d0, 0x287b82d0,
0x050040d1, 0x0500c8d1, 0x209f82d2, 0x240782d2, 0x050034d3, 0x243b82d3, 0x050050d4, 0x24bf82d4, 0x05005cd5, 0x208382d5, 0x246b82d6, 0x05002cd7,
0x243b82d7, 0x0500f0d7, 0x203782d8, 0x202782d8, 0x206382d9, 0x247b82d9, 0x05006cda, 0x20a382da, 0x200782db, 0x249382dc, 0x0500acdc, 0x240b82dd,
0x05004cde, 0x204782de, 0x283f82df, 0x050000e0, 0x050090e0, 0x20df82e1, 0x206f82e2, 0x208f82e2, 0x203b82e4, 0x286382e5, 0x050024e6, 0x0500a8e6,
0x247782e7, 0x0500f8e7, 0x20e782e8, 0x246b82e9, 0x050010ea, 0x243382ea, 0x05001ceb, 0x205f82eb, 0x245382ec, 0x0500c4ec, 0x20c782ed, 0x243b82ed,
0x050030ee, 0x20c782ee, 0x29e782ee, 0x050078ef, 0x0500b4ef, 0x03827cf0, 0xf120a382, 0xf1206782, 0xf224a382, 0xf3050080, 0xf3258782, 0xf40500fc,
0x23038270, 0xf50500c0, 0xf520a382, 0xf5203782, 0xf6249b82, 0xf705009c, 0xf7200f82, 0xf8242782, 0xf8050004, 0xf928ab82, 0xf9050020, 0xfa0500c8,
0xfa20df82, 0xfb20a782, 0xfb20ef82, 0xfb248f82, 0xfc0500ec, 0xfc24a382, 0xfd0500dc, 0xfd205382, 0xfe243f82, 0xfe05002c, 0xfe204382, 0xff205f82,
0xff254382, 0x000600f4, 0x2403828c, 0x010600d4, 0x82038240, 0x90022507, 0x04030600, 0x9c240382, 0x28040600, 0xd8280382, 0x58050600, 0x00060600,
0x50200382, 0x23820382, 0x002c0724, 0x1f820706, 0x00340824, 0x2b820906, 0x00a80925, 0x82700a06, 0x202b8203, 0x2533820b, 0x0600880b, 0x0382100c,
0x0c285b82, 0x0d0600e4, 0x0e060048, 0x0f253382, 0x10060080, 0x20038208, 0x24038268, 0x110600b0, 0x82038218, 0x82122013, 0x83122007, 0x00e02807,
0x00e81306, 0x820c1506, 0x82602003, 0x00f02703, 0x00741606, 0x4b821706, 0x7b821720, 0x33821720, 0x77821820, 0x63821920, 0x00bc1924, 0x47821a06,
0x00b81a24, 0x5b821b06, 0x827c1b21, 0x202f8207, 0x24c7821c, 0x0600b41c, 0x2197821d, 0x0782781d, 0x1e207f82, 0x1e201382, 0x1f245b82, 0x1f060030,
0x20202f82, 0x2120ab82, 0x21206382, 0x22207382, 0x22205b82, 0x2328d382, 0x230600ac, 0x240600f4, 0x24205382, 0x25204782, 0x2620c382, 0x26294382,
0x2606004c, 0x270600ec, 0x82038290, 0x82282027, 0x82282097, 0x582924a3, 0x82290600, 0x822a2053, 0x142b2c2f, 0xc02b0600, 0x942c0600, 0x822d0600,
0x822e20af, 0x822e20cf, 0x822f2083, 0x82302003, 0x823020ab, 0x8231201b, 0x00322447, 0x82320600, 0x8232208b, 0x8233203f, 0x8234209b, 0x82342037,
0x6435248f, 0x82350600, 0x823620a7, 0x8236208b, 0x823620e7, 0x4437248b, 0x82370600, 0x8237204f, 0x84382417, 0x82380600, 0x82392007, 0x243a2427,
0x823a0600, 0x183b2833, 0xc43b0600, 0x823c0600, 0x543d24f7, 0x823e0600, 0x823e2057, 0x823f2057, 0x8240203b, 0x82412097, 0x824220af, 0x8242204f,
0xb04224af, 0x82430600, 0x8243204f, 0x8244201b, 0x82442037, 0xa84525f7, 0x2c460600, 0xa0230382, 0x82470600, 0x82472007, 0xf847240f, 0x82480600,
0x204925f7, 0x044a0600, 0xbf820382, 0x2b824b20, 0x006c4c24, 0xfb824c06, 0x4f824d20, 0xc7824d20, 0x00fc4d24, 0xff824e06, 0x2f824e20, 0x009c4f24,
0x5b825006, 0x7f825120, 0x8f825120, 0xa3825220, 0x07825220, 0x07825320, 0x001c5424, 0x3f825506, 0x00305629, 0x00dc5606, 0x82745706, 0x00ec2303,
0xf7825806, 0x3f825820, 0x00f05824, 0x5b825906, 0x43825920, 0x00285a29, 0x00c05a06, 0x825c5b06, 0x20238203, 0x203b825c, 0x249b825c, 0x06003c5d,
0x207b825d, 0x208f825e, 0x249b825e, 0x06000c5f, 0x20db825f, 0x2483825f, 0x06007860, 0x20cf8261, 0x20078261, 0x24078262, 0x0600d862, 0x24c78263,
0x06007064, 0x202f8266, 0x207b8267, 0x20878268, 0x206b8269, 0x201b8269, 0x207f826a, 0x20c3826b, 0x2057826b, 0x25c7826c, 0x0600846d, 0x0382506e,
0x6f201b82, 0x6f246782, 0x700600f4, 0x71205b82, 0x71241b82, 0x720600cc, 0x72203782, 0x72259b82, 0x730600e0, 0x82038220, 0x8274205b, 0x8c7424a7,
0x82750600, 0x387628d3, 0xb8760600, 0x82770600, 0x82782033, 0x82782057, 0x8279202b, 0x54792427, 0x82790600, 0x827a202b, 0x827a2083, 0x827a200b,
0x087b2423, 0x827b0600, 0x827c2063, 0x827c2013, 0xdc7c2493, 0x827d0600, 0xb07d250f, 0x2c7e0600, 0x43820382, 0x43827f20, 0xe3827f20, 0xdb827f20,
0xa3828020, 0x67828120, 0x00f88124, 0x3b828306, 0x00988324, 0x97828406, 0x2f828420, 0x23828520, 0x00008624, 0xcf828606, 0x00f08628, 0x00c08706,
0x53828806, 0xa7828820, 0x13828920, 0x00148a24, 0xd7828a06, 0x3f828a20, 0x00c48a25, 0x82688b06, 0x20478203, 0x2003828c, 0x2013828d, 0x20b7828e,
0x2037828e, 0x2473828f, 0x06003490, 0x203f8290, 0x20d78291, 0x291b8291, 0x06008092, 0x0600e892, 0x03826093, 0x0600e423, 0x20738294, 0x20438294,
0x20338295, 0x20178295, 0x24978296, 0x06004897, 0x203b8297, 0x20c38297, 0x20378298, 0x20738298, 0x20078299, 0x20278299, 0x2443829a, 0x0600449b,
0x21b3829c, 0x0782309c, 0x9d202f82, 0x9e20e782, 0x9e20f782, 0x9f283382, 0x9f060024, 0xa00600a4, 0xa025f382, 0xa10600d4, 0x82038270, 0xa8a225ef,
0x20a30600, 0x78200382, 0xc8230382, 0x82a40600, 0x82a52013, 0x82a520c3, 0xeca5244f, 0x82a70600, 0x82a72037, 0x82a8202f, 0x82a92097, 0x82a920df,
0x82aa2023, 0x82ab200b, 0x82ab2067, 0x82ab20b3, 0x82ac20fb, 0x58ac246f, 0x82ad0600, 0x82ad207f, 0x82ae208b, 0x82ae204b, 0x6caf243b, 0x82af0600,
0x82b020ef, 0x1cb12527, 0x64b10600, 0xf3820382, 0x2f82b220, 0x0088b228, 0x00f4b206, 0x3782b306, 0x00ccb324, 0xef82b406, 0xd782b420, 0x0098b524,
0xef82b506, 0x2b82b620, 0x4b82b620, 0x0040b728, 0x00b4b706, 0xe782b806, 0xb382b820, 0x2382b820, 0x1b82b920, 0xb782b920, 0x0048ba24, 0x2382ba06,
0x8f82bb20, 0x0f82bb20, 0x4f82bb20, 0x0074bc24, 0x7382bc06, 0x7b82bd20, 0x9b82bd20, 0x2b82be20, 0x8b82be20, 0xf782bf20, 0x0b82bf20, 0x00f8bf24,
0x4782c006, 0xcb82c120, 0x0008c224, 0x00820002, 0x40012308, 0x0f002b01, 0x00001300, 0x1d010e13, 0x17161401, 0x3d013e33, 0x27263401, 0x23153307,
0x191912eb, 0x04842a12, 0x012a2a2a, 0x1218012b, 0x01181280, 0x2b240686, 0x01000080, 0x00204282, 0x2b221882, 0x41820500, 0x1533152c, 0x2bd53533,
0x2b2b012b, 0x1b86d6ab, 0x14205f83, 0x232b1b85, 0x011d0622, 0x35233533, 0x84363233, 0x55c02162, 0x80205b82, 0x19210483, 0x24338212, 0x5612182b,
0x2004822b, 0x8263822b, 0x835b8557, 0x0018273f, 0x34352500, 0x36862326, 0x67822320, 0x3e380386, 0x12400101, 0x19120e0e, 0x2a555512, 0x1255552a,
0x0e208019, 0x200e1212, 0x2b224282, 0x8a822a2b, 0x878a1820, 0x87850920, 0x15248282, 0x55c03523, 0x01262082, 0xd656802b, 0x238a5656, 0x23851120,
0x07415f82, 0x012b2305, 0x2b823335, 0x19235a83, 0x82552a12, 0x20548330, 0x22a38212, 0x41002b2b, 0x13220a43, 0x43411700, 0x413b8410, 0xa7830e47,
0x840b4941, 0x82802048, 0x25838a4a, 0x3f000006, 0x82823501, 0x55eb072e, 0x55555580, 0xab2b2bab, 0x00030000, 0x2807af41, 0x00070003, 0x37000025,
0x82c68233, 0x41152003, 0x1f4106b2, 0x05c94108, 0x06223328, 0x1614011d, 0x00832aeb, 0x41191221, 0x2a200526, 0xab270886, 0x802b802b, 0x41121801,
0x0b8a082d, 0x1b426682, 0x20d78409, 0x050b4125, 0x85232721, 0x013b2a59, 0x37152315, 0x01333523, 0x09204215, 0x5520d883, 0x89092142, 0x224b89d7,
0x4111000d, 0x33250623, 0x33153335, 0x09654235, 0x2b2a2b24, 0xa7821219, 0x822b0121, 0x56ab2841, 0x1812ab56, 0x8b2b2b01, 0x001023f3, 0x07420014,
0x41272006, 0xf182089c, 0x86820720, 0x03823520, 0x1940012c, 0x12555512, 0x0d0d1319, 0x49822b13, 0x20e02a22, 0xd6204382, 0x20244e82, 0x5313130d,
0x00206082, 0x410c5342, 0x23210fad, 0x85448215, 0x07f54293, 0x95824682, 0x240bac41, 0x15801515, 0x41568215, 0x09220af7, 0xd3820d00, 0x25078241,
0x15330727, 0x8682c023, 0x7f83cd86, 0x30828020, 0x24092b43, 0x002b0140, 0x8331840b, 0x220384b5, 0x825580c0, 0x2b012300, 0xa5822bd6, 0xaf422b20,
0x33352110, 0x2b232585, 0x82554040, 0x2a562224, 0x20238b2b, 0x0e754212, 0x3520c784, 0x3282c289, 0x22099441, 0x8b805555, 0x2087863b, 0x83f68233,
0x83c02036, 0x832a207e, 0x0a134362, 0xaf852b20, 0x23150123, 0x84da8215, 0x2b012a8b, 0x16561616, 0x2b2b0116, 0x41028380, 0x0d280d57, 0x15010000,
0x15233523, 0x2d074a44, 0x2b2a1501, 0x122a1219, 0xab2b0119, 0x3e441515, 0x8dab2005, 0x410a2033, 0x1726050f, 0x23372733, 0x86833507, 0x2b404022,
0x47258883, 0x476b6b47, 0x0cb74147, 0x2b850520, 0xc0352323, 0x22da8280, 0x41ab2bd6, 0x6b20062f, 0x5d42a782, 0x82072005, 0x863320ce, 0x012e2303,
0x0a44c027, 0x01122b09, 0x1218012b, 0x9595abab, 0x6344abab, 0x051b440f, 0x33173522, 0x2720ba82, 0x24080941, 0x6bd66b6b, 0x0c0f436b, 0x43392b45,
0x0b220907, 0xc5850f00, 0x23070845, 0x23153307, 0x68457382, 0x56d62408, 0x842b1218, 0x227b8cb7, 0x41150011, 0x152209ed, 0xa9453533, 0x2a2a2120,
0x890aab45, 0x000e227f, 0x227f8612, 0x8a273317, 0x2bc02744, 0x1a2b1911, 0xbc420e0c, 0x56562507, 0x0d150559, 0x01218887, 0x077f4400, 0x22093b43,
0x4515013b, 0x78420d29, 0x092d4505, 0x3f827f82, 0x420b3245, 0x07200adf, 0xc8828584, 0x82353321, 0x012b25fd, 0xabab2b2b, 0x200b9f42, 0x421f830d,
0x23240747, 0xc0352315, 0x12269982, 0x012a2b19, 0x4842ab2b, 0x41ab2006, 0x402407ff, 0x06002b01, 0x17242f82, 0x07233733, 0x2405c041, 0x2b011515,
0x05bf41d6, 0x2342bb85, 0x2e372406, 0x42352701, 0x33240721, 0x07010e15, 0x200b2342, 0x0e224255, 0x0b20af8a, 0x07225f83, 0xa8423733, 0x24648205,
0x15152b2b, 0x8300822b, 0x6b6b2369, 0x03833636, 0x08202f8a, 0xde822f83, 0x8025918c, 0x40805656, 0x0cd34240, 0x20057b42, 0x28298207, 0xc0353723,
0x55805555, 0x0a5c4355, 0x00000634, 0xd601eaff, 0x13009601, 0x23001f00, 0x2b002700, 0x59822f00, 0x9643c185, 0x05f54305, 0x35212322, 0x15200882,
0x35211884, 0x204e8225, 0x20038221, 0x25078601, 0x80aa802b, 0x04842a2a, 0xaa2a012e, 0x2baa2b2b, 0x012bd5fe, 0xaafe2b00, 0x01210583, 0x201b8695,
0x221a8480, 0x8256aa2b, 0x822183d6, 0x20ab8206, 0x20038205, 0x26838200, 0x000b0057, 0x82210017, 0x82342081, 0x010e3781, 0x37171614, 0x3634012e,
0x1e072537, 0x07061401, 0x34013e17, 0x17850526, 0x3f342626, 0x14160701, 0x07201385, 0x322f1383, 0x69263436, 0x1d21211d, 0x1a1a171e, 0x84100117,
0x821e2006, 0xf2fe2910, 0x12141412, 0x9618181e, 0x1e200382, 0x6c340b82, 0x24181812, 0x57011818, 0x4e584e1d, 0x3d181e1d, 0x1e183d48, 0x12830686,
0x2e112028, 0x1e112e36, 0x15834818, 0x0e830482, 0x83011e21, 0x18242132, 0x0624aa83, 0xd5ff0000, 0x6d20af82, 0x4c20af8a, 0x2223b1ae, 0x83161406,
0x150728b1, 0x15010e23, 0x42331523, 0x35280589, 0x34233533, 0x35232726, 0x2728c9ac, 0x950c0916, 0x56090c95, 0x162e0685, 0x4d1d6c01, 0x1e1d4d59,
0x3e473e17, 0x06861e17, 0x1f241283, 0x2f352e12, 0x4921d982, 0x82ef8218, 0x2f113304, 0x191e2e35, 0x24181824, 0x01558019, 0x092a090c, 0x0686010c,
0x00005522, 0x0805d343, 0x6b01ab30, 0x11000800, 0x1e010000, 0x22061401, 0x17363426, 0x1517011e, 0x013e3521, 0x30240001, 0x30304830, 0x02604924,
0x6002aafe, 0x30016b01, 0x02823049, 0x3001d52b, 0x242b2b24, 0x04000030, 0x21008200, 0x4386d601, 0x19001525, 0x90130000, 0x35252447, 0x82071533,
0x25d52103, 0x4e853c83, 0x6101ab27, 0x2a2a1e01, 0x2553902a, 0x556b6b2c, 0x55822a2a, 0x2f06b348, 0x008001c0, 0x00100007, 0x37000020, 0x1632013e,
0x37229a82, 0xa783010e, 0x2716323e, 0x33161411, 0x35363221, 0x23263411, 0x80062221, 0x58485804, 0xc000ff04, 0x24362401, 0xff340282, 0x2a011219,
0x12191912, 0x1813d6fe, 0x22222055, 0x1bc01520, 0x24231883, 0x83d6fe3a, 0x201d8417, 0x20008200, 0x21038204, 0x6b830100, 0x1300032d, 0x24001b00,
0x21250000, 0x82352111, 0x8a152054, 0x2e033664, 0x07062201, 0x32273315, 0x22263436, 0x01161406, 0x01d6fe95, 0x314c8a2a, 0x36420347, 0x60c00342,
0x281b1b14, 0x012b1b1b, 0x7d832b2a, 0x13246b85, 0x18e5fe18, 0x10240082, 0x1b291b66, 0x73820282, 0x77840320, 0x6b01e028, 0x0d000500, 0x75821600,
0x2707172a, 0x17271737, 0x013e3523, 0x4b410782, 0xc2013707, 0x1e4a8b1e, 0xd540802c, 0x28496002, 0x30302428, 0xb5303049, 0x13828c1e, 0x2b400e27,
0x02013024, 0x069b41d8, 0x03000022, 0x2008f343, 0x20cb820a, 0x2c53821f, 0x3e27012e, 0x17163201, 0x3203010e, 0x05e44116, 0x010e3726, 0x17011e07,
0x2e2e6482, 0x28000101, 0x58041543, 0x15045848, 0x1f412843, 0x5b1b2605, 0x78020278, 0x2f05835b, 0x25012679, 0x2222201f, 0x01251f20, 0x2437242e,
0x40200282, 0x20831a86, 0x04000022, 0xc0266f82, 0xc001ff01, 0x3b410900, 0x37172307, 0x74820717, 0x011e3323, 0x82ce8213, 0x82232067, 0x0fbd4165,
0x511da02a, 0x0b8d670e, 0xf5430720, 0xfe210988, 0x0ec241eb, 0x511d0b2a, 0x65840201, 0x7c015f3d, 0xfe210987, 0x0bc941e4, 0x00367f84, 0x01000200,
0x0011006b, 0x0023001a, 0x3700002c, 0x23152315, 0xe3822335, 0x34012e24, 0xfa823336, 0x91430b82, 0x82052005, 0x2115220c, 0x2cf88435, 0x16323634,
0x16eb0614, 0x20072f2a, 0x34f88215, 0x0720151b, 0x0c0c093c, 0x010c0c12, 0x0576300c, 0x7505abfe, 0x056b4130, 0x2b2beb27, 0x0117132b, 0x22fd8201,
0x83011317, 0x0c122321, 0x14822a55, 0x2b2a2b22, 0x41087941, 0x12220b7b, 0x8b821b00, 0x42010021, 0x3b240641, 0x33371701, 0x2005a942, 0x07834107,
0x86831720, 0x012b8e82, 0x12aafeab, 0x56121818, 0x82565555, 0xbd2c0807, 0x32202019, 0xff992020, 0x48580400, 0x95010458, 0x00ff1218, 0x55551912,
0x00011219, 0x21311812, 0x31202031, 0x2013e421, 0x00202222, 0x20084342, 0x36ff82eb, 0x000c0008, 0x25000015, 0x15070622, 0x012e3521, 0x35331525,
0x42013e17, 0x402b06aa, 0x01067530, 0xfe750656, 0x4380aba5, 0x952005d8, 0x5620c085, 0xc38ac682, 0x53820420, 0xeb01002c, 0x0a005601, 0x1c001300,
0x51832500, 0x011e0723, 0x224d8217, 0x8723012e, 0x8727205c, 0x39618958, 0x130b0955, 0x05800116, 0x672ad467, 0x052b0105, 0x241b2a66, 0x24243724,
0x06841cc6, 0x0e01ab2a, 0x35351824, 0x25262625, 0x2a210583, 0x221b8301, 0x86012437, 0x067b4507, 0x7b830020, 0x26059344, 0x0023001a, 0x4438002f,
0x58450b53, 0x07c64108, 0x010e1722, 0x3735ec85, 0x0614011e, 0x36272207, 0x13362734, 0x34352315, 0x011e2726, 0x20e885c0, 0x05124624, 0x75301230,
0x06aafe06, 0x4e323075, 0x02040102, 0x1d824e4e, 0x0d0f242b, 0xba0d1b1b, 0x2e151656, 0x088c4450, 0x34452a20, 0x95220805, 0x40402b2b, 0x01292b2b,
0x17170c20, 0x01ea200c, 0x01304930, 0x225d2205, 0x40eafe05, 0x0f24144b, 0xb4822907, 0x03820520, 0x0002002e, 0x08005601, 0x19001000, 0x31002500,
0x210a8341, 0x37411617, 0x0d2e4105, 0x07222328, 0x16071416, 0x74472327, 0x15012f09, 0x01045824, 0x6a580400, 0x0240011c, 0x3341b039, 0x1b862b05,
0x0a1b2424, 0x0a13130a, 0x8c8340cb, 0x20ab402f, 0x202b2b20, 0x25170420, 0x1f182b2b, 0x0b434133, 0x451a0325, 0x8216041a, 0x404021b1, 0xc7469285,
0x00803d05, 0x0028001f, 0x33152500, 0x3315011e, 0x06142315, 0x012e2307, 0x33352335, 0x33373634, 0x98430782, 0x44032005, 0x1520086b, 0x2e0e6f46,
0x80540180, 0x20950154, 0x2a402a2a, 0x462a552a, 0x2a210d48, 0x2e178220, 0x2b012020, 0x2b3f2a01, 0x002a3f2b, 0x83000300, 0x01ab2e77, 0x0009006b,
0x001a0015, 0x011e0100, 0x25748217, 0x1f013e27, 0xf2820702, 0x013e3f08, 0x01372737, 0x011e2715, 0x30240001, 0x641e2701, 0x80262e06, 0xfb401b25,
0x98374601, 0x6855011b, 0x6b01382f, 0x20253001, 0x1f64072d, 0x2480d526, 0x1e2b401c, 0x1b98082c, 0x6819fbfe, 0xaf45290b, 0x07bb4608, 0x23001a22,
0x420bbf46, 0xd1461923, 0x150f4208, 0x431eff41, 0x14220e6b, 0xe7411d00, 0x4127200a, 0x734309c9, 0x2bf02512, 0x402b4040, 0x830e7643, 0x2b402112,
0x20083e44, 0x425f8203, 0x5b8309fb, 0x2d10aa44, 0x07173727, 0x07270717, 0x37273727, 0xcd424001, 0x05e34207, 0x1e2df923, 0x2402822d, 0x2e2e1e2e,
0x06d8431e, 0x32205a87, 0x1d871482, 0x04000032, 0xcdff0000, 0x6b01de01, 0x17000e00, 0x2d002400, 0x1e23c582, 0x83061701, 0x23062659, 0x3634012e,
0x07414117, 0x17842720, 0x010f0622, 0x27081583, 0x013e3503, 0x16150637, 0x294b0117, 0x0e010136, 0x16431e42, 0x3636291c, 0x1e1e1729, 0x8c1e1e2d,
0x01013025, 0x14141c11, 0x86388e82, 0x0b455a01, 0x01c01401, 0x161d2936, 0x0f421e42, 0x36523601, 0x1e2e1e2a, 0xd6370282, 0x1d253001, 0x02150a17,
0x30493001, 0x232babfe, 0x1c19032f, 0x4700212a, 0xc74406ef, 0x00112205, 0x0b5b411b, 0x29076a44, 0x37271707, 0x010f012f, 0xfd840717, 0x06560124,
0xfd853075, 0x0e34b129, 0x18173e2f, 0x8e0f2f3e, 0x201c2afb, 0x3905283c, 0x3c280539, 0x20008200, 0x2ffb8203, 0x01eb01d5, 0x001d00ab, 0x00320026,
0x33361300, 0x0e2be382, 0x012e0701, 0x16373427, 0x47150617, 0x27230715, 0x45260722, 0x248809aa, 0xad013e2a, 0x84642d26, 0x64840303, 0x10290582,
0x020a1411, 0x6c52526c, 0x23058202, 0x54071c20, 0x26055842, 0x013d2da9, 0x842d3d01, 0x9b012205, 0x822b8510, 0x282c2505, 0x201c0711, 0x05822d85,
0x0a150a22, 0x2005764a, 0x822c8756, 0x05002132, 0xd020a382, 0x0934a384, 0x1b001200, 0x2e002400, 0x32010000, 0x23151716, 0x2f012e35, 0x21240984,
0x37013e35, 0x22050449, 0x87330614, 0x15073b08, 0x07173533, 0x27152335, 0x672a5501, 0x16018005, 0x662a9613, 0x05d5fe05, 0x4e442a67, 0x458f2005,
0xb12f0590, 0x80454580, 0x25000145, 0x18353526, 0x83010d25, 0x25262207, 0x058f452b, 0xd0270585, 0x45463030, 0x46453030, 0x0b240bd3, 0x20001700,
0x3b488b82, 0x2e03230a, 0x8a822701, 0x17011e25, 0x4927010e, 0x01210797, 0x093e4800, 0x485b7827, 0x61020261, 0x20058448, 0x06984908, 0x48950121,
0xfe210a41, 0x821e8782, 0x48a92024, 0x0020057f, 0x2f080082, 0xff000005, 0x01c001c0, 0x002b00ce, 0x003d0039, 0x004f0041, 0x16361300, 0x3e173217,
0x36262701, 0x07061617, 0x011e0714, 0x07163637, 0x26272606, 0x12827e82, 0x37241882, 0x012e3734, 0x13371282, 0x1d011e33, 0x23352301, 0x34352315,
0x33151736, 0x07333735, 0x50333723, 0x223b058e, 0x3e352726, 0x43268d01, 0x090c0e0b, 0x3a05030b, 0x39351c26, 0x0f190a07, 0x932d1b25, 0x2a0b2314,
0x6a521912, 0x2c7f2505, 0x40ab2c3f, 0x122c0082, 0x18010118, 0x341bb201, 0x1a090739, 0x27213783, 0x224c8542, 0x82273904, 0x012a0814, 0x0e1a0a07,
0x272d1c25, 0x0d0e0a43, 0x05020b08, 0x01e0fe39, 0x2b801218, 0x1812802b, 0x2b2b2b2a, 0x552babab, 0x5512192b, 0xee821812, 0x82040021, 0x01d53def,
0x00ab01ab, 0x00200009, 0x0036002b, 0x012e1700, 0x1533013d, 0x03070614, 0x011e1732, 0x14280883, 0x22012b06, 0x012e3526, 0x3734d282, 0x010e1736,
0x34013e07, 0x011e2726, 0x37013e05, 0x1614010e, 0xeb2e3382, 0x19801912, 0x15171512, 0x0a0b1613, 0xb8821219, 0x160b0a30, 0x01c21513, 0x120f2c34,
0x342c0f12, 0x0a88abfe, 0x91822b20, 0x832b2b21, 0xd62808c9, 0x35561a06, 0x12294824, 0x29121919, 0x56352448, 0x3696061a, 0x611f1876, 0x141e4e5d,
0x3e33333e, 0x5d4e1e14, 0x76181f61, 0x0120ac82, 0xea35ab82, 0x9601c001, 0x00001400, 0x35273525, 0x06222634, 0x15071507, 0x20038337, 0x08108217,
0xabc00122, 0x01121b12, 0x4a2aaaaa, 0x2a6b2b4b, 0x120e756b, 0x6b750e12, 0x2075352a, 0x20151520, 0x02007520, 0xc4204384, 0x0f264382, 0x00001a00,
0x3d8a1713, 0x01371723, 0x34e38217, 0x011d0622, 0x4335011f, 0x2bab7f6a, 0x7a2a4a4b, 0xbbb0fe1b, 0x25568201, 0x500144a6, 0x4b88506b, 0x1b7a4f22,
0x61840f82, 0x15a74e25, 0x8600002a, 0x01eb225b, 0x82098280, 0x2117245b, 0x82211327, 0x1e1138a0, 0x35013b01, 0x11211123, 0x32331523, 0x2e113736,
0x00018001, 0x56fec080, 0x2108069a, 0x80015555, 0x18125555, 0x15180101, 0x19150180, 0x1200ff12, 0x00012a18, 0x182a00ff, 0x12000112, 0x97420019,
0x01ea2e06, 0x009901d6, 0x0017000b, 0x0021001d, 0x07634b25, 0x011e3726, 0x03010e17, 0x340a1f43, 0x17152307, 0x07022f37, 0x07272517, 0x40000117,
0x54010154, 0x44058540, 0x02390806, 0x6520476c, 0x1b635510, 0x8f011b62, 0x15621b62, 0x3f405402, 0x54020254, 0x2328823f, 0x516d0254, 0x512a2985,
0x3c80546d, 0x20d3321a, 0x02822052, 0x05005323, 0x05db4f00, 0x09829920, 0x87871120, 0x66823720, 0x95430382, 0x218d8b0a, 0x8885012f, 0x162ee126,
0x4a178044, 0xaa208d96, 0x8a218887, 0x2026832d, 0x208e97df, 0x2289870f, 0x88060000, 0x0003318b, 0x00130007, 0x0025001f, 0x13000036, 0x05372707,
0x07230382, 0x4517011e, 0x3e200563, 0x63450884, 0x33072a07, 0x27071715, 0x37013e07, 0x08088206, 0x17161447, 0x23061716, 0x58c6012e, 0x27015919,
0x68195918, 0x02026049, 0x61484960, 0x48610101, 0x02024836, 0x48373648, 0x4c480101, 0x570e4520, 0x1c2101eb, 0x25010113, 0x133b2a1e, 0x01604915,
0x4a1d4a7b, 0x1d4b1e4a, 0x8531822d, 0x60492837, 0x36490129, 0x84014936, 0x611f3405, 0x16281d1f, 0x29184329, 0x25131830, 0x0e28103b, 0x41610104,
0x03220ccf, 0xb9820d00, 0x33002322, 0x2725b982, 0x0e131707, 0x238c8201, 0x37363427, 0x07220c82, 0xc2823717, 0xb9821520, 0x37363225, 0x82133717,
0x82272012, 0x0714280c, 0x2e353617, 0x82062701, 0xab220807, 0xc61f131e, 0x401b3113, 0x10120154, 0x181d1b4f, 0x1611181e, 0x526c0219, 0x2f1a4024,
0x1b620d1b, 0x1a82ba62, 0x13210922, 0x39081282, 0x1821272d, 0x0f1e7a01, 0x10cdfe1e, 0x40540213, 0x8513311b, 0x1f131d1b, 0x40191114, 0x026c5224,
0x1b2f1718, 0x20524001, 0x54021b53, 0x20191b3f, 0x6d512e26, 0x20130102, 0xf7410009, 0x000b230a, 0xd3510017, 0x01002105, 0x2109bc51, 0xfd410723,
0x82172016, 0x822520b3, 0x15012403, 0x8240402a, 0x41152002, 0x832016ff, 0xfe2ca982, 0x1b621bee, 0x2b400001, 0xab2b4040, 0x20170042, 0x239f8223,
0x20522053, 0x220b2346, 0x49110008, 0x6f4d0617, 0x4d8c8205, 0x87420566, 0x0001210b, 0x2705654d, 0x36362909, 0x29363652, 0x230a2e46, 0x0c120cd5,
0x75210282, 0x23188301, 0x34013652, 0x210c6b4e, 0x00820003, 0x01eb0130, 0x00030096, 0x000a0007, 0x35232500, 0x03821533, 0x03210522, 0x2a2ed682,
0x00ff2a2a, 0x95ebd601, 0x6b2bab56, 0x97849501, 0xd74f0020, 0x000f3a05, 0x00170013, 0x32211300, 0x14111516, 0x22212306, 0x34113526, 0x23351736,
0x21038315, 0x2850016b, 0x19122306, 0x4682bc19, 0x4f800121, 0x122709b7, 0x8080d519, 0x822b2b56, 0x095b4f7a, 0x13207f83, 0xdd8c7f89, 0x40821520,
0x8a152a21, 0x80ab25d4, 0x15012bd6, 0x9b8bc98c, 0x0c000324, 0x4b851400, 0xcb470720, 0x23132707, 0x33171507, 0xd5833537, 0x0f0c1532, 0x0f0f180f,
0x7070a044, 0x80ab70a0, 0x101710dc, 0x01210282, 0x230d8231, 0x0400a070, 0x00399782, 0x9601eb01, 0x05000200, 0x0d000900, 0x03010000, 0x21130321,
0x35331537, 0x29038207, 0x01eb0001, 0xfea1ebd6, 0x97828cbe, 0xfe95012b, 0xfe40016b, 0x5656c0eb, 0x82d28480, 0x27408235, 0x29018301, 0x26001900,
0x06298582, 0x23272223, 0x26062706, 0x053a4f35, 0x37315308, 0x011e0733, 0x27373233, 0x2223012e, 0x16141506, 0x37013e33, 0x0c0f8201, 0x20010d26,
0x39332a38, 0x0b291b31, 0x072d3610, 0x05080d11, 0x141d075b, 0x171b1f1b, 0x440a2013, 0x013e3904, 0x37304001, 0x341b1d46, 0x031d2872, 0x2f272444,
0x012a2022, 0x71822324, 0x0582ab82, 0x01d60139, 0x000c002b, 0x001e0010, 0x0031002d, 0x16323700, 0x2e231517, 0x82013d01, 0x011d267c, 0x15213533,
0x290f8733, 0x2715013b, 0x16323315, 0xc24c011d, 0x35273a05, 0x23353317, 0x01181280, 0x18181256, 0x2b012b12, 0x19122a2a, 0xd52a1219, 0x820f842b,
0x2b2b2618, 0x1218d52b, 0x05495656, 0x0d822a20, 0x0a862b20, 0x25578020, 0x380e8206, 0x002babab, 0xff000004, 0x01da01ea, 0x002f0097, 0x004d003b,
0x2500005d, 0x29ef8206, 0x27010e27, 0x34272622, 0xf2823736, 0x2e363529, 0x06222302, 0x82070607, 0x3e353719, 0x16361701, 0x07011e17, 0x17161415,
0x35270716, 0x14070626, 0x29833316, 0x010e1723, 0x21358223, 0x1e823626, 0x36321726, 0x37163637, 0x26241c82, 0x011e3637, 0xb2083d82, 0x013e3726,
0x07075401, 0x17070c0d, 0x2f251e2a, 0x181c2101, 0x0201193a, 0x1109120b, 0x08020419, 0x0c050437, 0x2f162a4a, 0x01071411, 0x0606080d, 0x02332066,
0x0f191112, 0x23930308, 0x6b3d2d5c, 0x0404032a, 0x273a6b2d, 0x05072752, 0x0d24050e, 0x30160607, 0x03120c09, 0x0b050104, 0x0b040553, 0x13170b10,
0x232d2c01, 0x080a0c2e, 0x160b0702, 0x12110711, 0x01060109, 0x27310605, 0x0f0e0101, 0x591d3214, 0x090a1713, 0x010c6607, 0x17132317, 0x1d0f1901,
0x2a1a1aaf, 0x02050326, 0x11011d1a, 0x11080210, 0x01020206, 0x0c010e05, 0x0203112f, 0x56220c03, 0x54080697, 0x002401d6, 0x3700001b, 0x013e1732,
0x17163237, 0x011e3736, 0x36071417, 0x14011e33, 0x2e210706, 0x69363401, 0x2f01080a, 0x09291a23, 0x261d2214, 0x09080201, 0x161c1c16, 0x241ac6fe,
0x2403d324, 0x171c012e, 0x26010119, 0x0307081d, 0x1c2b1c01, 0x36230101, 0x06074223, 0x2509bf50, 0x0037002b, 0xf24b2500, 0x23372407, 0x87053315,
0x1725280c, 0x010e2315, 0x86272622, 0x82352005, 0x15212387, 0x23821527, 0x35331533, 0x35233533, 0x120e8001, 0x12121c12, 0xfe5f352e, 0x290a85b6,
0x2b403901, 0x24362401, 0x05848001, 0x18012b30, 0xc02b0112, 0x402a4040, 0x12013540, 0x0282121b, 0x8b35bf22, 0xdf260986, 0x241b6b55, 0x03831b24,
0x1812eb28, 0x402b5601, 0x0282402b, 0x00820020, 0xf3480820, 0x00173d08, 0x0024001b, 0x002c0028, 0x00390030, 0x13000042, 0x15163233, 0x14231133,
0x35262206, 0x11280586, 0x07363433, 0x05352115, 0x2507ee51, 0x2315013b, 0x03853337, 0x2008d256, 0x291d8727, 0x0c0956d5, 0x120c2b80, 0x0382d60c,
0x0c802b26, 0xff2a0161, 0x29062545, 0x402b2b74, 0x152b1515, 0xeb4c6b15, 0x454f2005, 0x0125053c, 0xfe090c95, 0x200b8280, 0x20038309, 0x23098201,
0x15555540, 0x82053e45, 0x2334822e, 0x30483001, 0x6c200282, 0xc2821385, 0x2206eb43, 0x829601c0, 0x003533bb, 0x06220100, 0x17161407, 0x33152315,
0x27012e15, 0x08823533, 0x011e3526, 0x15373632, 0x0e230b84, 0x50350701, 0x35230521, 0x5007012e, 0x003f0820, 0x1701241b, 0x1e404014, 0x6b201131,
0x5a4e1a2b, 0x6b2b1a4e, 0x1e31101f, 0x17144040, 0x871b2401, 0x2420089f, 0x0721141c, 0x05942b2e, 0x6a2a1a20, 0x2a2a2524, 0x2a6a2425, 0x94052119,
0x21072e2b, 0x2a241c14, 0x48064853, 0xc037053f, 0xc401d601, 0x07000300, 0x29001c00, 0x50003600, 0x23010000, 0x82073335, 0x013f3503, 0x0f262736,
0x07222601, 0x1f062627, 0x15010e01, 0x17263421, 0x1520bc82, 0x3d24ac83, 0x21263401, 0x8205b05e, 0x27a982b9, 0x3b161417, 0x16141501, 0x33200d83,
0x2d082286, 0x3d363233, 0x40012101, 0x156b1515, 0x061c7615, 0x1f080706, 0x201a3e1a, 0x1b070e07, 0x00011c18, 0x120d521d, 0x1b120101, 0x88fe1212,
0x0782120e, 0x28230c82, 0x8316090c, 0x832a2009, 0x16200817, 0x00ff0c09, 0x16165501, 0x071c2716, 0x20060608, 0x06200d0d, 0x121c070e, 0x35202035,
0x950e126b, 0x048d3582, 0x0c09d523, 0x2014834b, 0x3605854b, 0x00d5090c, 0xff000004, 0x019601d5, 0x000800a2, 0x00230011, 0x5600002c, 0x142206cb,
0xfa452306, 0x013f2307, 0xea830727, 0x0e17072a, 0x21011d01, 0x05263435, 0x20053049, 0x41bf8235, 0x8920055b, 0x8f300685, 0x1e31122d, 0x12311e48,
0x01211c2d, 0xf7fe212a, 0x23055c4a, 0x0001d6fe, 0x8505f341, 0x2d633a05, 0x10103111, 0x152d1131, 0x1616253e, 0x40e33e25, 0x54020254, 0x00005540,
0x318f8203, 0x01b601f0, 0x00210096, 0x00320029, 0x15331300, 0x75821e33, 0x3e17073e, 0x0e333501, 0x011f0701, 0x2206012f, 0x3f010f27, 0x34352701,
0x07333736, 0x27373216, 0x37201182, 0x08072450, 0x0b2aeb24, 0x2309120e, 0x012b1412, 0x02431b1f, 0x52234128, 0x02284123, 0x0e12097c, 0x3a1a220b,
0x1a0a201a, 0xaf85170a, 0x95012408, 0x0d12012a, 0x123d094b, 0x42271b2e, 0x1a2f7418, 0x71111171, 0x09d72f1a, 0x01120d4b, 0x360c0cca, 0x85690909,
0x4b0020b3, 0xad2006c3, 0x2c329b84, 0x0e250000, 0x22262201, 0x26220706, 0x37012e27, 0xa682013e, 0x1723a382, 0x82171632, 0x011e21a5, 0x5b08ab82,
0x37013e03, 0x27020e16, 0x8f013626, 0x1b291f0d, 0x15131c2e, 0x181d0d21, 0x1b2e0f1a, 0x0d0d2415, 0x2e0b1a2b, 0x03270414, 0x01043204, 0x230c890e,
0x160d0210, 0x0e021222, 0x0f1f1520, 0x1521010f, 0x1834792a, 0x0110011d, 0x0f011301, 0x2828011b, 0x23022730, 0x110e3e01, 0x1c231301, 0x003e0483,
0x00050000, 0x01d6ff00, 0x00ab01d6, 0x002c0019, 0x0040003c, 0x13000044, 0x17373633, 0x90820706, 0x14111529, 0x17012b06, 0x48232707, 0x1121065d,
0x2e0a8333, 0x011e3727, 0x3726013b, 0x37362623, 0x82231113, 0x063322af, 0x22338417, 0x44271716, 0x55300611, 0x181912a9, 0x12830b0e, 0x6c121818,
0xbf0b2707, 0x5e080883, 0x2c0903b7, 0x10141b4c, 0x01052e41, 0x13014602, 0x0e96c019, 0x053d0412, 0x14183b03, 0x02023b27, 0xd52b2bb5, 0x6b012b2b,
0x13181d23, 0x12180115, 0x1912ebfe, 0x192a101a, 0x12150112, 0xebfe2a18, 0x230c0e15, 0x15150a08, 0xfe426603, 0x241501eb, 0x2b291943, 0x11230c05,
0xea0b0c07, 0x84404040, 0x00002fcf, 0x2b01ab01, 0x1b001700, 0x2f002b00, 0x0f823300, 0xab613520, 0x3e33290b, 0x2e353701, 0x35012b01, 0x82052e61,
0x1e1522bd, 0x07ea6301, 0x60600720, 0x01232205, 0x058347ab, 0x23063d4d, 0x2b6a2b12, 0x2205554e, 0x822b1218, 0x82a820c9, 0x012b220d, 0x067d4700,
0x2108d25d, 0x17648080, 0x80d5210d, 0x27089f60, 0x004c01d6, 0x2500001a, 0x21286e82, 0x3427012e, 0x35263736, 0x32218982, 0x30048217, 0x0715011e,
0xd501011e, 0xfe242f01, 0x012f24fe, 0x2c0c8228, 0x0e14171e, 0x362c2a0b, 0x251e0134, 0x8213827f, 0x2e20341b, 0x16050505, 0x1d0d011e, 0x4302012a,
0x2d07072e, 0x4d000a00, 0x96340533, 0x16000b00, 0x25002100, 0x2d002900, 0x35003100, 0x3d003900, 0xa74cf982, 0x013f2411, 0x8203012e, 0x3f838273,
0x011e010f, 0x37072737, 0x23153307, 0x0717013f, 0x15333537, 0x33352327, 0x3727010f, 0x35231507, 0x2a0df650, 0x01026049, 0xa0511517, 0x8a223b16,
0x21102c0a, 0x15151041, 0x10170f53, 0x8795200c, 0x0c0e5108, 0x6002282c, 0x163b2249, 0x171551a0, 0x0b89abfe, 0x4110aa2d, 0x42206521, 0x6a10160f,
0x87751515, 0x82002008, 0x84012000, 0x01ab27d3, 0x002a0080, 0x25501300, 0x3e153005, 0x1e323301, 0x023e3302, 0x17163233, 0x4d070615, 0x2221057d,
0x08a78206, 0x012e1151, 0x80363435, 0x0f111e17, 0x12152e13, 0x0e13131a, 0x0507241a, 0x01010c09, 0x242e020b, 0x121c3723, 0x0f2a0b23, 0x80011e11,
0x11161e01, 0x0513061a, 0x04070509, 0x0c040b01, 0x060dab09, 0x01011001, 0x0509010e, 0x062f0147, 0x1e16111a, 0x82000900, 0xab012a00, 0x03006b01,
0x0b000700, 0x05694b00, 0x1f001b27, 0x00002300, 0x061f4225, 0x07822720, 0x03821720, 0x03860720, 0x0f861520, 0x01221783, 0x00825655, 0x56568022,
0x0a870288, 0x2a561522, 0x56220182, 0x1f82d656, 0xaa210383, 0x4c6a8256, 0xc0220503, 0x6f848001, 0xf3820f20, 0x21152127, 0x21112117, 0x32dd8237,
0x27263533, 0xfe800140, 0x56011580, 0x0a76aafe, 0x82018001, 0x16552b03, 0x01d5ebfe, 0x09202009, 0x57440001, 0x01d62206, 0x203f8296, 0x263d830d,
0x11252111, 0x83333521, 0x2b353092, 0xd6fe2a01, 0xd6feaa01, 0x012bd62a, 0x82d6fe95, 0x2b552209, 0x078f5cd6, 0x4b5fff20, 0x4c092005, 0x3325064b,
0x23352315, 0x20058215, 0x85088205, 0x8227203f, 0xc02b270d, 0x552b6b2b, 0x0683aa01, 0xaaaad525, 0x82559501, 0xc02a210f, 0x6a210583, 0x057345aa,
0x03234785, 0x8b000900, 0x25352181, 0x81888382, 0xd5fed523, 0x248287d6, 0xd6d656d5, 0x20008200, 0x08bf4206, 0x210b6b41, 0x75821300, 0x89823720,
0x17248783, 0x37233533, 0x072b8f82, 0x2b333523, 0x6b95c0c0, 0x8215016b, 0x156b2c89, 0x40402a40, 0x96c09501, 0x82c0556b, 0x40952604, 0x0040aa40,
0x2f4f8201, 0x01d201ee, 0x001f0092, 0x27332500, 0x27071737, 0x06844882, 0x23351722, 0x17230d83, 0x82353307, 0x2e0a8214, 0x206b1501, 0x1e54541e,
0x1f206b20, 0x821f5454, 0x200d8b06, 0x861493d5, 0x063f4a30, 0x5601962a, 0x00000800, 0x35072701, 0x352fac82, 0x1e950123, 0x8dd52ae2, 0xe21e3701,
0x822ad58d, 0x22278dde, 0x4d173713, 0x6b2005dc, 0x0420268c, 0xbf222884, 0x4b827f01, 0x2105f15b, 0xa4820100, 0x3321f282, 0x84a58215, 0x27232107,
0x27223a86, 0x214e3711, 0x01072e05, 0x4d601ea0, 0x1e7e2b96, 0x4d962b60, 0x200483fe, 0x210f8360, 0x11860160, 0xfe201d84, 0xfe211284, 0x821e84c0,
0x84012067, 0x01a9226b, 0x236b826b, 0x11331300, 0x2c051841, 0x1e762aeb, 0x761ea9a9, 0x00ff6b01, 0x20098375, 0x8d268475, 0x8515202b, 0x56d5302b,
0xa9a9344a, 0x6b014a34, 0xa9334ac0, 0x424a33a9, 0x0b220a7f, 0x73441200, 0x8213200d, 0x152322ac, 0x0d484423, 0x56406b23, 0x0c214440, 0x6bc2fe23,
0x06bb4755, 0x20054742, 0x2a478206, 0x2500001e, 0x33353327, 0x44273315, 0x3e2611c4, 0x012e3701, 0x49830001, 0x964e6b20, 0x495b230a, 0x2c510260,
0x82552007, 0x4ed52053, 0x28200aa1, 0x420a4551, 0xc02807b3, 0x06009601, 0x20001a00, 0x17396b88, 0x06010f06, 0x26012f22, 0x3f363527, 0x1f323601,
0x27171601, 0x37171507, 0x296d8535, 0xa90a0155, 0xa9050e05, 0x0888010a, 0x9595c023, 0x296c8395, 0x5e060d60, 0x065e0404, 0x0887c00d, 0xa6544725,
0x41a65454, 0x0e200c1f, 0x220d1f41, 0x41371707, 0x10220c1b, 0x19416b6b, 0x6ba8220c, 0x0b5f436b, 0x17000b22, 0x0021ad82, 0x0b8f5301, 0x8f0a1c41,
0x0b0e414d, 0x598e2220, 0x200b0e41, 0x2365837e, 0x00040000, 0x01230082, 0x428001c0, 0x37200987, 0x22078742, 0x42270737, 0x1f210587, 0x05c24201,
0x42352721, 0xcb2c0787, 0x954c601e, 0x601e7e2b, 0xac4c952b, 0x60200483, 0x60210f83, 0x841085a9, 0x84ac201c, 0x846a2011, 0x4300201c, 0xab220613,
0x67826901, 0x15250023, 0x05944321, 0x42ab0121, 0xd520077b, 0x20068d42, 0x08af4200, 0xc0432b88, 0xab012106, 0x20067b42, 0x068c42eb, 0x230c6341,
0x25000012, 0x2c051e46, 0x1e37013e, 0x35170501, 0x35233533, 0x0b0c4201, 0x6bc2fe25, 0x42c05555, 0x6b230b39, 0x51405640, 0x83420c0f, 0x013f2706,
0x23153315, 0x508a3715, 0x012e0723, 0x07814127, 0x65429520, 0x42c0201a, 0x6b881b9e, 0x870a8342, 0x1883426b, 0xc0206d83, 0x84158142, 0x420b206c,
0x1f411782, 0x410e200c, 0x27220d1f, 0x1b411707, 0x6ba8220c, 0x0b19416b, 0x6b6b1022, 0x420c1741, 0x25200683, 0x200a0441, 0x0a1c4127, 0x67424d8f,
0x0c73410e, 0x200aad43, 0x20658222, 0x22678201, 0x42a80100, 0x37250517, 0x17072115, 0x214d8237, 0x92440155, 0x08164206, 0x3320278e, 0x12422786,
0x25f38c0f, 0x37000012, 0xce56013e, 0x2e072305, 0x624f2501, 0x442b2005, 0x01210a1f, 0x1612423e, 0x420a7f62, 0x25270613, 0x35233507, 0x8a073533,
0x82598350, 0x012e260e, 0x01010e27, 0x3914426b, 0x934f0320, 0x07974408, 0x97446b85, 0x426d831a, 0xcb201b14, 0x20171442, 0x087b4702, 0x0e000b22,
0x220d1f41, 0x41273717, 0x12420b1b, 0x0a174114, 0x41061342, 0xd64a0b04, 0x0e172505, 0x012e0701, 0x12424d8e, 0x0d3f472a, 0x84442520, 0x06674707,
0x66474920, 0x050f4205, 0x21068b47, 0x1e47013f, 0xe26b2c06, 0xe22ad58d, 0xd52ae249, 0x8600e28d, 0x01a92947, 0x00080068, 0x11232500, 0x44070048,
0x1520066a, 0x20076442, 0x08734400, 0x2c482b88, 0x442b2007, 0x1520066b, 0x2016f746, 0x0ba55605, 0x15330725, 0x45333533, 0x5b240cdb, 0x4056406b,
0x240b3355, 0x556b3e01, 0x0c5b4355, 0x27065f42, 0x15231701, 0x17233523, 0x2720508a, 0x21075c42, 0xf7461e07, 0x2b01211e, 0x411a7d42, 0x734406b3,
0x206b860a, 0x18734405, 0x2105f746, 0x76442b01, 0x466d8415, 0x9b4a18f9, 0x000b240b, 0x4100000e, 0x37220b23, 0x1f410727, 0x6b10220c, 0x0b1d416b,
0x7744a820, 0x41052015, 0x37200a08, 0x8f0a2041, 0x0efb464d, 0x7f42598b, 0x002c080e, 0xff000002, 0x01c001d5, 0x00120096, 0x0100001a, 0x15062221,
0x17161411, 0x33371733, 0x1135013e, 0x010f2634, 0x013f012f, 0x9501011f, 0x2b051967, 0x55404055, 0x7f191912, 0x58582828, 0x01320382, 0xfe121895,
0x011812d5, 0x18014040, 0x122b0112, 0x1784e818, 0x44285821, 0x08250a83, 0x00002f00, 0x07676725, 0xf5551320, 0x22233105, 0x012e0627, 0x16323634,
0x16141517, 0x013d3632, 0x0805db64, 0x15013b2b, 0x34262223, 0x1a000136, 0x26342626, 0x7d581a26, 0x18271f2b, 0x3e3e5820, 0x13013e58, 0x8c65131a,
0x6b466565, 0x7d7d586b, 0x2b1f8380, 0x15012634, 0x201f587d, 0x0120202c, 0x3e292182, 0x140d1f2c, 0x461f0d14, 0x23278265, 0x7db07d2a, 0x2408ef54,
0x0028002b, 0x06374100, 0x2105e554, 0x7f822e23, 0x1533372a, 0x14010e23, 0x3e013b16, 0x27208182, 0x17390b84, 0x32a01533, 0x42010142, 0x3024e032,
0x17b52430, 0xa0171e1e, 0x0c0c09a0, 0x840a8409, 0x40cb2114, 0x32311e82, 0x30010242, 0x01013049, 0x011e2d1e, 0x120c0120, 0x8409840c, 0x00202213,
0x06034100, 0x9601ab30, 0x22001400, 0x21050000, 0x11272622, 0xe382013e, 0x35173723, 0x23fa8233, 0x27010e11, 0x33057c51, 0x3533013d, 0x01261523,
0x1200ff80, 0x18010118, 0x35361512, 0x3705ca5c, 0x1818127d, 0x55401924, 0x1218150a, 0x18125601, 0x95202095, 0xaafe1218, 0x19290982, 0x12181824,
0x06712b6b, 0x205c8200, 0x05236400, 0x07009624, 0x03500f00, 0x13002d06, 0x17273707, 0x011f0737, 0x27170737, 0x13200b82, 0x17200685, 0x07240a82,
0x14161737, 0x2906f249, 0x36013f34, 0x1e35a032, 0x0382351e, 0x0786cb20, 0x0e856a20, 0x3483352c, 0x3144342e, 0x07f80707, 0x06850711, 0x84490121,
0x35352228, 0x210786b4, 0x38830001, 0xc8200382, 0x47212b82, 0x21288231, 0x2b8207f8, 0x33821120, 0x2e065b49, 0x004b01d6, 0x000a0002, 0x0015000e,
0x82013f00, 0x3733268c, 0x27331733, 0x08f58213, 0x35333729, 0x33072733, 0x2e181972, 0x440f2944, 0x4b44280f, 0x6a40eaea, 0x40757540, 0x794e4eb2,
0xc02a2ac0, 0x2b2beafe, 0x8276766a, 0x834582e6, 0x01ab22e7, 0x344b82ab, 0x0100001d, 0x15273715, 0x1607010e, 0x35263717, 0x0717013e, 0x220d8316,
0x82170735, 0x26372f0c, 0x55550001, 0x01026049, 0x010f1f1a, 0x0483c649, 0x10853620, 0x40400136, 0x02405655, 0x28334960, 0x36211b1f, 0x1c1f2449,
0x01493620, 0x476a1487, 0x0008290c, 0x00300027, 0x37000039, 0x2505075b, 0x15110622, 0x7d4a3533, 0x37362208, 0x62828417, 0x1720096e, 0x2205ca42,
0x87253632, 0x53eb2030, 0x2a230509, 0x53014738, 0x012605d7, 0x911e7420, 0x70622a23, 0x85802008, 0x53ff2020, 0x552006ec, 0x25066453, 0x09295522,
0xdc5b3a51, 0x27372805, 0x01911e73, 0x5e304f1a, 0xc020086d, 0x09202585, 0x4f4f0685, 0x006b240a, 0x65140008, 0x012e0c49, 0x3634012e, 0x1632013b,
0x37070614, 0xe8612327, 0x011f2f05, 0x26010e16, 0x1e168b01, 0x1e1e2d1e, 0xf654ecfe, 0x1e623108, 0x41015b4e, 0x021c2e39, 0x1a0b043d, 0x016b0117,
0x2d242083, 0x01abfe1e, 0x2e056557, 0x5b551601, 0x01032f03, 0x0dad0b17, 0x820b0917, 0x0300217a, 0x01230483, 0x824901c0, 0x000c257b, 0x37000010,
0x2605dd4a, 0x15351521, 0x82173523, 0x556b2d03, 0x1e89891e, 0xd5550155, 0x56abd5d5, 0x56250b83, 0x2b2b952a, 0x0abb5ad5, 0x01000225, 0x440e0080,
0x0625058b, 0x1617010f, 0x06136c17, 0x65070321, 0x1720052a, 0x01345582, 0x16c0fed5, 0x0c73730c, 0x12400116, 0x1e521919, 0x4d1e4d4c, 0x4c320282,
0x80014c1e, 0xadad1201, 0x12190112, 0x19122a01, 0x1784f3fe, 0x3b421d85, 0x00002906, 0x8001c001, 0x24001b00, 0x0e260982, 0x17230701, 0xcd482337,
0x27262508, 0x33011e07, 0x2e240e82, 0x012e0701, 0x28059843, 0x6c520001, 0x56554002, 0x08ed5f40, 0x1e263125, 0x82213c18, 0x6c022215, 0x066c6e27,
0x02800126, 0x5555526c, 0x2309855d, 0x15131e1a, 0x52221282, 0x4664be6c, 0x059f4305, 0x7b82ea20, 0x0400ab22, 0x26062141, 0x13000014, 0x5b211507,
0x212205d8, 0xa9572135, 0xf5353d06, 0x6b9501ca, 0x0196fe40, 0xaa6bfe95, 0x0140c040, 0x2b2b6bab, 0xff969655, 0x96c04000, 0x00230082, 0x82000700,
0xd6012300, 0xa7514001, 0x1300240e, 0x97231133, 0x2a2b2c03, 0x1515402a, 0x5640402a, 0x82401515, 0x40402a0b, 0x01151555, 0x0100ff40, 0x20039500,
0x05635300, 0x01000223, 0x27678c96, 0x00290020, 0x003b0032, 0x2a086d98, 0x35231501, 0x013b3634, 0x16322515, 0x3523011d, 0x15013523, 0x22231533,
0x05013d26, 0x14153335, 0x35012b06, 0x402b2b55, 0x822b1616, 0x16162284, 0x2e0b8440, 0x192b96fe, 0x55015512, 0x552b1912, 0x8255abfe, 0xd5012107,
0xa2971184, 0x56562b2e, 0x2a2a1812, 0x56561218, 0x56d6fe2a, 0x12840884, 0x0035d182, 0x7601d5ff, 0x4800a701, 0x2e370000, 0x011e3701, 0x2e35011f,
0x25078a03, 0x26171617, 0xf65a3427, 0x56372006, 0x0721056e, 0x2e089115, 0x012e3523, 0x01060c9c, 0x070e301b, 0x8d192919, 0x02032f08, 0x0b110105,
0x0601110c, 0x1b300e05, 0x20820601, 0x08900720, 0x29192a2e, 0x16291339, 0x0c132110, 0x241e0e31, 0x0436098e, 0x18131406, 0x30171931, 0x09141518,
0x16102113, 0x0e1e2429, 0x09910c31, 0x0e272723, 0x09c3421e, 0x80019625, 0x82001300, 0x33252710, 0x33352115, 0x03842335, 0x2315212c, 0x2b153315,
0x32011e01, 0x914b3736, 0x15802405, 0x8215d6fe, 0x2a012100, 0xc0300482, 0x24362401, 0x04380401, 0x2b2b3804, 0x802a802b, 0x1c290483, 0x231c2424,
0x4c03034c, 0x06535a00, 0x7001d938, 0x1d000b00, 0x26370000, 0x011e3736, 0x07061607, 0x0637012e, 0x54821716, 0x4c263621, 0x0e2806f2, 0x5b032b01,
0x035b7d7d, 0x1f350584, 0x50774503, 0x6c030b5e, 0x0e391317, 0x1e18111d, 0xe9116532, 0x35028211, 0x05054b05, 0x3f04124b, 0x26202304, 0x52060783,
0x03250306, 0x2f446908, 0xeb240809, 0x17009601, 0x23001a00, 0x22330000, 0x3e022f26, 0x37013b01, 0x011f3236, 0x17163233, 0x010e010f, 0x33070323,
0x3b08625b, 0x06140c75, 0x0c010238, 0x06636109, 0x61620716, 0x01010c09, 0x0c140639, 0x4080408b, 0x33056743, 0x0aca0a0d, 0x098c0c09, 0x090c8c09,
0x0d0acd07, 0x555b5b01, 0x5306a343, 0x122b1273, 0x28002400, 0x33130000, 0x57172315, 0x172006bc, 0x20057951, 0x268c8301, 0x21333634, 0x84151632,
0x33272486, 0x84402137, 0x402b3200, 0x406bc040, 0xcbfe4055, 0x3805140d, 0x01090c02, 0x38878256, 0x0d140539, 0xfe2ebcbe, 0x409501e8, 0x40aa402a,
0x55556b80, 0x0a0dabfe, 0x828e829f, 0x0aa2248a, 0x63802a0d, 0xab20085b, 0x86064f43, 0x4737207f, 0x83820504, 0x37233522, 0x96063f4b, 0x827c827f,
0x207f9b84, 0x207e99eb, 0x055f5600, 0x96018034, 0x00001300, 0x23352301, 0x010e2315, 0x16141115, 0xd06e013b, 0x64012905, 0x0c248024, 0xc80c1010,
0x01280482, 0x012a2a6b, 0xb9fe0c10, 0x0c250b82, 0x100c4701, 0x05374d00, 0x03283f83, 0x00001700, 0x33112325, 0x8e05e652, 0xaa552345, 0x488a0faa,
0x00014023, 0x914a8f2b, 0xa435204b, 0xeb55214b, 0x4bb74a91, 0xc9c08021, 0xab95214b, 0xab214bc9, 0x214bc995, 0x4bc980c0, 0xa155eb21, 0x2301214b,
0x2225c741, 0x91400001, 0x0e5f424c, 0x15214ba8, 0x254b912b, 0xff000003, 0xab4201ea, 0x00072205, 0x09df631b, 0xf7421320, 0x2a152113, 0x4f200082,
0x250ab342, 0x2bc06b95, 0xb5420001, 0x42002010, 0x13220a6b, 0x45431900, 0x35032515, 0x33153723, 0x27084b43, 0x10100dc7, 0x2b552b85, 0x23104f43,
0xa076abfe, 0x2608d34a, 0x01eb01ea, 0x83050096, 0x23252653, 0x15330735, 0x2aa78e03, 0x012e1137, 0x6b40eb01, 0x43237240, 0xc72b05a3, 0x0101100c,
0xd696d510, 0x918001aa, 0x20ff85a8, 0x225384ec, 0x841d0009, 0x205582ff, 0x129f4127, 0xec205984, 0x80235982, 0x900eabab, 0x436a205c, 0x5b851171,
0x0322af83, 0x5b861700, 0x8310bd43, 0x84172055, 0x000121c9, 0xd120578f, 0x7d436c83, 0x82952010, 0x890020ca, 0x0005215b, 0xeb20b7a3, 0xc020b797,
0xc4114543, 0x6bd521b7, 0x9b0f6c42, 0x410320b7, 0xb798176f, 0x43150121, 0x00201219, 0xb2171741, 0x432a205f, 0xd742122d, 0x0017270d, 0x011e0100,
0xa16c1115, 0x34112d06, 0x35333736, 0x15071533, 0x64013533, 0x26071e46, 0x9580240c, 0x466b01aa, 0x01250c21, 0x2bab2a2a, 0x27ab8a2b, 0x00170013,
0x1300001b, 0x27234d89, 0x84013e11, 0x3317284d, 0x33252315, 0x83f92335, 0x05cb4250, 0x80230c29, 0xffabab6b, 0x93abab00, 0x95162257, 0x08534f00,
0x21308346, 0xf5920115, 0x23440220, 0x00132208, 0x21f3951f, 0xd8733517, 0x25fb8c09, 0x402a4015, 0xa7912a40, 0x402bd623, 0x41028240, 0x1f220c03,
0x03412300, 0x23052215, 0x265e8215, 0x33353335, 0x41053315, 0x0121100b, 0x05b26416, 0x4155fe21, 0xd6201310, 0x15216784, 0x08475395, 0x01802408,
0x00150096, 0x002d0019, 0x0e072500, 0x36230701, 0x3436013f, 0x07062226, 0x32013e23, 0x07141716, 0x44333523, 0x413614fd, 0x030c0813, 0x1a14042b,
0x1824180c, 0x30012a01, 0x40013048, 0x0f452a2a, 0x14bb350b, 0x1d0d1208, 0x240c1b15, 0x24121818, 0x1d243030, 0x16012aa3, 0x6d117644, 0x962008af,
0x2820f382, 0x362b8982, 0x3e211533, 0x06353701, 0x82012e07, 0x830a838a, 0x011d248d, 0x8417011e, 0x2f262211, 0x3aac8201, 0x45400135, 0x0196fe50,
0x0f1b4e5b, 0x2129220a, 0x495f020a, 0x0c120c01, 0x84035e4a, 0x1c0f3e0e, 0x2d3c01ab, 0x0b550c34, 0x088a1027, 0x13131119, 0x08513b11, 0x0c0c0901,
0x51080109, 0x260f833b, 0x2ddd0919, 0x586a013c, 0x1d310c5f, 0x34002b00, 0x22170000, 0x3f342726, 0x26223501, 0x06074f3d, 0x14011d2f, 0x17152306,
0x010e1516, 0x16142523, 0x27a38217, 0x07012f34, 0x37060727, 0x3507a37c, 0x01241b80, 0x0c09750b, 0x12561218, 0x75090c18, 0x1b24010b, 0x6f82ebfe,
0x0c090029, 0x6c363004, 0x4faa0450, 0x24080579, 0x131c2415, 0x0c27cc0f, 0x18121609, 0x09161218, 0x0fcc270c, 0x40241c13, 0x01010c09, 0x5405100c,
0x058a6c36, 0x072065b9, 0x24058349, 0x009601c0, 0x93979f1d, 0x206b9680, 0x06774100, 0x0e255783, 0x00002c00, 0x24d38837, 0x07152335, 0x1d004106,
0xd4866b20, 0x7c2a7c24, 0xf5921504, 0xc9862b20, 0x5d5dd725, 0x954705d7, 0x820020ed, 0x57042000, 0x838308c3, 0x36003122, 0x272987ae, 0x3f231737,
0x22141601, 0x27919f34, 0xb6291d6b, 0x13092d39, 0x802799a3, 0x1e62471c, 0x41131301, 0xd6220723, 0x714c9601, 0x09b55705, 0x35070622, 0x220b3d74,
0x67173736, 0x95200721, 0x2308cf73, 0x221e1b25, 0x2208375b, 0x726b303a, 0xc02005de, 0x22091f74, 0x59097715, 0x3c240855, 0x01791d60, 0x2005ba7c,
0x20778700, 0x08778296, 0x0e000337, 0x21130000, 0x011b2303, 0x16360333, 0x3f361617, 0x40015501, 0x2204eb2a, 0x29111d16, 0x15451b12, 0xfe950106,
0xfe800156, 0x062401aa, 0x09171103, 0x06004509, 0x05ef4f00, 0x05004a38, 0x2a001f00, 0x46003300, 0x00004a00, 0x22012e25, 0x16370706, 0x48822307,
0x36373229, 0x07063337, 0x6b222706, 0x162807ed, 0x26273405, 0x33152327, 0x27231a82, 0x82363233, 0x012b2b0d, 0x07141617, 0x012b020e, 0x33823311,
0x07148508, 0x37160706, 0x01333523, 0x251702a2, 0x02880315, 0x13018a01, 0x070a210b, 0x11023304, 0x3a262e19, 0x28192a34, 0xfcfe0c0c, 0x39110a10,
0x110a1138, 0x15123864, 0x31130d0e, 0x080b0a92, 0x77142318, 0x0c143180, 0x140d080c, 0xba6b6bbd, 0x13161514, 0x1c190d05, 0x0409070c, 0x1c121109,
0x32342f01, 0x11141235, 0x04071541, 0x08054701, 0x06230d66, 0x2f106404, 0x07120d12, 0x1c010a01, 0x090e3011, 0x1b5d0806, 0x56051f41, 0x13220587,
0xd7821900, 0x21152708, 0x34353735, 0x3e353736, 0x17163201, 0x1d011e15, 0x010e0701, 0x01272622, 0x2b80fec0, 0x1801303a, 0x30011824, 0x07846a3a,
0x16162b32, 0x4d33802a, 0x1812070f, 0x0f071218, 0x5580334d, 0x00200983, 0x2e060744, 0x01d801d5, 0x000a009c, 0x001f0018, 0x84270500, 0x37240859,
0x27013727, 0x27263435, 0x22012e35, 0x06150706, 0x013e1307, 0x011e2337, 0xfe3bbd01, 0x64112bbe, 0x43a5011b, 0x132a6686, 0x18125012, 0x18015601,
0x67823a25, 0x65212527, 0x795bfe1b, 0x286f8866, 0x82fe0c05, 0x12121801, 0x2e6f8718, 0x01ab01ea, 0x00070096, 0x0022001b, 0x84232500, 0x011f21c2,
0x59736882, 0x010e2407, 0x82071507, 0x320738e1, 0x14233536, 0xc0550116, 0x36523601, 0x3b012b01, 0x121b122f, 0x823a2f01, 0xb66b3e0a, 0x18551912,
0x36298b55, 0x75752936, 0x0e0c4932, 0x0e12120e, 0x32490c0e, 0x15152b75, 0x416f8b55, 0x052d0537, 0x25001900, 0x013b0000, 0x2622010e, 0x123f4137,
0x200b9f7a, 0x22cd82d5, 0x41ea1824, 0x40220b4a, 0x02832a40, 0x18181223, 0x104e413d, 0x1c848020, 0x2207df43, 0x82eb01d5, 0x821320df, 0x0021226f,
0x1bab4129, 0x1e07132f, 0x34331501, 0x34330526, 0x0e273736, 0x13bb4101, 0x1c1ed02d, 0xfe242b1d, 0x1c1d2b4e, 0x4124221e, 0x012e16c9, 0x461c1e7c,
0x86563027, 0x1e1c4627, 0x88825621, 0x00000523, 0x838785ff, 0x002224f7, 0x9c32002a, 0x012e21fb, 0x07227f82, 0x928f3315, 0x20120841, 0x05ef432a,
0x8c3ad621, 0x15174199, 0x013c2e28, 0x952e3c01, 0x9f8f3c01, 0x9f840320, 0x4b01c021, 0x232005cf, 0x23229b9c, 0x99823315, 0x37233522, 0x55238c92,
0x82454580, 0x257d9402, 0x31392bab, 0x3b433a2a, 0x01d22205, 0x216b826e, 0x69820013, 0x2315372e, 0x32363411, 0x06141516, 0x011e1507, 0x272d0682,
0x3e353722, 0x23343501, 0x011d0622, 0x08098316, 0x3632c535, 0x1a21325b, 0x303a2a28, 0x241b0422, 0x1d1a182d, 0x76491e37, 0x362e5e01, 0x2e1a262b,
0x2e060108, 0x01362a24, 0x2303299f, 0x1c1f2c16, 0x1b0111bc, 0x4400391a, 0xcf5808c7, 0x00202505, 0x15331300, 0x2009c758, 0x06dc5823, 0x82151721,
0x06c26dd1, 0x58197c21, 0x193006c4, 0x1100ff11, 0x16010119, 0x2b4040a9, 0x95014040, 0x2e07c458, 0x11191911, 0x18105601, 0x6b2b40a8, 0x82402b6b,
0x00063963, 0x02eaff00, 0x00a70100, 0x00140008, 0x00320029, 0x0047003e, 0x26223700, 0x1421d683, 0x08806006, 0x012e3732, 0x23353337, 0x27012e27,
0x06010f06, 0x011f1607, 0x27227682, 0x29931337, 0x08e64118, 0x2a206b27, 0x2b2b3f2a, 0x05bb411f, 0x013c2d3e, 0x59a43c01, 0x11052944, 0x4f0a1009,
0x1101010a, 0x32302648, 0x2b2b1f7e, 0x202a2a3f, 0x2d201e84, 0x6e272a84, 0x21151511, 0x830b1616, 0x2b3f2517, 0x2e3c01b5, 0x2c261c87, 0x09084626,
0x3d820101, 0x0b141029, 0x238b6b2b, 0x91ebfe32, 0x169b2325, 0x02821620, 0x8f5a0020, 0x80270806, 0x09008001, 0x11130000, 0x27353717, 0x1107011f,
0xb0c64f6b, 0x016f3623, 0x2babfe80, 0x533b576f, 0x0e013e19, 0x67000500, 0x802a058f, 0x12000300, 0x25001600, 0x33822900, 0x23153323, 0x05994b07,
0x35273508, 0x14153337, 0x23370706, 0x35133335, 0x013d012e, 0x0e151733, 0x22012b01, 0x33350326, 0x2a2aeb15, 0x40090c2b, 0x2b010c09, 0x15090c55,
0x096b4040, 0x012b550c, 0x152c1284, 0x95400140, 0x0c0c0996, 0x95c06b09, 0xc0242182, 0x8095fe2b, 0x95211a82, 0x242482c0, 0x2b49010c, 0x207a822b,
0x267f8407, 0x002b01d6, 0x6f13000f, 0x34240827, 0x33250000, 0x8305c55b, 0x013d3069, 0x15173634, 0x33253533, 0x011d011e, 0x85230614, 0x012b2206,
0x24148237, 0x23353307, 0x20b08237, 0x2f038235, 0x12406b01, 0x40121818, 0x12191912, 0x6a80fe40, 0x03830783, 0x402a6a22, 0x96210082, 0x2000822a,
0x861982c0, 0x402b2923, 0x18019640, 0x18122b12, 0xd5270585, 0x40ab4040, 0x83d58016, 0x052f7797, 0x9601eb2c, 0x4c004600, 0x5d005500, 0x93826400,
0x2e071426, 0x07062701, 0x2906456c, 0x22270617, 0x010e2726, 0x415e0623, 0x37362106, 0x07370e83, 0x013e3526, 0x36342637, 0x07010e37, 0x36171614,
0x17163237, 0x8235013e, 0x011e2b3a, 0x011e0714, 0x37321625, 0x41182226, 0x53840809, 0x16141522, 0x26822e83, 0x01eb013e, 0x0c2b3b04, 0x0101010b,
0x3506242f, 0x22070727, 0x38111138, 0x27070722, 0x2e250635, 0x6a081682, 0x3b2b0c0b, 0x45020104, 0x1d241135, 0x11011714, 0x162d1e0f, 0x110f0f26,
0x1d141701, 0x45351124, 0x4219ddfe, 0x22441819, 0x1c12130d, 0x02081212, 0x23011b21, 0x03211b86, 0x0769231d, 0x01372a06, 0x08080201, 0x24093727,
0x01020331, 0x1e1a1a1e, 0x30030201, 0x27370925, 0x01020808, 0x062a3701, 0x03473507, 0x103a471c, 0x821b2c0e, 0x011e3857, 0x260f0f10, 0x0e2c1b16,
0x1c473a10, 0x104a4703, 0x01731610, 0x82121a12, 0x1e322e02, 0x05040c30, 0x0c522b1e, 0x2b081e30, 0x08bf431e, 0x01d63e08, 0x000d0096, 0x01000011,
0x03071516, 0x22212306, 0x34270327, 0x23371337, 0x0cc90117, 0x0b032812, 0x030be6fe, 0xf50c1228, 0x01168416, 0x7e0e0395, 0x0c0cf1fe, 0x0e7e0f01,
0x8ce5fe03, 0x22478c8c, 0x651a000b, 0xc26d0dd7, 0x33172805, 0x36173335, 0x5e012e37, 0x5b220ce7, 0xd3826049, 0xab311b27, 0x0201112e, 0x0cee6560,
0x6002282c, 0x18412749, 0x29244d80, 0xdf586049, 0x5c5b2008, 0x1f3906cb, 0x2f002700, 0x00003700, 0x14011e37, 0x3f230706, 0x14163201, 0x37012b06,
0x20078633, 0x21178517, 0x0f851737, 0x3f211f87, 0x27178601, 0x1b1b1074, 0x4a0e4910, 0x4a220683, 0x0683ce0f, 0x300e4d29, 0x101c1c10, 0x85210f4d,
0x85dd2014, 0x85582006, 0x01e52b29, 0x01142014, 0x1f15754a, 0x03834915, 0x0f857520, 0x0b837620, 0x04832c20, 0x15017626, 0x4a01151e, 0x3009eb7e,
0x0029007e, 0x0044003b, 0x22310100, 0x011f010e, 0x3e058207, 0x07371716, 0x3216010e, 0x0615013f, 0x1e171614, 0x013e3202, 0x27013e37, 0x2f262726,
0x83172601, 0x07062611, 0x2e220706, 0x08178202, 0x0e173689, 0x36321602, 0x0c01012e, 0x0702100a, 0x130cba3d, 0x5f0c0e05, 0x10060da9, 0x015b0d1b,
0x2d090203, 0x2c424c41, 0x02020509, 0x160e1004, 0x26300793, 0x03110e1d, 0x2d1d0e0d, 0x0c1c2715, 0x1c0e1103, 0x03241928, 0x02233924, 0x0b7d0124,
0x01310610, 0x010d140d, 0x1a0a8201, 0x064c0913, 0x07100906, 0x1e1d311e, 0x1e0f1e31, 0x17191d0f, 0x81057111, 0x1e0b1701, 0x1d0f2225, 0x231d0f01,
0x170b1f24, 0x311e011d, 0x58312323, 0x236b0767, 0x00272606, 0x13000030, 0x07f14321, 0x010e1527, 0x1e152307, 0x2c078201, 0x34272622, 0x23353736,
0x3527012e, 0x055b4d23, 0x355b1320, 0x26343605, 0x09800140, 0x15090c0c, 0x80090c01, 0x24011813, 0x18012436, 0x21128213, 0x16821501, 0x384dc920,
0x95013605, 0x092b090c, 0x0c09950c, 0x20072e01, 0x24241c15, 0x0720151c, 0x8532822e, 0xabfe2118, 0x2c09ef72, 0xff000003, 0x010002c0, 0x000b00c0,
0x06ad4f15, 0x8a821720, 0x3e217b82, 0x22088301, 0x6d171614, 0x342d06e0, 0x1e012726, 0x6d000101, 0x90030390, 0x2905856d, 0x1902785b, 0x1c2c0117,
0x09842744, 0x1cd4fe25, 0x88c00144, 0x906d2e1d, 0x5b780228, 0x011c4427, 0xfe19172c, 0x260b8556, 0x1917d4fe, 0x82040000, 0x059b6977, 0x17000b2c,
0x3e002e00, 0x23250000, 0x3357010e, 0x26698205, 0x34363233, 0x83012b26, 0x153725f6, 0x011d031e, 0x23209382, 0x35289482, 0x013b013e, 0x37151632,
0x0e784818, 0x572b0122, 0x0920fc82, 0x60210483, 0x83098338, 0x018a2104, 0x0126e882, 0x1b801b24, 0x06820124, 0x241c552b, 0x12aafe56, 0x01121818,
0x20058256, 0x063b4eab, 0x0d414120, 0x15152705, 0x0c010c09, 0x2b854009, 0x241c9525, 0x60801c24, 0x2f850510, 0x7b500020, 0x017a2106, 0x20054778,
0x08b18213, 0x013d0727, 0x27370717, 0x07271523, 0x37170717, 0x27373315, 0x28283d01, 0x157a6528, 0x77771e62, 0x7a15621e, 0x5128645c, 0x221282b7,
0x8461a179, 0x79a22311, 0x0082005c, 0xd34d0520, 0x00022808, 0x00130005, 0x9521001c, 0x0737284f, 0x17071416, 0x82263736, 0x27342304, 0x4a821301,
0x5d8a6420, 0x141bae2b, 0x01201914, 0x09318f01, 0x2d699109, 0x5e261c71, 0x3f321a26, 0x1832403e, 0x76821734, 0x00266b82, 0xc001eaff, 0xcd829601,
0x09000626, 0x1b001700, 0x17237783, 0x91010f37, 0x272329cb, 0x95011707, 0x832b2a2a, 0x8928d38e, 0xeb2b2b2a, 0x5c2b2b2b, 0x1482db90, 0x20062741,
0x206382ab, 0x2bd98208, 0x01000016, 0x37170717, 0x17152327, 0x82082641, 0x3520080e, 0x28150117, 0x7a411e22, 0x1ea22a15, 0x621e778d, 0x1e315c15,
0x44012896, 0x411e2328, 0x6c2b6b79, 0xa2311484, 0x091e315b, 0x06002951, 0xc0ff0000, 0xc0017a01, 0x052f4100, 0x1f20b783, 0x20153141, 0x06416f13,
0x07821720, 0x2c108d41, 0xab2b2b22, 0x2a562b2b, 0x50288f2a, 0x2cd582b7, 0x1e62a27a, 0x621e7877, 0xfe5c7aa2, 0x22bc82d5, 0x41002b2b, 0xcf450623,
0x82102005, 0x1a2a08c1, 0x00002100, 0x07170701, 0x27073523, 0x17372737, 0x15173335, 0x15271537, 0x23152325, 0x13372335, 0x35332707, 0x3a011533,
0x99415c5c, 0x28152808, 0x2a000128, 0x82402b2b, 0x2b2b2600, 0x5c5c1c01, 0x82698379, 0x51a232e6, 0x29b82951, 0x4040d951, 0x5600ff56, 0x00404056,
0x24db8218, 0x01cb01f5, 0x08276b8b, 0x00282608, 0x00360031, 0x0048003f, 0x005a0051, 0x006c0063, 0x00760071, 0x0080007b, 0x008e0089, 0x009c0097,
0x00ae00a5, 0x519582b7, 0x07200755, 0x88072044, 0x87272008, 0x0617241a, 0x63343214, 0x3422060f, 0x0d8c3726, 0x3188369a, 0x2508e449, 0x22343637,
0x3f841314, 0x0e840483, 0x80641720, 0x83172007, 0x8825201c, 0x99208485, 0x2b012893, 0x1b12120e, 0x850d1212, 0x44632006, 0x092105b8, 0x2214840d,
0x61130a48, 0x8c23067c, 0x614a140a, 0x17860c8d, 0xb4200686, 0x0e202f85, 0x36832286, 0x0a9f1327, 0x1309e114, 0x2412850a, 0xfe140a9e, 0x230a85ca,
0x36140a49, 0x01214a93, 0x067c610b, 0x83615520, 0x44602005, 0xb620050d, 0xff241586, 0x4b141401, 0x4b241285, 0xb6131301, 0x55200a85, 0x47450685,
0x44562006, 0x0b200648, 0x76204185, 0x4a201c85, 0xfe213982, 0x20048295, 0x20378296, 0x20468dd6, 0x20228574, 0x20198260, 0x224a940c, 0x6d000e00,
0x1f260d3b, 0x28002400, 0x15422d00, 0x004c2706, 0x005e0055, 0x057a0067, 0x0787410a, 0x90413720, 0x3637290c, 0x25142234, 0x03352115, 0x07200883,
0x4107267a, 0x118709d2, 0x35210723, 0x873a8921, 0x18072043, 0x2008c64d, 0x133b4115, 0x13095f2d, 0xfe13090a, 0x558001df, 0x85a11309, 0x414c2021,
0x06850693, 0x80011d25, 0x8c8080fe, 0x2020863b, 0x06344155, 0x86064a41, 0x014b2c06, 0x01551414, 0x2b741313, 0x82e0fe2b, 0x860c2007, 0x124a2325,
0x0282121c, 0x95415520, 0x2bf62206, 0x0c8841d5, 0x79416020, 0x00002305, 0x4b431200, 0x00042208, 0x080d820d, 0x20001724, 0x2e002500, 0x56005100,
0x68005f00, 0x7a007100, 0x84007f00, 0x95008900, 0x00009e00, 0x32140637, 0xa7421734, 0x05294307, 0x3c431284, 0x83052007, 0x0825430d, 0x43172721,
0x35230615, 0x85172734, 0x17372322, 0x3f852326, 0x37221383, 0x30831301, 0x84411320, 0x034c1808, 0x41118708, 0x1725087a, 0x14223436, 0x84048327,
0x33172109, 0x1d232185, 0x41011e01, 0x40200888, 0x2308b442, 0x9f13094c, 0x01240c88, 0xf5140a37, 0x22055441, 0x840651a9, 0x3c012a08, 0x19120e0c,
0x033c0212, 0x270f8503, 0xa5fe1c50, 0x4c130adb, 0x430c7b41, 0xa2200637, 0xf4321485, 0x0ae1140a, 0x13095f13, 0x120d0505, 0x02121b12, 0x18850f0f,
0x1301a024, 0xc5424a13, 0x82eb2009, 0x4149200e, 0x0a200688, 0xfb211a89, 0x24138451, 0x3c030309, 0x227a8202, 0x873c0c0e, 0x1b512a0f, 0xa0fe5b01,
0x01141401, 0x43458521, 0x56200721, 0x200cec42, 0x204b824b, 0x82258394, 0x82ab2003, 0x0d12257f, 0x5e0f0a05, 0x20099b48, 0x0823480e, 0x0d000834,
0x25001900, 0x2f002a00, 0x3d003400, 0x47004200, 0x1b454c00, 0x25002106, 0x23080345, 0x34321406, 0x18db4118, 0x04831c84, 0x41057341, 0x342105b3,
0x200d8426, 0x41178307, 0x034512fd, 0x2b012108, 0x20086344, 0x0a656e34, 0xb9544920, 0x78022808, 0x09130a10, 0x4449130a, 0x5f29087b, 0x0937130a,
0x13093613, 0x2005834a, 0x41d6830c, 0x7848067e, 0x824a2007, 0x724a20ff, 0x01210a45, 0x08e8547e, 0x9e785b22, 0x54201c82, 0x81200382, 0x45410382,
0x86202006, 0x823f200e, 0x41962007, 0x55410a93, 0x06034f06, 0x2b01d62e, 0x00002100, 0x22010e37, 0x37343526, 0x362d0382, 0x16171632, 0x013e3732,
0x14151632, 0x2c038207, 0x27262206, 0x01ab2226, 0x10243724, 0x23048210, 0x2a562a01, 0x95280c8b, 0x1b24241b, 0x1a11111a, 0x03210783, 0x260d8c03,
0x01000000, 0x53ff0000, 0x1438058f, 0x32050000, 0x2e113736, 0x15012b01, 0x23350727, 0x11070622, 0x0133011e, 0x24056369, 0x36358012, 0x06776915,
0x4c0f6569, 0xc02408ef, 0x14009601, 0x6905ed5c, 0x15260ec7, 0x07061411, 0xc6822115, 0x11331125, 0x86d59501, 0x2b2b3849, 0x1919126a, 0x1200ff3c,
0x19402b19, 0x12000112, 0x20206a18, 0x8412186a, 0x822a2011, 0xfe2b2268, 0x093754d5, 0x0f205f83, 0x3221618f, 0x255c8316, 0x35173727, 0x61901323,
0x5e82d520, 0x2b2bd224, 0x628b9656, 0xc0255e85, 0xfe6b2020, 0x50638aaa, 0xeb21054b, 0x07db7701, 0x1f001b25, 0x18250000, 0x2b083b5c, 0x21132315,
0x1107010e, 0x2133011e, 0x26052841, 0x33112303, 0x84961501, 0xfeab2100, 0x41062741, 0xc029072f, 0x5520c0c0, 0x01204a20, 0x06ab7a00, 0x1526de82,
0xc1fe1812, 0x2f411501, 0x01f52e06, 0x006101eb, 0x002c0020, 0x23260100, 0x06fe5922, 0x16141130, 0x013e3733, 0x17163633, 0x1632013e, 0x6b831617,
0x84032621, 0x83352020, 0x01173217, 0x1f2724c0, 0x3e18183e, 0x07183e3f, 0x37170504, 0x080d8218, 0x3742173b, 0x07021734, 0x18130106, 0x421c2724,
0x1c421717, 0x55012427, 0x11110f0b, 0xfe110f0f, 0x010604c7, 0x0f010d0a, 0x0a120e12, 0x0506010c, 0xfe0e3701, 0x0e120be7, 0x01120ef5, 0x0cb7520b,
0x1400042b, 0x33130000, 0x25072715, 0x06024221, 0x8026ee86, 0x0135366b, 0x7d6bff00, 0x85012006, 0x6b012507, 0xd52020ab, 0x200c5c4b, 0x084f8201,
0x96010028, 0x0a008001, 0x23010000, 0x11150622, 0x34111737, 0xd66b0126, 0x95951812, 0x19800118, 0x40abfe12, 0x13550140, 0x7b850018, 0x2f870020,
0x09821020, 0x15163231, 0x11072711, 0x17333634, 0x27072737, 0x846b0107, 0x56122636, 0x38671e85, 0x243d8b1e, 0x681f85eb, 0x078b4d38, 0x54824388,
0x438a0120, 0x870d3d6c, 0x1912274b, 0x40182419, 0x4e8b0a55, 0x2418ab2c, 0x6a121919, 0x0005702b, 0x00820002, 0xc3830120, 0x0f000425, 0x82250000,
0x3533218f, 0x6b22ca8b, 0xcd85d66b, 0x2f2f4025, 0x8b2b1501, 0x8c0320d1, 0x821b203b, 0x2311243d, 0x8a133711, 0x15332e92, 0x15231533, 0x35233523,
0xd66b0133, 0x2293876b, 0x822b2b2a, 0x01402702, 0x2febfe15, 0x52891101, 0x17825520, 0x8a2b2a21, 0x000a2293, 0x0d274116, 0x410a5154, 0x4c84082d,
0x4685de8b, 0x1f2b479b, 0x37170701, 0x37273717, 0x87270727, 0x34192647, 0x33331f34, 0x8b05841f, 0x3477244d, 0x82331e33, 0x82342002, 0x53002005,
0xc0220687, 0xb7658001, 0x000f2206, 0x82f78213, 0x821120df, 0x86272003, 0x21072607, 0x95012111, 0x20008280, 0x2b0382aa, 0x8001ab80, 0x80d580fe,
0x2a80d6fe, 0x0e820483, 0x11000022, 0x7b082b49, 0x2738115f, 0x2f002b00, 0x37003300, 0x3f003b00, 0x00004300, 0x33152337, 0x21352107, 0x7b7b0783,
0x82052007, 0x67052013, 0x272006ed, 0x03830b82, 0x07861720, 0x13870b8b, 0x2b2b6b23, 0x8387832b, 0x822a2006, 0xfe2b2204, 0x841082d6, 0x25048209,
0x562a2a56, 0x05822b2b, 0x2b2baa29, 0x552a2aaa, 0x84552b2b, 0x2b802205, 0x220f8255, 0x822a2b55, 0x2bab2307, 0x03822a2b, 0xc5822b20, 0x82802b21,
0x2bd52205, 0x820582d5, 0x054342c7, 0x01c12708, 0x000900c1, 0x0100000e, 0x012f3436, 0x010f2226, 0x07270717, 0xba013315, 0x06320606, 0x502a0612,
0x50d65015, 0x0a826a01, 0x86063221, 0x2e07410d, 0xef822120, 0x03820720, 0x03822720, 0xfb863720, 0x35210524, 0x0f861721, 0xff820320, 0x03821520,
0x07413720, 0x8713200a, 0x2013822f, 0x210b8203, 0xdb829501, 0xea82de84, 0xfe2b2b2a, 0xfe8001ab, 0x2a2aab80, 0x80210d82, 0x2200822a, 0x822b2b56,
0x825520e4, 0x202482eb, 0x2000892b, 0x29f3822a, 0x2ad52b2a, 0x2b2a2bd5, 0x04820001, 0x1b848020, 0x82abfe21, 0x2bab270a, 0x002b00ff, 0xd3410d00,
0x05ef600c, 0x23001f23, 0x0bcf4100, 0x82250021, 0x82152083, 0x82ab8203, 0x7d098291, 0xa7830633, 0x23210d82, 0x20158227, 0x83c38625, 0x4ecb83af,
0xbb83071d, 0x802b2b25, 0x82abab2a, 0x827e8202, 0x82a784a5, 0x822b207d, 0x2091850b, 0x20b7842a, 0x21ae8255, 0x27835501, 0x2bd52a23, 0x84bc8301,
0x84a8832c, 0x822b20ad, 0x2c8342af, 0xb7860120, 0x77411720, 0x82352006, 0x41112007, 0x3720068f, 0x01230782, 0x87231133, 0x8317831b, 0x86352013,
0x200f832b, 0x210b8215, 0xb4824001, 0x88852b20, 0x0b82be85, 0x6e41fe20, 0x220f8205, 0x882a562b, 0x55012500, 0xd52ad52b, 0x8022eb82, 0x0682fe2b,
0x82d52b21, 0x80012306, 0x0e822ad5, 0x15828020, 0x1784f683, 0x00820020, 0x77411520, 0x0dab7e0c, 0x2c0b7b41, 0x0043003f, 0x004b0047, 0x0053004f,
0x83cf8700, 0x41032097, 0x07200683, 0xaf830786, 0x1b83bb83, 0x3f422720, 0x8b0b8306, 0x18eb8703, 0x83072b41, 0x42df852f, 0xaa24075c, 0x2baa2a2a,
0x0b820086, 0x0c86e682, 0x42ab2b21, 0x0f830668, 0x0121e886, 0x200c822a, 0x83038280, 0x20e582d5, 0x8303822b, 0x820382e8, 0x2b2a2114, 0x00210b85,
0x05875700, 0x290d7f44, 0x001b0017, 0x15233700, 0x03831733, 0x21112123, 0x20038201, 0x06034305, 0x07823520, 0x9284c020, 0xd6fe8024, 0xef422a01,
0x82012005, 0x83562053, 0x82d52084, 0x852a2076, 0x22948315, 0x82002b80, 0x2c174200, 0xe3411320, 0x43152006, 0x11200683, 0x17240782, 0x07231133,
0x830aab43, 0x4135201b, 0x1b420a63, 0x20238307, 0x20178213, 0x05f641eb, 0x1d425520, 0x057d4406, 0x82062f41, 0x07204296, 0x2b201783, 0x42057c43,
0x2b200608, 0x2c051242, 0x2bd62b80, 0x2bd52a2b, 0x2a802b2b, 0x20058280, 0x20c785fe, 0x14174208, 0x21001d25, 0x86210000, 0x8605208d, 0x26918707,
0x11331125, 0x42073521, 0x708206ab, 0x4500ff21, 0x2b250716, 0x2babfe2b, 0x08bc4201, 0x02827082, 0x80feab22, 0x6e821282, 0x202c3341, 0x20758625,
0x83078227, 0x237d83ff, 0x21352125, 0x4407cf45, 0x6f4207e3, 0x073b4107, 0x1b830783, 0x82074b43, 0x06ac458c, 0x01219c83, 0x828c8480, 0x0b6d42ff,
0x29096b42, 0x2bd52aab, 0xd5fe2bd5, 0x06822a2b, 0x2b2ad525, 0x452bd62b, 0x5d4205c6, 0x822a2005, 0x2e8f451e, 0x13442520, 0x05f34106, 0x8705796e,
0x330724b3, 0x82132311, 0x2023831f, 0x87278603, 0x872383c7, 0x08334313, 0x220a2a43, 0x442b2baa, 0x2f4406d2, 0x21ea8208, 0xc1832b2b, 0x88450120,
0x822b2009, 0x83d286f1, 0x84c083c8, 0x6200201d, 0xd62a087f, 0x0b009601, 0x1d001400, 0x9b582600, 0x084a4d0e, 0x07280887, 0x3e011e06, 0x06012e01,
0x200ca758, 0x05eb5166, 0x1812182c, 0x18182418, 0x1f090993, 0x03821221, 0x200cb058, 0x05c84fbe, 0x24188028, 0x18241919, 0x2184104a, 0x00091222,
0x08c34d18, 0x08003d22, 0x2f257f82, 0x00005300, 0x070f7425, 0xaf563720, 0x2a058505, 0x32013e35, 0x36151716, 0x7a011e37, 0x07200532, 0x05292687,
0x07141516, 0x2f222306, 0x25058301, 0x34352627, 0x0583013f, 0x1f163626, 0x013e3701, 0x0f261d82, 0x1f480101, 0x02821f2f, 0x34012533, 0x0c2a1a27,
0x271a2a0c, 0x0a010233, 0x17010a0f, 0x210f8620, 0x2285c534, 0x0440013e, 0x09050508, 0x06282905, 0x07050609, 0x032f2f03, 0x28050f0d, 0x0e0e0429,
0x18942e04, 0x1f344583, 0x01342617, 0x16161a01, 0x3301011a, 0x0a079826, 0x124e070a, 0x34211087, 0x08238527, 0x06052737, 0x07040509, 0x04073636,
0x05050a05, 0x06053f3e, 0x06020b08, 0x02063636, 0x0505090b, 0x0300003f, 0xf0ff0000, 0x9301c601, 0x0f000b00, 0x00001800, 0x17070637, 0x05194837,
0x03072708, 0x37273715, 0x14163236, 0x34262206, 0x76020a9a, 0x1f0c0cb5, 0xf30d220d, 0x07f16b7c, 0x110d0d11, 0x0e0bc20d, 0x1182b532, 0x0d0d1e29,
0x6f7be5fe, 0x8206cf2b, 0x110d2214, 0x061b4a00, 0x9601d62e, 0x1d001900, 0x33130000, 0x011d1632, 0x14250484, 0x22212306, 0x05d46526, 0x3634352a,
0x15233517, 0x181256d5, 0xb44b0282, 0x18562d07, 0x95015668, 0x192b1218, 0x1912ea12, 0x13280482, 0x18122b18, 0x002b2b55, 0x0022af84, 0x57870100,
0x599f2320, 0x9205b04b, 0x8d0b255f, 0x1e2d6f1e, 0x1221658c, 0x25658519, 0x6e1e8cf5, 0x6b901e2c, 0x6b9f2420, 0x586f1320, 0x246c9205, 0x56406b2b,
0x876b8c40, 0xebfe24d1, 0x8256566a, 0x0300216a, 0xd7880483, 0x17206ba0, 0xac057370, 0x6b40236b, 0x5f4f5555, 0x056f4306, 0x1e010023, 0x088f5901,
0x430c4e43, 0x33860c37, 0x9601ab2f, 0x00000e00, 0x1e072213, 0x07061401, 0x05747516, 0x2f3bd53b, 0x303a3a30, 0x785b3b2f, 0x01780303, 0x601d1c95,
0x1c1d6078, 0x5b5b7802, 0x25d28478, 0xeaff0000, 0x3b829601, 0x3b860f20, 0x3c867183, 0x1e22c028, 0x01015242, 0xa6654252, 0x95012806, 0x496d1609,
0x65166d49, 0x3f830595, 0x3f820220, 0xf201ce24, 0x7b82b201, 0x00001e2c, 0x3e272225, 0x27263401, 0xba843336, 0x35372508, 0x23072723, 0x15170715,
0x33371733, 0x00013735, 0x2921181d, 0x1d182129, 0x01014936, 0x47647549, 0x46466447, 0x402d0584, 0x4e3e0f0c, 0x010c0f3e, 0x49363649, 0x821587c6,
0x0000211b, 0x0b226389, 0x56181b00, 0x3f220d4d, 0x628c2701, 0x84000121, 0x83428258, 0x845a865e, 0x18402060, 0x200aec54, 0x21768938, 0x5f8b0046,
0x16000622, 0x11205f82, 0x5a96bb84, 0x548d7520, 0x56840020, 0x0320508d, 0x22081341, 0x77140008, 0xb6780615, 0x0ba05205, 0x26111b41, 0x48303024,
0x8b243030, 0x0a2041c1, 0x01150122, 0x48221e83, 0xc98ad430, 0x890c2841, 0x00072477, 0x821a0017, 0x232726c9, 0x33372307, 0x2c6a8f17, 0x01273305,
0x0f440f31, 0x452a4529, 0x29628a51, 0x1932f6fe, 0xc02a2a6b, 0x7f419cc0, 0x4e0e220a, 0x06234100, 0xbc01fc34, 0x09008601, 0x00001200, 0x1e071701,
0x36270701, 0xd2831716, 0x05833720, 0x9d012808, 0x04117a1e, 0x3514870e, 0x2621a419, 0x2d9f6806, 0x86014924, 0x35197a1e, 0x040e8714, 0x4921c311,
0x689f2d24, 0x44002705, 0xc122067b, 0x4b828101, 0x4b821820, 0x26273508, 0x17010f22, 0x05343637, 0x0e070622, 0x011e2301, 0x37013e33, 0xba012634,
0x0711061d, 0x06bf3bbf, 0x241bd5fe, 0x0e1b0101, 0x24182e0f, 0x01240130, 0x06061d5d, 0x072d1782, 0x1c24c211, 0x17141515, 0x1c243001, 0x06a34324,
0x4e01ab21, 0x37200553, 0x24099f70, 0x27262337, 0x364e1837, 0x07062707, 0x06331523, 0x0582011d, 0x05823982, 0x32011e2a, 0x35333736, 0x013d3623,
0x35260582, 0x01332734, 0x0082562b, 0x0f3c803b, 0x2f1e2318, 0x2f0e200e, 0x0f18231e, 0x2b022d3c, 0x3c2d022b, 0x3a483a11, 0x3f0c8611, 0x2a802bc0,
0x23101a80, 0x03032e1e, 0x10231e2e, 0x0b0b2a1a, 0x0b152b15, 0x231d2b0a, 0x0a2b1d23, 0x0b210c84, 0x28008200, 0xff000006, 0x01d601ea, 0x34fd82c0,
0x00190006, 0x0021001d, 0x01000025, 0x11073307, 0x17271121, 0x05955233, 0x07795518, 0x11013b26, 0x37153335, 0x25200382, 0x01270382, 0xe16b3601,
0x61ab5601, 0xc65c05ed, 0x40260805, 0xff552b6b, 0x8b016b00, 0xeafe2a36, 0x6b951601, 0xeafe1218, 0x12181812, 0x18121601, 0x5555ebfe, 0x6b969615,
0x7a824040, 0x26066f41, 0x006b01cb, 0x821c0015, 0x22232173, 0x1424fe82, 0x15013b16, 0x32200483, 0x172bf783, 0x010e1711, 0x011e3507, 0x83ab0001,
0x0c163b44, 0x0c092b09, 0x01606b40, 0x1c19191c, 0x12181501, 0x56181256, 0x090c0c09, 0x88825656, 0x0c2d1c25, 0x832d0caa, 0x8304205b, 0xab012704,
0x03009701, 0x5f820c00, 0x00003429, 0x21352125, 0x64012e07, 0x0888055b, 0x17162722, 0x37206e86, 0x1e23d182, 0x83013b01, 0x37363678, 0x07012e35,
0x01070626, 0x0100ff80, 0x120e2000, 0x12121c12, 0x2a0685ce, 0x0c150159, 0x0c091509, 0x8401aa01, 0x01152107, 0x22053055, 0x58eb6bd5, 0x0120060b,
0x15240786, 0x0926131d, 0x16219c82, 0x2a058316, 0xd51d1326, 0x02022136, 0x86003621, 0x82eb20fb, 0x000e34fb, 0x0100001d, 0x010e3307, 0x07272207,
0x013e1716, 0x82213337, 0x17322104, 0x3405c562, 0x01371723, 0x01405595, 0x1b213649, 0x4933281f, 0xfe400260, 0x2a0d8b95, 0x15015556, 0x01493655,
0x831a1f0f, 0x22098988, 0x82005555, 0xff0039fd, 0x01eb01d5, 0x000800b6, 0x0033001c, 0x021e1300, 0x34262206, 0x011e1736, 0x08856318, 0xa76f2720,
0x32072c06, 0x1e333536, 0x34363201, 0x49212326, 0x37260538, 0xf5161433, 0xcf831609, 0x299f163f, 0x16010136, 0x1480fe14, 0x36010116, 0x15406029,
0x01201e17, 0x1e1e2d1e, 0x16eafe16, 0x2c08821e, 0x011e2001, 0x242805b5, 0x1d220a0f, 0x2722829e, 0x7b0d2a19, 0x192a0d7b, 0x40283882, 0x171e9540,
0x2e1e1e17, 0x09820284, 0x02000022, 0x08d75f18, 0x27001b2a, 0x35210000, 0x012b2634, 0x27210482, 0x05ae7623, 0x23011d24, 0x04820622, 0x21152e08,
0x36320335, 0x012f3437, 0x1e150607, 0x19c00101, 0x12191512, 0x13402a40, 0x18131518, 0xebd6012b, 0x07011812, 0x01062524, 0x18135518, 0x370c8240,
0x18012a2a, 0x13184012, 0x012b2b55, 0x0d12182b, 0x09404009, 0x0018120d, 0x09134918, 0x0b00c029, 0x3f002300, 0x8a010000, 0x27172459, 0x83220607,
0x26072e65, 0x16141527, 0x36322133, 0x0706013d, 0x05a04726, 0x07010e2b, 0x011e1415, 0x1617013f, 0x27048332, 0x013d013e, 0x0001012e, 0x24297c84,
0x74180107, 0x3c161717, 0x08048216, 0x12181e32, 0x5601090c, 0x18120c09, 0x2a6b081e, 0x01241b6b, 0x2e0b2418, 0x0c220d2d, 0x240b2e2e, 0x01240118,
0x0c121940, 0x0a3f3f0a, 0xd519120c, 0x15151717, 0x012c0382, 0x09620c01, 0x62090c0c, 0xaa01010c, 0x2425b882, 0x1712211b, 0x29318301, 0x0c2e2e0b,
0x21121701, 0xb582241b, 0x50091747, 0x00211381, 0x06b14313, 0x22012b25, 0x65113526, 0x6f1805af, 0x0b970b20, 0x12d69525, 0x85121818, 0x2bd62504,
0x2b2b2a2b, 0x0121058b, 0x0b195595, 0x56562a22, 0x4f058b50, 0x552107d1, 0x4100842b, 0x0028055f, 0x01c00100, 0x000300ab, 0x2b057756, 0x27213521,
0x23352315, 0x06222315, 0x0b966918, 0x35012b32, 0x33152307, 0xd6fe9501, 0xaa402a01, 0x1813152b, 0x2805cb7d, 0x15151219, 0xea2b6b6b, 0x25538296,
0xd6fe1318, 0x17831912, 0x2b181325, 0x43006beb, 0x5f870637, 0x9a250021, 0x9259945d, 0x069f4556, 0x21205387, 0x20052944, 0x91b28435, 0x270721b6,
0x17200182, 0x15215b85, 0x28b68b2b, 0x2d681746, 0xea2b4417, 0x20b7826b, 0x885a182b, 0x84ac200b, 0x00002218, 0x08ef4204, 0x10000526, 0x3a002e00,
0x33306982, 0x27071715, 0x33152137, 0x013e3526, 0x05173237, 0x2505b541, 0x3335013b, 0x03833315, 0x1d163222, 0x21096e49, 0x6a180e37, 0x40340a00,
0x44103420, 0x63d6fe55, 0x3f54020e, 0xd6fe1d23, 0x13181813, 0x24089284, 0x16141912, 0x40540201, 0x6814361e, 0x01013a2c, 0x3b2c2c3a, 0xab3b0101,
0x271b1f3c, 0x231deab9, 0x0e02543f, 0x065441f2, 0x192cac82, 0x36148212, 0x0254401e, 0xd2141601, 0x2c212c87, 0x8b9e822c, 0x000326b3, 0x0024001b,
0x29b38228, 0x01152135, 0x11171632, 0x1646010e, 0x32ae8609, 0x21152101, 0x1127012e, 0x35230533, 0xfec00133, 0x592b01d5, 0xfe2d0521, 0x181812d5,
0xab2a1612, 0x0195fe2b, 0x230d832b, 0x55012b01, 0xc0270082, 0x192b01c0, 0x8300ff12, 0x0001241e, 0x822b1912, 0x80fe2900, 0x1218012b, 0x55800001,
0x830a3341, 0x0021227f, 0x267f9d2a, 0x3727010f, 0x87053717, 0x27819585, 0x17395f35, 0xe1fe4822, 0x55208787, 0xac268393, 0x22163a5f, 0x8885eb48,
0x23420020, 0x8227200e, 0x21112585, 0x15331311, 0x20101f47, 0x20138235, 0x0b175707, 0xd6fe9525, 0x18152bea, 0x2807d06c, 0x2b151318, 0x402a6aaa,
0x26028240, 0xff00012b, 0x18800100, 0x280c6c6c, 0x40802b2b, 0x2b40402b, 0x104b4300, 0x21227383, 0x97422135, 0x56032017, 0x072207ef, 0x9d420717,
0x34e02313, 0x02841634, 0x34341722, 0x2312a342, 0x3434d5fe, 0x02851982, 0x04207b82, 0xc7430382, 0x00072407, 0x8223001f, 0x152323f1, 0x819a1733,
0x1f820720, 0x962b0128, 0xd6fe6a96, 0x1a432a01, 0xd63c250d, 0x402a95d6, 0x20111943, 0x83e79095, 0x3700256b, 0x05231533, 0x9524699a, 0x00016b6b,
0xeb226591, 0x6291556b, 0x4918c782, 0x13310c3b, 0x17073315, 0x35331537, 0x1ef88dc0, 0x55012af8, 0x2106822a, 0x2682d58d, 0x26065b44, 0x00760189,
0x820c0003, 0x273725ef, 0x15332707, 0x353a2d82, 0x6b012733, 0x821e491e, 0x801e744b, 0x1e0d604b, 0x77c01e48, 0x88801e73, 0x5b850060, 0x2b01c027,
0x00000a00, 0x212f8201, 0x5b822335, 0x01371729, 0x6277a2a2, 0x82952bab, 0x77a22619, 0x9562ab2b, 0x831e82c0, 0xab012364, 0x51186b01, 0xab200d4f,
0xd5288682, 0x1e4d018d, 0x2ad58df8, 0x27838789, 0x0f000623, 0x05a96400, 0x2b351726, 0x17371501, 0x272f5b82, 0x3e312b01, 0xd6313e1e, 0x2a653180,
0x846b0171, 0x8280200c, 0xb4a2220c, 0x24638771, 0x004001c0, 0x24c18213, 0x23012e35, 0x05554921, 0x32213333, 0x17353736, 0x016b0135, 0x00ff090c,
0x090c0c09, 0x23058201, 0x4be05501, 0xd6200b83, 0x4b220483, 0x7f89ea55, 0xa782d620, 0x17000722, 0x273d4582, 0x33352315, 0x21013f15, 0x1115010e,
0x21171614, 0x1135013e, 0x80012634, 0x55abab55, 0x0abd662b, 0x44446b29, 0x564444aa, 0x5b121801, 0x4b180b5c, 0xab240843, 0x11000400, 0x2505d54f,
0x03231517, 0x4f871707, 0x0337172a, 0x15331721, 0x17153717, 0x22085782, 0xab9b1080, 0x0a2b1b50, 0x0112180b, 0x2a1b2a3b, 0x2f55fcfe, 0x1855490c,
0x0f9b1501, 0x2b1b4001, 0x840c1306, 0x1b2a2d5e, 0x2e566501, 0x55843a0c, 0x18120401, 0x0221b882, 0x20008200, 0x055b5d01, 0x1323b782, 0x88231707,
0x17372efb, 0x35071137, 0x012b012e, 0x3a1b4617, 0x3dfe8510, 0x1b440507, 0x090c0155, 0x9501ef84, 0x090c3a1b, 0x040c09d6, 0x1a011b44, 0x0c094b55,
0x5b4f00ef, 0x00132c0a, 0x0028001f, 0x37331300, 0x78331733, 0x072705e0, 0x35012e21, 0x82363411, 0x936f18c4, 0x2d088208, 0x26220614, 0x40553634,
0x402b802b, 0x34471812, 0x74bd2006, 0x3d2b0939, 0x24241b2d, 0x01242436, 0x412a2a6b, 0x3f200e27, 0x84058f70, 0x742a2005, 0x03200751, 0xd623d384,
0x83008001, 0x82272083, 0x47072083, 0x27201047, 0x0ccf6718, 0x2f013f29, 0x17010f01, 0x684427c0, 0x12230855, 0x8c402744, 0x3a3a2e82, 0x3a3a1b1b,
0x182b8001, 0x1200ff12, 0x05b05e19, 0xc0fe2b22, 0x3d0aeb6e, 0x1a1b3b14, 0x1b1a3b3b, 0x05000000, 0xc0ff0000, 0xc0019601, 0x17000700, 0x24002000,
0x87822b00, 0x2e153327, 0x07062201, 0x278e8613, 0x3632013b, 0x26341135, 0x3208cf63, 0x35331513, 0x3315012b, 0x95273715, 0x3c4904d6, 0x48d60449,
0x7d200862, 0x2a056f53, 0x6ac06a3d, 0x0140406a, 0x821be095, 0x0b012100, 0x240b3447, 0x241801ab, 0x27028218, 0x2a2afffe, 0x40402b2a, 0xab208788,
0x0f248782, 0x1c001800, 0x21208786, 0x23098a46, 0x013e1127, 0x2008ce75, 0x207f8237, 0x83108207, 0x2303211e, 0x80218784, 0x05eb5d01, 0x20079e42,
0x058b4192, 0x952a062a, 0x496c4901, 0x55556b01, 0xc0208c82, 0x56298582, 0x12191912, 0x1912aa01, 0x06874180, 0x2b2b6c2f, 0x17f5fe40, 0x01171e1e,
0x2bd5fe0b, 0x188f842a, 0x0809d755, 0x0c000751, 0x1b001400, 0x28002000, 0x07250000, 0x36323316, 0x1e052737, 0x2f371701, 0x15010e01, 0x25331714,
0x013e1723, 0x2e273435, 0x010f2701, 0x22232637, 0x01170706, 0x18165325, 0x4e1c4427, 0x4210fbfe, 0x534d4f2e, 0xa0041e1a, 0x6ca00201, 0x83091e1a,
0x65342110, 0x80381e85, 0x17190590, 0x472f2287, 0x90408711, 0x162a4a1c, 0x1dbb5615, 0x2a162a49, 0x20211183, 0x421c83b0, 0x0e240aab, 0x31001d00,
0x69828582, 0x013e332b, 0x33273437, 0x010e1516, 0x288c8227, 0x07010e23, 0x26231714, 0x23168235, 0x07232723, 0xcf430f82, 0x1a002d0c, 0x1b550f2c,
0x2d040124, 0x2d3d0102, 0xd8230c8b, 0x42802744, 0x552d0a4f, 0x01141601, 0x0a0b1b24, 0x3d2d0b0a, 0x200c8bd5, 0x10d54241, 0x43480020, 0x053f4205,
0x18000827, 0x23001c00, 0x3f5d1800, 0x42372009, 0x03200e3e, 0x21093542, 0x25420001, 0x42592005, 0x52200836, 0x27062f42, 0x18241940, 0x80192418,
0x210b2f42, 0x274255fe, 0x00032508, 0x01c0ff00, 0x23072742, 0x1300001f, 0x4c0f2342, 0x342205db, 0x17421326, 0x20788516, 0x110f4203, 0x04562b20,
0xabfe2105, 0x54060242, 0x092a0aaf, 0x00001d00, 0x15233525, 0xc3823727, 0x41371721, 0x40261361, 0x804b4b80, 0x4d41204b, 0x3675240d, 0x824b4b36,
0x41ab2003, 0xcb83133b, 0xd601ea26, 0x0b00ab01, 0x35068344, 0x32363426, 0x1416011f, 0x17272206, 0x2e37013e, 0x1e372701, 0x68561501, 0x1e332205,
0xc9751801, 0x06693d08, 0x9706110d, 0x0d221a0d, 0x0260491e, 0x1e171a01, 0x7802211d, 0x02785b5b, 0x4960022a, 0x012be185, 0x0d110639, 0x220d7906,
0x828d0d1a, 0x3d242614, 0x4e1d1e18, 0x0540642c, 0x01604923, 0x06834394, 0x31067b43, 0x018001ea, 0x00090096, 0x001a0013, 0x0026001e, 0x84823700,
0x013d2636, 0x37173734, 0x22071732, 0x3e270706, 0x35071701, 0x16372734, 0x37210682, 0x081e8515, 0x18d53739, 0x4f061924, 0x2e15182b, 0x3f04150d,
0x509a3512, 0x111d2d06, 0x24195555, 0x12eb5518, 0x2a121919, 0xa9501314, 0x0d0e4d08, 0x5c1b173e, 0x090d2c50, 0x56b6194d, 0x82ed555a, 0x021224a4,
0x82040056, 0x0100317f, 0x005601c0, 0x000c0003, 0x00310015, 0x33013f00, 0x26247082, 0x16323634, 0x0a835f18, 0x012e3727, 0x0622012b, 0x0940500f,
0x4a502120, 0x206b2b08, 0x0d2020ea, 0x121b1212, 0xf457f812, 0x04fc2f05, 0x0bea0b10, 0x0c2c0410, 0x0c091609, 0x06840001, 0x6060d523, 0x05ef576a,
0xd5260585, 0x090c0c09, 0xc44fab80, 0x00ab2109, 0x3008f757, 0x000b0080, 0x001b000f, 0x1300001f, 0x21112315, 0x05324c11, 0x15210724, 0xc8602521,
0x0526080a, 0x55353315, 0x40d60140, 0x01955680, 0x0180fe80, 0x2b2b2b00, 0x00ff2a2a, 0x40800180, 0x2b01d5fe, 0x6b404040, 0x1383abd5, 0x2405454d,
0xff000006, 0x20ef82c0, 0x75ef88c0, 0x21220517, 0xda6a2327, 0x67232008, 0x14260599, 0x15172516, 0x9c730614, 0x86ec8205, 0x6e372009, 0x27230591,
0x7d171632, 0x2723058b, 0x8217013e, 0x22262a0b, 0x6b362707, 0xea202a01, 0x050341ea, 0x1141dd20, 0x17012105, 0x20050441, 0x050441ff, 0x19412c20,
0x22903805, 0x121f193e, 0x122e342e, 0x223e181e, 0x0d1e1923, 0x191e0d22, 0x41ca6095, 0x1c410c20, 0x09802a0c, 0x1ab70c0c, 0x13121e18, 0x22348213,
0x8201551a, 0x22338234, 0x82070000, 0x82d520d3, 0x88af20d3, 0x003d24d3, 0x41550049, 0x272e1ac9, 0x0f010e23, 0x16141501, 0x013e3317, 0xdc82013d,
0x25230986, 0x7735013e, 0x1e2105e6, 0x06cf7301, 0x07010e22, 0x0d432782, 0x410b8405, 0xfe2626ed, 0x02120ed5, 0x0282021c, 0x78120122, 0x12240a87,
0x01120d79, 0x12271585, 0x6b6060ab, 0x88121c12, 0x0ad53002, 0x0b01010b, 0x09aa800a, 0x0c01010c, 0x85151509, 0xc0aa2907, 0x120d1201, 0x26020226,
0x01200682, 0x0f570b96, 0x015c2d06, 0x00330096, 0x23072500, 0x33171406, 0x22080586, 0x2622010e, 0x3633012f, 0x27232734, 0x27373634, 0x16013e26,
0x3435011f, 0x1d163236, 0x013e3701, 0x820f011e, 0x01320803, 0x0a310455, 0x2c162d0a, 0x08280a0a, 0x18241801, 0x0a201501, 0x1a11240a, 0x03051e17,
0x0a05110f, 0x200c120c, 0x010e1106, 0x18152d06, 0x130116eb, 0x03826b01, 0x18122b24, 0x08831218, 0x1f13563a, 0x11082b07, 0x0e07030a, 0x0c0c0926,
0x07253109, 0x07110c02, 0x001e0836, 0x2006a349, 0x5a9b82c1, 0x002005cb, 0x3d08366d, 0x17331501, 0x14150607, 0x35211716, 0x34352223, 0x3233013f,
0x36013f36, 0x27263435, 0x04722721, 0x01210808, 0x1918136b, 0xfe181824, 0x1d4d2b98, 0x01121805, 0x0105f700, 0x130c9f13, 0x0c034c06, 0x14c4fe09,
0x2686823a, 0x40191924, 0x82182518, 0x55013902, 0x0935a22a, 0x0118120b, 0x0102052b, 0x8a0a0c23, 0x0c090505, 0xabfe2a01, 0x00201f85, 0x04200082,
0x29088f70, 0x00250008, 0x0032002e, 0x545a2500, 0x01363706, 0x1e211733, 0x0f141501, 0x2b010e01, 0x14010f01, 0x2115013b, 0x9e83012e, 0x13232722,
0x3f252587, 0x01172101, 0x8278826b, 0xbdfe3c73, 0x3c011446, 0x4c030c09, 0x9f0c1306, 0xf7050113, 0x181200ff, 0x2b4d1d05, 0x83191280, 0x3cd225b9,
0x4032f2fe, 0x25210983, 0x349e8218, 0x05090c01, 0x0c0a8a05, 0x2b050323, 0x0b121801, 0xfea23509, 0x221d85d5, 0x896b6b95, 0x01c4309f, 0x000b00ab,
0x001d0014, 0x13000037, 0x4d333533, 0x152205a1, 0x65460333, 0x5c332007, 0x3b41088c, 0x07272406, 0x41232723, 0xeb200c56, 0x2005114e, 0x05234156,
0x9085c420, 0x3f41e420, 0x25522505, 0x465b9652, 0x29085541, 0x40000104, 0x2b40402b, 0x054700ff, 0x28058505, 0x0c230345, 0x9615950a, 0x085641c0,
0x48000021, 0x8036079f, 0x1b000d00, 0x35001f00, 0x3d003900, 0x34250000, 0x35012b26, 0x81822636, 0x35361623, 0x230d8327, 0x011d0622, 0xb382b982,
0x0521bd82, 0x096a5b15, 0x35333729, 0x15173337, 0x5e011e33, 0x152c05b3, 0x13ab0123, 0x0e022b18, 0x1318551e, 0x05820982, 0x2b552b27, 0x0156562b,
0x08855b00, 0x2a562a22, 0x2008c782, 0xd52b2b80, 0x18955555, 0x06101513, 0x171401c0, 0x1313186b, 0x40409518, 0x552a0001, 0x181812eb, 0x29048212,
0x2b2b2a01, 0xbd18012a, 0x074e2b40, 0x0040360c, 0x000c0003, 0x1300001c, 0x37211121, 0x0614011e, 0x36342622, 0x31958227, 0x15163215, 0x33363433,
0x35262235, 0xfe800140, 0xc149c080, 0x18502505, 0xd6181212, 0x01220483, 0x7c18ff40, 0x16230849, 0x83561812, 0x22048213, 0x82000800, 0xd6012300,
0x5b825601, 0x1700072c, 0x2c002300, 0x41003800, 0x65854800, 0x21352537, 0x16142515, 0x06221533, 0x26342315, 0x36323523, 0x2e351735, 0x053f4c01,
0x27363234, 0x06151716, 0x36352722, 0x26343507, 0x15070622, 0x148b011e, 0x23353328, 0x2b371507, 0xce7faa01, 0x88162006, 0x56d6208f, 0x1f2b0609,
0x13010109, 0x122c0101, 0x8301121b, 0x0a202112, 0x29080f84, 0x16151541, 0xfe550116, 0xebeb2bc0, 0x6b1812d5, 0x19121219, 0x6a12186b, 0x18181215,
0x19121512, 0x09013c19, 0x2b0a0a2b, 0x11902909, 0x0b6b542d, 0x04000a15, 0xeaff0000, 0x4101eb01, 0x22200733, 0x2d173541, 0x3533013e, 0x05272622,
0x15211533, 0x3b416b21, 0x24372307, 0x73834f24, 0x8301d521, 0xfe0123b1, 0x8c822b80, 0x44418020, 0xd62a2216, 0x08674a2a, 0x09826b20, 0x33001329,
0x21250000, 0x4e352111, 0x03210e19, 0xf1871833, 0x012b2107, 0x41070f43, 0x3b2a0549, 0x15231501, 0xfeab0133, 0xf67401aa, 0x2ad2290b, 0x0c0c0916,
0x2b554009, 0x40230888, 0x4d2b0001, 0xfe220e20, 0x238216eb, 0x160c0924, 0x0887162a, 0x310a8b47, 0x000f0007, 0x00270014, 0x1e153700, 0x2e331701,
0x07880701, 0x2634332b, 0x06222101, 0x35331507, 0x44721821, 0x52153c09, 0x032b026c, 0x3c2e6484, 0x54022b01, 0x01244040, 0x1280fe8f, 0x012b0118,
0x82959580, 0x18013c07, 0x6c022beb, 0x53846452, 0x2d3d012a, 0x40545440, 0x4101241b, 0x40401318, 0x532bd6fe, 0x0023053d, 0x82000500, 0xeb012f00,
0x12008001, 0x21001a00, 0x2e002900, 0x6c920000, 0x8c860520, 0x84212521, 0x8c252008, 0x8ec0209b, 0x43fe2177, 0x01299a85, 0x40d6fe1c, 0xfe78155d,
0x20a38980, 0x20808c80, 0x25a18595, 0x5e152343, 0xa6894040, 0x02000022, 0x27061742, 0x001d00ab, 0x37000026, 0x20064d54, 0x3c078335, 0x17333537,
0x11171507, 0x012e3523, 0x15070622, 0x010e0123, 0x3533011d, 0x2a2b2634, 0x3302832b, 0x56562a40, 0x1801ea40, 0x6a011824, 0x0c095501, 0x2bab0c2a,
0x6b220083, 0x1f828040, 0x00ff4033, 0x18181240, 0x00014012, 0x260b0e01, 0x000e0b26, 0x06874100, 0x6001d422, 0x20086d82, 0x0038002f, 0x01000055,
0x27012e07, 0x0e17010e, 0x17010f01, 0x17071737, 0x32011e37, 0x37173736, 0x82038327, 0x2636211b, 0x0f211e82, 0x07ac4501, 0x08873320, 0x0733072d,
0x3233011e, 0x14333536, 0x83220706, 0x2e232224, 0x200c8201, 0x08138216, 0x00013729, 0x27430f1c, 0x091b1804, 0x0529010b, 0x0a210325, 0x6e55131f,
0x0a1f1355, 0x05250321, 0x090b0129, 0x2704181b, 0x6f5c0f43, 0x8920051c, 0x40080685, 0x040f2a4c, 0x120e0b10, 0x0c12190b, 0x13060613, 0x0b19120c,
0x100b0e12, 0x02150104, 0x01033713, 0x140d4052, 0x0615070f, 0x1313140f, 0x27282827, 0x0f141313, 0x0f071506, 0x52400d14, 0x13370301, 0x0501703e,
0x402e0585, 0x120d0b1d, 0x0118120e, 0x0c0a0a0c, 0x0a821801, 0x000b0d22, 0x02330082, 0xd5ff0000, 0xab019601, 0x13000300, 0x23250000, 0x4d353311,
0x33200763, 0x21063351, 0x054fd66b, 0x012b2309, 0x3e82562a, 0x706dfe20, 0x8939820a, 0x00072243, 0x24458517, 0x33352303, 0x2b498f13, 0x45e0e070,
0xaa2a5656, 0x1c24241c, 0x40250483, 0x95fe2b01, 0x2f7e8215, 0xaafe1b24, 0x0101241b, 0x56011b24, 0x0000241b, 0x22063358, 0x8296016b, 0x001b214f,
0x270fb168, 0x0100003f, 0x011d0622, 0x2c0a884d, 0x26341137, 0x26343527, 0x23153307, 0x18038215, 0x9608006d, 0x4001370b, 0x12560c09, 0x6b121818,
0x0c011812, 0x6b740c0a, 0x2b16166b, 0x02821515, 0x08905620, 0x0c950126, 0x13184009, 0x2707f155, 0x4606130c, 0x6a800c09, 0x15232b82, 0x82161515,
0x20028203, 0x41008316, 0x8020060b, 0x25064f41, 0x25000017, 0x51413523, 0x076f5008, 0x11820320, 0xaa550137, 0x1813aaaa, 0x12aa1219, 0xaabc1919,
0x56d580aa, 0xfe121801, 0x249283d5, 0x18122b01, 0x085f46fe, 0x01d5ff22, 0x0c224f85, 0x4f831c00, 0x03331123, 0x06454c22, 0x280b6041, 0x012e1137,
0xc0c05501, 0x051e4b60, 0x17ab4830, 0xab171e1e, 0x01011e16, 0x2b01401e, 0x004b80fe, 0xc0012705, 0xfe171e01, 0x16831796, 0x6a011726, 0x00001e17,
0x22051f45, 0x45010002, 0x2020051f, 0x35236383, 0x46233733, 0xc94a0532, 0x26343405, 0x21352125, 0x011d010e, 0x35211523, 0x55d50123, 0x4a801655,
0x06820547, 0x61fe0c24, 0x61828001, 0x012b182a, 0x9655d62b, 0xd5090c2a, 0x06821b85, 0x822b2b21, 0x40eb22d6, 0x33678240, 0xff000004, 0x010002e3,
0x0012009d, 0x00200015, 0x01000024, 0x17246584, 0x23153335, 0x17246888, 0x17070323, 0x2705435b, 0x35133717, 0xeb011721, 0x01276382, 0x402e552b,
0x820c0904, 0xe5e5386b, 0x0a271b2c, 0x327a012b, 0xbcfe0e1b, 0x0c15012b, 0x6f2b5909, 0x84014096, 0xe5253177, 0x271b4801, 0x40eb100b, 0x42011b32,
0x00002b2b, 0x22050b52, 0x82c00180, 0x421320e9, 0xe942064f, 0x06222306, 0xad4b1115, 0x11352605, 0x33032634, 0x08236835, 0xaa550126, 0x1912aaaa,
0x33059f41, 0x552b2b27, 0x2b562a2a, 0x00016b2b, 0xfe121955, 0x011812ab, 0x0126d682, 0xfe191255, 0x00832b00, 0xef78de82, 0x00802208, 0x25dd8414,
0x002c0028, 0x44461300, 0x33172305, 0xe6823715, 0x3d013e33, 0x23263401, 0x15371707, 0x27150717, 0x37273507, 0x06b04227, 0x07821520, 0x18125528,
0x40ab1218, 0x07862b40, 0x00844020, 0x6b6bab2b, 0x6b6b4040, 0x13188001, 0x237882d5, 0x6a40406a, 0xd5327c82, 0x2a2b1912, 0x20204a2a, 0x4b2b2b4b,
0x2a4a2020, 0xa76e2b2b, 0xeaff2d05, 0x7801d601, 0x1e001a00, 0x15010000, 0x4c08d082, 0x23172315, 0x23072327, 0x2f262337, 0x16363701, 0x3733011f,
0x010f3523, 0xd5012733, 0x21344a6a, 0xb9142f50, 0x05583016, 0x1444050f, 0x39030f09, 0x354c4a5d, 0x01278f2d, 0x2b6b2a55, 0xaa2a2aaa, 0x07ca0e01,
0xa7090803, 0x55c02a6b, 0x08374555, 0x01c02208, 0x00070080, 0x001b000f, 0x25000027, 0x37013e27, 0x27010e33, 0x17011e35, 0x07012e23, 0x26071714,
0x27138235, 0x17010e15, 0x37272622, 0x49081682, 0x06173732, 0x102b5901, 0x03560314, 0x5e47672c, 0x2f045606, 0x134a08a2, 0x25496002, 0x4e305f30,
0x280d4a19, 0x2b121518, 0x0c4a1e26, 0x492d1522, 0x5e0656f5, 0x712f2247, 0x252b1214, 0x06654b2c, 0xdb350556, 0x122b252c, 0x34820114, 0x00820020,
0x04840120, 0x8c01d622, 0x2f088582, 0x11372500, 0x11331121, 0x17371737, 0x33072707, 0x61740137, 0x762a56fe, 0x70255b8a, 0x5e307e8b, 0xdcfea87c,
0xf4fe8001, 0x169d51cc, 0xa1da50c1, 0xa7543a84, 0x000f2408, 0x82012900, 0x3533243d, 0x85331533, 0xd5012107, 0x2b213e82, 0x82018355, 0xc0ab2837,
0xfe1501c0, 0x85006aeb, 0x23fb8373, 0x1300000b, 0x31832d82, 0x15331532, 0x552b4021, 0xfe555655, 0xd5800180, 0x80555680, 0x0c215f8d, 0x839f8200,
0x15212197, 0x0121a484, 0x21968355, 0xa2840166, 0x159cc526, 0x2bb050c1, 0xca236582, 0x840400cb, 0x245f8338, 0x00090004, 0x054d4510, 0x011e3525,
0x82061407, 0x222708d6, 0x17372726, 0x013e2706, 0x26071537, 0x49abc001, 0x23292960, 0x4a2d0c52, 0x23508b18, 0x496002d4, 0xabd51299, 0x82736002,
0xab8f2d10, 0x8a502329, 0x6148ab12, 0x22589e01, 0x4926b788, 0x00000500, 0x46820109, 0xc001372a, 0x1e7500ff, 0x2b01e257, 0x07440785, 0xf9012305,
0x09824901, 0x0d000929, 0x17370000, 0x82252737, 0x01173676, 0x17072723, 0x771e7709, 0x59e1b301, 0x0001781f, 0x1f881e79, 0x220f82a2, 0x8259e289,
0x1e002314, 0xb7821e88, 0x21091b41, 0x5f18000f, 0x332108ad, 0x05635521, 0xfe950123, 0x082d5dd6, 0x5d800121, 0x3a820b24, 0x5c0eab65, 0x7d180b32,
0xab650be2, 0x052f480d, 0x9601d626, 0x17000b00, 0x180dcb64, 0x200c2577, 0x16697600, 0x33761520, 0x0a975717, 0x0f008024, 0xcd911300, 0x21110723,
0x22d18c11, 0x8dd6fe12, 0x822b20d4, 0x002a2410, 0x82000200, 0xc0012f00, 0x05008001, 0x00001500, 0x17372737, 0x87181737, 0xd5250fed, 0xa24c1e6a,
0x0a1f411e, 0x826b5521, 0x6b1f2110, 0x890e2441, 0x000522ef, 0x204b8711, 0x0a2b4127, 0x95204785, 0x850a4c77, 0x77802048, 0x43180a0f, 0x17230c1f,
0x18001d00, 0x240a9367, 0x26371732, 0x274f8823, 0x37170725, 0xab010727, 0x24082541, 0x25211718, 0x275c882b, 0x601ed4fe, 0xc0b71ed5, 0x22085c41,
0x880f2207, 0x84292067, 0x0c47411b, 0x18001222, 0x21236b82, 0x58353311, 0x3d230a0c, 0x85272301, 0xfe952466, 0x42d5d5d6, 0x2b210720, 0x233f84ec,
0x2b2a012b, 0x21070341, 0x128414aa, 0x274a5282, 0x01d62406, 0x840f0096, 0x05fa4d53, 0x34113529, 0x32213336, 0x76031516, 0xd52e0888, 0x00ff1218,
0x13181813, 0x18120001, 0x0482ff80, 0x126b2a22, 0x2a063958, 0xaafe1218, 0x0112182a, 0x83eafe16, 0x00032153, 0x26055364, 0x00030096, 0x5d1c0013,
0x2120052b, 0xab235998, 0x820100ff, 0x215d903d, 0x9b580001, 0x89618c09, 0x20b3835f, 0x975f821e, 0x013f265b, 0x07270727, 0x25bb9201, 0x781e96c0,
0xc1931e42, 0x1e968024, 0x54824177, 0x0b936a18, 0x18001224, 0x67822100, 0x4f333521, 0x3527061b, 0x3b363411, 0x45231501, 0x17200623, 0x20082641,
0x28c988ab, 0x423eaaaa, 0x60aa1e8c, 0x052b418a, 0x41808021, 0x2a29072d, 0x42be00ff, 0x60aa1f8d, 0x0a3341f6, 0x2f09db42, 0x000b0003, 0x11211300,
0x33151321, 0x23353315, 0x2205e84e, 0x5495952b, 0x5520053c, 0x952f0882, 0x00070000, 0x01f0ff00, 0x009601eb, 0x7d1e000f, 0x47220683, 0x39825000,
0x6c012e21, 0x2508056e, 0x15070614, 0x17072226, 0x2737012e, 0x3e173736, 0x011e1701, 0x3625010e, 0x16371716, 0x06160717, 0x012e0607, 0x81182536,
0x173207fd, 0x012e2707, 0x011e3527, 0x27220607, 0x37321637, 0x7146012f, 0xeb072105, 0x08d24318, 0x160a2408, 0x10129b0a, 0x06103403, 0x12280f34,
0x311c0e17, 0x28129cfe, 0x1006340f, 0x12100334, 0x0d1b3218, 0x59010901, 0x413905b5, 0x11021f01, 0x2b231c0d, 0x1f1b481b, 0x8a0f220f, 0x1c230101,
0x0102110d, 0xfc431819, 0x3c210809, 0x0bdf0303, 0x0f1e1424, 0x040d1e16, 0x2f310f0a, 0x040a7c0d, 0x0f161e0d, 0x0b24141e, 0x322f0d0d, 0x050d5136,
0x130c1237, 0x240a1c11, 0x1478330d, 0x07071215, 0x33220c37, 0x1c0a240d, 0x060f4411, 0x49018029, 0x0b000500, 0x82010000, 0x1f372dc3, 0x37270702,
0x1e620117, 0x621e8080, 0x01210585, 0x200c8449, 0x4205841e, 0x2d8206f3, 0x40018922, 0x27253786, 0x2f371707, 0x22048202, 0x84890127, 0x212a8524,
0x448a2201, 0x96203789, 0x13213787, 0x21708237, 0x0482023f, 0x98773721, 0x00022136, 0x01230082, 0x85560180, 0x8237206b, 0x2f07229c, 0x20398302,
0x205d8a9e, 0x45a18c37, 0x802205fb, 0x33820901, 0x17130022, 0xcb842c84, 0x84090121, 0x46518206, 0x49200683, 0x00238b84, 0x82372725, 0x490121c3,
0x5e201d84, 0x5620238e, 0x3f212385, 0x207a8301, 0x87228bb7, 0x83162067, 0x013f2267, 0x20448217, 0x201f849e, 0x5d058477, 0x962908b7, 0x20001b00,
0x00002500, 0x05d76013, 0x27151723, 0x083b4e15, 0x3507352a, 0x35233537, 0x35330333, 0x04838382, 0x2aeb3308, 0x2ac02b2b, 0x24180180, 0x2a800118,
0x6b2b2bc0, 0xd515162b, 0x0116152b, 0x492b2a95, 0xa6112b4c, 0x1919126a, 0x11a66a12, 0x2b494c2b, 0x156baafe, 0x03826b15, 0x220bdf45, 0x6f14000b,
0x07300dcf, 0x16171606, 0x06262736, 0x6c520001, 0x526c0202, 0x2f2a0584, 0x3f361f1f, 0x73382c83, 0x12878001, 0x73251882, 0x0f217338, 0x201b82e2,
0x20008200, 0x2203820a, 0x18c00100, 0x4d0ed760, 0x2c200505, 0x20098969, 0x82c18227, 0x873320d3, 0x200f8b03, 0x24d88237, 0x21112315, 0x23bf8235,
0x802a2a2a, 0x8805cc72, 0x40ab2a08, 0x80018040, 0x2a802b80, 0x0ad373d6, 0x802a8029, 0x2a404080, 0x89d5d5fe, 0x00ab2cd7, 0x001e0015, 0x2e230100,
0x5d062201, 0x23200fc6, 0x2d08d954, 0x20075995, 0x5907202a, 0x12191912, 0x05822a01, 0xc34ea720, 0x80012705, 0x13171713, 0x11651219, 0x19122107,
0x48058e4e, 0xab2808e7, 0x10000700, 0x2f001900, 0x2120d782, 0x20050444, 0x073d5327, 0x5e873720, 0x7d943320, 0xff800129, 0x48580400, 0x53800458,
0x1b200550, 0x9e207285, 0x2b2a8a8f, 0x2222201e, 0x2401e220, 0x02822437, 0x8f06e47d, 0x4a002096, 0xab240ad7, 0x0c000800, 0x26209582, 0x2e20f782,
0x20067b69, 0x066c4117, 0x8a951320, 0x7b850020, 0x822a0c21, 0x8f802000, 0x55012280, 0x25f58501, 0x2bd580c1, 0x7a901501, 0xb7620320, 0x00062508,
0x0025000f, 0x085f7118, 0x0025ff9e, 0x4056406b, 0x24f5966b, 0x55556b40, 0x907685d5, 0x0ca76370, 0x23267387, 0x15372715, 0x739e2733, 0x6b555522,
0x73965882, 0x6b408025, 0x98ab406a, 0x24e78974, 0x000e0005, 0x08c14824, 0xd526729d, 0x8d371e55, 0x7296801e, 0x1e565526, 0x801e8c37, 0x152073a2,
0x4205ff5b, 0x07281ec9, 0x11333533, 0x01331121, 0x2517d142, 0xfe2ad662, 0xd7422ad6, 0x82552017, 0x2a01241c, 0x53000000, 0xc0230563, 0x7b00ab01,
0x1421054b, 0x20158200, 0x06444201, 0x07820720, 0xf59d0320, 0xd66b0122, 0x40230082, 0x962b9696, 0x000128f8, 0x802a802b, 0x9800012b, 0x068f4efa,
0x96017937, 0x3c001d00, 0x67005e00, 0x00007000, 0x22010e25, 0x3e352726, 0x05a46701, 0x3d363223, 0x067d4701, 0x06141525, 0x18322707, 0x29079a51,
0x35373632, 0x16323634, 0x30851517, 0x37232484, 0x82232607, 0xfa541824, 0x17162708, 0x22272607, 0x10822707, 0x21056256, 0x42181716, 0x27200744,
0x012b0887, 0x2d1e0140, 0x0901011e, 0x8201090d, 0x120e29ab, 0x1b2a1a01, 0x15900e12, 0x01230482, 0x84273b27, 0x3a012418, 0x83013956, 0x0a3c3d1a,
0x111e100d, 0x0124151a, 0x012d442d, 0x111a1524, 0x0a0d101e, 0x291b0c0b, 0x640c011b, 0x2a0c1f53, 0x1e1e1675, 0x09062616, 0x82260609, 0x4d092c17,
0x120e1605, 0x0e121818, 0x84530516, 0x1d722505, 0x4b1d2828, 0x4b251f83, 0x2b39392b, 0x3e1f8472, 0x01071f28, 0x071a1314, 0x2d2d2201, 0x1a070122,
0x07011413, 0x0102051f, 0x151b1b15, 0x83470201, 0x86a8838c, 0xe3731807, 0x001d230f, 0xb15b2500, 0x011e2308, 0x53721e13, 0x15172609, 0x35270717,
0x176b4c01, 0x10606623, 0x146f4c70, 0x5b5a792a, 0x39706878, 0x0080441b, 0x2e05a750, 0x00ab01c0, 0x0017000b, 0x0024001d, 0x18000029, 0x82175374,
0x2737256f, 0x21151735, 0x372d0182, 0x35331531, 0x3f000123, 0x54010155, 0x27058340, 0x3a2c3f55, 0x2c3a0101, 0x172d0584, 0x35341044, 0x000100ff,
0x012b2b55, 0x638518ab, 0x012c220a, 0x3321853b, 0x273b2c2c, 0x1e1c284e, 0x2b40ea3c, 0xab555540, 0x00060000, 0x01230082, 0x866b01eb, 0x0026248b,
0x4638002f, 0x45640ddf, 0x8333200c, 0x220529fe, 0x37363426, 0x27171633, 0x3b2e0883, 0x27170701, 0x3634012e, 0x0706013b, 0x274c4001, 0x60022208,
0x0a967149, 0x31204b24, 0xdb653b16, 0x0a512b05, 0x0c09550f, 0x012c090c, 0x07831701, 0x0a0f4024, 0x87186b01, 0x2a2c1663, 0x3b173250, 0x0c120c77,
0x6b141701, 0x15230682, 0x82016a15, 0x17142106, 0x2208835b, 0x82b00196, 0x00122dc5, 0x0024001e, 0x17071300, 0x07353307, 0xbc41b28c, 0x2737290d,
0x551e2f35, 0x7c276b26, 0x21094541, 0x45414054, 0xaf012d0e, 0x6b27551e, 0x54014526, 0x01544040, 0x2d200584, 0x28076541, 0x263a2c2c, 0x1e1c274f,
0x08df583c, 0x7f89ab20, 0x07170127, 0x35173717, 0x085c4d07, 0x18012e21, 0x210caa88, 0x7f821715, 0x26800123, 0x205f8255, 0x21809beb, 0x228227ab,
0x966b2622, 0x0020819d, 0xc0218384, 0x05836101, 0x1d001724, 0x49422800, 0x15072a1f, 0x15213533, 0x21152737, 0x1c484235, 0x012bb627, 0xff555500,
0x1f484200, 0x4040ab27, 0x40405655, 0x20008200, 0x37048401, 0x00560196, 0x0100000b, 0x07270727, 0x37170717, 0x01273717, 0x77771e95, 0x01210287,
0x4f0c8a37, 0x0f220a37, 0x7f4f1b00, 0x82032011, 0x054b4f45, 0x18170721, 0x2707fc6f, 0x19122a01, 0x4d4d5a19, 0x08556b18, 0x6c630120, 0x8ad5200d,
0x06eb501a, 0x8001c028, 0x13000f00, 0x61921f00, 0x21112124, 0x9118010f, 0x17210703, 0x25658c37, 0x01d6fe12, 0x6a992a2a, 0x2a01ab23, 0x4f1d8a48,
0x0b220c73, 0x47431700, 0x0910410e, 0x50013721, 0xa8200bed, 0xf950428a, 0x8d68200c, 0x095b4e5b, 0x23205b83, 0x21190951, 0x7a41010f, 0x20698208,
0x2e8f1848, 0x4f482009, 0x022508d5, 0x37372478, 0x2302871e, 0x48610215, 0x47182687, 0x7e200c55, 0x002d248a, 0xff000002, 0x01d601d5, 0x000b0080,
0x89db8233, 0x013f29cf, 0x011d1632, 0x23070614, 0x17139418, 0x3d012e28, 0x33363401, 0x508a3701, 0x18121626, 0x16561218, 0x0d8b9a18, 0x14835620,
0x83400121, 0x1e382226, 0x27028238, 0x12195e37, 0x011812d5, 0x0f269418, 0x20051a55, 0x0c7b5000, 0x1300072e, 0x07130000, 0x37331715, 0x17072735,
0x09dc9218, 0x7070b026, 0x9d7070a0, 0x830cc941, 0x70a02211, 0x10634155, 0xf354d982, 0x274d8909, 0x07151733, 0x37352723, 0x2207d442, 0x85072737,
0x7c8e2c55, 0x577c5757, 0x3e3e1f58, 0x843d3d1f, 0x80012105, 0x2b205b85, 0x57221782, 0x16871e7c, 0x8f421c82, 0x006b3108, 0x002f0017, 0x2500003f,
0x15233523, 0x15333533, 0x27052963, 0x013e3527, 0x1632013b, 0x17866b82, 0x63010e21, 0x34210541, 0x21178336, 0xcf5c3717, 0x8001280e, 0x202b2b20,
0x5740090c, 0x06820589, 0x10839520, 0x11840120, 0x01210484, 0x0a7152aa, 0x400bd529, 0x0c09160b, 0x8356090c, 0x8c162004, 0x5c80200d, 0x00200ed3,
0x2507d343, 0x6b010002, 0x6f421200, 0x010e2105, 0x0806dc44, 0x013e212c, 0x01012e37, 0x3b560c9d, 0x31154a2f, 0x49010140, 0x2e150136, 0x3801013c,
0x014838ea, 0x07272e01, 0x48363346, 0x2d3d0102, 0xe7433b2b, 0x23478405, 0x00180005, 0x82061f53, 0x8e27203f, 0x4ad5264f, 0x1e6f2c1e, 0x2654923b,
0x2c1e4b55, 0x91081e6e, 0x255b835a, 0xd601eaff, 0xa3829601, 0xa5821e20, 0x26222326, 0x33373634, 0x1e279f82, 0x32331701, 0x54061416, 0x60310c26,
0x24241cb5, 0x2d07031c, 0x0130241e, 0x1e1e170b, 0x0a154377, 0x37246b2f, 0x231c0124, 0x25300101, 0x011e2e1e, 0x08e9522a, 0x8a785b21, 0x000622c3,
0x25678219, 0x35332707, 0xc4921533, 0x6b6b0126, 0x7256406b, 0xab25c492, 0x55556b6b, 0x20c3953f, 0x25608200, 0x13006b01, 0x5b822600, 0x012e2122,
0x1528c389, 0x14011e33, 0x012e2706, 0x2f0f2d41, 0xebfe9501, 0x24303024, 0x293d0b0f, 0x20014232, 0x1420d882, 0x40317592, 0x30493001, 0x012f2501,
0x0b324201, 0x24362401, 0x498192a9, 0x02210603, 0x20838200, 0x25858207, 0x3700002d, 0x86842317, 0x4f472720, 0x17332406, 0x82050137, 0x07062385,
0x92823617, 0x82151721, 0x14152104, 0x3e270d82, 0x012e3501, 0x83d0aba5, 0x3b402e8b, 0x01014535, 0x2bfa3649, 0x019bfe1b, 0x248e8242, 0x181f2530,
0x289e851e, 0x151f0f12, 0xeb380118, 0x339184ab, 0x48033b65, 0x02483635, 0x65011b2a, 0x01483881, 0x0d1f1801, 0x1b29a285, 0x1f081e12, 0x2b1b2d0f,
0x07df673b, 0x96229782, 0x05781500, 0x0622210a, 0x22068842, 0x7b352115, 0x272b05b7, 0x3307012e, 0x15372315, 0x86073533, 0x00012103, 0x20099b42,
0x059c4200, 0x560c2a27, 0x15aaaa90, 0x3e008380, 0x272f9501, 0x36334606, 0x55550149, 0x2b2e3c01, 0x4739033b, 0x158096e9, 0x16162a15, 0x1815152b,
0x350a075c, 0x00160096, 0x0030002c, 0x00380034, 0x2500003c, 0x26343632, 0xeb652327, 0x0e232906, 0x17161401, 0x37152135, 0x20056b48, 0x2a928223,
0x3e27012e, 0x013e3701, 0x84011e33, 0x8233208c, 0x35232398, 0x07822733, 0x1c950126, 0x201c2424, 0x292de982, 0x240f0b3d, 0x01243030, 0x382a1d00,
0x22818201, 0x8200ff15, 0x40012a8c, 0x2f4a1531, 0xaae6563b, 0x82a68495, 0x246b3804, 0x0a012437, 0x01024232, 0x3001262f, 0x6a013048, 0x3b03a96a,
0x833c2e2b, 0x36492cb9, 0x27064633, 0xa247012f, 0x826b9696, 0x152a21bb, 0x2510ab42, 0x23352315, 0xab421737, 0x562b2513, 0x326b6b40, 0x24123542,
0x6a5656ab, 0x13ab426a, 0x092f8318, 0x17000f28, 0x00001f00, 0x91553413, 0x54112005, 0x132306eb, 0x82353311, 0x173525eb, 0x11331523, 0x40200382,
0x2f062c50, 0x13d6fe12, 0x2a554018, 0x552a802a, 0x55012a55, 0x83057872, 0x82012005, 0xaa2b27f8, 0x012bd52b, 0x13482b00, 0x001e220a, 0x215d823d,
0x5b460622, 0x22098209, 0x82013b16, 0x012e2b5d, 0x37363223, 0x33353335, 0x14831632, 0x15331725, 0x82010e23, 0x2b062209, 0x25158201, 0x2233013e,
0x27822726, 0x5e83ab20, 0x83151521, 0x2a2a2905, 0x12121801, 0x802a0118, 0x01241392, 0x55121980, 0x23821c83, 0x2b209882, 0x20050752, 0x4614942b,
0xab290873, 0x07006b01, 0x00000f00, 0x21e88501, 0xf9832111, 0x01330382, 0x6b404040, 0x406baafe, 0x2b6b0140, 0x012b00ff, 0x84aafe56, 0x072f4edb,
0x2f4e8020, 0x000f2406, 0x5e00001f, 0x352007c3, 0x2720c382, 0x8d760383, 0x8023250d, 0x6b956b6b, 0x04820082, 0x240a8976, 0x2b2b2bab, 0x20038280,
0x0b7651ab, 0x2b0d0f47, 0x00150005, 0x07171300, 0x012f3727, 0xde26538e, 0x441e6262, 0x89575544, 0x12192307, 0x11842201, 0x4d8d7c20, 0x2009a75a,
0x23e98203, 0x001d000d, 0x08ad4d18, 0x57942720, 0x82150121, 0x826b21a8, 0x0a204b84, 0xab205d89, 0x4d20aa82, 0x02216092, 0x24008200, 0x8001c001,
0x26ab8400, 0x37170701, 0x7b013f27, 0x33200dd8, 0xac849a86, 0x93066152, 0x21ab9dac, 0x03410717, 0x25ab8510, 0x44441e3e, 0xab8f621e, 0xc0201484,
0x410c0c41, 0x2b2335bb, 0x82956b2b, 0x2b6b2100, 0x230b4578, 0x2b562b80, 0x80210382, 0x20608cd5, 0x09cb7500, 0x05008032, 0x1b000b00, 0x15130000,
0x27151707, 0x35071737, 0x2911c341, 0x763939eb, 0x3b7777a0, 0x6841aa3b, 0x35012d09, 0x3c39393c, 0x77777775, 0x863a3a3d, 0x6b415e8c, 0x01ab2205,
0x4a598280, 0x2008059b, 0x27070614, 0x2634013e, 0x0e17012f, 0x17161401, 0x34012e07, 0x18780136, 0x23181b1b, 0x15161615, 0x200584cd, 0x2d0f8223,
0x63258001, 0x16256370, 0x5866581f, 0x0686161f, 0x0b431283, 0x05634b08, 0x0d443720, 0x23372111, 0x27051c4e, 0x33171632, 0x23272634, 0x3b236983,
0x48011e01, 0x232006f0, 0x33207782, 0x25448483, 0x16cb250c, 0x0d12120d, 0x01260482, 0x161f2b2a, 0x04822b1f, 0x3e44108e, 0x01aa2d0b, 0x12121b12,
0x012a200e, 0x2b3f2a01, 0x9f880c8c, 0x5701d621, 0x25200653, 0x2c05e856, 0x07273701, 0x63370117, 0x80801e63, 0x5605848c, 0x9a57059d, 0x22368205,
0x5a000800, 0x0421072b, 0x05955500, 0x00262e08, 0x002e002a, 0x25000031, 0x37271507, 0x010f2235, 0x14150706, 0x16011f16, 0x3e013f32, 0x26013d01,
0x1f26012f, 0x37350701, 0x17352707, 0x2a608215, 0x37012f15, 0x17270715, 0x82420107, 0x05520800, 0x0307c105, 0x05c80201, 0x02c8050a, 0xc1070301,
0x90405d05, 0xa0504292, 0x9050e331, 0x50509202, 0x2cc03131, 0xa92c2d01, 0x08047f03, 0x02050685, 0x87030387, 0x85060403, 0x037f0408, 0x57612cea,
0x58362d8d, 0x15214282, 0x83615637, 0x0b365760, 0x33422120, 0x01d62108, 0x34055344, 0x33000019, 0x25213521, 0x35333523, 0x011e1521, 0x013e3317,
0x09f36637, 0x80fe803b, 0x2b2b8001, 0x3001aafe, 0x30248025, 0x18122b01, 0x40ea2b18, 0x3025d52b, 0x28128201, 0x40121840, 0x00001813, 0x22fb8203,
0x82bd01e7, 0x00083453, 0x001e000c, 0x21353700, 0x07173727, 0x013d3727, 0x18371523, 0x2d0c855d, 0x3527012e, 0x252b0140, 0x1e59591e, 0x50832b25,
0x012b1225, 0x83562430, 0x262a215d, 0x262a1583, 0x6b4040ea, 0x12401219, 0x14821618, 0xab211b82, 0x4c008200, 0x37200dcf, 0x4f0e2d4d, 0x03210a42,
0x21cc8335, 0x45182223, 0xea570761, 0x05f84505, 0x012b0623, 0x0c4d4d15, 0x0b787e18, 0x552b5e29, 0x0c0c0940, 0x872a1609, 0x0c5f4d08, 0x74502820,
0xecfe230a, 0xb9672a16, 0x4a088806, 0xff2605ff, 0x000002c0, 0xad820016, 0x35211528, 0xfe000221, 0x44184000, 0x18230b73, 0x83170000, 0x209e8299,
0x079a5c35, 0x82141121, 0x06072396, 0x7b64c023, 0x56012d06, 0x12181812, 0x08074f82, 0x40090c15, 0x7405d274, 0x4f2105de, 0x0b7b5206, 0x20001824,
0x4f9a2900, 0x2e353728, 0x07062201, 0xb56b3715, 0x26609107, 0x303b028a, 0x7155023b, 0x6d910543, 0x1516aa22, 0x16260082, 0x182419ab, 0x5e182418,
0x18260c57, 0x27001f00, 0x7d9b3000, 0x3337152d, 0x25112111, 0x013e3523, 0x56171632, 0x84910842, 0x94420a27, 0x0001aafe, 0x278b9daa, 0x01424280,
0x2a00ff00, 0x95209284, 0x0f419187, 0x001c220d, 0x24919a20, 0x15233513, 0x91038217, 0x2a4a2381, 0xfd912a2a, 0x55000126, 0x2b2b5655, 0x0ca34918,
0x2320f783, 0xc541f982, 0x85372019, 0x553720f7, 0x6c9106d5, 0xc020ee84, 0x72927182, 0x8022e486, 0x7683ab55, 0x220aab4c, 0x9a1e0018, 0x051d5ed9,
0xab246a92, 0x1e378d1e, 0x9520d991, 0x3b411784, 0x001f220d, 0x86619a25, 0x072525d5, 0x37173727, 0x422a6892, 0x01aafe94, 0x1e4b750b, 0x6e91572d,
0xaa20d586, 0x00201e84, 0x0c07a118, 0x0b741820, 0x2e052405, 0x43013d01, 0x332c06b2, 0x17163221, 0x2b010e15, 0x23060701, 0x352d7783, 0x23271521,
0x37013e11, 0x01211521, 0x07244300, 0x36068e7d, 0x08074f57, 0xfe69420a, 0x012b55d5, 0x55011218, 0x012babfe, 0x1840090c, 0x2f070040, 0x074f1812,
0xd6414180, 0x00012bd6, 0x2b011812, 0x0b4f6d18, 0xc7417b83, 0x98eb9620, 0x0a6b5ce4, 0x70825f83, 0x4118ef43, 0x37200653, 0x960a637d, 0x2a96236d,
0x02824040, 0xd5247498, 0x40402b40, 0x04206a82, 0x26088346, 0x001c0018, 0x41240020, 0x35231bd1, 0x86231523, 0x25769103, 0x2a2b2ba0, 0x70912b2b,
0x4118ea20, 0x0520081f, 0x1f256b8a, 0x27002300, 0x24eba200, 0x33352325, 0x91038607, 0x420a2c74, 0x01aafe94, 0x562b2b16, 0x93552a2a, 0x0648427d,
0x84846a20, 0x25109743, 0x003b0037, 0xb94a1300, 0x7a451805, 0x013f2207, 0x05696433, 0x21052336, 0x35072311, 0x06223723, 0x36343317, 0x06141632,
0x15010e07, 0x37360a82, 0x3435013e, 0x33150726, 0x18125535, 0x0c561218, 0x07080b09, 0x0b83824f, 0x56398d82, 0xaf804294, 0x2a02241c, 0x0a0c120c,
0x2a0c1108, 0x130f0806, 0x012a3723, 0x05924595, 0x0c094024, 0xa3454f06, 0xff2a3b05, 0xe0424200, 0x09091718, 0x050e120b, 0x09100f0a, 0x1707050b,
0x8b1b160e, 0x6b432b2b, 0x222b410f, 0x91523720, 0x162b410a, 0x53377421, 0x2b460a95, 0x062d4110, 0x1d53d520, 0x0e33410a, 0x241f2342, 0x35211503,
0x061c4f05, 0x60278291, 0xd6fe2a01, 0x42d5aaaa, 0x01261125, 0x552a2a6a, 0x02822b2b, 0x64180020, 0x3b450a8b, 0x15212529, 0x15331521, 0x2b121047,
0xfe94420a, 0x00012baa, 0xc0c000ff, 0xf0867691, 0x2b2bc022, 0x0807a818, 0xab01c026, 0x10000d00, 0x2405ad5e, 0x27113315, 0x060f4215, 0x37230322,
0x21077264, 0x1882013b, 0x95012323, 0x2300826a, 0xd2191912, 0x132d0682, 0x6a121918, 0x80012b2b, 0x80ebfe2b, 0x05226fc0, 0x80c0fe23, 0x057764c0,
0xd6012b22, 0x200bcf41, 0x06716403, 0x013f0722, 0x200b7765, 0x07764707, 0xaf2f0125, 0x5280af51, 0x5b2b0a36, 0x140d0d0a, 0x51910d0d, 0x525551af,
0xbc200a32, 0x14211483, 0x0ca3410d, 0x0c00032b, 0x24001800, 0x023f0000, 0x2f5d1807, 0x628f1808, 0x45952b17, 0x08264591, 0x0b100b0b, 0x6e8b080b,
0x240a6459, 0x91459155, 0x22208339, 0x8ac20b10, 0x0bdb487a, 0x00227f85, 0x234a0100, 0x00132405, 0x64200017, 0x694d05f9, 0x35132c0f, 0x012f1533,
0x14161733, 0x7123010f, 0x3543050a, 0x30058305, 0x55b46bc0, 0x0606473c, 0x012b3d46, 0x0100ff00, 0x095d4c55, 0xfe18132c, 0x562b2bd5, 0x11074655,
0x6e824607, 0x83050021, 0x00022104, 0x2c06d74d, 0x0026001e, 0x0100002a, 0x15270735, 0x8a661817, 0x6005200f, 0x17200707, 0x2a061860, 0x33352337,
0x4040c001, 0x7cfe5540, 0x192a08ec, 0x241bc4fe, 0x24243724, 0x0c60ff9c, 0xaaaa2a05, 0x161501aa, 0x2a162b2b, 0x22868995, 0x7d401912, 0xff280614,
0x22222015, 0x00806b20, 0x5d089b46, 0x132605a3, 0x00001c00, 0x9d662321, 0x6e172009, 0x273106fd, 0x15010e21, 0x21113311, 0xeaea9501, 0x191912ea,
0x2a048312, 0x1200ff52, 0x00012a18, 0x6d2a2b01, 0x012705b4, 0x01121801, 0x6d18122b, 0x012105c4, 0x54eb862b, 0x0428067f, 0x12000900, 0x38001b00,
0x0728eb82, 0x07353717, 0x14323426, 0x09ce4918, 0x2f076460, 0x2e353637, 0x14062201, 0x37321716, 0x23260717, 0x2f05425d, 0x37273437, 0x01353317,
0x952b8095, 0x8a140ad5, 0x2005c249, 0x2f068512, 0x3001073c, 0x24303048, 0x32321013, 0x30241310, 0x01300c82, 0x40953207, 0x2b808001, 0x01cb1596,
0x01a11414, 0x2005de64, 0x200786ff, 0x20268907, 0x083c8932, 0x00159529, 0x00000200, 0xc001d5ff, 0x1000ab01, 0x00002800, 0x012e2337, 0x36341135,
0x21152137, 0x17353311, 0x23111707, 0x56352315, 0x1524056f, 0x07061411, 0x3d252082, 0xeb153301, 0x2a8b8296, 0xff000112, 0x55559600, 0x412beaaa,
0x12270522, 0x2b1912ea, 0x82180155, 0x18122d18, 0x00ff2b01, 0x2b40402b, 0x80802b01, 0xfe212c83, 0x05416dd5, 0xa0182b20, 0xc02409eb, 0x0700c001,
0x26237982, 0x82250000, 0x3315226f, 0x208c6035, 0xd6fe9526, 0x952ad62a, 0x2516215f, 0x40560115, 0x1e5f2a40, 0x18182206, 0x07ec7513, 0x12560123,
0x086f5718, 0x09828020, 0x1a000c28, 0x23010000, 0x576f3335, 0x15691809, 0x4001240c, 0x6240d5d5, 0x50220563, 0x524f00ff, 0x00012707, 0x24d6fe55,
0x02822437, 0x200af142, 0x05534300, 0x01d5ff25, 0x86ab01eb, 0x8223205b, 0x2335225d, 0xb46d1815, 0x18132008, 0x2d0b8646, 0x11330737, 0x2e211521,
0x6b012701, 0xcb4296d6, 0x70862005, 0x8023090a, 0x412b012b, 0x2b23052c, 0x62d65555, 0x012606c3, 0x00ff5655, 0x71421812, 0x80012805, 0x012bd5fe,
0x86001218, 0x01be37d3, 0x00050080, 0x00150009, 0x27263700, 0x07171601, 0x27352315, 0x7b483533, 0x145d2808, 0x14610107, 0x48961307, 0x4030054b,
0x01140702, 0xf8140761, 0x40d52b2b, 0x40402b40, 0x20089b63, 0x2e518280, 0x00120006, 0x25000022, 0x17331523, 0x8a050121, 0x41252046, 0x342f0c23,
0x6b6b0126, 0xd6fe2a6b, 0xe0fe2a01, 0x822b202b, 0x20012102, 0x250a5f58, 0x012a2075, 0x1683352a, 0xfb6b2b20, 0x09cb4810, 0x2122b583, 0x6f822500,
0x27012e22, 0x8b053455, 0x4a4818b9, 0x3303350b, 0x00012335, 0xf2183d24, 0x02011a17, 0x202bc960, 0x2b202a2a, 0x2c0c7b45, 0x01156b6b, 0x18f2171a,
0x6049243d, 0x227a82fe, 0x45a02a2a, 0xfe220a08, 0xc75520d8, 0x00002705, 0x8101c101, 0x77821c00, 0x37002e26, 0x49004000, 0x290b2b5d, 0x012e2734,
0x2e352331, 0x04890701, 0x77163221, 0x072005de, 0x8708a144, 0x87172011, 0x201a8811, 0x09fc6501, 0x0d050326, 0x0113012b, 0x16230383, 0x71361301,
0x322005a7, 0x78200685, 0x8305db7c, 0x121c2306, 0x14856712, 0x280a2266, 0x03081010, 0x01070f15, 0x23038216, 0x41070f2b, 0x2405dd7b, 0x1b120155,
0x20028212, 0x20068515, 0x200e862a, 0x8207863f, 0x820420df, 0x01003003, 0x006b01d6, 0x0013000f, 0x004d0046, 0x18211300, 0x3a0e0d44, 0x13113311,
0x1d162311, 0x0f010e01, 0x2f153301, 0x37363701, 0x0e27013e, 0x82231701, 0x11233f09, 0x16373533, 0x26343736, 0x23070622, 0x1e373626, 0x06160701,
0x23271707, 0x37350735, 0xc34e5533, 0xfe390805, 0x181812aa, 0x1bc09612, 0x030b0104, 0x016e4732, 0x04061d21, 0x05131502, 0x01012101, 0x15371b06,
0x11011101, 0x20011306, 0x28271202, 0x0701020e, 0x20ca0b11, 0x01034326, 0x0e5c5a6b, 0x00ff2a24, 0x03830001, 0x07093008, 0x05130b08, 0x15011a36,
0x07081f24, 0x18020221, 0x0b080902, 0x011200ff, 0x0f0e0901, 0x020c0707, 0x26030327, 0x091a0202, 0x0c7b2b08, 0x5100181b, 0x80220897, 0x6f450400,
0x00512d06, 0x0067005a, 0x37000068, 0x34221416, 0x9d4e0484, 0x08ba7508, 0x010e172d, 0x36272622, 0x37272637, 0x82012e06, 0x1e1724f9, 0x82371701,
0x0e072ae8, 0x32361701, 0x2f263617, 0x2ff38201, 0x37013e17, 0x16171636, 0x1727010e, 0x27160706, 0x8208e862, 0x2e353021, 0x07062201, 0x37361714,
0x4a140ae0, 0x4441140a, 0x5f200592, 0x28080685, 0x6c49015e, 0x19010149, 0x13030119, 0x06022224, 0x1209122c, 0x140b0d06, 0x0b05022e, 0x1736170b,
0x02050b0b, 0x0d0b142e, 0x26178206, 0x2202062c, 0x82031324, 0x247f2b2c, 0x30483030, 0x1d242430, 0x08820114, 0x1d140128, 0x13014051, 0x03820113,
0xd4449620, 0x20058505, 0x08278295, 0x161d242e, 0x051a2c21, 0x0c0e1d0a, 0x0d020506, 0x47141107, 0x26080313, 0x190a0a19, 0x13030826, 0x07111447,
0x0605020d, 0x0a1d0e0c, 0x212c1a05, 0x1346c382, 0x0c2b2305, 0x3e832017, 0x0c172023, 0x3b4618e8, 0x006b2f09, 0x00070003, 0x01000017, 0x11213521,
0x2b793521, 0x05004810, 0x260e0f79, 0xff2b1501, 0x41ab8000, 0x00200ece, 0x04270082, 0xeaff0000, 0x8701eb01, 0x00202757, 0x21350100, 0x03820515,
0x011e0132, 0x010e1517, 0x26222123, 0x3634013d, 0x15210337, 0x27200a82, 0x07874b18, 0x0f8b4b18, 0x40015528, 0x1812c0fe, 0x6c822b01, 0x6aaa2b25,
0x8200016a, 0x12d5226e, 0x05095e19, 0x2aaafe26, 0x00eb1218, 0x6f82bb82, 0x01000223, 0x076c1896, 0x00332108, 0x3a05314c, 0x22233533, 0x33011d06,
0x33152325, 0x34353315, 0x15230126, 0x013b1614, 0x82212335, 0x36322f11, 0x2523013d, 0x33011e15, 0x37363221, 0x96832e35, 0x82170621, 0x153536a5,
0x552b3521, 0x2b191255, 0x5555aa01, 0x44fe192b, 0x5512192b, 0x820c8355, 0x80fe2113, 0x8607e446, 0x012a26fb, 0x0100ff00, 0x288c826b, 0x562a8056,
0xfe181256, 0x0a8a18d6, 0x09527407, 0x5555bc25, 0x472a2aaa, 0xeb2c0673, 0x1000ab01, 0x00001900, 0x15231137, 0x94848982, 0x3322a082, 0xa5832735,
0x3321ee82, 0x23498295, 0x2ad61218, 0x182b5282, 0x55abab12, 0x2a565601, 0x821812d6, 0xab2b2405, 0x412a1812, 0x00220667, 0x98180100, 0xdf820c27,
0x0320e885, 0xe882df87, 0x0320f185, 0x23245f84, 0x95010622, 0xcf82d383, 0xd620cb83, 0x2b20d984, 0x0121ed84, 0x23068280, 0xabfe1813, 0x1d821384,
0x832a0121, 0x08875929, 0x78005621, 0x21210533, 0x23018235, 0x011d0622, 0x077e5018, 0x01263427, 0x01d6fe95, 0x0693572a, 0x19122a26, 0x2ad65519,
0x2109a84f, 0x43860000, 0x80019622, 0x4d0b7778, 0xc74d07d0, 0x6b012105, 0x180d7778, 0x200c734c, 0x0c6b5900, 0x11208786, 0x0e2f8782, 0x1e110701,
0x3e211701, 0x2e113701, 0x44800101, 0x6d48054e, 0x00012105, 0xa67b0784, 0x0a874112, 0x23001727, 0x23370000, 0x051e5535, 0x4b821520, 0x23153322,
0x15245582, 0x012e3523, 0x290b8146, 0x092c2c41, 0x442a445d, 0x0887095d, 0x8d18b620, 0x54210961, 0x84188bab, 0x63ee2021, 0xf5820ab3, 0x23480020,
0x00082706, 0x002c0020, 0x39460100, 0x217aa208, 0x1c440001, 0x9c9b2005, 0xe5561882, 0x9d692008, 0x0002218b, 0x01270082, 0x005601c0, 0x82100006,
0x272108fb, 0x37173717, 0x06141507, 0x012e2107, 0x6b21013d, 0x4b4b752b, 0x090c2b75, 0x0c0900ff, 0xea6b2a01, 0x21008295, 0x586040ea, 0x06374a05,
0x3f82ea20, 0x13009629, 0x00001700, 0x180f0625, 0x2112aa9b, 0x21823717, 0x11a39b18, 0x7f7f7f24, 0x9b180d60, 0x4722109f, 0x37444747, 0x01c02108,
0x1b225785, 0x5b991f00, 0x35170527, 0x07350527, 0x26639715, 0x8080ecfe, 0x95802a01, 0x49b3276a, 0x8f8f4890, 0x72829048, 0x83070021, 0xeb012b04,
0x05006b01, 0x0d000900, 0x5b5e1100, 0x01003606, 0x37171507, 0x07172735, 0x33152527, 0x15011f35, 0x07153727, 0x200b8335, 0x080f8207, 0x95550128,
0x51969695, 0xfcfe5151, 0x55555695, 0xc0fe55d5, 0x0140406a, 0x57a8576b, 0x2e25a857, 0x2b202f2f, 0x6431432b, 0x02826431, 0x2a2a1e25, 0x822b2b55,
0x216b8967, 0xa018000b, 0x13200ccb, 0x2c09ac49, 0x15230535, 0x35332733, 0x23350723, 0x826d8315, 0x3009820e, 0x95803533, 0xd6956bd6, 0x40404001,
0x2b4040aa, 0x20088240, 0x240982ab, 0x6b6b0001, 0x24028295, 0x40d54095, 0x851b82ab, 0x087f6402, 0x9601c024, 0xd5820300, 0x01002c08, 0x25212721,
0x3b011e13, 0x37363201, 0xfe870113, 0x200109f2, 0x022bb0fe, 0x10d61018, 0x012b0218, 0xfe2a5615, 0x1515107b, 0x82850110, 0xeb721831, 0x000f2309,
0x3d840019, 0x26220325, 0x49013e27, 0x032005a3, 0x9026498f, 0x0401241b, 0x02820438, 0xdb240122, 0xfe2d548b, 0x231c24c0, 0x4d03034d, 0x01241c23,
0x2061886a, 0x20638600, 0x299f828b, 0x00280020, 0x13000030, 0x5d773533, 0x011e2405, 0x67061417, 0xc652062c, 0x33372607, 0x15172311, 0x05a25a33,
0x27310785, 0x2b2a2b80, 0x012f252b, 0x16130f10, 0x29360101, 0x080f822b, 0x2b200b20, 0x1e165655, 0x4b56161e, 0x171e1e17, 0x2a2a6b01, 0x34052b2a,
0x0d251526, 0x2919290d, 0x0f820136, 0x012b2a2a, 0x016b9500, 0x011e2d1e, 0x00200686, 0x01200082, 0xb43e0484, 0x29008001, 0x07370000, 0x23073317,
0x3233011e, 0x0e153736, 0x012e2301, 0x33372327, 0x04823727, 0x013e4608, 0x17163237, 0x23012e07, 0x33070622, 0x02029707, 0x12bc12db, 0x3c242e47,
0x213c1815, 0x4a156140, 0x01012c15, 0x15351541, 0x46284061, 0x3e14131b, 0x12472e24, 0x15d512f2, 0x2f262b15, 0x133c1b1e, 0x39460115, 0x2a0d822b,
0x1f014639, 0x1f1b2b1b, 0x882b262f, 0x0180297f, 0x00190080, 0x3e353300, 0x352f7182, 0x37362633, 0x011d011e, 0x33170626, 0x82162315, 0x1529086f,
0x03113d80, 0x30103636, 0x5d202040, 0x60600b24, 0xb5250803, 0x0458242b, 0x025f4a2a, 0x2a010901, 0x2a365a1a, 0x2b245804, 0x83cf8500, 0x001c234f,
0xcd821300, 0xd2831620, 0x07010e29, 0x23172315, 0x82333527, 0x08cd82c7, 0x2b012e32, 0x15d5ab01, 0x44071046, 0x38052b15, 0x36800f29, 0x291c3680,
0x63167f04, 0x36162409, 0x122b8001, 0x3a2a2b18, 0x95950106, 0x1c23012b, 0x0017132b, 0x2808eb6c, 0x008001ab, 0x001e001b, 0x077c1822, 0x33352307,
0xc8423317, 0x25ae8206, 0x23272315, 0xb0592315, 0x33372a05, 0x33011d27, 0x23351727, 0x25228227, 0x492b2b55, 0x00842b61, 0x562c0785, 0x19491818,
0x1831187a, 0x80000131, 0x2b220082, 0x06862b2a, 0x2a552a25, 0x822b802a, 0x0a3f4604, 0x1d001525, 0x82370000, 0x661e2069, 0x69180668, 0x2f0807dd,
0x23372335, 0x36323315, 0x15802634, 0x363629a0, 0x80807529, 0x1515152b, 0x177575b5, 0x95eb1e1e, 0x36523601, 0x6b2a2b01, 0x952b2a6b, 0x1e2e1e6a,
0x20062341, 0x2bc78296, 0x2500001a, 0x2307010e, 0x37350735, 0x33240384, 0x07153715, 0x3e290384, 0x95013701, 0x2a526c02, 0x82008240, 0x6b6b3d3c,
0xc0025440, 0xb0026c52, 0x26172e18, 0x50172d17, 0x272d2640, 0x272d2726, 0x40540194, 0x08f7c518, 0x25008022, 0x1e27a583, 0x013e3201, 0x8227022e,
0x33352245, 0x052b7b15, 0x010e2225, 0x8217021e, 0x2315366e, 0x95012e35, 0x3624012b, 0x47220124, 0x29010240, 0x29214021, 0x30108f01, 0x18181280,
0x230f1223, 0x082c1d2b, 0x2c082f2f, 0x830f8e1d, 0xff570873, 0x01a101e7, 0x00190096, 0x26060500, 0x0607012f, 0x11352622, 0x17323634, 0x011e1735,
0x17010f06, 0x01070616, 0x04100823, 0x1106352f, 0x06110c0c, 0x0b0207f5, 0x042e4307, 0x03150806, 0x2b650805, 0x01090c04, 0x050c0940, 0x1106ce01,
0x640e010d, 0x00041009, 0x86000002, 0x000e2257, 0x2dcd8228, 0x011f1636, 0x36262737, 0x1527023f, 0x67981737, 0x6682d720, 0x3227312a, 0x06080603,
0x5226b031, 0x90207494, 0x6a221d82, 0x65826a12, 0x940a0125, 0x98a11fe6, 0x82012083, 0x01e53583, 0x009b01db, 0x01000017, 0x17353315, 0x15233507,
0x33270733, 0x07c54c18, 0x1737232c, 0x5b6b1501, 0x5b466b5b, 0x0786465b, 0x8b400121, 0x7a15830d, 0x4d080973, 0x008b01a4, 0x2500001a, 0x011e011f,
0x0e071507, 0x22012b01, 0x3637012f, 0x3517013b, 0x16323634, 0x2501011d, 0x0d0b590e, 0x15021301, 0x0b10930e, 0x0c091380, 0x24195506, 0x2d03e718,
0x050c1403, 0x0b130e83, 0x1308167f, 0x181812e0, 0x57837912, 0x5c840320, 0x8001ab34, 0x16000a00, 0x00002200, 0x07010e01, 0x3632011e, 0x61822e37,
0x35260884, 0x2622010e, 0x0b891507, 0x2706386e, 0x02026092, 0x6002f460, 0x048b0784, 0x01800130, 0x30252430, 0x30242530, 0x3024407f, 0x04832430,
0x09884720, 0x0ad34318, 0x0e000328, 0x28001e00, 0xd3822c00, 0x23153325, 0x4c011e03, 0x3e2005e0, 0x15208386, 0x23258c82, 0x012e2315, 0x237e8227,
0x07153717, 0x25270982, 0x01362315, 0x6dabab40, 0x778405a4, 0x84846220, 0x1b1e0124, 0x5454155c, 0x83152005, 0x56012707, 0x2a550606, 0x8c895501,
0x13238b84, 0x82150c21, 0x242b2612, 0x40010130, 0x23098201, 0x000a1540, 0x2808076d, 0x000b0080, 0x00250016, 0x82918430, 0x23152593, 0x33352335,
0x27249991, 0x010f010e, 0x33229886, 0x99831716, 0x2b800124, 0x02824040, 0x84848020, 0x1624998a, 0x1d0e402a, 0x49241484, 0x250f0115, 0x95270982,
0x40402a40, 0x8d2b012a, 0x0242249b, 0x83252e01, 0x229c8392, 0x82021c22, 0x4700201d, 0x9420080f, 0x2106234c, 0x41180500, 0x15290851, 0x27071737,
0x01351737, 0x05605300, 0x1f600337, 0x601f9494, 0x19241815, 0x01182419, 0x1f60eaaa, 0x601f9393, 0x25438aea, 0x00080092, 0x43890011, 0x35233722,
0x07214283, 0x20438827, 0x27448c2a, 0x1e60d580, 0x601e9494, 0x00258786, 0x01f50100, 0x22438240, 0x18000019, 0x20082b4a, 0x25418225, 0x0e23012e,
0x65470701, 0x324b8706, 0x93210601, 0x2e4c1751, 0x2a0c5b41, 0x3a51730e, 0x85951d5e, 0x936e329a, 0x2b253322, 0x073e4e01, 0x0102624d, 0x00002e36,
0x20608304, 0x05d74901, 0x20001324, 0x5f822900, 0x33351726, 0x27352335, 0x2609d771, 0x0e17013e, 0x18011d01, 0x2007e49c, 0x08d27507, 0x8040002a,
0x241b8080, 0x36240101, 0x5d750483, 0x4e742006, 0x553005d2, 0x2a2b2b40, 0x401c24c0, 0x1b24241b, 0x2a241c40, 0x200a576a, 0x05974e6a, 0x06000022,
0xd6227f84, 0x09825601, 0x2d247f83, 0x43003a00, 0x07208382, 0x33208182, 0x3720839a, 0x23054560, 0x35272622, 0x37249d8a, 0x05012e35, 0xd5209d88,
0xd5209d82, 0x8c249d90, 0x3724241c, 0x0124ad89, 0xf7fe0c01, 0x2b20b0a1, 0x0220c79e, 0x3908c784, 0x00800196, 0x00110007, 0x27230100, 0x15230723,
0x16140121, 0x3632013b, 0x01211135, 0x6a164a95, 0x2a014a16, 0x1219ebfe, 0xff1912aa, 0x156b0100, 0xebfe2b15, 0x12191912, 0x00830001, 0x00000428,
0xc101eaff, 0x554a8001, 0x01002608, 0x2b010e03, 0x08e58201, 0x13170334, 0x35031333, 0x27351533, 0xc1011737, 0x11170341, 0x031711aa, 0xaa393341,
0x4455ce39, 0x80014444, 0x14108ffe, 0x71011014, 0x01c0fe2b, 0x55ebfe40, 0x16826755, 0x0df75618, 0x0500023a, 0x17010000, 0x21031321, 0xfe880001,
0x01d588f0, 0xda1a01aa, 0xaafe2b01, 0x0c202882, 0x00210382, 0x058b6301, 0x45181320, 0xb6181453, 0x112311b1, 0x5a211133, 0x8a490612, 0x053f6905,
0x8d4a0b8b, 0x016b2207, 0x08b4672a, 0xfe55e727, 0x2aaaaad6, 0x85018216, 0x2a2a2205, 0x6f01826a, 0x2b260d8d, 0x2a01d6fe, 0x98785555, 0x2a402106,
0x06860084, 0x29099f43, 0x009601eb, 0x00190003, 0x634e2500, 0x11072606, 0x013b011e, 0x3a958207, 0x36323327, 0x012e1137, 0x80fec001, 0x80fe8001,
0x01011812, 0x2a951218, 0x84952aaa, 0xd6952c0a, 0xff12182a, 0x40191200, 0x5b401515, 0x874105b5, 0x82802009, 0x000f2157, 0x18050741, 0x20147d5e,
0x83d88215, 0xaaab2103, 0x0485d683, 0x2a22d382, 0x45569501, 0x2b2a240b, 0x5f2a562b, 0x002a08bf, 0x01c00100, 0x0002006b, 0x53820005, 0x1b030732,
0x78f08801, 0x01c0c0c0, 0x0001d540, 0x5601aafe, 0x83097346, 0x830d207f, 0x33373125, 0x15330715, 0x35230723, 0x80802337, 0x4b4b552b, 0x01250484,
0x95555540, 0x5003826b, 0x012305cb, 0x849601d6, 0x00082e57, 0x0010000c, 0x00190014, 0x07330100, 0x25028327, 0x17331317, 0x03842723, 0x23072b08,
0x011b0737, 0x40550127, 0x2b56566a, 0x6b2a4095, 0x6a402a2b, 0x4056162a, 0x1540152b, 0x55d5d555, 0x95950001, 0x0195abab, 0x00834000, 0xfe806a26,
0x802a01d6, 0x240a8b4e, 0x000f0007, 0x285b8217, 0x011f010f, 0x0f27013f, 0x20068402, 0x2d0e8617, 0x3a1b9501, 0x3b1b1b3a, 0x7635f03b, 0x03823576,
0x0f86a020, 0x3bab0123, 0x200a841b, 0x22168405, 0x84753535, 0x1b1b2126, 0x2009477a, 0x21598280, 0x63420018, 0x07455311, 0x200b4042, 0x057945a7,
0x200d3042, 0xd7531895, 0x0b676a09, 0x21001822, 0x8f5b5592, 0x917a1807, 0x205e8b08, 0xb04e183c, 0x20658d0c, 0x054b452b, 0x7462d520, 0x00042108,
0x01200082, 0x83053743, 0x922a206b, 0x0809546d, 0xd586769c, 0x7d9a7d20, 0x6b20e387, 0x5f68858d, 0x000f2109, 0x33208385, 0x7c908592, 0x5c08445c,
0x0541089e, 0x12122219, 0x20f28319, 0x419c85e8, 0xd5201b13, 0xe3459b8d, 0x0b1f4105, 0x3c003322, 0x7a189dad, 0xc1870876, 0x7d20a6a0, 0x84052042,
0x19192106, 0x6a20ada2, 0x20063c42, 0x08d7416a, 0x8f057b4f, 0xa44520b7, 0x10ef41b9, 0x08019c18, 0x41296941, 0x12200d70, 0x20217741, 0x42c2866b,
0xd18f061b, 0xa3610220, 0x000b2608, 0x2500001c, 0x05aa5b35, 0x33372308, 0x27011f35, 0x0f222631, 0x1f140601, 0x3f321601, 0x01343601, 0x0c2a562b,
0x5a4a6b09, 0x061107c0, 0x028206c0, 0xc007112c, 0x40358b06, 0x010c0955, 0x12854b35, 0x06861220, 0x240c4358, 0x00140008, 0x205f8318, 0x07b25c37,
0x8e672720, 0x3317210a, 0x03827582, 0xcd85d520, 0x6148122d, 0x48610101, 0x02026049, 0x822a8d60, 0x07de4200, 0x5e67d520, 0x6ba9220a, 0xf3b018c0,
0x000f2c0e, 0x00210019, 0x26220500, 0x50370727, 0x4a080963, 0x26343137, 0x33152327, 0x2307013e, 0x16323335, 0x02010614, 0x5b1c4528, 0x02011223,
0x775a5a78, 0x19770202, 0x5051383e, 0x18753e39, 0x1f1f1a18, 0x0c181a15, 0x5a302956, 0x79020279, 0xd4795a5a, 0xd6013a2f, 0x6c073b01, 0x461c341c,
0xe8200707, 0x96241182, 0x0f000700, 0x31236f82, 0x86370000, 0x2a658557, 0x22032634, 0x07012f26, 0x18262737, 0x2008a0aa, 0x25ec8203, 0x37071714,
0x5870011e, 0x84fe2005, 0x511a3469, 0x3d3f384f, 0x17371f36, 0x060f240f, 0x5f020110, 0x825e4747, 0x824720f3, 0x22132594, 0x27461b5c, 0x02270882,
0x1b6a8b79, 0x82a01b34, 0x3b5e3583, 0x1316ebfe, 0x1123050d, 0x61482622, 0x48630202, 0x7e016148, 0x3025a582, 0x180d572a, 0x2108821b, 0xcb5b7b5a,
0x01962206, 0x28098256, 0x0015000c, 0x35212500, 0x08bb5821, 0x07491720, 0xfe952508, 0x952a01d6, 0x20050f43, 0x22068512, 0x43802aab, 0xc3440da3,
0x00032609, 0x001c0013, 0x234d8225, 0x25152335, 0x7b0e4d6d, 0xc54208ba, 0x6b012408, 0x470001d6, 0x132305d7, 0x5d131818, 0x09200668, 0x22055149,
0x6c2a2aab, 0x13210aa5, 0x07e47e18, 0xfe49aa20, 0x087f4a07, 0x08008024, 0x63411800, 0xfd8c1805, 0x21252108, 0x28053056, 0x013e2117, 0x2634013d,
0x07804b01, 0x4a212521, 0x3323058e, 0x83363221, 0x25db8418, 0x04011919, 0x7782aafe, 0x56010922, 0xfe210582, 0x056142e1, 0x0121148c, 0x05dc4300,
0x090c8023, 0x994c1880, 0xabfe2108, 0x21050a41, 0x15840180, 0x00200484, 0x60050b49, 0x072105f3, 0x110d4900, 0x00003923, 0x06d84825, 0x35231722,
0x085b7618, 0x0b5f4118, 0x17821520, 0x37280f8f, 0x21112335, 0x2b800111, 0xab200083, 0xd6210484, 0x2000862a, 0x82148455, 0xd5802b04, 0x2b80aa01,
0x2a802a80, 0x02832b2b, 0x41180b82, 0xd6230a85, 0x6080fe55, 0xe346053b, 0x00ab2805, 0x000800eb, 0x821a0011, 0x013e2191, 0x2005f441, 0x21089027,
0x1b445501, 0x8e812006, 0x42c02007, 0x1e420c17, 0x42002006, 0x2b22065b, 0x5b886b01, 0x08714118, 0x764c0890, 0x863c8607, 0x078c4406, 0xd757708f,
0x000a230d, 0x716c3700, 0x15233405, 0x016b1723, 0x01d6fe2a, 0x5580552a, 0xc02b1595, 0x41958080, 0x6b220687, 0xf3705601, 0x0f8b4108, 0x35370022,
0x09045218, 0x0b0ed518, 0x95210b97, 0x0568182b, 0x84d6200f, 0x412b2011, 0x86410587, 0x20068606, 0x20148556, 0x25a78200, 0xc0010000, 0x87940001,
0x6f838384, 0x8b821720, 0x4021079b, 0x836a852b, 0x830a826b, 0x802b2388, 0x6c822b2b, 0x00220297, 0x7b850000, 0x80014022, 0x13247b95, 0x37231533,
0x07200382, 0xc020079e, 0x0120679c, 0x8e848682, 0xf2829a8b, 0x00820020, 0x8029f782, 0x00001000, 0x17011e13, 0x08668306, 0x07063526, 0x3e27012e,
0x4232b501, 0xb01a0102, 0x322c1fc0, 0x42010142, 0x42018001, 0xc01f2c32, 0x02011ab0, 0x42323242, 0x260cdf6f, 0x001e000e, 0x84232500, 0x3634233a,
0x49831632, 0x2e0fce63, 0x16808001, 0x2c2c221f, 0x01012d43, 0x60157c15, 0x402b0a1b, 0x0101157c, 0x2c2c432d, 0x65161f22, 0x19250677, 0x132a0112,
0x20638218, 0x08d74607, 0x1400092c, 0x2c002200, 0x41003600, 0x6d824d00, 0x3627262e, 0x17323133, 0x2607010e, 0x37033e27, 0x27287382, 0x36323335,
0x030e1737, 0x9856c082, 0x012b2105, 0x84059f55, 0x173628d2, 0x23261716, 0x82072231, 0x0bb64639, 0x5e014008, 0x1210100e, 0x2406231e, 0x042a3979,
0x1b2c1e14, 0xc61b0d14, 0x2d501a12, 0x222f1e0a, 0x14130617, 0x1320095c, 0x10174626, 0x1e6b2d09, 0x30221634, 0x110a1e11, 0x24032095, 0x06161a20,
0x655a3305, 0x37080a80, 0x02323e37, 0x30362108, 0x19081f01, 0x35091c1e, 0x02a60a45, 0x0a160e08, 0x0a1c1f1e, 0x0ab43616, 0x080b232d, 0x13213924,
0x20142711, 0x3f030e2e, 0x04073629, 0x9a160c0e, 0x0ca04b18, 0x4a000821, 0x17200973, 0x2d28f382, 0x3f003700, 0x54004800, 0x2c119d48, 0x37272613,
0x010e1732, 0x36272207, 0x28eb8237, 0x27061716, 0x36321735, 0x20138337, 0x0b044126, 0x83061721, 0x161728f7, 0x22232617, 0x41362707, 0x6f490b00,
0xe938080b, 0x15190d09, 0x55190418, 0x14061d28, 0x0e131e0c, 0x0c8a1309, 0x07203812, 0x1b092f2a, 0x0d160641, 0x0b11301b, 0x2a4a2106, 0x1822181f,
0x16690c10, 0x12161902, 0x3f240810, 0x490afa5a, 0x32080d90, 0x232ce0fe, 0x26180501, 0x160c1621, 0x2506140a, 0x02740730, 0x100a0601, 0x1f0f2e0f,
0x191f0794, 0x271a0508, 0x0e1b1917, 0x2c02142c, 0x0305261c, 0x5b6c0f12, 0x00210b28, 0x57511800, 0x00182d0c, 0x002c001c, 0x2500003c, 0x17232723,
0x22240382, 0x36342726, 0x213ae883, 0x2715011e, 0x17073337, 0x05073335, 0x36342622, 0x17011e33, 0x26220614, 0x01532e35, 0x20078205, 0x82178327,
0x012a082c, 0x861515d5, 0x90462a30, 0x2a011f0a, 0x131a1e20, 0x0c090001, 0x302a46f0, 0xfe10255b, 0x0c0c09ab, 0x01302409, 0x010c120c, 0x06849918,
0x83364921, 0x60493713, 0x4b4b2bd5, 0x280b090c, 0x09160103, 0x20090c01, 0x20604b4b, 0x2883aa20, 0x83243021, 0x18122221, 0x2106832a, 0x35844936,
0x00600223, 0x05cb7000, 0x8b01e023, 0x05694600, 0x1725002a, 0x27071537, 0x17111735, 0x3009857c, 0x07273717, 0x275d0001, 0x5c288484, 0x5b5b845c,
0x33058484, 0x838383e0, 0x1c194c89, 0x191c4f4f, 0x4d4d4e01, 0x56494956, 0x99240584, 0x00505050, 0x33087f52, 0x00a201c0, 0x00310019, 0x0e142500,
0x012e2302, 0x07010e27, 0x26200582, 0x23059c59, 0x2716023e, 0x227a0d82, 0x0aae4908, 0xb5017408, 0x0a0d0e07, 0x1410250c, 0x12122243, 0x28021305,
0x1335261d, 0x0c203110, 0x11201152, 0x040c1a0a, 0x1710090a, 0x054e110f, 0x4f4e7003, 0x4c02026e, 0x191d0a87, 0x05290408, 0x01042d04, 0x360d0405,
0x2b030124, 0x05240302, 0x0f0abc17, 0x0e1a0809, 0x0b071615, 0x5106070e, 0x01685351, 0x53556401, 0x02000051, 0xfcff0000, 0x9601d801, 0x27000800,
0x4b130000, 0x372007e3, 0x2b08d659, 0x16273616, 0x06230706, 0x013e2726, 0x1882aa82, 0x013e3723, 0x050063b5, 0x3c2e123f, 0x1a151901, 0x272f1d37,
0x5d3b0301, 0x075d0780, 0x3d0b3105, 0x2310031b, 0x013b040d, 0x05f66255, 0x3c01403d, 0x0f2d1c2d, 0x140e0e02, 0xa80c041b, 0x4d21030c, 0x041e342e,
0x01080442, 0x41372b06, 0xf5240583, 0x8b01cb01, 0x27073b42, 0x34262737, 0x011f3236, 0x16270787, 0x2f220614, 0x85170701, 0x21158e07, 0x18871701,
0x5a283485, 0x221a0d0f, 0x375b370d, 0x97200683, 0x9f300b8a, 0x0d061e17, 0x075a0710, 0x1e07110d, 0x1f3c0116, 0x93240f8b, 0x1a220d0f, 0x06823584,
0x0b8a9720, 0x1e161725, 0x820d1107, 0x0d102735, 0x01171e06, 0x0f8b1f7a, 0x340b7b6a, 0x00240019, 0x25000030, 0x2327012e, 0x2b263435, 0x32333501,
0x06c07336, 0x17011e22, 0x2705f541, 0x15173734, 0x13331614, 0x3b0be641, 0x0f15057e, 0x80090c15, 0x010c092a, 0x3019122a, 0x1701013a, 0x025341a8,
0x12196605, 0x0b3bc818, 0x100d4d3d, 0x0c094001, 0x2b090c2b, 0x14091218, 0x3b213753, 0x435d094d, 0x15661214, 0x6a011912, 0x00200bbe, 0x2c0beb6b,
0x0018000b, 0x003d001e, 0x16070100, 0x33778215, 0x27072722, 0x013e0301, 0x07272637, 0x33011d16, 0x3507011e, 0x16261382, 0x06141513, 0x2182012b,
0x332a0482, 0x15062707, 0x2e071716, 0xa0453501, 0x26073605, 0x2020d501, 0x3e5b7802, 0x011b2032, 0x17153c65, 0x5a140101, 0x35b88204, 0x210b108e,
0x1219751c, 0x090c012a, 0x532c2e2a, 0x1e1f0105, 0x29821715, 0x1b42252d, 0x5001111e, 0x5b3e3220, 0x83200278, 0xe2fe3735, 0x2c213b17, 0x06065a25,
0x43100140, 0x0f200a29, 0x12094301, 0xd3822b18, 0x12532d29, 0x1e2b3914, 0x8225421b, 0x1517232c, 0xc2820b1e, 0x0001003c, 0x01d5ff00, 0x009e01c5,
0x37000014, 0x21170436, 0x1537011e, 0x3e272606, 0xc8821701, 0x26332b08, 0x012b3a06, 0xf4fe045b, 0x6c568f04, 0x5d0606c4, 0x031a0207, 0xd9cc0b99,
0x46ed12c5, 0x355a2d22, 0x46577648, 0x192a0201, 0x8f5a256d, 0x82562008, 0x00063809, 0x21070100, 0x21152105, 0x018e0001, 0x01ddfe1c, 0x01d6fe2a,
0x182bd555, 0x2d0a0f52, 0x00050030, 0x2900000d, 0x37173501, 0x04832517, 0x07271529, 0x80fec001, 0x84a6508a, 0x50a62704, 0x602f50d0, 0x04822fb2,
0x2e602f22, 0xc0215f86, 0x29378601, 0x17373533, 0x07111537, 0x08830727, 0x50a64023, 0x8237828a, 0x604f2a05, 0x01d0502f, 0x602e4f01, 0x5f09822f,
0x06200c43, 0x1d336f82, 0x00002100, 0x15231713, 0x05233523, 0x33353327, 0x75053315, 0x8263082e, 0x15172a05, 0x56953533, 0x01402b40, 0x2105832b,
0x6618d5fe, 0x122408c9, 0x559501d6, 0x80260085, 0x12801219, 0x04821818, 0x802b1923, 0x22668280, 0x82000200, 0xd6012300, 0xd7826b01, 0x82001521,
0x352724ff, 0x18353717, 0x200f9340, 0x210083ab, 0x6918aafe, 0x012708e4, 0x2b6a6a15, 0x642b6b6b, 0x4f871134, 0x0300b324, 0xb3831200, 0x17273722,
0x25089160, 0x17013f36, 0x4b825516, 0x8d53d520, 0x13012405, 0x8313c1c1, 0x6b6b214b, 0x2706576a, 0x780c19d5, 0x00000c78, 0x6606eb4a, 0x122205ff,
0xfd661700, 0x21372612, 0x07352111, 0x0bc76627, 0xfeabbd27, 0xab5601aa, 0x109c66ab, 0xff6b9526, 0x6a6acd00, 0x02305787, 0x00c00100, 0x002e0016,
0x01000037, 0x1517011e, 0x1805b856, 0x2b079741, 0x013e3533, 0x17152707, 0x33171637, 0x3524bb86, 0x37363411, 0x17330c82, 0x07010e37, 0x34353315,
0x17b50126, 0x0c09011e, 0x836b090c, 0x1e012804, 0x59abab9f, 0x85551611, 0x121832d8, 0x0d7104eb, 0x12400112, 0x1e01c001, 0x090c0b16, 0x82258356,
0x160b2904, 0x2b6bea1e, 0x010c376a, 0x6b05ee54, 0x562a0565, 0x01ab0a0b, 0x0b0b0d12, 0x3747120d, 0x0096260a, 0x000f0006, 0x063f4418, 0x37363226,
0x27011e23, 0x08508d18, 0xf5490887, 0x05324805, 0x0c174118, 0x3a260027, 0x3a0dda0d, 0x05a16825, 0x9945a320, 0x493d2105, 0x09d1bd18, 0x00494920,
0x294b250a, 0x8a292121, 0x0e527618, 0xf04fc120, 0x7e01230a, 0x31497902, 0x0b474408, 0x1d00162f, 0x36002900, 0x0e250000, 0x27262201, 0x30058523,
0x011e1506, 0x37013e17, 0x0e012f34, 0x2e210701, 0x06e84401, 0x1e211282, 0x82b28301, 0x05ee48b0, 0x0295012e, 0x01232f30, 0x2f230120, 0x06100230,
0x06297285, 0x174d30a5, 0x4d172801, 0x0a6149a5, 0x2f1cd331, 0x20071e0e, 0x1e072028, 0x17eb2f0e, 0x83171e1e, 0x16152103, 0x1628d285, 0x2e018015,
0xaa2e2727, 0xcb2cd58a, 0x1e111501, 0x0b0f0f0b, 0x0015111e, 0x30068f48, 0x009601e0, 0x00240018, 0x0032002b, 0x1300003f, 0x24a68216, 0x36171632,
0x20a78237, 0x24a58616, 0x012e3736, 0xf7651805, 0x1427250a, 0x3d262206, 0x20069648, 0x2ebe8c37, 0x1c3b1e20, 0x1c454c45, 0x18011e3b, 0x85012316,
0x230125ae, 0x8a011816, 0x240a3d41, 0x131a13c9, 0x210382c0, 0xc38b6040, 0x1d93012e, 0x19191711, 0x1a1d1117, 0x4334142e, 0x4324b885, 0xb92e1434,
0x260aa541, 0x12120e74, 0x8420200e, 0x92bb2005, 0x82d620cf, 0x000b24cf, 0x41200017, 0xb68a0685, 0x0c64bd18, 0x8205fa6a, 0x865318e9, 0x21c68c07,
0xad8aab01, 0x74412c20, 0x47fe200a, 0x962005ab, 0x20061a42, 0x18bf8b6a, 0x82094356, 0x0a76413c, 0x91182620, 0xb3200c03, 0x0520b48b, 0x8708174c,
0x6b2d20b3, 0x2e210bb5, 0x5f6e1801, 0x07ad520c, 0x2226c882, 0x32363426, 0xc5180716, 0xb9871345, 0x76859420, 0xaa86a820, 0x01aa1523, 0x20c88b95,
0x20e18a82, 0x202386be, 0x2632851f, 0x002a2a6e, 0x82060000, 0x01e83b9b, 0x009601d2, 0x0045003a, 0x005c0051, 0x007d0066, 0x0e221300, 0x17060701,
0x06850706, 0x82010f21, 0x010e3107, 0x17161716, 0x1617011e, 0x013e3736, 0x27263637, 0x06820183, 0x31012e23, 0x06b84936, 0x17022e25, 0x821e3332,
0x012e342d, 0x1e23013e, 0x31070602, 0x36012e06, 0x23221737, 0x821e010e, 0x012e2213, 0x835a8217, 0x23262309, 0x4d823207, 0x4c833220, 0x83161721,
0x26222169, 0x78084582, 0x07f23637, 0x0a081d13, 0x0a051306, 0x05010218, 0x0606060b, 0x090b020d, 0x0f090903, 0x27204518, 0x2835244d, 0x03060401,
0x090d1207, 0x0d090804, 0x06040914, 0x1f061622, 0x0204070a, 0x1801035e, 0x2f23051b, 0x8720061c, 0x1c031e16, 0x04221718, 0x0106171d, 0x020b0901,
0x020b120e, 0x0c08930c, 0x0d130b01, 0x9c0a0b01, 0x1e130809, 0x07131e10, 0x0807060e, 0x3823080c, 0x30058223, 0x95010507, 0x1d14210d, 0x04030415,
0x1011181d, 0x08008203, 0x0d03093b, 0x14102522, 0x0516170f, 0x180e0606, 0x23170c37, 0x080a1006, 0x09180f02, 0x1311070d, 0x01031216, 0x1b0b0c09,
0x2603a20a, 0x24061e32, 0x1f011e31, 0x01022431, 0x0323331f, 0x27748224, 0x110e020a, 0x120b010b, 0x13357382, 0x0402670d, 0x01040202, 0x1d060302,
0x1414090d, 0x061d0d09, 0x0cfb4403, 0x6d23d342, 0xdc4208d0, 0x05d46308, 0x07062225, 0x42013e27, 0x882018d3, 0x2005f541, 0x05da4268, 0xd2422b20,
0x85062023, 0x8520202b, 0x156e2a39, 0x0e0c1f11, 0x111f0c0e, 0x08ab4715, 0x24058743, 0x00230019, 0x0dd14231, 0x7b260721, 0x1427055f, 0x22012e07,
0x83231706, 0x233524ab, 0x83373335, 0x7c1c880e, 0xc0330cf3, 0x24180106, 0x06060118, 0xb4131813, 0x18241915, 0x8310aa40, 0x8506200b, 0x0cd74217,
0x0c0abe2d, 0x12181812, 0x0c0a0a0c, 0x82205f0c, 0x2a2b2100, 0x0d820982, 0x9e821584, 0x84010021, 0x01eb3504, 0x001e006b, 0x33151300, 0x15072315,
0x15233523, 0x15333533, 0x8206eb63, 0x2711820d, 0x95353335, 0x2b2a4040, 0x40300082, 0x402bab2a, 0x40802b40, 0x2b2b6b01, 0xab40402a, 0x56260c82,
0x5540d540, 0x33482b2b, 0x204f8306, 0x051d6306, 0x27231525, 0x9d013d23, 0xaaab2358, 0x51822b6a, 0xeb245c8d, 0x966a2bab, 0x962d5f96, 0x03001601,
0x00000700, 0x21352125, 0x25038215, 0xd6fe9501, 0x03832a01, 0xaa2aeb23, 0x0823482a, 0x8001c028, 0x13000300, 0x29821700, 0x0124c682, 0x11151632,
0x0aa35918, 0x13830520, 0x270d0f55, 0x6bd60001, 0x15012a2a, 0x24096774, 0x2a951813, 0x2cd7832a, 0xd101f1ff, 0x0f008101, 0x00001600, 0xc9ba1801,
0x0326080e, 0x3f321617, 0x5a012701, 0xc40d0d6a, 0x4b1b441a, 0x0de20d0d, 0x0d4cf322, 0x694b0d22, 0x0e697401, 0x19c40d22, 0x06824b19, 0xfe0de228,
0x0c0c4cf3, 0x8418694c, 0x6b240963, 0x22001900, 0x232d5382, 0x012e2301, 0x33373634, 0x013e3537, 0x27ac823b, 0x3337011d, 0x0614011e, 0x33084160,
0xff17ab01, 0x18123f00, 0x241c1218, 0x15090c01, 0x3a9c0c09, 0xfe210d82, 0x05c747f8, 0xff150130, 0x24180100, 0x5c240118, 0x090c0c09, 0x0c839c1c,
0x95183f20, 0x022008ff, 0x25065f45, 0x00130080, 0x65180023, 0x23280d8b, 0x23152335, 0x21033315, 0x18054770, 0x53075079, 0x2a2d057b, 0x2a558055,
0x15460138, 0xfe151d1d, 0x210582ba, 0x00834080, 0x4040c02a, 0x014001c0, 0xd0fe161c, 0x15251382, 0x1c163001, 0x051b4f00, 0x80015622, 0x0b250982,
0x00000f00, 0x066d5e13, 0x352a5e82, 0x3533011d, 0xaa6a2aeb, 0x2082562a, 0x1555552a, 0x56569696, 0x00d5d5ab, 0x37850082, 0x3784ab20, 0x14000c22,
0x33233782, 0x54272315, 0x2c080528, 0x07012723, 0x35231527, 0x2aeb3727, 0x562a402a, 0x0166442a, 0x56651b00, 0x80011baa, 0x56564055, 0xcafe6796,
0xba65651b, 0x00001bab, 0x26e38201, 0x01a601fe, 0x82630081, 0x17363fe1, 0x17323733, 0x3637011e, 0x013e3526, 0x07160627, 0x0607010e, 0x3f262726,
0x37343501, 0x1a823616, 0x2f36172a, 0x36013d01, 0x14062734, 0x23201c82, 0x34251c83, 0x33013e37, 0x05c24532, 0x82012f21, 0x06262837, 0x022f0607,
0x85060722, 0x14062113, 0x3c084785, 0x37161722, 0x391c198f, 0x0a181d3b, 0x02060712, 0x0b180b06, 0x30090502, 0x0a3c1a1b, 0x05010107, 0x0c16411e,
0x020b0e03, 0x090e0203, 0x060e040a, 0x02143917, 0x10260b02, 0x040a411d, 0x086c8201, 0x04010120, 0x050d0601, 0x10794234, 0x1d010509, 0x01060309,
0x03030202, 0x0c020701, 0x0c0a0122, 0x00820105, 0x05024108, 0x0b140805, 0x0b062715, 0x0e0f0d15, 0x0f040302, 0x2524130d, 0x08010f12, 0x0619090c,
0x14190c03, 0x01180e16, 0x0309180a, 0x04020203, 0x0a1b421b, 0x090d0804, 0x12020216, 0x070e0a22, 0x06010207, 0x07324482, 0x0308020f, 0x42180915,
0x08174347, 0x13080213, 0x73410106, 0x01e62d07, 0x009601b7, 0x003e0008, 0x25000042, 0x30057551, 0x2e372627, 0x34012b01, 0x06222726, 0x23071517,
0x28fe8222, 0x36161716, 0x011e3527, 0x33028217, 0x07061415, 0x36022e23, 0x26351733, 0x011e0706, 0x36163337, 0x79083182, 0x15372307, 0x0b084201,
0x1901180d, 0x2a074a17, 0x1d1b3311, 0x12020a1c, 0x02140152, 0x3b321e01, 0x20010226, 0x011d1b1b, 0x012d1007, 0x0609010c, 0x043b0510, 0x2f162801,
0x02064905, 0x5645fc19, 0x021702c8, 0x04022002, 0x110a9504, 0x14021a02, 0x18123c0c, 0x0d721f18, 0x30061e07, 0x01032703, 0x02271118, 0x0f010215,
0x21010917, 0x26251002, 0x3d05011c, 0x1e457778, 0xcc824658, 0x82000221, 0x16012300, 0x17446001, 0x33132905, 0x15172315, 0x2aeb3523, 0x01250082,
0x2b2aeb60, 0x0bb75e2b, 0x20001734, 0x21010000, 0x011d0622, 0x11213533, 0x15233521, 0x60181614, 0x2d0807d5, 0x27371703, 0x15231707, 0xfe950133,
0x2b1813d6, 0xd6fe2a01, 0x0112192b, 0x1919122a, 0x6b6b1ed0, 0xcece371e, 0x13188001, 0xd6fe5555, 0x14825555, 0x13241a82, 0x1ff4fe18, 0x38211a82,
0x458b882a, 0x1e250503, 0x27250000, 0x284c8215, 0x3e110515, 0x1e213701, 0x83968301, 0x15332172, 0x2405fc4a, 0xc056eb01, 0x096f70c0, 0x00ff2b23,
0x716a1801, 0x55c03308, 0x2b402a40, 0x18120001, 0x12180101, 0x00ff4040, 0x0b844040, 0x2006034d, 0x22ef82eb, 0x84140008, 0x07c15ccd, 0x2c19f34b,
0x3624241b, 0x2d1b2424, 0x3d01013d, 0x2505852d, 0x1d1d7d51, 0x0584517d, 0x79000121, 0xaa20064e, 0x23821d88, 0x58010a26, 0x01584747, 0x6b610584,
0x01eb3609, 0x00050080, 0x00220015, 0x13000032, 0x012e3517, 0x06170727, 0x22dc8215, 0x55173732, 0x27240598, 0x0706011f, 0x37221085, 0x08821701,
0x17071424, 0x28823736, 0x07822220, 0x0144fc27, 0x215f1b24, 0x24058202, 0x16210707, 0x25688219, 0x0a306b01, 0x8c821a36, 0x482b3226, 0xba86fe1b,
0x08231282, 0x8219313e, 0x282d2e10, 0x0001122e, 0x241b0343, 0x07211101, 0x22068207, 0x830b2102, 0x8c1925c2, 0x412a0931, 0x12259d82, 0x7a011b47,
0x24b68255, 0x293e1215, 0x2210823c, 0x44072e0f, 0xd3310853, 0x09009301, 0x16001100, 0x07250000, 0x27010f27, 0x2302833f, 0x14163236, 0x03210b82,
0x080d8207, 0x2e9d0124, 0x2062a41e, 0x2d1ea527, 0x27331360, 0xc65a2913, 0x1e9e3517, 0xa51e2dc6, 0xa4622027, 0x13232e1e, 0x15823327, 0x35fefe25,
0x421e9e17, 0xc1240747, 0x03008101, 0x37275583, 0x37173727, 0x82222627, 0x1707244e, 0x83331507, 0x3637380d, 0xac299434, 0x06327a29, 0x29430612,
0x65be1e1e, 0x291e1ebf, 0x822b0643, 0x32712214, 0x22138406, 0x84be65bf, 0x00122113, 0x01330082, 0xeaff0000, 0x96016b01, 0x00001300, 0x0e231501,
0x67011d01, 0x353e0855, 0x0137013e, 0x0a0b2b6b, 0x40564040, 0x25300140, 0x01559501, 0x56350c13, 0x5556aaaa, 0x3b823024, 0x56020021, 0x23200a5f,
0x32115356, 0x06222305, 0x15231507, 0x35331533, 0x35233533, 0x823b3634, 0x09df636c, 0x3527012d, 0x2b012a20, 0x4040402b, 0x552b090c, 0x2b2a0dec,
0x40361f2b, 0x2b409595, 0xfb840c09, 0xd620a782, 0x1022a782, 0xcb481600, 0x16142605, 0x3137011f, 0x053e5d16, 0x07270322, 0x012aff82, 0x02795a00,
0x49012529, 0x0882201d, 0x44790232, 0x37736c35, 0x02950168, 0x4f2e546f, 0x08284c1c, 0x54280882, 0x38fafe6f, 0x35357838, 0x081f7018, 0x2f599620,
0x001e230a, 0xab823700, 0x3d462720, 0xe74d1806, 0x11052307, 0x01823517, 0x1733373a, 0x56565515, 0x2a5656d6, 0xfe565656, 0x6b6b6a80, 0x40154015,
0x2a552b2b, 0x09539418, 0x2a015523, 0x22008355, 0x8bd5d5d5, 0x000825b7, 0x25000034, 0x080ab354, 0x010e072a, 0x36171607, 0x010e1716, 0x27012e27,
0x06160706, 0x37012e07, 0x2637013e, 0x27260627, 0x1e17013e, 0x37361701, 0x00013626, 0x3a05255d, 0x27114602, 0x10031010, 0x03633e0a, 0x09164b04,
0x0d070f1d, 0x463a1920, 0x850f2710, 0x04022b15, 0x1d08174a, 0x200d0610, 0x395dd51a, 0x88c02005, 0x24278711, 0x623e0b0f, 0x83158403, 0x391a243d,
0x86281146, 0x06cb413d, 0x4001cb22, 0x05340982, 0x11010000, 0x27370537, 0xfeb61501, 0x01b6b68a, 0x8000ff40, 0x00200082, 0x06200082, 0x00210382,
0x05f35c01, 0x15001124, 0x8f431900, 0x15333006, 0x33350723, 0x1d011e15, 0x23152301, 0x41352335, 0x3720073d, 0xa918f587, 0xeb2e0f4c, 0xea406a6a,
0xea40241c, 0x96964016, 0xe6852a96, 0x16b7fe22, 0x09350882, 0x18181216, 0x152b4001, 0x24018080, 0x4040801b, 0x555555c0, 0x850382d5, 0x2b2808d8,
0x0996090c, 0x6a12190c, 0x03001912, 0xd5ff0000, 0xab01d701, 0x28000400, 0x00003c00, 0x27152113, 0x3233010f, 0x011e3736, 0x3b290484, 0x26363701,
0x2e35012f, 0x5b851801, 0x15072907, 0x17010e07, 0x06272205, 0x3e080282, 0x3315012b, 0x32163736, 0x33171637, 0x00018035, 0x012c8080, 0x10102c1a,
0x102b342b, 0x011a2c10, 0x09080328, 0x1218011b, 0x12408040, 0x091b0118, 0x7f010308, 0x5a28282e, 0x2a2e2828, 0x82292d2a, 0x2d292a08, 0x5440012a,
0x18c12929, 0x82b68212, 0x098e2503, 0x63090210, 0x40212d82, 0x29388240, 0x10020963, 0x1b1cb909, 0x6a821c1b, 0x15151525, 0x82002b01, 0x18022000,
0x2a08b39b, 0x00100002, 0x17350100, 0x18062225, 0x2509979a, 0x76150127, 0x4282f5fe, 0x82071276, 0x75752199, 0x21093466, 0x9b4c8000, 0x01ab2308,
0x43830096, 0x26065161, 0x012f3301, 0x77111733, 0x2727050b, 0x13013e11, 0x82233533, 0x820384da, 0x95762355, 0x265380ab, 0x2b272e09, 0x2a2a562b,
0x012b2b55, 0x80207500, 0x050c7cff, 0x1812562b, 0x808080fe, 0x0056abab, 0x07234900, 0x16206385, 0x5f90a982, 0x07273724, 0x59900727, 0x19657125,
0x8f19224c, 0x66a12556, 0x19224d1e, 0x87082745, 0x932220bb, 0x012e2257, 0x83511827, 0x3e332408, 0x90263401, 0x07e13063, 0x26171e2a, 0x011f190a,
0x8b1b2401, 0x8f1b1e16, 0x1ceb2e6e, 0x14170123, 0x1b1a2303, 0x1e010124, 0xeb75182c, 0x20778708, 0x2977931b, 0x33152335, 0x17070616, 0x7090013e,
0x3156bd28, 0x18241906, 0x68902123, 0x1f555527, 0x16121529, 0x21da8246, 0xdb410400, 0x0014220c, 0x23659618, 0x15213525, 0xd2256290, 0xff0001c0,
0x225f8f00, 0x732b2bab, 0x836105eb, 0x0007230b, 0xc182000b, 0x35232524, 0x5f603733, 0x102c5d06, 0x96962b24, 0x0082d640, 0x275d2a20, 0x2049820a,
0x204f822a, 0x5f861818, 0x0ae7410a, 0x10000d27, 0x00002c00, 0x0c444213, 0x33151723, 0x081e6f07, 0x83173321, 0x2335230b, 0x12821737, 0x27233525,
0x42803337, 0xa72b0b53, 0x16562076, 0x56162b2b, 0x82404016, 0x21098704, 0x5f429501, 0x7520320a, 0x24242a2b, 0x35362a2a, 0x24242b2b, 0x36352b2b,
0x0b2b4900, 0x2729d786, 0x27372307, 0x33371733, 0x26d79007, 0x2f2f2b5a, 0x8445452b, 0x8b802005, 0x515123db, 0x03826b6b, 0x420fff5d, 0xdf8309c7,
0xdf821720, 0x2a0c6e43, 0x07231707, 0x07271533, 0x43803727, 0x16280b74, 0x96567676, 0x3d3d3c2d, 0x2a0aaf69, 0x75208000, 0x3d2e9745, 0x43003c3d,
0x08310cc7, 0x00002400, 0x32011e37, 0x22263436, 0x27351706, 0x22618823, 0x49062737, 0x06220921, 0xf448c007, 0x80ea2206, 0x246c87ab, 0x1a5e0b0e,
0x09244921, 0x1cab112a, 0x24372424, 0x80f7a824, 0x2305c055, 0x01115f08, 0x08a08018, 0x001a2122, 0x220e6342, 0x421e0015, 0x21241363, 0x012f0735,
0x08534418, 0x43761521, 0x12250dfb, 0x2b550001, 0x05b06755, 0x240f6f42, 0x2a55ab80, 0x0507636b, 0x410b0344, 0x1725183b, 0x37231537, 0x0f3b4127,
0x2d3d3f25, 0x413c2d97, 0x2f260e3b, 0x2d962d3d, 0xa750003c, 0x01ab2308, 0x57830096, 0x26001d22, 0x28139541, 0x15171632, 0x35231533, 0x07c36d33,
0x34353323, 0x2d688f26, 0x01241b15, 0x0115aa15, 0x0c091b24, 0x708e0c2a, 0x1c242b30, 0x15555515, 0x012a251b, 0x1515090c, 0x7a820c09, 0x0003002d,
0x01c0ff00, 0x00c001d6, 0x6b100002, 0x2e080507, 0x1733012f, 0x07061411, 0x35012e21, 0x07363411, 0x21152111, 0x11352622, 0x75754001, 0x1880aa95,
0x1300ff12, 0x01441918, 0x12aafe56, 0x452b0118, 0x012f062f, 0x01121801, 0x55191255, 0x192b80fe, 0x44800112, 0x994110db, 0x010e2614, 0x36321614,
0x21d58237, 0xd7441523, 0x12522911, 0x18241818, 0x09564001, 0x210f9741, 0x188201d6, 0x6b121826, 0x0006702a, 0x0a77cb18, 0x13000d25, 0x42010000,
0x36280970, 0x21031137, 0x33153311, 0x083bf818, 0x83000121, 0x00ff23b3, 0x1d416b95, 0x00ff240b, 0x6c6b5601, 0xc020061b, 0x28064746, 0x00460019,
0x00570051, 0x0851425f, 0x3309bd50, 0x011f1617, 0x37010f06, 0x013e1736, 0x07232627, 0x37272627, 0x2b210983, 0x05af4d01, 0x0f063135, 0x07010e02,
0x32031f06, 0x36013f36, 0x32011e37, 0x82141727, 0x36273d1d, 0x07163233, 0x013e0706, 0x3f26013f, 0x0f161701, 0x752b0101, 0x80ab9675, 0x00ff1219,
0x7c3bee82, 0x1d09130d, 0x0e0b032a, 0x04020592, 0x131c2709, 0x06010e14, 0x07060a04, 0x820a0605, 0x062d0808, 0x13141007, 0x01011413, 0x090a0102,
0x03141f0d, 0x23113620, 0x0202031a, 0x02181005, 0xc3121602, 0x0e010f15, 0x05074b0b, 0x03050302, 0x0e354104, 0x1ede4308, 0x0f050710, 0x3a1c1601,
0x0f050f06, 0x25110d02, 0x0b2c1603, 0x15060a05, 0x221d131e, 0x180d0a26, 0x01050609, 0x221f0207, 0x08060a02, 0x03021508, 0x2106020b, 0x13060426,
0x0e1d9a0b, 0x10070103, 0xf7480015, 0x01c03205, 0x000a0080, 0x004c003c, 0x005e0057, 0x37000066, 0x2bd48206, 0x26373637, 0x06172627, 0x06272622,
0x01288682, 0x022f2223, 0x013e3726, 0x36201782, 0x31220382, 0x0c82012e, 0x32013b2d, 0x07061617, 0x16171615, 0x83333617, 0x0fd3440b, 0x822e0721,
0x16072139, 0x35202882, 0x33085482, 0x3607010e, 0x2f36023f, 0xf4060701, 0x03070f07, 0x051d2a02, 0x057d1304, 0x3610231b, 0x1f140420, 0x0a04050d,
0x02010201, 0x0d061313, 0x080f0b0a, 0x02060506, 0x082fc682, 0x06040a05, 0x0a08150d, 0x09270d0f, 0x45110104, 0x24080a1a, 0x16110132, 0x10180302,
0x07c50205, 0x010d0b04, 0x0401560e, 0x01030604, 0x1c18d706, 0x0f010a0c, 0x10040305, 0x08ff8234, 0x020a0625, 0x07021f22, 0x09060501, 0x06040d18,
0x1d221511, 0x06151e13, 0x2c0b050a, 0x11250316, 0x0f020607, 0x46f50f05, 0xec340b3d, 0x0b020602, 0x02041d03, 0x0406130b, 0x111501ba, 0x0e030106,
0x260ba344, 0x0010000d, 0x46280020, 0x15361355, 0x15231533, 0x35233533, 0x34013e33, 0x1e152326, 0x2b061401, 0x51463501, 0x15e02e0e, 0x2a155515,
0x1c24241c, 0x090c0c09, 0x104b462a, 0x1616802f, 0x3724012a, 0x0c012a24, 0x002b0c12, 0x97451800, 0x000e360a, 0x0026001e, 0x32333700, 0x27363736,
0x012e2736, 0x3315012b, 0x0e965313, 0x33351722, 0x232f7983, 0x1a1835d1, 0x0101140a, 0x181a0a14, 0x68c4265b, 0x058305b4, 0x15316630, 0xa2141416,
0x21110909, 0x0a09141e, 0x467e01d6, 0x4dc0250c, 0x14211701, 0x7e0cc346, 0x15210cd3, 0x09eb4f11, 0x54950121, 0x55180537, 0x6b220853, 0x8b476baa,
0x00142218, 0x0fd94317, 0x2305f672, 0x17352717, 0x250ddd43, 0x4056569f, 0xde437637, 0x2af2270b, 0x9d402b2b, 0x93447575, 0x15914810, 0x15225882,
0x91483533, 0x40fd2310, 0x51439696, 0x96fe260e, 0x802f2f80, 0x24578c2f, 0x0010000d, 0x13e14125, 0x37331722, 0x33290282, 0x33152335, 0x07232707,
0x41098327, 0xf6230ede, 0x82202b20, 0x55152902, 0x2a181315, 0x55151318, 0x2a0ee041, 0x40409655, 0x5a2a2a96, 0x555a2f2f, 0x00340517, 0x01c00100,
0x000c0080, 0x2500001c, 0x23072723, 0x37173327, 0x54430283, 0x4b012e0f, 0x202b2b20, 0x2a212433, 0x24212a1e, 0x0a0e4317, 0xa0a05524, 0x0082a0d6,
0x7b415520, 0x4904200c, 0x16200cbb, 0x514b5f83, 0x37172a11, 0x17273727, 0x07170727, 0x102d4117, 0x1f4f152b, 0x9f1f3232, 0x31311e50, 0x0f35411e,
0x1e4fe02d, 0x501e3231, 0x31321e50, 0x7100001e, 0xab3e0893, 0x21001d00, 0x29002500, 0x31002d00, 0x00003500, 0x34353313, 0x1e333736, 0x33151701,
0x04821632, 0x15231131, 0x012b010e, 0x11352622, 0x15053634, 0x86233533, 0x211b8203, 0x0b863335, 0x204b2408, 0x075e070a, 0x0d200109, 0xaaaa0112,
0xc00d1201, 0x0112120e, 0x2a802b43, 0x2a2b2b80, 0x2bd62b2b, 0x821a8001, 0x0901291f, 0x0e121a07, 0x0ac0fe0b, 0x0e241f82, 0x120e5501, 0x2006c768,
0x055c6ac0, 0x00229783, 0x17550100, 0x00072105, 0x2007537e, 0x1813822b, 0x6a0a296c, 0x13220bb5, 0xb0572315, 0x33112105, 0x91828d84, 0x2107bf6a,
0x5485d52b, 0xaa2bd522, 0x04820883, 0x84000121, 0x84802091, 0x820c8205, 0x82fe2016, 0x822b20a0, 0x0613419d, 0xc001d524, 0x77868001, 0x24001f25,
0x82002800, 0x3713217b, 0x24059055, 0x11231523, 0x206d8205, 0x21038317, 0x70862723, 0x012f1126, 0x15232735, 0x11281483, 0x1c152715, 0x501b8f01,
0x7c846b83, 0x1ad61922, 0x2b2d0b82, 0x2b2506d5, 0x6501192b, 0x1c71fe1b, 0x210a8250, 0x04822501, 0x2a2a5522, 0xfe27a284, 0x25442bbc, 0x82562a05,
0x192b2286, 0x25ea8219, 0xffff0000, 0x8782ac01, 0x00153e08, 0x16152500, 0x012f2206, 0x31353726, 0x013e2627, 0x1e322133, 0x01010f01, 0x110e012b,
0x01082a07, 0x0d03067b, 0x072a0107, 0x7b06030d, 0x0e0aa8c0, 0x0a082b06, 0x11089d7d, 0x08110a0a, 0x0513449d, 0x13214b86, 0x205a8200, 0x8a4c8725,
0x1727214b, 0x3722bb82, 0x51824001, 0x07560624, 0x51896601, 0x55aa6625, 0x8218552a, 0x08562454, 0x85826e09, 0x7a822654, 0xa12b756c, 0x215a826b,
0xa7820200, 0xf001e528, 0x0b008001, 0xa9822100, 0x18273721, 0x88090450, 0x8a2320b5, 0x3b012769, 0x3c1e3c3c, 0x05821e3d, 0x593c3d22, 0x2b266f83,
0x7b010208, 0xc2820205, 0x0d072b26, 0x047b0502, 0x3b211a82, 0x2220833b, 0x92da3c3c, 0x030021ce, 0x1f22738a, 0x758e2500, 0x3a23dd99, 0x821f3d3d,
0x2802845b, 0x110e0244, 0x01085507, 0x24788966, 0x2b54a967, 0x207c8b54, 0x82f59632, 0x0000257f, 0x4001c001, 0x07208982, 0x2008f782, 0x35213700,
0x21152721, 0x35330335, 0x00018023, 0x014000ff, 0x5656eb80, 0x2b6b2aab, 0x2b00ff2b, 0x082b4f00, 0x9601c32c, 0x29001200, 0x5b004700, 0x43829700,
0x2e272234, 0x07222301, 0x36372606, 0x17163233, 0x05060716, 0x0c822722, 0x32363723, 0x240e8217, 0x27262706, 0x221e8226, 0x83130607, 0x26272929,
0x37013e35, 0x0617011e, 0x22240d83, 0x17140706, 0x34820c82, 0x0f833720, 0x32363523, 0x2a0e8315, 0x36373233, 0x07230616, 0x82012e23, 0x3435225d,
0x20588236, 0x05b47b1e, 0x010e2726, 0x06150607, 0x35215985, 0x080f7034, 0x35262228, 0x0622012e, 0xeb571415, 0x014c0806, 0x1e02037c, 0x383f2039,
0x3c080a08, 0x203f2245, 0xfe030408, 0x070304c9, 0x34302005, 0x20303474, 0x1d071005, 0x2e6b2f2b, 0x80031d2c, 0x130e0304, 0x4402170a, 0x02443333,
0x01011401, 0x01385438, 0x0c120a13, 0x95040606, 0x1b181c26, 0x58821382, 0x0820bf08, 0x13030a0e, 0x19033407, 0x17171125, 0x01253825, 0x19251901,
0x42570201, 0x0c134c2e, 0x03090601, 0x0f100413, 0x4b345616, 0x25010263, 0x19012637, 0x14141926, 0x0917200f, 0x01610104, 0x041e0e10, 0x0f200611,
0x06080611, 0x08060270, 0x1a1a192d, 0x0c082d18, 0x18162907, 0x04291618, 0x0e03fefe, 0x34281318, 0x01014131, 0x0a0a3141, 0x28353528, 0x1612232f,
0x0308070c, 0x31101328, 0x170a0a1c, 0x020f0e27, 0x2c051301, 0x16111507, 0x231b2039, 0x18111b23, 0x523e1118, 0x282d0102, 0x270c221a, 0x0907091a,
0x1e272a2a, 0x0201342e, 0x241a475f, 0x17121a24, 0x311b1217, 0x06120f14, 0xeb421104, 0x01fd2f07, 0x00800199, 0x00420029, 0x27262500, 0x0282012e,
0x0706372a, 0x1617010e, 0x27061415, 0x37201183, 0x142d0c82, 0x1e171617, 0x3e373602, 0x26012f01, 0x06805927, 0x37013e23, 0x200e8236, 0x05644137,
0x90082e82, 0x07760107, 0x0a170a09, 0x1e0f0918, 0x131b2917, 0x02060f01, 0x0c051201, 0x05021a1b, 0x36110b05, 0x1d1a4342, 0x06030f12, 0x0d04410b,
0x0b201206, 0x02041613, 0x09050503, 0x1c0e0705, 0x0a0a0205, 0x090909d1, 0x43180a10, 0x2313091f, 0x04033467, 0x01060608, 0x1b3b1802, 0x10244217,
0x1c121310, 0x180f0924, 0x05264c1b, 0x04860c0f, 0x0c060207, 0x0f18050b, 0x16180b0d, 0x0f0a0d16, 0x05041518, 0x00091a0d, 0xff000002, 0x01c001f6,
0x00320084, 0x20d3828a, 0x83d48434, 0x07062b04, 0x23342735, 0x06012f26, 0xe184010f, 0x0615332e, 0x07060715, 0x07010e15, 0x06333632, 0xe082c683,
0x1627372d, 0x012e011f, 0x1f011e07, 0x82171601, 0x010e221b, 0x27318215, 0x06020f22, 0x27262227, 0x26213f82, 0x05265527, 0x06262723, 0x300f8407,
0x3736023f, 0x22013f32, 0x3536013f, 0x2723013e, 0x24248306, 0x37363735, 0x326a8426, 0x3e23012e, 0x03c00101, 0x121a0501, 0x61230e08, 0x83022159,
0x05250800, 0x01070301, 0x02030302, 0x02040907, 0x01010203, 0x15080102, 0x3b74281a, 0xa0014439, 0x06052431, 0x18030711, 0x081f8203, 0x010d0128,
0x04051001, 0x14080206, 0x05080a14, 0x0803050b, 0x1806090d, 0x0102340c, 0x1c06040a, 0x0a141509, 0x04030102, 0x4c82090b, 0x0b02042d, 0x05020208,
0x06051909, 0x82020204, 0x0452082d, 0x09090416, 0x090c0107, 0x07c6491d, 0x2f1c0611, 0x1d090a13, 0x02221d11, 0x02060104, 0x0704020d, 0x13040a07,
0x02060702, 0x060a0813, 0x02030903, 0x2f21512a, 0x61161521, 0x200ba93e, 0x030a0607, 0x0e031f06, 0x3506030d, 0x02230409, 0x0304020b, 0xaa820306,
0x82020321, 0x0207375f, 0x07050715, 0x04040103, 0x11070607, 0x0b030302, 0x0402030a, 0x5a820506, 0x03021022, 0x0229da82, 0x030f1402, 0x07050506,
0x24ef8206, 0x02001518, 0x08008200, 0x01d60120, 0x00280056, 0x25000031, 0x27012e37, 0x010e0706, 0x34363227, 0x16362726, 0x3e171617, 0x08833701,
0x2105a35a, 0x1c82010e, 0xf2540282, 0x01290808, 0x52351000, 0x0b06030e, 0x0f111527, 0x2715110f, 0x0b03060b, 0x20232637, 0x1712163c, 0x01403009,
0x0d314301, 0x160d0b1a, 0x05fd5460, 0x40152808, 0x0f1d2804, 0x0108120b, 0x012a3f2b, 0x0b120801, 0x09231710, 0x0a050146, 0x0b121f09, 0x2f1e1e2f,
0x091e120b, 0x55c0040b, 0x9e840507, 0x22080484, 0x006b01ab, 0x01000009, 0x33112327, 0x33173335, 0x08330135, 0x08782ac0, 0x2b400196, 0x2a9595fe,
0x8a0400d5, 0x05694827, 0x33010027, 0x23272315, 0x57328215, 0x232206a0, 0xc6472715, 0x06934b05, 0x17823320, 0x35271735, 0x013b1533, 0x33012315,
0x78089678, 0x2b2ac02a, 0x82162a2b, 0x822b2004, 0x162a2200, 0x280b8240, 0xd540012a, 0x6b01952a, 0x201982d6, 0x8419842a, 0x200d8304, 0x0643412b,
0x11219f85, 0x21738a00, 0xa7831507, 0x0127232f, 0x0a967635, 0x96c02a76, 0x55600b80, 0x214a860b, 0x0182802b, 0xac2d3b86, 0x1c008001, 0x00003000,
0x1d163213, 0x05804501, 0x35013e33, 0x07061415, 0x0e27012e, 0x23011d01, 0x17363411, 0x23198715, 0x010e3527, 0x802c1985, 0x2b120c09, 0x1c222c19,
0x30262630, 0x2a2e0684, 0x32021e0c, 0x1e2e1e22, 0x01010d1f, 0x08821119, 0x0132222c, 0x13090c80, 0x03010b07, 0x02820325, 0x0685ab20, 0xd1820582,
0x5b0c0926, 0x021c025a, 0x01260c82, 0x014b0113, 0x09820109, 0x83170221, 0xeaff2997, 0x96019601, 0x06000300, 0x33339782, 0x07012311, 0x2b2b9535,
0x01aa0001, 0x0156fe95, 0x41ee7715, 0xbf85099b, 0xa993bd9d, 0x0022979c, 0xbb590001, 0x82062007, 0x33152e81, 0x37231315, 0x56964095, 0xea950156,
0x838782c0, 0x8203207f, 0x01d52223, 0x33a782da, 0x000a0002, 0x01000011, 0x23271737, 0x33373307, 0x11253317, 0x013c3284, 0x04191967, 0x0f29452a,
0xfe290f44, 0x55954066, 0x4e1d0155, 0x2bc0784e, 0x00ffc02b, 0xc0204782, 0x8309e352, 0x00052def, 0x2500000e, 0x15233723, 0x17072517, 0x373c7582,
0x6b013717, 0xb5d65656, 0x6a1bfcfe, 0x1b584d40, 0xb52eaaeb, 0x4f6b1bce, 0x1b5983c0, 0x340d277d, 0x00070003, 0x0014000b, 0x21273700, 0x35213707,
0x33350321, 0xfd4e1815, 0x40c02608, 0x40400001, 0x22d782ff, 0x434080c0, 0xeb27050d, 0x2a806a6a, 0x82ea56fe, 0x09ef42cf, 0x9f4b0420, 0x05994a08,
0x00001222, 0x2307194a, 0x27230737, 0x072e5783, 0x1b2b2715, 0x501b6501, 0x4440c080, 0x5383ef6b, 0x012f4032, 0x9bfe1b50, 0xcf4f4f1b, 0x166a6a9b,
0x2e2ec02a, 0x210cab4d, 0xac82000d, 0x010e252e, 0x17372307, 0x013e3307, 0x05373537, 0x33240582, 0x23372707, 0x15311582, 0x02c00107, 0x70a0526c,
0x4039271e, 0xfe2b0154, 0x230d8b80, 0x026c52c0, 0x01251982, 0x2a6b4054, 0x200b8a95, 0x33ad1800, 0x00103b0d, 0x00190015, 0x0022001d, 0x002b0026,
0x0034002f, 0x003c0038, 0x35332500, 0x03823523, 0x1123072b, 0x21331614, 0x3e252135, 0x20118501, 0x2d158315, 0x011e2335, 0x33152313, 0x34331537,
0x08820326, 0x06220323, 0x06324f07, 0x01331524, 0x00822b40, 0x192bd525, 0x82000112, 0x122a22e7, 0x320e8219, 0x2bd52b2b, 0x2a671801, 0x192b802a,
0x552a2a92, 0x84011812, 0x82552015, 0xff552217, 0x26238200, 0x1218012a, 0x82802b80, 0x201b8220, 0x281c822a, 0x00ff1813, 0x182b012b, 0x22138313,
0x82000900, 0x62012000, 0x073105c7, 0x1b000b00, 0x23001f00, 0x2c002800, 0x00003000, 0x209d823b, 0x56998217, 0x8c820571, 0x011e1524, 0x7c773317,
0x82032005, 0x25cf8317, 0x14233513, 0xd8862716, 0x2b2b9528, 0xaa2a2a56, 0x526bd5d5, 0x19122507, 0x2b2b6719, 0x78827082, 0xb0851920, 0x552b2b23,
0x877d82d5, 0x18132321, 0xac8280fe, 0x2bd5fe27, 0x2b551912, 0x0d5b632b, 0x8f821720, 0x00002525, 0x4f062213, 0x27200954, 0x30071f4d, 0x15173527,
0x33073533, 0x011d1632, 0x36343521, 0x052a5f6b, 0x35191233, 0x090c0120, 0x010c09aa, 0xd6ab406b, 0x00ff0c09, 0x0a705c0c, 0x8035202b, 0x090c0c09,
0x6b6b1580, 0x820682ab, 0x065f550c, 0xab01c02d, 0x0e000500, 0x42003c00, 0x82370000, 0x012e21e8, 0x14260582, 0x34262206, 0x0e820736, 0x15373228,
0x36321614, 0x895c013d, 0x3e272206, 0x05244601, 0x2634352a, 0x011d0622, 0x010e2726, 0x0e222783, 0x19821301, 0x40010e34, 0x02526c02, 0x1e176e6c,
0x1e1e2e1e, 0x171e0172, 0x09820d11, 0x17110d2a, 0x1001011e, 0x01100e0e, 0x88261291, 0x52026c52, 0x0584ab6c, 0x1e01a224, 0x02821e2d, 0x1e166534,
0x16040901, 0x04161e1e, 0x161e0109, 0x07061911, 0x43831019, 0x82040921, 0x8217205a, 0x26478214, 0x06071910, 0x84f5fe19, 0x00002371, 0xcb460001,
0x006b2405, 0x18000011, 0x7908ee85, 0x2b230634, 0x6d80d501, 0x1220084b, 0x220dae6c, 0x821813d5, 0x0aff6c39, 0x10000726, 0x00002200, 0x10a56118,
0x27233723, 0x24991823, 0x013d2509, 0x95012634, 0x0ca06118, 0x2bab7d22, 0x55206589, 0x09946118, 0x40182522, 0x850bb86d, 0x09076e70, 0x82001121,
0x6d012080, 0x9b550511, 0x33372b07, 0x3523011f, 0x17231523, 0xb883ab01, 0x83aafe21, 0x2b802a05, 0x462a469b, 0x1940015b, 0x06494212, 0x2405f554,
0x5b555595, 0x20008200, 0x08034104, 0x09000437, 0x20000e00, 0x33010000, 0x17272317, 0x17333723, 0x17372707, 0x2fc39207, 0x3f3d3325, 0x1e766636,
0x17ac066d, 0xa635203c, 0x012cc48b, 0xa1616b00, 0x2e2c0a36, 0xeb5f396a, 0x0429c39b, 0x00001600, 0x3717013f, 0x25619117, 0x364a606b, 0x1b41164a,
0x6080230c, 0x4f8d6040, 0x82191221, 0x880320bb, 0x001126bf, 0x0026001d, 0x12154100, 0x35233533, 0x0622012e, 0x15231507, 0x1d163237, 0x34352301,
0x0d234136, 0x0115952c, 0x01243624, 0x0c095515, 0x2b410c2a, 0x56eb2910, 0x24241b15, 0x8056151b, 0x41092b57, 0x23200b8b, 0x34257597, 0x15163236,
0x8e7b8733, 0x0c6a2472, 0x852b0c12, 0x2a719276, 0x0c0c092a, 0x24241c09, 0x49562a1c, 0x6b270873, 0x18000600, 0x82250000, 0x353321cf, 0x24123541,
0x56562b01, 0x0c35416a, 0x55404025, 0x41956a40, 0xbb820f85, 0x02eaff2d, 0x00960100, 0x001a0011, 0x59230100, 0x36250a96, 0x2634013d, 0x07774505,
0xaad50123, 0x0757582b, 0x19125533, 0x2b44fe19, 0x80011219, 0x6b0180fe, 0xff12182a, 0x25128200, 0x1812d512, 0x0483fe2a, 0x00030023, 0x24578600,
0x00160004, 0x0add411f, 0x8d08f559, 0x6095255e, 0x154b354b, 0x80256296, 0x60406080, 0x8a6692eb, 0x20bf8367, 0x23c1821e, 0x011d011e, 0x27059157,
0x013e1127, 0x0517013b, 0x2507a858, 0x35211533, 0xa783d501, 0x585afe20, 0x2b802306, 0xc28300ff, 0x80191228, 0x6b015501, 0xc1821801, 0xd5821920,
0xc7820020, 0xd5fe2b22, 0x01237082, 0x47d5d52b, 0x5b8206e3, 0x6b01d622, 0x257e7182, 0x43352006, 0xcf7011d0, 0x0ac64305, 0x2bd54022, 0x200f7141,
0x0ac34100, 0x1d001127, 0x17130000, 0x0ebd4333, 0x15621720, 0x2bd5210a, 0x280ac143, 0x2b4040eb, 0x6b014040, 0x0dc1432b, 0x15836b20, 0x8d402b21,
0x205b96a7, 0xfeb6181f, 0x275b8c0a, 0x1e2d2db5, 0x2e1e2e2d, 0x2d200282, 0x93206190, 0x1e221987, 0xbf8c2d2d, 0x27137b44, 0x15330717, 0x27333533,
0x200de442, 0x157b441b, 0x5a565622, 0x0420b783, 0x29080483, 0x8001d601, 0x0f000700, 0x26001700, 0x03210000, 0x17372733, 0x33250333, 0x23151632,
0x14173634, 0x2e230706, 0x33373501, 0x12823717, 0x34340d85, 0x204b0136, 0x1b25182f, 0xb6fe2053, 0xea241c6a, 0x1c24c624, 0x15290782, 0x1520206b,
0x090c0c09, 0x3a0482c0, 0x0a611501, 0xd5ebfe6b, 0x241c1c24, 0x01241b95, 0x401b2401, 0x120c2020, 0x8201010c, 0x062b4a04, 0x9b01c528, 0x00001a00,
0x374b1625, 0x2e072906, 0x013e3701, 0x26063517, 0x23080583, 0x16361533, 0x5d19ab01, 0x0e141e27, 0x271e140e, 0x5222195d, 0x023d5822, 0x222a454e,
0xbc3aeb52, 0x0113010a, 0x0a3d0282, 0x0e2e3abc, 0x3c294012, 0x2b45230f, 0x000e126b, 0xff000002, 0x01d801ea, 0x000d0080, 0x185d821d, 0x080716c6,
0x17373331, 0x23053307, 0x36373626, 0x33352337, 0x17162315, 0xd501011e, 0x40243001, 0x91013024, 0x2d30223a, 0x0195ebfe, 0x12090503, 0x110d6b0d,
0x8302050a, 0x2f1e8217, 0x5213652b, 0x32613080, 0x2b2b5552, 0x61325255, 0x3908a749, 0x006f01af, 0x00300014, 0x023e1300, 0x040e041e, 0x013e042e,
0x1737011f, 0x03882737, 0x27072724, 0x03871707, 0x411ba02b, 0x0b233c43, 0x25100105, 0x2a098835, 0x1a1a1316, 0x1a231913, 0x82241a13, 0x8c192007,
0x20012c0d, 0x0110251a, 0x3c230b05, 0x88354143, 0x13962209, 0x82268219, 0x231a212d, 0x0d8a2e85, 0x07209b82, 0x00260382, 0x7901b901, 0x9d821000,
0x1c001828, 0x24002000, 0xa5832800, 0x3637012e, 0x030e0716, 0x37260607, 0x0717013e, 0x0385a882, 0x82013f21, 0x010f2207, 0x82078417, 0x4c2124a5,
0x8208114f, 0x240785a3, 0x082d085d, 0x28038218, 0x072d0758, 0x082d0713, 0x23078283, 0x072e083e, 0x08249d83, 0x214c4f11, 0x07869b82, 0x42202582,
0x02200382, 0x6d282182, 0x28082e07, 0x98072d08, 0x002f0b82, 0xff000003, 0x01d601fe, 0x00080080, 0x6432002e, 0x27220a79, 0xce6f011e, 0x2e072605,
0x07232701, 0x2504820e, 0x36342622, 0x05833537, 0x013b2b08, 0x012b2637, 0x03013e27, 0x01373315, 0x12120e20, 0x0e12121c, 0x0102664d, 0x453e0e06,
0x03242334, 0x0d021c11, 0x0c093d08, 0x0383090c, 0x100a502b, 0x02010915, 0x13056866, 0x372a83c0, 0x02c0121c, 0x32194960, 0x064a061f, 0x5c262f01,
0x0c010808, 0x40010c12, 0x232b0482, 0x60491508, 0x4040edfe, 0x4a000500, 0x0f2d0d5b, 0x00001300, 0x21152113, 0x23153317, 0x28078a07, 0xfe800140,
0xd6d65580, 0x24078b55, 0x2a2b8001, 0x8202852b, 0x204b9846, 0x8b478215, 0x834b8403, 0xba038d47, 0x4500204b, 0x01200557, 0x97a50787, 0x97821720,
0x0786e384, 0x80209784, 0x80204483, 0x09899983, 0xf747e78d, 0x017b2605, 0x0007006b, 0x06217f0f, 0x16323325, 0x84270614, 0x23072305, 0xde643e17,
0x33112f05, 0x2e37013e, 0x4b200101, 0x12120e4b, 0x04824059, 0x78400e34, 0x2f011310, 0x22978625, 0x1801012c, 0x1b124075, 0x0382bf12, 0x0b1b012e,
0x30251020, 0x01d5fe01, 0x2718222e, 0x0808a74f, 0x08005636, 0x00001000, 0x33171513, 0x33371707, 0x17072135, 0x17373307, 0x333c8037, 0x7c222d0f,
0x941b9bfe, 0x79214034, 0x0455011b, 0x502c243c, 0x7b941b40, 0x001b794e, 0x28061f4a, 0x00c001c0, 0x000d000a, 0x0509441c, 0x32161427, 0x012e3536,
0x203f8225, 0x20478227, 0x39461806, 0x95290809, 0x18022602, 0x25031924, 0x6766d7fe, 0x331fbe25, 0x7609096e, 0x750a190a, 0x3202cb0a, 0x18181217,
0x22321712, 0xbf166666, 0x2019821e, 0x8216821a, 0x001a2102, 0x4c08c349, 0x0f20099b, 0x3323ab82, 0x41272315, 0xc0230af1, 0x41808080, 0x2b2008e8,
0x2b27e082, 0xd52bd580, 0x822b2a2b, 0x0600213e, 0x20127f42, 0x20438517, 0x24438235, 0x35231505, 0x20038217, 0x204f8607, 0x244a8740, 0xabd5d5d5,
0x234c8301, 0x0180fe80, 0x2a265083, 0x2a562b2b, 0x5683552a, 0x82158742, 0x91518795, 0x204b8d4d, 0x82488680, 0x209f969b, 0x204d8201, 0x83938225,
0x4203839b, 0x012007dd, 0x8a42a082, 0xd5d52105, 0xa096aa82, 0x0ce35a18, 0x16000b22, 0x3328ef84, 0x23113335, 0x23152335, 0x352b0882, 0x33373507,
0x40153311, 0x822b552b, 0x2aeb2a02, 0x2b2b3535, 0x80806b01, 0x265582fe, 0x311ece2b, 0x1800ff1f, 0x20093775, 0x056b586b, 0x15331322, 0x21354388,
0x34262223, 0x3436013f, 0x15062226, 0x32013e23, 0x010f1416, 0x324e8633, 0x12808001, 0x0c680b18, 0x2b192418, 0x30493001, 0x87806718, 0x23192e5b,
0x240c6f0c, 0x25121919, 0x18493030, 0x0903646e, 0x27206383, 0x0121a78d, 0x05fa4833, 0x22012b25, 0x83352726, 0x3523227c, 0x22c08333, 0x87013e35,
0x55002269, 0x254c8212, 0x01181255, 0x0082552b, 0x18012b22, 0x01206987, 0xfd480b82, 0x15152705, 0x15552b55, 0xd74c1215, 0x01c0210a, 0x16226f83,
0x718d1900, 0x23352124, 0x68823735, 0x15231525, 0x87073527, 0x6b402763, 0x15152b6b, 0x5987362b, 0x962a6b29, 0x956b2a96, 0x41004d4d, 0x4f850867,
0x4d8d2a20, 0x82330121, 0x23c38247, 0x23070614, 0x3223c186, 0x85263436, 0x82c28ace, 0x3024245e, 0x832b2430, 0x210482c4, 0x04821218, 0xc88b0120,
0x01552b2c, 0x01304930, 0x15151219, 0xee852418, 0x83087f43, 0x002422c7, 0x27798f28, 0x011d011e, 0x15233523, 0x250c4241, 0x1517013e, 0x3a413533,
0x6e2b200b, 0x5520055b, 0x01237a82, 0x41551218, 0x15220c3b, 0x13835515, 0x2206064b, 0x445555aa, 0xb4210633, 0x20738301, 0x26718d11, 0x07170725,
0x42553727, 0x0126054e, 0x1f4d4d5f, 0x4d876a6a, 0x4c4de226, 0x006b6a1e, 0x83093344, 0x0507463f, 0x270a5142, 0x15333537, 0x23153307, 0xd6214386,
0x87008295, 0x2aab2141, 0x920c5b6f, 0x1737257f, 0x27371707, 0xe2253b86, 0x6b1e4d4d, 0x417e906b, 0xeb200633, 0x2722bf84, 0xc18d2b00, 0x37333724,
0x03840733, 0x83231521, 0x23072387, 0x03832337, 0x37333523, 0x41188323, 0xd52c0636, 0x072b0632, 0x062a072b, 0x2d042924, 0x58230b8b, 0x87042a04,
0x40d52172, 0xcc180082, 0x2b20087c, 0x87446982, 0x00122512, 0x37000016, 0x2b063451, 0x35211527, 0x21352101, 0x17351735, 0xeb211282, 0x200082d5,
0x07d444ab, 0xd5565524, 0x4e82abd5, 0x2b2b552a, 0x952b80fe, 0x2bc0aa55, 0x03204fa3, 0x27234882, 0x82073715, 0x834f8756, 0x55552155, 0x4f875783,
0x952bd524, 0x4f8255aa, 0x82000121, 0x80012d00, 0x0b006b01, 0x15130000, 0x15230733, 0x9e823e82, 0x482fd524, 0x0382ab3c, 0x406b0124, 0x028240ab,
0x22089345, 0x5b7601d6, 0x1520068f, 0x6482c782, 0x0582c282, 0x07213530, 0x33072733, 0x37172315, 0x0001d523, 0x038700ff, 0x4a355534, 0x4b35354b,
0x2aab354a, 0x2ad62aaa, 0xd64a4a2a, 0xc7884a4a, 0x4b846020, 0x19001026, 0x26001d00, 0x21268182, 0x35152115, 0x95741521, 0xb94a1808, 0x8b172008,
0x01952415, 0x82d5fe2b, 0x0e952703, 0x121b1212, 0x06850d12, 0x11894d20, 0x2a550126, 0xb52a2a80, 0x2005ae48, 0x23068580, 0x352a2ab5, 0xcb820985,
0x24077f45, 0x0002006b, 0x4d5d1806, 0x37002408, 0x82372317, 0x3e1329c3, 0x22263401, 0x13161406, 0x82079f41, 0x356b2de1, 0x55550b6b, 0x1818122b,
0x67191924, 0xf523e28b, 0x7556d660, 0x182b051d, 0x3f011824, 0xd6fe2a2a, 0x882a562a, 0x846b20e3, 0x000b22e3, 0x23e38211, 0x3700002a, 0x07cb6218,
0x23240784, 0x07153335, 0x07820382, 0x03833520, 0x021e3724, 0x8282010f, 0x23373523, 0x83e68735, 0x158034ea, 0x40402a2a, 0x0615152a, 0x05010906,
0x2a402823, 0x832aab2a, 0x000138e4, 0x40162a2a, 0x16c05616, 0x160a1656, 0x0901960a, 0x1625040d, 0x4c162c14, 0xc02c060f, 0x1f009601, 0x35010000,
0x21232634, 0x2306c753, 0x3d013e21, 0x15266483, 0x013b1614, 0x0b823632, 0x8001352d, 0x00ff090c, 0x01010c09, 0x8201090c, 0xd5152f07, 0x092b090c,
0x6b01ab0c, 0x0c0c0915, 0x19855509, 0xeb551522, 0xc0210d83, 0x090345ab, 0x6b016b24, 0xdb820900, 0x1e01002b, 0x07061401, 0x11231523, 0x05ef4417,
0x1501153d, 0x25303025, 0x12552b2a, 0x2a121919, 0x30016b01, 0x80013049, 0x18802b01, 0x18551924, 0x2e09fb49, 0x0006002b, 0x2500000d, 0x23353733,
0x85073315, 0x2b012f06, 0x40802a40, 0x802b40d5, 0x80565540, 0x03825680, 0xd6207389, 0x76062349, 0x35250667, 0x33153723, 0x21018211, 0x00824035,
0x6b80c02f, 0x95c06a40, 0x406b4095, 0x000100ff, 0x0a334540, 0x0b000324, 0xb5420f00, 0x37318205, 0x33353315, 0x35330335, 0x80014023, 0x6a2b80fe,
0x56c06a56, 0xab2b9556, 0x40234382, 0x4c40c0fe, 0xeb2606f3, 0x14009f01, 0x9f822500, 0x16231535, 0x012e0706, 0x011e1737, 0x37361637, 0x21272636,
0x82232535, 0x010e2606, 0x17160617, 0x081a8223, 0x0116364b, 0x2a145eeb, 0x06327f6f, 0x0e3f0455, 0x0105330c, 0xfdfe141c, 0x03558901, 0x12343514,
0x29180103, 0x7e080b86, 0x2bc03986, 0x08067c28, 0x3301087a, 0x10010317, 0x091b1124, 0x3404582b, 0x072b0304, 0x080c2006, 0x7c091a86, 0x247f8400,
0x01d301ff, 0x82b58240, 0x0701227f, 0x36f01817, 0x23132608, 0x013e3735, 0x347b8235, 0x27010f22, 0x1e33013e, 0x06141501, 0x3315010f, 0x62625501,
0x3602871e, 0x1813689b, 0x0d0c0118, 0x090e0909, 0x190f1908, 0x0e10161a, 0x8a220137, 0xbffe3621, 0x1c151116, 0x010b090c, 0x07190804, 0x141a0109,
0x0b0e1e12, 0x06f34501, 0x9601d322, 0x17207b91, 0x23207b87, 0x17227b85, 0x7bb51632, 0x12154027, 0x090c1d14, 0x2479850c, 0x1f121519, 0x2379820d,
0x00010000, 0x012d0082, 0x006b01a4, 0x0100001f, 0x032e0717, 0x08dd822b, 0x33021e20, 0x32352315, 0x013d023e, 0x020e2223, 0x01372707, 0x0714188b,
0x0914110f, 0x130b0236, 0x0382800b, 0x09360238, 0x070f1114, 0x6b011814, 0x190f065d, 0x08e0030d, 0x1502080e, 0x06820215, 0x0d03e026, 0x5d060f19,
0x0cdb6018, 0x15000628, 0x27250000, 0x01822115, 0x62150321, 0x35290663, 0x14010e23, 0x55c00116, 0x388982ff, 0x2b2a2bab, 0x3024ab2b, 0x40554030,
0x0001402a, 0xebebeb6b, 0x4830012a, 0x23478830, 0x009601ab, 0x37274784, 0x35170735, 0x8d273521, 0x56ab2647, 0xd6000156, 0x8346822b, 0x40552245,
0x20478255, 0x21458996, 0x00820002, 0x01960139, 0x00030080, 0x33000014, 0x37213521, 0x3537013e, 0x010e1523, 0x82272622, 0x011e2f07, 0xfe2a016b,
0x493695d6, 0x2a013501, 0x05822a40, 0x2a2b492f, 0xab364802, 0x2b2b1fab, 0x36abab1f, 0x0c2f4b48, 0x8d820220, 0x0e000a28, 0x17130000, 0xea4a1123,
0x82072006, 0x6aab2207, 0x055846d5, 0x84eb9521, 0xd62b2907, 0xd52b2b01, 0x2b552b2b, 0x0b583e82, 0x2e3f870a, 0x00160012, 0x001e001a, 0x01000022,
0x82032317, 0x33152841, 0x15252315, 0x8f053523, 0x221b8207, 0x4d6b0001, 0x402605c2, 0x40800140, 0x068dc0fe, 0x2a217089, 0x2100822b, 0x00822a56,
0x08825520, 0x09207c85, 0xbe08ab4b, 0x80802d7b, 0xff808001, 0x01555500, 0xd5fe5580, 0x7b9d8286, 0x2305734d, 0x008001c0, 0xeb877b85, 0xd38b1120,
0xfe224289, 0xef732bd6, 0x0d39080b, 0x00001a00, 0x012e3525, 0x06222123, 0x33371115, 0x23373632, 0x14152115, 0x17013b16, 0x01263411, 0x090c016b,
0x0c09ebfe, 0x0c09d555, 0xebfe2b56, 0x55eb090c, 0x09c0c00c, 0x2516820c, 0x890c56d5, 0x1b822bc0, 0x6c400121, 0x012005ab, 0x3508bb5d, 0x01000006,
0x35071735, 0x00013523, 0x01ababab, 0xabab5615, 0x1e83aa56, 0x0000032e, 0xa001eaff, 0x27009601, 0x43002b00, 0x07232782, 0x1807010e, 0x210855ba,
0x9a5e011e, 0x23072f05, 0x06070626, 0x2606010f, 0x013e1127, 0x17823337, 0x27220682, 0x96820e23, 0x011e142f, 0x36023f36, 0x013e013b, 0x3736013f,
0x08a58236, 0x08010a48, 0x0e085305, 0x0646080e, 0x10020107, 0x06070102, 0x0509083d, 0x011e1b09, 0x0e010104, 0x0705b507, 0x09230301, 0x1217e423,
0x10080a01, 0x01036607, 0x0e154602, 0x09111502, 0x55011006, 0x01060435, 0x08080809, 0x33820109, 0x03062d2f, 0x05010107, 0x231f0b06, 0x01010201,
0x31858215, 0x0fd00e01, 0x01362b99, 0x96fe0c19, 0x01030c0c, 0x18827607, 0x5c0a1626, 0x1b1b2b4c, 0x0520d482, 0x0807bf18, 0x1900152e, 0x21001d00,
0x00002500, 0x35231533, 0x20050767, 0x075a7d3b, 0x03211182, 0x05b14515, 0x1e831720, 0xc0260382, 0x1818122b, 0x0483d612, 0xd6ab2b22, 0x16210082,
0x2500822a, 0x12191515, 0x14834001, 0x12c0fe30, 0x01151519, 0xfe6b6b6b, 0x4015aac0, 0x6e822bc0, 0x88040021, 0x8609206f, 0x1300216f, 0x2308495a,
0x23061401, 0x03836882, 0x3d262225, 0x82272101, 0x82072071, 0x82952003, 0xd6fe2864, 0x18120118, 0x82802b12, 0x2a012275, 0x296982ea, 0x12189501,
0x18126b6b, 0x678396fe, 0xc0267783, 0x952a2a6a, 0x678d4040, 0x67880320, 0x15333523, 0x216b8227, 0x668b1115, 0x34113524, 0x67861736, 0x402aab22,
0x6483ce85, 0xc028da82, 0x2b15012a, 0x1218802b, 0xda87ca85, 0x6b6b2a23, 0x896583ab, 0x073b41cb, 0x4408315b, 0x32210687, 0x205e8236, 0x05db4a26,
0x23153323, 0x22168237, 0x86181295, 0x121829c5, 0x162a2ac0, 0x2a16d6d6, 0x628dc983, 0x402b5523, 0x82c984aa, 0x00002c63, 0x56019601, 0x0b000500,
0x4f001100, 0x4b820647, 0x35214f82, 0x058b4123, 0x23152322, 0x6b33db82, 0xc02a406a, 0x40402a6a, 0x96406a2a, 0x55012a6a, 0x846a402a, 0x200f8209,
0x20479200, 0x22418225, 0x84272315, 0x83372047, 0x013b2105, 0x01214784, 0x23488a2b, 0x952a6aea, 0x08824784, 0x27434783, 0x01922b05, 0x0023007c,
0x06260100, 0x3982010f, 0x010e0732, 0x27012e27, 0x17011e37, 0x013f3616, 0x37333523, 0x35055d77, 0x01012e07, 0x021a124d, 0x09403c06, 0x16243404,
0x04200b21, 0x10820d14, 0x43400a23, 0x31108806, 0x16014f01, 0x6c2b3d12, 0x02022c24, 0x0c201016, 0x0f820110, 0x412b6822, 0x41180f88, 0x04260c6f,
0x0e000900, 0x7d821300, 0x17072808, 0x15053533, 0x012f3533, 0x3f331523, 0x15233501, 0x40600117, 0xebfe7540, 0x75604080, 0x80604075, 0x40000140,
0x85a08040, 0x1812830b, 0x2008cfa5, 0x28418240, 0x0028001f, 0x13000031, 0x29b78233, 0x2207010e, 0x0e232726, 0xc8822301, 0x57013e21, 0x5a180b3d,
0x73620898, 0xd6952e08, 0x02024836, 0x311d3648, 0x31121612, 0x260c841d, 0x2b2b2b21, 0x4ba02a2a, 0x3320050d, 0x012b0685, 0x36490140, 0x17014936,
0x84171414, 0x533f2009, 0x4020050e, 0x86050a4b, 0x06234906, 0x01b62d08, 0x00080080, 0x0038000c, 0x26222500, 0x16323634, 0x012b0614, 0x31173335,
0x0e170727, 0x16141501, 0x15373233, 0x26220614, 0x012e013d, 0x04831982, 0x07062226, 0x33353311, 0x2206215d, 0x5f800134, 0x893305d6, 0x4fa68080,
0x130f2d17, 0x0a0b171e, 0x010c120c, 0x82151218, 0x12802903, 0x20d60118, 0xeb1e2e1e, 0x2b05ec5f, 0x164f2f6a, 0x111b062d, 0x9a041e17, 0x09323882,
0x95181360, 0x13181813, 0x6ba0abfe, 0x161e1e16, 0x474b17cb, 0x01eb3006, 0x002b0056, 0x0033002f, 0x003b0037, 0x6a00003f, 0x5318128d, 0x33210afd,
0x07c64311, 0x07210783, 0x05ad4233, 0x078a3720, 0x2a2bc023, 0x5400822b, 0x0a860768, 0x25058175, 0x552a2a56, 0x02822b2b, 0x6a550125, 0x5e2a5555,
0x218205c4, 0x01290282, 0x55552a00, 0x956a6a6a, 0x20008755, 0x20008200, 0x5f461806, 0x821c200a, 0x003824a5, 0x184a0041, 0x410e8f43, 0x2e2405e2,
0x07062301, 0x2c05e041, 0x06010f06, 0x011e0607, 0x26363736, 0x21038327, 0xc5730726, 0x20088807, 0x08d77333, 0x0bea8d18, 0x495b2408, 0x1e010260,
0x203a171b, 0x1e1b3041, 0x74600201, 0x181d070d, 0x220d060a, 0x04040720, 0x06031e07, 0x415a0409, 0x49200587, 0xcd200685, 0x43180685, 0x23080cc2,
0x49600228, 0x15184127, 0x182a0116, 0x60492741, 0x490d0127, 0x20111605, 0x0b110d0d, 0x094b0916, 0x0201040f, 0x2005a541, 0x41701840, 0x21ee820b,
0xef840200, 0x01d82408, 0x00310098, 0x3f00003b, 0x06072701, 0x26012f22, 0x36013f34, 0x16011f32, 0x17010f14, 0x14163236, 0x87371707, 0x831f870f,
0x34262229, 0x05aa5025, 0x3736342d, 0x0f1ecd31, 0x10061107, 0x82790606, 0x070f3406, 0x061f0f07, 0x1e060d11, 0x0612060f, 0x7806060f, 0x82071107,
0x1e0f2206, 0x271582cd, 0x18128001, 0x0f1219d5, 0x06213282, 0x21358206, 0x2e827807, 0x20820620, 0x0d061e25, 0x821f0611, 0x82102043, 0x2014880d,
0x281582cd, 0x12180122, 0x18121515, 0x29b38601, 0x006b0180, 0x001f0016, 0x8f410100, 0x7d152005, 0x9541090a, 0x0e380805, 0x32161401, 0x01263436,
0x01493600, 0x2b2f3b01, 0x2b2b2a2b, 0x01013b2f, 0x30243649, 0x30304830, 0x48026b01, 0x09453136, 0x2a2a2b2c, 0x45092c2b, 0x29483631, 0x30493001,
0x63830282, 0xc02b5982, 0x14008001, 0x00001d00, 0x59171613, 0x35230516, 0x64171607, 0x3e2105af, 0x38591801, 0x2ac02808, 0xab626d20, 0x83176d2b,
0x886c835b, 0x01002961, 0xab2b6d17, 0x2a216c62, 0x36231685, 0x83012a49, 0x08774a7a, 0x4d01d521, 0x282005d7, 0x2508ad6d, 0x14151607, 0xcd8f0706,
0x17163723, 0x29d08807, 0x2b954c77, 0x25301151, 0xb9822b2b, 0x012f2538, 0x202e3c01, 0x241c3a1a, 0x24243724, 0x952a6b01, 0x211a524d, 0xd7823927,
0x2c2d2082, 0x2d273909, 0x1101013d, 0x36240119, 0x18028224, 0x220bcbc0, 0x8a38002f, 0x8ecf8277, 0x37363377, 0x37270727, 0x35231527, 0x17231533,
0x17071737, 0x878a3236, 0xf482a220, 0x01116725, 0x82262f01, 0x2b2b2288, 0x32898226, 0x1e1e1911, 0x962b301e, 0x1f1e304d, 0x421a191f, 0x831b3b1a,
0x01242674, 0x62ab2b80, 0x22968d67, 0x831a1921, 0x964d282c, 0x1f1f302b, 0x8a11191e, 0x05475da2, 0x01c00126, 0x000d0096, 0x2505e541, 0x1507010e,
0x01831737, 0x012e352c, 0x14163207, 0x34262206, 0x5b183336, 0x00240811, 0x40026c52, 0x02280084, 0x1812926c, 0x18182418, 0x01250686, 0x526c0295,
0x271a84ea, 0x6c52ea40, 0x1924187e, 0x82052a77, 0x6f002005, 0x250808d7, 0x009601eb, 0x0030002c, 0x003d0034, 0x004a0046, 0x2500004e, 0x23061415,
0x3d262221, 0x27262201, 0x3b013e35, 0x05822601, 0x17267282, 0x31371731, 0x0983013e, 0x83071421, 0x0e152b05, 0x35330501, 0x23350523, 0xa6410315,
0x87372007, 0x47052008, 0x013806c1, 0xfe1218d5, 0x091812aa, 0x1801010c, 0x01044412, 0x1b101b24, 0x090c0c09, 0x24300682, 0x12440401, 0x0c010118,
0x969677fe, 0x55965601, 0x2005e643, 0x26068577, 0x2aabf7fe, 0x82abc0ab, 0xab123ad5, 0x1240090c, 0x1c0b0a19, 0x100c0e24, 0x240e0c10, 0x190a0b1c,
0x0c094012, 0x220083ab, 0x43015601, 0x498205e1, 0x820c1221, 0x2a55210a, 0xe3820082, 0x00000122, 0x2806937f, 0x3f000033, 0x16061701, 0x26b38217,
0x32011e15, 0x82343736, 0x061722dc, 0x052d4315, 0x07222728, 0x012e3627, 0xef432707, 0x3725080e, 0x0b04247c, 0x010c0a0d, 0x01182418, 0x012c0a0c,
0x18182419, 0x37050612, 0x0e1d0d04, 0x220d1124, 0x0c0cab0d, 0x340684ab, 0x0e257cde, 0x0676071a, 0x19120c13, 0x130c1219, 0x052c6706, 0x82bb8206,
0x37022738, 0x030c1c0f, 0x2a871124, 0x00203183, 0xff269b83, 0x8001c001, 0x40184400, 0x2b2b0995, 0x37012e01, 0x3e272635, 0x82343701, 0x34272904,
0x22260706, 0x15012e07, 0x0620b982, 0x1736b782, 0x22060706, 0x27263427, 0x32170626, 0x16061716, 0x06161537, 0x6a4a2307, 0x016b2205, 0x087a832a,
0x03055e2e, 0x210b0201, 0x02130135, 0x1b1a0703, 0x1b173217, 0x0203071a, 0x21350113, 0x21090309, 0x020e0f0e, 0x0d010b0b, 0x271a0108, 0x5e050301,
0x64643282, 0x02320807, 0x1a35040d, 0x36270209, 0x1b03151f, 0x11040214, 0x04110606, 0x031b1402, 0x27361f15, 0x04130702, 0x02100214, 0x0c080401,
0x061d0211, 0x020d0421, 0x72831219, 0xcb840020, 0xd601f426, 0x40009601, 0x33083546, 0x013d3616, 0x2e372606, 0x36262301, 0x15011e33, 0x36373216,
0x27210d82, 0x27048234, 0x17163437, 0x3e173236, 0x062d1582, 0x0e151607, 0x011e0701, 0x1614011d, 0x08f78237, 0x01012e78, 0x02785b00, 0x07415001,
0x011d2c07, 0x0c010f08, 0x1010020c, 0x030b250f, 0x023a250a, 0x08040216, 0x38191f1c, 0x081c1f19, 0x02160303, 0x0806253a, 0x50400807, 0x01780201,
0x5b780295, 0x01176c48, 0x07240507, 0x0d120321, 0x12030409, 0x15051701, 0x3c2b0208, 0x1e051623, 0x13040116, 0x04130707, 0x051e1601, 0x2b3c2316,
0x0f140502, 0x0107053a, 0x5b486c17, 0x134f0078, 0x82562008, 0x001d26c7, 0x13000023, 0x052c6b33, 0x17160629, 0x2307031e, 0x82023e26, 0x06ce6da0,
0x33171631, 0xaaab3736, 0x0a090c05, 0x01070716, 0x821e0a09, 0x82aa2057, 0x1e320860, 0x0701090a, 0x090a1607, 0x0203250c, 0x0103024c, 0x1e593095,
0x1e1a241c, 0x0614174a, 0x05050902, 0x14060209, 0x1a1e4a17, 0x591e1c24, 0x1e1e2206, 0xf7430022, 0x0003240a, 0x821e001a, 0x33152d79, 0x15212735,
0x15171107, 0x35373521, 0x25087382, 0x3634013d, 0x2735013b, 0x35170335, 0xd5abd523, 0x15151501, 0x5116d5fe, 0x12190e0c, 0x402a1640, 0x406b0140,
0x13822a40, 0x1882aa20, 0x261e1529, 0x950d1505, 0x822b1912, 0x1eeb2210, 0x22db8db3, 0x82070003, 0x11332361, 0x65821323, 0xaaaaab2c, 0x9501562a,
0x800156fe, 0x27894040, 0x96016126, 0x29002300, 0x0e222783, 0x984d1701, 0x08064107, 0x006e3620, 0x37363505, 0x14172636, 0x35263307, 0x0705aaab,
0x050e0603, 0x0d0f2808, 0x3c0e0c41, 0x08280f0d, 0x03060e05, 0x62072507, 0x0a950105, 0x461c1a1c, 0x18161518, 0x15194d1b, 0x05104107, 0x19150729,
0x16181b4d, 0x82461815, 0x2620271c, 0x00261a1a, 0xe74c0200, 0x000a2208, 0x2d878215, 0x011d0622, 0x34333533, 0x011d2326, 0xf9531423, 0x1cab2606,
0x24ea4024, 0x2b02821c, 0x01241caa, 0xf51c2495, 0x75241cf5, 0x09820382, 0x00000022, 0x08051f4f, 0x1601fe22, 0x36000f00, 0x00004600, 0x1f062237,
0x3b011e01, 0x3f363201, 0x23263601, 0x012e2307, 0x3626012f, 0x17241082, 0x17361716, 0x0a82d082, 0x010f1622, 0x82052160, 0x8322201a, 0x08368f0b,
0x0908407a, 0x0f020a01, 0x130b400a, 0x06011702, 0x1a402b07, 0x040a0427, 0x1c801b23, 0x0e020410, 0x1004020e, 0x221b801c, 0x27040a03, 0x291a401a,
0x0f071307, 0x29071306, 0x01060791, 0x0b130316, 0x01100940, 0x0809010b, 0x3f080beb, 0x0a0f0e0b, 0x96090544, 0x401a2201, 0x0514271c, 0x06030306,
0x1b271405, 0x01221942, 0x3a192001, 0x173c0404, 0x06099520, 0x0e0f0c41, 0x0b07410a, 0x300af761, 0x001b000b, 0x35232500, 0x23152707, 0x37173311,
0x81541833, 0x802b2711, 0x911a2b80, 0x7a661a91, 0x56012d05, 0x40181812, 0xbb5050bb, 0x5b5b0001, 0x260b1263, 0x18120001, 0x4e000000, 0xc52205cb,
0x09829601, 0x15000d33, 0x32001d00, 0x0e010000, 0x013e1701, 0x06232207, 0x20078416, 0x23078207, 0x22072636, 0x37250782, 0x0e172636, 0x82088201,
0x376f0818, 0x16070626, 0x36262706, 0x01012e37, 0x251b4289, 0x03c4462d, 0x15082302, 0x04751316, 0x14181c04, 0x05570110, 0x12211506, 0x36a00c0c,
0x62090f66, 0x093d2346, 0x02034e01, 0xa12d151e, 0x012f0406, 0x086e0895, 0x0a076e08, 0x5504064f, 0x3f10021d, 0x31460801, 0x04331404, 0x01253a09,
0x733c3333, 0x27320104, 0x1814091b, 0x492c0e10, 0x8214153e, 0x010027ae, 0xeaff0000, 0xaf82cb01, 0x00001e26, 0x33152325, 0x25077d4c, 0x17011e37,
0xd8683437, 0x3e3e0807, 0x27263701, 0x8bc3c701, 0x3f325108, 0x57010258, 0x01363241, 0x5d484b28, 0x75020278, 0x026c5863, 0x3ad30101, 0x5501373d,
0x01574345, 0x2a032403, 0x03033304, 0x7e54567c, 0x58690103, 0x55180a12, 0x403f0957, 0x24001b00, 0x00002d00, 0x06222101, 0x1614011d, 0x3f36013b,
0x32013e01, 0x16011f16, 0x65323317, 0x2220054c, 0x19067b4c, 0x08084028, 0xfeba0120, 0x0f0f0a8a, 0x0612660b, 0x1610041e, 0x071e0410, 0x0f0c6610,
0x14d4fe0f, 0x1b281b1b, 0x0685b81b, 0x1040013c, 0x0f0cdf0b, 0x094a1001, 0x4a090c0c, 0x0c0f0110, 0xb7100bdf, 0x1b1b2a1c, 0x05851c2a, 0x2008a341,
0x28f382d6, 0x0018000c, 0x002c0021, 0x23fb8238, 0x35363137, 0x3333ef82, 0x010e1716, 0x17373627, 0x3233011e, 0x012e0737, 0x85010e37, 0x1e27298e,
0x22231701, 0x3e270706, 0x0cd67718, 0x4a000137, 0x660d100b, 0x6002010c, 0x4a1601f4, 0x0e18260c, 0x523f340e, 0x063649e9, 0x4d303f31, 0x2d209417,
0x46173207, 0x02785b29, 0x845b7802, 0x80153505, 0x21131714, 0x49221e0c, 0x262fa960, 0x05171380, 0x425d0a59, 0x2905f348, 0x272e0190, 0x1e581e26,
0x2d872b23, 0x83793382, 0x01eb2608, 0x001700ab, 0x21b58220, 0xa1822500, 0x2607544a, 0x011d0637, 0x8215010e, 0x36322ba3, 0x34363237, 0x14062226,
0xe24a3716, 0x012e2105, 0x0136b382, 0x1d200863, 0x5249670d, 0x5a01026c, 0x2f260c46, 0x2a374801, 0x72821541, 0x2424373f, 0x0248361c, 0x37364802,
0x48010148, 0x5a460c80, 0x526c0201, 0x1d0d6749, 0x410d0820, 0x2215822a, 0x8224912f, 0x24372225, 0x232487c0, 0x00483637, 0x2605eb42, 0x009601d6,
0x82140008, 0x62292091, 0x4a180c83, 0x1782172b, 0x4c05d24c, 0x012e08e2, 0x18181240, 0x52181824, 0x02026049, 0x05854960, 0x210a2b41, 0x1d830130,
0x6a182422, 0xc0232685, 0x82182518, 0x88ab2002, 0x6049232a, 0x29417e01, 0x8593200a, 0x192e2126, 0x25245282, 0x00000018, 0x8505bb63, 0x00112aa7,
0x0023001a, 0x0035002c, 0x0ae34e3e, 0x20089e6e, 0x097f4d27, 0x88068242, 0x08106c1a, 0x1c5a1720, 0x80012107, 0x12206985, 0x2705164c, 0x171711a4,
0x91171722, 0x5c20148c, 0x2b200d8c, 0x9682b782, 0x2d4c8020, 0x17292706, 0x23161623, 0x158da817, 0xee86c120, 0xf14b7f20, 0x00043207, 0x02d5ff00,
0x00ab0100, 0x00110008, 0x00380018, 0x08234a00, 0x012e0722, 0x2905a64f, 0x17353337, 0x27233507, 0x20710722, 0x05174205, 0x32331622, 0xb182b782,
0x012e3722, 0x0724c982, 0x19126b26, 0x22088082, 0x30251218, 0x30304930, 0x55554b51, 0x0d0f754b, 0x643f681f, 0x84030384, 0x1f683f64, 0x17190f0d,
0x41243f17, 0x24240585, 0xeb17173f, 0x69298f8e, 0x40555540, 0x3b320395, 0x82308201, 0x3b012736, 0x18090332, 0x8f41011b, 0x1b012305, 0x5f5b0918,
0x01d62e08, 0x00150040, 0x002a0021, 0x003c0033, 0x26b78245, 0x26010e07, 0x5437013d, 0x1f270593, 0x06141501, 0x68022f26, 0xee4e0a26, 0x081d4208,
0x0e201189, 0x3f06984d, 0x200b3faa, 0x35041515, 0x3527c027, 0x20151504, 0x2ac13f0b, 0x2a2a162a, 0x090907b5, 0x2c09090e, 0x0d260682, 0x06440909,
0x06820909, 0x14820d83, 0x0a406b35, 0x06101501, 0x0131269d, 0x9d263101, 0x01151006, 0x83aa400a, 0x2a162135, 0x0d222683, 0x3b832509, 0x02842982,
0x85012521, 0x08bb7b14, 0x0e006b22, 0xad51c982, 0x003a2305, 0x8d700043, 0x86232005, 0x37362bce, 0x15331517, 0x37273533, 0xd484011e, 0x51010721,
0xc89a08b1, 0x011b2b26, 0x66801b65, 0x1525ce85, 0x1b162a12, 0x24d183d0, 0xe5fe090a, 0x70cb9ab9, 0x802005e3, 0x2227d186, 0x2a163617, 0x84551b25,
0x120a25d6, 0x2b1b0104, 0x4744d09b, 0x00002505, 0x9601e801, 0x0806975c, 0x07130026, 0x010f3717, 0x03273721, 0x8ba41323, 0x4a1d8b49, 0x0c491801,
0x01929292, 0xf580f575, 0x15808075, 0x00ff0001, 0x20066349, 0x363782d6, 0x002d001a, 0x25000036, 0x0706012e, 0x14011d06, 0x3e371617, 0x82171601,
0x36373a01, 0x0e073637, 0x26372601, 0x06072627, 0x17363716, 0x3736021e, 0x26062734, 0x09714d27, 0x401d5e08, 0x080e1030, 0x1d040103, 0x37291730,
0x050a2447, 0x330f0603, 0x3a324e42, 0x0107362e, 0x104a5008, 0x0a191f23, 0x7b191007, 0xb07d7d58, 0x2cbd7d7d, 0x13150b26, 0x1a190418, 0x12140808,
0x0c371f13, 0x0f13370a, 0x0c14080a, 0x0a4b8023, 0x01052707, 0x1b792704, 0x0908061e, 0x0d041713, 0x2132839d, 0xe2827db0, 0x2008db46, 0x21ab821c,
0x2a453315, 0x16322608, 0x012e3717, 0xf45e1823, 0x01353308, 0x4f0b7e15, 0x025a4439, 0x22445a02, 0x1b261438, 0x7f442d4c, 0x6f5a2705, 0x3935d502,
0x17820146, 0x1a241d82, 0x231e2618, 0x23066944, 0x00155a79, 0x20089345, 0x1f7018d6, 0x25002208, 0x3c6b1827, 0x2707240d, 0x82231737, 0xc8012804,
0x0e260ea7, 0x850d0da7, 0x95d52806, 0x60359595, 0x88e16060, 0x20188311, 0x821582a8, 0x0ccf5914, 0x44000821, 0x3f0805b3, 0x15230100, 0x35330737,
0x27032634, 0x36323315, 0x022b013d, 0x3b161415, 0x03073501, 0x17273315, 0x06222335, 0x56809501, 0x3c196b16, 0x19128056, 0x196baa6b, 0x55568012,
0x8056166b, 0x80011813, 0xfe210785, 0x211f82d5, 0x1f838012, 0x00011622, 0x183d2d83, 0x00000300, 0xc001dfff, 0x1900a001, 0x42003200, 0x1e010000,
0x06141701, 0x013e2707, 0x05364435, 0x17161426, 0x35012e07, 0x88055055, 0x06222219, 0x20188807, 0x0ef64d03, 0x52000129, 0x1d21026c, 0x411c1816,
0x1c29053a, 0x211d1618, 0x36526c02, 0x355a8249, 0x01121017, 0x01365236, 0x14171012, 0x1d490117, 0x06120644, 0x02820644, 0x01210683, 0x262682a0,
0x171b482a, 0x41233d16, 0x2b080591, 0x17163d23, 0x522a481b, 0x49013e6c, 0x12311d36, 0x16260d17, 0x29363629, 0x170d2616, 0x361d3112, 0x45e8fe49,
0x06450606, 0x07430711, 0x11210282, 0x053f4100, 0xedff4b08, 0x9301bb01, 0x09000600, 0x13001000, 0x11370000, 0x07173736, 0x3f072526, 0x0f141601,
0x27372701, 0x01400717, 0x11d2d211, 0xb5e62601, 0x310b0c78, 0xe6fd3636, 0x6a010b31, 0xd2d20914, 0xb5848609, 0x0920092b, 0x9235351c, 0x334a3184,
0x01eb2c06, 0x000b0056, 0x25000028, 0x44233523, 0x252007b5, 0x26065942, 0x1e373634, 0x49371701, 0x28080a32, 0x01273427, 0x2a2b2beb, 0xfe2b2b2a,
0x260355c0, 0x3333282c, 0x081d1628, 0x403d2729, 0x54020254, 0x014d4140, 0x2bd50201, 0x3b20822b, 0x2c12332a, 0x4e360102, 0x0e010136, 0x01272709,
0x40405401, 0x4f010154, 0x06060d41, 0x2808b343, 0x008001c0, 0x001b000f, 0x854f1835, 0x20918913, 0x26918427, 0x36342622, 0x85163233, 0x16142691,
0x34373632, 0x06e04e27, 0x12d6fe29, 0x47011919, 0x82201520, 0x37d23502, 0x191c1902, 0x0e192121, 0x191a0513, 0x36362927, 0x02013153, 0x230a3673,
0xc019122a, 0x202a2883, 0x1c0c2123, 0x23322301, 0x3d820609, 0x52360128, 0x0a2a3236, 0x07480007, 0x00132a0a, 0x00340030, 0x0055003c, 0x05816f00,
0x14111527, 0x17013b16, 0x05845833, 0x012e052c, 0x32373634, 0x2707011f, 0x5847012e, 0x37240806, 0x17333523, 0x010e1516, 0x07171637, 0x33272337,
0x26070616, 0x2b061417, 0x37273701, 0x36273717, 0x23353337, 0x2720da83, 0x152ccb82, 0x13c3ab01, 0x18181280, 0xab159612, 0x42080682, 0x3125dcfe,
0x18222531, 0x04021a02, 0x1c160c10, 0x02152c1c, 0x0101542f, 0x0a5b2d01, 0x15030c0f, 0x0f015507, 0x0c8e1013, 0x112b9609, 0x3a0f3a13, 0x4d1b0b1e,
0xbc192917, 0x55010c09, 0xfe121840, 0x821812ea, 0x16013806, 0x01cc1812, 0x01314a31, 0x01190117, 0x01010705, 0x141d2c1d, 0x8202210b, 0x242f3c89,
0x3f0b1014, 0x18220117, 0x0c099915, 0x39133b2b, 0x29223910, 0x56161616, 0x8200090c, 0x00062c00, 0x02eaff00, 0x00960100, 0x4917000f, 0x44200603,
0x121da418, 0x2123c283, 0x47072111, 0x222105ac, 0x20088826, 0x2e118737, 0x35211517, 0x3233013e, 0x32013e17, 0x82361716, 0xeb0129ed, 0x0c092afe,
0xd601090c, 0x1f310582, 0xebfe6b2a, 0x15f9aa01, 0x2014141f, 0x17106214, 0x20028210, 0x360685d5, 0x01aafe5c, 0x10121827, 0x272a270d, 0x1812100d,
0x0c950127, 0x8480fe09, 0x2805823b, 0x161680fe, 0x0f7a5601, 0x273b8315, 0x0f0f0c12, 0x0b101017, 0x472d0685, 0x150f1212, 0x0e0e0b06, 0x0015060b,
0x08eb510a, 0x11cfe518, 0x00003323, 0x068e5213, 0x07820720, 0x35200384, 0x20056157, 0x83078237, 0x33172603, 0x21272335, 0x06591832, 0x56d5230c,
0x0083562a, 0x07888020, 0x0180562e, 0x18181256, 0x11aafe12, 0x6b011819, 0x56211c85, 0x20258480, 0x82078356, 0x5680220a, 0x05f152aa, 0x83121821,
0x8200202c, 0x82092000, 0x01c02e9b, 0x00a001e0, 0x00220009, 0x00290026, 0x065b772c, 0x00003d2f, 0x07013711, 0x26222127, 0x15371135, 0x83848727,
0x84918208, 0x05d95f10, 0x27330326, 0x17273325, 0x35210282, 0x82ba8727, 0x011b3008, 0xfe2b1bc5, 0xaa1911bb, 0x012b242a, 0x8218124f, 0x564f2106,
0xbb820483, 0xff1b1b2b, 0x801b1b00, 0x11561b1b, 0x280e8245, 0x85014511, 0x1b3bfe1b, 0x2599822b, 0x2b4f1145, 0xa8822a24, 0x252ab124, 0x0b83562a,
0xfe29c482, 0x1be51baa, 0x459b1b9b, 0x200c8211, 0x82058280, 0x820520bb, 0x01d539bb, 0x00ab01eb, 0x001f0013, 0x002b0027, 0x13000031, 0x23113315,
0x21353315, 0x23210382, 0x22a88311, 0x82153521, 0x2114820c, 0x10823521, 0x21055048, 0xb9583523, 0x33352807, 0x56161615, 0x82562a01, 0xd6fe3905,
0x16162a01, 0x1616d6fe, 0x55c04015, 0x80555580, 0x01406a2a, 0xd6fe56ab, 0x23841d83, 0x1e844020, 0x152a012e, 0x40c055ab, 0x6a15552b, 0x0400002a,
0x002a8b82, 0x8001d601, 0x17000500, 0x8b821b00, 0x01005708, 0x07231533, 0x1f320727, 0x0f151601, 0x2f220601, 0x3f342602, 0x010f3601, 0x07273717,
0xa2013717, 0x1f702233, 0x2b070824, 0x07550206, 0x4f270719, 0x05aa0c0c, 0x0f3c0e34, 0x0f3d0f5b, 0x712b8001, 0x2b06021e, 0xaa090906, 0x264f0b0b,
0x55081807, 0x3c0f3d03, 0x1c821f0e, 0x22083b54, 0x829601bc, 0x0100236b, 0x2c5a2726, 0x07062606, 0x011e010e, 0x22028217, 0x8237013e, 0x36380802,
0x1d950126, 0x182f0627, 0x06311808, 0x06201e24, 0x13182520, 0x2e1e1e2d, 0x10251814, 0x6901070f, 0x08020919, 0x19090208, 0x494d501e, 0x02381d23,
0x221d3802, 0x50262849, 0xe3506282, 0x21638506, 0x659c003e, 0x4806195f, 0x2e210505, 0x06855201, 0x8b4a3620, 0x16172406, 0x9c061617, 0x11312c88,
0x05031423, 0x0a1e0903, 0x820a1d0c, 0x24133208, 0x17050611, 0x2a082011, 0x2a130613, 0x1a102107, 0x08ab9906, 0x442a6520, 0x0308041c, 0x0202270f,
0x08031026, 0x2a441c04, 0x0f1a3e0d, 0x01070108, 0x08020601, 0xbc821a0f, 0x82000221, 0xd6013400, 0x18006901, 0x00001c00, 0x14163201, 0x0f230706,
0x6a010e01, 0x3b08053b, 0x17013f36, 0x0f011d16, 0x15333501, 0x0c09c001, 0x035f090c, 0x0a10032f, 0x01120d5d, 0x11590901, 0x40c02406, 0x120c0001,
0x6a19010c, 0x0d130a08, 0x69090c8b, 0x05090710, 0xababc044, 0x82062b41, 0x01d62d55, 0x0023006b, 0x2500002e, 0x15011e31, 0x21296182, 0x3435012e,
0x37313736, 0x07384e22, 0x3e230722, 0x49087c82, 0x0f061417, 0x37322101, 0x07012f36, 0x01161706, 0x1e0e0cbb, 0x17c0fe17, 0xa60c0e1e, 0x110f0701,
0x18241819, 0x30012a01, 0x23013048, 0x4001b51d, 0x08040306, 0x0408a5a5, 0x18076303, 0x011e160f, 0x0f161e01, 0x17600718, 0xf86b1811, 0x1e252c06,
0x0598082c, 0x5f5f0609, 0x46050906, 0xff2b05d3, 0x01ab01e0, 0x00060096, 0x821b000d, 0x05786991, 0x23010f27, 0x33352337, 0x059f4937, 0x15332508,
0x2e37013e, 0x15400101, 0x40201520, 0x16201655, 0x4d0a4020, 0x66020266, 0x5b4f0b4d, 0xd5670201, 0x40402a2a, 0x80200382, 0x17821182, 0x8e284b25,
0x82664d4a, 0x0697465e, 0x0f2f5f83, 0x2d002400, 0x3a003600, 0x21130000, 0x18171632, 0x200a3653, 0x2a658517, 0x3f362627, 0x1f163601, 0x58013e01,
0xbc4b0b26, 0x17372908, 0x01802737, 0x01181200, 0x09545318, 0x4936923b, 0x38490101, 0x08040413, 0x05100813, 0x011a1629, 0x0c093649, 0x0c0c120c,
0x24068562, 0x5a373564, 0xcd531801, 0x12562309, 0x404f2a18, 0x082f2405, 0x820b0411, 0x11332637, 0x48361f34, 0x057b5769, 0x2506ee7f, 0x72208765,
0xc0830100, 0x01c00128, 0x001b00ab, 0xa3820100, 0x011e152a, 0x23353317, 0x37013e35, 0x15230982, 0x82331523, 0x29aa8209, 0x6c520001, 0x1b240102,
0x31485540, 0x40552c05, 0x0201241b, 0x02ab016c, 0x8296526c, 0x2bab290a, 0x0202543f, 0xab2b3f54, 0x96222482, 0x57826c52, 0x82000221, 0x2a5b8200,
0x001a0080, 0x3700002a, 0x823d2622, 0x255684f6, 0x012b0614, 0x5a783335, 0x15332406, 0x7b222113, 0x34240a7d, 0x0f0b9a26, 0xf682e282, 0x3b0b0f22,
0x2105f941, 0x4918c02a, 0x40230a6a, 0x82660b0f, 0x2c22821c, 0x550f0b66, 0x3030242b, 0x01552b24, 0x78491840, 0x247a820c, 0xff000004, 0x2bdb86c0,
0x0023001f, 0x01000027, 0x1517011e, 0x2320e582, 0x27207c84, 0x15260982, 0x2e231533, 0xef822701, 0x1d691320, 0x82152005, 0x9615201b, 0x2b922aed,
0x2b802a80, 0x6d02ab01, 0x23f39151, 0x17fe6d51, 0x8205ba5d, 0x8201207b, 0x84d5207b, 0x411f207b, 0x5b411757, 0x9555221a, 0x175d4180, 0x012b1527,
0x52d61b24, 0x4363856c, 0x2c250667, 0x33370000, 0x21cd8c35, 0xea833337, 0xd3823320, 0x23201682, 0xf082f38a, 0x952b2131, 0x2b01231c, 0x0118122b,
0x16364802, 0x82024836, 0x12183455, 0x12180115, 0x23012b2b, 0x56fed51c, 0x2d07fd40, 0x8280161e, 0x826b2011, 0x2225821e, 0x8240402b, 0x8215202e,
0x16802903, 0xfd072d1e, 0x0300002b, 0x1323e388, 0x82002700, 0x17132483, 0x42011d06, 0x3328063f, 0x33151735, 0x37013717, 0x17227e82, 0x8d84013e,
0x1715232f, 0x2e013d36, 0x34350701, 0x2c201737, 0x08c9820c, 0x55958027, 0x1b352580, 0x29c586fe, 0x151e1b46, 0x54402037, 0x0b755501, 0x03e76c02,
0x2c5a014c, 0x1bd62320, 0x152b0124, 0x382483a5, 0x01367a01, 0x161f1b1e, 0x3f540218, 0x0f75192b, 0x6d519614, 0x10112be9, 0x050b414c, 0x01f8ff33,
0x008001d6, 0x05000013, 0x27012e27, 0x3237013e, 0x82798616, 0x00012c83, 0x0162531f, 0x1c324201, 0x82121232, 0x01423004, 0x07536201, 0x3b72491c,
0x18014232, 0x82181414, 0x723b221a, 0x09bf4449, 0x2005034b, 0x11014b23, 0xfb581320, 0x22232505, 0x012e0706, 0xf1820583, 0x2b0bef4a, 0x312a0fa7,
0x19210101, 0x0909190e, 0x21240482, 0x2a310101, 0x310de54a, 0x250ed5fe, 0x21191e39, 0x0c0a0a0c, 0x391e1921, 0x3b6a0025, 0x25bf8308, 0x00270023,
0xc3852500, 0xc3853320, 0xc3820582, 0xf5480320, 0x1117250e, 0x00011121, 0xa4216e92, 0x165b1801, 0x01122309, 0x6e8e552a, 0x191d0128, 0x12d6fe12,
0x1b821919, 0x2b191226, 0x2a01d6fe, 0x4341f786, 0x000b2206, 0x0a454118, 0x07011f23, 0x28e38237, 0x010f010e, 0x3e273727, 0x084a4101, 0x4c141530,
0x4232a055, 0x53620101, 0x3960151f, 0x4f412811, 0x80072307, 0x4f41f26b, 0x951c2a05, 0x0e0d6c6b, 0x00020000, 0x225b8600, 0x82280014, 0x890720dd,
0x3e3322de, 0x22e58301, 0x4113010e, 0xe8820551, 0x1f011e23, 0x05654101, 0x02020136, 0x015b4d02, 0x19212901, 0x0928092a, 0x2921192a, 0x115b0101,
0x200bc441, 0x05d8411f, 0x02023431, 0x202e6544, 0x16161c2a, 0x2e202a1c, 0x41080165, 0x1c2009d5, 0x5a05e741, 0x923b0837, 0x03009601, 0x00001b00,
0x23153337, 0x07011e13, 0x2315030e, 0x37023e34, 0x82272636, 0x23330884, 0x40d5013e, 0x3a572b40, 0x16230e31, 0x16044004, 0x12270e23, 0x01241b35,
0x2b490140, 0x08aa0140, 0x18104581, 0x1b101f1b, 0x0a16202c, 0x24064c27, 0x4f48371c, 0x16240ca3, 0x26001a00, 0x0e25e583, 0x35231501, 0x06c87236,
0x2307ee46, 0x33352307, 0x0cc96a18, 0x0b134128, 0x18012a0e, 0xe9460c1a, 0x2a402309, 0x1a50152a, 0x37058305, 0x0a14d079, 0x240b171b, 0x240c1b18,
0x24121818, 0x1d243030, 0x40012ab8, 0x570db755, 0xc0200563, 0x1320db82, 0x06287b82, 0x2206010f, 0x2726012f, 0x09982819, 0x13858c18, 0x180d6021,
0x210fe58c, 0xce180200, 0x1322082b, 0x49951900, 0x15072725, 0x93353717, 0x95c0234f, 0x53919595, 0xa6544725, 0x46a65454, 0x1b4a0813, 0x00222405,
0x82230100, 0x012f2247, 0x511c190e, 0x26223c0e, 0x011e0727, 0x37013e33, 0x2001012e, 0x4b105b20, 0x026d510b, 0x40565540, 0x4e3f5402, 0x1f3705d2,
0x1a1e1436, 0x6c522845, 0x016c0202, 0x1a376a15, 0x6c02c52d, 0x18565652, 0x2408ef73, 0x1a1f1517, 0x2112821e, 0xd3436c52, 0x01d62609, 0x00110018,
0x29778223, 0x16171636, 0x012e0706, 0x05832607, 0x5b3e3721, 0x2f4e0639, 0x06073605, 0x36262726, 0xbb0d0001, 0x0501010d, 0x0b0cad17, 0x010518ad,
0x080e8201, 0x04437c2d, 0x2c3e2f0e, 0x080c0c08, 0x0e2f3e2c, 0x15014304, 0x042e1402, 0x1632033e, 0x32160303, 0x2e043e03, 0x2a035714, 0x01222f03,
0x82021c02, 0x22012402, 0x442a032f, 0x7582059f, 0x0a3af783, 0x35370000, 0x35331533, 0x33072733, 0x6a56d515, 0x40d5d540, 0xab808015, 0xd318c0c0,
0x2008080f, 0x00800180, 0x0012000e, 0x001a0016, 0x34113300, 0x15373336, 0x11151632, 0x15233523, 0x23353337, 0x20038227, 0x2a038217, 0xaa121980,
0x55801912, 0x822a2a80, 0x55553102, 0x12150155, 0x19404019, 0x6bebfe12, 0x40402b6b, 0x7b881182, 0x8001ab24, 0x83820800, 0x45841720, 0x01112330,
0x806bab00, 0x8080016b, 0x959500ff, 0x00820001, 0x0000062c, 0xc001f0ff, 0x05009c01, 0x7b820b00, 0x31002235, 0x00003d00, 0x27260625, 0x3e051636,
0x010e1701, 0x82161437, 0x26222205, 0x220d8227, 0x84070614, 0x1e372508, 0x010e0701, 0x32250a82, 0x17163736, 0x200e8236, 0x053c4825, 0x23010e2d,
0xc001012e, 0x0b0b9f0b, 0x848bfe9f, 0xb5690806, 0x35072020, 0x20073508, 0x201bbb20, 0x0b153702, 0x3516040f, 0x06351350, 0x1a011335, 0x14140f0d,
0xfe1a0d0f, 0x163520fb, 0x150b0f04, 0x1b200237, 0x7d5b03c0, 0x99994307, 0x5b7d0743, 0x1f350178, 0x3b3a3a3b, 0x038f351f, 0x29302354, 0x11112a14,
0x29216f18, 0x191b2129, 0x12080812, 0x056a1b19, 0x2a111118, 0x23302914, 0x0c7f4854, 0x1b000b22, 0x232ac782, 0x23352315, 0x33353335, 0x51183315,
0x802310d6, 0x82555655, 0x48152002, 0x95200a65, 0x55211083, 0x0d554895, 0xbb4e0720, 0x00112308, 0x5118001d, 0x00260965, 0x36341117, 0x5b83013b,
0x2107a841, 0x6a841503, 0x76833520, 0x87730320, 0xb5ee1806, 0x0c2b310b, 0x55d65509, 0x56aa0c09, 0x2b2a2b15, 0x56962a2b, 0x01210082, 0x06a94e00,
0x4001153a, 0x55550c09, 0xc0fe090c, 0x80016a6a, 0x802a2a80, 0xaafe2b2b, 0xab402b40, 0x40210382, 0x08cb4440, 0x96019624, 0xb3180b00, 0x1d210fbb,
0x277b8901, 0x553f0001, 0x09830901, 0x01210282, 0x2d698454, 0x54019501, 0x07b35b40, 0x405bb307, 0x57825454, 0x2f410282, 0x01eb2408, 0x840e0056,
0x21b8834f, 0x3a4e1123, 0x012e2205, 0x07ec5905, 0xaa95012c, 0x012b2bab, 0x30012b80, 0xd463dbfe, 0x962b2d06, 0x40c0fec0, 0x3025c040, 0x2437247f,
0x4e820282, 0x2b065b4a, 0x007f01ab, 0x25000009, 0x35253533, 0x332f4d83, 0xff802b01, 0x56805600, 0x5c49d901, 0x187882fe, 0x200d8b83, 0x126f4719,
0x27353322, 0x65473985, 0x60c7250b, 0x406040c0, 0x260e5747, 0x4438a2b1, 0x6f5ae2fe, 0x0b260c7b, 0x00001400, 0xf5422301, 0x35232206, 0x09205621,
0x2b80c028, 0x01802b2a, 0x3c59c080, 0x00012905, 0x8080ebfe, 0x6a2b1501, 0x82058163, 0x08cb6546, 0x08009622, 0x5c564784, 0x23132207, 0x224a8235,
0x82152315, 0x00013107, 0x3624241b, 0x40062424, 0x2b00012b, 0x95012a40, 0x26050341, 0x958056fe, 0x18558095, 0x8308fb45, 0x00162443, 0x822b001f,
0xd96b18e3, 0x06184908, 0x35234682, 0x8737013e, 0x35032c16, 0x013e3723, 0x011f1632, 0x85a01523, 0x400e2a9d, 0x20011812, 0x18012056, 0x291087f2,
0x1e150537, 0x40370416, 0xb0859501, 0x18016a2a, 0xa0a07512, 0x6b181275, 0x81821085, 0x100da226, 0x80a20d10, 0x200dd748, 0x28cb8304, 0x17371737,
0x34110521, 0x05546e26, 0x3316142e, 0xb5363221, 0xfe604a36, 0x195501d6, 0x280a2048, 0x806040a0, 0x132a0115, 0x83148618, 0x0003284b, 0x01eaff00,
0x829601ab, 0x000926dd, 0x3f000019, 0x254e8201, 0x27153301, 0xfa182507, 0x402b0f22, 0xff52402e, 0x35366b00, 0x4cff0001, 0xe14c06d9, 0x522b2906,
0x016d5237, 0x2020ab40, 0x51067a64, 0x02210888, 0x05a34e00, 0x0f005622, 0x18067741, 0x2807a542, 0x3634013d, 0x27211733, 0x2f411807, 0x0116280c,
0x364a602a, 0x6d185501, 0xd62705a4, 0x80ea1812, 0x4a004060, 0xd63006a3, 0x02008001, 0x17001200, 0x27050000, 0x16321333, 0x07234c83, 0x8a012e21,
0x5500224c, 0x063052aa, 0x18181223, 0x234f8512, 0x5501562b, 0x083a4218, 0x1912d523, 0x235387eb, 0xc0010000, 0x16245382, 0x33002100, 0x50830b82,
0x88152321, 0x05e46301, 0x15013323, 0x05e64c14, 0x013d332c, 0x06212726, 0x17161507, 0x01863533, 0x1295012d, 0x2b2a2b19, 0x13802a2b, 0x83121918,
0x2b552b66, 0xfe09012a, 0x010109ea, 0x18837609, 0x19800124, 0x08838012, 0xa7492b20, 0x00ff2205, 0x20328455, 0x2321838b, 0x15010996, 0xd5823e82,
0x7f820020, 0x0d228b83, 0x09821b00, 0x07271522, 0x35280182, 0x21333634, 0x17071632, 0x29082066, 0x01173717, 0x565540c0, 0x4c854055, 0x07824020,
0x12d6fe23, 0x2d128219, 0x408c5501, 0x41565656, 0x19191261, 0x0583409b, 0x10831220, 0x04000022, 0x24084f52, 0x00130003, 0x18eb821c, 0x820ca1d2,
0x37362e61, 0x05012e11, 0x011e1123, 0x21352117, 0x357a8225, 0xfec00133, 0xfe2b01d5, 0x181812d5, 0x122b0112, 0x18010118, 0xa7186efe, 0x01280718,
0x3b2a3a14, 0x2b0155eb, 0x23891083, 0xabfe5522, 0x2b242882, 0x4b324be4, 0x2c0da742, 0x00160006, 0x15272500, 0x33353723, 0x0e234e35, 0x83950121,
0x09c64a00, 0xaa2b1925, 0x1880aaaa, 0x210a4559, 0x4c821912, 0x21094b7d, 0xdf580008, 0x002c2405, 0x5b0e0100, 0x172106e1, 0x05e15823, 0x82112321,
0x33153608, 0x05263435, 0x22233533, 0x33011d06, 0x14152315, 0x35013b16, 0x07dd4323, 0x55557a2b, 0x552b1912, 0xfe192b55, 0x820a84c4, 0x5555216a,
0x08716818, 0x0e83d420, 0x82000121, 0x83258220, 0x8380200b, 0x0600212e, 0x2b428382, 0x237f8905, 0x37000035, 0x11205d87, 0x10fa9918, 0x08119918,
0x5d08115e, 0x6b20087b, 0x7c847284, 0x832a0121, 0x84122089, 0x2495270b, 0x30483030, 0x16442430, 0x21778405, 0x82842a01, 0xfe218d84, 0x200b83ab,
0x06e55d95, 0x655d7f20, 0x00002106, 0x2b053b42, 0x6b010002, 0x2b001800, 0x21250000, 0x2305e35d, 0x012e3317, 0x2005ea75, 0xc8b51817, 0x3048291f,
0x33012b01, 0x1d30112a, 0x1fcdb518, 0x2d253029, 0x1a150c43, 0x18314301, 0x2409d0b5, 0x4606272f, 0x71b71833, 0x05ab4308, 0xd601ea3e, 0x0300c001,
0x1d000a00, 0x21010000, 0x21172115, 0x17373311, 0x27233533, 0x010e2307, 0x09a24b18, 0x01263432, 0x0100ff80, 0xaafe2b00, 0x604a4c60, 0x56555556,
0x1221ff82, 0x27058301, 0x2bd51501, 0x4b4b2b01, 0x0122fe82, 0x67421218, 0x82002009, 0x28038252, 0x01eb0100, 0x00060040, 0x05e97600, 0x2b012127,
0x60223c50, 0x24798280, 0x19516b40, 0xebad1880, 0x054b5508, 0x4205fb42, 0xf4421df9, 0x17ee421c, 0x09003308, 0xebff0000, 0x9501d501, 0x0b000500,
0x1b001200, 0x27002100, 0x33002d00, 0x00003900, 0x35171637, 0x15172726, 0x06273736, 0x013e1737, 0x27062337, 0x3660012e, 0x23272505, 0x26371716,
0x26081882, 0x05363307, 0x07272633, 0x27262716, 0x27171615, 0x17070635, 0x41317936, 0x417e2430, 0x42231f31, 0x0318141e, 0x6263062b, 0xe82d0622,
0x1e28072b, 0x281e1c1c, 0x01062b07, 0x860c854c, 0x241e222b, 0x2115831b, 0x1584221c, 0x181e3a26, 0x4530203a, 0x8306d546, 0x1eae2149, 0x30252882,
0x241e3141, 0x23278a60, 0x02000000, 0xd12bc382, 0xaf01cf01, 0x44000800, 0x60250000, 0x26230826, 0x52373627, 0x063705e3, 0x34353607, 0x010e2726,
0x26171415, 0x07062627, 0x16171614, 0x82070617, 0x011e2610, 0x06373637, 0x82108215, 0x2734212a, 0x36251782, 0x01263437, 0x05d04200, 0x82096b21,
0x211f3300, 0x091f441d, 0x1d230208, 0x0802231d, 0x1d441f09, 0x17961f21, 0xe2426b20, 0x4b230806, 0x06030306, 0x11223a12, 0x06051201, 0x3a240a0a,
0x243a1111, 0x05060a0a, 0x21110112, 0x0405123b, 0x95130503, 0x3a22221d, 0x0cc74d00, 0x14000f24, 0xd5821d00, 0x310e2447, 0x17371727, 0x14112721,
0x35213316, 0xd5011121, 0xcb181218, 0xea31095d, 0xff563f2b, 0x12188000, 0xd5fe2b01, 0x1200016b, 0x2a1d8618, 0x6a4f3a67, 0x12d5fed5, 0x75012a18,
0x002805db, 0x01ab0100, 0x0006006b, 0x095f6d18, 0x2e11172a, 0x0e212701, 0x33150701, 0x212f5882, 0x1e152335, 0x3e211701, 0x562b0101, 0x54d6aaaa,
0x2b250711, 0x00ff0001, 0x830d822b, 0x5e6d185d, 0x0a535019, 0x10000624, 0xc7822000, 0x51822320, 0x011f232b, 0x22010e23, 0x35232726, 0x10534521,
0x562a552d, 0x5595552a, 0x24362401, 0x18015501, 0x290be465, 0x564040eb, 0x24241b15, 0x6245d51b, 0x0aaf5f0f, 0x07000324, 0xd7821300, 0x33352323,
0x18038215, 0x220bcc81, 0x822a1501, 0x0ad34e00, 0x00017826, 0xc080d62b, 0x220dc24e, 0x18000400, 0x3009efcc, 0x001b000f, 0x1300001f, 0x13233533,
0x3e27012e, 0x05855001, 0x200b3a4f, 0x231b8203, 0x152a2aeb, 0x070cbe18, 0x61020223, 0x09364f48, 0x2a707823, 0x2165822a, 0x1582eafe, 0xc2632187,
0xc2fe220c, 0x0ca76580, 0x6f820f20, 0x34002824, 0x75833d00, 0x54072a54, 0x1720051d, 0x82071b55, 0x82352086, 0x1e172412, 0x18061401, 0x6f07b74f,
0xa6271071, 0x014634b4, 0x85344601, 0x21302706, 0x2b01012b, 0x0685bc21, 0x0f0b1228, 0x0f0f160f, 0x6e182d65, 0x6a430ac3, 0x95012105, 0x39833288,
0x33892920, 0x20213a83, 0x22368301, 0x181f0f16, 0x200adb6e, 0x06da432a, 0x0001002b, 0x01eaff00, 0x00960156, 0x26bb8217, 0x23272634, 0x45153335,
0x38750630, 0x013e2a05, 0x090cd535, 0x0915aa15, 0x2b06860c, 0x0c095501, 0x012a2a01, 0xd6fe090c, 0x00200987, 0x04200082, 0x236c4b82, 0x00252a05,
0x0032002c, 0x0100003b, 0x05214f17, 0x07151623, 0x05505921, 0xf3823320, 0x0e27222a, 0x36262701, 0x013f3637, 0x21820d82, 0x332e0582, 0x2637012e,
0x36171607, 0x37361601, 0x2182012e, 0x15017908, 0x15482d16, 0x170b0410, 0x06eefe01, 0x24151f2e, 0x6115710c, 0x2f232940, 0x1219164d, 0x122e1e25,
0x0f192e13, 0x2c1d4667, 0x2c09a308, 0x3031167a, 0x95fe0b1e, 0x1e21320e, 0x07130c2b, 0x14018001, 0x35111403, 0x15322921, 0x01012f26, 0x46391416,
0x05171001, 0x3a621b15, 0x0b102e2f, 0x55431922, 0x21290154, 0x153f2921, 0x292b170f, 0x030dbffe, 0x2235120f, 0x02003925, 0xf331c782, 0x9001ab01,
0x16000900, 0x22250000, 0x27262726, 0x28ac8234, 0x06072717, 0x011e1714, 0x08ba8232, 0x00013425, 0x25122e1a, 0x5a131301, 0x32797979, 0x423e1a32,
0x1e321a3e, 0x35251313, 0x5a132e1a, 0x3579793c, 0x82193488, 0x88342100, 0x2d061b41, 0xd6010000, 0x21006b01, 0x33002a00, 0x57823b00, 0x35333529,
0x15331521, 0x18161423, 0x2413fef2, 0x0535013e, 0x0f676822, 0x27263738, 0x35070622, 0x16950133, 0x4016aafe, 0x090c1010, 0x010c0915, 0x078401ea,
0xfe10102b, 0x12120ed6, 0x9d12121b, 0x3506840d, 0x21423312, 0xabea183c, 0x80404080, 0x6c04170f, 0x090c0c09, 0x05831616, 0x17046c24, 0x62752b0f,
0x25058505, 0x06010a60, 0x93434b05, 0x000c2c0a, 0x00260019, 0x011e1300, 0x82153317, 0x34352404, 0x98052326, 0x01f62f0c, 0x01262735, 0x080a2734,
0x3402cdfe, 0x03822627, 0x11820a83, 0x01330a85, 0x01342795, 0x02342725, 0x660a08cc, 0x24013527, 0x83013428, 0x8206820a, 0xcc012815, 0x00000b07,
0x82ffff02, 0x01530804, 0x24006b01, 0x00003600, 0x34363225, 0x010f2226, 0x34262206, 0x011f3236, 0x22262737, 0x32161406, 0x3236013f, 0x22061416,
0x1707012f, 0x011e3716, 0x21070614, 0x34352622, 0x013e3736, 0x01163233, 0x2d2c205f, 0x0e66173e, 0x271c1c28, 0x12151010, 0x832d3f16, 0x290d250f,
0x11261c1c, 0x24080f83, 0x3f3a295e, 0x35ebfe2c, 0x152f434b, 0x5d362d4c, 0x2c3e2b4b, 0x1c0e5715, 0x0e0e1c26, 0x2c160f13, 0x57152b3e, 0x200d820d,
0x2e0d830f, 0x563d039f, 0x354b013e, 0x27054b2f, 0x6c004c30, 0x1b2609b3, 0x00002800, 0xa04f3517, 0x23078506, 0x33152315, 0x03200388, 0x27054f5c,
0x013b1614, 0x156b3632, 0x80240082, 0x80165616, 0x15270782, 0x090c012a, 0x840c092a, 0x2a152b04, 0x56402a56, 0x55151555, 0x0a824056, 0x59150121,
0x0021059a, 0x08d36100, 0x08004027, 0x00001b00, 0x08234737, 0x45012e21, 0x33220921, 0x7b823315, 0x1812952a, 0x19192418, 0x2b400e67, 0x24077657,
0x2b555d0e, 0x06b44995, 0x2e265523, 0x05185901, 0x262e0126, 0x00565555, 0x2c0a2f45, 0x001a0011, 0x00390030, 0x16321300, 0x066b7417, 0x07010e22,
0x23666c83, 0x011e2109, 0x15221a87, 0x01783523, 0x36342205, 0x070e4b17, 0x30208b2e, 0x4055f00a, 0x20300a5b, 0x29363629, 0x20058242, 0x2414830d,
0x402b2b2a, 0x31168c30, 0x1d239501, 0x1c404040, 0x36010123, 0x123f3652, 0x0282121b, 0x2301aa23, 0x2314821c, 0x231d4040, 0x01201584, 0x00211685,
0xef531800, 0x00802108, 0x1e20a783, 0xa283a59c, 0x13248a94, 0x8001aaaa, 0x1c26768d, 0x121c1212, 0xef422aeb, 0x205f8508, 0x225f9e26, 0x41153335,
0x67950621, 0x402a4022, 0x6b950282, 0x40201983, 0x1f206fac, 0x0a514118, 0x9f226f94, 0xb118371e, 0x74940845, 0x208aab20, 0x280b177e, 0x001d0014,
0x23152500, 0x22018235, 0x47230627, 0x14210824, 0x08606a07, 0x55d50132, 0x12304040, 0x01483713, 0x36374801, 0x90060248, 0x20056342, 0x21178340,
0x8c6b0206, 0x13372306, 0x33506512, 0x00002205, 0x087b4f0c, 0x24119f61, 0x002b0027, 0xebcf183b, 0x05724615, 0x023b3522, 0x33218f82, 0x06ae7b15,
0x37231522, 0x2a06806d, 0x36322133, 0x2634013d, 0x822a9501, 0x82402000, 0xaa2a2303, 0x0683c0aa, 0x10881620, 0xaafec022, 0x2408c44b, 0x2a6a2aeb,
0x22038216, 0x826b2b80, 0x200c8605, 0x09df4f6a, 0x01000022, 0xc024a784, 0x08004001, 0x21359182, 0x17072737, 0x01212737, 0x4cd2fec0, 0x1e80801e,
0xd52e014c, 0x2008834d, 0x0883434d, 0x4901802d, 0x09000300, 0x21370000, 0x82372135, 0x1707282d, 0xff000180, 0x83628000, 0x2b402227, 0x820784a2,
0x0d00262e, 0xd5ff0000, 0x05375001, 0x0a000622, 0x31088d55, 0x0022001e, 0x002a0026, 0x003e002e, 0x23370500, 0xea482337, 0xca641806, 0x17084111,
0x085a9018, 0xaa550023, 0x250b41ea, 0xea562b26, 0x152b6b2b, 0x80220382, 0x05826a2b, 0x6b220c86, 0x58181318, 0x002009e2, 0xff21d783, 0x26b384ea,
0x000f000b, 0x84170013, 0x003125a7, 0x00380035, 0x2506476a, 0x013d2622, 0x64183734, 0x272407ef, 0x17152335, 0x27210382, 0x20048333, 0x06165121,
0x15072727, 0x33012f33, 0x2e198327, 0x1527013b, 0x1b7a011c, 0x1812fb40, 0x82610109, 0x821620ad, 0x2f220803, 0x015a2a19, 0x0f18121a, 0x7a917e0c,
0x25258f2b, 0x25402a2a, 0x1b650125, 0x401b86fe, 0x10d61218, 0x11825b0b, 0x19240286, 0x59192a2f, 0x0e2c1482, 0x2b7e0515, 0x256b2b2b, 0x252a2a65,
0x240abb41, 0x0100000a, 0x07bc4115, 0x95013524, 0xb441e7fe, 0x44012405, 0x85562b01, 0x1880200a, 0x3d090354, 0x00030040, 0x2500000c, 0x07231133,
0x21152117, 0x27371707, 0x2a2aab01, 0xd1fe4db4, 0x2e832f01, 0x00014025, 0x832a4d1e, 0x82002009, 0x82122000, 0x01002403, 0x182b01d6, 0x2014c78e,
0x0ae77b2b, 0x47004325, 0x82370000, 0x15352452, 0x7b173523, 0x0b820be1, 0x15332524, 0x07822123, 0x35012b28, 0x35230733, 0x03861733, 0x278e2520,
0x08057555, 0x80153325, 0x00ff0001, 0x16406a55, 0x1540162a, 0x4056fe55, 0x406a0140, 0xd52b2b55, 0x40552b2b, 0x2b2b4040, 0x822aebfe, 0x2303851b,
0x6b2b6b6a, 0x8405385e, 0x200b8a05, 0x21168a15, 0x8f51002b, 0x12240809, 0x32002400, 0x00004300, 0x020f2201, 0x1d161506, 0x16151401, 0x2f36013f,
0x22172601, 0x1f06010f, 0x36371601, 0x35210182, 0x21118226, 0x11872605, 0x34013d22, 0x17221f88, 0x30853633, 0x01012c08, 0x0a360707, 0x08030109,
0x4a0d0da1, 0x06078706, 0x4a0c0c4a, 0x23240d0d, 0x06030306, 0xd1fe0647, 0x08470204, 0x02064808, 0x84980102, 0x05483f1c, 0x05070607, 0x490d0c48,
0x07ab0106, 0x0c080b36, 0x03562929, 0xa2070a03, 0x07490e0d, 0x3c82068e, 0x233c0282, 0x07070524, 0x06480606, 0x4803010a, 0x04480a0a, 0x92040306,
0x06820703, 0x470d0d4b, 0x05225a82, 0x6e820e48, 0x00820020, 0x2a05c743, 0x005601d6, 0x0100000e, 0x71012b26, 0x01370ab1, 0xea170c78, 0x12191912,
0x5d0c17ea, 0x18124301, 0x1812d612, 0x82831101, 0x085f7336, 0x0400562c, 0x00001300, 0x33352325, 0x3e8e2717, 0xeaea5524, 0x428a294c, 0x6bd65523,
0x4c448b83, 0x3f29096f, 0x47004300, 0x00004b00, 0x487e8713, 0x0d870501, 0x37363233, 0x2b012e35, 0x15333501, 0x07062223, 0x3b011e15, 0x05d14401,
0x35231383, 0x85333523, 0x0723210d, 0x0a179118, 0x1812d52d, 0xc0161218, 0x18131555, 0x82551318, 0x180125b9, 0x15aa1512, 0x55200885, 0x15231483,
0x8316c055, 0x56563524, 0x55556a56, 0x015555d5, 0x40121895, 0x2a2b1813, 0x4013182b, 0x0c831983, 0x18860b8b, 0xd6402a26, 0x00404040, 0x260ef765,
0x001d0017, 0x82350031, 0x010e2bc5, 0x1614011d, 0x21152333, 0x99852335, 0x99842720, 0x83331521, 0x821d96ab, 0x217d82a2, 0x73820001, 0x80131828,
0x95158080, 0xa583c06a, 0x12824020, 0x12828b83, 0x82ab0121, 0x20ba82c3, 0x8293822b, 0x2b01262e, 0x2b968055, 0x91138f6b, 0x002b2497, 0x993b0037,
0x92172097, 0x07052f91, 0x37170717, 0x37273717, 0x33370727, 0x9d8f2315, 0x9a8bd620, 0x1fa8fe27, 0x2d1f2e2e, 0x2205842d, 0x928080ab, 0x25a48da7,
0x2d2e1e0a, 0x02822d1e, 0x2e1e2e24, 0xb082550d, 0xef540920, 0x00132408, 0x441b0017, 0x00210c1b, 0x419f9213, 0xbb94074f, 0x35331527, 0x2315013b,
0x20078227, 0x8f038633, 0x2b1521bf, 0x280c5c41, 0xc02b95fe, 0x2beb8080, 0x91018215, 0x2b6b23bd, 0xc08d152b, 0x2b2b2b23, 0x06214455, 0x29085f49,
0x00190056, 0x00390035, 0x94823700, 0x012e233a, 0x33013e35, 0x07171632, 0x22232627, 0x16140706, 0x17363733, 0x33372337, 0x33230384, 0x82373307,
0x23072303, 0x03823307, 0x23372323, 0x3d188307, 0x250809f5, 0x01474718, 0x22184053, 0x0d160d09, 0x01302511, 0x0e1d292d, 0x08200d3c, 0x03820620,
0x822a0d21, 0x0d2a2315, 0x01840720, 0x2b0d2208, 0x140d150d, 0x6b150616, 0x01080434, 0x50493f51, 0x07350408, 0x2b302f03, 0x3c030232, 0x2b2a2b55,
0x85008255, 0x19802006, 0x290ae348, 0x008001d5, 0x1300000f, 0x01832107, 0x27010f22, 0x24087e82, 0x6b133717, 0x0a22010e, 0x010edffe, 0x65751021,
0xa7114707, 0x800140c1, 0x52472e47, 0x55232626, 0x40014040, 0x06f74300, 0x3f84aa20, 0x00001427, 0x23013f25, 0x08d08227, 0x0f331735, 0x23012f01,
0x03210317, 0x00012707, 0x049b0c57, 0x0cd605a2, 0x2f2f0593, 0x52062b03, 0x8b1e5201, 0x8318498b, 0x37802a2b, 0x45240d0d, 0xa6fe1f01, 0x82002626,
0x55032000, 0x032408a3, 0x32001200, 0x212e9382, 0x1e372111, 0x36323301, 0x1523013d, 0xee4f0614, 0x36323505, 0x2f263435, 0x35012e01, 0x3717013e,
0x010e0726, 0x011f1614, 0x20050650, 0x08a48227, 0x6580fe55, 0x18151b06, 0x110b241e, 0x0862040b, 0x19213421, 0x0b0b0917, 0x1b091f01, 0x1c182211,
0x0c091417, 0x10190d0e, 0xfe800106, 0x130e3f80, 0x7b7c1b1b, 0x0a010a0d, 0x15100e08, 0x1a16181a, 0x09050409, 0x10020e08, 0x01011e12, 0x08182b1a,
0x110a0504, 0x820a0c0a, 0x8206209b, 0x02003003, 0x00420100, 0x0013000b, 0x00310021, 0x82470039, 0x08ee49f7, 0x27010e2c, 0x010e1632, 0x0737012b,
0xb5823733, 0x013e3725, 0x87263637, 0x0f16230e, 0x0e853301, 0x25941720, 0x0cf11f19, 0x12dc2608, 0x1312060b, 0x1e350b12, 0x16111a08, 0x020a070a,
0x3b1a1905, 0x101e1b7f, 0x02070c18, 0x040c1f0c, 0x081b1a13, 0x34258680, 0x1a071f36, 0x08091612, 0x1804020a, 0x023e3b1a, 0x49373749, 0x38058402,
0x0e200da8, 0x0726773b, 0x0a110709, 0x8c251c19, 0x3e0b0750, 0x25121441, 0x08178c3b, 0x04000022, 0xe0ff0000, 0x8b01d601, 0x26001d00, 0x4d004400,
0x1e010000, 0x14011d01, 0x14230706, 0x15013b16, 0x2105de79, 0xd2823527, 0x3d37d982, 0x07220701, 0x013e1614, 0x22272635, 0x34013d26, 0x34013b36,
0x84232726, 0x05b0511e, 0x0e012b22, 0x37393f82, 0x26343732, 0x16150622, 0x231a9801, 0x09981a23, 0x22015c06, 0x221a5c1a, 0x2a068201, 0x42231a70,
0x0d08010e, 0x9be30109, 0x2001211c, 0x51202b82, 0x06223282, 0x3885240e, 0x06825020, 0x391a2333, 0x060913fc, 0x13060801, 0x501a2327, 0x0d07231a,
0x201e8801, 0x27318223, 0x0913fb39, 0x13090707, 0x08089343, 0x08008821, 0x24000f00, 0x36130000, 0x06161716, 0x37271527, 0x35361615, 0x0e37012e,
0x36161701, 0x82173537, 0x2f4d08e5, 0x27013e01, 0x35372606, 0x01586d2b, 0x31415501, 0x022f392f, 0x0201c13f, 0x05520b03, 0x08730831, 0x04175110,
0x01033465, 0x3d664147, 0x73275139, 0x2173f221, 0x14443328, 0x39580226, 0x94051b31, 0x245ec506, 0x42053105, 0x08402105, 0x05234394, 0x01000223,
0x2085826b, 0x23798217, 0x05211521, 0x20060546, 0x0ac94421, 0x56015526, 0x5601aafe, 0x09f36018, 0x33825520, 0x2bd54024, 0x63181219, 0x2b23095d,
0x8500002b, 0x201b82cb, 0x20098280, 0x32cd8207, 0x35212500, 0x35230321, 0x21111733, 0x21152311, 0x83ab0135, 0x56803248, 0x56feaa56, 0x8000022b,
0x15ebfed5, 0xfe400115, 0x8a3e84c0, 0x0008243f, 0x7724000c, 0x03200a13, 0x23219a89, 0x056c4721, 0x14233328, 0x3e211716, 0x7e183501, 0xb42007ad,
0x1926a690, 0x12aa0112, 0xd0682b19, 0x2a012205, 0x27b182ea, 0x181813ea, 0x1912ea13, 0x82055c47, 0x430220b3, 0x6b280637, 0x19001500, 0x21130000,
0x21065842, 0xaf821733, 0x5b333721, 0x0b8305fd, 0x8001402c, 0x090c0c09, 0x00fe2b15, 0x0982152b, 0x56011e2f, 0x0c016b01, 0x0c09ea09, 0x15154001,
0x220a8540, 0x18c0c02a, 0x2209f762, 0x82390040, 0x012e28c3, 0x012e012f, 0x82010e23, 0x363221af, 0x66067245, 0x1f300579, 0x36021e01, 0x2e272634,
0x33363401, 0x26071732, 0x08060674, 0x15011e4b, 0x80010614, 0x2e0b2821, 0x271c2e0a, 0x1b273535, 0x11100c2b, 0x48361e33, 0x36480101, 0x2a103d28,
0x1d2f1608, 0x26251517, 0x15292024, 0x10150f1b, 0x1f010112, 0x301f2119, 0x1d1f0141, 0x011e1968, 0x01345034, 0x1626171b, 0x050a5019, 0x6126293b,
0x18011814, 0x0c060f24, 0x25233a20, 0x1201140d, 0x070f130e, 0x211e200b, 0x0a1f5c29, 0x1b000822, 0x1529be82, 0x37170733, 0x03353315, 0x05795a21,
0x30075059, 0x0123013d, 0x1ed14c2b, 0xfe2b2bd1, 0x139595d6, 0x05265c18, 0x80012b23, 0x2614822b, 0xabfe954c, 0x612b2a01, 0x9521070a, 0x31578300,
0xc001feff, 0x05009601, 0x00000b00, 0x27013f25, 0x03821f07, 0x2737172a, 0x239d0001, 0x9d23c0c0, 0x6b270584, 0x95951b7a, 0x837bb11b, 0x82002005,
0x00033100, 0x01feff00, 0x00ab01d6, 0x0012000d, 0x13000016, 0x2105e347, 0xe9472707, 0x011f2c08, 0x46072737, 0xc0455a1b, 0x824b1e2d, 0x506a3444,
0xc023381b, 0x193da83e, 0xab01191f, 0x95355b1b, 0x823b1e22, 0x51522b50, 0x951bca1b, 0x143da830, 0xff54131e, 0x01d92406, 0x82150080, 0x010e21e5,
0x16244d82, 0x27123617, 0x36080982, 0x1e17010e, 0x013e1701, 0x718c6b01, 0x1014291d, 0x0482ac0d, 0x4f55ab15, 0x21020147, 0x01d13f02, 0x56a32315,
0x0106310e, 0x173d0117, 0x140e191e, 0x2e212463, 0x823e8e01, 0x26ab8246, 0x018001d5, 0x85140040, 0x23152253, 0x07ca4715, 0x2335332e, 0x01012e35,
0x01302400, 0x2a2b402b, 0x01290382, 0x01400130, 0x2b802430, 0x2500826b, 0x3024802b, 0x3f840600, 0xc001d623, 0x05474f00, 0x24002024, 0xf1822800,
0x35331523, 0x209f8217, 0x20038225, 0x909f8217, 0x6f072055, 0xeb2b06ae, 0x1e41712a, 0x1ed6fe41, 0x8b461e40, 0x55f92a67, 0x01550001, 0x315555c0,
0x821a8240, 0x8c0f2002, 0x2b3f2177, 0x00200082, 0x02200082, 0xbf857f84, 0xc1961d20, 0x16320727, 0x35231517, 0x26ca8e3e, 0x01181224, 0x8e180156,
0x182a26d1, 0x126b6b12, 0x275b8718, 0x01ab01ea, 0x000a0080, 0x2006396c, 0x05134117, 0x82010f21, 0x05274150, 0x82151721, 0x372a08e9, 0x2d200001,
0x2b19bb07, 0x1bde3001, 0x2b402b80, 0x502b1b0f, 0x0180011b, 0x2bbb1e26, 0x14302480, 0x2b25801b, 0x651b8080, 0x48834f3a, 0x00820020, 0x01800123,
0x27734180, 0xfb848020, 0x00828020, 0xef424c83, 0xb63f8506, 0x8e518df3, 0x01df23f3, 0xc76101c0, 0x01002105, 0x2d079f7b, 0x23012e17, 0x17011e15,
0x3537013e, 0x2f5e0622, 0x261b2607, 0x62383862, 0x25058426, 0x24011501, 0x02822437, 0x28234c2b, 0x242701ea, 0xea012724, 0x0acf7428, 0x26051f42,
0x0024001b, 0x4e230100, 0x37200561, 0xa5640782, 0x5b64180f, 0xd5953709, 0x808055d5, 0x16d5d555, 0x191200ff, 0x00011219, 0xfe181812, 0x765a2a98,
0x2b012705, 0x2a2bd52a, 0x795a952b, 0x211d8406, 0x6418fe55, 0x01210967, 0x23c386d6, 0x13000026, 0x08af6418, 0x7e152321, 0x37230581, 0x65351716,
0x55201020, 0x402a5a88, 0x1e2d1e01, 0x0e12171e, 0x7b8a2b55, 0x84400121, 0x1601245f, 0x821e1676, 0x0101241f, 0x8b40750a, 0x0d575b7e, 0x84000b21,
0x652520eb, 0xeb8a1a91, 0x552b5522, 0xe9940282, 0x1983d520, 0xe8935520, 0x20080364, 0x22eb8296, 0x421e0014, 0xa25705ff, 0x6f3d2009, 0x03200581,
0x0805d655, 0x23013d28, 0x54400001, 0x0c1e2201, 0x0c098009, 0x5401221e, 0x56090c80, 0x01800c09, 0x40540195, 0x31144026, 0x090c0c09, 0x0a821431,
0x6cfe5422, 0x15270b83, 0x00000300, 0x8701eaff, 0x822d205f, 0x011e3661, 0x07061417, 0x2b061415, 0x3d262201, 0x35012e01, 0x3511013e, 0x23108633,
0x07010e13, 0x15212182, 0x22158233, 0x95012e37, 0x2d402c70, 0x2301013d, 0x231c561c, 0x943d0101, 0x1515217c, 0x012e7e82, 0x2d3d0174, 0x330d3421,
0x21340d33, 0x6b483d2d, 0x002b2e08, 0x00150011, 0x37000026, 0x3337013e, 0x06744635, 0x2e200882, 0x37210e84, 0x05d25f23, 0x07820720, 0x2e352082,
0x25015301, 0x2d56561c, 0x3c01013c, 0x1c56562d, 0xaaaa5725, 0x880783c0, 0x1cc02415, 0x5a290125, 0x29250571, 0x2a072501, 0x20058256, 0x55128738,
0x0f270bd7, 0x2e001300, 0x84010000, 0x6d172061, 0x352705f5, 0x2307012e, 0x82253317, 0x0657700e, 0x2005b34a, 0x6e248217, 0x0121051e, 0x316d836b,
0x151b0101, 0x01201a1f, 0x2a2e433c, 0x42d6fe04, 0x8e86241e, 0x2101012e, 0x3a0f2c19, 0x1b562530, 0x2b019bfe, 0x1c327b82, 0x1f062317, 0x2d20310e,
0xba2a553d, 0x22340d42, 0x9f823d2d, 0x1a1c252c, 0x2a2c0324, 0x1b552531, 0x9f446501, 0x01fa3e07, 0x008601c6, 0x0038001b, 0x14163700, 0x26272206,
0x36013f34, 0x14161732, 0x2736010f, 0x06955837, 0x86371421, 0x22208612, 0x58071706, 0x3420069d, 0xe2383082, 0x06110d06, 0x214b2020, 0x1f1f2155,
0x0a090120, 0x14332713, 0x074f134b, 0x132c1593, 0x1107a206, 0x5620070d, 0x1f1f4c20, 0x202c3182, 0x140a191b, 0x4c132733, 0x07463313, 0x14231694,
0x42001107, 0xab830647, 0x2f001d25, 0x53003b00, 0x072005ab, 0x27208f8f, 0x2e21c283, 0x21c29101, 0xc1821727, 0x07011e24, 0xb0822627, 0x011b2b26,
0x38671b65, 0x3821af8c, 0x23c48223, 0x6a021011, 0x4722158c, 0xc582561e, 0x080d1626, 0x06110226, 0x2105eb7d, 0xb78c3867, 0x08223828, 0x2a11070d,
0x158c9116, 0x231e472a, 0x39160707, 0x1117261d, 0xbf84bd83, 0x0100002f, 0x008001c0, 0x00160012, 0x2100001f, 0x06d97123, 0x33112323, 0x05fb6f15,
0x0a820520, 0x320a7867, 0x241d0155, 0x55550113, 0x29132c0c, 0xd5fe0136, 0x562a5555, 0x90310595, 0x11181811, 0x2b000190, 0x37011412, 0x00019b28,
0x1aa91880, 0x04002208, 0x84008200, 0x000f2a67, 0x002b0022, 0x0100002f, 0x0c067832, 0x82013321, 0x22272e78, 0x23350706, 0x34353315, 0x1d163236,
0x51981801, 0x23148209, 0x19129501, 0x3606c566, 0x01200112, 0x1b0e1e27, 0x113c3c08, 0x0fbc1119, 0x151e1414, 0x683b2c15, 0xb5330e51, 0x01271e71,
0xb3180d0f, 0x11110c6a, 0x01d46a0c, 0x82141f14, 0xb3d53102, 0x020000b3, 0xddff0000, 0x9601d601, 0x34000d00, 0x062f8b82, 0x2706010f, 0x26012f26,
0x16173637, 0x82272617, 0x820c8201, 0x07062106, 0x07281a83, 0x010e0706, 0x013e3716, 0x16211c82, 0x08238236, 0x37011e56, 0x08380136, 0x0c0c130f,
0x0f170e05, 0x10343511, 0x11341e8b, 0x06020306, 0x3b170702, 0x03071a3a, 0x3310050a, 0x0c060420, 0x03190e0c, 0x7c454515, 0x0f090114, 0x0101031f,
0x0c09050e, 0x09030a09, 0x15090b0d, 0x43a60816, 0x0b161235, 0x0e0e1c0b, 0x32010232, 0x15270582, 0x0940330f, 0x82020c14, 0x1b452b20, 0x09403917,
0x10060403, 0xdb600008, 0x01ab2808, 0x000800ab, 0x192a0021, 0x2e0c6128, 0x0e151716, 0x22212301, 0x3e352726, 0x74013b01, 0x25730702, 0x2e352405,
0x64000101, 0x92200561, 0x210c9d74, 0x1d441512, 0x1b6b2b05, 0x01800124, 0x18015524, 0x02821824, 0xa957bf20, 0x5e2b2009, 0x2b2805e9, 0x1b24016b,
0x241b2b2b, 0x280b3f48, 0x001e00ab, 0x01000027, 0x217c8f32, 0x886f012e, 0x1e372505, 0x07151701, 0x0b0a4318, 0x19750120, 0xc0122709, 0x24362401,
0x81862b01, 0x01219e85, 0x217a8a15, 0x8e18241b, 0x2b21072c, 0x439986c0, 0xab22066f, 0x0982ab01, 0x2b002228, 0x35250000, 0x819f1521, 0x34012e27,
0x14163236, 0x05756406, 0x930d0141, 0xd6152485, 0x9e0001d6, 0x18002088, 0x2809d380, 0x000800ab, 0x0025000c, 0x0a43632e, 0x96941720, 0x20050661,
0x10954115, 0x00ff6e23, 0x0d377601, 0x20169941, 0x41998e41, 0xff6f109d, 0x00062d09, 0x3700001e, 0x33352335, 0x33271735, 0x46056b43, 0x200805da,
0x11331533, 0x35231523, 0x95d53634, 0xc06b6b95, 0x12191912, 0x2a1812c0, 0x182ac0c0, 0x40564055, 0x08d0696b, 0x012b2b28, 0x122b2b56, 0x57700018,
0x2057840a, 0x28578625, 0x011d1632, 0x11233523, 0x08284733, 0x34113526, 0x55013336, 0x95205882, 0x5b825286, 0x58876082, 0xfe2b2b23, 0x235283aa,
0x56011218, 0x02215882, 0x25008200, 0x4001eb01, 0x8b4a0d00, 0x4cdd1807, 0x012e2507, 0x07010e07, 0x01330d89, 0x03846400, 0x516d022b, 0x2b026d51,
0x3f648403, 0x422a0155, 0x2a24053c, 0x40015501, 0x52331182, 0x6c02026c, 0x52846452, 0x2e405402, 0x3c01013c, 0x6454402e, 0x0b240c13, 0x25001900,
0x620d7d51, 0x33240691, 0x013d3632, 0xb17f7182, 0x23352308, 0x99620001, 0x12ab2811, 0x46780218, 0x8256562a, 0x62152002, 0x18251299, 0x785bab12,
0x7b1d8368, 0xff26054b, 0x01ae01e5, 0x5718009b, 0x01250813, 0x37270717, 0x82048227, 0x17152206, 0x31088207, 0x37173733, 0x07010717, 0x6a1f87a6,
0x5b1e6a88, 0x08831e69, 0x5aa61e22, 0x012d0a84, 0x1e88a69b, 0x1e88886a, 0x871f6a5a, 0x2109825a, 0x0a84a61e, 0x26060743, 0x009601c0, 0x82150011,
0x130021d5, 0x2d07c54a, 0x010e1523, 0x27012e07, 0x35333735, 0x03820523, 0x6c024027, 0x026c5252, 0x052b4155, 0x5555d629, 0x5555d5fe, 0x41802b01,
0x8021052d, 0x05294180, 0x402a8022, 0x092b5818, 0xa001c022, 0x1f215786, 0x25599a00, 0x15330737, 0x5f942337, 0x2b55d524, 0x64952b55, 0x75a00b23,
0x06eb4ba0, 0x8001b622, 0x1e20bd82, 0x7d496382, 0x33172905, 0x35270717, 0x23010e27, 0x3e21c082, 0x08dc5e01, 0x4e3bcb3c, 0x06101101, 0x6a206a11,
0x1a2e1206, 0x01014f3b, 0x36293b4f, 0x36365236, 0x0a828001, 0x122e1a23, 0x2a1b8206, 0x11100611, 0x3b3b4e01, 0x83012a4f, 0x3652211a, 0x2607b742,
0x009601d6, 0x86170013, 0x86072067, 0x06745d66, 0x33150730, 0x5440c035, 0x0c111d01, 0x12802a80, 0x0b823326, 0x1554012b, 0x019501aa, 0x26334054,
0x22148212, 0x821d110c, 0x5440250b, 0x002a2a7f, 0x1f20538d, 0x464d5395, 0x23352108, 0x2b255b92, 0x402a4040, 0x205f9240, 0x05bc5e3f, 0x23086386,
0x01d701eb, 0x000d0095, 0x25000043, 0x012b012e, 0x1415010e, 0x013e3316, 0x011e2737, 0x37363417, 0x07011e33, 0x37341182, 0x2627013e, 0x010e0706,
0x37011e17, 0x06071636, 0x36262726, 0x17220882, 0x0b830616, 0x4d413520, 0x017d0807, 0x212c034a, 0x2a272402, 0x022c2421, 0x112c1851, 0x0c02080a,
0x060d0108, 0x37360d18, 0x252a287a, 0x327a1f18, 0x2a170c19, 0x1823359c, 0x36974455, 0x1a360337, 0x2c110234, 0x01463218, 0x24c24601, 0x212f0127,
0x2b012a26, 0x13018020, 0x010a0811, 0xa9040f01, 0x19050608, 0x012e3682, 0x3b6c1d1c, 0x0713293f, 0x1e130d25, 0x37a03c51, 0x3f361327, 0x19112fa6,
0x13100b1d, 0x33324502, 0x28d38646, 0x01c001ff, 0x00030080, 0x08d38216, 0x17352723, 0x27072337, 0x11150607, 0x3f321716, 0x36371701, 0x01261135,
0x75808040, 0x78807203, 0x010a0108, 0x2b078402, 0x2dfd2d2b, 0x292d2d58, 0xbefe0802, 0x2c287682, 0x0703292d, 0x000a4201, 0x220c274c, 0x52140008,
0x9c610a99, 0x012e2d09, 0x1e170001, 0x1e1e2e1e, 0x01544017, 0x20074b71, 0x231083cb, 0x01ca1e2e, 0x61094c71, 0x0b260a8f, 0x20001700, 0x29442c00,
0x013e2314, 0x9a612e37, 0x16322a05, 0x22270614, 0x011e0706, 0x21148417, 0x4a180001, 0x5b2d169c, 0x1c12120e, 0x220e1212, 0x4705012e, 0x23028205,
0x02152e01, 0x07c44a18, 0x0e994a18, 0x7761de20, 0x2e702a06, 0x02563223, 0x23325602, 0x09fb472e, 0x2205bf4e, 0x82210014, 0xbf4b1899, 0x238a8313,
0x27012e07, 0x0e278e82, 0x162b0101, 0x822d1e1e, 0x543f22f6, 0x29f68202, 0x020a820a, 0x65068054, 0x0c821615, 0x2f3b0124, 0x0341221e, 0x4c942b12,
0x07191799, 0x4d345bb3, 0x4f791b0e, 0xeaff2907, 0x9601ab01, 0x1f000e00, 0x2f217582, 0x68951801, 0x37362807, 0x32033717, 0x82070616, 0x06b949fc,
0x01361728, 0x1bb5625d, 0x61830444, 0x481c2b34, 0x1e17ab1b, 0x104d1001, 0x40540114, 0x45153720, 0x1d83690f, 0x5b111038, 0x283407b3, 0x1a011b47,
0x4e0f2f1e, 0x401b3c1e, 0x15180154, 0xe7871144, 0x6f84d520, 0x14000b24, 0x57182a00, 0xd4840881, 0x22080b63, 0x74010e13, 0x172105be, 0x2ff28206,
0x26373632, 0x011e3727, 0x49360001, 0x08700801, 0x01220282, 0x50483649, 0x99230805, 0x60926002, 0x1f230102, 0x0101240d, 0x01496c49, 0x1f0d2401,
0x01950123, 0x994d3648, 0x4d990505, 0x4a544836, 0xfe3505a5, 0x303025eb, 0x0c231425, 0x16170f13, 0x17161e1e, 0x230c130f, 0x05836e00, 0x6b01ab2c,
0x13000600, 0x2d002000, 0x93823a00, 0x01271522, 0x13200182, 0x48058554, 0x272505fe, 0x15070622, 0x06555c1e, 0xae822720, 0x013e3522, 0x8205945f,
0x011d2319, 0xa5821614, 0x012e352f, 0xfe20ab01, 0x15012aea, 0x241c2b20, 0x56ba1824, 0x01012707, 0x0c0c120c, 0xa2821bdf, 0x24231382, 0x820c091c,
0x3114820f, 0x206b6b01, 0x012aebfe, 0xaafe2016, 0x2b1b2401, 0x0484241b, 0x090c7f23, 0x8322822b, 0x952b2004, 0x45002016, 0x3708065f, 0x001601cb,
0x0012000b, 0x33353700, 0x15333717, 0x27073523, 0x15332515, 0x33270733, 0x40402a2b, 0x40402b2b, 0x36400001, 0x6b355556, 0xaa4040aa, 0x6e40406e,
0x606055aa, 0xff293f84, 0x01c001d5, 0x000500ab, 0x083f8214, 0x17372738, 0x21351737, 0x1115010e, 0x37011f16, 0x34113736, 0x1e6ad526, 0xfe1ea24c,
0x011813d6, 0x12adad12, 0x6a6b1901, 0x1ea24d1f, 0x12180180, 0x0c17ecfe, 0x170c7474, 0xe3471401, 0x05f74308, 0x000f2908, 0x21271300, 0x2315010f,
0x23352115, 0x21353735, 0x012ba015, 0x6b752b16, 0xab6b0001, 0x2b0180fe, 0x80802a2a, 0xaa802b2b, 0x21057b56, 0x00820002, 0x01d60127, 0x00160063,
0x8287821c, 0x22c28231, 0x83352707, 0x0715238f, 0x08823717, 0x37071522, 0xab311084, 0x156b6b80, 0x7f7f1615, 0x6c566c16, 0x96961515, 0x3d008215,
0x644a1a5e, 0x0d7b3e3e, 0x4a0eaa0d, 0x3eac0e4a, 0x0d5e3e32, 0xe856770d, 0x0c190c0c, 0x4f4a000c, 0x82962008, 0x244508e5, 0x00002a00, 0x26343501,
0x010e1523, 0x07171615, 0x33013f15, 0x34373632, 0x07060726, 0x34352622, 0x37363536, 0x14151632, 0x2f151306, 0x01373601, 0x230a0b15, 0x7c10011d,
0x1c09732f, 0x16170123, 0x0b0a0d06, 0x3f048402, 0x165e2f98, 0x1a660110, 0x062f0b0a, 0x111a1520, 0xd62a2ce9, 0x20151c24, 0x0c010a40, 0x0304030a,
0x09290682, 0xf4fe0503, 0x07af2a2c, 0x21e1820c, 0x04840100, 0x5601d030, 0x00001500, 0x23012e01, 0x33071721, 0x03833337, 0x045a3220, 0xb7013d06,
0xfe17290e, 0x4e3024d6, 0x4e2f4230, 0x0c0d282f, 0x274e2a02, 0x31010a04, 0xde4c1212, 0x0f250082, 0x17b2c20d, 0x843e822c, 0x01d62a4b, 0x0025006a,
0x2f361300, 0x05fc4101, 0x17060731, 0x011f0615, 0x37352315, 0x013d013e, 0x87272307, 0x362e080e, 0x06015d27, 0x545f7c28, 0x01042276, 0xa7210401,
0x60010223, 0x08026f0d, 0x082c7f2d, 0x09240102, 0xd1073005, 0x032107d1, 0x0306f006, 0x08820721, 0xc2040329, 0x0ba3f4f4, 0x82083608, 0x820b2002,
0x09df4d6f, 0x33000325, 0x64003700, 0x17290667, 0x34352335, 0x35012b26, 0x82768223, 0x06222703, 0x1523011d, 0x03831533, 0x3b161424, 0x74611501,
0x36322406, 0x8233013d, 0x2307242b, 0x82373335, 0x6b012f1c, 0x2b55d6d6, 0x2b2b1218, 0x122b2b2a, 0x00822b18, 0x80280c8a, 0x802b2a2a, 0x56d65580,
0x2b201b92, 0x21833585, 0x5b519682, 0x01c02206, 0x06c75540, 0x21130023, 0x24018815, 0xfe800140, 0x25038880, 0x2a402b40, 0x34822b40, 0x30058b41,
0x00eb006b, 0x37000002, 0x6b953717, 0x6b6beb6b, 0x06a34100, 0x2b012b22, 0x01261783, 0x2b011707, 0x03836b6b, 0x33880020, 0x1b854020, 0x27013f26,
0x556b6bd5, 0x4b863389, 0x17013f22, 0x80204b82, 0xff211786, 0x067f4eea, 0x21010036, 0x11150622, 0x36322137, 0x26341135, 0xaafeab01, 0x01551812,
0x1827f782, 0x12189501, 0x545580fe, 0x87530524, 0x0003270d, 0x00150007, 0xbc642500, 0x056f5406, 0x15214388, 0x2000822a, 0x24488996, 0x2bab55eb,
0x224b9ad5, 0x831a000c, 0x33372b4b, 0x36373505, 0x0f16011f, 0x948d1301, 0x2ba0802d, 0x9300ff75, 0x07250807, 0x89f69207, 0x2b952c58, 0x0692362b,
0x08072606, 0x8d000193, 0x6e022060, 0x0423080f, 0x76001200, 0x558d0565, 0x364a6b25, 0x8a16604a, 0x4060234c, 0x468f8060, 0x47890020, 0x47830d20,
0x240d2d41, 0x11072103, 0x0b324121, 0xd5fe1225, 0x4156012b, 0xfe250c38, 0x2b012bd6, 0x0adf4700, 0x07000326, 0x19000b00, 0xb155f183, 0x23072105,
0x41073655, 0x6b290841, 0x2a562b2b, 0x2b2b552a, 0x219f89eb, 0x00832bd5, 0x180f9341, 0x2309ff5a, 0x0100000d, 0x210b9377, 0x4a4d0117, 0x2b012608,
0x126b0155, 0x05575518, 0x8b935520, 0x35210124, 0x03861521, 0x458d3720, 0x6d188020, 0x0124092a, 0x12185500, 0x18219183, 0x22528312, 0x826b2b15,
0x89ab2001, 0x08974e58, 0x2005db50, 0x051d4c11, 0x200d3341, 0x20678205, 0x20f18417, 0x0c3a4135, 0x01c3fe29, 0xab00ff00, 0x8355abab, 0x0c42416f,
0x402b9524, 0x4341552b, 0x05035a0c, 0xc7511a20, 0x1107290a, 0x15333634, 0x11213711, 0x15246083, 0x01231533, 0xfe219884, 0x24b282d5, 0xfe3d0119,
0x215e83d5, 0x5883c0c0, 0x1200ff32, 0x80015519, 0xfe2a1812, 0x000119e7, 0x2a2b2b40, 0x420ae741, 0x272105d9, 0x21a38215, 0xbb8d3f15, 0x55800122,
0x2b209f82, 0x25099341, 0xab454595, 0x61824444, 0x460c2743, 0x96260537, 0x0c009601, 0xa3501d00, 0x051e5108, 0x010e1723, 0x235a8207, 0x3327012e,
0x2705ba49, 0x241b0001, 0x36240101, 0xb0260483, 0x2a384701, 0x5a4e4738, 0x95013407, 0x1b801c24, 0x801b2424, 0x39c0241c, 0x41410a51, 0x5539510a,
0x5b440572, 0x00963b08, 0x000d0005, 0x25000026, 0x36270714, 0x35270735, 0x1632013e, 0x07012717, 0x68890627, 0x37323324, 0x73820727, 0x01273528,
0x091a1395, 0x70848031, 0x6501e532, 0x1e19591b, 0x0149362a, 0x2e420124, 0x0e23171a, 0x24088b82, 0x2026d580, 0x0317141b, 0x241c047f, 0xfe2b1c24,
0x0e591b9b, 0x09464605, 0x3c30374f, 0x0102230b, 0x80101b24, 0xcfb91800, 0x00962608, 0x001b000f, 0x217f8228, 0xe182010e, 0xa7562320, 0x84272008,
0x14072287, 0x20158206, 0x05fb7017, 0x2505a548, 0x42017101, 0x7182425c, 0x83364921, 0x01af2579, 0x010e160e, 0x1a200484, 0x27090941, 0x3c3c30d5,
0x094f3730, 0x822a7784, 0x0b0f0f0b, 0x0e0e0b84, 0x7d823e0b, 0x96838020, 0x241b8023, 0x26f98200, 0x01c0ff00, 0x82ab0196, 0x00132283, 0x05255b17,
0xa4722520, 0x23888706, 0x23353307, 0x37230383, 0x54373632, 0x1e21065d, 0x21108301, 0xf4829501, 0x54268889, 0x2a552b2b, 0x8289152a, 0x2b2b5028,
0x3b3b31eb, 0x85853831, 0x2b2bf324, 0x8f41c02b, 0x18eb2009, 0x2b08c744, 0x008001ab, 0x00270006, 0x13000030, 0x23297482, 0x0717013e, 0x011e1523,
0x826f8232, 0x073323f7, 0xf8832317, 0x22010e2b, 0x23352726, 0x33272627, 0xb5471806, 0x24c03608, 0x01aa0130, 0x16126130, 0x18241801, 0x24300101,
0x2b16162b, 0x31098312, 0x16013048, 0xa6061012, 0x0c094d06, 0x0c0c120c, 0x1d828001, 0x9030242a, 0x191215af, 0x256a1219, 0x15201e82, 0x30270784,
0x10af1525, 0x5e2a1616, 0x002005d2, 0x06250082, 0xd5ff0000, 0x2a978301, 0x0017000f, 0x0026001c, 0x563a0032, 0x9f4f061d, 0x20878306, 0x20ad8337,
0x83ae8327, 0x21b28792, 0xb1873727, 0x07301a82, 0x32331614, 0x2b062737, 0x1b65011b, 0x232f033b, 0x1624af82, 0x4e060b12, 0x59290782, 0x501f0c3a,
0x06422b01, 0x21bc8522, 0xbb868e39, 0x2a0a2429, 0x07090cba, 0x56031e05, 0x3a22051c, 0xd9822d22, 0x0b22a582, 0xc382770f, 0x0f0c3a27, 0x162a0491,
0x23c784bf, 0x16633825, 0x0429c682, 0x2a1c1924, 0x1e030c09, 0x44be8205, 0xb349069f, 0x00072405, 0x820f000b, 0x15332bbb, 0x35231723, 0x23153733,
0x07821335, 0x83c02b21, 0x83d52000, 0x80012304, 0x0182d5c0, 0x6bfec023, 0x0c1f4fc0, 0x18000f21, 0x20128345, 0x05ff4717, 0x75183520, 0x55200bb5,
0x280ac760, 0x2a2a553d, 0x552a2a56, 0x05c44555, 0x2408556c, 0x802b5555, 0x2502822b, 0x00555555, 0x67820100, 0x96010033, 0x0300d600, 0x21250000,
0x95012135, 0x2a01d6fe, 0x069f4fab, 0x01000022, 0x1320bb85, 0x5b05e345, 0x01230f8d, 0x75d6d66b, 0xab220b21, 0x205fab2a, 0x2a012207, 0x08ef5213,
0x6182d620, 0xfb830320, 0x11752520, 0x203f820f, 0x0aac746b, 0x752aab21, 0x95820e0c, 0x2406df47, 0x0017000b, 0x1a494e1b, 0x69523320, 0x225c8415,
0x52d6d6c6, 0x02251365, 0x785b5b78, 0x20ea83e8, 0x27f31800, 0x55032009, 0x2322050d, 0x764c3715, 0x23073005, 0x011e3315, 0x23153315, 0x23070614,
0x8235012e, 0x363422c2, 0x4c6e8237, 0x332805b6, 0xc0aa5501, 0x12181812, 0x1415f318, 0x2b2bd523, 0x054862ab, 0x2f062771, 0x090c0101, 0x010c092a,
0x1218012a, 0x001912d5, 0x2408e741, 0x009601eb, 0x2de18403, 0x35211121, 0x07062221, 0x3b011e11, 0x7e821501, 0x18055869, 0x231b51c5, 0x2a00016b,
0x23051247, 0x2b2a2a2b, 0x2806e648, 0xff000003, 0x010002d5, 0x215784ab, 0xe3550024, 0x011d2407, 0x842b0614, 0x823520d1, 0x05cb45c5, 0x11273324,
0xd6821123, 0x01152130, 0x01abfed5, 0x19191255, 0xab2b8012, 0xe555802b, 0x83552005, 0x55802153, 0x4a083555, 0xd6270548, 0xff2b1812, 0x82000100,
0x822b2023, 0x850420c7, 0x800129cc, 0x11000800, 0x29001a00, 0x210a4750, 0xfe732223, 0x27088806, 0x0f062125, 0x17161701, 0x2007ad49, 0x05e67395,
0x71717820, 0x2e068305, 0x0112121c, 0x16c0fe07, 0x0d73730c, 0x823e0117, 0x73a02092, 0x0b850be5, 0x334de020, 0x42122006, 0x0321056f, 0x05e74c00,
0x18004026, 0x2f002600, 0x27248182, 0x17331523, 0x2c079e62, 0x1506013f, 0x3632011e, 0x07272634, 0x057d500e, 0x16323727, 0x17152317, 0x07db562e,
0x5e567431, 0x29ac2a4d, 0x24293636, 0x012d0733, 0x82523601, 0x06b82c0a, 0x1e17121b, 0x1b12171e, 0x82f53d06, 0x1e2d2608, 0x2b55eb1e, 0x251c832a,
0x1b222d01, 0x2f820505, 0x0136522f, 0x01141071, 0x1e2d1e01, 0x20101501, 0x82088326, 0x0000230b, 0xc3440003, 0x00aa2905, 0x000d0004, 0x13000012,
0x33207a82, 0x2c06ee50, 0x15372135, 0xeb012e33, 0x96025341, 0x05cc5096, 0xc0aafe2b, 0x01530296, 0x435d09a9, 0x05095180, 0xa9d45524, 0x3d825d43,
0x10264787, 0x1b001600, 0x07452000, 0x27333d0d, 0x013f3423, 0x3e272315, 0x06151701, 0x1e372707, 0x2b231701, 0x1b65011b, 0x223c171b, 0x502d4882,
0x9204252b, 0x39146b04, 0x900901e2, 0x44708304, 0x192305d4, 0x82011816, 0x2b552e79, 0xa9871111, 0xd020196c, 0x8f1b1f55, 0x207d82d4, 0x22bb8700,
0x829401d6, 0x00092f7d, 0x0100002b, 0x011e3523, 0x37013e07, 0x0d781715, 0x36322305, 0x1b46013d, 0x011d2108, 0x2e231482, 0x83352701, 0x01332a03,
0x2f26562b, 0x262f01d5, 0x08038280, 0x37240132, 0x25300124, 0x2a15152a, 0x3c011912, 0x013c2d2e, 0xd6012f26, 0x08682b01, 0x39272739, 0x276b6808,
0x1b170939, 0x6b1b2424, 0x15013024, 0x6b121816, 0x24059557, 0x27390917, 0x628a8240, 0x942c084b, 0x15001000, 0x1d001900, 0x34002700, 0x840d0341,
0x83372076, 0x152732a2, 0x15173627, 0x15073327, 0x3217011e, 0x06273736, 0x29a58a37, 0x011b2b27, 0x0e1f1b65, 0x86851e30, 0x82b12521, 0x387f2fa9,
0x4444a117, 0x1b240156, 0x48072015, 0xad886216, 0x27412b20, 0x171e2605, 0x3d01011c, 0x838f842d, 0x574127b5, 0x04cc1838, 0xb482a944, 0x12170125,
0x864d1449, 0x2a4421b7, 0x22093b4e, 0x8218006b, 0x2317230c, 0x03872327, 0x15010e23, 0x06da6511, 0x80011126, 0x2b2b402b, 0x2a260382, 0x162a402a,
0xcc571812, 0x6b012205, 0x59008456, 0x01200ae3, 0x24094f4d, 0x008001b2, 0x38f58211, 0x17371533, 0x27071707, 0x07352315, 0x37273727, 0x872aeb17,
0x15868615, 0x2b068487, 0x80018616, 0x4d254d9b, 0x9b4e254e, 0x07650786, 0x000f220a, 0x0a6f4a21, 0x3526222a, 0x33363411, 0x17353313, 0x27254782,
0x15233507, 0x21598227, 0x295c3717, 0x18132b07, 0x2a801318, 0x3c3c153d, 0x06863d15, 0x270b225c, 0xd5fe1813, 0x23252346, 0x46200282, 0x41180786,
0x1d200c93, 0x23296b82, 0x22061415, 0x37363426, 0x12586132, 0x40550124, 0x4f612e1e, 0x18402005, 0x2b0acc40, 0x17750001, 0x1e2d1e1e, 0x55760b01,
0x2008b05c, 0x0533452a, 0x2209af6a, 0x841d000d, 0x5d618dcd, 0x15230e13, 0x8b112111, 0x0a015d65, 0x66972a20, 0x0c134c18, 0x2007634e, 0x2ccb8219,
0x26152335, 0x14010e23, 0x3d363216, 0x05e41801, 0x5501240b, 0x82120e55, 0x1e2e21b2, 0x220ee37b, 0x82010b76, 0x171e22c7, 0xacb21875, 0x0100220b,
0x28008200, 0x80019601, 0x00000d00, 0x27538801, 0x35333537, 0x10100001, 0x24055244, 0xc6800155, 0x05844406, 0x4740e021, 0x1b6408af, 0x46338406,
0x322505a0, 0x35333736, 0x2b3a8623, 0x460a3020, 0x40300a46, 0x555b0a30, 0x23244085, 0x231c401c, 0xc0200482, 0x02214382, 0x23778700, 0x001b0012,
0x458b7986, 0x1e071123, 0x05ae4101, 0x4c8b8783, 0x0d546020, 0x87938405, 0x00012252, 0x4f4118f5, 0xf6ff290c, 0x8001c001, 0x13000500, 0x17205b83,
0x05229282, 0xf6611707, 0x3e2a0805, 0x37173701, 0x55400001, 0x861cdcfe, 0x01013327, 0x36272936, 0x011b6502, 0x79407980, 0x861b2040, 0x29273602,
0x33010136, 0x07656527, 0x82962008, 0x8212204b, 0x11332349, 0x0f4b1533, 0x33352106, 0x32214882, 0x20488317, 0x83e5845b, 0x102026ec, 0xff800110,
0x23e68500, 0x0601231c, 0x200a5f41, 0x82e59318, 0x142f4198, 0x220e3141, 0x4115406b, 0x002a0933, 0x001000c0, 0x37000019, 0x30410622, 0x012e210b,
0x23083141, 0x0a311fe0, 0x31288e82, 0x5b0a313e, 0x1f310a5b, 0x25053041, 0x401d23c0, 0x0484231d, 0x2c413520, 0x05ef4e08, 0x92019923, 0x20df8200,
0x20d28225, 0x070b792e, 0x3505d553, 0x4a391501, 0x3f540201, 0x01025440, 0x01803646, 0x0868802a, 0x0d823a52, 0x40540237, 0x540a5138, 0x00002a2a,
0xff000002, 0x01d901ea, 0x00080092, 0x5e978227, 0x25200724, 0xe8824b8a, 0x12723420, 0x15332806, 0x35233521, 0x5760013e, 0x01210549, 0x2d5e8887,
0x090c15ab, 0x150c0940, 0x39405501, 0x3c57d54a, 0x89262006, 0x56402d6c, 0x090c0c09, 0x532a6a56, 0x00005208, 0x24065b41, 0x009601a0, 0x330c8205,
0x17371703, 0xa0000137, 0x0f91910f, 0x7afe9501, 0x0f40400f, 0xee289b85, 0x9b01d001, 0x1b000b00, 0x27209b82, 0x03842482, 0x07170723, 0x23088437,
0x27071737, 0x27230c82, 0x861eee07, 0x973c2700, 0x2d428e3d, 0x0e822dd3, 0x1e1e5b2c, 0x2ed32e1f, 0x1f1e7c60, 0x0f821f1f, 0x973c1e24, 0x1b84333c,
0x821e1f21, 0x821e201b, 0x4e612025, 0x8020083b, 0x24226384, 0x47410000, 0x4413200b, 0x172c0e05, 0x1632013e, 0x26220614, 0x49360001, 0x2107447a,
0x0c44cb49, 0x18132805, 0x01401318, 0x82304830, 0x6a402002, 0x05850555, 0x7b443f20, 0x18132309, 0x1f8324c0, 0xfb783020, 0x00962608, 0x001a000a,
0x2a778226, 0x34373627, 0x15163727, 0x6a270614, 0x142506ea, 0x012e0717, 0xc1641835, 0x2e6a360e, 0x2e0c0118, 0x337e171e, 0x18132e26, 0x2e183024,
0x54011714, 0x09034b40, 0x2e56792f, 0x13182418, 0x1f33262e, 0x2e1eea36, 0x2a92820c, 0x36152e18, 0x4154401f, 0x875b7802, 0x82002027, 0x82042000,
0x01003303, 0x006b01d6, 0x0019000f, 0x00370025, 0x011e0100, 0xa3181115, 0x372b096f, 0x15233517, 0x33152327, 0x82371735, 0x05204409, 0x83352321,
0x54232015, 0x1e25064a, 0x32013b01, 0x06605036, 0x1812aa3e, 0x1a601218, 0x371a1a36, 0x35555584, 0x1aca3535, 0x1b181b18, 0x55090c01, 0x6b010c09,
0x270b9046, 0x01181200, 0x4b4b80eb, 0x65300282, 0x171b801b, 0x6b50181b, 0x604b4b60, 0x0c0c096b, 0x05209782, 0x9b830382, 0x73768020, 0x00242708,
0x35212500, 0x67531521, 0x82072006, 0x27372207, 0x28018807, 0x33161411, 0x35363221, 0x05446d11, 0x00829620, 0x9696c025, 0x822324c7, 0x20048401,
0x051c4723, 0x9540d529, 0x2a2a802b, 0x8924b180, 0xabfe2700, 0x12191912, 0x73825501, 0x3a051746, 0x006701c2, 0x0032001d, 0x13000047, 0x011e3630,
0x2f020e14, 0x26272601, 0x820e1606, 0x36342106, 0x36050c6b, 0x1e373626, 0x06160701, 0x26061407, 0x37013e34, 0x34022e35, 0x89071636, 0x36322113,
0x83081386, 0x150e0ee2, 0x050d0f0a, 0x050a313d, 0x0e090802, 0x07110218, 0x060c6d12, 0xbc0a1401, 0x01010a1b, 0x160e1b0a, 0x01011b03, 0x0e16031b,
0x0108174c, 0x0d170801, 0x03130216, 0x16021303, 0x021d010d, 0x30382d0e, 0x2e030214, 0x0e030625, 0x1a02122f, 0x011d2f2f, 0x02065a07, 0x40113732,
0x07075b3b, 0x08013b5b, 0x4c02130a, 0x4d3a013a, 0x080a1302, 0x07472d23, 0x01304607, 0x31120b08, 0x2f370137, 0x070a1201, 0x29096766, 0x0008006b,
0x0034001e, 0xa6452500, 0x33272f07, 0x011d011e, 0x15233523, 0x07173533, 0x16702335, 0x23012605, 0x013d012e, 0x25138233, 0x37271523, 0xcf4c3315,
0x62012005, 0x992e06c1, 0x2a181296, 0x40402b96, 0x1818122b, 0x0d8b6801, 0x07856418, 0x18018126, 0x6b404012, 0x18262383, 0x18126b12, 0x108eabfe,
0xff209384, 0x20051b47, 0x2a93821a, 0x0100002e, 0x1d062223, 0x18010e01, 0x2909b66e, 0x35231533, 0x11233533, 0xd84c1721, 0xc0461806, 0x3357820d,
0x18010c0a, 0x0c011824, 0x2aaa400a, 0x2b000155, 0x5601aafe, 0x20069a53, 0x269c8356, 0x30121940, 0x820c1306, 0x0c122d0a, 0xaa300613, 0x00ff2baa,
0x2a56012b, 0x8208c053, 0x44002025, 0xe728056f, 0x9901c001, 0x69004000, 0x08068b64, 0x16150724, 0x011e011f, 0x3d363237, 0x23272601, 0x14150706,
0x26012f06, 0x3f34013d, 0x011f3601, 0x14011d16, 0x1183010f, 0x07220582, 0x11820622, 0x18823220, 0x26353722, 0x172d2482, 0x16140622, 0x07011e17,
0x26222316, 0x083d8327, 0x1606152f, 0x34363217, 0x3634022e, 0x17163237, 0x32013b16, 0x01263536, 0x9e080900, 0x10010110, 0x070f0f29, 0x04011916,
0x14010414, 0x02022c11, 0x2c02869f, 0x02022803, 0x0207050c, 0x08350502, 0x3f2a8512, 0x2322089e, 0x25212525, 0x31010114, 0x0101161f, 0x01041504,
0x29263322, 0x0f134923, 0x0317171b, 0x23084482, 0x01040302, 0x5b040199, 0x13b8130a, 0x0407170a, 0xb5181901, 0x04010104, 0x080d0bb5, 0xb8020219,
0x015c0103, 0x03230282, 0x820202b8, 0x01192208, 0x24608201, 0x051f0403, 0x2d318505, 0x1a83045b, 0x04021532, 0x101a070c, 0x37820310, 0x01241530,
0x0815331c, 0x010e1009, 0x0304100d, 0x4a183802, 0x02290d67, 0x00001000, 0x25173525, 0x86581822, 0x013d2808, 0x752b0127, 0x6f13cbfe, 0x80230609,
0x187575eb, 0x21080b50, 0x3f8380d5, 0x04830320, 0x01c00124, 0x3f830080, 0x41821620, 0x012f3323, 0x734b1833, 0x11352907, 0x11173634, 0x35233521,
0x20084782, 0x80d5c075, 0xd6fe1219, 0x13181813, 0xeb952a01, 0xd5802075, 0x12191912, 0x18132a01, 0x95d6fe2b, 0x204f9195, 0x234f921c, 0x33353313,
0x23245082, 0x33152315, 0x6823558d, 0x8240402b, 0x21588c02, 0x1283c0fe, 0x18002b21, 0x85098f5d, 0x852220a7, 0x91212059, 0x820320a9, 0x2162825c,
0x60823315, 0x75400127, 0x0001eb75, 0x09684280, 0x2b6a9626, 0x2b2b2a2b, 0xbc84638c, 0x8200ff21, 0x45198218, 0x13410897, 0x00142207, 0x26c59218,
0x35211517, 0x41331505, 0xfe221117, 0x5c8cc0d6, 0x2b2bc025, 0x462b2b55, 0x098308e7, 0x0b000729, 0x21370000, 0x82072135, 0x82372003, 0x016b3148,
0x2bd6fe2a, 0xd5fe2b01, 0xab2b0155, 0xab2b802a, 0x2909af72, 0x2b01d601, 0x1e000500, 0x33823300, 0x1526da83, 0x07061425, 0x0b463523, 0x72332007,
0x232b0510, 0x07151632, 0x34352315, 0x83013b36, 0x07477425, 0x2a55153a, 0x18550155, 0x2b565612, 0x1256562b, 0x0e0e1218, 0x1880aa12, 0x55552b12,
0x25051950, 0x2bab552b, 0x0b822bd6, 0x2b2bfe82, 0x1218012b, 0x12120e20, 0x822b200e, 0x820e842b, 0x452b201a, 0xc0280897, 0x0f008001, 0x23001f00,
0x20117d4c, 0x05917317, 0x07f69618, 0x33072724, 0xa9682315, 0x1280250b, 0x2a121919, 0x2a210484, 0x0da0682a, 0x75825520, 0x8306a750, 0x802b2106,
0x2f0c0f7a, 0x00130003, 0x002c001c, 0x25000030, 0x01112111, 0x1124d982, 0x2123010e, 0x2b05f54c, 0x21110737, 0x012e2115, 0x33211127, 0x6505805e,
0x342a05db, 0x33151736, 0xfec00135, 0xc18201d5, 0x61820120, 0x12d5fe2a, 0x55121818, 0xabfe5501, 0x0121ed82, 0x82168600, 0x12182506, 0x2b01552b,
0x56202982, 0x0c694b18, 0xfe560124, 0x11822bab, 0x18550123, 0x82bd8412, 0x802a239c, 0xc3690080, 0x229b830a, 0x86270023, 0x0fad4899, 0x25069a41,
0x012e2307, 0x9086013d, 0xd6fe9522, 0x0bd75818, 0x11418020, 0x19122705, 0x2b2a1219, 0x50182a01, 0x19410fb5, 0x217c830d, 0x00820002, 0x9f4b0120,
0x05f55a05, 0x2512636f, 0x2b2b2b01, 0x894d6a56, 0xab55220a, 0x0e814d2b, 0x4f180420, 0x19220c17, 0xc3822200, 0x21112124, 0x4c182135, 0x372f099f,
0x03012e11, 0x15233533, 0x11232733, 0x8217011e, 0x054f411c, 0x41054941, 0xa7240657, 0xeb2b552a, 0x22052641, 0x1855abfe, 0x260f154f, 0x2ad5d6fe,
0x52abfe2a, 0x03200560, 0x8f54ba82, 0x87192009, 0x09af4471, 0x34113523, 0x25718526, 0xd6fe9501, 0xc18a2a01, 0x562ba726, 0x2a012b2b, 0x0cb74918,
0xd6d5fe23, 0x0d03452b, 0x24001422, 0x1d535582, 0x090c4308, 0xf8541520, 0x19402510, 0x80552a12, 0x55230483, 0x8a551912, 0x12d52369, 0xfd422b18,
0x89208208, 0x206b831a, 0x08374104, 0x18001426, 0x31002800, 0x23246f82, 0x013e3335, 0x2805587d, 0x23153315, 0x011d0622, 0x052b4733, 0x180d4c41,
0x22086450, 0x42566b01, 0x5521067d, 0x21088255, 0x50185580, 0xab241a6e, 0x1218012a, 0xfa832482, 0x412b5521, 0xcc420f5f, 0x05ff5705, 0x5b410020,
0x21978505, 0xcc7d2500, 0x23272108, 0x7041958e, 0x4001280d, 0x19122a55, 0x83551219, 0x418a8206, 0x80210d77, 0x827d842b, 0x12182377, 0x80412a56,
0x0000210e, 0x280a2750, 0x00280018, 0x06142500, 0x05a64823, 0x410da244, 0x1225127f, 0x18120e0e, 0x24758213, 0x1355552a, 0x08814118, 0x19181328,
0x12120ee0, 0x9244200e, 0x0e85410a, 0x26098341, 0x00210018, 0x82350025, 0x2e352577, 0x36322701, 0x83098441, 0x331524f2, 0x42253632, 0x252007ba,
0x2912dd42, 0x12016b01, 0x01120d0d, 0xfd821801, 0x552b2b27, 0xfe181255, 0xe75118d6, 0x41802008, 0xab211095, 0x842c8220, 0x2b2a269a, 0x192b2a2b,
0x05d942bc, 0x2110f542, 0xef450000, 0x00802608, 0x001c0018, 0x22a1832c, 0x78232634, 0x232006bd, 0x15209d85, 0x3e210782, 0x14554901, 0x0e124025,
0x8219120e, 0x2a2a2195, 0x19219582, 0x0e0d4355, 0xa4458020, 0x09224105, 0x99414320, 0x4302200f, 0x0922086b, 0x7d821900, 0x23352326, 0x33153335,
0x23111473, 0x552b4001, 0x7f41cb82, 0x19122708, 0x80565519, 0x2f445656, 0x001d221c, 0x1a2f4426, 0x15216b82, 0x08784133, 0x27123344, 0x2b2b2b92,
0x00ff552a, 0x231b3644, 0x80805555, 0x41055e41, 0x03240a4b, 0x1d001300, 0x841a3744, 0x103b4479, 0x2a206e82, 0x2241e482, 0xd5fe260e, 0x805656d6,
0x0cc34200, 0x89521120, 0x066a4b06, 0x4407c342, 0x3243113c, 0x80552107, 0x210b3841, 0x2d430001, 0x41802008, 0x1121183f, 0x06694b00, 0x2e352528,
0x35012b01, 0x0e423533, 0x21ac4206, 0x2b121825, 0x42558056, 0x2a2521a6, 0x2a2b1813, 0x1ca04280, 0x24098b45, 0x00150011, 0x059f4225, 0x98428d8b,
0x12192217, 0x42f4822a, 0x2b291494, 0x2b2b1812, 0x012b2b80, 0x108e4218, 0x270ac341, 0x00230013, 0x01000027, 0x2944f582, 0x051f4707, 0xb0753720,
0x33032310, 0x9e442335, 0x06a34407, 0x23098d45, 0x2a2abc19, 0x48087041, 0x74410641, 0x00ff250c, 0x0500002b, 0x2408af45, 0x00170003, 0x2012821b,
0x21eb8234, 0x7d831533, 0x080c4318, 0x22233527, 0x14011d06, 0x1db44516, 0x2b2b1522, 0x2606b545, 0x1256562b, 0x44bd1818, 0xfe20101f, 0x08245618,
0x2b2ad52c, 0x132a1219, 0x182a2b18, 0x06828012, 0x2018b745, 0x08a74304, 0x00219f87, 0x259d8437, 0x013d013e, 0x91412634, 0x065a4905, 0x25127e4d,
0x2a2a2aeb, 0xc5461912, 0xbc192106, 0x200e2644, 0x08c149ab, 0x20412b20, 0x0f414705, 0x220bbf45, 0x4916000f, 0x132611d5, 0x15233537, 0xc8490733,
0x8055230c, 0xc0495555, 0xd5fe210d, 0xab206982, 0x2d06df58, 0x00ab01eb, 0x000a0006, 0x0023001a, 0x3f852500, 0x201e5841, 0x20518256, 0x1a4d41d5,
0x2aab8024, 0xfb46ab2a, 0x22778523, 0x84013f00, 0x135945b5, 0xbd83eb20, 0x2741d520, 0x8355200e, 0x11dc46be, 0x26099b41, 0x002d000f, 0x41350031,
0x3320121f, 0x4505a741, 0xaa4108d9, 0x42332005, 0x3721054f, 0x052d5133, 0x220c3e41, 0x4519122a, 0x088905dc, 0x114b2a20, 0xd5fe210f, 0x4b08884b,
0xef4505a5, 0x2b552307, 0x47592b80, 0x01eb2e06, 0x000300ab, 0x00250007, 0x00390029, 0x05d54242, 0xd9423520, 0x080f470a, 0x33208c85, 0x480b4542,
0x15211798, 0x8300832b, 0x07184773, 0x334c2b20, 0x1eed4205, 0x802b8024, 0x1d471219, 0x12182108, 0x0123af82, 0x42200d12, 0x00211bf9, 0x05635200,
0x87059f5e, 0x410020c7, 0x15200733, 0x411c5941, 0x2a2014da, 0x5d410083, 0x1113430f, 0x5d41ab82, 0x111e4316, 0x230ab744, 0x0013000f, 0x2305e573,
0x06141115, 0x26077f4c, 0x35231733, 0x41233533, 0x3b21055b, 0x05d24701, 0x34013d23, 0x0bf34126, 0xa543aa20, 0x0d3b430c, 0x4410a343, 0x012016b3,
0xca416784, 0x41172005, 0x13200ae5, 0x4a12d748, 0x40210968, 0x0563722b, 0xee4d2b20, 0x436e2006, 0x01231a65, 0x492a2b00, 0x2a2805ec, 0x8012192b,
0x00ff1812, 0x4d18b644, 0x57450c03, 0x25002105, 0x41160941, 0x012113ab, 0x0c124115, 0x90436e20, 0x44d5200e, 0xff200fb8, 0x770ebc47, 0x1b270c47,
0x33002f00, 0x41010000, 0x21240b96, 0x23071632, 0x0ae57118, 0x2512a141, 0x23153307, 0x6618c001, 0x2a210c45, 0x2100822b, 0x5245c02a, 0x2a3c230a,
0xe247012a, 0x2b92220b, 0x2024822b, 0x05934b80, 0x8024a584, 0x2b2a1812, 0x4f0a6746, 0x3722051f, 0x91824000, 0x1520818a, 0x2912a741, 0x15333507,
0x012e3517, 0xd741012b, 0x013e210b, 0x830a6f4d, 0x2b2a216d, 0x2210b541, 0x822b15e7, 0x12152a82, 0x15121919, 0x18124040, 0x08b54aea, 0xc1830020,
0x41802a21, 0xaa260fb9, 0x55401515, 0x2e821813, 0x01181222, 0xa7203c83, 0x50065c49, 0xbb870cef, 0x90250021, 0x0d344cb9, 0x3421b985, 0x22b98326,
0x601e1507, 0x322306e7, 0x41950136, 0xcf410542, 0x85ae820e, 0x82b48379, 0xd51921af, 0x4d064641, 0xab2e0dd0, 0x56401616, 0x12181812, 0x16181216,
0x9a82182a, 0x07002c08, 0xeaff0000, 0x8001d601, 0x18000900, 0x20001c00, 0x28002400, 0x00002c00, 0x07010e25, 0x27012e23, 0x33012135, 0x011d1632,
0x50231523, 0x17280511, 0x17353315, 0x07152335, 0x33200782, 0x07830382, 0x01d50130, 0x25552430, 0x00010130, 0x12d680fe, 0x6584aa18, 0x80ab2b2a,
0x802b2b56, 0x24402bd6, 0x30301982, 0x15012b24, 0x6ac01219, 0x00011218, 0x2b401912, 0xcd840083, 0x2a2a5622, 0x08eb4d18, 0x91838020, 0x07230130,
0x37331715, 0xa0500135, 0x70a07070, 0x04828001, 0x4da07021, 0x07250a0b, 0x00000f00, 0x29248513, 0x17330727, 0x27230715, 0x2b83b035, 0x7c8e7026,
0x577c5757, 0x70213286, 0x230b822b, 0x00007c57, 0x22068f58, 0x82960185, 0x003122dd, 0x33df823d, 0x0e07012e, 0x27262201, 0x06070626, 0x011e1716,
0x14060717, 0x2e05de54, 0x3f321617, 0x2f343601, 0x37013e01, 0x5627013e, 0x7c710744, 0x27230805, 0x1e07010e, 0x047c0101, 0x34191118, 0x11193404,
0x0f080418, 0x102a1215, 0x03080851, 0x3f081407, 0x82130840, 0x51073408, 0x15122910, 0x1e17840f, 0x1e1e2e1e, 0x013d2e17, 0x842e3d01, 0x0ab03105,
0x08110c07, 0x070c1108, 0x0d150f0a, 0x51010a0b, 0x3f243085, 0x0307073f, 0x512a0a82, 0x0d0b0a01, 0x1e01be15, 0x02821e2d, 0x3c02a122, 0x2e223685,
0xc6823c2e, 0x18010021, 0x29085361, 0x3f00000a, 0x11373501, 0x03821727, 0x55400735, 0x80e0e096, 0x1b40ea81, 0xcbfe2ad0, 0x011a501b, 0x42502070,
0x022b077b, 0x00400100, 0x0032000a, 0x82440038, 0x2feb82f9, 0x26220614, 0x25013e35, 0x14163233, 0x15230706, 0x172d0782, 0x011e1737, 0x012f010e,
0x2b010e07, 0x07324a01, 0x2e23352e, 0x07363401, 0x07373315, 0x3637012f, 0x0f212e82, 0x083b8201, 0xd5013429, 0x19032503, 0x26021824, 0x0955adfe,
0x15090c0c, 0x06130c2b, 0x0408468a, 0x2d081009, 0x0c13064e, 0x191912c0, 0x82152a12, 0xc00c2a1b, 0xf1144a2c, 0x0d110625, 0x23048306, 0x173102b5,
0x173d1b83, 0x120c8d31, 0x0c2a010c, 0x0429510a, 0x04041011, 0x0c0a871a, 0x40121801, 0x2a011812, 0x301a8201, 0x2b4c4080, 0x06243c1f, 0x2507100d,
0x00110d06, 0x28fb8204, 0x010002bf, 0x001c00ab, 0x27c98230, 0x1300007f, 0x1107010e, 0x53089b71, 0x352e09b4, 0x26343523, 0x1e321501, 0x3f363202,
0x25823501, 0x22010e25, 0x8425022e, 0x023e2511, 0x030e3533, 0x072a0e82, 0x22020e22, 0x012e2726, 0xfb821527, 0x023e3222, 0x17242f82, 0x033e3316,
0x2782378f, 0x2622232a, 0x012e012f, 0x01120df5, 0x2206c362, 0x84561501, 0xfe123000, 0x0f0a0afd, 0x081c2b1d, 0x06120c06, 0x82140a08, 0x40012b0c,
0x1c100a0a, 0x0a0f1d2b, 0x0482150a, 0x0c821420, 0x1c16c023, 0x251b8210, 0x0d120607, 0x2d820707, 0x0e240c83, 0x05061117, 0x2b272087, 0x0d07071d,
0x82070612, 0x083a8624, 0x04080728, 0x011d0709, 0x0d1201ab, 0x1a1100ff, 0x171e1e17, 0x2a20111a, 0x2b2a2b2b, 0xfe120d0b, 0x11072bd6, 0x07091212,
0x51820530, 0x10080824, 0x10840112, 0x2b071125, 0x83101201, 0x126a2c0f, 0x08070711, 0x30050d06, 0x83120906, 0x100f2312, 0x1b860103, 0x06091222,
0x06223782, 0x43830708, 0x03071128, 0x12090903, 0x87430000, 0x01992206, 0x06d54e6e, 0x35363b08, 0x06222634, 0x15171415, 0x26333523, 0x32363427,
0x07141516, 0x7b990133, 0x37573644, 0x4b4c7b44, 0x548a5401, 0x2d2b4d4d, 0x37304d34, 0x344c3038, 0x54322d2d, 0x434d4d43, 0x4e823254, 0x0806b343,
0x3d01d629, 0x3a001a00, 0x1e250000, 0x06141501, 0x2e23010f, 0x37363401, 0x013e2717, 0x17163237, 0x011e3736, 0x010e2717, 0x85171607, 0x22178218,
0x7a173233, 0x720805c5, 0x2e072223, 0x010e2301, 0x1712ac01, 0xf4040c0e, 0x18202017, 0x28010105, 0x0921141e, 0x231a130f, 0x221af101, 0x260b0101,
0x171f2119, 0x1c250102, 0x2b0b1114, 0x0432241b, 0x0c0e0f02, 0x2e211423, 0x131a039d, 0x0206170e, 0x202f2001, 0x1e050101, 0x11150127, 0x22010109,
0x26041c1b, 0x0111161b, 0x02213021, 0x0a251c0e, 0x01011b16, 0x1006232e, 0x822a0113, 0x000221b8, 0x01270082, 0x006b01c0, 0x821e0006, 0x4f0720b7,
0xd84906dc, 0x17290805, 0x35233533, 0x15231521, 0x35013e33, 0x01263411, 0x2a405500, 0xd6fe4040, 0x12191813, 0x2a015555, 0x19125555, 0x8056eb19,
0x905d1880, 0xd5d52909, 0x1218012b, 0x18120001, 0x180d134f, 0x47427347, 0x62080763, 0x02000095, 0xebff0000, 0x9601eb01, 0x1a001100, 0x07010000,
0x27012e11, 0x3537013e, 0x1e07010e, 0x37331701, 0x17161513, 0x07271707, 0x402b0126, 0x01025242, 0x6a543946, 0x5d770202, 0x25153e02, 0x0b8b211c,
0x9501302b, 0x07a2fe20, 0x3625283a, 0x4f0c2b0b, 0x08523a36, 0x2b06011f, 0x20110e07, 0x8d1d1560, 0x001025bb, 0x37000023, 0x352d6182, 0x3637013e,
0x14011e37, 0x26060706, 0x51421813, 0x324b0807, 0x013e3736, 0x2e272634, 0x1310c101, 0x10130101, 0x392b261b, 0x1b122b39, 0x6c52012c, 0x4e670202,
0x1a412509, 0x1e22221e, 0x1354411a, 0x20082035, 0x01201335, 0x50785001, 0x010c0101, 0x526c0242, 0x1a066b4f, 0x56491b17, 0x82171b49, 0x440820cc,
0xab2406fb, 0x24001b00, 0x0a7f8f18, 0xe7824220, 0x1521db82, 0xba491932, 0x0890820b, 0x36343527, 0x013e3533, 0x1d062217, 0x34353301, 0x06220726,
0x012e3307, 0x16273307, 0x17232717, 0x26172337, 0x27331727, 0x292a8207, 0x01011e23, 0x01241b00, 0xac820c09, 0x60022108, 0x02604949, 0x0c272e01,
0x1b240109, 0x0c2a0c09, 0x11311d09, 0x963111be, 0x8b02221b, 0x9b552e56, 0x22200786, 0x01211685, 0x352682ab, 0x17090c16, 0x48304e16, 0x61010161,
0x164e3048, 0x160c0917, 0x3a82241b, 0x09161636, 0x14166b0c, 0x21aa1614, 0x55550f12, 0x10112155, 0x01ab5555, 0x00211183, 0x067f4700, 0x8701ab21,
0x003222d3, 0xe14c183b, 0xa7172008, 0x850320d1, 0x22373ac1, 0x32161406, 0x17263436, 0x010e2734, 0x36171614, 0x3e171425, 0x27263401, 0x20dca206,
0x20cc851d, 0x0590611d, 0x10076e28, 0x07101313, 0x078500ff, 0xff21e2a6, 0x32d78400, 0x182419aa, 0x2b192418, 0x17031516, 0x14031721, 0x84141616,
0x53152008, 0x06200bb7, 0x096f6018, 0x23173725, 0x62213507, 0xb97106bd, 0x5e142005, 0x343206ed, 0x562b0126, 0x2a55552a, 0x552a01c0, 0x24362401,
0x6543d501, 0x2a013105, 0x95191912, 0x55565640, 0x241bd5d5, 0x00011b24, 0x4d0b694a, 0x05320ac3, 0x17000e00, 0x29002000, 0x00004400, 0x07171625,
0x28413627, 0x41232008, 0x37200731, 0x8808295e, 0x16210808, 0x15060706, 0x3217011e, 0x16371737, 0x37013e33, 0x012e2734, 0x22010e37, 0x12000126,
0x1d2f2f1d, 0x8280827d, 0x12e821e7, 0x1929eb83, 0x303024c4, 0xb1303049, 0x08068425, 0x141a4120, 0x48020c15, 0x5d070736, 0x3607075d, 0x150c0248,
0x6e2b1a14, 0x1c6b6e6e, 0x0f2f2f0f, 0x38821982, 0x85182521, 0x01352105, 0x20055461, 0x37078601, 0x2c5e3ba6, 0x49361c19, 0x5d5d0101, 0x36490101,
0x5e2c191c, 0x2c2c223b, 0x500a2b4d, 0x002505cb, 0x21272113, 0xdc421805, 0x013f330b, 0x32213336, 0x35330117, 0x26016d23, 0x0100ff14, 0x16410a37,
0x1d0a3305, 0x00010f0a, 0xe7fe0a0f, 0x55018080, 0x100b1b16, 0xbf82f6fe, 0x0a01122a, 0x0c240b10, 0x40ccfe0c, 0x390b9b41, 0x000a0003, 0x1300001e,
0x03172137, 0x33353327, 0x27373315, 0x22212326, 0xfb5c010f, 0x11352d08, 0x01126d34, 0x75931400, 0x414a564a, 0xff205d82, 0x1d205d82, 0x01236d82,
0x8219122a, 0xfe162661, 0x2b2b75f6, 0x205b8290, 0x8a6b8a24, 0x001322c3, 0x20638317, 0x20bf9201, 0x20d78205, 0x05714517, 0x8fb60121, 0x84d420c0,
0x838120d8, 0x50012176, 0x1f22c68e, 0x74827616, 0x00820020, 0x00000528, 0xe201eaff, 0x63829601, 0x2500212e, 0x2f002b00, 0x2e370000, 0x36013f01,
0x32230282, 0x8216011f, 0x0f062302, 0x71181501, 0x27080902, 0x37153706, 0x27351705, 0x06073505, 0x013f1527, 0x082b0727, 0x04200505, 0x0e05a706,
0x0306a905, 0x0804041f, 0xa90a0115, 0x27080d83, 0xca0a010a, 0x80ecfe7f, 0x6a2a0180, 0x86120b0b, 0x05d6860c, 0x06380810, 0x04045d03, 0x3606045e,
0x0c051008, 0x5e060d6a, 0x06350d82, 0x9605760d, 0x49b3478e, 0x448f4890, 0x4f05053e, 0x4d164d7f, 0x209f8500, 0x062f7ec0, 0xf35b1b20, 0x18252005,
0x26128f71, 0x37170727, 0x82371723, 0x25fe1806, 0x7d28271a, 0x2a7ffe2a, 0x8f83417e, 0x71188020, 0x16261259, 0x17471849, 0x8283cc49, 0x90488f22,
0x20061f41, 0x05cf5800, 0x11000828, 0x23001a00, 0x8d6c3700, 0x2e27210a, 0x1806ed6b, 0x21085668, 0x9f6c2207, 0x46372006, 0x32220548, 0x10823436,
0x3e333728, 0x012e3701, 0x9b6c7501, 0x854e2005, 0x6c782006, 0x4d2005a2, 0x68200685, 0x2b05ff7f, 0x1210120e, 0x3c2e250e, 0xc06c0201, 0x2005996c,
0x69dd1855, 0x8556200e, 0x02c02316, 0x3282526c, 0x111b122a, 0x0101121a, 0x60492d3c, 0x0622af83, 0xa74c0000, 0x00032106, 0x2d052770, 0x001f0013,
0x35210500, 0x33350521, 0x03823715, 0x15330328, 0x21110523, 0x93842711, 0xa7842720, 0xffd5012a, 0xfe000100, 0x55c09556, 0xfe2a0082, 0x952a01ab,
0x0401241b, 0x02820438, 0x15240123, 0x3300822a, 0x01abab55, 0x01c08040, 0x49c0fe40, 0x241b2401, 0x4c03034c, 0x74820682, 0x03820520, 0xeb010024,
0x69828001, 0x34002b31, 0x5b003d00, 0x16010000, 0x33013e17, 0x8217011e, 0x1516215f, 0x2e240482, 0x37342701, 0x23056447, 0x36171632, 0x2f09c967,
0x1617012e, 0x012e010e, 0x0716013e, 0x011e013e, 0x17250b83, 0x14071732, 0x2aa08216, 0x14173236, 0x06272206, 0x82352622, 0x011e340a, 0x27353632,
0x38000136, 0x121e0b2d, 0x01012a20, 0x4106161a, 0x06310507, 0x01011a16, 0x1e12202a, 0x40382d0b, 0x54010154, 0x08058440, 0x0d061922, 0x0c0c1c1e,
0x06ac1c1f, 0x0c0c1f1c, 0x5f0d1e1c, 0x09150c14, 0x0101090d, 0x20150113, 0x15200b0b, 0x01200882, 0x15271082, 0x0180010c, 0x82100d1c, 0x25182444,
0x41181709, 0x1824058e, 0x18250917, 0x10236882, 0x872a1c0d, 0x08598253, 0x2216702d, 0x222c1708, 0x16161809, 0x2c220918, 0x39220817, 0x0907160a,
0x0a060901, 0x0b15100a, 0x0a10150b, 0x0909060a, 0x000a1606, 0x82010000, 0x01002203, 0x059f69b5, 0x06143725, 0x4111012b, 0x232e0618, 0x6b090cd5,
0x01513ecf, 0x4f3e5101, 0x81820915, 0x3d510226, 0x0002513d, 0x08e76018, 0x006b2708, 0x00140004, 0x37173700, 0x11052117, 0x2127012e, 0x1107010e,
0x2117011e, 0x36b5013e, 0xd6fe604a, 0x18018001, 0xb75efe12, 0x82012006, 0x40b52407, 0x18158060, 0x830ebe44, 0x0aff704f, 0x41250021, 0x47820588,
0x18010e21, 0x180b0366, 0x24136343, 0x0202785b, 0x18f67078, 0xab870020, 0x01d63308, 0x0017006b, 0x0100001f, 0x22060722, 0x06232627, 0x17141115,
0x32363732, 0x36331617, 0x07341135, 0x07222615, 0x01011e35, 0x5f0303c9, 0x03035fc8, 0x08870c0c, 0xae542a31, 0x01ae5454, 0x2323026b, 0xfe0d0102,
0x85010dc6, 0x3a012a09, 0x18e8360d, 0x0118e818, 0x08df7000, 0x9601ab24, 0x67830700, 0x36372008, 0x06332734, 0x26011f14, 0x35363734, 0x22212326,
0x16171407, 0x15060714, 0x32213316, 0x838c3437, 0x35182138, 0x01215291, 0x216e8415, 0x858e1854, 0x8b030c21, 0x001822cb, 0x22cb8329, 0x82020f06,
0x1e022f63, 0x3f363201, 0x2f343602, 0x07012e02, 0x67831632, 0x3105154f, 0x013e3734, 0x532b0001, 0x1206132c, 0x2c130612, 0x0a895653, 0x4c272b28,
0x290f0f29, 0x06854e4c, 0x086b012b, 0x43130308, 0x03134384, 0x88008208, 0x072b260a, 0x39723907, 0x84008207, 0x086b5006, 0x24009637, 0x3f003600,
0x51004800, 0x63005a00, 0x17130000, 0x013e3137, 0x217e8233, 0x05820714, 0x180bff53, 0x3209ae94, 0x34331107, 0x15163236, 0x17231133, 0x07232707,
0x6c273727, 0x34220563, 0x08873726, 0x4708656a, 0x088808cf, 0x0c0cf42a, 0x1b101b09, 0x2f040124, 0x09c95418, 0x01042f23, 0x2f148224, 0x0c969f09,
0x6d960c12, 0x1240222d, 0x022d2240, 0x20058575, 0x20068577, 0x20068549, 0x23068c09, 0x10107b01, 0x07b79418, 0x8300ff21, 0x00012c50, 0x0b0a1912,
0x0c0e241c, 0x8200ff66, 0x0109282b, 0x57193e00, 0x183e1957, 0x210fcd94, 0xbd7501ff, 0x8e412005, 0x4b521807, 0x00ab2209, 0x2e0c8228, 0x22010e15,
0x3e112726, 0x17163201, 0x82061415, 0x7535200b, 0x2e2107b7, 0x05fd7201, 0x013e172a, 0x60013537, 0x30493001, 0x82055671, 0x20012659, 0x1e2d1e01,
0x33138401, 0x32324202, 0x40010142, 0x303025f5, 0x170a0125, 0xe0171e1e, 0xcb269a83, 0x1e1e16cb, 0x1583e016, 0x32f6fe24, 0x27820242, 0xef42f520,
0x01963508, 0x00070080, 0x25000012, 0x1e333523, 0x27061401, 0x35331123, 0x2206e845, 0x8245451a, 0x951737ec, 0x48374055, 0xd5480101, 0x24180156,
0x80feaa18, 0x36490180, 0x43884936, 0x56018024, 0x45820300, 0x33250025, 0x82032311, 0x2b012d03, 0x55ab5555, 0x2a012b55, 0x2a01d6fe, 0x22088f51,
0x849601d6, 0x7b132027, 0x06190921, 0x01260ba5, 0x552b2b40, 0x2c6e2b2b, 0xaa6b240b, 0x6980aaaa, 0x034411e7, 0x22738306, 0x821f0013, 0x5835204d,
0x1323051a, 0x1817011e, 0x180a7869, 0x22094243, 0x8c802b15, 0x185b2057, 0x830a5243, 0x01aa2263, 0x20658a2a, 0x05124c28, 0x27490584, 0x0589460b,
0x52010021, 0x37210580, 0x06336a13, 0x7050012a, 0x7070a070, 0x2b2a2b90, 0x21078852, 0xb882ebfe, 0xdb62aa20, 0x0007240d, 0x8a17000f, 0x204586f9,
0x07fd5217, 0x6520fd85, 0x830ad652, 0x836b2099, 0x52a0205a, 0x052a07d9, 0xfaff0000, 0x8301da01, 0xc7470800, 0x003b2406, 0x46361300, 0x3621056d,
0x22078537, 0x8707013e, 0x88252011, 0x06162c11, 0x27260607, 0x2e27010e, 0x843e3701, 0x1e400802, 0x011e1701, 0x0c2114b2, 0x0c222612, 0x1213ac12,
0x1127220c, 0x13f7210c, 0x25081a2a, 0x01071a29, 0x1a071292, 0x1a082529, 0x1301112a, 0x20411d0e, 0x101d4021, 0x2a040213, 0x20291612, 0x13152a1f,
0x3d08ed82, 0x2a3a2302, 0x2a3b2206, 0x3b2a0404, 0x3a2a0622, 0x17076423, 0x18102d34, 0x09092d33, 0x1018332d, 0xed17342d, 0x0a071c10, 0x1b03031a,
0x1223090b, 0x19112017, 0x3b02023b, 0x00271319, 0x00820002, 0x01cd012d, 0x00170081, 0x0100001c, 0x8216020e, 0x0e3e0890, 0x27010f01, 0x27072737,
0x1f323637, 0x05141601, 0x23071737, 0x0806ba01, 0x08060801, 0x090d010c, 0x155b1e58, 0x0652501e, 0x06320612, 0x50cc80fe, 0x2a0150cc, 0x0a0b0a06,
0x100f0805, 0x1d820810, 0x1d831420, 0x12211c82, 0x421c82e0, 0xc12008a3, 0x09226782, 0x67820e00, 0x2f34362d, 0x0f222601, 0x15051701, 0x82273733,
0x262b835a, 0xfe502706, 0x83ec50ad, 0x8258834b, 0x82b3200e, 0x0abf4a0d, 0xa5860f20, 0x200f9564, 0x824c8236, 0x8407204b, 0x4a4e184b, 0x07f92b0a,
0x08081b07, 0x2cba2c16, 0xa2582c82, 0x18133005, 0x2a011219, 0x08871912, 0x07071b08, 0x82622c15, 0x579e8219, 0x03260a7b, 0x1b001300, 0xff642000,
0x27072b16, 0x011f3637, 0x17370716, 0x945f2307, 0x09b67105, 0x2c15f923, 0x21568316, 0x548282d6, 0x880af964, 0x2c162273, 0x20908315, 0x891f8280,
0x01eb3173, 0x00160096, 0x002a001f, 0x1300002f, 0x15070622, 0x5b073857, 0x352d0686, 0x3207012e, 0x23011d16, 0x21013e35, 0x22e68222, 0x84343637,
0x28ed82ef, 0x011e1675, 0x090c0c09, 0x0804836b, 0x171e0121, 0x0140120e, 0x083b0112, 0x28502806, 0x07320606, 0xec50ec55, 0x171e9501, 0x55090c0b,
0x6d010c09, 0x0b330534, 0x12151e17, 0x0e0b0b0e, 0x50270612, 0x06110727, 0x82440632, 0x03002227, 0x05ef4900, 0x0a009629, 0x18001400, 0x89010000,
0x0705236d, 0x6f820717, 0x2737172a, 0x37170737, 0x07088e01, 0x07323a83, 0xaffe0632, 0x50608a1b, 0x8b1c8a60, 0x56505621, 0x52889501, 0x841c2a21,
0x8a1b2217, 0x411782c1, 0xb62206c3, 0x09827601, 0x15000c29, 0x01090000, 0x46250117, 0x45180743, 0x013008fc, 0x2ac0fe8b, 0xe0fe4001, 0x3724241b,
0x1cba2424, 0x01210684, 0x21158475, 0x13830120, 0xd5243722, 0xbb420685, 0x01c02406, 0x530b00ab, 0x15240539, 0x35233523, 0x25053a4d, 0x07273723,
0xb3821521, 0x27352128, 0x40550137, 0x0282402a, 0x19396b38, 0xf1fe1f32, 0x80012b2b, 0x40952b2b, 0x40402b40, 0x56124495, 0x0e82802a, 0x00808024,
0x00820001, 0xc0013808, 0x1d008001, 0x1e370000, 0x36371701, 0x32331617, 0x14011d16, 0x012e2306, 0x3b363427, 0x15163201, 0x07161714, 0x2e47188d,
0x240c0a2f, 0x0c0c0928, 0x04cd9a09, 0x824b090c, 0x09042809, 0x18472eda, 0x8204092f, 0x220f8214, 0x829acd04, 0x28092414, 0x420a0c24, 0xab20085f,
0x202c5b82, 0x31002300, 0x22250000, 0x010f2627, 0x37295782, 0x35262736, 0x012b2634, 0x05fc4e22, 0x013d363a, 0x17272634, 0x0f173507, 0x33153701,
0x27372737, 0x07271523, 0xab010717, 0x2f204b83, 0x34216391, 0x30008214, 0x3d0a3146, 0x0a3d2e2e, 0x3b3b0f31, 0x09040c75, 0x28a3932f, 0x841414b1,
0x31651414, 0x242a8351, 0x3c0f3151, 0x091f4a3c, 0x24209b83, 0x372597a0, 0x15231527, 0x238a9933, 0x55556b6b, 0x60257e98, 0x56406b6b, 0x20008200,
0x2e038201, 0x01000200, 0x0020002b, 0x07220100, 0x82070615, 0x2f223201, 0x37342601, 0x1632013e, 0x0f141617, 0x27220601, 0x35018226, 0x00012635,
0x0b012f33, 0x12061a1f, 0x06063506, 0x80928031, 0x09820631, 0x1a06122e, 0x2f010b1f, 0x420f0001, 0x1710060e, 0x2f231285, 0x852f3434, 0x10172527,
0x0f420e06, 0x220d3b46, 0x822d000f, 0x2e3327e1, 0x1e152701, 0x07871701, 0x2f1c8941, 0x012b4001, 0x241b2d3d, 0x6c022b56, 0x17553f52, 0x2e168341,
0x013d2dc0, 0x1b24012b, 0x2b026c52, 0x418b5401, 0x9b631780, 0x001d250c, 0x13000026, 0x200bf641, 0x2c8a8e23, 0x23351723, 0x35072737, 0x09551523,
0x0a50420c, 0x27090442, 0x15754af5, 0x80012076, 0x310c8742, 0x2e47182f, 0x240d092f, 0xab0c0928, 0x75157620, 0x7782804a, 0x03820320, 0xc0010035,
0x0700ab01, 0x3b001d00, 0x23010000, 0x32363435, 0x7f011f16, 0xf15d06b8, 0x36322607, 0x2634013d, 0x428a8e07, 0x012a0d9f, 0x1f15499a, 0x01110114,
0x82442d1e, 0x161b410a, 0x0a6b012d, 0x10141410, 0x1e170a0a, 0x440a171e, 0x0c210585, 0x20d18209, 0x1a2641f5, 0xb082a582, 0x18068f43, 0x2309d17d,
0x25000035, 0x21139343, 0xb143010f, 0x33032406, 0x82372315, 0x398b1803, 0x21078707, 0xac43ab01, 0x432f200e, 0x83260620, 0x80402b2b, 0x058a4080,
0x090c7522, 0x210bbf43, 0x6e41090d, 0x0b012507, 0x152b2b2b, 0xc2420386, 0x27058205, 0x80010002, 0x2a001f00, 0x2e239982, 0x5a062201, 0x372106d4,
0x26018236, 0x17323635, 0x82171615, 0x3f323101, 0x25343601, 0x07273717, 0x23353327, 0xfa013315, 0x210ec742, 0xe342672e, 0x8bfe2d09, 0x80159575,
0x20804b60, 0x35352f5c, 0x3306cf42, 0x0e051018, 0x420f0f42, 0x1810050e, 0x06350606, 0x9676f512, 0x20212482, 0x2f534280, 0x33153328, 0x15371707,
0x53423533, 0x4ba02417, 0x42751676, 0x20241a53, 0x4b761675, 0x9b477683, 0x0003270a, 0x00250021, 0xdc822500, 0x39421320, 0x8303201c, 0x2b9523fc,
0x2c42162b, 0x2b492516, 0xfe95eb2b, 0x22181942, 0x82950b01, 0x820420ef, 0x01002103, 0x42056761, 0x7984051b, 0x799c1720, 0x79822720, 0x01200383,
0x56247d9d, 0x2bd52a2a, 0x2218c043, 0x652b2b8b, 0x022d0783, 0x00800100, 0x00370017, 0x0041003b, 0x7ffb8245, 0x25201695, 0x440ccc44, 0x072f11ec,
0x3b352315, 0x15231501, 0x23353723, 0x19150115, 0x210eca32, 0xec440f01, 0x4566200a, 0x7f290d08, 0x402b16dd, 0x162b152b, 0x0fcb7f55, 0x1305c731,
0x06063506, 0x0d061018, 0x420f0f42, 0x420f060e, 0x062f0534, 0x6035352f, 0x2b406b6b, 0x00151540, 0x82000100, 0xab012400, 0x82005601, 0x1513230c,
0x01821133, 0x16141526, 0x23373632, 0x3305ff4c, 0x2b553533, 0x3724802b, 0x0c2b0124, 0x2b010c12, 0xff2a5501, 0xc0203582, 0x07a3d518, 0x472ac021,
0x80260887, 0x25000f00, 0xc5180000, 0x34240cb1, 0x33052326, 0x5284d982, 0x52853320, 0x3522e782, 0xd5186b23, 0x12230816, 0x84ebebfe, 0x832a205b,
0x2a402265, 0x0d4c622b, 0x6b2b552d, 0x090c0c09, 0x1b24241b, 0x82abab6b, 0x080029ad, 0xeaff0000, 0x9701cc01, 0x112c0982, 0x3a003100, 0x4e004300,
0x64005900, 0x8e577b84, 0x56332005, 0x272c0765, 0x37013e17, 0x16171636, 0x011e0706, 0x2a073b52, 0x012e3736, 0x17013e37, 0x4e17011e, 0xc55211be,
0x83322005, 0x26272223, 0x2524830f, 0x26363736, 0x09840e37, 0x27013f24, 0x6453cb26, 0x535d2005, 0x432c0579, 0x0e230f0f, 0x040a4d21, 0x16141a1b,
0x2b053f52, 0x1b1a1416, 0x214d0a04, 0x1c0f230e, 0x2005c24e, 0x2606855f, 0x013d2d22, 0x835a3d01, 0x0b873704, 0x16191e1b, 0x01042b13, 0x2509ab25,
0x132b0401, 0x1b1e1916, 0x40180001, 0x6b2d0b4d, 0x04130d01, 0x131a0e08, 0x3d190f29, 0x05445222, 0x193d222b, 0x1a13290f, 0x1304080e, 0x07d64e0d,
0xd64e0120, 0x02310807, 0x241b1d37, 0x371d1b24, 0x020101bc, 0x01061113, 0x03160a08, 0x080a1603, 0x13110601, 0x00000102, 0x00000200, 0xcc01f4ff,
0x0d008c01, 0x00001900, 0x775b183f, 0x22062407, 0x83342627, 0x372208e3, 0x34363717, 0x5a072226, 0x28662797, 0x27972525, 0x43252767, 0x80060c10,
0x34194c5a, 0x97cf1a44, 0x12822525, 0x282c0582, 0x2c110966, 0x4b5a7f15, 0x1934441a, 0x2706235f, 0x00960180, 0x2500000f, 0x2406006a, 0x15331507,
0x310b8233, 0xd6165501, 0x226f2b16, 0x2aabc06f, 0x2a2bab2a, 0x42188080, 0xea2208df, 0x3382ab01, 0x16000b35, 0x37130000, 0x15270701, 0x35233523,
0x011f3537, 0x82272315, 0x15332f09, 0x011b2b23, 0x227f1b65, 0x2baa2b6f, 0x4782d104, 0x2b05f77e, 0x2a807e7e, 0x2b10102b, 0x2a2fd12a, 0x09c78518,
0x8001c02a, 0x00000e00, 0x37233533, 0x17210183, 0x27018323, 0x6b95d515, 0x6b406a40, 0x95240484, 0x6b6a6b40, 0x40200282, 0x20080352, 0x20b384d6,
0x207f821e, 0x0d564c21, 0x35331324, 0x01832733, 0x83330721, 0x18552001, 0x270ac644, 0x556b2aa8, 0x55405640, 0x6b210484, 0xe18d1801, 0x96fe240c,
0x8255562a, 0x41562000, 0x5f830613, 0x00004424, 0xce4f1617, 0x055d4205, 0x012e1730, 0x2622013f, 0x37013e27, 0x010e011e, 0x1d890607, 0x1614152d,
0x010f1617, 0x012e2714, 0x82363435, 0x1417231e, 0x2a820706, 0x26820720, 0x211ec125, 0x4f02785b, 0x34080524, 0x023d4b01, 0x01190301, 0x16010105,
0x010e0d11, 0x1202050d, 0x01251d11, 0x2e283001, 0x02080832, 0x15060601, 0x38454716, 0x313d0149, 0x0f061a10, 0x0c071004, 0x085f4f09, 0x186a4535,
0x690f230d, 0x1c170f11, 0x1b110101, 0x17101325, 0x822c3501, 0x36013d73, 0x091a0e25, 0x05180402, 0x18300a03, 0x01024b34, 0x4b383644, 0x330a0e01,
0x000b200e, 0x24062f44, 0x008001c0, 0x09314146, 0x3e012b22, 0x1e21ce82, 0x27e18801, 0x17011e15, 0x36013f16, 0x0e2fc389, 0x26222301, 0x34013e37,
0x06222326, 0x831f1607, 0x621720f2, 0x210806dd, 0x122a016b, 0xcf121919, 0x0e040d07, 0x300f1a05, 0x4602013a, 0x01454237, 0x01051415, 0x07030106,
0x98843108, 0x101c2433, 0x0d050212, 0x160f0d0d, 0x03020101, 0x01010218, 0x2037824b, 0x06496f01, 0x1b0b3008, 0x0d0a310c, 0x34374801, 0x49010141,
0x0a2e1832, 0x05160603, 0x0e190901, 0x01023423, 0x342b252d, 0x24121016, 0x161c111a, 0x6609080e, 0x4e0d210e, 0x17510508, 0x01c02808, 0x00080096,
0x57190011, 0x9c7b0b93, 0x82372007, 0x011b23b4, 0xa878012e, 0x7d7d2007, 0x6a280630, 0xc024623a, 0x806224c0, 0x2f057d5b, 0x181812ab, 0x7c191924,
0xabfe282d, 0x2d285501, 0x30072f41, 0x00530196, 0x13000002, 0xeaab3711, 0xd6fe5201, 0x0c374795, 0x16001322, 0x2215ff6d, 0x6d371507, 0xd22110f8,
0x0dd1676b, 0x6b181324, 0xd74355aa, 0x05f37805, 0x0e000227, 0x35370000, 0x25551817, 0x80d5220b, 0x08374255, 0x60780225, 0x42d560c0, 0x5b210808,
0x0af74d78, 0x17000b24, 0x46181a00, 0x032219cf, 0xd4552737, 0x80862218, 0x18d75580, 0x60cdfe24, 0x874b0060, 0x56200809, 0x06000200, 0x00000a00,
0x17371113, 0x33231133, 0x40113311, 0x40402aab, 0x5501406b, 0x9595d6fe, 0x4a06b152, 0xdf2805af, 0x09005601, 0x12000c00, 0x03602f83, 0x35333805,
0x17371507, 0x17072707, 0x96c02b37, 0xd52a1601, 0x2d6ab64b, 0x82884b1e, 0x2beb2d3e, 0x558056c0, 0x6a04366b, 0x884c1e2e, 0x21086377, 0xc3580040,
0x37002107, 0x33264482, 0x27353315, 0x01841521, 0xaaaa2b29, 0xffaad5d5, 0x83000100, 0x2a6b2703, 0x2bab2a2a, 0xaf822b2a, 0x03820420, 0xd6010022,
0x25065753, 0x000e000b, 0x31820100, 0x03823520, 0x3521052c, 0x37150129, 0x96fe9501, 0x03866a01, 0xebfe1529, 0x016a4001, 0x82802b00, 0x40802240,
0x257b8c00, 0x0013000f, 0x7b840017, 0xc2672120, 0x23838b09, 0x552b5501, 0x888a0282, 0x2a565622, 0x8c850282, 0xc6218b85, 0x84c78501, 0x7713204b,
0x172106ae, 0x8d6f1807, 0x82052009, 0x832b20d7, 0x43c029c8, 0x1e3d3d1e, 0x3c1e3c3d, 0xfe220282, 0xd653c0c0, 0x84112006, 0x2315850f, 0x002a2a09,
0x08068742, 0x6501da37, 0x23001000, 0x00003400, 0x17011e13, 0x010e011e, 0x2e343527, 0x11150601, 0x36013f27, 0x0f062627, 0x3e373501, 0x06021e01,
0x2e27020f, 0x013f3601, 0x17060715, 0x08078516, 0x3617cb65, 0x01242b13, 0x0f06212c, 0x70524507, 0x17090f14, 0x0e134b0a, 0x0b2e332f, 0x980c0a0e,
0x180b19d2, 0x1348720c, 0x0918080f, 0x01340723, 0x060f0565, 0x1d532e0f, 0x0f09670f, 0xfe090a04, 0x281716fe, 0x01030608, 0x062a1a04, 0x10060504,
0x05051114, 0x18082c36, 0x28290511, 0x0207081a, 0x240c0401, 0x43000901, 0x5624094b, 0x00000b00, 0x0ba36418, 0x80950124, 0x0282802a, 0x0483ab20,
0x8f488020, 0x000b220a, 0x70298d1b, 0x6b2310f5, 0x82562a56, 0x2f4a1802, 0x2010830c, 0x334a1856, 0x000b2218, 0x18538d17, 0x860c8e58, 0x3f4a184f,
0x184f840c, 0x200e434a, 0x82cf8204, 0x800121a8, 0x182acb82, 0x30002400, 0x23010000, 0x30472315, 0x05233006, 0x35373634, 0x1614010e, 0x012e3517,
0x55010e25, 0x03210844, 0x707f182e, 0x55012409, 0x8240402a, 0xd6fe3102, 0x4639262f, 0x2f263946, 0x6d511501, 0x516d0202, 0x3f250585, 0x55010155,
0x2105843f, 0x28831501, 0x2d152a2e, 0x152e1347, 0x15608060, 0xed47132e, 0x51232888, 0x87adfe6d, 0x202f8229, 0x18008200, 0x200de34a, 0x19134423,
0x5d180720, 0x5b221e55, 0x5d180278, 0x02221c55, 0x5d185b78, 0x00210955, 0xf34a1800, 0x000b2209, 0x7b758233, 0x15220755, 0x4a183533, 0xeb8429fb,
0x4a185620, 0x40241aff, 0x40402b40, 0x23034b18, 0x0100002f, 0x00560196, 0x0011000b, 0x33151300, 0x82ec8215, 0x35333391, 0x2311013f, 0x56d50735,
0x56562a56, 0x362a608a, 0xbd431501, 0x17292605, 0x0be2ebfe, 0x09fb5900, 0x1e007f24, 0x45822f00, 0x27066d5b, 0x17011d06, 0x011f011e, 0x2e060f4e,
0x013e013f, 0x3435013f, 0x2206010f, 0x822e012f, 0x1f62080d, 0x32363701, 0xd3011416, 0xfe0c1404, 0x05130ca2, 0x2b050102, 0x2d260323, 0x07132916,
0x2303252b, 0x5c01052b, 0x09170865, 0x12010964, 0x50500917, 0x0111170a, 0x010d0c65, 0x070b0d01, 0x2b1a8107, 0x1c021b4a, 0x02030409, 0x1b021b09,
0x811a2b4a, 0x08607f06, 0x17096008, 0x4d090112, 0x1712084d, 0x52180000, 0x0b260a9f, 0x25001800, 0x59182e00, 0x0e2f0e89, 0x3e330701, 0x17163201,
0x03012e33, 0x1837013e, 0x5908f14f, 0x012108f3, 0x0a4e4600, 0x5d435b2d, 0x2d085609, 0x56082d3c, 0x8c435d09, 0x05d7620c, 0x57950121, 0x532a0cd6,
0x23231d41, 0xfe53411d, 0x0a8702ac, 0x4418d420, 0x0221087f, 0x28008200, 0x8001ab01, 0x13000f00, 0xad971800, 0x21112311, 0x8f5c8011, 0x0112220e,
0x0d314c00, 0x00ff2b23, 0x09c34201, 0xef58c020, 0x000b2506, 0x33111700, 0x35320185, 0x55401533, 0x55405640, 0xfe2a0115, 0xfeaa01d6, 0x2758aa56,
0x063b4410, 0x07333523, 0x44038523, 0x5418113b, 0x1e630745, 0x5655250b, 0x96d6d656, 0x2308917e, 0x18132a01, 0x90848b83, 0xf6012108, 0x0d006b01,
0x23010000, 0x23372703, 0x13331707, 0x37330717, 0xa9559501, 0x60556037, 0x38a85560, 0x01290682, 0x63f2fe6b, 0x01ababab, 0x2705820e, 0x00000300,
0xd601e9ff, 0x2224c382, 0x32002a00, 0x2329c382, 0x03272606, 0x16323634, 0x24048415, 0x1632013e, 0x2b0e8917, 0x27010e03, 0x22012e03, 0x33030706,
0x132f0785, 0x01309533, 0x1826040f, 0x24191924, 0x84180118, 0x3d0a8303, 0x010f0426, 0x1b15051e, 0x3d050617, 0x1b17068e, 0x3d1a0515, 0x14090115,
0x120e6e01, 0x038f0e12, 0x1492fe34, 0x6c010109, 0x080b0b09, 0x4301bdfe, 0x090b0b08, 0xe742befe, 0x01d32c07, 0x001b0080, 0x3300001f, 0x85372337,
0x82332003, 0x180382d9, 0x200ac374, 0x25118213, 0x08561073, 0x03821755, 0x0f2b0f25, 0x8c2b0f80, 0x162d280d, 0x2b551680, 0x82552b80, 0x25068500,
0x80800001, 0xa3460000, 0x05a77d06, 0x2f002b28, 0x34130000, 0xac4b3336, 0x8472820b, 0x237c866e, 0x37230723, 0x07210382, 0x207c8333, 0x20058237,
0x05ea4940, 0x3105e87f, 0x56072b55, 0x2b072b08, 0x2b0f2b08, 0x2a072a07, 0x03825508, 0x0f290982, 0x412b082a, 0x01550f55, 0x09d15755, 0x2b2b1526,
0x2a562a2b, 0x06830582, 0x87568021, 0x01ab29ef, 0x00190080, 0x0100001d, 0x460c544e, 0x27350b09, 0x01331523, 0x221c1f61, 0x36364901, 0x1b220149,
0x0127221e, 0x05e56602, 0x2a6e2729, 0x1f4c012a, 0x82233911, 0x261f8219, 0x1f113923, 0x5b2c4818, 0x2c2e050e, 0x00d54c48, 0x00000500, 0xab01c0ff,
0xfd829601, 0x50001d21, 0x052406e1, 0x13233533, 0x0320719c, 0x07202182, 0x01240382, 0x212b2b40, 0x2a297c99, 0x2b562a2a, 0x012b402b, 0x2b848476,
0x48020248, 0x12392336, 0x2c49171e, 0x25054c67, 0xd54b492c, 0xf78200ff, 0x00820020, 0xe9828b82, 0x0749c020, 0x00112508, 0x25000017, 0x17206986,
0x27270782, 0x21151733, 0x82073735, 0x83272004, 0x2bab3e79, 0x2a2a562b, 0xfe51882f, 0x016b40d6, 0x55806b80, 0x552a5555, 0x8585512b, 0xc0c06a7b,
0x6052826a, 0xab270843, 0x19001500, 0x44130000, 0x15220670, 0x58191523, 0x3522087c, 0x50823323, 0x01aa2b3e, 0x01182418, 0x267b15aa, 0x2536252b,
0x157b262b, 0x012a0140, 0x18181280, 0x80ea2b12, 0xea220082, 0x4318c0c0, 0x4f8509f3, 0x519b2920, 0x2306072f, 0x36352726, 0x011f3237, 0x0614011e,
0x2d619507, 0x09050398, 0x05090101, 0x08051e03, 0x6f8e0508, 0x0103922d, 0x010a550a, 0x0b051d04, 0x83050a0a, 0x830420cf, 0xd6013204, 0x03008001,
0x10000c00, 0x00001e00, 0x21152101, 0x07c26317, 0x7a230721, 0x1d2105a6, 0x2ad48301, 0x26343533, 0x00ff8001, 0x50150001, 0x49300518, 0xfe40aaaa,
0x55241cd6, 0x24550001, 0x6b558001, 0x2e05af5e, 0x24806a95, 0x5555801c, 0x00241c80, 0x59060000, 0x082d089f, 0x2a001600, 0x32002e00, 0x00003600,
0x2d601801, 0x05255a08, 0x23152127, 0x33363435, 0x16d86401, 0x35170729, 0x07351727, 0x85950115, 0x8209207a, 0x82ff2075, 0x011c2b75, 0x690a0115,
0x69050e05, 0x0888010a, 0x3f3f802a, 0x4040943f, 0x400140aa, 0x55209185, 0x56218f82, 0x3e8f8256, 0x060da6fe, 0x39040439, 0x0c700d06, 0x04043406,
0x1c0c0634, 0x6422221c, 0x3f224023, 0x8240223f, 0x82af83ae, 0x01d6229d, 0x0813416b, 0x26002222, 0x9f821182, 0xb3871720, 0x23350727, 0x011e3715,
0x06594717, 0x37363423, 0x821e8325, 0x2b012303, 0xa185c0ab, 0xab802234, 0x4001241b, 0x1c2440d5, 0x2a2a6a01, 0x566b012a, 0x8e85c056, 0x5555802a,
0x1b2401d5, 0x6b55556b, 0x2b252282, 0x2a966b6b, 0x06f3602a, 0x9601c032, 0x1d001300, 0x32002500, 0x43003a00, 0x00004c00, 0x2413eb65, 0x35331505,
0x218d8333, 0x7a5f0723, 0x37232105, 0x17261183, 0x35362733, 0x14892634, 0x1808ee60, 0x2008c6a8, 0x089766c0, 0xfe290888, 0x12101aab, 0x10121919,
0x2bb9820b, 0x101b4009, 0x11111c0e, 0x0a101218, 0x762d0e83, 0x2d1e1e17, 0x0c161e1e, 0x10191111, 0x11316610, 0x2b802028, 0x40192418, 0xda82012b,
0x2b804027, 0x160c332b, 0x230e8712, 0x24362401, 0x1a230282, 0x82152015, 0x00002102, 0x08085b41, 0x28004023, 0x35003100, 0x42003e00, 0x00004600,
0x23072201, 0x011d010e, 0x33171614, 0x3b161415, 0x3d363201, 0x5c098a01, 0x27220552, 0xf6522623, 0x33072408, 0x53252315, 0x0520072c, 0x15200c82,
0x012f0382, 0xbd1e2555, 0x12181812, 0x2b090c16, 0x84800c09, 0x83162005, 0x1f122d10, 0x2a2a2025, 0xe12b2b3f, 0x00015656, 0x2205ee4e, 0x8256eefe,
0x40012a00, 0x12180115, 0x01181280, 0x20ed8315, 0x87058515, 0x01202112, 0x3f243483, 0x15151f2a, 0x23052a4f, 0x1615152b, 0x012dc782, 0xe6ff0000,
0x9601c001, 0x00001f00, 0x08327413, 0x56153321, 0x172605a0, 0x33352737, 0xb6853335, 0x83552321, 0x80162a58, 0x2a3c1e5a, 0x805a1e3c, 0x230e8316,
0x090c9501, 0x01226a82, 0x168237c0, 0x82373721, 0xc0372217, 0x20128401, 0x05734700, 0x5a01c02c, 0x00000d00, 0x17373337, 0xdb821737, 0x2707273c,
0x3c402307, 0x47441a5b, 0x65325544, 0xab552a15, 0x4757bfaf, 0x9f82322b, 0xb351004f, 0x01eb2d06, 0x002f00ab, 0x35232500, 0x012b2634, 0x98830482,
0x04832320, 0x011e3337, 0x23070614, 0x3b161415, 0x013e3501, 0x15171632, 0x3d363233, 0x31048201, 0xb5012634, 0x56121820, 0x561e2e1e, 0x18201812,
0x04822121, 0x01511227, 0x01203220, 0x23108251, 0xd51e1e17, 0x07821883, 0x27821720, 0x29861889, 0x00223883, 0x0082000b, 0x01c00127, 0x00030080,
0x22b78207, 0x79290025, 0x392406a7, 0x41003d00, 0xdd58c783, 0x23352509, 0x33153337, 0x43051f79, 0x15220540, 0x0f823523, 0x17233526, 0x03152335,
0x3720ec82, 0x25201e82, 0x07200786, 0x402b0786, 0x2aab2b2b, 0x2a552b2a, 0x462b802b, 0x552107da, 0x820f842b, 0xabfe2210, 0x20058280, 0x27048355,
0x55aa2ad5, 0x2a2b552b, 0x06820082, 0x03832b20, 0x55558026, 0x55805501, 0x04833e82, 0x0483d520, 0x0f00002a, 0xc0ff0000, 0xc0010002, 0x1f2cb384,
0x27002300, 0x2f002b00, 0x37003300, 0x4a29b384, 0x5c005300, 0x00006500, 0x20818213, 0x82a28225, 0x06b97f94, 0x544bb582, 0x20168206, 0x20ad8333,
0x20ce8205, 0x22d48403, 0x82053533, 0x59272007, 0xeb8406cd, 0x82272321, 0x36342526, 0x2515013b, 0x2305eb44, 0x15013523, 0x22232082, 0x83013d26,
0x06142438, 0x8235012b, 0x560122bb, 0x20b48380, 0x2500832b, 0x2a402a40, 0xaa82fe2b, 0x2baa2b29, 0x562b00ff, 0x826b2b2b, 0x23d582fa, 0x12192bc0,
0x122bcd82, 0xfe552b19, 0x125555ab, 0x84d50119, 0x806b2111, 0xeb200082, 0x4020f685, 0x56234182, 0x82404015, 0x84012013, 0x2bd52a4d, 0x2a2a6a2b,
0x55952b55, 0x203283aa, 0x2431832b, 0x80fe2b55, 0x84088455, 0x09002e12, 0xd5ff0000, 0xab01eb01, 0x41003800, 0x26fd8500, 0x007c006c, 0x189a008c,
0x22095168, 0x52352637, 0x0727055c, 0x15072722, 0x6d333617, 0x27390504, 0x23273734, 0x0e151607, 0x34262201, 0x17323736, 0x06273537, 0x34012e23,
0x30691836, 0x44032008, 0x1320078a, 0x11880887, 0x3617053b, 0x011d1632, 0x06270717, 0x3727012e, 0x27373527, 0x3717023e, 0x14150717, 0x23668206,
0x1e361725, 0x1e831c82, 0x3d262228, 0x37112701, 0x61823634, 0x0e071736, 0x75072702, 0x0e013629, 0x0e026e02, 0x36523601, 0x171d2936, 0x1d220082,
0x0c823629, 0x29271694, 0x2d1e1e16, 0x85171e1e, 0x44ff2006, 0x068506db, 0x19b2fe28, 0x18090c04, 0x05821806, 0x19010128, 0x09010119, 0x0e82040c,
0x19220582, 0x15861601, 0x23840620, 0x13831820, 0x84180621, 0xab012220, 0x22778301, 0x87170202, 0x44172177, 0x8e86f582, 0x2a201692, 0x2106b075,
0x0886ecfe, 0x8f160121, 0x0e1a3511, 0x02070903, 0x040e0a0e, 0x02060901, 0x020ef60e, 0x04010906, 0x02250f82, 0x0e030907, 0x20168635, 0x2225850b,
0x8310cafe, 0x100b2115, 0xb35f2384, 0x6b220808, 0x17000300, 0x33002300, 0x33250000, 0x14172335, 0x15012b06, 0x22233523, 0x3e352726, 0x32013b01,
0x97791516, 0x33352705, 0x33353315, 0x55182137, 0x342b0b4e, 0x2b350126, 0x090c4b2b, 0x61102010, 0x40260581, 0x20950c09, 0x0282202b, 0xd6feaa22,
0x33080559, 0x094b40a0, 0x0c20200c, 0x0c095609, 0x2b6b090c, 0x3535802b, 0x0fdc4e18, 0x00000024, 0x00820002, 0x01c00131, 0x00130080, 0x01000027,
0x0617011e, 0x83151707, 0x06272892, 0x27012e07, 0x5017013e, 0x3229052e, 0x34262737, 0x011f3236, 0x25a41836, 0x1d1c2708, 0x1e27090c, 0x4958392d,
0x3d2d3e05, 0x2d3d0101, 0x0d3d1215, 0x3d0d221a, 0x013d0108, 0x526c0280, 0x271e2d39, 0x1c1d0c09, 0x220b8201, 0x82536c52, 0x2b278221, 0x220d3d08,
0x123e0c1a, 0x003d2d15, 0x87487482, 0x4b3c2008, 0xee650501, 0x15372108, 0x2f08aa50, 0x07272634, 0x22061416, 0x36342726, 0x07061537, 0x0831bc18,
0x228a2320, 0x1e970124, 0x154b1a17, 0x53022506, 0x013b2f41, 0x32052d4b, 0x181e1214, 0x01304830, 0x01151c24, 0x18241801, 0x660a0c01, 0x21260990,
0x181e5701, 0x2d4b243d, 0x5d432605, 0x44092b09, 0x05474b31, 0x112e1b36, 0x3048181e, 0x2d1e2430, 0x190c2d07, 0x12181812, 0xb006130c, 0x21087d4e,
0x3b5a4e2c, 0x01d62306, 0x09660096, 0x00253305, 0x003f0032, 0x0059004c, 0x17071300, 0x27372707, 0x078e1737, 0x4c350121, 0x1d26056e, 0x21352301,
0xa3463715, 0x05225f05, 0x0c873320, 0x2e353723, 0x180c8201, 0x88092568, 0x013d2c19, 0x1faa2634, 0x1e252b1f, 0x86a52b1e, 0x85a62007, 0xfe2a2c07,
0x011218a6, 0x2a181256, 0x482baafe, 0x4c2005ea, 0x01250684, 0x094d0c01, 0x05d5590c, 0x0c261185, 0x2f2f8001, 0x03821342, 0x07861120, 0x07861320,
0xaa56fe2a, 0x12191912, 0xaa2a2aaa, 0x093a6818, 0x1b4f099d, 0x01d62609, 0x001200ab, 0xfb4a181a, 0x25372c12, 0x21170717, 0x33352115, 0x48053315,
0x5118071e, 0x0f2e0991, 0x1009010c, 0xaafeefa3, 0x2b2b0001, 0xad63eafe, 0x40012405, 0x69ff1219, 0x0e2d0698, 0x276e0515, 0x2b552b44, 0x37242b2b,
0x82028224, 0x00022874, 0x01eaff00, 0x5596016b, 0x275c050b, 0x013b3a06, 0x35373632, 0x2327012e, 0x17263435, 0xc0231533, 0x12180c09, 0x0118126b,
0x2e068201, 0x6b6b0c0c, 0x090c9501, 0x181295fe, 0x82eb1218, 0x09552415, 0x5655950c, 0x0d200ab3, 0x3d37bd82, 0x1e250000, 0x17071401, 0x23072723,
0x36342637, 0x07010e37, 0x59071714, 0x17240660, 0x36270706, 0x7a426283, 0x2e072505, 0x013e3501, 0x20065959, 0x22098227, 0x8201012e, 0x43092fb6,
0x2d37372d, 0x12180943, 0x06013024, 0x8b421d13, 0x1d012f06, 0x30010613, 0x02604924, 0x101b1d01, 0x4d422d26, 0x262d3405, 0x011d1b10, 0x01eb6002,
0xb90c2218, 0x0cb99696, 0x822b1822, 0x0f102426, 0x42302233, 0x3031058d, 0x100f3322, 0x02573024, 0x41264960, 0x581d2a18, 0x05345134, 0x1d583426,
0x2641182a, 0x2105636f, 0x73650004, 0x00852805, 0x00110008, 0x85210019, 0x220621c9, 0x1729c482, 0x16372722, 0x06173732, 0x27a38225, 0x15010e17,
0x27263433, 0x7849b683, 0x18183905, 0x46323f12, 0x46142e14, 0x01ecfe32, 0x17303b46, 0x171baa1b, 0x01463b30, 0x243a9482, 0x18241818, 0x0b6b20ff,
0xd5206b0b, 0x771a6843, 0x1a1a290b, 0x1a770b29, 0x7b4d4368, 0x00962408, 0x5317000b, 0x012119d9, 0xf26c1800, 0xdf6c1816, 0x2c375418, 0x21080644,
0x6998012e, 0xa3445b20, 0x98058405, 0x44682075, 0x058405a3, 0x3f490020, 0x05b35705, 0x85482320, 0x003b3808, 0x0043003f, 0x004b0047, 0x15330100,
0x32212523, 0x15231516, 0x83331521, 0x45142001, 0xd24506ce, 0x013d2605, 0x23053634, 0x24198335, 0x33152723, 0x27861835, 0x4514820b, 0x178205e2,
0x47821720, 0xab012508, 0xaafe2a2a, 0x18125601, 0x40d6fe40, 0x121840ea, 0x56402a56, 0x18181240, 0xd5d55201, 0x2b804040, 0x161515d5, 0x562f0287,
0x15012a2a, 0x12186a2a, 0x1640552b, 0x82161812, 0x12182c00, 0xd51812d6, 0x152a166b, 0x18802b2b, 0x200b538a, 0x09d35cab, 0x0001eb24, 0xb7820d00,
0x06222608, 0x21152107, 0x3e33011e, 0x01263401, 0x072016ab, 0x4301bdfe, 0x1b162007, 0x00012424, 0x132a1318, 0x36240118, 0x059f4524, 0xeb292f82,
0x10001601, 0x17370000, 0x20348735, 0x24428327, 0x01561535, 0x20358503, 0x2343831b, 0x4055c0fd, 0x01233985, 0x4b401318, 0xd6200633, 0x13237385,
0x82171632, 0x7a0e2073, 0x5520053a, 0x01232e82, 0x93bdfe43, 0x86378672, 0x07252373, 0x34862135, 0x42833720, 0xeb013525, 0x89fdfe56, 0x03012174,
0xb38a748d, 0x17000025, 0x82130000, 0x22e68234, 0x5c011e33, 0x232005fa, 0xdc20818a, 0x0a864689, 0xc188fc83, 0xfe820885, 0x00215382, 0x23c78301,
0x3700000f, 0x2d085d50, 0x2622010e, 0x992b2327, 0x202a2007, 0x06869907, 0x1813d525, 0x832a1318, 0x59002004, 0x562d08b3, 0x11000800, 0x1e001a00,
0x34250000, 0x05f34d36, 0x08902720, 0x1123252c, 0x182b0133, 0x24191924, 0x068c8018, 0x2aaa0124, 0xfe54c02a, 0x8c122005, 0xfea72206, 0x077f45d6,
0xeb01e034, 0x05008001, 0x1b001300, 0x17250000, 0x17372707, 0xf4821127, 0xf5821720, 0x27231724, 0x984e1523, 0x012b3405, 0xcb1ecd01, 0xcb4e1e6c,
0x0130246b, 0x2b441519, 0x8240423e, 0x40123453, 0x6dcb1ec9, 0x014f4f1e, 0x24300115, 0x740b2819, 0x82956a6a, 0x062f5388, 0x6001eb28, 0x12000f00,
0x45551c00, 0x43781806, 0x1517290a, 0x26231737, 0x32013b34, 0x20086a82, 0x0d960135, 0x12010112, 0x0e6afe0d, 0x11010111, 0xe2277aa8, 0x0ae40a0a,
0x60010801, 0x0ef50e12, 0x28048412, 0xc6468b55, 0x050a1401, 0x083f5606, 0x9601c025, 0x52001900, 0x0022059b, 0x018a3717, 0x57181120, 0x07240941,
0x35210527, 0x08f96818, 0x96204021, 0x40012100, 0x0b046918, 0x258b1520, 0x8baa0121, 0x2b95240d, 0x18802a80, 0x5709775e, 0x0023059b, 0x48010e25,
0x372405fa, 0x9501011e, 0x210ac958, 0x02593fc0, 0x00002209, 0x26bb8205, 0x01ab0100, 0x820b0056, 0x002b27b9, 0x003d0039, 0x87440100, 0x1807200a,
0x2207dd50, 0x4d272317, 0x15200565, 0x2606104f, 0x013d2622, 0x8c373634, 0x15073b0d, 0x0b013533, 0x01015b44, 0x5a44445b, 0xba5a0202, 0x0a0c092b,
0x18191908, 0xcb436b16, 0x0c092305, 0x09835e0c, 0xa1230782, 0x87550115, 0x44442a27, 0x0c01695b, 0x0b081509, 0x2d1d8202, 0x1515166b, 0x090c1516,
0x010c0940, 0x08854016, 0x15151522, 0x9a08ab82, 0xff000003, 0x01da01d5, 0x000f007f, 0x002f001f, 0x0e072500, 0x15232701, 0x33153727, 0x1e173727,
0x32332501, 0x37011f16, 0x2737010f, 0x3e372707, 0x26270301, 0x27013f36, 0x0727011f, 0x06231533, 0x35d10126, 0x2b0f1a08, 0x2f3c3535, 0x0108275c,
0x106bebfe, 0x25150719, 0x1e256e38, 0x07265d2f, 0x07364819, 0x25160801, 0x1e25396d, 0x1b0f4d5f, 0x0e0e5c77, 0x60602b01, 0x4235522a, 0x11fa1e0d,
0x5e15250d, 0x52341602, 0x110d4335, 0x0e5d9bfe, 0x15250c1e, 0x34165f01, 0x430e016b, 0x83250827, 0x33002a00, 0x055d5100, 0x27263425, 0x82260722,
0x05826399, 0x06222336, 0x0f262707, 0x07010e01, 0x010e2326, 0x07171415, 0x3e17011e, 0x3621ac82, 0x05504325, 0x17363434, 0x2e272206, 0x17013e01,
0x36373216, 0x2706011e, 0x64432622, 0x01500805, 0x14171ed5, 0x1743300e, 0x19241849, 0x140b1219, 0x030a5505, 0x183b201a, 0x1e17140e, 0x6c020217,
0x026c5252, 0xebfe1702, 0x160e0e0b, 0x209c0e0e, 0x02032062, 0x17040806, 0x0804175a, 0x0b140206, 0x0e150f0e, 0x1d17cb0e, 0x041e0d01, 0x18121656,
0x28084682, 0x0215090c, 0x1201620b, 0x1d010d0f, 0x13101d17, 0x01014f3b, 0x10133b4f, 0x10140f16, 0x730e170e, 0x09031212, 0x0e030206, 0x2849820e,
0x15103d09, 0x0e160f0e, 0x089b4400, 0x2b01d629, 0x00001000, 0x82012e25, 0x830720cc, 0x322408c7, 0x33071716, 0x1e890135, 0x724b2b4b, 0x57123217,
0x17372039, 0x1adec04e, 0x4554011d, 0x01403410, 0xc04d1315, 0xb34b3f82, 0x01ab2205, 0x06eb548b, 0x08057142, 0x2335332b, 0x3634012e, 0x17073337,
0x1f072737, 0x33152301, 0x024e3be0, 0x4b3b4e02, 0x3636294b, 0x1e427929, 0x421e7676, 0x012b2b27, 0x8214822b, 0x012b281a, 0x01365236, 0x82751e42,
0x2beb2216, 0x08bb6500, 0x1c006b22, 0x2e210c82, 0x097e5601, 0x1e77a183, 0x20a38308, 0x08304b79, 0x0f593d26, 0x2a410e2c, 0x2308304b, 0x39019645,
0x2408834b, 0x26384701, 0x08834b2e, 0x4c964521, 0x2808096f, 0x00250056, 0x2500002e, 0x35272206, 0x37272607, 0x37342623, 0x013e2733, 0x36351737,
0x37151732, 0x33071716, 0x23071416, 0x21dc8217, 0xc3410727, 0x26223305, 0x160a5501, 0x0d10360a, 0x02024b35, 0x1005354b, 0x0f8f3608, 0x3545ea20,
0x83572005, 0x110d2f1f, 0x0b150b35, 0x06100835, 0x01014b35, 0x0f8a354b, 0x18127722, 0xf7522883, 0x006b2709, 0x00130003, 0xc5790017, 0x89461807,
0x2117280a, 0x1135013e, 0x67072634, 0x172006ed, 0x35200782, 0x01220382, 0x5918feab, 0xbd270dc3, 0x2b552b2b, 0x822aaa2b, 0xe2391900, 0x2b7f2112,
0x2a210082, 0x08674180, 0x6b01dd39, 0x00001c00, 0x27073325, 0x27263433, 0x06072226, 0x011e1714, 0x82061737, 0x3734230c, 0x0c823236, 0x95014608,
0x616a6947, 0x66271312, 0x1f252528, 0x321f254e, 0x32322c71, 0x19348835, 0x6a6ac019, 0x25132f19, 0x27662825, 0x20110c1e, 0x352a0d1d, 0x32323588,
0x00003e1a, 0xff000004, 0x01a601d5, 0x000c00c0, 0x00210018, 0x05ed4731, 0x013e1729, 0x37171632, 0x8807012e, 0x06222109, 0x23085056, 0x06222337,
0x0b8b7019, 0x3100013a, 0x1a1e2055, 0x1a465046, 0x9b55201e, 0x2c270f1e, 0x151e0f27, 0x55363e36, 0x25057f46, 0x0c09802e, 0x0483090c, 0x25c00127,
0x1d1b1e20, 0x2b28821e, 0x0e1e8125, 0x1e0e1111, 0xd3171714, 0x080e2519, 0x0900ff28, 0x0c01010c, 0x07820109, 0x7f590020, 0x8203200c, 0x001c27a1,
0x37232500, 0x70180533, 0x14380d4b, 0x32213316, 0x34113536, 0xa0800126, 0x00ff752b, 0x260708a8, 0xe0a80606, 0x2c0ae24e, 0x362b2b55, 0x250707a7,
0x01a80808, 0x9269182b, 0x06934a0d, 0x8363c020, 0x38618206, 0x35170735, 0x27233521, 0x27371533, 0x33152115, 0x55d66b01, 0x2a000155, 0x290682d6,
0x552a00ff, 0x40555540, 0x05848080, 0x250deb5b, 0x0012000e, 0x4d660019, 0x062b4505, 0x3523152a, 0x27153305, 0x0717013d, 0x2b2b5182, 0x1b65011b,
0x5555bb40, 0x822a9090, 0x552a2450, 0x662baf55, 0x40200554, 0x90264e83, 0x5a653b10, 0x0a83d92b, 0x00002a28, 0xff000003, 0x978301ea, 0x0f000624,
0xfb821800, 0x07233527, 0x17153315, 0x24a09023, 0x202b1515, 0x25a48c76, 0x16158080, 0xa98c2b55, 0xac830120, 0x01ab0128, 0x001600ab, 0x43830100,
0x20082d75, 0x6b781823, 0x6b6b2109, 0x82059f43, 0x5a2b2005, 0x02300533, 0x56550160, 0x02566b6b, 0x48373648, 0x37480101, 0x21059b4b, 0x9f446148,
0x01c02408, 0x82090056, 0x365383f7, 0x2e171632, 0x9595d501, 0x0f287350, 0x5500016d, 0x35579595, 0x82855338, 0x0002212b, 0x2b840484, 0x81860f20,
0x27202d84, 0x27223783, 0x34861501, 0x9595ef23, 0x25388955, 0x95954028, 0x39825540, 0x03002d08, 0xfdff0000, 0x9601d901, 0x30002400, 0x00003900,
0x36263725, 0x17013e37, 0x0e070616, 0x06072301, 0x07010e27, 0x2726040e, 0x023e1617, 0x37211782, 0x8c641834, 0x08c3520b, 0x0f012808, 0x15160114,
0x12144421, 0x2f151f11, 0x0e0d1314, 0x0807170d, 0x27201207, 0x0b35112a, 0x07081223, 0x740f1a08, 0x19013c2e, 0x4e080c05, 0x27080562, 0x2e1513a7,
0x12112015, 0x15204514, 0x080b1316, 0x0f0b0e04, 0x010b1c26, 0x0109170c, 0x0f261c11, 0x09050e0c, 0x2d3c01f5, 0x29203987, 0x59063272, 0x0021073b,
0x2fc182c0, 0x000b0007, 0x0013000f, 0x05000017, 0x35333523, 0x8706df5d, 0x82372007, 0xd501220f, 0x2100822a, 0x00822b55, 0x24052244, 0x2b2b2a15,
0x22038480, 0x82002b80, 0x06270800, 0xeaff0000, 0x6b010002, 0x29000d00, 0x33002e00, 0x3b003700, 0x15130000, 0x36343533, 0x011e3337, 0x3533011d,
0x48333501, 0x21200638, 0x14321083, 0x15332306, 0x2b061423, 0x35262201, 0x32140633, 0x04833734, 0x2c07654c, 0x12196b55, 0x2b19126a, 0x125555fe,
0x05185018, 0x55121823, 0x2c148480, 0x4c130935, 0x163f130a, 0x40016a40, 0x211e82d5, 0x1a820101, 0x18fed521, 0x840e108e, 0x13132336, 0x03820101,
0xab151528, 0x00009595, 0x00820002, 0x01ab0123, 0x38098240, 0x37000005, 0x11031117, 0xc0b6f507, 0x0180c0b6, 0x0100ff00, 0x00008000, 0x24cb8203,
0x019601e0, 0x2c0982ab, 0x00220012, 0x37172500, 0x07233727, 0x0a274f27, 0x013e1722, 0x0806404f, 0x1f16142f, 0x01170701, 0x441e441e, 0x4c4b0110,
0x3d01110e, 0x013d2d2d, 0x17150f11, 0x40405401, 0x14180154, 0x241e624b, 0x88431f44, 0x260f4b4b, 0x058a4116, 0x2e261631, 0x401f3714, 0x54020254,
0x14371f40, 0x441f614b, 0xff6905f7, 0x0a9b6505, 0x35231523, 0x25038533, 0x21112103, 0x00842aeb, 0x56019627, 0x566baafe, 0x230182d6, 0xaa01d6fe,
0x08085347, 0x6b01be20, 0x1a001600, 0x26010000, 0x23172327, 0x010e2337, 0x16060307, 0x33373317, 0x013e3317, 0x0782012f, 0x82013108, 0x05581104,
0x085a0534, 0x013a010c, 0x077e090d, 0x0a7b0748, 0x04de010d, 0x5a010438, 0x40400110, 0xfe060a01, 0x010f0ad5, 0x0f016b6b, 0x55557c0a, 0x31085e82,
0x00000500, 0xa601fbff, 0x10006601, 0x19001500, 0x26001d00, 0x023f0000, 0x1433013e, 0x27020f06, 0x35022e22, 0x23071707, 0x07173735, 0x07011f35,
0x23513723, 0x3c3c3a07, 0x28983836, 0x3c0b4646, 0x140e160f, 0x381e0f05, 0x341a1b1f, 0x1e190371, 0x052f6c98, 0x0b3c933d, 0x98284646, 0x4b3c3638,
0x160e1405, 0x1f391e2e, 0x1e340356, 0xf51a1a27, 0x82121b12, 0x0a0b4502, 0x77820e20, 0x1e010030, 0x06141701, 0x2e373607, 0x27152701, 0x06821137,
0x37363424, 0x16820706, 0x07173530, 0x6c520001, 0x241b1f02, 0x49600201, 0x0b8b5555, 0x01550131, 0x2f1b3748, 0x2f271c11, 0x5540013e, 0x8896fe55,
0x023d210f, 0x00210f82, 0x25e88304, 0xab01ab01, 0xe3820f00, 0x21001b22, 0x82089144, 0x3e15226e, 0x29708201, 0x35171603, 0x23012f26, 0xa6181716,
0x3f0807d7, 0x61611501, 0x2f3b3b2f, 0x02025341, 0x2e26bf53, 0x2b34191c, 0x101e1d05, 0x061d1e11, 0x6901052b, 0x535f6142, 0x45614409, 0x5d092b09,
0xfe5d4343, 0x2b051dd9, 0x2e531105, 0x7c181e25, 0x1d2e251e, 0x830a2350, 0x00192377, 0x33190026, 0x012a1051, 0x011d1632, 0x012b0614, 0xe4823735,
0x86230721, 0x40552bf9, 0x12191912, 0x18181240, 0x04826801, 0x40c0122e, 0x01016148, 0x4802022b, 0x01565636, 0x200d846b, 0x282884eb, 0x6002eb95,
0x36151549, 0x20ff8249, 0x20ef8656, 0x24ef82aa, 0x000b0005, 0x33ef8311, 0x37361725, 0x15070623, 0x06273736, 0x07272637, 0x012f1716, 0x2906c354,
0x34012e35, 0x01153736, 0xc1821f68, 0x2e65042d, 0x78191f26, 0x121f1d05, 0x84613204, 0x2f4130fb, 0x752f3b3b, 0x1c2e251d, 0x1c062b4d, 0x838e111f,
0x751d23e2, 0xf7844261, 0x4524fe82, 0x53094461, 0x220d6b53, 0x841c000c, 0x17352def, 0x010e3507, 0x27231707, 0x3337013e, 0x2805766c, 0x2622012b,
0x36341135, 0x06cf5801, 0xd536342d, 0x48365656, 0x012b0202, 0x4dde6101, 0xff8205f0, 0xc0fcfe23, 0x2dfc82c0, 0x56406b01, 0x49014055, 0x49151536,
0x60182c60, 0x122c090b, 0x95ebfe18, 0x12401218, 0x06000019, 0x01237c83, 0x828001c0, 0x001521ed, 0x2a07475a, 0x2e370100, 0x07062201, 0x82013e17,
0x270a8578, 0x011f3236, 0x15233523, 0x21063b5c, 0xde542133, 0x519b1805, 0xaf01390b, 0x3a371711, 0x13111637, 0x0f2e312e, 0x0f242724, 0x183c1711,
0xd52b2a0a, 0x12229482, 0x05822a01, 0x2b2bfc35, 0x4b2a2a4a, 0x42012b2b, 0x16161711, 0x12121117, 0x820f2312, 0x16112400, 0x18557516, 0x240855e6,
0x6a181255, 0x8400832b, 0x085f479e, 0x372cb082, 0x33372723, 0x15173735, 0x23071733, 0x322d0485, 0x34231516, 0x80eb3336, 0x15802b2b, 0x83058315,
0x19122e03, 0xeb121980, 0x15402b2a, 0x2b2b1515, 0x231b822a, 0x18121218, 0x2709ab48, 0x006201a2, 0x00100008, 0x37201282, 0x28076a4c, 0x17011e27,
0x27012e23, 0x36078615, 0x1a1a1484, 0x1b1a1a28, 0x3c03bc8d, 0x5a749903, 0x013d0377, 0x83724056, 0x1a282713, 0x8dbc03ef, 0x18829974, 0x405a7724,
0x0b6a0156, 0x05836208, 0x20001824, 0xfd6c2800, 0x21232109, 0x2005b841, 0x08727013, 0x220b5a76, 0x6c012e33, 0xfe2c06df, 0x191912d6, 0x12120e47,
0x2e12121c, 0x2506d947, 0x2b02785b, 0xbe649003, 0x70ff200d, 0x6b2d0603, 0x3649012b, 0x2b576049, 0x6d5b7802, 0x82838290, 0xddff2e87, 0xa301e301,
0x00001b00, 0x3717013f, 0xbc681827, 0x2c078d07, 0x1f251e01, 0x351e1e16, 0x1e1e3517, 0x21078217, 0x07823416, 0x341f1f30, 0x5a263517, 0x263896fe,
0x1f1e161e, 0x1c861635, 0x17222487, 0x1c822535, 0x00050033, 0x01d5ff00, 0x00a001d6, 0x00260008, 0x0036002e, 0x0a61603e, 0x17370336, 0x27353315,
0x33011e37, 0x2f262235, 0x23012e01, 0x07230622, 0x37341382, 0x27072707, 0x36342622, 0x27153337, 0x3634012e, 0x0715013b, 0x07820f83, 0x60012708,
0x24181812, 0x163b1818, 0x0d2d2b2c, 0x1c223c17, 0x06160e31, 0x07050b13, 0x262b6f05, 0x29086922, 0x090c0c09, 0x05832a40, 0x83956a21, 0x55280805,
0x24184b01, 0x18241919, 0x2b5ed7fe, 0x402ba080, 0x1b2a1b1a, 0x0c092219, 0x48642f02, 0x2b16ad0f, 0x0c120cc0, 0x01552b01, 0x2b210682, 0x210482aa,
0xa341002a, 0xceff2d05, 0xb201e601, 0x1c001300, 0x29002500, 0x1f25b982, 0x0f170701, 0x2a9b8201, 0x37012f07, 0x17013f27, 0x7a071737, 0x07341075,
0x01072737, 0x264b0d8e, 0x530d4c26, 0x0e523b3b, 0x4b26264a, 0x70200983, 0x3a0ce971, 0xb81eb890, 0x26528301, 0x52264b4b, 0x0e3c3b0d, 0x4a4b2653,
0x3c0e5226, 0x45014b3b, 0x952005b9, 0x40200685, 0x8f862782, 0xc0268182, 0x04008001, 0x6f440c00, 0x28808405, 0x013e3525, 0x010e3337, 0x22038227,
0x18212507, 0x310d8552, 0x4a364a6b, 0x2dd6fe60, 0x022b013c, 0x01403f54, 0x60181b24, 0x40340c33, 0x80604060, 0x3c012b80, 0x93543f2d, 0x6b01241b,
0xd6fe1219, 0x21058143, 0x5b451813, 0x0023340c, 0x0033002b, 0x07171300, 0x07170727, 0x17163617, 0x82012e07, 0x2b0d83e8, 0x37173727, 0x3f342627,
0x1f323601, 0x17271382, 0x3507010e, 0x83353632, 0x349b838f, 0x2d2e79f8, 0x0919321e, 0x4b0d2010, 0x0a07050d, 0x2e1f3119, 0x0813832e, 0x0d0d3c21,
0x0d220d0f, 0xb52d1e3d, 0x12243001, 0x61018018, 0x02483648, 0x2e79ab01, 0x19311f2e, 0x8205070a, 0x10202c30, 0x1e321909, 0x2d792e2d, 0x823d1e2d,
0x0d0f332d, 0x2d1e3c0d, 0x013024e8, 0x4812182b, 0x022a0161, 0x83563648, 0x00802e08, 0x00300025, 0x27073700, 0x15330706, 0x297d8323, 0x21352735,
0x1e150715, 0x0f821701, 0x27263327, 0x26372707, 0x080a8227, 0x17070634, 0x06141632, 0x012f2223, 0x1eb43637, 0x29061c1d, 0x4a5f0155, 0xaaaa01aa,
0x55015f4a, 0x1d1c0629, 0x30241d1e, 0x6924302a, 0x12181812, 0x5252090a, 0x11827f09, 0x152b2f28, 0x2b10724f, 0x02822b44, 0x4f721026, 0x242f2b15,
0x1c2d2882, 0x072a2a07, 0x24195c1c, 0x27260418, 0x0ae74b04, 0x19000f24, 0xdd431d00, 0x0e172d11, 0x27330701, 0x012e3317, 0x35211507, 0x200bd243,
0x28d982a7, 0x422c0945, 0x01b93001, 0x0d86462a, 0x30012a2a, 0x253b3b25, 0xd6d67f30, 0x2908b348, 0x008001eb, 0x000c0006, 0xe2600100, 0x15053e05,
0x07353717, 0xebeb0001, 0x80fe2bc0, 0x01959595, 0x69808080, 0x5659ab94, 0x52565151, 0x2c008200, 0xff000004, 0x01ff01c0, 0x000900c0, 0x399b820d,
0x17000027, 0x2327012e, 0x3717011e, 0x37011727, 0x22260301, 0x1406010f, 0x53180117, 0xda7a0744, 0x17073a06, 0x074335a0, 0x678d0b20, 0xff7f510e,
0x00018800, 0x0a190aea, 0x01090988, 0x20078501, 0x331e887b, 0x3d5f1a0b, 0x01028465, 0x00011651, 0x0100ff88, 0x88090917, 0xfe212382, 0x200785ff,
0x871e87f1, 0x01d5228f, 0x208f82fa, 0x2c8d8407, 0x0100003f, 0x1632013e, 0x0723011d, 0x05394633, 0x2e352323, 0x09ca7e01, 0xad880720, 0x7d422520,
0x2db28c09, 0x14016601, 0x1149151f, 0x0c0c096b, 0x527a0109, 0x35972206, 0x08bc8644, 0x371f012a, 0xf279301e, 0x341e2d79, 0x870a1a0a, 0x00010a0a,
0x88091a0a, 0x0f8b0109, 0x0b0f1515, 0x56090c80, 0x160b0c09, 0x0b161e1e, 0xf5210a84, 0x27cd8219, 0x51010383, 0x2f1e3689, 0xc7853785, 0x0a00ff22,
0x1a213e82, 0xa36e1800, 0x009a2408, 0x82160012, 0x088d82bf, 0x23071742, 0x35371707, 0x3e371737, 0x26012f01, 0x27071707, 0x0e108001, 0x2b4b20b7,
0x4a562a2a, 0x020ab820, 0x100e2f0c, 0x012a962b, 0x20b80c99, 0x2a2a564a, 0xb7204b2b, 0x2f0d200f, 0x952b2e0c, 0x0001002a, 0x2d05cb59, 0x00260096,
0x013e2500, 0x0e231135, 0xb1600701, 0x16322306, 0x1541011d, 0x152e0805, 0x2b010e11, 0x3d262201, 0x011e3301, 0x0c094001, 0x010c09aa, 0xea1c242a,
0x012a241c, 0x010c120c, 0x1cd51b24, 0x1801ea24, 0x090c0115, 0x04824001, 0x1ceaea2d, 0x151c2424, 0x0c0c0915, 0x84d6fe09, 0x1812210b, 0x21113f4b,
0x94180019, 0x073608a5, 0x37333523, 0x1e110723, 0x32213301, 0x2e113736, 0x2b800101, 0x0284402b, 0x80ab802f, 0x01121801, 0x01181200, 0x15011801,
0x22008356, 0x82ff802a, 0x05744c0f, 0x26061b41, 0x009601b3, 0x821d0011, 0x072721c9, 0x37200183, 0x340a4c5b, 0x17370717, 0x37273727, 0x01172707,
0x421d56b3, 0x3e561d3e, 0x2749181f, 0xe01f2707, 0x3535043a, 0x05843903, 0x551d232b, 0x1d558080, 0x40362780, 0x2e208354, 0x1d5d2736, 0x3f232440,
0x233f1d1d, 0x18004024, 0x240a1f93, 0x000e0006, 0x086d8217, 0x35211529, 0x05011e33, 0x33153315, 0x25353335, 0x0e012e36, 0x36011e01, 0xebfed501,
0xfe3024c0, 0x80aa8057, 0x0113c3fe, 0x82263327, 0x2ad52b03, 0x65300180, 0x2a2b2b2a, 0x10841429, 0x87012621, 0x01e72353, 0x53870065, 0x37250727,
0x25011e17, 0x25528217, 0x37253717, 0x5485013e, 0xdb012a08, 0x2df8fe0f, 0xfe1d22b6, 0x60aa8b3a, 0x6d6bfe0f, 0x31171118, 0x30181131, 0x795f288f,
0x0b3e0d42, 0x22226032, 0x0d019228, 0x22148330, 0x18001131, 0x2f084b49, 0x0008002b, 0x37000013, 0x26343632, 0x16140622, 0x82058e70, 0x012e32bb,
0x24241c95, 0x01242437, 0x2babaa1b, 0x3001d601, 0x280d83ab, 0x96802437, 0x2580d696, 0x08074430, 0x8001ee26, 0x20000b00, 0x35344382, 0x011e1523,
0x23353317, 0x2e05012e, 0x27010f01, 0x012b012e, 0x25081482, 0x33171614, 0x013e3717, 0x3c012a55, 0x1b80802d, 0x07910124, 0x48180c18, 0x4a0d1406,
0x951c2480, 0x080d4f49, 0x777ec0c0, 0x0c552906, 0x950b0507, 0xab800d0b, 0x95232782, 0x6e190724, 0x67830983, 0x678e1f20, 0xd9642320, 0x21798505,
0xc6833315, 0x012b6b37, 0x80802e3c, 0x4a01241c, 0x6b121820, 0x1b240180, 0x120e6095, 0x23628812, 0x19129565, 0x12225e85, 0xc788121c, 0x8001ad2b,
0x21001500, 0x16250000, 0x20b68206, 0x22c58237, 0x82333527, 0x15162652, 0x16323307, 0x26dd8a25, 0x1202aa01, 0x8315600f, 0x6b8029c9, 0x1e2a1812,
0xc4fe120c, 0x55287583, 0x26241c55, 0x5540170f, 0xab267382, 0x95121980, 0xd7878e0e, 0x23420020, 0x98250809, 0x14000800, 0x00002d00, 0x3e012e13,
0x0e011e01, 0x22231301, 0x23012f26, 0x17011e17, 0x27233733, 0x3537011e, 0x26108206, 0x2307012e, 0x821f010e, 0x3b330822, 0x72371701, 0x2115060e,
0x2215061e, 0x231996d4, 0x2a2a2a04, 0x96293a07, 0x19166805, 0x351b1e37, 0x14072314, 0x1614010a, 0x22051d03, 0x20519218, 0x840b4801, 0x061d3f2b,
0x181eedfe, 0x3227d1ca, 0x0e578001, 0x052e0410, 0x051b1010, 0x20040206, 0x1d177e14, 0x96822040, 0x00030029, 0x01f5ff00, 0x889601ab, 0x54262097,
0x072006f8, 0x2225f488, 0x23270526, 0x499f8235, 0x2720062f, 0x07219882, 0x2c0f8215, 0x0da21733, 0x1a1a221a, 0x012b2f22, 0x05dd413d, 0x6c2a3c08,
0x1f40174a, 0x1e12361c, 0x010b1206, 0x01011b14, 0x4b6c1b24, 0x220d4d01, 0x1a221919, 0x2ec0c0d5, 0x242b013c, 0x134f6c3b, 0x182f011b, 0x08072113,
0x141b0101, 0x01241b7b, 0x8202004b, 0x01d5248b, 0x82ab01c0, 0x0012268b, 0x0e332500, 0x22848201, 0x84353735, 0x3e22086c, 0x01353701, 0x50099500,
0xc095953c, 0x54546a02, 0x43c0026a, 0x7abe1368, 0x80562f42, 0x17178e5b, 0x07505b8e, 0x01d52a06, 0x008001d6, 0x00240020, 0x2145832a, 0x7c18011e,
0x2e261264, 0x37352701, 0x61821517, 0x15070325, 0x84153133, 0x0fb47c5d, 0x013a3035, 0x3a018080, 0x55551530, 0x2b013420, 0x2a090c01, 0x86010c09,
0x15233706, 0x39553758, 0x58375539, 0x24070115, 0x3f098046, 0x00001622, 0x00820010, 0x802ac382, 0x0d000600, 0x15001100, 0x5b181900, 0x5f51081b,
0x08c55d05, 0x15331327, 0x36343523, 0x05554521, 0x32500720, 0x4e078207, 0x33200537, 0x2327128b, 0x013d2622, 0x66271533, 0x2520067d, 0x5535078e,
0x010c2b16, 0x2b0c095f, 0x2a802b55, 0x00012b80, 0x2b16090c, 0x200b8480, 0x2715826b, 0x012b2b2b, 0xabfe2b80, 0x1082068b, 0x0c091622, 0x1d822783,
0xfe210283, 0x832985c0, 0x823e850b, 0x2a552109, 0x2405676d, 0x00002b2b, 0x50db8812, 0x132407eb, 0x1c001700, 0x3125df88, 0x3a003600, 0x05c56900,
0x00004b23, 0x24a38213, 0x23353307, 0x20038237, 0x20078611, 0x24078235, 0x35363211, 0x83088323, 0x2303241c, 0x82033315, 0x35172a14, 0x01161423,
0x26343315, 0x8305822b, 0x82132019, 0x82272015, 0x27298203, 0x80c00622, 0xd6d62b80, 0x2b20bf82, 0x9682e182, 0x82191221, 0x2aaa2204, 0x2005822a,
0x29038280, 0x3c01192b, 0x2a92192b, 0x1f84d52a, 0x21845520, 0x82000121, 0x2b2a2633, 0x2a2b80fe, 0x23fc822b, 0x801219d5, 0x01241f82, 0x00ff2b55,
0x12240f82, 0x2b800119, 0x552b4682, 0x2bd5fe2b, 0x2b802a80, 0x88010019, 0x843b20df, 0x5f3320bd, 0x33200828, 0x8807435b, 0x35232307, 0x038a1523,
0xd284a482, 0x6b200785, 0x02859782, 0x8e055a41, 0x9478820e, 0x21268617, 0x07430d00, 0x82802006, 0x00142209, 0x08614118, 0x60058d68, 0x697c0507,
0x27332108, 0x33208782, 0x42064a68, 0x13200b31, 0x42075042, 0x37201539, 0x152c3682, 0x1b8f011c, 0xe5102b3a, 0x5b01102b, 0x23083c42, 0x2b802a2b,
0x2e103442, 0x65012b2b, 0x1c71fe1b, 0xe52b103b, 0x42552b10, 0xab200b36, 0x21143042, 0xa7640000, 0x0008240a, 0x691a0011, 0x002a0a53, 0x3b363413,
0x15231501, 0x86822523, 0x33352325, 0x82031632, 0x061425ae, 0x2135012b, 0x33250882, 0x26222315, 0x20058213, 0x20038211, 0x20038213, 0x2e038225,
0x4012182b, 0xaa012a40, 0x1240402a, 0x822a2a18, 0xc0fe210d, 0xaa210b84, 0x28008256, 0xfe2a2ad6, 0x012a2a80, 0x201b826b, 0x23008240, 0x98fe182a,
0x33822884, 0x92011828, 0x2aaafe2a, 0x27820001, 0xe7419782, 0x05b75e05, 0x2d330034, 0x010d1501, 0xfec0012b, 0xfe400140, 0x95c0c0c0, 0x23822b2b,
0x2305ff68, 0x00ab01c0, 0x4305b75c, 0x00210bbb, 0x070a5513, 0x1a552120, 0x21172105, 0x2005ec51, 0x180f8e23, 0x240705be, 0x23353313, 0x20038615,
0x20088203, 0x28038607, 0x09560155, 0xfe090c0c, 0x960583aa, 0x1574210b, 0x55210084, 0x2500832a, 0x0c01ab01, 0x2d835509, 0xaa220482, 0x3e84090c,
0xab200482, 0x01201584, 0x01231c85, 0x42d52b00, 0x2b2405e8, 0xaa2a2aab, 0x0021ce84, 0x24d38204, 0x01c00100, 0x5acf826b, 0xc5910573, 0x2b353323,
0x23998201, 0x23153317, 0x8182998b, 0x162a5526, 0x6b01aaaa, 0x55297c8a, 0xd52b2b2b, 0x0600002b, 0x056b4f00, 0x27008025, 0x42003700, 0x4720059b,
0x24187545, 0x3d012e23, 0x07896601, 0x07061424, 0x39410323, 0x0625410f, 0x21412720, 0x45012006, 0x96200f92, 0x21092a41, 0x3241c096, 0x25a4820a,
0x2a551515, 0xa5452a2a, 0x8a2a200e, 0x010122b3, 0x0932412b, 0xd52a5524, 0x1e41aa2b, 0x82082005, 0x01c024c3, 0x828001d6, 0x000922cd, 0x26c5822d,
0x00490045, 0x8751004d, 0x172727c7, 0x07172715, 0xb1832327, 0x11a88218, 0x27013b2a, 0x3d262223, 0x013f2701, 0x2b26cd86, 0x23352701, 0x14420527,
0x23072305, 0xd585012f, 0x82012f21, 0x27d184d5, 0x19c03b10, 0x3a2b1b04, 0x95248e84, 0x16090c95, 0x3b27d784, 0x0c09102b, 0x85241c2b, 0x3cda25d7,
0x59012a19, 0x2f23ef83, 0x82153c80, 0x84552000, 0x3b3b26dc, 0x1b3a1919, 0x0988462b, 0xdb82e286, 0x1b2b1023, 0x22528415, 0x422b193c, 0x80260612,
0x10d52a56, 0xd3420615, 0x26e78308, 0x001000ab, 0x8235002b, 0x003f29e7, 0x00460042, 0x004e004a, 0x82080d42, 0x25ad83bb, 0x07013627, 0xae412127,
0x21e08705, 0x09823634, 0x012f2623, 0x82d98637, 0x8317202a, 0x032721e3, 0x2720df84, 0x2320dd82, 0x4207b841, 0xef320640, 0x272a042b, 0x1b8a0107,
0x09b0fe15, 0xd0090c0c, 0x0683a52b, 0x0a2b2527, 0x011c2c04, 0x2a0b837a, 0x09c48044, 0x15d12f0c, 0x41101015, 0xe44205c1, 0x2b2a2807, 0xfe082604,
0x41151b31, 0xbb4105c2, 0x032c2405, 0x4d1b2c0a, 0x8020052b, 0x1927e282, 0x2b00012e, 0x41ba0fd5, 0xe74207ca, 0x89232010, 0x089d43d9, 0x4408e742,
0x15220569, 0xef423523, 0x2a402212, 0x42028240, 0x402411f3, 0x40402b40, 0x098f4f18, 0x9b074f43, 0x37272267, 0x05906917, 0x43270721, 0x4d231057,
0x87371e37, 0x236c9002, 0x381e38eb, 0x1f840282, 0x00000023, 0x066b430b, 0x20059344, 0x069d6e2b, 0x22057343, 0x8553004d, 0x631720e9, 0x3d2d0623,
0x17363401, 0x17163221, 0x15072715, 0x06a74423, 0x37543320, 0x441b8305, 0x14491793, 0x012e2c05, 0x07373527, 0x17161415, 0x42550140, 0xfe25056a,
0x0c0c09ab, 0x210d8409, 0x0b848a36, 0x1c01ab24, 0x1482df17, 0x84157421, 0x2b562100, 0xf52b0083, 0x2a350160, 0x6001352a, 0x44171e35, 0x0f2c0fae,
0x0c373d18, 0x0c095609, 0x1a4224ab, 0x2f16ac44, 0x2d402b95, 0x470c0c47, 0x1802402d, 0x06281939, 0x27087369, 0x009601d2, 0x00400008, 0x0a07be18,
0x2734362a, 0x012f3637, 0x26010f26, 0x2b240582, 0x010f2201, 0x2605ae61, 0x06011f06, 0x82071714, 0x3f162e06, 0x011f1601, 0x32013b16, 0x3736013f,
0x390e8217, 0x00012736, 0x402a2a20, 0x017f2a2a, 0x04062d01, 0x3509042b, 0x02081410, 0x03825608, 0x35101423, 0x21118209, 0x1a992d06, 0x83017521,
0x2a403b3b, 0x0a160a35, 0x4a080623, 0x0d150307, 0x09093808, 0x150d0838, 0x084a0703, 0x18972306, 0x240d875e, 0x00480038, 0x29cd8251, 0x16170714,
0x2f06010f, 0x05820601, 0xc982c382, 0x82072721, 0x3f26260e, 0x37342601, 0x23068227, 0x36011f36, 0xc382bd82, 0x1721c982, 0x820e8237, 0x79162030,
0x12540fca, 0x70012f08, 0x03042001, 0x2506031e, 0x01060d0c, 0x03823c06, 0x250b0e23, 0x22118206, 0x87012004, 0x0e0b211a, 0x0d211a86, 0x201a870c,
0x0ae65e25, 0xed54a720, 0x07c03a05, 0x06041808, 0x0f010533, 0x06280509, 0x09052806, 0x3305010f, 0x08180406, 0x2118840e, 0x18890206, 0x84060221,
0x5fb92018, 0xb8180b14, 0xaf7b075b, 0x0003390b, 0x000f000c, 0x1300001b, 0x25231533, 0x0614011e, 0x36342622, 0x25231707, 0x33099a7c, 0xc0c02b33,
0x36294a01, 0x36365236, 0x01c060c1, 0x2a40406a, 0x01210282, 0x83168295, 0x36522413, 0x836aaaff, 0x00402111, 0x0808cf47, 0x6b01c030, 0x00000900,
0x0e152725, 0x013e0701, 0xc0011517, 0x0f6d6f95, 0xd5507328, 0x86125696, 0x01363752, 0x01000057, 0xecff0000, 0x9601c001, 0x2b822200, 0x27070631,
0x37273436, 0x34363216, 0x07062226, 0x82071714, 0x16142606, 0x06173732, 0x05006415, 0x1980012e, 0x02029811, 0x24351296, 0x01243624, 0x35390885,
0x24019712, 0x69242434, 0x07580f01, 0x11580710, 0x24243724, 0x5708071c, 0x28238210, 0x07075810, 0x3523231b, 0x4c6b8423, 0x978205cf, 0xc44c0120,
0x06be4c0a, 0x4cab0121, 0xfb4c09b8, 0x00092209, 0x82998213, 0x012e2bc3, 0x17373527, 0x37013e03, 0x3c832735, 0x36860120, 0xc0c0c02a, 0x9501563e,
0xd5550295, 0x2c06f64c, 0xabfe5656, 0x69487712, 0x48694242, 0x09ef5f77, 0x0c00ab22, 0x2a204b82, 0x4a824d82, 0x011e332e, 0x33373632, 0x1e27010e,
0x3e231701, 0x6c630382, 0x06826105, 0x2508f960, 0x013d2d00, 0xc782012b, 0x3d290582, 0x01241b2d, 0xb0240180, 0x051f5d2a, 0xe96f2a20, 0x01ab2208,
0x2a1b823c, 0x3c2d1b24, 0x1b2401d4, 0x823f241b, 0x21238235, 0x82511318, 0x13002206, 0x27878b18, 0x001d0006, 0x01000020, 0x3324d582, 0x3217012e,
0x0bbb5d18, 0x013b3622, 0x9482e282, 0x27370324, 0x70850001, 0x80187a20, 0x7a86093a, 0xa0a0ab23, 0x83898201, 0x09a06d6a, 0x85181321, 0xebfe2476,
0x6300566a, 0x802b0957, 0x15000700, 0x22001e00, 0x82002600, 0x151321fd, 0x2705c84b, 0x1d062205, 0x21353301, 0x34220e82, 0x3c762326, 0x201e8609,
0x08078233, 0xaa2b8027, 0x1cebfe2b, 0x2a014024, 0x151c2440, 0x120c0c09, 0x2be20c0c, 0x2b2b2a2b, 0x2a558001, 0x246b552a, 0x4040801c, 0x06e55280,
0x7f281d82, 0x56566b6b, 0x03006b6b, 0x00247f82, 0x6b01ab01, 0x2a06f74d, 0x17072500, 0x07353307, 0x82011703, 0x07353801, 0x01170727, 0x2c431e3c,
0x2c4a2c76, 0x011ef4fe, 0x6fc92c0c, 0x84a26f1e, 0x850c8211, 0x6f762112, 0x00221382, 0x4b840200, 0x6001a022, 0x00284b84, 0x15231501, 0x07371533,
0x01250685, 0x4beaea55, 0x2503824b, 0x2b356001, 0x04834a35, 0xc7504b20, 0x01db2a08, 0x00120080, 0x01000018, 0x367e8217, 0x37272335, 0x23353317,
0x33352307, 0x33213337, 0x23270717, 0x82706b01, 0x3c3b2d00, 0x20202a2d, 0xc04560c0, 0x60c0fe3b, 0x45230c82, 0x82608001, 0x3c402700, 0xc080292d,
0x0682c040, 0x20085743, 0x20d38280, 0x2051820b, 0x38cf8223, 0x37352115, 0x01213527, 0x8080c480, 0x8000ffc4, 0x01000180, 0x2b808040, 0x2203822b,
0x82050000, 0x01002433, 0x608001d6, 0x1b24089b, 0x21130000, 0x2608d575, 0x35372523, 0x82372307, 0x8203828f, 0x2b3730cf, 0x2b55aa01, 0x01552baa,
0x3d52166a, 0x83803c80, 0x1a082603, 0xd5800156, 0x240082ab, 0x523c162a, 0x22008380, 0x47553c19, 0x537608d7, 0x000b2805, 0x3b00000f, 0x83233501,
0x331724de, 0x82132311, 0x40402603, 0x40406b40, 0x2705846a, 0x95954040, 0x00ff0001, 0x002a8b82, 0x00000200, 0xd701f9ff, 0xa1828201, 0x0000182f,
0x34262737, 0x07011f37, 0x07270717, 0x0bf96127, 0x195aad3e, 0x1f549619, 0x93931e93, 0x0f0bd01e, 0x1949201a, 0x1a1f0917, 0x1a5aa33d, 0x16951a44,
0x19291886, 0x0a1e1b3d, 0x204a1917, 0x21838219, 0x5b840100, 0x8401da28, 0x00001500, 0x91582717, 0x07172305, 0x03853717, 0x22062208, 0x1e6d012f,
0x0d0d04ce, 0x1545145c, 0x14451345, 0x0d5d1346, 0x06050d22, 0x0d05ce1e, 0x145d0e21, 0x25018645, 0x050c0c5d, 0x4f860000, 0x0e23ab83, 0x8d250000,
0x3d01229f, 0x20978cd0, 0x8b0e82ca, 0x8802208d, 0x0005228b, 0x20e7871f, 0x82e58402, 0x013f21f2, 0xed84968d, 0xec843520, 0xf3859f92, 0xa9921e86,
0x6b820720, 0x5005f760, 0x1d2407e5, 0x25002100, 0x2e23c082, 0x55012b01, 0x272408b4, 0x17333523, 0x07870382, 0x0f863520, 0x01ab0124, 0xc3551218,
0x2beb2309, 0x0284ab2b, 0x822a5521, 0x2b562600, 0x126b012b, 0x06ce5518, 0x11821620, 0xaa552b2a, 0x552a2b55, 0x03000055, 0x03267788, 0x15000700,
0x96180000, 0x1320075f, 0x200d2956, 0x21358215, 0x61896b2a, 0xab180127, 0x012bc06a, 0x0f235615, 0xc301dd28, 0x06008001, 0xb9821200, 0x82263421,
0x172f08b9, 0x15170701, 0x013b1614, 0x37173732, 0x12189501, 0xfef23296, 0x18381bb9, 0x090bd612, 0x55011c28, 0xf2321912, 0x381b1101, 0x061912ef,
0x82001c29, 0x84012000, 0x01eb2293, 0x29ff8396, 0x15331513, 0x1d062223, 0x21782301, 0x83078d06, 0x33352b63, 0x802bc035, 0x802b1813, 0xa451802a,
0x13182d06, 0x95012b80, 0x12184080, 0x40808040, 0x12230387, 0x82804018, 0x8403205f, 0x01ab2464, 0x82020056, 0x00093da9, 0x2f110100, 0x11231101,
0x01271133, 0x2b9596ab, 0x550195c0, 0x9595d6fe, 0x2a01d6fe, 0x8b440782, 0x232f8808, 0x013f1113, 0x23232d82, 0x92553711, 0x8255822e, 0x80012360,
0x39824001, 0x00000636, 0x23113325, 0x01273703, 0xd52b2b55, 0x0140b5b5, 0x8000ff00, 0x278f8683, 0x52823720, 0x80225782, 0x2487202b, 0x8600ff21,
0xc03b0823, 0x18008001, 0x00004300, 0x07011e01, 0x010e1516, 0x06272207, 0x2637022e, 0x37013e35, 0x16361732, 0x35013e03, 0x012f2634, 0x3336022e,
0x3217011e, 0x012e3536, 0x07062623, 0x821f1606, 0x14153932, 0x012e0706, 0x15062227, 0x80011606, 0x0e081921, 0x1d2e3c01, 0x42552b17, 0x32080a89,
0x192e2e5e, 0x150d2a22, 0x21121301, 0x0d0a0f12, 0x221f3601, 0x16010235, 0x090d3922, 0x12241415, 0x010c0912, 0x2140012d, 0x1d172b55, 0x0e013c2e,
0x89421908, 0xfe28080a, 0x1e2601f1, 0x09082314, 0x0e170a03, 0x0b021d02, 0x011c1709, 0x2012251f, 0x0d030f09, 0x01110b07, 0x0c032203, 0x00231309,
0x83064b41, 0x822a20cf, 0x005829cf, 0x012e2500, 0x37363437, 0xc284b485, 0x3e37012a, 0x16323301, 0x23061417, 0x0623b482, 0x86011e07, 0x942482c3,
0x073908fc, 0x17140622, 0x37021e06, 0x34363216, 0x022e3627, 0x01012607, 0x0a01282b, 0x20101008, 0x0b081311, 0x01131e33, 0x1c1d3001, 0x090c022f,
0x1f1e100d, 0x0b130101, 0x29161e25, 0x150a4157, 0x241cb42a, 0x39110b11, 0x3512254a, 0x27080887, 0x111f015f, 0x03010a08, 0x0a0f021e, 0x0d030b06,
0x20101d08, 0x0914191b, 0x02190209, 0x080a1601, 0x1e080803, 0xe0221a12, 0x26151e41, 0x1235240c, 0x82394a25, 0x20088854, 0x08cf5100, 0x8001c035,
0x14000800, 0x29001d00, 0x3e003200, 0x53004700, 0x49370000, 0x373205c5, 0x013e1733, 0x15171632, 0x2622010e, 0x26221327, 0x0d833634, 0x16320722,
0x23053166, 0x05333634, 0x22055e56, 0x8327012b, 0x013d2132, 0x15210e83, 0x05e06003, 0x37013d23, 0x2010822e, 0x05347137, 0x2419802c, 0x2b121818,
0x24180115, 0x04840118, 0x18122b22, 0x06830b83, 0x826b1221, 0x0112280b, 0x19241816, 0x842a1219, 0x18242206, 0x2313822a, 0x122b1924, 0x6a201282,
0x80200483, 0xfe212fae, 0x207290eb, 0x087f4300, 0x6b01eb26, 0x13000900, 0x002bf782, 0x37352325, 0x15333523, 0x92073307, 0xeb012409, 0x82484880,
0x87ab2002, 0x49492106, 0xc02c0982, 0x2b2b552b, 0x562a8055, 0x80562a2a, 0x00210b84, 0x06374404, 0x07006b29, 0x15001100, 0x53001f00, 0x538205d5,
0x25246189, 0x010f1533, 0x2b296588, 0x1b65011b, 0x01115080, 0x255c851a, 0x1f6fe6fe, 0x6084808c, 0x2305fe69, 0x17142a80, 0x2a235d84, 0x84b1252a,
0x09974708, 0x37689620, 0x001f2806, 0x37000035, 0x82211521, 0x2328085b, 0x23153327, 0x26343637, 0x16321523, 0x15070614, 0x1517011e, 0x26343533,
0x012e2307, 0x35333634, 0x16140622, 0x16323317, 0x2e3c1583, 0x40012b01, 0x8a01c0fe, 0x20352020, 0x29151220, 0x1717101e, 0x012f2510, 0x215b2420,
0x1e2c0a83, 0x211e2828, 0x20011811, 0x406b2a01, 0xf0270083, 0x20293d14, 0x82162216, 0x24313611, 0x38243030, 0x22190126, 0x3c292014, 0x15160129,
0x251e231c, 0x20008200, 0x06d74e06, 0x07009627, 0x0f000b00, 0x2b9f8300, 0x13000038, 0x33152317, 0x05013717, 0xa585a182, 0x8c233521, 0x8a958aa1,
0x23352bab, 0xd595952b, 0x95fe1b95, 0xa7867001, 0xa4862020, 0x9b867c20, 0xac871f20, 0x013f542a, 0x96409540, 0xb06b011b, 0xed23ad82, 0x84111f14,
0x2c252aa9, 0x4338252c, 0x221b1516, 0x23af881d, 0x01003f9b, 0x002cab82, 0x7601c101, 0x00004f00, 0x27262225, 0x06320182, 0x2e270607, 0x27262301,
0x37363326, 0x3635013e, 0x0f82012e, 0x33363727, 0x26373616, 0x32118234, 0x17163617, 0x1e071416, 0x17323701, 0x0e070616, 0x82141702, 0x32172510,
0x22070607, 0x09823c85, 0x010e4208, 0x19130001, 0x11100e0a, 0x02040a12, 0x2a020303, 0x22040106, 0x060a0a1a, 0x060a1106, 0x1202010c, 0x0201130b,
0x113c1406, 0x06143c11, 0x0b130102, 0x0c010212, 0x06110a06, 0x1a0a0a06, 0x06010422, 0x0835832a, 0x120a0432, 0x0a0e1011, 0x070d0c19, 0x0101040b,
0x0c050102, 0x070c0709, 0x120c1e06, 0x070e0a02, 0x06080303, 0x0201050a, 0x280e2e1d, 0x16020216, 0x1d2e0e28, 0x0a2c2382, 0x03030806, 0x020a0e07,
0x061e0c12, 0x09212e82, 0x2623820c, 0x0b040101, 0x83000d07, 0xeaff27f3, 0x9601d501, 0x954c3a00, 0x3e2e0808, 0x3d263701, 0x07012f01, 0x37273727,
0x1f372717, 0x2e373602, 0x013e3501, 0x14171632, 0x17160706, 0x0717023f, 0x17071737, 0x010f2707, 0xfb821415, 0x4c6b0121, 0x22080540, 0x0e101301,
0x0636053f, 0x2a0b2a2f, 0x050f140c, 0x0c130d39, 0x3624010e, 0x0c0e0124, 0x05390d13, 0x820c140f, 0x2f440819, 0x3f053606, 0x5513100e, 0x01013c2d,
0x29182d3c, 0x091b150f, 0x140e0325, 0x1913180d, 0x02360530, 0x090a1121, 0x241c101a, 0x1a101c24, 0x21110a09, 0x30053602, 0x0d181319, 0x25030e14,
0x0f151b09, 0x09000029, 0x3008c75e, 0x0013000b, 0x001e0018, 0x002e0026, 0x003c0034, 0x73d48242, 0x162d0b2f, 0x27230717, 0x030f3637, 0x17331736,
0x82d6820f, 0x35262704, 0x16053736, 0x19830615, 0x15830720, 0x011f272a, 0x26230607, 0x33013f27, 0x37213b82, 0x3b4a1801, 0x3935080c, 0x2560062d,
0x07260e08, 0x7e241a37, 0x381b3a40, 0x1a127346, 0x21010536, 0x01095501, 0x20121614, 0x273c40f8, 0x40753243, 0x39171613, 0x0be2182c, 0x0e1b2e10,
0x504a1801, 0x1330080b, 0x120d1d01, 0x16080316, 0x2928061b, 0x520e364d, 0x12424731, 0x303d1514, 0x2e1f1c32, 0x07404727, 0x42113a46, 0x06252a47,
0x13251c01, 0x1d0b2418, 0x25059746, 0x40010002, 0xdf820900, 0x00003127, 0x16323313, 0x0ca75f17, 0x05013e22, 0x1d201382, 0x17298182, 0x3d013e21,
0x3b363401, 0x5d451801, 0x2b95270b, 0x80011812, 0x0682bd18, 0x1801802f, 0x0916e7fe, 0x0112190c, 0x0c19122a, 0x2c0a8209, 0x4080fe40, 0x1940010c,
0x12555512, 0x22058519, 0x18090c40, 0x2d07687d, 0x090c0c09, 0xc02a2ac0, 0x00000c09, 0x03820400, 0xd6010024, 0x5f447601, 0x00152706, 0x33353700,
0x03820715, 0x35032b08, 0x33051521, 0x35332707, 0x23173723, 0x56ababd5, 0xfe000156, 0x4b4a35ab, 0x4a4b3535, 0x2a2aab35, 0x012a2a80, 0xd62a2a00,
0x02824a4a, 0x0500002c, 0xe5ff0000, 0x9b01bc01, 0x0b820200, 0xdb820d20, 0xdb821f20, 0x11173737, 0x23012f07, 0x33372307, 0x33272317, 0x0731012f,
0x35373517, 0x08618223, 0x33150734, 0x4546c515, 0x3e074645, 0x4042330f, 0x30473543, 0x820a0b0e, 0x639a5c66, 0x46550165, 0x46d6fe46, 0xd63a6446,
0x292e5cd6, 0x911b892a, 0x8e1d2901, 0xb3912902, 0xb3821220, 0x35331523, 0x2a038227, 0x35211503, 0x07273325, 0x8c331133, 0xd52b21b0, 0xff20ad84,
0xfe21ad85, 0x20f788ea, 0x83f7866b, 0x8ff78f43, 0x23f18c43, 0x06001601, 0xa620ef84, 0x092aef82, 0x2c001100, 0x3c003900, 0xf1823f00, 0x07011e22,
0x32055247, 0x14062217, 0x36323316, 0x013b3517, 0x3e373637, 0x7e273701, 0x1e250690, 0x010e1501, 0x08028207, 0x0622377a, 0x17161415, 0x3435023e,
0x17372726, 0xa6270711, 0x27012529, 0x28262550, 0x0f10100e, 0x0a58011d, 0x090b160b, 0x01030e0a, 0x0124380e, 0x2628242a, 0x0f101201, 0x0d251929,
0x0a100f11, 0xa30e060e, 0x46454546, 0x3c022b01, 0x3c39322c, 0x23223c5c, 0xb28f234a, 0x06040426, 0x010b1407, 0x201e200e, 0x3102012a, 0x11301e27,
0xb3020e0d, 0x130e1114, 0x09080101, 0x4e1a1109, 0x20055f41, 0x09274900, 0x08c7a218, 0x3521372c, 0x21153521, 0x35330135, 0x8a4d4023, 0x80fe2405,
0x19ab8080, 0x200ae728, 0x08378207, 0xeb010029, 0x0d001c01, 0x1a001400, 0x26001f00, 0x33002e00, 0x15130000, 0x2e013e33, 0x07222301, 0x0627012e,
0x15272607, 0x83063533, 0x23262204, 0x860a8307, 0x15072511, 0x35013b16, 0x55082582, 0x06351716, 0x1c1ebaf7, 0x0c181f01, 0x2837050a, 0x0b0a2e27,
0x1336051e, 0x132e0606, 0x02022c0b, 0x062f0c14, 0x09040409, 0x1212012d, 0x03ae0301, 0x0420301f, 0x01013226, 0xa002062e, 0xa40606a4, 0x960e01a3,
0x013c039f, 0x0f836201, 0x6802640e, 0x4f0f1834, 0x9f47000f, 0x01c02a06, 0x00390096, 0x004b0042, 0x44998254, 0x1e2507e2, 0x013e1701, 0x0cf74437,
0x0e070628, 0x07060701, 0xfd48011e, 0x36342405, 0x82272637, 0x220483bf, 0x70013e35, 0x4e180836, 0x03200880, 0x2a076b69, 0x01241b80, 0x13011217,
0x82113311, 0x01132a02, 0x24011712, 0x18012436, 0x88128414, 0x2622860f, 0x18140113, 0x501b2401, 0xf720059b, 0x89200685, 0x012b0685, 0x141c2495,
0x180e0820, 0x82163516, 0x0e182d02, 0x1c142008, 0x151c2424, 0x1a110621, 0x2487108b, 0x06111a24, 0xcc501521, 0x01012409, 0x820c120c, 0xd6fe2102,
0x00220785, 0xd34f0000, 0x01c02f05, 0x0018009b, 0x002a0021, 0x00490040, 0xfd821300, 0x88058947, 0x2e3522ea, 0x87e48301, 0x29db88d2, 0x22010e05,
0x36342726, 0x8f183537, 0x1e21092b, 0x3f711801, 0x21fa8308, 0xf07a1318, 0x85012005, 0x20d98608, 0x20d28609, 0x050b4137, 0x5b2b1329, 0x18122b5b,
0x86401813, 0x01802c17, 0x20151b24, 0x20078807, 0x8a241b15, 0x852a200a, 0x00ff21ba, 0x1c870785, 0x5b46af29, 0x1218465b, 0x882007af, 0x06df41da,
0x60019621, 0x1d2405fb, 0x00002d00, 0x08cd6318, 0x23088b79, 0x03010e17, 0x2007a454, 0x062c5337, 0x74013b21, 0x00200626, 0x36207a82, 0xe27d7d82,
0x122d280a, 0x18241818, 0x82d67d18, 0x83122007, 0x83c02004, 0x362423c0, 0x0247aa24, 0x2d3d2106, 0x55212d82, 0x22248301, 0x6c2b1824, 0x00200bf5,
0x04260082, 0xd5ff0000, 0x9382c001, 0x1b000b26, 0x33002a00, 0x2006134a, 0x056d6506, 0x012e172c, 0x27373427, 0x011e0706, 0x07823617, 0x0f823720,
0x3e272323, 0x24918201, 0x2f111516, 0x07166a01, 0x011b2b27, 0x0b1f1b7a, 0x27808210, 0x01241b95, 0x011c1e10, 0x2b247e82, 0x52121e1e, 0x04240782,
0x0e15058f, 0x2a211a82, 0x33ac856b, 0xfe1b5001, 0x091f1c86, 0xd0fb1218, 0x191b2401, 0x2b1e1e12, 0x0124a482, 0x40101e1c, 0x8f220782, 0xa6820f0c,
0xef2be622, 0x08e15018, 0x3509cf62, 0x000a0080, 0x00310021, 0x26222500, 0x3f363427, 0x010e0701, 0xbe181603, 0x313c0992, 0x22061416, 0x35012e27,
0x1405013e, 0x22060706, 0x3e373426, 0x27343701, 0x00011637, 0x55089982, 0x76cf0e12, 0x3a131e08, 0x211c2d30, 0x01026049, 0x0d07171a, 0x211d0711,
0x30017802, 0x11071d21, 0x1a17060c, 0x1b1a0c01, 0x121c246b, 0xcc78081d, 0x15011310, 0x0b1a1b01, 0x24486101, 0x1106173e, 0x4d1d060d, 0xd3795a2d,
0x061d4d2d, 0x1806110d, 0x1e20243d, 0x9f84302c, 0x01e0ff22, 0x2205e35d, 0x82100008, 0x0732089f, 0x37170727, 0x011f3725, 0x03230333, 0x01333733,
0x1e4eadcd, 0x9efecb6c, 0x2c292c2c, 0x2d6d286d, 0xadc97818, 0xcb6d1e4f, 0x6a76762a, 0xebfe1501, 0x52180040, 0x0f260c67, 0x2e002000, 0x49823a00,
0x07012e2d, 0x36012e06, 0x17163637, 0x830e011e, 0x8c2720f1, 0x06072312, 0x21862627, 0x6e182082, 0x30080c4e, 0x348e367e, 0x07050d08, 0x3e9e3b08,
0x10090507, 0x060d0409, 0x0734742c, 0x0606040b, 0x0533813c, 0x0b071e04, 0x0905714b, 0x7b050603, 0x65030554, 0x295b185b, 0x02320807, 0x0a1fd778,
0x10070210, 0x0c12020e, 0x0d100522, 0x03063803, 0x100e1b03, 0x0c0d0602, 0x1f0f1102, 0x0a410c03, 0x011a2e06, 0x02090a06, 0x0b02331b, 0x6a182f01,
0x06200ced, 0x002ccb82, 0x8001d601, 0x0b000500, 0x17001100, 0x293bcd82, 0x17130000, 0x07171406, 0x26072113, 0x11250722, 0x27343627, 0x16372113,
0x18273732, 0x4208bc7c, 0x6c2c0851, 0x556c1616, 0x20360001, 0x1f012054, 0x17210c82, 0x270b84ff, 0x3030244a, 0x24303048, 0x20064942, 0x251f8340,
0x57400136, 0x20861616, 0x82f6fe21, 0x01be210b, 0x48222483, 0x42422930, 0x00042c07, 0x01f0ff00, 0x009301ce, 0x84070003, 0x3f00248f, 0x83071701,
0x20068203, 0x07d76b27, 0x012f073c, 0x7013c037, 0x6f131c14, 0x4ad5fe13, 0x0c0c4956, 0xb5220d19, 0x120f970f, 0x1382605e, 0x0382fa20, 0x490a012a,
0x220d4a56, 0x720c190d, 0x4b211782, 0x0ab34f5e, 0x1f000f24, 0xe5822b00, 0x1e213408, 0x0e111701, 0x2e210701, 0x3e112701, 0x06221701, 0x1614011d,
0x3632013b, 0x2634013d, 0x16330723, 0x07061517, 0x35272623, 0x00018036, 0x0101241b, 0x85ff1b24, 0x09302507, 0xd6090c0c, 0xa0250483, 0x01010a6a,
0x2104830a, 0x1f898001, 0x2f831b20, 0x22863f20, 0x40202782, 0x27822285, 0x82040021, 0x02c02ce3, 0x00c00100, 0x0016000f, 0x913c001c, 0x14012d89,
0x1e350706, 0x2e152701, 0x37173602, 0x23247f82, 0x07010e15, 0x1520ad82, 0xbb18a982, 0x352008d0, 0x352c0c82, 0x16017516, 0x01014232, 0xeafe3242,
0x01220784, 0x00821b05, 0x21164f3f, 0x156b1f01, 0x2419321c, 0x34010130, 0x0e241320, 0x1f300e18, 0x012a2819, 0x01242130, 0x202f89c0, 0x083f8332,
0x19bdfe2b, 0x0872031f, 0x0568ac17, 0x201a2f18, 0x15062511, 0x25280314, 0x79072327, 0x10141302, 0x17021a16, 0x242f0316, 0x6e082428, 0x079b4d06,
0xab01ea24, 0x9b4d9901, 0x00132b06, 0x001b0017, 0x33352500, 0x03822115, 0x17013f25, 0x86372707, 0x20068203, 0x08138203, 0x27720130, 0x2a26a7fe,
0xa308bc08, 0x7e10ae10, 0x35189319, 0x8d721f73, 0x997311bf, 0x257e7399, 0x23812627, 0x1ea62351, 0x9ad51d7b, 0xb6fe9a17, 0x67832727, 0x04840120,
0x5601d629, 0x00000f00, 0x84231501, 0x35332101, 0x012e0185, 0x55565540, 0x55555695, 0x55555501, 0x08824056, 0x2e844020, 0xd6240484, 0x09009601,
0x17259182, 0x012f3727, 0x348f820f, 0x23840001, 0x3c3c9974, 0x50237499, 0x0d659650, 0x650d8d8d, 0x202a8396, 0x08134c02, 0x1500092e, 0x27250000,
0x3f273707, 0x07011f01, 0x0cfd5818, 0x5a5a5a2a, 0x29695018, 0x42506929, 0x2d0a7d43, 0x67363640, 0x60610845, 0x02ee4509, 0x18875a79, 0x02000022,
0x05208388, 0x2521b983, 0x204e8235, 0x29888617, 0x01271737, 0x475e2400, 0x8d858515, 0x23848429, 0x0856c777, 0x85b45b3e, 0x839d8293, 0xeaff223f,
0x82c38501, 0x371325f9, 0x012f0701, 0x17289787, 0x011b2b27, 0x6c241b65, 0x4e21d082, 0x29d08287, 0x50019a05, 0x1b9bfe1b, 0xd8824124, 0x82940621,
0x9a1521d8, 0x3b5a838b, 0x8b3e8805, 0x15502487, 0x8d245e47, 0x3178298c, 0x56083d5c, 0x5c3d0856, 0xf344908a, 0x00222c0c, 0x00390030, 0x01000042,
0x5a17011e, 0x17280592, 0x3233011e, 0x37353736, 0x25080582, 0x06222634, 0x23071507, 0x3e270722, 0x3e161301, 0x012f2601, 0x0e011e36, 0x37272601,
0x2622010e, 0x16323634, 0x5d5b1407, 0x07334d06, 0x6e4b2b08, 0x20055215, 0x01221a16, 0x2e220248, 0x012e442e, 0x0f130432, 0x07770872, 0x0a0a190d,
0x22111c0c, 0x22220e0e, 0x1e01e507, 0x02821e2e, 0x22175d23, 0x4d028217, 0x0129072e, 0x15224555, 0x031a221b, 0x38398234, 0x4a01222e, 0x6e542f0a,
0x0a05bffe, 0x0b06181a, 0x23230e07, 0x9b0f0e0e, 0x22388317, 0x8311171e, 0x5c172038, 0x072d0b7b, 0x19001100, 0x00002200, 0x37013e25, 0x25d08223,
0x33173327, 0xc582012e, 0x35173329, 0x2327012e, 0x1813011e, 0x34081b51, 0x07533a15, 0x202d0740, 0x3e405640, 0x61806108, 0x20563e08, 0x2b11822d,
0x7d584f53, 0x7d7db07d, 0x3a530717, 0xbe261082, 0x57573f40, 0x2983be3f, 0x01533923, 0x21198376, 0x17427db0, 0x01962206, 0x05535556, 0x23110122,
0x27270182, 0x2a409501, 0x555501eb, 0x374b07a8, 0x86d62008, 0x000a2a27, 0x11230100, 0x17070333, 0x29068213, 0x40406b01, 0xd5ebeb6b, 0x32854040,
0x01959526, 0x00d6fe2a, 0xc0205b86, 0x00233386, 0x82331113, 0x6b372101, 0x03215a8c, 0x21008200, 0x5789eb01, 0x11331327, 0x07171323, 0x20068203,
0x42569595, 0x08250a8b, 0x00003600, 0x07094101, 0x1e152533, 0x011e1701, 0x37013e33, 0x35013e35, 0x06222634, 0x20118207, 0xb1421815, 0x23352308,
0x094a3315, 0x35310805, 0x95013533, 0x120c0b0a, 0x9ffe0c0c, 0x0b303c01, 0x4e3b324b, 0x24171302, 0x01012437, 0x36011317, 0x0a302129, 0x5601382d,
0x4930012b, 0x012b0130, 0x058e4915, 0x30c0802a, 0x3b310846, 0x4f3b4e01, 0x3209d049, 0x0136294d, 0x0b1d2201, 0x40c02e45, 0x30302480, 0x84408024,
0x01e828a3, 0x00960196, 0x8420001c, 0x011d3ba3, 0x15230614, 0x010f0614, 0x012f2606, 0x013f3626, 0x3d262235, 0x33363401, 0x8d82011d, 0x18126b2f,
0x0c0f1218, 0x08201185, 0x100c0812, 0x210e8341, 0x5e760196, 0x0dab2405, 0x823e0416, 0x10273014, 0x7e1f0820, 0x12401219, 0x40402a18, 0x82000100,
0x57012000, 0x0027050f, 0x21112125, 0x82ff8001, 0x83402014, 0x05574117, 0x6b01c027, 0x11000300, 0x057f5800, 0x35013b2a, 0x15072127, 0x35331533,
0x3d3c0382, 0x21152101, 0x80800001, 0xaafe15c0, 0x55d61515, 0x01aafe2b, 0x2b554056, 0x802b6b6b, 0xd6220082, 0xf741002b, 0x006b220a, 0x26458209,
0x25000021, 0x83233523, 0x3335233e, 0x4a822307, 0x82054d68, 0x15212359, 0x57841123, 0x55011138, 0x15162b15, 0x2b2b6a15, 0x402a2a40, 0x40d6feaa,
0xc0aa56aa, 0x0f82402b, 0x4015162c, 0x40401615, 0x5656eafe, 0x77671601, 0x0003250a, 0x0036002d, 0x2f05716a, 0x00540050, 0x17333700, 0x35330323,
0x013b3634, 0x4a05d253, 0x1d28053a, 0x011e3301, 0x06141115, 0x09361219, 0x34113524, 0x05480536, 0x080e4807, 0xdb823720, 0x35210523, 0x1e751821,
0x82172008, 0x82802050, 0x166b2183, 0x20058266, 0x05d6612a, 0x18121627, 0xd6401218, 0x21068240, 0xb14b3d01, 0x854c2005, 0xfe892406, 0x855601aa,
0x852b2003, 0x829e2011, 0x4095243e, 0x18151601, 0x240d7253, 0x1912ebfe, 0x26008215, 0x15011219, 0x4c3f1812, 0xa24c069a, 0x55162407, 0x866b95c0,
0x40952113, 0x3207a74c, 0x009701ab, 0x000c0003, 0x00190010, 0x2500002c, 0x18333523, 0x2008897a, 0x080c8b27, 0x06261321, 0x011e1507, 0x21150733,
0x36322735, 0x012e3537, 0x6b6b8001, 0x12120e20, 0x8312121c, 0x854b6b6b, 0x49523209, 0x2a010260, 0x00012020, 0x012a2020, 0x6bd56002, 0x062775eb,
0x09887f20, 0x023f0131, 0x1fcb3621, 0x0b0b202b, 0xcb1f2b20, 0x82002136, 0x84012000, 0x01fe3804, 0x00260016, 0x2e233700, 0x26012f01, 0x32013b36,
0x36171617, 0x83373617, 0x0f16250a, 0x07010e01, 0x22201a85, 0x952e0b83, 0x04271a40, 0x1b23040a, 0x04101c80, 0x06190e02, 0x5534173f, 0x401a2201,
0x0514271c, 0x06030306, 0x1b271405, 0x01221942, 0x08240619, 0x93467782, 0x01c03d05, 0x00060056, 0x0100000d, 0x15231527, 0x07271533, 0x35333517,
0x55c00123, 0x55d69696, 0x01270482, 0x2a405500, 0x82552a40, 0x07534405, 0x80019622, 0x132e3385, 0x33153307, 0x35173335, 0x17231523, 0x2282c037,
0x2b824020, 0x01555523, 0x24388280, 0x559696d6, 0x0ac34255, 0x13007d26, 0x2d002400, 0x3e22e782, 0x184f3701, 0x061b4405, 0x372fdf82, 0x27370706,
0x3f362726, 0x17071701, 0x192e0706, 0x2909942e, 0x2447232b, 0x24234823, 0x08882347, 0x19198e31, 0x01041669, 0x187a0901, 0x191a7067, 0x4aa44823,
0x40260556, 0x03011911, 0x02820325, 0x06854020, 0x11190134, 0x490601ab, 0x0c08051b, 0x49225506, 0x03010b85, 0x5b4a8325, 0x47052007, 0x531808e7,
0x002409c3, 0x16323325, 0x3105076e, 0x2622012b, 0x33352335, 0x013b3634, 0x26222335, 0x04431127, 0x11172605, 0x012b010e, 0x061d6635, 0xff820720,
0x81680383, 0x65402010, 0xaa20050e, 0x40240685, 0x2b551616, 0x40200083, 0x09af4e18, 0x090c2b29, 0x0c090001, 0x82ff090c, 0x82d52005, 0x2a56221c,
0x4524822a, 0xb13006b7, 0x03008001, 0x00001600, 0x37172313, 0x22060717, 0x21054855, 0x0d833335, 0x1416173e, 0x15c02994, 0x1107126a, 0x1e394306,
0xbf65be1e, 0x43391e1e, 0xc0550106, 0x06128114, 0xbf221384, 0x1384be65, 0x82001121, 0x82022000, 0x01d52beb, 0x00ab01ab, 0x001d000e, 0x1f4e2500,
0x3715390a, 0x07013d27, 0x011e3517, 0x17071417, 0x012e3736, 0x49360001, 0x1a1f0f01, 0x2105677d, 0x0d885555, 0x4901402f, 0x1f1b2136, 0x60493328,
0x55564002, 0x8a0382eb, 0x82002012, 0x82042000, 0x01002103, 0x3c05f744, 0x00180014, 0x37000029, 0x37233533, 0x1e371523, 0x06141501, 0x013e1507,
0x27263437, 0x23148207, 0x17161427, 0x073f0782, 0x3435012e, 0x0e353736, 0x2a2aeb01, 0x113080d5, 0x38262f14, 0x171b0147, 0xab2a2aa3, 0x8732171b,
0x80ab3411, 0x112f8040, 0x412a1b2e, 0x590f2c0e, 0x173d243d, 0x82402be3, 0x8a332005, 0x03002115, 0xfd20e782, 0x6b20e782, 0x2725e782, 0x00002d00,
0x85798601, 0x252724d9, 0x82070617, 0x207687e8, 0x280e8237, 0x17373615, 0x35170137, 0x2f228206, 0x2f80ab01, 0x200f1412, 0x1a010119, 0x32c5fe18,
0x60820784, 0xac2f1382, 0x16190808, 0xb1fe1b32, 0x1f16197d, 0x846b0108, 0x1b202475, 0x8232281f, 0x33152183, 0x8a850684, 0xac1b202c, 0x072c0305,
0x011b320d, 0x07822f50, 0x73042021, 0x802a094b, 0x15000f00, 0x21010000, 0xfc5e0622, 0x2e113208, 0x11210301, 0x01331533, 0x1280fec0, 0x18010118,
0xace51912, 0x80fe2307, 0x317babd5, 0xabfe250d, 0x00552a01, 0xb7474582, 0x82802005, 0x000727f1, 0x0010000c, 0x41700014, 0x00302d09, 0x00390035,
0x0041003d, 0x35331300, 0x2206595e, 0x6f062235, 0x1725072b, 0x011e2335, 0x82178301, 0x2020827a, 0x20038225, 0x067e6f03, 0x36320123, 0x08766f37,
0x14821720, 0x832b1521, 0x18122500, 0xab2b2baa, 0x01250983, 0xab920118, 0x27a482d6, 0x00ff2b2b, 0x2a552b2b, 0x01210082, 0x82b78255, 0x0820821c,
0x2a2a5623, 0x802b0001, 0x192b802a, 0x2a2b99fe, 0x122b802b, 0x80800119, 0xfe191255, 0x2bd52bd5, 0x012b80fe, 0x2405822a, 0x2a801219, 0x823182d5,
0x073b52c6, 0x736c6b20, 0x821f2008, 0x462120b7, 0x07280569, 0x35012e21, 0x17363411, 0x0a275718, 0x0b823320, 0x2a016b25, 0x7a191912, 0x6d820610,
0x82d6fe21, 0x18012004, 0x200f4554, 0x20008355, 0x85048380, 0xeaff2f67, 0x9601eb01, 0x0d000900, 0x15001100, 0x67822100, 0x15163228, 0x2b061411,
0x61831101, 0x59820720, 0x03820320, 0x69331721, 0xeb2709f3, 0x12181812, 0x83962ac0, 0x40552300, 0x0282402b, 0x3107f978, 0x56aaaa01, 0x56568056,
0x56560001, 0x2a404096, 0x66824040, 0xcf820020, 0x8808ab4b, 0x7a012067, 0x3b2705fa, 0x15071101, 0x82173523, 0x82132003, 0x23072503, 0x23152335,
0x21051248, 0x68ae1501, 0xcf836785, 0x4d000f21, 0x2720056f, 0x627fcf82, 0x20d58c0e, 0x0a616a27, 0x6d839620, 0xd9830485, 0x1e378c23, 0x07466a37,
0x1825de87, 0x12560112, 0x20e28918, 0x872382ab, 0x21e88202, 0x46180006, 0x7f87072f, 0x83001f21, 0x0fab6d81, 0x210eb941, 0xf8823303, 0xc141f582,
0xd5aa2514, 0x012a802b, 0x0a3dc518, 0x63405521, 0x402405af, 0x55400140, 0x8205a36e, 0x00003577, 0x9601d601, 0x0c000700, 0x21001d00, 0x29002500,
0x07250000, 0x0aaf7818, 0x84820320, 0x07151723, 0x21028223, 0x3f422622, 0x0122080f, 0x152c15cf, 0x071b0908, 0x812c81d6, 0x2b01ab2c, 0x52011812,
0x12842759, 0x80121818, 0xd5fe802b, 0x2082a380, 0x1b070724, 0x20827f09, 0x18950124, 0x1e825912, 0x01121925, 0x42181200, 0xff820751, 0xff840a20,
0x8001d622, 0x180ab742, 0x21090f5a, 0x82821300, 0x14111522, 0x086a9218, 0x2c07c142, 0x15233517, 0x35331505, 0x23353307, 0x83078637, 0x23372413,
0x18553315, 0x280a786d, 0x562a5612, 0x00ff5680, 0x20008256, 0x21038280, 0x0483d656, 0x19800125, 0x83c0fe12, 0x400125a9, 0x40551912, 0x2b250085,
0x40ab4040, 0x8204836b, 0x40ab230f, 0x23410000, 0x01eb2205, 0x419b8a56, 0x1720069b, 0x2306f96b, 0x013e3527, 0x820f5543, 0x33152592, 0x40152315,
0x0f776418, 0x6b2a6b24, 0x048200ff, 0x2b56ab27, 0x1855012b, 0x07b65412, 0x24099e41, 0x2b402b96, 0x08fb4200, 0x1500802d, 0x1d001900, 0x2d002100,
0x41250000, 0x3d210504, 0x54521801, 0x0533210b, 0x17206c82, 0x35230383, 0x73071523, 0x23240539, 0x33352335, 0x076bb818, 0xff822a20, 0xfe200382,
0x0282fb82, 0x6956d621, 0x402705c8, 0x191912eb, 0x842b9512, 0x85952000, 0x405625fd, 0x2a40402a, 0x00207b83, 0x8b051742, 0x2634287b, 0x06222123,
0x4b33011d, 0x8c420535, 0x33252405, 0x83372315, 0x23152303, 0x19822735, 0x08d0a218, 0x6855d520, 0x207b9605, 0x2c7ba095, 0x000b006b, 0x001f001b,
0x00270023, 0x096d4300, 0x25273724, 0xe6710614, 0x21372407, 0x8815011e, 0x353324fd, 0x4337c923, 0x01210958, 0xe042182a, 0x82fc850c, 0x6dab2005,
0x372208e1, 0x24467338, 0x86402005, 0x83402006, 0x08cf4900, 0x6b01eb30, 0x13000300, 0x21250000, 0x21372111, 0x8218010e, 0x372a07f6, 0x01012e11,
0x01d6fe95, 0x66462b2a, 0x114c180e, 0x824e8212, 0xff002345, 0x018201c0, 0x07220982, 0x51851700, 0x35230324, 0x558f1333, 0xcafe9b29, 0x56703601,
0x53ff5556, 0x1b20050c, 0x25061c53, 0xfe55012b, 0x4282156b, 0xfe1b2423, 0x052e5380, 0x07820120, 0x03215c82, 0x225b8900, 0x861c000c, 0x012e275b,
0x16323634, 0x60830614, 0x14111527, 0x3e211716, 0x37b68601, 0xa04001c0, 0x1b12120d, 0xfe881212, 0x1e1e17d5, 0x162b0117, 0x1e01011e, 0x85186283,
0xea2508e9, 0xfe161e01, 0x2517846a, 0x16960116, 0xab4e001e, 0x001a230c, 0x6c501300, 0x06142c05, 0x2b262705, 0x1d062201, 0x7e1f1401, 0x75200649,
0x01305d85, 0x120cc046, 0x0c181296, 0x0c240cc0, 0x2b010c96, 0x1b257283, 0x0cc06212, 0x82168218, 0x21148215, 0x5f430024, 0x00022f05, 0x0b008001,
0x23001400, 0x33002c00, 0xc5823c00, 0x27012e22, 0x2205dc4a, 0x8725010e, 0x2125216b, 0x0c69b318, 0xac180720, 0x17270723, 0x23373632, 0x8737011e,
0x4001210f, 0x08094b18, 0xfe490123, 0x05f54cdf, 0xfe77012f, 0x800d16ce, 0x01160d80, 0x19191232, 0x271585d2, 0x082b1e34, 0x492b08a2, 0x40230d85,
0x87364901, 0x4f6a203a, 0xd52d0528, 0xafaf1001, 0x12190110, 0x18132a01, 0x06004dab, 0x1c246b25, 0x866a241c, 0xcfa8180c, 0x821a200d, 0x130023c3,
0xe17b3632, 0x053e0805, 0x010f011e, 0x012f2206, 0x34013d26, 0x16333736, 0x1737011f, 0x010f1416, 0x0e753727, 0x121b1212, 0x0c0b0112, 0x0c6a0d01,
0x0c950d24, 0x126b1218, 0x9315430c, 0x15730c0c, 0x1200017a, 0x0282121c, 0x240c3728, 0x0c0c6b0c, 0x1c820c95, 0x01011826, 0x9316180c, 0x73211182,
0x2b931815, 0x01d62909, 0x00080096, 0x001e001a, 0x6383778a, 0x3b277788, 0x13173201, 0x87072737, 0x0c612372, 0x4482960c, 0x23068941, 0x95b6960c,
0x82089d41, 0x0c962216, 0x06b9410c, 0x968cfe24, 0xef4795b5, 0x22678908, 0xa0260022, 0x543f206b, 0x739906a8, 0x761e7727, 0x551eab1e, 0x267b9a1e,
0x1e751e37, 0x82561e40, 0x680020d9, 0x83830587, 0x2f001724, 0x7f823800, 0x010e1537, 0x33152307, 0x1517011e, 0x013e3533, 0x23353337, 0x3527012e,
0x820d8207, 0x82198213, 0x2335221f, 0x82138215, 0x013e2219, 0x072a5b17, 0x513beb29, 0x082c2c08, 0x882a3b51, 0x292a2808, 0x29290739, 0x87293907,
0x423e2008, 0x0121050f, 0x83278d95, 0x8c572030, 0x20318328, 0x05294262, 0x336b0020, 0x000c2b0c, 0x00350015, 0x33013f00, 0xbf420717, 0x87232007,
0x2e372408, 0x82012b01, 0x2223249b, 0x68010f06, 0x362305fc, 0x8821013d, 0x206b2409, 0x432020ea, 0xf8200546, 0x31052642, 0x0b1004fc, 0x0b358035,
0x0c2c0410, 0x0c091609, 0x06840001, 0x6060d523, 0x0557436a, 0xd5280585, 0x2b2b0c09, 0xab80090c, 0x0921bf82, 0x22278216, 0x5eab090c, 0x8029092b,
0x1b000f00, 0x00002500, 0x05ab4901, 0x47212321, 0x332105d2, 0x05035717, 0x82013e21, 0x37072698, 0x17353315, 0x189d8207, 0x260bb999, 0x01544095,
0x84405401, 0x40ab2905, 0x56404056, 0x12198001, 0x2009c070, 0x821c872b, 0x40942422, 0x82402b2b, 0x01002203, 0x08008200, 0x01c3014a, 0x00150065,
0x36023f00, 0x27010f26, 0x25373626, 0x03071636, 0x07012f06, 0x06d1010e, 0x080805a3, 0x020f57ca, 0x0c550111, 0x073a0410, 0x032b5819, 0x945a3208,
0x80040305, 0x0810041c, 0x120f0583, 0x0e1deffe, 0x05042941, 0x4b7f4d82, 0x00802208, 0x07494503, 0x034c3520, 0x013b2106, 0x332cb982, 0x11373632,
0xc001012e, 0x800180fe, 0x39079e45, 0x126baa6b, 0x18010118, 0x2b000155, 0x00ff1219, 0x2b2b1812, 0x00011218, 0xdf471912, 0x464f8508, 0x25260871,
0x01112111, 0xa24e1632, 0x23152105, 0x2507b64e, 0x15331733, 0xf3461523, 0x85078306, 0x205c8467, 0x22658712, 0x82802b12, 0x82aa2000, 0x82802003,
0x00ff2270, 0x27738e01, 0x2b2a5655, 0x552b2bab, 0x2c063759, 0x008001ba, 0x001d0014, 0x01000026, 0x05c85b32, 0x17161426, 0x06173736, 0x2005135d,
0x081a5a27, 0x3507c142, 0x27326001, 0x29261b18, 0x21293636, 0x2e251919, 0x02025a44, 0x1a5d9c5a, 0x06b94206, 0x3e1b5537, 0x52360119, 0x13010136,
0x0201163d, 0x5b44445a, 0x3624012c, 0x18028224, 0x210895bc, 0x00820003, 0x01ab012d, 0x00090080, 0x001b0012, 0x82113700, 0x20d683da, 0x08825d15,
0x24093643, 0x6a6a80c0, 0x22648cab, 0x82400115, 0x01802200, 0x41588e6b, 0x260805f7, 0x00560196, 0x1300000b, 0x33371533, 0x27231707, 0x95231507,
0x6d556b40, 0x264d4d6d, 0x80550140, 0x92c57b80, 0x8200682a, 0x50032000, 0x142d083f, 0x2a001f00, 0x32010000, 0x010e1716, 0x25048314, 0x3e272622,
0x04833401, 0x0614172b, 0x34012e07, 0x011e3736, 0x84058405, 0x00012d0f, 0x231c4728, 0x1c232828, 0x1d465047, 0x1d2c0883, 0x1617fd46, 0x1c21211c,
0x56fe1716, 0x012a0987, 0x1e181b95, 0x1e536253, 0x08881b18, 0x4325d52b, 0x5043181b, 0x431b1843, 0x850a8925, 0x2b83828f, 0x008001d6, 0x0011000a,
0x13000014, 0x7a848a82, 0x010e3308, 0x1b333503, 0x27153301, 0x0c553307, 0x24241c0a, 0x2a0c0a1c, 0x3b9a9a3b, 0x01d66bd5, 0x0c211340, 0x24362401,
0xfe210c01, 0x2f012bad, 0xfc2bd1fe, 0xf41800d1, 0x9b582da7, 0x000c2405, 0x822d001c, 0x011e2377, 0xb669011d, 0xa5c01807, 0x3632260c, 0x3707013f,
0x05785523, 0x08056664, 0x12ab1424, 0x19241818, 0x3c019219, 0x3b2e2b2e, 0x30012a01, 0xc9013049, 0x1259165b, 0x80121919, 0x2b011812, 0xc6691801,
0x126b3505, 0x45309518, 0x092c2c09, 0x30243045, 0x5a622430, 0x5612184e, 0x04823e82, 0x2208ff75, 0x869601d6, 0x59372085, 0x152e05b1, 0x012e3523,
0x011e3327, 0x37013e17, 0x97851527, 0x858f0520, 0x011b2b28, 0x0d731b65, 0x83861f31, 0x2c1d2524, 0x97822809, 0x8a490121, 0x1b502889, 0x721b9bfe,
0x8606241c, 0x01012582, 0x10271c21, 0x65218083, 0x208b8d03, 0x08237e05, 0x00032008, 0x000f0009, 0x001a0013, 0x37013b00, 0x36320735, 0x0107013d,
0x011d0622, 0x15073337, 0x82011737, 0x26012a98, 0x2bbd3dc6, 0xff551912, 0x34048200, 0x66fabd68, 0x1003a2fe, 0x085f010b, 0x19fa3dbd, 0x01552a12,
0x82058380, 0xfe02280c, 0x03100ba2, 0x42175e01, 0xeb20087f, 0x2128ef82, 0x34002400, 0x33370000, 0x2105ac55, 0x5a413634, 0x35332105, 0x1805b152,
0x3908886b, 0x07173736, 0x16322127, 0x2326011d, 0x22152135, 0x36343507, 0x18122b55, 0x5e821501, 0x15191225, 0x82121801, 0xfe16330d, 0xa818162a,
0x01965555, 0x13181256, 0x17aafe17, 0x7f831813, 0x19122a22, 0x05852682, 0x82404021, 0x40ab2d07, 0x1218ea40, 0xc0c00ccc, 0x1812cc0c, 0x2a08e782,
0x01e4ff00, 0x00a101dc, 0x000e000a, 0x00220018, 0x002d002a, 0x00330030, 0x13000036, 0x1614010e, 0x27012e17, 0x1705013e, 0x5b132701, 0x0f210754,
0x085e5b01, 0x0e175308, 0x27220701, 0x37071637, 0x17013f07, 0x0517012f, 0x1da00717, 0x331e2323, 0x42010142, 0xfe1e2901, 0x20c81eb4, 0x251e091e,
0x1d250e0d, 0x0718193b, 0x0a0a1d17, 0x01d1161d, 0x1e283242, 0x3c5e16a5, 0x2f182706, 0xfe47182f, 0x01363cf2, 0x4c3d1295, 0x1a82123d, 0x1f423222,
0x28083983, 0x15141801, 0x24021724, 0x71180123, 0x111d1110, 0x011b1c02, 0x42327013, 0x1ea51601, 0x684718b4, 0x3b65363b, 0x2f18c105, 0x06334a00,
0x96016b29, 0x20001200, 0x58250000, 0x3e2b09bf, 0x17163201, 0x27011e15, 0x18010e15, 0x680960b1, 0x162508b5, 0x36240114, 0x20e78224, 0x08a9627f,
0x2c069b68, 0xaa0f2c1b, 0x1c24241c, 0xa52c0faa, 0xd55d1883, 0x00832109, 0x2005434e, 0x356b82c0, 0x00070003, 0x0011000c, 0x00320024, 0x003a0036,
0x0044003f, 0xd8440100, 0x26078207, 0x23151727, 0x9f072734, 0x5027208d, 0x172c065e, 0x35230715, 0x15063315, 0x556b0123, 0x45250083, 0x062b5510,
0x065d6224, 0x8020aa92, 0x10312483, 0x2b063145, 0x2a2b8001, 0x132a2b2b, 0x14172b3e, 0x055c692b, 0x6b2cc097, 0x2b552b2b, 0x1317562b, 0x1714552a,
0x3f086754, 0x008001eb, 0x001c0003, 0x11332500, 0x0622022b, 0x1d06010f, 0x3b011e01, 0x15140701, 0x37011f14, 0x08054857, 0x5656952a, 0x150dc055,
0x01034105, 0x15871218, 0x0c8c1709, 0x80180101, 0x0c0e0001, 0x2b080896, 0x03621812, 0x17090e03, 0xd5120c8d, 0x08ef4b18, 0x8501d521, 0x001b225b,
0x275d8222, 0x03113311, 0x15171632, 0x24086082, 0x013d2627, 0x26222337, 0x3f343527, 0x33013e01, 0x15072317, 0x01370733, 0x12ab5695, 0x0c010118,
0x1509178c, 0x2a098287, 0x15054103, 0x3fc1c00d, 0x825d18bb, 0x00ff3b69, 0x12190001, 0x8d0c12d5, 0x060e0917, 0x2b121862, 0x0c960808, 0x2b952b0e,
0xb3475d71, 0x00ab2208, 0x2ecb8418, 0x012b012e, 0x34353437, 0x0607012f, 0x821e1507, 0x363229ce, 0x3536013f, 0x23113305, 0xc38a9682, 0xd6851220,
0x562afe24, 0xc683eb56, 0x850d0421, 0x191221c6, 0xc022da84, 0x3f460001, 0x00002806, 0xab01eb01, 0x84000300, 0x111324cf, 0x83131123, 0x255682c2,
0x011d1617, 0xdc833307, 0x010f142d, 0x2723010e, 0x23353733, 0x966b0737, 0x19bc24ce, 0x8300015d, 0x88ff20cd, 0x070d21cf, 0xff20cf91, 0x26056760,
0x002f0017, 0x41232500, 0x14310698, 0x07013b16, 0x011f1615, 0x013d3637, 0x34272634, 0x21e78226, 0xe6832635, 0x14011d25, 0x85331716, 0xe00132e6,
0x03100a90, 0x090c0231, 0x06010f6f, 0x12096a11, 0x200a89ee, 0x341b850e, 0x71090beb, 0x091b0605, 0x0a05440c, 0x09691107, 0x120d8b0e, 0x200d8c56,
0x5f218401, 0x6b24080f, 0x26000900, 0x240b635f, 0x37363437, 0x2a848235, 0x1d010e21, 0x14011e01, 0x4e150706, 0x3d310507, 0x01012e01, 0x174c4c4c,
0x21215b47, 0x1876475b, 0x05284f12, 0x83181221, 0x56012109, 0x182f0e82, 0x5731315a, 0x5454053a, 0x120f3a05, 0x82550118, 0x18012603, 0x18015512,
0x220c8b24, 0x82000300, 0xd6012700, 0x1c006b01, 0x9f502400, 0x17162205, 0x079f4f15, 0x82013e21, 0x8235207d, 0x1e212185, 0x0e258182, 0x012e0701,
0x21848222, 0x1c4d2733, 0xab012107, 0x4b2e7a93, 0x42364203, 0x1460c003, 0x1b281b1b, 0x7e99c01b, 0x82186d21, 0x66102400, 0x821b291b, 0x101b6a02,
0x00002727, 0x33352301, 0x41038615, 0x3424190a, 0x2a150136, 0xc0200084, 0x24110741, 0x2a0b0118, 0x2001828a, 0x16024176, 0x00182422, 0x22080082,
0xff000001, 0x018001ea, 0x00060096, 0x07171300, 0x37273717, 0x6b405580, 0x0155406b, 0x6aeb5595, 0x4c55eb6a, 0x0b240abf, 0x22001700, 0x640de14e,
0x072b0bb2, 0x1523012e, 0x37321607, 0x18013436, 0x2f174c65, 0x192e1301, 0x2766275a, 0x60021526, 0x02604949, 0xf9180584, 0x79280c0c, 0x5a801313,
0x66272626, 0x00219e82, 0x249f8404, 0x00ab01c0, 0x06a5790b, 0x0c7f9318, 0x26371323, 0x4c758327, 0x34220804, 0x6a580726, 0x01332205, 0x0af74b00,
0x0e1e562d, 0x3d191e10, 0x026c5222, 0x82526c02, 0xbf163005, 0x80552a2a, 0x54021580, 0x02543f40, 0x823f5402, 0x1f0b292c, 0x141f0e10, 0x516d0217,
0x22262685, 0x9680753d, 0x8383002b, 0x0200002c, 0x00430101, 0x00280013, 0x9882005f, 0x0e14253c, 0x022e2202, 0x3e34013d, 0x021e3202, 0x012e3715,
0x1d020e22, 0x021e1401, 0x16833e32, 0x2e172626, 0x032e2702, 0x33231e86, 0x82022e34, 0x261d821f, 0x15031e17, 0x82230614, 0x2335213b, 0x34322c85,
0x15371525, 0x01231133, 0x0f0a0513, 0x050b0f14, 0x06820b05, 0x050a6008, 0x251f0b14, 0x0c0c151f, 0x1e261e16, 0xc90b0b16, 0x10191204, 0x04080f0c,
0x0f0c0804, 0x2a04080d, 0x221b140a, 0x0a0a131a, 0x0c0f1911, 0x11030810, 0x0b0d0611, 0x140a2907, 0x141c231e, 0x4000fe0a, 0x13a6062b, 0x0707111b,
0x35131b11, 0x07101a14, 0x131a1007, 0x0b0b0d4e, 0x291e291b, 0x821b2a1e, 0x822a2008, 0x29360808, 0x090e098f, 0x06050204, 0x06090907, 0x0a080504,
0x10160c05, 0x150f0909, 0x090e1117, 0x07060303, 0x0c0a0507, 0x080c0703, 0x0b11160b, 0x19140f08, 0xcd162497, 0xbb430001, 0x01c32906, 0x00360043,
0x25000072, 0x0420ed83, 0x93050b41, 0x872720ec, 0x2e2726ec, 0x033e2701, 0x050f4127, 0x34331532, 0x3233023e, 0x0e140716, 0x15012b02, 0x021e3233,
0x290e1c41, 0x01263435, 0x1a1105bd, 0x8d820b10, 0xfa870120, 0x87130b21, 0x0d0e2cfa, 0x1103090f, 0x0a0e0710, 0x86280107, 0xca3108fb, 0x090b1105,
0x01050a0f, 0x241d160b, 0x2a0c151e, 0x090e0a06, 0x05011413, 0x190b100b, 0x0c120a1a, 0x09141606, 0x2b060b0f, 0x231e170e, 0x040c171f, 0x2e02418d,
0x08272208, 0x0c05040c, 0x1207100f, 0x0a09121b, 0x080f1913, 0x1405090d, 0x0a0e0912, 0x0a052106, 0x15140a10, 0x2a718205, 0x0a111b12, 0x121c130a,
0x82001109, 0x00052100, 0x3605ab69, 0x000700ab, 0x00180014, 0x0032001c, 0x012e2500, 0x17373427, 0x5a070306, 0x32370591, 0x2f371737, 0x23351701,
0x33152337, 0x012e0717, 0x17070623, 0x5b1e3736, 0x28080694, 0x37272634, 0x54400001, 0x21cc1401, 0x1f3b1bea, 0x526c0201, 0x1b352f3c, 0x2a2a2ba5,
0x56808055, 0x223d191e, 0x221f2f3b, 0x08228329, 0x011f1f33, 0x151e1416, 0x29405402, 0x0114cb21, 0x2f3b1b55, 0x026c523b, 0xa51b3620, 0x96492b62,
0x131e212b, 0x1f1f0117, 0x54020113, 0x1f212a3f, 0x3d223c2e, 0xa35a1818, 0x01802808, 0x00090096, 0x8213000e, 0x13003fa9, 0x17071521, 0x37352115,
0x07271727, 0x37273315, 0x37152335, 0x27071533, 0x55000180, 0x0382ff55, 0x5555d523, 0x270282aa, 0x2b2b562a, 0x55809501, 0x552d8b82, 0x5555b555,
0x4b55b64b, 0x2b10204b, 0x20ff822b, 0x08274d07, 0x1b000534, 0x24002000, 0x2d002800, 0x00003900, 0x17153325, 0xaa572707, 0x011e2905, 0x07010e15,
0x23272622, 0x2905ef59, 0x26331513, 0x35332735, 0x72820523, 0x36330724, 0xed4f2337, 0x012c080b, 0x1034202b, 0x2b01d644, 0x14011812, 0x40540116,
0x8215351f, 0x12181812, 0x80560e64, 0x802b0180, 0x1b0b5cab, 0x3a2ceb82, 0x2c3a0101, 0xc0340584, 0x271c1e3c, 0x12182401, 0x1f351582, 0x16015440,
0x12180114, 0xfe263f83, 0x231d40eb, 0x00824095, 0x1b256a23, 0x822e8704, 0x08a34634, 0x0d002b28, 0x00001600, 0x69442301, 0x18332005, 0x220d39d7,
0x49d66b01, 0x06860522, 0x24241c27, 0x01242437, 0x0668492b, 0x2d2d3d25, 0x4e01aa3d, 0x002005c1, 0x94098365, 0x54052053, 0x538e07ff, 0x1bfdfe22,
0x5118549b, 0x1220098b, 0x09cb5318, 0x07012b24, 0x27512327, 0x58552005, 0x56300554, 0x12565555, 0x95011818, 0x00ff1218, 0x55551912, 0x2005d058,
0x0ae34500, 0xe7821220, 0x43941f20, 0x2335012c, 0x37332307, 0x26012f36, 0x508e010f, 0x2b753d2b, 0x07923560, 0x07082507, 0x2a5d8f93, 0x2b2b00ff,
0x26070893, 0x8c930606, 0x00172267, 0x23679620, 0x35072707, 0x8e073150, 0x55522368, 0x2c4e802b, 0x2a668f05, 0x56abebfe, 0x18d5802b, 0x46191924,
0xc36705db, 0x00122209, 0x26699419, 0x17331117, 0x8d113337, 0x67122462, 0x8f674444, 0xff2a255c, 0x01444400, 0x220d2741, 0x9b250019, 0x58072055,
0x61920acf, 0x402ac023, 0x96028240, 0x402b2468, 0x1840402b, 0x230ca3d0, 0x00160012, 0x5a052955, 0xdd410653, 0x1517280a, 0x15053521, 0x82073533,
0x286a8d07, 0xfe2a0128, 0x01d5d5d6, 0x25678f00, 0x552a2a40, 0x02822b2b, 0x1f570020, 0x001d220a, 0x3dd18241, 0x1415010e, 0x011e1716, 0x37263617,
0x3e170616, 0x013e3701, 0x27263435, 0x2e07010e, 0x434f0701, 0x82058205, 0x2302820e, 0x36352622, 0x17201a83, 0x0805d27a, 0x27012e22, 0x3095013e,
0x10101a3a, 0x04412026, 0x41041818, 0x10102620, 0x2d303a1a, 0x211d1d21, 0x1f2d1f2d, 0x28080282, 0x0101241b, 0x220e1016, 0x01070409, 0x1b26261b,
0x09040701, 0x16100e22, 0x01240101, 0x324c0295, 0x18124b23, 0x8309088a, 0x31028209, 0x12188a08, 0x4c32234b, 0x01130102, 0x02291301, 0x02830212,
0x1d223239, 0x7615113e, 0x22151d07, 0x3e02023e, 0x071d1522, 0x3e111576, 0x4132221d, 0xe82f05a3, 0x96018001, 0x1a000c00, 0x00003e00, 0x82062225,
0x353729b6, 0x3634012e, 0x26061533, 0x1721a282, 0x20138535, 0x27de8203, 0x3e070633, 0x010e3301, 0x17210586, 0x22fb8306, 0x8427010e, 0x37770828,
0x00012736, 0x04022c12, 0x0c090438, 0x4b05090c, 0x133f0305, 0x07055115, 0x1929075d, 0x0e011908, 0x02361605, 0x1b091c13, 0x2a2b0233, 0x07010b04,
0x04054e10, 0x66272759, 0x14620604, 0x1a950801, 0x010d1f10, 0x120c0115, 0x1701550c, 0x01222f1f, 0x3e30301b, 0x1501021a, 0x212f270b, 0x132e2815,
0x201b1127, 0x020e441d, 0x2e1a0d10, 0x01394844, 0x4c4f3302, 0x72081c2f, 0x00290553, 0x01ab0100, 0x00080080, 0x20c98211, 0x210d8248, 0x1d592622,
0x08aa6405, 0x2408a155, 0x3e352337, 0x23048201, 0x012b012e, 0x1524db82, 0x17011e23, 0xaa4c048a, 0x85372005, 0x013e2123, 0x1824d382, 0x18182418,
0x0dac6b18, 0x1c40992b, 0x01400123, 0x09aa090c, 0x2307820c, 0x01401c23, 0x12860385, 0x03821d83, 0x82190021, 0x19242339, 0x4183016b, 0x6b182425,
0x82182518, 0x18c02f02, 0x161e2c08, 0x090c0c09, 0x082c1e16, 0x03821f18, 0x072d1e23, 0x23108319, 0x1e2d0719, 0x00201d82, 0x210b7b65, 0x215b0016,
0x82302005, 0x086165d5, 0x33373324, 0x65653317, 0x18032007, 0x2608a0fe, 0x17333523, 0x88153335, 0x00012df4, 0x01036543, 0x3020202a, 0x2b2a512a,
0x20056e65, 0x058565a9, 0x6b6b3d23, 0x079b652a, 0x65950121, 0x2b21076d, 0x066f652b, 0x65befe21, 0x95210693, 0x20008255, 0x420c8696, 0xea390533,
0x96019601, 0x27001e00, 0x00002b00, 0x012e3525, 0x35333723, 0x07331523, 0x05804c22, 0x86150721, 0x3e23229e, 0x208a8801, 0x2f9b8237, 0x47019501,
0xd6461038, 0x4b341066, 0x22172001, 0x02239585, 0x85951c1b, 0xd65d2793, 0x2bb457d6, 0x0082201f, 0xb42b1f2e, 0x22062218, 0x0a2a2a0a, 0x06250120,
0x5f227f86, 0x0082006b, 0x03820320, 0xd601002a, 0x0f005601, 0x1c001300, 0x2009b168, 0x052b5321, 0x80453320, 0x9c72180c, 0x12182309, 0x7e452b01,
0x0a9a5d0b, 0x220b7a45, 0x18000400, 0x45094bfc, 0x052706e5, 0x32133327, 0x5c011d16, 0x648e0998, 0xaa550025, 0x5c181256, 0x678b088e, 0x0c192b20,
0x6b840e94, 0x25080726, 0x00920707, 0x2e05334b, 0x5b01db01, 0x07000300, 0x0e000b00, 0x56130000, 0x3720067b, 0x17300782, 0x2b401711, 0x2b2b552b,
0x552a2a56, 0xaa15019b, 0x46240083, 0x009b3601, 0x01200082, 0xab2b0484, 0x19008001, 0x35330000, 0x182e2306, 0x22070d40, 0x44331716, 0x21080578,
0xeb152722, 0x3629110f, 0x01081d01, 0x2a192936, 0x4232050d, 0x32420202, 0x065b1010, 0x1b533601, 0x1b821412, 0x01141729, 0x42323242, 0x456f0401,
0x0f270bb7, 0x2f001f00, 0x18010000, 0x250e875c, 0x07061403, 0xfa782e23, 0x17152508, 0x012b0614, 0x2a09a354, 0xfea00115, 0x1e1e17c0, 0x82400117,
0x0ed32605, 0x0f0b4f0b, 0x2104820f, 0x0584ba0e, 0x01230f84, 0x89171e95, 0xbcfe2824, 0x01010e0b, 0x83f30b0e, 0x88882028, 0x2ddf8804, 0x004001d6,
0x2500000a, 0x27072737, 0x01821737, 0x5501152c, 0x9e556831, 0x8655801e, 0x09884031, 0x6f188020, 0x162209db, 0x2f820600, 0x21152722, 0x012b0182,
0xc0fe55d5, 0x55c04001, 0x82402a40, 0x01002152, 0x53860484, 0x07170124, 0x52830727, 0x8a351721, 0x8b012053, 0x2e2f8554, 0x009601eb, 0x33000002,
0x01150321, 0x1801ebd6, 0x85083f65, 0x00052b17, 0x21030100, 0x01211303, 0x1e82eb00, 0xbefea12a, 0x6bfe9501, 0xebfe4001, 0x240b4f41, 0x00280024,
0x2729822c, 0x07062223, 0x2b012e23, 0x2405145a, 0x1517011e, 0x2303820e, 0x26363533, 0x0934f518, 0x3335053a, 0x35232115, 0x2faf0133, 0xaa011b0f,
0x550f1b01, 0x062f101a, 0x1e233130, 0x2d080d82, 0x3031231e, 0x1a102f06, 0x012b80fe, 0x012b2b2b, 0x10101a95, 0x1a10c01a, 0x2c062f21, 0x06151f04,
0x041f1506, 0x212f062c, 0xc0c0101a, 0xb9849696, 0x01e8ff23, 0x26c3829e, 0x00180009, 0x54172500, 0x36080845, 0x07273523, 0x010e2315, 0x3533011d,
0x44012634, 0x1e62621e, 0x2b2b735a, 0x15167373, 0x18121615, 0x71dc18aa, 0x4a6f5151, 0x076a6a07, 0x151542fb, 0x12180142, 0x18121515, 0x2008635a,
0x615382d6, 0x332805c5, 0x15130000, 0x013b1614, 0xf486d095, 0x33072324, 0x217f2315, 0x06162506, 0x2b372622, 0x5520d692, 0xda83f286, 0xd5280382,
0x6a2202aa, 0x95010222, 0xfb83e195, 0x96962a29, 0x20756b96, 0x49202a2a, 0x3b4b0a37, 0x01002105, 0x99053564, 0x096b419a, 0xd6442b08, 0x45101a6a,
0x2e262605, 0x02aa0214, 0x25282e14, 0x1a104504, 0x014080fe, 0x01404016, 0x962a2a6b, 0x2e201a10, 0x1f042c06, 0x63410815, 0x202e2a05, 0x9698101a,
0x006b6b6b, 0x08b74b04, 0x28001f2b, 0x30002c00, 0x15130000, 0x1b114123, 0x3307352a, 0x07010e15, 0x2735012e, 0x20061441, 0x287e9395, 0x0180ab6a,
0x20201b24, 0x8382826b, 0x96952086, 0x2a2a2285, 0x053460ab, 0x8e838020, 0x002e8f83, 0x01eb0100, 0x0008006b, 0x0015000c, 0x4d18002b, 0x17220ae3,
0x97453523, 0x23252308, 0x86822135, 0x1e331526, 0x37363201, 0x35220586, 0x91458001, 0x2a122305, 0x0985eb5f, 0x401d012d, 0x1812d5fe, 0x24012b01,
0x82012436, 0x21058293, 0x9745352b, 0x35bf2306, 0x0a86c035, 0x0156df29, 0x1beb1218, 0x831b2424, 0x006b2103, 0x8308cb46, 0x00152b8b, 0x0020001c,
0x00320029, 0x74911300, 0x96822720, 0x3507172a, 0x17333523, 0x07231733, 0x20072a6f, 0x20088721, 0x287e8f40, 0x56964040, 0x96808056, 0x20a58935,
0x20ad860e, 0x29858c6b, 0x552b5655, 0x0b2b4056, 0x495d4b35, 0x4c9a820b, 0xe83706b7, 0x21008001, 0x00003300, 0x26222321, 0x06073527, 0x26012f22,
0x41013f34, 0x1720060e, 0x27076a5f, 0x37010e15, 0x06070627, 0x07252583, 0x15333717, 0x36ab8233, 0x09aa5501, 0x071b010c, 0x063d0611, 0x01237e06,
0x01243624, 0x82067e23, 0x1124080d, 0x0c011b07, 0x0e0a5c56, 0x2e1b251b, 0x401f5c0f, 0x40158015, 0x17aa090c, 0x073c0606, 0x127d0711, 0x7d121818,
0x3c230882, 0x82170606, 0x5bf42c43, 0x1411080b, 0x2b1f5b10, 0x4c2bd5d5, 0x9b8308ff, 0x9b932220, 0x17161424, 0x7f82013e, 0x0e259c8c, 0x012e0701,
0x209b9727, 0x8c008220, 0x2811259a, 0x11281f1f, 0x13259991, 0x33151533, 0x259b8c13, 0x1010291b, 0x9c871b29, 0x0000012d, 0x6b01feff, 0x14008001,
0x42250000, 0x152005e8, 0x28087a82, 0x35233537, 0x3337013e, 0x6b013315, 0x36130d56, 0x012f353d, 0x02193036, 0x60d55635, 0x0155110f, 0x7a263501,
0x1a350656, 0x3ddf8555, 0xb001faff, 0x0b008601, 0x00001700, 0x3315013f, 0x0e153735, 0x15012b01, 0x23350701, 0x49820715, 0x35013b2c, 0x2bd55b50,
0xd5121801, 0x08860501, 0x455b552a, 0x128a2a60, 0x30014519, 0x7f430987, 0x0009240a, 0x4c150011, 0x3c0805c7, 0x07230711, 0x11233523, 0x11213505,
0x33371533, 0x23153327, 0x35231527, 0x6a800155, 0x6a404056, 0xd5fe8001, 0x2b6b4040, 0x2b402b2b, 0x00ff9501, 0x0140406a, 0xffc09515, 0xc0404000,
0x8200826b, 0x27e782a3, 0xe0010000, 0x2e006b01, 0x06360782, 0x06373607, 0x0e272607, 0x17140701, 0x0627012e, 0x26171614, 0x05821527, 0x22230628,
0x17011e27, 0x0784010e, 0x3e335c08, 0x36273701, 0x1b19df01, 0x1f1b0b1d, 0x34262a1a, 0x613a0301, 0x12160c22, 0x20291217, 0x08090d0b, 0x171e2e09,
0x0b0b203a, 0x7f27471e, 0x1b010185, 0x040b4001, 0x06102112, 0x3401011c, 0x040a0b27, 0x31152a32, 0x0a010c28, 0x07312201, 0x231c0203, 0x01141301,
0xa0051613, 0x18140c5f, 0x200c5797, 0x91621833, 0x82052011, 0x20a8867c, 0x83a48406, 0x229b82a3, 0x82162706, 0x21a5829f, 0x66183e37, 0x24080c7a,
0x0f082101, 0x10110d04, 0x1d151008, 0x3829064b, 0x0f0d0b15, 0x18010a0e, 0x0b0c0c13, 0x162e0f29, 0x481d2c12, 0x0d586b55, 0x06872308, 0x02070810,
0x040a150b, 0x032e231d, 0x2e151721, 0x18060109, 0x0203061b, 0x0e0c0523, 0x010f0c03, 0x2f4d5b04, 0x0023250b, 0x2500002f, 0x6e1897a2, 0x01210b14,
0x2097a27a, 0x0a4f7678, 0x95a2f920, 0xc179e720, 0x25a3840c, 0xdb010000, 0x83424601, 0x13220805, 0x33152317, 0x26222317, 0x0523013d, 0x23353327,
0x16323327, 0x8033011d, 0x2b8b465b, 0x461812b6, 0x09885b01, 0x805a4527, 0x8012192b, 0x510685b0, 0x0b2c0cbb, 0x24001400, 0x44003400, 0x56004d00,
0x3a0b155b, 0x1623011e, 0x012e013e, 0x0716010e, 0x16072722, 0x3e373233, 0x37361701, 0x83010e23, 0x332008fa, 0x26062726, 0x22232627, 0x07361707,
0x27373634, 0x14160706, 0x17011e07, 0x17012e37, 0x011e010e, 0xa7183b83, 0x0121086a, 0x08cc8ad5, 0x130aa129, 0x1413050b, 0x112c060b, 0x1a17120e,
0x1e030e10, 0x25041d10, 0x1f1f2903, 0x04250329, 0x031e101d, 0x171a100e, 0x82390e12, 0x0b233a1f, 0x18050c0c, 0x110e1211, 0x0b06097f, 0x0b051314,
0x0e0bc113, 0x0e0e160e, 0x0a4f41c0, 0x05052d08, 0x040b1313, 0x07ac1314, 0x10040b20, 0x2c1c0511, 0x0195261d, 0x1c2c1d26, 0x04101105, 0x4b07200b,
0x200a2013, 0x220b2918, 0x0c21140b, 0x48220a82, 0x4a831306, 0x70051323, 0x214b8301, 0x5f410e16, 0x01c03107, 0x00170080, 0x13000023, 0x17160627,
0x3632011e, 0x2720f682, 0x0723d882, 0x8222010e, 0x373621f0, 0xba44e382, 0x013e3a05, 0x020b1eb7, 0x08441412, 0x03121346, 0x0b031f0b, 0x0429101b,
0x0b1a1028, 0x0894564b, 0x016c023c, 0x4e350409, 0x07071115, 0x354e1511, 0x13680704, 0x06030306, 0x027e6813, 0x2587526c, 0x01000022, 0x2008736b,
0x820c8216, 0x15232361, 0x6e820614, 0x15333524, 0x82821614, 0x3e233525, 0x82000101, 0x24ab2a2f, 0x2b012437, 0x010c120c, 0x205a82ab, 0x2d448295,
0x24241caa, 0x0915151c, 0xaa090c0c, 0x2f5f6c52, 0x01c02608, 0x00060096, 0x824d821d, 0x2e2123ac, 0x54972701, 0x0f4d3327, 0x4e0f1e01, 0x265c9032,
0x303a016b, 0x932b3a30, 0x069b4a62, 0x2b01e024, 0x61821000, 0x07062229, 0x27331527, 0x4133013e, 0x013f05ff, 0x1e4b2b0b, 0x174ec04c, 0x57392037,
0x72173212, 0x1a1d1501, 0x134dc04d, 0x34400115, 0x41544510, 0xab22076b, 0xff448b01, 0x065f7805, 0x33352334, 0x2634013e, 0x07172327, 0x0f173727,
0x23153301, 0x76182001, 0x02212c50, 0x3c008200, 0x6b016201, 0x0b000500, 0x27010000, 0x17072707, 0x17371707, 0x62012737, 0x1e44441e, 0x21058562,
0x0c844d01, 0x0584b820, 0x2208bf46, 0x85800162, 0x82252037, 0x2f372235, 0x23358201, 0x00011707, 0x62223588, 0x0b843c1e, 0x0584c420, 0x00820020,
0x4b490420, 0x002f270a, 0x0047003f, 0x86181300, 0x352008cf, 0x2206e55d, 0x82152335, 0x200587d9, 0x6d088205, 0x2884052a, 0x82273521, 0x052a6e0f,
0x15232482, 0x82073533, 0x3335310c, 0x552b2335, 0x2b165695, 0x55151555, 0x40155580, 0x01360782, 0x56162b55, 0x1580152a, 0x15159580, 0x2b551540,
0x162a152b, 0x0c82012b, 0x0d825520, 0x12822482, 0x95561625, 0x822a1580, 0x15152637, 0x15158080, 0x24408395, 0x162b8040, 0x4eab822a, 0xd939058b,
0x25007301, 0x4d003900, 0x1e010000, 0x0e141701, 0x0f061601, 0x0e070601, 0x28058301, 0x3f022e06, 0x37013e01, 0x2d058236, 0x16363403, 0x27071707,
0x2e012f26, 0x11823401, 0x17365708, 0x021e1432, 0x020e1613, 0x2726012f, 0x012f012e, 0x011e1737, 0x0116011f, 0x010a0133, 0x03010205, 0x08171a03,
0x37010402, 0x24080a2f, 0x6f060f21, 0x0b061c03, 0x01022922, 0x0a030104, 0x111f1345, 0x01010203, 0x06070605, 0x02020507, 0x05ef0103, 0x07222113,
0x32823038, 0x2201022c, 0x041c0718, 0x6b012f38, 0x1c820901, 0x04024708, 0x2d350302, 0x051e080e, 0x090d424f, 0x091e1808, 0x050e039e, 0x042b240d,
0x05020103, 0x140f0201, 0x01042121, 0x03010106, 0x03030609, 0x01030501, 0x0bedfe03, 0x0804171f, 0x040c434f, 0x4201081f, 0x030e051b, 0xf682434e,
0x74068346, 0x2a0805db, 0x3700000a, 0x17372335, 0x35071523, 0x55c01521, 0xd5559595, 0x806b2a01, 0x56809595, 0x00002b2b, 0xff000001, 0x019601e6,
0x823000ab, 0x3315270c, 0x33352315, 0x06830727, 0xf9783e20, 0x1614230a, 0x2a60013b, 0x32332c0c, 0x33013d36, 0x15400135, 0x82402b40, 0x0e0b2f02,
0x011a281b, 0x190b0e01, 0x0e0c4012, 0x0c821a01, 0x400c0e3e, 0x01151912, 0xaa2a562b, 0x2caa5656, 0x140e1506, 0x0e141a1a, 0x122c0615, 0x16064119,
0x16260d85, 0x12194106, 0x8b4d562a, 0x00ab2709, 0x0013000f, 0x834a0026, 0x05f05105, 0x34013d23, 0x20938426, 0x209f8425, 0x06b25e23, 0x40201684,
0x2d051b5d, 0x181812eb, 0xebebeb12, 0xeb2b4001, 0x0a82012b, 0x01210f83, 0x820987ab, 0x2b01231e, 0x1b8296eb, 0x28842b20, 0x77623482, 0x82d62008,
0x207386fb, 0x051f7f05, 0x07ef6318, 0x23373325, 0x78053335, 0x828206a6, 0x010e2323, 0x207b8207, 0x05b55033, 0x5f835383, 0xfeebeb26, 0x2aeb2bc0,
0x01207384, 0x15201082, 0x21820988, 0x95eb2a25, 0x822beb2a, 0x82198374, 0x0600210f, 0x22083f43, 0x181b0017, 0x2108d15a, 0x4d691300, 0x15333617,
0x33150723, 0x23171635, 0x07063315, 0x26152335, 0x23353327, 0x07ab4d36, 0xc02c0783, 0x2b0f3625, 0x25360e2c, 0x0e372580, 0x55270884, 0x802b2a2a,
0x82261526, 0x2b068502, 0x012b2b45, 0x952b2b2b, 0x95012a2a, 0x8020298c, 0x2a223b83, 0x2a89052b, 0x26802629, 0x2a2a2a51, 0x5e002b6b, 0x802d085f,
0x12000e00, 0x00002100, 0x012e2301, 0x053c5827, 0x37013e29, 0x23152733, 0x840e0735, 0x200e8214, 0x2ea38332, 0x152bd501, 0x6d513e62, 0x516d0202,
0x8216623e, 0x13042387, 0x9d5c2c48, 0x482c2805, 0x00012713, 0x4601453a, 0x01220508, 0xa7823a45, 0x2e27552b, 0x3f405401, 0x272e0155, 0x0b5f4480,
0x1900ab28, 0x26002200, 0x09422f00, 0x0bf7410a, 0x42352321, 0x8e820613, 0x2006026f, 0x238e8233, 0x35363233, 0x20061242, 0x07fc4155, 0x1218562e,
0x126bebeb, 0x80550118, 0x56956b6b, 0x19420a84, 0x42562006, 0x5520070d, 0x2b201e82, 0x6b203183, 0xeb200082, 0x8b833182, 0x0000022c, 0xeb01d5ff,
0x38009601, 0xfd824100, 0x14163230, 0x27220706, 0x013e1707, 0x27151733, 0xfc820622, 0x152a0282, 0x34272317, 0x07273736, 0x047e1516, 0x32332905,
0x27263717, 0x1637013e, 0x46080782, 0x07363435, 0x16140622, 0x26343632, 0x120d8b01, 0x06080d12, 0x5024074f, 0x2916162c, 0x3001204c, 0x01171523,
0x1417012b, 0x01044f0a, 0x12121b12, 0x4e07070e, 0x30010111, 0x4f161e25, 0x12921203, 0x18241919, 0x82950118, 0x0401241a, 0x84140a4f, 0x23152f2c,
0x4c200130, 0x2c161629, 0x4f072450, 0x55820806, 0x03121b30, 0x251e164f, 0x11010130, 0x0e07074e, 0xde549512, 0x086f4205, 0x1200ab2c, 0x21001b00,
0x3d003400, 0x53414300, 0x09dd420a, 0x0723c982, 0x82353315, 0x33152101, 0x6b430783, 0x15072811, 0x32331523, 0x83013d36, 0x41232027, 0x2b2e0767,
0x182aeb2b, 0x18126b12, 0x2a2b2b01, 0x0e822a16, 0x27088043, 0x122b2b80, 0x1540c018, 0x20078843, 0x050a432a, 0x18018024, 0x00822b12, 0x43401521,
0x6b210b90, 0x2546822b, 0x2a40152b, 0xaf490016, 0x4fab200a, 0x19260623, 0x31002800, 0xb9863a00, 0x3520a686, 0xaa82a882, 0x27263423, 0x44b18405,
0x07200c19, 0x25070f42, 0x011e1525, 0xe882013b, 0xa3854020, 0xa7824020, 0xfe121826, 0x96eb2bea, 0x21082242, 0xc082eb56, 0x84c0fe21, 0x82ad8498,
0x8202849e, 0x40802432, 0x42809640, 0x2b220728, 0xbc8356eb, 0x2a181225, 0x4307002b, 0xa39006cb, 0x36320526, 0x1523013d, 0x08316518, 0x98833520,
0x47253321, 0x49440610, 0x2337210a, 0x2325c282, 0x0507010e, 0x24158335, 0x01153315, 0x245a83ab, 0x2b2a402b, 0x248c822b, 0xeb2a1501, 0x084f4495,
0x83555521, 0x010122a5, 0x20818340, 0x20048315, 0x2300822a, 0x18122b2b, 0x9520a282, 0x6444a282, 0xeb2a2206, 0x84c88455, 0x000023ee, 0xa7900c00,
0x2c00232e, 0x39003000, 0x46003d00, 0x53004f00, 0x821c5541, 0x05f5419d, 0x24086c41, 0x23153307, 0x07544127, 0x33150524, 0x0c870535, 0x21421882,
0x13432709, 0x2b2b011a, 0x0382402a, 0xfe131a24, 0xa0832bed, 0x1a139322, 0xd1820e82, 0xab6b6b2a, 0x28131a01, 0x2a6b012b, 0x20067641, 0x052c42eb,
0x17850120, 0x00832b20, 0x41822820, 0xcc82da82, 0x131a9523, 0x83118293, 0x2b6b21d1, 0x2a251682, 0x4040152b, 0x20f9826b, 0x824e842a, 0x179d1804,
0x01c02308, 0x17770080, 0x01002405, 0x82230715, 0x3337229e, 0x20b28335, 0x319d8205, 0x629e4001, 0x55629e80, 0x00ff2a2a, 0x80012a2a, 0x02839e62,
0xd62a2b22, 0x76062f48, 0x032b06ef, 0x13000f00, 0x07250000, 0x5b031737, 0x37200a01, 0x01284c82, 0x6b6b6b00, 0x8080aac0, 0x2a2f0282, 0xea2a1556,
0x40aa01ea, 0x2a40402a, 0x4c565616, 0xbb730c67, 0x002b2c05, 0x0033002f, 0x13000037, 0x83173315, 0x204e828c, 0x05935735, 0x27230722, 0x25209784,
0x07229782, 0xa8841733, 0x2320af82, 0x15221e83, 0x69560723, 0x302b2e06, 0x6b80221c, 0x2a122780, 0x226f1980, 0x05c84556, 0x2811f930, 0x121f2180,
0x49336b2e, 0x2b6b2a2a, 0xcb82eb2b, 0x91829520, 0x8029293a, 0x204b8095, 0x2b2a512f, 0x37162a15, 0x95294249, 0x2b802c2c, 0x2b2b2b80, 0xcf779b82,
0x76192009, 0x0122096d, 0x88833315, 0x7b829a82, 0x7b833320, 0xa1838983, 0x03838183, 0x9f841720, 0x0123153e, 0x0f2d1755, 0x2b138030, 0x2b15803d,
0x1380251a, 0x2b553a2e, 0x2a2ad52b, 0xd62a2a80, 0x952b9782, 0x6a406a80, 0x80806a80, 0x8279316a, 0x82828206, 0x82152078, 0x420e2078, 0x113b0a7f,
0x23001a00, 0x2d002700, 0x3a003100, 0x44004000, 0x51004d00, 0x63005a00, 0x82130000, 0x23152e67, 0x37013e35, 0x011d011e, 0x35233523, 0x27088717,
0x2b061413, 0x35333501, 0x20052550, 0x21288235, 0x05830335, 0x2205304c, 0x82271533, 0x1533210c, 0x03201283, 0x3f411288, 0x20518406, 0x213f8717,
0xa8822b40, 0x12fd1826, 0xab2b2a18, 0x55200483, 0x2e074543, 0x162a4096, 0x18129540, 0x562b2b01, 0x8840152b, 0xab2b210a, 0xa7203184, 0x01202784,
0x70480c83, 0x44158205, 0xfe2106c6, 0x294883ea, 0x2b95406b, 0xebfe1540, 0x29842a2a, 0x16408029, 0x2b15012a, 0x84ebfe2b, 0x40c0210e, 0x12217883,
0x21608218, 0x5b762b2a, 0x000f280a, 0x00180013, 0x8220001c, 0x331522fd, 0x081f4207, 0xb1422720, 0x011f2105, 0xea47bd82, 0x10c02f07, 0xaa805154,
0x10545180, 0x152a2a55, 0x0a42aa55, 0x80012606, 0x2a809580, 0x2604822a, 0x982c2a2b, 0x41272727, 0x022005eb, 0x22087341, 0x47210019, 0x33201e43,
0x23206582, 0x23143547, 0x0180eb80, 0x82142a47, 0x00002118, 0x22051f47, 0x82ab01c0, 0x000f2bd1, 0x37273700, 0x27173717, 0x5d5d1507, 0xd5353505,
0x8d371e55, 0x02c0801e, 0x6a54546a, 0x1e565502, 0xab1e8c37, 0x09016018, 0x06000023, 0x26008200, 0x80010002, 0x79000300, 0x1f2805f7, 0x00002300,
0x33112325, 0x0f794c18, 0x35331328, 0x33151723, 0x07820535, 0x03820720, 0xaa550129, 0x0ec00baa, 0x830e1212, 0x25f38204, 0x40fe2b40, 0x02822b2b,
0x2a012b26, 0xfe0e122b, 0x01301b84, 0xfe120e40, 0x802bd6d5, 0xabd6ab80, 0x00010080, 0x01230082, 0x824001c0, 0x051b5b6d, 0x0622213a, 0x1614011d,
0x36322133, 0x35173537, 0x0c016b01, 0x0900ff09, 0x01090c0c, 0x01230582, 0x834be055, 0x83d6200b, 0x554b2204, 0x85ae85ea, 0x00962a43, 0x0017000f,
0x17071300, 0x82438823, 0x07112bfe, 0x2b012e35, 0x1b461701, 0x4685103a, 0x44050724, 0x5682551b, 0x01ef8427, 0x0c3a1b95, 0x254c8209, 0x011b4404,
0x5a82551a, 0x4761ef20, 0x00562409, 0x821d0009, 0x233524fb, 0x82372715, 0x371725e8, 0x23263435, 0x2f0adf59, 0x1117013d, 0x4a801501, 0x204b804a,
0xd5fe090c, 0x2b285d84, 0x75550c09, 0x4b4b3636, 0x35200382, 0xbd85ab84, 0x01564b23, 0x225b8716, 0x828001c0, 0x001f23ab, 0xed860100, 0x3e21172b,
0x34013d01, 0x0e210726, 0x83fd8701, 0xab01230f, 0x558495fe, 0x05836b20, 0x01240b8a, 0x80090c80, 0x8205fe7f, 0x82d52006, 0x840682cc, 0x00002112,
0x2205634d, 0x5b5601c0, 0x00290623, 0x23113337, 0x11331133, 0x2d078201, 0xd5c0c0ab, 0x4095fe40, 0x15014040, 0x0385ebfe, 0x2208974d, 0x876b01d6,
0x41012033, 0x132006d9, 0x012c3382, 0x56fe5580, 0xd66a5555, 0xeb4001d6, 0x37820082, 0x33884020, 0x0120678a, 0x33846386, 0xfe6b552a, 0x806b6b95,
0x55016b6b, 0x07836787, 0x8205af4e, 0x01c021f9, 0x0a475f18, 0x9b186d83, 0x35260773, 0x01233533, 0x0082ab15, 0x0382d520, 0x8001ab2b, 0x80fe8080,
0x2b80d5d5, 0x83738ad5, 0x0013293b, 0x13000017, 0x07352115, 0x21064541, 0x2c4c2133, 0x21012705, 0x012b2135, 0x2f411595, 0x77fe2c0a, 0x6bfe9501,
0x40408001, 0x41090c6b, 0xfe21072a, 0x21c683eb, 0x4f6f0400, 0x0007270a, 0x000f000b, 0x83823700, 0x03821120, 0x03821720, 0x33153524, 0x8e874035,
0xfeabd523, 0x20998580, 0x41378800, 0x37820767, 0x05208d83, 0x94827d82, 0x35260582, 0x6b015521, 0x038c95fe, 0x2a2a5522, 0x2a22c982, 0x6b432b2b,
0x41012006, 0x0f21093f, 0x83d18800, 0x823520c1, 0x86272041, 0x82352087, 0x6bc02007, 0x07830784, 0x84566b21, 0x55012900, 0xd6fe5555, 0x15561555,
0xbf430685, 0x20539105, 0x060b7c01, 0xab431320, 0x82072006, 0x26538307, 0xeb6b5501, 0x87806b6b, 0x6b6b2402, 0x82805501, 0xebfe2100, 0x80230482,
0x95801580, 0x353322e3, 0x233f8203, 0x23113305, 0xd5204f83, 0x6b224182, 0x438400ff, 0x3c833e83, 0x82150121, 0x82002005, 0x00022100, 0x41059b43,
0x00240523, 0x35211513, 0x1741db83, 0x836f8209, 0x09b3422a, 0x475d0f20, 0xe7501806, 0x1137240a, 0x8233012e, 0x1107210f, 0x24057c4e, 0x26341135,
0x831f8a21, 0x1501260f, 0x0c0c0940, 0x23048209, 0x8d0c0101, 0x0d830685, 0xccfe0c22, 0x0c221887, 0x4a445501, 0x440b970b, 0xda350693, 0x20007b01,
0x06010000, 0x22230607, 0x2326012f, 0x36270722, 0x25018237, 0x16171617, 0x08821637, 0x3f081182, 0x01161736, 0x575403d5, 0x231a253c, 0x1d041613,
0x2a1f1f14, 0x0c0c3215, 0x0e110e05, 0x20030236, 0x58201010, 0x3f220142, 0x7e46726c, 0x1c1a1445, 0x0502241c, 0x42134f49, 0x16550101, 0x03670725,
0x20051e41, 0x08008200, 0x01b50138, 0x000f0080, 0x15160100, 0x2307010e, 0x3e133703, 0x26343701, 0x14a00127, 0x97355c03, 0x1821843d, 0x06070229,
0x2c218001, 0x0143a64a, 0xfdfe0d6b, 0x16296227, 0x32820b1f, 0x00820020, 0x01c9012c, 0x0044002b, 0x26360100, 0x064d012b, 0x26222507, 0x2b36013d,
0x1e23c282, 0x63151701, 0x1e830748, 0x1606172d, 0x33011e17, 0x013d3632, 0x83323634, 0x3b7f080b, 0x2e273201, 0x022e2701, 0xbc01023e, 0x2c090602,
0x01020808, 0x0908171d, 0x0d010506, 0x01010a44, 0x0403010f, 0x03112b0c, 0x092c0808, 0x1d010106, 0x23461b28, 0x0a050b14, 0x12151314, 0x04132b0c,
0x080e1403, 0x07010812, 0x071b012f, 0x03040809, 0x06071c3a, 0x10560705, 0x0f070802, 0x070a4014, 0x09304202, 0x0a040808, 0x2827394d, 0x09270809,
0x16120a06, 0x190a1215, 0x0b110910, 0x42490908, 0x802b0a2b, 0x4c000f00, 0x22130000, 0x46111506, 0x35270508, 0x23263411, 0x82323305, 0x161721b3,
0x2e34b382, 0x32333702, 0x3214011d, 0x35013e37, 0x16333736, 0x14020e07, 0x1e21e382, 0x24dc8201, 0x012e012f, 0x21ef850e, 0xd3822622, 0x36263729,
0x1919126b, 0x832a0112, 0xfe340805, 0x030b20e0, 0x03091f0c, 0x010a0203, 0x09093208, 0x0216110a, 0x040d200b, 0x06052305, 0x0915060d, 0x0708200e,
0x080e0e16, 0x0f080104, 0x1c143319, 0x05010116, 0x230dcd57, 0x30230c75, 0x2a081482, 0x0b0f2f07, 0x3e0c010b, 0x2a150a0a, 0x01010802, 0x0735100b,
0x070c0806, 0x18071b17, 0x0401080d, 0x06061c07, 0x38291c1e, 0x57060307, 0x0b230bdb, 0x18004800, 0xb80e2d8d, 0x035a18d7, 0xb3e6200c, 0x015a18d8,
0xb288200b, 0x00032ed7, 0x01d5ff00, 0x00ab01d8, 0x0016000a, 0x29d98234, 0x1e010f22, 0x37363201, 0x08872627, 0x22010e37, 0x06220726, 0x1606010f,
0x013e2117, 0x012e012f, 0x1e17012b, 0x07cc5601, 0x013f5508, 0x070e0001, 0x18190818, 0x06180819, 0x3b131f5b, 0x1f133b3a, 0x292a290e, 0x04170e4e,
0x0e0c031f, 0x0c0e7a01, 0x17041f03, 0x0207110e, 0x49150301, 0x03154948, 0x01070201, 0x084310ab, 0x43080606, 0x1655a910, 0x55160d0d, 0x740a0a0e,
0x0d6d0d12, 0x11010111, 0x12280682, 0x050b0515, 0x1b11111b, 0x15200682, 0x29061747, 0x40010002, 0x11000800, 0xe15d2900, 0x2e05220a, 0x05fe6401,
0x010e3728, 0x23171607, 0x54513736, 0x82b08208, 0x0123080c, 0x2a2a208b, 0xfe2b2b3f, 0x2b2b1fcb, 0xf62a2a3f, 0x01024232, 0x011a601a, 0x32324202,
0x42010142, 0x84160132, 0x01802107, 0x3f222683, 0x0786012a, 0x1a82bf20, 0x1f1f2c23, 0x821c842c, 0x8402202a, 0x09a34730, 0x0c007c2a, 0x19001300,
0x15010000, 0x6a059070, 0x3b080500, 0x15272634, 0x1525013e, 0x07111733, 0x3a2f2b01, 0x53412f3a, 0x0c530101, 0x1d18181d, 0x6b55e0fe, 0x2c7b016b,
0x4c684d0e, 0x65102c0f, 0xab654646, 0xab0c2d1d, 0x805d2d0b, 0x6b56016b, 0x2706bf44, 0x006b0156, 0x13000005, 0x95254384, 0x016a6a56, 0x201e8500,
0x05744400, 0x1f848b20, 0x21870c20, 0xf1821720, 0x6b207282, 0xcb255b82, 0x19191c01, 0x202e861c, 0x205a8540, 0x20008200, 0x08274704, 0xb3820220,
0x26001f2b, 0x07010000, 0x17072717, 0x20638223, 0xed461835, 0x17272607, 0x36170714, 0x224e8337, 0x8307011e, 0x361737c8, 0x2d2d0001, 0x65651ba5,
0x165b6b55, 0x2c222c1a, 0x0b95c01b, 0xd0821520, 0x3a2f4137, 0x34181d34, 0x2d6b0101, 0x651b6f2d, 0x5b906b80, 0x0b2c0811, 0x2821821c, 0x211a1e1b,
0x65463029, 0x20e88210, 0x22848234, 0x8206342f, 0x0527467f, 0x5601eb22, 0x2328c582, 0x00003500, 0x010f3313, 0x2c05ca51, 0x14163727, 0x34262206,
0x36373537, 0x180a8332, 0x2307546b, 0x22262307, 0x37212283, 0x081e8317, 0x1f323622, 0x80c00701, 0x180a2040, 0x1e0c1824, 0x30483018, 0x49189716,
0x18493030, 0x19240c1e, 0xee0c2419, 0x1e200685, 0x3b271485, 0x4055011e, 0x83230b8e, 0x23128419, 0x96011748, 0x2e823583, 0x0c204183, 0x18224688,
0x95821e3b, 0xeaff003e, 0xbc019601, 0x1f001600, 0x33250000, 0x26272335, 0x010f2227, 0x37353315, 0x17373303, 0x27220782, 0xef71013f, 0x2d2b0808,
0x0a2b4d68, 0x74050515, 0x26532d26, 0x3527313e, 0x1610150f, 0x15152116, 0x114726eb, 0x6f240201, 0xb9fe0e4f, 0x886a43ad, 0x835e3d61, 0x16212216,
0x0a035400, 0x1d001924, 0x65822600, 0x06141539, 0x26222123, 0x36341135, 0x16322133, 0x2223011d, 0x1e150706, 0x82353301, 0x2217217f, 0x2106db67,
0x9e7cc001, 0x4dc0200b, 0xd52a0534, 0x120d55d5, 0x12121b12, 0x24451540, 0x19152b09, 0x1912aa12, 0x1275aa2b, 0x0282121c, 0x00000023, 0x2e038205,
0x01d60100, 0x000a0096, 0x0017000e, 0x82430020, 0x35212277, 0x05d75833, 0x21153325, 0x18032135, 0x8708a358, 0x23172408, 0x832e3536, 0x010f228c,
0x21078427, 0x9b4b1407, 0x4a36200a, 0xaa2d06e1, 0x48232d6d, 0x6d2d2348, 0x5601aafe, 0x4d5a18eb, 0x2f742d0c, 0x1b240104, 0x0b081c11, 0x111c080b,
0x0801c318, 0x12560130, 0x80951818, 0x6262193c, 0x2aea3c19, 0x4d181601, 0x2a330e99, 0x241c0b0a, 0x0e0e0d0f, 0x1c240f0d, 0x13180a0b, 0x841813ea,
0x0aef6204, 0x07000324, 0xc3841c00, 0xad492120, 0x05334c05, 0x15331726, 0x33351737, 0x21058e4b, 0x4e18ab01, 0x71820929, 0xe66c1220, 0x80eb2e06,
0x18ea2beb, 0x1812eb12, 0x2a2a6a01, 0x05b1526a, 0x09cf5d18, 0x0b009628, 0x13000f00, 0x5d842d00, 0x2006b853, 0x05224135, 0x23153325, 0x69352333,
0xa74c084b, 0x080b4108, 0x802b4024, 0x7583402b, 0x8080eb24, 0x5a8240eb, 0x65828020, 0x8a184020, 0x952208c8, 0x00822a80, 0x2b21f283, 0x2014832b,
0x20db8a2b, 0xc362180a, 0x00223208, 0x002e0029, 0x003b0033, 0x004b0043, 0x00560050, 0x0873465b, 0x0e23152a, 0x15231501, 0x17161433, 0x3528e582,
0x34233533, 0x35232726, 0x33057744, 0x2317011e, 0x0607013e, 0x37362307, 0x26231716, 0x14063307, 0x34270682, 0x14163337, 0x86262307, 0x34362b07,
0x17163307, 0x0e333726, 0x05822201, 0x36070622, 0x29059673, 0x09164252, 0x0c95950c, 0x06855609, 0x42162e08, 0x60020252, 0x09110149, 0x2f110936,
0x17290d09, 0x29172888, 0x012fb70d, 0x5c022f01, 0x48010148, 0x022f7401, 0xbf012f02, 0x28090d29, 0x2f24823d, 0x29581102, 0x01092817, 0x48610195,
0x160a5e42, 0x0dee7a18, 0x5e0a1630, 0x29614842, 0x1c1c2301, 0x26100923, 0x03821026, 0x150b5123, 0x28028d0b, 0x1111264a, 0x24241c26, 0x2d07821c,
0x00000200, 0xab01c0ff, 0x0b00c001, 0x4e181c00, 0x0e36081d, 0x012e0701, 0x2f012e25, 0x0e072301, 0x1f161401, 0x3e373301, 0x42188001, 0x01290aea,
0x1e22012a, 0x1e15aa15, 0x20068622, 0x3f4318c0, 0x2936280a, 0x7a7a1845, 0x85524518, 0x82002006, 0x84022000, 0x82e82067, 0x00082d67, 0x25000021,
0x17372733, 0x23372707, 0x2305af7e, 0x37171637, 0x3f2e6b8a, 0x01062701, 0x1e356a2b, 0x351e6969, 0x59852b6a, 0x1e212e23, 0x24708903, 0xd5211e03,
0x211f8336, 0x95866b36, 0x031f1b22, 0x03227388, 0x73881b1f, 0x7384db83, 0x73873720, 0x013e1724, 0x62822e37, 0x3f270730, 0x1e173301, 0x0f061401,
0x012f2301, 0x72881637, 0x72b7d520, 0x24065b46, 0x007b0180, 0x0daf750b, 0x82000121, 0x70082253, 0x3c028208, 0x02154901, 0x98473648, 0x47980707,
0x00004836, 0xff000002, 0x01a801fd, 0x000f007c, 0x2f358218, 0x1707012f, 0x1e15010e, 0x36321701, 0x27371737, 0x072cab82, 0x36170706, 0x9b626d01,
0x100c471b, 0x1825f082, 0x1b39112b, 0x3c4b8228, 0xb7171112, 0x9b625303, 0x2d17471c, 0x02483614, 0x1b380f11, 0x0799477d, 0xb8201516, 0x0893460e,
0x5d838f85, 0x5b492120, 0x011f230d, 0x52182707, 0x96440927, 0x00012107, 0x3620a584, 0x2d2bb184, 0x1b168016, 0x160f0f0b, 0x856b0f0f, 0x7b012106,
0x0220b884, 0x8920c484, 0x80211e82, 0x221d8301, 0x865f0f16, 0x70778207, 0x0a220903, 0xd3823700, 0x0997d618, 0x22350533, 0x33363426, 0x3b363435,
0x17163201, 0x16323315, 0x2308821d, 0x012b0614, 0x23201885, 0x17221283, 0x21822115, 0x9501333e, 0x19032503, 0x26021824, 0x1912d8fe, 0x12181219,
0x0118122b, 0x091912aa, 0x55090c0c, 0x80210483, 0x2f108215, 0x121800ff, 0x1732028b, 0x12181812, 0xc0493217, 0x16203182, 0x16260b83, 0x0c561218,
0x02820c12, 0x19c02b28, 0x122a2a12, 0x9b850019, 0x01000035, 0x005601eb, 0x00270012, 0x012e3700, 0x37013e27, 0x8233013e, 0x250382a4, 0x35070614,
0xe0483523, 0x23262305, 0x02790622, 0x26343405, 0x013d2d80, 0x112d3d01, 0x4d382c43, 0x30250a06, 0x822a2530, 0x39292a0e, 0x1b0c0b07, 0x011b2424,
0x32a08215, 0x2d3c012b, 0x26013c2e, 0x3748012f, 0x30483001, 0x83158001, 0x27322a35, 0x24372404, 0x24180101, 0x082b4618, 0x8001eb2c, 0x17000b00,
0x45003900, 0x85825100, 0x16323322, 0x23257982, 0x3634012e, 0x200b8a21, 0x209a8425, 0x839a8237, 0x34232403, 0x88012b26, 0x010e269b, 0x23171407,
0x41b38417, 0x3723053d, 0x46011e21, 0x342705eb, 0x09d54036, 0x83090c0c, 0x1e012204, 0x830a836b, 0xc9fe2104, 0x2425c289, 0x192b0230, 0x24c48a12,
0x292d0401, 0x8329832b, 0x01742204, 0x210a8315, 0x0582ebfe, 0x120c8024, 0x4346010c, 0x8240200b, 0x2e2639d5, 0x38480101, 0x24300101, 0x2d161812,
0x3101013c, 0x24010427, 0x800a0b1b, 0x200e6d46, 0x05874200, 0x01eaff2d, 0x009601eb, 0x003a0031, 0x824c0043, 0x82f083f1, 0x0f7c41ef, 0x2622232b,
0x013b3634, 0x2634013e, 0x0e874127, 0x1d833183, 0x2008b242, 0x20118727, 0x20a58280, 0x10a04109, 0x1522c184, 0xe58c1912, 0x82702421, 0x18242a10,
0x120e7218, 0x12121b12, 0x05e16748, 0xe2839520, 0x830ebc41, 0x24182312, 0xc3410118, 0x1956210a, 0x24233982, 0x67012b19, 0x562005f8, 0x42070048,
0xdf8305ef, 0xdf823320, 0x9a135342, 0x833320d6, 0x372327c5, 0x07330733, 0x66422337, 0x20c59511, 0x2716841b, 0x2b2b406b, 0x6b351050, 0x920f7742,
0x820120ba, 0x556a3613, 0x04006a95, 0xeaff0000, 0xab01c601, 0x13000900, 0x33002800, 0x05a74a00, 0x3f273727, 0x07011f01, 0x05ce6b17, 0x32071737,
0x07060716, 0x26272206, 0x37363734, 0x06151636, 0x2e17021e, 0x05716303, 0x7b014e08, 0x38381336, 0x17443613, 0x0d238e17, 0x230d2524, 0x040e0f2c,
0x0a08130e, 0x42aa420d, 0x0e0d3e3e, 0x1e041a0e, 0x2e0c5947, 0x02264556, 0x3330032d, 0x2a690183, 0x41272741, 0x4040022a, 0x192b1a96, 0x011a2b19,
0x1b6a2a2a, 0x3f0d0e0d, 0x3433823f, 0x12070a0d, 0x47592e0f, 0x2502261f, 0x342d5646, 0x03303383, 0x08af5a00, 0x1a009a22, 0x2e28a982, 0x3a003400,
0x53004000, 0x1e28b182, 0x011e0701, 0x3336011d, 0x2c05f142, 0x3634012e, 0x012e3337, 0x17013e37, 0x26b68226, 0x013e1716, 0x82173237, 0x27262410,
0x82261737, 0x173739c9, 0x27261706, 0x05360717, 0x37271716, 0x35230506, 0x0622012e, 0x010e2307, 0x0807e143, 0x2610015f, 0x18140624, 0x241c0b0a,
0xebfe1c24, 0x24303024, 0x0e0a1506, 0x1e1d5716, 0x01070d38, 0x1e321208, 0x17011417, 0x3613110e, 0x10b31113, 0x143f030c, 0x330603ec, 0xbffe042c,
0x2b320602, 0x40560103, 0x30483001, 0x18122b01, 0x15011218, 0x010c0c09, 0x2747114b, 0x041d3212, 0x37240104, 0x081c8424, 0x20411a24, 0x0d3a212d,
0x22111c16, 0x0118150f, 0x57231508, 0x3d1c0308, 0x0e0b080d, 0x7e060f3c, 0x2f201113, 0x05840c15, 0x832ba521, 0x01270881, 0x01182418, 0x0c120c01,
0x00000400, 0xeb01efff, 0x0c009601, 0x26001900, 0x00005c00, 0x0f011e37, 0x2e010e01, 0x82013f01, 0x200c98f7, 0x08324437, 0xed82f082, 0x821e3121,
0x31272134, 0x080ef844, 0x010e172c, 0x012e0607, 0x3e313736, 0x26343501, 0x0809c027, 0x0f021c02, 0x1b030911, 0x095e0f02, 0x022c0309, 0x0208120f,
0x5e0f032c, 0x19830908, 0x1f820c82, 0x05450920, 0x11012909, 0x0904080f, 0x1c190810, 0x350c2945, 0x13170101, 0x050a1008, 0x190c0908, 0x0e03c012,
0x08096709, 0x05830f04, 0x0c820220, 0x0809a525, 0x82090e05, 0x880c8305, 0x43292019, 0x1c2b0874, 0x05081d12, 0x04041010, 0x451e300e, 0x242b095b,
0x040b2718, 0x04111004, 0x610c1306, 0xbb4a051a, 0x05634406, 0x4b003e22, 0x21346144, 0x754f1416, 0x3f342706, 0x07271701, 0x5d661406, 0x34362105,
0x352b6044, 0x0c1919d7, 0x0c202020, 0x1e3c1919, 0x0d0d1e1e, 0x0f100f07, 0x61440d07, 0x1a243f26, 0x080c1b3f, 0x3f1b0c08, 0x3479631a, 0x0d210e34,
0x07040407, 0x0000210d, 0xff000002, 0xdf8501d6, 0xddb45b20, 0x2627373c, 0x1f323634, 0x013e3701, 0x010f011e, 0x011e3637, 0x17010f06, 0x22061416,
0xf882012f, 0x3f012e22, 0xab050242, 0x2f4334ed, 0x110d0623, 0x030c2207, 0x0209110f, 0x0f092f0d, 0x92090804, 0x34ffa613, 0x07220c57, 0x23060d11,
0x0408092f, 0x0d2f090f, 0x0f110902, 0x3d139203, 0x00080000, 0x01eaff00, 0x009601b9, 0x0014000b, 0x001e0019, 0x00280023, 0x0032002d, 0xff670100,
0x0e17220a, 0x05ca6001, 0x26172723, 0x20f48222, 0x82f9830e, 0x0725301f, 0x1727012e, 0x37013e07, 0x32162707, 0x46000137, 0x0585053e, 0x24241b37,
0x1b242436, 0x18361833, 0x1b145986, 0x05252504, 0x1901131b, 0x2a058226, 0x1b135858, 0x17339305, 0x7a011837, 0x2a200b68, 0x2e06687a, 0x09094996,
0x2f100721, 0x19518519, 0x82de112f, 0xdd102104, 0xbb200e83, 0xcf441782, 0x00962209, 0x2caf8212, 0x0030002a, 0x003a0035, 0x3700003f, 0x82888233,
0x32332295, 0x05147416, 0x17363422, 0x200acc47, 0x47168305, 0x332705e3, 0x22012e37, 0x87370706, 0x840720cd, 0x554021c8, 0x2605f47a, 0x0c0c0955,
0x8280fe09, 0x01342205, 0x200b842a, 0x210582d6, 0x145a0901, 0x83ab2008, 0x400121a7, 0x0121d988, 0x20d4834c, 0x47f685c0, 0x552007e7, 0x2006c247,
0x053d4955, 0x241bab25, 0x87d51b24, 0x835120d8, 0x180020d3, 0x2009cb79, 0x28cb8296, 0x001d0018, 0x00270022, 0x20c99438, 0x30b19321, 0x34363703,
0x010f2226, 0x06222627, 0x16011f14, 0x21c29132, 0xac940901, 0x0742512e, 0x3307110d, 0x0d110733, 0x10074207, 0xab91bb8e, 0x43d4fe2e, 0x060d1106,
0x0d063434, 0x06430611, 0x0020ba82, 0xff240482, 0x01d601fd, 0x0720bbb6, 0x26073343, 0x34262206, 0xd936013f, 0x42ce2abb, 0x060c1107, 0x0c063333,
0x4feb8211, 0x17270a9f, 0x45002e00, 0x49370000, 0x2221092d, 0x518d8307, 0x072105dc, 0x05425117, 0x10861d82, 0x012e2127, 0x05333634, 0x20118221,
0x05264a36, 0x2627223f, 0x16323634, 0x26343632, 0x0c0c0955, 0x1812ab09, 0x070c2418, 0x18070d11, 0x24303048, 0x2b138295, 0x0d110c12, 0x24371206,
0xd6fe1c24, 0x09220e82, 0xc55b1501, 0x241b2407, 0x82123624, 0x120d2494, 0x48eb0c0c, 0x0c2a066d, 0x06110d06, 0x30483018, 0x11822b01, 0x110d0c29,
0x37241207, 0x82010124, 0x05414a0c, 0x12200d82, 0x0c205f82, 0x00211082, 0x28cb8a00, 0x00280014, 0x1300003f, 0x05844b17, 0x43360721, 0x22250b05,
0x33161406, 0x20a58321, 0x06b24727, 0x95171521, 0x0f802ac5, 0x32293d0b, 0x0f010142, 0x09c14712, 0x27088b47, 0x2a014a09, 0xcb012a40, 0x0129c193,
0x30260140, 0x14324201, 0x26b08409, 0x2a304930, 0x82192418, 0x350127a6, 0x202a2a20, 0x0a83d50b, 0xbe8d0120, 0x000a0023, 0x067b6100, 0x00072308,
0x0015000d, 0x0020001a, 0x002e0026, 0x00390033, 0x25000045, 0x33273436, 0x010f1416, 0x0e333736, 0x1d502701, 0x26210807, 0x27063327, 0x37013e23,
0x16330706, 0x27012e17, 0x33373426, 0x37171406, 0x36231716, 0x27262317, 0x0aaf661e, 0x01012e3a, 0x4803035d, 0x136e0505, 0x2f103f0b, 0x03036423,
0x1b350364, 0x700e520e, 0x1e2e0e82, 0x0b3f4a13, 0x212f1e13, 0x03480505, 0x16835d03, 0x1084af20, 0x756d8420, 0x1595230a, 0x0282152c, 0x29237625,
0x846c271b, 0x27942e0b, 0x1bd82e2e, 0xd3230a27, 0x270a2329, 0x21138445, 0x1482d515, 0x0f832e20, 0x18026521, 0x4a0b3b65, 0xab26052b, 0x0b009601,
0xdf821700, 0x7c115b45, 0x2e210698, 0x2b088201, 0x26220614, 0x22033634, 0x3f342726, 0x2705e556, 0x0e151617, 0x00012301, 0x0a134418, 0x67454020,
0x12653411, 0x26070118, 0x4048401a, 0x0107261a, 0x95011218, 0x87405401, 0x7f292032, 0x64450acd, 0xacfe3207, 0x090d1218, 0x19191644, 0x0d094416,
0x02001812, 0x25008200, 0x8001d701, 0xae181e00, 0x142807af, 0x16323307, 0x2716011f, 0x2805104d, 0x013f0635, 0x013b013e, 0x036d1826, 0x0125080b,
0x01302400, 0x1610360b, 0x02072604, 0xaafe1218, 0x07021812, 0x10160426, 0x30010b36, 0x18181224, 0x01181824, 0x3d0a8280, 0x0e131318, 0x12021d99,
0x02121919, 0x130e991d, 0x30241813, 0x1924182a, 0x00182419, 0x7b8b0004, 0x46003628, 0x1e010000, 0x7fa31701, 0x33150724, 0x03821735, 0x35372727,
0x35071523, 0x05965433, 0x65013b21, 0x9ea30676, 0x152b9223, 0x2b00822b, 0x18129515, 0x12180101, 0x40152b40, 0x8034b19f, 0x201535aa, 0x2a2b2b2a,
0x18351520, 0x18125612, 0x2a56406a, 0x360b8f43, 0x00380029, 0x25000047, 0x020e011e, 0x27260623, 0x013e032e, 0x41173637, 0x0f22054f, 0xde830e02,
0x011f1628, 0x36013f16, 0x63711732, 0x27263006, 0x27263707, 0x0e17013e, 0x17160701, 0x51163707, 0x2b080566, 0x03086501, 0x09180801, 0x28261405,
0x0111052d, 0x0609050e, 0x0306020a, 0x0503030f, 0x04020209, 0x0b0f0b0f, 0x11040710, 0x42040603, 0x3105b542, 0x21633240, 0x78020120, 0x0260495b,
0x3e141e01, 0x0882382a, 0x60022808, 0x0e050396, 0x01020e13, 0x093a1410, 0x04142820, 0x08020208, 0x09050428, 0x08050209, 0x060d0c16, 0x14060508,
0x82ec0103, 0x31468237, 0x63212001, 0x785b4032, 0x49600228, 0x143e2a38, 0x0882011e, 0x85604921, 0x01e02ae3, 0x00a001ab, 0x003c0033, 0x2ae3824c,
0x27363707, 0x26012f26, 0x83010f06, 0x013f24d7, 0x82060717, 0x36173101, 0x17011e37, 0x36170716, 0x27263435, 0x16060737, 0x3622fe82, 0x0c82013f,
0x45272621, 0x142c055b, 0x23060316, 0x3427012e, 0x07061737, 0x33082c83, 0x58890137, 0x02030731, 0x11077308, 0x02083a06, 0x2b08150f, 0x02025928,
0x10200d11, 0x012a1f10, 0x13200901, 0x04460b0c, 0x020b0e02, 0x04020e0a, 0x120a0303, 0x08056342, 0x231d6326, 0x14024232, 0x01010820, 0x0d13202a,
0x0b3704d1, 0x44070a11, 0x35050205, 0x01101408, 0x5b182706, 0x0a050104, 0x20321f87, 0x2414231d, 0x0c66060f, 0x090e020e, 0x040b057e, 0x8b427909,
0xa8fe2705, 0x31430113, 0x6f871c24, 0x34060b57, 0x006b01fc, 0x00200007, 0x37000023, 0x23072327, 0x37173337, 0x20088207, 0x0c1c6b27, 0x37331722,
0x2e080282, 0xdc273305, 0x290f440f, 0xd1442b44, 0x20222019, 0x4518101a, 0x02604928, 0x32496002, 0x26021551, 0x2c252020, 0x183196fe, 0xc02a2a6b,
0x8287c0c0, 0x221d2100, 0x34055d41, 0x2b330102, 0xc0828209, 0x00004e79, 0xff000006, 0x01eb01e1, 0x358182a0, 0x00160007, 0x001e001a, 0x25000022,
0x37273717, 0x27233533, 0x9b6d2335, 0x3e172a05, 0x26343701, 0x33152305, 0x82168317, 0x70012b1e, 0x1d261e26, 0x806b4040, 0xda53231d, 0x23280805,
0x4040f8fe, 0x9f2a2a96, 0x3d1e261e, 0x5a261f27, 0x6767592b, 0x37243911, 0x48010148, 0x48392437, 0x153fd42b, 0x001e271f, 0x07200082, 0xb5227784,
0x7784b501, 0x29056756, 0x001b0017, 0x27013f00, 0x5e831107, 0x17072723, 0x217d8207, 0x0c820713, 0x03247282, 0x6a213521, 0x02827182, 0x824a0121,
0x2a812204, 0x2d0582ab, 0x802a2ac9, 0xd6fe2a01, 0x261e2716, 0x73822c01, 0x26b6fe34, 0x3f35271e, 0x269e013f, 0x3f14271f, 0x0080d7fe, 0x6b840900,
0x6b86eb20, 0x25090d64, 0x002b0027, 0x5e823700, 0x1320d283, 0x21087b6c, 0x0f83012e, 0x13207683, 0x27208382, 0x2006bd66, 0x200b8237, 0x23d8824c,
0x152a2a79, 0x230a4255, 0x3b404075, 0x1e209585, 0xc0201982, 0x342a0d85, 0x7a1e271e, 0x022b013f, 0xfb853648, 0x94483631, 0x1e27a32b, 0x1e060127,
0x3f7a1f26, 0x82a42b95, 0x06f341a5, 0x8001e735, 0x11000400, 0x00001e00, 0x22263721, 0x06221307, 0x183e1707, 0x8b07eaa5, 0x013a080c, 0x58214d00,
0x75414d21, 0x62282630, 0x2628626c, 0x2b417530, 0x1827214e, 0x183a423a, 0x664e2127, 0x1a011919, 0x1e332528, 0x331e2222, 0x1b802825, 0x14123318,
0x18331214, 0x6b8a001b, 0x20001429, 0x00002900, 0x82170713, 0x37362167, 0x372f0589, 0x22033717, 0x33361707, 0x37171632, 0x8207012e, 0x3b08840b,
0x0e201c31, 0x1211260d, 0x27151830, 0x29371e19, 0x46344d1f, 0x3d45951b, 0x36292633, 0x0c248485, 0x1f28440c, 0x013a8082, 0x091f1b80, 0x0a0d330a,
0x330f0b30, 0x03360a12, 0x46466617, 0x1765011b, 0x91850a33, 0x0a440123, 0x598e8417, 0x21200887, 0x0c2d9982, 0x19001000, 0x00003400, 0x33352325,
0x059b4637, 0x0c8b8382, 0x07332729, 0x2e070614, 0x87273701, 0x17333007, 0x32013e37, 0x01011f16, 0x0328287d, 0x820e130e, 0x28512602, 0x150d0428,
0x2902820d, 0x0d2d2bc2, 0x010e1313, 0x06841c1d, 0x252a2d33, 0x0215061e, 0x571d0616, 0x0d0a2f83, 0x0e0e140d, 0x290887bc, 0x1c029f01, 0x021c0303,
0x07856868, 0x738d9f28, 0x14090914, 0x337e0073, 0x003f2208, 0x339b823a, 0x07060727, 0x2e272623, 0x33352701, 0x17062215, 0x3717011e, 0x2e220c82,
0x0f850701, 0x37218a82, 0x230b8336, 0x010f010e, 0x2e200c83, 0x59081982, 0x0f061517, 0x363f0101, 0x0a0f1122, 0x1e063030, 0x150b6c0e, 0x0d380e03,
0x08200933, 0x5f0a1605, 0x0a030d0a, 0x09200f07, 0x150c5222, 0x12052706, 0x14065217, 0x0a1b5506, 0x40802c67, 0x6d6e1f21, 0x0a011f0e, 0x1f0a0c0a,
0x11601f83, 0x05091049, 0x08090a01, 0x2210130a, 0x09821443, 0x090b0131, 0x34280d52, 0x01080bbd, 0x0109010a, 0x8700ef19, 0x019624b3, 0x820f0056,
0x151727b3, 0x23072723, 0xb2823735, 0x33371728, 0x761f0115, 0x0287761f, 0x0b8ac020, 0x03000022, 0x080b8218, 0x00072808, 0x001b000b, 0x35333700,
0x35331533, 0x15210521, 0x32210121, 0x0e111716, 0x22212301, 0x3e112726, 0x56558001, 0x6300ff55, 0xd14609c6, 0x00ff2105, 0xd5270784, 0xc0962b2b,
0x18800196, 0x23081341, 0x00181256, 0x2006f747, 0x069765ab, 0x21130038, 0x15132111, 0x01553521, 0x2baafe56, 0x6b010001, 0x0001aafe, 0x7341d5d5,
0x00ab2206, 0x239183eb, 0x21352125, 0x2105ba5a, 0x9b545695, 0x01ab2308, 0xa3830096, 0x1f000f25, 0x8a130000, 0x820520a5, 0x9e11202d, 0x8cb583a9,
0x15012aad, 0x80562b2b, 0x01406b6b, 0x5db08c40, 0xab22059f, 0x6b826b01, 0x11000d22, 0x212b6984, 0x21152311, 0x35331501, 0x82071523, 0x56552405,
0x83560001, 0xab2b2550, 0x1501ab55, 0x10820a82, 0x2bab8027, 0x00808055, 0x078f4900, 0x080a1b66, 0x37353729, 0x07153715, 0x15170735, 0x27152527,
0xeb804035, 0x808095d6, 0xc0d66b01, 0xbe8a1c70, 0xa68f03bb, 0x75199202, 0x829628ba, 0x09cb71eb, 0x00052508, 0x00370030, 0x004c0040, 0x37000058,
0x2e173734, 0x010e2501, 0x3727010f, 0x07272636, 0x0e272306, 0x07021f01, 0x2b270d86, 0x33013e01, 0x57171632, 0x1e31050e, 0x011f0701, 0x27222306,
0x0e151613, 0x36370701, 0x0b6f4f2f, 0x5e591320, 0x3d188205, 0x1049011e, 0x01382e57, 0x06070132, 0x08154213, 0x10110702, 0x01073010, 0x281d1307,
0x07821543, 0x10122008, 0x50190c0f, 0x193f2430, 0x0a100e03, 0x78090607, 0x201d0139, 0x16d5191b, 0x38293101, 0x4aa2010f, 0x5b260ac7, 0x03037356,
0x05845673, 0x2328c039, 0x405717f0, 0x3d131d0b, 0x0d0202c4, 0x03010201, 0x02020d01, 0x85c5784d, 0x2d26390d, 0x1913161a, 0x19090b14, 0x0a039a2a,
0x28080107, 0x18533330, 0x901b27a1, 0x210ae178, 0x4e8761fe, 0x00205482, 0x9b410082, 0x00962907, 0x000e0008, 0x25000026, 0x1525c382, 0x012e3521,
0x05b16127, 0x011d2227, 0x06263523, 0x23028207, 0x07012e33, 0x153d0282, 0x23343523, 0x60490001, 0x02560102, 0x30019e60, 0x60013048, 0x2a03160a,
0x010e0103, 0x829982d6, 0x16210809, 0x3001800a, 0x242b2b24, 0x30248130, 0x0a952430, 0x24013540, 0x120a012d, 0x2d010a12, 0x40350124, 0x207b880a,
0x069368d6, 0x00001a2c, 0x21152101, 0x23353301, 0xf94f2135, 0x35380805, 0x33351707, 0x26343632, 0xc0012123, 0x800180fe, 0x959580fe, 0x19114001,
0x552b1119, 0x272f2b55, 0xc0fe2f27, 0xff2a5501, 0x12562a00, 0x402b1232, 0x57292b40, 0x0001002a, 0x22050f72, 0x821700ae, 0x362723cf, 0xb5822726,
0x55071721, 0x370805c4, 0x32161737, 0x013e013f, 0x0fc2e401, 0x55211f10, 0x5e405c28, 0x1f200f13, 0x07c2264e, 0x08310710, 0x25c22b01, 0x0d201f4f,
0x5c405c11, 0x1f215528, 0x07c20f10, 0x11073107, 0xc028af88, 0x08008001, 0x22001200, 0x07315b83, 0x21112311, 0x17072311, 0x012f3727, 0x0717010f,
0x18ba8227, 0x320b8463, 0x6b6b6b01, 0x2a2a012a, 0x2b0d306b, 0x39151539, 0x64650d2b, 0xd63a0673, 0x4b191912, 0x0a013535, 0x2a01d6fe, 0x24371d9e,
0x05343405, 0x19e63724, 0x1a83fe12, 0x26831220, 0x350b9f4a, 0x00230011, 0x13000048, 0x33363736, 0x16011f32, 0x07062617, 0x04822726, 0x05820520,
0x010e0731, 0x17011e07, 0x3e07011e, 0x07263401, 0x83012f26, 0x26222b11, 0x37013e37, 0x012f012e, 0x20822726, 0x20085f5b, 0x08318234, 0x0389277b,
0x3d403301, 0x03040531, 0x3105591c, 0x04120e21, 0x01021301, 0x30070d0d, 0x19360323, 0x1a081618, 0x15671e1d, 0x13481229, 0x0202063c, 0x15401114,
0x01151c01, 0x0c0b1515, 0x021e1b01, 0x512f5b78, 0x06150c1e, 0x0271010e, 0x041e2101, 0x35140303, 0x030a2506, 0x01200403, 0x01020c02, 0x3b011f1a,
0x29432527, 0x4a54491d, 0x12291788, 0x2051134a, 0x54253632, 0x0e1a0114, 0x2e1f8201, 0x4a1d0109, 0x02785b2b, 0x25012025, 0x4411081f, 0xdd3006d3,
0x17004c01, 0x00002000, 0x07010e37, 0x33372606, 0x1729bf82, 0x1f163633, 0x06163301, 0x20c88327, 0x06d7520e, 0x281fbb34, 0x3d0f231f, 0x3d030a05,
0x3d187218, 0x3d050a03, 0x1382230f, 0x0c09453d, 0x0c0c120c, 0x12310270, 0x12867102, 0x11111703, 0x86120317, 0x31120271, 0x5101bb02, 0x002005d9,
0x210a874f, 0xe34d006b, 0x13002605, 0x27070137, 0x21768423, 0x7287013f, 0x36010722, 0x26084953, 0x65011b2b, 0x8450851b, 0x693b2177, 0x36267385,
0xeafe1c01, 0x73854815, 0x1b500126, 0x851b9bfe, 0x6f227983, 0x76831f84, 0x0a727726, 0x1d041701, 0x05237687, 0x8200feff, 0x560121e8, 0x1f297382,
0x32002300, 0x00003600, 0x058e6d27, 0x07170725, 0x5c250727, 0x3d310510, 0x3b363401, 0x35233501, 0x15163233, 0x33152307, 0x23178507, 0x013e3527,
0x332b1782, 0x15233507, 0x21454501, 0x84214040, 0xe0013105, 0x1240090c, 0x2a121919, 0x0c096b55, 0x802a2a2b, 0x18240f83, 0x12180101, 0x2b2f0c82,
0x1b52515a, 0x521b4b4b, 0x4c4c1b51, 0x820c0916, 0x19122726, 0x090c2a2b, 0x0d842a6b, 0x18128026, 0x8080ea40, 0x2408bf5c, 0x009601c2, 0x269d8211,
0x06220100, 0x6917010f, 0x3a08055d, 0x3637012f, 0x22052326, 0x07011f06, 0x013b1606, 0x013f3632, 0x23012e27, 0x07077901, 0x02578902, 0x053e0708,
0x88570205, 0xfe060503, 0x030505bf, 0x04024129, 0x08073d06, 0x822a4202, 0x95013a1b, 0xa1f30407, 0x05080704, 0x0805f19f, 0x49050854, 0x07080573,
0x05497604, 0x068b4107, 0x01000026, 0x008001c0, 0x6706e769, 0x07230fe5, 0x82163233, 0x0616248a, 0x8326012b, 0x33072289, 0x23878316, 0x26222307,
0x26288682, 0x16106636, 0x34011016, 0x43300583, 0x0204042b, 0x03023c5f, 0x020a2b04, 0xb7035f3d, 0x1e310682, 0x2b0a022f, 0x2e010303, 0x0103011e,
0xfe101680, 0x382f87cc, 0xa904052b, 0x0105046f, 0x07aa7007, 0x3307013a, 0x06010753, 0x03325104, 0x0aa75106, 0x1b000b24, 0x9f822b00, 0x9f0ad34a,
0x0c82678f, 0x04280937, 0x39590103, 0x28040301, 0x59390308, 0x0928aa03, 0x032b1c02, 0x24168208, 0x021b2a02, 0x70811803, 0x0553380c, 0x03679d04,
0x68060105, 0x0136079e, 0x064d3006, 0x4b040501, 0x4105042e, 0xdf220927, 0x9d828001, 0x0f000922, 0x2e089382, 0x37270317, 0x07173527, 0x15372535,
0x01151707, 0x2a502a13, 0x89894ddf, 0x4d89cdfe, 0x0980014d, 0xb70989fe, 0x89893c4d, 0x3c894c3d, 0x423d4c4d, 0x80290af7, 0x26001d00, 0x00002f00,
0x05005f25, 0x2637272a, 0x06272627, 0x27012e23, 0x26059355, 0x17160714, 0x85271716, 0x3634211d, 0x081d7e18, 0x2480013d, 0x30483030, 0x0b010201,
0x261f0a07, 0x01014f3b, 0x4e3b3b4f, 0x07011201, 0x5cce170c, 0x39280557, 0x52363629, 0x01953636, 0x30252882, 0x0c171224, 0x211e8207, 0x2b853b4e,
0x0a1f2627, 0x58010b07, 0x054c5c01, 0x83016b21, 0x36522129, 0x00209a82, 0xff25e482, 0x01aa01e6, 0x3fdb8297, 0x0029001b, 0x00400034, 0x1f361300,
0x0e071402, 0x012f2601, 0x013e3726, 0x16011f13, 0x06070607, 0x36230d82, 0x83362627, 0x0614280d, 0x2706010f, 0x82141726, 0x3f2628c0, 0x15163601,
0x6b262237, 0x7e080794, 0x0213e207, 0x04040505, 0x50050e0d, 0x340e130c, 0x1552066a, 0x101d0f09, 0x0b05310a, 0x150c01cf, 0x0a01104d, 0x04164e07,
0x22189f03, 0x390a0e1b, 0x0c351808, 0x1c1b060b, 0x0d1e0d0a, 0x95010e04, 0x59441501, 0x03080a0b, 0x1287090b, 0xfe10080c, 0x071e01ee, 0x0d192414,
0x130c5510, 0x082b1812, 0x08100621, 0x081a0209, 0x1a880d17, 0x0c140605, 0x0a0a4c0e, 0x0a14460d, 0x0b0d2727, 0x8210261b, 0x0b3b70d2, 0x2200022d,
0x013f0000, 0x011e3727, 0x82141715, 0x010e24c7, 0x82220723, 0x012e24b7, 0x82342735, 0x013e38b3, 0x17323733, 0x6f6fd516, 0x010404f7, 0x0f1d0809,
0x86222353, 0x8c081d21, 0x4080280d, 0x330f2740, 0x89461213, 0x420d8b18, 0xc037092b, 0x07008001, 0x27001700, 0x23250000, 0x33352335, 0x23353315,
0x84153315, 0x200f850b, 0x9b4a1837, 0x2b01210e, 0x6a24008b, 0x1813d6fe, 0x2006266b, 0x24188255, 0x2a2a2b80, 0x2203822b, 0x18131855, 0x4c0c1aa7,
0x6b2e0883, 0x1b000f00, 0x30002400, 0x00003900, 0xc1182101, 0x072b0ead, 0x3634012e, 0x010e1737, 0x69171614, 0x172c075e, 0x34013e27, 0x1e372726,
0x27061401, 0x2407de45, 0xaafeab01, 0xa8af1812, 0xe9fe2307, 0x0082191f, 0x13121e2b, 0x30246d13, 0x30304830, 0x200b8355, 0x20158313, 0x054b5092,
0x6d180120, 0xfe2e0f88, 0x3e1a1ffc, 0x1e1a3e42, 0x2e322f13, 0x3483010e, 0x25304822, 0x2f210d83, 0x20198412, 0x347e188a, 0x00062109, 0x012f0082,
0x006b01d6, 0x001f0013, 0x00270023, 0x7f2f002b, 0x15210b2f, 0x069b5223, 0x7f212321, 0x33260813, 0x33152535, 0x03822135, 0x07860520, 0xaa802b25,
0x842a2a80, 0x2a012e04, 0xaa2b2baa, 0x2bd5fe2b, 0xfe2b0001, 0x260583aa, 0x2b2b6b01, 0x83805680, 0x2a2a2204, 0x21028256, 0x00822b55, 0x0382d520,
0x7d822b20, 0x83040021, 0xeb012304, 0xc34f4001, 0x00112606, 0x15212500, 0x2d608221, 0x35330521, 0x07172523, 0x01173727, 0x294cff2b, 0xaaaa2f08,
0x9620a001, 0xeb402060, 0xaa2b802b, 0x0b84362a, 0x0b000022, 0xc0204784, 0x0320cb82, 0x4f06d94b, 0xc1700fa3, 0x82172006, 0x136a1807, 0x830f830b,
0x86252003, 0x8227201f, 0x6b402b7c, 0x6a6a8b6b, 0xfe6b6b8a, 0x4d182beb, 0x08840740, 0xababfe24, 0x0282d5ab, 0x6b800123, 0x8200832a, 0x063542d6,
0x80220983, 0xcf865656, 0x0021878b, 0x0a037137, 0x5d833520, 0x49800121, 0x078505d3, 0x6b2b5525, 0x83408016, 0x0003233b, 0x3761ff00, 0x00182b05,
0x00230020, 0x37272500, 0x97823736, 0x08057c41, 0x26070653, 0x17162327, 0x17371707, 0x33032337, 0x33173337, 0x01173727, 0x38013713, 0x2a963f17,
0x2e16ef96, 0x182b131e, 0x6b1e6d28, 0x602b8942, 0x1865182b, 0x2322982b, 0x3f01357f, 0x2a2a2b4c, 0x21343e2b, 0x6b2d3426, 0x98426a1e, 0x404000ff,
0x005d5d6a, 0x087f4100, 0x0800962b, 0x19001100, 0x00002100, 0x08b16813, 0x17163222, 0x3e29af82, 0x14163701, 0x34362707, 0x20078727, 0x058d42c0,
0x75302435, 0x06aafe06, 0x2020d675, 0x6a0d0d24, 0x2d233f3f, 0x4255012d, 0xd4230673, 0x822b2a2b, 0x25ce2f02, 0x13242155, 0x436b142c, 0x352241a6,
0x7282337e, 0x82020021, 0xf13808e7, 0x8e01ab01, 0x17000e00, 0x27010000, 0x14010e07, 0x3e32021e, 0x05263402, 0x013f3634, 0x15011e17, 0x79797901,
0x33191919, 0x333e423e, 0xeefe1919, 0x5a5a1313, 0x15011313, 0x3f351582, 0x19324040, 0x40403219, 0x2d20673f, 0x115e5d11, 0x0100202c, 0x3b008200,
0x8001c001, 0x00000500, 0x1f150501, 0xc0013301, 0x399280fe, 0xa1800114, 0x00923914, 0x04200082, 0x2008c357, 0x06ef4219, 0x46010021, 0x322305dd,
0x82353736, 0x08044609, 0x012e332d, 0x37171507, 0x15173527, 0x82073533, 0x07d94603, 0x1b41243b, 0x49274118, 0x60020260, 0x14533749, 0x5e6d162e,
0xa0601070, 0x012a2a2a, 0x054b5795, 0x3a141623, 0x0681541b, 0x3a010232, 0x69524230, 0x391b4480, 0x95955670, 0x002a2ac0, 0xea26fb84, 0x96015601,
0xfb830800, 0x6a6d1320, 0x26222c05, 0x27263417, 0x0622012e, 0x8233011d, 0xc033246e, 0x82182518, 0x17952c02, 0x37240113, 0x40402a24, 0x83126b01,
0xad182c10, 0x1b092215, 0x961b2424, 0x42006a6a, 0xd920052f, 0x05234b82, 0x82001400, 0x3725215c, 0x0633c482, 0x011e3337, 0x2306010f, 0x26272627,
0x27013e37, 0x5317011e, 0x06210afb, 0x3ee58417, 0x16830301, 0xb0211430, 0x090a0d06, 0x080807d5, 0x3e05010d, 0x49a66830, 0x0d21156e, 0x82375413,
0x08bc82e1, 0x4303012e, 0x79020153, 0x16058436, 0x01812213, 0x06d50a1a, 0x6d0d0601, 0xa9162c3e, 0x02435301, 0x02013a30, 0x54374960, 0x15171713,
0x785b496e, 0x08096341, 0x8001de26, 0x2f002600, 0x35003200, 0x22010000, 0x15230706, 0x16060733, 0x012f3632, 0x15171633, 0x35211523, 0x37363523,
0x35231388, 0x18012e23, 0x3d08b34b, 0x25231707, 0x00012317, 0x84072015, 0x29073f2a, 0x3f082a51, 0xc01c0b43, 0x1cc0aa01, 0x1083430b, 0x3f092b27,
0x2007842a, 0x057f4a15, 0x40208224, 0x03823601, 0x14178025, 0x8220962a, 0x1c962800, 0x2a2aef0b, 0x851c0bef, 0x142a230d, 0x004b2b17, 0x50702305,
0x174f5050, 0x00002805, 0x80010002, 0x44000f00, 0x24250525, 0x00002d00, 0x95801813, 0x4105200e, 0x072006fb, 0x05200782, 0xb482c382, 0x45012e21,
0x2b2208a9, 0x0450aa01, 0x56fe2105, 0x01220784, 0x0082aa12, 0xebfe9537, 0x01045824, 0x24580400, 0x3724241c, 0x80012424, 0xfe121801, 0x392284d6,
0x122a0112, 0x15153f18, 0x2a15152b, 0x22541616, 0x20151520, 0x2401a922, 0x02822436, 0x46000021, 0x0230054b, 0x00560100, 0x00100008, 0x00250019,
0x25000029, 0x17227987, 0x88821716, 0x3e288182, 0x22263401, 0x17161406, 0x232c0883, 0x14160722, 0x23271607, 0x15013315, 0x6a267a86, 0x0240011c,
0x8085b039, 0x241b863c, 0x0a0a1b24, 0xcb0a1313, 0x20ababab, 0x202b2b20, 0x25170420, 0x1f182b2b, 0xa1830133, 0x01243722, 0x03260783, 0x041a451a,
0x86822b16, 0x00020022, 0x3f080082, 0x9601cb01, 0x13000300, 0x21370000, 0x1f372115, 0x013e1601, 0x15032f26, 0x3515022f, 0x6afe9601, 0x0d725c9a,
0x0d0d0716, 0x6a293b71, 0x2b2b1f14, 0x031e19a5, 0x04161b0c, 0xb00ac11e, 0x6e08321c, 0x47854282, 0x7401da22, 0x12204782, 0x25284785, 0x010f012e,
0x07170727, 0x25220382, 0x4984013e, 0xa2012108, 0x720d1604, 0x6a582993, 0x01381f2a, 0x2b0d0d61, 0x0d0df22b, 0x0b891e03, 0x08201c99, 0x16045f60,
0x220cbb43, 0x82070003, 0x821f2095, 0x1533234f, 0x03823523, 0xa14a3720, 0x4303200a, 0x0e2308c2, 0x822aeb01, 0x50152000, 0xb7430b55, 0x24058405,
0x80d62b80, 0x05b143ea, 0x5b780226, 0x82fe785b, 0x0c1aee18, 0x1b476382, 0x00802205, 0x230b8203, 0x000d000a, 0x07194c18, 0x26061542, 0x25371505,
0x42251707, 0x952c0a23, 0xfe80abd6, 0x550156eb, 0xbffe5656, 0xab2b0b82, 0x2b8001d6, 0x2b2b552b, 0x8256ac15, 0x186b2000, 0x43080c58, 0xd62105b7,
0x05734501, 0x0000212c, 0x1d062213, 0x33353301, 0x08880735, 0x1520d382, 0x0a5d4418, 0x18125529, 0x1380d62a, 0x7fd52b18, 0xab350646, 0x12181812,
0x12189501, 0x552ad6d6, 0xd5d51318, 0x1801552b, 0x82158412, 0x44012004, 0xab200667, 0x14256382, 0x00001800, 0x06755305, 0x15013b26, 0x33351737,
0x25058a53, 0x15233527, 0x72538001, 0x15122306, 0x5b863536, 0x82158021, 0x1256255a, 0x20209518, 0xfe236082, 0x821812aa, 0x08274dc4, 0x5382eb20,
0x27000331, 0x07010000, 0x26253715, 0x14110706, 0x52373316, 0x3e2c0532, 0x16171602, 0x1137013e, 0x26112726, 0x5008cc82, 0x012e1107, 0x6a6a9501,
0x3e20f6fe, 0x05040718, 0x1f183717, 0x4217183e, 0x02173437, 0x13010607, 0x1c272418, 0x3e181742, 0xea609501, 0x0f01aa60, 0x05c8fe12, 0x0d0b0106,
0x110e110f, 0x010c0b01, 0x01040601, 0xfe080e37, 0x12010be0, 0x1220010e, 0x20d78c0f, 0x18d79720, 0x910b6872, 0x2a6723df, 0x02822b2b, 0x1382e490,
0x2b2a2a22, 0x0720e782, 0x00380382, 0x5601d601, 0x19001500, 0x2a002100, 0x3c003300, 0x00004500, 0x23150713, 0x290da56e, 0x2735012b, 0x23153307,
0x136e3317, 0x4c072005, 0x08870837, 0x06220729, 0x36321614, 0x87332634, 0x2a952808, 0x0c0c092b, 0x83800109, 0x2a2b2b05, 0x56d6d6d6, 0x2a0a0a2a,
0x8762410a, 0x85db2005, 0x4ca52006, 0xb2200552, 0x01260685, 0x0c162a55, 0x3183ab09, 0x162a0482, 0x15162a2a, 0x01011301, 0x3d441f13, 0x86012006,
0x681f2007, 0x058505a3, 0x0520c683, 0x2808f346, 0x0017000b, 0x002c0023, 0x0ed34d35, 0x5d0d3d63, 0x085011e1, 0x0cdd4d08, 0x4b435b20, 0x5849200a,
0x36200acb, 0x4a061a48, 0x5275069e, 0x7cf1180b, 0x6e29200b, 0x2a200a5e, 0x20063148, 0x07994a29, 0xb3880220, 0x2400182a, 0x22170000, 0x23013d26,
0x2a09d171, 0x06141115, 0x0607012b, 0x49070323, 0x2727050c, 0xc0072737, 0x4b560c09, 0x12270838, 0x08074f82, 0x18371e02, 0x2708ed73, 0x40090c15,
0x00011219, 0xff2c2183, 0x4f191200, 0x1e550106, 0x381e3837, 0x24820282, 0x240c5f44, 0x001f000b, 0xe789182b, 0x2e212c08, 0x34113501, 0x1733023f,
0x82011e33, 0x27072379, 0x4f6e3736, 0x1e172c05, 0x37321701, 0x2f012e27, 0x82370601, 0x8214200b, 0x1b1a3c1a, 0x2b1b7601, 0x1812f0fe, 0x802b6802,
0x1812402b, 0x010e6b0e, 0x1e2d3d01, 0x82194f17, 0x10103e06, 0x03201726, 0x1b6b0526, 0x51040124, 0x1b61010a, 0x2a1b8afe, 0x01121801, 0x1e060700,
0x2d09832a, 0x0c1400ff, 0x2d1e176b, 0x0e01013d, 0x0682ab4f, 0x0326052e, 0x10261720, 0x1b240130, 0x04510a0b, 0x26088743, 0x009601d6, 0x6411000b,
0x13250dff, 0x27072737, 0x0ca94107, 0x1e954625, 0x4f1e4277, 0xfe210c6d, 0x821384cd, 0x0cef4f4a, 0x1d001722, 0x17204d8d, 0x240b5945, 0x37173727,
0x42598c17, 0x5e240b03, 0x77421e60, 0xef41658d, 0xf7fe210b, 0x23581f84, 0x000a240b, 0x82310013, 0x010e276f, 0x32161415, 0x01483736, 0x06222a0b,
0x2e23011d, 0x34013d01, 0x05255f26, 0x3a051362, 0x3435012b, 0x0b012326, 0x3724241c, 0x24010124, 0x0c0c091b, 0x2d0c0c12, 0x842b0c09, 0x21128309,
0x0a820001, 0x0c400928, 0x03950109, 0x29821e49, 0x491e1c23, 0x05fe475d, 0x090c6027, 0x090c01ab, 0x22208315, 0x82241c15, 0x09ab2314, 0x9384000c,
0xab2a8782, 0x08006b01, 0x1d001100, 0x726c0000, 0x43172008, 0x132007c5, 0x270a2543, 0x26261d9a, 0xbf27273a, 0x2705e242, 0x013a2c1a, 0x2b2c3a01,
0xd1210583, 0x22188301, 0x4265263a, 0x012006c9, 0x2b231988, 0x18003a2c, 0x2f086752, 0x000b0082, 0x001e001b, 0x13000022, 0x27070137, 0x25056342,
0x21350537, 0x64422127, 0x35332e06, 0x33232723, 0x33011d27, 0x011b1427, 0x0653427c, 0xfe7e0137, 0x2f012bfc, 0x200e1812, 0x7c568404, 0x80e51010,
0xfe1b6601, 0x08424285, 0x2b2b383a, 0xff121801, 0x200c1400, 0x65105580, 0x02008080, 0xd5ff0000, 0x9601c001, 0x12207382, 0x0bbb8c18, 0x03273108,
0x27213705, 0x15270321, 0x1b8f011c, 0xd6100b1f, 0x20021810, 0xfe093c01, 0x6f012bec, 0x6501cb24, 0x1c71fe1b, 0x1015091f, 0x561a1f01, 0xcab6fe2a,
0x3a0a2b42, 0x0038002c, 0x37000044, 0x3233023e, 0x3315021e, 0x23022e34, 0x1d020e22, 0x821e1401, 0x023e2511, 0x0e142337, 0x2e241182, 0x34013d02,
0x08179e47, 0x0902d724, 0x0c080c0f, 0x0b260609, 0x15101b13, 0x090a141f, 0x0f151f15, 0x010b141a, 0x0c0a0626, 0x090f0c07, 0xbd472b04, 0x6148250b,
0x48610202, 0x23080584, 0x0a100bd8, 0x070d0906, 0x0a12190f, 0x1221190f, 0x18221206, 0x1711090e, 0x080c060d, 0x15110904, 0xc70b060b, 0x200bfd57,
0x82388782, 0x0000253e, 0xff000001, 0x0805834b, 0x0000253a, 0x17011e25, 0x22231533, 0x010e2726, 0x3335012b, 0x1137013e, 0x2327012e, 0x16323335,
0x3b013e17, 0x0e231501, 0x15010701, 0x2a090c01, 0x01150a35, 0x350a1501, 0x010c092a, 0x2b200f8f, 0x2a251382, 0x0c09090c, 0x2019822a, 0x88218301,
0x4200200d, 0x96360863, 0x09008001, 0x1d001500, 0x14370000, 0x32013b16, 0x21113536, 0x01823717, 0x07170726, 0x3f270727, 0x07317882, 0x35211523,
0xaa121980, 0x00ff1912, 0x2d2d1f34, 0x3302861e, 0x166a1669, 0x2b2a014a, 0x12191912, 0x1e680001, 0x2e1e2e2e, 0xd6251c85, 0x2b2b1515, 0x053f4a00,
0x4fd60121, 0x67840803, 0x25492520, 0x82152006, 0x14052307, 0xe0821716, 0x23013d26, 0x23272337, 0x013e6883, 0x95555540, 0xff808095, 0x80121900,
0xebd51812, 0x15551640, 0x6b000140, 0x2b2ad52b, 0xb64a552b, 0x40d52505, 0x002a1616, 0x39085f84, 0xc001eaff, 0x13009601, 0x26001900, 0x49003300,
0x06250000, 0x2206010f, 0x2726012f, 0x013f3635, 0x011f3236, 0x07271716, 0x35371715, 0x1d011e07, 0x22061401, 0x34013d26, 0x37471736, 0x36322105,
0x262a0c82, 0x35231507, 0x2e37013e, 0x3c822201, 0x37362628, 0x0e07011e, 0x59820701, 0x05a90a28, 0x0aa9050e, 0x08870101, 0x95c02f08, 0x17569595,
0x1f2f1f1f, 0x0d09171f, 0x0d0d130d, 0x40046d54, 0x03130105, 0x02200313, 0x10252813, 0x04390501, 0x5e060d60, 0x065e0404, 0x0887c00d, 0xa654472a,
0x03a65454, 0x39171f01, 0x04833d82, 0x0a0d1e23, 0x3841823b, 0x0d0a3b09, 0x0416196c, 0x06121445, 0x04021209, 0x2502042e, 0x023c1d09, 0x080b4f00,
0x8a01ee26, 0x0d000a00, 0x1c20e182, 0x3322dd82, 0xac822315, 0x37272334, 0x35330733, 0x26222117, 0x32361337, 0x06161317, 0x5d822125, 0x12123108,
0x43014221, 0xd7234421, 0x0d0c56fe, 0x1806d507, 0x0d06d606, 0x5f0170fe, 0x231a7db0, 0x656b1423, 0x0a16b639, 0x0a0a6001, 0x160aa0fe, 0x0021012b,
0x2609377a, 0x0013000f, 0x18310026, 0x08118355, 0x21111721, 0x010e0711, 0x37363417, 0x0e171636, 0x26062701, 0x17013e27, 0x1d062207, 0x32011e01,
0x18263436, 0x3b0cd17d, 0x27772a01, 0x12110211, 0x01021d0c, 0x41040322, 0x064c0605, 0x010c0c1f, 0x0d0c140e, 0x080dab7d, 0xd6fe2b20, 0x03602a01,
0x0c010325, 0x1f180101, 0x04011820, 0x18483f0c, 0x010e5004, 0x0f0f0d0f, 0xe341111a, 0x01d62608, 0x00140096, 0x329f821d, 0x003a0036, 0x16320100,
0x1e070617, 0x06141501, 0x82352622, 0x48908497, 0x272007cf, 0x58180887, 0x262108ea, 0x05094234, 0x07274008, 0x16000117, 0x1301011c, 0x301f0d0b,
0x130b0d1f, 0x151d0101, 0x140d0d0a, 0x080a0d0d, 0x0b100b0b, 0x0909c40b, 0x0c1c0bb2, 0xb10b0bb1, 0x980b1c0c, 0x01b1b1b1, 0x17131a10, 0x0d14070d,
0x821a1a14, 0x0d072c04, 0x5e1a1317, 0x0e0e140d, 0x45430d14, 0x1b2105c7, 0x8330870c, 0x82cb2037, 0x0b1b5e33, 0xb9820820, 0x09af5a18, 0x090e4e18,
0x61182e20, 0xbb48098f, 0x4595200a, 0xd52006aa, 0x600dfe4b, 0x420806eb, 0x00b301d6, 0x00080004, 0x25000017, 0x35211527, 0x27371725, 0x06141517,
0x012e2107, 0x3f36013d, 0x01161701, 0x5601ab00, 0xababaafe, 0x1218d5ab, 0x1812aafe, 0xc1c11301, 0xa36b7813, 0x6a6a32a3, 0x43d56b6b, 0x19250642,
0x0c78780c, 0x09135500, 0x0a006b24, 0x55831800, 0x36343528, 0x011e2137, 0x5587021d, 0x67821720, 0x00013722, 0x7e184d82, 0x2a2609a3, 0xab2a5601,
0x4b851085, 0x85f01021, 0x1bbe2407, 0x441ba3a3, 0xb637095b, 0x2b008001, 0x3a003400, 0x31010000, 0x0e170727, 0x16141501, 0x82373233, 0x262228ae,
0x012e013d, 0x7935012b, 0x1123066b, 0x82333533, 0x3632241c, 0x1834013d, 0x3708db62, 0x37233507, 0xa6013315, 0x0f2d174f, 0x0b171e13, 0x0c120c0a,
0x15121801, 0x80200382, 0xd6277082, 0x1e2e1e20, 0x820c0935, 0xde0c3015, 0x012b552b, 0x2d164f26, 0x17111b06, 0x829a041e, 0x60093315, 0x12951912,
0xfe121919, 0x166ba0ab, 0xcb161e1e, 0xad412c17, 0x60ab2305, 0xf7896ba0, 0x28008225, 0x4c003c00, 0x142205f1, 0x85861716, 0x2905617a, 0x011d0622,
0x35272206, 0x09892634, 0x0f06213d, 0x15231501, 0x37331733, 0x35233533, 0x27013e37, 0x0c094026, 0x1c12181d, 0x821d1812, 0x14012261, 0x08058601,
0x045f0122, 0x15554b04, 0x15158016, 0x04083555, 0x80010804, 0x1b76090c, 0x0e860a2a, 0x860e1212, 0x761b2a0a, 0x5623a883, 0x89560909, 0x02013e07,
0xd52b502d, 0x20392bd5, 0x0c081004, 0x00030000, 0x01d5ff00, 0x008001d6, 0x0022001a, 0x0631472a, 0x012f2331, 0x012b010e, 0x3634012e, 0x3717013b,
0x83232733, 0x25078208, 0x07331737, 0xcb750727, 0x2b352d05, 0x1b7a011b, 0x2f072f2b, 0xc0080b02, 0x21086283, 0x0f20206b, 0x1c24ba15, 0x182f863a,
0x1b531b25, 0x1c242184, 0x01241c6a, 0x86fe1b50, 0x31352b1c, 0xbb830908, 0x15202035, 0x6140241c, 0x85e96b0a, 0x01241b71, 0x001b2401, 0x82010000,
0x01002603, 0x006b0196, 0x22838207, 0x82113315, 0x6b352801, 0x01754075, 0x82ff406b, 0x8240201d, 0x8204201f, 0x82ff20ab, 0x00c02bab, 0x00150008,
0x0044002b, 0x6b4c0100, 0x06222e05, 0x0f061417, 0x35022e01, 0x16323634, 0x0a127d07, 0x06013b30, 0x011e1415, 0x0737011f, 0x23063315, 0x20822622,
0x37174a08, 0x22012b26, 0x33161406, 0x34353632, 0x184b0127, 0x221a1924, 0x18308a19, 0x35200b18, 0x15385038, 0xd6fe111a, 0x111a1a11, 0x25360484,
0xd5201f10, 0x16280830, 0x0d2b1e1e, 0x01201817, 0x23323223, 0x01012d25, 0x19191260, 0x2c238223, 0x1c1c5820, 0x205e260c, 0xbf383828, 0x3e34839e,
0x1a112a01, 0x67260c14, 0x2222112f, 0x20231e08, 0x160d202c, 0x32463216, 0x0409252e, 0x82000200, 0x24c38200, 0x0019006b, 0x27e98234, 0x1407010e,
0x3e373317, 0x3627a183, 0x35363337, 0x8227012e, 0x012e2213, 0x26a08307, 0x1617013b, 0x82013f32, 0x823420a7, 0x072b08b2, 0x012f2606, 0xa0070607,
0x04014232, 0x1b061b57, 0x050d2c07, 0x0104bc0e, 0x321e3242, 0x7e321010, 0x090c0c09, 0x0e0e7734, 0x8334770e, 0x14a2220a, 0x26228207, 0x010f0514,
0x8242026b, 0x0d482720, 0x1e720e01, 0x2a82010b, 0x0102422e, 0x1a17171a, 0x0c120cb5, 0x760e0e76, 0x31270682, 0x710e0210, 0x45010e31, 0x03230c13,
0x52000700, 0x002a0531, 0x35330713, 0x27331533, 0x05821505, 0x17213522, 0x35210d82, 0x22138605, 0x82402ad5, 0x00ff3201, 0x00012b2a, 0xfe2a2a01,
0x2aa44ec0, 0x95014ea4, 0x22008280, 0x82161595, 0x2b152200, 0x820082ea, 0x8603205b, 0x00802fff, 0x00120006, 0x0100001b, 0x21153307, 0x68693335,
0x21fd8206, 0x814d013e, 0x40d52b0a, 0xd5402a01, 0x05012e22, 0x02820547, 0x222e0122, 0x24061f4e, 0xababc080, 0x280e825c, 0x03035533, 0x2e223355,
0x06675a30, 0x05205e83, 0x013c0483, 0x008001eb, 0x00170008, 0x003e0035, 0x01000047, 0x010f010e, 0x012e2721, 0x07062207, 0x21230183, 0x85262726,
0x16142b0e, 0x34373632, 0x17323627, 0x70461506, 0x82232005, 0x22262223, 0x0af76b07, 0x0808224b, 0x2c000126, 0x011e0135, 0x35011e00, 0x085c2f2c,
0x01211521, 0x2101d601, 0x5d042215, 0x2a2a2091, 0x01012a40, 0x010a180a, 0x2a32b682, 0x2518202a, 0x0a220a08, 0x17182508, 0x1e2e1e1e, 0x0685d71e,
0x02800138, 0x66660216, 0x0ba91602, 0x0b090901, 0x090b0101, 0x400b0109, 0x31823f2b, 0x02050525, 0x82050502, 0x2b3f2c48, 0x03031519, 0x01151915,
0x821e2d1e, 0x86012002, 0x0a0f4d07, 0x24008024, 0xd9842f00, 0x17160722, 0x2f05f37f, 0x3d363221, 0x37273401, 0x23260727, 0x35260706, 0x2005a650,
0x23c88237, 0x010e1732, 0x08058748, 0x4d0b013b, 0x1e010267, 0x1801011e, 0x13150112, 0x402a1518, 0x3c322c2c, 0x42020c2e, 0x102a1732, 0x2340192b,
0x41330b0a, 0x4f012b01, 0x49018001, 0x27202736, 0x18124b32, 0x284b1218, 0x082a8223, 0x1d011728, 0x281d100e, 0x112b090a, 0x0802ab12, 0x3636354b,
0x03004e3b, 0xeaff0000, 0xab01ab01, 0x20001800, 0x00002c00, 0xca422301, 0x18152006, 0x82078f40, 0x8337209b, 0x013e2913, 0x15171632, 0x15231723,
0x25059e5a, 0x01331533, 0x086d1580, 0x45152005, 0x012105ea, 0x2a078400, 0x382501d4, 0x97840125, 0x82402a40, 0x15012202, 0x055d6d2b, 0x12182b22,
0x07268418, 0x251c2b26, 0xaa2b1c25, 0x40211e83, 0x055b4300, 0x8001c024, 0x83821700, 0x21010031, 0x011d0622, 0x11213533, 0x15233521, 0x82331614,
0x11352880, 0x17032634, 0x82072737, 0x01332c7d, 0x13d6fe95, 0x2a012b18, 0x5a2bd6fe, 0xd03306fb, 0x1e6b6b1e, 0x01cece37, 0x55131880, 0x55d6fe55,
0x83191255, 0x1813241a, 0x821ff4fe, 0x2a38231a, 0x678a0000, 0x67830820, 0x2337252e, 0x37273335, 0x32130717, 0x27011d16, 0x37206f84, 0x310a8244,
0x382c0133, 0x1f38cfcf, 0x124a6a6a, 0xd6fe2b19, 0x6d822a01, 0x18257983, 0x2a387313, 0x20718238, 0x27108201, 0xfe392a63, 0x632a39d6, 0xef446f87,
0x00003305, 0x8001f301, 0x1b000d00, 0x21001e00, 0x15130000, 0x3b5b2326, 0x35372505, 0x15173533, 0x2608c882, 0x15371707, 0x37273733, 0x07011f27,
0xd5071715, 0x36291010, 0x01365236, 0x0f314056, 0x310f3b3b, 0x2e2e3d0a, 0x82140b3d, 0x80012400, 0x820106c6, 0x29362c1a, 0x515540e0, 0x3c3c0f31,
0x8351310f, 0x14292b1d, 0x14143414, 0x00000500, 0x6f84f6ff, 0x13000522, 0x24226d82, 0x71832700, 0x69821720, 0x4f070521, 0x1722091b, 0x77931337,
0xfe564031, 0x27851bdb, 0x36010133, 0x03352829, 0x91171b64, 0x4079337f, 0x1b204079, 0x27360286, 0x01013629, 0x1b652733, 0x88921a01, 0x22086341,
0x82400189, 0x00092395, 0xdf822500, 0x03170730, 0x01231133, 0x1e626289, 0x2beb8080, 0x08845e2b, 0xff000122, 0x93412e82, 0x87802006, 0x17132a2f,
0x27371707, 0x2311013b, 0x24258477, 0x012b2bc0, 0x82098422, 0x8204202d, 0x02ea32e7, 0x00800100, 0x00300020, 0x00420039, 0x06220100, 0x05a87307,
0x82363721, 0x71fa1801, 0x2e27240e, 0x65150701, 0x3524082f, 0x35231523, 0x4408294f, 0x492e0aac, 0x06063180, 0x06120635, 0x010b1f1a, 0xf818672e,
0x32270a64, 0x7008897f, 0x82800108, 0x2a2b2204, 0x06325215, 0x21070c44, 0x32822f35, 0x0606352e, 0x0e060f18, 0x420f0f42, 0x1810060d, 0x13354783,
0x55352f05, 0x35710540, 0x71355555, 0x2b2b4005, 0x4930016b, 0x20028230, 0x090a441f, 0x00040022, 0x5c074f46, 0x1f270507, 0x33250000, 0x86352335,
0x3e053603, 0x35333701, 0x23350717, 0x1614010e, 0x23153317, 0x2b01012e, 0x080084aa, 0x0100ff27, 0x400b3a4f, 0x36290b40, 0x4b4b2936, 0x2a2b4f3a,
0x2b4a2b4b, 0x024e3b8b, 0x2a40402b, 0x36523601, 0x4f012a01, 0x21638800, 0x63880056, 0x0b3f7a18, 0x2105514e, 0x5b832737, 0x82363421, 0x986b826e,
0x55012163, 0xa34e6495, 0x01cc2705, 0x00380096, 0xb5823700, 0x35373423, 0x27078334, 0x1617011e, 0x1516011d, 0x2d05f564, 0x06272606, 0x15011e07,
0x2223010e, 0x68822726, 0x74820683, 0x27266008, 0x2627010e, 0x17094436, 0x0303090a, 0x463d3d46, 0x0a090303, 0x030c0917, 0x0a130709, 0x110f1c08,
0x1d202a01, 0x06080628, 0x2a201d28, 0x1c0f1101, 0x07130a08, 0x179f0309, 0x0b19041d, 0x3b070505, 0x4d01014d, 0x0505073b, 0x1e04190b, 0x062d1d16,
0x200e0e03, 0x0a100617, 0x0e121610, 0x8216120e, 0x17062708, 0x030e0e20, 0x0f412d06, 0x00962808, 0x002d0029, 0x85470033, 0x066c45b1, 0x1d299482,
0x34353301, 0x16323336, 0x210c8217, 0xcd821507, 0x010e1523, 0x05d94707, 0x15232525, 0x83231533, 0x740520ce, 0x1d8c0510, 0x1a2b2c08, 0x24011a36,
0x0720161b, 0x6b0c093d, 0x20151c24, 0x0c093c07, 0x20402001, 0x23244723, 0x47242348, 0x6b000123, 0x351b6b6b, 0x8800ff1b, 0x2d088812, 0x06150c80,
0x17241cae, 0x090c0113, 0x08861515, 0x2107d427, 0x25032b02, 0x2f028203, 0xc0111901, 0x04152b2a, 0x1059091a, 0x0226021a, 0x2a200282, 0x00221988,
0x0082000d, 0x4f180120, 0xfb470b9b, 0x092b5f05, 0x214e3b20, 0x33352405, 0x82252335, 0x42152003, 0x17200a69, 0x13200b82, 0x07200382, 0x8306575e,
0x20038307, 0x82f68225, 0x163227f2, 0x0133011d, 0x00822b95, 0x82abfe21, 0x22028404, 0x822b2b55, 0x2a55220b, 0x2a08862a, 0x80012b2b, 0x6a2e3c01,
0x82241c6a, 0x2514821f, 0x802b802a, 0x0b822a2b, 0x795efe20, 0x2eea2e09, 0x242b013c, 0x00006a1c, 0xff000003, 0x22af82c0, 0x820400ab, 0x002928bb,
0x17073700, 0x45133337, 0x3436051f, 0x27071326, 0x23062735, 0x3f363235, 0x3b013e01, 0x17163201, 0x13820615, 0x17070629, 0x2060b533, 0x52552b4b,
0x6e3d05d1, 0x0a974040, 0x12361c0a, 0x0b12061e, 0x011b1401, 0x154c1301, 0x8b20861c, 0x014a2060, 0x062f4d56, 0x4056fe36, 0x02972040, 0x2113182f,
0x141c0808, 0x4c121c7b, 0x860d1131, 0x36065b51, 0x009601c0, 0x13000031, 0x16140622, 0x1d011e33, 0x17011e01, 0x8237013e, 0x4a34207a, 0x1525076a,
0x2622010e, 0x2588823d, 0x35232634, 0x0583013e, 0x23012e2f, 0x0c0c0955, 0x02241c09, 0x4e3b3b4e, 0x200b8302, 0x23048380, 0x0c120c01, 0x0b840783,
0x01202a23, 0x2a0f8295, 0xb61b2401, 0x01014e3b, 0x4c363b4e, 0x2b200567, 0x55201d83, 0x15202a83, 0x0b230483, 0x46002b1f, 0xab2a0833, 0x0a006b01,
0x1a001200, 0x95821f00, 0x92823520, 0x23151727, 0x07012e35, 0x20988235, 0x83078a23, 0x0255380e, 0x2b04bf91, 0x6d80a803, 0x032a0291, 0x60495b78,
0x48012b02, 0x82302537, 0x2b403dfc, 0x0291bf04, 0x52a77f02, 0x6d91022a, 0x2b53785b, 0x37496002, 0x30012948, 0x04000025, 0x2d08ff6c, 0x00070003,
0x001e0011, 0x21353700, 0x03822515, 0x4a5f2720, 0x03332207, 0x20f98221, 0x2e79822b, 0x27262223, 0xfe560155, 0x375601aa, 0x82011f17, 0x171f2207,
0x24628237, 0x4b14171f, 0x2e108289, 0x57414194, 0x20aa4040, 0x181d1d18, 0x82ebfe20, 0x40402304, 0xd2821820, 0x85061b4c, 0x13003bd3, 0x35330717,
0x17231133, 0x1eeb2707, 0xef2bc44d, 0x01801e4d, 0xd64d1e00, 0x098200ff, 0x350a474c, 0x2500000a, 0x23372707, 0x33153311, 0x95013727, 0xef4d1e80,
0x2382c42b, 0x01240882, 0x1e4dd600, 0x2b0adf53, 0x00310029, 0x01000035, 0x15231533, 0x53052645, 0x35230a1f, 0x53263411, 0x15210e1f, 0x82298305,
0x35253503, 0x6b011523, 0x090c6a6a, 0x1609362b, 0x0a150101, 0x0c092b35, 0x35270d82, 0x0101150a, 0x82360916, 0xc0fe2b0d, 0xeac0c0ea, 0x01408001,
0x2753d62b, 0x0d35530c, 0x802b2a26, 0x80802b2b, 0x2e08df49, 0x00960180, 0x0032002e, 0x06221300, 0x59161507, 0x22230571, 0x5b013d26, 0x1420052a,
0x1e2b1482, 0x3e331701, 0x2e353701, 0x83363401, 0x82272005, 0x03233d09, 0xeb230733, 0x01010c09, 0x0a0a200a, 0x1c130d20, 0x1e170123, 0x3c01171e,
0x3c2e2a2e, 0x25080a85, 0x0c012430, 0x0b363009, 0x0c950120, 0x010a8009, 0x13011301, 0x2c08520d, 0x1e01201e, 0x20011e2d, 0x01013c2d, 0x0c862d3c,
0x01302422, 0xcb21c483, 0x0a2f414b, 0x00023a08, 0x000f000c, 0x17070100, 0x37352705, 0x11173717, 0x37012f07, 0x666b0127, 0x39f9fe66, 0x55ba5b40,
0x275ca46a, 0x520b0127, 0xc025344e, 0x35ab4715, 0x9c2ab5fe, 0x0026250e, 0x21df8206, 0x83630100, 0x001c2205, 0x079d4b25, 0xd4821320, 0x17161428,
0x33163707, 0xd2823526, 0x2e333222, 0x2209205f, 0x70163233, 0x834805e0, 0x37322506, 0x013e2717, 0x7d5aeb82, 0x44cb3211, 0x1c1f015b, 0x221c3611,
0x3f540209, 0x50110606, 0x05c24f75, 0x06857320, 0x4836692f, 0x36480202, 0x0e2d1316, 0x48011e1a, 0x20158561, 0x2106855e, 0x1a826b01, 0x12331f2d,
0x140a2032, 0x01483716, 0x43352f26, 0x0585056a, 0x3c01352f, 0x013c2d2e, 0x0f281b05, 0x3c2e1b2e, 0x09441834, 0x84022010, 0x01eb21db, 0x2105675f,
0x93180100, 0x23220f8b, 0x93183335, 0xc0211189, 0x0db452c0, 0x80abfe23, 0x20008200, 0x085b430c, 0x0e00053b, 0x2d002400, 0x35003100, 0x42003900,
0x4a004600, 0x52004e00, 0x33010000, 0x25518215, 0x17372717, 0x09822315, 0xf1652720, 0x820d8208, 0x013e280f, 0x0717013b, 0x18010e13, 0x2109a959,
0x32843507, 0x22231524, 0x0a822726, 0x27153322, 0x25200f86, 0x03830782, 0x16150139, 0x2e762a40, 0x402b331b, 0x2a15152b, 0x2b2b152b, 0xab121801,
0x82691b32, 0x842b2006, 0x40802a00, 0x126b4095, 0x152b0118, 0x200f8340, 0x21048201, 0x2682d5fe, 0x2b002008, 0x1b2d2b56, 0x2b162a33, 0x2b2a2075,
0x162a2a2b, 0x32181216, 0x12cdfe1b, 0x55162a18, 0x822a5540, 0x12182100, 0xaa271882, 0x2a409640, 0x4b40ab40, 0x6b240947, 0x13000f00, 0x1e23cf82,
0x52111501, 0x352f0515, 0x37363411, 0x15213501, 0x18139501, 0x66fe1219, 0xfe22069c, 0xff6501d6, 0xfe01240f, 0x4ad5d5d5, 0xbf26082f, 0x08007f01,
0x4b821100, 0x2335072d, 0x23353315, 0x33150537, 0x82371707, 0xa001360a, 0x4d962b60, 0x4d97fe60, 0x2b601e60, 0x4d607e01, 0xb5602b96, 0x210c822b,
0x3f88964d, 0x8001c022, 0x3a833f85, 0x43832720, 0xbb703f20, 0x07332305, 0x2a824cd5, 0x60f52b26, 0x604c952b, 0x4c283583, 0x4c60d795, 0x00602b95,
0x28086c82, 0xeaff0000, 0x6201d601, 0x00000d00, 0x07010e25, 0x27012e23, 0x17372135, 0xd5013307, 0x80405401, 0x01015440, 0x56246521, 0x25098456,
0xa1404054, 0x37828b16, 0x36050b43, 0x002b01eb, 0x001c0004, 0x00260021, 0x0030002b, 0x26353700, 0x4d011d27, 0x1e27071b, 0x37363201, 0x55153335,
0x21210598, 0x29ca8225, 0x06350706, 0x35231507, 0x04822707, 0x15272626, 0x2b131795, 0x1d240082, 0x1d4c584c, 0x35080782, 0x01d6fe2b, 0x2d132a00,
0x15161614, 0x14161615, 0x0f0b4295, 0x2a2b555c, 0x1d191f96, 0x961f191d, 0x6c2b2b2a, 0x4d0f5c42, 0x2e04083a, 0x2c01012c, 0x3a08042e, 0xc3820300,
0x01fc2008, 0x008601c3, 0x002a0011, 0x01000044, 0x16011f16, 0x06010f14, 0x2726012f, 0x36013f36, 0x82220332, 0x8234200a, 0x85188209, 0x16172305,
0x01820706, 0x2f222724, 0x188a2602, 0x82160221, 0x3b188236, 0x56560d01, 0xb1020205, 0x06ac0d0d, 0xad060101, 0x05080f05, 0x0202b108, 0x720e0e22,
0x1e3a0284, 0x07040202, 0x07565502, 0x08040207, 0x210303af, 0x0d730e0e, 0x0e0d740d, 0x0082041e, 0x56573108, 0x83010403, 0x01032828, 0x06520206,
0x06015006, 0x02510105, 0x520478fe, 0x10010701, 0x06350706, 0x06063606, 0x0402010e, 0x27280205, 0x03016a04, 0x1784188d, 0x01022824, 0x2b670400,
0x09f36708, 0x45152121, 0x078806c1, 0x354b2120, 0x33352109, 0x17200b83, 0x0b98b918, 0x40000122, 0xff200086, 0x6b2b0988, 0x15161515, 0x166b0115,
0x832b2b2a, 0x87162002, 0x85d52008, 0x2176832a, 0xa3480006, 0x00962505, 0x000c0003, 0x27052978, 0x01000026, 0x17152335, 0x2107d862, 0xf6421713,
0x1333250a, 0x27231533, 0x37200382, 0x01230382, 0x5f95d540, 0x8621051e, 0x07064355, 0x2a2a802d, 0xab2b2b56, 0x15012b2b, 0x5fd55656, 0x01220607,
0xd7605554, 0x2b012407, 0x82fe1812, 0x2b2b2221, 0x2080822b, 0x287f820a, 0x01ab01d5, 0x000800ab, 0x227f8211, 0x452c0023, 0x50240673, 0x00005900,
0x086fa818, 0x35490320, 0x90072007, 0x87372008, 0x6c1a88a7, 0x1d640824, 0x21089108, 0xa8190001, 0x0b7a0c07, 0x20068606, 0x201b85ee, 0x86068c6e,
0x06e9691b, 0x2b200d86, 0x21067f49, 0x08868101, 0x078e7f20, 0x0f86ab20, 0x01200787, 0x2f870f86, 0x13750f8f, 0x00143e0c, 0x00260022, 0x13000030,
0x1107010e, 0x2133011e, 0x11373632, 0x012b012e, 0x35072715, 0x06374917, 0x23152328, 0x17363435, 0x11823315, 0x33071522, 0x372c0d82, 0x16107c23,
0x11190101, 0x19110001, 0x12316182, 0x6b363580, 0x010c0915, 0x0c151516, 0x402b1509, 0x2802832b, 0x18029501, 0x11aafe10, 0x62278219, 0xea2a065e,
0x55090c01, 0x09552b2b, 0x0083150c, 0x16164026, 0x03000040, 0x00239382, 0x1801eb01, 0x2209bbbb, 0x43353335, 0x153905de, 0x17371533, 0x01231133,
0x55565695, 0x555656d5, 0x6b2a2a2b, 0x55402a40, 0x22048355, 0x835601ab, 0x4202203a, 0x062508df, 0x00000a00, 0x213d8437, 0x3682010f, 0xd5d5eb22,
0x2b203282, 0x2c853184, 0x01222b8e, 0x62882315, 0x2c821520, 0x822b2a21, 0x855a87fa, 0x01ab232b, 0x57840080, 0x3523252b, 0x17231523, 0x35211507,
0x207e8701, 0x843385ab, 0x42ff20c3, 0x06240567, 0x11000d00, 0x33268582, 0x33353315, 0x34893727, 0xb78bab20, 0xcf892b20, 0x678e0020, 0x39843720,
0x82012f21, 0x82328467, 0x85d520b8, 0x0c0b60c7, 0x00032808, 0x1300000c, 0x37211121, 0x23373533, 0x17232707, 0xfeaa012b, 0x4520c556, 0x20353520,
0xfe950145, 0x825e6056, 0x4a826464, 0xd62a06a7, 0x03009601, 0x1b000f00, 0x9d832e00, 0x7a233521, 0x47650bbd, 0x0e03290b, 0x3e330701, 0x17163201,
0x37250885, 0x2aeb012e, 0x0c58652a, 0x2d0a9a5d, 0x01302448, 0x2418012a, 0x38040118, 0x03822a04, 0x40300125, 0x5d2a012b, 0x0134178d, 0x24300129,
0x12181812, 0x21301f1c, 0x30242525, 0x05000000, 0x002e0382, 0x80010002, 0x3d001e00, 0x4f004600, 0xd9825800, 0x23153326, 0x23010e15, 0x15208682,
0x2e230a82, 0x4a352701, 0x3e290586, 0x34013d01, 0x16322136, 0x06d14f1d, 0x82010e21, 0x2b062f09, 0x35333501, 0x2233013e, 0x23352726, 0x32490335,
0x87232007, 0x08444908, 0x822a6b21, 0x121225ae, 0x2a2a0118, 0x19280482, 0x12151512, 0x3c011919, 0x0a850482, 0x1f881220, 0xa1186b20, 0xb3200c38,
0x01230d85, 0x836a2b80, 0x2b6a252b, 0x55121504, 0x4d834182, 0x11835520, 0x22870c8a, 0x4900ff21, 0x0b850b40, 0x01000023, 0x30008200, 0x6b018001,
0x00000f00, 0x23271337, 0x17163335, 0x3ae48213, 0x07012f26, 0x1c125980, 0x7a050f2a, 0x060e2b1d, 0x0115454f, 0x012b2902, 0x82e3fe0d, 0xc8ba2104,
0x08203682, 0x20082b63, 0x2a3d8207, 0x0025001a, 0x0037002e, 0x41490040, 0x11200531, 0x01204582, 0x11204f82, 0x03220382, 0x0d821533, 0x35333525,
0x89173507, 0x3e90180a, 0x4a372011, 0xd85b085e, 0x552b3107, 0x01552b2b, 0x55552b80, 0x1615eb2b, 0x95151540, 0x6b200584, 0x2005ae44, 0x05084112,
0x0d8c7720, 0x2a95013f, 0x012aaafe, 0x56fe2a80, 0x6a40012a, 0x0b551616, 0x156ba016, 0x150a5515, 0x3724010b, 0x27028224, 0x19241815, 0xc0182419,
0x0a820d86, 0xd2821082, 0x82070021, 0x01fb32d3, 0x008001c7, 0x000d0006, 0x001b0014, 0x00290022, 0x28d18230, 0x06161401, 0x01032726, 0x29068232,
0x1e012535, 0x35260601, 0x0d831703, 0x84253121, 0x13352806, 0x0616011f, 0x8505012f, 0x013c2f06, 0x0d0d0468, 0x1701e601, 0x0d0d0301, 0x0785b4fe,
0x01c35c27, 0xfe090902, 0x280684bf, 0x01015935, 0xfe020205, 0x2c0785f2, 0xaffe8001, 0x040e0b01, 0xfe440101, 0x2e0783ff, 0x0100ffcc, 0x01030d0b,
0x08b44101, 0x82430309, 0x01022d04, 0x02511701, 0x01010502, 0x02025256, 0x00202982, 0x0808674e, 0x4b01eb20, 0x21001000, 0x57004400, 0x2e250000,
0x34363702, 0x013e2627, 0x14161716, 0x22270607, 0x108d012e, 0x35013e29, 0x0e272634, 0x83270701, 0x2e352219, 0x830b8301, 0x2206222c, 0x05e26927,
0x011e3723, 0x06404917, 0x071b5018, 0x04c20129, 0x1603020a, 0x82020316, 0x1b1b3c96, 0x09043505, 0x0e0e0403, 0x0c0b0304, 0x05131304, 0x0d161060,
0x0b07020b, 0x82050605, 0x2834399b, 0x160c2d1b, 0x0d090510, 0x1e2b0f05, 0x18e4161e, 0x2801011e, 0x2f24d51d, 0x5a080682, 0x283f0e1e, 0x01354432,
0x21060c06, 0x0c05224f, 0x29050308, 0x19072863, 0x16050c07, 0x0c061534, 0x1e050207, 0x21071e46, 0x0c101601, 0x130a0513, 0x0b020101, 0x270f0e07,
0x1c010134, 0x05100619, 0x0f050a0c, 0x011d2c1e, 0x1925066b, 0x0101271e, 0x2d20232f, 0x012e2605, 0x44003f01, 0x6b2708c3, 0x1a000e00, 0x51250000,
0xc38205ef, 0x23153322, 0x0ef44418, 0x5b01953a, 0x025a4444, 0xb6445a02, 0xa01d194c, 0x01014232, 0x42323242, 0xc0420202, 0x2308a85d, 0x5941182b,
0x4f0a3266, 0xef420b6b, 0x5e638308, 0x272006a3, 0x8205054e, 0x16322906, 0x07061415, 0x33013e15, 0x2e241282, 0x36343501, 0x8205c744, 0x07dd428f,
0x2008ea47, 0x31118717, 0x2e341501, 0x24151104, 0x01012437, 0x17131317, 0x0a820101, 0x0e131729, 0x242a1d2a, 0x84161104, 0x14182417, 0x42ba2c03,
0x092005f9, 0xcd200685, 0x95310685, 0x080f1f01, 0x241c141f, 0x20151c24, 0x2007b207, 0x320a8615, 0x010d0b71, 0x1f07101f, 0x24241b15, 0x0621161b,
0x44583c1a, 0x01210501, 0x063a4d2b, 0x0f852a20, 0x2d094f42, 0x008001c0, 0x00320029, 0x0044003b, 0xdc841300, 0x4a510720, 0x011e2b05, 0x22230614,
0x012e2726, 0xf4901527, 0x0320c888, 0x3720d187, 0x26087c68, 0x1217241c, 0x8226660c, 0x27868396, 0x42072115, 0x17131541, 0x5565ea8b, 0x20d58606,
0x24d585e2, 0x24018001, 0x24cf821b, 0x1301344e, 0x060f4116, 0x1d2c0422, 0x20224788, 0x52848807, 0xe844c286, 0x06786d07, 0x4b000021, 0x4b5305db,
0x000f2d07, 0x001b0017, 0x37000023, 0x03353315, 0x112c0382, 0x23353335, 0x03152335, 0x33152315, 0x05200f82, 0x37200b82, 0x2f06c669, 0xd5808040,
0x562aabab, 0x012b5555, 0x2b55d500, 0x552e0782, 0x00012a2a, 0xabfe2a2a, 0x802b2a2b, 0x05830001, 0x55201282, 0x00200782, 0x032e0082, 0xfbff0000,
0x8d01d501, 0x42002100, 0x65826300, 0x010e2108, 0x37012e27, 0x1737013e, 0x0607010e, 0x3736011e, 0x3f353736, 0x1e013e01, 0x26010e01, 0x37062327,
0x23820883, 0x16372725, 0x823e1617, 0x0f262512, 0x2e232701, 0x15242184, 0x36170706, 0x2306c643, 0x36270706, 0x0e2b2682, 0x1f161701, 0x16170701,
0x832e010e, 0x177f084c, 0x19df2637, 0x0d21234c, 0x16280e17, 0x091b0e01, 0x342d0910, 0x78020911, 0x1e1f0901, 0x1c1f1208, 0x8e045704, 0x3e0a302a,
0x0c261829, 0x1d21101b, 0x1d21072a, 0x37120f11, 0x01161205, 0x01162318, 0xb4142909, 0x484c1c0f, 0x0b030912, 0x0c0c0e1a, 0x0b133331, 0x41081309,
0x1e0a0802, 0x0f09111e, 0x10310e0d, 0x170e222b, 0x14234d19, 0x011f0115, 0x34180e0e, 0x0e180a20, 0x02011610, 0x8211080f, 0x0d103a64, 0x3d068415,
0x03043052, 0x1a101319, 0x37200305, 0x06020429, 0x17016609, 0x08628222, 0x0a0e112e, 0x2738064b, 0x261e2148, 0x0f132d17, 0x151a1f1b, 0x161a3116,
0x046b040b, 0x0a101f0f, 0x07081f1f, 0x000e5003, 0x00050000, 0x01c0ff00, 0x23070b67, 0x00190015, 0x50051368, 0x1e210670, 0x05117201, 0x904b0720,
0x82372006, 0x00012107, 0x3006c057, 0xfe026049, 0x226002aa, 0x2a562b2b, 0x2b2b552a, 0x07a05701, 0x3001d529, 0x242b2b24, 0x832ba930, 0x20638300,
0x055f6b00, 0x0c000826, 0x14001000, 0xd2196383, 0x52830871, 0x7007974f, 0xa0260813, 0x51ea5124, 0x0084c099, 0x28587520, 0x21803005, 0x1a30301a,
0x802b2b21, 0x162a802b, 0x821e2e1e, 0x00002202, 0x23bf8404, 0x00c001d6, 0x26057749, 0x25000015, 0x82273335, 0x5b1320af, 0x17200560, 0x2308b182,
0x33152337, 0x6e2e4001, 0xd5402e6e, 0x6a6ad66a, 0x80abd6d6, 0x6f809580, 0x2b01806f, 0xab8080d5, 0x002a5580, 0x220c3f7f, 0x4c310028, 0x002e0825,
0x17011e13, 0x3e353315, 0x14163201, 0x4a820706, 0x14011e2d, 0x27262206, 0x0e152335, 0x57262201, 0x2e2305f2, 0x82363401, 0x36322628, 0x23272634,
0x4c248227, 0x372b062c, 0x012e013d, 0x16140622, 0x4c013b17, 0x072a0547, 0x30248015, 0x30015601, 0x25413048, 0x8c088205, 0x01f92d0e, 0x18182418,
0x562a2b12, 0x1812ab56, 0xc24b0b82, 0x2b122205, 0x200d86d5, 0x065e4195, 0x4820388f, 0xfe215686, 0x222885ac, 0x862a5680, 0x8539874a, 0x21ea8258,
0x04840100, 0x6b01a639, 0x00000500, 0x07270725, 0xa6013727, 0x1e88881e, 0x871ec5a6, 0x83a61e87, 0x8402201e, 0x82c02023, 0x00072d23, 0x1300000b,
0x15331333, 0x37230323, 0x40320582, 0x83679782, 0x95eb6796, 0xfe6b0195, 0x2b012bd5, 0xf3612b2b, 0x006b2409, 0x410d0006, 0x7f410f87, 0x80402c0a,
0x01806e6e, 0x8080d62b, 0x860a0000, 0x18802063, 0x240ed345, 0x0023001f, 0x23738227, 0x05211121, 0x20426f82, 0x08284207, 0x2006244e, 0x26078627,
0xfe400140, 0x825501c0, 0x4c028686, 0x05850581, 0xfe800126, 0x6b2b15c0, 0xd5200186, 0x00202186, 0x44087182, 0x01faff00, 0x009001e8, 0x001b0005,
0x01000021, 0x36371527, 0x1e170526, 0x3f321701, 0x37013e01, 0x2e012f34, 0x0f222301, 0x25010e01, 0x012b012e, 0x1dca0117, 0xfe0d0734, 0x15056a4f,
0x9e08090c, 0x03010d0c, 0x370a846b, 0x010d109d, 0x1218015f, 0x63014a1f, 0x107dc00c, 0x0cff4820, 0x4104010e, 0xff2a1c84, 0x41030e0d, 0x12401f08,
0xee83b219, 0x87000421, 0x84152077, 0x82252077, 0x256384e7, 0x011e011f, 0x79891633, 0x35173322, 0x17207e82, 0x2f279483, 0x03071301, 0x820809ef,
0x8d062067, 0x4a3e217c, 0x55207682, 0x11269582, 0x6a9e6adb, 0x69839001, 0x7c8d1120, 0x1287b224, 0x94832119, 0xff030725, 0x83014200, 0x90052083,
0x82292083, 0x16323485, 0x1516011f, 0x010f010e, 0x26222706, 0x3626012f, 0x5836013f, 0x37220539, 0x16821e17, 0x13072733, 0x07172737, 0x150cef27,
0x01036b05, 0x089e0c0d, 0x3d0a8209, 0x100d066a, 0x1f53089d, 0x2a011812, 0x070d111d, 0x6a9ebe34, 0x0944a09e, 0x0e900145, 0x2284ff0d, 0x01044135,
0x11ff0c0e, 0x0341081f, 0x91871219, 0x1020070c, 0x8242b77d, 0x34a4238e, 0x3b423355, 0x00962409, 0x6e1e000b, 0x05200db1, 0x2c06cf7f, 0x2e272637,
0x37342701, 0x01343526, 0x0529482b, 0x01614836, 0xf6fe6101, 0x6101201e, 0x39131548, 0x0123202b, 0x95010202, 0x1f870d82, 0x44195023, 0x2b0b8227,
0x11270e05, 0x0a09243c, 0x002e0c0c, 0x8308eb65, 0x0017226b, 0x206d8d2a, 0x05814907, 0x3e226982, 0x799e0701, 0x4d554820, 0x48372505, 0x8b480101,
0x2921849a, 0xd4471802, 0x91252009, 0x05ff4e90, 0x2205df6d, 0x8d24001e, 0x20fd928f, 0x06247925, 0x251b0341, 0x518b1e2d, 0x0a41321f, 0x8225201e,
0x321e2124, 0x240a0f41, 0x001d0017, 0x207f8b30, 0x08c74923, 0x37173223, 0x22778226, 0x92371707, 0x0a8f4191, 0xeb882a20, 0x220d0e2b, 0x338c6c1d,
0xfeaa511e, 0x181c4194, 0x0148372d, 0x36374801, 0x22030248, 0x838d210b, 0x4111202c, 0x00201120, 0x2f06b341, 0x6b010002, 0x22001200, 0x00003300,
0x17011e01, 0x2b05aa41, 0x27012e21, 0x3e37013e, 0x16060701, 0x332d1282, 0x15273715, 0x012e2722, 0x011f013f, 0x23118335, 0x26361707, 0x2d080f82,
0x00013523, 0x2a0c563b, 0x3c010138, 0x36ebfe2e, 0x40010149, 0x314a1531, 0x0d1a0417, 0x3c3c1423, 0x030e1016, 0x1d1f060a, 0x040d1016, 0x15821f0b,
0x13230e2d, 0x48016b01, 0x2b3b0438, 0x82013d2d, 0x332208d7, 0x2f270646, 0x1c461e79, 0x3c270f0d, 0x0e10263c, 0x1f2e1124, 0x0f01271e, 0x1f10250e,
0x0d1b471e, 0xaa82280f, 0x2a064f41, 0x008001c0, 0x00100009, 0x7f000017, 0x3b3806e7, 0x15331101, 0x26343533, 0x33150723, 0x013d3632, 0x1818136b,
0xab2a8013, 0x80280482, 0x80011813, 0xd6fe1318, 0xab200783, 0xd5200d82, 0x23561583, 0x2149830d, 0xe2823715, 0x352a3e82, 0x2f012e34, 0x07333701,
0x01821617, 0x40372b08, 0x070f4040, 0x11045601, 0x8b354b0b, 0x090b155f, 0x016d0207, 0x4a40b66b, 0x80011911, 0x22190195, 0x6037570c, 0x0d110d18,
0x6b436e0b, 0x803c0809, 0x12000e00, 0x22010000, 0x1406010f, 0x3733011f, 0x012f3436, 0x33071326, 0x11430135, 0x0c0cee0d, 0x0cbaa434, 0x170d680c,
0x8001952b, 0x220ded0d, 0x0dbb340e, 0x0d670d22, 0x2b2bc0fe, 0x2c084752, 0x009601d6, 0x00110008, 0x002f001d, 0x08774a00, 0x804a3320, 0x0b906907,
0x012e0323, 0x06d45e27, 0x3732332e, 0x010e1516, 0x0f0f0bc0, 0x750f0f16, 0x4b200685, 0x2f0efe6d, 0x103a2601, 0x19375a1d, 0x61020717, 0x0f170fc5,
0xd0200288, 0x2b0f5e50, 0x3b110909, 0x05302a27, 0x61481917, 0x220aa759, 0x4321000b, 0x162110df, 0x207a8517, 0x268c8207, 0x36343537, 0x821d1632,
0x080a4cfa, 0x0c59c218, 0x84413321, 0x3148247b, 0x8225164e, 0x553b217c, 0x8682a782, 0x220c5c71, 0x84012186, 0x01022576, 0x1628282f, 0x0b222082,
0xa8853016, 0x600dd74b, 0x1526053b, 0x33130000, 0x3f5b2315, 0x23272207, 0x05dd4615, 0x80403326, 0x80000180, 0x2b310082, 0x2aaa8080, 0x55800180,
0x55405640, 0xeb2b6bab, 0x0953422b, 0x9601d628, 0x0a000700, 0x45831600, 0x2723132a, 0x37230723, 0x15252733, 0x3a094a64, 0x33752bb5, 0x2f178517,
0x01336757, 0x402a400a, 0x2b012a40, 0x4040d5fe, 0x8364866b, 0x4040210c, 0x2308af57, 0x00960156, 0x01218d82, 0x8c431815, 0x35372309, 0x9c5f3523,
0x01290805, 0x56121855, 0x1d231812, 0x1d2b802b, 0xeb000123, 0x12181812, 0x082d1eeb, 0x182a2a18, 0x00002d08, 0xff000002, 0x01d601f0, 0x05d76aa1,
0x0ae52119, 0x010f3e08, 0x06070617, 0x37321614, 0x37173736, 0x0d118d01, 0x0c8a5a8a, 0xcd0e1d0c, 0x10110f8c, 0x0d221a0d, 0x8c0f1011, 0x890da001,
0x220d8a5a, 0xab0d1d0d, 0x110f0f8c, 0x0c1a220d, 0x8c0e1011, 0x08e35200, 0x9f826020, 0x14000823, 0x07b51800, 0x35032b09, 0x013e3723, 0x011f1632,
0x5e551523, 0x400e3b07, 0x1e150537, 0x40370416, 0x24189501, 0x18241919, 0xa28056fe, 0x0d10100d, 0x4b8680a2, 0xd62a4182, 0x0f006b01, 0x00001800,
0xd14a1513, 0x012e2805, 0x012e012b, 0x55333527, 0x210807ed, 0x353f0120, 0x75054001, 0x6a4e0630, 0x3025c002, 0x30304930, 0x43206b01, 0x2b65216d,
0x68032a2b, 0x7c62204b, 0x569f8806, 0x1a200553, 0x43875d82, 0x82220721, 0x11372cfb, 0x15333533, 0x37171133, 0x87232627, 0x083d33a5, 0x4c1f7206,
0x4c2b2a2b, 0x0807711f, 0x1801ab01, 0x02821824, 0x71066a2e, 0xf4fe4c1e, 0x0c019595, 0x06711e4c, 0x9622fb89, 0xf982ab01, 0xaf821d20, 0x17161422,
0x3e225086, 0x8d453501, 0x22b48806, 0x82272e6b, 0x2e272253, 0x053c662a, 0x26069f51, 0x482cab01, 0x82c7fe13, 0x13392955, 0x3c2e2c48, 0x2e3c0101,
0x002e7086, 0x00000200, 0x4b01eaff, 0x08009601, 0x5b411600, 0x5507200a, 0x152505eb, 0x35233523, 0x08396d3e, 0x12400e29, 0x56200118, 0x41180120,
0x6a27075d, 0x75121801, 0x1875a0a0, 0x22099f4b, 0x826b0140, 0x4127204b, 0x0e2c0b07, 0x1e171502, 0x36013f01, 0x36060706, 0x2f280682, 0x07232601,
0x2627010e, 0x26220b82, 0xc2682001, 0x16163f05, 0x02030645, 0x1f170302, 0x2e031219, 0x0103320d, 0x01020204, 0x02041b0c, 0x0103190d, 0xd0686b01,
0x05653c06, 0x05010631, 0x0f020105, 0x27565514, 0x0223090b, 0x01020702, 0x0c081008, 0x5e0b5e2f, 0xf02a05c3, 0x8601cc01, 0x11000a00, 0x85821700,
0x010f2223, 0x05c94417, 0x010f2408, 0x0537031f, 0x022f3707, 0x0a0d6701, 0x0a2d712d, 0x600a430a, 0x300437ad, 0xd6feac07, 0x31058f26, 0x84860104,
0x091a3017, 0xad460a44, 0x37033106, 0x278f50ad, 0x4432032e, 0xeb220643, 0xdb829601, 0x18001427, 0x32370000, 0x05867b36, 0x2906a251, 0x3e27012e,
0x15331301, 0x9e4cc023, 0x3f172605, 0x83090155, 0x24028209, 0xabc05401, 0x3b6b19ab, 0xc1fe2112, 0x08875318, 0x20205787, 0xf15a5798, 0x225f9408,
0x82402b40, 0x68639402, 0x0022050a, 0x00820002, 0x01f20123, 0x052d44a8, 0x41260121, 0x22080a15, 0x07171406, 0x32163733, 0x8b01013f, 0x797c0d12,
0x3d0c0c7c, 0x0d7fbf0d, 0x12794f0d, 0x7f0d220d, 0x8301a701, 0x220d2e15, 0x9d0d3c0e, 0x0d220e7f, 0x0d0c124f, 0x073b427f, 0x9601d637, 0x19000d00,
0x32010000, 0x14111516, 0x07212306, 0x33363411, 0x06c94f17, 0x2335332f, 0x12ab0135, 0xfe121818, 0x121855d5, 0x90931896, 0x8001240d, 0x85551812,
0x294f87bd, 0x009401cb, 0x0023001b, 0xde5e1300, 0x37362207, 0x21fe8223, 0x196b0623, 0x2e580805, 0x013e3501, 0x17371737, 0x27372707, 0x362a22ca,
0x2d3c0101, 0x370d3322, 0x270e30ab, 0x39abfe3a, 0x45011f1a, 0x4b12107f, 0x10134b4a, 0x053a3a01, 0x3c2d2b3b, 0x2a1d2301, 0x2a23332a, 0x2642182a,
0x1c6a593c, 0x812a820b, 0x00001c0b, 0x00000500, 0xeb01d5ff, 0x0b00ab01, 0x27247582, 0x47002b00, 0x045b7982, 0x82352005, 0x07352176, 0x0dd8ab18,
0x15052723, 0x828c8233, 0x821520d5, 0x1121231d, 0x2b833721, 0x84233521, 0x82058315, 0x200b8215, 0x241d8323, 0x1515c035, 0x26028240, 0x01011812,
0x69011218, 0x122305c3, 0x831655fe, 0x01952f14, 0x6b00ff00, 0x16165515, 0x16401555, 0x02821640, 0x84ab0121, 0x80162119, 0xbd5a2d82, 0x20358308,
0x2630832b, 0x00ff1515, 0x826a16eb, 0x162a2351, 0x06822a16, 0x47166a21, 0xbf830673, 0xcf5ab720, 0x13002308, 0x88841707, 0x82171521, 0x3533239a,
0xb382012e, 0x17011e22, 0x3521b282, 0x281a8717, 0x4c6d1e28, 0xd5562b95, 0x216a822b, 0x0482d5fe, 0x93808032, 0x80376e1f, 0x1eb6012b, 0x4c952b6d,
0x80802b1e, 0x5621b682, 0x360482d5, 0x1f49d52b, 0x37802b6d, 0x00000500, 0xda01e0ff, 0x15008301, 0x56001c00, 0xc1760569, 0x07062405, 0x51272606,
0x3e330864, 0x36273701, 0x2707011e, 0x011e3736, 0x012e010e, 0x8207013e, 0x2109830f, 0x11872536, 0x1b2b7308, 0x2b1b8501, 0x411d0405, 0x1d402120,
0x04021310, 0x160c122a, 0x21141a0b, 0x0955080c, 0x0c1213ac, 0x0c112722, 0x2a13f721, 0x2925081a, 0x9201071a, 0x291a0712, 0x2a1a0825, 0xfe1b6501,
0x032b1b7b, 0x031a0a03, 0x090b1b03, 0x20171223, 0x0e1f0c11, 0x392302bc, 0x04165515, 0x223b2a04, 0x233a2a06, 0x34170764, 0x3318102d, 0x2d09092d,
0x2d101833, 0xd75e1734, 0x001d320c, 0x13000021, 0x1e150622, 0x36321701, 0x2634013d, 0xe8211923, 0x1723390e, 0x55353315, 0xcd040c09, 0x0c0c099a,
0x0c242809, 0x472e2f0a, 0x04092f18, 0x75270d82, 0x0c8001ab, 0x19cd9a09, 0x2d08a627, 0x2e47182f, 0x240d092f, 0x400c0928, 0x6a822b2b, 0x4e020021,
0x1d2208cb, 0x6b9f2900, 0x52057e5d, 0x739705f2, 0x4040b525, 0x9b40402b, 0x21208377, 0x77880700, 0x11000d23, 0x05c35100, 0x25002125, 0x47250000,
0x232507da, 0x23152135, 0x0ac35125, 0x374f3720, 0x82272006, 0x95013307, 0x12d61218, 0x80012b18, 0x2bebfe2b, 0x2a2a6b2b, 0x00832b6a, 0x2b2b6b24,
0x7e762a6a, 0x40802305, 0x13879540, 0x43480782, 0x00002505, 0x7f01c001, 0x678b7182, 0x17373323, 0x30538a07, 0x492555eb, 0x122b2b64, 0x80121919,
0x7e169440, 0x2a3a8240, 0x00000400, 0x9601eaff, 0x18008001, 0x2307c355, 0x15331300, 0x15263582, 0x35233523, 0x09821733, 0x03204383, 0x952a0782,
0xaa402ad6, 0x2ad62a40, 0x0284802a, 0x2b80012d, 0x40808040, 0x95156b55, 0x416b1501, 0xd62d08df, 0x13009601, 0x00001f00, 0x37013e37, 0x08b34c33,
0x09821520, 0x82011e21, 0x081f495b, 0x4836eb24, 0x1e4e2a02, 0x48372808, 0xe1480101, 0x822a4040, 0x012b2302, 0x504d3748, 0x06c44c08, 0x18832920,
0xb3704020, 0x052f4e08, 0x35250027, 0x27071533, 0x229d8237, 0x49131707, 0x012a0a7a, 0x95c02a6b, 0x3e3a5655, 0x5184f76b, 0x563a712a, 0x2ac09555,
0x22016b8d, 0x88087a49, 0x8280204b, 0x001523fb, 0xf5880100, 0x03333527, 0x21153335, 0x21108311, 0x93859501, 0xfe2a2a26, 0x0180abab, 0x27052f45,
0x6a40d5fe, 0xc02b1501, 0x2009bf4b, 0x20439a96, 0x20438e11, 0x28828455, 0xab8096fe, 0xff2a5501, 0x0c234b00, 0x7b05054c, 0x07230afb, 0x82370717,
0x0cfc7b87, 0x6a6ab025, 0x4a2a2a80, 0x7e240cf9, 0xaaaa5555, 0x240c074c, 0x0017000b, 0x0fbf4f1a, 0x250c514f, 0x15013f15, 0x598c3533, 0x4d5c5b20,
0x6a0d220a, 0x20638d16, 0x0ac97928, 0x85aa5421, 0x056b6f70, 0x22052f4f, 0x4f12000f, 0x07200d2f, 0x3722b882, 0x618c2715, 0x2a2ab024, 0xba8d6aaa,
0xaaaaaa23, 0x5dba8255, 0xbb890a1b, 0x2516217f, 0x012f1517, 0xbbbe2315, 0x00000828, 0xab01eaff, 0xef529601, 0x002d240c, 0x60000031, 0x152307f8,
0x832b1533, 0x82372068, 0x2803836c, 0x3d262213, 0x33363401, 0x82018235, 0x16322f1b, 0x010e1517, 0x33150323, 0x2b2bd535, 0x00822b40, 0x03821520,
0xc02b2b28, 0x12181812, 0x42704016, 0x6b6b2306, 0x1d826b01, 0x2a2b1524, 0x0284402a, 0x1856fe2a, 0x1812d612, 0x16404016, 0x01230884, 0x47d6d600,
0x0b220bd3, 0x49410f00, 0x0c464111, 0x80809b22, 0x210c4441, 0x47428093, 0x0017220d, 0x41418e1b, 0xf6410b49, 0x8d08201b, 0x0bf44158, 0x82806921,
0x41002065, 0x6b2706a7, 0x0b009601, 0x45001400, 0x152b05cb, 0x011e1133, 0x11373632, 0x18033533, 0x88084aaf, 0x35233308, 0x01169533, 0x01304830,
0x0c0a8016, 0x0c0c130c, 0x06840921, 0x56560c33, 0xfe2a9501, 0x303024d5, 0x2a2b0124, 0x140bd6fe, 0x2002820b, 0x26228355, 0x406b0c13, 0x82000800,
0xab012500, 0x07008001, 0x2b08a144, 0x001f001b, 0x13000023, 0x11231521, 0x17200182, 0x200a4b45, 0x0e496307, 0x15014027, 0xc06b406a, 0x0605612b,
0x862b8021, 0x80012600, 0x0100ff40, 0x05ac4100, 0x852b1521, 0x0d2f5001, 0x17000b22, 0x4b496584, 0x465c850a, 0x0b8b0527, 0x2b2b6b26, 0x562b2b2a,
0x012d058a, 0x952bc080, 0x6bc02b95, 0x2aebeb2a, 0x8202826b, 0x003b0808, 0xff000004, 0x01e501c0, 0x001400a5, 0x0026001b, 0x0500002f, 0x011f0701,
0x14150607, 0x17331716, 0x16140706, 0x17373233, 0x3f352225, 0x37173301, 0x013f3632, 0x26343536, 0x4f132127, 0x4d080812, 0x1b36fee5, 0x051d2f5e,
0x1e9f1218, 0x12190111, 0xfe3d0c16, 0x130105d4, 0x0c422b32, 0x034c0613, 0xe1fe090c, 0x18181209, 0x25191924, 0x5e1bca01, 0x0b093563, 0x1d011812,
0x1812170c, 0x05c03d12, 0x2b2b2303, 0x058a0a0c, 0x010c0905, 0xf75dd5fe, 0x249b8309, 0x01d601ea, 0x97471896, 0x13002108, 0x1125e882, 0x35233523,
0x20038533, 0x0a5b4125, 0x2baa2b3b, 0x8055552b, 0x0001aa80, 0x6a6a4040, 0x5501aaaa, 0x5556fe40, 0x2a402b40, 0x20028240, 0x0a5b462b, 0x05275383,
0x11000b00, 0x82001700, 0x21112a53, 0x07252115, 0x33372723, 0x20058437, 0x33058417, 0x80012a2b, 0x000156fe, 0x2b2b572b, 0x562b2c57, 0xc4562b2b,
0x012c0584, 0x2a80fe95, 0x4a4b4ba0, 0x4b4a4a60, 0x4b200782, 0x260ce344, 0x00090005, 0x8715000d, 0x82132057, 0x821720a1, 0x21032403, 0x82352315,
0x2c558503, 0x56d6d66a, 0x016bd5d5, 0x00ff2a55, 0x824f842b, 0x402b22b4, 0x415f8301, 0xd6340693, 0x0e00ab01, 0x45003c00, 0x00004e00, 0x21172705,
0x1135012e, 0x2a051c7a, 0x010e0715, 0x33013e15, 0x82010e27, 0x1e172709, 0x2e013f01, 0x085c2701, 0x26128205, 0x37361617, 0x82272636, 0x32072512,
0x26341716, 0xae590582, 0x08e36005, 0xd5014d08, 0xedfe0e70, 0x171e1e17, 0x1e174001, 0x12352cd5, 0x1b040228, 0x0a1a0128, 0x02301901, 0x0117140f,
0x2c2c3501, 0x17010135, 0x30020f14, 0x1a0a0119, 0x041b2801, 0x35122802, 0x0e0e0b58, 0x640e0e16, 0x150f0f0a, 0x6b400e0e, 0x161e012b, 0x33084383,
0x171e0101, 0x02150246, 0x0204100f, 0x523b0216, 0x020a1c01, 0x01160613, 0x02021801, 0x16010118, 0x0a021306, 0x3b52011c, 0x04021602, 0x15020f10,
0x1016104f, 0x00210288, 0xc7451800, 0x000d270a, 0x01000029, 0xbd182223, 0x072b0aa7, 0x33272622, 0x3e33011e, 0x83263401, 0x23172318, 0xfe821735,
0x0e24f082, 0xab2b0101, 0x080a4f4b, 0x3421ab3a, 0x200a250d, 0x2a2a2013, 0x0a221620, 0x0f1b5522, 0x3d2d1d2e, 0x013d0101, 0xfe121895, 0x181812aa,
0xd5000112, 0x110f1d23, 0x2b3f2a01, 0x55221216, 0x011a171c, 0x3c2e2d3c, 0x00207482, 0x012e0082, 0x00560157, 0x25000019, 0x23010e17, 0xb470012e,
0x27072106, 0x31087884, 0x37331614, 0x094a0136, 0x46192409, 0x3f540148, 0x0d082318, 0x25110d16, 0x292e0130, 0x346b0e1c, 0x51010804, 0x0850493f,
0x03073504, 0x322b302f, 0xbf430302, 0x00022108, 0x25255784, 0x00003100, 0x205b9837, 0x05c34537, 0x23152324, 0x0b8b2335, 0x7285e020, 0x83530221,
0x170c2572, 0x3125110c, 0x1d247282, 0x2b2a150d, 0x2a220082, 0x07822b95, 0x932b2a21, 0x2b6e2180, 0x05831b85, 0x90848c82, 0x82fc0121, 0x05ff428b,
0xf7420020, 0x07173a05, 0x37273727, 0x07173705, 0x94010717, 0x4a4a944a, 0x2556b194, 0xfe254a4a, 0x20068460, 0x05aa78c0, 0x15808025, 0x82159595,
0x01002105, 0x00354b82, 0x4001d601, 0x00000300, 0x13210301, 0xfe8ad501, 0x40018ae0, 0x821a85ff, 0xd5ff2e15, 0x6b010002, 0x0f000b00, 0x00002200,
0x0ac94825, 0x21352725, 0x63210515, 0x112e06b6, 0x2137013e, 0x011d011e, 0x40c00123, 0x02822b40, 0xabfe2b28, 0xabfe5501, 0xd841ebeb, 0x12552306,
0x18842b19, 0x2b954026, 0x2b80552b, 0x200a3c4d, 0x08868495, 0xff000020, 0x01ac01df, 0x0023009b, 0x010e3700, 0x37361617, 0x3f362635, 0x17163601,
0x07061415, 0x11830622, 0x26341127, 0x0626010f, 0x08118207, 0x4411a72c, 0x06651005, 0xa50b0301, 0x04010c01, 0x0144110b, 0x0607690c, 0x1001c812,
0x01540501, 0x1130281b, 0x0d01d13a, 0x02012203, 0x0782930a, 0x31281831, 0x34013a0b, 0x29031102, 0xf20d0901, 0x55001001, 0x2b2008c3, 0x2e06a747,
0x35172500, 0x1735020f, 0x2315013b, 0x83804001, 0x56152700, 0xd6409556, 0x03835640, 0x84050021, 0x01c022a8, 0x282f86ab, 0x00270023, 0x15233700,
0x23038933, 0x23152335, 0x22230383, 0x77111506, 0x21230a8d, 0x82c02135, 0x2a2a2af6, 0x2a2b2b56, 0x2baa2b15, 0x89521815, 0xfe122608, 0xeb2a01d6,
0x8200832b, 0x2b2b2222, 0x77108219, 0x1224051f, 0xeaabfe19, 0x02207283, 0x2008fb4b, 0x26718319, 0x07013713, 0x82070627, 0x012e2a68, 0x011e3327,
0x37363217, 0x250a8227, 0x35013f34, 0xfc701533, 0x22273c05, 0x1b402707, 0x4e1b6501, 0x21402215, 0x012b0129, 0x1e121b24, 0x3f234009, 0x87490202,
0x0a0c2210, 0x36218221, 0x4e1b9bfe, 0x2f2f0916, 0x121d2c08, 0x0a0d0118, 0x2b220740, 0x87430707, 0x21032410, 0x7d000400, 0x962b053f, 0x13000800,
0x28001c00, 0x55010000, 0x222408fa, 0x011e0706, 0x0dea4518, 0x11273108, 0x23131533, 0x3e272637, 0x55013701, 0x130c0c09, 0x2c0a0b0b, 0x44101044,
0x0f0f4459, 0x1e172d44, 0x1e1e2d1e, 0x559540ff, 0x0c0d1618, 0x55011a27, 0x24052361, 0x26262f40, 0x2003832f, 0x05f95d20, 0x00ff202c, 0x360001c0,
0x2b1c1e17, 0x0082000e, 0x87820120, 0x01f82908, 0x008001c6, 0x2500000d, 0x2707012e, 0x1e061707, 0x3e373601, 0x1ab00101, 0x20b02660, 0x37470cb1,
0x0a19152a, 0x0c451b7c, 0x26270d82, 0x180e345c, 0x63002f17, 0xd62a08cb, 0x0f008001, 0x1d001500, 0x41182300, 0x332413a3, 0x13352335, 0x2705b460,
0x11331723, 0x55231523, 0x2c09af7f, 0x1b561218, 0x4a1b8030, 0x3b56951b, 0x0dcf6e1b, 0xd6fe2b24, 0x0383aa80, 0x0180aa24, 0x5752aa2a, 0x0031270a,
0x00430038, 0x89603700, 0x183e2007, 0x250da674, 0x36342622, 0x73183e33, 0x07300f27, 0x37171614, 0x07330733, 0x14172337, 0x27262206, 0x1e233582,
0x18086001, 0x2612986f, 0x0c092530, 0x1812090c, 0x350d1f73, 0x6b0f1101, 0x502b2b40, 0x1be03610, 0x03011b29, 0x2a03032a, 0x6f18059e, 0x48221080,
0x72180130, 0x1c321064, 0x37081d12, 0x236a9555, 0x151c1c15, 0x03033b1b, 0x0082003b, 0x00000336, 0xeb01fdff, 0x0a009601, 0x64003500, 0x0e250000,
0x35262201, 0x25259684, 0x013f3626, 0x18c78227, 0x8420956e, 0xa47518c7, 0x22fd950b, 0x82161714, 0x2e2725f4, 0x018b0101, 0xbd84be82, 0x02cdfe37,
0x23300909, 0x07120d07, 0x10020d23, 0x0d020812, 0x04100930, 0x29138208, 0x06120d06, 0x0f030d23, 0x13830912, 0x01430f22, 0x0ce07518, 0x27121d41,
0x110d0612, 0x32110f06, 0x0135e188, 0x0d020f09, 0x0d120723, 0x09302307, 0x090f0509, 0x09030c30, 0x24138612, 0x0a302406, 0x2d138308, 0x9009020d,
0x26013c2e, 0x3748012f, 0x3b413001, 0x12382713, 0x060c1106, 0x4818260f, 0x96280913, 0x1a000b00, 0x2c002300, 0x14814918, 0x34012e24, 0xd847023e,
0x5617200a, 0x8f4b0762, 0x4e5b200c, 0x8d6105af, 0x05555506, 0x06850e20, 0x230ca74b, 0x49600228, 0x01242a82, 0x02304930, 0x35230382, 0x82121b12,
0x7eaa2002, 0xc3430831, 0x01c03705, 0x001400ab, 0x001c0017, 0x0100001f, 0x23153315, 0x012f2313, 0x0682010f, 0x33354808, 0x25352335, 0x3f010f15,
0x17072301, 0x07271737, 0x08156b01, 0x880c2c48, 0x482c0c88, 0x01151508, 0x4e14e500, 0x5a0e9877, 0x3a141f5a, 0x2a566b01, 0x4e2feafe, 0x16012f4e,
0x2b15562a, 0x2e4fdf40, 0x34343480, 0x85214f7a, 0x01d521ff, 0x15266b83, 0x1d001800, 0x6b942000, 0x9a173721, 0x8080216c, 0x2b216c9a, 0x4c6d8b15,
0x13200d9f, 0x10ef4a18, 0x23272330, 0x33152307, 0x36323307, 0x1523013d, 0x5f411614, 0x36c62c0c, 0x36154015, 0x0980abd6, 0x410caa0c, 0x682a0c51,
0xc02b1515, 0x9696090c, 0x8d180c09, 0xab340863, 0x0d009601, 0x33002500, 0x41003900, 0x4f004900, 0x33130000, 0x32085282, 0x07171617, 0x012e2726,
0x15332527, 0x011d070e, 0x073e3523, 0x17160735, 0x1517011e, 0x26343523, 0x012f2627, 0x23071533, 0x06331727, 0x2723010f, 0x82331726, 0x36232432,
0x83330737, 0x2b553620, 0x281d1315, 0x181a2127, 0x2b01011d, 0x2f1d012b, 0x27333936, 0x20088815, 0x84198446, 0xd67e2d24, 0x0f02d202, 0x0b0c07b8,
0x170c0a7d, 0x07200382, 0x203c0b82, 0x01d602d2, 0x27172a95, 0x191a1a13, 0x37161a15, 0x222a2a22, 0x24262c37, 0x17272623, 0xb8200a8a, 0x28841b86,
0x0b15e633, 0x0c0b2b0b, 0xd50c0909, 0x0b0b0c09, 0x150b370c, 0x09375f15, 0x09006b2b, 0x22001300, 0x21370000, 0x06af7215, 0x83211321, 0x352123ce,
0xb582013e, 0x3233372e, 0x23061416, 0x34262221, 0xaa012b36, 0x30059749, 0x24000155, 0x56fe0130, 0xeb073001, 0x12162a2b, 0x22168518, 0x482b6b18,
0x2b2d0605, 0x2a253001, 0x9530252a, 0x25182a2a, 0x22028218, 0x82000400, 0xd8012300, 0xfd737601, 0x25003208, 0x27373523, 0x34353607, 0x14062226,
0x23350717, 0x270c8915, 0x23153717, 0x1507010e, 0x20088982, 0x37013e21, 0x05012e35, 0x33231533, 0x33153335, 0x01333523, 0x05c36b80, 0x1c120275,
0x2a120712, 0x2307840d, 0x6bbe057f, 0x3a0cab55, 0x3030eefe, 0x30506050, 0x2133eb30, 0x0505131f, 0x1912120e, 0x1e160209, 0x82060502, 0x081a290a,
0x2c202015, 0x80121801, 0x06823485, 0x82552a21, 0x0af75300, 0x19000923, 0x28a38200, 0x2622010e, 0x21352327, 0x735a1835, 0x5595290f, 0x24362401,
0x2a015501, 0x2807d273, 0x80191912, 0x1b24241b, 0x0cdc47d5, 0xfb860020, 0x7c01c021, 0x0f210773, 0x57581800, 0x2b80281f, 0x2b802a80, 0x862a2a55,
0x0196213b, 0x25095363, 0x33111300, 0x03822311, 0x03833320, 0xc0200882, 0x01202c87, 0x0c9b5818, 0x4880fe21, 0xff200653, 0x2205a343, 0x6e14000a,
0x072608c9, 0x13331533, 0x5c531517, 0xeb353905, 0x802b402a, 0x15402b80, 0x546a02c0, 0xab026a54, 0x6b6b6a40, 0x5640016a, 0x090afa18, 0x270a6352,
0x001a0011, 0x25000028, 0x101cc218, 0x2622252a, 0x16323634, 0x07170614, 0x83072846, 0xc901210e, 0x0c2cc218, 0x0da0fe33, 0x121b1212, 0x5b5bed12,
0x0f2e1e0f, 0x2d0f100f, 0x2b21821e, 0x12961218, 0x0c0cc00c, 0x6e240c96, 0x2005d344, 0x242082b1, 0x100f1e2e, 0x2e268210, 0x00040000, 0x01eaff00,
0x009601c0, 0x821f0016, 0x002b237f, 0xbe820100, 0x72161421, 0x3e220bd9, 0x6a773501, 0x17073313, 0x52000123, 0x282d026c, 0x2b2a2b2b, 0x022d282b,
0xe24ea76c, 0x12bc3305, 0x18241919, 0x40204318, 0x6c029501, 0x1b533152, 0x0082404b, 0x541b4b26, 0xbe6c5230, 0x8505835c, 0x40402105, 0x83827082,
0x0002c02f, 0x0300c001, 0x21110000, 0x00022111, 0x210d82fe, 0x008200fe, 0x1b820520, 0xd601ea24, 0x1b829901, 0x13000722, 0x2927a382, 0x27130000,
0x82251707, 0x0f375f03, 0x5a013e21, 0x27330578, 0x33150733, 0x35372335, 0x621ba823, 0x628f011b, 0x18ba621b, 0x2007c69c, 0x188f8202, 0x220a8c6f,
0x834d4d80, 0x78012402, 0x82205220, 0x46532402, 0x85516d02, 0x6d51342a, 0x5402acfe, 0x02543f40, 0x403f5402, 0x2759be54, 0x41265a2b, 0x23080a2f,
0x00210004, 0x0033002a, 0x33150100, 0x3e13012e, 0x27213501, 0x17331523, 0x010e1716, 0x33011e15, 0x33373632, 0x35240684, 0x012e0526, 0x8706c141,
0x01270808, 0x6002ab15, 0xfe13113e, 0x2f4a14c9, 0x12061215, 0x202a0115, 0x2d04291c, 0x1f1d2904, 0xf7fe012b, 0x1b12120e, 0x85b31212, 0x95013b06,
0xfe6148aa, 0x1d3516d9, 0x272c2b2b, 0x16220a0b, 0x1c242b1f, 0x1f2b241c, 0xa1464323, 0x46012006, 0x002008a9, 0x2b0a6b43, 0x00290011, 0x15211300,
0x11070622, 0x2405e756, 0x012e1135, 0x05485623, 0x2b0e9251, 0x40113315, 0x18128001, 0xd6121801, 0x55230584, 0x82406b6b, 0x33058300, 0x2b8001d6,
0x00ff1218, 0x12191912, 0x18120001, 0x1515162a, 0x40210285, 0x064b4301, 0x0100022b, 0x00260096, 0x002e002a, 0x38738232, 0x1632013e, 0x32161417,
0x33013d36, 0x22010e15, 0x012e3526, 0x33150622, 0x0aee5215, 0x21353722, 0x48088382, 0x15333527, 0x07173717, 0x3b2701f0, 0x0e090127, 0x1b012009,
0x15011b29, 0x2f1b1520, 0x5401013a, 0x01544040, 0x012f3a01, 0x402b2b00, 0x101e1316, 0x1d40011f, 0x071d2828, 0x10070909, 0x1b1b1410, 0x15151014,
0x4d0e1c10, 0x05a94134, 0x0e4d342c, 0x2a40151c, 0x0f1e082a, 0x2344001f, 0x00ab2809, 0x001b0017, 0x82380034, 0x2315219b, 0x300d5e4c, 0x2335012b,
0x07352315, 0x37211521, 0x15170622, 0x05ac4133, 0x010e0722, 0x372a0a83, 0x3435013e, 0x33150726, 0x754c8035, 0x2b15220a, 0x37fa82aa, 0x1c99d6fe,
0x0c290122, 0x080a0c12, 0x062a0c11, 0x22130e08, 0xab012a37, 0x3a0ca844, 0x962b2b2b, 0x1919d5ea, 0x0d0a0a01, 0x0b050e14, 0x0c0a1012, 0x10190705,
0x59951d18, 0x04200513, 0x0022a782, 0xc744eb01, 0x00172206, 0x23a3821c, 0x13231133, 0x01200382, 0x370a1d45, 0x012e1137, 0x37173703, 0x2b2b1517,
0x012a2a56, 0x0900ff6a, 0x01090c0c, 0x012d0582, 0x35f30c01, 0x01443626, 0x01d6fe55, 0x2103832a, 0x1d89090c, 0x4400ff25, 0x185a442e, 0x21096fdc,
0xf74e0078, 0x07132806, 0x3f273717, 0x82170701, 0x05b76407, 0x62628d26, 0x5e44441e, 0x1e290382, 0x4ead6262, 0x01cb6c1e, 0x20128477, 0x2512841e,
0x1e4fad4c, 0xae83cb6d, 0x04830320, 0x6b26b382, 0x17000b00, 0xa1492400, 0x3e13220d, 0x20891801, 0x1e272e08, 0x2e151701, 0x37363401, 0x01010e15,
0x08bd6e40, 0x18600221, 0x2b0b2255, 0x262e01ca, 0x38474738, 0x6b012e26, 0x84058949, 0xd7fe2105, 0x2c0ae06e, 0x0e412a7f, 0x7a590f2c, 0x0e2c0f59,
0x377e8341, 0xff000004, 0x010002bf, 0x000a00c1, 0x001e0015, 0x1700002f, 0x2327012e, 0x32247182, 0x22132737, 0x0a82d582, 0x012e3336, 0x34353303,
0x15012b26, 0x23110733, 0x33152315, 0x3b161415, 0x352e0d82, 0x359f3533, 0x0a200644, 0x0707678e, 0x03824551, 0x0e851d20, 0x192b1328, 0xaa808012,
0x07822b2b, 0x0b200582, 0x07940519, 0x01ae0124, 0x0c841d51, 0x80d7fe2d, 0xaa2b1813, 0x2b2b0001, 0x821912aa, 0x208f8328, 0x24048306, 0x8001d601,
0x05095500, 0x2b002722, 0x01269383, 0x2e352335, 0xc9412301, 0x5379820b, 0x072105be, 0x05bb6921, 0x83076b5a, 0xd5013107, 0x1218012a, 0x1812d5fe,
0x2b011218, 0x2a011812, 0x2b2c0082, 0x2b01d5fe, 0x6b6b00ff, 0x80555580, 0x7b820584, 0x19122a22, 0x2e07ee4e, 0x2a2b2b2a, 0x2a01d52b, 0x40d656aa,
0x46156b40, 0x3b5408a3, 0x10b75605, 0x7e821720, 0x220cc749, 0x49d6d610, 0xe8240cbd, 0x0300002a, 0x2008b74e, 0x26d1840d, 0x23152500, 0x82013e17,
0x222726cc, 0x27170706, 0x05e94407, 0x36321739, 0x25371737, 0x01173335, 0x12631f6b, 0x5b780214, 0x9a1a3d22, 0x873c1bf1, 0x1c3b340b, 0x2b1fc5fe,
0x1a642ad5, 0x785b223d, 0x9a121402, 0x873b1cbb, 0x1b3c220b, 0x088f47bb, 0x6b01ab22, 0x44087582, 0x0013000f, 0x01000017, 0x11213521, 0x33352115,
0x21352327, 0x27072315, 0x17233533, 0x01233733, 0x01aafeab, 0x47aafe56, 0x2a011b16, 0xd6cf161b, 0x176e34d6, 0x2b40019c, 0x2b2bd5fe, 0x55808055,
0x55ab2b80, 0x0a3b4600, 0x2405935a, 0x002f0023, 0x0d7b5736, 0x210bd175, 0xcf820713, 0x82170721, 0x372722c9, 0x20058407, 0x82118527, 0x2e3322ea,
0x0b2c4101, 0x425a7921, 0x10220ac5, 0x00841716, 0xc9200683, 0x70260b8a, 0xda0d3a26, 0x54413a0d, 0x18fe200c, 0x250b505b, 0x16160301, 0x31841716,
0x44171622, 0x0c824382, 0x42241184, 0x29212129, 0x1d23bf91, 0x69002300, 0xbf8b0e87, 0xba842720, 0x2728c082, 0x32011f07, 0x1e233736, 0x3421b399,
0x27778217, 0x1717862d, 0x59172d2e, 0xd520a79f, 0x17239a82, 0x83172d2d, 0x848a2003, 0x0002219a, 0x2b080082, 0x6b01d601, 0x1b001100, 0x23010000,
0x010e2327, 0x16141115, 0x013e2117, 0x2634013d, 0x37072707, 0x1f013f27, 0xab010701, 0x12802bab, 0x07bc6318, 0x3f3f3e2f, 0x1d483711, 0x0137481d,
0x18012b40, 0x07d05f12, 0x1912d52c, 0x472525eb, 0x43430630, 0xbf463006, 0x8b280807, 0x02008001, 0x00000a00, 0x2717013f, 0x33373303, 0xcd033317,
0x76483333, 0x18861830, 0x87c07630, 0xd5fec087, 0x2b014040, 0x002a2582, 0x7401e9ff, 0x2b009601, 0x8f823900, 0x22232624, 0xfa680706, 0x15162a08,
0x0623010e, 0x33163727, 0x07125632, 0x013e8308, 0x3e272637, 0x17323301, 0x36171607, 0x27263435, 0x010e2726, 0x4e011614, 0x211a251f, 0x20260101,
0x01013429, 0x02151114, 0x292f2a41, 0x1c29220e, 0x20010123, 0x01352d27, 0x14121701, 0x2d3b0101, 0x2268252a, 0x1c18161f, 0x0e0c2323, 0x1262011c,
0x18151417, 0x26280c0a, 0x150c2415, 0x01292d1d, 0x18172019, 0x0d1b1317, 0x1524280f, 0x1d130a24, 0xe0132b26, 0x1b11110b, 0x0c0a1c10, 0x1e180711,
0x0082001b, 0xad82db82, 0x4a01c021, 0x13230983, 0x44002300, 0x472b0535, 0x33130000, 0x33012b15, 0x86372315, 0x82272003, 0x44252007, 0x35280a45,
0x03263411, 0x17333523, 0x37200386, 0x53052767, 0x35200641, 0x28056e61, 0xeb213523, 0x2b2b2a2a, 0x05f76d2b, 0x2b2bab25, 0x18fe0001, 0x2108536c,
0x5553e719, 0x832a2008, 0x82288225, 0x2a012407, 0x822b0001, 0x20328307, 0x0c4f53ab, 0x4882c020, 0x6a2b2b22, 0x08842682, 0x442a2b21, 0xc7820767,
0x9401d431, 0x13000800, 0x35370000, 0x35331533, 0x70150727, 0x1533065d, 0xc0233523, 0x80804080, 0x9628d380, 0x2b28962a, 0x82ac8080, 0x68012602,
0x8080c0d3, 0x081b4ec0, 0x5f053363, 0xfd460c9b, 0x21372305, 0xeb833632, 0xf1580120, 0x20f38508, 0x2d0f8637, 0xaafeab01, 0x01551812, 0x1818122b,
0x9885eefe, 0x6b6b9524, 0x0082ab40, 0x18950126, 0x5580fe12, 0x2305b548, 0x152b00ff, 0xab200182, 0x1b480584, 0xc5ff3805, 0x9c01d601, 0x0b000700,
0x20000e00, 0x07130000, 0x33371117, 0x82253717, 0x3527255b, 0x17212517, 0x2322cc82, 0xf8443317, 0x34112b05, 0x2b1b1b26, 0x1b7ac055, 0x6783d6fe,
0xfe000137, 0xa9ab7eac, 0x95699415, 0x01181712, 0xfe2b1b9b, 0x1b7a5596, 0x236082b4, 0x297ec02b, 0x95210682, 0x05e46201, 0x53660020, 0x08e38305,
0x2d001727, 0x23250000, 0x012e2335, 0x16373634, 0x32013e17, 0x37361716, 0x0614011e, 0x35072307, 0x15213523, 0x1e171523, 0x1d4c1801, 0x30248207,
0x60572c01, 0x1f2b2b1f, 0x2d071622, 0x16072d3e, 0x3f0c8322, 0x016a575f, 0x097f692a, 0xfe0e120c, 0x0c120ec0, 0x0115c009, 0x012a402a, 0x251e1801,
0x01181e25, 0x7e320c84, 0x192a2a19, 0x0a10042e, 0x0e12120e, 0x0004100a, 0x00820001, 0x01800127, 0x00130080, 0x05f74800, 0x0e15233d, 0x17150701,
0x37353315, 0x01012e35, 0x2a562a55, 0x4b011911, 0x19014b6a, 0x82552b01, 0x19012a00, 0x404b7511, 0x11754b40, 0x22c78419, 0x82ab01e9, 0x000f263f,
0x13000020, 0x83c08315, 0x35272937, 0x35231523, 0x17070607, 0x34084a84, 0x011f1636, 0x27263736, 0x036262ab, 0x1d01030b, 0x8f562a0d, 0x4b550d0e,
0x0407046a, 0xb40c104a, 0x448001b0, 0x09046062, 0x13127706, 0x55555205, 0x560d0e15, 0x2864826f, 0x4d020a03, 0xb2b20e0e, 0x21008200, 0x00820002,
0x01960127, 0x0003006b, 0x236b830a, 0x33053521, 0x3332a682, 0x2a016b27, 0x8055d6fe, 0x6b019555, 0x80d62b2b, 0x33609680, 0x001d220a, 0x05e54523,
0x011f2324, 0x124c2337, 0x22072507, 0x1e072726, 0x8206f176, 0x372d08ed, 0x15013527, 0x40026d51, 0x40560253, 0x403f5402, 0x54020254, 0x14361f40,
0x28451a1e, 0x02026c52, 0x105b676c, 0x0280014b, 0x0353526c, 0x08304c56, 0x1f151724, 0x13821e1a, 0x696c5227, 0x2d1a376a, 0x2c99825a, 0x01eaff00,
0x009601eb, 0x00390030, 0x2b798242, 0x14171632, 0x33150706, 0x3317011e, 0x15230b82, 0x412b010e, 0x3d2207cb, 0x86822301, 0x013e3524, 0x9782013b,
0x2e353323, 0x730b8201, 0x34210604, 0x08317f26, 0x12000132, 0x0a0c0118, 0x02543f16, 0x010c0915, 0x15090c01, 0x87058543, 0x25af820d, 0x010c0a16,
0x56674e18, 0x85a92005, 0x95012706, 0x140c1218, 0xc7821b05, 0x40090c2a, 0x12160c09, 0x16121818, 0xdd820a84, 0x14051b27, 0xea18120c, 0x29501801,
0x0727600e, 0xc982b020, 0x22000734, 0x07130000, 0x37233717, 0x2e250717, 0x07352301, 0xc2823517, 0x82141621, 0x222323a3, 0x42450727, 0x34250805,
0x8a8b8b9d, 0x4e4e4ed8, 0x461c0001, 0x1d5a5a26, 0x2c2c1637, 0x1f1d3716, 0x312b201d, 0x381c4626, 0x8a8a3701, 0x351f828a, 0x451c1dd3, 0x16455a5b,
0x2e772e16, 0x1f0d1616, 0x3b1c1c18, 0x37580099, 0x00562c09, 0x00160012, 0x3700001a, 0x7c051725, 0xd21805ac, 0x052308a7, 0x83233533, 0x015a2703,
0xd4fe0f4c, 0xe9480c01, 0x010e2f07, 0xff2a2a1d, 0xdcd5d500, 0x196d2879, 0x66505512, 0x0e752305, 0x84498315, 0x00052305, 0xf348ff00, 0x00082805,
0x0015000c, 0x823a002c, 0x1632215f, 0x2405fc5b, 0x23153327, 0x080c8717, 0x2e35172f, 0x06260701, 0x011e1507, 0x33150717, 0x33173337, 0x013e2735,
0x15011e03, 0x34112111, 0x013e3736, 0x09b51632, 0x0c120c0c, 0xd6d6170c, 0x3e0985b6, 0x3649013e, 0x01024c32, 0x2418181f, 0x20203c20, 0x031f1818,
0x56fe2e2b, 0x411d2b2e, 0x5780413c, 0x80220589, 0x0885156b, 0x93132308, 0x01011829, 0x18932918, 0x0818011f, 0x18082020, 0x2f011f01, 0xfe2d4311,
0x2d1801e8, 0x070b1143, 0x43420007, 0x01802c06, 0x00090096, 0x0013000e, 0x82151300, 0x35213c90, 0x03353727, 0x37352315, 0x33352735, 0x55558015,
0x55550001, 0x5555aa2b, 0x829501aa, 0x8380200d, 0xcbfe2803, 0x16554b4b, 0x4b4b4b55, 0xd52d070f, 0xa001d601, 0x0d000600, 0x30001600, 0x05715a00,
0x17372727, 0x35071735, 0x09016023, 0x83010f21, 0x33362457, 0x82011f16, 0x221525fc, 0x17072726, 0x272d1182, 0x60012307, 0x35357575, 0x75353540,
0x05c34f60, 0x2a26623a, 0x17080870, 0x300f140d, 0x153c231e, 0x2e2b2c0d, 0x20752d25, 0x80363525, 0x21080382, 0x30012026, 0x19192418, 0x10491824,
0x032e6447, 0x18221301, 0x1d2a011c, 0xa12c401a, 0x00ab2b80, 0x98830400, 0x64980121, 0x43080bc7, 0x37272337, 0x17013f33, 0x2f071707, 0x23271701,
0x07273717, 0x37330727, 0x696937c2, 0x28911c37, 0x91281c1c, 0x7f3f6e19, 0x3f1d1de3, 0x3f7f5054, 0x306b6b55, 0x30309025, 0x1e362590, 0x6d6d586e,
0x6e50656d, 0x220ae34e, 0x8221001b, 0x37232ee7, 0x0607012e, 0x32161714, 0x33353637, 0xb7891814, 0x17323108, 0x17150737, 0x01352707, 0x2e3b91c0,
0x2c2c2e77, 0x30080482, 0x1c1c2b2b, 0x383b9a3b, 0x3b983b38, 0x0f4ab53a, 0x2c3ce85b, 0x762d2b01, 0x2b2b2b2e, 0x1c49213e, 0x983a3838, 0x3c38383a,
0x1a2d5a6b, 0x06006a37, 0x21008200, 0xa7470002, 0x0020290a, 0x37000029, 0x21153335, 0x37230382, 0x83231533, 0x14253307, 0x23010f06, 0x34012e27,
0x33013f36, 0x07011e17, 0x106b011e, 0x2b403305, 0x152b2a01, 0x2bfe2b2b, 0x1a54012b, 0x107f1016, 0x06861a16, 0x3601df24, 0x02823651, 0x82d65521,
0x80ab2c00, 0x1f418080, 0x5b5b1234, 0x853d3412, 0x291e2106, 0x36391d83, 0x00000300, 0xbd01f5ff, 0x05008b01, 0x0f000c00, 0x17010000, 0x012f010f,
0x05184937, 0x23272208, 0xbd000137, 0x1da0a01d, 0x182c76bd, 0x522b1864, 0x8b012245, 0x5959f944, 0xf7fe17f9, 0x53603c3c, 0x08774300, 0x5601d637,
0x0b000300, 0x00001300, 0x11211113, 0x33352301, 0x0614011e, 0x058f4617, 0x012b332b, 0x2babfeaa, 0x3c3c2f2b, 0x210483fc, 0x534e2b2f, 0x00ff2705,
0x583c03d6, 0x0484033c, 0xcf464b82, 0x000b2209, 0x4e49820e, 0x372e0543, 0x0f273727, 0xeb071701, 0x6a6a156b, 0x05846a16, 0x0121d382, 0x820c8795,
0x4b202212, 0x633f884b, 0x377705e3, 0x17213c05, 0x15331533, 0xab333521, 0xaafe56aa, 0xff6b2a96, 0x95016b00, 0x6b1500ff, 0x41002a2a, 0x803106ef,
0x04000001, 0x00000700, 0x27071501, 0x23371735, 0x2a5d8201, 0x01723980, 0x80802000, 0x89396420, 0x850b2027, 0x35252627, 0x37150727, 0x20278717,
0x2026836b, 0x29268263, 0x00000300, 0xeb01c0ff, 0x59829601, 0x19001022, 0x33275182, 0x1733012f, 0x18010e15, 0x2f07f4db, 0x15211107, 0x27262221,
0x76550111, 0x80d6c076, 0x2d07934d, 0xfe800143, 0x01181280, 0x20750001, 0x7f44d580, 0x2b012b05, 0xfe551812, 0x12192bab, 0xa1835501, 0x08225b87,
0x5b820b00, 0x00001f23, 0x204c8713, 0x26668f05, 0x35211117, 0x87403523, 0x8c402054, 0x0112256b, 0x4001952b, 0x40205886, 0x2a236f8d, 0x8395d5fe,
0x07ef44bd, 0x15000f22, 0xd9506782, 0x0723260d, 0x23071733, 0xe71e1937, 0x4af4210a, 0x49200082, 0x200a0860, 0x20b98256, 0x053f6480, 0x00000222,
0x2106d354, 0xb3820009, 0x2c052656, 0x3537013e, 0x1d163207, 0x27151701, 0x21038215, 0x0f823507, 0x34230382, 0x54000136, 0xc02c06d7, 0x6c6c0c08,
0x1b2f2f1b, 0x010c6c6c, 0x092da218, 0x080c0e35, 0x221b434b, 0x0e14154a, 0x4a15140e, 0x4b431b22, 0x51000c08, 0xd6260893, 0x07006b01, 0xb5820c00,
0x00001e23, 0x3fdb1825, 0x0e35210b, 0x33227a82, 0x944b3735, 0x36322405, 0x18012634, 0x260c34db, 0x80026049, 0x59151656, 0xa33805d3, 0x07152c15,
0x7f091b07, 0x95812c81, 0x2b243001, 0xd6025529, 0x30493001, 0x6b820282, 0xd3820320, 0xeb01e02a, 0x1300a001, 0x1b001700, 0x27336982, 0x07012f37,
0x17010f27, 0x1f071707, 0x3f173701, 0x4a072701, 0xeb2a0749, 0x284d0734, 0x4d284949, 0x09883407, 0x822aa221, 0x3bc02e00, 0x1f44114f, 0x4e11441f,
0x124f3b3c, 0x26098343, 0x2b2b304f, 0x82010080, 0x02003363, 0x00330100, 0x0100002b, 0x010f0622, 0x34012e06, 0x5982013e, 0xbf832720, 0x011e072d,
0x3f363217, 0x011e3601, 0x82010e14, 0x16173e79, 0x37013e17, 0x8d01012e, 0x96102a17, 0x29293d15, 0x2118163d, 0x3130221b, 0x41010141, 0x21148931,
0x14872019, 0x1133012f, 0x01158510, 0x01283e28, 0x181c1516, 0x82278321, 0x26148e2d, 0x31314002, 0x44040041, 0x0b240a27, 0x15001200, 0x82082944,
0x28ea82ec, 0x23272317, 0x27372307, 0x072f4407, 0x7e17952e, 0x6295177e, 0x13531425, 0x1d1d7f25, 0x2c063544, 0x46c53519, 0xdb1bc546, 0x454f3030,
0x82e28545, 0xc0012e05, 0x0f008001, 0x00001800, 0x33363413, 0x07db6e21, 0x35262227, 0x07271513, 0x23558217, 0x12194035, 0x07d37818, 0xab18132a,
0x7e7e1e4b, 0x55014b1e, 0x2309a750, 0x4ab51501, 0x4a211483, 0x0ba754b5, 0x01205384, 0x11204f8a, 0x05205f82, 0x5482a683, 0x95013322, 0x425e3f93,
0x466a880b, 0x53840a17, 0x67183320, 0x23220d22, 0xa6843325, 0x6b231722, 0xa9865283, 0x9287eb20, 0xfb92bb92, 0xb7592520, 0x83352005, 0x822120a3,
0x350321b3, 0x5682a482, 0xc0011522, 0x8305a649, 0x20918846, 0x0868932b, 0x0100002a, 0xeaff0000, 0x9601cf01, 0x00001100, 0x37073313, 0x07170717,
0x37231727, 0x27372707, 0x56d51737, 0x9a2b8911, 0x11892b9a, 0x01290887, 0x4a63a895, 0x634a4646, 0x200786a8, 0x29eb8300, 0xbb01c0ff, 0x23008601,
0x52822f00, 0x07062230, 0x07061523, 0x2e353617, 0x23352701, 0x82553634, 0x05857d08, 0x05221682, 0xdc6d1707, 0x373b0805, 0x35013717, 0x1b01271d,
0x19d01316, 0x1b2f3a01, 0x01152015, 0x1f1b291b, 0x090d0901, 0xf6fe2701, 0x010b4b1e, 0x1b1e4054, 0x85011e4c, 0x061c1e27, 0x2d26cf0d, 0x1c0e4d34,
0x55151510, 0x10310575, 0x07090907, 0x1e4d271e, 0x3f1f1b4b, 0x4c0c0254, 0x0dcb751e, 0x1d000f26, 0x2d002500, 0x29122b42, 0x36323311, 0x23012e37,
0xa7823632, 0x3335072f, 0x06141632, 0x1e33010f, 0x2b061401, 0x0c404201, 0x256b6034, 0x2b01012f, 0x01211919, 0x203b1a2a, 0x0e12120e, 0x05832b20,
0x53422b20, 0x00ff310d, 0x20202427, 0x01213221, 0x1b12406b, 0x012a0112, 0x00200582, 0x097b5218, 0x13000f22, 0x27208d82, 0x4505b360, 0x273207e4,
0x17013e35, 0x13352115, 0x2123010e, 0x35272622, 0x09881521, 0x2a016b22, 0x2105794b, 0x0784d6fe, 0x00011e26, 0x090c012b, 0x56200d85, 0x9523098a,
0x84d5090c, 0x2a068321, 0xfeabab2a, 0x0c0c09ea, 0x836b1609, 0x56152005, 0x152f0c7f, 0x25001e00, 0x00002c00, 0x012e2301, 0x56070622, 0x23200e84,
0x3607964a, 0x35332713, 0x07331533, 0x37233523, 0x95012317, 0x2a200759, 0x42590720, 0xa7200846, 0x3005874a, 0x2a405549, 0x402ac040, 0x01405555,
0x17171380, 0x097b4213, 0x4a191221, 0xfe28057c, 0x959555ab, 0x55559515, 0x2d084b4d, 0x008001c0, 0x0017000b, 0x27013f00, 0x73421737, 0x0cec5205,
0x66664026, 0x5b65655b, 0x65220584, 0x02881e65, 0x1a821488, 0x178aa220, 0x00040022, 0x50050b52, 0x193905c3, 0x00002300, 0x15213533, 0x15233511,
0x1d163237, 0x2b061401, 0x010e1501, 0x08f38207, 0x05352725, 0x16141523, 0x3632013b, 0x80012b35, 0x18122b2b, 0x012b1218, 0x25802430, 0x00010130,
0x801219d5, 0x822b1812, 0x4040282e, 0x4012196b, 0x83401812, 0x25302417, 0x83aa2bd5, 0x000022fc, 0xc7401805, 0x00032208, 0x2bc58207, 0x00280020,
0x15210100, 0x35210121, 0x83520382, 0x11352309, 0x51182634, 0x172708f7, 0x013e3523, 0x54171632, 0x01210736, 0x9e2a1956, 0x1b14300f, 0x1b1b281b,
0x4904d67f, 0x0104493c, 0x82fe2bc0, 0x0f6f7284, 0x83013a21, 0x1b282423, 0x821b20da, 0x44002000, 0xb3220667, 0x89829801, 0x85821220, 0x3725072a,
0x011f3717, 0x17331107, 0x2e062c78, 0xfe16b301, 0x1d4116fd, 0x6cf2085c, 0x82121994, 0x02012cc3, 0x25259525, 0xfc1d3608, 0x82560001, 0x4619200f,
0x3d82059f, 0x22055745, 0x472c0024, 0x112713c1, 0x012b012e, 0x82263435, 0x32333004, 0x33013d36, 0x1707013e, 0x17011e15, 0x656b2315, 0x44380906,
0x0f1c0444, 0x80090c15, 0x2a0d092a, 0x66e41811, 0x91121801, 0x13188001, 0x3507ed51, 0xfe2b1813, 0x40100efc, 0x0c2b0c09, 0x15012b09, 0x12156061,
0x83830118, 0x73000421, 0x802c05ef, 0x1f000900, 0x2d002400, 0x07010000, 0x2605b574, 0x01290127, 0x820e2307, 0x05c74e03, 0x07334e08, 0x11071527,
0x35133634, 0x37072726, 0x16323315, 0x16073517, 0x192beb01, 0x2bf1fe12, 0xfe8f011b, 0x2a2e019c, 0x1118021e, 0x090c012a, 0x4b27212a, 0x15a4182b,
0x15a12a0d, 0x4e041c0f, 0x2b65010a, 0x1912f1fe, 0x8f011c2b, 0x0115102b, 0x358b822b, 0x2a934727, 0x18132e01, 0x0119abfe, 0x4084290f, 0x4fbf0e10,
0x57420006, 0x00562208, 0x06ad7105, 0x35010022, 0x17207c82, 0x21065542, 0xf16d2123, 0x35052406, 0x82071533, 0x55012203, 0x25008280, 0x12191912,
0x705400ff, 0x2a2a2d05, 0x2b00012a, 0x552b5656, 0xc01218aa, 0xc0271983, 0x6b951812, 0x562a556b, 0x002b05db, 0x01eb0100, 0x00080060, 0x821e0014,
0x011e210b, 0x2305234e, 0x17011e37, 0x2005c05d, 0x05c14b3e, 0x012e3733, 0x00010622, 0x3624241b, 0x511b2424, 0x7d1d1d7d, 0x25058451, 0x7a641b6b,
0x04831b64, 0x01000122, 0x36281c83, 0x58016124, 0x01584747, 0x9f240584, 0x363f3f36, 0xcb830382, 0x59eaff21, 0x1320062b, 0x6605ab45, 0x23260583,
0x3627012e, 0x70821737, 0x18741420, 0x06172105, 0x2e230783, 0x82222301, 0x1e073307, 0x37323301, 0x2f012e27, 0x1b2b0601, 0x421b6501, 0x77822925,
0xa72d1729, 0x0401241b, 0x820b0a51, 0x3b1b2c0c, 0x1b192c1e, 0x20233d64, 0x82862e21, 0x15162f07, 0x03201731, 0x50012049, 0x1b9bfe1b, 0x88820c41,
0x2128392a, 0x0b1b2401, 0x6004510a, 0x44340d82, 0x321e1f2b, 0x200a3f36, 0x3f36a015, 0x20033104, 0x001c4917, 0x0808a744, 0x4001cb2f, 0x05000200,
0x0b000800, 0x17250000, 0x07172707, 0x25371137, 0x40013711, 0x40c04040, 0xfeb69540, 0x2dedb68a, 0x2d2d5a2d, 0x8000ffad, 0x82038280, 0x05cb463b,
0x9c01d622, 0x0032db82, 0x07062601, 0x3717010e, 0x1637013e, 0x22263736, 0x0c823e07, 0x06200687, 0x19820d82, 0xd5014708, 0x4966b706, 0x1629013f,
0x51291621, 0x253b1f25, 0x16274429, 0x1e1b2f1c, 0x181a2637, 0x341a1c28, 0x01190122, 0x7e300695, 0x15039669, 0x0d172d27, 0x0509290e, 0x2b07111d,
0x17160605, 0x05012a02, 0x02171707, 0x7b822602, 0x0000023d, 0xcb01f5ff, 0x10006b01, 0x00002500, 0x17163213, 0x07353307, 0x0e27012e, 0x82330701,
0x3626087b, 0x010e2337, 0x27262223, 0x37152337, 0x3633011e, 0xeb371737, 0x360f2616, 0x36142c80, 0x09513a1f, 0xa039082b, 0x05820516, 0x84172721,
0x36152a15, 0x6826321f, 0x11400120, 0x2c23830e, 0x47020117, 0xc22f2537, 0x3025261d, 0x26358310, 0x1c011715, 0x4c002068, 0x6b2608c3, 0x06009601,
0x7b820d00, 0x07332408, 0x23350333, 0x15331537, 0x95372337, 0x964b4bd6, 0x2b402b40, 0x95014c51, 0xaaebfe95, 0x4e39abd6, 0x82040096, 0x01002137,
0x3105ef43, 0x00200012, 0x01000024, 0x15331133, 0x35333523, 0x07840723, 0x3307372b, 0x16323301, 0x3523011d, 0x08178223, 0x17363438, 0x01353315,
0x5515406b, 0x20205515, 0x4b951656, 0x6aebfe4b, 0x40401813, 0x40281840, 0x00ff1501, 0x40401515, 0x95eb1515, 0x13181501, 0xea6a6aea, 0x552b1813,
0x95820055, 0xdb5f0020, 0x05bf5906, 0x22055b56, 0x82212500, 0x011e2d57, 0x36322133, 0x03233537, 0x07062223, 0x33206082, 0x3322b682, 0x4b560735,
0x82212006, 0x82212089, 0x8001230b, 0x6b6a00ff, 0x552b3508, 0x011812ab, 0x2b55ab2b, 0x6a4040c0, 0xebfe4040, 0x80014040, 0xca457a82, 0x18552907,
0x56abab12, 0x2aaa5555, 0x1b4b0083, 0x80012d05, 0x0e008001, 0x2e370000, 0x37363401, 0x11215682, 0x2f018323, 0x303024d5, 0x2a2bab24, 0x01d52b2b,
0x01304930, 0x6106ef6a, 0x562b0897, 0x0c000800, 0x14001000, 0x41250000, 0x34750507, 0x2da58205, 0x23151723, 0x2a950135, 0x95952ad6, 0x0084aaea,
0xc0c01528, 0x405555eb, 0x0182152b, 0x02002b23, 0x22008200, 0x85019601, 0x893f8d43, 0x44338737, 0x6532096b, 0x29001900, 0x3b003200, 0x3e010000,
0x06342701, 0x01822607, 0x15012e28, 0x06171606, 0xd0421e07, 0x06072f05, 0x37342726, 0x3e171636, 0x17161701, 0x6918010e, 0xcd7f08e9, 0x01670808,
0x0d0603b3, 0x2b28302c, 0x2c30282b, 0x2103060d, 0x5f750101, 0x0101765e, 0x015a44d4, 0x2a44161b, 0x1b16442a, 0x875a0201, 0x1b13130d, 0x0e781212,
0x131b1212, 0x070a0112, 0x0602222f, 0x0101091e, 0x02051f09, 0x23072f22, 0x02466536, 0x36654602, 0x3e1e03c4, 0x0412181f, 0x12040202, 0x1f3d1f18,
0x1c281b88, 0x851b291b, 0x20ea8202, 0x08f35206, 0x10000d23, 0x05e54100, 0xeb483a20, 0x11152305, 0x024b2107, 0x15012705, 0x35330737, 0x9a5d3533,
0x1517240a, 0x5c233733, 0x2724058a, 0x1417011e, 0x8206136b, 0x01553322, 0x63181256, 0x1812e3fe, 0x45280118, 0x141556db, 0x3f7d0116, 0x16012405,
0x83561514, 0x242b3300, 0x13170130, 0x01171356, 0x18950130, 0x63e3fe12, 0x35831218, 0x45c0fe2b, 0x6b152a45, 0x2d1a2d0e, 0x2e33833d, 0x6b0e2d1a,
0x15151615, 0x243001c0, 0x820b2718, 0x18272500, 0x04003024, 0xe42eb382, 0x9c01dc01, 0x15000a00, 0x2b002000, 0xd9450000, 0x232f0805, 0x35012f22,
0x23151737, 0x013d2622, 0x17323334, 0x0f141532, 0x34352301, 0x33273336, 0x2b061415, 0x34352201, 0x1912d537, 0x60030206, 0x83406076, 0x06cd2708,
0x19645f03, 0x0382b912, 0x03069525, 0x821219ab, 0x645f2205, 0x221383ed, 0x83db0695, 0x20268228, 0x242a846b, 0x00000003, 0x2c7b8202, 0x01d601f8,
0x00090081, 0x0100001d, 0x41f88222, 0x1e2a0516, 0x010e1701, 0x2e27010f, 0x10822701, 0x16322d08, 0x01013e17, 0x0a281960, 0x01015045, 0x42322129,
0x53620101, 0x62531f1f, 0x32420101, 0x1212321c, 0x1a550132, 0x5d3de015, 0x2b2a202b, 0x3b271282, 0x1c1c4972, 0x823b7249, 0x14182428, 0x82001814,
0x84012000, 0x0116296b, 0x000b0080, 0x07110100, 0x1e245a86, 0x15150101, 0x2a264886, 0xfe260149, 0x388613e6, 0x86340121, 0x2533839f, 0x00150009,
0x95821300, 0x012e3526, 0x17062223, 0x55293f8a, 0x0a455001, 0x29211928, 0x28478abf, 0x3d5d2b0b, 0x2a1a15e0, 0x204f8c05, 0x2a838203, 0x01db01ea,
0x00110096, 0x82350023, 0x1f323051, 0x06010f02, 0x2f262307, 0x36013f02, 0x84161733, 0x012b220f, 0x210f8422, 0x1f852537, 0x332b0f87, 0x2f0306db,
0x032f0202, 0x85076006, 0x60072108, 0x01271190, 0x30030625, 0x82300202, 0x30088724, 0x55059501, 0x05540606, 0x54050101, 0x05550606, 0x860786ea,
0x06752115, 0x02871582, 0x4f450020, 0x82802008, 0x821a20a7, 0x010024a7, 0x65070614, 0x2f08074a, 0x011e2317, 0x013d3632, 0x3e27012e, 0x07163201,
0x2634013e, 0x16140622, 0x1d238001, 0x2d2e3c01, 0x406a013c, 0x24372401, 0x0101231c, 0x54304831, 0x25058664, 0x2d1e4001, 0x1c829907, 0x2d3c0130,
0x241b6b6b, 0x08991b24, 0x2f241e2d, 0xeb7f4f30, 0x00033508, 0x01e5ff00, 0x009c01ab, 0x0015000c, 0x25000029, 0x3e351715, 0x0e236782, 0x181e1701,
0x280907f2, 0x010e2713, 0x3d012e27, 0x2f888701, 0x01013727, 0x23232b15, 0x22473a13, 0x2c210608, 0x77267085, 0x2c490c53, 0x8b852d24, 0x011bea31,
0x2a1dee65, 0x463a0a47, 0x233b1223, 0x86772017, 0x81fe2875, 0x0a2d2b52, 0x85253809, 0xeb102493, 0x829bfe1b, 0x820020fe, 0x5000208b, 0x1924054b,
0x2b002200, 0x26085361, 0x07012f26, 0x8423010e, 0x16372dfb, 0x3e37011f, 0x27370701, 0x14010e26, 0x0736a182, 0x013e1617, 0x01012e34, 0x0141318d,
0x30314101, 0x103c3b22, 0x0c8b172a, 0x393ad028, 0x29293d16, 0x0786c93d, 0x82330121, 0x40312827, 0x34210102, 0x83111035, 0x8439820b, 0x33a6290b,
0x28011632, 0x7b01283e, 0x97830887, 0x00000130, 0xd601fbff, 0x26008001, 0x0e250000, 0x89822701, 0x16171624, 0x07823736, 0x1e272623, 0x24028201,
0x3736011f, 0x220b8336, 0x82150607, 0x264e0810, 0x276d0106, 0x442b3462, 0x361c1516, 0x5a362765, 0x830b0d23, 0x75515a0b, 0x02030803, 0x4a20180c,
0x22011149, 0x3a150702, 0x1602161b, 0x12253b12, 0x1801190c, 0x0f2d632a, 0x850b6511, 0x0401554f, 0x622e0808, 0x47902e2c, 0x46300503, 0x80822406,
0x88840320, 0x08052b5d, 0x2b002321, 0x21130000, 0x1e372111, 0x35363201, 0x012f2634, 0x3e35012e, 0x26371701, 0x14010e07, 0x49011f16, 0x2d0805cb,
0x1523012f, 0x35331533, 0x80014033, 0x08e480fe, 0x19213421, 0x0b0b0917, 0x1b091f01, 0x1c182211, 0x0c091417, 0x10190d0e, 0x206a2d06, 0x23832525,
0x10432008, 0x16181a15, 0x0504091a, 0x020e0809, 0x011e1210, 0x182b1a01, 0x0a050408, 0x0a0c0a11, 0x419b207c, 0xff2b07a7, 0x010002ea, 0x000d0080,
0x82200010, 0x375a088b, 0x21270701, 0x26223335, 0x3734013d, 0x05273317, 0x21272135, 0x011d011e, 0x33230614, 0x15272315, 0x1b7a011c, 0x559bfe2b,
0x28021812, 0x5601bbbb, 0x012bfcfe, 0x1818122f, 0x552f5512, 0xfe1b6501, 0x2b2a1b86, 0x07d51219, 0xbabae206, 0x18012bd5, 0x1912d512, 0x0000562b,
0x9b4b0700, 0x00ab2606, 0x001e0014, 0x09616522, 0x1724e382, 0x15070614, 0x23230382, 0x413d012e, 0x13200501, 0x20086a4d, 0xad5d1837, 0x23310808,
0x07170735, 0x17370527, 0x36000107, 0x1d230149, 0x0956090c, 0x01231d0c, 0x0c016149, 0x0c092a09, 0x4040d601, 0x40406afe, 0x822a0001, 0x012d1e2d,
0x2704831f, 0x36490140, 0x26113a24, 0x2805db4e, 0x243a1126, 0xc1fe4936, 0x290e8515, 0x2a2ad515, 0x4000012a, 0x2a823640, 0x03820f20, 0x08000022,
0x0320a788, 0x0b2db382, 0x13000f00, 0x32002800, 0x00004000, 0x208a9225, 0x066f4627, 0x352dbd98, 0x2e35013e, 0x07062201, 0x01171614, 0x20a091ab,
0x21ca9588, 0xd8822a16, 0x30483022, 0xa38fe682, 0xd19c1620, 0x082d402a, 0x30241e2d, 0x2d1e2430, 0x0020ca82, 0x2c058b43, 0x8001c001, 0x2f002600,
0x00003800, 0x2cb18213, 0x1507010e, 0x26371716, 0x32013e27, 0x26ba8216, 0x16072726, 0x70010e17, 0xae820562, 0x17201782, 0x39057a42, 0x22173634,
0x32161406, 0x95263436, 0x01013025, 0x0a0c1c23, 0x01010b60, 0x62824930, 0x61131822, 0x17830a85, 0x82231c21, 0x82fa2015, 0x34198279, 0x19191225,
0x01181824, 0x24300180, 0x30082c1f, 0x14600603, 0x241a8418, 0x610b0101, 0x840a8313, 0x2c082517, 0xd430241f, 0x49224c84, 0x2c782a30, 0x00012108,
0x2c050b56, 0x00200080, 0x23153700, 0x012e3335, 0x08005d35, 0xfb470e82, 0x14250808, 0xc0351716, 0x1d1a4c95, 0x56567302, 0x72020272, 0x440b0b56,
0x5a02025a, 0x015b4444, 0x95951416, 0x28471b2b, 0x24188357, 0x02725657, 0x2617852a, 0x1f445b01, 0x414c1538, 0xb62c071b, 0x15008001, 0x22001e00,
0x23250000, 0xff83f982, 0x29051f7d, 0x17373632, 0x27371715, 0x4867012e, 0x27270805, 0x01231533, 0x1006114b, 0x3b4e0111, 0x01014f3b, 0x2e1a3b4f,
0x206a0612, 0x363629ea, 0x5f363652, 0x06956b6b, 0x851a2e12, 0x4e3b2a1a, 0x06101101, 0x6a206a11, 0x231c8301, 0x156a3652, 0x8708274f, 0x822a2073,
0x07172473, 0x45273527, 0x4f420816, 0x23172105, 0x21071846, 0xff822337, 0x3525f282, 0x01331533, 0x8f4c824b, 0x856f2060, 0x2b5e237b, 0x02822b15,
0x21829520, 0x7f86a090, 0x20835520, 0xb7562b20, 0x000c240c, 0x821a0014, 0x010022fb, 0x28f28223, 0x013e2115, 0x012e013d, 0x05695003, 0x23171523,
0x08798235, 0x35012b32, 0xd66b0133, 0x01013c2d, 0x01181280, 0x0180c33c, 0xc0243724, 0xd580562a, 0x6b015555, 0xeb2d3d01, 0xc0121801, 0xd6fe3d2d,
0x24241bc0, 0x2a2b801b, 0xe7446482, 0x01d82d05, 0x00150080, 0x00250019, 0x15071300, 0x0f216382, 0x1bb11801, 0x23272809, 0x33072735, 0x18172315,
0x2c0a0f40, 0x13402ad5, 0x02150216, 0x56011715, 0x2b068217, 0x40121702, 0x5656562a, 0x40402a16, 0x01200282, 0x01265c82, 0x11d51119, 0x06860119,
0x2b2b2a22, 0x2b221782, 0x73824040, 0x57510420, 0x00962406, 0x8411000d, 0x4dab1977, 0x79b7180e, 0x33172307, 0x6d612335, 0x2ad2280b, 0x2b2b562a,
0x612b2bab, 0xfe200c66, 0x22058261, 0x4a030000, 0x08270897, 0x4d001600, 0x4f250000, 0x32220561, 0x45183716, 0x212f0913, 0x27071632, 0x37273634,
0x26012f36, 0x8226010f, 0x012b2205, 0x21ef8222, 0x0e822707, 0x011f0625, 0x82071706, 0x3f162e05, 0x011f1601, 0x32013b16, 0x3736013f, 0x250e8217,
0x12200136, 0x0282121c, 0x1218b525, 0x4a55d5fe, 0x2008057d, 0x0101176f, 0x16020317, 0x081b0402, 0x0401040a, 0x0401052a, 0x041b0909, 0x03021502,
0x16010116, 0x85088203, 0x8505201a, 0x051a211a, 0xeb201182, 0x3a05666b, 0x1200ff73, 0x80015519, 0xae181812, 0x050b0511, 0x25040312, 0x060a0204,
0x82041c04, 0x0a062202, 0x240e8202, 0x0b0a1203, 0x22178311, 0x82070b01, 0x1d042514, 0x010b0604, 0x00201782, 0x4608a342, 0x132205a3, 0xef821700,
0x11211122, 0x2610d556, 0x01352315, 0x18d6fe95, 0x260af98f, 0xd6000112, 0x822a012b, 0x56552013, 0x2a250c40, 0x0100002a, 0x053b7600, 0x27008022,
0x51530c82, 0x23072905, 0x011e3315, 0x23153315, 0x32053e45, 0x33352335, 0x33373634, 0x012e2335, 0x3634013d, 0x826b0133, 0x561221c2, 0x0e6cad18,
0x14835620, 0x19800128, 0x1812d512, 0xad182a01, 0x2a200d39, 0x21057246, 0x035a0000, 0x01d62105, 0x2e206f83, 0x172671a9, 0x23352337, 0x789a2315,
0x4b606b24, 0x7d9d4b2a, 0x5560f523, 0x06474155, 0x01d5ff22, 0x40228385, 0x85aa4400, 0x9a1bbd6b, 0x6b6f209b, 0x284113c4, 0x192b321c, 0x0a0a0119,
0x050f140c, 0x0a11110b, 0x1808050c, 0x05ce6b10, 0x24373f41, 0x33153307, 0x1bb84135, 0x24223f41, 0x56566035, 0x20008200, 0x31038205, 0x01c00100,
0x00070000, 0x0011000d, 0x0025001d, 0xe34f3700, 0x84352005, 0x07352467, 0x8b352315, 0x21252311, 0x12822315, 0x55232208, 0x1516152b, 0x15152a2b,
0x15162a40, 0x95fe1615, 0x55c08001, 0x4056eb6b, 0x156b5640, 0x2a2a1656, 0x820a8216, 0x8015250c, 0x02001515, 0x2a083b70, 0x001f0013, 0x0f062500,
0x18220601, 0x2a0ef57a, 0x1e07010e, 0x013e1701, 0x82012e37, 0xc27a1891, 0x87012007, 0x4ec02008, 0x05840524, 0x180d6021, 0x200fb17a, 0xf99e180b,
0x0000230a, 0x6f820100, 0xd201ee3e, 0x0f009201, 0x013f0000, 0x17013f27, 0x07011f37, 0x27010f17, 0x242f2707, 0x57235724, 0x07860282, 0x0b8a6920,
0x13825720, 0x280c735e, 0x0013000f, 0x32211300, 0x7d971816, 0x1517290b, 0x01803521, 0x01181200, 0x210a9a68, 0x2b5d0001, 0xaa80220d, 0x21f786aa,
0x937f01ab, 0x20479005, 0x2147a313, 0xab41d6fe, 0x05434105, 0x93a44b98, 0x4a822a20, 0x332047a0, 0x5520db91, 0xdb9fda91, 0x91151721, 0x93bd2047,
0x09fb4547, 0x15000b27, 0x00001a00, 0x0a094201, 0x1f32072c, 0x010f1601, 0x07363727, 0x44180717, 0x192d0e2d, 0x071b0405, 0x152b1607, 0x812c2503,
0x0c3e6b2c, 0x1b036a27, 0x2b150809, 0x20198416, 0x3c528200, 0xf5ff0000, 0x8b01d601, 0x00000400, 0x21170701, 0xd5000137, 0x51080151, 0xfa9c8b01,
0x05cb44fa, 0x09201f87, 0x6b822182, 0x85372721, 0x3ea22426, 0x82a23ec8, 0x5306272b, 0xbe755501, 0x2f84abbe, 0xcf420520, 0x379d1808, 0x2113210a,
0x2809a875, 0x35211525, 0x23113305, 0x069d6f03, 0x00018024, 0x696f0c09, 0x49012206, 0x270e82fe, 0x2bab2b2b, 0x2a2a562b, 0x2208927b, 0x6f802a2a,
0xfe220792, 0x938400d6, 0xeb2b8982, 0x1d006b01, 0x00003300, 0x19152113, 0x25070d3a, 0x22230706, 0x0582010f, 0x37260639, 0x3527013e, 0x17333733,
0x27012e35, 0x17010e23, 0x0e272622, 0x59011d01, 0x9532053c, 0x80165601, 0x12190c09, 0x34060d48, 0x07480d06, 0x0282391d, 0x400b152d, 0x090c01a0,
0x0e0c0215, 0x83011812, 0x09402696, 0x5555010c, 0x82148315, 0x680c2d11, 0x2804010b, 0x064a065c, 0x15ab166a, 0x01241a82, 0x12191119, 0x2b821c83,
0xef4a0020, 0x0003210a, 0x4605cd43, 0x714812bb, 0x0fc3460b, 0x562a8023, 0x46028256, 0x552012c7, 0x2a201783, 0xab20fb88, 0x0b22fb82, 0xfb821700,
0x48353321, 0x372108c1, 0x2a0c8215, 0x23352335, 0x55152315, 0x826b806b, 0x2a962702, 0x6b2a6b6b, 0x0b830001, 0x832b6b21, 0x626b200b, 0xa7200807,
0x15224382, 0x43821d00, 0x22083783, 0x37170717, 0x37273717, 0x33270727, 0x26343632, 0x32330727, 0x07061416, 0x2b2b5523, 0x4c1e4c73, 0x824d1e4d,
0x04552702, 0x1b24241b, 0xee826b6b, 0x016b0926, 0x7456d66b, 0x1d851a82, 0x3724562b, 0x0c2b0124, 0x00010c12, 0x080b4907, 0x0c000324, 0x734d1000,
0x01002508, 0x05352115, 0x20075d4a, 0x25a88207, 0x1d011e37, 0x15822301, 0x34352325, 0x82133736, 0x862320cb, 0x80012203, 0x5b2e82ff, 0x373605a6,
0x241ceaaa, 0x5500ff55, 0x2bd51c24, 0x2b802a80, 0x55559501, 0xa05b01c0, 0x6b962f05, 0x2401eb6b, 0x5656801b, 0x01241b80, 0x384995fe, 0x0f290806,
0xecff0000, 0x9401e601, 0x12000800, 0x29001700, 0x33002e00, 0x42003d00, 0x6a006100, 0x78007300, 0x86008100, 0x00008f00, 0x34e68325, 0x36342622,
0x37361607, 0x27262726, 0x27371606, 0x3f170706, 0x3a0b8201, 0x06072226, 0x1617010f, 0x37321617, 0x07062736, 0x36072633, 0x13162337, 0x82070626,
0x36172713, 0x36170726, 0xc5822737, 0x011e0723, 0x27138214, 0x2726010e, 0x012e010e, 0x2205a855, 0x54013e26, 0xf38306e2, 0x8c613e82, 0x36172305,
0x69820717, 0x3e213282, 0x22148201, 0x82372706, 0x2131824c, 0x4c82010e, 0x0001363e, 0x22161611, 0x0b521616, 0x0f111a28, 0x0408181b, 0x02040619,
0x11118513, 0x26110a0a, 0x08860483, 0x07062e25, 0x8306071a, 0x8d692004, 0x17262f2a, 0x34290a08, 0x080a2934, 0x1f1f3c2f, 0x0d8c2f3c, 0x080b1128,
0x22242422, 0x0786e308, 0x1307cb2e, 0x1a440402, 0x08041528, 0x7b0f1b18, 0xe8230d8c, 0x82172117, 0x06d33702, 0x15131813, 0x2c230503, 0x090a0b75,
0x20201b03, 0x01010e11, 0x0786110e, 0x0807a024, 0x0382d708, 0x8d130121, 0x0e8c3027, 0x270d2941, 0x290d2736, 0x1e181a41, 0x8d1a181e, 0x18d3280e,
0x181a0a18, 0x82180a1a, 0x2d088600, 0x0a09030b, 0x0c131861, 0x0305232c, 0x0d8ca315, 0x00020022, 0x012a0082, 0x00b401aa, 0x00220016, 0x52690100,
0x27600807, 0x37361637, 0x2e273436, 0x27152301, 0x012e0337, 0x16061737, 0x07171617, 0x22000126, 0x3232183d, 0x0a264b1d, 0x2416351c, 0x18301224,
0x297a6b6b, 0x12201d0d, 0x17101e0d, 0x6b01200d, 0x88351819, 0x04171f34, 0x1413032b, 0x11296627, 0x6a6b6213, 0x702b96fe, 0x4f242033, 0x2b09101e,
0x0400000d, 0x00227682, 0xd359c001, 0x0737220b, 0x30028217, 0x25271127, 0x40d52711, 0x4040c040, 0x7501b595, 0x10d259b5, 0x4b4e0020, 0x01d53f05,
0x000f0096, 0x26272500, 0x06010f22, 0x16011f14, 0x36013f32, 0xb1cb0134, 0xb10c1c0c, 0x06840b0b, 0x87da0921, 0x20108409, 0x06434600, 0x13203b85,
0x0f233d91, 0x8e372701, 0xb1232341, 0x458db1b1, 0x11820e20, 0x00820020, 0x434c0420, 0x000c3808, 0x00330022, 0x0100003c, 0x07171632, 0x0622012e,
0x013e2707, 0x48061707, 0x26230660, 0x54163727, 0x3421062e, 0x050e4e37, 0x22062723, 0x22298227, 0x4f013e35, 0x0132088d, 0x1f4d2b00, 0x443e191e,
0x1f1e193e, 0x171f874d, 0xf87d0201, 0x1f173805, 0x5b780223, 0xd502785b, 0x13014936, 0x46191e13, 0x13131e19, 0x43364901, 0x013205c7, 0x1e1e2095,
0x181a1a18, 0x60201e1e, 0x492f281e, 0x38820260, 0x1e282f24, 0x33824035, 0x40213982, 0x2b2b8240, 0x1e122e1a, 0x121e1919, 0x49361a2e, 0x09b86218,
0xc3820220, 0x9601d528, 0x0800a001, 0xbf832500, 0xbc543620, 0xe53d1905, 0x2e32080b, 0x26012f01, 0x23062227, 0x35331507, 0x07270737, 0x18122001,
0x18182418, 0x2b2d153b, 0x3d150d2d, 0x0e2f1f23, 0x05170d15, 0x2b6f0507, 0x08692226, 0xf74f4b01, 0xd8fe3c05, 0xa0802b5d, 0x1d18402b, 0x171c012a,
0x02011422, 0x0f49642f, 0x002b16ae, 0x82000a00, 0x4f012000, 0x1f300533, 0x29002400, 0x39003100, 0x4a004000, 0x54004f00, 0x0817414f, 0x0e072722,
0x2e330701, 0x17262701, 0x17162726, 0x37363323, 0x17140706, 0x23372733, 0x34361706, 0x14162327, 0x17219d82, 0x290a8233, 0x3e333207, 0x1e233701,
0x1b821701, 0x82360721, 0x2726212d, 0x08156b4f, 0x0a040c28, 0x0b043d05, 0x14560504, 0x91090825, 0x25080829, 0x032e0522, 0xd0052e03, 0x022d0505,
0x03035b02, 0x22030345, 0x23820605, 0x0a053d29, 0x09286804, 0x82a52508, 0x4f08202b, 0x20081498, 0x1b0801cb, 0x081b1111, 0x0d223501, 0x111e1e11,
0x1010580d, 0x310f2020, 0x100f2110, 0x20401020, 0x21058220, 0x2283098a, 0x82350921, 0x8322201d, 0x00003725, 0x00000200, 0xda01e2ff, 0x16009a01,
0x00001b00, 0x14060701, 0xcc82011f, 0x16063108, 0x3f011e17, 0x17372701, 0x013f3216, 0x37012f07, 0x3c420117, 0x611e0d0d, 0x22471f3c, 0x51630108,
0x1e613c1e, 0x3d0d220d, 0x1f3d1e5b, 0x3c99015a, 0x1e370b82, 0x511e3d62, 0x21080163, 0x603c1e47, 0x3c0d0d1d, 0x1e3d1d1d, 0x8403005a, 0x82db2063,
0x000d2463, 0x88220011, 0x86172065, 0x3727215c, 0x17257284, 0x27260607, 0x2374822e, 0x37273717, 0x0f316c85, 0x0d1d101f, 0x5b3c0d23, 0x1d5b1e5b,
0x3c15a71e, 0x265e831c, 0x3c1f4722, 0x851ea615, 0x821f2073, 0x0d1e2223, 0x2967820d, 0x1ef35a1e, 0x1e3c15a6, 0x9e842147, 0xa5163d23, 0x82df841e,
0x01d62b6f, 0x00140060, 0x37000029, 0x154e3523, 0x33352c05, 0x1517011e, 0x2307010e, 0x72373315, 0x33220524, 0x067e2335, 0x3e333506, 0xc0eb3501,
0x80401c24, 0x01241b80, 0x401b2401, 0x2060ea80, 0x1c220d89, 0x18832024, 0x83404021, 0x2421821a, 0x40408040, 0x200c83c0, 0x472e85c0, 0x778308d7,
0x2d001822, 0x35237782, 0x7e23012e, 0x2720055c, 0x15226d84, 0x07821533, 0x7c921183, 0x1b01eb25, 0x831b1414, 0x82802078, 0x20848359, 0x237e8deb,
0x1b153060, 0x30202382, 0x40206e82, 0x87820083, 0x5f45828d, 0x24f78506, 0x2500001e, 0x25669235, 0x23113305, 0x19832315, 0x8dd50121, 0xd6fe215f,
0x80215583, 0x28548d60, 0x80400125, 0x0000c080, 0x26df8201, 0x01600100, 0x820b0060, 0x353321d9, 0x44824682, 0x33112323, 0x288c84e0, 0xfe80e040,
0x018080c0, 0x20268340, 0x832b8402, 0x000b2587, 0x01000017, 0x7382f784, 0x35333523, 0x21398a07, 0x3a849501, 0x0584ea20, 0x15014022, 0x35200785,
0x022c4889, 0xeaff0000, 0x9601c701, 0x3b003500, 0x0722cf82, 0xdf483527, 0x010f2105, 0x272d0982, 0x17072707, 0x012f0715, 0x17071707, 0x82098237,
0x1707230e, 0x0982013f, 0x37200e82, 0x1f232182, 0x82273701, 0x08108201, 0xbc012720, 0x322b2b32, 0x2a0a260b, 0x25352a0d, 0x1e1c1c1e, 0x0d2a3625,
0x0b250a29, 0x312b2b31, 0x178c250b, 0x0a280e25, 0x8235fb25, 0x0d962400, 0x82183e18, 0x0b262e25, 0x301f1832, 0x1b1b1e24, 0x1f30241e, 0x20478318,
0x291a9529, 0x0a260a31, 0x3e1f1f72, 0x0f421f1f, 0x016b3a08, 0x00100080, 0x25000019, 0x1507010e, 0x012e3523, 0x35373634, 0x011e1533, 0xa9431827,
0x016b2608, 0x262a262f, 0x2f04842f, 0x24241b6a, 0xc0242436, 0x57093927, 0x4e390957, 0x19200685, 0x41065861, 0x5783095f, 0x17000e22, 0x13595785,
0x24559005, 0x3d2d2d3d, 0x875b8501, 0x21108356, 0x5c862d3d, 0x03205589, 0x01205883, 0x0b245383, 0x18001400, 0x180dc77a, 0x20085244, 0x21618227,
0xab4e0001, 0x852d200a, 0x2a3023ac, 0xa34e2b01, 0x862a200a, 0x2b5622ac, 0x2056832b, 0x8a048304, 0x9a1c205b, 0x9803205d, 0x982a2061, 0xabfe2163,
0xc3896785, 0xe36a0e20, 0x07bf6206, 0x200e6f41, 0x20648307, 0x41b0866b, 0x30210b74, 0x06884f2a, 0x200e1f41, 0x216084ff, 0x00820002, 0x2b21c782,
0x215f8300, 0x09570100, 0x56232006, 0xcd4106f1, 0x41002008, 0x01200874, 0x21416382, 0x2b012105, 0x55860a82, 0x3d2d2722, 0x20072141, 0x21b38700,
0x7741002b, 0x41b0841b, 0xae852977, 0x82060021, 0x010024ae, 0x828001eb, 0x00152b5b, 0x002e0025, 0x00400037, 0x9c182500, 0x2f300a5c, 0x27343601,
0x14011e37, 0x32330106, 0x0e111716, 0x275fa782, 0x08294805, 0xd7870720, 0x21084966, 0x0148ac01, 0x211d2d05, 0x181e5921, 0x14111e18, 0xabd4fe14,
0x82052f50, 0x68182106, 0x2705be57, 0x30302512, 0x24303049, 0x2f05125c, 0x3d181e29, 0x1e183d48, 0x4e584e1d, 0x48181e20, 0x2e243682, 0x09012e36,
0x2d09e953, 0x182b1912, 0x24191924, 0x30018018, 0x02823048, 0x9d5c2920, 0x07974d08, 0xcb82d620, 0x2000172f, 0x00003300, 0x07173313, 0x17323615,
0x2c078335, 0x0e15011e, 0x27262201, 0x17373634, 0x066f5826, 0x013e0739, 0x35230737, 0x012b2634, 0x011d0622, 0x011e2723, 0x40402a6b, 0x82307630,
0x1e380805, 0xb4790222, 0x1e220279, 0x36363595, 0x3536366a, 0x1e24683d, 0x2a12196b, 0x1e6b1912, 0x80016824, 0x071d2a2b, 0x2a2b7207, 0x0b140725,
0x171e1e17, 0x1107140b, 0x091a0901, 0x71250282, 0xaa111301, 0x24d5822b, 0x11aa2b12, 0x0af76313, 0x47009630, 0x33370000, 0x34262227, 0x15163236,
0x07843517, 0x15071423, 0x05275937, 0x33072322, 0x14241782, 0x23272206, 0x23061e59, 0x1615012f, 0x26240f82, 0x07353734, 0x36240784, 0x0623013f,
0x6d3c3f84, 0x16113850, 0x38172116, 0x1720170b, 0x1601380b, 0x11161621, 0x1f0c5038, 0x0c1f1717, 0x16211b85, 0x201c8601, 0x211b8a17, 0x0d8b38dc,
0x45a22986, 0xab50c782, 0x00192609, 0x002e0022, 0x83431800, 0x3336270b, 0x1417011e, 0xf94a1707, 0x8b431805, 0x23132108, 0x080a5f58, 0x0dc0c920,
0x18129611, 0x231d090c, 0x11014936, 0x0c230d08, 0xa0fe0c96, 0x1b12120d, 0x40521212, 0x0282402a, 0x0cc0c930, 0x11961218, 0x0111080d, 0x1e223649,
0x22820c09, 0x836f2321, 0x121b2320, 0x218300ff, 0x8a824020, 0xaa0a3357, 0x6c27208b, 0x37240534, 0x01170717, 0x2a2b8b9c, 0x2e1f2d2d, 0x2d2d1f2e,
0x9b2d2d1e, 0xc9fe2190, 0x28822587, 0x34088b67, 0x001b006b, 0x0028001f, 0x13000031, 0x011d010e, 0x0614011e, 0x21f91807, 0x3634280a, 0x26343537,
0x82170727, 0x08065b8e, 0x55240887, 0x18121812, 0x12220282, 0x09875601, 0xb620602b, 0x15102720, 0x15152015, 0x2a068598, 0x18016b01, 0x18015512,
0x18011824, 0x20103df8, 0x212d8240, 0x2c8301b5, 0x87152022, 0x00230786, 0x82000100, 0xda012100, 0x21080682, 0x37000013, 0x1e373626, 0x013e1701,
0x06163327, 0x27012e07, 0x2b17010e, 0x3c5c2804, 0x1b3d2c38, 0x09823503, 0x1e443e22, 0x80260982, 0x05087008, 0x02820541, 0x7b410888, 0x00002906,
0x6b01d601, 0x11000d00, 0x0023eb82, 0x821e2113, 0x088665e6, 0x15332008, 0x15332723, 0x35373317, 0x6b211533, 0x241c2a01, 0x24958095, 0xc02a2a9c,
0x2b2a2b95, 0x8256fe95, 0x1b242fbe, 0x56161656, 0x2a95241b, 0x2b2b1515, 0xb746ab15, 0x052f7d09, 0x00001a2f, 0x14211525, 0x27262206, 0x36343523,
0x20618437, 0x08424505, 0x00ffd52f, 0x01243724, 0x0112182a, 0xff181216, 0x057c4c00, 0x1b2b8026, 0xeb1b2424, 0x21056944, 0x3d5015c0, 0x06434506,
0x9774ab20, 0x33002208, 0x22018911, 0x822a5655, 0x18012001, 0x860aba46, 0x18c0202f, 0x19080b91, 0x201ac7c5, 0x563d846b, 0xff2f054b, 0x01ab01ea,
0x00050096, 0x001e0015, 0x82330027, 0x821620c1, 0x032721c0, 0x870f3f55, 0x873720c5, 0x53172008, 0x01260af3, 0x4433193c, 0x5f55441a, 0x8527200e,
0x853720e0, 0x36222606, 0x49010149, 0x27058436, 0x33441bd2, 0x183c0119, 0x07b05218, 0x18125623, 0x20f8862a, 0x2b078601, 0x37480155, 0x02024836,
0x48373648, 0x6606f756, 0x132806ef, 0x1d001900, 0x25002100, 0x27169556, 0x37171507, 0x07172735, 0x35270282, 0x35270737, 0x56c00117, 0x91180892,
0x95290c67, 0xd4696969, 0x56805656, 0x119d5656, 0xa6544731, 0x28a65454, 0x7d3d3d3c, 0x7e324c31, 0x48324d31, 0xdc2408fb, 0x0d009c01, 0x2005d96f,
0x05b76615, 0x27333539, 0x33152315, 0xab402315, 0x5d797978, 0xab784eab, 0x8001abab, 0x8279795d, 0x4e782308, 0x474bab2a, 0x1549080c, 0x00001b00,
0x33161437, 0x3d363221, 0x27263401, 0x22061523, 0x22233527, 0x16171506, 0x23353736, 0x01252c2b, 0x172a1f10, 0xbe0e3f11, 0x2218300d, 0x0764079c,
0x28246c72, 0x13c71f25, 0x5ea4011f, 0x171ba95b, 0x3403465e, 0x4356829f, 0xa8380623, 0x06006b01, 0x33130000, 0x27073315, 0x6780c033, 0x0167a7a7,
0xa7a7ab6b, 0x200c3371, 0xd74f1816, 0x59132011, 0x6b2005db, 0x240ab15a, 0x56406ba7, 0xc34f1840, 0xd5fe250d, 0x0055556b, 0x20086342, 0x286b8280,
0x001a0016, 0x33272500, 0x21728235, 0xdd712125, 0x1117250d, 0x00011121, 0xff214683, 0x23588a00, 0x552a0112, 0x48714782, 0x1912260a, 0x01d6fe2b,
0x22c7892a, 0x826801ab, 0x0100295b, 0x27152315, 0xab011537, 0x0121c182, 0x71cd8400, 0xcb820fab, 0x14110124, 0x01672306, 0x82332006, 0x17052682,
0x23353335, 0x0ba97135, 0x84191221, 0x550121ba, 0x840a167f, 0x23cb91df, 0x3315013f, 0x13207682, 0x0724548e, 0x95211121, 0xc020b594, 0x707fe083,
0xfe12220c, 0x088f41d6, 0x3720c784, 0x17239082, 0x82553507, 0x868020c6, 0x840220c5, 0x01c025ec, 0x000f0080, 0x3721c382, 0x0d6c7311, 0x49422520,
0x0a287105, 0x01191223, 0x207f822b, 0x0fa1412b, 0x200c935c, 0x244b8206, 0x2500001a, 0x22ff8207, 0x8e033533, 0x82372054, 0x6b0121c3, 0x4689c485,
0xfe215182, 0x41c484d6, 0x8f410fa5, 0x41a82009, 0x2520058f, 0x2006af70, 0x20c48440, 0x12574215, 0x73012921, 0x03280d8c, 0x33153307, 0x95013335,
0x730f7841, 0xd8860986, 0x0123c793, 0x82152317, 0x41052072, 0x15240adc, 0x27061411, 0x41085742, 0x01210f76, 0x47dd942b, 0x0b240cff, 0x1f001500,
0x3010a54b, 0x17161407, 0x03012e37, 0x3437013e, 0x1e072726, 0x39451801, 0x495b290c, 0x11130260, 0x1e3516f0, 0xb4580887, 0x02282b0c, 0x351e4960,
0x1311f016, 0x0a88aafe, 0x9b720020, 0x00022d0a, 0x00180010, 0x01000021, 0x33012f33, 0x200b905a, 0x05016313, 0x6a181520, 0x01250830, 0x95767615,
0x0a9a70ab, 0x3b03bd26, 0x55033a30, 0x2405694a, 0x20750001, 0x07fc6e80, 0xfe181225, 0x82151680, 0xab162100, 0x39081f62, 0xff000003, 0x019601d5,
0x00170080, 0x0048002e, 0x013e1300, 0x011d1632, 0x0482011f, 0x0706142f, 0x012f2223, 0x013b3637, 0x011e1317, 0x2a0f8217, 0x2e373635, 0x15062201,
0x4d151716, 0x16820567, 0x07010e22, 0x2009eb61, 0x38198414, 0xd5013e35, 0x0c120c01, 0x1212691a, 0x090d8a0e, 0x09061068, 0x24164405, 0x08448230,
0x01011558, 0x01243724, 0x01171314, 0x36253001, 0x14010248, 0x15121513, 0x2e2d3c01, 0x1d23013c, 0x48012f26, 0x0c090001, 0x035f090c, 0x5d14092f,
0x0a01120d, 0x24061159, 0x30012a01, 0x0b271824, 0x1b1d131a, 0x1d1b2424, 0x270b1a13, 0x2c302418, 0x1b364901, 0x0f091130, 0x8b4d192b, 0x34212905,
0x410e170d, 0x0049362a, 0x20076353, 0x20db8280, 0x26d9991e, 0x23371727, 0x92152335, 0x40c024af, 0x932b2a40, 0x40d5248b, 0x88808040, 0x9dab205f,
0x4403205f, 0x5f92055f, 0x45829520, 0x01205e93, 0x2b207783, 0x13205fa7, 0x9205fb43, 0x992b205f, 0x2b2b225f, 0x271f412a, 0x07270326, 0x35331533,
0x40235f92, 0x412b4040, 0x0122141f, 0x7a824015, 0x29067b45, 0x9601d5ff, 0x17005601, 0x83412e00, 0x165d4219, 0x43427392, 0x14424112, 0x20152d42,
0x07ef4200, 0x1d00ab2a, 0x5a003a00, 0x15250000, 0x300be542, 0x32013e35, 0x34351516, 0x17163236, 0x011e1715, 0x05de4227, 0x3736352a, 0x0e272634,
0x010e0701, 0x2205f942, 0x65373634, 0x3c820544, 0x2106fb42, 0x1d830622, 0x8406fe42, 0x9501211f, 0x480afb42, 0x3608069f, 0x0a085801, 0x01302580,
0x14131701, 0x161c2401, 0x19140621, 0x17131401, 0x290b161b, 0x0148371a, 0x1a171a1e, 0x2e3c0120, 0x1a0e311e, 0x261d231e, 0x111c212f, 0x43887d39,
0xd5250704, 0x090c0c09, 0x0804832b, 0x04276b33, 0x3001fa0f, 0x0b261924, 0x1b1e121a, 0x19010124, 0x16210614, 0x0b1a131d, 0x0b293227, 0x022b1c16,
0x37223648, 0x320d0b11, 0x013c2d20, 0x310e191e, 0x061a431f, 0x11392326, 0x0000211c, 0x220aff41, 0x4141001d, 0x352b2009, 0x35363736, 0x0f222634,
0x83010e01, 0x17142603, 0x2e151716, 0x20e98401, 0x05264133, 0x5530f097, 0x24090507, 0x05031235, 0x14020206, 0x04040d19, 0x0741ef86, 0x33dd9705,
0x08071a5b, 0x241b130e, 0x0a040311, 0x21060506, 0x0405102d, 0xf885dc87, 0x0000002d, 0xff000001, 0x01d601eb, 0x82270095, 0x12262cc1, 0x010e2337,
0x27362307, 0x8207012e, 0x82332008, 0x1630089d, 0x3e330702, 0x06333701, 0x37011e17, 0x2335013e, 0x69010616, 0x3e073f26, 0x350e1b01, 0x57060102,
0x01261d21, 0x252d231c, 0x023e083e, 0x04330d21, 0x28081283, 0x011d251e, 0x01163d24, 0x6203162a, 0x691b1c45, 0x4e191f0c, 0x064d0524, 0x16d6fe16,
0x294f7003, 0x1f08682a, 0x071b541b, 0x8482824b, 0x01ff3383, 0x008101a4, 0x3f000023, 0x32333601, 0x0f141516, 0x05821701, 0x22230627, 0x1415012f,
0x27078207, 0x34013d26, 0x16173236, 0x36081682, 0x201446da, 0x3f0a251a, 0x1a250c4d, 0x0a5f0f1c, 0x211e2212, 0x0a133a21, 0x66fd0203, 0x1319251d,
0x0f625d0e, 0x13251b13, 0x101c4176, 0xf31f281c, 0x0c14281e, 0x8713070c, 0xea2b086b, 0x96017601, 0x00000b00, 0x37173313, 0x2f261133, 0x07060701,
0x013f558b, 0x3e2f2855, 0x01262e01, 0xfebcbc95, 0xb7020756, 0x830602b8, 0x25048433, 0x7f01d601, 0x034b0f00, 0x82292008, 0x1525213d, 0x1d32a982,
0x07061401, 0x15231523, 0x07353725, 0x15072715, 0x54823517, 0x03703520, 0x23353906, 0x3533011d, 0x9501012a, 0x090c0c09, 0xfffe8015, 0x2a2b2bc1,
0x556b3520, 0x01390085, 0x0c29245a, 0x0c095509, 0x262baa01, 0x5b05b535, 0x06950555, 0x16357b76, 0x2301822a, 0x001616c0, 0x2a098360, 0x00240014,
0x06140100, 0x59352622, 0x2e2c079e, 0x07222701, 0x1e35011e, 0x07141701, 0x29059f52, 0x013e3526, 0x24190001, 0x5c701518, 0x2d3d3d07, 0x0e0c0c0e,
0x0c026049, 0x1e1e641d, 0x020c1d64, 0x122b0160, 0x1c121919, 0x013c2e24, 0x3405e86d, 0x5d150503, 0x22486101, 0x03744a1d, 0x1d4a7403, 0x00614822,
0x06f35100, 0x0001d636, 0x20001000, 0x3b002900, 0x4e004100, 0x35370000, 0x35231533, 0x3d2d8782, 0x14153301, 0x37363216, 0x33013e15, 0x239a821e,
0x27262223, 0x17221a82, 0xa869012e, 0x05ce5d05, 0x33011e26, 0x06173732, 0x34231c82, 0x83330736, 0x8217201b, 0x15332324, 0x47823736, 0x8806223a,
0x2f0f1616, 0x1f15151f, 0x13083b14, 0x1e1e180b, 0x07140b18, 0x14015e15, 0x46081384, 0x561d1854, 0x130e1302, 0x1e100f0c, 0x091e2018, 0x18110341,
0x15157412, 0x08071207, 0x59a60c0b, 0x1e100e91, 0x12595b1a, 0x346b1515, 0x1f010807, 0x07081f2f, 0x105c910d, 0x15201414, 0x1e014715, 0x110d0718,
0x82160c10, 0x0c2c2b17, 0x3d0e0e0e, 0x010d0d6a, 0x47670e14, 0x00172e0b, 0x001f001b, 0x35331300, 0x011e1533, 0x4e5e1817, 0x012e2108, 0x2325cb83,
0x35331505, 0x08038201, 0x802a2b30, 0x2a03785b, 0x2b2b2b2a, 0x80496002, 0x2b55012a, 0x012bd5fe, 0x032a2a6b, 0x2a805b78, 0x6049802a, 0xd52b2b02,
0x00012b2b, 0x00002b2b, 0x00820005, 0x01eb0134, 0x00030080, 0x002e0025, 0x00360032, 0x23112500, 0x1a531311, 0x35272b09, 0x07010e23, 0x33372606,
0x78823e37, 0x013e3524, 0x8482013b, 0x3c410720, 0x26342105, 0x8f828b84, 0x80c0012a, 0x01100c8e, 0x9c0c1001, 0x702c0682, 0x231e291e, 0x09053d0f,
0x63183e03, 0x232a1382, 0x0c09c056, 0x0c0c120c, 0x00822a77, 0xff3c7e82, 0x102a0100, 0x0ce3fe0c, 0x3f0c1010, 0x01133003, 0x03118770, 0x0c131017,
0x402b2b10, 0x2205245f, 0x69156b15, 0xa3890817, 0x97a69faf, 0xab4d92a5, 0x258f8308, 0x002a0021, 0x29410100, 0xce012129, 0x21221f41, 0x15415501,
0x09af501e, 0x7b0b1341, 0x17200575, 0x4106ce54, 0x13411fb3, 0xc06b2326, 0x8da0eac0, 0x90830320, 0x210a4342, 0x8bd42500, 0x6b6bc023, 0x208ba095,
0x268b8804, 0x002a0021, 0x41470043, 0x33202c9f, 0x411c4468, 0x902023bc, 0x41134e68, 0x19201fd0, 0x82165068, 0x055b41cb, 0xab01c026, 0x1e001500,
0x417ed182, 0x0917441f, 0x01333522, 0x23173f7e, 0x2a40401e, 0x3b7e0282, 0x2bc02a17, 0x402b4040, 0x00030000, 0x06ff5100, 0x10000224, 0xa54c1c00,
0x15232214, 0x05677123, 0xa04c3520, 0x847d2010, 0x0f994c46, 0x5b83eb20, 0x6b2b4021, 0x08220d33, 0x61820c00, 0x3701002d, 0x37270717, 0x03333517,
0x82211521, 0x01233356, 0x691e3615, 0x2a361e69, 0xfe8001d5, 0x01d5d580, 0x0f833500, 0xff803523, 0xdb801800, 0x01ea250a, 0x009601c0, 0x15204383,
0x4387a382, 0x43820720, 0x23151723, 0x28518335, 0x2b150107, 0x1e5e5e1e, 0x2048862b, 0x2d0d842a, 0x1f2b4001, 0x2b1f5e5e, 0x6b2ac055, 0x0b845555,
0x830af74f, 0x00102a4f, 0x37172500, 0x37170727, 0x20939815, 0x21928680, 0x92838001, 0x22054f45, 0x825601c0, 0x00072549, 0x000f000b, 0x13239382,
0x82231533, 0x3b352441, 0x83231501, 0x239283d6, 0x80401737, 0x56213182, 0x330082d5, 0x2d1e4b80, 0x55011e62, 0x2b2b5680, 0x402b802b, 0x612c1e4b,
0x2308d35d, 0x002b0196, 0x2005637a, 0x22468207, 0x85333735, 0x2ad52f06, 0xeb2a8040, 0x2b80402b, 0x80562b01, 0x03835680, 0x2208b353, 0x829601d6,
0x00132179, 0x51073346, 0x152b0f80, 0x33033533, 0x35052335, 0x82131523, 0x01552d91, 0x18181256, 0x11aafe12, 0x96121819, 0x01210082, 0x18058456,
0x82093266, 0x962a241f, 0x84aafe96, 0x96562116, 0x2405534a, 0x01d601ea, 0x35e38280, 0x1300001a, 0x27070137, 0x012e2707, 0x013f3427, 0x3e171632,
0x474e3301, 0x36013c05, 0x7a011c15, 0x1f444c1b, 0x0d016253, 0x12321c68, 0x321c3212, 0x2a2f0142, 0x7216f4fe, 0x4c3905fd, 0x72491c3e, 0x3e191e3b,
0x18141418, 0x29324201, 0x0b012a4d, 0x0000000a, 0x24038201, 0x01c00100, 0x2ec78280, 0x0e110100, 0x34262201, 0x17323736, 0x85150735, 0x8233200b,
0x281f820b, 0x2b2b3f2a, 0xd50e121f, 0x2f088601, 0xf5fe8001, 0x3f2b2b1f, 0x7d07012a, 0x2a20be2d, 0x07211682, 0x05b745b2, 0x84eaff21, 0x000f224f,
0x8ab3861b, 0x11252449, 0x85270706, 0x2b27225f, 0x209b821b, 0x315088d0, 0x6917012b, 0x0e122115, 0x500136bc, 0x1b9bfe1b, 0x55856fcf, 0xfe9b5727,
0x691521f5, 0x21688217, 0x3b423528, 0x01eb2806, 0x000f0080, 0x82210015, 0xc4671861, 0x012e290b, 0x15330523, 0x37211533, 0x22083243, 0x55403523,
0x012105d7, 0x2a078580, 0xabd580fe, 0x409580fe, 0x53402b40, 0x2b230e62, 0x18c0d555, 0x270a1774, 0xd6010000, 0x05006b01, 0x25056754, 0x23271137,
0x51673337, 0x55402809, 0xeb556b6b, 0x82402a40, 0x00012602, 0x6baafe6b, 0x200a8355, 0x08bb4640, 0x09203b85, 0x3320a182, 0x15213b85, 0x21338523,
0x2f86aaaa, 0x8e09b367, 0x27252167, 0x083c4218, 0x33842720, 0x37220122, 0x0959ac18, 0x40203d85, 0x7388118a, 0x2201ab22, 0x0b20af82, 0x17257382,
0x27372707, 0x29478205, 0x62731707, 0x44441e62, 0x06853801, 0x06842220, 0x0584a620, 0xc0203788, 0x79833787, 0x012f0722, 0x17243d83, 0x1e448401,
0xc4202682, 0xc0200584, 0x44200584, 0x57440584, 0x01eb3509, 0x00100040, 0x0028001c, 0x2e212500, 0x013e2701, 0x36173237, 0x2505c14c, 0x32161425,
0x11823536, 0x010e2723, 0x82098205, 0x0e26081e, 0x07140701, 0xd6fe9501, 0x02013025, 0x1e224960, 0x6049221e, 0xfe300102, 0x18241986, 0x0e1a1e01,
0x54014936, 0xa2561912, 0x400c2405, 0x82243001, 0x0c0c211e, 0x24312a82, 0x18125430, 0x41271218, 0x48010117, 0x37121861, 0x22078248, 0x55131737,
0x03220a5b, 0xf7820700, 0x2111212e, 0x11211113, 0xfe800140, 0x2a012b80, 0x01210683, 0x06e05455, 0x2009eb42, 0x85298203, 0x24208425, 0x01000080,
0x05db7300, 0x0b009622, 0x520d4b6b, 0x79520c8b, 0x7352180c, 0x000b210a, 0x537f7619, 0x20078b6d, 0x6d5d8313, 0x37230f8f, 0x83152335, 0x0f976d03,
0x2a2a8f23, 0x0f9b6d2a, 0x2b2b0f28, 0x00808056, 0x00820007, 0x01bd0127, 0x0008007d, 0x0677751d, 0x4e004523, 0x09e76800, 0x16362735, 0x16013e17,
0x011e0706, 0x0e272606, 0x37362601, 0x8305012e, 0x06262413, 0x83071607, 0x36162512, 0x06272637, 0x1a821283, 0x076c4918, 0x07232a82, 0x83361716,
0x203a821f, 0x06565901, 0x59189d2b, 0x2e593535, 0x10232310, 0x2609882e, 0x11130801, 0x82180d16, 0x878420bd, 0x0b503008, 0x2711160d, 0x4e352315,
0x2d171716, 0x842d1212, 0x87cc2005, 0x4ad52015, 0x912105a7, 0x84488d16, 0x14422152, 0x18203682, 0xab203e82, 0xe7210887, 0x205a820d, 0x21628227,
0x498717c0, 0x71204f82, 0x00201587, 0x230c276b, 0x000d0007, 0x2205ed4b, 0x76211733, 0xab360569, 0x56402a40, 0x01d6aafe, 0x01182418, 0x6b6b0001,
0x181215ab, 0x36821218, 0x2008034d, 0x13261980, 0x2900260c, 0x11331101, 0x81241933, 0x5a272009, 0x232505c7, 0x33352317, 0x830b8223, 0xd5012607,
0x2b2a56fe, 0x23018355, 0x80555555, 0x55220382, 0x0584d555, 0xfe800126, 0x402a2aab, 0x2a277582, 0x6b8040d5, 0x6340552b, 0x802a086f, 0x0e000800,
0x37250000, 0x61832111, 0x15013f29, 0x35072707, 0x82617401, 0x5e37294b, 0x55966aeb, 0xd1feb37c, 0xa1264083, 0x6ba10ab4, 0xa482c080, 0x0000012a,
0xeb01e0ff, 0x1300a001, 0x4b183982, 0x0121128b, 0x834b18eb, 0x7e4b1812, 0x83002013, 0x204b8887, 0x2a4d8227, 0x010f1707, 0x012f0727, 0x70372737,
0x0f82061b, 0x11ed4b18, 0x052a6194, 0x1e3b0527, 0x3b1e3737, 0x09882705, 0x43377586, 0x3c3b4f12, 0x1f44114e, 0x4f11441f, 0x0c3c2d3b, 0x34181834,
0x862d3c0c, 0x3b0d2209, 0x21008200, 0x00820008, 0xc0012708, 0x0e008001, 0x20001700, 0x39002900, 0x4b004200, 0x00005500, 0x06222301, 0x15331507,
0x3d013e33, 0x07263401, 0x16772622, 0x82172005, 0x013e2408, 0x5f061416, 0x14220638, 0xa8650506, 0x012b2306, 0x2a822622, 0x63094378, 0x9d600831,
0x01232c08, 0x0e0bb7a6, 0x0b518001, 0x82a80f0f, 0x0e172a03, 0x0f0b770e, 0x0f0f170e, 0x2106850b, 0x1f83c3fe, 0x0b0e0123, 0x271d82b7, 0x0e0e0b66,
0x4c0f0f16, 0x06820a82, 0x0d847720, 0x010b0e27, 0x510b0f80, 0x21228580, 0x18820f4e, 0x830f1626, 0x010e170f, 0x82200382, 0x47200e85, 0x0f201c85,
0x0e234482, 0x83160f5b, 0x01422144, 0x16214983, 0x8321820e, 0x8200200e, 0x00052600, 0x01eaff00, 0x066f48d5, 0x001a2708, 0x00340027, 0x14162500,
0x2206010f, 0x3426012f, 0x3236013f, 0x0727011f, 0x35232717, 0x33373507, 0x17163237, 0xe3820e15, 0x3e352724, 0x87661701, 0x05e75a05, 0x09cb0123,
0x0a5a6a09, 0xb1b1972f, 0x262023b1, 0x174c0343, 0x1f01011f, 0x2904832e, 0x010c0a17, 0x0d140c01, 0x826ada0d, 0x0b0b220a, 0x262a82cb, 0x1a0c7c60,
0x181f0418, 0x2509deac, 0x3b0a0c01, 0x04840c0a, 0x0021a682, 0x24048401, 0x006b01f0, 0x089f8215, 0x012e213a, 0x36341135, 0x33173337, 0x21151632,
0x07213715, 0x9501010e, 0x1812c0fe, 0x2b801218, 0xfe191295, 0x6c012e95, 0x15170430, 0x01121801, 0x01181200, 0xd512192b, 0x110eb6ab, 0x260a0b78,
0x00060080, 0x8223001a, 0x010028f3, 0x07231533, 0x48072726, 0x8a6a05f4, 0x013e2306, 0x7e6a3337, 0x010f300a, 0xa2013717, 0x0c5a2233, 0x30243b12,
0x571d2301, 0x013e0509, 0x08022e3c, 0x120e1e2d, 0x12121c12, 0x0f3c0f7a, 0x5a2b8001, 0x01040c12, 0x2d1e2430, 0xfb500208, 0x231d2208, 0x05f37635,
0x23825020, 0x002bcf86, 0x07009601, 0x35010000, 0x8207010e, 0x00012f6a, 0x2a02785b, 0x6b016002, 0x5b78022a, 0xdf586049, 0x82e32008, 0x001c2427,
0x583b0032, 0x222208df, 0x2e5f2726, 0x46372005, 0x332205fb, 0x40822707, 0x011e1726, 0x0614011d, 0x08078342, 0x3e353733, 0x17163201, 0x1d062227,
0x2e353301, 0x5b0d0101, 0x79020279, 0x1d5d385b, 0x2f4b1722, 0x02026048, 0x5d434860, 0x504f3b0a, 0x94760a39, 0x090b0b08, 0x38048276, 0x32210108,
0x0c3c0122, 0x10013b11, 0x79029501, 0x02795a5a, 0x251b2c35, 0x066f6b2c, 0x4153022c, 0x6b534f4f, 0x080b01ad, 0x33820962, 0x0b08622f, 0x22191501,
0x101d1922, 0x0d15150d, 0x59b68210, 0xd6200623, 0x0836b782, 0x1d001000, 0x00002900, 0x16373437, 0x26020e17, 0x16373637, 0xc082010e, 0x010f262b,
0x32361714, 0x27353617, 0x06c05526, 0x3e2dcc82, 0x1809a501, 0x160f0115, 0x18157f0f, 0x2b078309, 0x024f5a26, 0x4c9a4c12, 0x5a4f0212, 0x8405b06b,
0x0bab3c05, 0x0c0e0508, 0x0c0f010e, 0x1708050e, 0x01610f0f, 0x2428152c, 0x28240c0c, 0x6c942c15, 0x0584050f, 0x74020021, 0x1f220a7b, 0xed460000,
0x012f210e, 0x084b5018, 0x012f3725, 0x46072707, 0x1f260ff5, 0x1a3f1a1a, 0x04824040, 0x01470785, 0x8aba200f, 0x823f201b, 0x20fb8a2b, 0x22fb8204,
0x83240018, 0x07172473, 0x183e1723, 0x27095a61, 0x37270737, 0x16011f36, 0x9525f78b, 0x2c822c82, 0x059d6c6b, 0xad280584, 0x08162c15, 0x6b071b08,
0x8120f58a, 0x40202482, 0x8405f76c, 0x16e22705, 0x0707152c, 0xf18c081b, 0x09000022, 0xca24f382, 0x9601d601, 0x0e240982, 0x1b001700, 0x28268582,
0x30002c00, 0x394b3400, 0x35232a06, 0x37352301, 0x27231533, 0x050e6305, 0x03163226, 0x05271533, 0x171e5d19, 0x011b0b39, 0x25201ba5, 0x2a25e5fe,
0x012a1940, 0x40402a83, 0x2a2a1812, 0x8480fe2a, 0x56aa2109, 0xd6200082, 0x2a250e84, 0xfe1b7001, 0x232b825b, 0x45251b01, 0x40282182, 0xfe182a40,
0x272a43d8, 0x01270883, 0xaafe2a92, 0x8200012a, 0x4f00202d, 0xd628081f, 0x13005601, 0x2d002000, 0xe4499b82, 0x22073708, 0x2e230627, 0x013e2701,
0x17011e17, 0x34012e37, 0x0e273736, 0x12821701, 0x011e0733, 0x17070614, 0x22c0013e, 0x40221e1e, 0x54010154, 0x2c098840, 0x14170135, 0x17171516,
0x17141615, 0x230b8a95, 0x0e0e5501, 0x2d822782, 0x942d0786, 0x0913341e, 0x2f382f11, 0x34130911, 0x200c8b1e, 0x33881800, 0x22978308, 0x82310022,
0x050f6197, 0x16373223, 0x05c64133, 0x2607222a, 0x0e173207, 0x17161401, 0x3720a686, 0x20055d57, 0x05ab6622, 0x8ec03621, 0x2da18497, 0x16140a0b,
0x0b0a1416, 0x01013d2d, 0x0584ad3d, 0x13862d20, 0x8c550121, 0x0e012a9d, 0x16022a0e, 0x15353c35, 0x0aa66803, 0x12860120, 0x20143b41, 0x08314125,
0x20092a4b, 0x08384127, 0x011e0722, 0x27200b82, 0x20083b41, 0x09324101, 0xc0210989, 0x209f8315, 0x20988415, 0x0a3c41b8, 0x3b412b20, 0x0329220e,
0x219a8215, 0x9a840216, 0x3b416a20, 0x412c201b, 0x1720153b, 0x850d2c41, 0x012e2295, 0x14364134, 0x28415e20, 0x1435240c, 0x82141717, 0x12304103,
0x23418e84, 0x0f162507, 0x0f2d322d, 0xcf410483, 0x1967420d, 0x22081b41, 0x82012e37, 0x0974420b, 0x41136742, 0x6742172a, 0x1b2b4110, 0x82000221,
0x42012000, 0x1e2005ff, 0x2816fd42, 0x3e171614, 0x27263401, 0x14ee420e, 0x1d234024, 0x0383231d, 0x94267790, 0x11113a24, 0x0483483a, 0x42080766,
0x3b2007cf, 0x42159541, 0xa4411dd1, 0x4222201d, 0xb2411adb, 0x19e3421a, 0x2219bf41, 0x4200002a, 0x334121eb, 0x16142106, 0x2020e842, 0x0650426d,
0x201ce442, 0x0a4d4215, 0x18000021, 0x200b6f57, 0x08cf6c0f, 0x17373529, 0x37013e03, 0x18012735, 0x08075e57, 0x3ec0c058, 0xd5950156, 0x17178e5b,
0x56805b8e, 0x12abfe56, 0x42694877, 0x00000100, 0xb601eaff, 0x14009601, 0x23370000, 0x35332737, 0x33151737, 0x15230717, 0x23151632, 0xeb333634,
0xa03535a0, 0x356b1515, 0x19126b35, 0xc0121980, 0x15553635, 0x35365515, 0x121218ab, 0x1b480018, 0x82c02008, 0x001e2743, 0x00260022, 0x42831300,
0x10603220, 0x7e478706, 0x3b320759, 0x21150701, 0x33150535, 0x1515eb35, 0x0c0c0996, 0x57849609, 0x6b310a85, 0x00ff0001, 0x15800195, 0x090c2b15,
0x010c09d5, 0x21658340, 0x0c840140, 0x2a2a4027, 0x002b2b55, 0x28b38204, 0x01c001d5, 0x00030080, 0x82b78210, 0x11012784, 0x07051117, 0x55822317,
0x3525bd82, 0x15033717, 0x08638417, 0x40800129, 0xa51b9bfe, 0x402a403a, 0x40ab1b50, 0x0140ebfe, 0x40e7fe80, 0x1b2b5901, 0x2b9095a5, 0x1c502565,
0x402f0f01, 0x4c40c06f, 0x40240993, 0x16000b00, 0x0ddf5218, 0x17332732, 0x23152137, 0x23272307, 0x1e3c3cfb, 0x3d1e3d3c, 0x3c2c0282, 0x393140ee,
0x3ddf0001, 0x59243634, 0x1e291387, 0x739a3c3c, 0x80ea2bde, 0x475e1800, 0x000d2a09, 0x002c001f, 0x003f0039, 0xa38c1800, 0x37240808, 0x23263435,
0x011e2105, 0x0e231517, 0x23150701, 0x1127012e, 0x2217013e, 0x17010e07, 0x34371716, 0x07012e27, 0x173a0c8b, 0x3e011e07, 0x2b1f7501, 0x80e01f2b,
0xf0fe1f2b, 0x15100a01, 0x2a202001, 0x0782c501, 0xc915012e, 0x0f0f0505, 0x45030104, 0x93130401, 0x042c0b85, 0x14030144, 0x3c16c3aa, 0x95012b40,
0xea2f3282, 0xe0802b1f, 0x012a2b1f, 0x01c51015, 0x8220202a, 0x3d448307, 0x1a04023a, 0x12040510, 0x0f0c0506, 0x1a050124, 0x1305050f, 0x0f0d0505,
0x1318363b, 0x78182f11, 0x2c0808a3, 0x00090080, 0x17330100, 0x21171507, 0x01371737, 0x6a6a2b40, 0x8056fe6a, 0x80014b4a, 0xe7442a2b, 0x00a165ab,
0xff000003, 0x01e301f1, 0x0675788c, 0x17130026, 0x17071737, 0x3007c84b, 0x27372707, 0x35370535, 0x27010f23, 0x17072707, 0x07107607, 0x2737173b,
0x1e2dfe84, 0x06064434, 0x07110610, 0x2d1e3444, 0x650b01fe, 0x3c2e653c, 0x21168d2f, 0x27848c01, 0x82110721, 0x44062728, 0xfe2e1e35, 0x2782a13c,
0x833da721, 0x82452027, 0x060f213b, 0x00231684, 0x82000400, 0x00023200, 0x20006b01, 0x2d002900, 0x00003600, 0x27332737, 0x30038523, 0x2137013e,
0x15173315, 0x22061423, 0x0e232726, 0x79058301, 0x3723099e, 0x79331523, 0x2a0808ab, 0x0d701040, 0x0da61068, 0x0150139c, 0x00011218, 0x242b4040,
0x55012437, 0x24362401, 0x40012b01, 0x1b12120e, 0x352d1212, 0x4be1fe5f, 0xa021057f, 0x29008320, 0x56011812, 0x241b6b55, 0x03831b24, 0x016b4b22,
0x1b242583, 0x8b35bf12, 0xa3860986, 0xca012d08, 0x19006101, 0x31002500, 0x00003d00, 0x06140701, 0x34262207, 0x013e3336, 0x26273735, 0x1f16013e,
0x013e3701, 0x2217011e, 0x1607010e, 0x2305575f, 0x07022e17, 0x16201182, 0x37211882, 0x08168226, 0x33011e3c, 0x26363716, 0x255d2101, 0x0d0d092f,
0x08141809, 0x11070353, 0x3e420310, 0x07110f04, 0x4d0b0667, 0x06580902, 0x03080a0b, 0x0208590c, 0x0b09064d, 0x05200407, 0x07075f0e, 0x0a820760,
0x01046c08, 0x2e05ee41, 0x0c120c03, 0x15031602, 0x061009ca, 0xa0a00906, 0x10060609, 0x093a0812, 0x04032702, 0xdf0b070d, 0x02260605, 0x08033a09,
0x7a0e0406, 0x070c0204, 0x0b020a06, 0x00000e06, 0x00000500, 0xf901dbff, 0x0d00a501, 0x1e001600, 0x2b002600, 0x07130000, 0x15070617, 0x23013533,
0x37173315, 0x15211701, 0x012e1117, 0x82150523, 0x2e3323b8, 0x07880701, 0x34335108, 0x191d2226, 0x012b0108, 0x29885944, 0x2f92fe1d, 0x012b0601,
0x55fe1218, 0x2b026c52, 0x2e648403, 0x022b013c, 0x24404054, 0x1620a501, 0x3b400f0b, 0x252bdbfe, 0x2b850120, 0x140127ed, 0x2b951813, 0x64526c02,
0x012a5384, 0x54402d3d, 0x241b4054, 0x200d1758, 0x27938203, 0x37000026, 0x37233533, 0x2105e24c, 0x9f181632, 0x27200975, 0x260ed656, 0x152a2aeb,
0x18013024, 0x200e6d9f, 0x09d266b9, 0x2b401934, 0x243001d5, 0x12181812, 0x21301f1c, 0x30242525, 0xd3181941, 0x57450c66, 0x01802506, 0x00090096,
0x0a8b6118, 0x55558024, 0x03820001, 0x08829520, 0x03838020, 0xd628a789, 0x13006b01, 0x3b002700, 0x3e22a782, 0x3e193701, 0x35200f5f, 0x2b2113a6,
0xc0ad1823, 0x2608ac07, 0x01191140, 0x82032503, 0x85402002, 0x19012306, 0x13a6c011, 0x3a0d736e, 0x00200005, 0x2500002c, 0x16352315, 0x26341332,
0x07062223, 0x16171606, 0x8216013b, 0x15072208, 0x23c98233, 0x36273435, 0x8406c05f, 0x014508d6, 0x7132d540, 0x0a1218c7, 0x050a0613, 0x050e0b0f,
0x0b3b251b, 0x3832160b, 0x02551111, 0x61484960, 0x48610101, 0x47326049, 0x56011d47, 0x09091812, 0x080b210f, 0x08338f49, 0x251b2607, 0x2d303f6c,
0x60496a0d, 0x83298702, 0x0007288f, 0x01eaff00, 0x59ab01e0, 0x132b083f, 0x24001b00, 0x27130000, 0x82371737, 0x0717249b, 0x82053727, 0x33213107,
0x21052315, 0x21171632, 0x1e13013e, 0x21151701, 0x80269f82, 0x772d1e2d, 0x0582c22a, 0x40d1fe3b, 0x40408001, 0x0001e0fe, 0xfe011812, 0x921801aa,
0xff014936, 0x01490100, 0x231e822d, 0x51404060, 0x98260682, 0xa02b2b2b, 0x21821218, 0x48014025, 0x6caaaa37, 0x0320054b, 0x012c8883, 0x004c01d6,
0x00110008, 0x3700002a, 0x0810dd6c, 0x17162721, 0x16323637, 0x1e010f14, 0x34211501, 0x26273736, 0x1f323634, 0x0cab3601, 0x0f170f0f, 0x840b9f0f,
0x30613a06, 0x11072e29, 0x2826070d, 0x2e56fe2e, 0x0d072628, 0x292e0711, 0x160f01cb, 0x2002820f, 0x23078601, 0x2e130161, 0x26271983, 0x3535591e,
0x83261e59, 0x132e2131, 0x200de352, 0x15315319, 0x37270725, 0x52173717, 0xe22514d5, 0x8d371e55, 0x133d531e, 0x1e563025, 0x591e8c37, 0x962009c3,
0x0d20e782, 0x4c835f82, 0x11331135, 0x15230737, 0xa9013521, 0x761ea9a9, 0xd58b762a, 0x82beaa01, 0x0175280a, 0x76d2fe2e, 0x902a2ac8, 0x82372037,
0x21072a83, 0x27172115, 0x33112335, 0x202b8bfe, 0x21438717, 0x7f5956fe, 0x05d34f08, 0x01216f82, 0x2a708217, 0x27213521, 0x11331517, 0x82020123,
0xfe752a2b, 0x752e01d2, 0x012a2ac7, 0x567d8969, 0x08250acb, 0x00000d00, 0x2938833f, 0x07112311, 0x21353337, 0x62895715, 0x418bc220, 0x37576f82,
0x000c2309, 0x2b820100, 0x2711332f, 0x27371707, 0xd5011107, 0x76c056fe, 0x262f821e, 0x2a6b0176, 0x86d1fe2a, 0x432f200b, 0xa38306ff, 0x05203382,
0x15219782, 0x82308221, 0x01212234, 0x22288bab, 0x86aa0115, 0x205a8240, 0x079f5700, 0x13223382, 0x96821123, 0x17226684, 0xc9825521, 0x5b852f20,
0x01d1fe23, 0x8e748895, 0x15372533, 0x11233521, 0x2105685c, 0x59882b11, 0x3d8b1520, 0x2808af49, 0x009601ab, 0x00200014, 0x25448228, 0x07271523,
0x655a2335, 0x2303230d, 0xd8663335, 0x27332e06, 0x3e352315, 0x01163201, 0x36358080, 0xcb771815, 0xab12320c, 0x24372416, 0x2b401501, 0x0c120c01,
0x20959501, 0x0cee5b20, 0x5680fe28, 0x24241b15, 0x0082151b, 0x820c0921, 0x07f741d8, 0x26207f85, 0x23227da0, 0x98822634, 0x99331521, 0x832b207b,
0x946b2078, 0x1c2a247a, 0x821c2424, 0x2a092376, 0xa3620000, 0x01cb2206, 0xbd8b1840, 0x217d8308, 0x01831707, 0x010e2325, 0x83352622, 0x053325e5,
0x27331523, 0x2b550386, 0xcb012208, 0x21008420, 0xed8201c0, 0x1801562e, 0x4b2b0112, 0x55556b4b, 0x20565675, 0x2105fd47, 0x20844001, 0xec832020,
0x18139524, 0x00833520, 0x1c124b23, 0x20028212, 0x06975800, 0x7b82eb20, 0x1b00172f, 0x23001f00, 0x30002700, 0x00003900, 0x267e8413, 0x011e3307,
0x86373632, 0x5b352005, 0x6d1805e3, 0x372408b5, 0x05271533, 0x07a74118, 0x08872120, 0x6f851520, 0x24012b26, 0x80012436, 0x2b200584, 0xfe249882,
0x56363695, 0x02829882, 0xfe363623, 0x058f48eb, 0x7c180120, 0xa48a07af, 0x3522a88c, 0x16542a75, 0x20b18706, 0x06fb7d00, 0x6b01eb26, 0x20001c00,
0x240ab751, 0x00410038, 0x23b9824a, 0x1507010e, 0x2b23b78f, 0x82333501, 0x052721be, 0x0a746e18, 0x2321be82, 0x06305807, 0xca900b84, 0x18124023,
0x21c78f01, 0xcc83562b, 0x56567523, 0x23cc8776, 0xeb555575, 0x2b200e84, 0x6b20d48e, 0xeb202982, 0x24076649, 0x35181340, 0x214f824b, 0x00853620,
0x21078841, 0x7d49121b, 0x21058205, 0xdf770000, 0x00402608, 0x001e001a, 0x06295a22, 0x22130023, 0x24d39106, 0x34352327, 0x22c1b326, 0x974b1218,
0x184023b2, 0xb1889513, 0x2a20ad82, 0x420e3142, 0x15201137, 0x23088b67, 0x0037002e, 0x2320a995, 0x420e7641, 0x6a411235, 0x41fe2013, 0x32420b65,
0x42aa8a11, 0x2f4208d8, 0x05b36013, 0x5601d62d, 0x18000f00, 0x30002100, 0x58003400, 0x1e2206b9, 0xba581701, 0x012e2107, 0x2005ba58, 0x23088727,
0x22233507, 0x088e0719, 0x25013d28, 0x01333523, 0x64446bab, 0x08068205, 0x1b481820, 0x24372424, 0x120d1c24, 0x12121b12, 0x1812ab83, 0x56011218,
0x00ff1812, 0x55018080, 0x2a891218, 0x8301a021, 0x24372228, 0x065e4b1f, 0x18d55624, 0x2e83d612, 0x6b402b23, 0x07ff4300, 0x6b01d622, 0x13309f82,
0x29001c00, 0x00003600, 0x011e2113, 0x06141115, 0x07b26718, 0x21111723, 0xe8871811, 0x82372008, 0x2e232cb7, 0x07062201, 0x17013e23, 0x4227012e,
0x0e2106ee, 0x08ea6001, 0xab208d85, 0x2d059142, 0x0833230e, 0x2a200722, 0x08220720, 0x0c8b2333, 0x186b0121, 0x270c104a, 0xff2a1812, 0x60000100,
0x2a05e641, 0x21290140, 0x13181813, 0x88bf2921, 0x5caf8209, 0xaf8705cb, 0x21001a28, 0x2f002800, 0xb3953800, 0x15330528, 0x2307010e, 0xaf821525,
0x17352729, 0x013e3523, 0x7f053337, 0x372005b6, 0x8e077043, 0xcafe2db5, 0x05140e76, 0x4f16014f, 0x760e1405, 0xfe210b84, 0x200b83ea, 0x95ce8515,
0x242021b4, 0x4b212d82, 0x2139824b, 0x0a89c024, 0x37448020, 0x82042009, 0x010021bb, 0x2022b787, 0xb1952d00, 0x5c410720, 0x2e554128, 0x4e412020,
0x084b5515, 0x4107ff41, 0x2b411dfb, 0x06e1410e, 0x41151241, 0xf78206c7, 0x31052b48, 0x009601ab, 0x1700002c, 0x07010e35, 0x06373634, 0x3e422726,
0x16362805, 0x37362617, 0x5a07011e, 0x0e8205b3, 0x010e5f08, 0x15011e27, 0x1527012e, 0x202307f5, 0x3f151613, 0x2e41022b, 0x04193a1a, 0x2c1b2963,
0x0e012506, 0x19046328, 0x412e1a3a, 0x153f2b02, 0x23201316, 0x0d631507, 0x27020c1c, 0x13070514, 0x0e041802, 0x30013f45, 0x0595533c, 0x3b1f7657,
0x453f0130, 0x0218040e, 0x14050713, 0x1c0c0227, 0xc760630d, 0x001d2c0d, 0x002f0026, 0x17070100, 0x50233523, 0xc0450576, 0x2327210f, 0x26116946,
0x35155501, 0x45c02055, 0x2d4413a4, 0x45102711, 0x18012020, 0xdd444012, 0x0606470b, 0x20062242, 0x20948305, 0x090b4701, 0x31002827, 0x21130000,
0x208a8217, 0x4f948317, 0x3e290a8e, 0x33151701, 0x33153335, 0xefcf1827, 0x01402411, 0x912b4015, 0xab072593, 0xc5296e20, 0x2005c042, 0x220685f2,
0x8b554001, 0x07c44491, 0x4206b242, 0x978908b8, 0x41056b45, 0x2320052b, 0x27131046, 0x23153325, 0x23173337, 0x47082944, 0x01230895, 0x466bd555,
0xfe2810ca, 0xa08055f6, 0x8074294b, 0x210eb846, 0x26418040, 0x0a31480c, 0x04209487, 0x2c082b41, 0x001a0016, 0x002c0023, 0x15230100, 0x10774723,
0x27232722, 0x75218e96, 0x208e90cb, 0x508a9395, 0x402509a8, 0x35011812, 0x17b34135, 0x1c001828, 0x29002000, 0x89823200, 0x2615b241, 0x2317013f,
0x41373307, 0x012114b4, 0x13b34155, 0x60401225, 0x41782850, 0x97831fb7, 0x35205522, 0xb9410082, 0x0723410d, 0x83000b21, 0x0025279b, 0x0100002e,
0x315f0723, 0x0e564905, 0x37252724, 0xb4411733, 0x6b002312, 0xf5821540, 0x20072f26, 0x8807202a, 0x2f290584, 0xfe101a01, 0x565530b0, 0x0eb441cb,
0x18360b24, 0xa9554012, 0x15142806, 0x15081211, 0x41202b2b, 0x034505af, 0x01c0240f, 0x8614002b, 0x13002995, 0x011d010e, 0x33171614, 0x35269383,
0x35233533, 0x27492634, 0x1e072208, 0x05c47e01, 0x19126b35, 0x012a1219, 0xab243724, 0xff12182b, 0xaa6a6a00, 0x6c405656, 0x012505f1, 0x1218012b,
0x24a78280, 0x1b24241b, 0x2508832b, 0x4040402b, 0x3c620155, 0x08536105, 0x1f005835, 0x00002300, 0x010f2601, 0x011f010e, 0x013f011e, 0x83151716,
0x08738279, 0x27023e25, 0x2f013e37, 0x07052601, 0x83013717, 0x0fb90c0c, 0x09200909, 0x09261021, 0x6e131810, 0x01110e6e, 0x82103608, 0xfe0c2a12,
0x3a4a5aec, 0x07015701, 0x201d826b, 0x2c128237, 0x26070f16, 0x2a011712, 0x1e1a0726, 0x2532830c, 0x0fae1437, 0x574d4681, 0x00952208, 0x3679820b,
0x1e150100, 0x07141701, 0x2e353617, 0x012e0301, 0x37013e27, 0x82010e35, 0x174808e0, 0x27373632, 0x1501010e, 0x0a014738, 0x6b021238, 0x01544068,
0x53384701, 0x7802026b, 0x1e59355b, 0x013c1438, 0x51094094, 0x21191d3a, 0x75552f28, 0x5401a1fe, 0x09513a40, 0x55750a40, 0x2f02785b, 0x1d1b2128,
0x04000000, 0x8506274d, 0x0030256f, 0x0100003d, 0x27207284, 0x27217283, 0x23668203, 0x23010e17, 0x15207a85, 0x13207a84, 0x2205e559, 0x82013e35,
0x07272f94, 0x34073627, 0x06173736, 0x17161415, 0x91822e15, 0x12228282, 0x8b820a38, 0x3c241527, 0x591e3814, 0x226e8235, 0x82536b02, 0x388182a8,
0x01014936, 0x18132f3b, 0x0c1b2401, 0x19681521, 0x180f2016, 0x013b2f13, 0x82968294, 0x1d192193, 0xfe23a282, 0x821b1dd7, 0x790225b3, 0x0a75555a,
0xda82c283, 0x4901143d, 0x08453136, 0x15200742, 0x0101241b, 0x1e800839, 0x12391332, 0x07201518, 0x82450842, 0x2ccb82b4, 0x01d60100, 0x0007004b,
0x17013f00, 0x30988237, 0x55804b07, 0x55971eb5, 0x558035a0, 0x55ab1fcc, 0x202382a0, 0x3cef8206, 0x01ab01ec, 0x000e0096, 0x002a001d, 0x00450038,
0x01000053, 0x1d011e37, 0x27260601, 0x24cb8335, 0x16322737, 0x20e58217, 0x21448207, 0x42603736, 0x221b8705, 0x83273706, 0x32352812, 0x17161517,
0x8207010e, 0x081a9626, 0x197b0135, 0x950b0d0a, 0x1f0a0b0b, 0x23192a21, 0x07181004, 0x2421261f, 0x0e06210e, 0x29530456, 0x0b0a960a, 0x0a071d09,
0x05200e24, 0x0f111a0f, 0x6a1a1005, 0x82295403, 0x0c310830, 0x09061c09, 0x05210d23, 0x0e12190f, 0x011a1006, 0x14051000, 0x5d04fb0c, 0x140b168c,
0x80150f05, 0x16051820, 0x1515130f, 0x0d0c1f12, 0x657c8001, 0x221a861a, 0x84290a0e, 0x822a2012, 0x050d2333, 0x1998511c, 0x2205f741, 0x418001ec,
0x03410a07, 0x50012439, 0x840c0a1a, 0x221f22b7, 0x24e8832b, 0x251f0619, 0x23c08422, 0x2a530355, 0x0b211982, 0x84d1820a, 0x821920f9, 0x1b0f21e8,
0x0028d1b7, 0x00000200, 0x5601ecff, 0xb39eb786, 0x82250121, 0x960a3598, 0x20090b0a, 0x24192b21, 0x07191003, 0x24212520, 0x0f05200e, 0x0020819d,
0x2c05df48, 0x6b010002, 0x31001200, 0x00005000, 0x05024337, 0x37013e22, 0x08c97c18, 0x2223273e, 0x2e013d26, 0x15012b01, 0x16141533, 0x1d010e33,
0x33152301, 0x35373632, 0x013b3634, 0x2306e273, 0x013b011e, 0x08059f44, 0x3d363220, 0x23353301, 0x15070622, 0x80230614, 0x01014936, 0x4a153140,
0x0c563b2f, 0x0101382a, 0xa8822e3c, 0x18010c35, 0x19202012, 0x20191212, 0x01181220, 0xfe0b090c, 0x90090bea, 0x02153915, 0x46333648, 0x012f2706,
0x04384701, 0x3d2d2b3c, 0x090cab01, 0x2a181216, 0x42820382, 0x192b152f, 0x0c091512, 0x090c2b2b, 0x2b191215, 0x234a8215, 0x2a161218, 0x09210382,
0x22db8c0c, 0x951e0018, 0x180720db, 0x92098a82, 0x62d321a9, 0x09978218, 0xf8208b92, 0x1e261e84, 0x1e44441e, 0x73690062, 0x822b2008, 0x0c280879,
0x35250000, 0x27251533, 0x14161733, 0x0123010f, 0xf5feab15, 0x096a5a80, 0x2b5b6909, 0x80804040, 0x091a0a6a, 0x06000069, 0x20069744, 0x28338296,
0x00170013, 0x0020001c, 0x23a98239, 0x27171623, 0x30058341, 0x010e3736, 0x27012e07, 0x23351716, 0x23353707, 0x82048206, 0x33152303, 0x038b2315,
0x011e2908, 0x35013e17, 0x2feb012e, 0x0656151a, 0x3b2b2b3a, 0x513a3005, 0x2c55592b, 0x3b863a54, 0x082a4005, 0x0e123705, 0x2b151535, 0x2b3b7e82,
0x02171326, 0x30021311, 0x391410c0, 0x01016b54, 0x0117546d, 0x0b0bc134, 0x830134c1, 0x132b2920, 0x0b254018, 0x152b2b1a, 0x17290185, 0x521b142f,
0x006b4e32, 0xc77b1800, 0x00112309, 0x838b1300, 0x23352334, 0xeb953335, 0x2bababc0, 0x2a2a2b2b, 0x802b8001, 0x6b83402a, 0x85273386, 0x18008001,
0x83330000, 0x27352126, 0x27222b82, 0x506e1733, 0x84072005, 0x6beb3dc7, 0x4459126b, 0x55553049, 0x59444930, 0x6b6b6b12, 0x2b24072a, 0x95afaf95,
0x2a07242b, 0xcf417a82, 0x8b012305, 0x9f555601, 0x13002506, 0x17211521, 0x07208382, 0x80300782, 0x00ff0001, 0x20d6d615, 0xeafe1601, 0x562a5501,
0x00200182, 0x7bc1af87, 0x3507574d, 0x001f0080, 0x00260023, 0x002d002a, 0x00340031, 0x17331300, 0x03843733, 0x89830720, 0x23230383, 0x82072327,
0x33352103, 0x1729e583, 0x07330723, 0x23372337, 0x84ee8217, 0x07272806, 0x1d2a2b33, 0x82381d55, 0x1c2a2a03, 0x2f09261c, 0x1c391c39, 0x31038256,
0x26092f39, 0x0930d11c, 0x1d0f8542, 0x2f0a4330, 0x06840eb0, 0x1c0e7b24, 0x00848001, 0x2b2a2b22, 0x06820783, 0x6b2a2b24, 0x03845540, 0x82409521,
0x02002be6, 0xe9ff0000, 0x9701d801, 0x9d821a00, 0x3425003c, 0x27372726, 0x07222607, 0x06170727, 0x17071714, 0x37321637, 0x3e273717, 0x537d0701,
0xd5013a0a, 0x2c2a1416, 0x3b883b2a, 0x292b2e2a, 0x2b2d2a2a, 0x2b3a893a, 0x14142a2c, 0x050062d5, 0xc0230584, 0x851c4122, 0x292a851f, 0x29292a2d,
0x1c2a2d2a, 0xf4617341, 0x20058405, 0x09ff4200, 0x10008028, 0x00001400, 0xa1422137, 0x26222805, 0x07233527, 0x82233727, 0x40212110, 0x1238c984,
0x63380118, 0x2b6c5725, 0xd6fe2a01, 0x2b802ad5, 0xab801219, 0x2bd59615, 0x220a0f43, 0x1813000f, 0x50089580, 0x1e2f05b9, 0x3e211701, 0x2e353701,
0x21052301, 0x50072115, 0x34210b01, 0x20138426, 0x05f94b37, 0x54803521, 0xff260d6f, 0xff000100, 0x82182b00, 0x12200810, 0x15271085, 0x01552b55,
0x18121895, 0x25094b49, 0x1840ab2a, 0x27834013, 0x18134026, 0x2030402b, 0xdf6a0082, 0x006b3008, 0x001f000f, 0x0033002f, 0x003b0037, 0x82331300,
0x0e112590, 0x2e230701, 0x5006d167, 0x0f920615, 0x3e112728, 0x35330101, 0x03823723, 0x03821320, 0x09554027, 0x0c01010c, 0x26068209, 0x09569e0c,
0x83090c0c, 0x839f2004, 0x8213830e, 0xf3fe2b1a, 0x2a962b2b, 0x2b2b952a, 0x28826b01, 0x85d6fe21, 0x2a012130, 0x0f9b0785, 0x6bd6fe28, 0x00ff6b2a,
0xff42006b, 0x01cd3908, 0x0022004b, 0x012f2500, 0x22272635, 0x0623010f, 0x1606010f, 0x013f1617, 0x08062f41, 0x013f3643, 0x3e331617, 0xc7013401,
0x0a014601, 0x8a4e0404, 0x05390d17, 0x0c0c0802, 0x406a4016, 0x2b1e0c01, 0x0d0a0505, 0x154602e3, 0x4704010a, 0x07391301, 0x08080611, 0x55557e14,
0x1e0c126e, 0x0d010315, 0x08634912, 0x0b009628, 0x1d001400, 0xf1672600, 0x012e2208, 0x0a8c6827, 0xbc772320, 0xba6a1807, 0x66002009, 0x5b200a25,
0x20053b4b, 0x05225583, 0xc251dd20, 0x0c616e05, 0x394bb320, 0x0c3f4b0b, 0x01eaff24, 0x7f8a01d6, 0x2e06417d, 0x2e07010e, 0x16143701, 0x26343632,
0x87150622, 0x87352008, 0x022b2308, 0x81875b78, 0xc0205c92, 0x79199d9f, 0xa62e09cf, 0x36002a00, 0x00003f00, 0x2e272225, 0xf8822703, 0x3e352627,
0x17163201, 0x05eb6833, 0x1e171625, 0x411e1703, 0x372f056c, 0x03061423, 0x14010e27, 0x2e371716, 0x82363401, 0x08a08517, 0x0a6b0138, 0x11110b07,
0x190d0f1b, 0x3c01110c, 0x2b013b5c, 0x41405401, 0x16010253, 0x121b200f, 0x161b0a05, 0x30241310, 0xda182b01, 0x2525201e, 0x1d1b1e20, 0x1e016c1e,
0x02821e2d, 0x05041532, 0x0b1c3016, 0x2014180a, 0x3c3c2e1f, 0x0154402e, 0x26083b82, 0x1f1a292a, 0x1d0f1314, 0x01070b24, 0x18122430, 0x201e7201,
0x20556255, 0x50461a1e, 0x1e176e46, 0x1e1e2e1e, 0x82000100, 0xd6012500, 0x1d005601, 0x0624bf82, 0x2e352722, 0x0e227882, 0x24420701, 0x17323207,
0x32011e15, 0x23013d36, 0x1301a001, 0x21330201, 0x228582b5, 0x82556b55, 0x24012a0c, 0x75352437, 0x1f960909, 0x3761822b, 0x605555d5, 0x1c200909,
0x2a1c2424, 0x00000200, 0xd801d7ff, 0x1600a801, 0x222b5984, 0x013f2726, 0x012e2726, 0x7d010e07, 0x33080530, 0x010e2737, 0x17163227, 0x01013e07,
0x11331e00, 0x140164d5, 0x5253a32a, 0xa22a2639, 0x10352354, 0x1e341063, 0xd311321c, 0x1c4b4007, 0x2f153019, 0x25385229, 0x112c1f85, 0x19182337,
0x1719ea1c, 0x00372c34, 0x200aaf53, 0x26758240, 0x00090006, 0x8213000d, 0x37272acb, 0x07173723, 0x33350705, 0x087a8207, 0x23071723, 0xd5013727,
0x55954040, 0xebfe5540, 0x55409540, 0x6b55c040, 0x2b556b2a, 0x55802b2a, 0x552a1640, 0x25128215, 0x2b95952b, 0x13410500, 0x826b2006, 0x82192047,
0x002626bd, 0x1300002f, 0x067d5415, 0x29077e57, 0x1727013d, 0x23353311, 0x504f0711, 0x5333200b, 0x80290742, 0x2418122b, 0x2a012437, 0x28058201,
0x4a6a6b55, 0x95464feb, 0x05d84235, 0xe642b820, 0x6b012505, 0x56121896, 0x2a07ff50, 0xfe16c056, 0x0a0120d6, 0x5636a00a, 0x83560880, 0x84042005,
0x01ab298f, 0x001b0096, 0x0033001f, 0x1328f482, 0x011f3233, 0x013b3637, 0x16240682, 0x010e1115, 0x0806426b, 0x27013f3c, 0x33151723, 0x23270735,
0x07151715, 0x33373315, 0x27353317, 0x23353735, 0x1533010f, 0x09404023, 0x0d112d06, 0x0e108011, 0x18010d15, 0x1912d512, 0x3726100d, 0x2a7880ab,
0x02822a1e, 0x1e2b4423, 0x3302822b, 0x012b2b37, 0x102c0695, 0x0e150d0d, 0x12ebfe10, 0xea121919, 0x27243582, 0x802a2a16, 0x44201e82, 0x2a3b2c89,
0x0200002b, 0xfeff0000, 0x8101c001, 0x44003b00, 0x3e130000, 0x0e161701, 0x41140702, 0x3e2e06e7, 0x011e3701, 0x1e010e15, 0x33373602, 0x13432335,
0x0f062605, 0x22010e01, 0x081b8226, 0x35013e97, 0x0e07012e, 0x07060701, 0x27262213, 0x0e373634, 0x140b6201, 0x0d080805, 0x0c1d0333, 0x1f110f1d,
0x142f1411, 0x373b0c19, 0x3f3a2601, 0x01353409, 0x38242f26, 0x16110a0d, 0x060e0d04, 0x0d08190c, 0x1024020f, 0x0b052015, 0x0a05eb07, 0x05211c01,
0x0c2d011c, 0x14040210, 0x2a295412, 0x05050916, 0x19171f05, 0x1801022e, 0x3a480d0d, 0x4b390225, 0x023a1d35, 0x0d112a01, 0x0d051914, 0x0c2c2517,
0x22151f12, 0x1401011c, 0xfe090b06, 0x0b0808e3, 0x202b0b25, 0x0bdb4600, 0x1b000c31, 0x32010000, 0x14111516, 0x11012b06, 0x6f333634, 0x3b320635,
0x36343501, 0x0111013b, 0x19191295, 0x12195512, 0x088600ff, 0x48184a20, 0x012a07b2, 0xfe191255, 0x2a121980, 0x09821912, 0x974eff20, 0x44eb2008,
0x13200bb3, 0x0abd4a18, 0x52084b5a, 0x501808ca, 0x952c081e, 0x02024836, 0x48373648, 0xff480101, 0x2f054442, 0x24241c6d, 0x1b242437, 0x3f2a2a20,
0x95012b2b, 0x0aa74a18, 0x26455420, 0x832b2005, 0x2437231f, 0x20830195, 0x442a3f21, 0xe02a05b7, 0xab01c001, 0x23001300, 0xb1452800, 0x14152305,
0x92592707, 0x06222c05, 0x013e2707, 0x27070107, 0x56273523, 0x3e080526, 0x17273734, 0x33011d06, 0x6c520001, 0x55750b02, 0x20405401, 0x1b1e1537,
0x7a019c46, 0x8025351b, 0x01241b40, 0x034e2c0c, 0x02ab014f, 0x1496516d, 0x2b19750f, 0x1802543f, 0x1e1b1f16, 0x8386fe35, 0x01a52c22, 0x23961b24,
0x104e2c20, 0x84002b11, 0x08778283, 0x2b01962d, 0x15000b00, 0x00001f00, 0x33153313, 0x23153335, 0x23152335, 0x011e3337, 0x0614011d, 0x32372307,
0x2e353736, 0x15012b01, 0x822b2a6b, 0xaa2a2200, 0x22ef8240, 0x4740401c, 0x15250511, 0x56562b01, 0x820282d6, 0x8256205c, 0x0c2b2683, 0x0c095609,
0x05634180, 0xe32d5f82, 0x3f008f01, 0x51004800, 0x00005a00, 0x22598225, 0x45173735, 0x0722056e, 0x69180717, 0x15220bf6, 0x9c7f3727, 0x37332205,
0x2b838317, 0x36342622, 0x013e013f, 0x011f1632, 0x1f259582, 0x06141601, 0x07da4325, 0x2008e343, 0x30118727, 0x9626d101, 0x19130f3c, 0x01192619,
0x0d0b2002, 0x23088301, 0x02200b0d, 0x193d0883, 0x963c0f13, 0x0a0a0725, 0x0b05ba08, 0x56050b0a, 0x050c3c2a, 0x08c8fe0a, 0x0b100b0b, 0x2006860b,
0x270d8558, 0x3c47abab, 0x19261a03, 0x21243382, 0x0d150675, 0x13255282, 0x7506150d, 0x365c8421, 0x473c031a, 0x0c0701ab, 0x0806ba07, 0x15550608,
0x060d3b40, 0x83150106, 0x84498246, 0x0b6d2602, 0x110a0a11, 0x083f690b, 0x06008028, 0x1e001300, 0xd6182700, 0x5a180cd9, 0x172b08d2, 0x0717011e,
0x27072226, 0x8817013e, 0x004308cc, 0x2a0140d5, 0x4126d540, 0x35131a19, 0x1a13353c, 0x17264119, 0x141a0f27, 0x0f1a143e, 0x150f1727, 0x15151e15,
0xabc08001, 0x1b014bab, 0x16141a18, 0x181a1416, 0x1001461b, 0x1414190f, 0x47100f19, 0x82141e14, 0x08ef5102, 0x10009624, 0x7f821b00, 0x22012e2d,
0x1e14020e, 0x023e3202, 0x41072634, 0x352d05ea, 0x01173723, 0x564e1e97, 0x20203d4e, 0x2906853d, 0x4b404b4b, 0x01a0952a, 0x12881f57, 0x79271983,
0x806b6b80, 0x45009595, 0xf137069f, 0x07001e01, 0x17000f00, 0x5e005100, 0x35370000, 0x1733013f, 0x8527020f, 0x260d8406, 0x07370715, 0x82272606,
0x06073101, 0x17161415, 0x23013f16, 0x36013f26, 0x37363337, 0x17200182, 0x07241182, 0x22010f06, 0x06212182, 0x82018207, 0x87262007, 0x27172318,
0x1383012e, 0x5f082382, 0x05383637, 0x04015202, 0x05017602, 0x02016803, 0x02033502, 0xbc02012e, 0x02030226, 0x14150704, 0x180d1117, 0x072c0610,
0x05010c02, 0x180b0549, 0x1b1f2328, 0x17200505, 0x18201220, 0x05050511, 0x1c222918, 0x18040419, 0x1c202818, 0x7f010912, 0x111a0401, 0x0c030721,
0x1b13130c, 0x010601e4, 0x15200282, 0x02220382, 0x06830105, 0x43080982, 0x01010a2e, 0x0a040502, 0x0e1c0f0e, 0x12020314, 0x19060108, 0x0f0f0103,
0x13070620, 0x202e2112, 0x14020617, 0x0708140f, 0x14060521, 0x1d261f14, 0x12070721, 0x2303140c, 0x03111107, 0x170e2107, 0x0e090806, 0x2d080343,
0x006501d6, 0x002c0013, 0x003c0035, 0x67440100, 0x33152705, 0x17373635, 0x7b452733, 0x16322d05, 0x07061417, 0x2f262726, 0x37361601, 0x2328f682,
0x35012e15, 0x3317013e, 0x0e241982, 0x07232701, 0x2e080883, 0x00012306, 0x0102795a, 0x1b494c62, 0x32521e18, 0x7902221f, 0x01564439, 0x0203181b,
0x04070706, 0x3a040437, 0x32299304, 0x2c485c01, 0x82011201, 0x2c3b0802, 0x08051401, 0x01141104, 0x3d510164, 0x2d0a4d35, 0x3707032d, 0x1e341453,
0x3036513d, 0x0c261c32, 0x02030201, 0x2e170102, 0x9902152e, 0x291e2e0c, 0x0f055438, 0x3501070f, 0x82030608, 0x06e741be, 0x80015632, 0x0c000300,
0x1e001500, 0x00002400, 0x03330313, 0x22089855, 0x55011e17, 0x1188050d, 0x07170731, 0xd5372733, 0x362aaa2a, 0x0d090907, 0x551c0909, 0x0d200512,
0x21052d45, 0x19822a3d, 0x80012a27, 0x1501ebfe, 0x221e833b, 0x553a090d, 0x4a200616, 0x2f052d45, 0x2b2b2a6b, 0x0600002a, 0xfbff0000, 0x8501c501,
0x0c71a618, 0x01130026, 0x27371737, 0x01250384, 0x07173707, 0x230d8227, 0x2737011f, 0x3c240387, 0x1e100001, 0x0f2a0085, 0x3c3cfffe, 0x1ea63dc5,
0x12831f1f, 0x15820f20, 0x01230383, 0x83fffe0c, 0x2c0e8207, 0x0001101e, 0x3dc43c78, 0x1e1f1fc5, 0x200f824c, 0x8603864b, 0xeaff23fb, 0x577d8001,
0x4633200e, 0x222e0782, 0x34113526, 0x33111736, 0x15330711, 0x03823523, 0x03821520, 0x12aaab25, 0x85121919, 0x2b802304, 0x0082562b, 0x64610120,
0xfe2a2a0c, 0xc05601aa, 0x2020eb56, 0x20648220, 0x22e38209, 0x8ceb01ea, 0x00232763, 0x002b0027, 0x6618002f, 0x6b831069, 0x6f8e2120, 0x7b8a1720,
0x537c4020, 0x18122d09, 0xe7180101, 0xab80feab, 0x552a2a80, 0xd5220082, 0x05822b2b, 0x8b925520, 0x35208f89, 0x03209585, 0x96209384, 0x08239382,
0x82001400, 0x440120a5, 0x37240796, 0x0e17011e, 0x8306c94e, 0x16062908, 0x27013e17, 0x0001012e, 0x2605ca4a, 0x01544017, 0x82098309, 0x54013202,
0x013d2d40, 0x4d4d2103, 0x3d010321, 0x2e1e3501, 0x2002821e, 0x35168260, 0x0707b35b, 0x54405bb3, 0x2d3d0129, 0x6969580e, 0x3d2d0e58, 0x73850000,
0x01c52308, 0x001a009b, 0x0026001e, 0x03070100, 0x011e1506, 0x36322133, 0x012f3437, 0x37231707, 0x13230727, 0x06821733, 0x35371526, 0x07270717,
0x37260a82, 0x60490001, 0xaf750102, 0x02270806, 0x5104211d, 0x515b1e3d, 0x2220484b, 0x9620591d, 0x3c1e0f3c, 0x013c0f1e, 0x98fe149b, 0x18120604,
0x04061218, 0x8216216d, 0x16012a22, 0x326d2374, 0x3bb020d0, 0x1823843d, 0x20091ff7, 0x208382ab, 0x20f7820c, 0x2083841c, 0x31828607, 0x33070327,
0x23352313, 0x15132315, 0x35331523, 0x79823523, 0x87016121, 0x61012b79, 0x5a4b486d, 0x165a5a2a, 0x6d831656, 0x83079521, 0x01072e6c, 0xeafe1c6b,
0x00016b6b, 0x552b2b55, 0x9f801800, 0x00112e09, 0x00190015, 0x1300001d, 0x011d0622, 0x24e78707, 0x23012e11, 0x0a8c6107, 0x1912ab23, 0x2561882b,
0x2bc01218, 0x0284402b, 0x18950126, 0x962a9612, 0x2107564f, 0x0083562a, 0x02000023, 0x27008200, 0x8001d701, 0x23001100, 0x3b085b82, 0x010f1617,
0x012e010e, 0x2627013f, 0x36013f36, 0x013e0516, 0x011e011f, 0x1617010f, 0x2f26010e, 0x79372601, 0x7e05057a, 0x021a230c, 0x0a58580a, 0x0f030d02,
0x0b190123, 0x0d030f23, 0x2d081085, 0x7e0c231a, 0x6c010505, 0xa90706a5, 0x2118010d, 0x0e75760f, 0x0b020c22, 0x050e0e05, 0x220c020b, 0x0f76750e,
0x0d011821, 0x000607a9, 0xc7670000, 0x0b074e05, 0x38002f24, 0x8d4e4100, 0x010e210e, 0x2405fd4d, 0x011e0607, 0x229d823e, 0x822e0506, 0x210b83a5,
0x0f831605, 0x16010e23, 0x21078517, 0x7918011e, 0xf57c086c, 0x425b200c, 0xb925056c, 0x262b1407, 0x2603820e, 0x26073d01, 0x820e142b, 0xf3fe3303,
0x061a2a13, 0x071b2a25, 0x1b0712da, 0x1a07242a, 0xd54e522b, 0x0cc74e05, 0xb34d2820, 0x16752c06, 0x2c130e26, 0x15130e25, 0x840d1315, 0x0da92342,
0x41842507, 0x2a0e0e29, 0x2a1a0625, 0x4eb70725, 0x052009e7, 0x45083354, 0x27220509, 0xdb853300, 0x21069160, 0xb882013e, 0x22263425, 0x48161406,
0x142206e1, 0xea482316, 0x16142305, 0x204c021f, 0x3f272205, 0x2fcc8401, 0xaafe1218, 0x78021812, 0x1818125b, 0x7d181824, 0x19250683, 0x1912c419,
0x2b0d8219, 0x01021bbd, 0x12641218, 0x1b020118, 0x0982b984, 0x5b231082, 0x83017e78, 0x1824222c, 0x20258356, 0x242b8424, 0x5f401924, 0x233d820c,
0x005f0c12, 0x4f053345, 0x1824078b, 0x29001c00, 0x28050178, 0x012e2137, 0x22010e27, 0x23048226, 0x17011e37, 0x1324b188, 0x37330723, 0x27249b85,
0x023f012e, 0x2007cc45, 0xc7571827, 0x56012f08, 0x03384701, 0x03182018, 0x5baa4738, 0xb8870278, 0x12407b26, 0x06150e64, 0x0a25a884, 0x1b041112,
0x20bb8595, 0x2ac98598, 0x0f593dc0, 0x10151510, 0x8498590f, 0x840120e4, 0xc2fe25bf, 0x144b6b40, 0x0125ae82, 0x60121d05, 0x82cd86ab, 0x21f4821b,
0x5b7a1824, 0x01d62608, 0x00090096, 0x26bf8213, 0x002f0025, 0x82233700, 0x3e3524bd, 0x82333701, 0x150721be, 0x3322bf82, 0x45420711, 0x06222205,
0x079c4405, 0xa3521720, 0x23273705, 0x1f3ed611, 0x2b01012b, 0x2f3e3e1f, 0x3d01013d, 0x178c612f, 0x02821722, 0x820b0121, 0x1825239b, 0x16850318,
0x820d4521, 0x82d02023, 0x8222202a, 0x83d02023, 0x80aa2413, 0x82161611, 0x1851212a, 0x25222582, 0x1786ea18, 0x56fe2608, 0x00000300, 0xaf01e9ff,
0x17009701, 0x27001f00, 0x32010000, 0x17371716, 0x15011e07, 0x2207010e, 0x27072726, 0x05b04737, 0x19820e82, 0x82032621, 0x2d15828d, 0x1e000116,
0x22241635, 0x0215122b, 0x0a8a4960, 0x01493627, 0x21b61701, 0x2c07862d, 0x15179501, 0x1c361a2e, 0x795a2744, 0x200a8902, 0x25348228, 0x23ea2b38,
0x0886abfe, 0x00820020, 0x8b820c20, 0xab01ea3c, 0x0f009601, 0x20001b00, 0x2a002500, 0x3a003200, 0x47004200, 0x51004c00, 0x42185500, 0xb0181185,
0x17250b6f, 0x26330706, 0x28048227, 0x17163736, 0x06072633, 0x22058214, 0x83333734, 0x34362707, 0x14163327, 0x07823307, 0x17160723, 0x210c8226,
0x19823617, 0x37360726, 0x23153307, 0x200edd53, 0x205f1880, 0x070d370b, 0x1e2a0628, 0x41061f10, 0x101f0609, 0x2402028d, 0x02160101, 0x05823202,
0x24010136, 0x109d0202, 0x1706091e, 0x060e0d07, 0x1e090617, 0xd6d6b510, 0x200d8a46, 0x08197b40, 0x143c2d34, 0x0f171714, 0x12141c0a, 0x301b1412,
0x0b0b160a, 0x05830b15, 0x820a1621, 0x160b2808, 0x0b1b400a, 0x82171412, 0x12142524, 0x2a6b1b0b, 0x2a06674b, 0x002b01b6, 0x001d000d, 0x82360021,
0x010e21ff, 0x2505bf5d, 0x33352335, 0x0d873335, 0x3d013e26, 0x27263401, 0x3721cb83, 0x24d08215, 0x15070622, 0x7c228333, 0x2326058e, 0x1919126b,
0x00824012, 0x2a200783, 0x2a2f0484, 0x20406a2a, 0x6001120d, 0x120e2040, 0x5d010e12, 0x2b2107d6, 0x20098780, 0x05e75d01, 0x60802b27, 0x0e122020,
0x82048340, 0x0000212a, 0x210a576a, 0xf94c001d, 0x256b8305, 0x2327012e, 0x684d2335, 0x2b838205, 0x3317011e, 0xd5013315, 0x2a2a802a, 0xab214982,
0x2908882a, 0x2a402a95, 0x0118126b, 0x0887aa2a, 0x200c4f6b, 0x22e98210, 0x83150100, 0x832320df, 0x33152105, 0x15204a82, 0x82051d43, 0x8213845d,
0x55012267, 0x205183aa, 0x204882ab, 0x255f8756, 0x2b0001aa, 0x5782152b, 0x40221082, 0x63854080, 0x2b2b1522, 0x04215f82, 0x07d76a00, 0x11000822,
0x2d206182, 0x0a4d9118, 0x6f09734d, 0x59180e84, 0xa0200bf7, 0x20056f45, 0x280685ce, 0x144c01f8, 0xfe141b1b, 0x200582b4, 0x0aa57aba, 0x5545e020,
0x20058505, 0x202086b5, 0x222c8314, 0x1960022a, 0x4408ae53, 0x032b0c0f, 0x0b000700, 0x27001b00, 0x68250000, 0x27210aa0, 0x3aaa1822, 0x4223200c,
0x012a0be9, 0xb54b4b35, 0x2a6b4b4b, 0x7f82912a, 0x1b225e84, 0x868aa614, 0x30309b26, 0xaa55d530, 0x13297fa6, 0x23001f00, 0x00002b00, 0x417f8313,
0x07201a03, 0x072b1f82, 0x16323634, 0xab23011d, 0x41512a2a, 0x1e2b1604, 0x124b2a2a, 0x0140121c, 0x97d56b2b, 0x55492882, 0x12120e66, 0x4100100e,
0xa02e0afb, 0x22001b00, 0x23250000, 0x3727012e, 0x05850727, 0x0e23262e, 0x1e230701, 0x33151701, 0x27013e35, 0x42080882, 0x01013e23, 0x100531d5,
0x4524490b, 0x13070c06, 0x12121129, 0x310f593c, 0xaa394601, 0x2ad44639, 0x0dee0d40, 0x2112d540, 0x6d17740d, 0x4d030705, 0x0104490b, 0x67423847,
0x1b26261b, 0x2f019867, 0x6b2f2626, 0x04220bff, 0x73821e00, 0x33372725, 0x4a010f17, 0x37200a06, 0x0d5dea18, 0x66225527, 0x241a0a22, 0xd75b182a,
0x242a2507, 0x01342b1a, 0x2a05d341, 0x77eb3401, 0x24333333, 0x51293e0f, 0x29260543, 0x15240f3e, 0x32703451, 0x51342205, 0x08ef6c00, 0x22054348,
0x485b0019, 0x132c0d3b, 0x06020f16, 0x26010e07, 0x3733023e, 0x2505b052, 0x1617010e, 0xfa82011f, 0x1716063d, 0x27023e16, 0x011e1736, 0x3e16020e,
0x26363701, 0x27070627, 0x2627012e, 0x82363736, 0x07062c1c, 0x26272606, 0x021e0607, 0x473e3736, 0x7d560583, 0x304f0807, 0x01010505, 0x160a0604,
0x1818050b, 0x4d09b201, 0x15351b2e, 0x08020e18, 0x2f072f1c, 0x070b080b, 0x02172716, 0x1b140d06, 0x06080312, 0x01100601, 0x181d1f01, 0x2d15010a,
0x3a1d0201, 0x09084533, 0x15133436, 0x03010403, 0x2a140d04, 0x4826201d, 0x32080c6c, 0x0f11e6fe, 0x07080204, 0x1707070a, 0x1dc20f18, 0x1d091010,
0x08251714, 0x0323151d, 0x1a13141d, 0x23110502, 0x02040c24, 0x08101805, 0x0c010304, 0x821d120e, 0x023c088c, 0x0a192312, 0x04171f2d, 0x083a1710,
0x05030901, 0x0b090301, 0x0d0a0107, 0x03000038, 0xc0ff0000, 0x80010002, 0x1d001500, 0x00002300, 0x012e3525, 0x15070622, 0x011d0622, 0x013b1614,
0x3905cd44, 0x3e35012b, 0x15163201, 0x2d350537, 0xeb013501, 0x1e2d1e01, 0x0c0c0901, 0x04826b09, 0x01401f35, 0x16121b12, 0x400140fe, 0x0b40c0fe,
0x161e1e16, 0x59090c0b, 0x0b2b0711, 0x0d12120d, 0x2b95c075, 0x4200952b, 0xcb5f0503, 0x831a2005, 0x3401336d, 0x3733013f, 0x15233533, 0x16331733,
0x07010e15, 0x72821e15, 0x84823720, 0x2622073f, 0x16323634, 0x29010614, 0x130d0402, 0x1311c011, 0x4d05060d, 0x6c490105, 0x4d050149, 0x05eb482e,
0x0b200136, 0x20350d08, 0x160a3520, 0x2b417e18, 0x171a1a17, 0x887e412b, 0x0bb75818, 0x24069752, 0x00130009, 0x520b822b, 0x2722128b, 0x80821533,
0x17163222, 0x23218083, 0x278e8235, 0x013d2622, 0x15013634, 0x230d9d52, 0x2b5656ab, 0x21053d49, 0x08825555, 0x2b011822, 0x240da752, 0x182b2bab,
0x20188212, 0x4f078601, 0xc02408b3, 0x0f002b01, 0x21227f82, 0x818b2a00, 0x83012e21, 0x15172765, 0x23073533, 0x78823735, 0x15011e28, 0x33010f14,
0x7c822e17, 0x6b20fa84, 0x2e053846, 0x12191912, 0x5580d52a, 0x19125555, 0x644d4607, 0x35460f16, 0x802a2305, 0x4946ab80, 0x0a0e2305, 0x054f2b68,
0x21828206, 0x04830300, 0x82ab0121, 0x00082783, 0x00240012, 0x5f872500, 0x82153721, 0x21ef83f9, 0x16412137, 0x830e8308, 0x15012103, 0x3105694f,
0x16561677, 0xeafe1616, 0x18181256, 0x40565612, 0x78645640, 0x82d52007, 0x08b946ef, 0x2a2b2b22, 0x87090754, 0x9427206b, 0x2207236b, 0xe24e2726,
0x072b7a05, 0x6e8d6f82, 0x1812eb26, 0x2b558001, 0x6f8d7285, 0x85828020, 0x89096741, 0x869620df, 0x941820df, 0x07232573, 0x35233723, 0x07bd4718,
0x5515772a, 0x6a151515, 0x48332b40, 0xd6215c8d, 0x20c482ab, 0x24548304, 0x8001d601, 0x087b6700, 0x17071323, 0x05f84723, 0x5f183320, 0x37260856,
0x21010f27, 0x46542115, 0x08705308, 0x371eae23, 0x09a65c72, 0x1e37722a, 0x1601ab52, 0x4b01eafe, 0x20055041, 0x2c068509, 0x371e8001, 0xd5121801,
0x13181813, 0x82ee82d5, 0xd52e2226, 0x05d265d5, 0x06854020, 0x2a0cb346, 0x00310029, 0x003e0035, 0x18000046, 0x203547e0, 0x054e4c27, 0x3736322c,
0x1e010e26, 0x01373201, 0xe0186a6b, 0xb6232558, 0x82121b12, 0x0a603002, 0x13021319, 0x2b010918, 0x0c092ad6, 0x820c2a01, 0x012a24c9, 0x8c01090c,
0x2b2a270d, 0x802b2b80, 0xb4474080, 0x09262805, 0x12191402, 0x48030008, 0x8029060b, 0x11000800, 0x00003600, 0x07144c37, 0x25080889, 0x0e272622,
0x012e2301, 0x35012e27, 0x3237013e, 0x32373617, 0x013e1716, 0x17011e33, 0x0e15011e, 0x06270701, 0x89830d4b, 0x1778123a, 0x1e2d1e1e, 0x2113961e,
0x14200c0c, 0x18072d20, 0x2430011e, 0x23180808, 0x1022118d, 0x136e2b18, 0x4d412006, 0x163006a7, 0x0f0e0e0f, 0x091f2601, 0x30251b2b, 0x01160201,
0x73410f8e, 0x24ab850a, 0x00610035, 0x93afa36a, 0x22272fae, 0x33161406, 0x15063732, 0x3f321614, 0x0b821701, 0x4d373621, 0x233105d1, 0x35360722,
0x0f222634, 0x23262701, 0x26070622, 0x07cd4e17, 0x1020e39c, 0xd833e291, 0x12181812, 0x1809090b, 0x20200c26, 0x1711130d, 0x89140c03, 0x1f212312,
0x1283140c, 0x76422120, 0x2f0f4105, 0x2419bf30, 0x0f0b0418, 0x240e1812, 0x10140e24, 0x0f8e010e, 0x6844f420, 0x09374309, 0x13000f29, 0x1b001700,
0x48130000, 0x152a0fd9, 0x33013521, 0x35052335, 0x686d1523, 0xaafe260e, 0x56019696, 0x07665996, 0x0112192b, 0x2b19122a, 0xd6feaaaa, 0x20008255,
0x084b4500, 0x6358eb20, 0x5b051908, 0x0765580a, 0x2005c145, 0x07b44637, 0x14251523, 0x056c4406, 0x3216142a, 0x33353736, 0x2b2a2bc0, 0xab300282,
0x01241b40, 0x401b2401, 0x0c0c0940, 0x00ff1609, 0x08c47518, 0x81582a20, 0x1b152615, 0x961b2424, 0x222d8396, 0x82060096, 0x0100218b, 0x162a8783,
0x1e001a00, 0x2b002200, 0x17733400, 0x69232016, 0x366c08e9, 0x13967115, 0xc0fe4025, 0x82805555, 0x2a352302, 0x846ac05f, 0x012b240e, 0x5cab1218,
0x12240862, 0x36205618, 0x60200083, 0x8505a143, 0x0d2b4105, 0x7309c344, 0x232113b7, 0x0cee5c27, 0x9408ce6c, 0xa5402097, 0x218c8f90, 0x00820008,
0x18c00121, 0x42086b66, 0x1f2f071d, 0x35250000, 0x37271533, 0x33010f17, 0x82112315, 0x37072403, 0x82030717, 0x23173003, 0x07173335, 0x55013727,
0x1e3d846b, 0x822a6f3d, 0x82822000, 0x1e1e2708, 0x6b051e3d, 0x0682ec6b, 0x2a2aab23, 0x2511826f, 0x80016b91, 0x0882ce6b, 0x82100121, 0x2a512214,
0x5a05828e, 0x11250c8f, 0x25001b00, 0x05e96100, 0x2208df47, 0x5a353335, 0x55201595, 0x2207df47, 0x5a554040, 0x6747109b, 0x2b012405, 0x472b2a2b,
0x00200ef9, 0x2009b371, 0x210b8203, 0x0143000b, 0x4c372008, 0x0b830a5f, 0x0f820720, 0x03820320, 0x40260b83, 0x8015c0c0, 0x02849580, 0xabab402c,
0xc0ababd5, 0x6b6bc0c0, 0x00836beb, 0x016b1522, 0xcb820683, 0x0805af65, 0x6b01d650, 0x00001900, 0x2f012e25, 0x17011e01, 0x32150706, 0x011e3736,
0x27263533, 0x0737013e, 0x00010614, 0x80012f25, 0x26466d03, 0x20371426, 0x26143720, 0x036d4626, 0x26773080, 0x5b2b396a, 0x011c298a, 0x11111015,
0x1c011510, 0x2b5b8a29, 0xb3856a39, 0x01000227, 0x00080040, 0x265b8210, 0x00310025, 0x8242003a, 0x16322863, 0x35211517, 0x8217013e, 0x23152168,
0x30486182, 0x22172e07, 0x27343627, 0x011e3336, 0x15270614, 0x241b8223, 0x35333523, 0x66621833, 0x07240809, 0x012e3533, 0x01070622, 0x04582415,
0x580400ff, 0x023922b2, 0x1baa0140, 0x24372424, 0x090a4f24, 0x0a091212, 0xf0260c82, 0x40402b40, 0xcd45aa2b, 0xc06e3905, 0x36523601, 0x20209501,
0x20202a2a, 0x191e0603, 0x45262a2a, 0x24362401, 0x01250282, 0x1b451a03, 0x230c8303, 0x40402a14, 0xa06e0282, 0x0ad52506, 0x0e12120e, 0x22095758,
0x826b01eb, 0x5f1120c7, 0x012007df, 0x51081b54, 0x072007d3, 0x3321af82, 0x23ad8215, 0x17352335, 0xe182a282, 0x07012e22, 0xea83e183, 0x2440012f,
0x30483030, 0x19132430, 0x19192619, 0x379d82d8, 0x30c04040, 0x56010675, 0x32307506, 0xfcfe024e, 0x6b014e02, 0x30493001, 0x28210282, 0x2223821a,
0x84171a26, 0x804022c5, 0x28cc832b, 0x2001292b, 0x0c17170c, 0x34938320, 0xff000001, 0x01d601e6, 0x000d0096, 0x14152500, 0x06012f06, 0x05d14a23,
0x1dd50132, 0x523c2109, 0xb07d7d58, 0x10c0c07d, 0x362d0d09, 0x7d200982, 0x09234618, 0x0a006b34, 0x21001300, 0x32370000, 0x14150617, 0x34352317,
0x3b853736, 0x37061423, 0x20c68233, 0xca54180e, 0xeb240807, 0x111a251f, 0x233675e6, 0x32463333, 0x2a4a7d32, 0x1e2d1e01, 0x0a0c161e, 0x251c0995,
0x262b191d, 0x46322b2f, 0x2b241b83, 0x1e17752b, 0x01211b82, 0x097f7b04, 0x0e009723, 0x3dac8200, 0x06012e37, 0x1706010f, 0x32333716, 0x37263637,
0x011f010e, 0x36013b16, 0x012f3637, 0x1c822726, 0x03a93c08, 0x6802060a, 0x03030904, 0x17040792, 0x08282318, 0x07044620, 0x01010b92, 0x10566302,
0xd0080902, 0x03050204, 0x02060bd1, 0x7d340601, 0x438f3fed, 0x0b01068d, 0xadc50303, 0x85030420, 0x0000296f, 0x6601d601, 0x08000300, 0x033e0982,
0x13013f27, 0x01273721, 0x6c618a16, 0xbbfeb08e, 0x660168c6, 0xbb01d9fe, 0x24ccfe53, 0x2383007b, 0x82e2ff21, 0x9e2b082f, 0x0f000600, 0x1d001400,
0x2d002700, 0x3c003400, 0x36370000, 0x07173233, 0x37162526, 0x06141516, 0x16072707, 0x37272607, 0x18270617, 0x2107ca89, 0x156d2607, 0x37262205,
0x08c6821e, 0x2223062c, 0x07163727, 0x06173627, 0x32171614, 0x202b1513, 0x0c012243, 0x1e01493f, 0x225f8716, 0x8b222e14, 0x075d4687, 0x1e150c12,
0x1382244e, 0x2b5f8e2f, 0x10331417, 0x2315133f, 0xbd1c4220, 0x081b828f, 0x880f1521, 0x27431b07, 0x07182f97, 0x19512111, 0x3a315f87, 0x878b1c0d,
0x19150a3d, 0x17113514, 0x840c0f1a, 0x5f8f2d17, 0x1d053e35, 0x1507660e, 0x8e512341, 0x30231d82, 0x8200113a, 0x00032300, 0x9359ff00, 0x00132405,
0x8223001b, 0x732320fd, 0x15210581, 0x055d4d11, 0x2e11372b, 0x16071701, 0x36170714, 0x84ce8234, 0x01230807, 0x2b802a15, 0x090c0c09, 0x010c09d5,
0x1e8e0c01, 0x3f1e3232, 0x19191e7b, 0x6b01251e, 0x0c012a2a, 0x83abfe09, 0x5501331e, 0x1e130c09, 0x1e358835, 0x1e05aa42, 0x1e1a441a, 0x8f606627,
0x0007220c, 0x2073820f, 0x8e758227, 0x92272061, 0x23032585, 0xac013311, 0x80206b8a, 0x1e24858c, 0x5701abab, 0x78206c8e, 0xfe248c8e, 0x000b01cb,
0x23069b58, 0x009601eb, 0x35207fae, 0xeb217fc0, 0x21ffb9eb, 0x7fc02307, 0x82d5ff21, 0xc2ffb77e, 0xb5df217f, 0xbf217ffd, 0x217ffd95, 0x7ffd77a1,
0xfd557f21, 0x406a217f, 0x4a217ffd, 0x068f4720, 0x2208f344, 0x541b0017, 0x012005e7, 0x50147144, 0x3720056c, 0x440e9d44, 0x5e210eff, 0x2000822b,
0x1b0445ec, 0x2bd6fe24, 0x9c446b2a, 0x3787430f, 0x24430745, 0x002b01ab, 0x05fb4500, 0x9601992f, 0x27002000, 0x00002e00, 0x33353313, 0x24038315,
0x1607011e, 0x09316306, 0x4b583320, 0x33232206, 0x05b06115, 0x60390685, 0x2b202a4b, 0x44321156, 0x202b7405, 0x150b4b2a, 0x090c0c09, 0x54067520,
0x27028206, 0x08086608, 0x40550166, 0x07250082, 0x93070c72, 0x3508820b, 0x0c012a40, 0x0c09aa09, 0x0a015601, 0x780b2222, 0x220f0160, 0xff510f23,
0x82d62006, 0x00192787, 0x0021001d, 0x77510100, 0x079b1805, 0x663b2007, 0x148305f4, 0x2115052b, 0x23352735, 0x12ab0115, 0x059c5b18, 0x56121822,
0x122e0282, 0x0100ff18, 0x01568056, 0xea121940, 0x04841912, 0x22832b20, 0xea2b2b24, 0x4b182bea, 0xeb2a089b, 0x0b00ab01, 0x1e001500, 0x65823600,
0x14011e2b, 0x3e270706, 0x27263401, 0x210b8507, 0x09853436, 0x3426222e, 0x011e2736, 0x35231517, 0x35331123, 0x3a05c27c, 0x1127012e, 0x0137013e,
0x21211dac, 0x1a181e1d, 0x111e181a, 0x1e111414, 0x823d1818, 0x18242e71, 0x1e170e18, 0xc0c02b01, 0x171e012b, 0x820a82aa, 0x57012506, 0x4e584e1d,
0x3d282c82, 0x1f183d48, 0x2e362e11, 0x48222e82, 0x0b5c1118, 0x82c12006, 0x56602522, 0x6040c0fe, 0x6a202e86, 0x47760782, 0x00962109, 0x33050b6e,
0x2500003f, 0x2e35013e, 0x07222301, 0x06222326, 0x17161407, 0x0e230c82, 0x76141501, 0x684b052a, 0x23228205, 0x35362734, 0x2282cd82, 0x1e261c82,
0x37323301, 0x1c823316, 0x01263433, 0x01363500, 0x131d1921, 0x20191e13, 0x2f243601, 0x2707823e, 0x18221515, 0x2e523e1d, 0x40200b89, 0xd120258c,
0x198d258a, 0x278c3520, 0x278a4620, 0x240dd756, 0x00300018, 0x09654f34, 0x07012b23, 0x05386a06, 0x50622320, 0x06222306, 0x45553317, 0x82072005,
0x180a82b1, 0x4f0991b6, 0x8230067e, 0x0b08074f, 0x12560c09, 0x1cc11818, 0x0c2a0224, 0x088fb618, 0x130f3108, 0x012a3723, 0xff121895, 0x4f191200,
0x40090c06, 0x00011219, 0x184a1812, 0x0b090917, 0x0a050e12, 0x0b09100f, 0x0e170705, 0x2b8b1b16, 0x0400002b, 0x01339c83, 0x008001c0, 0x00160012,
0x002d0024, 0x23150100, 0x562e3315, 0x1726053c, 0x33070614, 0x03822735, 0x17252326, 0x23061411, 0x077e6f18, 0xc9181720, 0x403c0809, 0x0f0d5cd5,
0x30483001, 0x5c0d0f01, 0xaaaaee3c, 0x19550001, 0x13d6fe12, 0x95121918, 0x3206f055, 0x0cd55555, 0x30241420, 0x20142430, 0x2a3cee0c, 0x83552b2a,
0x329b82a0, 0xeb19122a, 0x19192418, 0x00001824, 0xff000003, 0x829601ff, 0x0006238b, 0x10820010, 0x82332521, 0x33152379, 0x79822127, 0x012b3408,
0x01352622, 0x33352115, 0x01173337, 0x55552a2b, 0x01ab562a, 0xaa111a00, 0x15011a11, 0x164ad6fe, 0x5695166a, 0xffeb5556, 0x1a1a1100, 0x2b400111,
0x8415152b, 0x20d18253, 0x08538280, 0x0d000934, 0x00001100, 0x15062213, 0x34112111, 0x33072326, 0x15372311, 0x13ab3533, 0x18000118, 0xaaaaaa13,
0x80012b6a, 0xabfe1318, 0x18135501, 0xaad6fe2b, 0x87432a2a, 0x82802008, 0x00112109, 0x7b5a5082, 0x16322405, 0x83331115, 0x3e11398c, 0x33111701,
0x2b550111, 0x1395552b, 0x56fe1518, 0x121801aa, 0xd52ad595, 0xd6244882, 0x2a012b2b, 0x01224a84, 0x2b4c002a, 0x00802609, 0x0012000e, 0x25978216,
0x23070622, 0x47822311, 0x90872320, 0x15332730, 0x12000123, 0x15950118, 0x1815aa01, 0x00829513, 0x842a2a21, 0x214d8996, 0xd7672aaa, 0x0014210a,
0x01205b82, 0x20053c7a, 0x058a4417, 0x3e272629, 0x26363701, 0x82170705, 0x011e23ec, 0xab631637, 0x32210806, 0x37173536, 0x222e0b01, 0x1b0e7a0b,
0x044b1608, 0x0a3e6303, 0x10100310, 0xf5fe1127, 0x2014341b, 0x300f8502, 0x4610270f, 0x1b512525, 0x43019501, 0x10037a30, 0x3f0f820e, 0x0d20193a,
0x081d1006, 0x1b264a17, 0x39292735, 0x070d201a, 0x17091c0f, 0x242d044a, 0x05001b51, 0x2208935e, 0x7011000d, 0x17330885, 0x23010e11, 0x27262221,
0x33013e11, 0x07273713, 0x6b273337, 0x42420851, 0x802b2109, 0x0a704118, 0x1da31d27, 0x767695a3, 0x05445175, 0x06857220, 0x80950124, 0x9f5500ff,
0x80fe2707, 0xcea31ca4, 0x3951a075, 0x51802005, 0x04200840, 0xd5228382, 0x4a18c001, 0x18260847, 0x33370000, 0x03832315, 0x11331324, 0x0b821123,
0x07352e08, 0x37270727, 0x40233717, 0x56955555, 0x55559656, 0x54ac1555, 0x54791762, 0xd6ab2995, 0x2b01c0c0, 0xd601d5fe, 0x55ac2a56, 0x54781762,
0x09774d94, 0xe1829620, 0x00000e28, 0x3523013f, 0x41183307, 0xf53008a3, 0x4a6a4868, 0x7d7d580b, 0x157d7db0, 0xfad086d0, 0xb0210883, 0x08ff4f7d,
0x8001c028, 0x00002100, 0xf15d1513, 0x06f95d08, 0x33353327, 0x21112115, 0x25178311, 0x35333523, 0x888215d5, 0x9555153b, 0xfe2b8015, 0x2b800180,
0x01951580, 0xaa6a6a55, 0x6a406b15, 0x552a2a2a, 0x23fe8201, 0x55806b6b, 0x22089355, 0x580d0096, 0x132e0517, 0x11150622, 0x36323337, 0x012e3537,
0xe3820723, 0x15250725, 0x83271533, 0x16142d59, 0x1117013b, 0x55232634, 0xc0551812, 0x3f052551, 0x2bc0ebeb, 0x2b164001, 0x12192bd5, 0x121855d5,
0x12189501, 0x1856eafe, 0x18129612, 0x952a962a, 0x15281882, 0x55191215, 0x19122a01, 0x2808735c, 0x009601c0, 0x00190008, 0x08385700, 0x15070332,
0x0e17011e, 0x27262201, 0x1537013e, 0xa0011133, 0x3105a941, 0x3b2e8027, 0x6d480101, 0x22010248, 0x12402b1d, 0x0282121c, 0x42020130, 0x111603c1,
0x12181812, 0x2505140c, 0xc7848001, 0x01de3308, 0x00a6018e, 0x001a000c, 0x1300002d, 0x1e072722, 0x27373601, 0x07060706, 0x37160627, 0x023e3736,
0x07222326, 0x15163706, 0x22061413, 0x34373526, 0x21823f36, 0x013e5908, 0x0312ac16, 0x66361109, 0x371c1137, 0x16102331, 0x2c231c07, 0x04102c1e,
0x2e362412, 0x4c1902b0, 0x0e0f4d81, 0x2c1f0706, 0x012d391e, 0x0a82031a, 0xc913060d, 0x0315181c, 0x030e1334, 0x1e0d1303, 0x14170914, 0xfe05042e,
0x413f37cd, 0x1408df37, 0x131a0606, 0x00050d0d, 0x83084756, 0x000c28ef, 0x0028001b, 0x8234002e, 0x05f366f5, 0x013e3726, 0x03171632, 0x3521ef82,
0x2ca68226, 0x17011e17, 0x23273335, 0x37331727, 0x29038233, 0x012f2307, 0x06173236, 0x05843722, 0xc0012308, 0x52526c02, 0x2a01026c, 0x2a616961,
0x014738ab, 0x46525044, 0x38470102, 0x2b402a2a, 0x2a161540, 0x07831516, 0x40158025, 0x85401616, 0x82ab2005, 0x3435822f, 0x1a1b19b6, 0x09b4fe18,
0x219e3a51, 0x9c230101, 0x2909513a, 0x8225822b, 0x7f152527, 0x14141515, 0x4f440382, 0x00062b0c, 0x0018000f, 0x33070100, 0x92822115, 0x82081163,
0x231525ae, 0x01013e35, 0x35064e6c, 0x281b1b14, 0x1b141b1b, 0x03c00342, 0xc0800142, 0x1b45abab, 0x02821b29, 0x18188525, 0x82181010, 0x00022142,
0x012d0082, 0x008001d6, 0x001a0006, 0x17013f00, 0x21528223, 0xf4823717, 0x27012e28, 0x2e070622, 0xbf6a2301, 0xd52b3105, 0xd6fe40d5, 0x312a0f95,
0x19210101, 0x0909190e, 0xae820482, 0xc02a3123, 0x2b5882c0, 0x39250e80, 0x0121191d, 0x0c0b0b0c, 0x1d281f82, 0x08002539, 0xeaff0000, 0x08335b84,
0x22001e00, 0x2a002600, 0x40002e00, 0x00005200, 0x6a011e13, 0x17220544, 0x65461533, 0x013d3105, 0x36343533, 0x16323133, 0x0716011f, 0x33152335,
0x2e82038a, 0x23010f31, 0x012f3637, 0x013f012e, 0x17060733, 0x8e011e07, 0x48952011, 0x6b210580, 0x051349e7, 0x151b402b, 0x1d07120b, 0x802a4f08,
0x2a01822b, 0x0f10232a, 0x02280203, 0x87021204, 0x10532408, 0x8201040f, 0x01132b11, 0x01030e11, 0x13050229, 0x94486b01, 0xabaa2f06, 0x12181812,
0x1b1510ab, 0x08210808, 0x008680b2, 0x102e012a, 0x0c091629, 0x1101151a, 0x0d200782, 0x0f8e0782, 0x01000022, 0x3a08f384, 0x009601a0, 0x25000014,
0x2e352315, 0x22012b01, 0x23150706, 0x36153311, 0x011e013b, 0x0166a001, 0x0c3e0b10, 0x6664010f, 0x29660a0a, 0xacc4af36, 0x0c10100c, 0x88aa01ac,
0x43380104, 0x80200883, 0x35464382, 0x085a5905, 0x2e232b08, 0x36342701, 0x07013e37, 0x01230733, 0x01302400, 0x1e011813, 0x1e169616, 0x01131801,
0x2b801c30, 0x0195012a, 0x1d042530, 0x68821713, 0x13171e28, 0x3024051d, 0x3b42d5d4, 0xd5ff2905, 0x8001c001, 0x0f000900, 0x2c089b83, 0x11170713,
0x21331614, 0x01093717, 0x23263411, 0x17371707, 0x2b1c3123, 0x0f011219, 0xa7fe1b2b, 0x12195901, 0x3a1536e0, 0x1b8001cf, 0xd4a5182b, 0x26168207,
0xe018132e, 0x603b1b40, 0xc626099f, 0x0800ae01, 0xfa821d00, 0x820e2621, 0x013e27de, 0x27071726, 0xf1822737, 0x37273524, 0x03823717, 0x1f162608,
0x01171601, 0x13201095, 0x13211f09, 0x25372109, 0x2b432125, 0x34a615cb, 0x0c951089, 0x0a0b120c, 0x0909a501, 0x351e8220, 0x5fa22020, 0x741c4015,
0x2576b7ac, 0x28325860, 0x0b060536, 0x6b830906, 0x04830320, 0x01ab0125, 0x82160098, 0x0024276b, 0x17320100, 0x6f823e37, 0x5b820f20, 0x37362126,
0x013e2627, 0x55086782, 0x010e1736, 0x16333507, 0x33373405, 0x01012e15, 0x23161800, 0x04101104, 0x17282005, 0x2817d8fe, 0x10040520, 0x16230411,
0x435602c3, 0xaafe0992, 0x56439209, 0x3d065501, 0x11090507, 0x27183708, 0x08371827, 0x07050911, 0x45aa063d, 0x19df075e, 0xdf191c1c, 0xaf505e07,
0x01c03b08, 0x00200096, 0x00280024, 0x1300002c, 0x34353335, 0x15013b36, 0x33351737, 0xfb461632, 0x013d2207, 0x05314d23, 0x23173524, 0x0d823315,
0x3513152c, 0x2b401523, 0x36801218, 0x94451535, 0x00ff2405, 0x822b1911, 0x842a2000, 0x2b013f00, 0x1812162a, 0x95202095, 0xaafe1119, 0x11191911,
0x2a562a16, 0x802a5656, 0x00ff2a2a, 0x6b412a2a, 0x24f38206, 0x008b01c0, 0x387d820a, 0x23150100, 0x07172335, 0x0f173727, 0x26273601, 0x2b263435,
0x15062201, 0xd6d9181e, 0xc0013610, 0x17347820, 0x34175a5a, 0x0c04096c, 0x094b090c, 0x9acd040c, 0x36098209, 0x090d2527, 0x17482d2f, 0x4b6b4001,
0x5b5b1734, 0x09373417, 0x8327260c, 0xcd9a221a, 0x26298404, 0x2f09040c, 0x832e4718, 0x0008227f, 0x33dc1800, 0x05255308, 0x33002b26, 0x3f003b00,
0x25082d45, 0x1e37013e, 0x81822701, 0x012e3725, 0x82170727, 0x0e352b0e, 0x26370701, 0x06273734, 0x13831714, 0x27201b83, 0x15201382, 0x48531b82,
0x012f2b06, 0xeb011707, 0x64648403, 0x05840384, 0x3b23d335, 0x4e1b2515, 0x1525c22f, 0x4e2f233b, 0x0e0e2530, 0x8bc01325, 0x4f2e2414, 0x82131330,
0x405d2416, 0x87c04040, 0x383c8236, 0x1c220445, 0x052e2516, 0x221c1658, 0x2e052c04, 0x442015f9, 0x5a2a1520, 0x26178b7c, 0x4b2d052b, 0x832a5a2a,
0x6b42241a, 0x47006b6b, 0x032c0a5f, 0x0f000600, 0x15370000, 0x17373523, 0x07c88218, 0xeb363434, 0xea75c0ab, 0x363629ea, 0xa0363652, 0xc0f5abab,
0x0a83012a, 0x7e365221, 0x07280d53, 0x0d000a00, 0x1f001600, 0x17294185, 0x13331523, 0x07372317, 0x082e6f33, 0x2b083a5c, 0x5580abeb, 0xea754055,
0x4c522975, 0x29265785, 0x2d1e1e16, 0x5e821e1e, 0x01552b27, 0x436ec075, 0x56638655, 0x2d3a052a, 0x0700001e, 0xf0ff0000, 0x9001eb01, 0x42003b00,
0x52004b00, 0x62005900, 0x6d826900, 0x013e1722, 0x4308fd42, 0x1e2c0813, 0x32371701, 0x23061416, 0x07010e27, 0x2806fd6b, 0x07272206, 0x012e010e,
0x2803823f, 0x26220727, 0x36173634, 0x321f8337, 0x37173237, 0x17072226, 0x2e371736, 0x16072701, 0x83070617, 0x82072054, 0x3216262f, 0x27062737,
0x304e8307, 0x052b2b26, 0x05181d23, 0x05101005, 0x1f4a1f14, 0x29088314, 0x231d1805, 0x0c092b05, 0x1c9b090c, 0x0f059f37, 0x04191423, 0x1e090a7f,
0x1e173417, 0x04404909, 0x0f231419, 0x3b169505, 0x3c2502d5, 0x11082515, 0x26080509, 0x08260d0d, 0x08110905, 0x253c1525, 0x0c120c02, 0x07351a9a,
0x0f360d14, 0x032f1a2b, 0x390a0a39, 0x1a033203, 0x0d360f2b, 0x20149330, 0xbf4b1800, 0x001d2d0e, 0x002f002b, 0x00390033, 0x1300003f, 0x0d66ac18,
0x33052728, 0x14010e15, 0x78671716, 0x33372405, 0x82152315, 0x4f352003, 0x09820531, 0x03822520, 0x394f2720, 0x2e152405, 0x18363401, 0x2a0a8bb3,
0x1d96aafe, 0x961d2323, 0x82c04040, 0x2c0b8403, 0x011616c0, 0x80161640, 0x0a0c0c0a, 0x2004822a, 0x7a4c1801, 0x2b01250f, 0x3c2d082d, 0x2b220382,
0x02822baa, 0x282b0c85, 0x50565656, 0x13181306, 0x834a4a06, 0x088f4406, 0x96018022, 0x2009c55a, 0x0fa97013, 0x35331523, 0x20038207, 0x21038203,
0xa570aaab, 0x82aa2009, 0x0d8b6900, 0x5656aa2b, 0x01565680, 0x00565600, 0x245b8206, 0x01c00100, 0x9b55182b, 0x0017270a, 0x35211300, 0x03861521,
0x35330524, 0x53823523, 0x07820720, 0x2b014024, 0x0388d5fe, 0x842b5521, 0x00012500, 0x802a802b, 0xab210a82, 0x4e08822b, 0xd6220773, 0xab891601,
0xf4472520, 0x36342707, 0x16322133, 0x4b820515, 0x03861720, 0x47d50121, 0x182605c1, 0x12560112, 0x9982fe18, 0x95240285, 0x12181812, 0x2006e162,
0x25008256, 0x00000800, 0xab82c0ff, 0xab866b20, 0x1f001b2b, 0x27002300, 0x00002b00, 0x0a556f17, 0x7e210321, 0x2120062f, 0x21053f7e, 0xe2511517,
0x86052005, 0x2b952507, 0x2a2a562b, 0xd520bb82, 0x0a455818, 0xc1821220, 0x82d6fe21, 0x85152004, 0x4cab20d2, 0x01240ab1, 0x55181200, 0x80200083,
0x2105f55e, 0x00820002, 0x80208782, 0x1c20df82, 0x4f09e94f, 0x1327073b, 0x27072337, 0x83331523, 0x6b17216e, 0xfc29638a, 0x20203540, 0x262a40b5,
0x0d505f30, 0xaaebfe28, 0x802a6060, 0x56828080, 0x9c180520, 0x0c20081f, 0x080ac55e, 0x07013720, 0x26222127, 0x3634013d, 0x3717013f, 0x1e330717,
0x14011d01, 0x23352707, 0x07273327, 0x1d823315, 0x306d0620, 0x087e4d05, 0x011b2b3e, 0xfe2b1b7a, 0x151812db, 0x52525e10, 0x1272371e, 0x84650518,
0x3b370b2b, 0x2601d6fb, 0x2c0df762, 0x86fe1b50, 0x13182b1c, 0x031810d5, 0x822c8355, 0x0bd522fe, 0x212e8209, 0x00636237, 0x82032010, 0x01ea24a3,
0x84a001eb, 0x181f20ff, 0x77073b64, 0x272805d3, 0x01373611, 0x21272111, 0x82052147, 0x273336b7, 0x9a011b0b, 0xaa10401b, 0x0118126b, 0xa1010901,
0x012be7fe, 0x080b8344, 0x280c0f23, 0xfafa99fe, 0xfe1b8501, 0x2b401b66, 0x0112182b, 0xfe0b1000, 0x2b0001e5, 0x00ff1219, 0x2805160d, 0x074f42fb,
0x6b01eb31, 0x0c000300, 0x2e001500, 0x33250000, 0x6f132327, 0x836f077a, 0x17012808, 0x06142315, 0x86352622, 0x33352205, 0x2f948227, 0x01351733,
0x2c477340, 0x13130d35, 0xe813131a, 0x2705c74c, 0x366b0e01, 0x75263426, 0x2b290382, 0x162b84af, 0xfe55ebea, 0x821f83f5, 0x27028422, 0x96803601,
0x1a26261a, 0x56260383, 0x81803e68, 0x00820097, 0x2e08fb85, 0x00ab0196, 0x000a0006, 0x3700000e, 0x17372335, 0x35071523, 0x21011d21, 0x55c02115,
0xd5559595, 0xd6fe2a01, 0x80952a01, 0x55809696, 0x182b2b2b, 0x28089fae, 0x008001c0, 0x001a000f, 0x11354228, 0x37270123, 0x05064b23, 0x35271725,
0x82233523, 0x054342b8, 0x2f0b4142, 0x2b2b2901, 0x20202a25, 0x2015602a, 0x20402020, 0x220d4742, 0x824000ff, 0x40802200, 0x241a8240, 0x20604040,
0x22af8620, 0x82eb01e1, 0x0d2808af, 0x2e002000, 0x0e010000, 0x3e330701, 0x011e3701, 0x012e3317, 0x35013e07, 0x06222634, 0x17161415, 0x37170715,
0x03273717, 0x012a208c, 0x01544000, 0x2d3d012a, 0x06823d2d, 0x0f2b543e, 0x1e2e1e11, 0x1e490f11, 0x491e4040, 0x03846415, 0x526c022b, 0x2b026c52,
0x55018403, 0x82051474, 0x54402d2c, 0x111907c5, 0x171e1e17, 0x46071a10, 0x01242c85, 0x64840362, 0x2305ff4c, 0x06008464, 0x310a5f48, 0x00230017,
0x003b002f, 0x13000047, 0x0622012e, 0xf982011d, 0x17233522, 0x33279383, 0x3d013e35, 0x82072301, 0x861520ae, 0x8425200b, 0x150721b1, 0x27202483,
0x2f8fbc83, 0x2335373b, 0x120c016b, 0x2a802b0c, 0x2a131855, 0xab801813, 0x2b131701, 0x01801713, 0x231682ab, 0xd6802a01, 0x2b211d84, 0x35158456,
0x95018001, 0x090c0c09, 0xd5808055, 0x5a072015, 0x1620065a, 0x09842a2a, 0x15200725, 0x8655ab2a, 0x8907871c, 0x08bb4b24, 0x96019629, 0x1d001100,
0x49010000, 0x92830699, 0xb0821720, 0x27353722, 0x32066f7b, 0x23152335, 0x12198001, 0x151912aa, 0xea40aa40, 0x82162aaa, 0x2b012a01, 0x18181240,
0x80804012, 0x20038440, 0x2100822a, 0x1b410700, 0x00083108, 0x001e0015, 0x0036002a, 0x0048003f, 0x012e3700, 0x20059653, 0x05ff4937, 0x17161425,
0x43013e33, 0xe07c08f1, 0x4ac6180b, 0x5f37200b, 0x3d850876, 0xab263422, 0x25068065, 0x400e1296, 0x0484120e, 0xf65f8b20, 0x493d2005, 0x64260a61,
0x02026d51, 0x0584516d, 0x1e852420, 0xe2773820, 0x85cb2005, 0x8478200d, 0x0101240d, 0x5012a812, 0x2b200506, 0x210ad949, 0x3b8758fe, 0xe9204182,
0x6a207086, 0x00212885, 0x9f541800, 0x099b6109, 0x11130025, 0x45331133, 0x052006a5, 0x17200782, 0x2b220382, 0x01821580, 0x82ebfe21, 0x55013004,
0x2a01d6fe, 0xc0c06a6a, 0x55aaaa80, 0x41005555, 0x0025057f, 0x01d60100, 0x08518280, 0x00000b27, 0x011b3313, 0x33010b33, 0x07333717, 0x8b8b4a2b,
0x4075d54a, 0x75403535, 0x00ff8001, 0x80fe0001, 0x62628001, 0x09cb4cd7, 0x01eb2808, 0x00170096, 0x25000033, 0x010f1416, 0x012b010e, 0x012f2622,
0x013f3426, 0x013b013e, 0x07171632, 0x23012f35, 0x82171507, 0x3f332902, 0x021f3501, 0x27353733, 0x232d0282, 0xe501010f, 0x06630606, 0x0bba0b14,
0x88078214, 0x37822c0a, 0x35032204, 0x04220335, 0x87360137, 0xd4362a0a, 0xac091609, 0x0a0b0b0a, 0x290887ac, 0x026702c0, 0x64640502, 0x08830205,
0x63440b89, 0x209b8308, 0x209b821b, 0x259d8247, 0x1733023f, 0x02820715, 0x022f2329, 0x23010f15, 0x82373527, 0x1f332302, 0xb7953701, 0x27011f36,
0x06232726, 0x1406010f, 0x1716011f, 0x013f3633, 0x00013436, 0x0120908a, 0xc795a689, 0x0a523a29, 0x0a149814, 0x87040452, 0x20b19708, 0x29db9012,
0x01108ab0, 0x088a1001, 0x08870810, 0x2206cf54, 0x829601d3, 0x003a2509, 0x27013f00, 0x9f829882, 0x83012f21, 0x012b28a5, 0x26012f22, 0x82060727,
0x013f2605, 0x27373426, 0x21b18226, 0xb783011f, 0x32013b22, 0x17222a82, 0x30843637, 0xd5141632, 0x2dca6b6b, 0x042b0507, 0x0f153509, 0x56080208,
0x132a0382, 0x04093511, 0x2d07052b, 0x1a990101, 0x4040803c, 0x09052355, 0x1503074a, 0x0938060f, 0x0d083809, 0x4a070315, 0x07230509, 0x1897071c,
0x2b086342, 0x75010002, 0x1e001b00, 0x22130000, 0x1d22b782, 0x8f821401, 0xa5823220, 0x34013d22, 0x1383b582, 0x1f300682, 0x06800701, 0x0c0c6806,
0x060c06e8, 0x680c0ce8, 0x0d820682, 0xfd066831, 0x74017171, 0x0d073c03, 0x84070d85, 0x84840404, 0x033c2a08, 0x06063c03, 0x400b033c, 0x20678343,
0x26048306, 0x4001eb01, 0x57000800, 0x352405ab, 0x00003d00, 0x3b093563, 0x1614010e, 0x37363217, 0x37342726, 0x07223326, 0x07061516, 0x3e33011e,
0x07263401, 0x29083c63, 0x1507010e, 0x25363533, 0x06821716, 0x01012e3a, 0x24241b00, 0x9b242436, 0x171e1e17, 0x1708170e, 0xf40a0101, 0x01010a0c,
0x0e200a82, 0x97371382, 0x01045824, 0xc0580400, 0x4002301d, 0x0e460101, 0x30024001, 0x83014001, 0x24363533, 0x2d1e012d, 0x0b0d011e, 0x0706251c,
0x06070505, 0x0d0b1c25, 0x7c201283, 0x2d051664, 0x15190514, 0x121a2a23, 0x232a1a12, 0xbe831915, 0x04830320, 0x01ea0123, 0x3ec18261, 0x003f002e,
0x2f262500, 0x36342601, 0x36323337, 0x1f163316, 0x0f011e01, 0x22230601, 0x42011f37, 0x6e4305ba, 0x33362305, 0xda82021f, 0x27376008, 0x0f15011f,
0x011d0602, 0x3f260607, 0x01373601, 0x584b0c75, 0x37030204, 0x01071522, 0x02980603, 0x04560407, 0x064c0407, 0x5c020316, 0xf1090e02, 0x07740203,
0x2a260a04, 0x0405080a, 0x42012499, 0x5b020344, 0xb3020205, 0x11730508, 0x0405715f, 0x02010102, 0x03b60602, 0x0224030b, 0x8204010d, 0x02392401,
0x82350202, 0x022b3807, 0x0c360601, 0x2fab0201, 0x193d0101, 0x15040101, 0x0303021d, 0x4e0207b0, 0x952a0823, 0x18000e00, 0x00002000, 0xb4822e01,
0x7a072721, 0x3e300593, 0x23071701, 0x35333727, 0x17331533, 0x21352115, 0x01210882, 0x088b823f, 0x1a5f482a, 0x141a4438, 0x0808e323, 0x156b157f,
0x2b152b15, 0x0156fe2a, 0x42016b15, 0x13020808, 0x12620758, 0x3c3d0615, 0x2b4e0e03, 0x2b281a82, 0x962a2aeb, 0x00040096, 0x01200082, 0x2005db48,
0x276f8207, 0x25000015, 0x23113311, 0x03390382, 0x23350717, 0x27053335, 0x15331537, 0x2c150123, 0x56962c6c, 0x01404056, 0x24058340, 0xfe560115,
0x250384aa, 0x40555500, 0x04836a2a, 0x2208274c, 0x82ab01ab, 0x204f86c5, 0x06c94b37, 0x27072522, 0x0327b483, 0x15231737, 0x92553523, 0x2bc0233f,
0x62842b6b, 0x82c0fe21, 0x8240204e, 0x081f594e, 0x59006b21, 0xf882065f, 0x15239783, 0x82033727, 0x822120a3, 0x80c02303, 0x02825555, 0x012a9526,
0x40d52a56, 0x55233883, 0x8700ff55, 0x08cf445e, 0x9601ab22, 0x01224387, 0x8b833315, 0x17372323, 0x209b8225, 0x21038211, 0x38901501, 0x87000121,
0xaafe2257, 0x062f462a, 0x24053f49, 0x00260017, 0x0553562a, 0x270e1b74, 0x27231733, 0x37230723, 0x071b8318, 0x152b0e83, 0x33153723, 0x33010f35,
0x5a18136b, 0x19390590, 0x2620f012, 0x061e0720, 0x0e4b9520, 0x13080b12, 0x20191220, 0x05ab2b20, 0x0d4f490b, 0x15808032, 0x0e128015, 0x04100a15,
0x602b2b2d, 0x14171515, 0xff238783, 0x82d801e8, 0x002c36cb, 0x00410034, 0x00530049, 0x010e0100, 0x011f1615, 0x012f0616, 0x850b822e, 0x07262309,
0x14860622, 0x22272625, 0x82140706, 0x27372c0c, 0x3217012e, 0x012f011f, 0x82073626, 0x011e2307, 0x0b822206, 0x0c833420, 0x27022e08, 0x07053626,
0x3e011e17, 0x01272602, 0x01150f06, 0x08010603, 0x220b0902, 0x09090116, 0x0c030703, 0x15100d0b, 0x040c0e01, 0x070d0307, 0x080a8208, 0xf30a0c39,
0x13056c62, 0x41060f06, 0x0b051355, 0x6706093a, 0x110d0106, 0x0c066707, 0x2d030531, 0x07109254, 0x125b2b01, 0x1822200d, 0x010c0808, 0x10150195,
0x040e0708, 0x820c0203, 0x0b1d31af, 0x0205050b, 0x16010909, 0x04090b22, 0x03060106, 0x0b2f1e82, 0x626c0513, 0x580c0bf3, 0x2d54920d, 0x823a120b,
0x0d112150, 0x47300484, 0x41541402, 0x5b511f09, 0x08080c12, 0x0d202218, 0x2b08d741, 0x009601d6, 0x0042002c, 0x01000058, 0x1639e682, 0x07173717,
0x15331716, 0x17070623, 0x07062707, 0x3632011e, 0x07272637, 0x30048227, 0x36333523, 0x17372737, 0x012e3736, 0x14010e07, 0x84098216, 0x8518820e,
0x86252022, 0x863f8235, 0x013e3d49, 0x00012634, 0x101d4628, 0x1616170c, 0x16160413, 0x16161304, 0x1c100c17, 0x1c475047, 0xd0351491, 0x16171716,
0x150d090b, 0x14040d0f, 0x0f0d0414, 0x01090d15, 0x20108e45, 0x3424820b, 0x181b9501, 0x260e100d, 0x2a29230c, 0x260c2329, 0x180d100e, 0x3412921b,
0x4a431b52, 0x0b091b43, 0x19092507, 0x191e2a1e, 0x0b072509, 0x830e8e09, 0x06e34622, 0x9601d630, 0x25001c00, 0x22010000, 0x0f36010f, 0x4a192702,
0x3625070e, 0x3f012f34, 0x20058302, 0x21fb8426, 0xd8823632, 0x09ab3d08, 0x0901cb06, 0x0706452f, 0x2b060c11, 0x060d1106, 0xcb4c4507, 0x07150606,
0x1e1e1728, 0x011e1e2d, 0x02cb0695, 0x0746410c, 0x06120c06, 0x110d072b, 0x37450607, 0x071106cb, 0x01ea0615, 0x2d222083, 0x0082001e, 0x00000126,
0x4001eaff, 0x38087b82, 0x17000015, 0x013d2622, 0x3537013e, 0x16333736, 0x011e1517, 0x06141517, 0x0c09d523, 0x01111901, 0x01091609, 0x0c011911,
0x090c1509, 0x053021d5, 0x01010960, 0x30056009, 0x201f8221, 0x23c38500, 0x92010002, 0x3c054f49, 0x27011701, 0x07371737, 0x01170727, 0xfe5aa601,
0x5a5ab4b4, 0x1e5af2f2, 0x01100178, 0x230e8591, 0x1d59f2b6, 0x0f420e82, 0x00002105, 0x2206174f, 0x82170013, 0x7721200b, 0x03250dbc, 0x03211121,
0x228e1823, 0xfe12270e, 0x2a2a01d6, 0x7b43d6d6, 0xabfe260d, 0x00ff2a01, 0x828f85d6, 0x00962e53, 0x00210003, 0x35210500, 0x010e2721, 0x4d448207,
0x152b0524, 0x2e231533, 0x17010e01, 0x823b011e, 0x263423f2, 0x4f849501, 0x0c27173c, 0x2a40400c, 0x130c4040, 0x11113f42, 0xd617270c, 0x15303024,
0x1601d62a, 0x16826b14, 0x1f6b2a2c, 0x1f422512, 0x30011714, 0xc74b3049, 0x0003230c, 0x6784001b, 0x0622032c, 0x3717010f, 0x14171636, 0x0a821617,
0x62830620, 0x012e1122, 0x80346185, 0x3e0b2314, 0x11072c2b, 0x03040106, 0x01096707, 0x01b70d11, 0x01356082, 0x5d111280, 0x03051d2a, 0x0a010108,
0x0a660814, 0x00011218, 0x86628324, 0x019622cb, 0x20cb829b, 0x2063850f, 0x84b3822f, 0x171622be, 0x39578507, 0x13183b40, 0x13313016, 0x3b160b0a,
0xdb2b2a15, 0x1232300b, 0x17193015, 0x3f86db0a, 0x9601ab38, 0x28002400, 0x32010000, 0x010e1716, 0x2315010f, 0x012e2735, 0x0f823e27, 0x17071424,
0x09842637, 0x83061721, 0x3634250a, 0x21152101, 0x18329282, 0x0b0d0101, 0x0b27d627, 0x1801010d, 0x3c0a1824, 0x0884110b, 0x01013108, 0x093b0b11,
0x01fdfe18, 0x01d6fe2a, 0x0d121980, 0x67880514, 0x14058867, 0x1919120d, 0x4f410b22, 0x1812170c, 0x0c171218, 0x220b414f, 0x2a95fe19, 0x230e2b41,
0x37000017, 0x84826283, 0x03882320, 0x33153326, 0x6b353335, 0x00235384, 0x822a2b2b, 0xd62a2702, 0x012a152a, 0x008440aa, 0xd5d58023, 0x20478e80,
0x050f411c, 0xd2832720, 0xcd840720, 0x35263722, 0x1726d283, 0x17160714, 0x1c411707, 0x22272c05, 0x40540105, 0x01015440, 0x830a3340, 0x0a0135c8,
0x1e61151c, 0x2dfb2a15, 0x013c2e38, 0x292e3c01, 0x0f0c1666, 0x0f22b183, 0x19820b0c, 0x2706bf46, 0x00ab01c0, 0x001e0015, 0x21adc118, 0x3733072d,
0x33173717, 0x07272315, 0x18230727, 0x2e186d83, 0x14472e8c, 0x42343835, 0x20104f27, 0x18800142, 0x2c15afc1, 0x449588df, 0x64262137, 0x00003d7b,
0x21ef8204, 0x87870100, 0x3400272c, 0x23010000, 0x0622012e, 0x23432307, 0x5b23200d, 0x032007dc, 0x21218986, 0x648b8525, 0x919905a6, 0x10204232,
0xfe42274f, 0x342a01d6, 0x47143538, 0x2ad62a2e, 0xff2e9897, 0x647b3d00, 0x37765526, 0xb4889544, 0x9a831515, 0x57000221, 0x182a07ef, 0x00002100,
0x3d012e05, 0x71522301, 0x21333705, 0x15171632, 0x012b010e, 0x27070607, 0x013e1123, 0x21152137, 0xa0620001, 0x01122105, 0x36067e77, 0x08074f57,
0x18012bcb, 0xfe550112, 0x0c012bab, 0x12184009, 0x841812d6, 0x064f2a04, 0x0001ab01, 0x2b011812, 0x20008200, 0x206b8804, 0x256b8208, 0x00290025,
0x56873700, 0x78971320, 0x33150324, 0x03820735, 0x62874020, 0x7f92c020, 0xd5d54b24, 0x688580ab, 0x9055fe21, 0x2b012782, 0x2b552b2b, 0x6353002b,
0x01eb2c05, 0x001800ab, 0x0028001f, 0x9a30002c, 0x153726f1, 0x21353337, 0x20f88815, 0x06125617, 0x25140041, 0xfe69420a, 0xa28755d5, 0x8e828020,
0x25120a41, 0xd6414180, 0xa6852bd6, 0xa2778020, 0x061f4205, 0x8001ab2f, 0x45004100, 0x4d004900, 0x35010000, 0x054a7e2e, 0x21058156, 0x0f521523,
0x055c4305, 0x26052152, 0x07061533, 0x7d151716, 0x474405b8, 0x05fb6405, 0x3635273c, 0x0f352734, 0x35373501, 0x27373507, 0x01153735, 0x090c01ab,
0x151540d5, 0x02822b15, 0x04836a20, 0x10ab153a, 0x0e0c0102, 0x0d080805, 0x03090a07, 0x10170c02, 0x0c0e0116, 0x16d50d0c, 0x01250084, 0x0c091540,
0x242d8201, 0x2b2b2bc0, 0x82008255, 0xc0250806, 0x0f120663, 0x0b071a07, 0x06030b08, 0x1613050a, 0x04140d11, 0x081e0702, 0x1f16a364, 0x1e162115,
0x161e0c16, 0x0957611e, 0x0e008123, 0x330e8200, 0x16361513, 0x23171617, 0x2e272115, 0x010e0703, 0x011e1507, 0x07745418, 0x28d52737, 0x10110d30,
0x103801f0, 0x382d2110, 0x0130247d, 0x01243001, 0x2d078600, 0x04012b80, 0x2b190905, 0x1429211f, 0x1982ab03, 0x18854020, 0x00230683, 0x82000100,
0x82012b00, 0x2c008001, 0x35250000, 0x22513523, 0x05a34105, 0x5c086382, 0x3435013e, 0x012e2726, 0x010e2223, 0x33161415, 0x15163732, 0x26220614,
0x8201013d, 0x1b1201b5, 0x400e1212, 0x26330140, 0x15163227, 0x0b080f07, 0x13180c13, 0x20070d14, 0x20e02132, 0x12120e60, 0x2040121c, 0x01342784,
0x19273302, 0x0706102e, 0x120c140b, 0x110f1118, 0x19222219, 0x087f5084, 0x8001962b, 0x0b000300, 0x21130000, 0x21018315, 0x01821123, 0x3505ff44,
0x802a802a, 0x152b8001, 0x01ebfe2b, 0x05000015, 0xe2ff0000, 0x2f82de01, 0x16000d28, 0x2b002100, 0xb7823c00, 0x0622262d, 0x011e1714, 0x27371737,
0x82072636, 0x3634259e, 0x07141632, 0x2721b883, 0x20c58215, 0x25058426, 0x2e373435, 0x9d5f3701, 0x3e332605, 0x3e173201, 0x08108201, 0x1e8f013e,
0x191c394d, 0x1e421e40, 0x36081242, 0x20202b10, 0x1697202b, 0x0140330a, 0x0d496002, 0x303a019e, 0xaa42340c, 0x02026049, 0x13023f51, 0x111b3933,
0x60020314, 0x4c3a1cb9, 0x1208171e, 0x1e233582, 0x82105141, 0x20270833, 0x1c164d2b, 0x401c2b09, 0x08013024, 0x2a1b40f8, 0x1c1e040a, 0x019d2c08,
0x2f212430, 0x0c161506, 0x24121d08, 0x69000030, 0xe02206c3, 0x09829601, 0x20000934, 0x00002700, 0x21130701, 0x27230713, 0x15071737, 0x97843523,
0xa8820720, 0x013e2325, 0x82011e33, 0x0f510809, 0x07352301, 0x01333735, 0x0155e000, 0xd6755516, 0x43aeae43, 0x05420572, 0x0c011401, 0x0221010d,
0x11261921, 0x043c0401, 0x47292242, 0xa3950104, 0x0701f9fe, 0x7f7fcddd, 0x04181b72, 0x06131547, 0x0b0f0101, 0x26021e18, 0x023e1f09, 0x1c0d831b,
0x20878219, 0x2403820c, 0x01eb0100, 0x0cbb5868, 0x27051558, 0x004c002c, 0x37000055, 0x20061758, 0x20078235, 0x8f038217, 0x82272007, 0x45072013,
0x25210771, 0x31a98217, 0x23010e27, 0x012f2622, 0x21013f26, 0x26013f36, 0x05822627, 0x011e1726, 0x05163617, 0x24077056, 0x3b30302f, 0x20008230,
0x8503823a, 0x820e8209, 0x6d370802, 0x0b080805, 0x78010707, 0x260a0407, 0x537e2016, 0x0517482c, 0x0101030e, 0x1110113b, 0x0601020a, 0x0c060507,
0x1e0e0210, 0x0d0b9afe, 0x0e0e160d, 0x2f2f2ff0, 0x880d2f6b, 0x2ea62403, 0x830b07bb, 0x5a200843, 0x0e130704, 0x21494b01, 0x24200a24, 0x07050107,
0x190b110d, 0x09050609, 0x03040e18, 0x0e150e85, 0x002d0282, 0xff000004, 0x017f01ec, 0x000f0096, 0x05734a18, 0x4c461320, 0x013b2a05, 0x11373632,
0x0723012e, 0x0677611e, 0xe8820720, 0x24080754, 0x181812aa, 0x2e048212, 0x12180101, 0x12120e55, 0x4712121c, 0x8256aaaa, 0x18242815, 0x18950118,
0x82acfe12, 0x0112360b, 0x4a181254, 0x121b1101, 0x5e111b12, 0x170194d5, 0x24191924, 0x05db4317, 0x8601e539, 0x03009b01, 0x00000700, 0x37170701,
0x07371705, 0x85850001, 0x82f6fe85, 0x9b012904, 0x1b5050e0, 0x0050bbbb, 0x002b2182, 0xeb01e0ff, 0x21006001, 0x18002a00, 0x2709afdb, 0x35263732,
0x23063734, 0x2705ea47, 0x1417011e, 0x32333607, 0x2409184c, 0x26343632, 0x0a1c7417, 0x51000130, 0x7d1d1d7d, 0x020b0c51, 0x2d0d0d05, 0x9256013d,
0x15022605, 0x08212617, 0x50188207, 0x653305e5, 0x402b4040, 0x01600140, 0x58474758, 0x0a0a0101, 0x85041212, 0x29058229, 0x15080a09, 0x58471010,
0xdc50015f, 0x83742005, 0x402b212b, 0x1c24a38a, 0x31002500, 0x0e22d182, 0x92820701, 0xa283a382, 0x51492220, 0x16072106, 0x022d9ea4, 0x643d0c0b,
0x7a641b1b, 0x15081b64, 0x2b9b9a13, 0x3f010b16, 0x3f3f3636, 0x0c050f36, 0x00359693, 0xff000006, 0x01eb01c0, 0x00080060, 0x00200014, 0x00280024,
0x0b0f522c, 0x22083c41, 0x8403010e, 0x3e3726b2, 0x012e3701, 0x0a0c5b03, 0x2007fe51, 0x0832411b, 0x2d3d012e, 0x2a1e7e4f, 0x493264b9, 0xba7e1e14,
0x21070c5b, 0x15410001, 0x41aa2006, 0x3282082f, 0x56010a2e, 0x25506349, 0x49314a13, 0x2b8cfe56, 0x00200083, 0x6b429798, 0x1e372507, 0x010e1701,
0x2205934a, 0x85011e07, 0x0e072794, 0x15231701, 0x03863733, 0x8b8a9788, 0x9e296d26, 0x0f312051, 0x6d280584, 0x2a552b2b, 0x2b2b562a, 0x61209788,
0x9f268a8a, 0x1025364f, 0x05842030, 0x9586f520, 0x2a079744, 0x009601ab, 0x0010000d, 0x18270023, 0x270e2747, 0x23170727, 0x17163207, 0x2a059844,
0x22263437, 0x3e231506, 0x18331701, 0x2b0df946, 0x76761680, 0x01241b15, 0x20032a03, 0x12280382, 0x0120121c, 0x20200b24, 0x340a435d, 0x75208000,
0x1c1c242b, 0x1724191b, 0x12120e15, 0xa0241c0e, 0xdbb71820, 0x0029270a, 0x34353700, 0x5b823b36, 0x1d163225, 0x18061401, 0x271be2b7, 0x80121940,
0x1912802a, 0x16270682, 0x95950c09, 0x8556090c, 0x82162006, 0xd5802714, 0x182b1912, 0xb718ab12, 0x7f4614e2, 0x01d62208, 0x27ef827d, 0x0100002f,
0x010f0626, 0x0720cf82, 0x2a057f41, 0x37011e37, 0x013f013e, 0x82333523, 0x1e172c07, 0x2e071701, 0x07271701, 0x59170727, 0x460805ec, 0x1a120901,
0x403c0602, 0x24340409, 0x200a2215, 0x0d111e06, 0x40090110, 0x34040544, 0x0b221425, 0xbf140420, 0x1f3c3c1e, 0x3c1f3d3d, 0x013c1e3c, 0x1216014f,
0x246c2b3d, 0x1502022c, 0x10112011, 0x0d140406, 0x86412b68, 0x100c220f, 0x212c82b1, 0x29823d1e, 0xb3510282, 0x00562c08, 0x000c0008, 0x00140010,
0x18000018, 0x2410fdc5, 0x15333525, 0x28038207, 0xd52b6b01, 0xeb96952b, 0x2c0082ab, 0x2b2b1501, 0xc0c0152b, 0x405555eb, 0x240b822b, 0x2a556b6b,
0xc35c182a, 0x000b2a0a, 0x0025001c, 0x0041002e, 0x4144184a, 0x0e17230d, 0xe5820701, 0x33013e23, 0x051d4716, 0x4b08dc45, 0x07320857, 0x3e011f32,
0x011e1701, 0x2627010e, 0x012e012f, 0x40183637, 0x01210825, 0x915a1800, 0x6049300b, 0x1b1e0102, 0x41203a17, 0x011e1b30, 0x5d1e6002, 0x4d200533,
0x39330685, 0x094a0504, 0x0d110b16, 0x16111f0e, 0x07084a05, 0x85e60603, 0x1e441819, 0x0228330c, 0x41274960, 0x01161518, 0x2741182a, 0x0c296049,
0x02880c12, 0x1f013f31, 0x07050407, 0x070d221f, 0x041e1809, 0x7d0d090f, 0x601807b9, 0xeb8d09bf, 0x3720df87, 0x82052679, 0x012e230e, 0x314d0623,
0x59172005, 0x332007de, 0x17220887, 0xe0820f22, 0x010e0723, 0x20e5821e, 0x22f6823f, 0x6d072627, 0xeb4008d8, 0x002f2296, 0x23d74138, 0x011f162c,
0x0e161716, 0x26272601, 0x03833736, 0x4109c541, 0xf34108ce, 0x1dd74108, 0x070d7433, 0x060a181d, 0x0720220d, 0x1e070404, 0x04090603, 0x05c9415a,
0x06854920, 0xd741cd20, 0x01273322, 0x1605490d, 0x0d0d2011, 0x09160b11, 0x040f094b, 0xe7410201, 0x41402005, 0x088208ee, 0xf74e0020, 0x016b2e08,
0x001f0096, 0x05000023, 0x27012e27, 0x05254526, 0x7c692720, 0x07163e06, 0x010f010e, 0x33150630, 0x37032634, 0x4b011733, 0x05120d12, 0x2f261111,
0x03250301, 0x08038280, 0x262f0130, 0x13041111, 0xaa0a130c, 0x4216820a, 0x01020616, 0x40400c0f, 0x25273908, 0x6b05056b, 0x09392725, 0x0f0b4040,
0x0b040201, 0x3001050b, 0x68824040, 0xff000025, 0x82c201ea, 0x08200877, 0x3f000e00, 0x4d004600, 0x27010000, 0x33171607, 0x07273736, 0x17323617,
0x26220737, 0x06273727, 0x3e2b0582, 0x2e353701, 0x33363401, 0x50371716, 0x21820552, 0x16323725, 0x6c070614, 0x3282061a, 0x03010e24, 0x11821707,
0x37172f08, 0x012e3717, 0x00013735, 0x02087709, 0x770802ec, 0x1c0a5b7c, 0x0f735b0a, 0x5c020114, 0x0114200a, 0x0d0c0e01, 0x120f1512, 0x01015e0a,
0x0f821e14, 0x120a5e28, 0x0d12150f, 0x0f820e0c, 0x0a205a08, 0x1401025c, 0x0d016029, 0x75a9010a, 0x010d0a01, 0xcd024d01, 0x070a0a07, 0x0936f0cd,
0x14743609, 0x0c370b10, 0x130d0f14, 0x14026d03, 0x0d01151d, 0x14100936, 0x36091014, 0x1d15010d, 0x036d0214, 0x140f0d13, 0x100b370c, 0x376d0114,
0x04120b05, 0x70cdcd70, 0x050b1204, 0x20008200, 0x52038204, 0x1b240797, 0x29002500, 0x4d129952, 0x3323074f, 0x45023b35, 0x2b2705b2, 0x35333701,
0x70950123, 0x012805e9, 0x1919122a, 0x202b20bc, 0x2a290282, 0x0c0c0956, 0x2b205609, 0x0db3522b, 0x2b00ff26, 0x3535802b, 0x09271a82, 0x0040200c,
0x82000200, 0xd6012b00, 0x0a005601, 0x00001a00, 0x0c552201, 0x012e3906, 0x011e1505, 0x35373632, 0x010e0706, 0x26272622, 0x795a0001, 0xb4790202,
0xfe210483, 0x330884d1, 0x54221b15, 0x1b22545e, 0x1f2b5501, 0x202a2a20, 0x65902b1f, 0x65270783, 0x0d0c090e, 0x82090c0d, 0x8203205a, 0x05fb5c03,
0x09000333, 0x00000f00, 0x3f170713, 0x15230301, 0x010f1333, 0x3bbc8217, 0x265536a2, 0x8a75bf78, 0x322655df, 0x8001758a, 0x6c3c8622, 0x0155d5fe,
0x4d3cd55e, 0x08dba318, 0x2b050b6c, 0x000e000a, 0x33070100, 0x33352115, 0x21065d53, 0x556c0133, 0x2ac02105, 0x01280082, 0xababc080, 0x6b2a2b80,
0x02207382, 0x089f4818, 0x25001922, 0x0a457f18, 0x34352631, 0x17372337, 0x33361737, 0x34351732, 0x49112326, 0x6b320ac0, 0x12191912, 0xc70702c2,
0x304a364a, 0x0b0a2620, 0xab491219, 0x19803505, 0x12d6fe12, 0x160a0b19, 0x60406015, 0xc202143f, 0xebfe1813, 0x20069a49, 0x27e38200, 0xf201e7ff,
0x0c008e01, 0x2d053761, 0x27260625, 0x013f3626, 0x011e010e, 0x0c880737, 0x0d901720, 0xe8012a08, 0x1c1e5523, 0x1b0b2207, 0x234d3603, 0x2d7f3530,
0x14320c2b, 0x28270227, 0x4a293372, 0x103b3fb3, 0x04391847, 0x48a23a36, 0x082582e2, 0x1d552424, 0x404e1e08, 0x2b60150b, 0x8035330b, 0x732e0e2d,
0x1e122e30, 0x47103c78, 0x113fb24b, 0x4244a340, 0x51182d18, 0x072d0c7f, 0x17000f00, 0x2b001f00, 0x00003400, 0x06df6825, 0x22262739, 0x32361707,
0x14060717, 0x34263717, 0x32161737, 0x22062737, 0x181e1327, 0x630c5855, 0x012f05aa, 0x3a0f0fa6, 0x23230909, 0x161b234c, 0x88d51730, 0x171a240d,
0x462e1630, 0x067f0b89, 0x85772005, 0xd4162128, 0x01223692, 0x61180241, 0x7e24096a, 0x30483001, 0xfb420282, 0x821c200e, 0x622f20ab, 0x13291179,
0x33153733, 0x27072335, 0x83068223, 0x1733230a, 0xfd432733, 0x07232405, 0x62231533, 0x13380880, 0x20571918, 0x15302015, 0x85203015, 0x20121920,
0x010a0914, 0x2b0e1101, 0x22110843, 0x83804949, 0x80372d02, 0x042d2b2b, 0x0e150a10, 0x00152012, 0x59050f43, 0x332005c3, 0x332d8782, 0x1517011e,
0x2307010e, 0x3527012e, 0x2f0b823e, 0x013b1614, 0x32331735, 0x34013d36, 0x26223336, 0x26360682, 0x2715012b, 0x1d062223, 0x23061401, 0xc0a01632,
0x01013629, 0x06852936, 0x0e120929, 0x0e208020, 0x830e1212, 0x210a8803, 0x21888001, 0xdf252883, 0xa0120e40, 0x09e960a0, 0x00210b87, 0x0c836203,
0xf74b2720, 0x05444b08, 0x250a5c4b, 0x17161427, 0xa2822315, 0x35272623, 0x21b18233, 0x25610001, 0x6049250b, 0x49600202, 0x342c0584, 0x0d560a0c,
0x560f090b, 0xab010c0a, 0x200b0b61, 0x8221876d, 0x0a892e27, 0x82420311, 0x051c1605, 0x11038242, 0x07274400, 0x8001cb26, 0x0f000b00, 0x2b0dcf48,
0x11331103, 0x513d3a01, 0x3d510202, 0xc3230584, 0x87800146, 0x2411820b, 0x800182fe, 0x094b55fe, 0x01be3108, 0x00250096, 0x17000045, 0x3f062726,
0x3e333601, 0x36373301, 0x013f3637, 0x06071617, 0x23010e07, 0x010f030e, 0x0f061506, 0x27222301, 0x12363526, 0x33251b83, 0x1e171632, 0x211f8501,
0x07820622, 0x0f144e08, 0xb1222302, 0x02010104, 0x01010217, 0x091e160b, 0x02176808, 0x0f0d2203, 0x121b0c3d, 0x0405080c, 0x03020705, 0x083d0205,
0x31030661, 0x03070405, 0x0b1d3b4b, 0x1007252a, 0x1a1c0d50, 0x08040c14, 0x01110404, 0x03150746, 0x930c0104, 0x2a43820c, 0x6a0f0101, 0x3e1a0208,
0x8205154a, 0x03240856, 0x0c252511, 0x01030501, 0x1a070330, 0x06193301, 0x03010103, 0x5d2a3609, 0x01030314, 0x020b0502, 0x00016e13, 0x2007af46,
0x28d382d6, 0x000f000b, 0x001a0013, 0x0ea34121, 0x27261534, 0x07061737, 0x37013e27, 0x05260715, 0x011e3527, 0xec470617, 0x2f70330c, 0x25547e25,
0x5202c02f, 0x01237242, 0x52427231, 0x9f490102, 0xfafe360c, 0x541c0676, 0xa9061c54, 0xa0095e42, 0x722f2f72, 0x425e09a0, 0x0637463a, 0x8306036d,
0x00262c7d, 0x1300002f, 0x07010e23, 0x4f011e11, 0x032e0760, 0x05331123, 0x15331523, 0x15233521, 0xd2521614, 0x27372407, 0x83012e37, 0x80c0218d,
0x8705006e, 0x01802a06, 0xffabab00, 0x12194000, 0x051a6e01, 0x29561930, 0x51314e14, 0x01ab016d, 0xebfe1218, 0x19851912, 0x01d6fe27, 0x802bd500,
0x20248515, 0x2b3e8212, 0x2d142a41, 0x02200134, 0x0400006d, 0x2308b742, 0x00220012, 0x3520978e, 0xf85f9182, 0x82352005, 0x0e212482, 0x85011d01,
0x35252597, 0x23371521, 0x07231382, 0x87011e27, 0x15152797, 0x18012b80, 0x7c901901, 0x01202b26, 0x2a142d34, 0x4020988a, 0x1223ba83, 0x8f56fe18,
0x31eb25d2, 0x5629144e, 0xdf439882, 0x08b98205, 0x00150024, 0x25000035, 0x06272622, 0x010e2722, 0x3315012b, 0x32163736, 0x33171637, 0x15232735,
0x23352726, 0x04832215, 0x012b0626, 0x33352335, 0x6305da56, 0x2e0805f8, 0x2b17ab01, 0x275c2714, 0x2a172b14, 0x28292d2a, 0x2d29285a, 0x17162a2a,
0x16156b13, 0x150b0b6a, 0x6a2b1515, 0x162a6b2b, 0x1b0d0f40, 0x820f0d1b, 0x2e12825b, 0x546b2b01, 0x56450c03, 0x02544f07, 0x842b2a56, 0x093f4200,
0x1300ab2a, 0x5c005800, 0x64006000, 0x94849582, 0x23070624, 0x90823315, 0x3b250282, 0x35033501, 0x82a4822e, 0x0c695594, 0x82373221, 0x82162097,
0x05695a9c, 0x6c550c82, 0x3e172410, 0x82343701, 0x116c55ce, 0x82282e21, 0x2e2821b9, 0x7e55c28a, 0x0b15250a, 0x16156a0b, 0x8155c982, 0x0115221f,
0x2100821c, 0xe2822a01, 0x2a152008, 0x09155601, 0x2a16160c, 0x2b2a2ac0, 0x4e540155, 0x2a2b5406, 0x0663c02a, 0x19080f12, 0x55070b08, 0x0138058f,
0x0c111601, 0x08010514, 0xa465071e, 0x20161e15, 0x0d151e15, 0x001e151e, 0x03200082, 0x002e0382, 0x5601d601, 0x11000800, 0x00001c00, 0xdd821513,
0x23273729, 0x23152135, 0x82330717, 0x0727080d, 0x1e07010e, 0x37363201, 0x2a2b012e, 0x802b2b80, 0x2bab5601, 0xd52aab2b, 0x01032503, 0x01182418,
0x55012503, 0x822b2aaa, 0x23038279, 0x3202aaaa, 0x20051e5a, 0x285a8332, 0xff000004, 0x016b01e8, 0x205d8296, 0x0597421a, 0x095e2520, 0x26062106,
0x33246582, 0x33353736, 0x08eacf18, 0x6c411320, 0x35332205, 0x53148223, 0x012b0759, 0x100b1015, 0x12100a11, 0x82110d25, 0x822a2009, 0x120c27f1,
0x2b740c0c, 0x0282d62b, 0x874b6b20, 0x06672d05, 0x060b550c, 0x550e0a07, 0xab59060c, 0x2706314d, 0x80165501, 0x952a1680, 0x12232e83, 0x6b02000c,
0x27260847, 0x00002a00, 0x80843425, 0x2605d37d, 0x0622012b, 0x8414011d, 0x010e229a, 0x83878215, 0x013e300b, 0x25353335, 0x40011735, 0x5616090c,
0x58181812, 0x562005bd, 0x220a934f, 0x826b00ff, 0x2a012890, 0xd5121801, 0x18191912, 0x221078c7, 0x4155ab80, 0xff3b0667, 0x01b701d5, 0x002c00ab,
0x00400036, 0x17321300, 0x32363435, 0x36011d16, 0x50011e33, 0x1f28050d, 0x07151601, 0x010e0715, 0x2f318d82, 0x3b363701, 0x23351701, 0x3634012e,
0x22263417, 0x25908206, 0x31013b31, 0x0c83013e, 0x15072e08, 0x1910159b, 0x15111824, 0x1921241b, 0x620a1b2b, 0x0215011a, 0x11a20f18, 0x09168c0d,
0x2b61070e, 0x41242119, 0x11152015, 0x0e802b0e, 0x24088212, 0x0c800101, 0x08c2830c, 0x010c0c28, 0x03233524, 0x0a310315, 0x9003031d, 0x8c0d160f,
0x87150917, 0x24352303, 0x1515103f, 0x0202151e, 0x15151f14, 0xb7832510, 0x82000221, 0xd6012f00, 0x10005601, 0x00001400, 0x17163201, 0xa7570714,
0x26300806, 0x13013e35, 0x01213521, 0x01181200, 0x01544303, 0x540180fe, 0x18010343, 0x0156fee7, 0x185501aa, 0x0e070812, 0x61424261, 0x1208070e,
0x2ad6fe18, 0x03824a83, 0xec01002e, 0x28006601, 0x06010000, 0x23012e07, 0x20086076, 0x06a94f16, 0x1e371628, 0x37363201, 0x04831716, 0x3e372d08,
0x88012602, 0x270b1316, 0x0c1f1117, 0x2716260c, 0x07020135, 0x01011612, 0x070a212c, 0x293a2a07, 0x16101008, 0x090a0a23, 0x3801392b, 0x21080182,
0x0e171408, 0x0114100b, 0x14132633, 0x2117230a, 0x0301012d, 0x171d1f19, 0x11150108, 0x39010102, 0x8f413a58, 0x01c02809, 0x000900ab, 0x82210012,
0x1507218b, 0x3e23d682, 0x4e353701, 0x13220821, 0x9f82010e, 0xea532720, 0x01062a06, 0x6a02c000, 0x026a5454, 0x055754c0, 0x3813883c, 0x13382222,
0x4901080b, 0x0801496c, 0x8056ab01, 0x17178e5b, 0x24805b8e, 0x02822437, 0x1d00ff29, 0x2b0b0b2b, 0x8211101d, 0x111b212f, 0x270b6772, 0x001d000e,
0x25000026, 0x2d077b42, 0x15331516, 0x15371523, 0x35231123, 0x03821523, 0x34352308, 0x0e013f36, 0x34262201, 0x01163236, 0x181812ab, 0xd60be112,
0x2b8055c0, 0x19202b2a, 0x18016012, 0x02821824, 0x18015536, 0x1812eb12, 0x2beb1614, 0xebfe2bd6, 0x6baa8080, 0x40011812, 0x20050577, 0x05db4300,
0x24055b49, 0x002a001f, 0x06095600, 0x32213332, 0x34113536, 0x32072326, 0x23260717, 0x1714010e, 0x352ee782, 0x1617013e, 0x07061415, 0x34373627,
0x43826b27, 0x2a011222, 0x95350583, 0x132e2633, 0x18302418, 0x0117142e, 0x171eb754, 0x01182e14, 0x0be64c0c, 0x2b181336, 0x010c2e1e, 0x2e184830,
0x401f3615, 0x33263b54, 0x2e15361f, 0x1320a082, 0x2d060344, 0xd6010000, 0x1b006b01, 0x2c002300, 0x89823500, 0x010e1522, 0x21066f41, 0xf84c0633,
0x27342e05, 0x26343533, 0x0727012b, 0x23151733, 0x5707822e, 0x5b180783, 0x250808ed, 0x01221e6b, 0x35252936, 0x01045a05, 0x01243624, 0x12181904,
0x6b8e1e6a, 0x2a0a3015, 0x1b140a1c, 0x1b1b291b, 0xbc560a01, 0x6b013e05, 0x1f310b9b, 0x01013629, 0x0b0b262f, 0x1b24241b, 0x12400b0b, 0x6b2b9618,
0x04211b40, 0x222a8330, 0x7c301b29, 0xea220c47, 0xa382eb01, 0x78001121, 0x002905a5, 0x0e231501, 0x23150701, 0x08f54935, 0x33350724, 0x1483012e,
0x1716142c, 0x36153335, 0x3533013f, 0x03820723, 0x39eb0136, 0x80273b10, 0x02014639, 0x5f3d526c, 0x14164716, 0x54402a43, 0x2a087a82, 0x14172a80,
0x2aaa2b2b, 0x8000012a, 0x340d3222, 0x39561234, 0x01026049, 0x8080303a, 0x4901231d, 0x103d2736, 0x22121f1f, 0x5dc02a2b, 0x2f610707, 0x4e162008,
0xb5410597, 0x3305240f, 0x64333717, 0xcd6414d0, 0xebfe290a, 0x20161520, 0x4b702026, 0x410acd64, 0x12250bb3, 0x49498019, 0x0cca6480, 0x0806ef43,
0x01c0ff46, 0x00c001e8, 0x00220008, 0x27332500, 0x27071737, 0x33032337, 0x17323317, 0x33152307, 0x012b0617, 0x23272307, 0x013d2622, 0x013b3634,
0x356a2b01, 0x1e69691e, 0xaa806a35, 0x07090412, 0x27bfbf27, 0x12040907, 0x12260c82, 0x04121818, 0x1d8336d5, 0x1501362f, 0xd627036b, 0x6b6b0327,
0x12d61218, 0x206b8918, 0x206b8796, 0x206b8737, 0x236b8313, 0x14011d16, 0x27256987, 0x23353337, 0x216b8227, 0x6a856b15, 0x87966b21, 0x2766835d,
0xd41f0c11, 0x110c1fd4, 0x63846a8a, 0x0c6b6b2d, 0x0c1ed61e, 0x00000200, 0x8301c0ff, 0x00172667, 0x1300001b, 0x053b4c07, 0x013b1625, 0x4c373317,
0x77420559, 0x23152405, 0x840412ab, 0x25bd88b4, 0xd6d6c012, 0xb385c001, 0x6b23ba86, 0x8400d695, 0xe4220853, 0x9c018001, 0x20001700, 0x1e010000,
0x010e1501, 0x013f3627, 0x2e272636, 0x013e3501, 0x010f0617, 0xd9461606, 0x40012c08, 0xe010221e, 0x021f2810, 0x89080504, 0x5938200a, 0x2f2c065f,
0x99233b11, 0x281e0743, 0x04110803, 0x9e200b8a, 0x4306e843, 0xeb2b06cb, 0x08006b01, 0x25001100, 0x69250000, 0x272007dc, 0x22051046, 0x57071614,
0x3736055d, 0x3e171632, 0x011e3301, 0x07010e17, 0x75304001, 0x06560106, 0x2e4e3075, 0x0db13605, 0x01012721, 0x140c131b, 0x0b150607, 0x01011a14,
0x2a952127, 0x2500822b, 0x30012b2a, 0x02823049, 0x1d0b4124, 0x1982182d, 0x08080929, 0x15190109, 0x431d2d18, 0xc02a09c3, 0x0b008001, 0x1d001400,
0x934c2900, 0x1817200d, 0x2007cf61, 0xe1611837, 0x2e072407, 0x83063701, 0x27280889, 0x00010616, 0x06026c52, 0x84363684, 0x2e6c0206, 0x05283111,
0x04283122, 0x28041038, 0x28052231, 0x171f3531, 0x1f170101, 0x2a080584, 0x60028001, 0x04864b49, 0x494b8604, 0x141aa760, 0x13363519, 0x1b1b3519,
0x36131935, 0xac141935, 0x03010e01, 0x26020225, 0x510e0102, 0x30080a4b, 0x000f000b, 0x16151300, 0x21150706, 0x37362635, 0x17160535, 0x4b39c035,
0x6140012e, 0x56fe4d29, 0x55015119, 0x1146296a, 0x682f4040, 0x45154013, 0x08934710, 0xec01ea28, 0x05009601, 0xd3820900, 0x2325002c, 0x15330735,
0x33132327, 0x4b182337, 0x250811fd, 0x6b40ec01, 0x01ab8140, 0x80230eab, 0x10100c24, 0x100cc70c, 0xd5100101, 0x55aad696, 0x2a2b0001, 0x0c10012a,
0x1883b9fe, 0x0c470123, 0x080b6710, 0x5f91eb20, 0x5f953520, 0x5f82eb20, 0x92ab8021, 0x95c0215e, 0x03215d90, 0xaf4c1800, 0x00032207, 0x94bb8617,
0x84172055, 0x000121d3, 0xd120578f, 0xeb216c82, 0x20578f55, 0x20cc8295, 0x415b8500, 0x2a224317, 0x618f2b01, 0x30080348, 0x005601eb, 0x0100000e,
0x35231521, 0x35331123, 0x05a14c21, 0xd6fe9535, 0x012b2b2b, 0x30012b80, 0xc0962b01, 0x4040c0fe, 0x503025c0, 0x03290a27, 0x00000700, 0x11211133,
0x26038201, 0xfe800140, 0x822a01ab, 0x01802605, 0x01d6fe55, 0x215e822a, 0xdb530c00, 0x4e2b8308, 0x17200527, 0x08d58718, 0x2f002b2c, 0x23370000,
0x21073315, 0x07832135, 0x35332524, 0x03823523, 0x13820520, 0x0b860520, 0x0b822720, 0x23830387, 0x93846b20, 0x8380fe21, 0x822a2006, 0x832b2004,
0x840120a5, 0x29048209, 0xaa2a2a56, 0x2b552b2b, 0x0482802b, 0x552aaa24, 0x07822a2b, 0xfa82ab20, 0x2c830382, 0xa3002b21, 0x82012093, 0x8613207b,
0x208f837f, 0x065c4611, 0x07823720, 0x11330124, 0x07821723, 0x13201383, 0x01210786, 0x84738440, 0x836f8260, 0x82fe2002, 0x21868270, 0x91822b2b,
0x012a2a24, 0xb1822b55, 0x802a8025, 0x82d5fe2b, 0x82d5209a, 0x82012006, 0x821382c1, 0x200582b9, 0x20008200, 0x202b4110, 0x37003329, 0x3f003b00,
0x86010000, 0x77032077, 0x152006a3, 0x35200f86, 0x0b830782, 0x07862520, 0x03870b83, 0xc3861720, 0x07821120, 0xb182af83, 0xaa2a2a22, 0x0583b285,
0x0d87b083, 0x2a2aab23, 0x850b8356, 0x20a282b6, 0x83b4822b, 0x83c082b9, 0x82c883bf, 0x058241be, 0xe741b683, 0x86132022, 0x841120ab, 0x23112207,
0x83a38605, 0x209b87b3, 0x83a38613, 0x2aeb2307, 0x6082552a, 0x83074b41, 0x4196820a, 0x18820555, 0x9d820282, 0xfe2b2b22, 0x01288782, 0xd62b8080,
0xd52a2b2b, 0x14849085, 0x2024e741, 0x0ad74121, 0x35212523, 0x07734221, 0x15209b87, 0x87060342, 0x9501229f, 0x08de412b, 0x4105e842, 0x37410d39,
0x2a2b2607, 0xd52bd52b, 0x221c832a, 0x82d52a80, 0x21a4820d, 0x0082002b, 0x03820320, 0xd601002e, 0x1a00ab01, 0x27002200, 0x23010000, 0x2105654a,
0x1a602315, 0x35340807, 0x15213523, 0x26343533, 0x37270717, 0x16011f36, 0x07173707, 0x15950123, 0x152baa2b, 0x12191912, 0x2a016a6a, 0x1528192b,
0x0908152c, 0x81d5061b, 0x012c812c, 0x2b205f83, 0x3105a955, 0x5515ea2b, 0x15dd1912, 0x0707152b, 0x817f081b, 0x6754832a, 0x00ab260a, 0x001e0015,
0x24696726, 0x11333527, 0x17331121, 0x20018237, 0x18d76607, 0x2ad6622b, 0x0b2ad6fe, 0x20602b20, 0x17cf6680, 0x22825520, 0xb52a0122, 0x8b822384,
0xfb4d0320, 0x0030230a, 0x4b180034, 0x845d075b, 0x013d311b, 0x15333634, 0x37330717, 0x012f3436, 0x33152317, 0x1a5fd418, 0x3d56562b, 0x46060646,
0x01404099, 0x11054e80, 0x4e0c0921, 0x552a0721, 0x07465556, 0x80470611, 0xef76002b, 0x01ab3305, 0x000300ab, 0x00150007, 0x00270023, 0x3700002b,
0x01423523, 0x23152305, 0x58520622, 0x33152805, 0x0e111711, 0x85012b01, 0x35272219, 0x20238213, 0x21038215, 0x008355d5, 0x25054f52, 0x01ab2b55,
0x0f821218, 0x2a606022, 0x40250083, 0xeb2b2a2b, 0x05477b16, 0xd601162f, 0x1200ff96, 0x2bc02a18, 0x00ff3560, 0x227d822b, 0x46080000, 0x09220843,
0x7b842200, 0x33002f39, 0x45003c00, 0x22010000, 0x3733010f, 0x2627013e, 0x0e211507, 0x18330701, 0x4b10d284, 0x252005a6, 0x620a5660, 0x25200857,
0x2d07f45f, 0x05076c01, 0x08a955e9, 0x22060404, 0xa582ebfe, 0x2b161623, 0x0d8d1801, 0x204b290a, 0xfe4b3615, 0x6b4040d5, 0x2a220282, 0x5918ab2a,
0x95290e43, 0x04638703, 0x800a0811, 0x25d7822a, 0x241c5540, 0x03831c24, 0x20608a26, 0x40201540, 0x35210083, 0x05c04b01, 0x07860120, 0x27490020,
0x01d62806, 0x0011006b, 0x7d2c0023, 0x3a560ccb, 0x17272405, 0x8217011e, 0x231529b6, 0x010e2335, 0x34262223, 0x0983a318, 0x2c0ab87d, 0x15162bab,
0x156e0720, 0x20072e2b, 0x50768315, 0xac7d0567, 0x12d5330c, 0x01802b19, 0x2a2b1317, 0x2417132a, 0x0c2a2437, 0xcf5b0b13, 0x076f4206, 0x29005626,
0x44003b00, 0x22208782, 0x8205235b, 0x0e5f5079, 0x87502320, 0x35372907, 0x2327012e, 0x16320727, 0x2e219f8a, 0x539f8a01, 0x6b200666, 0x200e1360,
0x0500426b, 0x152b8022, 0x6f23b282, 0x822f2a16, 0x241b23b2, 0xb2861b24, 0x2b605520, 0x83122017, 0x552a2b4f, 0x2b2a1318, 0x0118132b, 0xc1823624,
0x840c1221, 0x073344c1, 0x05002b26, 0x16000d00, 0x1524bf82, 0x35331533, 0x05830382, 0xeb413520, 0x152b2708, 0x96152020, 0x986e60aa, 0x202b2806,
0x16c0d6b6, 0x6e2bc016, 0x02210786, 0x08008200, 0x01d60125, 0x00060080, 0x01000036, 0x21152317, 0x06372335, 0x17011e15, 0x0e15011e, 0x27262301,
0x2335012e, 0x8217021e, 0x3e660858, 0x032e3701, 0x36373435, 0x17163237, 0x27012e33, 0x06152335, 0x40d50001, 0x9a40d6fe, 0x162e0210, 0x1a020e17,
0x03041404, 0x12012b05, 0x192a0e15, 0x2901011c, 0x08030f32, 0x01130c15, 0x1a1b012b, 0x8001182a, 0x41ababc0, 0x191b170f, 0x01080806, 0x0401050b,
0x16070801, 0x17030b1a, 0x161e0517, 0x090f1919, 0x01830701, 0x1e160927, 0x05171804, 0x85008200, 0x01c028eb, 0x00090080, 0x82290019, 0x213529a5,
0x011e3315, 0x013f3632, 0x2905f75b, 0x012e2107, 0x3634013d, 0x16840333, 0x15333736, 0x21230614, 0x01352622, 0x55d6fe95, 0x24362401, 0x19125501,
0x23050a45, 0x802b1219, 0xc45a1184, 0x15012b06, 0x241b4040, 0x196b1b24, 0xa7419512, 0x12952405, 0x8300ff19, 0x50338412, 0x0b260b17, 0x1d001400,
0xb4790000, 0x5e63180b, 0x21bc1808, 0x4de02608, 0x66020266, 0x2705844d, 0x1e1e170d, 0x691e1e2e, 0x01210685, 0x82178755, 0x83a8201d, 0x1e2e2218,
0x200685ea, 0x2a008200, 0xff00000b, 0x018001ea, 0x180d0096, 0x22086191, 0x82250021, 0x002d27f1, 0x003a0031, 0x84690100, 0x05e85906, 0xdb430720,
0x430b970b, 0x002608ea, 0x01014936, 0x05843649, 0x2a2a8b23, 0x20028440, 0x20089080, 0x06f04c2b, 0x48019527, 0x4837aa37, 0x21068501, 0x00832b54,
0x058a1520, 0xf84c2a20, 0x089f4107, 0xb782eb20, 0x1d000c34, 0x00002100, 0x17163213, 0x22010e15, 0x3e352726, 0xa44f1701, 0x1e332708, 0x013e1701,
0xab82013f, 0x241bc026, 0x36240101, 0xb0260483, 0x2a384701, 0xb07c4738, 0xab153e07, 0x249501ab, 0x241b801c, 0x1c801b24, 0x5139c024, 0x0a41410a,
0x3c2d3951, 0x2d3c0101, 0xb34d1880, 0x206f8709, 0x226fa129, 0x44153335, 0x779a0650, 0x9b05bd5c, 0x4040247b, 0x4740402a, 0xff2c0537, 0x01dd01f0,
0x00050086, 0x0024001b, 0x373b9382, 0x06073517, 0x2e272516, 0x0f222301, 0x07010e01, 0x1e011f14, 0x3f323301, 0x18013e01, 0x38082564, 0x3b011e07,
0x1d362701, 0x010d0734, 0x15056ab1, 0x9e08090c, 0x03010d0c, 0x240a846b, 0xfe0d109d, 0x051144cc, 0x18013431, 0x1d4a1f12, 0x107dc00c, 0x0cff4820,
0x8441030e, 0x0dff2121, 0x08220982, 0x3d55aa1f, 0x12eb2506, 0x1a00b219, 0xbb518f82, 0x174b4b05, 0x36071f4a, 0x00470043, 0x004f004b, 0x00570053,
0x005f005b, 0x00670063, 0x4b151300, 0x052005d8, 0x57053b44, 0x35200bd4, 0x63441393, 0x2a1bb006, 0x56012a2b, 0x2a56fe2a, 0x82962a16, 0x85162003,
0x8416200a, 0x8405830a, 0x850e8a19, 0x22108324, 0x822b6b01, 0x82402000, 0x8a028603, 0x83198e0a, 0x2a56210e, 0x31080088, 0x00020000, 0x01ecff00,
0x00a301e3, 0x00170003, 0x27072500, 0x3727023f, 0x07270727, 0x16072726, 0x37170717, 0x26371716, 0x1ef13c01, 0x110d7ef0, 0x03821e0d, 0x11443830,
0x400a3037, 0x261e2a0a, 0x1ef0dd1a, 0x17861ff1, 0x261a2e24, 0x17822a1e, 0x11373025, 0x820b0044, 0x01d52257, 0xd34e18ec, 0x000f2208, 0x2f5f8213,
0x002f002b, 0x003d0035, 0x13000042, 0x27231533, 0x37240382, 0x03353315, 0x37200b8a, 0x58053e41, 0x352908b1, 0x17233533, 0x35152335, 0x21048223,
0xda491333, 0x2a6b280b, 0xd6d6562a, 0x8755802b, 0x2a562207, 0x20008256, 0x3be48255, 0x2b2a2bab, 0x2c154f55, 0x1b090716, 0x2c82d607, 0x55012c82,
0xabd6802a, 0xd5fe8080, 0x2b200785, 0x80200083, 0x2b2e0584, 0x552b552b, 0x2b164e01, 0x1a070715, 0x2d828008, 0x04000022, 0x24085748, 0x001b0017,
0x0a736721, 0x15013b22, 0x8e829c82, 0x6a323321, 0x052c058b, 0x25211121, 0x27371707, 0x17010f37, 0x40200782, 0x22062145, 0x452aaa2a, 0xfe23062c,
0x82800180, 0x4b002603, 0x2d2d1e4b, 0x3803829e, 0x95014b1e, 0x00ff1218, 0x2a2b1813, 0x12192b2a, 0x18120001, 0xea00ff2a, 0x2620824a, 0x2c1e222c,
0x4e4b1e2d, 0x35080863, 0x008001c0, 0x13000017, 0x011e0733, 0x17011e15, 0x37171632, 0x010e2715, 0x27012e23, 0x4b373634, 0x18132180, 0x17324202,
0x31310a23, 0x7217230a, 0x14180396, 0x0a838001, 0x0242322c, 0x80211318, 0x03181421, 0x1f827296, 0x00820020, 0xd22fd785, 0x35009601, 0x5f005600,
0x00006800, 0x7c161725, 0x272016b0, 0x2219af7c, 0x83142117, 0x1f1626eb, 0x36373301, 0x21fc8237, 0x2d823436, 0x2f26072c, 0x06072301, 0x17072707,
0x56453706, 0x08be6507, 0x2d9f012b, 0x042b0406, 0x14103509, 0x05df7c08, 0x35101423, 0x23118209, 0x01012d06, 0xfe301a99, 0x102c05eb, 0x0a241836,
0x18250920, 0x052c1036, 0x35230e82, 0x82092519, 0x3519210e, 0x75270e82, 0x402a2a20, 0x49202a2a, 0xab290579, 0x4a080623, 0x0d150307, 0x090a7d08,
0x23060824, 0x17961515, 0x25101332, 0x091b141b, 0x1a093838, 0x11241c14, 0x1c241125, 0x1b200e85, 0x39210e83, 0x06054601, 0x200ddf7f, 0x9bc818c0,
0x000f3108, 0x01000013, 0x07112311, 0x37352315, 0x27331123, 0x0806754f, 0x2ba00120, 0x6be02b6a, 0x6b6b956b, 0x016a6a96, 0x01eafe4b, 0xabab6b16,
0xebaafe8b, 0x008080eb, 0x00820004, 0x478b0120, 0x418e4584, 0x3f8d4b20, 0x3c862020, 0x8f7c3a82, 0x213f8905, 0x7b8b0100, 0x3788c020, 0x32866b20,
0x33820620, 0x6f8c0020, 0x17001322, 0xbd83b989, 0xbd8f2520, 0x012a6b23, 0x82808d75, 0x406b23c0, 0x5386f640, 0xb6228385, 0x49820001, 0x3b002f2b,
0x22130000, 0x14011d06, 0x05214316, 0x4a363221, 0x352305ab, 0x97333533, 0x06514517, 0x2315232b, 0x0b0a6035, 0x4a350a0b, 0x20068555, 0x2e0d8c2b,
0x202a2016, 0x00012a20, 0x0826080d, 0x9420100d, 0x35802606, 0x2b2b8035, 0x1b931800, 0x82212009, 0x3517218f, 0x2006975a, 0x05165b0e, 0x1527373e,
0x34012e23, 0x3e333736, 0x27263401, 0x56553523, 0x191912aa, 0x3025aa12, 0x56aa2530, 0x012c0c8b, 0x01405540, 0x01182418, 0x30483001, 0x0d8c0c82,
0x67830020, 0xd6220482, 0x77596b01, 0x47332005, 0x2e2f06ca, 0x07062201, 0x37172315, 0x013e3523, 0x58171632, 0x35230516, 0x8c800133, 0x8c55203f,
0x6b01210d, 0xcf868598, 0x9601d622, 0x32065349, 0x17161415, 0x3617011e, 0x06163726, 0x37013e17, 0x8235013e, 0x0e2108c8, 0x012e0701, 0x1a3a3095,
0x20261010, 0x18180441, 0x26204104, 0x3a1a1010, 0x1d212d30, 0x9501211d, 0x33bc1902, 0x4200201b, 0xab2e084f, 0x0300ad01, 0x1f000c00, 0x21250000,
0xba192135, 0x27350860, 0x0733011e, 0x27352115, 0x35373632, 0x2607012e, 0x80010706, 0x209c82ff, 0x050a4980, 0x2a01bd32, 0x00012020, 0x012a2020,
0x49496002, 0x6aeb0260, 0xdf591d82, 0x1f1f3205, 0x0b0b202b, 0xe01f2b20, 0x01012037, 0x00003720, 0x246f8205, 0x01fb0100, 0x2e098256, 0x001a000e,
0x002b0023, 0x07170100, 0x18173727, 0x2d08a753, 0x14163233, 0x27220706, 0x36273436, 0x64183207, 0x01280e22, 0x3a6619e2, 0xebfe2218, 0x2005c45a,
0x3e068286, 0x13090b1b, 0x24600913, 0x00ff0458, 0x22b15804, 0x0240023a, 0x651e1701, 0x8a211840, 0x85243724, 0x04013302, 0x031a451a, 0x2b2020aa,
0x0420202b, 0x2b181f05, 0x8b82252b, 0x00000225, 0x6101eaff, 0x1b20058f, 0x820e8961, 0x069256ed, 0x17011e24, 0x8361010e, 0x017c2e0c, 0x31270b0c,
0x3e520201, 0x0202523e, 0x0d7e6161, 0x0c2a5a31, 0x47110512, 0x02533d2e, 0x493d5302, 0x41000074, 0x23200acb, 0x26316588, 0x07010e27, 0x2637013e,
0x013e013d, 0x1415011e, 0x83678207, 0x17162271, 0x086d822e, 0x10160e43, 0x29131a0a, 0x3f481414, 0x04255232, 0x1a291c02, 0x31522302, 0x1c220c24,
0x38511526, 0x37229501, 0x0e180a21, 0x88291211, 0x07241d72, 0x21020f0e, 0x212f032a, 0x24070b0c, 0x1a0b421d, 0x980d0a0e, 0x08635677, 0x06009624,
0x79820a00, 0x14172208, 0x012f0706, 0x17372703, 0x40d50001, 0x68554040, 0x0127972b, 0x473f8095, 0xfe556b0f, 0x27c720d9, 0x063f5500, 0x9601d628,
0x2e001b00, 0xaf884000, 0x3424aa82, 0x15160727, 0x2e22b582, 0x0d822701, 0x37173226, 0x15073326, 0x2905835b, 0x37363216, 0x33372734, 0x705f2337,
0x82172005, 0x5c232020, 0x37200502, 0x220a3a41, 0x4205220d, 0x05820526, 0x23131334, 0x36557024, 0x18120505, 0x01182418, 0x55203601, 0x874b9540,
0x012b2608, 0x30304830, 0x0a5a4124, 0x22232525, 0x64491313, 0x0527079a, 0x20550c23, 0x82010136, 0x1218263a, 0x55360505, 0x07bf4b15, 0x30243622,
0x01213a82, 0x3c008200, 0xff000006, 0x01eb01d5, 0x000500ab, 0x0017000e, 0x0025001c, 0x0100004b, 0x27071715, 0xf1781835, 0x5f072008, 0x272407ab,
0x23352633, 0x01281688, 0x14151632, 0x14150706, 0x06270282, 0x2622012b, 0x8223013d, 0x82098510, 0x3634320c, 0x3617013b, 0x103d6001, 0x3f2c154d,
0x3e3e583f, 0x05884609, 0x2dadd223, 0x06934680, 0x3e03012d, 0x16364a58, 0x0915090c, 0x820daa0d, 0x160c3005, 0x0d0d5358, 0x5b6b012d, 0x6b2e1a24,
0x83583ec0, 0x13802338, 0x0282131a, 0x3f2b8023, 0x2c0985ea, 0x3e588001, 0x42085338, 0x0926141b, 0x8236820d, 0x090d293d, 0xd51b1426, 0x41012333,
0x3008b343, 0x008001d6, 0x001b0013, 0x13000024, 0x17333733, 0x18b08233, 0x210af15a, 0x93443501, 0x087a4d05, 0x2b405525, 0x18402b80, 0x2708725d,
0x3b021201, 0x55023b30, 0x242c1082, 0x55011818, 0x12182b2b, 0x191200ff, 0x23059448, 0x151600ff, 0x16200082, 0x089cc918, 0x22090b4f, 0x951a0013,
0x07172671, 0x07270717, 0x27678e21, 0x13212bd4, 0x00014634, 0x5f25618f, 0x460e2c3a, 0x2f42185d, 0x82402008, 0x001824cb, 0x8225001c, 0x2848835b,
0x1e210717, 0x37363201, 0x06575033, 0x23153323, 0x2be48227, 0x16321723, 0x26220614, 0x20153634, 0x01200084, 0x2b059451, 0x1218012b, 0x7df2402b,
0x4bbd1588, 0x090a9718, 0x22844020, 0x241b2024, 0xf8821b24, 0x20550127, 0x35201535, 0x207b184b, 0x05334608, 0x9601c024, 0x115a2800, 0x013e2108,
0x34086184, 0x27260607, 0x23171622, 0x0e23013e, 0x012e2701, 0x36333634, 0x012e1716, 0x01013e27, 0x01352600, 0x11072504, 0x36290122, 0x29012936,
0x230a0221, 0x020a2380, 0x830b8221, 0x222b0810, 0x04250711, 0x95013501, 0x29243401, 0x04070226, 0x30513301, 0x0f070101, 0x3a30303a, 0x0101070f,
0x01335130, 0x26020704, 0x44342429, 0x9620061b, 0x03288382, 0x07250000, 0x95013727, 0xc0230082, 0x82d5d5d5, 0x00002492, 0x4101f8ff, 0x556d05e7,
0x013e2105, 0x210d215b, 0xf3181f00, 0x1c2b0aeb, 0x01014232, 0x1c075362, 0x823b7249, 0x14182a0a, 0x42011814, 0x49723b32, 0x08834400, 0x6782ab20,
0xd3431820, 0x36162c08, 0x07063237, 0x33012e33, 0x8237011e, 0x822e205a, 0x713528db, 0x22320205, 0x83102010, 0x0d1f22d4, 0x2b098201, 0x05023222,
0x4c950171, 0x33214c68, 0x3325c68b, 0x00684c21, 0x2ca38204, 0x019601d5, 0x000300ab, 0x00170013, 0x32c5821b, 0x13112311, 0x1115011e, 0x23070614,
0x1135012e, 0x7a373634, 0x6b220864, 0x8a62d6d6, 0x802b2808, 0x2b555580, 0x82fe2a01, 0x180123e2, 0x2152fe12, 0x83012006, 0x2b802307, 0x9f462a2b,
0x01eb2209, 0x275f8480, 0x37000021, 0x13152335, 0x2305ea42, 0x2622012b, 0x33225d83, 0xd17b3321, 0x34352508, 0x9696eb36, 0x04846283, 0x6b0b0130,
0x0101120d, 0x404b0d12, 0xd6d65512, 0xe7502b01, 0x2a012d07, 0x0e121912, 0x40120e40, 0x00120ea0, 0x2009d747, 0x21c18356, 0xdb612701, 0x173f0806,
0x1e37013e, 0x27071701, 0x17371707, 0x33171637, 0xd5012726, 0x58213d1e, 0x21532e34, 0x26431b1e, 0x3d1b492c, 0x8020a055, 0x06195655, 0x0124082b,
0x25451f2c, 0x1e1e222a, 0x01011b18, 0x84462024, 0x2b61241a, 0x82384b36, 0x0a5b4562, 0x1e001323, 0x090b4600, 0x70052c45, 0x3f2f05f3, 0x010f2201,
0x34363717, 0x0f26012f, 0x45331501, 0x2a200b3e, 0x2d083c45, 0x1a050691, 0x04041a36, 0x9d390521, 0x25459e35, 0x0820450a, 0x1a04152e, 0x0b051935,
0x2d042105, 0x009d359e, 0x2d06a741, 0x009601e7, 0x003e0008, 0x00790047, 0x7c5d2500, 0x4c372007, 0x07220a08, 0x79822623, 0x06072722, 0x3f210582,
0x0c084c01, 0x16333722, 0x0ab84818, 0x45251721, 0x3e870737, 0x06010f22, 0x35223d82, 0x3c86012f, 0x27013d32, 0x36013f26, 0x013f011f, 0x32013b34,
0x3637021f, 0xdd823f82, 0x16530135, 0x1e2c1e1e, 0x0420851e, 0x06041d03, 0x060e0b25, 0x823c0601, 0x0c0d2c03, 0x1e030625, 0x011f0503, 0x82051f01,
0x25062308, 0x1a860d0c, 0x0b0e2308, 0x1d040625, 0x01200403, 0x130eccfe, 0x13131d13, 0x02021556, 0x18040213, 0x0401040f, 0x10040526, 0x0e820418,
0x14140323, 0x23158403, 0x26050410, 0x0f201882, 0x02381584, 0x01360115, 0x1d1d2c1e, 0x19251e2c, 0x05340504, 0x06090f02, 0x01010627, 0x09220482,
0x1082020f, 0x0f190430, 0x0604190e, 0x10010533, 0x0528050a, 0x04820101, 0x01100a29, 0x04063305, 0x83a90e19, 0x131d326e, 0x04021018, 0x09020421,
0x01031a09, 0x091a0301, 0x220e8409, 0x830a0910, 0x01033017, 0x04190909, 0x09091904, 0x04210301, 0x460a1002, 0xc022067f, 0x334cd601, 0x07c55b06,
0x21010027, 0x21112135, 0x18018235, 0x200daa53, 0x0aa75201, 0xfeab0123, 0x714618aa, 0xe6731807, 0xd8fe2108, 0x2408dc76, 0x00ff2b15, 0xd3511880,
0x81fe220f, 0x4200832b, 0xd53b0667, 0x06009601, 0x16000d00, 0x21370000, 0x2e07010e, 0x3e212501, 0x011e3701, 0x73012e27, 0x2c2b0533, 0x750aa801,
0x01755555, 0x8458fe9e, 0x54ca2008, 0xab2606f9, 0x02026b53, 0x05847d6b, 0x1e170825, 0x671e2e1e, 0xff22076f, 0x578301ea, 0xa9450e20, 0x21372405,
0x52230706, 0x1521053e, 0x215f8623, 0x10821732, 0x33153323, 0x26668b16, 0x40a10602, 0x880b352b, 0x2c34266a, 0x0621202b, 0x256e87d2, 0x2a2b1516,
0x7185152b, 0x82291721, 0x8845200a, 0x00013174, 0x01dfff00, 0x009d01b4, 0x250000db, 0x37263607, 0x02825782, 0x013e0723, 0x28d48227, 0x010f3606,
0x36160706, 0x200b8207, 0x39038217, 0x0717010e, 0x36162317, 0x14272217, 0x16071716, 0x1f26011f, 0x17063701, 0x18821e33, 0x27200382, 0x02820382,
0x82262221, 0x26373c42, 0x37362736, 0x36371626, 0x013e3337, 0x3f361537, 0x37360601, 0x37163607, 0x82150607, 0x17272c42, 0x36321716, 0x1716011f,
0x82012f36, 0x16262e34, 0x2e171607, 0x26062701, 0x17341617, 0x820a8214, 0x2606240f, 0x82331607, 0x82172030, 0x3607296f, 0x06140734, 0x16062715,
0x8d84a783, 0x36312722, 0x5e826983, 0x16023e22, 0x9f823182, 0x37303723, 0x826d821e, 0x06072212, 0x08738217, 0x3f263653, 0x8b013602, 0x01010405,
0x18280202, 0x030f3115, 0x0b140108, 0x070f030e, 0x020d0710, 0x270f0507, 0x0a050407, 0x07040201, 0x09030501, 0x05030b0a, 0x02020506, 0x09080403,
0x0c01020e, 0x050b0207, 0x0c040904, 0x09090704, 0x0c0d0d0d, 0x5c420a18, 0x08498202, 0x01100523, 0x06040504, 0x081c0303, 0x0323140f, 0x090b0a0f,
0x03070a08, 0x010a0b0b, 0x050f0817, 0x02020807, 0x36538209, 0x06082715, 0x03060103, 0x01080902, 0x05030409, 0x01040103, 0x82010304, 0x04022400,
0x83020305, 0x0c03260c, 0x05050805, 0x08538201, 0x19060c37, 0x04011d38, 0x04041918, 0x1b060806, 0x0e081a22, 0x01142526, 0x3f010102, 0x07070c22,
0x05020204, 0x03021109, 0x03050604, 0x1a0c08df, 0x361e010c, 0x0703090b, 0x088f8202, 0x0305092a, 0x01020505, 0x0605010d, 0x010c2701, 0x1308110c,
0x0a0b0c33, 0x07190818, 0x03060d04, 0x04040205, 0x0804120e, 0x010a040e, 0x04262982, 0x050a0606, 0x8c820204, 0x4f7e1337, 0x18041f10, 0x06020122,
0x180b0c0c, 0x090d0308, 0x0104040f, 0x821b8206, 0x040127a3, 0x02070403, 0x3f820308, 0x0201063a, 0x1b2b0c05, 0x1001100a, 0x0b1b0710, 0x040e0505,
0x0b090807, 0x0f010601, 0x05342882, 0x070d010b, 0x0a080c0a, 0x030b0a09, 0x0709150d, 0x0308030c, 0x2008ea82, 0x0614050c, 0x1102020a, 0x1504232a,
0x01110c06, 0x060c0a0f, 0x01152312, 0x0d2c2903, 0x06070301, 0x2aba8204, 0x03060e08, 0x060e0306, 0x4c001800, 0x2f08072f, 0x0042000d, 0x004c004a,
0x00590053, 0x00630061, 0x0070006a, 0x007b0075, 0x00860080, 0x0092008c, 0x009e0098, 0x00a900a4, 0x00b500af, 0x00c100bb, 0x08c14618, 0x17011e26,
0x1307010e, 0x15270382, 0x14010e23, 0x82013b16, 0x82152011, 0x26223b0e, 0x14062223, 0x3e33011e, 0x33353701, 0x26343632, 0x3d222327, 0x33363401,
0x0e831632, 0x07012e2b, 0x06273734, 0x07261707, 0x24098323, 0x26021f14, 0x2a3c822f, 0x17071437, 0x16273736, 0x82371737, 0x2f34251c, 0x011f1602,
0x29822b82, 0x11821582, 0x82073621, 0x8417200a, 0x85108639, 0x2707260b, 0x36171516, 0x85218305, 0x013f2110, 0x06202d84, 0x2d8a1582, 0x22846382,
0x1d165e25, 0x715b7802, 0x3e3b05c2, 0x2901382b, 0x0a0d0d0a, 0x01050320, 0x04171e01, 0x0e090407, 0x2b0a110b, 0x84280238, 0x1e082516, 0x03070517,
0xb73e1383, 0x06070b01, 0x02050219, 0x033b0312, 0x01030535, 0xe81d0734, 0x07060c01, 0x0106021a, 0x14820113, 0x84063421, 0x222e0814, 0x08050308,
0x05052136, 0x23080521, 0x23250706, 0x21040322, 0x01260d04, 0x0c042202, 0x4506043d, 0x07330302, 0xcafe0228, 0x04220505, 0x27821406, 0x01070728,
0x03080808, 0x1d820254, 0x03043735, 0x2c030126, 0x05320202, 0x04041501, 0x15050322, 0x85a2161d, 0x390582ad, 0x38017701, 0x0d01352b, 0x05010d14,
0x1e162d03, 0x130d0101, 0x3901040c, 0x1283362a, 0x172d0823, 0x3810821e, 0x04b1030d, 0x03020b04, 0x1c76061a, 0x0b3b0707, 0x0410350a, 0x1f143305,
0x281587a0, 0x06071d01, 0x360a0b3c, 0x2816830f, 0x0608b520, 0x211c0105, 0x3fa58204, 0x01032207, 0x06221f25, 0x14052204, 0x23060826, 0x063e2d05,
0x0d074403, 0x270e0b33, 0x05042a06, 0x2b212482, 0x2e948203, 0x02012f02, 0x084b0608, 0x03053d08, 0x82060567, 0x0714222a, 0x20248207, 0x21d38245,
0x4c180506, 0x02250c57, 0x20001000, 0x71d51800, 0x06222f12, 0x33152707, 0x32333627, 0x2e371716, 0xd5180101, 0x952e0f70, 0x2d112c19, 0x251b2e71,
0x1e0a3322, 0xc818420e, 0xfa3a0fd8, 0x702d0f12, 0x1e26172d, 0x00322809, 0x00000200, 0x6b01eaff, 0x03009601, 0x6d820b00, 0x3723173b, 0x33153317,
0x33352315, 0xd62b4001, 0x402a2b2b, 0x950140aa, 0xd6aa9595, 0x095b582a, 0x6b01ec22, 0x1a369d82, 0x00001f00, 0x07010e13, 0x17011e11, 0x35373533,
0x012b2634, 0xbc480527, 0x07bb4805, 0x34061155, 0x1219d5ab, 0x01012baa, 0x2c160305, 0x1b070715, 0x2c822e04, 0x098c5c82, 0x02d52927, 0x982b1813,
0x059f5f04, 0x81260428, 0x0000812c, 0x0082000a, 0x14cf7518, 0x27002322, 0x2b477982, 0x07e75906, 0x40230797, 0x99d5abab, 0x80012202, 0x82e4822b,
0x2a2b2303, 0x06842a2a, 0x00300482, 0x00000300, 0xde01ebff, 0x09009601, 0x2f001500, 0x32356d82, 0x07061716, 0x3637012e, 0x16173605, 0x2e060706,
0x07013e02, 0x22138232, 0x43171606, 0x362105b3, 0x091b4f37, 0x11395908, 0x1b2a0435, 0x050a0f0e, 0x070d8d01, 0x080d330c, 0x110d2323, 0x242a9e4b,
0x0c0f0510, 0x10221019, 0x06040e0b, 0x7502110a, 0x02755858, 0x95017502, 0x2a1a0217, 0x050c321a, 0x16060102, 0x0d080e63, 0x2a122323, 0x040b0f05,
0x101a3410, 0x04070112, 0x2c261006, 0x03037558, 0x74203082, 0x30098777, 0x0008006b, 0x13000011, 0x013e2111, 0x27012e37, 0x06386707, 0x012b2336,
0x01614800, 0xd6486101, 0x024836d6, 0xd6364802, 0xaafe6b01, 0x26053d4a, 0x3649012b, 0x18014936, 0x240d0b4f, 0x001a0011, 0x20498323, 0x27498233,
0x013e1716, 0x22272634, 0x5289f082, 0x3108a051, 0x5838aa2b, 0x1c100e12, 0x101c2424, 0x3858120e, 0x095b8080, 0x01802805, 0x0c0c0940, 0x830d0c12,
0x3e01236a, 0xc35a0835, 0x35092305, 0x7286013e, 0x100d9526, 0x0d110c0d, 0x240be75e, 0x001d0015, 0x22778226, 0x83071416, 0x011e2179, 0x7a830582,
0x7b830620, 0x16321528, 0x23010e17, 0xf24d3736, 0x302b2907, 0x78464030, 0x0f1b0939, 0x0f2d7d83, 0x7839091b, 0x346b3c46, 0x303c6b34, 0x387b87fa,
0x015e9a5e, 0x0f0d4145, 0x24362401, 0x410d0f01, 0x412b0145, 0x80413f3f, 0x207c8615, 0x29f88303, 0x6b01d601, 0x10000d00, 0x7b821900, 0x8a251121,
0x17252276, 0x24e98907, 0x20072f01, 0x266a8314, 0xfe072014, 0x8bcfcffb, 0x149622e1, 0x25628417, 0x644f1417, 0x5c867964, 0x02205b82, 0x0a225f88,
0xd9891500, 0x210b9d41, 0xc8823436, 0xa6528032, 0x52a63232, 0x853a4040, 0x3a853232, 0x6b011640, 0x032eba82, 0x65434365, 0x4c022b03, 0x024c3232,
0x87627e41, 0x23af8308, 0x001b0007, 0x41051560, 0x2721052d, 0x21078533, 0x34411637, 0x82072006, 0x05c97a64, 0x33410720, 0x302a2c0c, 0x30292f01,
0x53334030, 0x831d141e, 0x141d2cce, 0x30335120, 0x43181843, 0x41a23330, 0x80820a38, 0x03230282, 0x84152f4e, 0x2f152ada, 0x042b034e, 0x58242458,
0x083e4104, 0x240aa360, 0x00120007, 0x88e1881a, 0x4184838d, 0x2b2206b8, 0x7b873030, 0x3f874f2c, 0x3c4f873f, 0x6a36356b, 0xea84303c, 0x01246c85,
0x59515159, 0x8306a241, 0xe9ff2b5b, 0x9601cd01, 0x34002600, 0x5b823f00, 0x0e07222a, 0x16060701, 0x011f1617, 0x02820882, 0x17161424, 0x0282011e,
0x013e3726, 0x27033e37, 0x26226c82, 0x0f823207, 0x0c822782, 0x013e3524, 0x2f832217, 0x16363b08, 0xdb263617, 0x493b0b0b, 0x060b0104, 0x1827160d,
0x14100b1b, 0x02060101, 0x1f0c120f, 0x31783410, 0x010c2a1f, 0x3d6d0b03, 0x0608071b, 0x04012b14, 0x2a121b28, 0x08112203, 0x01820704, 0x03204108,
0x95011f14, 0x244c0d02, 0x0e061710, 0x1914150b, 0x0e23110b, 0x040c1605, 0x04070a17, 0x29450902, 0x1d172c1a, 0x1d62220c, 0x05023e0b, 0x161b1524,
0x1f220204, 0x05261318, 0x0606100b, 0x1b120608, 0xea26cb84, 0x8801ab01, 0x39721a00, 0x18012005, 0x820a7a89, 0x064b5ac2, 0xc655c682, 0x82128205,
0x832e200b, 0x05df5025, 0x72014108, 0x0217151e, 0x361e3f54, 0x3b171e16, 0x55d55520, 0x1d025f4a, 0x024232a3, 0x32324202, 0x42010142, 0x2b2b1f32,
0x012a2a3f, 0x36151f88, 0x0154401e, 0x171e1516, 0x2a2c041c, 0x6a0a2c2a, 0x0946264b, 0x27852182, 0x29423223, 0x05ce5801, 0xf3450020, 0x01d62206,
0x05ab4f82, 0x82170121, 0x17372896, 0x2707010e, 0x83272636, 0x82072004, 0x36230886, 0x37170116, 0x40550127, 0x07140f0a, 0x11230120, 0x100d0820,
0x2d184016, 0x10201040, 0xf6fe2d08, 0x832bd62a, 0x0c11291d, 0x23112007, 0x13082001, 0x222c1d82, 0x19110e2c, 0xfe0d0101, 0x2bd52aa1, 0x26082742,
0x00060080, 0x181c0013, 0x460c4994, 0x352f0562, 0x2217013e, 0x33011d06, 0x01263435, 0x8240d500, 0x1bd533a2, 0xaa150124, 0x1b240115, 0x0b2a0c09,
0xabc08001, 0x0c8240ab, 0x5656152c, 0x2a241b15, 0x1515090c, 0x63430d08, 0x205b830a, 0x25598919, 0x23171632, 0x52842634, 0x35231523, 0x8a5f8233,
0x0c2b2456, 0x836a0c12, 0x2c55845a, 0x091c2455, 0x2a090c0c, 0x1c2a5656, 0x08275524, 0x11007c3d, 0x00003e00, 0x32331513, 0x1e011d16, 0x32331701,
0x2e013d36, 0x33072701, 0x85161415, 0x2060850d, 0x83b38223, 0x23078268, 0x36173236, 0x50082e83, 0x2b060706, 0x26272601, 0x11202b27, 0x3a4e010a,
0x011a12ba, 0x26c03a4d, 0x157f1016, 0x0d140d1a, 0x0e130d28, 0x12332427, 0x03253312, 0x8e201814, 0x0116131b, 0x154c7b01, 0x47368710, 0xd1121401,
0x2e014835, 0x011914c0, 0x09661117, 0x58090e0e, 0x2d058558, 0x1212251a, 0x1c6d1a25, 0x14031814, 0xc74f2016, 0x01ea3405, 0x00ab01ab, 0x00210018,
0x00290025, 0x010e0100, 0x63231507, 0x332905a2, 0x37363221, 0x2b012e35, 0x20048201, 0x23c28207, 0x3e352315, 0x28053264, 0x01231533, 0x013d2d00,
0xf29e1815, 0x01152b0d, 0x251c2d3d, 0x25018401, 0x00822a07, 0x3d215a82, 0x9c6a192d, 0x3d2d2e0b, 0x1c250128, 0x251c2b2b, 0x2a2b55ac, 0x05475c00,
0x39227f87, 0x7fa43d00, 0x31054b55, 0x2315010e, 0x3e373634, 0x22263401, 0x26231506, 0x93a01736, 0x231e2034, 0x06080f13, 0x08110c2a, 0x0c120c0a,
0x0324022a, 0xa39a2a2a, 0x1ba13808, 0x07170e16, 0x0f090b04, 0x0e040b0f, 0x09090b12, 0x2a8b1817, 0x06000000, 0xe5ff0000, 0x9601d601, 0x14000800,
0x29001d00, 0x48003f00, 0x22130000, 0x32363426, 0x18061416, 0x200b1588, 0x20149317, 0x05d87b03, 0x1e010e2e, 0x37363701, 0x3e011e33, 0x012e2701,
0x2d08e162, 0x13130f8b, 0x0e14141d, 0x06013629, 0x02820654, 0xc1360129, 0x1d14140e, 0x8a0f1313, 0x14292d12, 0x0a720721, 0x1216332e, 0x0b1c1a2e,
0x172c0983, 0x15210709, 0x1b12120d, 0x13011212, 0x1d2e2e83, 0x36018214, 0x04743a29, 0x293a7404, 0x12918136, 0x01d7fe25, 0x82191317, 0x16332441,
0x831c0b08, 0x131a2308, 0x40835f17, 0x00121b23, 0x05635900, 0x2b01eb2b, 0x13000300, 0x26001700, 0x23fd8200, 0x23153313, 0x1721b283, 0x05876715,
0x35331522, 0x15220f82, 0xc6822523, 0x50691d20, 0x21153c09, 0x2bd52115, 0x0980402b, 0x0c01010c, 0x402b8009, 0x2b2bab6b, 0x099655fe, 0x82152b0c,
0xd6012701, 0x2b012afe, 0x1b83abab, 0x6b0c0924, 0x0b855540, 0x82809521, 0x40152400, 0x4d070000, 0x0b2c081f, 0x23001a00, 0x35002c00, 0x47003e00,
0x25085b55, 0x3e27012e, 0x05820501, 0x3523152a, 0x1e07010e, 0x013e1701, 0x230df859, 0x36342622, 0x20089e65, 0x07485e37, 0x55320721, 0x012106f3,
0x08d34b00, 0x01780239, 0x3a48020a, 0x02483a56, 0x4a4a6302, 0x0de8fe63, 0x10191010, 0x840ce210, 0x85ac2006, 0x85a8200d, 0x0c41260d, 0x11181111,
0x0a275311, 0xd3785b2c, 0x290f5c3e, 0x3e5c0f29, 0x4182634a, 0x1f836720, 0x02842282, 0x83014d21, 0x10192249, 0x20078601, 0x220e851d, 0x82000900,
0xd6012a00, 0x0f005601, 0x1c001800, 0xb7b41800, 0x5d00200b, 0x33210603, 0x05ff5c21, 0x18052321, 0x23083d48, 0x37211521, 0x4a0a4262, 0x372407aa,
0x55231533, 0x3008db51, 0x09b5fe12, 0x0c120c0c, 0x16013e0c, 0x4016eafe, 0x2a018215, 0x551515d5, 0x15561616, 0x18550115, 0x20097a50, 0x06e1622a,
0xc0d60123, 0x200084aa, 0x82008415, 0x02002199, 0xc0229f84, 0x0982ab01, 0x00000634, 0x07112133, 0x15352311, 0xaa2bab01, 0xfe67ab01, 0x1f826ee7,
0x8305ff48, 0x00082c23, 0x0010000c, 0x21010900, 0x82352335, 0x820720a0, 0x260383a3, 0x55fec001, 0x6c805601, 0x012d05e8, 0x2b55feab, 0x2b19ab6e,
0x2bd5abab, 0x087b452b, 0x80206393, 0x99206384, 0x562063aa, 0x84058661, 0x80992163, 0x402063a3, 0xd9206384, 0x162063aa, 0x84051363, 0x40d92163,
0x01206389, 0x280a2b41, 0x11213300, 0x01ab0115, 0x27578cab, 0x00070003, 0x2500000c, 0x2706296e, 0x33112105, 0x2b950135, 0xfe2f0082, 0x55560180,
0x00ffab55, 0x2b012b2b, 0x79000080, 0xab20079b, 0x09250982, 0x07010000, 0x3b028217, 0x37172107, 0xb7b7c001, 0x871ba6fe, 0x2a7b01bd, 0xb8ab011b,
0x1b2401b7, 0x1b2bbd88, 0xff2b6785, 0x01d601d5, 0x000500ab, 0x840f000c, 0x15372135, 0x27223887, 0x3b822317, 0x2b6e1e22, 0xe3223d88, 0x4082e573,
0xdd701f23, 0x2143862b, 0xef4173ae, 0x4105200c, 0x212006ef, 0x2b27c882, 0xab01ebfe, 0x82e7fe67, 0x00860866, 0xff000006, 0x01dc01ea, 0x000e0095,
0x001a0014, 0x00260020, 0x01000029, 0x07011e15, 0x1507010e, 0x2e27013e, 0x16032701, 0x27263517, 0x35373611, 0x27150706, 0x36330706, 0x17162307,
0x37172637, 0x48150127, 0x50090754, 0x076c5a3c, 0x9c4e6809, 0x252f4032, 0x32402f25, 0x2a06291e, 0x072b0607, 0x781c1e28, 0x94018080, 0x496b0b2a,
0x2b08513b, 0x4e5a840b, 0x86fe0969, 0x072a0729, 0x1d0e011c, 0x29062b06, 0x35821e3c, 0x33825920, 0x601c2523, 0x44948260, 0xd62a05a3, 0x03004001,
0x11000700, 0x97821600, 0x15130025, 0x82053521, 0x4e172003, 0x052e0d42, 0x2b353315, 0x00ff0001, 0x05810001, 0x3f4e1504, 0x812f2605, 0x7efe812c,
0x064470aa, 0x16820320, 0x0808162b, 0x8225041b, 0x2a02822c, 0x4e55822a, 0x0b24073b, 0x1b001700, 0x820ed95d, 0x013e33ee, 0x17011e37, 0x2327010e,
0x00013335, 0x02026c52, 0x0585526c, 0x01544025, 0x84405401, 0x2a2b2405, 0x8880012a, 0x6c522318, 0x1987adfe, 0x29211f82, 0x0a0b43d6, 0x83008021,
0x01002167, 0x0acb4818, 0x0bae6218, 0x5e996198, 0x5f82b282, 0x16010024, 0xcd838001, 0x11331324, 0x8e83eb23, 0x8480fe21, 0x00003216, 0x9001fcff,
0x0f008001, 0x0e250000, 0x012e2701, 0x4ed28237, 0x013f058b, 0x3e993990, 0x1836083b, 0x08342441, 0x24421a3c, 0x35083b40, 0x1c3d9939, 0x993e0320,
0x18191838, 0x200c8740, 0x0859720f, 0x22115f79, 0x8217011e, 0x012e31d0, 0x0f013e27, 0x013f1701, 0x07371707, 0x5a353315, 0x15999018, 0x252a072b,
0x2a257b2a, 0x012a8f25, 0x1b901895, 0x4a4a2417, 0x82154a15, 0x55402402, 0x82020055, 0x01f922c3, 0x27df84c0, 0x0100001c, 0x37331523, 0x6406214b,
0x272105df, 0x06e74b0e, 0x26342608, 0x2a2a1501, 0x1d1a1e67, 0x3f405401, 0x1b1c0155, 0x340d3d1e, 0x213f9936, 0x80012323, 0x151fa7d5, 0x5440223c,
0x2e1c8201, 0x1e163c22, 0x3d409837, 0x4c1c330c, 0x84004b56, 0x01ff2c63, 0x008101c2, 0x0055004c, 0x82272100, 0x06222359, 0x63603607, 0x15332805,
0x34262223, 0x6526013f, 0x342f0553, 0x35173336, 0x3337013e, 0x3435011e, 0x82263736, 0x3635231c, 0x22822737, 0x013b3635, 0x33171632, 0x1e011f32,
0x010e0701, 0x06152723, 0x18031707, 0x0808764a, 0x013a8185, 0x180e161c, 0x150d0b06, 0x46151d1d, 0x060c08b5, 0x04090a0a, 0x110d0a0e, 0x010a0d11,
0x23012b39, 0x1806062d, 0x010b091c, 0x0b090e0d, 0x2214090b, 0x17061037, 0x0a210912, 0x151c0102, 0x4719010b, 0x0c0c082d, 0x650b0b11, 0x0f01201c,
0x2a1d060c, 0x0c28011d, 0x050a0710, 0x010a0808, 0x02111a11, 0x02392b2a, 0x0e130603, 0x0c0c0711, 0x01050f08, 0x210c110b, 0x1f080d1c, 0x1c150126,
0x18240201, 0x831b017a, 0x0c11253f, 0x00040000, 0x2007fb42, 0x08456e0d, 0x1d062223, 0x05ca6801, 0x23263427, 0x35331507, 0x06be7a05, 0x15233522,
0x3605e241, 0x010e1735, 0x36321614, 0x126b2634, 0x2a012b19, 0xea12192b, 0x42ebfeaa, 0x2b2005fd, 0x2005f742, 0x05935795, 0x19800124, 0x00822a12,
0x55191226, 0x402b2b2b, 0x43063643, 0x40220532, 0xd2574040, 0x06274a06, 0x9601d636, 0x0f000700, 0x24001c00, 0x07130000, 0x3717011e, 0x010f012e,
0x07250785, 0x16141506, 0x248e8217, 0x37323316, 0x081c8627, 0x480bfd44, 0x12290f63, 0x310b6973, 0x0c2a0844, 0x160fd454, 0x221e4015, 0x0b602125,
0x2a01241b, 0x95013405, 0x48630f29, 0x4073530b, 0x3144082a, 0x47543d0b, 0x39202521, 0x0d224f18, 0x012ae10f, 0x260b1b24, 0xe3420034, 0x4fc02008,
0x142406e7, 0x23001800, 0x61088182, 0x27070137, 0x3d012e23, 0x3f363401, 0x27330701, 0x27331507, 0x27071737, 0x1d163217, 0x27071401, 0x2b272335,
0x1b65011b, 0x1912fa2b, 0x03320c0e, 0xba420d31, 0xb80fac2b, 0x1912b921, 0x402e2605, 0xfe1b5001, 0x012a1b9b, 0x0e751218, 0x2e120415, 0x2b2b4d0d,
0x214328d5, 0x5512194b, 0x2f25090b, 0x53530040, 0x82eb2005, 0x00362af7, 0x3700003c, 0x0627010e, 0x05c6552f, 0x2a062952, 0x2e012f26, 0x37013e01,
0x82261732, 0x17152d76, 0x032e0706, 0x07062223, 0x16011f14, 0x08050956, 0x15332772, 0x9f211521, 0x1c0e0c01, 0x100b0501, 0x0b080a14, 0x352e2633,
0x32430101, 0x53014444, 0x012f2943, 0x050a1216, 0x09131901, 0x2b1b2a15, 0x374f0132, 0x49540178, 0x16a4311a, 0x2afec001, 0x010a0c51, 0x0c451d01,
0x1210190b, 0x1a210116, 0x0706082b, 0x0137532b, 0x0a010f10, 0x01143b0b, 0x0f1b1701, 0x08291b20, 0x2e4d0d06, 0x230a0137, 0x0000156b, 0x240a3345,
0x001d0012, 0x0c6f7d22, 0x23013d27, 0x33112115, 0x069a4535, 0x08089a5c, 0x18136b34, 0x2a011219, 0xfe2b1912, 0x057b95d6, 0x1a351a05, 0x04210505,
0x9d359d39, 0x13188001, 0x1912d6fe, 0x95951219, 0x152b2a01, 0x1a361905, 0x21040c04, 0x1c822e05, 0xa7426e82, 0x4a27200a, 0xd55d0825, 0x21232e05,
0x013d2622, 0x33011e17, 0x35373632, 0x3d058237, 0x06222634, 0x23071507, 0x35270722, 0x13333634, 0x26013e16, 0x1e36012f, 0x26010e01, 0x66623727,
0x16322205, 0x05c04207, 0x01062223, 0x07ce6e95, 0x05442508, 0x221a1620, 0x22024801, 0x2e442e2e, 0x13043201, 0x12195d0f, 0x0a190d46, 0x111c0c0a,
0x220e0e22, 0x01e50722, 0x2305646e, 0x1722175d, 0x01210282, 0x07215e80, 0x151c5527, 0x031a221b, 0x38398234, 0x4a01222e, 0x128c270a, 0x05d2fe19,
0x06181a0a, 0x230e070b, 0x0f0e0e23, 0x0512439b, 0x83111721, 0x00172139, 0x096f9b18, 0x11000b28, 0x2e001600, 0x73423600, 0x23062e06, 0x34352622,
0x37361337, 0x27070627, 0x21058233, 0x08822305, 0x17333725, 0x83012e33, 0x333621d7, 0x3f08fc82, 0x36270714, 0x012e3507, 0x011e2327, 0x65011b2b,
0x3e32201b, 0xca207d58, 0x05311c20, 0x083ebe06, 0x4e010f33, 0x89090440, 0x3e405602, 0x38406108, 0x4a381f2b, 0x1e2c7d58, 0x2d20b919, 0x53074007,
0x08059d42, 0x7d202047, 0xfe323e58, 0x300f04e7, 0x087e0102, 0x124a1b33, 0x4002880e, 0x1e20573f, 0x4a587d2c, 0x68231e38, 0x202d0740, 0x03005339,
0xe2ff0000, 0x6b01de01, 0x17000d00, 0x00003700, 0x012e3625, 0x16060706, 0x37321617, 0x20a48217, 0x051c4d22, 0x21130722, 0x2706a95c, 0x23272633,
0x37363335, 0x23080482, 0x35373615, 0x011e1533, 0x26343517, 0x11159c01, 0x15174b45, 0x37182211, 0x6d1e4218, 0x20202b10, 0x25101f2b, 0x08050142,
0x09137c3c, 0x0c055960, 0x1812806a, 0x08160d80, 0x4b234219, 0x2322112c, 0x0e0e174b, 0x10501e42, 0x21202b20, 0x1b01102a, 0xff121801, 0x01181200,
0x17551813, 0x133c5514, 0x082a2009, 0x34820d16, 0x240a375f, 0x00220019, 0x2ca78226, 0x012b2627, 0x011d0622, 0x36011f14, 0x21838233, 0xb2820714,
0x36013f24, 0xb2862534, 0x82130621, 0xc90123a2, 0xf4180dc0, 0xaa271af7, 0x0cc0c9aa, 0x18961218, 0x2117f3f4, 0x4e18002a, 0x23080cdb, 0x0013000b,
0x15331300, 0x010e1123, 0x11272622, 0x11233323, 0x3632011e, 0x16d69537, 0x30483001, 0x56961601, 0x2f053868, 0xd5fe2a95, 0x24303024, 0xd5fe2b01,
0x12181812, 0x374f4682, 0x00962808, 0x0019000b, 0x42250021, 0x0e270619, 0x012e2301, 0x82273527, 0x27153f57, 0x0626013e, 0x23352707, 0x27373213,
0x16140706, 0x15233537, 0x65011b2b, 0x2c083e1b, 0x6182241e, 0x3216d632, 0x150c0107, 0x56165906, 0x101a0510, 0x564a0c01, 0x3c05f441, 0x01221b3d,
0xc5902430, 0x0633da2a, 0x07010c15, 0x00ff2f59, 0x11041a10, 0x40c00b0a, 0x207f8340, 0x08975402, 0x2b001b22, 0x0e207b82, 0x191ff518, 0x15210525,
0x6714010e, 0x3424067a, 0x12552726, 0x1019f518, 0x01aafe29, 0x17171456, 0x83aafe14, 0x6b012505, 0x55121801, 0x2b82fb84, 0x0c8c0120, 0x0c362b27,
0x0c272e27, 0x20068536, 0x06074100, 0xab01e226, 0x12000e00, 0x3107f949, 0x07271533, 0x2f37021f, 0x35333501, 0x37170717, 0x0385010f, 0x40803108,
0x6a763968, 0x65285227, 0x1031a640, 0x3c113b31, 0x14278810, 0x2bab0128, 0x318a2c49, 0x10c5104f, 0x712b530f, 0x73142715, 0x5a271828, 0x00103110,
0x330a8343, 0x001f0015, 0x00330029, 0x01000041, 0x1417011e, 0x07060706, 0x2c056d41, 0x36373634, 0x03013e37, 0x0627012e, 0x211a8207, 0x09883736,
0x10881320, 0x32231883, 0x82353637, 0x07222e1a, 0x40400106, 0x242c0154, 0x45142917, 0x2009882c, 0x26098214, 0x3d010115, 0x885b252d, 0x251b2209,
0x200b861b, 0x22188298, 0x86071113, 0x01952a05, 0x452c4054, 0x24172914, 0x2109892c, 0x0b8296fe, 0x2d251b26, 0x5501013d, 0x01210988, 0x21018215,
0x16834054, 0x19826a20, 0x13110722, 0x1f5a0584, 0x01d62808, 0x000f0096, 0x8227001b, 0x055751d7, 0x22057c59, 0x83013e07, 0x05d047b3, 0x18013e21,
0x30083954, 0x01012e37, 0x3c573e40, 0x4665012f, 0x4f0e0708, 0x0ae34a4e, 0x5a824020, 0x0584a082, 0x5795012e, 0x0e4f323e, 0x65460807, 0x803c2f01,
0x870bec4a, 0x2d2d2222, 0x09534c3d, 0x8784ab20, 0x21001838, 0x39002d00, 0x00004500, 0x16322113, 0x010e1117, 0x26222123, 0x81841127, 0x18059245,
0x8b08a759, 0x33072c93, 0x16171606, 0x26362307, 0x8a372627, 0x0180220b, 0x05a05200, 0x0785ff20, 0x164f2720, 0x18372005, 0x2c1181f5, 0x06032889,
0x2908240a, 0x24090704, 0x2005845d, 0x20118308, 0xd7561823, 0x1256220a, 0x082f4f18, 0x2306374f, 0x37480155, 0x2c051459, 0x16344837, 0x38210a1c,
0x22091d15, 0x43098838, 0xd62008f3, 0x2308df82, 0x00260016, 0x15232500, 0x013b1614, 0x23060715, 0x013d2622, 0x013e3523, 0x33153337, 0x06222137,
0x16141115, 0x07914418, 0x40550133, 0x0e280f09, 0x292b110d, 0x0115252a, 0xfe56402f, 0x08de4faa, 0x0c53d531, 0x0101400b, 0x3c641e2a, 0x40142b05,
0x89121880, 0x087b471c, 0x13004022, 0x2405cf67, 0x27153725, 0x05484115, 0x34013d23, 0x22618236, 0x67071716, 0x01250fcf, 0x0155556b, 0x4639190c,
0x4001270a, 0x3a303b03, 0x74825503, 0x1919242c, 0x55ea55e0, 0x0c0c094b, 0x0483d609, 0x1515c027, 0x15151616, 0xba8218aa, 0x083b4e07, 0x1a207383,
0x7192e382, 0x17010f26, 0x33072707, 0x82266791, 0x2b101c25, 0x618dd53a, 0x25303725, 0x864e3b0c, 0x01d623cb, 0xf971006b, 0x07c11805, 0x82052014,
0x01552258, 0x088b6856, 0x56011227, 0x2cf8effe, 0x09135cf8, 0x71180121, 0x0125071b, 0xa5430c00, 0x06574943, 0x57829620, 0x00032808, 0x1300000d,
0x07272107, 0x33353315, 0x23152335, 0x0156eb35, 0x2beb5500, 0x01802bab, 0xd6c0c06b, 0x406a40aa, 0x48000040, 0xb6220663, 0x95825601, 0x0b000722,
0x654e9182, 0x17072305, 0xcd4c2537, 0x016b3706, 0x25dbfe2a, 0x0101261e, 0xca1e261f, 0x8055012a, 0x1e26b180, 0x02821e26, 0x438c1320, 0x43866020,
0x7b821320, 0x0f217782, 0x3f438501, 0x32021e05, 0xeb37013e, 0x251eac2a, 0x2608011f, 0xa0fe251f, 0x5a512c01, 0x01012c51, 0x35404060, 0x26204782,
0x42264f82, 0x2e2e4e2f, 0x93822f4e, 0x00024a08, 0x01f5ff00, 0x008001f9, 0x00120007, 0x06220100, 0x2e011b07, 0x16320701, 0x06260717, 0x013e2707,
0x7e440001, 0x36f9f836, 0x5f31447f, 0x52246d2a, 0x5f2a6d24, 0x292c8001, 0x3601cafe, 0x1a2b2c29, 0x0112881a, 0x1a1a8710, 0x06174700, 0x15244b83,
0x1d001900, 0x13224d85, 0x48863537, 0x33245283, 0x17012e37, 0x8407d851, 0x48952158, 0x622b5285, 0x370a2a5f, 0x7c7f3612, 0x852b2b2b, 0x44ba225e,
0x2c59855a, 0x160c1a1a, 0xab952c29, 0x2a2ad6ab, 0x31008200, 0xff000003, 0x010002ea, 0x00170080, 0x0035002d, 0x5a830100, 0x07222722, 0xbf825c82,
0x32361727, 0x07150717, 0x23ba8203, 0x011d011e, 0x109adb18, 0x49350721, 0xd88205c0, 0x2d367f28, 0x28111217, 0x7d825f2a, 0x51246d2f, 0xf84b0124,
0x2f017e36, 0x080d0d08, 0x2904836b, 0x1e2e1d01, 0x1b121601, 0x92830112, 0x06023824, 0x00821a32, 0x10108725, 0x835d390f, 0xebfe25fd, 0x55090c01,
0x55302983, 0x20010c09, 0x171d1d17, 0x120d2020, 0x00200d12, 0x200e5b41, 0x0e5b4114, 0x82012e21, 0x0f5d41a9, 0x3b144526, 0x45143b4c, 0x270e5f41,
0x12120c55, 0x1a1a550c, 0x650a5f41, 0x002005bb, 0x13224383, 0xad183537, 0x61410809, 0x87202016, 0x13634156, 0x5d862720, 0x410e6441, 0x1d240963,
0x3d003400, 0x2808cb41, 0x2e373634, 0x010e2701, 0x83bb8207, 0x3336236e, 0x11821732, 0x010e1726, 0x010e1507, 0x54057571, 0x27250571, 0x07012e35,
0x2112821e, 0x44423523, 0x0f4b2607, 0x2034130d, 0x82e28426, 0x11282b8b, 0x2d0b0c12, 0x17717f36, 0x7241011d, 0x171e2609, 0x0140120e, 0x05034212,
0x14395d2c, 0x0d0a0e26, 0x0c120101, 0x00821a55, 0x0206322a, 0xc02c2938, 0x20171d01, 0x270e7941, 0x0d120114, 0x120d2020, 0x200e7741, 0x10774115,
0x78412320, 0x182a2712, 0x49302e4a, 0x79412918, 0x0f34270e, 0x330e1919, 0xeb461a1a, 0x01f92308, 0x69550080, 0x0a7b4105, 0x7c415086, 0x88052016,
0x137d415a, 0x61860620, 0x410c7d41, 0x6d8a1c7b, 0x232d7b41, 0x48191f25, 0x7b41e486, 0x35212727, 0x19180f0d, 0x7941330e, 0x44012026, 0x49440a4b,
0x083e4408, 0x43093344, 0x012708c3, 0x008001f9, 0x440e000a, 0x13220779, 0x20443537, 0x44522012, 0x66200d15, 0x24160b44, 0x0025000e, 0x08a7422e,
0x37013e22, 0x222b9842, 0x422d3c01, 0x2d22218a, 0x7d42013c, 0x00032420, 0x84eaff00, 0x067d6cd7, 0x06220124, 0xd8823107, 0x92073043, 0xba9524e0,
0x44635e2a, 0xb92212fe, 0x00821ae7, 0x2219fb44, 0x8837002e, 0x372621ef, 0x25359143, 0xba4c0201, 0x10425f2a, 0x07062227, 0x4393845e, 0x00212486,
0x060f4202, 0x00a23808, 0x000f0008, 0x17071300, 0x37130706, 0x22033717, 0x2e371707, 0x2b1b4601, 0x53f8242a, 0x2db51b47, 0x3675dc2b, 0x1ba1017f,
0xfe1c132c, 0x1b4768ca, 0xdc0b4f01, 0x432c2992, 0xf5230677, 0x8301f901, 0x00182243, 0x24458e1d, 0x16323336, 0x204c8217, 0x244e8236, 0x27071707,
0x31538b36, 0x311a1a24, 0x1e542a5f, 0x361b1e3c, 0x35becd7f, 0x618d17ba, 0x1a04242f, 0x4b1e691a, 0x2c292125, 0xe742be46, 0x20af880e, 0x20af8280,
0x05594110, 0x0c473120, 0x0fab4508, 0x2ababa23, 0x0c06475e, 0x47e7e721, 0xab260903, 0x0e009601, 0xaf841a00, 0x35233532, 0x15231533, 0x27231517,
0x13152335, 0x23152707, 0x32081282, 0x37273537, 0xab273317, 0x2b16d616, 0xd6565104, 0x6f227e1c, 0x761b802b, 0x3c011326, 0xab2a2a2f, 0xaf512a2b,
0x1bf5fe5a, 0x2a807e7e, 0x1c800f2b, 0x840014d6, 0x05737e9f, 0x15000f27, 0x35250000, 0x24508233, 0x15071533, 0x05794833, 0x68823720, 0x55011723,
0x28528216, 0xc46f226f, 0xc0195619, 0x274a84ab, 0x1a2a8080, 0x001abcbc, 0x02210082, 0x058f5300, 0x09006b23, 0x2f528200, 0x010e1501, 0x17013e07,
0x17273715, 0x06233507, 0x28080b82, 0x2b01013f, 0x280f6d6f, 0x6b955073, 0x422a2f2f, 0x2c3d1637, 0x566b0124, 0x37528612, 0x95570136, 0x1b2e2f2f,
0x20161301, 0xef871807, 0x05d37208, 0x1800142b, 0x33001c00, 0x00003c00, 0x24548213, 0x3b011e11, 0x2ce88201, 0x32333633, 0x26343517, 0x15210527,
0x25a98221, 0x06222523, 0x1d5e011d, 0x33172805, 0x3537013e, 0x8223012e, 0x3207231f, 0x08831d16, 0xa4653620, 0x2beb3b06, 0x10211b64, 0xfe131810,
0xfe5501ab, 0x019595ab, 0x091e1760, 0x0c01010c, 0x06856a09, 0x171e2008, 0x1240120e, 0x1801ab01, 0x12d5fe12, 0x15562a18, 0x1812c606, 0x2aab2b01,
0x171e4056, 0x18090c0b, 0x2909abbc, 0x151e170b, 0x0b0b0e12, 0xfd82120e, 0x200a0b54, 0x22b38208, 0x82290021, 0x112328b1, 0x21331614, 0x51012135,
0x352509f4, 0x33363411, 0x079c6c17, 0x21150722, 0x2229a982, 0x182a5506, 0xfe2b0112, 0x052e4ad5, 0x1200ff27, 0xc0121919, 0x05d77501, 0x0001bf28,
0x58485804, 0x8f844001, 0x72800121, 0x6a220bc1, 0x2483241b, 0x15158f2c, 0x00222220, 0x00000500, 0xeb50cdff, 0x001a3f06, 0x00320023, 0x3700003b,
0x010e0706, 0x16331507, 0x3e352317, 0x011e3701, 0x06070617, 0x4218010f, 0x17200cb6, 0x17241584, 0x23062707, 0x4908178c, 0x2d060bd5, 0x06710242,
0x7505aa0b, 0x01302530, 0x141c1101, 0x30302414, 0x19191324, 0x631a1a26, 0x01013629, 0x431e420e, 0x36291c16, 0x1e172936, 0x1e1e2d1e, 0x041713ab,
0x16170b1d, 0x2b2b4013, 0x253001c0, 0x150a171d, 0x99180102, 0x822e09ea, 0x1d293601, 0x421e4216, 0x5236010f, 0x98522a36, 0x092f6505, 0x02008022,
0x2408c782, 0x0100000a, 0x23011133, 0x23173711, 0x37012327, 0x9ef4fe9e, 0x1c4464d5, 0xfe800149, 0xfe64019c, 0x48e0e09c, 0x06df4b00, 0x6201ab2d,
0x11000a00, 0x21250000, 0x82071713, 0x142408c9, 0x33213307, 0x26343536, 0xfeab0127, 0x6022d8ac, 0x01011f1a, 0x56fefe81, 0x2b121601, 0x8c183601,
0x051f320d, 0x15220082, 0x4387071f, 0x5e01c022, 0x23254386, 0x36173703, 0x08458233, 0x33233327, 0x2227012e, 0xf9c00107, 0x12402870, 0x013b2c13,
0x013edc74, 0x0b0b1b22, 0x0f23012b, 0x3a0107a8, 0x01221a2c, 0x08ff4204, 0x6b01ab2b, 0x0b000700, 0x33130000, 0x34018315, 0x35333721, 0x802a6b23,
0x2ac0fe96, 0x6b015656, 0x2a2a8096, 0x0c274256, 0x21001124, 0x2f842400, 0x23152328, 0x17363435, 0x08871533, 0x3609644a, 0x013e3527, 0x55371517,
0x182ad6d6, 0x2bd5d568, 0x12ab6818, 0x82121818, 0x01013304, 0x01803d18, 0xd6d62a95, 0x2b551812, 0x1813d5d5, 0x18840155, 0x2a220484, 0x9a8256ab,
0x20080b63, 0x23df8296, 0x37000015, 0x35219382, 0x23668221, 0x07110733, 0x212d6e83, 0x33352335, 0x01c040ab, 0x5540c0aa, 0x28078555, 0x2b2b4040,
0xaa015540, 0x82078355, 0x5e022044, 0x0a2008f3, 0x23052344, 0x11231523, 0x3524e282, 0x35172117, 0x11200782, 0x35220f82, 0x35848001, 0x8456fe21,
0x8d6b2035, 0x00002351, 0x575e0006, 0x002b3005, 0x00270023, 0x00340030, 0x003c0038, 0x49210100, 0xfa8205e0, 0x3b161429, 0x3d363201, 0x88153301,
0x013e2609, 0x2634013d, 0x60a18207, 0x052008ae, 0x03860c83, 0x4eab0121, 0x16330560, 0x092b0a0b, 0x090c800c, 0x160b0a2b, 0x92181812, 0x8255d6d6,
0x18242506, 0x2beefe18, 0x07926618, 0x18012b2d, 0x18128012, 0x0b0a1501, 0x85150a0b, 0x29128505, 0x18402b6a, 0x24191924, 0x655e2b18, 0x05e35406,
0x9601dd31, 0x17001300, 0x28002500, 0x00002b00, 0x54231513, 0xa5830520, 0x2e11373f, 0x35232701, 0x23113307, 0x07271525, 0x37170717, 0x27373315,
0x011f2737, 0x07171507, 0x7e4e186b, 0x230c330a, 0x01abab96, 0x3c0f3140, 0x0b310f3c, 0x3d2e2e3d, 0x0082140b, 0x2a950123, 0x8e4e1801, 0x2a01290b,
0xd500ff55, 0x3b0f3151, 0x51202682, 0x3c272682, 0x33151428, 0x82001414, 0x208faa00, 0x218fca15, 0x8e92c0eb, 0xc0218bf6, 0x898b4095, 0x4080ab21,
0x9521898b, 0x898b406a, 0x40558021, 0x5521898b, 0x898b402a, 0xbf154021, 0x4421208b, 0x2b204863, 0x00268a92, 0xff000006, 0xef4401ea, 0x44212005,
0x2f2006ef, 0x2015f144, 0x2a898c17, 0x23153305, 0x15071725, 0x82250717, 0x0df54409, 0xf144aa20, 0xf5fe260a, 0x16012b2b, 0x21008214, 0x0982eafe,
0x4310fa44, 0x15290c50, 0x1514586b, 0x02141433, 0x0957492b, 0x24229b87, 0x97a32700, 0x8b138545, 0x1681458f, 0x7e45868c, 0x00042306, 0x1f4bff00,
0x00132305, 0x7f910021, 0x3411352c, 0x35232726, 0x07173307, 0x07820717, 0x27372731, 0x15371737, 0x37150737, 0x100c24c0, 0x83c80c10, 0x44242104,
0x2605f945, 0x3c3c1030, 0x45163010, 0x803114ff, 0x3d2e2e3c, 0x3c0f3151, 0x29310f3b, 0x28481529, 0x20ff8314, 0x0a9b4106, 0x38002a28, 0x3e003b00,
0x03414200, 0x1e072e15, 0x0f061701, 0x07010e01, 0x013f3623, 0x05806836, 0x05013e22, 0x410cb241, 0x0520051a, 0x3610ae41, 0x01302440, 0x09131301,
0x042c030b, 0x180c1b14, 0x012b1924, 0x460f0130, 0xbf410fb6, 0x01553315, 0x131d2430, 0x0d120814, 0x0c1b151d, 0x12181824, 0x80433024, 0x2a142412,
0x480a0000, 0x2724084b, 0x31002c00, 0x3e2ad182, 0x4c004700, 0x56005100, 0xd7835c00, 0x07062808, 0x06170727, 0x33152307, 0x17071716, 0x15171637,
0x37363533, 0x36273717, 0x23353337, 0x27372726, 0x35272607, 0x82071507, 0x2d218210, 0x0717012f, 0x37013e23, 0x23171617, 0x57673727, 0x33072608,
0x37260717, 0x204c8433, 0x38348215, 0x07010e17, 0x2a38eb35, 0x24111e11, 0x07151507, 0x101e1124, 0x372a382b, 0x38108b2b, 0x162a372c, 0x26511d2e,
0x8c162f1f, 0x02400a2c, 0x18ef0b10, 0x2d0a4006, 0x054c4878, 0x0c40833b, 0x40e4172f, 0x762d1706, 0x851f2616, 0x13230e2e, 0x07159501, 0x101e1022,
0x824a832c, 0x08232507, 0x23081515, 0x2b230882, 0x82382a37, 0x22103d5b, 0x40401507, 0x06162e0a, 0x0a2e1606, 0x13162f05, 0x1e011023, 0x2f2f1627,
0x18241801, 0x3f360282, 0x261e2e16, 0x202e1e26, 0x1806400a, 0x100b2c2c, 0x00004003, 0xc74b0003, 0x00ab2905, 0x0017000e, 0x25000034, 0x23169f4b,
0x33152137, 0x217cf782, 0x013b2305, 0x82673335, 0x16322705, 0x2726011d, 0x9e4b4b01, 0xfe343413, 0x120a60d6, 0x1818137c, 0xaa2b1513, 0x1912152b,
0x4bc01a11, 0x802a1392, 0x191318ea, 0x132a0112, 0x00822b18, 0xab121925, 0x4a00111a, 0x0b7d060b, 0x000b2705, 0x13000023, 0xfe480727, 0x17210805,
0x23372737, 0x011d010e, 0x11333533, 0x15233523, 0x33171614, 0x1135013e, 0x16eb2634, 0x56165555, 0x27058456, 0x1812d6d6, 0x2ad6d62a, 0x2705eb67,
0x55151101, 0x56551555, 0x56290583, 0x121801ef, 0xaafe2b40, 0x06ac4d2b, 0x12800123, 0x050b4118, 0x17246f85, 0x32002900, 0x64957182, 0x0e072723,
0x24728201, 0x33373632, 0x24828215, 0x012e2335, 0x07526907, 0x738b9520, 0x1beb122f, 0x151b2424, 0x2a2f0720, 0x20076f16, 0x05735915, 0x82ab0121,
0x4055257d, 0x5540aafe, 0x83059959, 0x2b14827d, 0x01243624, 0x2b2b1318, 0x2b18132a, 0x084bae18, 0x0f7e0320, 0x072b5608, 0xcf58f996, 0x06222207,
0x209c831d, 0x05cf4a33, 0x35012b29, 0x16323634, 0x416b0115, 0xc1320c0c, 0x242e2401, 0x0f0f0a01, 0x100b760a, 0x1340260f, 0x9584131a, 0x2d0f1341,
0x1e1720d5, 0x0f20171e, 0x100b4b0a, 0x06840101, 0x0f0d2024, 0x2b410d0f, 0x01d82707, 0x000d00ab, 0xd7500011, 0x41112005, 0x3d380587, 0x27371701,
0x11173523, 0x34111715, 0x22232726, 0x33170706, 0x1218531b, 0x28228282, 0x91416d1b, 0x140b2905, 0x9b014006, 0xd3fe531b, 0x2b050341, 0x351b2702,
0x2801d5d7, 0x11012bbb, 0x0c211182, 0x069b420a, 0x3d058f41, 0x00400037, 0x37000058, 0x37273436, 0x26012f36, 0x2f26010f, 0x23273401, 0x06010f06,
0x0e822707, 0x011f0626, 0x07171406, 0x162f0682, 0x1f163733, 0x33171601, 0x36013f36, 0x82161737, 0x6c272005, 0x13200855, 0x3a163c41, 0x180101d1,
0x03160102, 0x0a091b04, 0x052b0504, 0x09090501, 0x1602051b, 0x8b180302, 0x83012019, 0x0a04301a, 0x02041c08, 0x69030117, 0x20161610, 0x41db1616,
0xb5300c59, 0x11060a06, 0x03250502, 0x04070b01, 0x0101041c, 0x06270482, 0x2504010b, 0x83110304, 0x0403251a, 0x060b0325, 0x0923198e, 0x82152015,
0x10012102, 0x3c149642, 0x00000400, 0xd501d5ff, 0x0700ab01, 0x1f000f00, 0x00002300, 0x07141601, 0x27343617, 0x4c08870f, 0x07430630, 0x23033107,
0x97013311, 0x28161d1d, 0x08152d28, 0x68131508, 0x1821a582, 0x32048512, 0x1e0601d6, 0x27161f4d, 0x152d2966, 0x160b1a0c, 0x82d23214, 0x18fe2078,
0x230a2e40, 0x56016bfe, 0x77826482, 0x9601ea24, 0x694e9601, 0x15232a08, 0x35233523, 0x7540e033, 0x26028275, 0x40809501, 0x4d40eaea, 0x0b220af7,
0x36821100, 0x240bb767, 0x15333527, 0x0d676c17, 0x60206f22, 0x250c396c, 0x8045d3fe, 0x4b183a6f, 0xd6250853, 0x0d009601, 0x077d5400, 0x17011e24,
0x665e1523, 0x013e2805, 0x35273713, 0x18371523, 0x3108607b, 0x4c166d49, 0x5b24411b, 0x78020278, 0x206011b5, 0x00822ac0, 0x01950136, 0x14eb4252,
0x5b780216, 0xd3fe785b, 0x806f3a1c, 0x2a2b952a, 0x03205f82, 0xcd22cf82, 0x5f820002, 0x17000e24, 0xeb443300, 0x05df5e1a, 0x29583520, 0x17142205,
0x27088223, 0x3e37013e, 0x011e3301, 0x2d15ea44, 0x01382a3c, 0x4e011417, 0x014f3b3b, 0xd3184404, 0xef440a79, 0x3b043815, 0x0f2c1b2b, 0x024e3b0b,
0x103b4e02, 0x36490110, 0x27064633, 0x4547012f, 0xa388058f, 0xa39a4420, 0x27263423, 0x27a18623, 0x14010e23, 0x15331716, 0x1720a98d, 0x3422c586,
0xb4953627, 0x1c24742f, 0x32420120, 0x0f0b3d29, 0x24303024, 0x20b88c40, 0x21d1840c, 0xc0940707, 0x241b1630, 0x42320a01, 0x262f0102, 0x30483001,
0xc38b0b01, 0x85033921, 0x182508dd, 0x00000d15, 0xff000004, 0x01d601f4, 0x000d008c, 0x00200017, 0x05000029, 0x07233723, 0x17232723, 0x33372723,
0x82078317, 0x3317220f, 0x08a54337, 0x01260888, 0x220546af, 0x03828e05, 0x6126463e, 0x3e7461e8, 0x3e044e04, 0x14e81427, 0x06060449, 0x7e060608,
0x09050505, 0x3b0c0505, 0xfc2c0082, 0x1d4e9c9c, 0x9b9b4e1d, 0x151e1567, 0x03270282, 0x14141e15, 0x8200151e, 0x82032000, 0x01003e03, 0x002901ec,
0x0024001b, 0x25000032, 0x0607010e, 0x013e2726, 0x14171632, 0x36160706, 0x27018237, 0x27263435, 0x2717011e, 0x080c8d18, 0x06155908, 0x012e1716,
0x013e3527, 0x01010e37, 0x323c01eb, 0x01068a42, 0x01304931, 0x410c0c0d, 0x01020825, 0x72695754, 0x1b15eb01, 0x1b1b2a1b, 0x554001ce, 0x01016064,
0x554d6171, 0x12330ab5, 0x244a2016, 0x11253131, 0x10010c20, 0x0204081d, 0x15500c01, 0x3416510a, 0x1c291c01, 0x312d0282, 0x193c0a02, 0x0211430b,
0x150b5112, 0x0967614e, 0x0800a026, 0x1e001a00, 0x22059763, 0x74011e01, 0x172005bc, 0x16269882, 0x26210714, 0x8d823734, 0x32011e2a, 0x17330736,
0x07333723, 0x01210384, 0x05376500, 0x33236a3e, 0xfe2b2b02, 0x022b2baa, 0x2d082333, 0x40e02d3c, 0x56402b15, 0x406a2a16, 0xa0012b2a, 0x26064a68,
0x2133014a, 0x82054b05, 0x33212702, 0x23231c01, 0x008395b9, 0x00820020, 0x04840120, 0x8001da2a, 0x00001900, 0x27012e21, 0x0e260282, 0x26231701,
0x7f823736, 0x2c080282, 0x3327013e, 0x60010616, 0x0f13322f, 0x19341825, 0x26042a02, 0x13332f53, 0x3518260d, 0x042b0218, 0x4a6d0326, 0x09036137,
0xa4110a82, 0x210b820b, 0x0b856335, 0x93180020, 0x002009f3, 0x480e3b5e, 0x35210545, 0x26078233, 0xfeaa012b, 0x82555556, 0x00012502, 0x2b552b2b,
0x3a820084, 0x24088362, 0x00060080, 0x2d9b8211, 0x002f0024, 0x37172500, 0x27372315, 0xa4822307, 0x9b821520, 0x013f332a, 0x35373617, 0x2507010e,
0x37210e84, 0x20198206, 0x080e8237, 0x32011e20, 0x012e3736, 0x2d3c6c01, 0x283d2d96, 0x02604907, 0x18496002, 0x0e264717, 0x191b0101, 0x0d82dffe,
0x2a4b0a26, 0xa960492b, 0x92201a84, 0x91211f83, 0x322c823d, 0x3001143c, 0x30244024, 0x25ab1701, 0x1240150e, 0x833d0b20, 0x0b4b240d, 0x82a43001,
0x30252519, 0x30242530, 0x0527a082, 0xeeff0000, 0x8301d601, 0x0012269f, 0x00210017, 0x279f822c, 0x15332737, 0x37270727, 0x3226a087, 0x3533013f,
0x9d84010e, 0x27373224, 0x9c8b012e, 0x6f842f20, 0x08157922, 0x49288284, 0x3a540e0f, 0xc9fe1e01, 0x15249a82, 0x54413f16, 0x2b27998a, 0x2c962e3c,
0x86153d3d, 0xbf01259a, 0x34211340, 0x02249683, 0xa22e053e, 0x9745968b, 0x98250806, 0x1d009601, 0x00002300, 0x07170713, 0x15010e23, 0x011f1614,
0x35331523, 0x35362723, 0x06372734, 0x2e371716, 0x081b8201, 0x013e1627, 0x1823e726, 0x18120344, 0x4e570f12, 0x0a5f56d6, 0x1c034404, 0x3c1c5f1b,
0x0b236418, 0x01050f19, 0x65103595, 0x381d8201, 0x2a810417, 0x0f0c902a, 0x1b65090a, 0x128e1335, 0x36420e06, 0x19170507, 0x06df4d00, 0xab01d62a,
0x15000800, 0x25002100, 0x18054949, 0x4409dc44, 0x51450594, 0x15032805, 0x35233523, 0x82231521, 0x18252007, 0x6c075c70, 0x353f0808, 0x22171711,
0x44111616, 0x181b015b, 0x011b18d9, 0x2b715a02, 0x2aaa012a, 0xc0d5fe2b, 0x492a2b2b, 0xe320054d, 0x223b2383, 0x5a02c817, 0x173c2344, 0x44233c17,
0x1557fe5a, 0x15808015, 0x15154015, 0x492a2a15, 0x2408084a, 0x00000300, 0xf301e2ff, 0x19006b01, 0x31002800, 0x21130000, 0x011d011e, 0x35372726,
0x17152707, 0x16141506, 0x23988317, 0x05013e11, 0x072aa683, 0x06270717, 0x34012e07, 0x14441736, 0x01403d07, 0x21191255, 0xabaa242e, 0x13140ea3,
0x011812bc, 0x32011801, 0x0f013629, 0x17421e42, 0x35079a56, 0x011e1e2e, 0x1218016b, 0x16062067, 0x2b6b6b2b, 0x1b1f1c65, 0x83611431, 0x01952506,
0x171c2936, 0x0e262e82, 0x52360101, 0x87182936, 0x042009a4, 0x1a269f88, 0x2c001d00, 0xa1893500, 0x26073525, 0x82010e23, 0x883320a5, 0x011f22a2,
0x05815637, 0x132ba596, 0x0e0d1a18, 0xa011442b, 0x85120aa0, 0xab1223a8, 0xaa9835aa, 0x180a122b, 0x2e010310, 0x18cd6327, 0x23a98613, 0x6b6b6b2a,
0x0221ac97, 0x05635500, 0x10008022, 0x3408ab82, 0x06170100, 0x23010e07, 0x37363215, 0x2337013e, 0x07052707, 0x37170717, 0x37273717, 0x01270727,
0x09073348, 0x0d040806, 0x331c0817, 0x24242201, 0x661edefe, 0x31028866, 0x1d7b8001, 0x2004080c, 0x81300c0d, 0x77565606, 0x1b85671e, 0x21826720,
0x00216582, 0x286b8403, 0x008001c0, 0x001f000f, 0x0c4b6b2b, 0x3411352b, 0x33072326, 0x0e333717, 0x25818301, 0x36373635, 0x79822737, 0x79827f82,
0x6b273721, 0x19390854, 0x18226f12, 0x28012317, 0x0e160612, 0x0203080e, 0x1e3c3bc7, 0x3c1e3b3b, 0x6b05823b, 0x0131095f, 0x4019122a, 0x61053737,
0x200b0921, 0x06040d01, 0x82238216, 0x3c3c2129, 0x00202982, 0x2908877a, 0x000d0096, 0x00170014, 0xeb180100, 0x072b0c8a, 0x33353327, 0x35273315,
0x572b0117, 0x122c0536, 0x18120001, 0x3555ab01, 0x76403540, 0x280a4a65, 0x4055ea00, 0x75758040, 0x22538d00, 0x821a0013, 0x0bf66553, 0x35013327,
0x11233523, 0x24598537, 0x01802b01, 0x05d86918, 0x01240782, 0x80956b00, 0xa5185a83, 0xeb240e1f, 0x16aafe6b, 0x5b855f82, 0x01d25008, 0x00ad01ab,
0x00100008, 0x25000016, 0x012f0607, 0x17323701, 0x36370727, 0x021f3233, 0x32361307, 0x9cab0117, 0x019a1010, 0x010a0717, 0x012961b7, 0x2e02060a,
0x049acb57, 0x5631030c, 0x01560808, 0x03090219, 0x0509ffa2, 0x01cd2755, 0x86070706, 0x01cd2ab3, 0x006b01f3, 0x0017000e, 0x4357822e, 0xd7590831,
0x17272c0d, 0x1d163233, 0x27012e01, 0x4207010e, 0x372208bc, 0x89426001, 0x2bb72c12, 0x131912aa, 0x4e3b1c31, 0x41150102, 0x7f48063e, 0x2bd62d14,
0x12511219, 0x4e020114, 0x01212a3b, 0x2505db64, 0x00030001, 0x93a4ff00, 0xcb4e3720, 0x24938205, 0x37013e11, 0x21a18533, 0x93942726, 0xabfe1e25,
0x860c0699, 0x8480208c, 0x941820a0, 0xd5802293, 0x07e24317, 0x9e840120, 0x82000a21, 0x82092000, 0x01002403, 0x466b01c0, 0x1f2e08f7, 0x33002300,
0x47003700, 0x35250000, 0x03831521, 0x3521352c, 0x33152321, 0x36342335, 0x8e593337, 0x23072505, 0x1735012e, 0x012513a6, 0x01ebfec0, 0x27038515,
0x0c402b56, 0x0c092b09, 0x15200484, 0x2b230c98, 0x84802a2a, 0x5c2a2002, 0x0686058c, 0x9d2a5621, 0x0aeb4b0f, 0x4e003828, 0x0e130000, 0xa4820701,
0x37013e30, 0x2617011e, 0x07062223, 0x33013e17, 0xb9831632, 0x37250885, 0x2223012e, 0x82208507, 0x012e2229, 0x20248227, 0x8235832e, 0x23152731,
0x21331617, 0x04683f32, 0xa0353606, 0x2a014232, 0x18202a01, 0x0e0d0925, 0x250a2317, 0x0d0b1004, 0x2e128212, 0x100b0d12, 0x230a2504, 0x090d0e17,
0x82201825, 0x42013c23, 0x10321e32, 0x1e3e3210, 0xaa121d08, 0x01160d1e, 0x1e0d1628, 0x081d12aa, 0x8295011e, 0x0b0b211c, 0x01372582, 0x1705151a,
0x0c091514, 0x20200e12, 0x090c120e, 0x05171415, 0x82011a15, 0x0b0b2162, 0x1b336b82, 0xd51b1717, 0x081c122b, 0x13132d34, 0x1c08342d, 0x43002b12,
0xfe2b0533, 0x6b01d601, 0x1d001500, 0x6a002500, 0x0f2006ef, 0x08e4bc18, 0x011f1632, 0x0f013e37, 0x36371701, 0x07222634, 0x14062226, 0x33081182,
0x3c2d6b01, 0xb60f1001, 0x01100fb6, 0x26172d3c, 0x0f1f1f0f, 0x3c890726, 0x24180c89, 0x18240ca6, 0x013d1f0c, 0x2d3d016b, 0xb50f2716, 0x16270fb5,
0x11013d2d, 0x11219683, 0x8223834d, 0x2227821f, 0x823c1f0c, 0x3c83826e, 0x01960100, 0x00050068, 0x17071300, 0x75251707, 0x15e0e015, 0x68012001,
0x25838325, 0x08275ba8, 0x9001ab22, 0x09202382, 0x0d382582, 0x27372701, 0x35211501, 0xfe20018b, 0xe1e116e0, 0xc0fe3601, 0xa8a89001, 0xfe213082,
0x057766aa, 0x57840220, 0x4101d624, 0xd5830b00, 0x3627373b, 0x0e071732, 0x22012b01, 0x26340526, 0x27012e27, 0x23070607, 0x0e012f26, 0x08168201,
0x1617153c, 0x3732013b, 0x421f13d3, 0x0c01131f, 0x0c083008, 0x0c0d0101, 0x261f2a08, 0x0f620f05, 0x2a1f2605, 0x890d0c08, 0x0c680c0c, 0x0a79bd0b,
0x0a08790a, 0x140d4a0a, 0x163e2506, 0x29820d68, 0x3e166829, 0x0d140625, 0x83030328, 0x83042076, 0xdd012b04, 0x1a004001, 0x2b002800, 0xb3822e00,
0x15216682, 0x31648214, 0x3e352335, 0x17163201, 0x33152315, 0x35373632, 0xfa55012e, 0x0547540d, 0x4837ab34, 0x3c0b0e01, 0x4930012b, 0x3c2b0130,
0x02010e0b, 0x3354b448, 0x4001360f, 0x66364901, 0x2b550f0b, 0x24303024, 0x0b0f552b, 0x14493666, 0x2a268551, 0x2e2e3d51, 0x1414293d, 0x4e141434,
0x1f200cb3, 0x200db34e, 0x428a8207, 0x0e2705bb, 0x27010f01, 0x1827012e, 0x220e2ec4, 0x18190e8b, 0x0809eca6, 0x2a0f0f24, 0x21010131, 0x79029501,
0x02785b5a, 0x5b5b7802, 0x0a0c7a78, 0x19210c0a, 0x0e25391e, 0x1e39250e, 0x53422119, 0x01ea2805, 0x009601d6, 0x8217000b, 0x010021ff, 0x4018fd82,
0x1b760aa4, 0x22172e08, 0x011e0706, 0x3e37011f, 0x012e3701, 0x200d8223, 0x2d55182e, 0x4a5b200d, 0x05840522, 0x21191926, 0x2a310101, 0x19208386,
0x5b4f9784, 0x0228230c, 0x29844960, 0x50200582, 0xa183918b, 0x23069741, 0xd301e7ff, 0x03319782, 0x2e000a00, 0x00003400, 0x37170701, 0x37160627,
0x82a18227, 0x3e172c02, 0x06161701, 0x16361527, 0x82260607, 0x16332417, 0x82332736, 0x2636211e, 0x27222082, 0x1c832636, 0x013e3808, 0x20204001,
0x90087520, 0x5f132b38, 0x023c224e, 0x11331120, 0x3224381c, 0x71350e32, 0x36641a05, 0x20162f32, 0x13367112, 0x1f3a4d1b, 0xa2223532, 0x010b6f25,
0x82950133, 0x0b310834, 0x20402060, 0x020a0e1d, 0x1136021c, 0x2513070c, 0x26164b0d, 0x39663f1a, 0x47016060, 0x594a4f4f, 0x08078727, 0x4f3a105d,
0x565c3a69, 0x00003223, 0x097b4800, 0xb3820620, 0x3339af82, 0x33352115, 0x35231507, 0x40d50001, 0x80402a01, 0xc08001aa, 0x2b15abab, 0x202b8c2b,
0x84db8312, 0x3327222b, 0x05ff5e15, 0x33352322, 0xea233386, 0x8240402a, 0x25388402, 0x402b402b, 0x77482b40, 0x00032b0a, 0x00180013, 0x11212500,
0xa66c3521, 0x010f230e, 0xc8820727, 0x01d6fe2b, 0x12d6fe2a, 0x01121919, 0x2705822a, 0x3a2a3b7d, 0x2a012bea, 0x0c1f5118, 0x334cc624, 0x0b4d004c,
0xeaff2305, 0x8750de01, 0x001c2206, 0x05614431, 0x6f4a0620, 0x010f2512, 0x17072721, 0x2d05ba6c, 0x36341135, 0x15063337, 0x3217011e, 0xd24f1737,
0x4bc12615, 0x4b602b01, 0x065262d6, 0x7612182a, 0x3b4f010b, 0x01371316, 0x3416754a, 0x608060df, 0x18181236, 0x122b0112, 0x1d190118, 0x06014e3b,
0x20a38936, 0x26a382df, 0x00160008, 0x822f001b, 0xa05018a3, 0x27073709, 0x26222306, 0x16323634, 0x23071415, 0x013f1737, 0x06141517, 0x1d562123,
0x062e0807, 0x21112307, 0x1f164b01, 0x20202c1f, 0x431e4267, 0x37281a19, 0x4b385038, 0x3a2a3beb, 0x111a2b6c, 0x1911d5fe, 0x0a761119, 0x2b016b01,
0x25830001, 0x021f2c26, 0x0f421e42, 0x38292482, 0x4bdb1a28, 0x2b074b32, 0x2723836b, 0x1a112b01, 0xd5fe1615, 0x220c1b60, 0x821c0012, 0x1823208f,
0x3408a9e8, 0x3e272606, 0x012e1701, 0x17010f17, 0x27173707, 0x06012737, 0x058d4306, 0x1c402f34, 0x0303825b, 0x441b5b82, 0x3e4f203a, 0x16454413,
0x23434f40, 0x1d430807, 0x53621518, 0x1a156253, 0x064b5a1c, 0x2a2a4a36, 0x0006364a, 0x00000800, 0xba01eaff, 0x0b009601, 0x11000e00, 0x1a001700,
0x20001d00, 0x00002300, 0x17230701, 0x37173307, 0x23372733, 0x0f231727, 0x823b2701, 0x27232871, 0x07270737, 0x84372317, 0x00012711, 0x40407c3e,
0x05853e7c, 0x37341a3c, 0x56571918, 0x2a562a2a, 0xb8171ad5, 0x19e92f18, 0x1a1c3531, 0x6b6a9501, 0x03826a6b, 0x202a2a25, 0x824b2b2b, 0x2b2b2a00,
0x2b2b2b6b, 0x002a2a20, 0x26eb820d, 0x01d60100, 0x530f0056, 0x1f200607, 0x272d7b82, 0x2f002b00, 0x37003300, 0x3f003b00, 0x111f7f00, 0x167f2120,
0x4f33200d, 0x05200659, 0x0f870786, 0x07200783, 0x2a7f1382, 0x01aa250b, 0x16aafe56, 0x09216118, 0x0a88d620, 0x7faaea21, 0xd6220c2b, 0x00882ac0,
0x0a8c4020, 0x0484b284, 0xb746a020, 0x17012d05, 0x25071707, 0xe1158b01, 0xe0fe15e1, 0x2508b846, 0xff000002, 0xb74601ea, 0x0d012b08, 0x37273701,
0x35211501, 0x25828b01, 0x2d822020, 0x01cbfe23, 0x0db84640, 0x03570520, 0x090f4108, 0x0e130024, 0x70561501, 0x11352b06, 0x07272634, 0x13231133,
0x69623311, 0x15332505, 0x18129523, 0x2408ef54, 0x6b802bd6, 0x82008256, 0x12182177, 0x2d0be754, 0x80fe2b01, 0x00ff4001, 0x56150001, 0xf742562a,
0x01d62609, 0x00190096, 0x050f4522, 0x1b6c6982, 0x33172e07, 0x3e33011e, 0x012e3701, 0x2e072227, 0x10441801, 0x0adc7b09, 0x17151729, 0xb5352737,
0x83013629, 0x18653581, 0x61482039, 0x48610101, 0x36040b0b, 0x011e1726, 0x8c1e016b, 0x35073071, 0x21480101, 0x013f114e, 0x29360195, 0x1218010a,
0x011812c0, 0x2c821614, 0x0260492d, 0x2a312602, 0x0a171e01, 0x711e170a, 0x29250b63, 0x251c2f6b, 0x0abf4659, 0x21001525, 0x4f130000, 0x17290556,
0x27071733, 0x010e2735, 0x21a18223, 0x0c82013e, 0x2e08864d, 0x015440c0, 0x0c110e0f, 0x12802a80, 0x82182e13, 0x5401280d, 0x1f2d2d6d, 0x841f2e2e,
0x25838205, 0x2e184054, 0x20821213, 0x0e110c29, 0x4054010f, 0x87485440, 0x2023821d, 0x28738400, 0x01eb01ff, 0x00150080, 0x08738219, 0x07060744,
0x32171611, 0x3517013f, 0x15173527, 0x27261133, 0x15110723, 0x78c03533, 0x0a010107, 0x55720201, 0x01808055, 0xab72030a, 0x02298001, 0x0abefe08,
0x1e2c0101, 0x2cfe1d2b, 0x0a0a01be, 0xedfe2d01, 0x0f452b2b, 0x00002705, 0x8001c001, 0x59841100, 0x0d821d20, 0x27010f25, 0x82150607, 0x375d825e,
0x11353637, 0x15170726, 0x1537012f, 0x35072507, 0x03b50137, 0x08788072, 0x06835983, 0x5656ea27, 0x0140406a, 0x2303822a, 0x2d2c0180, 0x09836988,
0x0a42012e, 0x1ef81e34, 0x19fa16e3, 0x18fa1611, 0xd520c384, 0x1b22c384, 0xc38c2700, 0x34352623, 0x24c68337, 0x1732013e, 0x24c98335, 0x15231517,
0x05e05933, 0x5928d189, 0x80560104, 0x142f2c11, 0x40237c83, 0x832b4040, 0x24718874, 0x070f0e1f, 0x24de8208, 0x081210a0, 0x20e082d2, 0x211f83d3,
0x2f4d402b, 0x07f34508, 0xd7553220, 0x012f2d19, 0x14151715, 0x010f2717, 0x34112726, 0x3328fd83, 0x2e151716, 0x07222701, 0x3415f245, 0x06158036,
0x0904721b, 0x80790701, 0x010a0372, 0x101c3113, 0x14a14c10, 0xfe2da93d, 0x12150607, 0x01012c09, 0x0743010a, 0x2c2c2803, 0x12c70901, 0x00040114,
0x5c000400, 0x96280507, 0x17000e00, 0x36003200, 0x1320a199, 0x26298f82, 0x15073527, 0x27350706, 0x23aa8c11, 0x35371505, 0x3f20a595, 0x18249882,
0x55141740, 0xfe22ab89, 0xa68340b8, 0x67171c21, 0x01210ea0, 0x29958300, 0x58197c0a, 0x1e630803, 0xb18dfffe, 0x18fd4927, 0x000000fa, 0x24af8208,
0x01eb01d5, 0x25b982ab, 0x000d000a, 0x31580010, 0x82242005, 0x27343bb7, 0x23073615, 0x3632011e, 0x3715012f, 0x37273307, 0x22263723, 0x06350307,
0x4f552514, 0x16323e05, 0x2b2bc001, 0x4616f048, 0x56774638, 0x6b5656d6, 0x35c8a050, 0x2b1d3586, 0xc28aab01, 0x2a02828a, 0xf03741c0, 0x19125235,
0x82ab3c19, 0xa1352b00, 0xfe2b2b2a, 0x8437f0f3, 0x1d836143, 0x02008a22, 0xdf247f82, 0x9601ab01, 0x28087982, 0x0100001a, 0x0e171521, 0x011e1701,
0x27013e37, 0x3727012e, 0x37072703, 0x1f013f27, 0xab010701, 0x3b7caafe, 0x6b151236, 0x3605823d, 0x7c22310c, 0x113f3f6c, 0x1d1d4837, 0x95013748,
0x6a165d2a, 0x83353c3d, 0x31222f1d, 0xb5fe5d0c, 0x30472525, 0x06434306, 0x63840030, 0x08050f60, 0x09000326, 0x17130000, 0x17152707, 0x05150107,
0xa050f080, 0x00014b4b, 0x950100ff, 0x154a408a, 0x1501e530, 0x03009580, 0xea229382, 0x93820002, 0x13000f27, 0x00002e00, 0xdc761825, 0x05d27008,
0x35230724, 0xbf482733, 0x7e651806, 0x21352f09, 0x33152111, 0x01263435, 0x0c096beb, 0x0485090c, 0xfe406b2a, 0x19181380, 0xab2b9512, 0xeb28fa82,
0x182a8001, 0xc0090cd5, 0x04822083, 0xea96c035, 0x00ff1218, 0x2a2b1912, 0x012b2b2a, 0x126b6b00, 0x8e040018, 0xb038207f, 0x27072381, 0xc0472307,
0x298b9f05, 0x411514be, 0x34351435, 0x959e3514, 0x40409529, 0x27273e26, 0x5400263e, 0xf322069b, 0x2f429401, 0x00192706, 0x0028001f, 0x4f610100,
0x15272b12, 0x011e3523, 0x013e3505, 0x9a4b1537, 0x35270806, 0x0aab0121, 0x3d2e2e3d, 0x3b0f310a, 0x15310f3b, 0x94141414, 0xfe483780, 0x374702d6,
0x3f5402ab, 0x01025440, 0x832b012b, 0x06704c22, 0x14282838, 0x6e142848, 0x5109a915, 0x513a154f, 0x406ba909, 0x54010154, 0x6f434040, 0x050f4c05,
0x1600122e, 0x1e001a00, 0x36010000, 0x010e2726, 0x2e086d83, 0x21171406, 0x2e273436, 0x33170501, 0x33173327, 0x33073337, 0x01550137, 0x272f2f27,
0x02322201, 0x56012b2b, 0x32022b2b, 0x2b2af4fe, 0x82162a15, 0x2b152701, 0x0455012a, 0x02820438, 0x210ade57, 0xdb5795d4, 0x00042108, 0x01210082,
0x0bbb75c0, 0x35212524, 0x03821521, 0x15332524, 0xef821723, 0xffc00125, 0x83000100, 0x95fe2203, 0x2500822b, 0x2aaa2aeb, 0x0882eac0, 0x2909db47,
0x005e0196, 0x01000013, 0x33820717, 0x27240384, 0x33352337, 0x01290383, 0x5918282c, 0xa290256b, 0x2b07821f, 0xa290246c, 0x38115e01, 0x492a562a,
0x58820584, 0x01254582, 0x006b01ab, 0x223f8207, 0x83331121, 0xab012a01, 0x55abaafe, 0xfe6b0156, 0x827883aa, 0x06af4b21, 0x8001c03e, 0x0b000300,
0x11130000, 0x21051121, 0x23352311, 0x01402315, 0x01c0fe80, 0x80404000, 0x03820882, 0x00ff4025, 0x8200c0c0, 0x820c2000, 0x01002403, 0x82800196,
0xe175185b, 0x83332013, 0x35332647, 0x11331533, 0x20b78205, 0xeb521837, 0x180f830e, 0x2e13df6c, 0x802a806b, 0x2b2b00ff, 0x552a2a56, 0x93ab2b2b,
0x83148208, 0x4b4b258b, 0x2a2b8001, 0x2b200083, 0x2a200084, 0x11830584, 0x8020cf86, 0x9983f782, 0x46130021, 0x03390a53, 0xeb352115, 0x6b2a6b6b,
0x0001956b, 0x2b6b6b01, 0x6b2b6a6a, 0x2b2bd5fe, 0x20008200, 0x54d38403, 0x1b2205f3, 0xf3541f00, 0x09c24c13, 0xe754bd83, 0x4caa200a, 0x402205ca,
0xd654aaaa, 0x2b40250e, 0x952b4040, 0x3008eb64, 0x01e001f5, 0x000700a0, 0x0034001c, 0x2500003d, 0x05874f15, 0x011e2732, 0x27070617, 0x012e3536,
0x14070622, 0x27260717, 0x2005be51, 0x20158314, 0x07c95337, 0x012e0726, 0x17013e35, 0x084b4a18, 0xd66b2f08, 0x3d5a3d01, 0x024e3b6a, 0x0b211401,
0x36523601, 0x14210b01, 0x3b4e0201, 0x16027f5f, 0x011e2014, 0x4d4d6602, 0x1e010266, 0x02161420, 0xb35a5f7f, 0x463b2605, 0x1e1e1646, 0x302582fa,
0x141d2029, 0x36362918, 0x1d141829, 0x4e3b2920, 0x25238257, 0x1c1b4225, 0x3482392d, 0x392b3a82, 0x421b1c2d, 0xa97f5f25, 0x821e2e1e, 0x43002002,
0xdc2d07cf, 0x0d009501, 0x19001300, 0x25001f00, 0x18dc8200, 0x3c0e8b47, 0x36170706, 0x07060737, 0x17373633, 0x17072707, 0x17160537, 0x17272637,
0x35171607, 0x8d471826, 0x7820080c, 0x251e3240, 0x0629902f, 0xd21c072a, 0x44162e68, 0x07cbfe7e, 0x061c1e28, 0x40321e40, 0x2b95012f, 0x0b934718,
0x29060826, 0x22061d1f, 0x25271882, 0x172d681e, 0x84497f44, 0x1d73253d, 0x072a0729, 0x8e829bb2, 0x13219588, 0x20a98215, 0x209b9835, 0x2394894d,
0x7010604f, 0x7e209899, 0x0127928a, 0x1b39700f, 0x41008044, 0x2c201637, 0x0805834e, 0x07061668, 0x37013e35, 0x012f2636, 0x27070615, 0x06170736,
0x07362307, 0x07171633, 0x17161726, 0x37272615, 0x33353327, 0x15013315, 0x0709684e, 0x503c5a6c, 0x48540709, 0x1e252f2a, 0x1c1e5032, 0x06062a07,
0x1e1c062b, 0x2f256428, 0x60873240, 0x014b2a4b, 0x4e690995, 0x2b0b845a, 0x493b5108, 0x2b2a0b6b, 0x291f1d06, 0x1f821e47, 0x34836a20, 0x33823320,
0x45290725, 0x41555560, 0x97a81533, 0x82071321, 0xce352095, 0x05012197, 0x7f619883, 0x019a2605, 0x000900ab, 0x05cf5a1c, 0x5a150121, 0x33350518,
0x14151732, 0x37361716, 0x26272611, 0x16060706, 0x16331617, 0x23128213, 0x27013e37, 0x15231283, 0x43363427, 0x26080522, 0x02010201, 0x26333326,
0x161d0102, 0x06010106, 0x16196d3b, 0x1a1a3a30, 0x04025805, 0x09270a30, 0x1d02040a, 0x82111911, 0x34013302, 0x010103ac, 0xf4334c33, 0x03201734,
0x86010501, 0x2a820305, 0x196d3c34, 0x0301010a, 0x030405da, 0x0b31772a, 0x05040308, 0x2f830d42, 0xcf181120, 0x313e0c67, 0x39003500, 0x00004200,
0x23070637, 0x23352726, 0x3527012e, 0x2133013e, 0x35072135, 0x07823634, 0x32153330, 0x23011d16, 0x16323315, 0x010e1517, 0xcc822307, 0x21212983,
0x062b4e27, 0x835b2520, 0x016b2607, 0x010a150a, 0x05225615, 0xff6a012c, 0x090c1500, 0x092b0001, 0x1386150c, 0x20841520, 0x2bd6fe27, 0x012b152b,
0x05915b0a, 0xa5824b20, 0x010a0a29, 0x0940090c, 0x82162b0c, 0x1616252c, 0x2b15090c, 0x01200f84, 0x03821882, 0x82154021, 0x0c0b2300, 0x02820c12,
0x092b6218, 0x1d008022, 0x90830c82, 0x37011f23, 0x05734423, 0x22230d82, 0x4d072726, 0x01290776, 0x026d5115, 0x56025340, 0x05704740, 0x19540221,
0x240cc36d, 0x6c028001, 0xbf6d1952, 0x234c1815, 0xc0690808, 0x0a00ab01, 0x1f001100, 0x17130000, 0x17011e15, 0x37173736, 0x012e1301, 0x06173527,
0x06141513, 0x013e2707, 0x0727013d, 0x2b153727, 0x3d546a02, 0xfe1b302d, 0x553ecf7c, 0x9623e202, 0x0d1f1214, 0x2067950d, 0x2b650187, 0x178e5b65,
0x1b302b10, 0x80fe8501, 0x3f487712, 0x490122e2, 0x1e462480, 0x1a34171f, 0x212e4269, 0x2672823c, 0x00000300, 0x8301d5ff, 0x00092473, 0x82290020,
0x5b8418df, 0x25d48208, 0x16321517, 0x7282011d, 0x822e2321, 0x36342572, 0x013e3533, 0x0ac45318, 0x7e82c020, 0x026a5437, 0x012417c0, 0x0b100f0a,
0x0f0f0a76, 0x1724010a, 0x1340130d, 0x61841801, 0x012a2b09, 0x1020171e, 0x0f0a4b0b, 0x06840101, 0x1e17202c, 0x200d0f19, 0x000f0d20, 0x7f880200,
0xf3820a20, 0x37130027, 0x06270701, 0x21ec8307, 0xeb831737, 0x1c150128, 0x2f1b8401, 0x67833c2f, 0x1214c033, 0x6501dffe, 0x1b7bfe1b, 0x17102b30,
0x71655b8e, 0x24d18356, 0x04002201, 0x24008200, 0xeb00eb01, 0x058b5000, 0x5f423020, 0x26222209, 0x29b68227, 0x011e2137, 0x010e1517, 0x4d42012b,
0x0b491810, 0x0c4d4208, 0x5542aa20, 0x13414205, 0x01097525, 0x420b0901, 0x47420530, 0x840b2005, 0x05364211, 0x37420120, 0x092b7207, 0x82002621,
0x8325208f, 0x23172ecf, 0x23072327, 0x3d012e37, 0x21352301, 0x31e88235, 0x15160706, 0x37013e23, 0x33013e33, 0x011d1632, 0x2f682123, 0xc0012f07,
0x2a0e1a1f, 0x2a0bc00b, 0x151f1a0e, 0x6a828001, 0x05102308, 0x24018015, 0x2007041b, 0x40241c15, 0x1c24d6fe, 0x95241caa, 0x0e311f15, 0x372a2a37,
0x151f310e, 0xb782952b, 0x120f022c, 0x01241b1d, 0x1c241713, 0x088215c0, 0x002f3282, 0x000e0000, 0x01eaff00, 0x009601c0, 0x18110008, 0x2c0cb151,
0x00590050, 0x006b0062, 0x0079006f, 0xa2511800, 0x44232008, 0x34210518, 0x18089a36, 0x8208ac59, 0x05bb4cbb, 0x27200891, 0x1014eb18, 0x37242388,
0x27213521, 0x3526fd83, 0x011e1533, 0xa143ab01, 0x854d2005, 0x8c4c2006, 0x20148606, 0x20148534, 0x2006855e, 0x200d8c5f, 0x860d8ccc, 0xfe492d22,
0x172a01d6, 0x293907fc, 0x1539292a, 0x0bcb9418, 0x94180b91, 0x1e8b0cea, 0x2b2a1892, 0x3929152b, 0x072c2c07, 0x00820039, 0x03820720, 0xdd010032,
0x0f008001, 0x26001800, 0x32002900, 0x3e003b00, 0x18081749, 0x4109d19c, 0x4358070c, 0x41521810, 0x08cd5f08, 0x07011f23, 0x09e07455, 0x0b831220,
0x19192423, 0x0d5458fc, 0x2400ff31, 0x30493030, 0x19122530, 0x18182419, 0x181414ee, 0x2409d348, 0x19122a01, 0x05d0732b, 0x64582a20, 0x0105240e,
0x82304830, 0x01292102, 0x23057d6b, 0x00141404, 0x200ed749, 0x18c7821a, 0x2a11274e, 0x07231533, 0x35232723, 0x5e371733, 0xa52c15c6, 0x2a3b85a5,
0x1b3a1a26, 0x1e26266b, 0xe9490287, 0xd52b250e, 0x4f5c2b80, 0x27221c83, 0x0282271e, 0x67182620, 0x09280d2f, 0x21001500, 0x013f0000, 0x2205a24e,
0x52112717, 0x56550bc0, 0x013e2e05, 0xb7012e37, 0x21544014, 0x14405421, 0x054d5549, 0x51580585, 0x02023107, 0x37535060, 0x074e4d08, 0x012c5337,
0x5b780219, 0x5b211f85, 0x0b775878, 0x0004002f, 0x01f5ff00, 0x008b01d6, 0x00120009, 0x2079831b, 0x08a85501, 0x4208396b, 0x073808b3, 0x22010e33,
0x4c000126, 0x84085989, 0x89590884, 0x0e0e0a84, 0x7a0e0e14, 0x6e310685, 0x2a230880, 0x778b0123, 0x348e6d24, 0x246d8e34, 0x821c8334, 0x2302841f,
0x16161460, 0x0620eb83, 0x01370483, 0x006b01c0, 0x000b0005, 0x00170011, 0x0025001e, 0x35233700, 0x62231533, 0x052605fe, 0x33152335, 0x04821335,
0x33152708, 0x27371505, 0x25152315, 0x35170735, 0x2b6b3533, 0x2a0180ab, 0xfe2bab80, 0xd5ab2bd6, 0xfe2b80ab, 0x6b4040eb, 0x04821501, 0x2b80eb35,
0x802b00ff, 0x2b805555, 0x552b2b01, 0x40402b40, 0x842a2a2b, 0x03002105, 0xea22e782, 0x73820002, 0x22001225, 0x62002600, 0x2323065f, 0x82112135,
0x012e2674, 0x013e1127, 0x06df5d05, 0xe2822b20, 0x37056e77, 0x01403533, 0x5518126b, 0xebc0ebfe, 0x01011812, 0x803d0118, 0x090c0c09, 0x012a0482,
0x551e0c01, 0x18016b01, 0x75832b12, 0x01280782, 0x7f181200, 0xd5090c01, 0x04822183, 0x95952a23, 0x08a75800, 0x635e4020, 0x01002706, 0x11352115,
0x78823533, 0x0121352d, 0xc080fec0, 0xfe8001c0, 0x84400180, 0x2a402145, 0x2109674d, 0x3d8301ab, 0x82000721, 0x211522a9, 0x2ba48215, 0xfe560155,
0x01d6d6aa, 0x2b2a2b00, 0x2006f345, 0x0b334eab, 0x82211321, 0x87038727, 0x8633832f, 0x2a552237, 0x1839822b, 0x3508d758, 0x009601c0, 0x001c0012,
0x00240020, 0x35331700, 0x3537013e, 0xfb822634, 0x1507062a, 0x17161423, 0x010e2127, 0x35230982, 0x8237012e, 0x3724084c, 0xc0353315, 0x012d27ab,
0x12551219, 0x40d50118, 0x1e014f40, 0x551d2909, 0x55c44c23, 0x152b1555, 0x32531b35, 0x2f059178, 0x75195532, 0x240e2f1f, 0xf6350724, 0x404095ab,
0x22060341, 0x828001d6, 0x00152509, 0x1300002f, 0x13204c82, 0x21059358, 0xfc56013d, 0x36252508, 0x3435013b, 0x322b0482, 0x33011d16, 0x23011f32,
0x84152335, 0x80c03c03, 0xfe111995, 0x6a1911aa, 0x6a2b802b, 0x1c0b8bfe, 0x8012190e, 0x1c0e1912, 0x82612c0b, 0x01612a12, 0xfe151555, 0x1a1a11eb,
0x2c088211, 0x1a911515, 0x19191215, 0x661a1512, 0x41008215, 0x7f83062b, 0x17000b29, 0x39001b00, 0x87250000, 0x2307825a, 0x35330737, 0x2f218486,
0x20998201, 0x877e8217, 0x3f34229c, 0x23958d01, 0x40ab0117, 0x40237182, 0x82332532, 0x25332506, 0x039280b9, 0x03219b85, 0x20968a32, 0x21878440,
0x0685d555, 0x15154026, 0x620a07a2, 0x62239f83, 0x8773070a, 0x8200209d, 0x00012300, 0x6b50ff00, 0x002d2505, 0x33151300, 0x2105675d, 0x0882013d,
0x26343523, 0x888f822b, 0x36322111, 0x35201682, 0x089ea51a, 0x6a2b232a, 0x18136a6a, 0x13186b6b, 0x09830882, 0x80181225, 0x82121880, 0x95012b0f,
0x182a562a, 0x16d61612, 0x09851812, 0x56121826, 0x1812562a, 0x8f4a0f82, 0x01d62a08, 0x0014002b, 0x002c001e, 0x24798630, 0x011d0622, 0x5d608233,
0x272106e8, 0x06605533, 0x33353322, 0x83054a60, 0x26342310, 0x9c820727, 0x2b552b22, 0x56206e82, 0x012e0482, 0x40121801, 0x5540402b, 0x01181240,
0x77822b2b, 0x2b2b2b22, 0x2b200882, 0x2b207382, 0x22830482, 0x2a56d622, 0x18251382, 0x4040ab12, 0x212583ab, 0xf7850040, 0x01763708, 0x001200a0,
0x23130100, 0x22061415, 0x33352726, 0x32161415, 0x23353736, 0x60750001, 0x01243724, 0x0c120c2b, 0x9f016001, 0x1c55e1fe, 0x151c2424, 0x0c0c0915,
0xb35d5509, 0x001c250d, 0x3700005a, 0x2e07b05d, 0x17010e27, 0x3e34012e, 0x021e3202, 0x82020e14, 0x23108255, 0x36373634, 0x3d05d641, 0x011e2726,
0x1733013f, 0x0e35013e, 0x022f2601, 0x3f363734, 0x15010e01, 0x1e232726, 0x09821d01, 0x2f260724, 0x8c823501, 0x013e3522, 0xf918f682, 0x43280b05,
0x3a1f1f1d, 0x3a4a524a, 0x06240685, 0x1302061e, 0x2b08af82, 0x01090408, 0x1f034719, 0x26261c01, 0x030c1711, 0x08010102, 0x29280f0e, 0x06090908,
0x0b14010a, 0x0303040b, 0x18020608, 0xc0351901, 0x210aa945, 0x4a891deb, 0x39085182, 0x013325e2, 0x13172101, 0x07630902, 0x1f010105, 0x18200112,
0x11023b19, 0x0202010d, 0x0e073640, 0x210a1311, 0x04010502, 0x016a0810, 0x0701010d, 0x0b038304, 0x0616120a, 0x97510022, 0x00402c08, 0x00170013,
0x2e352500, 0x70212301, 0x332d056b, 0x37363221, 0x07351735, 0x01333523, 0x4249186b, 0x9555240d, 0x18e0abab, 0x24093649, 0x8aea554b, 0x204b8c2a,
0x224b971f, 0x82352315, 0x3335224f, 0x22539215, 0x82402b40, 0x26578e02, 0x402a4040, 0x420a0040, 0x0b3208eb, 0x20001600, 0x30002700, 0x43003900,
0x5b004f00, 0x5b186300, 0x132b0d39, 0x2637013e, 0x07010e27, 0x82273216, 0x0706210a, 0x25320a83, 0x07062726, 0x0625013e, 0x17161417, 0x37263736,
0x07830706, 0x82012e21, 0x011e2108, 0x2e241182, 0x23261701, 0x33241484, 0x27261732, 0x22200b8d, 0xed6e2c83, 0x7d58080c, 0x150d3626, 0x2f420f16,
0x304d2210, 0x17181045, 0x152e4312, 0x0b0b0801, 0x392d3c17, 0x01029afe, 0x10131c1f, 0x0a14053c, 0x0e114620, 0x162f3527, 0x27320912, 0x2a220a0c,
0x3d2c29fa, 0x2a0f0b36, 0x032d332f, 0x4a11103c, 0x3b090642, 0x10232642, 0x222e2739, 0x4403011e, 0x080ce65f, 0x257bfe51, 0x0204355d, 0x0223613a,
0x395e2009, 0x4e320502, 0x059b0e19, 0x15475e03, 0x0a0a5153, 0x09194528, 0x18a8390c, 0x0e425c1e, 0x655d2410, 0x5e37110b, 0x23141224, 0x010c2e59,
0x0f111315, 0x02601a11, 0x14141a01, 0x2c1c0818, 0x12130b15, 0x4700001a, 0xd72e053f, 0x1e008001, 0x2d002700, 0x40003c00, 0x3f414400, 0x07142805,
0x1f163233, 0x44271601, 0x352805c0, 0x3e013f06, 0x26013b01, 0x3405bb4c, 0x36321614, 0x15072634, 0x35233533, 0x32331533, 0x34013d36, 0x26048327,
0x33072326, 0x82152315, 0x012f0803, 0x01302400, 0x1610360b, 0x02072604, 0xaafe1218, 0x07021812, 0x10160426, 0x30010b36, 0x18181224, 0x92181824,
0x406a406b, 0x0f0f1813, 0x83151318, 0x80012100, 0x18341a82, 0x990e1313, 0x1912021d, 0x1d021219, 0x13130e99, 0x2a302418, 0x34057e49, 0x802aaa80,
0x0b1218aa, 0x130d0d13, 0x2a18120b, 0x00162a16, 0x080b4204, 0x14001028, 0x1d001900, 0x81180000, 0x3527094d, 0x15233537, 0x82373523, 0x06072c03,
0x05372707, 0xb5372307, 0x6f014e3b, 0x953305c3, 0x2b2b2bea, 0x31131539, 0x212d0122, 0x00013335, 0x853b4f01, 0x2922341c, 0x952b2b40, 0x05706a6a,
0x1919430b, 0x0000462d, 0x82000200, 0xa6013200, 0x06006601, 0x00000d00, 0x17112125, 0x010f1737, 0x05fb6833, 0xd2fe8835, 0x7979785b, 0x792d97a6,
0x1a2d793d, 0x795b2e01, 0x842d7979, 0x8436830c, 0x0187263b, 0x00080047, 0x05575500, 0x15333530, 0x883c4b01, 0x014aef69, 0x49893c47, 0x228369ef,
0x372e638e, 0x37173727, 0x07252111, 0x07170727, 0x5182d333, 0xd2fe5a24, 0x55840101, 0x82749721, 0xfe5b230e, 0x6394c4d2, 0x5e822520, 0x82352321,
0x3e01219b, 0x6d085a82, 0x69bf3c88, 0x3c8949ef, 0x00000300, 0xd601e5ff, 0x0700ab01, 0x25001a00, 0x23130000, 0x15231737, 0x27370706, 0x07062615,
0x011e010e, 0x2627013e, 0x17013e27, 0x012e2715, 0x17073523, 0x36171635, 0x555540eb, 0xea121840, 0x06543b55, 0x2e12161a, 0x0a091634, 0x0c510d1d,
0x1b32169c, 0x222c5555, 0x56550108, 0x150f5e56, 0x01405602, 0x5f183b4a, 0x3e2e08a9, 0x4840021e, 0x56401210, 0x1d014055, 0x00820015, 0x7f840420,
0x7f84eb20, 0x12000f22, 0x01208183, 0x0f218185, 0x05d24d01, 0x27173324, 0x8c912507, 0x40000135, 0x18405655, 0x0f292213, 0x44280f44, 0x1819032b,
0x82567f01, 0xd25f188e, 0x510c2208, 0x2785860c, 0xc02b2b53, 0x0e4e4e79, 0x00218c91, 0x2c7f8805, 0x001c0013, 0x002c0024, 0x2500002f, 0x26fa8235,
0x010e011e, 0x7137012e, 0x352405ff, 0x012e0717, 0x34051d51, 0x35373627, 0x33072733, 0x33072307, 0x33173337, 0x01173727, 0x866b8295, 0x14052777,
0x3b53060e, 0xad4ec056, 0x132a2206, 0x23ed8318, 0x28442b66, 0x2937a782, 0x80191872, 0x3f1d0240, 0x16342e09, 0x0e192f12, 0x4a3b0514, 0x4daa5640,
0xb12c055f, 0x565e0f15, 0x2bc01556, 0x4e4e472b, 0x28081b41, 0x00ab01d6, 0x001e000a, 0x2b998327, 0x15272637, 0x32153727, 0x17061716, 0x3421a493,
0x2ca48d26, 0x552c22ce, 0x16321b55, 0x510daa0d, 0x06a8410c, 0x83150421, 0xc05521a1, 0x3105874d, 0x4018122a, 0xa2405555, 0x5540011d, 0x10124056,
0x9f9e3712, 0x230d8763, 0x2500000d, 0x3105fc6a, 0x35233707, 0x01231523, 0x80d5d5d5, 0x406b55aa, 0x09824056, 0x95abab26, 0x00aaaa6b, 0x234f3384,
0x00062106, 0x05203382, 0x332dc482, 0x17272315, 0x23353335, 0xd5150135, 0x822985d5, 0x873c8608, 0x00022733, 0x09009601, 0x67821300, 0x2737152a,
0x07352315, 0x15273517, 0x35323e83, 0x01350717, 0x56d5d52b, 0x6b2ad5d5, 0x6b6baa6b, 0x7a82806b, 0x2a240383, 0x406b6b40, 0x77900383, 0x82233721,
0x07172170, 0x23058e57, 0xababeb37, 0xaa203b82, 0xaa203a82, 0x01213682, 0x20b38240, 0x11d7436b, 0x0717013f, 0x21110727, 0x37173705, 0x01233727,
0x7979792d, 0xfe2e015a, 0x3d792dff, 0x01972d79, 0x230f820c, 0xc42e015b, 0x78230e82, 0x4301002e, 0x37200bd7, 0xe582ae82, 0xc307172d, 0x8869ef4a,
0xef69c13c, 0x443c884a, 0x13311037, 0x07271121, 0x23013f27, 0x37170717, 0x2e017817, 0x4451825a, 0x01230636, 0x44d2fe66, 0x8f831937, 0x60823520,
0x3cb53529, 0x49ef6988, 0x82883c39, 0x119f4167, 0x232b8582, 0x33251737, 0x33353315, 0x83550127, 0xc0fe21eb, 0xab20eb83, 0x3384ff87, 0x01c0ff25,
0x41c001d6, 0x3322066b, 0x58820727, 0x2337172e, 0x27073307, 0x37233533, 0x55012317, 0x20105f41, 0x0a7d41eb, 0x07000022, 0x2008bb58, 0x200b8203,
0x135d1817, 0x82252009, 0x217c8240, 0x28641723, 0x21332706, 0x11151632, 0x17830614, 0x66821720, 0x1f820720, 0x01220783, 0x00826b15, 0x4f658020,
0xd9fe260a, 0x40156b6b, 0x82178240, 0x2bf52405, 0x658b2bc0, 0x12200668, 0xd5202483, 0xab231b82, 0x8240166b, 0x96082077, 0x002b237b, 0x7e460100,
0x18132006, 0x2c0e2247, 0x11211101, 0x35231513, 0x15233517, 0x86078617, 0xf8581881, 0x266c8307, 0x6b80d6fe, 0x82564055, 0x20012703, 0x012b6a2b,
0x7b841920, 0xfe258785, 0xfe2a01ab, 0x273583d6, 0x40404055, 0x40566b6b, 0x04208c82, 0x62188b84, 0x252009df, 0x7312b563, 0x372007e1, 0x27209c82,
0x2105b343, 0x9b632634, 0x077d500a, 0x96968f23, 0x0580506a, 0x240b9063, 0x49300155, 0x22028230, 0x4780ab01, 0x8b460506, 0x01963306, 0x000a0080,
0x0100000e, 0x15062223, 0x11173711, 0x9e492634, 0x12d62a05, 0x18959518, 0x0180803d, 0x28bf8280, 0x014040ab, 0xab191255, 0x063f4d2b, 0x03203783,
0x132b3782, 0x35370000, 0x11371533, 0x4d110727, 0x0721052d, 0x22458223, 0x825580c0, 0x8212203c, 0xd62a2843, 0x2bd56b6b, 0x84fe802b, 0x18132141,
0xeb224b82, 0xdf432f2f, 0x01ab3108, 0x00070080, 0x2500000f, 0x07012f07, 0x01372711, 0x23088082, 0x0706012b, 0x2a1bab01, 0x1b409566, 0x12184f01,
0x060d13d6, 0x402c291b, 0x1b401001, 0x0301e7fe, 0x0e011813, 0x20085f6f, 0x083f8280, 0x17000b2a, 0x07130000, 0x1f371117, 0x35253701, 0x36022f17,
0x16323337, 0x35271115, 0x401b4623, 0x1b2a6695, 0x1580eafe, 0x130d206b, 0x01319284, 0xfe401b6b, 0x292c40f0, 0x80a53a1b, 0x0d20e30a, 0x23968201,
0x00d82bfd, 0x05220082, 0x77440000, 0x05857606, 0x3b003222, 0x3e275b82, 0x1d163201, 0x82011f01, 0x06142b04, 0x2f22012b, 0x3b363701, 0xe1451701,
0x26342206, 0x07ba5407, 0x20081576, 0x07a34117, 0x0c019524, 0x45190c12, 0x01280d02, 0x12120e0b, 0x0e12121c, 0x79270685, 0x1b12120d, 0x855d1212,
0x15012a0d, 0x090c0c09, 0x082f035f, 0x26118214, 0x07115909, 0x83550125, 0x121b231f, 0x0785016a, 0x07b98c18, 0x44836a20, 0x00121c23, 0x39b38204,
0x01d901fd, 0x002f009a, 0x0090008c, 0x250000a2, 0x17070616, 0x010f0616, 0xac822306, 0x82272621, 0x06272f06, 0x012e2227, 0x26372627, 0x3e373637,
0x02821701, 0x3233362b, 0x021e1716, 0x1e271607, 0x22d78301, 0x82160706, 0x2e273a16, 0x26222301, 0x16333634, 0x34353617, 0x06262726, 0x15161407,
0x06141632, 0x20488207, 0x26448207, 0x36323736, 0x82373437, 0x27028218, 0x3607010e, 0x0e011e17, 0x072b5a82, 0x1417010e, 0x2e331617, 0x82013e01,
0x83638358, 0x07272369, 0x47832717, 0x15060728, 0x3632011e, 0x77823734, 0x01364208, 0x141501c7, 0x100d0810, 0x11060611, 0x171d2d0b, 0x181d1010,
0x2f191211, 0x0a02011c, 0x1d0d080a, 0x1b1d2f09, 0x0e0e1d44, 0x210e2716, 0x02130329, 0x0c0c0a6b, 0x180a0e09, 0x174e0808, 0x18200204, 0x080e8209,
0x011f297d, 0x4417231a, 0x0c0a0503, 0x0d11090d, 0x0c0a1210, 0x03090b02, 0x0e0e0110, 0x1e1d1020, 0x03110f08, 0x07092123, 0x18091006, 0x01020519,
0x04131115, 0x0f120807, 0x141d0704, 0x040a2416, 0x0f0d3f1e, 0x090b5c15, 0x01121217, 0x050c120c, 0x0d090504, 0x0f2c1aad, 0x061f101f, 0x350e0205,
0x10041205, 0x29140105, 0x19151819, 0x1b111f19, 0x04190220, 0x11120415, 0x1e473409, 0x8202130c, 0x131e2832, 0x3c050203, 0x821e1705, 0x1a012b0b,
0x1e140a09, 0x12112b04, 0x4e830b04, 0x01013e08, 0x0b020a0b, 0x07010d12, 0x04111609, 0x1006130d, 0x0f10071f, 0x0f040c07, 0x0a030711, 0x070f0509,
0x08090e19, 0x08071012, 0x03171209, 0x15151702, 0x031ca00b, 0x0c09ba1b, 0x140f0101, 0x25df821b, 0x0b030712, 0xeb420000, 0x01c02206, 0x2d098296,
0x002d001b, 0x21352500, 0x15331315, 0xd1821e33, 0x25065c4b, 0x37363411, 0x13823533, 0x2e270324, 0x0c823501, 0x36171623, 0x291f8237, 0x01070614,
0xead6fe95, 0xa344152b, 0x2b153609, 0x220c55aa, 0x17151a27, 0x15170f0f, 0x1522271a, 0x8001ebeb, 0x080c6a2a, 0x122b0139, 0x2a2a0118, 0x1d0cd1fe,
0x1a14182d, 0x11110101, 0x141a0101, 0x8f1d2d18, 0x8225208b, 0x3521238b, 0x1a512721, 0x830e2005, 0x9757188e, 0x23272208, 0x07a46135, 0x83272321,
0x2a012383, 0x8685aa40, 0x832a0121, 0x98152f8c, 0x3e173e4d, 0x4d3f183e, 0x95eb1518, 0x808f2a2a, 0x4a2dea27, 0x2e492d2d, 0x08335149, 0x13005628,
0x20001c00, 0x1f452900, 0x713b2008, 0x364c0595, 0x08b75505, 0x15333723, 0x2efb8223, 0x26220614, 0x12553634, 0x2b121818, 0x8215d615, 0x121823d4,
0x6c43e0fe, 0x80432905, 0x120eb580, 0x12121b12, 0x20062645, 0x05fe7f2a, 0x21086243, 0x6c434040, 0x067f4106, 0x20055f7e, 0x2381820f, 0x0100001a,
0x2912457d, 0x23352307, 0x01172315, 0x5068d66b, 0x4016240a, 0x6855402a, 0xfe27104d, 0xaa2a0181, 0x82566a6a, 0x0687455a, 0x8001c026, 0x15000f00,
0x356c5982, 0x2703270e, 0x17371737, 0xe2469501, 0x18133807, 0x1e80a719, 0x011e6262, 0xfe121980, 0x181813d6, 0x122a0113, 0x84f1fe19, 0x0e375614,
0x19001322, 0x21235192, 0x82072111, 0x27072153, 0x4c82558c, 0xf72a0122, 0xf1455882, 0x235a8906, 0x462a01ab, 0xaba01784, 0xac820720, 0x558c0720,
0x801e5822, 0xab8e9882, 0x1484de20, 0x0f22aba7, 0x57821701, 0xab84558c, 0x5a8e9385, 0x3320ab82, 0x2721aba5, 0x8cac8237, 0x1ed82155, 0x508e3983,
0x1484c020, 0x0720aba7, 0x01415483, 0x20ab840d, 0x165741e4, 0x41056f41, 0x27212057, 0x20ab8f07, 0x20509345, 0xa81484f1, 0x845591ab, 0x053f41ab,
0x220e0641, 0x852a01ab, 0x06af4ac3, 0x16015626, 0x00000800, 0x0851c618, 0x24000129, 0x30483030, 0x58150130, 0x278606cd, 0xeb002b22, 0x25202783,
0x21071e47, 0xb54f0001, 0x58eb2005, 0x002006ec, 0x20054f48, 0x050b5702, 0x1a00162b, 0x21250000, 0x3e27012e, 0x05bf7c01, 0x011e1731, 0x27010e17,
0x27353315, 0x01233533, 0x7febfe95, 0x0c270a32, 0x0101382a, 0x822ad73d, 0x02153600, 0x46333648, 0x012e2707, 0x04384801, 0x3c2d2b3b, 0x2b2b2b69,
0x0867486a, 0x9601d62e, 0x21001800, 0x22170000, 0x23013d26, 0x4a057e6e, 0x2b310755, 0x23060701, 0x37233537, 0x37170727, 0x0c09c027, 0x21a48256,
0x05840112, 0x074f8231, 0x26638e08, 0x1a57571a, 0x090c1526, 0x84121940, 0xff122ac2, 0x4f181300, 0x262ce806, 0x2019821b, 0x08a34527, 0x1f226785,
0x6f5a2800, 0x1415370a, 0x32013b16, 0x3233013f, 0x34113536, 0x21052326, 0x35072311, 0x70872523, 0x6d835520, 0x090c5627, 0x4f07080b, 0x280b8382,
0x5601aafe, 0x01804294, 0x22778604, 0x84189501, 0x0940266f, 0x184f060c, 0x25808313, 0x4200ff2a, 0x7d876842, 0x9d09df5c, 0x150322e3, 0x21e18333,
0xe3911707, 0x27632022, 0x1b21c982, 0x23e39127, 0x272c1401, 0x1b21fe82, 0x0be75426, 0x11671820, 0x22132405, 0x83111506, 0x20e396de, 0x97708737,
0x865620e3, 0x20e29776, 0x8b7b8894, 0x412420e3, 0x38651ac7, 0x24e6920b, 0x402a4040, 0x24e48d40, 0x064f1912, 0x05a05901, 0x57058b4b, 0x1a270603,
0x26002000, 0x65002d00, 0x232e068b, 0x33153315, 0x36323335, 0x23353337, 0x04822736, 0x23012e31, 0x16323307, 0x23172317, 0x010e3335, 0x82071437,
0x6b162207, 0x0800822b, 0x2c802a3a, 0x2c391348, 0x392c0303, 0x802c4813, 0x102c1a80, 0xd68080d6, 0x02512c10, 0x0102e9e9, 0x2a2b5595, 0x2e80d52b,
0x15152b27, 0x2a2e272b, 0x2bab1417, 0x0b6b1714, 0x000a2a0a, 0x08054b42, 0x01000045, 0x00800196, 0x000d0009, 0x37000015, 0x013b1614, 0x11353632,
0x15331721, 0x23271323, 0x21152307, 0x12198035, 0xff1912aa, 0xaaaa2b00, 0x166a16a0, 0x2b2a014a, 0x12191912, 0xd52b0001, 0x15154001, 0x82002b2b,
0x00073400, 0x01eaff00, 0x009601eb, 0x00190003, 0x0021001d, 0x48290025, 0x01200743, 0x1131bd82, 0x012b010e, 0x35231517, 0x26222337, 0x013e1127,
0x20638333, 0x06eb6725, 0x03670520, 0xc0012c06, 0x800180fe, 0x01011812, 0x18951218, 0x2509688f, 0x01ebeb15, 0x00825600, 0x6b00ff2b, 0x6b6b806b,
0x01d6d695, 0x05f06900, 0x2d438182, 0x6a402a06, 0x6a162a6a, 0x2a2a406a, 0x0743422a, 0xab019624, 0x794c0600, 0x15132705, 0x23371723, 0xd0820335,
0x03820520, 0x9555c022, 0x08f7d018, 0x80ab012a, 0xfe809696, 0x562b2bc0, 0x00203a83, 0x20050342, 0x33cb8296, 0x00150011, 0x15071300, 0x3b011e17,
0x35363201, 0x23273537, 0x0720c282, 0x952dad82, 0x1504152a, 0x1912aa12, 0x2b2b2a15, 0x298f8280, 0x56ea4095, 0x12181911, 0x9282ea56, 0x00d55522,
0xd52a8385, 0x6b010002, 0x19001300, 0x49822500, 0x07010e39, 0x17011e11, 0x3e352633, 0x17323701, 0x27263435, 0x15371705, 0x67052707, 0x40200a87,
0xed30fe85, 0x37480102, 0x12190b0a, 0xaaababfe, 0x5501abaa, 0x2105dc6d, 0xf784016b, 0x0b011828, 0x0248360b, 0x2c829702, 0x6b6b2b26, 0x956a6a2b,
0x870cdb6d, 0x00162277, 0x22778a22, 0x82352335, 0x8433206e, 0x07212177, 0x860b506e, 0xebeb2474, 0x832baaab, 0x55012372, 0x708eaaaa, 0x6acd2b25,
0x8495626a, 0x08c6426f, 0x4e050021, 0x0f2008df, 0x5b4fe582, 0x10435e05, 0x11210528, 0x33151321, 0x03860735, 0x4f486b20, 0x27058305, 0x2a01d6fe,
0xd62ad6fe, 0x96200082, 0x8705335e, 0x822b201b, 0x08ed681a, 0x0a5f6518, 0x088b4518, 0x06221334, 0x011e1107, 0x36322133, 0x07271137, 0x15331533,
0x61863721, 0x21064242, 0xae820001, 0x95ab8029, 0x2b00ff6b, 0x186aaaaa, 0x270c11b9, 0xabeb6b2a, 0x2b552b2b, 0x290d5775, 0x0019000c, 0x21111300,
0x094f0711, 0x63172007, 0x22290512, 0x34013d26, 0x80014036, 0x055a46c0, 0x1b531220, 0x80012605, 0x800180fe, 0x06674695, 0x090c6a23, 0x83178240,
0x00002104, 0x0806fb57, 0xab01c02a, 0x2c002100, 0x42003700, 0x58004d00, 0x6f006300, 0x7b007500, 0x2e370000, 0x37362701, 0x013e2726, 0x013e013b,
0x33171632, 0x06370382, 0x0e171607, 0x0e270701, 0x27262201, 0x35363237, 0x27220627, 0x83161407, 0x2f26270a, 0x17070601, 0x22822716, 0x3736372e,
0x22232634, 0x15062227, 0x17323617, 0x07200c82, 0x16280a82, 0x3736011f, 0x06072627, 0x33263082, 0x26013f32, 0x63821327, 0x2105245a, 0x6882010e,
0x05823720, 0x2e330e82, 0x261db901, 0x0e0e0101, 0x1d260101, 0x2a210809, 0x8f090821, 0x3e240810, 0x0a020e0a, 0x0e030918, 0x010e0b51, 0x1304130d,
0x11060512, 0x0e120512, 0x070b0e01, 0x030e0a40, 0x020a1809, 0x13211c8a, 0x2718830d, 0x04131107, 0x026c523f, 0x25080282, 0x02526c02, 0x2d1f1e6c,
0xcc2d1f0c, 0x0c1f2d0c, 0x2601a92d, 0x1212171c, 0x13261c18, 0x26131616, 0x1212181c, 0x86821c17, 0x17132708, 0x0d011317, 0x0404170a, 0x290d0a17,
0x070f0a0e, 0x0c0f1809, 0x0f0c7f04, 0x0f070918, 0x0e290e0a, 0x04041809, 0x08820918, 0x55201b87, 0x04201783, 0xfe212082, 0x236683e0, 0x6d51516d,
0x322c7282, 0x0c1f2e0b, 0x2e1f3a2e, 0x002e1e0b, 0x270ccf4c, 0x000b0005, 0x3700001d, 0x1738fb84, 0x0e37013e, 0x0e151301, 0x012e0701, 0x17323527,
0x17371716, 0x40363736, 0x6e20b184, 0x7e30bd84, 0x36364901, 0x16180149, 0x33330d12, 0xab16120d, 0x51221582, 0x6c84be6d, 0x6b440122, 0x28052f73,
0x0e08086b, 0x080e3333, 0x08c36808, 0x9601c022, 0x2208df5f, 0x87340029, 0x8a072071, 0x207d8577, 0x2e838227, 0x06072235, 0x26072707, 0x15232627,
0x8227011e, 0x82372084, 0x26222293, 0x41888527, 0x8020053a, 0xd9838e84, 0x532e0b22, 0x182c918b, 0x211f4901, 0x01213434, 0x01304830, 0x32269e85,
0x0b1f2d0c, 0xa4846d2e, 0x2e1f1d29, 0x6b2e1f0b, 0x88364802, 0x29b582a5, 0x343423b1, 0x30243323, 0xff452430, 0xeb440809, 0x02005601, 0x13000a00,
0x013f0000, 0x33032717, 0x33173337, 0x27371303, 0x15233507, 0x336d0727, 0x30764833, 0x30188618, 0x1e6bcb76, 0x1e382a38, 0xc0878795, 0x4040d6fe,
0x00ff2a01, 0x82371f6c, 0x001f3782, 0x20055f49, 0x284b9501, 0x37170717, 0x17353315, 0x204b9b37, 0x184a882a, 0x230a0f6a, 0x001d000c, 0x1324aa82,
0x27070137, 0x35280184, 0x1e013f36, 0x27151701, 0x30088d7a, 0x1e073627, 0x27373201, 0x011b2b06, 0x3d3d1b8f, 0x3d008240, 0x529e2101, 0x0c71026c,
0x1801010f, 0x05150e12, 0x01322d7e, 0x3c0b2218, 0x1b7a0109, 0x248671fe, 0x303eea37, 0x526c0252, 0x16047284, 0x0f18120e, 0xaa1d7e0c, 0x3c0a1912,
0x0b7f480b, 0x7d821b20, 0x00002d24, 0x73832113, 0x2e352325, 0x45212701, 0x152107c2, 0x230d8223, 0x17013e11, 0x87082744, 0x01802608, 0x01302400,
0x07a7452a, 0x80210782, 0x22108280, 0x4aa43001, 0xa42005bc, 0x25054044, 0x30019501, 0xa8448024, 0x00ff2306, 0x32821812, 0x83243021, 0x4a7f203b,
0xa92006dc, 0x3508bd4a, 0x00020000, 0x01ffff00, 0x008101c1, 0x001b000b, 0x23352500, 0x33462335, 0x54372006, 0x952c0f3f, 0x55552baa, 0x1a11aa2b,
0xd6fe111a, 0xd5200583, 0xaa210f84, 0x240f87ab, 0x1a112a01, 0x83e78400, 0xc0013058, 0x1a000600, 0x00001f00, 0x17353301, 0x79233507, 0x15200e3b,
0x3222fc82, 0x01822707, 0x55400128, 0x80556b6b, 0x264e1219, 0x96240805, 0x49600201, 0x4a60200a, 0x80014a36, 0x406a6b40, 0x1912966a, 0x2a011219,
0x0a0b1912, 0x80026049, 0x60406080, 0x0f206782, 0xc022bb82, 0xb761d601, 0x0013210a, 0x2f098555, 0x003b002b, 0x0043003f, 0x25000047, 0x15333523,
0x27200382, 0x0b8a0786, 0x56023b21, 0x208406b3, 0x37231522, 0x240aec5d, 0x2634013d, 0x0a486f01, 0x2a950122, 0x40200082, 0x2a230382, 0x83c0aaaa,
0x88162006, 0xfec02210, 0x08754baa, 0x2bd8fe23, 0x054c6f2b, 0x6a2aeb24, 0x0382162a, 0x6b2b8022, 0x0c860582, 0x12186a22, 0x2207634f, 0x832b96fe,
0x20cb8200, 0x22cb8e10, 0x791f001b, 0xcb83100b, 0x00004b23, 0x20928a17, 0x099a5e03, 0x2321ad83, 0x2e1d7905, 0xa9889520, 0x1221bd88, 0x1b2679fe,
0xb0841520, 0x89950121, 0xd62a22c3, 0x0c2179c0, 0x40220c87, 0x93612a2a, 0x01dc3e08, 0x00060096, 0x02160100, 0x27072707, 0xc024b801, 0x2e643d12,
0xfe669501, 0x643d0df0, 0x08e74c2d, 0x2784d720, 0x29820e20, 0x010f2708, 0x013e3717, 0x07170705, 0x37173717, 0x9462d501, 0x0217934c, 0x1e1edbfe,
0x1e794b79, 0x2595011f, 0x1d934b94, 0x0f83a650, 0x1e1e783b, 0x00000400, 0xd901feff, 0x0700ae01, 0x19000b00, 0x00001d00, 0x37270701, 0x20038617,
0x830c8225, 0x8237200a, 0x2737227e, 0x08068217, 0x19000143, 0x4fc0371e, 0x1346281f, 0xacfe0e1e, 0x501e8f01, 0x9d23c06a, 0xc02d1e4b, 0x0ed55a45,
0x5f011d6b, 0x952a1f13, 0x6c1f1f3e, 0xff0b1f0f, 0x511e70fe, 0x7b1b9552, 0x95221e3b, 0x0bef5b35, 0x0000176b, 0x45738403, 0x0925059b, 0x00000d00,
0x236f8525, 0x27173727, 0x0124b682, 0xc0239d00, 0xc0205282, 0x7a2d0082, 0x7b347a7a, 0x1b95951b, 0x95959544, 0x8200825f, 0x35b384f2, 0x016401d5,
0x000f00ab, 0x00180013, 0x3700001c, 0x23353335, 0x41493735, 0x07232905, 0x2335013f, 0x013f0315, 0x2c08c685, 0x551515ab, 0x1b151555, 0x2a550c86,
0x0bc30156, 0x0b9b694f, 0x562aebb3, 0x152b2b15, 0x4e4e2a56, 0xfe56562a, 0x487105c0, 0x4859922e, 0x20608267, 0x859f8204, 0x8903205f, 0x1517225f,
0x20638d07, 0x245f8837, 0x6a2ac015, 0x2061866a, 0x235f882b, 0x402a40aa, 0xfe216389, 0x586089ea, 0x11220983, 0x9d4b1500, 0x7813200d, 0x27220dd4,
0x7682020f, 0x2721d682, 0x22078237, 0x82150727, 0x20038906, 0x09e278c0, 0x72030a2b, 0x566a4095, 0xb640c056, 0x20008628, 0x09527901, 0x3606e878,
0x072c0101, 0x15fd19fa, 0xf31ef81e, 0x0cfa16fc, 0x0d0f2e0f, 0x830e2e0e, 0x220b8303, 0x82000200, 0x40013f00, 0x04004001, 0x00000700, 0x37272325,
0x35170733, 0x80204001, 0x39642080, 0x80808040, 0xf75a7239, 0x87602008, 0x33132827, 0x37230717, 0x85c01527, 0x88012026, 0x095f5f27, 0x4f820320,
0x1a001522, 0x353b5383, 0x15231533, 0x14113733, 0x07212306, 0x33363411, 0x07163221, 0x21371121, 0x822a1501, 0x18c03f00, 0x55d5fe12, 0x56011218,
0xfe2a1812, 0x3c011aaa, 0x2b8055eb, 0x1200ffd6, 0x80015519, 0x1e821812, 0x4782e620, 0x2f74a182, 0x08137a07, 0x0a461320, 0x3e212606, 0x27353701,
0x06246435, 0xf5433720, 0x0b814a06, 0x12192b26, 0x402b2bc0, 0x01200284, 0x2a08c04b, 0x80121801, 0x1812552b, 0x83552b01, 0x47002000, 0xa3530643,
0x00242205, 0x08db4f2d, 0x3632b282, 0x26341135, 0x16320723, 0x010e2317, 0x1614011d, 0x547b3317, 0x07f45008, 0x18136b22, 0x2e057c45, 0x32951219,
0x093a0f4e, 0x3a090c0c, 0x75324e0f, 0x744605e3, 0xb7731806, 0x2a013508, 0x3a2b1813, 0x090c0130, 0x010c092a, 0x54013a30, 0x69544040, 0x4d087146,
0xe3440bcf, 0x2500240b, 0x4d112111, 0x152008cf, 0x3522ec82, 0xd14d3533, 0x23ff830b, 0x35231517, 0x4d07c174, 0x2b2316d1, 0x83d5c0c0, 0x2a0482f5,
0x6b56566a, 0x00ff0001, 0x77182a01, 0xff5008c2, 0x6b552805, 0x6b152b6b, 0x4e2b406b, 0x3f080563, 0xff000006, 0x01eb01c0, 0x000900ab, 0x00320026,
0x0045003b, 0x3700005c, 0x1e17010e, 0x37363201, 0x06372526, 0x012e2726, 0x07010e27, 0x1727010e, 0x14170633, 0x16071716, 0x3e273736, 0x012f3501,
0x2e09bf6a, 0x33013e07, 0x1617011e, 0x07060715, 0x833e3426, 0x2345823f, 0x07232707, 0x36273d82, 0x1517013f, 0x833b011e, 0xaf353352, 0x01010505,
0x010f1411, 0x160c0113, 0x2c313901, 0x02822c28, 0x01393133, 0x01030216, 0x6a0b2c34, 0x2c0b0393, 0x0f1ee434, 0x0802871e, 0x1e110d4b, 0x2061250b,
0x19168703, 0x09170f08, 0x09890404, 0x80201b27, 0x01282220, 0x97260401, 0x2a0a0b01, 0xbe010c09, 0x0c050a04, 0x0c0c0e0e, 0x0e02561e, 0x0232221e,
0x1e223202, 0x0a56020e, 0x1d5d390b, 0x09313a13, 0x395d1d13, 0x20568aa0, 0x08888237, 0x090f2339, 0x040ea60a, 0x030d1507, 0x740c0207, 0x38143922,
0x2d491738, 0x28111010, 0x0c0d0834, 0x00001e09, 0xff000004, 0x019601e6, 0x000b0096, 0x002b0018, 0x01000034, 0x8217011e, 0x262722c0, 0x23e88235,
0x3307010e, 0x27056c4c, 0x2207012e, 0x16232726, 0x3227eb83, 0x36353736, 0x190e2337, 0x370be010, 0x18015440, 0x01187d7d, 0x3f2c4054, 0x20073708,
0x3707202a, 0x152c3f08, 0x04280682, 0x3e34100c, 0x040c1034, 0x15201682, 0x20064e5a, 0x08288295, 0xc9242d21, 0x402d24c9, 0x35011f54, 0x1818132a,
0xb4352a13, 0x12171318, 0x1d1d1802, 0x17120218, 0x5a601813, 0xeb420649, 0x01e22807, 0x000f006b, 0x842e001b, 0x030721a5, 0x21259d82, 0x1337012e,
0x8203823e, 0x058e508d, 0x0726343f, 0x011e010e, 0x0736013f, 0x012f013e, 0x1406012e, 0xd201011f, 0x43020808, 0xfe080d02, 0x080886a8, 0x0756d825,
0x56070a0a, 0xde0b0b07, 0x0f0a0306, 0x04198a06, 0x69040106, 0x050c0f06, 0x016b0159, 0xd0fe080a, 0x82010a08, 0x30012107, 0xff250782, 0x0f0a0100,
0x3202820a, 0x0d0f0505, 0x12610503, 0x060e0503, 0x0b010670, 0x5b5f060f, 0xd624099f, 0x0700ac01, 0x182fa182, 0x2a001c00, 0x17130000, 0x37173236,
0x86072226, 0x63071907, 0x23073408, 0x21373335, 0x011d010e, 0x35211533, 0x26343533, 0x18351e69, 0x200c52fb, 0x052e4ec8, 0xaaaa493a, 0x1cd6fe40,
0x00015524, 0x6c012455, 0x1e32321e, 0x191e7b3f, 0xc0251e19, 0x2b069861, 0x016b6b81, 0x556b1b24, 0x241b6b55, 0x3908b768, 0x006b01c0, 0x00170003,
0x002d0027, 0x35332500, 0x06141723, 0x2315012b, 0x964e2335, 0x013b2405, 0x83151632, 0x11152c80, 0x21171614, 0x1135013e, 0x82072634, 0x1533331f,
0x2b2b3501, 0x10090c4b, 0x0c0a1020, 0x09400a0c, 0xbc49150c, 0x2a013105, 0xbc191912, 0x40a0206b, 0x200c094b, 0x56090c20, 0x0920a182, 0x0dcc4b18,
0xca181225, 0x44608020, 0x838306fb, 0x21000f2f, 0x39003500, 0x11010000, 0x21070614, 0x2767832e, 0x1e213736, 0x26340701, 0x2305456b, 0x15333533,
0x37200384, 0x2105f148, 0x0e83013b, 0x3736322c, 0x23012e35, 0x23153307, 0x3e4ac001, 0x2c818307, 0x60080dc0, 0x20010c09, 0x20152016, 0x22808335,
0x71101a16, 0xb6820587, 0xff400123, 0x050b5100, 0x07850120, 0x0d08672a, 0x606b080d, 0x80604b4b, 0xb686af84, 0x42402021, 0xef39074f, 0x0d006d01,
0x1e001b00, 0x23250000, 0x1127012e, 0x16363736, 0x06161317, 0x05554205, 0x1716172c, 0x07010e11, 0x01073527, 0x6783aad5, 0x0e070f37, 0x0c06ab03,
0x0c0d49fe, 0x0e03ab06, 0x01010f07, 0x7115090c, 0x37058215, 0x05102b01, 0xfe060602, 0x01150ad4, 0x010a1501, 0x0206062c, 0xd5fe1005, 0x2b233682,
0x5900c6c6, 0x340808af, 0x00ab0199, 0x0017000b, 0x0500001a, 0x3f012e21, 0x1f323601, 0x03061601, 0x010f011e, 0x012f2206, 0x1f373626, 0x80013701,
0x0c0d00ff, 0x14078008, 0x0c088007, 0x2e0a8a0d, 0x2b55552b, 0xac0a1701, 0x0aac0808, 0x89d50117, 0x722b250a, 0x01000072, 0x00266782, 0x36017501,
0xd3820f00, 0x22262722, 0x14205482, 0x32205f82, 0x34296782, 0x07617001, 0x0661070f, 0x21068406, 0x0983ce05, 0x06100622, 0x0b440685, 0x82ea2005,
0x00962c51, 0x000d0006, 0x001b0014, 0x83371300, 0x37072c9d, 0x36371707, 0x37052734, 0x82060727, 0x1707224d, 0x2e4f8216, 0x1c0c499d, 0x8163490c,
0x094a6363, 0x82b4fe09, 0x0b0b2306, 0x148463cb, 0x4a410128, 0x634a0b0b, 0x0e846345, 0x06857d20, 0x83630421, 0x219f8214, 0x53740005, 0x00182609,
0x002a0021, 0x0b577436, 0x15172728, 0x2e070614, 0x04832201, 0x37013d22, 0x6f07af46, 0x17250869, 0x0e171632, 0x23218201, 0x01013e27, 0x08c8b818,
0x0d0f952a, 0x462c461d, 0x950f0d1d, 0x0c08a218, 0x371a0e2b, 0x1b321410, 0x1014321b, 0x0a757437, 0x69422736, 0x1319351c, 0x19131111, 0x06691c35,
0x2b3f2a01, 0x2a2a3f2b, 0x2a05c95e, 0x180c11b5, 0x24070724, 0x82110c18, 0x055341af, 0x16015624, 0xa7820300, 0x33152329, 0xaaaa5501, 0x82aa1501,
0x0200211a, 0x00211f82, 0x271b8501, 0x25000007, 0x37352315, 0x2b282183, 0xaaaa8056, 0x2a5656eb, 0x3f852582, 0xeb002b22, 0x372a3f83, 0xd5153335,
0x56569556, 0x0b530000, 0x01d62205, 0x2745186b, 0x0100220a, 0x05961821, 0x3305270d, 0x23172315, 0x03833335, 0x07823520, 0x07c86518, 0x1256012c,
0x98fe1818, 0xd6d65656, 0x058380d6, 0x2d0c2848, 0x18120001, 0x2b552baa, 0x2b2a2b2b, 0xa3840600, 0x2323678d, 0x18010000, 0x240d46e8, 0x21110137,
0x9b581811, 0x20078307, 0x21798227, 0x7318ab01, 0xaa200c94, 0xab275082, 0x2b2bd5ab, 0x90abab80, 0xfe01276f, 0xff0001d5, 0x7382ab00, 0x802a2a26,
0x0c00002b, 0xc0207784, 0x0628df82, 0x0e000a00, 0x19001200, 0x240efb4c, 0x06142500, 0x21d48207, 0x6b823507, 0x2e340387, 0x33013d01, 0x0e210115,
0x21011d01, 0x05263435, 0x35331523, 0x25200382, 0x15200382, 0x2f820382, 0x82271521, 0xc001282c, 0x2b16090c, 0x82802b80, 0x096b2e6c, 0x2a012b0c,
0x1912d6fe, 0xfe188001, 0x21a682c3, 0xfd83012b, 0x2ad52b28, 0x092b2a2a, 0x1183010c, 0x0c2d1584, 0x012b1509, 0x12180156, 0x18122b2b, 0x203a82d5,
0x53af842b, 0xd62a09d7, 0x08002b01, 0x22001600, 0xac5d0000, 0x24088208, 0x07010e17, 0x05025a23, 0x010e152c, 0x33171614, 0x2634013e, 0xd4629527,
0x2de82705, 0x3c01013c, 0x0685d62d, 0x24241b24, 0x0483d61b, 0x20074f5a, 0x31771841, 0x2b01260a, 0x24362401, 0x20048401, 0x08f76f00, 0x25207388,
0x99071650, 0x6b012873, 0x24181812, 0xb6121919, 0x00042174, 0x012b0082, 0x004001d6, 0x0015000f, 0x631f0019, 0x332412d7, 0x34262315, 0x22059b4a,
0x18071416, 0x310c9886, 0x0c3434b6, 0xab80806b, 0x340c0c34, 0x12194001, 0x8a8212aa, 0x55250482, 0x142e1456, 0x53048356, 0xd638084b, 0x2000b201,
0x32002900, 0x35250000, 0x23272634, 0x2e27013e, 0x07060701, 0x21066b7a, 0x8f551517, 0x013d2405, 0x87273517, 0x08e743f8, 0x0c800131, 0x0e241609,
0x26541b19, 0x53270c16, 0x82141718, 0x0c012836, 0x09000109, 0x41c0550c, 0x83200578, 0x2405a74a, 0x0c094a8b, 0x27278201, 0x101a0e24, 0x27131718,
0x042a2d82, 0x0c09b403, 0x564b090c, 0xa54a8beb, 0x192a2706, 0x24181824, 0xdf4c0019, 0x7f032009, 0x00210e71, 0x05316001, 0x82053521, 0x82072007,
0x23012403, 0x82273315, 0x86372003, 0x95012607, 0x01558055, 0x2304832a, 0xd5abab55, 0x01340287, 0x802a2a55, 0x8080aa80, 0x012a2a56, 0xd580802b,
0x8080d52a, 0x2d089752, 0x000a0095, 0x0013000d, 0x17371300, 0xb14e1f37, 0x33300805, 0x11173517, 0x25071117, 0x633b1846, 0x623b0139, 0x373b183b,
0x6c6a7043, 0x1a01c2fe, 0x1a622d09, 0x2c611abd, 0x64323b08, 0x2c6e01ea, 0x6c2caefe, 0x2d0c9f54, 0x00170013, 0x25000027, 0x17330723, 0xa1823721,
0x14150727, 0x32213316, 0x05f77936, 0x3605a545, 0x013f3216, 0x012f3436, 0x80012226, 0x25292a0f, 0x2b26d6fe, 0x4b40122a, 0x552b05f3, 0x0f6a4c6a,
0x6a060688, 0x85071106, 0x2bab2106, 0x402c0082, 0x18181256, 0x69ab5612, 0x882d6a4b, 0x69251a82, 0x07870707, 0x82258211, 0x0400217e, 0x85088364,
0x822b207f, 0x07fb5181, 0x37013d32, 0x07231733, 0x37232721, 0x15213517, 0x34262737, 0x2a06d946, 0x06010f14, 0x17073722, 0x82800137, 0xd6fe357b,
0x12401813, 0x01262b2a, 0x2a29252a, 0x87d6fe24, 0x8806066a, 0x06836284, 0x96822720, 0x8486ab20, 0x8f824020, 0x16962b25, 0x82696b16, 0x26a3851e,
0xe9078707, 0x82694b6a, 0x822d208c, 0x01002303, 0x521801d7, 0x23520997, 0x182f200d, 0x5108694a, 0xab18055d, 0x2b080dcb, 0x006f006b, 0x00770073,
0x007f007b, 0x00870083, 0x0090008b, 0x00980094, 0x00a0009c, 0x00a900a4, 0x00c700bf, 0x130000cf, 0x17350715, 0x37200386, 0x13830b8a, 0x1be70f8b,
0x8c873620, 0x062c078d, 0x11133507, 0x07222326, 0x35373635, 0x05860c82, 0x17323326, 0x15072326, 0x15230682, 0x83012b26, 0x0f392107, 0x0d210083,
0x2100850c, 0x00831535, 0x85111421, 0x1b392100, 0x19210083, 0x21008516, 0x00832242, 0x851c2021, 0x254a2100, 0x23210083, 0x23008520, 0x1414284f,
0x8206c34f, 0x18340806, 0x3926f410, 0x251f3a2f, 0x2420251f, 0x31342321, 0x22180536, 0x1c1e0808, 0x0808201a, 0x4f011a20, 0x790d060d, 0x790c060d,
0xdb0d060e, 0x250c060b, 0x500b060b, 0x262b0782, 0xd50b050c, 0x79100810, 0x830f080f, 0x0edd2803, 0x0d250e06, 0x83500f07, 0x070e2707, 0x0b12d50e,
0x03857512, 0x10dd1329, 0x10210f08, 0x824d1009, 0x11202c03, 0x18e01008, 0x1873180d, 0x8272170d, 0x16e12807, 0x161f160c, 0x824b160b, 0x161e2803,
0x1fe6150b, 0x86711f0f, 0xe0250803, 0x1d1b0d1a, 0x4b1a0c1a, 0x1c1a0c1b, 0xf51b0d1b, 0x0b28102b, 0x25112527, 0x25102619, 0x26112519, 0x2611261a,
0x08038319, 0x08092820, 0xfe100128, 0x281319d5, 0x0462050c, 0x060e1c12, 0x2a0f065f, 0x010d3416, 0x0b1c0960, 0xff420862, 0x00002906, 0x8001eb01,
0x25002100, 0x20062b4d, 0x07aa5c33, 0x2726222d, 0x010e2335, 0x37260607, 0x193e3733, 0x29097264, 0x33112317, 0x33153727, 0x1e693507, 0xab012908,
0x01100c23, 0x9c0c1001, 0x702c0682, 0x231e291e, 0x09053d0f, 0x63183e03, 0x23291382, 0x80801556, 0x402a4075, 0x05014c8a, 0x19550121, 0x29163f62,
0x6a00ff55, 0x608b608b, 0x867e0c80, 0x48002006, 0xc02b058b, 0x14008001, 0x00001e00, 0x44110713, 0x35370514, 0x0e152711, 0x22012b01, 0x07013d26,
0x17011e33, 0x3e352315, 0x44559501, 0x01300609, 0x0980090c, 0x09aa150c, 0x01d6010c, 0x2b80010c, 0x2107f04b, 0x82822b2b, 0x952b0922, 0xaa202082,
0x00221d82, 0x00820004, 0x052fff84, 0x1b000b00, 0x00001f00, 0x23152325, 0x47253315, 0x2120059f, 0x310b605b, 0x2103012e, 0x95012111, 0xff6a402a,
0x2a6a4000, 0x4c182b01, 0x012c0cb8, 0x80fe1218, 0x40c08001, 0x6b2bab2b, 0x340ce24b, 0x2a01abfe, 0x00030000, 0x01e4ff00, 0x009001b0, 0x004e003e,
0x2769826e, 0x3f262726, 0x27373601, 0x27350782, 0x07060706, 0x17323715, 0x14153337, 0x06010f06, 0x17371707, 0x24028336, 0x17230615, 0x240e8214,
0x33153736, 0x22128207, 0x83363736, 0x37362134, 0x23232482, 0x82230706, 0x3337260f, 0x06151736, 0x22428337, 0x83263527, 0x2c57821f, 0x17363715,
0x16372737, 0x22071615, 0x332b8235, 0x01850107, 0x2514011b, 0x0201020d, 0x2b341422, 0x05181445, 0x79080a82, 0x02141102, 0x05020a09, 0x090c0a04,
0x02062021, 0x02434b02, 0x0f09050b, 0x35091303, 0x130f1c1d, 0x0d2a1529, 0x03292645, 0x02011043, 0x09361939, 0x0b0a0e1b, 0x38081b05, 0x04080106,
0x14011f06, 0x01251905, 0x0b040103, 0x03030701, 0xcb081301, 0x0b061e05, 0x05231021, 0x010d1019, 0x0e0e1b03, 0x01020203, 0x0f0d0101, 0x020e0102,
0x080a0502, 0x030b1803, 0xb2070509, 0x1982047b, 0x02252608, 0x0f0f1415, 0x200a0c03, 0x141d1f0d, 0x02241c1d, 0x16027108, 0x1d060d03, 0x01110777,
0x09020118, 0x4603160c, 0x2f5f8207, 0x01120303, 0x09060106, 0x01040905, 0x00011c08, 0x04820082, 0x01e8ff33, 0x00ab016b, 0x25000014, 0x07062317,
0x23373627, 0x05d04837, 0x17011e32, 0x1901010e, 0x11052012, 0x20051015, 0x012d2412, 0x2d06b048, 0x561bb02d, 0x55540356, 0x2856121b, 0x15833d2d,
0x00562822, 0x26051f6d, 0x006b01d6, 0x4a0b0006, 0x1c2206bb, 0x57822300, 0x3533352f, 0x27350717, 0x37352115, 0x23153307, 0x08038227, 0x07153724,
0x17010f35, 0x15253523, 0x37271523, 0x40400115, 0xff555555, 0x2b168000, 0x2b2b552b, 0x0d292ad5, 0x1482af25, 0x9556562d, 0x4a4b2b40, 0x1c1c872a,
0x826b804f, 0x26362700, 0x200b805c, 0x1582152b, 0xc34a4b20, 0x8a562009, 0x001b2373, 0x71853700, 0x71832520, 0x15210323, 0x07b74a21, 0x2b200783,
0x01216882, 0x2569826a, 0xff000180, 0x6e826b00, 0xaa2a2a25, 0x84802b2b, 0x1b862850, 0x00ff4f1b, 0x836aaa2a, 0x00002100, 0x8e08234b, 0x8525205f,
0x8fd1845f, 0x84c9885f, 0x846a205f, 0x2aab22ce, 0x205f952a, 0x32638203, 0x01d60100, 0x00030096, 0x00260022, 0x23152500, 0x79330335, 0x162a05c6,
0x012e011d, 0x07010e23, 0xa04f1714, 0x34352d08, 0x23351736, 0xaad50115, 0x18125656, 0x2a080282, 0x36192b11, 0xbc110149, 0x12181812, 0x56681856,
0x012a2a55, 0x2b121840, 0x10761219, 0x36490111, 0x12191d23, 0x2b1813ea, 0x5e551812, 0x2f6205a3, 0x000b2406, 0x822e002a, 0x1833206f, 0xa3096f47,
0x2a6b2377, 0x02824040, 0x7c959620, 0x1b839520, 0xf4207f9f, 0x7f87ef84, 0x20094d53, 0x227fa337, 0x182d1f34, 0x2008dc4f, 0x2184958d, 0x4f181f6d,
0x012109de, 0x180a4155, 0x00040039, 0x01cdff00, 0x009601f3, 0x0017000e, 0x003b0037, 0x011e2500, 0x18071417, 0x8c11c575, 0x0e272399, 0x27820701,
0x20109241, 0xfa5b1860, 0x85a22012, 0x3d1229a2, 0x024e3b26, 0xa7121401, 0x1807a641, 0x2114c94e, 0xad840001, 0x221e6b29, 0x3b4e0201, 0x4113311c,
0xaf840bba, 0xe001e722, 0x2c3daf82, 0x34003000, 0x00003a00, 0x27262301, 0x26072737, 0x07270722, 0x23070617, 0x1d063315, 0x22058201, 0x82171415,
0x011e2405, 0x823e3537, 0x35332903, 0x27343523, 0x35230733, 0x2a080983, 0x37271333, 0x01173717, 0x180f3c80, 0x0f2e1e23, 0x1e2e0f1f, 0x3c0e1822,
0x2a2a022c, 0x183c2c02, 0x2e012d54, 0x022b2b26, 0x8255802d, 0x3b7b2e00, 0x194c2219, 0x101a2b01, 0x042e1e22, 0x322a8204, 0x0b2b1a10, 0x162a160a,
0x282b0b0a, 0x290e0f1f, 0x83080e41, 0x2b802c0c, 0xe7fe2b2a, 0x4d221940, 0x8a00001e, 0x003b26ab, 0x00450041, 0x26aba349, 0x23063734, 0x8227012e,
0x163227b3, 0x07141517, 0xb0843736, 0x1720ba82, 0x3725df83, 0x35231527, 0x9a038217, 0x150528ba, 0x0130241b, 0x82493001, 0x18132104, 0x4726c583,
0x3b19224c, 0xca82e065, 0x1228c49a, 0x30010f12, 0x30245624, 0x06230482, 0x84091106, 0x4d952bd1, 0x66401922, 0x552b2bb3, 0xd2822b2b, 0xf72cd384,
0x8001ab01, 0x3b002f00, 0x43003f00, 0x3624d3a2, 0x23353337, 0x26077c7c, 0x0e073327, 0x86262201, 0x36cd83e0, 0x23153315, 0x0f3cab01, 0x2f1e2318,
0x2f0e200e, 0x0f18231e, 0x83022d3c, 0x1d3c25b7, 0x111e3062, 0x56230c86, 0x82483001, 0x080483d1, 0x56562a21, 0x1a150156, 0x2e1e2211, 0x1e2e0303,
0x2a1a1122, 0x2b150b0b, 0x2b0a0b15, 0x121a1b2e, 0x840a2b1d, 0x6b0b210d, 0x5529cc83, 0x25303025, 0x562b2b16, 0x0a03542a, 0x355dab20, 0x13002208,
0x86e51815, 0x012b290e, 0x23152335, 0x11210735, 0x20090363, 0x09105815, 0xaa2b1530, 0xfe2a0140, 0x2a2a80d6, 0x2bab012a, 0x04541318, 0x2b2b2b09,
0x00ff802b, 0x956a6aea, 0x37452b2b, 0x01c02407, 0x730300ab, 0x16820827, 0x5e07096e, 0x3b260d6a, 0x15333501, 0x4c180733, 0x076e0ebf, 0x1813230c,
0x7c821318, 0x2b2bc029, 0x552b2bab, 0x82552a2a, 0xeaea236e, 0x58188001, 0x13230a88, 0x822b2b18, 0x2b2b217b, 0x03599b82, 0x21eb8708, 0x61821300,
0x798f6583, 0x21110729, 0x15330511, 0x6d2b8023, 0xfe2106ec, 0x266b84d6, 0xff2a0115, 0x82d6d600, 0x8c2b20e4, 0xff552463, 0x42000100, 0xbb45050f,
0x21e38905, 0x5b6e2500, 0x05696809, 0x3221332e, 0x34113536, 0x35012b26, 0x33152307, 0x0122d183, 0x6882402a, 0x820a5141, 0xea2b22d2, 0x41ce8296,
0xc982094c, 0x0096c027, 0x00000400, 0x09c76dff, 0x18058f4f, 0x26131d56, 0x33353315, 0x82151735, 0x18352060, 0x240d1d56, 0x350b3520, 0x10ce6d55,
0xfe40012d, 0x552b01aa, 0x35ab2035, 0x82005520, 0x4d072000, 0x263008bf, 0x2e002a00, 0x36003200, 0x3e003a00, 0x35010000, 0x2326ba84, 0x06222315,
0x0383011d, 0x9b550884, 0x7e352008, 0x072005d4, 0x200a8652, 0x52138227, 0x95380892, 0x2a161218, 0x12181216, 0x19125519, 0x2b552b40, 0x19402b2a,
0x802b2bfc, 0x2b23ed82, 0x83155616, 0x00012506, 0x4018122b, 0x2305b046, 0xaa121915, 0x23054e5e, 0xc01912ea, 0x2f821d82, 0xc02b2b22, 0x00213682,
0x25a3820a, 0x01eb01d5, 0x9b4f00ab, 0x0042280f, 0x05000046, 0x4f3b3523, 0x07200793, 0x4f0a1752, 0x372507a3, 0x11171632, 0x20018323, 0x27cd8235,
0x37013e35, 0x36343533, 0x7b420383, 0x16322305, 0x19820715, 0x42400121, 0xab20075c, 0x01248783, 0x552a2a00, 0xa3821184, 0xd52b0122, 0x0124b882,
0x19801218, 0x2b24d182, 0x19122a2b, 0x8021c884, 0x82d0822a, 0x82d4832d, 0x00ff2b1a, 0x00ff0001, 0x12ababab, 0x22830118, 0x56181225, 0x82121856,
0x41a482cb, 0x9a250667, 0x1e001500, 0x056b4100, 0x23010027, 0x0607012e, 0x06a16f07, 0x50073042, 0x332b09f4, 0x21113335, 0x23173311, 0x82073335,
0x95012803, 0x192e0a59, 0x18590b1c, 0x2008925b, 0x050f4ca7, 0x2ad66222, 0x2905ff66, 0x01abab2b, 0x0916196b, 0x20711c0a, 0x0617580d, 0xfe2b5524,
0xb88201d5, 0x432a8021, 0x022d0523, 0x006b0100, 0x00160012, 0x2500002e, 0x06f35a2e, 0x011e0727, 0x013e2117, 0x829a8237, 0x06372273, 0x929b1807,
0x32550810, 0x01141516, 0x3b560c9d, 0x31154a2f, 0x49010140, 0x2e150136, 0x3801013c, 0x272a2ab2, 0x06090e0a, 0x08110c2a, 0x0c120c0a, 0x3a23012a,
0x4838ea23, 0x272e0101, 0x36334607, 0x3d010248, 0x913b2b2d, 0x080c442b, 0x120a0c05, 0x0f050b10, 0x0a0a0c14, 0x181d1a19, 0x3f521810, 0x059f7d09,
0x3b003222, 0x15269582, 0x012b010e, 0xa84c0607, 0x06754705, 0x06333729, 0x1e17010f, 0x18323301, 0x53082548, 0x22370518, 0x013e2726, 0x14010e17,
0x34363216, 0x01ab0126, 0x4f571218, 0x6d0b0807, 0x39080626, 0x070b1276, 0x39591507, 0x0b0a2f2f, 0x0c0c130b, 0x0f442d09, 0x4459440f, 0x2c441010,
0x2d1e1e16, 0x55c01e1e, 0x064f1813, 0x1940090c, 0x1812d512, 0x101a1601, 0x953c3410, 0x2e83130c, 0x2e01402b, 0x2f2f2626, 0x1f2e2626, 0x222b8301,
0x82001e2d, 0x00043500, 0x01eaff00, 0x008001d6, 0x00130008, 0x003d001c, 0x16320100, 0x9305ce71, 0x15172994, 0x23350723, 0x37363335, 0x2206845d,
0x6d15013b, 0x37240974, 0x55010635, 0x14279c97, 0x5b804269, 0x6d76100b, 0x57200a83, 0x1522a482, 0xa0974001, 0x4245af37, 0x1417d542, 0xd5121801,
0x09401813, 0x184f060c, 0x000b5513, 0x20b38403, 0x06fb48df, 0xb1823520, 0x17011e22, 0x13a95d18, 0x06332523, 0x221a8215, 0x41173732, 0x57181386,
0x42200814, 0x08246818, 0x1e1e2d2c, 0x0b76f4fe, 0x153b4f01, 0x7d413714, 0x9501210d, 0x15766718, 0x1c1a012a, 0x06014e3b, 0x19121036, 0x4d097941,
0xea2105eb, 0x31a38301, 0x002e001f, 0x13000037, 0x23070633, 0x37153315, 0x8d943533, 0xc3962520, 0x08765528, 0x42806c02, 0x8e8e2b69, 0x36290825,
0x180e0101, 0x820be168, 0x6b0128bc, 0x42d51615, 0x8c2b3b42, 0x952b208d, 0x08ab57b9, 0x09a35318, 0xa7831b20, 0x11231527, 0x37231533, 0x06744635,
0x13240782, 0x33352311, 0x2b2b0382, 0x80565680, 0x2a2b2b6a, 0x826a2b2b, 0x8001270a, 0x2bd6fe2b, 0x00842b55, 0xfe2b0127, 0x2a012b80, 0x0553422b,
0x01000025, 0x448001d6, 0x132206ef, 0x4d930000, 0x48889520, 0x00224291, 0x00820004, 0x016b0122, 0x00219b89, 0x8f958213, 0x8c918a99, 0x4e00208d,
0x22080520, 0x007d01d6, 0x2500005f, 0x07062223, 0x23010e31, 0x3634012e, 0x17163233, 0x3b011e35, 0x35361601, 0x8227012e, 0x16063619, 0x3632013b,
0x37363137, 0x0614011e, 0x15272607, 0x012b012e, 0x29198233, 0x0615010e, 0x37011e17, 0x1f853323, 0x14163224, 0x1f862306, 0x19832220, 0x013e3331,
0x01263437, 0x1a0eb6c8, 0x0f180808, 0x82212118, 0x08083004, 0x03b40e1a, 0x53740d0c, 0x051e5432, 0x82750506, 0x1e11271c, 0x19202019, 0x1a82111e,
0x0101802d, 0x08070915, 0x15091001, 0x8d800101, 0x7526081b, 0x1e040605, 0x74533255, 0x0cb4090d, 0x010d0b0a, 0x0c203220, 0x0c0b010c, 0x460b0701,
0x1f240159, 0x0a0c0607, 0x16830117, 0x17020122, 0x04291782, 0x13270b0c, 0x050b2224, 0x23178301, 0x01213121, 0x06281583, 0x01242006, 0x07094659,
0x2f0a336c, 0x0012000a, 0x0028001c, 0x011e2500, 0x35211517, 0x1723b982, 0x49153303, 0x372a05d4, 0x013b013e, 0x011f1632, 0x51672327, 0x333c0806,
0x3d012335, 0xfe013c31, 0x313c01aa, 0x01aa553d, 0x01304830, 0x090c0108, 0x010c096e, 0x16155508, 0x15151516, 0x1c2b0965, 0x2b1c2a2a, 0x15016509,
0x3030252a, 0x08574025, 0x57080b0b, 0x15231e82, 0x82001615, 0x82052000, 0x01003703, 0x006b01eb, 0x00310027, 0x0043003a, 0x0100004d, 0x2607010e,
0xb1450722, 0x828d8205, 0x82352002, 0x823e200c, 0x82172081, 0x8215201a, 0x2402829a, 0x2605012e, 0x20078227, 0x29138232, 0x34262237, 0x14163236,
0x08873306, 0x30821720, 0x82333621, 0x06330839, 0x231b8001, 0x19401909, 0x311b2309, 0x25010139, 0x3c550c1d, 0x0301150a, 0x03250625, 0x3c0a1501,
0x251d0c55, 0xfe390101, 0x060811a8, 0x0b110f2c, 0x46631f21, 0x77200576, 0x3a080685, 0x211f045e, 0x2c0f110b, 0x6b010806, 0x0c040801, 0x0108040c,
0x0d2aa20a, 0x30250516, 0x13065c03, 0x0606100b, 0x06130b10, 0x2530035c, 0x2a0d1605, 0x0404c9a2, 0x020a6630, 0x18096027, 0x280b2e4d, 0x27601f28,
0x30660a02, 0x06b35204, 0x8001d626, 0x16000600, 0x072fed82, 0x37173717, 0x17070527, 0x33150715, 0x82333735, 0x07273804, 0x55950123, 0x2a161540,
0x15abfe40, 0x2b2b1640, 0x16402b95, 0x828001aa, 0x2a152f13, 0x40162a40, 0x40801540, 0x40d58040, 0xa3560015, 0x00a62e08, 0x00340021, 0x004a0042,
0x01371300, 0x05e26107, 0x2306072b, 0x3327012e, 0x32171614, 0x05374137, 0x17062728, 0x17373423, 0x17823536, 0x27070622, 0x2905e661, 0x27010f06,
0x011e013f, 0x12841415, 0x26343523, 0x08088207, 0x3233368e, 0x011c1516, 0x0b7d1b7a, 0x1b0a0411, 0x24131016, 0x182b0130, 0x0b070a12, 0x17070811,
0x0102890d, 0x11e7082b, 0x262e3c01, 0x31141f1c, 0x0253411c, 0x1f0a1601, 0x25201e32, 0x161e1c20, 0x016c1e19, 0x100c4a07, 0x65011e17, 0x1b86fe1b,
0x0e12097c, 0x070b241d, 0x12243001, 0x05040118, 0x1a161716, 0x07088a0a, 0x2071171b, 0x013c2e1f, 0x101f1601, 0x40540112, 0x1f10292a, 0x55201ecc,
0x1f502e31, 0x25401a1e, 0x106e4628, 0x1e08490c, 0x08678b18, 0x8b01eb25, 0x82001200, 0x8213200f, 0x231522e6, 0xe9e11827, 0x27372309, 0x0d821505,
0x35333527, 0x35330123, 0x24ba8251, 0x402aab30, 0x0800822b, 0x015e2821, 0x40802b76, 0x04400199, 0x86fe8b01, 0x2b10301c, 0x40ab4040, 0x705e2740,
0x2b2b5540, 0x82d5c0fe, 0x0300265e, 0xe0ff0000, 0x275f8501, 0x0029001a, 0x07171300, 0x152c5083, 0x15333533, 0x35331733, 0x01093717, 0x37237083,
0x82371733, 0x23352379, 0x11433327, 0x5e352206, 0x3c668228, 0xab2a402b, 0x71fe1b45, 0x2b6a0401, 0x9b0f162b, 0x2e920496, 0x80409980, 0x5e70012b,
0x34708427, 0x1b45102b, 0xb5fe9001, 0x9b166a2b, 0x2f91d5b0, 0x552b2b80, 0x207b8340, 0x2f7b8204, 0x01c001d5, 0x000800ab, 0x002b0023, 0x0100002f,
0x2407ce42, 0x17372707, 0x2d898337, 0x1f16013f, 0x33011e01, 0x27262215, 0x9a821707, 0x17273a08, 0x11211123, 0x01211127, 0x01173523, 0x1414101d,
0x5014141f, 0x1d59077f, 0x0e5e2421, 0x0c120b14, 0x341e1a28, 0x24260b11, 0xfe2bd226, 0x6b012beb, 0x2b2bc0fe, 0x1e151201, 0x08028215, 0x2419fb23,
0x3d0c9212, 0x01022854, 0x17141d11, 0x36141824, 0x246d8824, 0xfeab0191, 0x3a0109e8, 0x09452afe, 0x054f4700, 0x9601de26, 0x22001400, 0x00259782,
0x23010e25, 0x05b87521, 0x0633373a, 0x17011e07, 0x27173716, 0x012e3736, 0x16140622, 0x17373617, 0x012e2737, 0x08059043, 0x01ab0128, 0xd5fe1218,
0x12181812, 0x01010a76, 0x13193b4f, 0x010e0f34, 0x36523601, 0x171c2936, 0x17931e42, 0x1d2e1e1e, 0x6418151d, 0x01270dd1, 0x17823309, 0x8236291c,
0x01012826, 0x401e420e, 0x832e1d01, 0x07a34127, 0x8301ea21, 0x850e208f, 0x0e01228f, 0x83768701, 0x4c052084, 0x332d0548, 0x37363221, 0x21152735,
0x37363311, 0x07695b33, 0x824b0121, 0x20788454, 0x21858342, 0x7788e1fe, 0xd5fe2b28, 0x8008026c, 0x69831d17, 0x83950121, 0x094147a1, 0xc5882920,
0x962b6b27, 0x15162b01, 0x20b48301, 0x0a23492e, 0x9601ab2a, 0x11000d00, 0x18001500, 0x10616e18, 0x22059c50, 0x1835013b, 0x210e626e, 0x00822ad6,
0x0d626e18, 0x2a2bd525, 0x4575756b, 0x03220a97, 0x53820700, 0x00001b23, 0x21458537, 0x6e183733, 0x03200cbd, 0x1522de82, 0x4782d533, 0xab562a22,
0x250a0962, 0x9500ff2b, 0x4c82406b, 0x12189522, 0x2506cf6b, 0x0100ff00, 0x6e186b56, 0x6f180dbb, 0x1525130f, 0x37233523, 0x0f6f1817, 0x408b2410,
0x8d555535, 0x40aa25ac, 0x95555540, 0x2342ae82, 0x05034106, 0x6f181320, 0x1721180f, 0x185b8323, 0x2e290f6f, 0x404055ab, 0x00020000, 0x01eaff00,
0x82ab01b6, 0x32260865, 0x33370000, 0x26252315, 0x3507012b, 0x012e3637, 0x23071506, 0x012e3507, 0x011d0622, 0x012e2707, 0x011f010e, 0x09870607,
0x17011e37, 0x013f3633, 0x01abab8c, 0x040a0619, 0x0c010b45, 0x05060d12, 0x08068216, 0x0e120c46, 0x0b120d02, 0x05081101, 0x10021803, 0x39020811,
0x8b0a1003, 0x2b69080d, 0x2406de40, 0x0d09be19, 0x64090b01, 0x0c097703, 0x0888090c, 0x020b0974, 0x0481090e, 0x09530202, 0x0a0f0509, 0x010b0ac7,
0x00590901, 0x02200082, 0xf7249f82, 0x8a01c201, 0x3d2b9f82, 0x37250000, 0x27370717, 0x85012f26, 0x3c93868c, 0x06222627, 0x0f011f14, 0x06070602,
0x1716011f, 0x34353632, 0x37273127, 0x23061617, 0x08c5820f, 0x16371779, 0x3436013f, 0x2e781c01, 0x04421779, 0x0f021805, 0x17020911, 0x11100432,
0x48240405, 0x070d1107, 0x0929264f, 0x08010207, 0x090e050a, 0x1a0c010c, 0x051e262a, 0x0107034a, 0x620a0c89, 0x2e792509, 0x0441db78, 0x08095c02,
0x57080f04, 0x07050867, 0x474c0810, 0x07110d07, 0x0c1c0f4f, 0x160a080c, 0x0c010b1a, 0x25030309, 0x22270315, 0x09070316, 0x09010b17, 0x411a0a62,
0x7c2206bb, 0x0982ac01, 0x39002122, 0x28056141, 0x0f222737, 0x27071701, 0x23038307, 0x011d010e, 0x2d064a41, 0x35373632, 0x26372634, 0x27010f06,
0x67412726, 0x36023f06, 0x37173337, 0xab952636, 0x0544c4ab, 0x150d0703, 0x15172019, 0x0a080a16, 0x8b0c1301, 0x6882080d, 0x05013c08, 0x020e0903,
0x05030517, 0x0e021a09, 0x1a020a12, 0x070c0907, 0x0a021e40, 0x23d5402b, 0x05330703, 0x055b0f6a, 0x10030457, 0x120d5d0a, 0x08090101, 0x0124070a,
0x0901f519, 0x82018409, 0x08822d00, 0x090e040a, 0x0106217e, 0x0e09bb23, 0x85061342, 0x852720b3, 0x841320b1, 0x08034293, 0x2720b390, 0xd420a085,
0x15238682, 0x82180a10, 0x01092384, 0xa28b521a, 0x220d0622, 0x01218e83, 0x237482c0, 0x7a01027b, 0x24207285, 0x3324928b, 0xc20a1901, 0x51087f88,
0x00960194, 0x001c0018, 0x07353300, 0x012f2223, 0x33373637, 0x011d011e, 0x020f0614, 0x22061415, 0x35231326, 0x0444d333, 0x680f070a, 0x0d8a0d09,
0x69080a13, 0x0c130c1a, 0xd5aaaac0, 0x59110624, 0x12010109, 0x100a5d0d, 0x5f032f03, 0x010c0c09, 0x4f42405e, 0x00002506, 0x6901d601, 0x13285b85,
0x34352733, 0x1617013f, 0x2d05174c, 0x022f2622, 0x34012e23, 0x33350536, 0x46964015, 0x4400012a, 0x10070905, 0x8b0c0969, 0x6a287483, 0x120c0119,
0xababc00c, 0x88063741, 0x150129b7, 0x1f323337, 0x07060701, 0x3d205282, 0x3f2c5482, 0x36343502, 0x33031632, 0x2b012315, 0x06214382, 0x26b88a10,
0xaabf0c12, 0x938001aa, 0xa2fe2273, 0x2f5b8440, 0x01f601e2, 0x0011009e, 0x2500001b, 0x3e35012e, 0x0aacbd18, 0x06143e08, 0x27012e07, 0x14070635,
0x20011716, 0x41016b6a, 0x12321c33, 0x331c3212, 0x8a6b0141, 0x1401756a, 0x156a6b01, 0x32397b60, 0x15180142, 0x42011815, 0x757b3b32, 0x0c49885c,
0x7b3a271d, 0x05b7445c, 0xa0295f83, 0x1e000900, 0x00003000, 0x23508205, 0x15373635, 0x2305bd75, 0x2223012e, 0x0683c784, 0x1f011e24, 0x17821301,
0x86887484, 0x83000121, 0x01143877, 0x5c4c8c75, 0x21290103, 0x28092a1a, 0x21192a0a, 0x5a010129, 0x8360024e, 0x896a2088, 0x1c023b98, 0x273a7b5c,
0x88490c1d, 0x2e644405, 0x171c2a20, 0x202a1c17, 0x0244642e, 0x9c824d01, 0x5d7b3925, 0x863b7a5c, 0x820020ac, 0x00062c00, 0x01d5ff00, 0x00ab01d6,
0x4a28001f, 0x4c2606cd, 0x33010000, 0xa2832335, 0x0e828a88, 0x010e3323, 0x20b58707, 0x08b24a05, 0xd64a0890, 0x27088808, 0x56169501, 0x40032503,
0x06820082, 0x0416563c, 0x7f030438, 0x037f5353, 0xbcfe3804, 0x130c0c09, 0x0a210c0c, 0x0b140b0b, 0x068c760b, 0x840a2121, 0x6b012e1b, 0x65034040,
0x01534143, 0x43415301, 0x22478265, 0x76627202, 0x62220588, 0x3683be72, 0x800b1422, 0x40200685, 0x1486068c, 0x2d069746, 0x009601a0, 0x00140008,
0x0025001d, 0x0f501300, 0x35032b07, 0x013e3723, 0x011f1632, 0x08841523, 0x2206142c, 0x15330726, 0x35231523, 0xb462a023, 0x400e2e05, 0x1e150537,
0x40370416, 0x24180175, 0x37028218, 0x40208016, 0x18950120, 0x24191924, 0x8056fe18, 0x10100da2, 0xd580a20d, 0x2e232f85, 0x47404055, 0xc02009f3,
0x1f227784, 0x75942800, 0x6e827c88, 0x95881520, 0x7f87788f, 0x86804021, 0x867b9019, 0x80802381, 0x9585aa01, 0xaa080751, 0x331721f7, 0x8f05ec46,
0x22f7887e, 0xa220400a, 0x000425f8, 0x01eaff00, 0x16247785, 0x27001f00, 0xd75ef98a, 0x82152006, 0x3e3524ee, 0x513e1701, 0x71410698, 0x18122810,
0x20562001, 0x41c71801, 0x6a2a1371, 0x75121801, 0x1275a0a0, 0x71416a18, 0x9077b20b, 0x8d778ff1, 0x857895f1, 0x01ab2677, 0x00080096, 0x20ef8216,
0x20ef982d, 0x07764237, 0x410d0641, 0x7d87086f, 0xd685f220, 0x87400e21, 0x07ef4110, 0x6b208089, 0x8905e641, 0x00002310, 0x00820004, 0x01c00136,
0x00030080, 0x00170013, 0x25000023, 0x25333523, 0x21333634, 0x340a6657, 0x3b152313, 0x32333502, 0x34013d36, 0x01232726, 0xfe2a2a55, 0x056360eb,
0xfe121933, 0x951813d6, 0x2b2b2a2a, 0x1919122a, 0x2bd55512, 0xf7451855, 0x00012609, 0x121856d6, 0x8493822b, 0xd5ff226b, 0x050f5101, 0x2f002b27,
0x00003b00, 0x216b8201, 0xac191513, 0x3b21163b, 0x056e7b01, 0x15230727, 0x15011e33, 0x2d838503, 0x3537013e, 0x012b012e, 0x2b2b4001, 0xf4189595,
0x56200970, 0x08034518, 0x09165625, 0x822b800c, 0x2876838e, 0x55121801, 0xfe2b0001, 0x3c7618ea, 0x822a200a, 0x04e51814, 0x4001230c, 0x138255d5,
0x97462f82, 0xeaff3606, 0x9601d101, 0x1b000d00, 0x3f250000, 0x23370702, 0x0737020f, 0x08028421, 0x33023f3d, 0x020f3707, 0x0d0c0133, 0x24241f23,
0x202438b0, 0x75011c26, 0xb7fe3323, 0x2313251f, 0x24288635, 0xc6182411, 0x760d2e6c, 0x0cd0860e, 0x81650e77, 0x440e726c, 0x0f95cc0c, 0x6c540c43,
0xeb28082b, 0x1500ab01, 0x1c001900, 0x0f216d18, 0x26063008, 0x37362627, 0x1507013e, 0x15253533, 0x543feb37, 0x120f0f02, 0x6b2b6b0c, 0x27763411,
0x13321125, 0xfeab3d2e, 0x6b0196d5, 0x18405402, 0x8211132e, 0x110d2119, 0x33241782, 0x100e2876, 0xc029f882, 0x03009696, 0xd5ff0000, 0x22638501,
0x97240021, 0x0bf67d63, 0x6b952720, 0x40400326, 0xeb40402b, 0x1c846e96, 0x80402b22, 0xef4f7282, 0x016b2206, 0x2e098240, 0x01000005, 0x17073307,
0x6b000137, 0x826bd6d6, 0x2a6b2414, 0x42006b6b, 0x8022066f, 0x09827601, 0x0c000725, 0x82000f00, 0x21152a27, 0x23172735, 0x37171507, 0x22338235,
0x82800001, 0x72393502, 0xb9808047, 0x75013972, 0x44202080, 0x80205539, 0x392b2080, 0x00395982, 0xd601eaff, 0x2c009601, 0x00004c00, 0x07061425,
0x2b061415, 0x012e3501, 0x240a8222, 0x3d262223, 0x05bd6901, 0x34352324, 0x4c7d3b36, 0x011d2208, 0x218f821e, 0x0c593632, 0x34352a05, 0x1d062226,
0x1e152301, 0x71408301, 0x3a080605, 0x1c24d501, 0x01511218, 0x01203121, 0x06181251, 0x19202019, 0x41121806, 0x283a2805, 0x18124105, 0x206a241c,
0x0d12120d, 0x1c126b20, 0x231d6b12, 0x0b2e1d23, 0x0b324032, 0x841da02e, 0x2330871f, 0x32200151, 0x1c214184, 0x82508324, 0x833d203f, 0x863b8530,
0x203d8332, 0x086f4500, 0x077b7518, 0x2e002623, 0x7d751800, 0x2e03250c, 0x013e2701, 0x27058056, 0x23152327, 0x16323335, 0x0725ef82, 0x27231517,
0x21cd8533, 0x57180001, 0x5b260a54, 0x02026148, 0x05844861, 0x271e4330, 0x11242146, 0x412a2911, 0x0f100e1f, 0x55181f0f, 0x82200d96, 0x2d822787,
0xbc458e2d, 0x1a131b1e, 0x64024d07, 0x460f1a0f, 0x97830987, 0x15000d28, 0x00001900, 0x7c82013f, 0x07278082, 0x21113315, 0x84112515, 0x3534088c,
0x33152313, 0x954c55e2, 0xffab552b, 0xd52a0100, 0x805555d5, 0x2b55c080, 0x37554c95, 0xd5ab0001, 0xd555abfe, 0x8000ffd5, 0x00000900, 0xc001c0ff,
0x0b009601, 0x292c4f82, 0x31002d00, 0x39003500, 0x41003d00, 0x2e24f182, 0x07062201, 0x3226e882, 0x010f1716, 0x0a862226, 0x2d06fd43, 0x3d012e21,
0x3b363401, 0x15333501, 0x185a3507, 0x20078206, 0x066b5c07, 0x07823720, 0x13af0137, 0x132e312e, 0x3a371611, 0x11241737, 0x11173c18, 0x2427240f,
0x09884408, 0xc02bd528, 0x752a752b, 0x3d79802b, 0x57012707, 0x12131312, 0x00821612, 0x1611232b, 0x0f0f1116, 0x1219950f, 0x055a4e55, 0x19125526,
0x2b6b5555, 0x6a200084, 0xc3530584, 0x01d62808, 0x001d006b, 0x562a0021, 0x0e2506cf, 0x14011d01, 0x07245616, 0x07a45a18, 0x2335332a, 0x27263435,
0x21152105, 0x2309e46e, 0x17353315, 0x8207cd45, 0x12182768, 0x122aeb2b, 0x00821519, 0x12192008, 0x4001c0fe, 0x24cbc0fe, 0x30483030, 0x8b2ad930,
0x24181812, 0x6b011818, 0xeb121801, 0x82161812, 0x12182600, 0x2b6b2a16, 0x26a08215, 0x01cbeb2b, 0x82304930, 0x6b1f2302, 0xbb470b6b, 0x00082108,
0x012e0082, 0x009901eb, 0x00250003, 0x0039002f, 0x2169003e, 0x33003b05, 0x023b3523, 0x33352315, 0x07060727, 0x012e010e, 0x1e17013e, 0x27371701,
0x0b832726, 0x82011e21, 0x0f230814, 0x010e2601, 0x3736011e, 0x36372636, 0x010e012e, 0x36161716, 0x16062617, 0x17073736, 0x2315013f, 0x82253315,
0x56eb3b03, 0x56206056, 0x03361e05, 0x31331007, 0x19331e0c, 0x35040907, 0x170c0d0d, 0x0f821e0d, 0x030f3508, 0x0b7c050b, 0x1707101b, 0x0506091a,
0x17070768, 0x0d060e1b, 0x070f1a0c, 0xa70a0c07, 0x0ba00b8b, 0x80fe5656, 0x2b2b5656, 0x0f0d822b, 0x1d0b180d, 0x0e0b3134, 0x0d243482, 0x0f070435,
0x06245085, 0x0858030a, 0x0f284082, 0x1a0c0c06, 0x111a0c83, 0x092d4482, 0x04660606, 0x400d080d, 0x0f262f20, 0x203d82c6, 0x084f5c00, 0xa9645620,
0x0d9d7608, 0x63353321, 0x27200817, 0x2320fb82, 0x25200382, 0x37200382, 0x0f830b86, 0x17200383, 0x01241386, 0x562a5615, 0x2a250282, 0x012a2b2b,
0x8200822a, 0x82028207, 0x552a2108, 0x56201783, 0x2a240983, 0x552b2bab, 0x04820884, 0x5660aa20, 0x00082105, 0x20059344, 0x2887846b, 0x00190015,
0x0023001f, 0x069f7329, 0x33228390, 0x98822715, 0x23210383, 0x05856d15, 0x23208082, 0x01248583, 0x402a402b, 0x2b210282, 0x054d5840, 0x552a5527,
0x55804040, 0x8271822a, 0x821a8308, 0x2b552874, 0x6a404056, 0x842b2b56, 0x070f6402, 0x6b01c024, 0x67580000, 0x0c6d7c06, 0xef429520, 0x42152007,
0x002207c6, 0x00820002, 0x01d6012a, 0x00140060, 0x25000026, 0x13a3a419, 0x906f0120, 0x05f14706, 0x012b2508, 0xd5013335, 0x80402060, 0x01241b80,
0x401b2401, 0x00ff241c, 0x75555595, 0x0e12120e, 0x80605535, 0x40c04040, 0xc0201782, 0x012a1e84, 0x4040c01b, 0x0e800e12, 0x4f474012, 0x01c02a09,
0x00130096, 0x1300001b, 0x83708223, 0x011e2903, 0x35331517, 0x013d013e, 0x3339fd82, 0x0e113315, 0x2b2beb01, 0x2d012b2a, 0x2d233522, 0x35366a2a,
0x00013d2d, 0x2f008295, 0xc0032f23, 0x232f03c0, 0xaaab5595, 0x3601aa01, 0x7341e983, 0x00963305, 0x0020001c, 0x01000024, 0x26070622, 0x14010e27,
0x8b431716, 0x05074607, 0x2e070628, 0x33070301, 0x03823327, 0x1f00012f, 0x2216072d, 0x1f2b2b1f, 0x5636561a, 0x2808831a, 0x2d071622, 0x11621185,
0x2b03824c, 0x1e259501, 0x2a010118, 0x15012a40, 0x08840082, 0x1e180126, 0xaa00ff25, 0xcb830082, 0xeb410520, 0x00963906, 0x00050002, 0x00110008,
0x13000017, 0x010f3715, 0x3f172717, 0x16152301, 0x31087582, 0x35133437, 0x33153723, 0x34614cf4, 0x2625d050, 0x1312aa5f, 0x90024e3b, 0x01406a40,
0x5b264b95, 0x4c061b34, 0x06aac94c, 0x133b4e02, 0xc08068fe, 0x4b180080, 0x19200c8f, 0x7b49cd82, 0x34112f0a, 0x27133336, 0x0f012f37, 0x37071701,
0xd3449501, 0x14e12b09, 0x23235944, 0x4c144459, 0x86498001, 0x05924905, 0x57d5fe2b, 0x5252073b, 0x2e573a08, 0x20008200, 0x37038203, 0x01c00100,
0x00090080, 0x001d0019, 0x07272500, 0x013f2737, 0x3707011f, 0x1527678e, 0x01112111, 0x864c4c4c, 0x895d2058, 0x2a012c6b, 0x572e2e55, 0x5252083a,
0x8bd43b07, 0xfe2b256c, 0x002a01d6, 0x20051741, 0x286382eb, 0x0020000b, 0x00280024, 0x0d97662c, 0x3221012e, 0x26151716, 0x15230706, 0x23170633,
0x24055555, 0x35331517, 0x20038233, 0x24038205, 0x402b8001, 0x38028240, 0x2b01d5fe, 0x19011812, 0x174f142f, 0x12c20303, 0x80121818, 0xd5fe802b,
0x06976680, 0x12192b31, 0x0d0a0497, 0x18151556, 0x12000112, 0x82565519, 0x56802300, 0x83840056, 0xe101f422, 0x9b66838e, 0x2583a10a, 0x2e2d1e4a,
0x02822e1e, 0x2d1e2d24, 0x8896defe, 0x200c9b66, 0x348e9840, 0x00000300, 0xd801e8ff, 0x13009601, 0x30002700, 0x23250000, 0x20018235, 0x065a5a15,
0x3323f382, 0x84073335, 0x33352111, 0xb7421982, 0x15232305, 0x775e2733, 0x16322805, 0x962bd701, 0x822a972a, 0x2b962d02, 0x6c2a6b56, 0x2a6c2b2b,
0x6b2a2a6b, 0x20056f59, 0x211986d4, 0x1383962b, 0x15221d85, 0x1c830c09, 0x27084f42, 0x0007002b, 0x13000016, 0x61827382, 0x17013b2c, 0x23153337,
0x23073735, 0x07821727, 0x2b3ed13e, 0x344fa63d, 0x052b3735, 0x04371d37, 0xa10c012a, 0x8b8b1fa1, 0x905b35c0, 0xc0355b90, 0x20083b42, 0xff7618ab,
0x13002108, 0x3329be82, 0x3b161411, 0x35363201, 0x47b68311, 0x20080787, 0x18166bc0, 0x1812d612, 0x2b806b16, 0x2b2b552b, 0x2b158001, 0x1912ebfe,
0x15011219, 0xc06b152b, 0x214f83c0, 0x00820004, 0x4f890120, 0x9b821d20, 0x11225192, 0x1a423723, 0x25558906, 0x2bd6d6ab, 0x568e2a2b, 0xebfe4023,
0x835982ea, 0x0100215a, 0xe8375b84, 0x21008001, 0x23210000, 0x35272622, 0x2f220607, 0x3f342601, 0x821e3301, 0x333726af, 0x0f141617, 0x39138301,
0x01010e15, 0x0c09aa55, 0x11071b01, 0x06063d06, 0x2401237e, 0x23012436, 0x0d82067e, 0x1b071134, 0x090c0c01, 0x060616aa, 0x0711073b, 0x1818127d,
0x08827d12, 0x06063c26, 0x0c09a815, 0x6b886684, 0x6b932220, 0x013e1722, 0x05256c9c, 0x211a1a21, 0x256d9505, 0x0f0f2f1d, 0x6f8e1d2f, 0x2205b345,
0x4c3401d0, 0x27210693, 0x21018207, 0x01831737, 0x15270724, 0x0f843717, 0x0f840720, 0x82400121, 0x1e312200, 0x2305824f, 0x311e4f40, 0x10820989,
0x1a8cb720, 0x1b8c8020, 0x44010021, 0x282b08db, 0x22010000, 0x26070607, 0x51232627, 0x353405c1, 0x3634012e, 0x011f1637, 0x37113311, 0x06011e36,
0x15230607, 0x2008e482, 0x5501012e, 0x0a0b1e22, 0x221e0b0a, 0x01014837, 0x30253748, 0x19212530, 0x1b062a06, 0x1a023244, 0x27158519, 0x06119501,
0x11060a0a, 0x363f1f82, 0x012b0248, 0x01304930, 0xfe051701, 0x0563019d, 0x44350219, 0x022b171a, 0x48373648, 0x46000400, 0x6c2b059b, 0x1f001400,
0x3f003400, 0x82010000, 0x08937581, 0x013e2328, 0x37173233, 0xe7580726, 0x35272405, 0x8225013e, 0x251f83a2, 0x2223010e, 0x7f450727, 0x07262105,
0x2408af83, 0x15171632, 0x0001010e, 0x2d02795a, 0x30240523, 0x1b052430, 0x313a2545, 0x12c83d1a, 0x18231818, 0x01180202, 0x20178c16, 0x202a8348,
0x3a1c8828, 0x4960026b, 0x01032f23, 0x01304830, 0x1a1e1a1a, 0x18018026, 0x11151824, 0x82151108, 0x841487c3, 0x887d2024, 0x00230819, 0xff000002,
0x019901fd, 0x00250080, 0x2500002e, 0x34350722, 0x07222726, 0x32152326, 0x33011d16, 0x85363435, 0x230f8299, 0x011e3736, 0x53053875, 0x01310714,
0x24141740, 0x1312181c, 0x2b0c0918, 0x010c120c, 0x290b8201, 0x44180c21, 0x0c170537, 0x174a1322, 0x0cab3e05, 0x01241ba1, 0x0c2b1111, 0x09d5d509,
0xeb090c0c, 0x0f2b1812, 0x2f051a0e, 0x100e1c44, 0x08124a80, 0xed248b84, 0x9301d501, 0x08057b47, 0x37360126, 0x27220627, 0x11171607, 0x36170706,
0x26371732, 0x1611012f, 0x26113732, 0x2b800107, 0xcc5e1029, 0x2b29105e, 0x5f220882, 0x08825fca, 0x562ad52a, 0x0155552a, 0x27120a4f, 0x12230082,
0x87e2fe0a, 0x01092909, 0xfe07070d, 0x000e0ef2, 0x220a934d, 0x82390030, 0x010e29ef, 0x27012e07, 0x37363736, 0x0c820682, 0x4a1f1621, 0x35230859,
0x4c262726, 0x062206d0, 0x1a540607, 0x08185406, 0x01ab0130, 0x231b1b24, 0x11100502, 0x2c3c0204, 0x09823c2d, 0x3c230533, 0x3c452017, 0x1304040c,
0x2302050e, 0x02241a1b, 0x251e8406, 0x013c2d2d, 0x0e41abfe, 0x1b552d05, 0x24020124, 0x3731341a, 0x023c2c3a, 0x31233a82, 0x820a0f2f, 0x1f162835,
0x370e0c23, 0x822b2935, 0x241f8935, 0x152d3c01, 0x052e7619, 0x26062745, 0x008001ab, 0x8223001f, 0x231522bb, 0x058e4135, 0x17010e22, 0x20054d71,
0x05de5533, 0x142f0c82, 0x21170706, 0xab012115, 0x08353196, 0x82314d0a, 0x32073605, 0x193f9625, 0x445a021b, 0x1b025a44, 0xaafe3f19, 0x2b6b5601,
0x821c852d, 0x32252705, 0x172b2d07, 0x1d82223c, 0x222b2382, 0x2b40173c, 0x00010000, 0x82ebff00, 0x009522eb, 0x2e71821b, 0x27373623, 0x26230706,
0x17160727, 0x82331523, 0x37363763, 0x37171633, 0x01332726, 0x23042bab, 0xaa052627, 0x24282605, 0x0c8c2b04, 0x545bd52b, 0x64645b10, 0x5b54105b,
0x840a892a, 0x01f0265b, 0x009601d6, 0x82688210, 0x170736cd, 0x27072707, 0x17372737, 0x01352337, 0x31cd2ad5, 0x1e71311e, 0x25058271, 0x95018dcd,
0x0f8a8dd5, 0x82002a21, 0x269b8232, 0x01c901db, 0x822d0080, 0x17072c9b, 0x3d262223, 0x27012e01, 0x42260722, 0x332510c0, 0x32013e35, 0x05315916,
0x37170731, 0x1b1e7a01, 0x01181222, 0x12191b24, 0x42132f13, 0x2a3508bf, 0x0c120c01, 0x22243001, 0x7a4f1e1b, 0x12191c1e, 0x01241bd5, 0x42008211,
0xc24208bc, 0x25d52305, 0x22820130, 0x28054f42, 0x01a001e0, 0x00180080, 0x23928224, 0x2335013e, 0x2d055342, 0x17161423, 0x1e17010e, 0x013e3701,
0x257c2627, 0x051c4f05, 0x224d0124, 0xd8702a26, 0x262a2805, 0x1f1d3522, 0x82387322, 0x6d132105, 0x0bf5b018, 0x43150023, 0x250f8528, 0x22154328,
0x26843774, 0xd8213722, 0x4a0ac179, 0x80270baf, 0x41003600, 0x82250000, 0x012e256b, 0x35070627, 0x251e0741, 0x06171606, 0xae4f1507, 0x26353605,
0x15163227, 0x26220614, 0x01363437, 0x010a178b, 0x17253001, 0x161c4113, 0x19170a3c, 0x1440161c, 0x1c164015, 0x1419124f, 0x1801142e, 0x14421728,
0x01013025, 0x2d41610b, 0x14ab3715, 0x060d1742, 0x0b1c012a, 0x2a011c0b, 0x1219a506, 0x2e28282e, 0x4b781912, 0x018b2808, 0x00080096, 0x662c0023,
0x173a0ac9, 0x011d1632, 0x34350714, 0x22232627, 0x33160706, 0x22071537, 0x013d2627, 0x5c183634, 0x013a083c, 0x24241b00, 0x1b242436, 0x37385734,
0x311c0a12, 0x15272b05, 0x38272c15, 0x6c433457, 0x95012405, 0x82243724, 0x2d953602, 0x18247b20, 0x040d1e2f, 0x02111116, 0x18110138, 0x2d207b24,
0x097b442b, 0x4f460420, 0x00082208, 0x21878214, 0x70180035, 0xb541095f, 0x05c14105, 0x95831320, 0x84823620, 0x06222622, 0x95829e82, 0x95823520,
0x13013e22, 0x27080168, 0x12120e00, 0x0e12121c, 0x350be950, 0x432b2917, 0x25464350, 0x1f201515, 0x17152604, 0x1e2e1e1e, 0x2683c01e, 0xd5121c22,
0x0aee6d18, 0x15d8fe36, 0x1c13250f, 0x2323195e, 0x221a5e19, 0x0d022b02, 0x0001120c, 0x2d0dfb67, 0xd6010000, 0x08005601, 0x1a001100, 0xa7822500,
0x34013e22, 0x14218d82, 0xb5f21816, 0x22172908, 0x33150706, 0x27012e35, 0x26250885, 0x01263736, 0x20758560, 0x05314189, 0x5121bb30, 0x5103ea03,
0x04672ac1, 0x20140195, 0x6386c01d, 0x41011421, 0x41300530, 0x30301d1d, 0x26161d1d, 0x0e303525, 0x00061329, 0x08fb5d18, 0x2605ff51, 0x001d0014,
0x52350029, 0x07200d01, 0x6a073050, 0x1721084e, 0x2a848215, 0x3233013e, 0x17010e17, 0x83352722, 0x8216200a, 0x0c08520b, 0x110e2508, 0x17231818,
0x1d156e17, 0x1c1c2b1d, 0x0e392716, 0x111a4113, 0x34101917, 0x40030809, 0x1030121b, 0x95015414, 0x0a178818, 0x2e838520, 0x22182325, 0x832b1c01,
0x50c23232, 0x1226380c, 0x200e0512, 0x17570163, 0x300c0c16, 0x06cf4a3c, 0x01ab3d08, 0x00240096, 0x003a002f, 0x36343700, 0x2e272637, 0x37263501,
0x3217013e, 0x06141516, 0x3e17010f, 0x16333501, 0x27231707, 0x2223010e, 0x32172627, 0x06072737, 0x1e171415, 0x17140301, 0x6e082882, 0x22263435,
0x30215e06, 0x0407081c, 0x270e1d01, 0x1a392918, 0x0a5c1e20, 0x23012f09, 0x151c403c, 0x263c1d39, 0x232a8624, 0x162f0964, 0x221c1b0b, 0x1d0d1323,
0x1d601a2e, 0x12232034, 0x2f0b150b, 0x010c0e1c, 0x2c192433, 0x136f1717, 0x304a1828, 0x13132046, 0x20162220, 0x2623067a, 0x0c0a1223, 0x281c1c01,
0x111a0d17, 0x001f1a13, 0x55000200, 0x11250707, 0x00001700, 0x08a38325, 0x03012b42, 0x22230323, 0x36133726, 0x1b031732, 0x07270701, 0x1305e601,
0x128e350c, 0x140f368e, 0x210acd09, 0x9a9ab308, 0x428c8b0f, 0x100c0908, 0x00ff0001, 0x5c01101b, 0x48fe0f0f, 0xecfe1401, 0x0039390f, 0x0ebfa618,
0x25001522, 0x2806677d, 0x35333533, 0x1d062207, 0x06cf6d01, 0x2337352a, 0x1507010e, 0x013b011e, 0x2a054a4f, 0x2a181255, 0x191280d6, 0x6c2bd52b,
0x01370560, 0x12ab1218, 0x95011818, 0xd6d61218, 0x1219552a, 0x802bd5d5, 0x862babab, 0x421c8317, 0x08230c27, 0x83001100, 0xa728206f, 0x15072271,
0x21749737, 0x769b5592, 0x40803f22, 0xd528e784, 0x9c01d801, 0x0f000a00, 0x2a267782, 0x01050000, 0xe0821707, 0x21150737, 0x34352517, 0x33071737,
0x2622010e, 0x35373603, 0x1632013e, 0x08eb8217, 0x27011d20, 0x27012e35, 0xd8010722, 0x641b5bfe, 0x42012b11, 0x08d8fe3b, 0x015683bb, 0x25182418,
0x06831311, 0x30012108, 0x3d012a3a, 0x0a17192d, 0x651ba501, 0x2a802521, 0x95653a16, 0x40bb1214, 0x01181812, 0x07060b65, 0x122b0782, 0x334d0f07,
0x2e3b2b66, 0x860c013c, 0x01c02e8b, 0x00050096, 0x00220019, 0x3b00002e, 0x267b8301, 0x35211537, 0x8d343537, 0x057b4881, 0x27331522, 0x2505fa4c,
0x15333533, 0x8084d533, 0x80feea25, 0x8a303a2b, 0x3d2d2383, 0xec51d601, 0x822b2005, 0x163d2773, 0x33802a16, 0x7f880f4d, 0x82808021, 0x3c01247e,
0x846b952e, 0x20879024, 0x2887a52c, 0x15073315, 0x37233533, 0x25859a35, 0x804545ab, 0x849c4545, 0x392bc026, 0x313a2a31, 0x2b08e745, 0x009601c0,
0x001d0014, 0x13000021, 0x4d05a479, 0x3438059a, 0x15012b26, 0x07350727, 0x33161411, 0x11213521, 0x35231505, 0x011812c0, 0x3407fc58, 0x952b2b6a,
0x00011219, 0x2a0100ff, 0x18950180, 0x1200ff12, 0x30108319, 0x206a1812, 0xfe556a20, 0x2a1812d5, 0x2b802b01, 0x206b902b, 0x206b9f29, 0x08f55217,
0x95333521, 0x2bd52673, 0x2b2b2a2a, 0x2177992b, 0x21832b55, 0x830d135d, 0x237ba0e7, 0x1737011f, 0x9507f548, 0x1ecc237b, 0x00821f1e, 0x00831e20,
0x59208099, 0x28851f84, 0x02002608, 0xeaff0000, 0x9601ab01, 0x20001400, 0x21050000, 0x11272622, 0x013b013e, 0x35173715, 0x17163233, 0x27010e11,
0x21018237, 0x7b822707, 0x01371725, 0x4100ff80, 0x1523056b, 0x84803536, 0x84342009, 0x2a04854f, 0x01121815, 0x95181256, 0x64952020, 0x2e2005b6,
0x6a851782, 0x001e1e22, 0x20081758, 0x2d6f82ec, 0x001b0017, 0x002a0025, 0x16320100, 0x6a82011d, 0x15071522, 0x370bb676, 0x23351733, 0x0f221715,
0x36371701, 0x0f26012f, 0x37331501, 0x18122b01, 0xee265e82, 0x18181292, 0x02825612, 0x18ec5621, 0x820d90d3, 0x192b2375, 0x0383ea12, 0x2e075678,
0x2b160383, 0x1c080815, 0x2c812503, 0x45070081, 0x25210837, 0x05a95700, 0x48003f24, 0x6e185100, 0x152408a5, 0x16150714, 0x2107ce6f, 0x09841415,
0x26353729, 0x3634013d, 0x183e1733, 0x240c91ba, 0x23153307, 0x25038235, 0x012e3305, 0xd66f2335, 0x08165708, 0x55012308, 0x02025440, 0x01173747,
0x0a15090c, 0x0a0da80d, 0x010c0915, 0x1a535817, 0x2d264015, 0x3c01013c, 0x05832e2d, 0x822b4321, 0xff200800, 0x1815ad00, 0x130d2080, 0x12121c12,
0x12120eb2, 0x0112131b, 0x405402ab, 0x41095239, 0x0926141b, 0x0f44e118, 0x2a221e25, 0x872e3c01, 0x2b942846, 0x14556bab, 0x18aa1f37, 0x210ed664,
0xab480900, 0x000f3408, 0x00230013, 0x002b0027, 0x0047003b, 0x00630057, 0x48231300, 0x17210598, 0x057c5c33, 0x45052c73, 0x13830dd7, 0xe7823520,
0x2b821120, 0x1e150723, 0x242b8301, 0x2634013d, 0x0a7e4407, 0x0e230723, 0xc6b51801, 0x35372507, 0x010f012e, 0x27079a4b, 0x6bc00717, 0x12181812,
0x01210482, 0x21068201, 0x0987eb6b, 0x6b201584, 0x12210082, 0x83198418, 0x152b220f, 0x8302822b, 0x2d318722, 0x1e1e0f1a, 0x101f1f10, 0x1e0f1e1e,
0x47899501, 0x6a181224, 0x50839515, 0x12274684, 0x15157f18, 0x8c2a0116, 0x204a831f, 0x20238b2b, 0x8248877d, 0x0ae7464b, 0x0a000228, 0x1e001a00,
0x56180000, 0x37200a19, 0x0f3a6218, 0x2111212e, 0x3d2b2cd4, 0x72152965, 0x99652915, 0x21069067, 0xda821256, 0x01aafe2e, 0x74739c56, 0x3700ffa5,
0x55000137, 0x4305f642, 0xfe230506, 0x42560180, 0xd52f06f3, 0xa001c001, 0x0c000300, 0x27001c00, 0x82370000, 0x49372050, 0x143f0801, 0x1e152306,
0x34331501, 0x22353736, 0x15013d26, 0x17233523, 0x17372707, 0x80014007, 0x4ac080fe, 0x5925059f, 0x18121218, 0x2b0483d6, 0x16337820, 0x33165b5b,
0xab00ffd5, 0x2405f04d, 0x5519122b, 0x2c1a8301, 0x12195501, 0x344a6aaa, 0x175b5a16, 0x237b8534, 0xeb010000, 0x0a975418, 0x15267b82, 0x21350521,
0x83830315, 0x2315333e, 0xfe2a016b, 0xfe5501d6, 0xd6012b80, 0x95562afe, 0x2b159595, 0x0001c0c0, 0x2bc0d6fe, 0x8f56b182, 0x000b2207, 0x22bb8217,
0x181e0100, 0x210953c7, 0x05630e17, 0x07172409, 0x49163235, 0x5b260caa, 0x02026049, 0x05844960, 0x1f692023, 0x0ca65b36, 0x19872820, 0x40231f82,
0x45179569, 0x334a090f, 0x00172205, 0x0893431e, 0x27012e22, 0x250d7943, 0x32352317, 0x6c98021e, 0x1f954c25, 0x98172a35, 0x95a9246e, 0x91362719,
0x9920206f, 0x2713216f, 0x14216f83, 0x82719806, 0x997182de, 0xeefe2272, 0x21748369, 0x4f41353e, 0x9922200e, 0x1e172773, 0x020e1401, 0x54411123,
0x1715211b, 0x1f20c982, 0x221b5941, 0x823e3614, 0x2a012198, 0x20125f41, 0x237b9f25, 0x37272622, 0x841cd341, 0x353e227e, 0x1cdb4115, 0x17218185,
0x14e34115, 0x83a02720, 0x35022e23, 0x2284a333, 0x4195172a, 0x19252107, 0x951f3627, 0x0e834117, 0x83a22920, 0x37363423, 0x8285a517, 0x2387a4e8,
0x6914363e, 0x8b8e8a82, 0x8b992820, 0x2e220323, 0xfc761802, 0x18884208, 0x361f4928, 0x2a171927, 0x06853e35, 0x21180343, 0x2489c2fe, 0x0f452b83,
0x0008260a, 0x00210011, 0x21898225, 0x6b601523, 0x23172105, 0x2006f84b, 0x06104717, 0x3e35273c, 0x1e333701, 0x15230701, 0xd62b0133, 0xd612182a,
0x1912d555, 0x1855d52b, 0xcf45ab12, 0x2e068205, 0x01abab2a, 0x12d6d66b, 0x12195518, 0x8255d5d5, 0x231d8711, 0x05002b52, 0x83089746, 0x8215206f,
0x4b29206f, 0x232228f7, 0xf84b3335, 0x80282217, 0x1bf94b80, 0x09878718, 0xab01d535, 0x0f00a001, 0x17001300, 0x00002200, 0x06222125, 0x191e1507,
0x2208ff1e, 0x84352107, 0x45272001, 0xf948098a, 0x49012009, 0x4e790601, 0x00012205, 0x088f4515, 0xd523fe8b, 0x452b2b55, 0x04280989, 0xe7ff0000,
0x8001e001, 0x1020f982, 0x2d297182, 0x27050000, 0x17371737, 0x33748203, 0x2622010e, 0x07013e27, 0x3632011e, 0x07141537, 0x010e2326, 0x0864a118,
0x17140727, 0x27012e23, 0x05ec7e01, 0xa118e020, 0x622c092f, 0x60926002, 0x12110802, 0x11113a24, 0x61241683, 0x0707024a, 0x193c0882, 0x4d221940,
0x0133011e, 0x30252430, 0x30242530, 0x3030247f, 0x0c0e4024, 0x1d220105, 0x2b261482, 0x15013024, 0x09821417, 0x0f498482, 0x00802a06, 0x0019000a,
0x003c0025, 0x05536345, 0x17209386, 0x06208982, 0x35207f83, 0x07219c84, 0x260c8715, 0x32373217, 0x55011d16, 0xac8405f0, 0x013e3527, 0x36343533,
0x052c4217, 0xeb263432, 0x01016148, 0x02609161, 0x1ef36002, 0x3028072d, 0x9125ba84, 0x1e6a0161, 0x240a8422, 0x17932249, 0x9eb7181e, 0x88802013,
0x03c024b9, 0x820c1d28, 0x8340200d, 0x40ba22c1, 0x210a8506, 0xb7185501, 0x05211cab, 0x23008200, 0x4001eb01, 0x2906df41, 0x0033002f, 0x22232500,
0xa2822726, 0xb2863b20, 0x085e2720, 0x15052706, 0x35231533, 0x1e8e3533, 0x1f832320, 0x6ad50122, 0x6a209e8c, 0xfe250082, 0x156a15eb, 0x20168555,
0x280685ea, 0x40c0c015, 0x09d6090c, 0x2b04840c, 0x161515d5, 0x15152b55, 0x96090c2b, 0x04821283, 0x196a9521, 0x2b0aab43, 0x0018000f, 0x00250021,
0x01000030, 0x0e7d4618, 0x2106fc57, 0x13513634, 0x21132e08, 0x14072111, 0x36262206, 0x013f3637, 0x10834216, 0xc418bd20, 0xf42f0c59, 0x000100ff,
0x222e2247, 0x110c0c02, 0x7001390e, 0xc418093a, 0xfe2d1244, 0x9c0001ab, 0x2e222217, 0x16171a14, 0x060f4753, 0xd6229382, 0xa1829001, 0x2b001f22,
0x17250b82, 0x23352315, 0x25048207, 0x37273537, 0xee4f3317, 0x35372708, 0x17371707, 0x146f0737, 0x16210806, 0x01343632, 0x952b402b, 0x40162b2b,
0x012a2b15, 0x0955090c, 0x4055800c, 0xe02a1615, 0x0a0b0595, 0x2d048305, 0xd5401501, 0x80404080, 0x16404015, 0xb882402b, 0x55400923, 0x2b23822b,
0x96202a15, 0x050c0904, 0x0b090495, 0x08af4718, 0x08002b2a, 0x1c001000, 0x00002600, 0x20082749, 0x258c8205, 0x23153335, 0xbb411527, 0x20988206,
0x240e8423, 0x35173335, 0x050a412b, 0x2b9e0127, 0x6b2b802a, 0x2100822a, 0x93821555, 0x80402b22, 0x2205555c, 0x832bab2b, 0x2b2a2600, 0x80d6d62b,
0x21028280, 0x9b690100, 0x000b2308, 0x89552500, 0x013e2605, 0x01011e37, 0x05f856a0, 0x8b2e0584, 0x01015b44, 0xb84a445b, 0x00b80808, 0x33820300,
0x01e02208, 0x009601a0, 0x0019000d, 0x13000030, 0x1632013e, 0x2e070617, 0x07060701, 0x07271726, 0x011e0727, 0x08468237, 0x37072732, 0x26173717,
0x15010e27, 0x22012e23, 0x34230706, 0x07062726, 0x37169337, 0x1c163740, 0x1c3e1511, 0x9111070a, 0x1b404040, 0x2b426e12, 0xc01b0b3e, 0x202d0b82,
0x19132004, 0x281b0120, 0x1920011b, 0x2e0d8213, 0x34283801, 0x17072834, 0x07140a1b, 0x82f2170a, 0x421b2822, 0x3d0b0f41, 0x82131b2c, 0x4b202f0b,
0x131a0243, 0x141b1b14, 0x43021a13, 0x9f84204b, 0xf601ea26, 0x13006b01, 0x1f209f82, 0x2621d782, 0x44d98223, 0x11200543, 0x21269682, 0x1715011e,
0x9b822707, 0x1715252e, 0x01073537, 0x361714c0, 0xd7020248, 0x3905b745, 0x19125501, 0x204b6a35, 0x6bfe4a2b, 0xa3aaaaab, 0x36480208, 0x18010b0b,
0xf4440112, 0x6aeb2b06, 0x4a2a204a, 0x6a6a2bcb, 0x3f4f6b2b, 0x206f8308, 0x05f36705, 0x5b852520, 0x011e1125, 0x18353317, 0x27098a65, 0x17010e21,
0xf5010721, 0x40205a85, 0xd52f5082, 0x2baaabd5, 0xabfe1219, 0x012a1812, 0x8555aa55, 0x83ff2057, 0x182b2066, 0x82078565, 0x06ef7226, 0xeb01f522,
0x1f28d382, 0x37002800, 0x27010000, 0x2627d282, 0x012e012f, 0x82070627, 0x010e3c04, 0x33011e15, 0x07373632, 0x33163717, 0x3225013e, 0x2b061416,
0x17013e01, 0x83272622, 0x3e6d0817, 0x0e071702, 0x1ceb0101, 0x090c1805, 0x1f111c0d, 0x0610130d, 0x4e47212d, 0x21486101, 0x2b07163b, 0x1a111515,
0x12d9fe27, 0x66121818, 0x363f3309, 0x1a6b0248, 0x1b050b26, 0x0e081219, 0x21050140, 0x01010c04, 0x06050603, 0x1f070101, 0x60020128, 0x114e4749,
0xfa045311, 0x3f150105, 0x26182419, 0x3536ea2e, 0x0e041518, 0x21630501, 0x09e74e22, 0x9601d62a, 0x11000800, 0x2d002100, 0x200a4f47, 0x194f4727,
0x08f06018, 0x8001332e, 0x12192bd5, 0x12d655d5, 0xaad62a18, 0x220c5747, 0x82402b40, 0x15012b02, 0x1912d5d5, 0xd6121855, 0x5b47abd6, 0x201b830b,
0x125f4740, 0x5f473120, 0x18152029, 0x4708077e, 0x2a211867, 0x2000822b, 0x1c6b472a, 0x23832a20, 0xe3530020, 0x01ab2208, 0x068b6b96, 0x1f001b2d,
0x23010000, 0x11373335, 0x5023010e, 0x33280671, 0x07163221, 0x11211521, 0x57480382, 0x56562205, 0x5f621880, 0x0001240a, 0x472a1812, 0x55260771,
0x15015656, 0x864d2b2b, 0x96d2250a, 0x55965601, 0x18055748, 0x250b8b41, 0x0024001b, 0x6b832500, 0x35200382, 0x37270382, 0x15010e21, 0x82161411,
0x3736256f, 0x05012e11, 0x2e297083, 0x01112701, 0x40959555, 0x220082d5, 0x76d5fe2b, 0x012c0853, 0x016efe18, 0x12abfe55, 0x2b800118, 0x2a21cf82,
0x08477656, 0x122b0123, 0x20198218, 0x2310822b, 0x06005501, 0x26085750, 0x00070003, 0x8214000b, 0x8d282077, 0x83da8479, 0x1e252369, 0xf9861701,
0x34113527, 0x11153736, 0x217d8921, 0x6f86abfe, 0x74830120, 0x7f856d8a, 0x85abfe21, 0x20878d70, 0x22b38201, 0x82002b01, 0x86032000, 0x82962087,
0x00092291, 0x2c81821c, 0x07173533, 0x33272335, 0x1733012f, 0x050c4415, 0x23171622, 0x3305e651, 0x6b552b01, 0x7616556b, 0x80ab9576, 0x49361615,
0xa1101101, 0x0132ea82, 0x60405518, 0x75eb4060, 0x075c8020, 0x19364901, 0xd04e112b, 0x00002105, 0x6b265f87, 0x23001700, 0x69182900, 0xd4820a77,
0x37013e2c, 0x35272634, 0x012b2634, 0x274e1727, 0x1715250b, 0x40352737, 0x12315984, 0x2540159b, 0x16025440, 0xaa121915, 0x3c2e952b, 0x07c65001,
0x104d1823, 0xa055183d, 0x211e2d09, 0x40540201, 0x4215361d, 0x962b1813, 0x28072b51, 0x143c2d2e, 0x241a2e6b, 0x0763435b, 0xeb01d52c, 0x05006b01,
0x28001000, 0xed833400, 0x07171526, 0x15213727, 0x077e6a18, 0x012e052a, 0x013e1127, 0x33173337, 0x4506d25b, 0x372005e7, 0xb1850682, 0x01012e32,
0x103d2040, 0xabfe554d, 0x54020686, 0xfe1d233f, 0x26067941, 0x12aa2b80, 0x83161419, 0x40262387, 0x6b517a14, 0x2db08207, 0x1a245bc0, 0x14d5c02e,
0x02543f17, 0x1d45dd0e, 0x192b2607, 0x36144212, 0x23dc821e, 0xc01d2201, 0x6f62b28a, 0x01d62e08, 0x00070056, 0x000e000a, 0x03231300, 0x3f958333,
0x37173727, 0xe0333523, 0x172f752b, 0xbe331785, 0xaad73334, 0xfe2b01aa, 0x6b4040d5, 0x2ac08686, 0x087b5818, 0xab01d62f, 0x2c001700, 0x3a003300,
0x00004c00, 0x05a35c01, 0x16011f25, 0x1914011d, 0x2c0b57bc, 0x16171632, 0x36350706, 0x06222634, 0x06535914, 0xcb700720, 0x27373205, 0x15333533,
0x17321733, 0x0e272615, 0x16140701, 0x05337f1f, 0x18150121, 0x08115977, 0x27171637, 0x1f12120b, 0x24372415, 0x01161415, 0x40b13001, 0x402b2b2a,
0x2a2b2b40, 0x1213182b, 0x01241b19, 0x072d0c0e, 0x01303024, 0x0c0c0900, 0x2f035f09, 0x0d5d1409, 0x5dbc1912, 0x14163307, 0x1a134220, 0x24243714,
0x0c1a1437, 0x30241727, 0xd3824054, 0xd62f0382, 0x010f1a0b, 0x101b2401, 0x0121091b, 0x44304830, 0x7b730723, 0x00062405, 0x8525000d, 0x851320e3,
0x851720b6, 0xac3720b6, 0x20e390f1, 0x20be8855, 0x20eca280, 0x20e28e46, 0x20b782ab, 0x200382eb, 0x20eaa540, 0x21e28fbf, 0x47180002, 0x2708072f,
0x00220009, 0x17071300, 0x37153335, 0x17231527, 0x15070622, 0x0f222327, 0x3b161701, 0x3d013e01, 0x022f3401, 0x80263435, 0x40256c83, 0x0c096b40,
0x08c67501, 0x12120e26, 0x010c1a69, 0x2a398b82, 0x2b40402a, 0xd5090c6b, 0x59110624, 0x0d12010a, 0x2f09145d, 0x0c095f03, 0x20008200, 0x216b8602,
0x6b860080, 0x66823320, 0x35233723, 0x286b9733, 0x2b2b4055, 0x2a2a4040, 0x856c9256, 0x932b2087, 0x8203206a, 0x01ea2967, 0x00960196, 0x001e0003,
0x2406c577, 0x07010e01, 0x05fb6511, 0x06070630, 0x3523011d, 0x32333634, 0x013d3637, 0x236c2333, 0x40320808, 0x02400140, 0x2a2b272c, 0x1e04092b,
0x2d3b5a2a, 0x952a211d, 0x24181812, 0x806b1818, 0x452fa201, 0x80defe0c, 0x0403fe80, 0x0b0b2a18, 0x1b164c3f, 0x7e5d0a2f, 0x00042106, 0x01230082,
0x828001eb, 0x26280873, 0x33002a00, 0x21130000, 0x15052115, 0x14151607, 0x33150706, 0x012e2115, 0x15333527, 0x013b1614, 0x35012e35, 0x3337013e,
0x33250e82, 0x23350335, 0x089b5515, 0x2b014030, 0xab01d5fe, 0x141705b0, 0x1b00ff40, 0xe0820124, 0x231d162b, 0x35293601, 0x56d5d52b, 0x05ff5c0b,
0x80012208, 0x2460152b, 0x23170f0d, 0x012b3209, 0x15151b24, 0x0a300c09, 0x36292030, 0x2b2b2b01, 0x2a2aebfe, 0x069273c0, 0x0a577818, 0x07491320,
0x0f063306, 0x2f220601, 0x35272601, 0x36013f36, 0x16011f32, 0x0a702717, 0x17352c05, 0x0a01c001, 0x050e05a9, 0x88010aa9, 0x95c02108, 0x7f2a0082,
0x5e060d60, 0x065e0404, 0x0887c00d, 0xa6544728, 0x53a65454, 0x638a488f, 0x17000322, 0x2205ef68, 0x98011f35, 0x80012467, 0x95408080, 0x48782467,
0x96a7488f, 0x91002069, 0x17012467, 0x99370715, 0x80002267, 0x25cf9680, 0x8e484f01, 0x68972f48, 0x20053f42, 0x06f75ac0, 0x00001f23, 0x22678201,
0x9c173727, 0x7f7f2169, 0x48216b9b, 0x17404147, 0x240ceb59, 0x001a0006, 0x416f8620, 0xda821c42, 0x4821dc9d, 0x9571998e, 0x053521df, 0x8021df9c,
0x16b34101, 0x484f0126, 0x8e48488e, 0x2019b641, 0x05cf4c00, 0x9601ba24, 0xdb820b00, 0x17073732, 0x07270727, 0x37172737, 0x4d833501, 0x3634844e,
0x01270584, 0x6a6b0e1d, 0x8478790e, 0x59002005, 0x338505ff, 0x35821720, 0x368a1720, 0x17270732, 0x37173707, 0x07372717, 0x441c0001, 0x1a44292b,
0x35250585, 0x844c4f85, 0x27058433, 0x083c2b01, 0x3e083537, 0xa82c0584, 0x6b6b0f79, 0x0d79790f, 0x000f6b69, 0x0b0b8118, 0x000d2b08, 0x13000013,
0x27070137, 0x22012b06, 0x34013d26, 0x07170537, 0x2b323327, 0x1b65011b, 0xea07072d, 0x010a1912, 0xee405d2e, 0x108217ae, 0x1b9bfe30, 0x1218022d,
0x030b10d6, 0x00ef5a83, 0x00820003, 0x01d60129, 0x000d0080, 0x8f1a0010, 0x33172549, 0x23270527, 0x1f204c82, 0x508b5f82, 0xcfcf212d, 0x844c3601,
0x0c17ae2a, 0x8c1e405d, 0xd0f12857, 0x122a6b65, 0x181f5a83, 0x2809679b, 0x005601b6, 0x3f000009, 0x32498501, 0x674b2306, 0x0d16ea67, 0x160d5d5d,
0x1295952b, 0x83128383, 0x8402202b, 0x82c02030, 0x0005212b, 0x372be382, 0x23273733, 0x3721011f, 0x82322127, 0x8b062d7e, 0xb54b4bb5, 0x00ff6b4a,
0x00016060, 0x55243c84, 0x956b6b6b, 0x0d203f89, 0xd6323f84, 0x0c006301, 0x1c001400, 0x26002100, 0x2f002a00, 0xd5703400, 0x00482f06, 0x2500004d,
0x2e373616, 0x15230701, 0xdc823533, 0x33352339, 0x06011e32, 0x06261537, 0x013e2317, 0x37272617, 0x17320717, 0x82022f07, 0x82362007, 0x06272403,
0x82372707, 0x3627227d, 0x200e8807, 0x08138407, 0x26270222, 0x2103a601, 0x03270303, 0x39252851, 0x01202040, 0x30090207, 0x860a6e80, 0x1689c30d,
0x2c2c0216, 0x6e080482, 0x2d096626, 0x1d0e1108, 0x13552608, 0x46271114, 0x0a181711, 0x1a090426, 0x0d116e07, 0x0c29201c, 0xb7132609, 0x012b0627,
0x2212015c, 0x99011422, 0x224f2424, 0x98081308, 0x5f9a1d04, 0x0a2fc665, 0x43111c07, 0x59051a06, 0x511c041a, 0x0f190708, 0x1c0c0959, 0x1c1a6815,
0x195c1316, 0x87291518, 0x22181211, 0x0f171a75, 0x2a0d4731, 0x4f00070a, 0xd72a06e3, 0x2c005601, 0x36003000, 0xf1823a00, 0x012f362b, 0x0f23012e,
0x06070601, 0x82ca8314, 0x22072e0c, 0x16011f06, 0x013f3233, 0x1e171617, 0x26078201, 0x012f023e, 0x82073637, 0x363721f2, 0x6d081582, 0x07172507,
0x01d50127, 0x09032e05, 0x0b390506, 0x20030103, 0x08025f65, 0x0a0a5409, 0x11085405, 0x184e0305, 0x0903040e, 0x0385080e, 0x29050407, 0x69bf0a29,
0x083c6920, 0x1e190d08, 0x3b55fffe, 0x0607c34b, 0x01070339, 0x02070209, 0x182d0508, 0x0607039f, 0x11b60c10, 0x182c1401, 0x03070407, 0x0c04022f,
0x050b3806, 0x242d1b32, 0x5c820298, 0x92690733, 0x00009d0f, 0xff000002, 0x01c801e7, 0x00260096, 0x22bb8243, 0x8227020e, 0x821520ae, 0x373623a2,
0xc1821417, 0x3d2d0e82, 0x17013e01, 0x013b013e, 0x36171632, 0x27158216, 0x23263427, 0x27010f22, 0x06270582, 0x3533011d, 0x89323334, 0x014e0806,
0x533b06bf, 0x012f252b, 0x2a3c3206, 0x25270201, 0x273d3b28, 0x18033504, 0x29022949, 0x35031849, 0x24450204, 0x0b11221e, 0x1d23110b, 0x201d2d24,
0x2d1d202c, 0x0c281795, 0x0d090201, 0x01091222, 0x030d0123, 0x72130e04, 0x35444946, 0x00820a01, 0x44350138, 0x22464a03, 0x13131a29, 0x7022291a,
0x3b29226d, 0x6d22293b, 0xbb8a0400, 0x38002f24, 0xbf8d4100, 0x30173322, 0x252bbf96, 0x0622012e, 0x36321614, 0x86263437, 0x91118708, 0x3d3a22bd,
0x25bd8d28, 0x1101edfe, 0x02821119, 0x1a116d23, 0x20028211, 0x890e866d, 0x230a27c3, 0x0e03030e, 0xc18d7113, 0x830d2821, 0x0d11212d, 0x0020068c,
0x0c200082, 0xea24c782, 0x9601e101, 0x7d34c382, 0x8f008600, 0xa1009800, 0xb000a900, 0xbd00b800, 0xc700c200, 0x1420d782, 0x2322ca82, 0x05820722,
0x0726272a, 0x2f012e06, 0x26273401, 0x37280183, 0x35262736, 0x3637013e, 0x172f0183, 0x17363716, 0x15141716, 0x17163306, 0x82060716, 0x1e142903,
0x36161701, 0x23262734, 0x8205b178, 0x012e282f, 0x012f0607, 0x83010f26, 0x26272205, 0x830e820e, 0x3637272a, 0x013e013f, 0x17820616, 0x16060722,
0x07220c85, 0x0e821514, 0x26411720, 0x32252107, 0x20058a4b, 0x087c4816, 0x143c1a89, 0x35363216, 0x26132226, 0x32171422, 0x06223736, 0x36331614,
0x14222534, 0x06053432, 0x2e080483, 0x3214012e, 0x1d25a201, 0x01020707, 0x1216230b, 0x34150203, 0x03010425, 0x03170c0f, 0x01021704, 0x161c0109,
0x31150204, 0x03021e23, 0x82152430, 0x06162319, 0x2b821408, 0x0e8e2208, 0x0e080c17, 0x0f020207, 0x0703010b, 0x03040510, 0x050d1e03, 0x0f0f0504,
0x0c07050b, 0x140b0706, 0x3e448209, 0x0f0d1005, 0x0224040b, 0x03010809, 0x02010212, 0x2804100f, 0x01070902, 0x6b061704, 0x820b110b, 0xb4fe2802,
0x100b0b08, 0x83f00b0b, 0x0a0a3206, 0x0a0d0991, 0xfe090e09, 0x080c08b8, 0x01941a01, 0x3c4d8216, 0x070705bf, 0xd8fe0b05, 0x2b01130a, 0x96fe1008,
0x83101001, 0x01062b1e, 0x03052102, 0x2280820e, 0x821a2104, 0x0a0225bd, 0x17201d12, 0x55080e82, 0x05201712, 0x0a2d0401, 0x01021206, 0x1d15220e,
0x08030607, 0x01141c16, 0x0c101202, 0x01010714, 0x02030d07, 0x09170103, 0x0a112212, 0x08081009, 0x0c050403, 0x03030a0b, 0x01010405, 0x2a0a120c,
0x080b152b, 0x5a0b0404, 0x0b080305, 0x05052e06, 0x08070709, 0xda82054f, 0x09020226, 0x08810a30, 0x0b21b583, 0x24b383ac, 0x01d40b10, 0x3ebb820a,
0x06740a10, 0x090d0909, 0x08063409, 0xfe0d0708, 0x01160ba7, 0x0a07c307, 0xe1160107, 0x82aa1313, 0x08b024af, 0x59001101, 0x0d290a8b, 0x25001900,
0x23010000, 0x05b17015, 0x17323725, 0x4e273335, 0x3e4e0bd1, 0x40552a0b, 0x1e1e2e1e, 0x550e1217, 0xb1951855, 0x00012b16, 0x1e1e1775, 0x0b011e2d,
0x95186a76, 0x002217b1, 0x43500400, 0x00062c08, 0x0014000d, 0x2500001b, 0x8237013e, 0x4e232076, 0x332305b4, 0x8227012e, 0x85152010, 0x00012888,
0x32314301, 0x86eb0242, 0x43312206, 0x85098201, 0x8bc02005, 0x4e268c0c, 0xeb24084f, 0x1f00ab01, 0x2b2ce582, 0x37003100, 0x23050000, 0x23010e35,
0x35206082, 0x35206582, 0x33246582, 0x33013e15, 0x15276982, 0x15011e23, 0x8227010e, 0x2634280e, 0x32011e27, 0x82013f36, 0x06222122, 0x2e059474,
0x12150001, 0x4935192b, 0x120f8c02, 0x89354902, 0x4a01320c, 0x24241c20, 0x3c2c08ee, 0xa530082d, 0x2d3b2d08, 0x210f8235, 0x27902b1c, 0x85364921,
0xa5d12134, 0x0b202b83, 0x2a202483, 0x8c200482, 0x08203283, 0x23093f52, 0x00c000d6, 0x08059741, 0x3d003120, 0x21250000, 0x011d0622, 0x15213533,
0x26343533, 0x22061405, 0x34013d26, 0x15163236, 0x62480e17, 0x210b8205, 0x1783011f, 0xce822720, 0x238a1783, 0xfeab012c, 0x2a1812aa, 0x182a5601,
0x1f56d8fe, 0x01562105, 0x01210785, 0x20078255, 0x830c8301, 0x2e0b8208, 0xaa1219c0, 0x12aa2a2a, 0x0c096b19, 0xa12b090c, 0x82b38304, 0x7bff20b8,
0x132605cf, 0x2b001f00, 0xb3823500, 0x52004a2f, 0x00005600, 0x011f0713, 0x17371707, 0x20c08623, 0x20c18217, 0x28bf9d25, 0x3f173736, 0x17372701,
0x21018207, 0xef822715, 0x23222327, 0x16323327, 0x0512642f, 0x37022f2c, 0x3b1b4617, 0x1b251e12, 0xd683904b, 0x2a1b3b24, 0xd694c0fe, 0x27032808,
0x2a1e1e1b, 0x2b1f1f26, 0x090c4055, 0x5a2c0102, 0x1edd1812, 0x1f1f252b, 0x1e541e18, 0x95012503, 0x2f1d3b1b, 0x834b2b13, 0x0f1b23f4, 0xee984f1b,
0x27050727, 0x422f2f90, 0x28038213, 0x0440594d, 0x192b0c09, 0x2a0e847d, 0x1e541d24, 0x00001304, 0x18000900, 0x37073369, 0x00110003, 0x001a0015,
0x0022001e, 0x002b0026, 0x0500002f, 0x03331123, 0x35370382, 0x15062223, 0x3b161411, 0x33151301, 0x34332735, 0x23132326, 0x83273315, 0x2c07820c,
0x35363213, 0x3315022b, 0x2a2a1501, 0x2a008255, 0x12191813, 0x2b2bd555, 0x8212192b, 0x2b2b2904, 0x2a2b2b55, 0x2a2b1813, 0x012d0c82, 0x0180fed6,
0x13182b2a, 0x1813d6fe, 0x82108201, 0x00ff2c18, 0x2a2a802b, 0xabfe2bab, 0x822b1318, 0x02002192, 0xd6299384, 0x0b00ab01, 0x00001c00, 0x09ea5425,
0x03154008, 0x07141517, 0x010e2726, 0x07171607, 0x3527012e, 0x402a9501, 0xd5402a40, 0x201a06c0, 0x01014936, 0x6a541a19, 0x3f3f1502, 0x2b40402b,
0x80569601, 0x010d1c1c, 0x2d364802, 0x8e170821, 0x8c00805b, 0x8d23205b, 0x8327205b, 0x3d362959, 0x15072701, 0x3717011e, 0x37216086, 0x2c628617,
0x16130615, 0x02959504, 0x06073e55, 0x2165830d, 0x6786c0c0, 0x1c1cc030, 0x14130409, 0x69424269, 0x02127748, 0x6b841114, 0x00565622, 0x02200082,
0xcc20cb84, 0x116fcb88, 0x91172009, 0x2c9f27cb, 0x1e2e2c1e, 0x02822d2d, 0x8ccc1f21, 0x822b20d1, 0x1f2e2113, 0x01211985, 0x86d69154, 0x836785d7,
0x98678ad7, 0x206e8bd7, 0x8bdd910c, 0x977e2073, 0x820620e2, 0xea2408df, 0x9601bc01, 0x1f001700, 0x2f002600, 0x54004f00, 0x26010000, 0x26012f23,
0x2e07012b, 0x07262701, 0x010f010e, 0x17330383, 0x07060337, 0x1e273435, 0x1d162701, 0x013e0701, 0x83173227, 0x013e2b17, 0x26340717, 0x17010e23,
0x1082011e, 0x012e2324, 0x09823735, 0x35363222, 0x3f083e82, 0x32373634, 0x011f3716, 0x8d010713, 0x19220301, 0x0c050302, 0x0b131606, 0x062b290b,
0x01040926, 0x9184f421, 0x09040c0a, 0x2a05240c, 0x04061406, 0x06190d03, 0x37230621, 0x120e1210, 0x3204010a, 0x68082182, 0x0b201f1b, 0x090f1901,
0x03290308, 0x11102b2b, 0x29151c3e, 0x0442016a, 0x04021902, 0x0d011811, 0x1d470301, 0x0805030c, 0x011c2dfa, 0x05040253, 0x11020d14, 0x02180d10,
0x1419180e, 0x1f220603, 0x87371a0a, 0x01070131, 0x1e0f040f, 0x01241f25, 0x02250217, 0x060a0110, 0x1f221814, 0x5206012e, 0xe7fe021c, 0x05000017,
0x05034d00, 0x08007a2a, 0x1c001400, 0x44003900, 0x210a195b, 0xd2823337, 0x83270721, 0x832320d2, 0x822720e7, 0x26052ddb, 0x013e3736, 0x07163607,
0x37013e33, 0x1e2c0682, 0x010e1501, 0x26222307, 0x37352627, 0x09a4bf18, 0x12d13c08, 0x18231818, 0x3e0f7518, 0x19010152, 0x08334301, 0x012d220b,
0x1219041a, 0x1503ddfe, 0x0132362d, 0x01192e06, 0x20202408, 0x231e060d, 0x06506902, 0x0f155839, 0x014635a6, 0x836b4601, 0x83982004, 0x2337083e,
0x5201e118, 0x0a08123e, 0x24014333, 0x08222e02, 0xa9031913, 0x302b3e0b, 0x13020211, 0x04130838, 0x0f152702, 0x3d2f192a, 0x141e2401, 0x2f014e17,
0x2f2f2423, 0x422f2324, 0xea2407c7, 0x96015601, 0x3b08db82, 0x01000016, 0x11151633, 0x3f343523, 0x35230701, 0x35372307, 0x32333523, 0x00011516,
0x06aa1540, 0x2b4015a4, 0x75151515, 0x2b01120e, 0xebfe1615, 0xd60c0995, 0x2a2a152b, 0x0e122a16, 0xd6204b89, 0x03224b82, 0x4b821300, 0x35211526,
0x33173315, 0x08059c4b, 0x37333523, 0x01213533, 0x6a56fed5, 0x1801152b, 0x15011824, 0x56fe6a2b, 0x40409501, 0x12d62a80, 0xd6121818, 0x06c7722a,
0xeb01d526, 0x0700ab01, 0x0f264182, 0x3f011f01, 0x7e822701, 0x40abab26, 0x01abab40, 0x40210685, 0x06174340, 0x0f202785, 0x1f242982, 0x2f010f01,
0x31882b82, 0x52521f23, 0x8203831f, 0x20398435, 0x210e8531, 0x4884cc1f, 0x34824182, 0x012cb483, 0x008901d6, 0x01000005, 0x1737010f, 0x952a6983,
0x0195d5d5, 0x32a0d289, 0x1f82a034, 0x41000221, 0x238305fb, 0x00000b28, 0x27011f25, 0x2b873f07, 0x553b1a26, 0x401c3b57, 0xf5263183, 0x13134055,
0x3687e940, 0x220abf74, 0x6f71000b, 0x172f0d7d, 0x16171636, 0x27260706, 0x2e353634, 0x820e2301, 0x1621084d, 0x3e263637, 0x15163201, 0x22230614,
0x07010e27, 0x2223010e, 0x3236012e, 0x020e011e, 0x3e373616, 0x28028301, 0x2627012e, 0x17160607, 0x201f831e, 0x05637f27, 0x82010f21, 0x3e162310,
0x0f822601, 0x2105514b, 0x2f83011f, 0x080ca562, 0x15110248, 0x09080101, 0x01050110, 0x14170208, 0x0b1b0304, 0x09010807, 0x1b1b070a, 0x14090507,
0x09211415, 0x0e011310, 0x05010a10, 0x090d0106, 0x08110e04, 0x0a040704, 0x08130e13, 0x12050205, 0x2804020d, 0x060e171b, 0x0d820d0b, 0x05090135,
0x0504110b, 0x05100e03, 0x19190c03, 0x0b130a10, 0x621c0a17, 0x33080cec, 0x0c0d014d, 0x01010e05, 0x020b030e, 0x31030204, 0x0803121c, 0x060b0b05,
0x150b060a, 0x19413101, 0x170e0d16, 0x050d0a0c, 0x05010803, 0x28310d02, 0x080f2117, 0x27085282, 0x050f070b, 0x140b1814, 0x1a080716, 0x0c050412,
0x07050b07, 0x11080301, 0x1d10020a, 0x110a0c10, 0x11090508, 0x100d1c21, 0x3a069350, 0x008001db, 0x001b000d, 0x01000027, 0x0e07011e, 0x3e270701,
0x26363701, 0x82172527, 0x0625080b, 0x2e071716, 0x013e3701, 0x07333717, 0x07272317, 0x33273723, 0x1117b301, 0x1e220306, 0x031d1a21, 0xfe130e05,
0x220886df, 0x82121624, 0x31b23b16, 0x302e5036, 0x5336341d, 0x8001302d, 0x3333612c, 0x27152c61, 0x572d2d57, 0x07871527, 0x78281584, 0x48696b45,
0x00656e47, 0x39085b58, 0x006b0196, 0x0016000e, 0x13000025, 0x1614010e, 0x37363233, 0x23333633, 0x8b83012e, 0x97821520, 0x22072008, 0x06230706,
0x011e3323, 0x34013e33, 0x120ea026, 0x110a0e12, 0x15165703, 0xeb110382, 0x827a169a, 0x88352002, 0x820a2010, 0x6b012f1e, 0x121b1201, 0x0a150a0b,
0xe010160c, 0x03822a10, 0x0d84d620, 0x97511683, 0x006b3008, 0x0024001a, 0x0100002b, 0x011f010e, 0x82373630, 0x05704370, 0x2f263435, 0x15011e01,
0x07263637, 0x2723012e, 0x011e1736, 0x82270717, 0x1755088a, 0x6f000106, 0x0f950167, 0x0906060f, 0x18241801, 0x090d0f01, 0x01951d1d, 0x200d2d67,
0x0b0a1515, 0xde134e3b, 0x202f0d5a, 0x6b010d15, 0x95075d07, 0x052b0b15, 0x18120a11, 0x150f1218, 0x23052c05, 0x5d079502, 0x7e0e09bb, 0x28010103,
0x0f595915, 0x0580091d, 0x20008200, 0x08576404, 0x13000b29, 0x23001b00, 0x4b250000, 0x07290aab, 0x37233723, 0x03330733, 0x23148235, 0x17013e33,
0x01280786, 0x0145345c, 0x33344501, 0x0f390583, 0x17353867, 0x3d363666, 0x2903ac82, 0x5f709503, 0x0229027f, 0x4501de67, 0x32248733, 0x572657b4,
0x03291d01, 0x957082ac, 0x7e03294e, 0x85674e5f, 0x0000387b, 0x2b01e201, 0x0f000700, 0x1f001700, 0x26370000, 0x16333736, 0x8d010f06, 0x27072207,
0x27888215, 0xf1073335, 0xb32b1302, 0x5a240386, 0x5a2b1201, 0x1e200b82, 0x30300382, 0xc6697abd, 0x3503ef7a, 0x03350404, 0x0434044d, 0x4d200282,
0x10820a82, 0xa72f2f24, 0x0f46a72f, 0x01eb2c06, 0x0008006b, 0x00150011, 0x8227001e, 0x010e277b, 0x36321614, 0x5c732634, 0x15053008, 0x22173533,
0x21150706, 0x07012e35, 0x8217011e, 0x3e290808, 0x24400101, 0x30483030, 0x19132430, 0x19192619, 0x80abe8fe, 0x01067530, 0x30750656, 0xfe024e32,
0x014e02fc, 0x4930016b, 0x21028230, 0x20821a28, 0x571a2625, 0x82402b2b, 0x27038202, 0x0c200129, 0x200c1717, 0x5718ef82, 0x0b2f09fb, 0x1d001400,
0x2f002600, 0x37130000, 0x6e173717, 0x3f2005a6, 0x094bc718, 0x84053150, 0x22828598, 0x85010e17, 0x1e1f2594, 0x2d1e2d2e, 0x2e230282, 0x8cf32e1e,
0x82132096, 0xaafe2193, 0x01219385, 0x22938204, 0x7e2e1e03, 0x2d8205c1, 0x9f8d9620, 0x9c8f9720, 0x9f820320, 0xc0010026, 0x0f008001, 0x21209982,
0x34209782, 0x0ef94918, 0x010e2a08, 0x3533011d, 0x35331533, 0x07272634, 0x40231533, 0x2a011219, 0x12191912, 0x1813d6fe, 0x2b1912ab, 0x12192b2a,
0x012a2a2a, 0x2d401855, 0x01002c0a, 0x56ab1218, 0x1812ab56, 0x412b2b01, 0x678508f3, 0x24002024, 0x35192800, 0x172011cb, 0x232b6083, 0x013e3315,
0x2634013d, 0x6d363223, 0x6b200752, 0x5f826e87, 0x1219e723, 0x24678255, 0x130d0d13, 0x2273822b, 0x8380012a, 0x84188287, 0x20a02193, 0xd6206f82,
0x20247a82, 0x5313130d, 0x077f9882, 0x20df8308, 0x83739227, 0x161422dd, 0x22748417, 0x87231523, 0x20728be7, 0x825d8392, 0x826f82f0, 0x20708de8,
0x6f6b8255, 0x122505dd, 0x15801515, 0x207e8215, 0x06ef4300, 0x0924eb83, 0x1d000d00, 0xd4877582, 0x33072725, 0x18032315, 0x230b584b, 0xc0363411,
0x1921cf82, 0x20cc8212, 0x21e78a80, 0xc6832b01, 0x2b235a83, 0x8b000180, 0x2b4218e3, 0x000b220b, 0x205d841b, 0x06b45f35, 0xb4193520, 0xc0220f82,
0x00825580, 0x588dd520, 0x2a2b2b25, 0x97552b2b, 0x00092253, 0x20538519, 0x90558433, 0x402b2351, 0x508e5540, 0x4f9b5620, 0x22001222, 0x67414f82,
0x20aa9010, 0x086641eb, 0x62415e8e, 0x55552209, 0x41b79980, 0x3321080b, 0x21b98215, 0x60902315, 0xf683c020, 0x64412a20, 0x5656240e, 0x415656d6,
0x5384180b, 0x45650120, 0x23352306, 0x0d413335, 0x2b01240f, 0x82161656, 0x41c02002, 0x2b240c61, 0x802b2b80, 0x420c9842, 0x0d250a87, 0x00001d00,
0x219f8201, 0x78421523, 0x27559007, 0x192b2a15, 0x19122a12, 0x290d6741, 0x121515ab, 0x18010118, 0xb08dab12, 0x091b6e18, 0x1a000a22, 0x2505bb41,
0x37273317, 0x02410723, 0x40402214, 0x0f04412b, 0x6b474725, 0x8d47476b, 0x084f4954, 0x8001c026, 0x15000500, 0x55415785, 0x55802112, 0x200e5241,
0x8a9e8e2b, 0x001122fb, 0x18478221, 0x27094ca3, 0x35331533, 0x012f012e, 0x820f1143, 0x2b2b24e6, 0x822b2b2a, 0x0d0241eb, 0xab251082, 0xab9595ab,
0x9a2182ab, 0x08c342af, 0x35331724, 0x5f911523, 0x24130942, 0x6bd66b6b, 0x4553906b, 0x13220b1f, 0xc9422300, 0x0611450e, 0x420fd143, 0xd54307ca,
0x09cc4212, 0x8915db43, 0x000b246f, 0x821f000f, 0x3315216f, 0x08774f18, 0x15330723, 0x0f2b4223, 0x2a2bc024, 0x68921912, 0x1856d62a, 0x18122b12,
0xab2b2b01, 0x5c0de943, 0x6b2109b7, 0x05497800, 0x43130021, 0x6a82069d, 0x20057c45, 0x25698527, 0x1115011e, 0x5b180614, 0xd5a10702, 0x862a2a21,
0x802b22de, 0x0cff63eb, 0x210b1345, 0x1144000e, 0x236c8205, 0x27331733, 0x4618708c, 0xc0270d8d, 0x2b19112b, 0x940e0c1a, 0x595624dd, 0x950d1505,
0x090f43e0, 0x27001722, 0x2208b141, 0x4615013b, 0x2b23085c, 0x43333501, 0xdf85101c, 0x8d455520, 0x11834405, 0x2b216b82, 0x84d5822b, 0x10274207,
0x07227389, 0x73821700, 0x83331521, 0x236390df, 0x2b2a2bc0, 0x220dd142, 0x44abab2b, 0x0d2019d3, 0x46053d46, 0xff410ba0, 0x12192410, 0x4319122a,
0xab200fd2, 0x20062844, 0x198b43ab, 0x16000622, 0x1724a782, 0x07233733, 0x21152043, 0xd8431515, 0x131f430e, 0x112df789, 0x00002100, 0x013e3337,
0x15233537, 0xe2491823, 0x0f1b4308, 0x4380c021, 0x432009dc, 0x200a3545, 0x0bda4355, 0xb2422a20, 0x2263890c, 0x831b000b, 0x330722b3, 0x05e04437,
0x2b24b892, 0x2b15152b, 0xbd8f0082, 0x366b6b23, 0x41038336, 0x5b890eb9, 0x18000822, 0x15225b83, 0x11413533, 0x56802528, 0x40408056, 0x9f47518e,
0x0787440b, 0x4106f879, 0x552310bb, 0x42558055, 0x2b220e69, 0x02822b80, 0x04215390, 0x2b008200, 0x6b01d601, 0x24002000, 0x36002a00, 0x2106d742,
0x5b820622, 0x3337362e, 0x27331716, 0x23272634, 0x22263435, 0x49054d62, 0x212005ac, 0x2c08cf82, 0x2205012f, 0x3b161406, 0x34363201, 0x09552326,
0x020b080c, 0xc0170d06, 0x011c0d18, 0x0c2b090c, 0x0c2b0c12, 0x2a2a4009, 0x406a0001, 0x05d46715, 0x1912c026, 0x6b011219, 0x6a321e82, 0x14440809,
0x3f140101, 0x2a010c09, 0x090c0c09, 0x09826a2a, 0xaa6b2b26, 0x55801515, 0x82055475, 0x06f34899, 0x9f82cb20, 0x1b001528, 0x00002200, 0x87832301,
0x15207583, 0x3d257a85, 0x11173301, 0x30a18207, 0x0e173733, 0x1e350701, 0xab000101, 0x12181812, 0x36838216, 0x6b400c09, 0xc0c02b2b, 0x1c018b2b,
0x011c1919, 0x56121815, 0x83561812, 0x56562e6f, 0x22f85601, 0x1c4d2256, 0x0caa0c2d, 0x366c822d, 0xff000002, 0x01c001ea, 0x00060096, 0x05000026,
0x23352337, 0x84132315, 0x68098305, 0x3b3b05b8, 0x35233501, 0x15231521, 0x35363233, 0x01263411, 0x2a405500, 0x2b15ea40, 0x83152baa, 0x404025dd,
0x40402a01, 0x15240982, 0x01808055, 0x21054c4a, 0xfe831218, 0xebeb2a29, 0x0112182a, 0x1818122b, 0x820d9ba1, 0x0725266b, 0x35331533, 0x206ba533,
0x256b8840, 0x2a015555, 0x6b825555, 0x6b83c020, 0x182a0021, 0x9109789a, 0x82d6206b, 0x000b22d7, 0x0d696d11, 0x37170527, 0x01270727, 0x0a1459d5,
0x80adfe27, 0x62621e80, 0x0a4a59c0, 0x11823020, 0x73636321, 0x1d200e2b, 0x0723498d, 0x4d27012e, 0x252007e8, 0x28245591, 0x49496002, 0x21068f76,
0x6190d7fe, 0x200bab76, 0x416d8574, 0xb7940723, 0x82270721, 0x8c1720b7, 0x638a25b7, 0x80801e63, 0xbd22b68b, 0x11826262, 0x230b575a, 0x0017000b,
0x5592b79a, 0x6020b78b, 0xb68b6190, 0x6d861920, 0xb683b79d, 0xb78c0720, 0xee84fe20, 0xdb20b78b, 0x62211182, 0x23b7ab62, 0x17372737, 0xb78b558d,
0xb7c1f220, 0x17370522, 0xb78db982, 0xf084cb20, 0xa420b88b, 0x27426884, 0x91212029, 0x0c274255, 0x6190f520, 0x850b7041, 0x0000346c, 0x00000700,
0xc001c0ff, 0x12009601, 0x24001600, 0x7c002d00, 0x00240559, 0x15231501, 0x28054d5b, 0x14171632, 0x35330706, 0x23038227, 0x11172523, 0x21270c82,
0x1135012e, 0x7c333634, 0x07200838, 0x0bf75318, 0x5cd5402c, 0x30010f0d, 0x0f013048, 0x77195c0d, 0x7d3d15e1, 0x2a562b2b, 0x2b2b552a, 0xd5566b01,
0x2413210c, 0x13243030, 0x3dee0c21, 0x552a2b2b, 0x06ae6fff, 0x122b0124, 0xa466ea18, 0x2bbf2106, 0xd7410083, 0x01b62207, 0x25b9828b, 0x0040000f,
0xf5631300, 0x013f2105, 0x2705c154, 0x35330337, 0x013b013e, 0x3e28a082, 0x17323701, 0x2326010f, 0x23075a43, 0x1516023f, 0x3320bc82, 0x1521d082,
0x074f5033, 0x2e2dc82c, 0x2d2e1515, 0x3e178315, 0x0382173e, 0x15c93008, 0x05090c01, 0x5a022c24, 0x081d2244, 0x320d0c1e, 0x42010142, 0x04413032,
0x2c080f14, 0x0c090524, 0x18121501, 0x01aafe01, 0x140d0118, 0x822d2d14, 0x3eab2203, 0x30398218, 0xdefe1817, 0x160c0915, 0x5a442d48, 0x0b150d02,
0x83368202, 0x2f3d2f3c, 0x1a180535, 0x0c16482d, 0x18011509, 0x3e821512, 0x2505e742, 0x01d601e7, 0x6418008e, 0x072107d5, 0x23af822e, 0x012e2736,
0x0284ae82, 0x15062628, 0x1e17010e, 0xaa823701, 0x36167908, 0x013e2737, 0x07061617, 0xd501010e, 0x2c326504, 0xb210030e, 0x4433151e, 0x0b0c1d4a,
0x222b0103, 0x18150311, 0x03033d1d, 0x8538211d, 0x4506a406, 0x220f1216, 0x05912022, 0x2302053a, 0x1d737302, 0x3c330117, 0x0116351e, 0x020a1801,
0x0b0d2d02, 0x3814010a, 0x0521221a, 0x114250ac, 0x16193c13, 0x01000004, 0xeaff0000, 0x9601cb01, 0x00003900, 0x23010e25, 0x012f012e, 0x23087082,
0x012f2622, 0x3e371733, 0x1f163201, 0x2e013e01, 0x0e222303, 0x33011e01, 0x06153732, 0x032e2223, 0x33033e34, 0x1433a382, 0x04a40106, 0x10100c10,
0x04222205, 0x040f240f, 0x852e3039, 0x25410808, 0x19070c0e, 0x371a3127, 0x59222259, 0x17161837, 0x37402217, 0x28151528, 0x50224037, 0x6814026a,
0x13010c05, 0x0c54540e, 0x8d0c1515, 0x160b5474, 0x165b0b16, 0x232d3432, 0x69694012, 0x052d0640, 0x20298214, 0x26328244, 0x4f6a0214, 0x82003a1f,
0x82032000, 0x01d52aab, 0x00ab01c0, 0x00170002, 0x6eaf8225, 0x14220524, 0xb6820706, 0x6a013d21, 0x352c05a0, 0x23373634, 0x23153311, 0x11352622,
0x333f0b82, 0x75752b01, 0x19809580, 0x1813ea12, 0x6b55556b, 0x2bcb8719, 0x1818122b, 0x75c0a012, 0x49d58020, 0x402f05a1, 0x2a40402b, 0x2b1812c0,
0x192bebfe, 0x82150112, 0x21658215, 0x6f85ff00, 0x28001027, 0x27010000, 0x05d14623, 0x68851720, 0x15051122, 0x33217989, 0x05f64635, 0x3b363427,
0x2b2b0101, 0x255f83ab, 0x96555596, 0x77826b01, 0x2b191225, 0x82806aea, 0x01aa2357, 0x23702b80, 0x402a2707, 0x00012b40, 0x7f85eb95, 0xc02b2b27,
0x1280806b, 0x21e68218, 0x04830400, 0x01cd012b, 0x001d0040, 0x002a0027, 0x22e98232, 0x82062726, 0x832720d0, 0x3573085e, 0x06222634, 0x3e342315,
0x16323301, 0x17141517, 0x36322715, 0x22233537, 0x27161415, 0x33012f33, 0x23272313, 0xac012307, 0x1e160202, 0x2b01221a, 0x24131e27, 0x21131f16,
0x01231f14, 0x1a0e5306, 0x13391806, 0x122b57f5, 0x15296524, 0x40291572, 0x1d160e05, 0x0e1f1c18, 0x0b101210, 0x1f0e1a0e, 0x0e1a531b, 0x0b0d1803,
0x0e0e1e22, 0xff317344, 0x71373700, 0x9389089f, 0x95b43620, 0x23150523, 0x2299a835, 0xa3a0ac01, 0x2a2b229c, 0x419f862a, 0x9fb50b33, 0x15331722,
0x22293941, 0xa5eaea02, 0x002c089f, 0x00000800, 0xa601e7ff, 0x0b009601, 0x21001700, 0x3b002b00, 0x56004a00, 0x00006100, 0x17062601, 0x3e070616,
0x36262701, 0x23263627, 0x062b0b82, 0x012e1716, 0x37160607, 0x82062726, 0x85372015, 0x580e8204, 0x262306c7, 0x8333013e, 0x202f8235, 0x052f6437,
0x22373622, 0x17242f82, 0x26360714, 0xb0081082, 0x16363736, 0x22270607, 0x36161716, 0x01063237, 0x296a0b60, 0x0402100d, 0x08150e26, 0x050c3b1d,
0x0d1b4a08, 0x1e101f20, 0x44622b0a, 0x2c2c0b0c, 0x38730513, 0x0207123a, 0x0a526b30, 0x12030241, 0x0926a22b, 0x14071017, 0xa2852742, 0x150b0957,
0x34331913, 0x2406351f, 0x5691191f, 0x2a114c02, 0x04050304, 0x61350f18, 0x24190162, 0x0207803f, 0x013e0117, 0x1a123c3a, 0x1a220101, 0x340e2816,
0x1e37323c, 0x1a1b3117, 0x1c10b238, 0x0a060518, 0x24090307, 0x0d02070c, 0x14161401, 0x0b013f04, 0x0d030b06, 0x06040a06, 0x2012091e, 0x03050679,
0x3a4f8203, 0x10011306, 0x01240911, 0x09411901, 0x01010302, 0x10832f03, 0x0403080d, 0x43101b10, 0x002f05fb, 0x01d60100, 0x001d0053, 0x004e002a,
0x82143700, 0x3d2635e0, 0x14152301, 0x37361716, 0x2f22010e, 0x33161501, 0x013e3732, 0x2d081482, 0x15233507, 0x011f1606, 0x27013f32, 0x23352526,
0x0607012e, 0x07010e07, 0x013e3315, 0x23353335, 0x16363435, 0x011d1617, 0x3317011e, 0x46822235, 0x03cc3b08, 0x3e030708, 0x0f13161e, 0x0e1d1602,
0x22171504, 0x3f0e0d1a, 0x1c023e63, 0x0b0c0517, 0x01100203, 0x3708156c, 0x17070823, 0x1903011c, 0x111a1a22, 0x01030510, 0x0902232d, 0xbd82b50c,
0x04030624, 0x4f826954, 0x0c013508, 0x02070d0c, 0x0c150838, 0x698c1221, 0x23189ca7, 0x02050103, 0x3e431302, 0x01052522, 0x1a280a04, 0x1a23028e,
0x0a0b113e, 0x05050804, 0x022f223a, 0x0b090c3f, 0x0120df82, 0xdf830382, 0x82006b21, 0x3337310d, 0x33173717, 0x07272315, 0x6a2b2327, 0x55684142,
0xd5240484, 0x2a96f25c, 0xe74b0382, 0x01d62b09, 0x0024006b, 0x0036002d, 0xd9823700, 0xce823320, 0x82070621, 0x3237223b, 0x213f8316, 0xf882010e,
0x37362722, 0x06264782, 0x27262223, 0xd7562523, 0x87232007, 0x232b3108, 0x1b162007, 0x0b010124, 0x114c4118, 0x23072016, 0x0821108b, 0x29118309,
0x120d4a01, 0x12121b12, 0x06840ef8, 0x1813d52e, 0x151b2401, 0x6df22210, 0x2a131802, 0x35230d8c, 0x88121c12, 0x31a78302, 0xff000002, 0x01d601ea,
0x002f00ab, 0x01000038, 0xd8841507, 0x8e831520, 0x82233521, 0x2eb382ac, 0x3521011d, 0x33373634, 0x27012e27, 0x82013e26, 0x05cf63ba, 0x15333723,
0x08a78705, 0x3489013c, 0x225e4c34, 0x01181215, 0x7b060343, 0xfe181267, 0x8d121856, 0x082c1d64, 0x3a462308, 0x1801430a, 0x5e221512, 0x1812abfe,
0x18182418, 0x04346b01, 0x37222b33, 0x0c351219, 0x8147df0a, 0xb5012a06, 0x231c2301, 0x2322123b, 0x23468235, 0x0b2a2238, 0x4109374d, 0x1622077f,
0xa5821600, 0x07233524, 0x03822723, 0x1d062224, 0x86823301, 0x35332608, 0x26343634, 0x1516cb01, 0x80161560, 0xaa181240, 0x0a8b2b40, 0x1500010a,
0x19551515, 0x15152a12, 0x311c012a, 0x08c7411d, 0x4001c027, 0x00001000, 0x083b8537, 0x34013e23, 0x0f232726, 0x40072301, 0x2b1571ba, 0x01091301,
0x2aab0b2a, 0x5555406b, 0x43320255, 0x96150133, 0x453a822a, 0x96390863, 0x1a001300, 0x22001e00, 0x00002600, 0x1f011e13, 0x15271501, 0x11273523,
0x27018423, 0x0e17013e, 0x2e330701, 0x587a0382, 0x37b53509, 0x2a96074c, 0xc02b402b, 0x3b4e012a, 0xb50a3020, 0x6b55310a, 0x013f0084, 0x35450195,
0xc41a2b5a, 0xfcfe26de, 0xebfe1501, 0x4e3b2001, 0x1c230129, 0x2a95231c, 0x622a2b2b, 0xe0240867, 0xa0019f01, 0x26088582, 0x2500000b, 0x27073337,
0x23072733, 0x0123011b, 0x603a273e, 0x34343a62, 0x4d83814e, 0xbfbf4d52, 0x01016868, 0x4e00fffe, 0xeb28066b, 0x0f008001, 0x19001500, 0x088b4818,
0x32213329, 0x2e113736, 0x18052301, 0x7508ff9d, 0x0120064b, 0x2706a357, 0xabd580fe, 0xab5580fe, 0x240dc457, 0x80d5552b, 0x218d822b, 0x00820003,
0x57830120, 0x1b000b28, 0x00002100, 0xa359013f, 0x27372408, 0x76163221, 0x272a078d, 0x17013e11, 0x23352111, 0x95599f35, 0x898d200a, 0x18122965,
0x12180101, 0xc3ab8001, 0x200a8a59, 0x0bd450eb, 0xd6fe2b24, 0x6e8255d5, 0xd6287385, 0x0d005601, 0x1c001600, 0x1e29cb82, 0x15331701, 0x2e231523,
0x04771801, 0x2813830b, 0x40c02335, 0x16160154, 0x21058295, 0x9b5a5401, 0x6a872506, 0x5501402a, 0x40200e82, 0x54250484, 0x4830013f, 0x21028230,
0xd18255bf, 0xdb410020, 0x01d43b06, 0x00030096, 0x000b0007, 0x001e000f, 0x27070100, 0x37170737, 0x07270727, 0x07822717, 0x07821720, 0x17164608,
0x33373307, 0x36273317, 0x24d30134, 0x40ad2455, 0x2a604082, 0x156a2a5c, 0x069e1638, 0x0a07065c, 0x021e2b22, 0x08292b20, 0x93150201, 0x4a6e7e15,
0x364bb16f, 0x20250d4a, 0x35091425, 0x64070a09, 0x0c775b5b, 0x0d5b601a, 0x19000822, 0x22276d82, 0x32361127, 0x82061117, 0x0749086c, 0x32172737,
0x011f1637, 0x32331637, 0x71010137, 0x65e06565, 0x15035e65, 0x17650315, 0x1d0c0b0a, 0x0a094d22, 0x78010f08, 0x1d56fe1d, 0x1daa011d, 0x03037ece,
0x0204aa7e, 0x7e383015, 0x00000403, 0xff000002, 0x01a001ea, 0x08c78297, 0x00002721, 0x06071401, 0x1e37010f, 0x07061701, 0x0607010e, 0x3f363726,
0x012e0701, 0x3e373627, 0x4c363701, 0x01350833, 0x040e0200, 0x5a441501, 0x171c0102, 0x0503273e, 0x01050c03, 0x3e0e8514, 0x0304263f, 0x3624241b,
0x93012424, 0x16130204, 0x5a020105, 0x25283544, 0x0601163d, 0x82151103, 0x445a29ef, 0x3e262834, 0x01970215, 0x36252583, 0x00000024, 0x08374506,
0x07000324, 0xe7821000, 0x23055b4b, 0x07153335, 0x25220382, 0xbf5b1632, 0x699a8205, 0xc85b051a, 0x44272008, 0x2808085a, 0x2a2a2aab, 0x763000ff,
0x05abfe05, 0x30253075, 0x30304930, 0x024f3124, 0x4e020401, 0x19191332, 0xc01a1a26, 0x2a556b6b, 0x06525c2a, 0x5c01c021, 0xe820056b, 0x20065a5c,
0x05735cc1, 0x300a5f5e, 0x000f0006, 0x2100001a, 0x33153727, 0x1e032315, 0x307b8601, 0x07061732, 0x35231714, 0x8001013e, 0x55554040, 0x2d6c86ab,
0x01192025, 0x6101dc07, 0x2a2b4040, 0x5e864001, 0x2107d528, 0x2b15162d, 0xe2833024, 0xe7880520, 0x13000628, 0x24001b00, 0x5f882d00, 0x52852720,
0xeb823720, 0x07010e26, 0x37343315, 0x1320db82, 0xe7887488, 0x6b317284, 0x6101f309, 0x15382048, 0x96c11814, 0x4836230d, 0x2583867e, 0x24181812,
0x81831919, 0x14171532, 0x01302540, 0x2d0f090b, 0x1c221506, 0x04011902, 0x2a209286, 0x43083045, 0x6b21072f, 0x25eb8700, 0x33352335, 0x425d1735,
0x25eb8a09, 0x40555595, 0xeb8e00ff, 0x2b2a2b25, 0xa92b0140, 0x205f85eb, 0x83eba623, 0x9dc02072, 0xa08083ea, 0x000521e9, 0x094f4818, 0x26001522,
0x5f06c546, 0x03320aa1, 0x1632013e, 0x22010e17, 0x012e3726, 0x2e070622, 0x036b3501, 0x6a142005, 0x32220570, 0x59183436, 0x14200704, 0x0d904718,
0x4009c439, 0x16094040, 0xdb353c35, 0x5434541a, 0x0213101a, 0x61484861, 0x18981302, 0x620c5b91, 0xfe300c26, 0x16160fa7, 0x1414110f, 0x17171b30,
0x1d35151b, 0x35822f82, 0xd2351d2e, 0x2b3f2a01, 0x6a2a3f2b, 0x121b1201, 0x00200282, 0x04200082, 0xc028bb82, 0x6b010c02, 0x1a001100, 0x2c25bb82,
0x3e370000, 0x05424a01, 0x27262224, 0xa8823523, 0x41183220, 0x0d8209ba, 0x3e079352, 0x17153337, 0x1be32707, 0x29393b70, 0x58491318, 0x02cf1348,
0x12124960, 0x48303024, 0x7acf3030, 0x18280a59, 0x44103420, 0x192a3993, 0x28282b82, 0x2b272e2f, 0xd6013024, 0x2106d441, 0x537a81fe, 0x3ca9270a,
0x00281c1e, 0x93840600, 0x93820020, 0x95820520, 0x6f002421, 0x708407d3, 0x57413720, 0x09bd6c0a, 0x3329a783, 0x013e1732, 0x26373407, 0x22228223,
0x43263315, 0xdd420952, 0x83552008, 0x7b162089, 0x2d3b0a9f, 0x0202543f, 0x472e3f54, 0x7506cf12, 0x14191430, 0x0e076e42, 0x024e320e, 0x85150299,
0x132427c8, 0x19261919, 0x9a839519, 0x4c187920, 0x2c230a9d, 0x82405402, 0x2e01333c, 0x2b2b4026, 0x95242005, 0x01021417, 0x0b170c20, 0xc65f2201,
0x0000230d, 0x00820008, 0x01000223, 0x22098256, 0x861f0011, 0x004a25cf, 0x01000051, 0x43189a87, 0x07320826, 0x14070622, 0x3632011e, 0x013d2637,
0x07222126, 0x1b821415, 0x32161727, 0x2e35013e, 0x601d8301, 0xe38405f7, 0x36343528, 0x1d011e25, 0x09613301, 0x3e232406, 0x42000101, 0x3d080c19,
0x011e167d, 0x171d180f, 0x010a1808, 0x180a0c0a, 0x0b060a04, 0x010f181d, 0x672aa11e, 0x042a0104, 0x4121c667, 0x01144002, 0x40141048, 0x19bd4102,
0x10b41031, 0x2b550131, 0x3f2a2a3f, 0x28422a2b, 0x15350806, 0x180f171e, 0x1f0c0d0e, 0x04040628, 0x061f2806, 0x0e060409, 0x1e170f18, 0x20252580,
0x0b252520, 0x201c1f04, 0x0b1b1029, 0x29101b0b, 0x1b1f1c20, 0x09090c01, 0xf742180c, 0x826b2008, 0x001024f7, 0x82300014, 0x150e19ef, 0x05714507,
0x37163227, 0x27352315, 0x28c78223, 0x14171632, 0x06010f06, 0x2c108207, 0x013f3634, 0x012e3736, 0x01150622, 0x06234715, 0xaafe5739, 0x60926002,
0x200a204c, 0x01243724, 0x13060d0f, 0x10122001, 0x83010d06, 0x15012aa4, 0x49303024, 0x2bfa3030, 0x3808822b, 0x6a202027, 0x24241b0b, 0x081b101b,
0x04170e04, 0x0a211404, 0x0e100904, 0x054f6712, 0x31050f46, 0x006b01eb, 0x001f0003, 0x00310028, 0x0043003a, 0x8a9e2500, 0x27460720, 0x95b52023,
0x61cb209f, 0x544207f7, 0x4e322106, 0x22093946, 0x998b1919, 0x625520af, 0x4e460504, 0x0ab36517, 0x00064408, 0x00150012, 0x1e173700, 0x27013b01,
0x012f3417, 0x012b012e, 0x013e3713, 0x2607012f, 0x0d150525, 0x07a632f4, 0x0d14068f, 0x0522de4c, 0x6363ca04, 0x0d0b4058, 0x0a0e0158, 0xfe0d0afa,
0x0b083d80, 0x85abab47, 0x00022d4f, 0x0b008001, 0x1f001a00, 0x07250000, 0x09f74e18, 0x08816218, 0x012f2631, 0x05373637, 0x21170721, 0x4c1e9501,
0x824d1e4d, 0x1e4c3802, 0x19128c4c, 0xc0fe1219, 0x73730c16, 0x4001160c, 0x6464c0fe, 0x84734001, 0x2023851d, 0x081e82c0, 0x1912d638, 0xadad1201,
0x952b0112, 0x00040095, 0x01caff00, 0x00a701ab, 0x0033001b, 0x0041003c, 0x010e1300, 0x26171615, 0x27012e27, 0x35011f06, 0x0e27033e, 0x36010f01,
0x05822e35, 0x021e1724, 0x19841517, 0x33260883, 0x17373635, 0x1e830337, 0x3e172808, 0x07060702, 0x0bff3617, 0x02050111, 0x1b300e03, 0x19860501,
0x01061929, 0x050e301b, 0xc5110106, 0x1803631b, 0x83071929, 0x82062019, 0x182a2518, 0x361b4f14, 0x2f081c82, 0x1a162804, 0x11120106, 0xa601051f,
0x13183119, 0x13040614, 0x191a1021, 0x1e0e2b87, 0x10162924, 0x14091321, 0x44301815, 0x2213631b, 0x0c310e1e, 0x162c1c82, 0x0e1e2429, 0x0f0e2727,
0x15011b4e, 0x082a2082, 0x29251028, 0x1f0b0b5a, 0x8347001a, 0xc0430805, 0x07008001, 0x0d000a00, 0x14001000, 0x07010000, 0x17373311, 0x35051133,
0x07332717, 0x27372717, 0x01333523, 0x3e80c000, 0xe9fe8042, 0x40802b40, 0x13404055, 0x80018484, 0x40effe6f, 0xfc110140, 0x82564080, 0x40402301,
0x0082002b, 0x04840120, 0x1e01f03d, 0x00002500, 0x17013e13, 0x35171606, 0x3e171614, 0x3e153501, 0x16362701, 0x83010e17, 0x06263202, 0x07263617,
0x36272636, 0x63041026, 0x1f170134, 0x08008210, 0x01171f22, 0x1f046334, 0x1b3d0112, 0x03214d03, 0x034d2103, 0x12013d1b, 0x05031501, 0x0546051d,
0x01130125, 0x25200282, 0x1d2e0a82, 0x48140305, 0x043d0404, 0x06063f0a, 0x08820a3f, 0x83480421, 0x00083c7a, 0x01ddff00, 0x00a001e0, 0x004a0042,
0x005a0052, 0x00980063, 0x00aa00a1, 0x83322500, 0x05a4587c, 0x26143122, 0x26260882, 0x010e3736, 0x58692e07, 0x07062b08, 0x33023e22, 0x1e373634,
0x1b821501, 0x17011e22, 0x3e253282, 0x06163701, 0x383b8407, 0x37361607, 0x010e0727, 0x27012e37, 0x36321707, 0x07062225, 0x012e2717, 0x820f8217,
0x361622d6, 0x242c8217, 0x3523012e, 0x83418234, 0x82478214, 0x8207202b, 0x061e5948, 0x27205582, 0x26820d82, 0x32071722, 0x27227d83, 0x21821617,
0x15238b82, 0x8217013e, 0x0949845e, 0x03a90106, 0x4e020331, 0x17230137, 0x241c1f18, 0x06132916, 0x15240606, 0x02010e17, 0x13010327, 0x08391f03,
0x30060902, 0x0c110d22, 0x1f0e0210, 0x02023623, 0x150a1c34, 0x0e13020b, 0x02032b03, 0x180cc721, 0x02191201, 0x1702d907, 0x071b1304, 0x06fefe0d,
0x0225010d, 0x14290802, 0x17030a1a, 0x4629110e, 0x31074315, 0x1101035d, 0x120a284e, 0x14171307, 0x013f6b03, 0x0910021b, 0x0c050a14, 0x020f0601,
0x2a220122, 0x0f0b4326, 0x08191460, 0x040a200c, 0x21011d04, 0x090e0d14, 0x3d055928, 0x03250303, 0x27da1701, 0x03141a1b, 0x2b0f2b02, 0x38150326,
0x1712090e, 0x01110307, 0x250a1901, 0x32020346, 0x0306021d, 0x1d090306, 0x1502012a, 0x054a0501, 0x09065606, 0x2023140c, 0x201e320c, 0xa6050f16,
0x21010a01, 0xb8130212, 0x2002130b, 0x1261040d, 0x051e0119, 0x200bd909, 0x0e360313, 0x0e230c0a, 0x181a3b46, 0x3d08f482, 0x120f1101, 0x1e060512,
0x1f051c02, 0x04633218, 0x363e1107, 0x16181606, 0x1e040122, 0x40171964, 0x07640b0e, 0x01070b03, 0x04ee090a, 0x2405012a, 0xc00c0618, 0x15130901,
0x2c23011e, 0x44180500, 0x252b0c13, 0x3d003100, 0x33370000, 0x82352315, 0x0a0f6603, 0x34013d25, 0x60232726, 0x332005ab, 0x18055d5c, 0x250933c1,
0x2e03012e, 0x02492701, 0x010e2305, 0x00832aeb, 0x12191224, 0x04820e0e, 0x08862a20, 0x84642726, 0x64840303, 0x444d0585, 0x2d058405, 0x2b802bab,
0x12180180, 0x12120e20, 0xbc4d200e, 0x200b8805, 0x26318855, 0x83fe8464, 0x84405401, 0x83058232, 0x000037b7, 0x5b01ba01, 0x24001100, 0x37002e00,
0x00004000, 0x012e2725, 0xea6b0607, 0x013b2105, 0x34338f82, 0x013e3705, 0x011f1617, 0x06070616, 0x012e012b, 0x823f3435, 0x36342405, 0x82141632,
0x012e2127, 0x17200985, 0x33080887, 0x0e7bb101, 0x080f1831, 0x170d0d7b, 0x1bf6110f, 0xb9fe0124, 0x0810057a, 0x057a0305, 0x06040805, 0x030c09f6,
0x1717128d, 0x12191924, 0x18181235, 0x58181824, 0x2a080685, 0x0d17d561, 0xd50f080d, 0x090e3018, 0x111b2401, 0x0507d507, 0xd5050304, 0x03051008,
0x05090c01, 0x17015505, 0x25181825, 0x58600117, 0x012006e9, 0x00210786, 0x09bf4600, 0x13000f22, 0x095b8a18, 0x0e210127, 0x1e110701, 0x075a4f01,
0x33110129, 0x11233311, 0x50330733, 0x01220902, 0x5e4ffec0, 0x06004f06, 0xab6efe27, 0x95ababd5, 0x27008480, 0x18016b01, 0x12ebfe12, 0x012ead82,
0xfe181215, 0xfe1501c1, 0x4b1501eb, 0x01821520, 0x7d000021, 0xab2805fb, 0x0f009601, 0x1d001400, 0x12eb4b18, 0x2715332c, 0x11211707, 0x17371533,
0x4b183335, 0xd22a10d8, 0xc015162b, 0x401500ff, 0x4b186b40, 0x6b2a0ec6, 0x01eb1010, 0x3030c056, 0x008200c0, 0x82000221, 0xd6012300, 0x71826e01,
0x00001e37, 0x15333525, 0x06262303, 0x16141507, 0x3b013e17, 0x0e231501, 0x05666101, 0x36352732, 0x40950126, 0x5e066bd5, 0x06121a06, 0x4040202e,
0x6a3fbc83, 0x01021a3e, 0xd5d56b2d, 0x1a020001, 0x221c803e, 0x2a281e08, 0x18241801, 0x064a0601, 0x7f2503d5, 0x17270c37, 0x1f001b00, 0x5e010000,
0x33210e92, 0x058a5e21, 0x35210322, 0x01230184, 0x182b1595, 0x230c488a, 0x2a01d6fe, 0x01210383, 0x0a225e6b, 0x0112182d, 0xfe18122b, 0x2b2ad6ab,
0x5e040000, 0x638508fb, 0x65a12320, 0x15330722, 0x07214b19, 0x69181321, 0x698509bb, 0x6b6b9522, 0x95216c97, 0x20d3826b, 0x186f8806, 0x200c038c,
0x20538237, 0x0a1b6425, 0x8a183720, 0x1e22084f, 0xdb820501, 0x21350123, 0x29138215, 0x35330723, 0x2b2b9523, 0x2d6a2b01, 0x12192105, 0x1223f084,
0x85abfe19, 0xd6fe2a7e, 0x552b2bd5, 0x2bc02a2a, 0x4d4818ab, 0x28fc850a, 0xd5fe2b3d, 0x2b80d6d6, 0x52f6822b, 0x082b0aa3, 0x14000e00, 0x20001a00,
0x43370000, 0x2229053a, 0x07172726, 0x17270717, 0x22018237, 0x82273707, 0x27172201, 0x24018207, 0x3426c037, 0x21028226, 0x0082264a, 0x82894b21,
0x4c262204, 0x210b8a8a, 0x1d831ac0, 0x90662621, 0x82248518, 0x06e343fe, 0x8001d630, 0x1b000700, 0x2f002300, 0x00003800, 0xeb700f25, 0x53372005,
0x491806ac, 0x352c0727, 0x03263411, 0x37331121, 0x07331733, 0x220a534c, 0x85262207, 0x000125a9, 0x142c2c14, 0x972b0382, 0x27802744, 0x18181244,
0x83560112, 0xaafe2905, 0x275a2757, 0x3d2dab57, 0x079d9318, 0x1b2d3d28, 0x24362424, 0x2f84eb24, 0x96141424, 0x5b182b2b, 0xfe260ba1, 0x2a0001d6,
0xe84c162a, 0x3724220b, 0x42028224, 0x00220587, 0xb3830100, 0x0b000324, 0xaf820f00, 0x15232808, 0x35211733, 0x16323337, 0x21010f15, 0x40950135,
0x6bfe4040, 0x0c09d5ab, 0x2f0180d9, 0xd56b2a95, 0x16090cab, 0x83008080, 0x067b5aef, 0x0c00032e, 0x31001500, 0x00003700, 0x1733013f, 0x2320c388,
0x3728cc87, 0x012b012e, 0x010f0622, 0x2008c768, 0x2a098821, 0x37233527, 0x206b3315, 0x552020ea, 0xfc280cc3, 0xea0b1004, 0x2c04100b, 0x09236e82,
0x8400010c, 0x56d52706, 0x60ab5680, 0xc0556b60, 0x26088208, 0x0c0c0ad5, 0x82aa800a, 0x0c012423, 0x85151509, 0xabaa2507, 0x002b402b, 0x3a05cb4d,
0xc001c001, 0x1a001100, 0x3a003600, 0x4c004300, 0x0e130000, 0x17161401, 0x18373632, 0x2011f9fa, 0x25a68607, 0x3632013b, 0xa683013d, 0x27280985,
0x0723012e, 0x17211733, 0x5107b450, 0xcb2c08ae, 0x1c24241c, 0x2e072015, 0x076e152b, 0x071dfb18, 0xb98f3720, 0xce832c20, 0xfe20ea23, 0x82e58dd6,
0x36242e9b, 0x13180124, 0x132a2b2b, 0x120c2b18, 0x2602820c, 0x80090c80, 0x820c09ab, 0x831620f1, 0x80ab2505, 0x60200c09, 0x20070d4d, 0x06154d01,
0x21086f42, 0x7f410096, 0x414e2007, 0xce85237f, 0x09785018, 0x9b41d882, 0x011e2106, 0x2e231b85, 0x823e3701, 0x23372f0a, 0x20ab3337, 0x0e2020c0,
0x121b1212, 0x0685cd12, 0x1004d124, 0xdc88c00a, 0x0c01d52f, 0x0c091509, 0x0a110397, 0x03110ac0, 0x220e852d, 0x82040b0c, 0x0f012825, 0xd5e22030,
0x4f6a6060, 0x058505ee, 0x0b0ad524, 0xdc8c0a0b, 0x1189c020, 0x17055827, 0x2a0c0a0c, 0x09c37360, 0x0f006b25, 0x5f250000, 0x372106d7, 0x05656821,
0x0cfba018, 0x4f181520, 0xff240a48, 0x00181200, 0x83081741, 0x4613203b, 0x0020069f, 0x0fe5a018, 0x15231724, 0x03823733, 0x03862520, 0x0be1a018,
0x2b2b962f, 0xff8080aa, 0x012a2a00, 0x01d5d500, 0x070e5d6b, 0xc0236987, 0x442b2b2b, 0x0436066b, 0xe4ff0000, 0x8301d601, 0x1c000c00, 0x26002100,
0x01130000, 0xb0852707, 0x37273723, 0x24b28517, 0x35332707, 0x20038323, 0x216e8207, 0x04832735, 0x01472308, 0xfe311f72, 0x031812ec, 0x01541f14,
0x0618121e, 0x2b5e3458, 0x1423b489, 0x2a146c2b, 0x8ffe7401, 0x7084311f, 0x13080924, 0x8284181f, 0x570a0d2c, 0x552b2a2b, 0x2b6c142b, 0xe7840014,
0x0b2b7b86, 0x1f001600, 0x27002300, 0x93250000, 0x2335257c, 0x23273303, 0x35227782, 0x86840527, 0x01332727, 0xfe311eb7, 0x397d82ed, 0x01551e15,
0x0718121f, 0xe861f523, 0x282d2840, 0x0a2b012b, 0x2b5f342a, 0x7f86038a, 0x14080822, 0x0b247f87, 0x00fff424, 0xa8202484, 0x54069357, 0x0b220ddb,
0x87840f00, 0x23250025, 0x82173335, 0x86272003, 0x41172007, 0x112f0fc1, 0x00011121, 0x55802b2b, 0x2b2bd555, 0x18ababd5, 0x260b774e, 0x560198fe,
0x822b2b80, 0x2b2b2261, 0x0edd41eb, 0xff2a0124, 0xfb820100, 0x00000828, 0xd601c0ff, 0xab566b01, 0x841b2006, 0x00272577, 0x1700002b, 0x21050c4a,
0x07823335, 0x778e3720, 0xf5412720, 0x2bc0270e, 0x2b802a80, 0xaf18fe6b, 0xd22009dc, 0x200cfb41, 0x82868215, 0x8e2a2002, 0x42952085, 0x09200800,
0x1149878e, 0x002b2207, 0x41898d2f, 0x11410709, 0x208d851b, 0x1a164140, 0x7f838f86, 0x83822a20, 0x23171d41, 0x00020000, 0x01220082, 0x034301d6,
0x11414305, 0x11211122, 0x230c4543, 0x560198fe, 0x410f4943, 0x4755076b, 0x90dd8509, 0x1525274d, 0x15273533, 0x518d3521, 0xeaeaae24, 0x538f2a01,
0x5521b982, 0x059b482b, 0x88000021, 0x0017229f, 0x12e5431b, 0x0527a382, 0x15211521, 0x8d231533, 0x27ab8259, 0x0001d5fe, 0xd5d500ff, 0xb3855f8f,
0x782b4021, 0xfe200773, 0x80226382, 0x6b821300, 0x011e3b08, 0x07010e17, 0x010e2722, 0x27013e27, 0x3e35012e, 0x5a000101, 0x79020279, 0x3223285a,
0x17240256, 0x021f1b01, 0x02800179, 0x61484960, 0x11260a01, 0x0a312502, 0x49223c17, 0x7b4a0060, 0x844b8705, 0x920120ad, 0x1517274f, 0x33273533,
0x57932335, 0x822a4521, 0x295c9300, 0x2b2a2ae9, 0x00040080, 0x5f8bff00, 0xb1951f20, 0x6b351721, 0x6593092f, 0x822bc521, 0x932b20f9, 0x42be2066,
0xca8205c9, 0x2a081f49, 0x001800a0, 0x0020001c, 0x822e0024, 0x0622286d, 0x0e232607, 0x58140701, 0x3525068d, 0x2227012e, 0x05c15b07, 0x46652720,
0x69072006, 0x3e08089f, 0x2c1d0b01, 0x24131109, 0x1d230130, 0x231d1501, 0x13243001, 0x282c0811, 0x15401515, 0x15158015, 0xeb090cc0, 0xa0010c09,
0x01081b22, 0x2d1d2530, 0x08989808, 0x30251d2d, 0x221b0801, 0x826a95c0, 0x15362600, 0x090c0c09, 0x055b4115, 0x0200002d, 0x006b0100, 0x00190006,
0x4a00002f, 0x07210521, 0x05624137, 0xab4d2120, 0x05ae4d05, 0x34013e25, 0x82022f26, 0x06222611, 0x010e020f, 0x08228215, 0x3e36ab29, 0x2a9d5536,
0x3c010138, 0x36ebfe2e, 0x40010149, 0x2f4a1531, 0x1c04563b, 0x211a2124, 0x2b3f0906, 0x0b103721, 0x822a2216, 0xab2708a4, 0x95564040, 0x2d2b3b04,
0x4802013d, 0x06463336, 0x01012f27, 0x2401e248, 0x02022434, 0x01342a20, 0x02151d22, 0x82222f04, 0x030021d8, 0x97859b82, 0x28001222, 0x25209783,
0x122f9318, 0x34359d83, 0x3e023f36, 0x011e3301, 0x011e021f, 0x33250614, 0x33353315, 0x2e931827, 0xfe322214, 0x2a5a82eb, 0x0b16222a, 0x2b213710,
0x8206093f, 0xfe2422a1, 0x28c283fa, 0x014838ea, 0x06272f01, 0x34931846, 0x82a62008, 0x2f222cb0, 0x1d150204, 0x2a340122, 0x82020220, 0x406a23a5,
0x97825540, 0x3205db5a, 0x00960196, 0x00110005, 0x37031700, 0x010b1733, 0x84152315, 0x2335227b, 0x36e88235, 0x6a4040aa, 0x2b2a2b2b, 0x2a01152b,
0xd6fe8080, 0x2a2b5501, 0x182a6b6b, 0x200ad352, 0x2c3f82d6, 0x000e000b, 0x1300001b, 0x27070137, 0x050e5b06, 0x27371725, 0x84270737, 0x14173ad1,
0x15270706, 0x1b9f011c, 0x5b45353b, 0x25010278, 0xc04a8a2f, 0x3d1a7089, 0x380d8222, 0x01701213, 0x61fe1b75, 0x01253c1c, 0x455b7802, 0x4a40fa35,
0x12704076, 0x230c8213, 0x701a3d22, 0x2105834c, 0x678501d5, 0x19001623, 0x8e7c8200, 0x07062569, 0x3617011e, 0x37207184, 0x6f830982, 0x2e373623,
0x228b8201, 0x8c013e27, 0x33442e79, 0x02011a58, 0x29324960, 0x39336959, 0x217f8401, 0x1184191f, 0x1a1f2823, 0x2e898d3d, 0x29596de5, 0x02604932,
0xa3581a01, 0x859d396c, 0x281f2190, 0x19241284, 0x0013121f, 0x00319b84, 0x01eb0100, 0x0013002b, 0x0025001c, 0x13000031, 0x05734221, 0x23237f82,
0x8207010e, 0x6d3e2006, 0x32240510, 0x07263436, 0x20072c57, 0x0a674125, 0x00018022, 0x2605884b, 0x560e2d1a, 0x841a2d0e, 0x5201280c, 0x170f0f0b,
0x82410f0f, 0x0f162e06, 0x2bf0fe0f, 0x2b2b2a2b, 0x3d012b01, 0x231f832d, 0x16141416, 0x2005bb4b, 0x21258335, 0x06860f17, 0x25834020, 0x20059f41,
0x879f8205, 0x2299839b, 0x4443003a, 0x26210911, 0x209c8227, 0x219c8423, 0x977a1537, 0x011e2208, 0x23a58333, 0x15330727, 0x0814f218, 0x16321722,
0x2005d65b, 0x2e088737, 0x42327501, 0x32420202, 0x36102f1b, 0x851b2f10, 0x2a202a0c, 0x2416202a, 0x24096409, 0x210a8316, 0x008420fa, 0x0c09ea27,
0x0c0c120c, 0x21068534, 0x35822b01, 0x01423229, 0x17141417, 0x82324201, 0x012b2d38, 0x172b3f2a, 0x2b171313, 0x1b012a3f, 0x10203284, 0x4a05bf4a,
0xa74706c6, 0xea250806, 0x9601d601, 0x11000800, 0x23001a00, 0x2b002700, 0x42002f00, 0x35050000, 0x15333533, 0x21230614, 0x3d262223, 0x3eb58201,
0x16323313, 0x3523011d, 0x23152723, 0x34352315, 0x37133336, 0x37270735, 0x17010f27, 0x82372735, 0x0f14251b, 0x012f0601, 0x34332d82, 0x3236013f,
0x406b0117, 0xfe0d132a, 0x130d4ae0, 0x85d6402a, 0x2d118305, 0x155656ca, 0x16555555, 0x10f05656, 0x02857510, 0x08100825, 0x82402a15, 0x0d132523,
0x8001404a, 0x2a200583, 0xfe290f84, 0x316231bb, 0x32323125, 0x27078287, 0x87120a3b, 0x0a440a12, 0x08840282, 0x00040422, 0x38050744, 0x8001d601,
0x33002500, 0x00003b00, 0x16143325, 0x2e013e32, 0x013e2702, 0x2ec38237, 0x2315011e, 0x0622012e, 0x17021e14, 0x82070614, 0x012e23ba, 0x49423303,
0x23172205, 0x3acb8227, 0x34013e37, 0x15012b26, 0x252b0001, 0x22012535, 0x01024047, 0x21402129, 0x82012a29, 0x4722230f, 0x0d84023f, 0x4ad62308,
0x01024232, 0x2f501e24, 0x4a2a284c, 0x202a2a20, 0x18128020, 0x0f122318, 0x2c1d2b23, 0x082f2f08, 0x0f8e1d2c, 0x011d0132, 0x38243242, 0x9595a10e,
0x3f2a01c0, 0x0000952b, 0x2e073b42, 0x00080080, 0x001e0013, 0x002e0029, 0x82153700, 0x3735238f, 0x0282012e, 0x0b832720, 0x06373322, 0x21053755,
0x12823632, 0x68181720, 0x232d0814, 0x3315010f, 0x53025537, 0x55410241, 0x05df6da9, 0x34521923, 0x08098437, 0x02609227, 0x05776002, 0x152c1603,
0x031a0707, 0x2c812b05, 0x20409582, 0x023e0530, 0x01372f05, 0x24402430, 0x13520130, 0x330982d6, 0x25303025, 0x04ac3024, 0x08152b15, 0x26041a09,
0x00812c81, 0x96309b89, 0x09000200, 0x1a001000, 0x00002300, 0x27210301, 0x8206ea7d, 0x013e299f, 0x012e1737, 0x23133527, 0x27200982, 0x2e056b6a,
0x00012317, 0xdbd601eb, 0x05061e1e, 0x8520141d, 0x78340806, 0xa3263101, 0x012c249c, 0x05312b78, 0x9c202a06, 0x6bfe9501, 0x1f3007cb, 0x01051d14,
0x151d3107, 0x2746051d, 0xfe4f0737, 0x253709e6, 0x43084fb5, 0x072f1f2c, 0x2005f743, 0x059342ff, 0x1805e766, 0x271bad62, 0x2b061415, 0x3d262201,
0x33259382, 0x33352315, 0x0c807f37, 0x2b0bba6c, 0x80090c0c, 0x15750c09, 0x1536d636, 0x6c0c0f5d, 0x7e220bfe, 0x27820996, 0x15559627, 0x00152b2b,
0x088b8204, 0x96010023, 0x0b008001, 0x1d001300, 0x00002100, 0x07270725, 0x37170717, 0x37273717, 0x07232735, 0x35211523, 0x05137101, 0x21113523,
0x24828217, 0x2d2d2d01, 0x06de7b1f, 0x6a162d33, 0x2a014a16, 0x1219ebfe, 0xff1912aa, 0xaaaa2b00, 0x09ce7be1, 0x15a82e22, 0xfe206682, 0x23059e71,
0x00d52b00, 0x2205476b, 0x839601d6, 0x07133179, 0x8027011b, 0x55d5d555, 0xfe809501, 0x802a01d6, 0x0adb4018, 0x09000426, 0x21010000, 0x21282282,
0x07173337, 0x00ff8001, 0xfe252982, 0x38d2388a, 0x232e86a1, 0x00e15656, 0x06200082, 0x00260382, 0x8001c001, 0xc3820300, 0x20001c26, 0x39003000,
0xb782c782, 0x55212521, 0x2127067e, 0x013d3632, 0x54052634, 0x132007b5, 0x94551c84, 0x21172105, 0x1805d475, 0x2009d775, 0x288c8295, 0x09aafe40,
0x01090c0c, 0x21058256, 0x1550e1fe, 0x96f22005, 0x55802717, 0x0c012b55, 0x2a828009, 0x75200483, 0x21061d4f, 0x17821f01, 0x01201684, 0x75201d85,
0x5f08745e, 0x17200b2f, 0x2922b182, 0x5b453200, 0x17671808, 0x08f67d10, 0x41452320, 0x45332007, 0x8318084a, 0x49200c4d, 0x09996718, 0x120e4927,
0x12121c12, 0x20068552, 0x420685ce, 0x89201813, 0x850bcb50, 0x5200200b, 0x11240cc3, 0x26001a00, 0xc352a383, 0x52152008, 0x22220522, 0x08873526,
0x90062b49, 0x91e020be, 0x1820205c, 0x2016504b, 0x20b593c0, 0x0a457283, 0x200bc842, 0x083b5200, 0x01963808, 0x00060080, 0x0011000d, 0x33150100,
0x35332707, 0x23152337, 0x17233717, 0x01211521, 0x2e2e1915, 0x55805519, 0x55559595, 0x2a01d6fe, 0x2e805501, 0x802b802e, 0x64c09595, 0xdc240873,
0xa401e401, 0x0b20f182, 0x17284382, 0x00002000, 0x37270725, 0x17300182, 0x27072707, 0x17372713, 0x37251737, 0x07170717, 0x2d087151, 0x3660e401,
0x84362b2b, 0x2b2a355f, 0x05846035, 0x85bcfe21, 0x05de5612, 0x3560c026, 0x85352a2b, 0xfe211284, 0x20068498, 0x20128484, 0x08c5568a, 0xd7450020,
0x01962206, 0x25098256, 0x00090006, 0xb1823700, 0x21071338, 0x6b231727, 0xd6fe2a01, 0x1c018e95, 0x557e3f8e, 0xd52a012a, 0x07465e89, 0x82962009,
0x001d22ed, 0x38ef8223, 0x15072723, 0x013d012e, 0x17013f34, 0x32210716, 0x14011d16, 0x22212306, 0x34128226, 0x07350536, 0x01171527, 0x8b7a3892,
0xa4111812, 0x01fb0fa1, 0x229d8216, 0x82eafe12, 0x28013905, 0x018b8b8b, 0xcd49402b, 0xa7121801, 0x51510815, 0x12182609, 0x191912c0, 0x18270482,
0x4747244e, 0x18004724, 0x26088f48, 0x00ab01ab, 0x821e0006, 0x33072771, 0x33353315, 0x5b182113, 0x15350782, 0x11211123, 0x1e333523, 0x0e111701,
0x55000101, 0x2b402a40, 0x06a870ff, 0x01404031, 0x12404000, 0x18010118, 0xc056ab01, 0x4e80fec0, 0x228207c7, 0x2b000122, 0x31510d82, 0x00002105,
0x095b4b18, 0xa7470820, 0x002f2806, 0x0044003b, 0x6900004d, 0xd6530890, 0x08966408, 0x0e201189, 0x09b56a18, 0x26220326, 0x17013e27, 0x0e219182,
0x28299101, 0x1e170001, 0x1e1e2e1e, 0x05554817, 0x0d8d0920, 0x2b0b9a42, 0x1811442b, 0x261a3766, 0x2b44110b, 0xf520258c, 0x2e223f83, 0x6b484a1e,
0x8c4a2005, 0x42ea200d, 0xfe2c0aaf, 0x36272ed8, 0x270b152a, 0x8a2e2719, 0x5f43258c, 0x000b280b, 0x00200017, 0x8235002c, 0x0a155a14, 0xc45bc282,
0x1e072205, 0x083c4901, 0x17200882, 0x2684d482, 0x0d4a1720, 0x18114607, 0xe2864920, 0x1520c891, 0x20165543, 0x20d285be, 0x20b78940, 0x22b78520,
0x63000600, 0x082d07e3, 0x1d001100, 0x2d002700, 0x00003e00, 0x07cf6037, 0x7d193720, 0xb64a080a, 0x1e372707, 0x011e2701, 0xc5833217, 0x3e072223,
0x212a8201, 0xa16f3405, 0x20228205, 0x261a8215, 0x01db013e, 0x820f160f, 0x4a662002, 0x8a2005a7, 0xf025968a, 0x0f2f4c17, 0x3b04830e, 0x0a281c93,
0x4201281b, 0x32181707, 0x40111e55, 0x4861022a, 0x0cab6148, 0x0f170f0f, 0x04820082, 0x050f1722, 0x240ab841, 0x012c264d, 0x35038203, 0x1f301075,
0x19543110, 0x242a0517, 0x03103d29, 0x02026148, 0xfb580061, 0x01ab2608, 0x000d0096, 0x21c78224, 0x95180100, 0x22080cbd, 0x15173325, 0x27263627,
0x0622012e, 0x17140607, 0x3233011e, 0x37231737, 0x012e2206, 0x011e3236, 0x18ab2b01, 0x3b0ad395, 0x6b95d5fe, 0x1b071427, 0x262a2610, 0x0f202010,
0x1c1f1527, 0x13adf73c, 0x26012534, 0xe8590382, 0x5600340a, 0x2027b76b, 0x0f101c4a, 0x5421100f, 0x110f1021, 0x8213693d, 0x34252123, 0x1026938e,
0x00001c00, 0xc1693313, 0x2733210c, 0x220a9947, 0x18ab8027, 0x230a4661, 0x407676a7, 0x086e4318, 0x011e2e26, 0x00ff8095, 0x2207ad57, 0x82ec7595,
0x2682181a, 0x0a5b5a07, 0x09008022, 0x002bfd82, 0x23153301, 0x23152327, 0x82133311, 0x09013509, 0x77099577, 0xaa2bc02b, 0xd55501aa, 0x6b01962b,
0x002ad5fe, 0x27089747, 0x000b0080, 0x25000018, 0x250adf4b, 0x22153303, 0x42860706, 0x2a6b0124, 0x02824040, 0x24776225, 0x8326113a, 0x83952048,
0x012a250e, 0x1d239500, 0x00204d83, 0xf4234b85, 0x8701cc01, 0x6a37204b, 0x4b8d09b5, 0x2d1f3426, 0x2e2e1f2d, 0x59200584, 0x82185088, 0x15200cce,
0x00225689, 0x00820004, 0x01d6012b, 0x0007006b, 0x00220010, 0x27a78228, 0x013e3523, 0x27171632, 0x210a834c, 0xa575011d, 0x33372409, 0x82351317,
0x011129ba, 0x3b02aa95, 0x55023b30, 0x2005bb45, 0x2006827d, 0x05915312, 0xab2b8028, 0x556f2abd, 0x00821516, 0x24199529, 0x18251818, 0x73121940,
0x0128060e, 0x01181200, 0xd500ff2b, 0xa34b0382, 0x006b2408, 0x45170011, 0x0a73069b, 0x06624807, 0x11210325, 0x45331733, 0x09730540, 0xab012405,
0x83802bab, 0x0758596d, 0xbd2a6f23, 0x05834dab, 0x45400121, 0x012d071d, 0xd5121801, 0x00ff1813, 0x802b0001, 0x7f63182a, 0x09135307, 0x1d000b22,
0x3f206f83, 0x2009ff6b, 0x94f5823f, 0x41f420e8, 0x89200a53, 0xd820e58f, 0x07b14518, 0x2e1e2e23, 0x47e49595, 0xd6210873, 0x25e78501, 0x01000021,
0xe7942723, 0x37010f29, 0x2f372717, 0x93010f01, 0x0f9429e5, 0x310f3838, 0x41191941, 0x1221e88e, 0x29e88419, 0x21213f81, 0x3c052b3f, 0x7382053c,
0xff3e0382, 0x01d801f5, 0x00040082, 0x000d000a, 0x00180012, 0x27173700, 0x26013f26, 0x33010f22, 0x0c821731, 0x36370723, 0x2e0d8427, 0x08cfbd43,
0x0b025603, 0x4f6e3002, 0x8217854f, 0x824a200d, 0x6e2f2e0c, 0x089af6eb, 0x0606db0a, 0x4af6f691, 0x200b824a, 0x220a82e5, 0x82090000, 0x0100365f,
0x008001d6, 0x001f000f, 0x004b002b, 0x007b006b, 0x00990087, 0x814518aa, 0x05334a12, 0x3805a458, 0x07232634, 0x011d1633, 0x26230714, 0x2734013d,
0x15070622, 0x013b011e, 0x270e8435, 0x17163337, 0x012b0615, 0x60081260, 0x1f840604, 0x36352722, 0x3a821f82, 0x37251f85, 0x23012e35, 0x4a3f8707,
0x5b9d05ac, 0x4d823520, 0x33150726, 0x33373435, 0x03830582, 0x42425520, 0x18122807, 0x0b089c18, 0x8342080b, 0x28353704, 0x06280606, 0x010b087d,
0x2e080b01, 0x27060621, 0x06010106, 0x1b835648, 0x0483aa20, 0x83202e21, 0x06272410, 0x85554806, 0x85c52024, 0x203d8a06, 0x25118570, 0x06063b48,
0x0b82973b, 0x0e061b25, 0x6e1b131a, 0x36220d95, 0x3184090b, 0x0b094224, 0x6485011a, 0x1b062722, 0x0f871484, 0x1b064f22, 0x69228382, 0x15950b09,
0xb182ab20, 0x41831b8e, 0x51880820, 0x080b1a2b, 0x01064856, 0x694f4f4f, 0x08434d00, 0x9601c03f, 0x11000d00, 0x1b001500, 0x33130000, 0x011d011e,
0x0622012e, 0x36343507, 0x35331517, 0x08038207, 0x3e350531, 0xd5151701, 0x21353556, 0x21446044, 0x95aa0b35, 0x2e00ff80, 0x95017fd3, 0xe3374801,
0x11121211, 0x7f4837e3, 0x20552020, 0x230ed520, 0x44104f2e, 0x9628084b, 0x23002000, 0x35002600, 0x16235b82, 0x82373617, 0x013b2455, 0x83152315,
0x011e2d0b, 0x26070614, 0x27220627, 0x012e0706, 0x07246e82, 0x33073733, 0x21080482, 0x17373317, 0x27010f37, 0x012f0723, 0x12181f8b, 0x2b121817,
0x1812172b, 0x3636291f, 0x1b181f29, 0x0a841b46, 0x361b5e2f, 0xb0361b65, 0x2b15162a, 0x4c201515, 0x36068314, 0x0140012b, 0x2e07131c, 0x2e2a1812,
0x011c1307, 0x5a885a02, 0x821c0102, 0x250a8400, 0x30303053, 0x00821666, 0x1d0d4023, 0x57008215, 0x68290863, 0x22001200, 0x34250000, 0x051f5435,
0x142a0585, 0x05321615, 0x3e373216, 0xa7843401, 0x010e2b08, 0x98011614, 0x17182401, 0x2e17172d, 0x01241717, 0xfbfe9c4b, 0x0e5ab959, 0x570e1011,
0x100e57c0, 0x0706c211, 0x02035c3a, 0x0282021b, 0x3b5b032d, 0x75110607, 0x18051b1b, 0x8205171d, 0x1e172206, 0x08a74617, 0x9601d528, 0x13000f00,
0x75822b00, 0x0edbbd18, 0x23072208, 0x0e373335, 0x26231503, 0x013f013e, 0x0e272636, 0x3e231501, 0x011e3701, 0x0cb1cb01, 0x0bb10c1c, 0x3a06840b,
0x2020c909, 0x09120726, 0x02012202, 0x1310090a, 0x130d1b09, 0x1c23011e, 0x87da1e2c, 0x37298422, 0x074f2079, 0x080f0e0d, 0x0610150d, 0x0326130a,
0x1b0d1201, 0x3f030124, 0x87080342, 0x0017228b, 0x278d912f, 0x3727010f, 0x23153307, 0x07237e82, 0x8e17030e, 0x36918e94, 0xb1b1b123, 0x15202015,
0x07181d2c, 0x01030b12, 0x0b030120, 0x83140f09, 0x01202299, 0x20968d24, 0x272b820e, 0x04d720fc, 0x0c082341, 0x172b9d83, 0x130b060f, 0x12010426,
0x82241c0e, 0x069b419a, 0x01ab2f08, 0x00080080, 0x3700000d, 0x35331533, 0x33150727, 0x17371107, 0x4080c011, 0x6b408080, 0x80ababab, 0xc06060c0,
0x8000012b, 0x0000ff80, 0x00820007, 0x01c00133, 0x000f0080, 0x00190014, 0x00370025, 0x0041003c, 0x0acf4500, 0x34013d3b, 0x011d3336, 0x17272633,
0x07062335, 0x15213537, 0x011e1533, 0x35373632, 0x07fa4b17, 0x33221087, 0x27871505, 0x8b180120, 0x5e300a89, 0x42e80814, 0xfe5e1408, 0x18016ad6,
0x95011824, 0x20059368, 0x210c8595, 0x1f86abfe, 0x19800124, 0xe8489512, 0x363c8205, 0x1a112b95, 0x111a2b2b, 0x15404055, 0x12181812, 0x1912ea15,
0x85551219, 0x2a2b2f0b, 0x2a2a1911, 0x00001119, 0x00000200, 0xc382e0ff, 0xc382a020, 0xb9821f20, 0x240a2f58, 0x35211523, 0x093e5807, 0x23230e83,
0x8240a001, 0x233d2400, 0x88208001, 0x00012208, 0x220084a0, 0x86602020, 0x08774207, 0x9601d627, 0x17000b00, 0x099d5800, 0x27012e37, 0x3613013e,
0x012e2726, 0x17010e07, 0x1f273616, 0x2f010f01, 0x0d275101, 0x021fc033, 0x20542220, 0x06040333, 0x2b141089, 0x2b15142b, 0x0c0f4f2b, 0x20f9fe2d,
0x02202155, 0x06893c1f, 0x84bf0304, 0x1415211f, 0x0b447682, 0x01c02906, 0x00050040, 0x000d0009, 0x2308e382, 0x37270725, 0x21250717, 0x35152115,
0x35071533, 0xc0011521, 0x1e6b6b1e, 0x01ccfe4c, 0xd5ebfe15, 0x731501d5, 0x4d280f83, 0x2a6a2b80, 0x2b2b6b2a, 0x2d090f42, 0x008001d6, 0x00460040,
0x33013f00, 0x3b4f2737, 0x010f2205, 0x5f0a8a17, 0x272305dc, 0x5f072735, 0x352506e7, 0x07232737, 0x05664b17, 0x82013f21, 0x243583e6, 0x0717011d,
0x2d418217, 0x1874259b, 0x121b1201, 0x1d150b0d, 0x08840213, 0x0d251f23, 0x25088210, 0x151d1b01, 0x08830d0b, 0x19521823, 0x3c238302, 0x5b140b0e,
0x1c12110c, 0x25255912, 0xeb252564, 0x0e0b2a40, 0x111a1212, 0x20322402, 0x2409820a, 0x36031119, 0x2d288340, 0x2f060e12, 0x11022432, 0x0e12121a,
0x25882a0b, 0x1b869d20, 0x82401a21, 0x07002100, 0x26080f4c, 0x0018000c, 0x8437002d, 0x00503dd7, 0x26223700, 0x3e34013d, 0x15171601, 0x35370614,
0x06012e34, 0x16141507, 0x14373632, 0xcd520883, 0x702e2006, 0x053f0601, 0x06272634, 0x3e171415, 0x011e3701, 0x26343632, 0x35130622, 0x15072226,
0x34353637, 0x82010e27, 0x09d52839, 0x0c120c0c, 0x84610c01, 0x0c133d05, 0x19272e95, 0x1912aa12, 0x78022e27, 0xfe785b5b, 0x200f11c2, 0x2b231b02,
0x23382301, 0x942e0282, 0xfe275c27, 0x110f2002, 0x0a0b2b23, 0x38820915, 0x0a150a24, 0x0986150b, 0x0d082008, 0x462a8a0b, 0x18122219, 0x19221218,
0x785b2a46, 0x30780202, 0x2b081d12, 0x020a0b37, 0x831c3023, 0xfe233042, 0x0a0a60f9, 0x0b0a9660, 0x1d082b37, 0x58231b12, 0xd73408ef, 0x22009901,
0x00003b00, 0x2f262305, 0x3e372601, 0x0e012e01, 0x1621ea82, 0x2206820f, 0x82012e27, 0x1e173710, 0x010e0703, 0x06220307, 0x17160607, 0x3e012e37,
0x07011e01, 0xe2830706, 0x26367b08, 0x49012627, 0x2f020404, 0x14180803, 0x152d2f11, 0x02081913, 0x04080131, 0x231f4554, 0x3d27569b, 0x100f0223,
0x524c2b40, 0x4001046f, 0x121e2937, 0x123c3e20, 0x29150c0f, 0x1c0e3423, 0x15234b3c, 0x097c0401, 0x2d2e0a04, 0x2f2f1115, 0x7c09040a, 0x22020304,
0x4554559c, 0x4e3a101e, 0x402b2854, 0x69880110, 0x18623c52, 0x3c3d1169, 0x1f3d2113, 0x106a0b15, 0x8d4d2437, 0xc3880e20, 0x9601c033, 0x13000a00,
0x17250000, 0x26272206, 0x32363734, 0x9fe11817, 0x00012708, 0x42aa4297, 0x04823f3f, 0xec720220, 0x97c02105, 0x3f220d84, 0xb9506c3f, 0x05df5508,
0x8001d627, 0x1a001600, 0x06837700, 0x2221012e, 0x33011d06, 0x35071735, 0x16141523, 0x18083e66, 0x200aa66d, 0x2d0b8205, 0xc0feab01, 0x56551912,
0x12195556, 0x62824001, 0x56565224, 0x00829640, 0x4095fe2f, 0x19800140, 0x402b8012, 0x12802b40, 0x05fc6519, 0x2bd5fe29, 0x2b2b2a2b, 0x82002a80,
0x25778400, 0x80010002, 0x75861700, 0x77871682, 0x21112122, 0x0121788c, 0x226d8235, 0x83011f35, 0x20038205, 0x2b038207, 0x96fed501, 0x012b1912,
0x2b96fe6a, 0x6a205e82, 0xfe256482, 0x569595ae, 0x237e82c0, 0x56564096, 0x55257e83, 0x55d6fe55, 0x217e8755, 0x7d8200ff, 0x82154021, 0x2bd62381,
0x7f890000, 0xe883f78a, 0x23013d32, 0x15372715, 0x26343533, 0x06222123, 0x16141115, 0x2407126a, 0x23153335, 0x22038205, 0x87400155, 0xc0fe21f6,
0x1222f682, 0x75835656, 0x406b0123, 0x24f38b40, 0x1912d6fe, 0x20ee8280, 0x8af68280, 0x24ef8a6f, 0x16322113, 0x83d5821d, 0x05bd58ef, 0x35262225,
0x7b363411, 0x0f2205b2, 0xf7843301, 0x8c822320, 0xe9822320, 0xfe23ee82, 0x826a0196, 0x22fa83ee, 0x87520119, 0x84eda1ee, 0xf5ff25ef, 0x8b01cb01,
0x083f9218, 0x0000142c, 0x0f330701, 0x15371701, 0x52182737, 0x172b0898, 0x55000137, 0x6060c0aa, 0x4dcb60d6, 0x672c0542, 0x8b015555, 0x55551660,
0x2b55aaaa, 0x24063742, 0x00606095, 0x06174700, 0xeb002b29, 0x0b000800, 0x44250000, 0x342605ef, 0x07170736, 0x3c850001, 0x80797c23, 0x223386eb,
0x8807793f, 0x90962033, 0x37172233, 0x22338717, 0x87077927, 0x79b82233, 0x82338580, 0x885620bb, 0x88ac8c33, 0x853387a4, 0x05534d9b, 0x1601cb22,
0x0e24ef84, 0x07130000, 0x2582e88c, 0x0121e188, 0x87dc8c15, 0x823b84d7, 0x873983d7, 0x20368272, 0x8371856b, 0x43802034, 0x33860846, 0x33826f85,
0x53410120, 0x6b01210a, 0x21074a41, 0x42411501, 0x080b4109, 0x56012b22, 0x220e3f41, 0x41270727, 0x0320070b, 0x20090b41, 0x070b4164, 0x01000023,
0x22339096, 0x87372717, 0x41a02033, 0x15200973, 0x250a7341, 0x008b0156, 0x9b830002, 0x44330721, 0x55210a23, 0x062a4faa, 0x608b0123, 0x25cf8940,
0xff000003, 0x338701f5, 0x73820e20, 0x0720358a, 0x86052542, 0x05204238, 0x7e413b87, 0x01002105, 0x0026df82, 0x9601d601, 0x714b2000, 0x1a5c4b22,
0x821d474b, 0xff0024d1, 0x82a001ea, 0x001b3267, 0x0100002a, 0x06070614, 0x0616011f, 0x3e372123, 0x21028201, 0x9d791e27, 0x16640805, 0x06051617,
0x3b341107, 0x17011e01, 0x2623012e, 0x279f0106, 0x49010420, 0xfe040301, 0x590902ea, 0x1e123537, 0x12101203, 0x4a0f0a29, 0xfafe121a, 0xad060e2a,
0x0e133e25, 0x3b241527, 0x40280801, 0x90050413, 0x0b010603, 0x182e3994, 0x07350432, 0x1d1f3301, 0x861f1904, 0x5b01274d, 0x1e240106, 0x4b051211,
0x83089745, 0x000c2ef7, 0x25000023, 0x012b010e, 0x013d2622, 0x2c768221, 0x06222313, 0x1533011d, 0x013b1614, 0x05fa4711, 0x3435332d, 0x077c0126,
0x1cd51520, 0x82040124, 0xea2a3107, 0x0cea241c, 0x130c150a, 0x15242a0c, 0x1c241713, 0x012c0482, 0x1c248001, 0x0c0916ea, 0x0c0a1501, 0x15201c82,
0x1805974a, 0x83094b57, 0x0027226b, 0x446f8f2b, 0x3426055d, 0x15062226, 0x85832311, 0x4a352321, 0x35240571, 0x35331507, 0x1c22778d, 0x73822a24,
0xea255f82, 0x95951c24, 0x207a8c80, 0x24768415, 0x090cebfe, 0x229e8216, 0x822b2b55, 0x0cfb5a02, 0x2a002626, 0x32002e00, 0x3e287f82, 0x23113501,
0x1507010e, 0x3b216a83, 0x21818501, 0x8183012e, 0x23070a41, 0x03011e33, 0x230bc66d, 0xaa0c0940, 0x2a20da82, 0x8482e282, 0x120c012e, 0x1b24010c,
0xea241cd5, 0x6b6e1801, 0x15250084, 0x01090c01, 0x22048240, 0x181ceaea, 0x21088cf4, 0x0b84d6fe, 0x0118123d, 0x2b2a2b2a, 0x00002a2b, 0xff000003,
0x01c001d5, 0x000800ab, 0x00250012, 0x5e320100, 0x172006b1, 0x2305c854, 0x07173735, 0x25069562, 0x35333533, 0xad823523, 0x01012e25, 0x820c0900,
0xc90c2f74, 0x54546a02, 0xc0c0026a, 0x01241bc0, 0x53821318, 0x01181325, 0x55150124, 0x5b290647, 0x8e17178e, 0x5656805b, 0x2c9e8215, 0x84072015,
0x072f2a2b, 0x241b1520, 0x57ac1800, 0x00092909, 0x00260013, 0x2500002f, 0x032a7088, 0x3537013e, 0x1e150727, 0x91601301, 0x06505f05, 0x82012e21,
0x09f7557d, 0x7c88c020, 0x01563e27, 0x55029595, 0x8284843e, 0x208483d7, 0x20a1851b, 0x2c8388d5, 0x7712abfe, 0x42426948, 0x01774869, 0x238f852e,
0x842b2a2f, 0x2a208f84, 0x0020b085, 0x2c06f759, 0x009601d2, 0x0022000b, 0x002e002b, 0x2e998237, 0x07270717, 0x37273727, 0x27173717, 0x18070614,
0x2108324f, 0x92843523, 0x011e3724, 0xca772e07, 0x27172206, 0x4d681807, 0x51013108, 0xc9c90880, 0x0a82800a, 0x510bc8c9, 0x162a1417, 0x14280182,
0x36490117, 0x01944936, 0x22050f5b, 0x6915152b, 0x3531069f, 0x35352822, 0x29222228, 0xbe293535, 0x37122f1d, 0x3300822b, 0x1d2f1237, 0x01014837,
0x130d2c48, 0x13131a13, 0x4b2b2b3e, 0x00200985, 0x22069356, 0x82ab01d2, 0x001428ab, 0x0020001d, 0x8d45002f, 0x083b58ad, 0x06223328, 0x36321614,
0xc9822634, 0xcf413720, 0x013e2108, 0x1d20c082, 0x1809fa6e, 0x8c0ad1b0, 0xfafe21bb, 0x20057b6a, 0x050a5c5d, 0x15152e2e, 0x01544015, 0x13d61317,
0x15540117, 0x1520d582, 0x01260882, 0x013c5c3c, 0xc68b1701, 0xb283e920, 0x0284b582, 0x2b2b6b31, 0x405402d6, 0x4215351e, 0x1e351542, 0x65e95440,
0x0f290512, 0x3c2e1b2b, 0x2c1a2e3c, 0x57771800, 0x82d62008, 0x840820d3, 0x002326d5, 0x3700003a, 0x06936d22, 0x17371722, 0x37230b88, 0x8627012e,
0x352125c8, 0x2307013e, 0x58086a4d, 0x072b0a45, 0x191912ab, 0x23181824, 0x49352020, 0x6e2c05cf, 0x5b5b7802, 0x1e220278, 0x221e2a01, 0x2c059e63,
0x0201221d, 0x60494960, 0x1d220102, 0x252d8380, 0x402b1924, 0x09852b40, 0x785b552e, 0x5b780303, 0x531d4d2d, 0x934d1d53, 0x3c23b283, 0x82284418,
0x2233822d, 0x82174528, 0x05b74eb3, 0x6b01eb26, 0x07000300, 0x2d065f61, 0x00370033, 0x35231300, 0x35331733, 0x30421723, 0x8223200a, 0x3533210b,
0x15200184, 0x15210582, 0x20018233, 0x20098227, 0x23278307, 0x37331523, 0x95280382, 0x2ad62a2a, 0x2b2b802a, 0x70830682, 0x802b2a23, 0x2a03832b,
0x562b2bd6, 0x56805656, 0x82400156, 0x80ab2716, 0x2b2b5555, 0x1b835555, 0x8206ad69, 0x6fab2006, 0x40080583, 0xff00000b, 0x01e501e6, 0x0004009b,
0x003a000d, 0x0049003f, 0x0058004e, 0x0065005d, 0x0072006a, 0x34172500, 0x26173736, 0x06073736, 0x011f0607, 0x2e270706, 0x0f062201, 0x37272601,
0x2f022e36, 0x361c8201, 0x3537033e, 0x1e151737, 0x16371703, 0x030e0717, 0x0e352717, 0x82370701, 0x16172303, 0x20823736, 0x012e3724, 0x03821727,
0x011e152a, 0x07371617, 0x15011e27, 0x07280382, 0x27263637, 0x32360717, 0xe2080384, 0x07222627, 0x0c232301, 0x1e011f0a, 0x0d1a2b1a, 0x103b0a0a,
0x3a160713, 0x07163a42, 0x05061013, 0x141f1504, 0x09080509, 0x2736381a, 0x0b15150b, 0x1a373627, 0x0b05080a, 0x04142013, 0x1f0ba905, 0x50183b11,
0x21102a2a, 0x2a081f10, 0x0b1f113b, 0x194f2991, 0x1f101404, 0x0a3a9e1f, 0x1f1a6d0c, 0x180d1901, 0x1023881a, 0x287c1026, 0x181c2862, 0x31a5184a,
0x8c0e2312, 0x0e225c2a, 0x1c232411, 0x0a0b0f51, 0x0c0f0f0c, 0x070f0b0a, 0x333f3c1a, 0x14150312, 0x27160303, 0x010a182e, 0x2f180901, 0x04031727,
0x11041514, 0x1a3a3f33, 0x160e3ec4, 0x3a238607, 0x0a010e0c, 0x6b1e170b, 0x0e170613, 0x24390c0e, 0x0b1d0f2c, 0x134a0216, 0x6112240f, 0x242b5e22,
0x3a114a1e, 0x4a050531, 0x13260f0f, 0x49000013, 0xc0220537, 0x09825601, 0x0b00072d, 0x21130000, 0x35152115, 0x82051521, 0x01402403, 0x8580fe80,
0x55012803, 0x2b2b562a, 0x428080aa, 0x002205e7, 0x33890100, 0x82000f21, 0x33012748, 0x33032311, 0x574f2315, 0x15332b05, 0x15333527, 0xabab1501,
0x0085abd5, 0xfe550125, 0x842a01d6, 0x2a2a2144, 0x21054f46, 0x00820002, 0x01d6012b, 0x00060080, 0x3700000d, 0x223e8315, 0x82272527, 0x15332744,
0x808080ab, 0x0482aa01, 0x6b40eb26, 0x75967540, 0x00200582, 0x840c074d, 0x23012833, 0x23352315, 0x82371337, 0x23152305, 0x2b882b01, 0x82150121,
0x56fe213a, 0x00200482, 0x0a4b8318, 0x16001126, 0x2e001f00, 0x2235e582, 0x14011d06, 0x3216011f, 0x3436013f, 0x2326012f, 0x27071715, 0x089f4535,
0x1f340883, 0x34363701, 0x010f2226, 0x12552627, 0x0cc00c18, 0x0c960c24, 0x12240682, 0x36c096c0, 0x32055344, 0x0d191352, 0x180c4b4a, 0x0c0d0d25,
0x1895010d, 0x82129612, 0x20268220, 0x20068224, 0x2127822a, 0x29451696, 0x19752905, 0x4a4a0d25, 0x0d19250d, 0xc6820082, 0xe0299384, 0xa001e001,
0x2f001700, 0x05d17500, 0x4947fe82, 0x012e2705, 0x33352327, 0x1f64013e, 0x82052005, 0x011e2517, 0x15333517, 0x17821182, 0xf4821d82, 0x17010e22,
0x2a0f2359, 0x2121bf01, 0x2a445d09, 0x87095d44, 0xb6fe2a08, 0x45081f1f, 0x45322a32, 0x20088708, 0x0c3059e1, 0x2d8bd520, 0x2c8a3686, 0x9c2c3584,
0x16161515, 0x24189515, 0x18241919, 0x300c0748, 0x00070003, 0x00230010, 0x23151300, 0x35331135, 0x083e4623, 0xfc622520, 0x55272008, 0x3226057b,
0x2b2b6b16, 0x9844402b, 0x55012905, 0x12c01218, 0x192b2b19, 0x18270682, 0x80809501, 0x4a8056fe, 0x7d26065e, 0x181812d6, 0x2b824012, 0xcb600782,
0x840c200c, 0x002a236b, 0x97663700, 0x16322205, 0x23768327, 0x01153335, 0x07266d91, 0x17071523, 0x13453315, 0x2b152406, 0x8b6a012b, 0xc02a2573,
0xc0c01919, 0x2005da4b, 0x227e84c3, 0x8b400180, 0x52122579, 0x00521919, 0x870a3b5d, 0x002722eb, 0x82efa52b, 0x37332481, 0x98331523, 0x6b6a25f7,
0x95952a6b, 0x9222fd9a, 0x6b82802b, 0x210aaf51, 0x03410008, 0x002e2207, 0x2c074132, 0x81492720, 0x1c0f4106, 0x6b6b9624, 0x14414040, 0x2bab2320,
0x53432b2a, 0x0012260a, 0x00220019, 0x09715927, 0x07012b24, 0xd84e2327, 0x11172705, 0x33371733, 0x97490511, 0x37072407, 0x58153717, 0x562d06ee,
0x12565555, 0x67121818, 0xfe674444, 0x053f62f5, 0x2a6b123e, 0x1895016b, 0x1200ff12, 0x19555519, 0x12000112, 0x00ff2a18, 0x00014444, 0x121c122b,
0xab240282, 0xab6b2b6b, 0x220c774b, 0x951e0012, 0x0a68697b, 0xa825728d, 0x402a4040, 0x23678f40, 0x402b4055, 0xdf420282, 0x22db830c, 0x9521001d,
0x20db865f, 0x05656e21, 0xd585628d, 0x8f06676e, 0x25d18669, 0x2a2b2b40, 0x6f820600, 0xd6010034, 0x16006b01, 0x39001f00, 0x46003d00, 0x00004f00,
0xff642301, 0x07172e05, 0x17373315, 0x33352335, 0x2e353315, 0x08506401, 0x27262531, 0x010f0623, 0x17011e15, 0x3d013e33, 0x78153301, 0x3d270554,
0x17332701, 0x48221723, 0x33200673, 0x01300887, 0x241c9500, 0x16161c24, 0xc06b2b2a, 0xb024012b, 0x2e05604a, 0x0f065501, 0x1f051099, 0x0d060801,
0x84ab0807, 0x99cc2405, 0x850dc516, 0x85a2201e, 0x6b013306, 0xab1b2401, 0x1501241b, 0x6b012c16, 0x1b162b95, 0x734ad524, 0x0d5d3805, 0x580d0101,
0x01080775, 0x1a070901, 0x0109071a, 0x75070801, 0x85404051, 0x2005851e, 0x05e74500, 0x7601e022, 0x05330982, 0x1b330000, 0x23372301, 0xe0e0e020,
0x7501d66b, 0x45c08bfe, 0xea33070f, 0x9601cf01, 0x2f000f00, 0x4e004000, 0x0e130000, 0x62011f01, 0x07200a1b, 0x25085e6b, 0x1737013e, 0xf283010e,
0x2e220982, 0x24822701, 0x35622720, 0x05567d05, 0x34071723, 0x21108326, 0x26821632, 0x17234108, 0x26010e14, 0x62f3013e, 0x0211015c, 0x70020112,
0x0274575d, 0x4f518404, 0x60020266, 0x02493345, 0x03121a01, 0x29371305, 0x02013d34, 0x37234157, 0x49160312, 0x0b432a0e, 0x22371205, 0x05043e3f,
0x5c08dd82, 0x19145a48, 0x010b0101, 0x212e170f, 0x95012101, 0x0c086707, 0x51283301, 0x73020378, 0x246f6f57, 0x4e4b6702, 0x4201015f, 0x0b291f34,
0x17250404, 0x01013229, 0x533d3449, 0x0e160102, 0x4b282203, 0x02262f01, 0x03012018, 0x01023256, 0x48361219, 0x0f131a56, 0x15010b11, 0x1e321f01,
0x05834700, 0x9901c322, 0x1322fb82, 0xf9821e00, 0x23170722, 0x08bce118, 0x17374308, 0x33352537, 0x17153717, 0x2e350735, 0x17012b01, 0x103a1e49,
0x090c0c09, 0x05070001, 0xa8fe1e44, 0x8006aa25, 0x090c0155, 0x98012a77, 0x090c3a1e, 0x040c09d6, 0xaa4d1e44, 0x8037aaaa, 0x094b55d7, 0x5a182b0c,
0x4020092b, 0x17276d82, 0x15010000, 0x18373523, 0x210acee2, 0x5d853537, 0xd5400125, 0x8500ffea, 0x0c09235c, 0x56825501, 0xaa150124, 0x54842baa,
0x4b090c24, 0x4f83ea55, 0x2d08ff6c, 0x008001d6, 0x00250017, 0x00320029, 0x3d531300, 0x05545305, 0x27059967, 0x26343527, 0x15210523, 0x2607cd42,
0x37211533, 0x62231533, 0x6b220870, 0x2b541813, 0x0b0a3505, 0x12190a0b, 0x2a01d6fe, 0x18181280, 0xd6fe8012, 0x409696aa, 0x5c05b14b, 0x302d09ae,
0x800c1306, 0x3006130c, 0x2a2b1912, 0x26268201, 0x2a011812, 0x446080d5, 0x0022051a, 0x00820005, 0x01da0137, 0x002c0080, 0x00520048, 0x0073005c,
0x17160100, 0x06070616, 0x23048307, 0x27262223, 0x2e308a82, 0x37342701, 0x3e262726, 0x36323301, 0x36353637, 0x2d053a50, 0x03163233, 0x3637013e,
0x07222726, 0x0283010e, 0x17011e23, 0x273e8236, 0x013e3317, 0x22271617, 0x22050f56, 0x87330706, 0x010f2209, 0x223f8226, 0x82011e17, 0x013e2346,
0x67821516, 0x012b5808, 0x01272606, 0x070716b6, 0x1b161d1b, 0x08110f07, 0x01191208, 0x241b0242, 0x34020116, 0x0e030621, 0x020c0b07, 0x06030108,
0x3f1b171d, 0x36512e22, 0x170b2b1c, 0x0b0c4e64, 0x030b4e30, 0x290f2c0c, 0x0d230f18, 0x094c0203, 0x77041122, 0x0c010d0a, 0x0c010e13, 0x82096309,
0x08098305, 0x017f0a5f, 0x030a0505, 0x1d261e06, 0x0a090207, 0x1c161406, 0x07291b02, 0x251f3301, 0x151b4d29, 0x0720120d, 0x13131803, 0x11180417,
0x2b120507, 0x070a1108, 0x11181806, 0x11301b11, 0xfe291615, 0x1d2d0df8, 0x02036f52, 0x23313c06, 0x1c13044a, 0x0d030d08, 0x0b110504, 0x0c920209,
0x0d020d13, 0x85708313, 0x04253407, 0x0a010108, 0x12141412, 0x07060304, 0x01100e17, 0x61001a1e, 0x2f4a082b, 0x000e2605, 0x35210100, 0x23038321,
0x21152725, 0x01250182, 0x01ebfe55, 0x2f038615, 0xc0fe5595, 0x2b014001, 0x2ad6fe2a, 0x2a2b406b, 0x2c058742, 0xe901d5ff, 0x1700ae01, 0x00002a00,
0x05ac6325, 0x0717072a, 0x17160627, 0x1737011e, 0x26059149, 0x010e2707, 0x822e2726, 0x2737220f, 0x82178236, 0x01310880, 0x100fc1e2, 0x2a64261e,
0x1e521e52, 0x4f1e2507, 0x1107c226, 0x47073106, 0x2b2d14c9, 0x010e0f11, 0x2a425a42, 0x080d1120, 0xc22bc90e, 0x251f5026, 0x08278207, 0x632a5135,
0x0e101e26, 0x310707c2, 0xca1b1106, 0x110d060f, 0x4214260f, 0x1e02425b, 0x132e2c12, 0x000600c9, 0x01c0ff00, 0x006d01d6, 0x00100009, 0x001f001c,
0x8251004a, 0x34362897, 0x011e3727, 0x82070614, 0x287c8284, 0x3e011f36, 0x27263401, 0x22138307, 0x83233517, 0x822320b0, 0x2e232f1d, 0x35233501,
0x37363433, 0x16273533, 0x0e820717, 0x27373423, 0x83268206, 0x080a820b, 0x2f013736, 0x1e331501, 0x3c011501, 0x121e1818, 0x2f121414, 0x0c261801,
0x1e4f0e3c, 0x1d21211d, 0x1a1a171e, 0x100c1945, 0x0c3a2b1b, 0x0c095609, 0x090c9595, 0x0c063916, 0x01262982, 0x01010724, 0x2682171a, 0x1c27112c,
0x3b618001, 0x990c0916, 0x44824918, 0x2f352e30, 0x19125a11, 0x0d3c0e01, 0x4d1d1e65, 0x46824d59, 0x3e473e25, 0x822a1978, 0x05c17a47, 0x06822a20,
0x0f394f2e, 0x2f111e0b, 0x2407081a, 0x3e231b18, 0x4d304982, 0x1b272759, 0x3b2a80fe, 0x090c0125, 0x00040000, 0x012b0082, 0x006b01e0, 0x000e0005,
0x82260017, 0x071724f7, 0x18173727, 0x21117d48, 0x18823207, 0x07010e35, 0x23173315, 0x01013e35, 0x4a8b1ec2, 0x246a2c1e, 0x19493030, 0x2f08150c,
0x241d1612, 0x024e320f, 0x05d52884, 0x8c1eb576, 0x01222082, 0x20830124, 0x2a304922, 0x2a05f749, 0x01240695, 0x170c2001, 0x572b4029, 0x01210793,
0x2c7f82eb, 0x001c0013, 0x002e0025, 0x37000037, 0x05024f27, 0x17163224, 0x076f013e, 0x56372006, 0xcf460801, 0x22072a07, 0x21150706, 0x17012e35,
0x388e8221, 0x17011e37, 0x27210d6b, 0x131b0101, 0x0607140c, 0x1a140b15, 0x21270101, 0x064918c9, 0x30132d0c, 0x56010675, 0xfe527506, 0x324e02fc,
0x8024a882, 0x182d1d0b, 0x092a2982, 0x01090808, 0x2d181519, 0xae86e01d, 0x2619812a, 0x19261a1a, 0x402b2b3e, 0x6d23a982, 0x83200c17, 0x820020b6,
0x82062000, 0x02002203, 0x2ab38200, 0x001a0011, 0x002c0023, 0x823e0035, 0x012e25b5, 0x14062223, 0x3726b383, 0x35331533, 0xde683533, 0xa2252008,
0x077c2ebc, 0x241b1520, 0x20151b24, 0x162a2f07, 0x067647ab, 0x5e410c20, 0x19132106, 0xbe828e83, 0x55010524, 0xbe887605, 0x1713eb2a, 0x01243724,
0x2b131701, 0x6b470082, 0x9fab2005, 0x860720c0, 0x005626bf, 0x00100008, 0x06bb4519, 0x00003a23, 0x21481825, 0x1e172707, 0x23151701, 0xae5c2635,
0x06142e06, 0x36272217, 0x33362734, 0x06141632, 0x51198227, 0x07370897, 0x012e3533, 0x01070622, 0x04582415, 0x580400ff, 0x023922b2, 0x82aa0140,
0x243729c9, 0x0a0a4f24, 0x0a0a1313, 0xf0230c82, 0x451501ab, 0x6e3605ca, 0x523601c0, 0x20ab0136, 0x202b2b20, 0x1f050420, 0x252b2b18, 0xc6820145,
0x01250282, 0x1a451a04, 0x23088203, 0x4a2b2b15, 0x2105364d, 0x37820bd5, 0xb2830d20, 0x00000428, 0xd601d5ff, 0xb7828001, 0x2d7e1120, 0x32252905,
0x22263436, 0x37161406, 0x25075e4a, 0x27263413, 0x95863523, 0x15331529, 0x15010e23, 0x49331523, 0x1782051a, 0x013e2522, 0x4a18e582, 0x4e2b0e65,
0x8016090c, 0x54805401, 0x43168001, 0x56200580, 0xfe2d0682, 0x442f0dcd, 0x2beb0d2f, 0x3f2a2a3f, 0x06e5522b, 0x09c0fe28, 0x202a010c, 0x03832a20,
0x090c0123, 0x066c432a, 0x0d086b27, 0x0000080d, 0x33a38405, 0x006b01ab, 0x0013000a, 0x00230019, 0x1300002c, 0x07011f37, 0x3e319582, 0x15173701,
0x2f263527, 0x05011e01, 0x0e273315, 0x061f5401, 0x013e2722, 0x0808764e, 0xc51b3b20, 0xfb401b90, 0xe92a4102, 0x3b1b0129, 0xd6fe4f2e, 0x3c2a42a9,
0x01302481, 0x06641e27, 0xb04c202e, 0x01230805, 0x8fc51a2b, 0x1e40401c, 0x2e4e0927, 0x0c0a0628, 0x2229073c, 0x1b064217, 0x30010c01, 0x072d2025,
0x18261f64, 0x1809ca4e, 0x200e9b6c, 0x2297821a, 0x1800002d, 0x5309c84e, 0x0142085d, 0x010e2108, 0x20055c43, 0xbeab1825, 0x18172007, 0x200ea16c,
0x0a6c1813, 0xf9fe2a0e, 0x3e2f0f36, 0x2f3e1718, 0xa96c180e, 0x1897200f, 0x290d096c, 0x283c2024, 0x05393905, 0x2f413c28, 0x01f32e05, 0x009601ab,
0x0010000b, 0x001d0019, 0x82978229, 0x0501447c, 0x07011e38, 0x27072317, 0x14163213, 0x012e010e, 0x17230336, 0x011f2737, 0x75423736, 0x75152005,
0x20080812, 0x3d2d2d3d, 0x4b2a364b, 0x1911eb20, 0x01182418, 0x7a3c2518, 0x055b4c1e, 0x1e010107, 0x01011e2d, 0xcf4d1815, 0x35cf250a, 0x82011f4b,
0x24312584, 0x7aebfe19, 0x045c6b1e, 0x17aa100c, 0x63171e1e, 0x28008200, 0xff000008, 0x01e001ea, 0x060f51ab, 0x18000f21, 0x2c088d50, 0x17372713,
0x35231537, 0x37270717, 0x2e078205, 0x23153321, 0x16322105, 0x013e2117, 0x18011e13, 0x200a476d, 0x26a18233, 0x2d1e2d80, 0x82c22a77, 0xfe220805,
0x800140d1, 0xe0fe4040, 0x18120001, 0x01aafe01, 0x49369218, 0x0100ff01, 0x30243649, 0x3001aa01, 0x25822d01, 0x40406023, 0x26068251, 0x2b2b2b98,
0x821218a0, 0x01403028, 0xaaaa3748, 0x01294837, 0x80802530, 0x60003025, 0x802108cf, 0x26958300, 0x00250021, 0x18341300, 0x260e456d, 0x07112111,
0x55011e33, 0x4b650717, 0x496d1805, 0x012b2c0c, 0x122aaa2a, 0x2b2a2b19, 0x182a1219, 0x260c4b6d, 0x01d6fe2a, 0x18012a2a, 0x2207506d, 0x182b2b2a,
0x220d7360, 0x701d0019, 0x1d2310eb, 0x18353301, 0x6c0ab36d, 0x46200ccf, 0x54826587, 0xba549520, 0x20058405, 0x20628868, 0x4e628301, 0x0d220a4b,
0x05421100, 0x050f6605, 0x23352325, 0x85352315, 0x4b0720c3, 0x595708ea, 0x07264205, 0xcb88eb20, 0xd7541520, 0x22058505, 0x8402785b, 0x2105826b,
0x6f882b01, 0xeb21d282, 0x78621802, 0x7e012109, 0x0020958a, 0x32062743, 0x008001c0, 0x00140010, 0x00280018, 0x2500002c, 0x6f230614, 0x0727059b,
0x1e333523, 0x82071501, 0x82372094, 0x41272003, 0x0129127a, 0x0d0d1340, 0x55121913, 0x22fa8355, 0x18ab2a2a, 0x2e090645, 0x012b1813, 0x130de02a,
0x12200d13, 0x82d60118, 0x2b802492, 0x5f2b552b, 0xfe21052e, 0x05b55ed6, 0x01d6fe23, 0x0baf522a, 0x1c000b26, 0x24002000, 0x180e7541, 0x4117bf6e,
0x9b200c7c, 0x0fc06e18, 0x200b8141, 0x188387b3, 0x2008bf6e, 0x08136205, 0x2422fb85, 0xfb9a3000, 0x8f173172, 0x721520ff, 0x0741162e, 0x41c02012,
0x2c720a8a, 0x051f4d0e, 0x8001c023, 0x06b76600, 0x231df542, 0x15333533, 0x23059a49, 0x3634013d, 0x2715fb42, 0x12192b2a, 0x1919122a, 0x2415ff42,
0x15801515, 0x053e6515, 0x18128022, 0x2606735c, 0x009601d6, 0x4123000b, 0x6e180e8b, 0x1525106f, 0x26343533, 0x0c8a4127, 0x6f184620, 0x0a430dd8,
0x2262820f, 0x18180101, 0x760dd76f, 0x17200663, 0x2f216f82, 0x061d6900, 0x23352322, 0xdb8b5c82, 0x43178641, 0xe3870513, 0x84412720, 0x2b012116,
0x4d4d758a, 0x416b2005, 0x04211884, 0x28008200, 0x8001c001, 0x0d000900, 0x05135100, 0x011e3329, 0x0614011d, 0x82372307, 0x130e4397, 0x8355c021,
0x2b5523f9, 0x0743d52a, 0x837a840e, 0x80ab22f7, 0xcd711880, 0xfe2a240b, 0x182a01d6, 0x220c2f64, 0x41190015, 0x15210e71, 0xca6b1833, 0x0c67410a,
0x4a841b20, 0x6d442a20, 0x85d6200f, 0x2b0122db, 0x0cdb5180, 0x1922c783, 0x5d412500, 0x50c78807, 0x17200a65, 0x880a7d50, 0x17d342cb, 0xe241d38b,
0x0dcc420b, 0x2409cb42, 0x001b000b, 0x227d831f, 0x53152315, 0x0320069c, 0x22125244, 0x825580c0, 0x80802100, 0x26104141, 0x2b2a2b2b, 0x1800012b,
0x410a0b73, 0x6618053d, 0x17200d6f, 0x22103d41, 0x62352335, 0x3b410567, 0x6766840d, 0x68210c57, 0x466284d6, 0x17220d03, 0xb38d2300, 0x2f411320,
0x21508417, 0x7c424080, 0x215c8418, 0x71424001, 0x82778418, 0x057342bd, 0x1d001922, 0x2320778a, 0x22162941, 0x412b4040, 0x56201428, 0x20202741,
0x11274115, 0x23132541, 0x5540402b, 0x200e2441, 0x0e274756, 0x15000924, 0xab8b2100, 0x821a2141, 0x1c2041af, 0x1f415620, 0x00122426, 0x87260022,
0x0cfe4473, 0x22139643, 0x445555eb, 0x9920071b, 0x22115642, 0x44555580, 0x2b2008fa, 0x20105d42, 0x08274602, 0xa0180b20, 0x1d211211, 0x056b4b01,
0x23013d27, 0x33352315, 0x0c624235, 0x41090645, 0x9f430e42, 0x22068206, 0x48805555, 0x12200c73, 0x2a206382, 0xfa44d794, 0x44db8918, 0x2b2019f7,
0xf344e38b, 0x13ab4319, 0x33353322, 0x4205105d, 0x2b221481, 0x02822b2a, 0x23118242, 0x56d65656, 0x43218342, 0x332412ab, 0x23353315, 0x48417082,
0x841b200c, 0x0f864266, 0xab436283, 0x42b38815, 0x50841889, 0x8a422b20, 0x43bf8519, 0xd74425ab, 0x44012006, 0x352005d6, 0x7018bf82, 0x172d109d,
0x01112111, 0x5616162b, 0x016a1616, 0x0b63422a, 0x2b2b0122, 0x11976e18, 0xd6fe2b24, 0xf3572a01, 0x000b210c, 0x450f2b41, 0x35230643, 0x41333523,
0x86200c2b, 0x02826382, 0x840d2c41, 0x122b4163, 0x6042b38b, 0x20b78617, 0x19d7442b, 0x8618c084, 0x735d1a56, 0x47802008, 0x01200749, 0x2209d447,
0x18331533, 0x250fc970, 0x11211117, 0xb0481501, 0x2a2b2205, 0x0f3041aa, 0x2506d076, 0x00011515, 0x484a1219, 0x19122107, 0x43063441, 0x49470baf,
0x35232210, 0x08375823, 0x200c3541, 0x061f4470, 0x180d3641, 0x41091776, 0x0d260b3b, 0x25001900, 0xc38e0000, 0x89161546, 0x194647c7, 0xea78d089,
0x46002017, 0x0a310b1b, 0x1e001a00, 0x33130000, 0x07333715, 0x15272317, 0x13404123, 0x2a2bc025, 0x8240402b, 0x41552004, 0x47270f3f, 0x476b6b47,
0x412b0147, 0x3b41113c, 0x4616200b, 0x1725111f, 0x23372733, 0x0de34407, 0x66861b20, 0x200d3841, 0x186385d6, 0x240de3a4, 0x0016000a, 0x43b78c22,
0xbb841b9e, 0x8519a043, 0x1a2d4660, 0x2409cb44, 0x00150005, 0x20778419, 0x172a4133, 0x41805521, 0xab211025, 0x1321412b, 0x220b6b48, 0x82110005,
0x33152455, 0x43352335, 0xc0220b3b, 0xea415580, 0x2b01240b, 0x43ab2bd6, 0x1f700b1c, 0x4743830c, 0x9b8205e7, 0x20190e41, 0x1a564855, 0xa744a882,
0x00112125, 0x2005414f, 0x05ef5233, 0xd6452320, 0x3e352205, 0x3d731801, 0x1117230f, 0x74181121, 0x1224174d, 0x2b012a01, 0x0a517418, 0x45425620,
0x0b234111, 0x83001121, 0x977818dd, 0x0a2d4311, 0x1812c023, 0x051a4901, 0x41121821, 0x668c0bef, 0x41410120, 0x4703200c, 0x3d4f0893, 0x0bb7630a,
0x44013e21, 0xd78b17cd, 0xd2445220, 0x47e08a18, 0xaf49192d, 0x35172314, 0x92431533, 0x1390431b, 0xd66b6b24, 0x6d426b6b, 0x098f4313, 0x15000922,
0x25056b42, 0x23353317, 0xdd8b2715, 0x5282c020, 0x422a2b21, 0x52840e72, 0x49163341, 0xab8708af, 0x21197742, 0x5c822b2a, 0x84198443, 0x1a834365,
0x2409434d, 0x0013000f, 0x0b335f23, 0x5f212321, 0xbf510730, 0x09c14e07, 0x33151723, 0x277e1835, 0x5112200b, 0xc04e05c0, 0x18122005, 0x200e997e,
0x07c3512b, 0x8206554e, 0x802a2206, 0x0baf4580, 0x1f237b83, 0x4e130000, 0x34230bb9, 0x43072726, 0x79180e71, 0x4e410c85, 0x09af490d, 0x01235d82,
0x4501802b, 0x634d0ba7, 0x206b850c, 0x0b634d2b, 0x3d012e23, 0x05d15101, 0x09016118, 0x0d4daa18, 0x4f2aeb21, 0xe182062f, 0x8c192546, 0x4de28284,
0x37531972, 0x000b260a, 0x001f000f, 0x228f8923, 0x4e15012b, 0x212305bd, 0x18151632, 0x230a6756, 0x11211117, 0x2105f14d, 0x73472b2a, 0x277c8212,
0x5618122b, 0x802b2bab, 0x4312f043, 0x6f83098f, 0xa9421b20, 0x7a332005, 0x2720051b, 0x2006d176, 0x07bf5217, 0x7b18c020, 0x64410857, 0x577b180d,
0x0b195109, 0x850a2b53, 0x9227205b, 0x167b47cb, 0x5541cf89, 0x41d8861c, 0xff2d1d4f, 0x01c001ea, 0x000f006b, 0x00250013, 0x21838229, 0x7b181e21,
0x17200cc3, 0x6a088754, 0xf5410572, 0x1bc94209, 0x7b186b20, 0x2a250ccc, 0x2b01d5fe, 0x06e74115, 0xef5d2a20, 0x802a2206, 0x0c1f5080, 0x21001d22,
0x420e9947, 0x7c1806d7, 0xdd480d63, 0x07884c0c, 0x50121921, 0x6d8e102b, 0x220f3350, 0x8217000b, 0x053d57ed, 0x5008c141, 0x7b550b25, 0x8cf38f05,
0xf747187d, 0x425e200b, 0x32480aea, 0x0b34500c, 0x948e3e20, 0x80802a23, 0x0ad34200, 0x4d000e21, 0x8f5108fd, 0x23172306, 0xd6422327, 0x0c0e251d,
0x11192b1a, 0x2417d942, 0x5905150d, 0x16dc4256, 0x8309db42, 0x421e2077, 0x172006db, 0x0c5f7d18, 0x200d8e45, 0x5b7d1811, 0x0fe14209, 0x7d185620,
0xe442095b, 0x0c43440c, 0x2a206785, 0x2009e742, 0x42df8a07, 0xe3881aea, 0x881ded42, 0x0ff042ec, 0x02614827, 0x49496002, 0x0bd74660, 0x27001724,
0x89832b00, 0x15231523, 0x09155633, 0x22233527, 0x34013d26, 0x13394836, 0x5555eb27, 0x1919122a, 0x20068512, 0x0f7d4a6e, 0x182b2b27, 0x18122b12,
0x48078601, 0x17211e3f, 0x19801800, 0x183b2009, 0x4110677e, 0xbd450a0c, 0x53552005, 0x55200510, 0x82104748, 0x637e1871, 0x16174709, 0x95087b54,
0x175148eb, 0x834fef8d, 0x48f88d1a, 0x07222557, 0x2d7e1700, 0x22938205, 0x41233523, 0xc021136f, 0x13534880, 0xabab2b22, 0x4913a945, 0x07220b9b,
0x7f181300, 0x4b410a4f, 0x47c0200a, 0x01210ef4, 0x204d822b, 0x0c35412b, 0x93440020, 0x5347830a, 0xa38207d7, 0x84172741, 0x194b48a7, 0x90426282,
0x05d8580f, 0x4e604921, 0x1321113f, 0x0a185633, 0xfe4c3520, 0x12192417, 0x4b19122a, 0xab2011d8, 0x08114518, 0x5612ca46, 0x0d250afb, 0x00001900,
0x082f4e13, 0x4b152321, 0x5e840ee7, 0x860f7949, 0xabab215b, 0x4e19f34b, 0xc38d063f, 0x841b8349, 0x19394168, 0xbf526b82, 0x0c964805, 0x430d8555,
0x06240bd3, 0x1a001600, 0x3324d982, 0x07333717, 0x24163b4e, 0x2b2b1515, 0xa580182a, 0x0112270b, 0x6b2b012a, 0xa64ad66b, 0x0a334113, 0x1200062a,
0x17130000, 0x07233733, 0x2111a44a, 0x0f451515, 0x6bd6220e, 0x0c55426b, 0x20096b45, 0x20478206, 0x41a3881e, 0xa784191c, 0x8319ef44, 0x1a1c4db0,
0x4d09234e, 0x3724061b, 0x3527012e, 0x20055b42, 0x22078233, 0x4207010e, 0xb14c145b, 0x7382180a, 0x0112220b, 0x6c81182a, 0x1e2b410c, 0x1d001124,
0x81180000, 0xec8b11d7, 0x8c17ad4c, 0x5b3f2066, 0x1b4d0cd3, 0x46d39210, 0xd78a1744, 0x8c176e42, 0x1afa4b79, 0x570ab343, 0x172008f7, 0x2205af50,
0x44372307, 0x821814c7, 0x2b21085f, 0x1079422b, 0x6b363623, 0x2003826b, 0x11b143c0, 0x2209234d, 0x1817000b, 0x420cc382, 0x2b200e80, 0x85425f88,
0x8258840d, 0x0c89425c, 0x21122b53, 0xbf883313, 0x41013f21, 0x63881741, 0x5d4e6d82, 0x18cc8618, 0x430b7380, 0x97420dad, 0x00082409, 0x821c0018,
0x187b84d5, 0x24127a89, 0x11211117, 0x437484c0, 0x402511ad, 0x56568040, 0x113141d5, 0x220b0346, 0x82140008, 0x1517235d, 0xb1433533, 0x22508224,
0x41404080, 0x6f420c29, 0x204b8309, 0x46ab8a20, 0xaf851808, 0x8419b543, 0x59ea20b8, 0x07232e27, 0x82231533, 0x145942c4, 0x55558022, 0x09460282,
0x802b2210, 0x4d8a182b, 0x1043540e, 0x2607774f, 0x35331507, 0x4d353723, 0xc0200bc1, 0x69485484, 0x4751840d, 0x1f410d29, 0x08774f09, 0xab861520,
0x85182041, 0x178243af, 0x32560120, 0x182d4705, 0x00002c08, 0xff000008, 0x01eb01d5, 0x000e0080, 0x0021001d, 0x00390025, 0x0041003d, 0x25000045,
0x17011e15, 0x36270706, 0x27012e35, 0x83172715, 0x37342306, 0x16830617, 0x2717352a, 0x35333523, 0x03352315, 0x35059c4f, 0x16322133, 0x2326011d,
0x1607010e, 0x35332717, 0x15230723, 0x03821133, 0x25950132, 0x0e010130, 0x1e010617, 0x24303017, 0x180e0130, 0x16260a82, 0x4040f030, 0xd95f2a40,
0x19122d05, 0x4e3b1010, 0x16150102, 0x6b2a6b6b, 0xc02f0082, 0x24300120, 0x0b17141b, 0x011e160d, 0x82bb3020, 0x1a25220e, 0x200e8215, 0x250e8317,
0x40964050, 0x365dfe40, 0x03832e08, 0x2a3b4e01, 0x752bf521, 0x6b00016b, 0x89008200, 0x000324d3, 0x840b0007, 0x002933d5, 0x00470038, 0x33353700,
0x33152715, 0x15333735, 0xb98c0723, 0x35012b28, 0x16331121, 0xd3820317, 0x23351724, 0xfd9c0515, 0x566b8027, 0x6b6b4040, 0x2bc089aa, 0xaed6fe0b,
0x6b400c06, 0x00014055, 0x2f82f195, 0x40405525, 0x5af52b8b, 0x83270757, 0xd6fe8003, 0x85011417, 0x9c2b2018, 0x22d682f4, 0x41000300, 0x962205ab,
0xd3821300, 0x67182a20, 0x3b2009a7, 0x1526bb82, 0x37363233, 0x2f772e11, 0x013e2a07, 0x011e3337, 0x17150717, 0x20018337, 0x20681835, 0x012b2c09,
0x18122b2a, 0x67180101, 0x4d2b802b, 0xd626063e, 0x2b2b2a16, 0x8c6f162a, 0x40d5230f, 0x2a844040, 0x4b951224, 0x00822b4b, 0x8d4b4b21, 0x62162087,
0x01290507, 0x07062221, 0x3b011e11, 0x866d8501, 0x2303358a, 0x2e352335, 0x0e232701, 0x23150701, 0x21112315, 0x15333505, 0x4c218989, 0x2175831f,
0x62854c1f, 0xce4e4020, 0x40152607, 0x00ff8001, 0x208c8780, 0x2177826b, 0xef706b2b, 0xd6fe2305, 0x2d856b2a, 0x012a6b26, 0x6b6bd600, 0x0ad34818,
0x20000624, 0x8f822400, 0x27250023, 0x21668233, 0xf7182733, 0x521809fc, 0x3b36093b, 0x36343501, 0x15233517, 0x35211507, 0x406b0001, 0x56964056,
0x02821812, 0xfe12183b, 0x181812aa, 0x68185612, 0x56018056, 0x55556b40, 0x2b1218ea, 0x12ea1219, 0x25048219, 0x122b1813, 0x8a825518, 0x50eaea21,
0xec3c0667, 0x09009601, 0x2a000e00, 0x00002e00, 0x011f3225, 0x27010f16, 0x17073637, 0x03352307, 0x15267b87, 0x15213507, 0x034d1533, 0x2f7d8806,
0x0404c101, 0x1507071b, 0x2503162c, 0x402c822c, 0x2a248285, 0x9696aafe, 0xbd268387, 0x08081c03, 0x20832b15, 0x012c8123, 0x228a847e, 0x85ea2a2a,
0x418b8590, 0x0023068b, 0x82d60100, 0x5c1e208b, 0x322307e7, 0x84011d16, 0x2726217f, 0x16217c83, 0x207d8f17, 0x20908217, 0x277285d5, 0xaafe1812,
0xbc0b04ad, 0x56247587, 0x9501aaaa, 0x76266b84, 0xea5c0911, 0xff841417, 0xeb216e85, 0x4470822a, 0x6f8309a3, 0x1320f982, 0x99096641, 0x04d6186f,
0x22779709, 0x82402a40, 0x837b9902, 0x8640201d, 0x88f4207f, 0x187fa6ef, 0x960a8c4f, 0x1f5f217f, 0x09954f18, 0xd3208498, 0x07b74f18, 0x2d1f2e22,
0x00278a82, 0xff000004, 0x41f301cd, 0x3024067b, 0x00003900, 0x2f220d41, 0x27071713, 0x012e2306, 0x16323634, 0x32071417, 0x8606a869, 0x1a102698,
0x0a8baafe, 0xdef81812, 0x42dc3208, 0x1c17421e, 0x52363629, 0x17600136, 0x1e2e1e1e, 0x269f861e, 0x40111a6b, 0x421318ea, 0xfe210a9b, 0x212c82ed,
0x2a82010f, 0x1d293623, 0x182a8318, 0x200833e8, 0x05234200, 0x26082343, 0x15231701, 0x8a233523, 0x1c2343ae, 0x4306a042, 0x01260e23, 0x55556b00,
0x25430001, 0x276b1816, 0x00252111, 0x1c8d6b18, 0x2135252b, 0x27370715, 0x01072707, 0xb5891895, 0x07135008, 0xfe2a012b, 0xb42a01d6, 0x2d68177f,
0x2c6b1816, 0xdf2b2317, 0x1e82167f, 0x00040022, 0x09cb2719, 0x1f001b24, 0x77a22b00, 0x17371724, 0x7c842737, 0x7d981720, 0x3416e524, 0x02841734,
0x98341621, 0x87c82083, 0x16342521, 0x00000034, 0x25053b66, 0x009601c0, 0x8b830017, 0x27002322, 0x05208da1, 0x9806f362, 0x00ff2589, 0x9696d6d6,
0x55228398, 0xf3822a2b, 0x820a0021, 0x0030087f, 0x80010002, 0x24000c00, 0x3f002e00, 0x47004300, 0x61005300, 0x6f006500, 0x14250000, 0x3e270706,
0x27263401, 0x07011e37, 0x06222335, 0x011e1507, 0x2f053a51, 0x35373632, 0x012b012e, 0x32362735, 0x012e3317, 0x17201b82, 0x8205d351, 0x08dd5113,
0x3533152f, 0x2f331523, 0x14010e01, 0x2e371716, 0x055a4501, 0x3e352322, 0x32244582, 0x27151716, 0x17261e82, 0x23272206, 0x5082011e, 0x28000235,
0x231f1723, 0x23171f23, 0x0e455528, 0x13010113, 0x8745230e, 0x22b23008, 0x1b432254, 0x1b495649, 0x130f0aa9, 0x8244440f, 0x22132104, 0xaf200082,
0x38852e82, 0x22235722, 0x39823283, 0xd5232222, 0xc0222e88, 0x56825d35, 0x505e5022, 0x5d285782, 0x0f132202, 0x22140e22, 0x4d3b0686, 0x221e1515,
0x0f801e22, 0x130f190b, 0x190f13aa, 0x22110f0b, 0x178d2266, 0x866a5d23, 0x44d42c35, 0x130f8844, 0x66880f13, 0x85912222, 0x6e00202e, 0x80330acb,
0x07000300, 0x1f001300, 0x37002b00, 0x33370000, 0x82352315, 0x64372003, 0x70180afd, 0x17210bf3, 0x0809713e, 0x2e21072e, 0x37363401, 0x14010e27,
0x2aeb1716, 0x15260082, 0x02026c52, 0x0585526c, 0x01553f25, 0x843f5501, 0x23762205, 0x22e08528, 0x41c4fe1f, 0x2826061f, 0xd62b8023, 0x2d88d580,
0xfe6c5223, 0x822e87ad, 0x89212034, 0x1f1f21bf, 0xd082fa86, 0x2005fb48, 0x05f34100, 0x2100093c, 0x31002d00, 0x47003d00, 0x5f005300, 0x3e130000,
0x17163201, 0x07222623, 0x42753517, 0x07ec4106, 0xb5823d20, 0x35012b28, 0x33152337, 0xfb413335, 0x82072005, 0x055567e7, 0x41051365, 0x132609c7,
0x14011e07, 0xea840706, 0xde852520, 0xea833720, 0x491b7131, 0x431b4956, 0x7f225422, 0x13130f44, 0x8544220f, 0x459a2306, 0xed412322, 0xcd232606,
0x45456767, 0x09bc4145, 0x10422620, 0xfe282207, 0x08e7418a, 0x1e400128, 0x151e2222, 0xcc414d15, 0xaa222c0d, 0x220e1444, 0x2244130f, 0x8222aa22,
0x41b32000, 0x012205ad, 0x02411735, 0x410c2009, 0x00220ad9, 0x00820005, 0x01d60132, 0x0008005a, 0x00190013, 0x00250020, 0x10060100, 0xb082b982,
0xb3830320, 0x0805574b, 0x0706275e, 0x3f270715, 0x06070601, 0x1617010f, 0x01270717, 0x44404015, 0x78040478, 0x0f0f0742, 0x045e3207, 0x019d5f04,
0x020a7601, 0x0304079e, 0x047a8204, 0x010a8707, 0xf4fe145a, 0x49500114, 0xf8fe5049, 0x38603807, 0x35380207, 0x108d3835, 0x291e0d10, 0x1009286d,
0x8d200d0b, 0x28221117, 0x200ba747, 0x208b8480, 0x66879633, 0x162005ec, 0x20059c45, 0x05646535, 0x07822320, 0x33153322, 0x07209b82, 0x5e299591,
0x332b2bc9, 0x2b400607, 0x2500842a, 0x0101402b, 0x98960407, 0x2a40c228, 0x40141740, 0x07822b40, 0x40402b27, 0x130f0603, 0x08637900, 0x22052341,
0x5b1e001a, 0x2541057b, 0x82012013, 0x010f2368, 0x90821723, 0xa2821720, 0x82373521, 0x31919208, 0x08a0e2fe, 0x8f040203, 0x0b848080, 0x82a00d06,
0x8f968084, 0x0d02012d, 0x560c0a07, 0x1218ab2b, 0x482b2b2a, 0x03240c5b, 0x33000700, 0x4f0a6d43, 0x23200543, 0x2905fb6e, 0x0e152335, 0x17161401,
0x7f513315, 0x35332a0a, 0x2634013e, 0xeb233527, 0x3200822a, 0x01211e80, 0xa4283001, 0x01013028, 0x1e2a1e21, 0x821e2222, 0x84028362, 0x2bab380a,
0x178580d5, 0x4f302747, 0x304f1616, 0x3b174727, 0x5a4e1e27, 0x82521d4e, 0x2102823a, 0x0c821d52, 0x46271e21, 0x08260a47, 0x2f001100, 0x91823600,
0x77075d7d, 0x250808a6, 0x14170627, 0x2115013b, 0x3435012e, 0x2327013f, 0x21173335, 0x1415011e, 0x010e010f, 0x3337012b, 0x15273715, 0xe273c023,
0x12ab2205, 0x08088319, 0x0101e323, 0x00fff605, 0x1d051812, 0x14462b4d, 0x0c093c01, 0x14064c03, 0x55139f0b, 0x15554040, 0x24181812, 0x20008219,
0x08078324, 0x02014824, 0x18012b05, 0x340a0b12, 0x012a2aa2, 0x0505090c, 0x4a0b0a8b, 0x2b40402a, 0x00000200, 0xd901fcff, 0x99828501, 0x0000442f,
0x32333601, 0x06161716, 0x2206010f, 0x218b8226, 0x09992636, 0x36372c08, 0x33161737, 0x26363732, 0x07270727, 0x3637012e, 0x16011f32, 0x01220614,
0x172a2010, 0x0a211037, 0x1206a21f, 0x0862060c, 0x84620710, 0x10092208, 0x21088208, 0x1183070d, 0x11076322, 0x173e1a82, 0x16120c4c, 0x0b05090d,
0x1b975b2b, 0x6a262207, 0x0c065b25, 0x176c0112, 0x6d291119, 0x0b82a21e, 0x07620622, 0x0c213583, 0x21478312, 0x11826308, 0x0e243e82, 0x0d076207,
0x16271182, 0x0d120c4b, 0x822f0b20, 0x2971243c, 0x825b2626, 0x82002065, 0x20d382c4, 0x06df49ea, 0x3e370023, 0x26d18201, 0x3517011e, 0x7a27012e,
0x440805cb, 0x1107010e, 0x35211123, 0x013e3521, 0x2f1c0ed4, 0x350e0d1c, 0x1024223c, 0x31312d0c, 0x240f0d2c, 0xaa012a23, 0x353d80fe, 0x3c3c34cf,
0x03643d34, 0x3d47012a, 0x03035737, 0x473d3757, 0xfe400101, 0x03162a56, 0x0c435964, 0x13000f26, 0x22001c00, 0x21207a82, 0x3c09a479, 0x26341135,
0x21112103, 0x22211503, 0x33113526, 0x07272511, 0x01170727, 0x1200ffab, 0x058b4c19, 0xff121826, 0x56000100, 0x18281082, 0x1636012a, 0x44162e68,
0x8507b24c, 0xd6fe3220, 0xaafe0001, 0x0112182a, 0xffeafe16, 0x172d6817, 0x0b5b5544, 0x19207783, 0x072b7591, 0x13112111, 0x37173727, 0x64950117,
0x192909b1, 0x6ad6fe12, 0x8d371e55, 0xa056181e, 0x822b200d, 0xff2a2b64, 0x371e5600, 0x02001e8c, 0x07740000, 0x00272a06, 0x2500002d, 0x23272634,
0x06116c35, 0x7b012b21, 0x17200534, 0x8312f973, 0x01072b6c, 0x16090c40, 0x18181256, 0x0483d612, 0xef735620, 0x19db2a0b, 0x65194c22, 0x010c0915,
0xb8ce182a, 0x12d52207, 0x730c8218, 0xd42009e6, 0x1e212282, 0x88df8465, 0x002b2283, 0x2285aa31, 0x84153335, 0x27899cf6, 0x1ac0d6c0, 0x6c1a5224,
0x6b238b9c, 0x8263d5d5, 0x6c202325, 0x03460000, 0x01c02c06, 0x001500ab, 0x0026001e, 0x1837002f, 0x2710d9df, 0x013e013b, 0x23171632, 0x2708ec73,
0x21112335, 0x07152311, 0x20089a7f, 0x21208435, 0x54180115, 0x59260a6d, 0x202a2007, 0x8e763c07, 0x2a742505, 0x6b2a2a01, 0x25058074, 0x48300143,
0xa6410130, 0x1713230d, 0x84761317, 0x2a552305, 0x2b82d6fe, 0x10442b20, 0x82162006, 0x16122133, 0x82058f42, 0x20a78997, 0x4ea5a92d, 0x9b9e05ee,
0x56406b23, 0x23939e40, 0x55556beb, 0x26088b55, 0x001500ab, 0x9725001c, 0x010f2785, 0x35331533, 0x32412733, 0x837d9207, 0x416b2071, 0x7891051e,
0x566a6b23, 0x06277f56, 0xaf5d0020, 0x00ab2208, 0x83738406, 0x050247fb, 0x79602520, 0x17a8410d, 0x6c05c84f, 0x9d410bc7, 0x15012111, 0xe2547283,
0x1094410b, 0x2209a747, 0x82af01c0, 0x001e2cff, 0x01000021, 0x07012e23, 0x44230706, 0x23200d1b, 0x22071a42, 0x19173503, 0x21184a00, 0xf8826b22,
0x0a091623, 0x42758b1c, 0xfe230506, 0x8855abd5, 0x226b85f7, 0xa0290026, 0x3307286d, 0x21113335, 0x9a133311, 0xd6622675, 0x2ad6fe2a, 0x427b9940,
0xff210582, 0x18818200, 0x2f09c343, 0x001900af, 0x00260022, 0x002e002a, 0x01000031, 0x2208cd53, 0x53231714, 0x3b240527, 0x36373601, 0x240a2543,
0x15233503, 0x37038637, 0x0107011f, 0x15191295, 0x02483616, 0x1912b208, 0x0b591219, 0x0a2e191c, 0x3e061e43, 0x8080561e, 0x6ad6d6d6, 0x1980016a,
0x0208b212, 0x15163648, 0x2a011219, 0x0a1c1912, 0x41191609, 0x2b2b0712, 0x2a2a562b, 0x952b2b55, 0x4d004040, 0xd62c0537, 0x1c00af01, 0x28002500,
0x30002c00, 0x250f1d41, 0x2335013b, 0x05483311, 0x26342206, 0x05524f07, 0x17061425, 0x18273715, 0x19071953, 0x270be501, 0xd62ad5d5, 0xa7192b2a,
0x27059342, 0xd66a6a62, 0xabab2bd6, 0x2a0ca241, 0x2a2a012b, 0x12c0c02a, 0x85012b19, 0x80eb2494, 0x6d2baa40, 0xd5390777, 0xab01eb01, 0x18000800,
0x00002400, 0x21152133, 0x1127012e, 0x0e112533, 0x07a26401, 0x1e213723, 0x05c24e01, 0x1707172e, 0x40371737, 0xabfe5501, 0x2b011812, 0x0a99f818,
0x122b012a, 0x1e4ca118, 0x4d1e4d4c, 0x4c2c0282, 0x18012b1e, 0x2b550112, 0x1812d5fe, 0x9a530882, 0x82a72005, 0x2522871f, 0x00040000, 0x7b85ff00,
0x1300032e, 0x28001c00, 0x11250000, 0x1e011121, 0x0d9ac118, 0x86110721, 0x27052492, 0x45372707, 0x1724054b, 0xd5fec001, 0x01207183, 0x20083e62,
0x21938655, 0x82886201, 0x554c4c23, 0x21808201, 0x24885601, 0x56223284, 0x9c85abfe, 0xa985d520, 0x92834c20, 0xe3450020, 0x4537200f, 0x2f212de3,
0x05654f01, 0x37170723, 0x1b734617, 0x1fd6c026, 0x2d1e2d2e, 0xef450286, 0x863d201f, 0x1e2e232b, 0x2f412e2e, 0x01d62a06, 0x00270080, 0x0034002b,
0x2ca1ad38, 0x33071727, 0x2f343637, 0x15231701, 0x2aa29d33, 0x364c4cc0, 0x3f05053e, 0x9f393975, 0x4cad2ca1, 0x0f053f4c, 0x26723e07, 0x4c000200,
0x80240597, 0x1b000d00, 0x0e259b82, 0x11230701, 0x05c05533, 0x15073329, 0x012e3523, 0x8211012b, 0x1e2d0812, 0x01d50101, 0x2ac02d3c, 0x01241b96,
0x012a802a, 0x2a961b24, 0x6b3c2dc0, 0x01013c2e, 0x1c24d500, 0x956b1501, 0xfe241c95, 0x018001ab, 0x0f8b183c, 0x000b260e, 0x0019000f, 0x185f8221,
0x2208c57f, 0x82272315, 0x6c37205d, 0x2c0807d8, 0x27231335, 0x15230723, 0x55400121, 0x80959555, 0xaa805580, 0x801219d5, 0x40161812, 0x40155516,
0x2b6b0001, 0x2b2b2ad5, 0x2aabab56, 0x057655d5, 0x16150124, 0xbd822a16, 0x220cf775, 0x18000015, 0x290b8b44, 0x15233513, 0x33153727, 0xdb631735,
0xd610250c, 0x40d64040, 0x210cc963, 0x007bedfe, 0x5b402005, 0xb5820f43, 0x614f518b, 0x9537200b, 0x0b39645d, 0x40aa0c24, 0x698eaa40, 0xda788220,
0x8869200a, 0x08778575, 0xd601dd23, 0x1500a301, 0x27001e00, 0x37170000, 0x3e35012e, 0x17323701, 0x1e071737, 0x010e1501, 0x07272207, 0x05ef4f13,
0x03261322, 0x2c056a79, 0x1c591603, 0x78022723, 0x1c2f395b, 0x29098823, 0x02604984, 0xc31a1d01, 0x08872c24, 0x1e280a2a, 0x785b3153, 0x18281b02,
0x01210988, 0x278b828d, 0x01184126, 0xabfe1316, 0xfe220a85, 0x574313ea, 0x42322010, 0x37252eb5, 0x15233523, 0x1daf4223, 0x40556b24, 0xa942402a,
0x5615231f, 0x177d5555, 0x00562908, 0x001b0012, 0x00280024, 0x012a8f82, 0x15211523, 0x32011e33, 0x05863736, 0x6c183520, 0x172d087c, 0x3634012e,
0x06141632, 0x17333527, 0x31898227, 0x21352327, 0xab013337, 0x15ebfe6b, 0x24362401, 0x05848001, 0x95fe2b29, 0x1c12120e, 0x85f21212, 0x35233306,
0xeb554a2a, 0x00010c1f, 0x15015516, 0x241b4080, 0x03831b24, 0x018b6b22, 0x1805e77e, 0x2707967b, 0x6b35358a, 0x152b6a80, 0x220d037a, 0x821d0014,
0x0c7f429d, 0x4708b649, 0x172608a4, 0x33272622, 0x8e42010e, 0x05757f0d, 0x85828820, 0x12121b29, 0x0d3a2658, 0x183a0dda, 0x200c8ddd, 0x857f857e,
0x29ca2405, 0x4c292121, 0x0b260c37, 0x1e001200, 0xfb422500, 0x3507380d, 0x22061417, 0x012e1726, 0x27070622, 0x1632013e, 0x010e3717, 0x18352622,
0x210db75d, 0x558240c6, 0x2007a52c, 0x1e072028, 0x2f382f0e, 0xec83120e, 0x220db242, 0x8220209e, 0x0c982aa2, 0x1f0c0e0e, 0x11151511, 0x210d8286,
0x8282200d, 0x24081b47, 0x000b0096, 0x22fd8217, 0x8d32002b, 0x0b2f4385, 0x82822720, 0x08408d19, 0x9c832720, 0x17352722, 0x40439292, 0x1c49240b,
0x871e0e2f, 0x820f209d, 0xd60121aa, 0xfe209f91, 0x230b5243, 0x1f11157e, 0x6020a986, 0xbb83a784, 0x2f58ad83, 0x00072509, 0x002c0020, 0x24068552,
0x16052107, 0x05e66915, 0x17373422, 0x210c5242, 0x9d832707, 0x1e072731, 0x45363201, 0x637a631b, 0xaafe101b, 0x5d0c7401, 0x0c2f05e4, 0x3002161e,
0x2001232f, 0x302f2301, 0x88521602, 0x2f382ea6, 0x3d322601, 0x0c11323d, 0x785b2623, 0x262d8202, 0x171e2326, 0x83171e1e, 0x1e742a03, 0x0b0f0f0b,
0x1515111e, 0x0c675000, 0x35000a32, 0x00003e00, 0x37363437, 0x1415011e, 0x25262206, 0x22269482, 0x35013e27, 0x95822734, 0x2e371739, 0x07222301,
0x3e012f26, 0x22263401, 0x17140706, 0x26070607, 0x82013e35, 0x1a54182f, 0x1f6e2908, 0x1e1f1514, 0x67011d2c, 0x1e3c7582, 0x071f1a1b, 0x07201407,
0x1c2f0e1e, 0x150e0c0d, 0x12100b0a, 0x0301121b, 0x1a083219, 0x6820c384, 0x2a06d842, 0x1c381249, 0x1612381c, 0x828d1d1d, 0x0b083cb0, 0x130f1d2e,
0x1f0c0e01, 0x18021511, 0x11030d1d, 0x0e12121a, 0x44220506, 0x84382f2b, 0x422620d0, 0x6b1805aa, 0x29200d63, 0x4720c184, 0x2e20c382, 0xc686b382,
0xc4821320, 0x36171423, 0x20a88637, 0x23d38417, 0x33160706, 0x2e26b782, 0x07220701, 0xdc861716, 0x2008c650, 0x26de8307, 0x36321614, 0x841d16a1,
0x824920ce, 0x061a2373, 0x37450711, 0x07082508, 0x1d1c1a10, 0x5b238984, 0x870b0c0d, 0x852f20e3, 0x82832095, 0x230282e3, 0x161d0115, 0x0121d687,
0x27ee827f, 0x1e1b2f38, 0x60491816, 0x24052f68, 0x0b180102, 0x24158208, 0x02fe785b, 0x20ec8615, 0x20398580, 0x20478520, 0x0e634300, 0x1d001724,
0xdd422900, 0x37072c0d, 0x07173717, 0x07270717, 0x43073727, 0x0b840562, 0x4305f148, 0x79240be4, 0x171617ca, 0x06820084, 0x3a0d1426, 0x030d3a4c,
0x8b46118a, 0x168f210c, 0x1c850082, 0x21a21626, 0x8c212929, 0x16213883, 0x08168417, 0x04000023, 0xeaff0000, 0x9601e001, 0x1f001800, 0x33002c00,
0x06010000, 0x22012e07, 0x27260706, 0x0617011e, 0x3b048207, 0x2637013e, 0x05013e27, 0x22061417, 0x2e173526, 0x1e372701, 0x37363201, 0x37010e17,
0x21081284, 0x1ee00137, 0x4c451c3b, 0x1e3b1c45, 0x23161801, 0x5b780201, 0x0102785b, 0xfe181623, 0x1a1340c1, 0x79436013, 0x8244200b, 0x01402f10,
0x17111d93, 0x11171919, 0x142e1a1d, 0x7f414334, 0x34432d05, 0x206e2e14, 0x0e12120e, 0x1115019b, 0x2007dc42, 0x2010839a, 0x0d1f4520, 0xaf821120,
0x3f411e20, 0x0717240e, 0x45270727, 0x37200613, 0x37200a82, 0x270ca847, 0x172e9d79, 0x70171617, 0x25051145, 0x17171633, 0x29412d2e, 0x2d7a220c,
0x25008217, 0x212129a1, 0x08828a29, 0x0b5b2d20, 0x05b75108, 0x14000b22, 0x57069d5e, 0x07220a23, 0x314d013e, 0x0d144105, 0x45073346, 0xc6200c99,
0x20061f43, 0x0b0b416a, 0x8c066642, 0x429e2088, 0x98200532, 0x200a0241, 0x453b8684, 0xdb390623, 0x0e009601, 0x2f002600, 0x42003800, 0x27250000,
0x3e342726, 0x37011f01, 0x258d8236, 0x010e010f, 0x88182e23, 0x142d07af, 0x010f0607, 0x06222627, 0x1e271714, 0x05955b01, 0x24081443, 0x07273717,
0x08018317, 0x93013725, 0x1001073f, 0x18180817, 0x070f1709, 0x27461c5f, 0x0303785b, 0x795a5b78, 0x11190102, 0x32120102, 0x86281122, 0x13562384,
0x0282131a, 0x2e175423, 0x31008416, 0x063f2c2e, 0x010f0c0e, 0x07191809, 0x4e09170f, 0xfe411b17, 0x31058205, 0x11010203, 0x22110101, 0x0da01231,
0x121b1212, 0xdb850e12, 0x2d176c24, 0x01821617, 0x5a2e1721, 0xeb20084b, 0x0828d382, 0x1b001100, 0x43002a00, 0x200a9154, 0x079a5417, 0xab870720,
0x0e372724, 0x53181401, 0x07220aa9, 0xee880706, 0x53333621, 0x1e25054f, 0x37361701, 0x20a885c0, 0x05894395, 0xae872a20, 0x12531730, 0x4b4a0d19,
0x0d24190c, 0x3a0c0d0d, 0xc6432f26, 0x5f452705, 0x0a171306, 0xf8855476, 0xf5334122, 0x0685b186, 0xb0877020, 0x012f162b, 0x4b0c2519, 0x19250c4b,
0x223e820c, 0x4401167e, 0x5a25064a, 0x6b530a44, 0x21fa8502, 0xef432101, 0x0014230e, 0xfd490018, 0x093b420e, 0x33352322, 0x08794718, 0x23143242,
0x0aaaaabf, 0x42053841, 0x7d221328, 0x9941402a, 0x0f5a1806, 0x003b310b, 0x00920045, 0x00b4009d, 0x27262500, 0x26362726, 0x31216382, 0x84048236,
0x23022902, 0x07010e22, 0x07061706, 0x15200684, 0x0e2f0784, 0x16171601, 0x17011e17, 0x37163316, 0x8237013e, 0x16322f33, 0x012e010e, 0x1733013e,
0x06070616, 0x3c832223, 0x372b4983, 0x36313736, 0x3736013f, 0x823b011e, 0x012e261e, 0x07060727, 0x22118237, 0x82342627, 0x2045841b, 0x21058333,
0x6083010f, 0x33171623, 0x22168232, 0x821f1633, 0x011e2862, 0x37362625, 0x821e3233, 0x1726221a, 0x21708232, 0x6e823632, 0x0e226183, 0x5d852201,
0xc9016c08, 0x090d1207, 0x0d090804, 0x06040914, 0x1f061622, 0x0204070a, 0x1d130705, 0x13060a08, 0x02180a05, 0x01140301, 0x0b020d06, 0x09090309,
0x2045180f, 0x2f341a1b, 0x04012835, 0x0b0a7606, 0x0b130d01, 0x5b080c01, 0x272f1d01, 0x1b191730, 0x0909143d, 0x03030305, 0x05040406, 0x21080702,
0x231c0515, 0x071a2405, 0x05040909, 0x8207210c, 0x0b3d0834, 0x240d0603, 0x0c110110, 0x0c030306, 0x03031c14, 0x17071c21, 0x03070d13, 0x07020903,
0xfe040104, 0x090b01f2, 0x020c0902, 0x160e120b, 0x1e130809, 0x07131e10, 0x0807060e, 0x3823080c, 0x08058223, 0x98050721, 0x02080a10, 0x0d09180f,
0x16131107, 0x09010312, 0x0a1b0b0c, 0x1d14210d, 0x04030415, 0x820e181d, 0x0301352d, 0x220d0309, 0x0f141025, 0x04051617, 0x37181301, 0x3c23170c,
0x0d31ac83, 0x026f0b12, 0x0410152d, 0x0a131204, 0x0d190a11, 0x82ee8209, 0x153e08e3, 0x382c0319, 0x01010224, 0x03020403, 0x10032106, 0x090d0e0c,
0x020f1108, 0x0e030702, 0x21051307, 0x052b1e17, 0x01100c10, 0x08020205, 0x09471804, 0x110b020e, 0x460a020e, 0x02020402, 0x33820104, 0x090d1d29,
0x0d091414, 0x4203061d, 0x20201093, 0x44108346, 0xe9490acf, 0x1d9b4208, 0x430bee49, 0xa44206dd, 0x09f04913, 0xcb446620, 0x01d6210d, 0x2405ef49,
0x00340026, 0x0dd1453e, 0x820cef49, 0x5426208e, 0x142405af, 0x33012e07, 0x12880483, 0x23150728, 0x26220614, 0x99792335, 0x0bfb490d, 0x130c892d,
0x18010606, 0x06011824, 0x829f1306, 0x86182003, 0x1515240f, 0x4a182419, 0x024a0da2, 0x0cd4280c, 0x120c0a0a, 0x83121818, 0x82038707, 0x2b52220f,
0x20008220, 0x1053412b, 0x3b4b2120, 0x0a534110, 0x7c0a3847, 0x1e460fb5, 0x564f2214, 0x144c4156, 0x210a1a46, 0x3b4b159a, 0x00202411, 0x4131002d,
0x52451a4b, 0x0db54607, 0x3e41918f, 0x4574200b, 0x2b200543, 0x8f0bbb46, 0x0c36419c, 0x3645de20, 0x8eb32005, 0x000335a9, 0x01ffff00, 0x008001de,
0x00230011, 0x3f000035, 0x011f3601, 0x0ca97d18, 0x0f16052a, 0x012b0601, 0x26012f22, 0x37261c82, 0x13171633, 0x0c823435, 0x1d221582, 0x2c821401,
0xaa261582, 0x53030353, 0x05840404, 0x0532012a, 0x0c066305, 0x63060cc6, 0x11260887, 0x04037f04, 0x0585047e, 0x0230f428, 0x03023002, 0x05820460,
0x04290282, 0x0a290360, 0x0909ac0a, 0x2a0582ac, 0x0a01010a, 0x059200ff, 0x82024802, 0x92052302, 0x08830303, 0x0820a482, 0xc026a782, 0xc0010002,
0xa9820800, 0x2f001d2c, 0x41003800, 0x53004a00, 0x5b4a0000, 0xa35e1808, 0x5f272008, 0x26380e35, 0x37013e37, 0x3233011e, 0x07061637, 0x36340106,
0x2315013b, 0x14012315, 0x352ed682, 0x05333533, 0x013d2622, 0x15331533, 0xf9823201, 0x2335232b, 0x0f0bc035, 0x0f0f160f, 0x20068575, 0x0e376b4b,
0x27010136, 0x5b1e1139, 0x12181835, 0xfe184541, 0x551219e8, 0x00022b55, 0xfe270684, 0x2b19122b, 0x83550155, 0x0fc52305, 0x02880f17, 0x8447d020,
0x785b3408, 0x600282fe, 0x11090949, 0x2f2b273b, 0x16784605, 0x83800107, 0xabfe212f, 0x80200583, 0x00204e8b, 0x6306cf42, 0x122405ff, 0x22001500,
0x67056762, 0x26230709, 0x82012e27, 0x351732de, 0x011f3507, 0x0e012e36, 0x16171601, 0x37173732, 0x77561827, 0x702b2008, 0x95380601, 0x052a0b0d,
0x2d642527, 0x15267696, 0x2b4b4511, 0x37172211, 0x931e4218, 0x3109ef63, 0x1812aafe, 0x6e290b08, 0x1e0a272d, 0x75751540, 0x258223d3, 0x824a4521,
0x1e4222c6, 0x07e96340, 0x8f640320, 0x2c8d9008, 0x2327012e, 0x33153311, 0x35171615, 0x278d9f17, 0x956b0815, 0x0614176b, 0x15298b9b, 0x6b56010d,
0x400d0519, 0x228993e8, 0x82080000, 0x01ea228b, 0xc77018ab, 0x00192a08, 0x0021001d, 0x00280025, 0x95761800, 0x6007200d, 0x3321055e, 0x20078235,
0x230b8a17, 0x01173527, 0x26072041, 0x18120001, 0x8440d601, 0x84562000, 0x16402205, 0x81761876, 0x2aea220b, 0x20018216, 0x230584aa, 0x0075752b,
0x13207f8d, 0x200a7b63, 0x257f8f2b, 0x33112103, 0x85833315, 0x078f7d83, 0x2b27828d, 0x6b9500ff, 0x824040ab, 0x8b028b83, 0x00ff2989, 0x556b5601,
0x6a2a2a2a, 0x27420386, 0x01d52c06, 0x008001d6, 0x002f0029, 0x514a0041, 0x272110d9, 0x199d5b23, 0x17333525, 0x18271533, 0x2b194351, 0x090c4001,
0x19128016, 0x2a801219, 0xba5b0685, 0x6e96250b, 0x0799912b, 0x12415118, 0xcd5b1520, 0x12ab2506, 0x12192b18, 0x240fce5b, 0xab2ad56b, 0x4351186b,
0x0a635c12, 0x635ccb83, 0xa1c7a00f, 0x1897a1ac, 0x27086755, 0x0011006b, 0x00190015, 0x12ab7518, 0x35230728, 0x35213733, 0x76180121, 0x7d280c89,
0xff40c0c0, 0x01000100, 0x0d847618, 0xd5191229, 0x002b2b2a, 0x82000400, 0xd6012300, 0x61826b01, 0x1d235783, 0x82250000, 0x18352043, 0x89100976,
0xaafe235d, 0x76185601, 0x61870beb, 0x2bd54022, 0x0ce77618, 0x59826287, 0xeaff002c, 0x9b01c401, 0x2e001400, 0x61823300, 0x07012e30, 0x26152335,
0x16060706, 0x37013e17, 0x0582011e, 0x07060726, 0x22262726, 0x53080685, 0x32013e37, 0x3733011f, 0x17163236, 0x26062716, 0xab01013e, 0x2a2a5319,
0x1919532a, 0x141e275d, 0x1e140e0e, 0x143f5d27, 0x15060737, 0x07061530, 0x07091437, 0x11252009, 0x11132a13, 0x07092025, 0x023d58a3, 0x1827eb4e,
0x156b6b15, 0xbc3a2718, 0x0113010a, 0x0a3d0282, 0x3e500ebc, 0x10100501, 0x503d0105, 0x14101918, 0x08090908, 0x9b191113, 0x230f3c29, 0x05735800,
0xab015622, 0x092ab182, 0x1d001300, 0x15130000, 0xaa823533, 0x33153726, 0x35231537, 0x2105606c, 0x8b7d1511, 0x35272f05, 0x255295ab, 0xc0332435,
0x95090c01, 0x04840c09, 0x2b010132, 0x42c0d6d6, 0x55c34368, 0x010c0955, 0xa2fe0c01, 0x09210785, 0x08fb5a55, 0x09828020, 0x1b00092d, 0x00002100,
0x35272333, 0x8223013b, 0x15012c5e, 0x15171614, 0x2133011e, 0x82373632, 0x013d2169, 0xd52b7785, 0xab552b2a, 0xfe2b2a55, 0x82090cc0, 0x2a012167,
0x092c5582, 0x3827c40c, 0x6b402b25, 0x1555012b, 0xc0200f82, 0x85837c83, 0x45d51524, 0x6f74466d, 0x0d2e080c, 0x13170000, 0x06160333, 0x17071307,
0x33171606, 0x85948a2b, 0xc91a1601, 0x13012b49, 0x01156a19, 0x0280feaa, 0x6a010226, 0x19017ad5, 0x3b860001, 0x96017029, 0x35000800, 0x52370000,
0x14240503, 0x010e0716, 0x80080282, 0x26022f26, 0x013f3637, 0x013b013e, 0x17333717, 0x011f011e, 0x27061514, 0x31260607, 0x27230727, 0x17062734,
0x21ff2307, 0x2c422c2c, 0x1602162c, 0x09020206, 0x01020604, 0x100c0501, 0x0e010e05, 0x04102d2d, 0x20010804, 0x060d0102, 0x29041b04, 0x01060507,
0x01fa2908, 0x2b2b422c, 0x03502c42, 0x03030d3b, 0x02030201, 0x2e100402, 0x4e050e3f, 0x0902014e, 0x02047d05, 0x02040105, 0x6dbf4907, 0x20008201,
0x0647416d, 0xa382eb20, 0x05000222, 0x2a08a782, 0x2500000b, 0x07372317, 0x21010b33, 0x01211303, 0x31633200, 0xeb7cf87c, 0xa1ebd601, 0x55c0befe,
0x5501d5aa, 0x40016bfe, 0x5900ebfe, 0x44220e27, 0x97444800, 0x1b954410, 0x22271525, 0x553b1506, 0x073106f4, 0x3307010e, 0x3e373634, 0x26343501,
0x35331507, 0x1a4e6001, 0x6cd6c036, 0x24011e19, 0x090a110a, 0x010b0e07, 0x0d070526, 0x26311f11, 0x361f9756, 0x081617c0, 0x0d110b09, 0x0f0f0906,
0x07040b09, 0x1a150e16, 0x85262685, 0x01ea2cc7, 0x009601eb, 0x0015000f, 0x181f001b, 0x2611c196, 0x37270703, 0x5b170717, 0x21220516, 0x846e2135,
0x80013709, 0x01011812, 0x6020e718, 0x8a402060, 0x20404020, 0x80fe2b60, 0xd4458001, 0x1256240a, 0x84b6fe18, 0x8222821f, 0x40a0211f, 0x0522738b,
0x73850b00, 0x60821320, 0x87270721, 0x05074863, 0x3221332c, 0x2e113736, 0x11210301, 0x5c84cb21, 0x0584ca20, 0x76846282, 0x7e861220, 0x72841220,
0x1b840b20, 0xea206485, 0x20076c6b, 0x217e8301, 0x5c180180, 0xeb2208a7, 0xe7828001, 0x0000142e, 0x010e2101, 0x011e1107, 0x013e2133, 0x01246383,
0x17371737, 0x1121d883, 0x82d08219, 0x2f078359, 0x4a9afe19, 0x01604a36, 0x11190180, 0x1912d6fe, 0x012d0682, 0xfe19112a, 0x604060d6, 0x00000080,
0x2103820e, 0x53830100, 0x07000329, 0x10000c00, 0x47001400, 0x2a2b07ab, 0x32002e00, 0x3e003900, 0x5a250000, 0x17250643, 0x013e1523, 0x200c8203,
0x25038217, 0x2e331535, 0x08820501, 0x11201d83, 0x01200782, 0x33219082, 0x20088237, 0x21038227, 0x9a831507, 0x85053521, 0x842b2095, 0x19112500,
0xab2b2bd5, 0x01280a82, 0x2b44fe19, 0x2a56012b, 0xfe210082, 0x3ea882d5, 0x2b2b802b, 0x562a2a55, 0x01121801, 0x3500ff00, 0x80443527, 0x802a802b,
0x0119012b, 0x822a2b66, 0x1911221e, 0x22058254, 0x842bd6fe, 0x2d4382cb, 0x12aa802b, 0x44aad519, 0x005b452e, 0xc7940f00, 0x24002022, 0x20063b5e,
0x22c78235, 0x8241003d, 0x152323c9, 0x03823533, 0xc9841520, 0x17200882, 0x27200382, 0x0120c983, 0x1e221783, 0x0f821301, 0x03820520, 0x11200783,
0xd4840782, 0x08821520, 0x03823720, 0x03822720, 0x86eb0121, 0x85aa20cb, 0x23a282cb, 0xd6ab6ffe, 0xd182b982, 0xc6840020, 0xfe2a2a23, 0x84d483ab,
0x90e48220, 0x81fe29ca, 0x19125580, 0xd52b2b01, 0x2b20ce82, 0x8022d487, 0x5a82d52a, 0x00050022, 0x2609c763, 0x002f002b, 0x433f003b, 0xad862e99,
0x3233352a, 0x34013d36, 0x35230726, 0x251ec85c, 0x562a2a96, 0x8d622a40, 0x43162005, 0xab2b2088, 0x192babab, 0x19122a12, 0x4d002a55, 0x962a08d7,
0x0f009601, 0x1c001300, 0x5e182500, 0x3b2c08ef, 0x35363201, 0x23263411, 0x23153307, 0x08e09518, 0x08d25718, 0x6e649520, 0xd6d62a08, 0x30246bd6,
0x30304830, 0x05456324, 0x260d7e43, 0x012b802a, 0x82304930, 0x182a2602, 0x24191924, 0x06f74418, 0x5601d43a, 0x0d000500, 0x15001100, 0x013f0000,
0x07173327, 0x33273733, 0x07272313, 0x152b0682, 0x1533012f, 0x4b64642c, 0x82196464, 0x4bc72b05, 0x21a63e3e, 0xa6218574, 0x0084952b, 0x5dd6fe2c,
0x3232575d, 0x0032324a, 0xc7820100, 0xde010022, 0x1829c382, 0x07250000, 0x23152717, 0x08438235, 0x3f27373c, 0x33271701, 0x07331737, 0x07011f37,
0x167cd101, 0x16562a56, 0x4d22157c, 0x2a224915, 0x222a2b2b, 0x224d1549, 0x102b40ab, 0x2b105050, 0x05452540, 0x40685326, 0x25536840, 0x1b414505,
0x00002906, 0x2b01d601, 0x1a001000, 0x09b14d18, 0x14010e26, 0x15331716, 0x23057e54, 0x17011e25, 0x71820983, 0x37221282, 0x05821533, 0x23327e82,
0x56953335, 0x24241b56, 0x2d56561b, 0x3c01013c, 0x06820301, 0x82012a21, 0xaa6a260f, 0x402ac0aa, 0x22028240, 0x5b2b2b01, 0x01250556, 0x3d2d2d3d,
0x2a058201, 0x2b01241b, 0x40152a56, 0x4440402b, 0xff230533, 0x829601ea, 0x000b22d7, 0x0d421811, 0x27372c0e, 0x01072707, 0x01553f00, 0x82098309,
0x55013a02, 0x6e1e8c1e, 0x95011e2c, 0x5b3f5501, 0xb30707b3, 0xff553f5b, 0x2d6f1e8d, 0x081b491e, 0x17002b28, 0x2b002700, 0x45184300, 0x37220c25,
0xb0822335, 0x3524b882, 0x3327012e, 0x123d4518, 0x010e3722, 0x22095c6e, 0x6c3d013e, 0x3329056f, 0x18125535, 0x122b1218, 0x82c68218, 0x121822c8,
0xde44186b, 0x2a2a2209, 0x05224595, 0x56562b22, 0x55202584, 0x08455218, 0x54180120, 0x44180911, 0x01230cea, 0x82ab802b, 0x0cc17f10, 0x4a000021,
0xbb83082f, 0x2d002322, 0x3b27b988, 0x15231501, 0x6e013e33, 0x332106ea, 0x06766f35, 0x2405786b, 0x17353315, 0x20d78233, 0x20a38527, 0x20068255,
0x2c5c8301, 0x16168056, 0x80161656, 0x2a2a2b2b, 0x8c92842b, 0x822b206f, 0x2b802418, 0x826b6bd6, 0x08d76502, 0x2b01d62a, 0x15000700, 0x23001900,
0x15227d82, 0x6b821533, 0x0e333523, 0x21581801, 0x8837200e, 0x2a2b2473, 0x18402b2b, 0x20092258, 0x226c866a, 0x18abab2b, 0x2309b057, 0x562b2b01,
0xeb6c6788, 0x43562007, 0x20220683, 0x69822900, 0x08286318, 0x013d3629, 0x05232634, 0x18211521, 0x83099974, 0x1632216c, 0x8405e250, 0x56012de3,
0x12181812, 0x0001aafe, 0x400100ff, 0x22052663, 0x85552b77, 0x55012108, 0x25061968, 0x2a1812d6, 0x1f63d6d6, 0x802a2306, 0x29632b80, 0x20eb8205,
0x0eb74403, 0x480f1d4c, 0x35221d4d, 0x34481523, 0x802b211d, 0x191f9844, 0x310a5f2a, 0x01d601c0, 0x00190080, 0x002c0020, 0x1300002f, 0x70431517,
0x180e2005, 0x2b0cf55c, 0x01093717, 0x23272634, 0x01371735, 0x2a05b470, 0x0614011d, 0x15271517, 0x69121856, 0x3a3a0a02, 0x71fe1b2b, 0x090c0f01,
0xfe293b16, 0x0e1505f4, 0x0f1812d6, 0x5001194f, 0x07697a56, 0x1b2b3c0d, 0xaafe9001, 0x25010c09, 0x0c01433b, 0x1219100c, 0x48150ed5, 0x05001919,
0x87ff0000, 0x001c2693, 0x00260023, 0x24959a37, 0x23011f01, 0x24988517, 0x01271533, 0x269b8927, 0x35332707, 0x8c551623, 0x823b209d, 0x6470249d,
0x83ab5151, 0x1885279f, 0x0527d8fe, 0xa1830d15, 0x19280c27, 0x555001d6, 0x22a3917b, 0x846b509b, 0x181826a4, 0x0c282801, 0x23a6840f, 0x00d52805,
0x200c436a, 0x2d75462b, 0x411dbd41, 0x975d1fbb, 0x8749180c, 0x6c0220f1, 0x4e1808f7, 0x1521072b, 0x0c437c33, 0x2b2bd523, 0x0aee522b, 0x2b2b0124,
0x5d7dd6ab, 0x0b43630c, 0x092b4e18, 0x1a654318, 0x8d56d521, 0x0bc65452, 0xd62b0123, 0x18357cab, 0x1422ab89, 0xcf442000, 0x22232705, 0x33011d06,
0x71482335, 0x7e2f2007, 0xc0250bf6, 0x19122a55, 0x21048380, 0xca7d1219, 0x22c3820b, 0x8212182b, 0x05024685, 0x0320cd8c, 0x83080f41, 0x182c2063,
0x290cc949, 0x35231533, 0x013b3634, 0x167d2335, 0x12552718, 0x2a121919, 0x04838055, 0x46191c7d, 0x5623072b, 0x982b1812, 0x0b037fed, 0x24001829,
0x35250000, 0x49232634, 0x27200558, 0x089e5818, 0x3e331526, 0x011e0301, 0x08f84818, 0x1240012c, 0x19120e0e, 0x2a555512, 0x8d82552a, 0x8032848b,
0x12120e20, 0x1812200e, 0x2a2b2b01, 0x18012b2b, 0x41182701, 0x6f831697, 0x71823020, 0x53061421, 0x1e2a0b26, 0x14011d01, 0x16322306, 0x718a2715,
0x0b6a4918, 0x89400121, 0x41878379, 0x80201702, 0x12208389, 0xf5209484, 0x4018888a, 0xf3410c68, 0x07e77e09, 0x35331523, 0xe7441823, 0x8255200f,
0x0de141d0, 0xd6568024, 0xd9415656, 0x0ba7420c, 0x2209e77e, 0x82333533, 0x19d0414c, 0x2b2a2b23, 0xab47182b, 0x0dad420c, 0x66825620, 0x18064018,
0x1120bb89, 0x4706c750, 0x854805f7, 0x0b464108, 0x1855c021, 0x22151948, 0x422b2b80, 0xce8e072e, 0x2306d351, 0x009601d6, 0x29235f83, 0x82130000,
0x034918cb, 0x18a8420d, 0x82061643, 0x17a34174, 0x49052543, 0xe2980523, 0x1323838a, 0x18001700, 0x21090949, 0x6d493317, 0xc74e180a, 0x5555231a,
0xb9412a2a, 0x0959490d, 0x2b237b82, 0x182b802b, 0x610c3346, 0x73850da7, 0xf98f2f20, 0x22cf4e18, 0xf2497782, 0x41808b09, 0x2b210ddf, 0x0523442b,
0x7f229485, 0x09412b2b, 0x0baf4319, 0x1200062b, 0x013f0000, 0x33152335, 0x2c451807, 0x55eb230b, 0x4d425580, 0xab55240c, 0x18ab2b2b, 0x460ca344,
0x47830c8f, 0x00001e28, 0x23372337, 0x75433335, 0x2beb2218, 0x7d531855, 0x44618319, 0x04201a63, 0x2608ef44, 0x00070003, 0x82310025, 0x06734f6d,
0x07d45d18, 0x18087344, 0x440d7da9, 0xeb210a02, 0x71a9182a, 0x0a364614, 0x1c65a918, 0x0d1d4618, 0x870b6764, 0x823d2093, 0x33152395, 0x03822735,
0xdc410720, 0x22332805, 0x34013d26, 0x44333736, 0x1d240894, 0x07061401, 0x440b0a45, 0xa1840b98, 0x45191221, 0x2a20051b, 0xf7410887, 0x2bab2717,
0x2b2b552b, 0xaa1801ab, 0xaf411615, 0x0cad440c, 0x220b6344, 0x181f000b, 0x200f9960, 0x05134313, 0x41232721, 0x3b250549, 0x15231501, 0x0fd55b37,
0x97427020, 0x55552309, 0x5e5c2a2a, 0xc2fe210c, 0x5c101d43, 0x0f430cdf, 0x82252008, 0x23352155, 0x210d2341, 0x6d823527, 0x2017b845, 0x24104315,
0x0f435520, 0x22621810, 0x1751181a, 0x001f280c, 0x002f0023, 0x82232500, 0x4c232084, 0x06410588, 0x062e440c, 0x0f895118, 0x2a950123, 0x2900822b,
0x122ac02a, 0x2a121919, 0x06825555, 0x2a2a3c23, 0x0a5a4255, 0x2b2bd522, 0x80282382, 0x2b121801, 0x2b2b1812, 0x21052041, 0x988b2b2a, 0x2308c362,
0x009601d6, 0x22059741, 0x823b002f, 0x2315218d, 0x4305ef4e, 0x1d21055c, 0x07ef4601, 0x22063841, 0x1833011d, 0x460c3757, 0x99850cea, 0x4e189620,
0x12210947, 0x805a182a, 0x78d52017, 0x56200504, 0x01209b85, 0x095f4e18, 0x2619fd47, 0xff000002, 0x82d201d5, 0x000f22af, 0x25a98224, 0x3637010b,
0x6a661737, 0x16372805, 0x16322517, 0x84013e17, 0x16332204, 0x05526317, 0x01364c08, 0x02c5c4c4, 0x2e990807, 0x0f3a3b0e, 0x0609982e, 0x2718a9fe,
0x31270b0b, 0x270b0c27, 0x0f182418, 0x72505072, 0xfed61810, 0x020101ff, 0x8fc70407, 0x19b7b719, 0x0604c78f, 0x14141927, 0x15151819, 0x4b170118,
0x61010161, 0x4d00184c, 0x7f850553, 0x31001c22, 0x7c668191, 0x22262c05, 0x3e272607, 0x010e3701, 0x8e373607, 0x278e9093, 0x184528c2, 0x53211a21,
0x18220382, 0x8a832945, 0x9f8e2520, 0x922c9a91, 0x041e2201, 0x13181713, 0x2b221e05, 0x01209983, 0x0020ab8b, 0x2406634f, 0x008101c1, 0x069d5404,
0x2307172a, 0x0f220135, 0x36371701, 0x3d05955e, 0x01373315, 0x13c2142c, 0x06090e01, 0x06275027, 0x55073206, 0x01ec50ec, 0x13c11400, 0x12844201,
0x32061224, 0x13824406, 0x47764f84, 0x4c2e200a, 0x27212d89, 0x1e5a7035, 0x4c6b9621, 0x15201f8e, 0x22089f73, 0x824001d6, 0x000729dd, 0x0019000b,
0x15210100, 0x05270184, 0x25233533, 0x74232615, 0x3d2905ff, 0x01353301, 0x0100ff40, 0x35038500, 0x2b01abab, 0x241b0c0a, 0x40243724, 0x2a2b4001,
0xab2a552b, 0x0d8204af, 0xc01b2422, 0x08db6d18, 0x2220578b, 0x15235982, 0x82053521, 0x35152803, 0x33371533, 0x4f152315, 0x33210598, 0xc4861832,
0x2362860a, 0x406a80ab, 0x0c224c84, 0x9c4f160a, 0x2b402b06, 0x2b2b552b, 0xd52a2a80, 0x7784c02b, 0x4f260421, 0x974f06a1, 0x2eaf7110, 0x9a432720,
0x1e435409, 0xe8822b20, 0x59410282, 0x2a55251f, 0x2b2b2b2a, 0x97449682, 0x00332f0a, 0x00400037, 0x13000045, 0x14011e15, 0x05860706, 0x013e3325,
0x86171632, 0x2e352505, 0x37363401, 0x23250586, 0x2622010e, 0x23058527, 0x21112117, 0x08056f18, 0x27071729, 0x122b3307, 0x83121818, 0x014a2603,
0x011e2d1e, 0x20058440, 0x2514934a, 0xff00010b, 0x72544000, 0x40992605, 0x01d66b2b, 0x8833a095, 0xff552748, 0x1801eb00, 0x02821824, 0x15403f3e,
0x0007006b, 0x01eaff00, 0x009601da, 0x0014000d, 0x0020001a, 0x002b0027, 0x0100002f, 0x072dcf82, 0x1507010e, 0x2e27013e, 0x07062701, 0x2cc88217,
0x33070607, 0x16073736, 0x27263717, 0x27068217, 0x37272635, 0x17152335, 0x3f080382, 0x54481501, 0x3c500907, 0x0a086b5a, 0x32407667, 0x902f251e,
0x072a0629, 0x28074d1c, 0x40061c1e, 0x2f40321e, 0x2a2a7e25, 0x2a95012a, 0x3b496b0b, 0x0c2b0851, 0x674c5b85, 0x20290609, 0x4d2b061d, 0x36841e84,
0x291d7323, 0x23378207, 0x56808073, 0x20057341, 0x22a38406, 0x829501dc, 0x001328a3, 0x001f0019, 0x953a0025, 0x32a091a1, 0x2e362737, 0x07170702,
0x021e0627, 0x3f161737, 0x88013e01, 0x076c24aa, 0x95786809, 0x58ab37aa, 0x271c0807, 0x2a1d2a12, 0x241c0709, 0x07075711, 0x01010316, 0xba862b95,
0x5a840b2b, 0x0608694e, 0x061d1f29, 0x26b98f22, 0x23115860, 0x8208061d, 0x27122b3a, 0x5807081c, 0x03160606, 0xd3530008, 0x01c02208, 0x20c7822b,
0x08ef4a11, 0x0c6f6b18, 0x5f533720, 0x15332709, 0x26343533, 0x51536b27, 0x12aa2909, 0x2b2b2a18, 0x12192b2a, 0x0a026b18, 0x2b2b0123, 0xcf5b1856,
0x8201200a, 0x00022167, 0x01200082, 0x09256783, 0x00001b00, 0x23488213, 0x35233533, 0x5d906882, 0x402b4025, 0x8a555540, 0x56d62157, 0x4f916282,
0x276bff20, 0x641a2007, 0x132b0d79, 0x07062335, 0x3634012e, 0x73171637, 0x4624103c, 0x1812180d, 0x0d210282, 0x0e826546, 0x152bed2b, 0x24180101,
0x15010118, 0x1047732b, 0x618d2620, 0x980e4773, 0x0c4c736d, 0x79873020, 0x798e3020, 0x8c0d5273, 0x00002185, 0x28073741, 0x00260080, 0x1300002f,
0xcc401811, 0x55232009, 0xbc7f055f, 0x1533270c, 0x22213533, 0x1b631706, 0x80402507, 0x55552b2b, 0x20200383, 0xfe230086, 0x541912ab, 0x01230693,
0x86abfe55, 0x85202015, 0x2b2b2424, 0x543c1980, 0x04210887, 0x2b008200, 0x8001d601, 0x0c000800, 0x1a001000, 0x8405b54a, 0x33252363, 0x03832315,
0x44182120, 0x552f08a5, 0xfe40d640, 0x404001aa, 0x4096fe40, 0x18400140, 0x82071269, 0x80402210, 0x2505826b, 0x191912aa, 0xbb480012, 0x00002105,
0x03215784, 0x05735800, 0x0f821d20, 0x35231527, 0x06222337, 0x26c18207, 0x2317012e, 0x82253315, 0x21052103, 0x03820e82, 0x80400126, 0x18128080,
0x18213482, 0x31608783, 0x012baafe, 0x55012b00, 0x192b9595, 0x12c0c012, 0x64829519, 0x55802b23, 0x44628255, 0xb9220643, 0xbb829601, 0x2500122a,
0x34002f00, 0x44003d00, 0xaa556782, 0x13300807, 0x26361732, 0x07272627, 0x011e0736, 0x27263317, 0x0617013e, 0x013e3307, 0x06232637, 0x07062637,
0x3707010e, 0x27372726, 0x011f1607, 0x1427012e, 0x25280783, 0x36321707, 0x00012637, 0x0805ea44, 0x26351a7b, 0x04080701, 0x2c2cac06, 0x2d060902,
0x3b01040a, 0x2d0a0426, 0x25020807, 0x03363e34, 0x0706133f, 0x0c108c01, 0x124b187f, 0x2c026e10, 0x14240228, 0x54f0fe14, 0x1f230113, 0x18950103,
0x24191825, 0x05effe18, 0x090f462c, 0x2e089406, 0x1c18361c, 0x06050124, 0x38191c24, 0xcd01051e, 0x0b1f0d01, 0x06771d2c, 0x401c1d01, 0x01a10e06,
0x1312050b, 0x61050505, 0x060b1f49, 0x0b9f6e2e, 0x3f003626, 0x75004800, 0x8205a542, 0x230623ab, 0x03832722, 0x08e77018, 0x34352629, 0x17323736,
0x8333013e, 0x16322404, 0x84333617, 0x011e2304, 0xfe821415, 0x7f470720, 0x26342105, 0x22086266, 0x82010e37, 0x06142c43, 0x35070607, 0x27261523,
0x8235012e, 0x27262b50, 0x14010f06, 0x37321716, 0x4c82011e, 0x16373c08, 0x35013e33, 0xab012627, 0x11171e01, 0x150e061b, 0x120e0e12, 0x1b060e15,
0x011e1711, 0x02131901, 0x06060e12, 0x080c1003, 0x1a150506, 0x08060515, 0x0603100c, 0x02120e06, 0x47d51913, 0x4d200571, 0x7c2b0685, 0x0e121e0b,
0x1016100d, 0x82191619, 0x0e0d3205, 0x0e0b1e12, 0x20200b0c, 0x3905070b, 0x05394545, 0x220b8307, 0x830b010c, 0x0f132857, 0x0d0a0a0d, 0x8201130f,
0x1d142175, 0x0d315082, 0x0b030112, 0x0e0b040d, 0x0d040b0e, 0x1201030b, 0x2175820d, 0x7c185f1d, 0x20080b20, 0x060f0e1d, 0x131b552a, 0x032a2a03,
0x2b541b13, 0x0f0e0f06, 0x25030707, 0x69400203, 0x40690303, 0x220a8202, 0x18000707, 0x250aef87, 0x00130009, 0x87180029, 0x32271575, 0x17011d16,
0x82152715, 0x35072303, 0x03833537, 0x01363423, 0x6f8718c0, 0x0c082b10, 0x2f1b6c6c, 0x6c6c1b2f, 0x8718d50c, 0x35351467, 0x434b080c, 0x154a221b,
0x140e0e14, 0x1b224a15, 0x0c084b43, 0x29008200, 0xff000003, 0x01c001d5, 0x878300ab, 0x87951920, 0x91059c7a, 0x55132577, 0x1e8d371e, 0x43267194,
0x8c371e56, 0x9f56001e, 0x255f8506, 0x01000015, 0xd1411507, 0x07352105, 0x2b0ba748, 0x6902c000, 0x02695555, 0x402a406b, 0x012d0282, 0x5a8056ab,
0x8e18188e, 0xab6a805a, 0x201282ab, 0x0e2f4100, 0xa7961f20, 0x820a254d, 0x2a5284ad, 0x3fc0c0c0, 0x95950155, 0x85925602, 0x86d5205c, 0x56563259,
0x7812abfe, 0x42426947, 0xee784769, 0xaa2b4040, 0x100f41aa, 0x2520c082, 0x120d8918, 0x15333727, 0x27333533, 0x41068207, 0x29271114, 0x802b402a,
0x41402b80, 0x83221416, 0x00826b40, 0xaf636782, 0x05174105, 0x29001324, 0xd1963100, 0x012e3526, 0x15070622, 0x52078a59, 0x3424081c, 0x15163236,
0x7a327c91, 0x242e2401, 0x0f0f0a01, 0x100b760a, 0x1340260f, 0x8794131a, 0x1720c32d, 0x20171e1e, 0x0b4b0a0f, 0x84010110, 0x0d202406, 0x760d0f0f,
0x402008ab, 0x3d06434b, 0x00200017, 0x21353700, 0x15212515, 0x33351521, 0x35230515, 0x013e3533, 0x15171632, 0x53472733, 0x26342e05, 0xff000140,
0xfe800100, 0x15018080, 0x053d78aa, 0x0955153d, 0xab0c2a0c, 0x2b952a2a, 0x552b2bd5, 0x241c1555, 0x2b151c24, 0x15090c01, 0x4a0c0915, 0x6787084b,
0x65971d20, 0x26342322, 0x3320fc83, 0x2b246292, 0x6a0c120c, 0x2b296189, 0x1b24241b, 0x090c0c09, 0x08b74e2b, 0x9601ab30, 0x3d000f00, 0x4f004600,
0x00005800, 0xb6822113, 0x2a06fe7d, 0x013e1127, 0x37013e17, 0x7635013e, 0x16270529, 0x07010e17, 0x8a350706, 0x0e152710, 0x011e1501, 0x21823632,
0x013e2722, 0x1808a778, 0x2008a377, 0x07e34517, 0x00018022, 0x2005fb5c, 0x320785ff, 0x03212ba2, 0x2a1b130e, 0x0e10011a, 0x2c1f1c03, 0x83120e14,
0x0e12330c, 0x1a01120e, 0x0d101b2a, 0x07382203, 0x090e0909, 0x06850709, 0x0685a720, 0x350d455f, 0x132d02f5, 0x15101905, 0x0f151b1b, 0x170c0518,
0x55110101, 0x0f841805, 0x05181023, 0x230a8286, 0x141b1b14, 0x3f201a84, 0x0e224b83, 0x0685e009, 0x06852020, 0x00820020, 0x00000628, 0xd601c0ff,
0x0741c001, 0x4161200a, 0x152b0509, 0x07061411, 0x35012e21, 0x41363411, 0x37260509, 0x0622012e, 0x09411415, 0x22108809, 0x82010e15, 0x36322117,
0x27231082, 0x1807013e, 0x6010fab5, 0x4518082b, 0xab350880, 0x18120001, 0x00ff1218, 0xa2191912, 0x0f02212b, 0x1b010112, 0x25fa8329, 0x142c1f1b,
0x0d84110e, 0x0f0f1123, 0x2d148211, 0x0e0f0101, 0x06382204, 0x090d0909, 0x06850709, 0x0685a720, 0x40821f20, 0x012a1826, 0xfe1219c0, 0x2a067d6b,
0x19125501, 0x132d02f5, 0x83111805, 0x17102bfe, 0x01170b06, 0x06541101, 0x0f841018, 0x85061822, 0x26062441, 0x0c06170f, 0x83013f17, 0x090d2254,
0x200786e1, 0x2807861f, 0x192ba1fe, 0xfe550112, 0x05a344ab, 0xd601e82b, 0x09009601, 0x00001500, 0x05165025, 0x36171623, 0x08098207, 0x37011e34,
0x0e373616, 0x034b0101, 0x26222225, 0x21212a04, 0x436f2321, 0x1717b20c, 0x6f430cb2, 0x22532df3, 0x162c5422, 0x36662223, 0x679c013e, 0x9c670303,
0x33473e01, 0x22538905, 0x8227001b, 0x4f062057, 0x1e2405f3, 0x013e0701, 0x27235182, 0x82272606, 0x0706255d, 0x03263717, 0x17206384, 0x01216f84,
0x2663824b, 0x2226042a, 0x8a482522, 0x15243c69, 0x081d1c08, 0x237b0715, 0x01014b5b, 0x7b234d57, 0x232217f3, 0x22542c16, 0x8aaa5322, 0x21a5327b,
0x27151527, 0x3f03e6fe, 0x056b2269, 0x68137707, 0x050f433f, 0x01000024, 0x6f5e01d6, 0x5e052029, 0xfe23246f, 0x5e6aabf4, 0x2b211c70, 0x08705e2b,
0x09d3e518, 0x19001530, 0x2b002200, 0x00003100, 0x33152113, 0x1f4e1517, 0x3523230b, 0x7c82013e, 0x48052721, 0x272a102c, 0x27072737, 0x2b014007,
0x45614040, 0x06a27c05, 0x01180127, 0xfe2a5f3d, 0x05a17ce0, 0x2b06a87c, 0x621e80e3, 0x6b011e2d, 0x1b6b5556, 0x2506a37c, 0x751812eb, 0xc0783535,
0x1b122206, 0x24028212, 0x621f8020, 0x06a7462c, 0x01ea3a08, 0x009601d6, 0x00120005, 0x35230500, 0x05213527, 0x15231506, 0x15171633, 0x37323533,
0x8080d501, 0xeffe0001, 0x0c8b8019, 0x19232b13, 0x4080ea15, 0x2b231959, 0x808b0c13, 0x0acf5719, 0x18001223, 0x26508200, 0x26220625, 0x8b273734,
0x15272141, 0x11214982, 0x275a8303, 0x0c1e0133, 0x1e0c1824, 0x672a4c87, 0x2b2a8080, 0x0ce2ab80, 0x14822418, 0xd1305486, 0x01ea8040, 0xd280feaa,
0x06000480, 0xf8ff0000, 0x0d2f9f84, 0x29001b00, 0x3b002e00, 0x00004800, 0x45373613, 0x7e08068c, 0x23071716, 0x2f071417, 0x17163701, 0x011e1736,
0x35050717, 0x37013e27, 0x37361736, 0x26010f17, 0x07173337, 0x15170727, 0x2e072726, 0x37262701, 0x17372726, 0x07160706, 0x2707010e, 0xb5350706,
0x1701110f, 0x11011825, 0xbe52220f, 0x22193603, 0x161a0a0e, 0x40021511, 0x0240d6fe, 0x19161115, 0x19230e0a, 0x4c6f0336, 0x163d3d17, 0x1a111243,
0x04031711, 0xdc090f0b, 0x0b0f0936, 0x82170304, 0x123b0810, 0x05094101, 0x1818121c, 0x09051c12, 0x0e10542d, 0x0d2d4e11, 0x090a0210, 0x0807131e,
0x1e130807, 0x10040b09, 0x114e2c0d, 0x2c48440e, 0x3830182c, 0x073b0701, 0x1619131d, 0x82101510, 0x19162302, 0x10821d13, 0x00390222, 0x7f0d9760,
0x07232f57, 0x65331533, 0x6b201f3e, 0x0823577f, 0x5655c032, 0x00070056, 0x02dbff00, 0x009c0100, 0x000e000a, 0x00170013, 0x00290025, 0x1300002d,
0x013b3627, 0x011d1632, 0x33053527, 0x35052335, 0x21171523, 0x17220883, 0x92182707, 0x2726072d, 0x15270137, 0x8f823733, 0x0823af31, 0x120ec00c,
0x2babfe2b, 0x2bc0012b, 0x8291fe1a, 0x58402507, 0x11033d1b, 0x2a081783, 0x22011b68, 0x2b80aaaa, 0x07245501, 0x2bdc0e12, 0xab80d5a6, 0xd61abcd6,
0x3e1b58dd, 0x0e120d0c, 0xfe1b68f8, 0xd5c2aba7, 0x82008080, 0x24938900, 0x00140003, 0x38918219, 0x0031002d, 0x11000035, 0x25231533, 0x1417011e,
0x35361707, 0x012f2634, 0x20088223, 0x20998317, 0x2b958227, 0x2e272307, 0x37273701, 0x15062713, 0x32202482, 0xba839783, 0x27088982, 0x01352900,
0x190b1903, 0x09800f18, 0x2bcc0c31, 0x1b784f1a, 0x10800c71, 0x7b1a1027, 0x0c80f91b, 0x17293601, 0x40fe2bbe, 0x80212a83, 0x2c0d82a0, 0x17190c0c,
0x12341e1a, 0x0330335c, 0x20a982cb, 0x2b2f8219, 0x5e205b4c, 0xfe1b7c2b, 0x171580d1, 0x9f214f82, 0x20c38280, 0x09cb5b00, 0xab820820, 0x15130029,
0x37170727, 0x4e350727, 0xeb260bda, 0x7e7e1e4b, 0xce5a4b1e, 0xab402a0c, 0x7f7f1e4b, 0xfeab4b1e, 0x0ae25cab, 0x180b2758, 0x2108935c, 0xdc823715,
0x011f3722, 0x25082b79, 0x3e27010e, 0xc5453701, 0x011e2305, 0x5e912aeb, 0x870cac5a, 0x5daa206a, 0x0b20214b, 0x0473c383, 0x05395e05, 0x82232521,
0x21d082cc, 0x3c8a2b33, 0x87530121, 0x57c020bc, 0x70200a6f, 0xa75a8685, 0x22c3860c, 0x83231525, 0x0f1722c2, 0x58b78201, 0xfa4c0769, 0x21c68406,
0x51868001, 0xd520a397, 0x8741e49e, 0x4ac3840a, 0x6e8406d5, 0x07330522, 0x0722c182, 0xdd182317, 0xad200d02, 0xef5fc49c, 0x24c38609, 0x27333537,
0x21c58237, 0x304b013f, 0x205a8405, 0x08b47a07, 0xc2a03e20, 0xc29fab20, 0x210f4b42, 0xb6843525, 0x5c153721, 0x01210b29, 0x11ed4115, 0x21084b42,
0x4b425501, 0x2325231d, 0xc4830735, 0x580c0d61, 0x15200cbc, 0x4b42a49e, 0x00002923, 0x8001ab01, 0x1e000800, 0x49490982, 0x16172207, 0x317a8206,
0x17072226, 0x37012e07, 0x1507010e, 0x012e3521, 0x64690001, 0x01792905, 0x14121d12, 0x14142a14, 0x01210782, 0x24188227, 0x012e0156, 0x06636980,
0x4712e034, 0x0328672d, 0x2d672803, 0x260b1247, 0x19555519, 0x00820026, 0x03820420, 0xc0010027, 0x03008001, 0x05537300, 0x21250025, 0x18352111,
0x5c0f374f, 0x012d06b7, 0x01d6fe95, 0x12d6fe2a, 0x01121919, 0x2105822a, 0x00822abc, 0x2a012b22, 0x0a4e7218, 0xff181331, 0x80d62b00, 0x00040000,
0x01e0ff00, 0x82a001eb, 0x06355559, 0x17072532, 0x0727010f, 0x2737012f, 0x013f2737, 0x011f3717, 0x37270f82, 0x2707012f, 0x8217010f, 0x011f24d8,
0x823f1737, 0x2a6f8721, 0x4d0734eb, 0x28494928, 0x8834074d, 0x27052a09, 0x371e3b05, 0x053b1e37, 0x20098827, 0x2d8682a0, 0x4f3bc02a, 0x1f1f4411,
0x3b4f1243, 0x09834e3c, 0x4f11442d, 0x0c3c2d3b, 0x34181834, 0x862d3c0c, 0x3b0d2209, 0x839e8413, 0x8500209f, 0x000722fb, 0x33a3820f, 0x13000017,
0x33171507, 0x07273537, 0x07151733, 0x17352723, 0xb02c8786, 0x70a07070, 0x577c8e70, 0x80577c57, 0x01216a83, 0x22108380, 0x822b70a0, 0x7c572210,
0x24ef887e, 0x01d201ee, 0x284d8292, 0x0023001f, 0x3f000027, 0x87e58601, 0x071721f7, 0xf384e186, 0x5f870720, 0x24242f25, 0x82572357, 0x26078602,
0x3f1a1a1f, 0x8240401a, 0x20078504, 0x20738345, 0x20208a69, 0x20288257, 0x20208aba, 0x2030823f, 0x2285849a, 0x75090000, 0x033f08a7, 0x14000b00,
0x20001800, 0x2d002900, 0x3e003500, 0x23050000, 0x35273335, 0x15071523, 0x52273533, 0x362205e2, 0x14930326, 0x14940120, 0x56562b2e, 0x56162a16,
0x0113012b, 0x6407012a, 0x01210d8c, 0x300e8c1c, 0x40eb1515, 0xb6b62040, 0x152020ca, 0xfe2c0215, 0x6a0f9d68, 0x6b2b088f, 0x11000800, 0x32002400,
0x42130000, 0xe84908fb, 0x32072907, 0x07061716, 0x010e2326, 0x1621c182, 0x05b47217, 0x1523152c, 0x2622010e, 0x32373634, 0x8718eb17, 0x123c0da4,
0x0d13172e, 0x4e321d1a, 0x0d03ad02, 0xd07605e6, 0x1e012a4a, 0x161e1e2d, 0x6b010a0c, 0x3a061c43, 0x1824192a, 0x95192418, 0x150c0708, 0x0c200107,
0x40121717, 0x2b402b2b, 0x821e1775, 0x0401252a, 0x06000000, 0x2b420382, 0x00112105, 0x22054774, 0x82250021, 0x8215209f, 0x14112c8e, 0x32013b16,
0x3e113536, 0x18353301, 0x8207e759, 0x37332199, 0x26061655, 0x01181240, 0x84d61218, 0xd5fe2205, 0x21008540, 0x00826b2b, 0x2b800122, 0x2f06ff4c,
0x12000112, 0x15802b18, 0x15551516, 0x166a1615, 0x08087b5e, 0x9601c02c, 0x1a001100, 0x2e002a00, 0x23010000, 0x33172137, 0x27210713, 0x013e3337,
0x012e013d, 0x34012e03, 0x14163236, 0x27233706, 0x038a3533, 0x37231737, 0x19950133, 0x16d5fe04, 0x01291415, 0x2603292a, 0x19011615, 0x05004ba6,
0x86352208, 0x035d5b03, 0x65036260, 0x43a70367, 0x011c0723, 0xfe2a4055, 0x2e7c7cfc, 0x6b101a01, 0xc0fe1515, 0x05fc4a01, 0x152b6a22, 0xab2f0184,
0x0002006b, 0x01d5ff00, 0x00ab01d9, 0x823e0032, 0x012e3c8b, 0x15233537, 0x26363523, 0x17010e27, 0x07061611, 0x27013e15, 0x37362611, 0x8207011e,
0x15232917, 0x17020e16, 0x17160611, 0x2723ab82, 0x47263611, 0x2f080bd0, 0x070fc001, 0x022b2b01, 0x374a4b37, 0x1d0e0101, 0x0301282e, 0x1d3b3c1c,
0x012b2b02, 0x01071e07, 0x564c2204, 0x0104224c, 0x241b8f07, 0x04380401, 0x20080282, 0x2b012401, 0x15011301, 0x481f152a, 0x1f480404, 0x2108ebfe,
0x38022b02, 0x0615011c, 0x35030436, 0x29198208, 0x12031301, 0x0200ff02, 0x02820226, 0x02000130, 0x01f9fe12, 0x4d231b24, 0x234d0303, 0xb482241b,
0xc34bc382, 0x82432005, 0x26b7820c, 0x07010e07, 0x8237013e, 0x06272702, 0x1e072722, 0x02821701, 0x27012e22, 0x07240282, 0x17071416, 0x24821b85,
0x17240282, 0x37173236, 0x27851b85, 0x3426373f, 0x190ad501, 0x27161930, 0x0b060117, 0x0a18290d, 0x0a366a36, 0x0b0d2918, 0x27170106, 0x22198216,
0x9f27270a, 0x2b012120, 0x529031af, 0x220af746, 0x8212000e, 0x219f82d9, 0x20460614, 0x35290805, 0x3313013e, 0x00012335, 0x1602795a, 0x14aafe14,
0x05790216, 0x95015555, 0x1b445b01, 0xaaaa1431, 0x441b3114, 0x55acfe5b, 0x0c774800, 0x18000e21, 0x8a086b70, 0x49172049, 0x17260a35, 0x35272115,
0x588c1533, 0x1614da2f, 0x49600201, 0x01026049, 0x00011416, 0x2f668fd5, 0x16280fec, 0x02024232, 0x28163242, 0x552b930f, 0x04207483, 0x00267782,
0x9601d601, 0x73821900, 0xe7422620, 0x34352905, 0x22012b26, 0x23011d06, 0x200df06c, 0x0c757027, 0xd94c2320, 0xab012705, 0x56121856, 0x02821812,
0x01121822, 0xe8230583, 0x7b2b5656, 0x8235056a, 0x5a3d01d6, 0x4001013d, 0x1818122b, 0x13182b12, 0x191912ea, 0x26048212, 0x01402b2b, 0x821e2d1e,
0x1ad42102, 0x17212a82, 0x057b4e00, 0x21248787, 0x32002a00, 0x08cfa818, 0x2221232a, 0x34013d26, 0x35013b36, 0x322b0483, 0x05011d16, 0x27352115,
0x50152335, 0x172008d7, 0x736d8d88, 0x85058305, 0x00ff3297, 0x56805601, 0x1b1b142b, 0x741b1b28, 0x523601c0, 0x84908236, 0x85048485, 0xea2b239a,
0x94832bea, 0x29232483, 0x8218c01b, 0x0014212e, 0x280a937c, 0x000f00b2, 0x00210018, 0x2e958225, 0x07272335, 0x17071523, 0x37173315, 0x6e373533,
0x4b180801, 0x072a08b2, 0x01173727, 0x464765ac, 0x02824665, 0x4665472b, 0x1610cafe, 0x15152016, 0x25068599, 0x20b620a0, 0x1c870601, 0x47654626,
0x2015016a, 0xd4202083, 0x01200786, 0x002a2082, 0x00000300, 0x2b01eaff, 0x09829601, 0x82000b21, 0x143f468e, 0x15460120, 0x0ef8450d, 0x0021c282,
0x2304830a, 0x8001d601, 0x83088779, 0x002922c7, 0x05954c2d, 0x15213727, 0x35331321, 0x05ae6f23, 0x1f011e27, 0x3e372101, 0x23dd8201, 0x33152135,
0x33221482, 0x078e0735, 0x0f822720, 0xaa012b3b, 0x3b5a56fe, 0x9140ab40, 0x0a041b10, 0x010b96fe, 0xff6ba31b, 0x2b152b00, 0x3403866b, 0x55558056,
0x40152b01, 0x19011540, 0x11959511, 0x2b2b2a19, 0x84008215, 0x162a2104, 0xc0220082, 0x7d181616, 0xab20086b, 0x1732e782, 0x00003600, 0x27012e01,
0x0e152335, 0x15230701, 0x88841e33, 0x37013e22, 0x28088582, 0x07063317, 0x0f012f35, 0x27261501, 0x27233733, 0x15373623, 0x013f011f, 0x23171635,
0x7c012307, 0x40223109, 0x2f093122, 0x2e08862f, 0x1b34a92e, 0x011f220e, 0x0e221f01, 0x8a01351b, 0x0134370c, 0x30231501, 0x09242409, 0x22402330,
0x8f8f0930, 0x40223009, 0x27822020, 0x28831a82, 0x0f290b82, 0x0202341b, 0x220f1b34, 0xdfb61820, 0x01c02608, 0x000b00ab, 0x63a38217, 0x352009ee,
0x290c2957, 0x7575964b, 0x752b7596, 0x02827540, 0x6b40012a, 0xd6d6956b, 0xd5d56b95, 0x57180982, 0x5546103b, 0x18322005, 0x180c0c76, 0x24179255,
0x23153307, 0x18038215, 0x51121856, 0x742405de, 0x2a2a012a, 0x21061e49, 0x254a1219, 0x17132209, 0x2a571817, 0x2060210e, 0x83089b7b, 0x001526cf,
0x0026001e, 0x9956182d, 0xc5571817, 0x35172511, 0x35233533, 0xd625889d, 0x0155556b, 0x27879c80, 0x55406b80, 0x00030040, 0x01200082, 0x06288783,
0x25000f00, 0x07250000, 0x33225c82, 0xba55013d, 0x23332507, 0x0622012e, 0x0f2f5618, 0x826b0121, 0x27f88560, 0x2007599e, 0x5907202a, 0x2008164b,
0x205883ab, 0x05f4596b, 0x858bfd83, 0x2108774a, 0xf7af00ab, 0x83010f21, 0x20f79e98, 0x08f7a702, 0x00000420, 0xd601eaff, 0x16008001, 0x24001a00,
0x00002900, 0x012e013f, 0x37363435, 0x3717011e, 0x044c2735, 0x013b2806, 0x23153303, 0x820f2205, 0x363a0814, 0x0f26012f, 0x37331501, 0x191403d5,
0x21161c24, 0xff568306, 0x18181200, 0xd6808012, 0x055701d6, 0x152c1504, 0x041b0707, 0x812c812f, 0x2106032b, 0x01241b16, 0x83141901, 0x0341552b,
0x55012705, 0x16034355, 0x2719152b, 0x07550811, 0x29878505, 0x000e0009, 0x00380034, 0x6c8d2500, 0x22370739, 0x32363426, 0x2e371516, 0x010e2301,
0x17161407, 0x35333523, 0x8f151733, 0xac0121a5, 0xd834818c, 0x19191216, 0x0a231824, 0x30251a29, 0x5d0e0f01, 0x2b3c19d6, 0xab22b088, 0x8a8bbdab,
0x82154121, 0x12182f2a, 0x011c1623, 0x20142430, 0x3c55d50c, 0xb7892b44, 0x51002a21, 0xbf270657, 0xc001b201, 0x4b001b00, 0x2b2705e3, 0x33002f00,
0x82130000, 0x1e152896, 0x013f3201, 0x82331617, 0x013e3805, 0x3e37012f, 0x012f2601, 0x35172631, 0x37271533, 0x33270717, 0x82072315, 0x82032007,
0x08c08303, 0x0907e623, 0x0d090101, 0x05232904, 0x3b04030a, 0x23030406, 0x02090533, 0x5404bb05, 0x1e3c846b, 0x2b2b703c, 0x39068281, 0x1e3c1e1e,
0x016a6a05, 0x07090107, 0x030907f4, 0x02094d21, 0x070c031b, 0x3c820a4d, 0x039d052c, 0x6f2a2a1b, 0x843d1e3d, 0x0582ce6b, 0x1e100125, 0x84511e3d,
0x000823ab, 0xab85ff00, 0x31790c20, 0x00343606, 0x003c0038, 0x37000040, 0x010e0717, 0x2707011f, 0x010f012e, 0x2dbab227, 0x0a2088f5, 0x1f230409,
0x09130522, 0xc7ac0f1a, 0x0772d52d, 0x4c091202, 0x040a4b0e, 0xaee41506, 0x820620d3, 0xdb6c18d3, 0x00282109, 0x4320d183, 0x1fd76c18, 0x0de32019,
0x37321734, 0x2e010f06, 0x15252701, 0x1e053623, 0x16371701, 0x0e820717, 0x17d56c18, 0x6049c526, 0x92600202, 0x62280483, 0x24496002, 0x190b1f1f,
0x01251282, 0xfe171856, 0x231082ab, 0x2a120315, 0x6c180f82, 0x01211de0, 0xe6c1187b, 0x247f2708, 0x1c060130, 0x10820129, 0x132b4023, 0x230d8253,
0x031c2201, 0x00200d82, 0x04200082, 0xf42cdf82, 0x8001e101, 0x16000b00, 0x30002500, 0x4f18db82, 0xc98d0a1b, 0x37363226, 0x010e2715, 0x1520cc84,
0x3320c882, 0x4a25c886, 0x1e2e2d1e, 0x2302822e, 0x772d1e2d, 0xc582bd8c, 0x402a1624, 0x14841d0e, 0x01154924, 0x0982250f, 0x2e1f6d22, 0x2d202882,
0x01210584, 0xb5211940, 0x0242250d, 0x01252e01, 0x2b201382, 0x2222a782, 0x0982021c, 0x82060021, 0x01c022a3, 0x22a382ab, 0x84070003, 0x832220a7,
0x8b7b19a7, 0x238d820c, 0x2622010e, 0x8305085a, 0x820d84a7, 0x2e0b85a4, 0x012e2307, 0x2b2b9527, 0x552a2a56, 0x8f402b2b, 0x066e41a3, 0x0128ad82,
0x1be21b1e, 0x2b15011e, 0x01210083, 0x249c8dc0, 0x30302440, 0x29988224, 0x13402430, 0x210c0c21, 0x8f820013, 0xff003708, 0x01d801e3, 0x00150097,
0x0024001e, 0x003e0034, 0x004b0048, 0x012e3700, 0x3626012f, 0x1636013f, 0x011e021f, 0x010e010f, 0x27132627, 0x17160607, 0x07373616, 0x1f83010e,
0x16170726, 0x013f2617, 0x3725b683, 0x17363733, 0x05f2723e, 0x0988ab82, 0x17374808, 0x3223ad27, 0x13042309, 0x1c12d111, 0x115d0804, 0x0f230413,
0xde333e64, 0x2e0823d1, 0x0a482c2c, 0x2a240a32, 0x602b031a, 0x030d0524, 0x070f0905, 0x050c0e01, 0x058f0111, 0x020e1713, 0x0f161405, 0x16130569,
0x8206020f, 0x2a253f0e, 0x390d2103, 0x1d12a627, 0x12032c04, 0x04142411, 0x3ea7111d, 0x010c0c41, 0x2ca82d16, 0x4f820a47, 0x11110b3a, 0xd9141e09,
0x1217a715, 0x032b1a19, 0x02100a0b, 0x09920652, 0x0a0f0407, 0x20230483, 0x82050809, 0x23048209, 0x0011089a, 0x0c278418, 0x1f000f22, 0x2a0ab57b,
0x36322133, 0x26341135, 0x18330523, 0x4a07f367, 0x172605d0, 0x35371715, 0xb9466b07, 0xfe122708, 0x110deef4, 0x04830d11, 0x80800423, 0x0d414780,
0x0d114b23, 0x821d83ae, 0x2a202404, 0x4c2a5656, 0xf6310a33, 0x05006001, 0x2e000e00, 0x07250000, 0x37173727, 0x08bb4f27, 0x06373224, 0x4e18011d,
0x280809a7, 0x27260706, 0x35360722, 0x0e27012e, 0x011e0701, 0x4b6af501, 0xd54a2b20, 0x3624241b, 0x101b2424, 0x5115090e, 0x7d1d1d7d, 0x27058251,
0x251d0c08, 0x01051718, 0x2706097b, 0x204a6a55, 0x018b4a2a, 0x362c2883, 0x1705aa24, 0x01010a18, 0x58474758, 0x15260583, 0x09011112, 0x327b100e,
0x3d2d2105, 0x088b2019, 0x29209785, 0x37239790, 0x8317011e, 0x2e37248b, 0x82062201, 0x89332087, 0x84928ea6, 0x15132c88, 0x7a641b0d, 0x641b1b64,
0x85051a3d, 0x208e8da1, 0x2d898261, 0x040b1215, 0x3f3f3618, 0x013f3636, 0x9c861110, 0x280acb4f, 0x00100080, 0x00240020, 0x0531463d, 0x013e1722,
0x072c8583, 0x2e073533, 0x14151701, 0x22012b06, 0x08262419, 0x82150721, 0x010e2316, 0x6618012b, 0x32260935, 0x0e151716, 0x06820701, 0x724bf533,
0x57123217, 0x17372039, 0x1e379538, 0x1218754b, 0x055f5e2b, 0x55250682, 0x1801802b, 0x05476512, 0x12301483, 0x01120d0d, 0x55018001, 0x41341144,
0x12150101, 0x192e3282, 0x1280eb1e, 0x80121818, 0x12191912, 0x0b828080, 0x3c672a20, 0x82202005, 0x0e12212b, 0x29056f4a, 0xd6010000, 0x08002001,
0xbf181100, 0x0e2c0b3f, 0x32161401, 0xeb263436, 0x36523601, 0x8b210282, 0x21058329, 0x0685c036, 0x15863720, 0x2f0aef5a, 0x002c0023, 0x25000035,
0x2e35013e, 0x06222701, 0xc647ec82, 0x010e2e06, 0x17011e15, 0x1e373632, 0x013e3301, 0xf25d1837, 0x6b37200a, 0x3233052c, 0x1f8b0116, 0x3b4e012b,
0x01012a20, 0x4e3b202a, 0x8e1f2b01, 0x55aa200f, 0x11230500, 0x821e2e1e, 0x96c02002, 0x24358725, 0x48300154, 0x20028230, 0x051e4e54, 0xff49e782,
0x01d62805, 0x0003006b, 0x82310015, 0x073324a7, 0x5e153723, 0x372509f9, 0x32331733, 0x20138216, 0x20038523, 0x821f8215, 0x37332303, 0x03820733,
0x3723353c, 0x2b450133, 0x189a2a0b, 0x12aafe12, 0x80121818, 0x1812ab2b, 0x150a202a, 0x03822a0b, 0x0b1b2028, 0x160b2025, 0x03822b0a, 0x0a1a2026,
0x952bab26, 0x0c95bd18, 0x2b671922, 0x15220082, 0x0685152b, 0x07530020, 0x208f850a, 0x18918235, 0x8215b346, 0x8292977a, 0x013322a9, 0xcb4618ab,
0x2028250f, 0x2b0b150b, 0x94850382, 0x20230b88, 0x182b0b2b, 0x220fdf46, 0x86801813, 0x23068692, 0x00002b2b, 0x2f05775b, 0x006b01eb, 0x00240015,
0x13000033, 0x16323317, 0x08257418, 0x2a602320, 0x18372005, 0x2c1d6973, 0x12ab2bd5, 0x3b1d1818, 0x0a01024e, 0x220982cb, 0x18400112, 0x34155e73,
0x192b6b01, 0x010a4a12, 0x191d3b4e, 0x01121801, 0x01181200, 0x537318ab, 0x006b2628, 0x00270016, 0x26a38938, 0x15213527, 0x96171633, 0x370621a4,
0x0e0e7518, 0x84073021, 0x161426a8, 0x03c0aafe, 0x22a89108, 0x18290801, 0x2108fb74, 0xab850831, 0x40020825, 0x951417d5, 0x013123ab, 0x7418c308,
0x07200df6, 0x10df5d18, 0x1d001127, 0x00002a00, 0x20a98237, 0x20038205, 0x26038201, 0x35233517, 0x82071533, 0x83078203, 0x3735320b, 0x0f14011e,
0x23153301, 0x35233735, 0xfe2b0140, 0x080385d5, 0x2b164034, 0x2b40402b, 0x07051515, 0x28240409, 0xab2b2b40, 0x2a802a2a, 0x2a00012a, 0x1640162a,
0x5616c056, 0x0a160a16, 0x0d090196, 0x14162504, 0x0000162c, 0x00820002, 0x96012108, 0x03008001, 0x00000b00, 0x3b112333, 0x15231501, 0x11331533,
0xd62a2a95, 0x012aabab, 0xab2aab80, 0x97421f82, 0x202b8507, 0x202d8207, 0x832f8612, 0x2103822e, 0x38842737, 0x96213682, 0x2500822b, 0x9595406a,
0x00828001, 0x2b40c022, 0x0847cf18, 0x86000021, 0x0007226b, 0x253d841b, 0x11232133, 0x3d820333, 0x1416362f, 0x35232706, 0x33351707, 0x2e373616,
0x83468201, 0x55803bb6, 0x11120355, 0x40402a04, 0x022b132a, 0x80012b02, 0x150180fe, 0x3810012a, 0xe25f0110, 0x32322605, 0x00000024, 0x089f5507,
0x7305c558, 0x37270513, 0x35010000, 0x82231523, 0x83332003, 0x8235209c, 0x233523d7, 0x0c822735, 0x03822520, 0x35231324, 0x03820533, 0x22842720,
0x83333521, 0x8207201e, 0x272f8227, 0x55c00135, 0x151555d6, 0xcc820483, 0x48d5fe21, 0x05830580, 0x15d61522, 0x2b250282, 0x01402a40, 0x8221862b,
0x87402026, 0x83152025, 0x1615241d, 0x1880802a, 0x3909c38d, 0x009801d8, 0x0016000b, 0x36023f00, 0x16011f32, 0x27030f14, 0x3637010f, 0x05821617,
0xb55b9439, 0x0f061206, 0x79970606, 0x1e3c2d0f, 0x0508072d, 0x815a2d05, 0x82069779, 0x06122e14, 0x2d0f5bb5, 0x052d5a1e, 0x2d070805, 0x06af411e,
0x7601b626, 0x13000300, 0x3c08dd82, 0x03270717, 0x36372637, 0x07141632, 0x3f072706, 0x01072701, 0x6a1e694c, 0x08038ae2, 0x060d1107, 0xe28a0b0a,
0x01886a4c, 0x6a1e6a75, 0x0b8ac3fe, 0x110d060a, 0x8a030807, 0x4c6a884b, 0x35008200, 0xff000004, 0x01d601f7, 0x00090080, 0x00200015, 0x1300002d,
0xac471f36, 0x010e2e07, 0x1f011e07, 0x27372701, 0x16321726, 0x820e8217, 0x3669080a, 0x07062237, 0x37170717, 0x2e37013e, 0x0706a001, 0x201b4f33,
0x21290101, 0x01014133, 0x401e5462, 0xaa134c55, 0x01012921, 0x6707414b, 0x150a0931, 0x60381028, 0x62541e15, 0x01410101, 0x57030155, 0x1b371f62,
0x012b2a20, 0x723c3242, 0x6b951b48, 0x2a2b0680, 0x395a2920, 0x05607131, 0x6d0d0f2a, 0x4a1c966a, 0x42343a72, 0x20008200, 0x82038205, 0x063b6bf4,
0x1a001634, 0x00001e00, 0x17373531, 0x23352315, 0x23110115, 0x07822711, 0x13352725, 0x82331523, 0x2b038408, 0x6a6ba0a0, 0x16959501, 0x2beb562a,
0xeb370084, 0x95eb6a6a, 0xfe950195, 0x0f01016b, 0x30391430, 0x802a00ff, 0x822b802b, 0x8807205b, 0x0009345f, 0x0013000e, 0x00200017, 0x00280024,
0x17151300, 0x82113335, 0x05112f55, 0x35211507, 0x33171527, 0x33153335, 0x79850535, 0x25352322, 0x07200c82, 0xd5360382, 0x956ad52b, 0x01a0a0fe,
0x08221540, 0xf5fe2b2b, 0x406a4075, 0x78825501, 0x30950130, 0xc0fe221c, 0x4095012b, 0x55ebeb6a, 0x13821714, 0xaa4b202b, 0x16aa8080, 0x2a562b2b,
0x2e7a852a, 0x01eaff00, 0x009701cf, 0x003f0036, 0x67350100, 0x222907bd, 0x16150706, 0x07061517, 0x334c1927, 0x17372608, 0x07171406, 0x07a17222,
0x27363529, 0x37361637, 0x18272636, 0x08092765, 0x0a6d013e, 0x0210160d, 0x01011511, 0x8c181e17, 0x1e241204, 0x0812120a, 0x13890812, 0x04032b15,
0x15150f03, 0x0301151e, 0x1d582728, 0x14250b1b, 0x2020192e, 0x01212131, 0x12053309, 0x1610020b, 0x20083a82, 0x04330a18, 0x1f126d14, 0x20240f07,
0x05010205, 0x1d431d6b, 0x1e15022b, 0x050f1513, 0x0c1b2806, 0x223a8224, 0x8301a211, 0x20312336, 0xc9180000, 0x18220b0b, 0x3d411c00, 0x002c2e06,
0x13000030, 0x16141123, 0x21352133, 0x0f4c5c01, 0x0a125018, 0x0b8a1720, 0x182a5536, 0xfe2b0112, 0xff5601d5, 0x19191200, 0x12000112, 0x2ae81818,
0xd6210084, 0x2800842b, 0xd5fe4001, 0x012a1812, 0x0b355980, 0x2bebfe27, 0x2a2b2b2a, 0x560584d5, 0x08240cc3, 0x1b001800, 0x3521899b, 0x21749417,
0x689580bd, 0x60c0f622, 0x260c335d, 0x0021000f, 0x18370025, 0x3611f16b, 0x26062303, 0x17013e27, 0x26231533, 0x011e0706, 0x15373337, 0x82173523,
0x361625ec, 0x07012e37, 0x36240882, 0x010e1716, 0x0c0f6c18, 0x1c16bc33, 0x37020237, 0x0916161c, 0x21020120, 0x80551607, 0x850b886b, 0x0d8d4b1b,
0x01ebfe32, 0x282e2e28, 0x10012a01, 0x010f1d1c, 0x6a2a2a40, 0x2a200a86, 0x3f431884, 0xc0012707, 0x0f008001, 0xab841300, 0xad923b20, 0x21112123,
0x91b19007, 0x822720ad, 0x25b18cb6, 0x01d6fe12, 0xb68faa2a, 0xb48e4020, 0x454c0720, 0xabfe240f, 0x8cea2a01, 0x8c2a20ba, 0x2a4121b7, 0x83089353,
0x002c22b7, 0x08b39149, 0x06010f27, 0x3f342622, 0x1f141501, 0x14060701, 0x013f3216, 0x26273436, 0x17323634, 0x07371416, 0x012f3435, 0x26343637,
0x20278206, 0x21118214, 0x1b822206, 0x32222282, 0xc18c1416, 0x162f7e36, 0x1d152b39, 0x0a090105, 0x2f0a1c15, 0x0c060a0a, 0x2d15050f, 0x1520108f,
0x7c412683, 0x2ffc2e0d, 0x16392b15, 0x0e110c1d, 0x1c0a0903, 0x283b8215, 0x10050a1d, 0x3b15060b, 0x2314882d, 0x0a2f0901, 0x16261585, 0x152f1639,
0xfb533b2a, 0x058f4108, 0x4e003022, 0x0326d991, 0x07211121, 0xe0991416, 0x1b823720, 0xde8cdf99, 0xd6fe1226, 0x156c2a01, 0xe58ebe84, 0x0f8e5c20,
0x25850520, 0xfe21e48d, 0x213e83ab, 0xeb95153b, 0x151d0922, 0x0023ea98, 0x51040000, 0x962406ab, 0x1d000500, 0x2005ff7c, 0x17ee1825, 0x012e2308,
0xc019012f, 0x1e2d0def, 0x013e0501, 0x15273537, 0x010e3717, 0x1c291907, 0x02ab3e0d, 0x4c304054, 0x04721e10, 0x79070109, 0x0a037280, 0xfe221d01,
0x2f3b01d6, 0x2d951580, 0xcb3a193c, 0xc0290808, 0x2e1a245b, 0x02544016, 0x0b2b3601, 0x0a01012c, 0x03074301, 0x012c2c28, 0x4014a609, 0x0f4d3326,
0x07fe2d44, 0x2d3c016f, 0x2233832e, 0x823c2d2e, 0x060021a6, 0x0c2aa78a, 0x2a002400, 0x3a003600, 0xab860000, 0x35173226, 0x17361507, 0xb2999282,
0x2f0bff61, 0x35371525, 0x3d204001, 0x17154d10, 0xa00b4014, 0x2e22b996, 0xb88b5526, 0x40d2fe22, 0xab26bb84, 0x44196206, 0xc1979501, 0x13472d25,
0x8a8c1e51, 0xfd7823bf, 0xc383fa18, 0x04830a20, 0x01d60137, 0x000d008a, 0x001f0016, 0x003d002b, 0x00550046, 0x0062005e, 0x2bcb8266, 0x0614011e,
0x27262207, 0x3e333523, 0x097fa318, 0x013e2728, 0x06222634, 0x40181614, 0x03310bcb, 0x0e231533, 0x012e2301, 0x37363427, 0x1e153335, 0x08927101,
0x565c0320, 0x35232206, 0xdeb7182e, 0x8213200c, 0x2a5a8326, 0x241b8001, 0x20151b24, 0x18191907, 0x2d08dce1, 0x11110d09, 0x0d11111a, 0x05013024,
0x0282054b, 0xa0300122, 0x1b281e84, 0x13180124, 0x37140e2a, 0x20054357, 0x180f8509, 0x280a0eb8, 0x2a802a62, 0x2401802a, 0x22288436, 0x572b1813,
0xc021054f, 0x304f8301, 0x0173111a, 0x67342430, 0x34670404, 0xcdfe3024, 0x8438842a, 0x1405227a, 0x2229850e, 0x89012b01, 0x241b228d, 0x2115852a,
0x5582d6fe, 0x09f77c18, 0x9601ad28, 0x2f000800, 0x8f733800, 0x2e27350b, 0x020e2203, 0x1606010f, 0x3f343517, 0x012f2601, 0x17161437, 0x06280183,
0x17152723, 0x013e3732, 0x0a195c18, 0x3108f482, 0xc6242436, 0x2a11052b, 0x2a273227, 0x022b0511, 0x09371f3b, 0x25040408, 0x06071312, 0x272b0519,
0x272c1515, 0x0e613b1e, 0x121b1212, 0x24950112, 0x02822437, 0xabfe2508, 0x171b1074, 0x1b170a0a, 0x22167410, 0x0d1e2f0c, 0x0b0a0d02, 0x0e23020d,
0x110b0302, 0x01380211, 0x28250c11, 0x08df5e18, 0x38090375, 0x0013000d, 0x0026001d, 0x14150100, 0x15012b06, 0x15251125, 0x0f163233, 0x239b8201,
0x06222537, 0x3e22ab82, 0x8c6e2602, 0x01440808, 0x950a0bd5, 0x000100ff, 0x150b0a95, 0x55404055, 0x2122e9fe, 0x231e2122, 0x0e2a1f01, 0x131b1414,
0xaa150113, 0x26550c0a, 0x55263401, 0x24310c0c, 0x22312422, 0x01304831, 0x31482e01, 0x1a301820, 0x001c291d, 0x0809a757, 0x0300ab39, 0x11000a00,
0x00001500, 0x37211725, 0x35170727, 0x37233533, 0x33152315, 0x21073715, 0x61012103, 0x39ccfe39, 0x5655550a, 0x5656d656, 0x00ff4055, 0xc0aa0155,
0x82ebabab, 0x402b270b, 0x55402b40, 0x4f98ff6a, 0x85013f21, 0x054d4c4f, 0x88173721, 0x82cc204f, 0xd655214a, 0xca825482, 0x06264f94, 0xd5ff0000,
0xa7720002, 0x001d2106, 0x2905615c, 0x27170100, 0x0f012f37, 0x02821701, 0x07210986, 0x23138925, 0x03331123, 0x2f06074c, 0x0e340001, 0x18183d2f,
0x760e2e3d, 0x3e2f0e35, 0x2f230982, 0x828b010f, 0x173e2d14, 0x0f2f3e18, 0xab808035, 0x56018080, 0x292a0382, 0x05283c20, 0x28053939, 0x0992603c,
0x1601f428, 0x8080eafe, 0x5b4400d6, 0x002b2308, 0x5f760009, 0x00192505, 0x3700001d, 0x07217f87, 0x247b8217, 0x11331137, 0x23078207, 0x35331517,
0x55200783, 0x752d7c88, 0x802b8080, 0x562a2a2b, 0x2b2b2b80, 0x2e6988a9, 0xfe9680b4, 0xeb1601ea, 0xd6d615c0, 0x820080ab, 0x44062000, 0xab2006c3,
0xfb88678d, 0x82130721, 0x860520e7, 0x8625205f, 0x82ef8a07, 0xd5fe2768, 0x2b2b2a80, 0x6a830001, 0xdf890120, 0x01ccfe29, 0x80809616, 0x8c802b55,
0x0002236b, 0x6b8d6b01, 0x84085341, 0x876b87d3, 0xab0121db, 0x24084641, 0xfe808076, 0x206b832a, 0x20da8355, 0x22d588e9, 0x8356d6f4, 0x85c02067,
0x000022da, 0x08d38202, 0xcd01ec21, 0x32009701, 0x00006000, 0x31013e25, 0x07061533, 0x010e0706, 0x22010e23, 0x012e2726, 0x82010e35, 0x26373405,
0x16363736, 0x15011e17, 0x0f020e07, 0x0f010e01, 0x82011e01, 0x3627290e, 0x2726012f, 0x34070623, 0x35200783, 0x82056b53, 0x17362819, 0x2e273616,
0x83262303, 0x0617224a, 0x082a8216, 0xa4013742, 0x01200108, 0x04030401, 0x1e130114, 0x12132102, 0x3a690418, 0x05031334, 0x574d7e3e, 0x01050a10,
0x050a0501, 0x0711060b, 0x0a17010a, 0x018d1604, 0x12091704, 0x0204100f, 0x01010104, 0x1e171c27, 0x50089882, 0x07010106, 0x0801010b, 0x0d172a18,
0x05121236, 0x19060202, 0x2f0d311c, 0x06050d0a, 0x0c090c08, 0x01040e14, 0x01210d0a, 0x312b0303, 0x98150856, 0x2947010e, 0x1004251b, 0x091c1d0c,
0x07120a12, 0x04180109, 0x02290201, 0x030f2006, 0x03020102, 0x3e8e8206, 0x01010e04, 0x0b050811, 0x02030105, 0x2b22274a, 0x0d011621, 0x0450241a,
0x1a1e4703, 0x43000206, 0xe0310847, 0x10008001, 0x26001600, 0x00002a00, 0x17011e01, 0x055f5507, 0x35231724, 0x8f633e17, 0x05352205, 0x05615415,
0x34013d2d, 0x32013b36, 0x33150716, 0x540b0135, 0x0b300e49, 0x00012b2a, 0x122a1318, 0x2a121919, 0x2a551813, 0x24103854, 0x2baad5c0, 0x0b3c542b,
0x22051752, 0x829701ea, 0x00123083, 0x0024001b, 0x06162500, 0x33112107, 0x85152317, 0x36332203, 0x11ac6f16, 0x0295013a, 0xeafe1e0e, 0x2f2a0496,
0x03383304, 0xfe5e062b, 0x1e1e17fc, 0xbf1e1e2d, 0x26059d53, 0x01130180, 0x82201501, 0x03152300, 0xe0537821, 0x88058505, 0x88ab20f7, 0xa62d2073,
0x084e5e75, 0xe6217e92, 0x207e8416, 0x200685e9, 0x99068597, 0x618b8885, 0x72080527, 0x009601d7, 0x00160014, 0x01000022, 0x3507011e, 0x06310503,
0x17372726, 0x17332337, 0x37273727, 0x3e371501, 0x0e161701, 0x36262702, 0x28910137, 0xfe18021e, 0x043d16c5, 0x01323b1d, 0x9d2aa401, 0x9afe417c,
0x1966315b, 0x64632616, 0x31261719, 0x2f089401, 0xc1fe011e, 0x3b1c0215, 0x34a28935, 0x24650aa6, 0xfa01aefe, 0x19172a31, 0x172d6161, 0x60316319,
0xc62008bb, 0x8406a37e, 0x162b0879, 0x2e230706, 0x36263701, 0x0727013f, 0x37331727, 0x2d3f5501, 0x5b150501, 0x05155baa, 0x803f2d01, 0x2b552b2b,
0x00012baa, 0x47089028, 0x08300595, 0x2a6b2890, 0x6a6a2a2a, 0x00050000, 0x01eaff00, 0x06204f83, 0x1d20cd82, 0x22055142, 0x82172713, 0x110721c7,
0x37215685, 0x22de8233, 0x56250616, 0x22240507, 0x26341706, 0x2405a067, 0x17072735, 0x825b82ab, 0x206a8602, 0x247884aa, 0x1c12f0fe, 0x20028212,
0x250685c0, 0x011da31d, 0x6f826a2b, 0xfe6a2a23, 0x828082c0, 0x2789847d, 0x12120dc5, 0x8e12121b, 0x23052747, 0x1da31c91, 0x22088756, 0x552b01eb,
0x012e059d, 0x15171632, 0x012b010e, 0x0f222627, 0x2f572301, 0x25332205, 0x08ac6121, 0x3f30332d, 0x1f323601, 0x013e3301, 0x82353337, 0x800121b0,
0x26051957, 0x47191a30, 0x85231a19, 0x0001330c, 0x302400ff, 0x01161601, 0x06352430, 0x0d220d21, 0x0f864226, 0x18000134, 0x18124013, 0x1a19191a,
0x13401218, 0x30012b18, 0x1b824025, 0x0c210624, 0x2e82270c, 0x30254022, 0x00219682, 0x2e04830d, 0x8001c201, 0x0a000600, 0x12000e00, 0x46001900,
0x655d0575, 0x00472505, 0x1300004b, 0x200d537e, 0x06c66233, 0x23012e23, 0x200a8205, 0x83038221, 0x82052007, 0x07272ec9, 0x33150717, 0x27371737,
0x012f3637, 0x291e8426, 0x012f0717, 0x3b011e15, 0x38833501, 0x0b085325, 0x852b2a2b, 0x01270802, 0x95fe080c, 0x2b2a012b, 0x012b80fe, 0x21040431,
0x60101014, 0x0f0f5f33, 0x06062114, 0xa0fe0319, 0x1400012b, 0x82d51456, 0x2a162427, 0x8380012b, 0x862b2007, 0x08182300, 0x0a83550b, 0x2a2a5629,
0x14210315, 0x835f0f0f, 0x21152c38, 0x03190708, 0x152b2b40, 0x82011556, 0x25218222, 0x00080000, 0xd36aff00, 0x00052605, 0x0011000b, 0x32e18217,
0x00290023, 0x3f00002f, 0x07171601, 0x06173726, 0x85362707, 0x37252105, 0x05851183, 0x0b842720, 0x20821a88, 0x1a872808, 0x2d06221c, 0x2d2419b3,
0x2b642206, 0x12221909, 0x062b8efe, 0x01192213, 0x09192257, 0x0680062b, 0x1c1a252d, 0x87251aa2, 0x1013271f, 0x2b061322, 0x1d843b09, 0x2d067f2c,
0x1c1c1a24, 0x1a1c2206, 0x238ab325, 0x3b883f82, 0x037a0020, 0x0026220d, 0x0b4d7a43, 0x4e19504d, 0x22200c31, 0x2012314e, 0x064e7b00, 0x152b8f3c,
0x1a142834, 0x09080105, 0x2b091a12, 0x0b06090a, 0x2913050e, 0x0701041b, 0x1082130a, 0x0509092f, 0x14050e0a, 0x35142b14, 0x56ab0127, 0x06677b80,
0x142bc13b, 0x1a153428, 0x030e0e0c, 0x121a0908, 0x1a092b09, 0x0a0e0509, 0x29361305, 0x2314861b, 0x0a2a0a13, 0x14261485, 0x132b1534, 0x3f4d3627,
0x48c02008, 0x302306cf, 0x7c004e00, 0x37201401, 0x91272b4e, 0x111c7ad9, 0x13136f22, 0x0a25e38e, 0x540e0a04, 0x7ae29413, 0xde231436, 0x93133613,
0x090f24ef, 0x88131b09, 0x2b0921ee, 0x3521ee87, 0x22ee8214, 0x82000200, 0xd8012700, 0x0c008001, 0xe7821f00, 0x010e262c, 0x21152107, 0x36373632,
0x4a462726, 0xc2012f11, 0x0a0a170c, 0x3f01b5fe, 0x050b2d1c, 0x4646390a, 0x05602a0f, 0x40051709, 0x170d191e, 0x0b414625, 0x2a051f42, 0x01ab01ea,
0x00030096, 0x820e0007, 0x07260869, 0x23013f23, 0x37013303, 0x23153315, 0x2c750115, 0xc09e2d69, 0xeafec040, 0xd5aaaa56, 0xfe2bc0c0, 0x555501eb,
0x41182a40, 0xc0200887, 0x13203b91, 0x2205ab4a, 0x852d0b01, 0x55c0233b, 0x3a8dabab, 0x00050026, 0x01c0ff00, 0x00290182, 0x00140008, 0x002d001d,
0x207b8236, 0x06485b0e, 0x22091b5d, 0x6403010e, 0x21080775, 0x06222337, 0x011e1107, 0x013e3317, 0x26341135, 0x21152101, 0x11352622, 0x1c2b0133,
0x24372424, 0xc44e1b24, 0x01012a07, 0x18122d3c, 0x19192418, 0x06595a7c, 0x1912d52e, 0x01c4fe19, 0x1200ff00, 0x01eb2b19, 0x37222d83, 0xfd18aa24,
0x01210a12, 0x222e8354, 0x792b1824, 0xfe210d34, 0x2210822b, 0x41008001, 0xab22068f, 0xad828001, 0x00001829, 0x07010e01, 0x8207011e, 0x21152b05,
0x27012e35, 0x2e373626, 0x0b820301, 0x1b00013f, 0x280c0124, 0x01181274, 0x18015601, 0x0c287412, 0x019b2401, 0x01800100, 0x5f331b24, 0x21128203,
0x1c822b2b, 0x335f032b, 0xabfe2020, 0x00002b2b, 0x054b6d00, 0x01d62008, 0x00070040, 0x0018000b, 0x002a0021, 0x25000033, 0x37333521, 0x27331733,
0x15353317, 0x82230614, 0x363426ec, 0x011e2137, 0x075c4605, 0x08883720, 0x46012e21, 0x0139056e, 0x2baafeab, 0x96156b15, 0x24b20991, 0x1cd6fe1c,
0x011c2424, 0xfe241c2a, 0x05eb4dab, 0x06859520, 0x85019621, 0x15c02707, 0x2b566b6b, 0x2682c02b, 0x01243722, 0x0921a182, 0x2018830c, 0x86068c09,
0x01d722fb, 0x05b35049, 0xf8836a82, 0xfe840e20, 0x0f163628, 0x16373301, 0xa7823732, 0x37013e2c, 0x3e171636, 0x26363501, 0x22832627, 0x42080c83,
0x012e013f, 0x21149c01, 0x0f0a0707, 0x0f5f6d1f, 0x29220714, 0x2b402016, 0x0f1f331f, 0x19011640, 0x0f0d0f11, 0x0a011a10, 0x36ea0b17, 0x04010149,
0x0b196d5e, 0x49013d11, 0x141e191b, 0x0f271f0e, 0x82080a03, 0x2a203e1c, 0x402a1010, 0x0e145204, 0x1c01020c, 0x101d0819, 0x49010808, 0x0f101236,
0x220b1a25, 0x05c74227, 0x4001d526, 0x2400ab01, 0x23064b42, 0x35272634, 0x2e208b82, 0x1425ae83, 0x0e151716, 0x61058501, 0x1d850573, 0x5b422720,
0x22132207, 0x05356e26, 0x18400125, 0x4f181313, 0x13210663, 0x200c8c18, 0x0c164140, 0x2015c027, 0x20073307, 0x06e14f15, 0x2a200a82, 0xd520108f,
0x21056541, 0x431880fe, 0x035e08b6, 0x0043270a, 0x0055004c, 0x4b672500, 0x84062006, 0x331729ae, 0x3e17011e, 0x23263401, 0x20055f67, 0x18ad8207,
0x20078776, 0x20c48436, 0x202f8227, 0xb7e71827, 0x36322508, 0x012e3537, 0x20085960, 0x6c701801, 0x44802308, 0x8f822007, 0x22074427, 0x09200202,
0x23a782d9, 0x1c24241c, 0xd920b282, 0x9d055355, 0x8507201e, 0xdffe21e9, 0xd53a0785, 0x13181813, 0x151d0f01, 0x13010f1d, 0x24010117, 0x13172437,
0x2e152f27, 0x19980128, 0x62429520, 0xabfe2106, 0x47490886, 0x01a93e07, 0x00070096, 0x00210013, 0x00270024, 0x37271300, 0x27071733, 0x27231723,
0x07230723, 0x290d8217, 0x2f230737, 0x23010f01, 0x0e823337, 0x33273908, 0x33072707, 0x26b10727, 0x261bb41b, 0x60cd800f, 0x60113811, 0xe60f271c,
0x2c2d260f, 0x054a4a05, 0x082c3e2c, 0x2c081919, 0x7219134a, 0x4c011319, 0x13363613, 0x4040561f, 0x1f300582, 0x6f13f413, 0x1cea136f, 0x551c2626,
0x1d60601d, 0x31064755, 0x008001d7, 0x0026001d, 0x25000036, 0x012b012e, 0x26423536, 0x23173005, 0x010f0622, 0x16143706, 0x36322133, 0x44271635,
0x1727087c, 0x35331523, 0x62231533, 0x3b350524, 0x04aa0101, 0x0b361016, 0x30483001, 0x0f360b01, 0x07260417, 0x056a6d02, 0xd007023d, 0x24181812,
0x55521818, 0x13552b2a, 0x55131818, 0x13130edf, 0x30302418, 0x19131824, 0x210abcbb, 0x72440f01, 0x56aa2805, 0x12186a40, 0x4c181256, 0xd62009bb,
0x2d065345, 0x001a0017, 0x35210100, 0x15212721, 0x04441721, 0x013d2106, 0x22050644, 0x5e152707, 0x2b2405d0, 0x000100ff, 0x0ce84c19, 0x0180802c,
0x2a552b15, 0x1812abab, 0x04821218, 0x18010125, 0x598b4567, 0x5f83095f, 0x32001829, 0x06130000, 0x60070607, 0x07320570, 0x27222706, 0x3427012e,
0x2335013f, 0x37360506, 0x9b603736, 0x36332405, 0x82173217, 0x14210823, 0x3315020f, 0x03035736, 0x78020125, 0x1d53305b, 0x17595935, 0x02110e15,
0x485ad104, 0x03030f01, 0x08178320, 0x1e4d2d2b, 0x1e656406, 0x02120f1d, 0x580fc204, 0x013d014c, 0x5b453502, 0x21270278, 0x0a080a05, 0x050f1807,
0x0203d904, 0x320101fc, 0x3c158241, 0x060d1e21, 0x1019060b, 0x10c80406, 0x00000202, 0xff000002, 0x01c701e2, 0x00080099, 0x439f823a, 0x272707a0,
0x32011f16, 0x640e0716, 0x352005a8, 0x21065371, 0xa4833237, 0xb6822320, 0x0611072a, 0x16363716, 0x23061617, 0x27242482, 0xc0013e11, 0x3405bb42,
0x9080304c, 0x04021a02, 0x03c0021f, 0x0701032f, 0x01070f0f, 0x3745828b, 0xd5021901, 0x01021c02, 0x11150e07, 0x020f0605, 0x0226023f, 0x00013804,
0x3005aa43, 0x50471995, 0x15101317, 0x05036a01, 0x13016b1d, 0x26028201, 0x080a4b4b, 0x82801008, 0x00ff3110, 0x0b061802, 0x11120b03, 0x1e010221,
0x022c6b01, 0x270ad743, 0x006a0050, 0x25000084, 0x2b085a4e, 0x26222726, 0x32333634, 0x23263517, 0x37200983, 0x2e210984, 0x22138501, 0x823b3634,
0x821d20d8, 0x16172646, 0x27060714, 0x382e8234, 0x0623020e, 0x33163527, 0x3533033e, 0x35331123, 0x0e271632, 0x27222303, 0x22128415, 0x8215011e,
0x833420ea, 0x842220f4, 0x26168229, 0x37023e32, 0x8631011e, 0x95012e17, 0x12d61218, 0x091d0e18, 0x1a090c0c, 0x84078f11, 0x1b1d311c, 0x0d060602,
0x14242211, 0x1c28201e, 0x0b0a0a0b, 0xd6290884, 0x2a1317d6, 0x1e20281c, 0x84128314, 0x22242808, 0x06060d11, 0x95332e03, 0x24392e16, 0x12181812,
0x0c01064f, 0x29040c12, 0x22058206, 0x85290501, 0x832f200d, 0x2e230819, 0x06040f06, 0x0c0c0711, 0x0b010d01, 0x02010f10, 0x0a01012a, 0xfe2b0f11,
0xb1062baa, 0x0b110e01, 0x84012b01, 0x010d2306, 0x28820d0d, 0x54150529, 0x010b100f, 0x83012b02, 0x0e012106, 0x04221484, 0x3f440016, 0x01c02c07,
0x0008006b, 0x00290011, 0x75390031, 0x27261311, 0x17011e33, 0x30712315, 0x11153206, 0x15333533, 0x013e1121, 0x37013e17, 0x07010e15, 0x75078615,
0x68340d18, 0x01302496, 0x9612182b, 0x2bea1812, 0x3001c0fe, 0x252125e4, 0x01220288, 0x61180100, 0x963a0c9b, 0x15253001, 0x19191215, 0x2b00ff12,
0x252a0155, 0x25039530, 0x26022b03, 0x07832b02, 0xaf4a0382, 0x00002305, 0xaf82d601, 0x1d001122, 0x352aaf82, 0x21250000, 0x013d012e, 0xc1432627,
0x11153005, 0x06010614, 0x17161507, 0x35373633, 0x96072726, 0xab01350b, 0x1812eafe, 0x090c053b, 0x18126b01, 0x09f8fe18, 0xd6090101, 0x6b2e0492,
0x0a01010a, 0x12180115, 0x110547c1, 0x0882010c, 0x1200ff25, 0x82150118, 0x25198414, 0x0156010a, 0x38831609, 0x55200482, 0x00221589, 0xaf820a00,
0x5b010021, 0x17200717, 0x2010cd6b, 0x0d126f21, 0x0b988a18, 0x33150723, 0x07c64d35, 0xa3180b8b, 0x3c260be9, 0x2b2a2b2b, 0x058ad62b, 0x210d5759,
0x00842b55, 0x842a5621, 0x450d8600, 0x0031060f, 0x01d60100, 0x00070000, 0x00190015, 0x1300002b, 0x246d8415, 0x22012b35, 0x5c601806, 0x23072509,
0x23253335, 0x23831189, 0xab263433, 0xab302030, 0x200c0940, 0x140c202a, 0x4b012a2a, 0x340b8260, 0x20152015, 0x2000010c, 0x0c206060, 0x20206b09,
0x400c096b, 0x230a8320, 0x604b4b60, 0x77830c82, 0x002c7082, 0x01de0100, 0x00080080, 0x37273300, 0x1731e182, 0x16382707, 0x16c92ac9, 0xe77425c8,
0x742574e7, 0x82008200, 0xff260827, 0x01e001eb, 0x00110096, 0x23170100, 0x17371715, 0x07273707, 0x17372717, 0x01233537, 0x8c405500, 0x2075201f,
0x04828b8b, 0x408c1f33, 0xa7559501, 0x1f743751, 0x37515137, 0x5137741f, 0x284382a7, 0xff000003, 0x01eb01e6, 0x22e182ab, 0x822f001d, 0x05d14f47,
0x2e230728, 0x34013d01, 0xd4733336, 0x35072805, 0x06222634, 0x84011507, 0x8a372059, 0x0120086b, 0x010f0ad1, 0x750b1001, 0x0a10100a, 0x232f2301,
0x1b121c01, 0xb0fe0112, 0x405c201f, 0x96405655, 0x96278183, 0x5501215c, 0x854b0b10, 0x3c06822a, 0x1e1e1720, 0x0d202017, 0x200d0f0f, 0x3775d0fe,
0x5555a736, 0x743756a7, 0x35563820, 0x47968239, 0x9787062b, 0x979f2620, 0x07170728, 0x37270727, 0x8e963335, 0x15c88a27, 0x921691c9, 0x2785992b,
0x742574bc, 0xe7542554, 0x29085741, 0x008001de, 0x3f00000b, 0x80411701, 0x82072006, 0x8c1f2db0, 0xc816c92a, 0x740b218c, 0xe7e75036, 0x50223282,
0xab8c0038, 0x2b001f22, 0x0624ab9e, 0x3701011d, 0xb0935389, 0x03111922, 0x20054041, 0x41b6822b, 0x0b29183a, 0x2004030a, 0x3675d0fe, 0x41898435,
0x042e0537, 0xeaff0000, 0x9601e901, 0x20001100, 0x8d832600, 0x2e332529, 0x010e2701, 0x5535010f, 0x33290574, 0x2622010f, 0x011e3727, 0x080f8217,
0x0e371763, 0x37022f01, 0x17010717, 0x01272307, 0x21063e00, 0x03231a17, 0x2d3d012b, 0x42093927, 0x311e5556, 0x1e08250e, 0x081f1512, 0x360b0f19,
0xd60115f6, 0xa501e122, 0x061f4e15, 0x014738eb, 0x18445902, 0x02795a0c, 0x564a5f01, 0x15323caa, 0x01013028, 0x0f1a313b, 0x26414d3e, 0x82227c01,
0x2d262701, 0x064b431d, 0x10249786, 0x1b001600, 0x37259784, 0x010e2317, 0x248b8907, 0x07172505, 0x22888333, 0x82012f26, 0x0727219d, 0x0127b789,
0x42565500, 0x86273909, 0x2117398d, 0x01dafe06, 0x014a0210, 0x15a601b4, 0x7506026b, 0x120a3825, 0x16210618, 0x9525bb85, 0x5f4a5656, 0x348f8601,
0x9d423847, 0x01684a11, 0x173d2626, 0x56017816, 0x35181245, 0x83b98742, 0x0003249b, 0x43ebff00, 0x2c200803, 0x431ebf41, 0x33200503, 0x41086c43,
0x004313c0, 0x8b2b2607, 0x2175201f, 0x18c2418c, 0x2107fd42, 0x9743e7e7, 0x05c34105, 0x2707d743, 0x000b0080, 0x37072500, 0x8205d942, 0xe0013170,
0xc88b2075, 0x8c2ac916, 0x371f0b1f, 0x74257451, 0x00203883, 0x2709c343, 0x0021000b, 0x37000029, 0x24060844, 0x33353727, 0x1ccf4317, 0x2095eb2b,
0x96207520, 0x2b921691, 0x14c743e6, 0x94439920, 0x25542405, 0x432be754, 0xdf4117c0, 0x37172217, 0x05c54923, 0x3a06596b, 0x27370525, 0x37012733,
0x010f0627, 0x0737013e, 0x07010e27, 0x012f012e, 0x41011e15, 0xeb202edf, 0x2112df41, 0xdf41dafe, 0x14134317, 0x9d837b89, 0x012f3325, 0x86070622,
0x173727a7, 0x020f012e, 0xaa833717, 0x43072321, 0x95202c13, 0x21221343, 0x1343d9fe, 0x00012106, 0x01260082, 0x009601de, 0xbf45000b, 0x05c44405,
0x00012332, 0x16c94055, 0xc916c8c8, 0x55950140, 0x742574a7, 0xa7200282, 0x220c6744, 0x4229001d, 0x27231fa7, 0x45152317, 0x23200616, 0x2216a442,
0x454056a0, 0x40200518, 0x20191845, 0x23808440, 0xa7542554, 0x390d234c, 0x001e000f, 0x00260022, 0x17072500, 0x37013e35, 0x1527012e, 0x0614011e,
0x0c822707, 0x010e3527, 0x17011e07, 0x39158227, 0x37152337, 0x15273515, 0x56562b01, 0x01015f4a, 0x47384a5f, 0x01d63847, 0x0d833847, 0x0f3e4d2a,
0xbf3b311a, 0xc02a2a2a, 0x3e05e143, 0x2b093927, 0x212e2106, 0x21173e06, 0x39092b06, 0x0b362327, 0x1f08190f, 0xea2aeaea, 0x8d402b15, 0x00102283,
0x05db7f1f, 0x07173723, 0x49808235, 0x7982065d, 0x0d823720, 0x07823520, 0x37208782, 0x27289082, 0x15271533, 0xd5153735, 0x01208389, 0x859e8182,
0x82821720, 0x042a8696, 0xd5ff0000, 0x9601c001, 0x69561300, 0x25002106, 0x12a15f19, 0x010e0726, 0x13272622, 0x23069e66, 0x80fec001, 0x09955f19,
0x18016a26, 0x16011824, 0x2b21fa82, 0x8d5f1916, 0x12552b0f, 0x01121818, 0x956a6a15, 0xdf4b2b2b, 0x700b200a, 0x63180547, 0x13250bfc, 0x34352735,
0x2f038326, 0x011d0622, 0x011d010e, 0x23171507, 0x36321614, 0x0dc17d18, 0x1f21162d, 0x1f0c120c, 0x408b1621, 0x18121c12, 0x360d6d5d, 0x381515d8,
0x0a073423, 0x090c0c09, 0x2334070a, 0x16151538, 0x4112120d, 0xe7830d6b, 0x3100252b, 0x23250000, 0x34353735, 0x22038336, 0x821d1632, 0x011d288b,
0x06140717, 0x18352622, 0x180bd843, 0x210c8643, 0x7e88d66b, 0x7d824b20, 0x785b2022, 0x0821c118, 0x0bda4518, 0x87906b20, 0x86822b20, 0x18010d21,
0x262237a6, 0x000300ab, 0x821f001b, 0x2111269d, 0x15331311, 0x0d334a33, 0x35013b22, 0x1d3f1382, 0x01352301, 0xead6fe95, 0x1912152b, 0xd6fe1219,
0x13181813, 0xaaaa2b15, 0xff00012b, 0x18800100, 0x240c3843, 0x2bc02b2b, 0x08ff6d2b, 0x13009622, 0x27325f82, 0x00003000, 0x23272301, 0x010e2307,
0x16141115, 0x0f542117, 0x21032105, 0x12110519, 0x22081051, 0x192744ab, 0x23260905, 0x2a2a6b01, 0x0eb50119, 0x01d6fe26, 0x152b2b00, 0x087f6c18,
0xaa3d2d22, 0x20067271, 0x20008200, 0x2e038205, 0x01000200, 0x000b0080, 0x00230017, 0x183b002f, 0x21199356, 0x99183e17, 0x1321153d, 0x05454b15,
0x23152327, 0x52000135, 0x4599186c, 0x54402509, 0x40540101, 0x752b0584, 0x24272724, 0x23231f17, 0x83c4fe1f, 0x83172005, 0x2b75270f, 0x2a2b2b2a,
0x99188001, 0x31860d48, 0x99183782, 0x01241648, 0x5656d620, 0x00200282, 0x8e057f54, 0xb63f20bf, 0x069052c1, 0x15330723, 0x22c5ad23, 0x5a2b2a80,
0x2b220587, 0xcbb42b2b, 0x83121821, 0x2b210840, 0x0200002b, 0xf9ff0000, 0x9601d601, 0x41003a00, 0x14250000, 0x37270706, 0x37013e17, 0x26333523,
0x2b0b8227, 0x1527012e, 0x07063523, 0x33363217, 0x25059473, 0x27372635, 0xb583010e, 0x37171625, 0x492e0717, 0x510806a7, 0x17072725, 0x01353307,
0x371f23d5, 0x0c08191e, 0x06292902, 0x191e1910, 0x2b0f1b0b, 0x0340191c, 0x18120305, 0x01192418, 0x0b084003, 0x06282802, 0x381e1a0f, 0x6002231f,
0xfe614849, 0x461e46bb, 0x2a80561c, 0x1e371646, 0x0f1b0c1a, 0x1a191d2a, 0x27821a1e, 0x0f2b4382, 0x18010240, 0x12181824, 0x87400605, 0x1637291a,
0x60492a46, 0x86600202, 0x00233884, 0x82040000, 0x01d433c7, 0x008301eb, 0x00460022, 0x00860069, 0x26220500, 0xc9823736, 0x27263422, 0x362da385,
0x0706011e, 0x14150630, 0x011e1716, 0x21c28215, 0x07462706, 0x821e8405, 0x012e22f4, 0x05074607, 0x14241e86, 0x16331617, 0x42852383, 0x15363424,
0x2385013e, 0x17204284, 0x0e302c82, 0x32161701, 0x07062613, 0x3317011e, 0x012e2335, 0xed6c2e82, 0x15232205, 0x355d8433, 0x0c094001, 0x1a090602,
0x08070a01, 0x051a0111, 0x04091108, 0x0c830a07, 0x06290237, 0x29054c0d, 0x0a0f0103, 0x09010a07, 0x0a030801, 0x19050811, 0x2d0f8202, 0x1a010b06,
0x08040709, 0x064f0d07, 0x1f830229, 0x04080a25, 0x82071109, 0x105c081d, 0x010a060a, 0x060a1902, 0x10090501, 0x0aae3363, 0x2f0b1a02, 0x01130a0d,
0x71987103, 0x0a130103, 0x1a0b2f0d, 0x2bae0a02, 0x0707110d, 0x140a1224, 0x13200d0b, 0x05012124, 0x05110f04, 0x130a130f, 0x14200c0c, 0x04043524,
0x25350406, 0x0b0d2013, 0x10130914, 0x10110501, 0x20020403, 0x24271087, 0x07100707, 0x85070207, 0x14092222, 0x2222840b, 0x8e03030f, 0x01093922,
0x391e02ab, 0x2b2e922b, 0x10206f31, 0x20101a1a, 0x2e2b316f, 0x1e392b92, 0x33089341, 0x008001d6, 0x00460022, 0x0081005e, 0x010e3700, 0x27220607,
0x21059841, 0x9841012e, 0x4134200b, 0x37220698, 0x8a41013e, 0x05356e17, 0x37303482, 0x1d062221, 0x3b161401, 0x35233501, 0x15231521, 0x07d87218,
0x31363422, 0x200ca241, 0x236f8215, 0x3316010e, 0x3f090842, 0x062902d5, 0x05091007, 0x190a0601, 0x060a0102, 0x1902100a, 0x09110705, 0x0a0a0804,
0x2b0f0a07, 0x20178741, 0x07a84107, 0xaafeab2c, 0x12181812, 0x56011616, 0x09821616, 0x070a6339, 0x08110904, 0x11011a05, 0x010a0708, 0x0206091a,
0x0d06090c, 0x83022906, 0x3a22080f, 0x07043525, 0x07100709, 0x09132407, 0x200d0b14, 0x02202513, 0x110f0303, 0x13100105, 0x0d09140b, 0x7d415520,
0x140b2b1f, 0xea1219e7, 0xea2b1912, 0x08842bea, 0x13e02408, 0x0f11050f, 0x21010504, 0x0d201324, 0x120a140b, 0x11070724, 0x0404010d, 0x20142435,
0x00130c0c, 0x820a0000, 0x00340803, 0x5e010002, 0x10000700, 0x21001800, 0x2d002700, 0x37003300, 0x42003d00, 0x1e370000, 0x07061401, 0x06273426,
0x013e1714, 0x17012e37, 0x2e071416, 0x37363401, 0x24050043, 0x27253436, 0x28198207, 0x07273705, 0x0705011e, 0x23228217, 0x35331525, 0x27380882,
0x3525010e, 0x9c331523, 0x0d16160d, 0x20200a07, 0x02023c22, 0x0505b73c, 0x1e200f82, 0x22310b84, 0x34d4fe20, 0x09043717, 0x17374901, 0xfe0b0534,
0x230684ae, 0x694b5c01, 0xfe381684, 0xfc4b4bad, 0x1d301d07, 0x48461907, 0x010eba0e, 0x38323238, 0x1946192e, 0x36201383, 0x012f0d84, 0x221fba0e,
0x140c2524, 0x22242520, 0x84b71307, 0x2a772305, 0x1484912a, 0x2a157522, 0x0438de83, 0xd5ff0000, 0xab01d601, 0x1b001700, 0x4f003500, 0x33370000,
0x33353736, 0x20062452, 0x0c0b1927, 0x37162808, 0x13231733, 0x82012e23, 0x82272012, 0x013e23ef, 0xe8823335, 0x1e22eb85, 0x19921701, 0x16821520,
0xcb011e28, 0xaa010a15, 0x05820a01, 0x021e2808, 0x069c070a, 0x0120020b, 0xc2139c30, 0x2e012b22, 0x023c2419, 0x1c203801, 0x38022b20, 0x01201b20,
0x231a2d02, 0x842ad73d, 0x02022606, 0x211a2137, 0x8405842b, 0xd5240829, 0x20200a01, 0x0a01010a, 0x09065c60, 0x605c0609, 0xfe40bf0a, 0x09170d80,
0x2422250c, 0x0f06081f, 0x091e240b, 0x0c200582, 0x23201183, 0x08211788, 0x43178b0d, 0xea200653, 0x9631f382, 0x0d000500, 0x27001e00, 0x37250000,
0x37270717, 0x056d5707, 0x013b3727, 0x35262235, 0x25be8333, 0x2207010e, 0x61182327, 0x3408080a, 0x0f3d4601, 0x7d0f2d4c, 0x12191912, 0x19126b15,
0x01483755, 0x28374801, 0x24954f1e, 0x30493030, 0x0f3c5c30, 0x7a0f2e4c, 0x12d51219, 0x18400118, 0x4802aa12, 0x21238236, 0xcf53c015, 0x095f4906,
0x01c42e08, 0x000600c0, 0x00290020, 0x13000032, 0x37172315, 0x15053523, 0x06071733, 0x17161415, 0x22233521, 0x33013f27, 0x013f3632, 0x27230727,
0x056f5b13, 0x0a955b18, 0x2ad52408, 0xfe2a5555, 0x1d4d2bea, 0x01121805, 0x0104f700, 0x0c9f1301, 0x25520613, 0x3a5b9652, 0x24181812, 0x82c41919,
0x18242ea7, 0x55c00118, 0x2b555656, 0x0935a22a, 0x2c96820b, 0x2303052b, 0x15950a0c, 0xabfec096, 0x821e8219, 0x96058428, 0x0701279b, 0x35331533,
0x9baa2533, 0x55000127, 0xfe2a562a, 0x209ca8c0, 0x2f9bab2a, 0x00030096, 0x0015000c, 0x0100002f, 0x03152335, 0x41101a41, 0x23200b38, 0x0123b68c,
0x4116aa55, 0xe4200c1a, 0x200a3441, 0x24ae8a46, 0xff2b2b40, 0x0b1c4100, 0x33414520, 0x3fa98807, 0x00000400, 0xc401eaff, 0x0b00a101, 0x1d001400,
0x00003700, 0x27072701, 0x17372737, 0x17071737, 0x1165dd19, 0x18142721, 0x200ed59e, 0x26278233, 0x012b010e, 0x182d0107, 0x230729ff, 0xb62d2e1f,
0x2005b541, 0x22a885e8, 0x18f705c0, 0x2e08d79e, 0x2552965b, 0x0c130652, 0x0a01139f, 0x7e1e2d2d, 0xe8200765, 0x0530a88c, 0x1218012b, 0xa235090b,
0x1596c02a, 0x230c0a95, 0x2007d741, 0x2cab82d5, 0x001b00ae, 0x004a0034, 0x05000061, 0x05434626, 0x27362729, 0x37362726, 0x83161736, 0x06072e01,
0x23010e07, 0x37012e27, 0x3e013f34, 0x201a8201, 0x8306822e, 0x21188319, 0x3484012f, 0x82343621, 0x32362820, 0x011e1716, 0x87020e07, 0x20488414,
0x82498226, 0x14c30848, 0x01270607, 0x01030e66, 0x18180604, 0x072e0101, 0x100a0205, 0x2306090e, 0x0a05070c, 0x060e0a22, 0x020a096b, 0x10130804,
0x0a1c0503, 0x09140e03, 0x06150d17, 0x0d160d1b, 0x01030c60, 0x18180703, 0x140f010a, 0x011b080f, 0x0f0c081c, 0x040b5a06, 0x10070402, 0x05100202,
0x0b0c0204, 0x17080e09, 0x2b131117, 0x0a030f07, 0x325f2c0b, 0x0f0d5661, 0x0907080c, 0x4a420d0c, 0x444b3b3a, 0x032f1314, 0x07020a10, 0x29502411,
0x1013343c, 0x2207020f, 0x3b7f3d27, 0x2e05161e, 0x0c030c06, 0x2c612c0c, 0x0e0e1014, 0x34753311, 0x02010d10, 0x050b062c, 0x1c160a0d, 0x0908171c,
0x0103100a, 0x52250c08, 0x4d061824, 0x15360d0b, 0x37002b00, 0x00004300, 0x012e0737, 0x14152223, 0x37323316, 0x0a820e17, 0x36012e25, 0x8f173233,
0x34262115, 0x6f181582, 0x37200b05, 0x080a556f, 0x041dfe2d, 0x0e1d050e, 0x1a08120f, 0x1d121e08, 0x1b240122, 0x051c8c28, 0x0e1c070d, 0x1b08130e,
0x1c121e09, 0x281b2323, 0x02664d68, 0x854d6602, 0x0a404d05, 0x0a0fe327, 0x15112608, 0x23408213, 0x1f243e22, 0x73200d8c, 0x4d223088, 0x51182266,
0x27080c4b, 0xff000005, 0x01ab01d5, 0x000f0096, 0x00170013, 0x0027001f, 0x22212500, 0x1e150706, 0x3e211701, 0x2e353701, 0x35210701, 0x25280184,
0x17323617, 0x07222637, 0x01230786, 0x4b00ff80, 0x01200530, 0xff230786, 0x83000100, 0xe9fe3103, 0x3588351e, 0x05aa421e, 0x1a441a1e, 0xd566271e,
0x3407035c, 0x1812ab12, 0x2b2b55d5, 0x32321eac, 0x1e7b3f1e, 0x251e1919, 0x1f541800, 0x0003240b, 0x821c000c, 0x17372283, 0x08f95c07, 0x77370521,
0x013b06a2, 0x012f2206, 0x32013426, 0x011f5b1e, 0x3f2b2b1f, 0xc5fe2a2a, 0x0711073c, 0x820707b4, 0xb5062806, 0x5a1e4506, 0x83aa011e, 0x2b3f2618,
0x06063d6d, 0x201c82b5, 0x2006843c, 0x45eb8300, 0x0a2d05e3, 0x24001a00, 0x3f003600, 0x26370000, 0x07e64807, 0x1522f683, 0x775d1411, 0x34112d05,
0x06160526, 0x33352307, 0x3707011e, 0x087f7218, 0x3b050d46, 0x0617013b, 0x33012f26, 0x9d333717, 0x11110506, 0x09010c05, 0x1811a8fe, 0x58011118,
0x28080582, 0x150100ff, 0x192d2d19, 0x32600115, 0x3b321f1f, 0x080a0b08, 0x1b0a633c, 0x1d1f2508, 0x05ed1f1c, 0x08096301, 0x18ac0842, 0x08338911,
0x1d0ff62a, 0x1d019e02, 0x1c25110f, 0x080b1d24, 0x8a0b0977, 0x8a120315, 0x00006c6c, 0x00000900, 0xdc01c0ff, 0x03009b01, 0x0b000700, 0x2f06a941,
0x0022001e, 0x25000030, 0x27232733, 0x17152335, 0x07870382, 0x03310b83, 0x21270701, 0x33052711, 0x15272315, 0x33153327, 0x2a1d8311, 0x01353327,
0x2b2a5500, 0x822a2a2b, 0x822b2004, 0x01393400, 0xfe401cc0, 0x530129ab, 0x3eaa2b2b, 0xab2ad593, 0x832b133e, 0x2a55261b, 0x2b2baa2a, 0x37028255,
0x6f012a2a, 0x401c42fe, 0xa9295501, 0x3e13aa2a, 0x2becfe55, 0x2a3e13be, 0x91829a82, 0xfeff002c, 0x8201d601, 0x37002e00, 0x8f824000, 0x34353634,
0x22230627, 0x010e2726, 0x1e150607, 0x37321701, 0x10843116, 0x2327262c, 0x013e3335, 0x17163237, 0x97821716, 0x35270723, 0x08fd6033, 0x655d3320,
0x01300807, 0x14070c8f, 0x1b523117, 0x0122340f, 0x22425702, 0x1c35121d, 0x221b4727, 0x0f171c0e, 0x46274867, 0x170c291c, 0x67714c01, 0x0e0e0ab8,
0x7f0d0d15, 0x2b080682, 0x850e0e14, 0x1517201b, 0x23262c05, 0x08090f36, 0x0e025742, 0x1b1e1223, 0x43612d22, 0x1b1e0256, 0x4661382a, 0x0e55230d,
0x150d0e14, 0x15213484, 0x0cff7f0e, 0x15000525, 0x82001900, 0x153724d0, 0x6b233523, 0xa8821492, 0x1d821720, 0x012e3722, 0x2723d883, 0x6bd5013e,
0x60300f92, 0x371e4b2b, 0x37173895, 0x12573920, 0xc0721732, 0x220f916b, 0x82191eeb, 0x15122a1f, 0x34410101, 0x00554411, 0x081f6e09, 0x3009d741,
0x0020001c, 0x00280024, 0x15233700, 0x07273733, 0x27078317, 0x1f072717, 0x35331501, 0xdc697982, 0x011f2105, 0x27351a84, 0x23353317, 0x2f808095,
0x6f2e1e2e, 0x1e732a2a, 0x80111e2e, 0x05f970eb, 0x13822120, 0x1082e220, 0x2a2a4525, 0x826f2ad5, 0x80af220c, 0x210e8201, 0xb6822a27, 0x24362422,
0x99200282, 0x02821482, 0x80af1e24, 0xdb750000, 0x00652208, 0x20978206, 0x227f8211, 0x82113327, 0x37270801, 0x07173715, 0x27353735, 0x40801735,
0x6b2b2a2b, 0x2feb2a6b, 0x401beb2f, 0xf6fe0a01, 0x1028509d, 0x6a142c65, 0x82652c14, 0x22438642, 0x878001b6, 0x07252343, 0x01822135, 0x27332731,
0x27231737, 0x37230723, 0xfe40b501, 0x8a0a01f6, 0x8a402038, 0x2b878855, 0x004901e7, 0x000c0008, 0x25000010, 0x3e824182, 0x25270737, 0x17231533,
0x01352315, 0x01abfe95, 0x881e5555, 0x00ff1e88, 0x2d0082d5, 0x1e562aab, 0xeb1e8989, 0x2b2baa2b, 0xbb4a0200, 0x00112508, 0x0100002c, 0x0805b241,
0x0706224e, 0x17352317, 0x1632013e, 0x0e071513, 0x22012b01, 0x3637012f, 0x3517013b, 0x16323634, 0x3233011d, 0x0116011f, 0x2c6a28ad, 0x52685211,
0x286a2c11, 0x5d705d18, 0x11021010, 0x0a0c910c, 0x0a07116a, 0x1a134905, 0x08031113, 0x6d011361, 0x16232682, 0x82161e1e, 0x221c3725, 0x04dcfe22,
0x0a100c70, 0x10071169, 0x13130de5, 0x3002800d, 0x87860009, 0x56019629, 0x29001700, 0x83130000, 0x011d217a, 0x10995d19, 0x7f862720, 0x61013e21,
0x260805fd, 0x01d5011e, 0x1a0c120c, 0x0e121269, 0x68090d8a, 0x05090610, 0x24191544, 0x01171418, 0x01304930, 0x00011701, 0x190c0c09, 0x280e585d,
0x1812498c, 0x0b491218, 0x05e06126, 0x47412620, 0x01c02808, 0x00030016, 0x82230019, 0x15332281, 0x36881823, 0x013b3207, 0x013d3632, 0x35231523,
0x26343533, 0x15233505, 0x2a098233, 0x2aeb3523, 0x0d48472a, 0x820d0f0f, 0x2b210804, 0x010f552a, 0x352b800f, 0xaa150135, 0x720b11aa, 0x0b11110b,
0x0e562b39, 0x2a2a110b, 0x2b2b2aaa, 0x08875600, 0x21004c33, 0x33002a00, 0x23250000, 0x07273727, 0x07173717, 0x22068223, 0x1807010e, 0x220ec49a,
0x5305012e, 0x1720070b, 0x30081453, 0x1e183580, 0x1f176017, 0x5e3b1318, 0x392e2423, 0x225e1801, 0xfe3d250d, 0x12120ed3, 0x09c79a18, 0x1524eb33,
0x14234023, 0x188c1325, 0x2f450a36, 0x24241b2b, 0x2303831b, 0xb53d2d2b, 0x20069573, 0x089d7301, 0x01000025, 0x45ff0000, 0x5a2005f3, 0x34250c82,
0x07062226, 0x43988215, 0xf68205c5, 0x33013e25, 0x5b171632, 0x35220503, 0x0b823634, 0x06070628, 0x16171607, 0xcd700e17, 0x22308305, 0x82070614,
0x33352630, 0x33152335, 0x202b8215, 0x06f45432, 0x011e1722, 0x1a820a82, 0x01013e3c, 0x2a3f2bd5, 0x1b240101, 0x242e341e, 0x012a0130, 0x170d1218,
0x1728100d, 0x8d833d2d, 0x05013508, 0x0304150d, 0x01050c17, 0x01182418, 0x2d442d01, 0x1b0e1201, 0x802b0124, 0x2d3c012b, 0x15012a20, 0x01011520,
0x01304830, 0x02022602, 0x1f4b0126, 0x0b1f2b2b, 0x26082082, 0x01043804, 0x16162430, 0x0d0d1812, 0x01021311, 0x0d0b2d3d, 0x1c0d1212, 0x2d2e2918,
0x12181526, 0x22121818, 0x82222d2d, 0x207c8314, 0x2200822b, 0x82013c2d, 0x15102d3a, 0x30241015, 0x40202430, 0x00492120, 0x28058f42, 0x018001fc,
0x001c0080, 0x08b36a26, 0x25058c45, 0x0e113335, 0xc6822701, 0xdb823320, 0xad181620, 0x4908074a, 0x2634013e, 0x35116b01, 0x01453420, 0x20344501,
0x03151135, 0x2e283454, 0x23051607, 0x034c271f, 0x39392b66, 0x3a3a2b2b, 0x011f1bb0, 0x38394b02, 0x1b1f014c, 0x54fbfe3a, 0x2f01032a, 0x01231c25,
0xf04a1f03, 0x3f5f3f02, 0x04820101, 0x00080022, 0x01220082, 0x376101ab, 0x181a2005, 0x2308b5dc, 0x37000047, 0x2007ab4b, 0x22088727, 0x44010e07,
0x372005e7, 0x0a0a8818, 0x2c901186, 0x27081445, 0x181812d5, 0x67191924, 0x2005f964, 0x20068512, 0x200685ee, 0x053e4b43, 0x0d854320, 0x0d856720,
0x30856820, 0x294bc020, 0x83552005, 0x1824253c, 0x241801aa, 0x18214782, 0x20078eab, 0x20258c56, 0x211d8656, 0xd7840500, 0x0001c03e, 0x12000e00,
0x28001e00, 0x00002c00, 0x26343525, 0x3315012b, 0x33173335, 0x27013e27, 0x2005ca74, 0x82108323, 0x33232103, 0x82095751, 0xc0013319, 0x204b0d13,
0x13201318, 0x2b200b08, 0x2bebfe2b, 0x02822020, 0x4a8a2208, 0x12120e4a, 0xcb2a2a0e, 0x80130d15, 0x052d2b2b, 0x0b150a0f, 0x3535802b, 0x0d138080,
0x60130d40, 0x307a8340, 0xff000004, 0x01cd01dd, 0x000f008b, 0x001c0013, 0x857d8331, 0x013d2176, 0x17278584, 0x23153337, 0x84171527, 0x2f172793,
0x23170701, 0xf2432315, 0x268c8205, 0x17331517, 0x85750137, 0x2e88827e, 0x2b2b0818, 0x0e122060, 0x96422028, 0x85087517, 0xa248228b, 0x22818318,
0x820a1103, 0x17692f8b, 0x09151560, 0x130d2920, 0x16961520, 0x92832b75, 0x49206926, 0x030017a2, 0xd5268b82, 0xa001ab01, 0x414f1a00, 0x03132305,
0x60823733, 0x3727353a, 0x0717011e, 0x07271333, 0x012f012e, 0x010e012e, 0x07172707, 0x36323727, 0x3d053c6a, 0x272d3cd1, 0x0d2d2b2c, 0x2e1e3312,
0x0a154016, 0x160c2b1b, 0x131b1706, 0x16324002, 0xb3419e31, 0x02013f05, 0x2babd3fe, 0x402ba080, 0xd7031c15, 0x2f042b01, 0x22151c03, 0x12050c0b,
0x6d090e0d, 0xbd418b0a, 0x18002005, 0x2d09f3a1, 0x000c0006, 0x33070100, 0x33352115, 0xf2833325, 0xd5000134, 0x402a0140, 0x2b5600ff, 0xc080012b,
0xd555abab, 0x008200ab, 0x82000221, 0xd6012700, 0x06008001, 0x338a1b00, 0x1d163228, 0x07061401, 0x3d831523, 0x3b363425, 0x86233501, 0xebfe2942,
0x19191255, 0x80552a12, 0x4b850483, 0x2105fb55, 0x19822b2a, 0x8205ff55, 0x20538549, 0x2109821f, 0x87822317, 0x18422320, 0x84152007, 0x075d5353,
0x36322722, 0xfe245783, 0x150140d6, 0x0d4f7c18, 0x0b225984, 0x6f181220, 0x20240743, 0x1201120d, 0x85067745, 0x0014225b, 0x21b18818, 0xb1833327,
0x23352322, 0x3425ec82, 0x33151736, 0x26ae8635, 0x19122aea, 0x822b2a2b, 0x265084ab, 0xab121855, 0x82ab4040, 0x42402055, 0xab880743, 0x1b001724,
0x03411f00, 0x1e232910, 0x14011d01, 0x37012b06, 0x4107c15a, 0xfe21054a, 0x23ed82eb, 0x120e0e12, 0x2b23b682, 0x872a2a2a, 0x0e20215e, 0x0d29a782,
0xab191220, 0x2a562b2b, 0x0e63412a, 0x5f881920, 0x15332722, 0x75051543, 0xb2870902, 0x0943d318, 0x2a285485, 0x13555580, 0x80121918, 0x4105a368,
0x518218e7, 0x2208a441, 0x8580552b, 0x2baa223c, 0x07ef4900, 0x00022e08, 0x1800b901, 0x38002f00, 0x00004100, 0x17331637, 0x07012f22, 0x35231517,
0x27071527, 0x26352737, 0x3236013f, 0x35230517, 0x27231327, 0x26178207, 0x07062737, 0x82362726, 0x011f2216, 0x08086e25, 0x3a05b357, 0x21f03634,
0x2e3e032c, 0x2b2d320f, 0x4e1e5b1b, 0x470f021a, 0x0109200d, 0x42262b41, 0x1b3107d3, 0x1632171e, 0x6c241416, 0x1911f4fe, 0x18182518, 0x05d0427f,
0x2c21df30, 0x2d330f2c, 0x2f196e80, 0x474d1e5a, 0x39821204, 0x484c0723, 0x07e6420f, 0x030f142a, 0x23280917, 0x3b2d0f20, 0x25223583, 0x73445718,
0x82032007, 0x01002fcb, 0x006b01eb, 0x0017000e, 0x1300001d, 0xa882010e, 0xad4d1520, 0x07272206, 0x057b661e, 0x33173622, 0x2339be82, 0x013c2eab,
0x12ab012b, 0x3d010118, 0x241bd52d, 0x9c248001, 0x01552b80, 0x270e826b, 0x18012bc0, 0x3d2dc012, 0x242a2082, 0x1bc0c01b, 0x2b556a24, 0x5f880400,
0x14000528, 0x25001c00, 0x40430000, 0x23372105, 0x0328688c, 0x36343523, 0x011f1632, 0x27210782, 0x21748233, 0x57822b01, 0x8ad55521, 0x80c2296f,
0x01243724, 0x8015abd5, 0xd5237782, 0x8ac02b55, 0xd6fe2173, 0x75836f82, 0x011c2424, 0xb3481b24, 0x24d7a308, 0x23153335, 0x22d79215, 0x952b5686,
0x829420d6, 0x21d78898, 0xd789006e, 0xd7884984, 0x37363225, 0x8d012e35, 0x163227d7, 0x552b0117, 0xd6982b2b, 0x5b82ae20, 0x3c01c02b, 0x182ac02e,
0x3c2ec012, 0x28d682fe, 0xc01b2525, 0x251c24c0, 0x061f461b, 0x6b01d628, 0x14000c00, 0xa55e1d00, 0x23012a05, 0x1507010e, 0x3d013e21, 0x256d8401,
0x1632013e, 0x45411715, 0x15073c07, 0x35331533, 0x3335012b, 0x2dd66b01, 0x8001013c, 0x3c011812, 0x240180c3, 0x41d62437, 0x96240549, 0x55d52a56,
0x2005c141, 0x05c041eb, 0x210d4c41, 0xb1822a2b, 0x7b83ef86, 0x10000326, 0x1e001800, 0x3105054a, 0x06141525, 0x3e352107, 0x1e333701, 0x26340701,
0x71820622, 0x82233721, 0x6b332173, 0x6a275482, 0x80fe1218, 0x822d3c01, 0x24ff2e7a, 0x80012437, 0x2a2b5580, 0x2b2b0001, 0x2f8682c0, 0x013d2deb,
0x1b2d3d01, 0xc01b2424, 0x005580eb, 0x3326dfb4, 0x23353335, 0xdf9b2307, 0x562b2b23, 0x25e09b55, 0x562b5555, 0x3342002b, 0xffff2705, 0x81019601,
0xdf820300, 0x0000282c, 0x15233525, 0x1d163237, 0x97181401, 0x3d2208b5, 0xe06a3401, 0x36342406, 0x82333503, 0x2b3d08fe, 0x01262201, 0x09ebab40,
0x0411010c, 0x0311de10, 0x11190111, 0x0c1a11ab, 0x090dd6e2, 0xeb0d09aa, 0x0d404040, 0x03063b09, 0x55111155, 0x117b0603, 0x40111a1a, 0xeafe0d09,
0x0c094040, 0x8276820c, 0xff002c6d, 0x01eb01c5, 0x0011009f, 0x82220014, 0x33152277, 0x08d28215, 0x22233530, 0x27112726, 0x27070137, 0x25273325,
0x11171632, 0x012b010e, 0x21113327, 0x2a2b0127, 0x12952aaa, 0x1e150118, 0x7b1ebb01, 0xd5d500ff, 0x3f518001, 0x07210805, 0xcefe322b, 0x2a2b402b,
0x12192b2a, 0x1e150001, 0x7b1e45fe, 0x1855d52b, 0x1200ff12, 0x00012b19, 0x5074822a, 0xeb2f05bf, 0x0800bc01, 0x18001000, 0x34001d00, 0x49130000,
0x1724072b, 0x3517011e, 0x3006c449, 0x35262235, 0x33161433, 0x0f220535, 0x35331501, 0x08884737, 0x33173408, 0x26272335, 0x161610d5, 0x68151521,
0x37435802, 0x011c0148, 0x281f2b38, 0xfe12191c, 0x730506be, 0x26532d26, 0x3526323d, 0x4d681710, 0xbc010a2b, 0x83211501, 0x43102d2c, 0x011d0258,
0x382b3748, 0x1f281d01, 0x41319382, 0x4f6f2402, 0xadb9fe0e, 0x61886a43, 0x4726263d, 0x2da28211, 0x00000e00, 0xc001eaff, 0x0c009601, 0xb5822600,
0x32002e3d, 0x3a003600, 0x42003e00, 0x4a004600, 0x52004e00, 0x00005600, 0x1d062201, 0x18171601, 0x2807dd83, 0x11150622, 0x013b1614, 0x83048315,
0x32333514, 0x34113536, 0x15330526, 0x23151723, 0x1d33023d, 0x27352302, 0x15280d82, 0x011d3335, 0x17333523, 0x37200382, 0x35200382, 0x0135038a,
0x010c0aab, 0x0c0c0915, 0x130ffc56, 0x0c1e0f13, 0x0c0a8009, 0x280a8233, 0x4040fefe, 0x40404095, 0x22038255, 0x826a1616, 0x08028505, 0x01eaea24,
0xd30a0d55, 0x0a0e0414, 0x400d0ad3, 0xdafe0f13, 0x0a2b130f, 0x2b0a0b0b, 0x26010f13, 0x2a80130f, 0x02832a16, 0x2a2a5623, 0x25018240, 0x2b2b6b2a,
0x1082402b, 0x2b2a1622, 0x2c08e347, 0x007001d8, 0x00200017, 0x16063700, 0x052f5b37, 0x6e232721, 0x4c0805c3, 0x07262726, 0x1e17010e, 0x26013b01,
0x2f060727, 0xd64d6106, 0xaf041a10, 0x2f012d1f, 0x47493767, 0xd01e1d39, 0xa70d1401, 0x15782913, 0x01714cd1, 0x1311111a, 0x1e2e011c, 0x272d1333,
0x162e0504, 0x140e2738, 0x07312d46, 0x10000000, 0x05676200, 0x0800ac22, 0x1d3b6d82, 0x26002200, 0x2f002a00, 0x39003300, 0x42003e00, 0x4b004700,
0x56005100, 0x18005a00, 0x220913ff, 0x82062203, 0x1517347b, 0x013e3533, 0x07263637, 0x35231716, 0x23151716, 0x83073335, 0x33352303, 0x03822715,
0x33372330, 0x32372315, 0x2b15011f, 0x37363502, 0x16823517, 0x36231528, 0x15330737, 0x0b821726, 0x17012e22, 0x27082d82, 0x33353706, 0x178b0106,
0x1e2e1d1d, 0x3273941e, 0x2c510305, 0x03512c40, 0x080a3205, 0x0f061302, 0x402a1515, 0x6a409640, 0x21080784, 0x1a101656, 0x14401640, 0xab40162c,
0x08080213, 0x2a350a11, 0x3b130a04, 0x3e132a04, 0x016b0711, 0x46832e1e, 0x5b410134, 0x15643861, 0x64156969, 0x455a6238, 0x042f1a0c, 0x4382047c,
0x40404024, 0x04823c5a, 0x02953b08, 0x08373a04, 0x40409501, 0x0c1a2f84, 0x43122491, 0x0e04021c, 0x42111c14, 0x03001024, 0xdbff0000, 0xb201d801,
0x1b000a00, 0x00002700, 0x010e2705, 0x37163727, 0x03013701, 0xf7821632, 0x36170732, 0x012e2726, 0x17073523, 0x16062707, 0x37171617, 0x53080f83,
0x1b5abc01, 0x2b0a203e, 0x1cd5fe24, 0x18d7a401, 0x0e1c1230, 0x0f1b200f, 0x203f182a, 0x20735757, 0x1a290d1d, 0x13140b20, 0x59240c1d, 0x2b040f13,
0x2b011603, 0x015bfe1c, 0x1e131349, 0x3120244b, 0x1a1a2b6e, 0x0d585546, 0x2d713320, 0x092b0d17, 0x004f1e10, 0x2a084b52, 0x008001e0, 0x0013000f,
0x6f3d002c, 0x2725097d, 0x3b013e35, 0x05d87d01, 0x52180720, 0x1320173a, 0x210f1c7e, 0x52189501, 0x2021203c, 0x6e52184b, 0x1895200d, 0x211b3b52,
0x52184b01, 0x00200e69, 0x2e08474a, 0x00100056, 0x001b0014, 0x16320100, 0x82071417, 0x3e212489, 0x82263701, 0x134108b6, 0x27213521, 0x21070622,
0x0001012e, 0x03011812, 0xfe015443, 0x43540180, 0xe7180103, 0xaa0156fe, 0x0f4c33d5, 0x4c0f1c01, 0x12185501, 0x610e0708, 0x0e614242, 0x18120807,
0xa02ad6fe, 0x352b2b35, 0x058f5100, 0xab01eb2b, 0x45003400, 0x27370000, 0x825a8233, 0x2a028261, 0x3707010e, 0x2e35013e, 0x4f162701, 0x17220692,
0x1e83011e, 0x26273428, 0x013f0723, 0xa54f1732, 0x65332005, 0x072308d3, 0x8215010e, 0x35370838, 0x053046ab, 0x33212b3b, 0x014b3e0d, 0x07353e01,
0x2f01231f, 0x3d010328, 0x0f2f1e2d, 0x0f19082c, 0x0301241b, 0x0728201d, 0x08191c21, 0x2419111c, 0x45403003, 0x8502785c, 0x5f02232a, 0x0d84904a,
0x0d3e4b24, 0x31862133, 0x081c1127, 0x84641c19, 0x2b228603, 0x1d20526c, 0x012b0103, 0x012f2803, 0x6a202f82, 0x2a866f84, 0x00354e83, 0x00000300,
0xce01f5ff, 0x06008b01, 0x21000f00, 0x36250000, 0x23d08237, 0x07062736, 0x3626e082, 0x1e370637, 0xaf820601, 0x27222325, 0x8236012e, 0x32333ce7,
0x04415a01, 0x694d8023, 0x0f044172, 0x4d401a3a, 0x0811cd69, 0x732a2e27, 0x87154438, 0x41663708, 0x23804d6a, 0x6a41f603, 0x401a5320, 0x11190323,
0x2a2e8966, 0x06851527, 0x00820020, 0x07440220, 0x00ab2706, 0x00220008, 0x864a0100, 0x06172d07, 0x3d012e07, 0x15173701, 0x36270714, 0x2606a554,
0x3617011e, 0x54000137, 0x982a0510, 0x6e524934, 0x3e29c0c0, 0x43640111, 0x1a212308, 0x44640001, 0x3ddb2e06, 0x59931412, 0x80565680, 0x1a3e424c,
0x05e74721, 0x11200583, 0x180a3757, 0x2d095f5b, 0x32211300, 0x14011d16, 0x15012b06, 0x734c1533, 0x18332005, 0x24078183, 0x35331517, 0x320d8207,
0x15233505, 0x33152337, 0x12560155, 0x6b121818, 0x822a6b40, 0x200a8303, 0x21008296, 0x05845601, 0x2f052772, 0x80802a56, 0x1218562a, 0x2a1812d6,
0x56d65656, 0xd6250082, 0x00000056, 0x1223550d, 0x230d1970, 0x1300004b, 0x33206b82, 0x4d0a0170, 0x9685075e, 0x9e842320, 0x23863520, 0x35248e82,
0x011e2127, 0x8d059747, 0x11272bbb, 0x4040013e, 0x2a406b40, 0x07822b40, 0xd5240989, 0xab40aa40, 0x2007ab47, 0x47c68480, 0x2e8305b8, 0x08842988,
0x5e464020, 0x01963105, 0xebfe1218, 0x2b401912, 0x402b6b6b, 0x15011219, 0x2005b74c, 0x39d38207, 0x01d60100, 0x00030097, 0x0010000c, 0x002c0019,
0x00340030, 0x23352500, 0xee501715, 0x8b272007, 0x7713200c, 0x23300574, 0x35211517, 0x3d262237, 0x05013e01, 0x07153335, 0x012c0382, 0x0e4a6a55,
0x121b1212, 0x206b6812, 0x6d380885, 0x01026049, 0xff20202a, 0x2b1f2000, 0x1e016101, 0xd52a2a2a, 0x01806b6b, 0x1b222583, 0x0a897f12, 0x023f0136,
0x1fcb3621, 0x0b0b202b, 0xcb1f2b20, 0x6bd72136, 0x2a2a556b, 0x20091744, 0x29a38281, 0x00290007, 0x15213700, 0x57490121, 0x2b062208, 0x06424901,
0x82013d21, 0x72062086, 0x2208083b, 0x5535012f, 0xaafe5601, 0x2b2b5601, 0x12181812, 0x8022332b, 0x266b3323, 0x0a010104, 0x01010a55, 0x822b2703,
0x4040323a, 0x40111a6b, 0x23401812, 0xd5233333, 0x05041e33, 0x261b825b, 0x03065b0a, 0x4a00331e, 0x7b8308b3, 0x31001624, 0x7d863500, 0x21232622,
0x230b1c48, 0x0734013d, 0x0e27848b, 0x14011d01, 0x8232013b, 0x012f2617, 0x35231735, 0x29898533, 0xfe120c74, 0x802333aa, 0x91823322, 0x12188030,
0x55191280, 0x0a010326, 0x26040a56, 0x00822bc0, 0x0d730123, 0x3a8883d5, 0x40121840, 0x12aa1111, 0xaa111a19, 0x05021d1e, 0x0a0a5c02, 0x1d03065c,
0x1840401e, 0x2808bf99, 0x000800b0, 0x00260011, 0x0a634730, 0x8f521720, 0x32253e07, 0x36263736, 0x17013e37, 0x0e070616, 0x010e2701, 0x01270715,
0x17020e26, 0x01023e16, 0x74951880, 0xeffe3b0c, 0x05021a02, 0x7331201a, 0x2f0d2528, 0x2e234c20, 0x011e5a2d, 0x46511a5a, 0x0483190d, 0x07206c18,
0xd4502a20, 0x2d352e05, 0x204c242d, 0x28250d2f, 0x1b203173, 0x2c3b8206, 0x3d011e5b, 0x51460d19, 0x470d191b, 0x209f8451, 0xc35318ea, 0x000b2908,
0x0100000e, 0x17352315, 0x07250386, 0x55010721, 0x300083aa, 0x952a0140, 0x2b2b8001, 0x562b2b55, 0x95552a2a, 0x076f4100, 0x5601c023, 0x05835800,
0x25203b82, 0x82072048, 0x11272407, 0x89c00127, 0x856b2030, 0xd6fe2146, 0xab413a83, 0x78962006, 0x77840627, 0x54483320, 0x82272006, 0x21372307,
0x2f88ab37, 0x48184389, 0x2b0809b3, 0x00160096, 0x0033002f, 0x13000037, 0x3b161415, 0x17011e01, 0x1d010e15, 0x37273301, 0x2e352327, 0x33132301,
0x26273435, 0x013e3527, 0x2d055949, 0x07062223, 0x17231506, 0x15332707, 0x03822523, 0x1a2b2808, 0x25062f10, 0x6f141626, 0x394b5540, 0x9a0d1a04,
0x130b0c3b, 0x2f052626, 0x0d551a10, 0x2c020418, 0x2baf603b, 0x822b012b, 0x95290803, 0x1e1a10c0, 0x0634082b, 0x9508121b, 0x0f06806b, 0x0656fe15,
0x070a0e14, 0x1c2d0933, 0x12c2101a, 0x8005050e, 0x9696eb6b, 0xbf431896, 0x016e3b08, 0x0024009a, 0x2500002d, 0x2f263617, 0x34353601, 0x26372726,
0x0e071706, 0xad820f01, 0x16013f2b, 0x06261517, 0x35331507, 0x22a58236, 0x50363427, 0x2308051e, 0x143e1c01, 0x06200311, 0x1e1d0d10, 0x14120118,
0x0c5f051d, 0x0b2c0228, 0x0325031a, 0x1f0d0180, 0x121c1235, 0xc73a0282, 0x0123183e, 0x110e0c21, 0x065e081c, 0x0238031f, 0x1d1e1418, 0x190f0201,
0x24829909, 0x82151521, 0x3c99222d, 0x2329830e, 0x00070012, 0x3c05c756, 0x002200ab, 0x00300029, 0x00400038, 0x00500048, 0x36340100, 0x1e072737,
0x010e1501, 0x180b831f, 0x2107fb78, 0x91823437, 0x37231682, 0x6d072636, 0x1720058b, 0x172b1084, 0x22260727, 0x32362707, 0x82362317, 0x011e2acc,
0x010e1725, 0x36262317, 0x08178637, 0x0715018f, 0x0a26260a, 0x015c6507, 0x0a151695, 0x2418010c, 0x0a0c0118, 0x01951615, 0x131a8f5c, 0x3342125a,
0x331a1357, 0x0f1c1242, 0x0f0d1e0c, 0x2b542e13, 0x200d0501, 0x99fe0914, 0x01050b20, 0x8e08012b, 0x0d1f0b0f, 0x012e140f, 0x0e1b0640, 0x1b0c201e,
0x06590c06, 0x091c0195, 0x0c14052c, 0x12181812, 0x2c05140c, 0x95011c09, 0x069f5706, 0x2513590f, 0x070e9504, 0x13230680, 0x050528cd, 0x016b0728,
0x181c0e1e, 0x0e1c462e, 0x2e03011e, 0x21138433, 0xff820600, 0x9601d538, 0x1300ab01, 0x24001c00, 0x2c002800, 0x00003000, 0x23152301, 0x3e4c2335,
0x07937f05, 0x21086361, 0xb4742317, 0x23272405, 0x42133335, 0x012406d4, 0x4056406b, 0xd6208383, 0x7d200482, 0x35058951, 0x3b02aa67, 0x40023b30,
0xaa402a2a, 0x555555aa, 0x40408001, 0x78181219, 0x6b200bb7, 0x2f058843, 0x161515aa, 0x56d51516, 0x401580fe, 0x08000015, 0x8b088b47, 0x00342293,
0x23979138, 0x012e1137, 0x3720979c, 0x2e07d145, 0x40554040, 0x12191912, 0x011812d5, 0x567d1801, 0xab3206a9, 0x3b303a03, 0x2b2b4003, 0x56abab40,
0x2bc05555, 0xa5a52b2b, 0xd345ab20, 0x22ab8906, 0x18200017, 0x280c7962, 0x15230100, 0x11231133, 0x0b474133, 0x5b48af84, 0x06474108, 0x2407394c,
0x33352313, 0x22af8917, 0x9840d540, 0x23ad84b1, 0xaa2b2b16, 0x2b25b084, 0x5501abfe, 0x0d5a412b, 0xd5525520, 0x15aa2d06, 0x16151516, 0x16401555,
0xeb562a01, 0x0020b586, 0x8b0af741, 0x23b394b7, 0x26341135, 0x08e17a18, 0x8b07fb41, 0x6b0124b3, 0x82d64040, 0x181822ab, 0x11fd4112, 0x55aaaa29,
0x2a155555, 0xa880012a, 0x820020a5, 0x82072000, 0x02002203, 0x06f74b00, 0x99421b20, 0x0e21240a, 0x4b110701, 0x1127064b, 0x2103012e, 0x5b032111,
0x152005e4, 0x55083a66, 0x072f074e, 0x01353315, 0x1256fed5, 0x18010118, 0x85aa0112, 0x56fe3207, 0x04aaaa01, 0x04493c49, 0x1e1e176b, 0x541e1e2e,
0x22008280, 0x82800155, 0x82fe2023, 0x332b84c1, 0xfe18122a, 0xff2a01ac, 0x1a1b1b00, 0xd61b1b1a, 0x1e2d1e01, 0x01250282, 0x152b1616, 0x22028215,
0x5b000000, 0x96240503, 0x2f008f01, 0x152a0c82, 0x2e270614, 0x33152701, 0x8e5c1632, 0x2b430806, 0x3d262201, 0x013f3401, 0x35013b36, 0x34262206,
0x17163736, 0x3e153335, 0x16363701, 0x05079501, 0x054b6603, 0x1c030e08, 0x6a0e1206, 0x1c06120e, 0x0e051009, 0x161d1d2a, 0x4b2a0e14, 0x07050366,
0x82888401, 0x30043c04, 0x06063404, 0xaa080727, 0x0e10120c, 0x270609aa, 0x2210200c, 0x04012232, 0x82341e0d, 0x0501211c, 0x02218b82, 0x3e008200,
0x8001cd01, 0x20000800, 0x33370000, 0x07173727, 0x37233727, 0x011d1632, 0x11213527, 0x82373521, 0xe8bb18a1, 0xab333207, 0x691e35d0, 0xd0351e69,
0x2b1813ea, 0x2a01d6fe, 0x05af6f2b, 0xc0121924, 0x18831f35, 0x1219eb32, 0xff0f2a63, 0x392b0e00, 0x12191912, 0x19122a01, 0x82059241, 0xc0012105,
0x25206790, 0x23090f70, 0x1533013d, 0x15286f82, 0x36343523, 0x36d11533, 0x36256783, 0x138001d1, 0x24628518, 0xfe2a012b, 0x896e82d6, 0xd6fe2168,
0x40256283, 0x40000140, 0x0866826a, 0x00000723, 0xd601e9ff, 0x23009601, 0x30002c00, 0x42003900, 0x4f004b00, 0x37250000, 0x012f3436, 0x010f2226,
0x24048327, 0x011f1406, 0x24048307, 0x013f3216, 0x83048317, 0x052a461e, 0x82363421, 0x071723fd, 0x3b462622, 0x87172005, 0x87372008, 0x2717351e,
0x7a011737, 0x5c060655, 0x54071107, 0x06110755, 0x5506065d, 0x5d250f82, 0x55071106, 0x23148254, 0xcf07075c, 0x2405677e, 0x4d4e4e5b, 0x200a8514,
0x24068c22, 0x4e4d4d41, 0x852b84c0, 0x204b933b, 0x05757e95, 0x4e4d2a24, 0x0a85794d, 0x06852b20, 0x06855520, 0x1882c720, 0x20058f43, 0x26f382ea,
0x000300ab, 0x720e0008, 0x003b06f5, 0x23153325, 0x21151703, 0x15330535, 0x05072227, 0x17163335, 0x06153303, 0x82272307, 0x01300819, 0x36aaaa2b,
0x016bfecb, 0x1615402a, 0xd7d6fe15, 0x404c1906, 0x802d040f, 0x2a554040, 0x2b6b8001, 0x022d552b, 0x2540ce07, 0x6400011b, 0x96961c16, 0x0b28678b,
0x16001000, 0x21001b00, 0x18068756, 0x9a08b49d, 0x2a6b236f, 0x02824040, 0x73957620, 0x1b839520, 0x56012a22, 0xcc237799, 0x8d00ab01, 0xef651877,
0x19e7990b, 0x200b741e, 0x197c956d, 0x200c811e, 0x2282936b, 0x82000500, 0x01230800, 0x0080016b, 0x00070003, 0x0017000f, 0x2500001f, 0x13352315,
0x0f331523, 0x15233501, 0x15371507, 0x8b073507, 0x2b012a07, 0xd6d69656, 0x1556152b, 0x32038780, 0x010f4646, 0x0f154071, 0x150f470f, 0x2b0f3e53,
0x850d2a3a, 0x0c2b2307, 0x8b435416, 0x01d62e08, 0x001c0040, 0x01000025, 0x2327010e, 0x3303822e, 0x013e3315, 0x07063337, 0x3632011e, 0x1e273437,
0x11331701, 0x0808a142, 0x0cc0012a, 0x11950ca8, 0x15150119, 0x1b111901, 0x4001011a, 0x11014068, 0x15034d2c, 0x313126f5, 0x0131314c, 0x03214d40,
0x56021202, 0x11300382, 0x23231d1a, 0x0710141d, 0x00012f2e, 0x151e15e4, 0x00210282, 0x267b8201, 0x01800100, 0x8527006b, 0x2a7583d7, 0x32363435,
0x14151716, 0x47013b16, 0x858305b5, 0x3e013d26, 0x1d163201, 0x23209982, 0x1531df82, 0x0c01241b, 0x0c010c12, 0x18011509, 0x15011824, 0x820b8209,
0x1b242c0f, 0x01406b6b, 0x09401b24, 0x82090c0c, 0x12d52504, 0xab121818, 0x2a202682, 0x2a221083, 0x6f82241c, 0x22053b55, 0x559601d6, 0x2c22063b,
0x7b823800, 0x2107e146, 0xac6c3537, 0x35072905, 0x23151632, 0x33172634, 0x280a8344, 0x3337013b, 0x07011e15, 0x9b7a183e, 0x00012809, 0x3a27271d,
0x55722727, 0x1826093d, 0x12186a03, 0x7a83aafe, 0x80274425, 0x4f6a1812, 0x3d370941, 0x3a2701da, 0x273a2626, 0x48011ca0, 0x38382b37, 0x131f281c,
0x83eb4018, 0x0001282b, 0x402b1912, 0x18e71801, 0x890eff56, 0x001634af, 0x0026001e, 0x003b0032, 0x21150100, 0x33373311, 0x48072335, 0x332a06f2,
0x3d363221, 0x2e332701, 0xa1832701, 0x23240782, 0x07163215, 0x8205ce60, 0x010e2414, 0x44010e17, 0x01260552, 0x57aafeab, 0x7f746d27, 0x871c200a,
0x2701218d, 0xeb208e82, 0x74081450, 0x012b0958, 0x0001eb00, 0x192b2b2b, 0x8300ff12, 0x15eb21ac, 0x9323ef8a, 0x88013c2d, 0x241b25b4, 0x24243724,
0x2d080753, 0x004001d6, 0x00140008, 0x00350020, 0x80832500, 0x06021e23, 0x0aeb6827, 0x012e273c, 0x14010e23, 0x37361716, 0x34230736, 0x32352326,
0x14333536, 0x16323316, 0xe4823517, 0x01265408, 0x100e0c8b, 0x0f010f14, 0x012a200b, 0x04054105, 0x2a010442, 0x1722056c, 0x1c23231c, 0x0808090c,
0x12121880, 0x1218d618, 0xfe111901, 0x5a07e080, 0x010e160f, 0x660f140f, 0x2d202a01, 0x5a03035a, 0x102a202d, 0x23011c15, 0x01012338, 0x12472e03,
0x82185618, 0x09042530, 0x1500ff62, 0x032fa782, 0xeaff0000, 0x89018001, 0x0b000500, 0x7b001100, 0x2725052b, 0x17371737, 0x26058607, 0x1e62629e,
0x8a1e8080, 0x84892005, 0x8517850b, 0x06435305, 0xef82c920, 0x13214786, 0x8a408407, 0x90c92005, 0x22012135, 0x92825a90, 0x20088f53, 0x21938740,
0x1d473725, 0x21058905, 0x4c903701, 0x4b975e20, 0x82f7ff21, 0x889620df, 0x8327204b, 0x8a0720d7, 0x62012105, 0xf7203990, 0x97835d90, 0x04830420,
0x01c1012e, 0x000f006b, 0x002b0013, 0x13000043, 0x2d05724b, 0x36322133, 0x26341135, 0x11210523, 0x3b723721, 0x085c6407, 0x35331522, 0x33201b82,
0x6b201796, 0x2a05af47, 0x111a1a11, 0x4001cbfe, 0x4335c0fe, 0x0d2e05bf, 0x202b2b20, 0x0956090d, 0x40090d0d, 0x0d830c09, 0x01090c34, 0xff12196b,
0x1a191200, 0x11000111, 0xeafe201a, 0x21820ccb, 0x090c0c27, 0x0b400b16, 0x20388316, 0x86048356, 0x09634e0d, 0x16006b33, 0x26001a00, 0x00002f00,
0x33352325, 0x1637013e, 0x21948217, 0xb7772127, 0x26332606, 0x21152103, 0x0a9a4205, 0xae420720, 0x20012806, 0x2e10dccb, 0x43202a1c, 0xe22807d6,
0x5601d50d, 0x3601aafe, 0x200a9142, 0x06a5421f, 0x13804027, 0x1b010117, 0x4d861871, 0x0114240a, 0x42552b17, 0x65200a8d, 0x3806a142, 0x00030000,
0x01d9ff00, 0x009701eb, 0x00200014, 0x0100003a, 0x2627012e, 0x2d028206, 0x06070307, 0x3f36011e, 0x012e1301, 0x16820e03, 0x3e013f33, 0x0f011e01,
0x012f2601, 0x32373626, 0x012e3533, 0x82ab8207, 0x133f0802, 0x37011e17, 0xb1012633, 0x100f1b10, 0x23111023, 0x0604020f, 0x072b351c, 0x1e0a7f04,
0x120f0285, 0x01130109, 0x010a120e, 0x10030c81, 0x020a0802, 0x0e200f03, 0x12101c0d, 0x047f0a1e, 0x821a2b07, 0x722e085e, 0x03041905, 0x0406020c,
0x15cffe09, 0x1b0b2b1b, 0x1501161a, 0xbefe120f, 0x0e040a09, 0x0a08540a, 0x8a090e03, 0x08481713, 0x01f2030f, 0x2d820209, 0x0f12022a, 0x1a16ebfe,
0x000b061c, 0x26084343, 0x009601d8, 0x832e0008, 0x442520c7, 0x3728076c, 0x15331707, 0x1e070623, 0x27057f44, 0x37013e27, 0x35232726, 0x26074472,
0x35013e37, 0x7f061633, 0xad4405d7, 0x55012505, 0x30483001, 0x21080282, 0x24061e4b, 0x1a1d1024, 0x58110a26, 0x0a115876, 0x101d1a26, 0x30172424,
0x25111680, 0x022a0a15, 0xa8445b11, 0x51c0200a, 0x343f0556, 0x2180090f, 0x10180916, 0x14191914, 0x16091810, 0x17308021, 0x110b2424, 0x212c0b12,
0x456d4622, 0xb6820a8a, 0x31062f51, 0x008001d6, 0x001e0015, 0x00410038, 0x16322500, 0xad823317, 0x3523152d, 0x2327012e, 0x2e23010e, 0x51363401,
0x132008dc, 0x29053c7f, 0x0722012b, 0x26060706, 0x09822627, 0x35272629, 0x0533013e, 0x82152135, 0x171627d6, 0x20150001, 0xfa654407, 0x07442706,
0x241b1520, 0x84491b24, 0x42772005, 0x432a0515, 0x1408050f, 0x05071e11, 0x1085430f, 0xff000130, 0x14096300, 0x18800914, 0x24300113, 0x16821515,
0x01181324, 0x5b183624, 0x012d0715, 0x6a12192b, 0x140d1912, 0x120f0508, 0x290b840d, 0x126a6a95, 0x00120303, 0x00820002, 0x01d60123, 0x3609826b,
0x13000005, 0x01132101, 0x6a012b11, 0x014096fe, 0xfe40016a, 0x825601d5, 0x4b2b2003, 0x962208fb, 0xe5822600, 0x2206142f, 0x36343526, 0x15233537,
0x011d011e, 0x210b8523, 0x7c473335, 0x83332006, 0x1e390814, 0x1e950101, 0x0f111e2e, 0x95171360, 0x2b2b1417, 0x01121b12, 0x0f181260, 0x1e163511,
0x1a11161e, 0x091dda06, 0xf5f51624, 0x1d092416, 0x120e0a2b, 0x010a0e12, 0x06da1218, 0xdb49181a, 0x002e220d, 0x20719137, 0x47718821, 0x798e05d8,
0x98842720, 0x36341524, 0x8287d501, 0x17d6fe26, 0x012a2a13, 0x56208482, 0xea248888, 0x17171456, 0x938b8d99, 0x831ddd21, 0x241621ac, 0x2b09af42,
0x009601d6, 0x00220019, 0x01000040, 0x2708ee76, 0x011e1732, 0x36373637, 0x30051969, 0x23072634, 0x07062726, 0x37213523, 0x07010e11, 0x220c8222,
0x84372726, 0x013e2e22, 0x06163727, 0x3e171607, 0x01113701, 0x05184755, 0x0e443f08, 0x121e0606, 0x0e060714, 0x19191243, 0x14096312, 0x01640814,
0x4e018000, 0x14321c3b, 0x29133c20, 0x0613270e, 0x010e0d06, 0x19140728, 0x36291f19, 0x19800101, 0x19126a12, 0x050f120d, 0xdb411408, 0x12230806,
0x6a120303, 0x3be0fe40, 0x1414014e, 0x121b1607, 0x0308080f, 0x111e0a04, 0x13391f12, 0x36010111, 0x48200129, 0xab2008cb, 0x0222c782, 0xcb821000,
0x29002122, 0x3324cb82, 0x1733012f, 0x0b248b18, 0x3607185e, 0x17163207, 0x36270714, 0x17373407, 0x012e2306, 0x76761501, 0x7c80ab95, 0x722e095e,
0x52363629, 0x1b293636, 0x57090124, 0x03822e0e, 0x0a821220, 0x20750023, 0x25dd8580, 0x18125601, 0x228301c0, 0x1f365231, 0x0e121c24, 0x13400957,
0x0109570d, 0x48000024, 0x8b8305a7, 0x51000d21, 0x2c200505, 0x878b8b82, 0x35013327, 0x11233523, 0x084d5037, 0x17072230, 0x26343536, 0x33011e07,
0x06273732, 0x8a8a2b01, 0x00011225, 0x8675956b, 0x2468838f, 0x24015c24, 0x206c841b, 0x268d8a95, 0x6beb80fe, 0x87d6aafe, 0x57092893, 0x241b130d,
0x82241c3f, 0x000021ba, 0x3508af55, 0x00140096, 0x00220017, 0x13000027, 0x11070622, 0x013b011e, 0x385e3735, 0x37212905, 0x17072735, 0x0f221723,
0x0c389918, 0x99438020, 0x2d553a05, 0xd72aad82, 0x80290201, 0x99767616, 0x2c150405, 0x1c030316, 0x2c833003, 0xea8b1884, 0x2d282c07, 0x292b2a2b,
0x7520802c, 0x82160455, 0x040a271e, 0x8326041b, 0x7f82842d, 0x0000053f, 0xd701d5ff, 0x03009601, 0x1b001600, 0x2b002600, 0x33370000, 0x23172315,
0x33153311, 0x207a8215, 0x3e8f8723, 0x35373327, 0x1f162523, 0x0f141601, 0x36372701, 0x35230717, 0xaaaaab37, 0x6b95552a, 0x86ab802b, 0x572a3c8e,
0x04016a13, 0x031c0404, 0x152d1503, 0x2d820603, 0x802bc082, 0x426b5601, 0x46802c2b, 0x5524059f, 0x01401813, 0x0a268382, 0x152d1603, 0x21825304,
0x87850020, 0x9601eb2e, 0x13000800, 0x30001c00, 0x00003300, 0x2109c164, 0xe14b010e, 0x012e2205, 0x078c6b07, 0x37012f22, 0x20052147, 0x08a08827,
0x17132625, 0x096b0123, 0x0b130c0c, 0x442d0a0b, 0x59440f0f, 0x44101044, 0x1e1e172c, 0xbe1e1e2d, 0x59160606, 0x871f2139, 0x126025a9, 0x40767647,
0x132c2b83, 0x2e01400c, 0x2f2f2626, 0x8a2e2626, 0x28069450, 0x340f1025, 0x0b01013c, 0x23b38676, 0x75750115, 0x8908af41, 0x9e3120a7, 0x412720a5,
0x16220546, 0xa68a3517, 0xbb25a399, 0x166b9546, 0x20a18815, 0x269e9810, 0x6b56011f, 0x87080257, 0x8213209d, 0x0400319a, 0xd5ff0000, 0x6b01eb01,
0x07000300, 0x2b001f00, 0x33239b82, 0x82152315, 0x6c372003, 0x23300547, 0x1127012e, 0x3337013e, 0x16323317, 0x011e011d, 0x220be74a, 0x822b4001,
0x02ab2700, 0x40264054, 0xcd419b14, 0x2b802705, 0x141912aa, 0x3f4b9516, 0x6bc02a0a, 0x40562b15, 0x22010254, 0xe130191d, 0x12192508, 0x4c361442,
0x2108614b, 0xcf413c2d, 0x248b8508, 0x002a0012, 0x2a8d8a36, 0x21351732, 0x35263315, 0xa817013e, 0x23152998, 0x86abfe1d, 0xd5540206, 0xeb28a1a3,
0x15d5230e, 0x93543f16, 0x0020a9a0, 0x2806cb4a, 0x006b01e8, 0x000f000a, 0x20a78224, 0x0d694306, 0x07152722, 0x1520af83, 0x220c3e41, 0x4304c001,
0x2e27076b, 0x05822e83, 0x18abfe2b, 0x39071aea, 0x13aa2b80, 0x0301d318, 0x03162d16, 0x031c030b, 0x822c8125, 0x2d2b0293, 0x31412bd5, 0x00002409,
0x82000200, 0xef012100, 0x15257782, 0x00001900, 0x25648237, 0x012b2634, 0x41182327, 0x230809a7, 0x2107013f, 0x2d822137, 0x12196b01, 0x12802b95,
0x01121818, 0x04160f40, 0xebfe5a31, 0xeb150122, 0x1912d5ab, 0xdb745483, 0x0e112705, 0x0080abb6, 0x56820600, 0xc0010024, 0x83732b01, 0x3700250c,
0x15233533, 0x35200382, 0x17210382, 0x82d08221, 0x15352503, 0x2b403521, 0x55240084, 0xd5fe2b01, 0xab230385, 0x822b802a, 0x26058201, 0x002b2bab,
0x57000b00, 0x802805cf, 0x44004000, 0x4d004900, 0x2906bd61, 0x0063005f, 0x006c0067, 0x51820100, 0x21205b82, 0x61820382, 0x65841120, 0x33112008,
0x06153315, 0x15171407, 0x011e3233, 0x012e2206, 0x1617010e, 0x35363233, 0x35272634, 0x8227013e, 0x35332205, 0x292c8533, 0x35071525, 0x15373515,
0x03820307, 0x03861520, 0x94053521, 0x01290815, 0x401515c0, 0x154000ff, 0x156a1515, 0x01100a6b, 0x07060d0d, 0x070d0801, 0x02020a0a, 0x1611160c,
0x060a0c0e, 0x0a070405, 0x261f826b, 0x1616abfe, 0x84160e08, 0x56012100, 0x40210b8a, 0x083f822b, 0xfe2b1524, 0x012a2ad5, 0x064e152b, 0x1a070f12,
0x0b080b07, 0x050a0603, 0x0c111713, 0x05020414, 0x04070a13, 0x2283154f, 0x161e652e, 0x15114f1e, 0x0f01081e, 0x22161e16, 0x20210386, 0x2016952c,
0x20008200, 0x3c038203, 0x01d60100, 0x00030080, 0x001a000a, 0x15333700, 0x15233723, 0x37233521, 0x2b263417, 0x09684c01, 0x2aeb352f, 0xfe40ea2a,
0x40d540d6, 0x122a1219, 0x2b048419, 0xab5580eb, 0x1295c0ab, 0x80121818, 0x538d1283, 0x53820620, 0x996a1020, 0x23072608, 0x23173335, 0x6a058235,
0xea2f064d, 0x2b555656, 0x8001552a, 0x40ababc0, 0x5dab6b2b, 0xff250527, 0x01eb01ea, 0x27398296, 0x00210015, 0x15232500, 0x03833282, 0x6d273721,
0x0f820665, 0x0a872520, 0x35272308, 0x2b6b0123, 0x2b405540, 0x15555595, 0x152b2a2b, 0x166b5501, 0x1c242a40, 0x6a806b16, 0xaa80806a, 0x00834055,
0x06826b20, 0x473d1821, 0xe024055b, 0xa4019e01, 0x3529eb82, 0x53004600, 0x00006100, 0x0a645c13, 0x010e1722, 0x2b06ae79, 0x0e07012e, 0x34271701,
0x26161706, 0x17231282, 0x5c07011e, 0x262e0889, 0x07063637, 0x37161431, 0x16151636, 0x1f820607, 0x17363723, 0x830f8407, 0x3236250c, 0x011e011f,
0x1a841c82, 0x36349708, 0x03097016, 0x49a90701, 0x1c264e3a, 0x0c010301, 0x1f010403, 0x221f1b3d, 0x0b131a83, 0x041a054f, 0x09010d01, 0x0511120e,
0x091f0201, 0x0205200e, 0x06070305, 0x2d462a28, 0x0206072a, 0x053a3109, 0x06040906, 0x09323405, 0x23511103, 0x04060601, 0x12451b03, 0x23020503,
0x07020b59, 0x06460109, 0x1d0a032d, 0x1266655d, 0x08083915, 0x4a0c0907, 0x3a58281a, 0x0c0d0b34, 0x1e0a9119, 0x020d2e09, 0x03242502, 0x03011705,
0x301b0919, 0x03050304, 0x0f3e0706, 0x18820446, 0x08020433, 0x0b240d02, 0x0202050e, 0x05220330, 0x09071201, 0x2e9c822a, 0x0c0a212a, 0x1c030602,
0x0b050e20, 0x82000106, 0x82042000, 0x02003c03, 0x00560100, 0x00270012, 0x00390030, 0x35232500, 0x23010e23, 0x3e27012e, 0x76323701, 0x3325057d,
0x23353335, 0x21128227, 0x834c010e, 0x013f2205, 0x08094733, 0x39088b70, 0x3980d501, 0x3f2d4713, 0x54020254, 0x13472d3f, 0x2b552be4, 0x0c05d62a,
0xbf452336, 0x36232c05, 0xeb81050c, 0x3724241b, 0x4b1c2424, 0x2b2105ef, 0x2d558255, 0x553f3f55, 0x80272e01, 0x0f2a562b, 0x72612620, 0x20262707,
0x24012b0f, 0x02822436, 0x120c5423, 0x8202820c, 0x075b44ab, 0x04008031, 0x14000c00, 0x21001c00, 0x00002900, 0x82152313, 0x20b682ac, 0x20078207,
0x21078627, 0x13823313, 0x010e3524, 0x04823317, 0x0c860720, 0x1b408032, 0x022bac24, 0x8464526c, 0x3d012a53, 0x0154402d, 0xa8200d85, 0x56201882,
0x80331186, 0x1b240140, 0x2b026c52, 0x2d648403, 0x012a013d, 0x86c0fe54, 0x8519830e, 0x05002112, 0x00248f82, 0x8001c001, 0x25260982, 0x31002b00,
0x89833700, 0x1707142d, 0x06172736, 0x37361507, 0x84010e17, 0x22078298, 0x82343307, 0x0706220f, 0x24058233, 0x23330137, 0x08258206, 0x33361726,
0x27072235, 0x35373617, 0x032ad506, 0x3d950b22, 0x2734221b, 0x233d1a1f, 0x351f4d2c, 0x2b011d1a, 0x1e1f1417, 0x123d7f82, 0x9bfe1b3d, 0x14012bd0,
0x0b7f211e, 0x3f1b1e0c, 0x4330291f, 0x0b0c8001, 0x3d031b22, 0x08208212, 0x141f1e25, 0x1d012b17, 0x4d1f351a, 0x193d232c, 0x2234271e, 0x011b3d1b,
0x1f293065, 0x2a03d535, 0x141e3e0a, 0x43012b01, 0xea2c0527, 0xa801f201, 0x10000800, 0x27001800, 0x200cdb53, 0x0e6f4a17, 0x49361321, 0x2621056c,
0x22a68223, 0x82073637, 0x14152dc7, 0x22060717, 0x37230727, 0x01373426, 0x3c147e4a, 0x3d0d1056, 0x0e510c0c, 0x53181a11, 0x4c9d0d7c, 0x1903211c,
0x120d220d, 0x0d0d4f79, 0x13874aab, 0x014a012a, 0x220e3c0d, 0x0903500d, 0x4d2f3083, 0x11243c13, 0x0c0d190e, 0x220d4f12, 0x6500000e, 0x41080917,
0x002f0027, 0x23352500, 0x27372726, 0x35272607, 0x07061523, 0x06170727, 0x33152307, 0x17071716, 0x15171637, 0x37363533, 0x36273717, 0x010e2737,
0x013e2307, 0x42eb0137, 0x1e2e1c06, 0x2a2f252e, 0x0782252f, 0x42061c22, 0xa928108f, 0x2b013024, 0xab364901, 0x32882198, 0x30016a27, 0x01493624,
0x2e008200, 0xff000003, 0x010002ea, 0x00160096, 0x823b001f, 0x011e2599, 0x011e1517, 0x2d05ea63, 0x013d2622, 0x35373634, 0x2217013e, 0x96820706,
0x27263425, 0x49211121, 0x3523050f, 0x18233533, 0x2a0ceae9, 0x17b50123, 0x0c09011e, 0x836b090c, 0x01240804, 0x120d161e, 0x18124001, 0x150180fe,
0x2bab2b2b, 0x18181395, 0x12800113, 0xab171318, 0x0a171e01, 0x55090c01, 0x04822883, 0x170a012e, 0x0e12151e, 0x120e0a0a, 0x2b00ffd6, 0x2507176b,
0x12181812, 0xa7880ba1, 0x01eb0129, 0x00030096, 0x8225001b, 0x211124a7, 0x6b320111, 0x1520066e, 0x2e0a8b6b, 0x1733013e, 0x27170733, 0x33273707,
0x82c00137, 0x06e44b7c, 0x6b2a9521, 0x0133058d, 0x40d51218, 0x35351434, 0x15403414, 0xff00016b, 0x6b2a0100, 0x2a300677, 0x12192b2a, 0x18120001,
0x273e2695, 0x40263e27, 0x2e0a774f, 0x001d0004, 0x15213700, 0x23253521, 0x88272317, 0x09684803, 0x017b352c, 0x01aafe30, 0x402b5580, 0x03822b2b,
0x402a2a25, 0x8212162a, 0x560128c2, 0xabeb1812, 0x845635f6, 0x09884d00, 0x88001221, 0x00802a5f, 0x0019000d, 0x26151300, 0x05c74d23, 0x33353726,
0x23151735, 0x3320d982, 0x23360982, 0x1010c035, 0x52363629, 0x16550136, 0x402a4040, 0xc6800140, 0x0f820106, 0xe0293627, 0x2b408040, 0x4f028240,
0x6b2e098f, 0x04009601, 0x00000800, 0x27071501, 0x45823735, 0x20200130, 0xd6d68b20, 0x80ea5501, 0x2a40ea80, 0x2c830700, 0x01d6013c, 0x00160054,
0x0028001f, 0x003a0031, 0x004c0043, 0x012e2500, 0x2226012f, 0x2545010f, 0x36162805, 0x37363237, 0x5a05012e, 0x11a211b1, 0xab012108, 0x172b6634,
0x16082308, 0x01013327, 0xaa062e3b, 0x02260266, 0xbefe2602, 0x130c0c0a, 0x09210c0c, 0x0a260685, 0x0b140b0b, 0x1485210b, 0x14856120, 0x06853620,
0x1b19c035, 0x12124806, 0x293b0742, 0x02013b2e, 0x101a2e14, 0x832a1911, 0x0c12223c, 0x20068541, 0x200d933f, 0x20148416, 0x063b420d, 0x01000029,
0x006b01d6, 0x8218000f, 0x130030eb, 0x011d010e, 0x32013e33, 0x35331716, 0x76272634, 0x2708087f, 0x16141507, 0x013e2117, 0x0e23013d, 0x27262201,
0x82181255, 0x2d3c2d08, 0x12188208, 0x181812ab, 0xe7181824, 0x56011218, 0x012d1687, 0x1218016b, 0x23231d6b, 0x18126b1d, 0xaa291901, 0x833f2007,
0x8218870c, 0x82042080, 0x01003503, 0x009601e2, 0x001c0017, 0x003a0032, 0x010e0100, 0x1e011f14, 0x0f330682, 0x27372701, 0x36372707, 0x16011f32,
0x17370514, 0x5e132307, 0xde480636, 0x013d2409, 0x592b2634, 0x3f080527, 0x05cf0115, 0x0809040a, 0x080d010c, 0x155a1e58, 0x0755511e, 0x06310710,
0x4fcd80fe, 0x015651cb, 0x011d2e1e, 0x0a0b0b0a, 0x0c0c096b, 0x1201401f, 0x2b01121b, 0x06090a07, 0x100e080b, 0x1b570810, 0x52313182, 0x31060651,
0xcddf1207, 0x5501cd51, 0x1e1e170b, 0x252f8217, 0x0c0c0a55, 0x3982550a, 0x13130d26, 0x0300000d, 0xcc22b384, 0xb3848001, 0xb19f2020, 0x35231536,
0x0906ba01, 0x0c090804, 0x57090c02, 0x1e165a1e, 0x11065651, 0x95219788, 0x22859daa, 0x84002a2a, 0xd5ff2273, 0x27738301, 0x00200008, 0x13000024,
0x078d6518, 0x41012f21, 0x0f25061f, 0x16140601, 0x09374117, 0x0717372d, 0x608b1c31, 0x1b8b6051, 0x8454522e, 0x0a062470, 0x88050705, 0x36af2886,
0x55013651, 0x825e8b1b, 0xe61c2122, 0x1129f985, 0x0a050c06, 0x0f08050b, 0x0510410f, 0x23820f20, 0xf3887e82, 0x2005a741, 0x5cf3a028, 0xfb9d0899,
0xaf435520, 0x1b854105, 0x2005a15c, 0x20848240, 0x29038203, 0x01cc0100, 0x0017008c, 0x83a0001c, 0x1737172a, 0x27071707, 0x27372707, 0x261c7f41,
0x1f2d2d13, 0x841f2e2e, 0x1c894105, 0x25878c20, 0x8a832b82, 0x8f840520, 0x9601eb2f, 0x0f000400, 0x2a001400, 0x00003200, 0x83aa1801, 0x42272013,
0x57331db5, 0x0114c214, 0x2608070f, 0x0707264f, 0xec550731, 0x42fbea51, 0x003313ac, 0x0113c213, 0x51270642, 0x07110629, 0xeb440631, 0x4268ed51,
0xc0281ca3, 0x09008001, 0x12000e00, 0x36209782, 0x2606865f, 0x33150517, 0x42012f37, 0x06230595, 0x82110731, 0xabfe284f, 0x584feb51, 0x842b01aa,
0x26108257, 0x51ed51b1, 0x672a2a17, 0x80200913, 0x1820e386, 0x4f83e197, 0x9f832d20, 0x07080f30, 0x06274f27, 0x54083106, 0xa7eb51ed, 0xb59301aa,
0x4f505a83, 0x33a38306, 0x00110007, 0x001f001a, 0x17013f00, 0x27372707, 0x26273707, 0x3f068d52, 0x07270703, 0x27373523, 0x07271737, 0x56d53315,
0x371d5651, 0x31c53813, 0x27070f08, 0x2b062551, 0x2406be42, 0x135313a0, 0x261c82e6, 0x37133a1e, 0x82063180, 0x05292cc2, 0x1caffe12, 0x6051608b,
0x82d71b89, 0x4200201d, 0xc02606c3, 0x09009601, 0x6f820e00, 0x41010021, 0xb5420f13, 0x0b1b410c, 0xa7429820, 0x0b1f4106, 0x2a405722, 0x23411583,
0x07074209, 0x23412020, 0x415f8a18, 0xe720122b, 0x2f416485, 0x87a82012, 0x20c3886a, 0x42c3978d, 0xc38b0df5, 0x2d2dda23, 0x4102871e, 0x4f200de9,
0x20201684, 0x2f200583, 0x29089345, 0x008b01c0, 0x000f000a, 0xcf830014, 0x250e1b54, 0x37352307, 0x6b8b2717, 0xf6417a20, 0x13fe240c, 0x8bed13c2,
0x4280206f, 0xc2200cb5, 0x9e201e82, 0x00281e8a, 0x00000200, 0xcb01f5ff, 0x152b7382, 0x00002700, 0x37170109, 0x7333011e, 0x23300513, 0x0f262722,
0x37272601, 0x15062225, 0x37171614, 0x22080a82, 0x35262736, 0x01232634, 0x1b86feaf, 0x447c3269, 0x090c0c09, 0x0a0c2428, 0xf41e252f, 0x0c098afe,
0x821e2223, 0x0409210c, 0x012a1682, 0x1c86fe8b, 0x0c302d68, 0x25824b09, 0x2f090435, 0x10f41c13, 0x6c3a090c, 0x14111e2e, 0x240c0a2f, 0x410c0928,
0x80200857, 0x2629ed82, 0x00002c00, 0x27262225, 0x27f58223, 0x3727012e, 0x012e2736, 0x2b216d82, 0x217f8201, 0xa973011e, 0x33252506, 0x26071716,
0x39089683, 0xab011716, 0x07122714, 0x2e2f0509, 0x0a2f1748, 0x0d060506, 0x0d084b08, 0x089bcc04, 0xb8fe0d0d, 0x19070320, 0x2a27010e, 0x1d1a1a27,
0x06060775, 0x2d48182f, 0x120b0a2f, 0x1e821427, 0xcc9b0823, 0x2c2d8404, 0x1a1a1de0, 0x0300ff27, 0x0107190e, 0x318f8300, 0x9401e8ff, 0x11009601,
0x39002100, 0x32130000, 0xc64e1716, 0x82918205, 0x012e2284, 0x08461817, 0x3417260e, 0x011e3736, 0x05d74d37, 0x07061422, 0x0e3a2785, 0x423e7801,
0x04451003, 0x0f263401, 0x4504044d, 0x04402a03, 0x13341353, 0x02821352, 0x53133437, 0x1f1b5912, 0x18172e15, 0x15010121, 0x161d1c01, 0x290d1a28,
0x380a8202, 0x423b4395, 0x2d280414, 0x04471902, 0x041a4604, 0x1253ae40, 0x33135312, 0x39388314, 0x15773314, 0x17020224, 0x1b1f0101, 0x11182515,
0x15020221, 0x20190102, 0x3f422219, 0x0040240a, 0x820d0009, 0x001524bf, 0x18172500, 0x2607d972, 0x23153327, 0x84152135, 0x6b013101, 0x3e2f0e34,
0x2f3e1817, 0xababe00f, 0x00ff0001, 0x29200383, 0x08707118, 0xd52a8c26, 0x002b2a2b, 0x29055757, 0x0096016c, 0x000b0003, 0xe34a0013, 0x07152405,
0x61071327, 0x033215ff, 0x17070626, 0x26343733, 0x20200127, 0x40155520, 0x03876a15, 0x12028a3c, 0x40564002, 0x2a551006, 0x0f014040, 0x0f40150f,
0x0f3e4615, 0x0f2a2b2b, 0x07834716, 0x0f822b20, 0x011e0123, 0x29128207, 0x00011301, 0xff000004, 0x334a01ea, 0x000c2805, 0x001c0010, 0x82013f00,
0x07372e7a, 0x37150715, 0x15030735, 0x15073533, 0x2f0c8517, 0xd5353735, 0x562b2b56, 0x15801556, 0x15abd696, 0x15350682, 0x2a493a24, 0x2a3a9c2a,
0x1753150d, 0x400f010f, 0x0f405540, 0x250c824f, 0x0f150f18, 0xdb830040, 0x01000025, 0x6281016c, 0x212206dd, 0x0f822500, 0x0325d7a0, 0x01352315,
0x26d89435, 0x24014035, 0x8a40160f, 0x0f3d23ce, 0xd68d2a2a, 0x40c0fe23, 0x207b8915, 0x227b8680, 0x9922001e, 0x3327277b, 0x0e272636, 0x78901301,
0x01d6a027, 0x2d3f3f2d, 0x2776988c, 0x043804de, 0xfcfe3804, 0xcb417283, 0x20738212, 0x1acb4125, 0xc8417786, 0x41768610, 0x78851bc6, 0x28055b44,
0x01d601ea, 0x000b0096, 0x20e18211, 0x0715561e, 0x17013e27, 0x15071715, 0x15581837, 0x9806230c, 0x5818d598, 0x77250c0a, 0x48141448, 0x9749185c,
0x8205200c, 0x001d2947, 0x07171300, 0x37273735, 0x3c5f4f8b, 0xd5ab250a, 0x559898d5, 0x0a954a18, 0x0bd65718, 0x5c1c0123, 0x2057825c, 0x804a18c1,
0x4db6180a, 0x0484080c, 0xe3ff0000, 0x9901ae01, 0x12000600, 0x26001900, 0x16370000, 0x26060706, 0x26372735, 0x26343536, 0x16010e07, 0x06140517,
0x3f012e27, 0x27263601, 0x1e070626, 0x3e170701, 0x0708e501, 0x09202d16, 0x2705035c, 0x06162622, 0x1f15010f, 0x0807162e, 0x25160290, 0x01012722,
0x045b0204, 0x2414c61d, 0x072e0d08, 0x23111729, 0x05451f13, 0x1f2e3f0c, 0x0c2e07e3, 0x6c142409, 0x050c3f17, 0x22141f45, 0x3d061711, 0x2e08fb6d,
0x00f000d6, 0x000f0003, 0x35210500, 0x62372521, 0x17320514, 0x01072707, 0x0156fed5, 0x3d5bfeaa, 0x3c3d1e3d, 0x02823c1e, 0x2a153d24, 0x0d823c44,
0x9f4e1086, 0x01d62209, 0x20438492, 0x49458634, 0x37350599, 0x07173717, 0x2e273437, 0x36343501, 0x17163233, 0x2f220614, 0x05e74501, 0x15011e26,
0x22230614, 0x17221883, 0x6a863632, 0x0faf2908, 0x1e0f1d1e, 0x1e1d0f1e, 0x2ef41e0f, 0x2475293b, 0x10011518, 0x0f0c0a08, 0x2129205b, 0x2e377928,
0x1f1f0b15, 0x3a2a1549, 0x28822583, 0x1f3c0283, 0x231e1713, 0x104b3916, 0x060d0914, 0x101b2b06, 0x240e141a, 0x1f312b18, 0x1505090c, 0x2008035f,
0x229f8456, 0x8624001f, 0x372722a1, 0x21a48227, 0xa2820717, 0x4c230121, 0x07200d70, 0x9187b783, 0x93866183, 0xd6360124, 0x526b1812, 0x38e82405,
0x82453326, 0x82828686, 0x25cf82ae, 0x12c01218, 0x04821919, 0x46ea1825, 0x185e472f, 0x2009eb4b, 0x207b8480, 0x3b79922f, 0x2e270717, 0x15230702,
0x33021e14, 0x16352315, 0x27013e37, 0x0e262335, 0x37270702, 0x403a8193, 0x070f151a, 0x350a1312, 0x0c140902, 0x050d1780, 0x0a350102, 0x06101113,
0x8d8e1a16, 0x065e403c, 0x040f0d1a, 0x0e08e001, 0x15150206, 0x0e030601, 0x0301e008, 0x060f190d, 0xfb41005c, 0x61012109, 0x12279b82, 0x15250000,
0x82253521, 0x0e01298c, 0x33011e01, 0x07173736, 0x6c357f85, 0x2501d812, 0x24032234, 0xd8111d1b, 0x402b6712, 0x403b75c0, 0x260f821a, 0x18022135,
0x18383c40, 0x8b08fb97, 0x17272347, 0x48842e07, 0x3f363724, 0xc7841701, 0x1267a436, 0x2a3110d8, 0x15311f08, 0x11d80218, 0xfe40c0ab, 0x14403b38,
0x2b260f82, 0x1d120f07, 0x92823b40, 0x2708df71, 0x00120096, 0x0022001e, 0x09bf4518, 0x37363426, 0x32013e35, 0x2005765a, 0x58a38315, 0x17200504,
0x3c089d6d, 0x2d2e3c01, 0x1416013c, 0x24372401, 0x19801615, 0x332e1216, 0x1c0b0816, 0x2a2a2a80, 0x05c15455, 0x102c1a2d, 0x24241caa, 0x2c10aa1c,
0x820a83a6, 0x2e12261e, 0x830b1c1a, 0x08836d55, 0x58000321, 0x962f05ab, 0x18000500, 0x00002400, 0x17072725, 0x5a072737, 0x83970566, 0x43730127,
0x1e62611e, 0x268197b7, 0x621e44bc, 0x9cab1e62, 0x092b4283, 0x79837b89, 0x7ba01720, 0x1f215c83, 0x207b9730, 0x207b84c4, 0x417ba82b, 0x00210577,
0x28f18925, 0x16323634, 0x011e1517, 0x0a754127, 0x15230525, 0x5b150133, 0x162605b1, 0x24372415, 0x71411401, 0x1501230a, 0x7141aaaa, 0x5840201d,
0xd6210853, 0x05eb4101, 0x739e1082, 0x23351722, 0x99081452, 0x2ad5257b, 0x402a4040, 0x22837d9e, 0x002e8283, 0xff000003, 0x01e501c0, 0x000d00a5,
0x83820014, 0x07060128, 0x33373617, 0x6c832335, 0x37021f29, 0x2327011f, 0x82170725, 0x231726ee, 0x17071716, 0x08018237, 0x37330735, 0x01371733,
0x1c0f0a04, 0x9a410d19, 0x972c202c, 0x471e0e20, 0xb9fe2c4f, 0x360a181c, 0x2a18112c, 0x446e1f70, 0x2c2d1c0f, 0x1c661d19, 0x1b1c4401, 0x832c281d,
0x20972d00, 0xd2475024, 0x2c181cb8, 0x6f2e362c, 0x27262382, 0x6642771c, 0x9f4a001c, 0x01962406, 0x82060080, 0x00112a89, 0x33153700, 0x07273335,
0x82798237, 0x1722088a, 0xc0211521, 0x95955580, 0x2a1a2f95, 0xd6fec41a, 0x80eb2a01, 0x59959580, 0xd580802f, 0x0000002b, 0x00820002, 0x01c80130,
0x00090073, 0x1300000c, 0x15270701, 0x41822327, 0x2715373a, 0x1e500178, 0x19566a55, 0x014cfb54, 0x1eb1fe72, 0x806b4454, 0x4c991754, 0x6d823182,
0x2007ef42, 0x53778208, 0x002c070f, 0x23353313, 0x011d0622, 0x21071733, 0x2e218482, 0x05fa7501, 0x93533720, 0x26342205, 0x3b088203, 0x013d3632,
0x15232123, 0x013b1614, 0x96552335, 0x2a181296, 0x00015580, 0x01562b40, 0x25058077, 0x2a969641, 0x18841218, 0x84aafe21, 0x6b012109, 0x2a260683,
0xaf39556b, 0x2483120d, 0x832a9821, 0x80fe211e, 0x40821d84, 0x02209383, 0x802ecb84, 0x11007001, 0x00002200, 0x0e010f01, 0xe7690702, 0x2f022206,
0x3d0a8301, 0x0e15011e, 0x27262201, 0x36373634, 0x10000137, 0x232b1011, 0x36490101, 0x01014936, 0x0e822b23, 0x10073008, 0x011d140d, 0x01304830,
0x080d141d, 0x15127001, 0x23453d14, 0x02024836, 0x45233648, 0x3115143d, 0x1e121408, 0x3024143d, 0x3d142430, 0x820a121e, 0x04200873, 0xddff0000,
0x8001eb01, 0x17000c00, 0x2f002500, 0x22010000, 0x3e270706, 0x17163201, 0x03012e07, 0x26216d82, 0x26118227, 0x36013f17, 0x832e013f, 0x1736081c,
0x1633013e, 0x3f273717, 0x07011f01, 0x00012717, 0x26286137, 0x76807630, 0x61282630, 0x160d0d22, 0x10281519, 0x0b51154d, 0x4e211c0d, 0x27214e56,
0x3a203b18, 0x154b0f26, 0x362d0806, 0x1f214001, 0x28282533, 0x211f3325, 0x2715ebfe, 0x0e010810, 0x841e660c, 0x18240403, 0x33181b1b, 0xe1011511,
0x3a04283c, 0x3c280537, 0x0daf411e, 0x2a00142d, 0x3c003300, 0x4e004500, 0x4c050000, 0x1e2e0515, 0x010e1701, 0x07222307, 0x16151617, 0xac480306,
0x37362505, 0x35262726, 0x3325bb82, 0x2e37013e, 0x08367201, 0x766f3720, 0x87332007, 0x62172008, 0x304907b7, 0x5a210807, 0x48010279, 0x010a2637,
0x1d010d02, 0x02604917, 0x0a496002, 0x0d010101, 0x2524171e, 0x61020130, 0x05c541bd, 0x06854e20, 0x120e7827, 0x12121b12, 0x2006854d, 0x06fb4815,
0x36526c28, 0x070a0248, 0x5e821410, 0x60028023, 0x2e468249, 0x03060a01, 0x1d17130f, 0x24300101, 0x427e5440, 0x5623062e, 0x88131a13, 0x86552002,
0x25f48314, 0xc6001000, 0x09840100, 0x15000122, 0x0b850782, 0x07000222, 0x0b850d82, 0x09820320, 0x23861c20, 0x0b820420, 0x0b863120, 0x0b000524,
0x0b864600, 0x17820620, 0x0b865120, 0x2b000a24, 0x0b866600, 0x13000b2a, 0x03009100, 0x09040100, 0x2a221182, 0x0b86a400, 0x0e000224, 0x0b86ce00,
0x2a000324, 0x0b86dc00, 0x2a000424, 0x0b860601, 0x16000524, 0x0b863001, 0x17820620, 0x0b864620, 0x56000a24, 0x0b867001, 0x000b2008, 0x4dc60126,
0x72657461, 0x206c6169, 0x69736544, 0x49206e67, 0x736e6f63, 0x75676552, 0x9472616c, 0x2a14941b, 0x73726556, 0x206e6f69, 0x94302e31, 0x6547241f,
0x8272656e, 0x642a0869, 0x20796220, 0x32677673, 0x20667474, 0x6d6f7266, 0x6e6f4620, 0x6c6c6574, 0x7270206f, 0x63656a6f, 0x74682e74, 0x2f3a7074,
0x1786662f, 0x6f632e2f, 0x004d006d, 0x00740061, 0x00720065, 0x24098269, 0x0020006c, 0x200d8244, 0x220d8273, 0x826e0067, 0x0049240d, 0x826f0063,
0x00732209, 0x26178252, 0x00750067, 0x8261006c, 0xa937a92d, 0x84562029, 0x207b8387, 0x247b846f, 0x002e0031, 0x20a1aa30, 0x203f8247, 0x8543846e,
0x826420d3, 0x006222bf, 0x26058279, 0x00760073, 0x82320067, 0x007422e9, 0x200f8266, 0x22c18266, 0x826d006f, 0x84462009, 0x827420dd, 0x826c2035,
0x826f20d9, 0x84702011, 0x826a201b, 0x82632011, 0x002e222f, 0x24358468, 0x003a0070, 0x2001822f, 0x222f8e66, 0x8263002e, 0x006d2211, 0x058f4500,
0x4d000021, 0x078205ff, 0x1c07028e, 0x000c0e23, 0x01020100, 0x01040103, 0x01060105, 0x01080107, 0x010a0109, 0x010c010b, 0x010e010d, 0x0110010f,
0x01120111, 0x01140113, 0x01160115, 0x01180117, 0x011a0119, 0x011c011b, 0x011e011d, 0x0120011f, 0x01220121, 0x01240123, 0x01260125, 0x01280127,
0x012a0129, 0x012c012b, 0x012e012d, 0x0130012f, 0x01320131, 0x01340133, 0x01360135, 0x01380137, 0x013a0139, 0x013c013b, 0x013e013d, 0x0140013f,
0x01420141, 0x01440143, 0x01460145, 0x01480147, 0x014a0149, 0x014c014b, 0x014e014d, 0x0150014f, 0x01520151, 0x01540153, 0x01560155, 0x01580157,
0x015a0159, 0x015c015b, 0x015e015d, 0x0160015f, 0x01620161, 0x01640163, 0x01660165, 0x01680167, 0x016a0169, 0x016c016b, 0x016e016d, 0x0170016f,
0x01720171, 0x01740173, 0x01760175, 0x01780177, 0x017a0179, 0x017c017b, 0x017e017d, 0x0180017f, 0x01820181, 0x01840183, 0x01860185, 0x01880187,
0x018a0189, 0x018c018b, 0x018e018d, 0x0190018f, 0x01920191, 0x01940193, 0x01960195, 0x01980197, 0x019a0199, 0x019c019b, 0x019e019d, 0x01a0019f,
0x01a201a1, 0x01a401a3, 0x01a601a5, 0x01a801a7, 0x01aa01a9, 0x01ac01ab, 0x01ae01ad, 0x01b001af, 0x01b201b1, 0x01b401b3, 0x01b601b5, 0x01b801b7,
0x01ba01b9, 0x01bc01bb, 0x01be01bd, 0x01c001bf, 0x01c201c1, 0x01c401c3, 0x01c601c5, 0x01c801c7, 0x01ca01c9, 0x01cc01cb, 0x01ce01cd, 0x01d001cf,
0x01d201d1, 0x01d401d3, 0x01d601d5, 0x01d801d7, 0x01da01d9, 0x01dc01db, 0x01de01dd, 0x01e001df, 0x01e201e1, 0x01e401e3, 0x01e601e5, 0x01e801e7,
0x01ea01e9, 0x01ec01eb, 0x01ee01ed, 0x01f001ef, 0x01f201f1, 0x01f401f3, 0x01f601f5, 0x01f801f7, 0x01fa01f9, 0x01fc01fb, 0x01fe01fd, 0x020002ff,
0x02020201, 0x02040203, 0x02060205, 0x02080207, 0x020a0209, 0x020c020b, 0x020e020d, 0x0210020f, 0x02120211, 0x02140213, 0x02160215, 0x02180217,
0x021a0219, 0x021c021b, 0x021e021d, 0x0220021f, 0x02220221, 0x02240223, 0x02260225, 0x02280227, 0x022a0229, 0x022c022b, 0x022e022d, 0x0230022f,
0x02320231, 0x02340233, 0x02360235, 0x02380237, 0x023a0239, 0x023c023b, 0x023e023d, 0x0240023f, 0x02420241, 0x02440243, 0x02460245, 0x02480247,
0x024a0249, 0x024c024b, 0x024e024d, 0x0250024f, 0x02520251, 0x02540253, 0x02560255, 0x02580257, 0x025a0259, 0x025c025b, 0x025e025d, 0x0260025f,
0x02620261, 0x02640263, 0x02660265, 0x02680267, 0x026a0269, 0x026c026b, 0x026e026d, 0x0270026f, 0x02720271, 0x02740273, 0x02760275, 0x02780277,
0x027a0279, 0x027c027b, 0x027e027d, 0x0280027f, 0x02820281, 0x02840283, 0x02860285, 0x02880287, 0x028a0289, 0x028c028b, 0x028e028d, 0x0290028f,
0x02920291, 0x02940293, 0x02960295, 0x02980297, 0x029a0299, 0x029c029b, 0x029e029d, 0x02a0029f, 0x02a202a1, 0x02a402a3, 0x02a602a5, 0x02a802a7,
0x02aa02a9, 0x02ac02ab, 0x02ae02ad, 0x02b002af, 0x02b202b1, 0x02b402b3, 0x02b602b5, 0x02b802b7, 0x02ba02b9, 0x02bc02bb, 0x02be02bd, 0x02c002bf,
0x02c202c1, 0x02c402c3, 0x02c602c5, 0x02c802c7, 0x02ca02c9, 0x02cc02cb, 0x02ce02cd, 0x02d002cf, 0x02d202d1, 0x02d402d3, 0x02d602d5, 0x02d802d7,
0x02da02d9, 0x02dc02db, 0x02de02dd, 0x02e002df, 0x02e202e1, 0x02e402e3, 0x02e602e5, 0x02e802e7, 0x02ea02e9, 0x02ec02eb, 0x02ee02ed, 0x02f002ef,
0x02f202f1, 0x02f402f3, 0x02f602f5, 0x02f802f7, 0x02fa02f9, 0x02fc02fb, 0x02fe02fd, 0x030003ff, 0x03020301, 0x03040303, 0x03060305, 0x03080307,
0x030a0309, 0x030c030b, 0x030e030d, 0x0310030f, 0x03120311, 0x03140313, 0x03160315, 0x03180317, 0x031a0319, 0x031c031b, 0x031e031d, 0x0320031f,
0x03220321, 0x03240323, 0x03260325, 0x03280327, 0x032a0329, 0x032c032b, 0x032e032d, 0x0330032f, 0x03320331, 0x03340333, 0x03360335, 0x03380337,
0x033a0339, 0x033c033b, 0x033e033d, 0x0340033f, 0x03420341, 0x03440343, 0x03460345, 0x03480347, 0x034a0349, 0x034c034b, 0x034e034d, 0x0350034f,
0x03520351, 0x03540353, 0x03560355, 0x03580357, 0x035a0359, 0x035c035b, 0x035e035d, 0x0360035f, 0x03620361, 0x03640363, 0x03660365, 0x03680367,
0x036a0369, 0x036c036b, 0x036e036d, 0x0370036f, 0x03720371, 0x03740373, 0x03760375, 0x03780377, 0x037a0379, 0x037c037b, 0x037e037d, 0x0380037f,
0x03820381, 0x03840383, 0x03860385, 0x03880387, 0x038a0389, 0x038c038b, 0x038e038d, 0x0390038f, 0x03920391, 0x03940393, 0x03960395, 0x03980397,
0x039a0399, 0x039c039b, 0x039e039d, 0x03a0039f, 0x03a203a1, 0x03a403a3, 0x03a603a5, 0x03a803a7, 0x03aa03a9, 0x03ac03ab, 0x03ae03ad, 0x03b003af,
0x03b203b1, 0x03b403b3, 0x03b603b5, 0x03b803b7, 0x03ba03b9, 0x03bc03bb, 0x03be03bd, 0x03c003bf, 0x03c203c1, 0x03c403c3, 0x03c603c5, 0x03c803c7,
0x03ca03c9, 0x03cc03cb, 0x03ce03cd, 0x03d003cf, 0x03d203d1, 0x03d403d3, 0x03d603d5, 0x03d803d7, 0x03da03d9, 0x03dc03db, 0x03de03dd, 0x03e003df,
0x03e203e1, 0x03e403e3, 0x03e603e5, 0x03e803e7, 0x03ea03e9, 0x03ec03eb, 0x03ee03ed, 0x03f003ef, 0x03f203f1, 0x03f403f3, 0x03f603f5, 0x03f803f7,
0x03fa03f9, 0x03fc03fb, 0x03fe03fd, 0x040004ff, 0x04020401, 0x04040403, 0x04060405, 0x04080407, 0x040a0409, 0x040c040b, 0x040e040d, 0x0410040f,
0x04120411, 0x04140413, 0x04160415, 0x04180417, 0x041a0419, 0x041c041b, 0x041e041d, 0x0420041f, 0x04220421, 0x04240423, 0x04260425, 0x04280427,
0x042a0429, 0x042c042b, 0x042e042d, 0x0430042f, 0x04320431, 0x04340433, 0x04360435, 0x04380437, 0x043a0439, 0x043c043b, 0x043e043d, 0x0440043f,
0x04420441, 0x04440443, 0x04460445, 0x04480447, 0x044a0449, 0x044c044b, 0x044e044d, 0x0450044f, 0x04520451, 0x04540453, 0x04560455, 0x04580457,
0x045a0459, 0x045c045b, 0x045e045d, 0x0460045f, 0x04620461, 0x04640463, 0x04660465, 0x04680467, 0x046a0469, 0x046c046b, 0x046e046d, 0x0470046f,
0x04720471, 0x04740473, 0x04760475, 0x04780477, 0x047a0479, 0x047c047b, 0x047e047d, 0x0480047f, 0x04820481, 0x04840483, 0x04860485, 0x04880487,
0x048a0489, 0x048c048b, 0x048e048d, 0x0490048f, 0x04920491, 0x04940493, 0x04960495, 0x04980497, 0x049a0499, 0x049c049b, 0x049e049d, 0x04a0049f,
0x04a204a1, 0x04a404a3, 0x04a604a5, 0x04a804a7, 0x04aa04a9, 0x04ac04ab, 0x04ae04ad, 0x04b004af, 0x04b204b1, 0x04b404b3, 0x04b604b5, 0x04b804b7,
0x04ba04b9, 0x04bc04bb, 0x04be04bd, 0x04c004bf, 0x04c204c1, 0x04c404c3, 0x04c604c5, 0x04c804c7, 0x04ca04c9, 0x04cc04cb, 0x04ce04cd, 0x04d004cf,
0x04d204d1, 0x04d404d3, 0x04d604d5, 0x04d804d7, 0x04da04d9, 0x04dc04db, 0x04de04dd, 0x04e004df, 0x04e204e1, 0x04e404e3, 0x04e604e5, 0x04e804e7,
0x04ea04e9, 0x04ec04eb, 0x04ee04ed, 0x04f004ef, 0x04f204f1, 0x04f404f3, 0x04f604f5, 0x04f804f7, 0x04fa04f9, 0x04fc04fb, 0x04fe04fd, 0x050005ff,
0x05020501, 0x05040503, 0x05060505, 0x05080507, 0x050a0509, 0x050c050b, 0x050e050d, 0x0510050f, 0x05120511, 0x05140513, 0x05160515, 0x05180517,
0x051a0519, 0x051c051b, 0x051e051d, 0x0520051f, 0x05220521, 0x05240523, 0x05260525, 0x05280527, 0x052a0529, 0x052c052b, 0x052e052d, 0x0530052f,
0x05320531, 0x05340533, 0x05360535, 0x05380537, 0x053a0539, 0x053c053b, 0x053e053d, 0x0540053f, 0x05420541, 0x05440543, 0x05460545, 0x05480547,
0x054a0549, 0x054c054b, 0x054e054d, 0x0550054f, 0x05520551, 0x05540553, 0x05560555, 0x05580557, 0x055a0559, 0x055c055b, 0x055e055d, 0x0560055f,
0x05620561, 0x05640563, 0x05660565, 0x05680567, 0x056a0569, 0x056c056b, 0x056e056d, 0x0570056f, 0x05720571, 0x05740573, 0x05760575, 0x05780577,
0x057a0579, 0x057c057b, 0x057e057d, 0x0580057f, 0x05820581, 0x05840583, 0x05860585, 0x05880587, 0x058a0589, 0x058c058b, 0x058e058d, 0x0590058f,
0x05920591, 0x05940593, 0x05960595, 0x05980597, 0x059a0599, 0x059c059b, 0x059e059d, 0x05a0059f, 0x05a205a1, 0x05a405a3, 0x05a605a5, 0x05a805a7,
0x05aa05a9, 0x05ac05ab, 0x05ae05ad, 0x05b005af, 0x05b205b1, 0x05b405b3, 0x05b605b5, 0x05b805b7, 0x05ba05b9, 0x05bc05bb, 0x05be05bd, 0x05c005bf,
0x05c205c1, 0x05c405c3, 0x05c605c5, 0x05c805c7, 0x05ca05c9, 0x05cc05cb, 0x05ce05cd, 0x05d005cf, 0x05d205d1, 0x05d405d3, 0x05d605d5, 0x05d805d7,
0x05da05d9, 0x05dc05db, 0x05de05dd, 0x05e005df, 0x05e205e1, 0x05e405e3, 0x05e605e5, 0x05e805e7, 0x05ea05e9, 0x05ec05eb, 0x05ee05ed, 0x05f005ef,
0x05f205f1, 0x05f405f3, 0x05f605f5, 0x05f805f7, 0x05fa05f9, 0x05fc05fb, 0x05fe05fd, 0x060006ff, 0x06020601, 0x06040603, 0x06060605, 0x06080607,
0x060a0609, 0x060c060b, 0x060e060d, 0x0610060f, 0x06120611, 0x06140613, 0x06160615, 0x06180617, 0x061a0619, 0x061c061b, 0x061e061d, 0x0620061f,
0x06220621, 0x06240623, 0x06260625, 0x06280627, 0x062a0629, 0x062c062b, 0x062e062d, 0x0630062f, 0x06320631, 0x06340633, 0x06360635, 0x06380637,
0x063a0639, 0x063c063b, 0x063e063d, 0x0640063f, 0x06420641, 0x06440643, 0x06460645, 0x06480647, 0x064a0649, 0x064c064b, 0x064e064d, 0x0650064f,
0x06520651, 0x06540653, 0x06560655, 0x06580657, 0x065a0659, 0x065c065b, 0x065e065d, 0x0660065f, 0x06620661, 0x06640663, 0x06660665, 0x06680667,
0x066a0669, 0x066c066b, 0x066e066d, 0x0670066f, 0x06720671, 0x06740673, 0x06760675, 0x06780677, 0x067a0679, 0x067c067b, 0x067e067d, 0x0680067f,
0x06820681, 0x06840683, 0x06860685, 0x06880687, 0x068a0689, 0x068c068b, 0x068e068d, 0x0690068f, 0x06920691, 0x06940693, 0x06960695, 0x06980697,
0x069a0699, 0x069c069b, 0x069e069d, 0x06a0069f, 0x06a206a1, 0x06a406a3, 0x06a606a5, 0x06a806a7, 0x06aa06a9, 0x06ac06ab, 0x06ae06ad, 0x06b006af,
0x06b206b1, 0x06b406b3, 0x06b606b5, 0x06b806b7, 0x06ba06b9, 0x06bc06bb, 0x06be06bd, 0x06c006bf, 0x06c206c1, 0x06c406c3, 0x06c606c5, 0x06c806c7,
0x06ca06c9, 0x06cc06cb, 0x06ce06cd, 0x06d006cf, 0x06d206d1, 0x06d406d3, 0x06d606d5, 0x06d806d7, 0x06da06d9, 0x06dc06db, 0x06de06dd, 0x06e006df,
0x06e206e1, 0x06e406e3, 0x06e606e5, 0x06e806e7, 0x06ea06e9, 0x06ec06eb, 0x06ee06ed, 0x06f006ef, 0x06f206f1, 0x06f406f3, 0x06f606f5, 0x06f806f7,
0x06fa06f9, 0x06fc06fb, 0x06fe06fd, 0x070007ff, 0x07020701, 0x07040703, 0x07060705, 0x07080707, 0x070a0709, 0x070c070b, 0x070e070d, 0x0710070f,
0x07120711, 0x07140713, 0x07160715, 0x07180717, 0x071a0719, 0x071c071b, 0x071e071d, 0x0720071f, 0x07220721, 0x07240723, 0x07260725, 0x07280727,
0x072a0729, 0x072c072b, 0x072e072d, 0x0730072f, 0x07320731, 0x07340733, 0x07360735, 0x07380737, 0x073a0739, 0x073c073b, 0x073e073d, 0x0740073f,
0x07420741, 0x07440743, 0x07460745, 0x07480747, 0x074a0749, 0x074c074b, 0x074e074d, 0x0750074f, 0x07520751, 0x07540753, 0x07560755, 0x07580757,
0x075a0759, 0x075c075b, 0x075e075d, 0x0760075f, 0x07620761, 0x07640763, 0x07660765, 0x07680767, 0x076a0769, 0x076c076b, 0x076e076d, 0x0770076f,
0x07720771, 0x07740773, 0x07760775, 0x07780777, 0x077a0779, 0x077c077b, 0x077e077d, 0x0780077f, 0x07820781, 0x07840783, 0x07860785, 0x07880787,
0x078a0789, 0x078c078b, 0x078e078d, 0x0790078f, 0x07920791, 0x07940793, 0x07960795, 0x07980797, 0x079a0799, 0x079c079b, 0x079e079d, 0x07a0079f,
0x07a207a1, 0x07a407a3, 0x07a607a5, 0x07a807a7, 0x07aa07a9, 0x07ac07ab, 0x07ae07ad, 0x07b007af, 0x07b207b1, 0x07b407b3, 0x07b607b5, 0x07b807b7,
0x07ba07b9, 0x07bc07bb, 0x07be07bd, 0x07c007bf, 0x07c207c1, 0x07c407c3, 0x07c607c5, 0x07c807c7, 0x07ca07c9, 0x07cc07cb, 0x07ce07cd, 0x07d007cf,
0x07d207d1, 0x07d407d3, 0x07d607d5, 0x07d807d7, 0x07da07d9, 0x07dc07db, 0x07de07dd, 0x07e007df, 0x07e207e1, 0x07e407e3, 0x07e607e5, 0x07e807e7,
0x07ea07e9, 0x07ec07eb, 0x07ee07ed, 0x07f007ef, 0x07f207f1, 0x07f407f3, 0x07f607f5, 0x07f807f7, 0x07fa07f9, 0x07fc07fb, 0x07fe07fd, 0x080008ff,
0x08020801, 0x08040803, 0x08060805, 0x08080807, 0x080a0809, 0x080c080b, 0x080e080d, 0x0810080f, 0x08120811, 0x08140813, 0x08160815, 0x08180817,
0x081a0819, 0x081c081b, 0x081e081d, 0x0820081f, 0x08220821, 0x08240823, 0x08260825, 0x08280827, 0x082a0829, 0x082c082b, 0x082e082d, 0x0830082f,
0x08320831, 0x08340833, 0x08360835, 0x08380837, 0x083a0839, 0x083c083b, 0x083e083d, 0x0840083f, 0x08420841, 0x08440843, 0x08460845, 0x08480847,
0x084a0849, 0x084c084b, 0x084e084d, 0x0850084f, 0x08520851, 0x08540853, 0x08560855, 0x08580857, 0x085a0859, 0x085c085b, 0x085e085d, 0x0860085f,
0x08620861, 0x08640863, 0x08660865, 0x08680867, 0x086a0869, 0x086c086b, 0x086e086d, 0x0870086f, 0x08720871, 0x08740873, 0x08760875, 0x08780877,
0x087a0879, 0x087c087b, 0x087e087d, 0x0880087f, 0x08820881, 0x08840883, 0x08860885, 0x08880887, 0x088a0889, 0x088c088b, 0x088e088d, 0x0890088f,
0x08920891, 0x08940893, 0x08960895, 0x08980897, 0x089a0899, 0x089c089b, 0x089e089d, 0x08a0089f, 0x08a208a1, 0x08a408a3, 0x08a608a5, 0x08a808a7,
0x08aa08a9, 0x08ac08ab, 0x08ae08ad, 0x08b008af, 0x08b208b1, 0x08b408b3, 0x08b608b5, 0x08b808b7, 0x08ba08b9, 0x08bc08bb, 0x08be08bd, 0x08c008bf,
0x08c208c1, 0x08c408c3, 0x08c608c5, 0x08c808c7, 0x08ca08c9, 0x08cc08cb, 0x08ce08cd, 0x08d008cf, 0x08d208d1, 0x08d408d3, 0x08d608d5, 0x08d808d7,
0x08da08d9, 0x08dc08db, 0x08de08dd, 0x08e008df, 0x08e208e1, 0x08e408e3, 0x08e608e5, 0x08e808e7, 0x08ea08e9, 0x08ec08eb, 0x08ee08ed, 0x08f008ef,
0x08f208f1, 0x08f408f3, 0x08f608f5, 0x08f808f7, 0x08fa08f9, 0x08fc08fb, 0x08fe08fd, 0x090009ff, 0x09020901, 0x09040903, 0x09060905, 0x09080907,
0x090a0909, 0x090c090b, 0x090e090d, 0x0910090f, 0x09120911, 0x09140913, 0x09160915, 0x09180917, 0x091a0919, 0x091c091b, 0x091e091d, 0x0920091f,
0x09220921, 0x09240923, 0x09260925, 0x09280927, 0x092a0929, 0x092c092b, 0x092e092d, 0x0930092f, 0x09320931, 0x09340933, 0x09360935, 0x09380937,
0x093a0939, 0x093c093b, 0x093e093d, 0x0940093f, 0x09420941, 0x09440943, 0x09460945, 0x09480947, 0x094a0949, 0x094c094b, 0x094e094d, 0x0950094f,
0x09520951, 0x09540953, 0x09560955, 0x09580957, 0x095a0959, 0x095c095b, 0x095e095d, 0x0960095f, 0x09620961, 0x09640963, 0x09660965, 0x09680967,
0x096a0969, 0x096c096b, 0x096e096d, 0x0970096f, 0x09720971, 0x09740973, 0x09760975, 0x09780977, 0x097a0979, 0x097c097b, 0x097e097d, 0x0980097f,
0x09820981, 0x09840983, 0x09860985, 0x09880987, 0x098a0989, 0x098c098b, 0x098e098d, 0x0990098f, 0x09920991, 0x09940993, 0x09960995, 0x09980997,
0x099a0999, 0x099c099b, 0x099e099d, 0x09a0099f, 0x09a209a1, 0x09a409a3, 0x09a609a5, 0x09a809a7, 0x09aa09a9, 0x09ac09ab, 0x09ae09ad, 0x09b009af,
0x09b209b1, 0x09b409b3, 0x09b609b5, 0x09b809b7, 0x09ba09b9, 0x09bc09bb, 0x09be09bd, 0x09c009bf, 0x09c209c1, 0x09c409c3, 0x09c609c5, 0x09c809c7,
0x09ca09c9, 0x09cc09cb, 0x09ce09cd, 0x09d009cf, 0x09d209d1, 0x09d409d3, 0x09d609d5, 0x09d809d7, 0x09da09d9, 0x09dc09db, 0x09de09dd, 0x09e009df,
0x09e209e1, 0x09e409e3, 0x09e609e5, 0x09e809e7, 0x09ea09e9, 0x09ec09eb, 0x09ee09ed, 0x09f009ef, 0x09f209f1, 0x09f409f3, 0x09f609f5, 0x09f809f7,
0x09fa09f9, 0x09fc09fb, 0x09fe09fd, 0x0a000aff, 0x0a020a01, 0x0a040a03, 0x0a060a05, 0x0a080a07, 0x0a0a0a09, 0x0a0c0a0b, 0x0a0e0a0d, 0x0a100a0f,
0x0a120a11, 0x0a140a13, 0x0a160a15, 0x0a180a17, 0x0a1a0a19, 0x0a1c0a1b, 0x0a1e0a1d, 0x0a200a1f, 0x0a220a21, 0x0a240a23, 0x0a260a25, 0x0a280a27,
0x0a2a0a29, 0x0a2c0a2b, 0x0a2e0a2d, 0x0a300a2f, 0x0a320a31, 0x0a340a33, 0x0a360a35, 0x0a380a37, 0x0a3a0a39, 0x0a3c0a3b, 0x0a3e0a3d, 0x0a400a3f,
0x0a420a41, 0x0a440a43, 0x0a460a45, 0x0a480a47, 0x0a4a0a49, 0x0a4c0a4b, 0x0a4e0a4d, 0x0a500a4f, 0x0a520a51, 0x0a540a53, 0x0a560a55, 0x0a580a57,
0x0a5a0a59, 0x0a5c0a5b, 0x0a5e0a5d, 0x0a600a5f, 0x0a620a61, 0x0a640a63, 0x0a660a65, 0x0a680a67, 0x0a6a0a69, 0x0a6c0a6b, 0x0a6e0a6d, 0x0a700a6f,
0x0a720a71, 0x0a740a73, 0x0a760a75, 0x0a780a77, 0x0a7a0a79, 0x0a7c0a7b, 0x0a7e0a7d, 0x0a800a7f, 0x0a820a81, 0x0a840a83, 0x0a860a85, 0x0a880a87,
0x0a8a0a89, 0x0a8c0a8b, 0x0a8e0a8d, 0x0a900a8f, 0x0a920a91, 0x0a940a93, 0x0a960a95, 0x0a980a97, 0x0a9a0a99, 0x0a9c0a9b, 0x0a9e0a9d, 0x0aa00a9f,
0x0aa20aa1, 0x0aa40aa3, 0x0aa60aa5, 0x0aa80aa7, 0x0aaa0aa9, 0x0aac0aab, 0x0aae0aad, 0x0ab00aaf, 0x0ab20ab1, 0x0ab40ab3, 0x0ab60ab5, 0x0ab80ab7,
0x0aba0ab9, 0x0abc0abb, 0x0abe0abd, 0x0ac00abf, 0x0ac20ac1, 0x0ac40ac3, 0x0ac60ac5, 0x0ac80ac7, 0x0aca0ac9, 0x0acc0acb, 0x0ace0acd, 0x0ad00acf,
0x0ad20ad1, 0x0ad40ad3, 0x0ad60ad5, 0x0ad80ad7, 0x0ada0ad9, 0x0adc0adb, 0x0ade0add, 0x0ae00adf, 0x0ae20ae1, 0x0ae40ae3, 0x0ae60ae5, 0x0ae80ae7,
0x0aea0ae9, 0x0aec0aeb, 0x0aee0aed, 0x0af00aef, 0x0af20af1, 0x0af40af3, 0x0af60af5, 0x0af80af7, 0x0afa0af9, 0x0afc0afb, 0x0afe0afd, 0x0b000bff,
0x0b020b01, 0x0b040b03, 0x0b060b05, 0x0b080b07, 0x0b0a0b09, 0x0b0c0b0b, 0x0b0e0b0d, 0x0b100b0f, 0x0b120b11, 0x0b140b13, 0x0b160b15, 0x0b180b17,
0x0b1a0b19, 0x0b1c0b1b, 0x0b1e0b1d, 0x0b200b1f, 0x0b220b21, 0x0b240b23, 0x0b260b25, 0x0b280b27, 0x0b2a0b29, 0x0b2c0b2b, 0x0b2e0b2d, 0x0b300b2f,
0x0b320b31, 0x0b340b33, 0x0b360b35, 0x0b380b37, 0x0b3a0b39, 0x0b3c0b3b, 0x0b3e0b3d, 0x0b400b3f, 0x0b420b41, 0x0b440b43, 0x0b460b45, 0x0b480b47,
0x0b4a0b49, 0x0b4c0b4b, 0x0b4e0b4d, 0x0b500b4f, 0x0b520b51, 0x0b540b53, 0x0b560b55, 0x0b580b57, 0x0b5a0b59, 0x0b5c0b5b, 0x0b5e0b5d, 0x0b600b5f,
0x0b620b61, 0x0b640b63, 0x0b660b65, 0x0b680b67, 0x0b6a0b69, 0x0b6c0b6b, 0x0b6e0b6d, 0x0b700b6f, 0x0b720b71, 0x0b740b73, 0x0b760b75, 0x0b780b77,
0x0b7a0b79, 0x0b7c0b7b, 0x0b7e0b7d, 0x0b800b7f, 0x0b820b81, 0x0b840b83, 0x0b860b85, 0x0b880b87, 0x0b8a0b89, 0x0b8c0b8b, 0x0b8e0b8d, 0x0b900b8f,
0x0b920b91, 0x0b940b93, 0x0b960b95, 0x0b980b97, 0x0b9a0b99, 0x0b9c0b9b, 0x0b9e0b9d, 0x0ba00b9f, 0x0ba20ba1, 0x0ba40ba3, 0x0ba60ba5, 0x0ba80ba7,
0x0baa0ba9, 0x0bac0bab, 0x0bae0bad, 0x0bb00baf, 0x0bb20bb1, 0x0bb40bb3, 0x0bb60bb5, 0x0bb80bb7, 0x0bba0bb9, 0x0bbc0bbb, 0x0bbe0bbd, 0x0bc00bbf,
0x0bc20bc1, 0x0bc40bc3, 0x0bc60bc5, 0x0bc80bc7, 0x0bca0bc9, 0x0bcc0bcb, 0x0bce0bcd, 0x0bd00bcf, 0x0bd20bd1, 0x0bd40bd3, 0x0bd60bd5, 0x0bd80bd7,
0x0bda0bd9, 0x0bdc0bdb, 0x0bde0bdd, 0x0be00bdf, 0x0be20be1, 0x0be40be3, 0x0be60be5, 0x0be80be7, 0x0bea0be9, 0x0bec0beb, 0x0bee0bed, 0x0bf00bef,
0x0bf20bf1, 0x0bf40bf3, 0x0bf60bf5, 0x0bf80bf7, 0x0bfa0bf9, 0x0bfc0bfb, 0x0bfe0bfd, 0x0c000cff, 0x0c020c01, 0x0c040c03, 0x0c060c05, 0x0c080c07,
0x0c0a0c09, 0x0c0c0c0b, 0x0c0e0c0d, 0x0c100c0f, 0x0c120c11, 0x0c140c13, 0x0c160c15, 0x0c180c17, 0x0c1a0c19, 0x0c1c0c1b, 0x0c1e0c1d, 0x0c200c1f,
0x0c220c21, 0x0c240c23, 0x0c260c25, 0x0c280c27, 0x0c2a0c29, 0x0c2c0c2b, 0x0c2e0c2d, 0x0c300c2f, 0x0c320c31, 0x0c340c33, 0x0c360c35, 0x0c380c37,
0x0c3a0c39, 0x0c3c0c3b, 0x0c3e0c3d, 0x0c400c3f, 0x0c420c41, 0x0c440c43, 0x0c460c45, 0x0c480c47, 0x0c4a0c49, 0x0c4c0c4b, 0x0c4e0c4d, 0x0c500c4f,
0x0c520c51, 0x0c540c53, 0x0c560c55, 0x0c580c57, 0x0c5a0c59, 0x0c5c0c5b, 0x0c5e0c5d, 0x0c600c5f, 0x0c620c61, 0x0c640c63, 0x0c660c65, 0x0c680c67,
0x0c6a0c69, 0x0c6c0c6b, 0x0c6e0c6d, 0x0c700c6f, 0x0c720c71, 0x0c740c73, 0x0c760c75, 0x0c780c77, 0x0c7a0c79, 0x0c7c0c7b, 0x0c7e0c7d, 0x0c800c7f,
0x0c820c81, 0x0c840c83, 0x0c860c85, 0x0c880c87, 0x0c8a0c89, 0x0c8c0c8b, 0x0c8e0c8d, 0x0c900c8f, 0x0c920c91, 0x0c940c93, 0x0c960c95, 0x0c980c97,
0x0c9a0c99, 0x0c9c0c9b, 0x0c9e0c9d, 0x0ca00c9f, 0x0ca20ca1, 0x0ca40ca3, 0x0ca60ca5, 0x0ca80ca7, 0x0caa0ca9, 0x0cac0cab, 0x0cae0cad, 0x0cb00caf,
0x0cb20cb1, 0x0cb40cb3, 0x0cb60cb5, 0x0cb80cb7, 0x0cba0cb9, 0x0cbc0cbb, 0x0cbe0cbd, 0x0cc00cbf, 0x0cc20cc1, 0x0cc40cc3, 0x0cc60cc5, 0x0cc80cc7,
0x0cca0cc9, 0x0ccc0ccb, 0x0cce0ccd, 0x0cd00ccf, 0x0cd20cd1, 0x0cd40cd3, 0x0cd60cd5, 0x0cd80cd7, 0x0cda0cd9, 0x0cdc0cdb, 0x0cde0cdd, 0x0ce00cdf,
0x0ce20ce1, 0x0ce40ce3, 0x0ce60ce5, 0x0ce80ce7, 0x0cea0ce9, 0x0cec0ceb, 0x0cee0ced, 0x0cf00cef, 0x0cf20cf1, 0x0cf40cf3, 0x0cf60cf5, 0x0cf80cf7,
0x0cfa0cf9, 0x0cfc0cfb, 0x0cfe0cfd, 0x0d000dff, 0x0d020d01, 0x0d040d03, 0x0d060d05, 0x0d080d07, 0x0d0a0d09, 0x0d0c0d0b, 0x0d0e0d0d, 0x0d100d0f,
0x0d120d11, 0x0d140d13, 0x0d160d15, 0x0d180d17, 0x0d1a0d19, 0x0d1c0d1b, 0x0d1e0d1d, 0x0d200d1f, 0x0d220d21, 0x0d240d23, 0x0d260d25, 0x0d280d27,
0x0d2a0d29, 0x0d2c0d2b, 0x0d2e0d2d, 0x0d300d2f, 0x0d320d31, 0x0d340d33, 0x0d360d35, 0x0d380d37, 0x0d3a0d39, 0x0d3c0d3b, 0x0d3e0d3d, 0x0d400d3f,
0x0d420d41, 0x0d440d43, 0x0d460d45, 0x0d480d47, 0x0d4a0d49, 0x0d4c0d4b, 0x0d4e0d4d, 0x0d500d4f, 0x0d520d51, 0x0d540d53, 0x0d560d55, 0x0d580d57,
0x0d5a0d59, 0x0d5c0d5b, 0x0d5e0d5d, 0x0d600d5f, 0x0d620d61, 0x0d640d63, 0x0d660d65, 0x0d680d67, 0x0d6a0d69, 0x0d6c0d6b, 0x0d6e0d6d, 0x0d700d6f,
0x0d720d71, 0x0d740d73, 0x0d760d75, 0x0d780d77, 0x0d7a0d79, 0x0d7c0d7b, 0x0d7e0d7d, 0x0d800d7f, 0x0d820d81, 0x0d840d83, 0x0d860d85, 0x0d880d87,
0x0d8a0d89, 0x0d8c0d8b, 0x0d8e0d8d, 0x0d900d8f, 0x0d920d91, 0x0d940d93, 0x0d960d95, 0x0d980d97, 0x0d9a0d99, 0x0d9c0d9b, 0x0d9e0d9d, 0x0da00d9f,
0x0da20da1, 0x0da40da3, 0x0da60da5, 0x0da80da7, 0x0daa0da9, 0x0dac0dab, 0x0dae0dad, 0x0db00daf, 0x0db20db1, 0x0db40db3, 0x0db60db5, 0x0db80db7,
0x0dba0db9, 0x0dbc0dbb, 0x0dbe0dbd, 0x0dc00dbf, 0x0dc20dc1, 0x0dc40dc3, 0x0dc60dc5, 0x0dc80dc7, 0x0dca0dc9, 0x0dcc0dcb, 0x0dce0dcd, 0x0dd00dcf,
0x0dd20dd1, 0x0dd40dd3, 0x0dd60dd5, 0x0dd80dd7, 0x0dda0dd9, 0x0ddc0ddb, 0x0dde0ddd, 0x0de00ddf, 0x0de20de1, 0x0de40de3, 0x0de60de5, 0x0de80de7,
0x0dea0de9, 0x0dec0deb, 0x0dee0ded, 0x0df00def, 0x0df20df1, 0x0df40df3, 0x0df60df5, 0x0df80df7, 0x0dfa0df9, 0x0dfc0dfb, 0x0dfe0dfd, 0x0e000eff,
0x0e020e01, 0x0e040e03, 0x0e060e05, 0x0e080e07, 0x0e0a0e09, 0x0e0c0e0b, 0x0e0e0e0d, 0x0e100e0f, 0x0e120e11, 0x0e140e13, 0x0e160e15, 0x0e180e17,
0x0e1a0e19, 0x0e1c0e1b, 0x0e1e0e1d, 0x0e200e1f, 0x0e220e21, 0x0e240e23, 0x0e260e25, 0x0e280e27, 0x0e2a0e29, 0x0e2c0e2b, 0x0e2e0e2d, 0x0e300e2f,
0x0e320e31, 0x0e340e33, 0x0e360e35, 0x0e380e37, 0x0e3a0e39, 0x0e3c0e3b, 0x0e3e0e3d, 0x0e400e3f, 0x0e420e41, 0x0e440e43, 0x0e460e45, 0x0e480e47,
0x0e4a0e49, 0x0e4c0e4b, 0x0e4e0e4d, 0x0e500e4f, 0x0e520e51, 0x0e540e53, 0x0e560e55, 0x0e580e57, 0x0e5a0e59, 0x0e5c0e5b, 0x0e5e0e5d, 0x0e600e5f,
0x0e620e61, 0x0e640e63, 0x0e660e65, 0x0e680e67, 0x0e6a0e69, 0x0e6c0e6b, 0x0e6e0e6d, 0x0e700e6f, 0x0e720e71, 0x0e740e73, 0x0e760e75, 0x0e780e77,
0x0e7a0e79, 0x0e7c0e7b, 0x0e7e0e7d, 0x0e800e7f, 0x0e820e81, 0x0e840e83, 0x0e860e85, 0x0e880e87, 0x0e8a0e89, 0x0e8c0e8b, 0x0e8e0e8d, 0x0e900e8f,
0x0e920e91, 0x0e940e93, 0x0e960e95, 0x0e980e97, 0x0e9a0e99, 0x0e9c0e9b, 0x0e9e0e9d, 0x0ea00e9f, 0x0ea20ea1, 0x0ea40ea3, 0x0ea60ea5, 0x0ea80ea7,
0x0eaa0ea9, 0x0eac0eab, 0x0eae0ead, 0x0eb00eaf, 0x0eb20eb1, 0x0eb40eb3, 0x0eb60eb5, 0x0eb80eb7, 0x0eba0eb9, 0x0ebc0ebb, 0x0ebe0ebd, 0x0ec00ebf,
0x0ec20ec1, 0x0ec40ec3, 0x0ec60ec5, 0x0ec80ec7, 0x0eca0ec9, 0x0ecc0ecb, 0x0ece0ecd, 0x0ed00ecf, 0x0ed20ed1, 0x0ed40ed3, 0x0ed60ed5, 0x0ed80ed7,
0x0eda0ed9, 0x0edc0edb, 0x0ede0edd, 0x0ee00edf, 0x0ee20ee1, 0x0ee40ee3, 0x0ee60ee5, 0x0ee80ee7, 0x0eea0ee9, 0x0eec0eeb, 0x0eee0eed, 0x0ef00eef,
0x0ef20ef1, 0x0ef40ef3, 0x0ef60ef5, 0x0ef80ef7, 0x0efa0ef9, 0x0efc0efb, 0x0efe0efd, 0x0f000fff, 0x0f020f01, 0x0f040f03, 0x0f060f05, 0x0f080f07,
0x0f0a0f09, 0x090c0f0b, 0x656d756e, 0x2d636972, 0x20098830, 0x20098831, 0x20098832, 0x20098833, 0x20098834, 0x20098835, 0x20098836, 0x20098837,
0x28098838, 0x6c610739, 0x2d616870, 0x20078661, 0x20078662, 0x20078663, 0x20078664, 0x20078665, 0x20078666, 0x20078667, 0x20078668, 0x20078669,
0x2007866a, 0x2007866b, 0x2007866c, 0x2007866d, 0x2007866e, 0x2007866f, 0x20078670, 0x20078671, 0x20078672, 0x20078673, 0x20078674, 0x20078675,
0x20078676, 0x20078677, 0x20078678, 0x3c078679, 0x65760d7a, 0x726f7463, 0x7571732d, 0x0c657261, 0x65636361, 0x702d7373, 0x746e696f, 0x260c8b14,
0x74656e2d, 0x82726f77, 0x636326a7, 0x746e756f, 0x831c820d, 0x612d2607, 0x7472656c, 0x230d870b, 0x13786f62, 0x2d270b8a, 0x6c74756f, 0x88656e69,
0x6863252d, 0x0e6b6365, 0x63262187, 0x6c637269, 0x0e880f65, 0x766e6f22, 0x6b2b4c8b, 0x740f7965, 0x746c6f6f, 0x862d7069, 0x25488823, 0x756e696d,
0x15861073, 0x756d2d22, 0x6c222483, 0x108f1865, 0x15208087, 0x70231890, 0x8873756c, 0x88dc8679, 0x666f22c6, 0x861b8866, 0x870c20c2, 0x88388341,
0x657225c1, 0x65766f6d, 0x73250e88, 0x63726165, 0x292a8868, 0x72617473, 0x62726f05, 0x21897469, 0x7469773c, 0x61066863, 0x73756a64, 0x69610f74,
0x6f632d72, 0x7469646e, 0x656e6f69, 0x0f820a72, 0x6c616227, 0x6e6f6f6c, 0x250a8208, 0x6e616c70, 0x08870c65, 0x666f2d24, 0x0c850766, 0x61057927,
0x6d72616c, 0x2005840b, 0x0653412d, 0x08411183, 0x85092008, 0x2032821a, 0x8309850a, 0x223582b5, 0x826d7562, 0x72652205, 0x82208274, 0x622d2605,
0x610c786f, 0x4109836c, 0x0d20058b, 0x6f260c85, 0x67617463, 0x0d876e6f, 0x8205c441, 0x68702238, 0x822e8261, 0x65622e05, 0x61636974, 0x6d61066c,
0x6e6f7a61, 0x2a06850c, 0x6972642d, 0x61096576, 0x8275626d, 0x836320b9, 0x6c703609, 0x65696669, 0x6e610672, 0x726f6863, 0x646e6107, 0x64696f72,
0x2d078614, 0x6265642d, 0x622d6775, 0x67646972, 0x14870e65, 0x7574732a, 0x056f6964, 0x6c707061, 0x0583fd82, 0x69662d27, 0x7265646e, 0x24128409,
0x736f692d, 0x2409860c, 0x756f6c63, 0x330c8664, 0x61666173, 0x660c6972, 0x2d746e6f, 0x73657761, 0x04656d6f, 0x73252682, 0x63726107, 0x27978268,
0x72726115, 0x65676e61, 0x6e2a6e83, 0x6f662d67, 0x72617772, 0x158d1664, 0x2d6f7424, 0x41827266, 0x73282c88, 0x2d646e65, 0x6b636162, 0x14202c83,
0x15842c87, 0x18832b82, 0x14820920, 0x2d776f26, 0x116c6c61, 0x622b0985, 0x6f74746f, 0x656c2d6d, 0x8c127466, 0x69722311, 0x12876867, 0x6c6f6327,
0x7370616c, 0x20378365, 0x2425850a, 0x6e776f64, 0x260a8910, 0x6968742d, 0x8a166b63, 0x6f622410, 0x412d646c, 0x1e2005a7, 0xee421695, 0x8f1f2007,
0x6568261e, 0x6f676178, 0x8b1f876e, 0x72642355, 0x5592706f, 0x3587168a, 0x65259c86, 0x6e617078, 0x83b88a64, 0x831b86e9, 0x84b88c0a, 0x8fb89110,
0x89b88e16, 0x84b8951e, 0x8fb8911f, 0x20558716, 0x050e410b, 0x67697224, 0xa4417468, 0x850b8406, 0x8a1720a9, 0x8a2d201d, 0x064441aa, 0x178a2985,
0x20205587, 0xac8e3790, 0xad8a588c, 0x6741588c, 0x850e2012, 0x6f742358, 0xd1832d70, 0x0e890f20, 0x08208b84, 0x75210f85, 0x21278670, 0xc7857075,
0x17871420, 0x1c20c48b, 0xc1871493, 0x1c8d1d20, 0x4f89be8e, 0x4f89a38a, 0x2b08b892, 0x73736109, 0x61747369, 0x6102746e, 0x74610a74, 0x68636174,
0x746e656d, 0x64756109, 0x6f626f69, 0x61086b6f, 0x2d6f7475, 0x0b786966, 0x75260884, 0x616f6c70, 0x0b830964, 0x6e65723e, 0x61087765, 0x69742d76,
0x0472656d, 0x79626162, 0x6361620a, 0x7275626b, 0x09726567, 0x73250a83, 0x65636170, 0x8209830e, 0x657226f2, 0x726f7473, 0x2a288265, 0x62076b6e,
0x6f637261, 0x860c6564, 0x732d2507, 0x066e6163, 0x6c220c82, 0x06837965, 0x6c65722b, 0x73616208, 0x6d616365, 0x240f8270, 0x74656b73, 0x820f820b,
0x228a8206, 0x860d6c6c, 0x6e75250b, 0x6c6c6966, 0x74234c82, 0x83726574, 0x2507847d, 0x0a30312d, 0x0a856162, 0x0a893220, 0x0a893320, 0x0a893420,
0x0a893520, 0x0a893620, 0x0a893720, 0x0a893820, 0x82303921, 0x25578578, 0x72656c61, 0x65871074, 0x61686328, 0x6e696772, 0x108f1467, 0x30218a82,
0x20149013, 0x20139232, 0x20139233, 0x20139234, 0x20139236, 0x8a139238, 0x057947ab, 0x6e288587, 0x74616765, 0x0f657669, 0x2e471087, 0x230f8707,
0x73756c70, 0x7023d988, 0x8c69736f, 0x6e75332d, 0x776f6e6b, 0x6562056e, 0x05686361, 0x73616c66, 0x05840b6b, 0x6d652d26, 0x13797470, 0x4b480b8a,
0x86138508, 0x2e398367, 0x62047374, 0x07726565, 0x61686562, 0x8265636e, 0x6c6c2b0c, 0x6c656208, 0x666f2d6c, 0x08850c66, 0x2005c246, 0x830c8409,
0x24098592, 0x676e6972, 0x83138411, 0x20618709, 0x2411840a, 0x65656c73, 0x264b8270, 0x62056174, 0x826c6269, 0x6b692156, 0x6e310483, 0x69620a67,
0x75636f6e, 0x7372616c, 0x6f696203, 0x25038209, 0x617a6168, 0x09826472, 0x75627431, 0x74656b63, 0x616c620a, 0x6d2d6b63, 0x85617365, 0x6562250a,
0x10797272, 0x6e374682, 0x2d726564, 0x74666f73, 0x65726177, 0x696c6206, 0x0c73646e, 0x826f6c62, 0x6568232d, 0xc683706c, 0x676f6c30, 0x09726567,
0x65756c62, 0x746f6f74, 0x09880f68, 0x75612d26, 0x116f6964, 0x63270f89, 0x656e6e6f, 0x890d7463, 0x20f28211, 0x230d8912, 0x74746573, 0x7320e382,
0x7428128a, 0x736e6172, 0x04726566, 0x72212582, 0x2004830b, 0x2384822d, 0x08726165, 0x6f220b84, 0x14856666, 0x64617229, 0x046c6169, 0x826e6f62,
0x6f6f24f5, 0x82620d6b, 0x08604804, 0x0d8c1520, 0x61762d28, 0x6e616972, 0x15840974, 0x65706f24, 0x0988116e, 0x0c201b87, 0x28861184, 0x0c830820,
0x72616d24, 0x08870e6b, 0x8806c648, 0x756d250e, 0x10636973, 0xee410e88, 0x83768406, 0x702d2437, 0x4273756c, 0x26880812, 0x0f201583, 0x9d490d88,
0x620a2b05, 0x6564726f, 0x6c612d72, 0x0a860d6c, 0x2005a247, 0x240d860c, 0x6f6c6f63, 0x84b08272, 0x6f682825, 0x6f7a6972, 0x8861746e, 0x6e69262c,
0x65646973, 0x232c860b, 0x7466656c, 0x6e240b87, 0x0e656e6f, 0xa0821786, 0x53872683, 0x67697224, 0x0c877468, 0x79747324, 0x8687656c, 0x706f7423,
0x3333860f, 0x74726576, 0x6c616369, 0x776f6207, 0x676e696c, 0x786f6203, 0x78322682, 0x7475632d, 0x09726574, 0x65697262, 0x73616366, 0x09880f65,
0x20052641, 0x280f8912, 0x6e776f64, 0x64616f6c, 0x45128910, 0x0c200555, 0x83821082, 0x73656e25, 0x8b312d73, 0x8b32200c, 0x8b33200c, 0x8b34200c,
0x8b35200c, 0x8b36200c, 0x8337200c, 0x295a878e, 0x6f747561, 0x6f726205, 0x05826d6f, 0x68737536, 0x67756203, 0x6c75620e, 0x6974656c, 0x6f622d6e,
0x08647261, 0x68230e83, 0x826e726f, 0x06732d1b, 0x68636163, 0x63046465, 0x0c656b61, 0x2d270483, 0x6579616c, 0x85646572, 0x061f420c, 0x61630a2b,
0x6c75636c, 0x726f7461, 0x250a8208, 0x61646e65, 0x08870e72, 0x6c622d25, 0x896b6e61, 0x05004b0e, 0x63251d88, 0x6b636f6c, 0x4c0e8811, 0x1720071b,
0x4b411190, 0x880d2005, 0x6c702417, 0x880f7375, 0x053c420d, 0x74231d89, 0x89747865, 0x6f742573, 0x09796164, 0x6c262c82, 0x64616d2d, 0x09850a65,
0x67726524, 0x0a850b65, 0x73736924, 0x3d836465, 0x722d6c29, 0x69656365, 0x85646576, 0x70732e24, 0x0974696c, 0x636d6163, 0x6564726f, 0x86228272,
0x622d2309, 0xb682786f, 0x2d230d8a, 0x8a66666f, 0x200d821f, 0x22378206, 0x82617265, 0x826d2087, 0x652d2806, 0x6e61686e, 0x850c6563, 0x05ba4a15,
0x0c8b1420, 0x20077c43, 0x2314860b, 0x73697269, 0x3c836383, 0x72617028, 0x6d2d7974, 0xb283646f, 0x72244e84, 0x13726165, 0x0b832986, 0x83833d87,
0x73253183, 0x63746977, 0x216d8768, 0x34826974, 0x61630925, 0x8279646e, 0x03652504, 0x0b726163, 0x2d200382, 0x8206f945, 0x2d722134, 0x22069f44,
0x83086465, 0x61772319, 0xc1826873, 0x6f727224, 0x0f820474, 0x49827420, 0x43747221, 0x092007c4, 0x2d2d1183, 0x73756c70, 0x73616312, 0x65732d65,
0x052c466e, 0x6c612d22, 0x73212e83, 0x25438268, 0x312d6873, 0x5a823030, 0xd8410882, 0x22168507, 0x82647375, 0x74732253, 0x203c820e, 0x20778974,
0x200e8306, 0x2b9c836c, 0x65630974, 0x68706c6c, 0x11656e6f, 0x2d200988, 0x7224bd82, 0x0f64696f, 0x62251189, 0x63697361, 0x240f890e, 0x6b636f64,
0x200e8910, 0x8a418469, 0x696c241f, 0x89126b6e, 0x230e831f, 0x66666f2d, 0x8445128a, 0x630b3907, 0x69747265, 0x61636966, 0x630c6574, 0x72696168,
0x6863732d, 0x096c6f6f, 0x72260c82, 0x72612d74, 0x09871063, 0x73616523, 0x204a8270, 0x231a8665, 0x0f726162, 0x68291a85, 0x6f747369, 0x6d617267,
0x8a0f850a, 0x69702824, 0x68630565, 0x826b6365, 0x24058234, 0x6c6c612d, 0x220f840e, 0x43786f62, 0x15200533, 0xf64b0e8d, 0x941d2006, 0x082b4c15,
0x89451d8e, 0x828e8206, 0x26598363, 0x6b72616d, 0x88166465, 0x860f8526, 0x951e205b, 0x205c8716, 0x861e8f17, 0x4f178a5d, 0xc08506da, 0x2f891f20,
0x4f87178c, 0x1f911820, 0x20208e85, 0x39871897, 0x20840c20, 0x62726526, 0x6472616f, 0x6d2cdc83, 0x6c616369, 0x6165772d, 0x136e6f70, 0x762a1c82,
0x2d6e6f72, 0x62756f64, 0x0682656c, 0x13907720, 0x66656c24, 0x278e1474, 0x67697225, 0x8e117468, 0x70752114, 0x4e866b83, 0x886e7721, 0x2040830c,
0x842b870d, 0x870a2039, 0x70752e0d, 0x75686306, 0x0b686372, 0x63736963, 0x2c95826f, 0x04786562, 0x79746963, 0x696c6309, 0x20b38470, 0x51098811,
0x0f20072c, 0x6c22118a, 0x9d827265, 0x2d202b87, 0x20091f4e, 0x23248a14, 0x776f7272, 0x8905724c, 0x21828214, 0x5b8a6b63, 0x2006a041, 0x2421890e,
0x74786574, 0x270e8306, 0x630d7970, 0x6b636f6c, 0x8409d143, 0x6e65230d, 0x17850a64, 0x73616624, 0x0a850874, 0x826e6921, 0x202b86b9, 0x2512850b,
0x72617473, 0x0b820574, 0x09657322, 0x10450584, 0x6f6c2305, 0x09836573, 0x8409a841, 0x05074f11, 0x1e83bd82, 0x0e480c85, 0x263d8508, 0x7774656e,
0x836b726f, 0x50418293, 0x152006d2, 0x0d861b85, 0xcd823187, 0x64284682, 0x7061632d, 0x6e6f6974, 0x75228483, 0x2a820b64, 0x13827520, 0x63656824,
0x0b860c6b, 0x63726925, 0x850e656c, 0x0779470c, 0x27826083, 0x20061841, 0x221c8511, 0x4e66666f, 0x1185087d, 0x69727025, 0x8a13746e, 0x82d08b0b,
0x05b5473f, 0x6f630a2b, 0x612d6564, 0x79617272, 0x260a840b, 0x63617262, 0x880d7365, 0x656b230b, 0x24857374, 0x75716525, 0x84116c61, 0x72672c18,
0x65746165, 0x68742d72, 0x901a6e61, 0x6f2d2311, 0x2c842d72, 0x1a840e20, 0x73656c23, 0x20298473, 0x8e0e8d17, 0x6f6e2226, 0x20358574, 0x88268416,
0x0714460e, 0x16841020, 0x7261702a, 0x68746e65, 0x73657365, 0x7321af85, 0x21e78274, 0x1c840967, 0x67617424, 0x09830773, 0x6e65702a, 0x666f6306,
0x0c656566, 0x2d2a0685, 0x672d6f74, 0x6f63046f, 0x11826e69, 0xa0826c20, 0x2306fc4a, 0x6d6d6f63, 0x0f205082, 0xca420786, 0x84aa8207, 0x410f8717,
0x2f8509ea, 0x20058654, 0x21358815, 0x5846656c, 0x870d2009, 0x68632415, 0x886b6365, 0x440d8423, 0x47860937, 0x87075446, 0x41888818, 0x142006de,
0x7f4a4c87, 0x8812200b, 0x6f722914, 0x73736563, 0x1a676e69, 0x6b901291, 0x65757125, 0x51697473, 0x33870a95, 0x42057a48, 0x9b86091f, 0x78657423,
0x837f8874, 0x2021870c, 0x23388207, 0x65726170, 0x73210785, 0x22b48373, 0x4b736170, 0x1782081f, 0x6f736e31, 0x630c656c, 0x61746e6f, 0x6d2d7463,
0x846c6961, 0x6e65280c, 0x6f632d74, 0x830b7970, 0x220c8419, 0x87117475, 0x7564290b, 0x63696c70, 0x0d657461, 0x54821187, 0x45857420, 0x73242b83,
0x10657661, 0x0c831a87, 0x6c612d24, 0x1083086c, 0x73617223, 0x835f8474, 0x622d2408, 0x870f786f, 0x06164615, 0x6f630625, 0x83696b6f, 0x6e752eb0,
0x03726574, 0x0b776f63, 0x64657263, 0x238e8269, 0x14647261, 0x724c0b8a, 0x8b102008, 0x63732914, 0x63046e61, 0x09706f72, 0x2d250483, 0x65657266,
0x2309840e, 0x646e616c, 0x70201c82, 0x1d82b482, 0x6f702d29, 0x61727472, 0x840b7469, 0x05e5561c, 0x0b820a20, 0x68737326, 0x73726961, 0x0a863383,
0x70672d24, 0x19820573, 0x57827720, 0x82627521, 0x440482e5, 0x0c8309c9, 0x6e657325, 0x83630d64, 0x6e752a09, 0x646c6f66, 0x63036465, 0x24808275,
0x772d7075, 0x2cc58261, 0x7275630c, 0x636e6572, 0x74622d79, 0x220c8963, 0x89727565, 0x6267220c, 0x210c8970, 0x198a6e69, 0x6e676e22, 0x72221989,
0x0c896275, 0x79727422, 0x75230c89, 0x820e6473, 0x6f732b67, 0x65642d72, 0x6c756166, 0x0e8d1674, 0x21097644, 0x25837275, 0x766f6d23, 0x23318765,
0x6e696f70, 0x0829a882, 0x61746164, 0x65736162, 0x2608870e, 0x6e696d2d, 0x880d7375, 0x6c70240e, 0x550f7375, 0x7324059d, 0x2d706574, 0x6f213682,
0x220f8a0e, 0x8b74756f, 0x2862821e, 0x65641072, 0x616d6963, 0x2296826c, 0x82657263, 0x2110885c, 0x10856e69, 0x65640625, 0x8274656c, 0x44068474,
0x05200747, 0x742c1582, 0x65640961, 0x68706b73, 0x0b656e6f, 0x74270983, 0x6d2d706f, 0x870d6361, 0x7422080b, 0x7265776f, 0x74656407, 0x736c6961,
0x7665640a, 0x746e6169, 0x0d747261, 0x6d616964, 0x2d646e6f, 0x3a827473, 0x67830820, 0x6f69742a, 0x6964066e, 0x312d6563, 0x32200685, 0x33200685,
0x34200685, 0x35200685, 0x36260685, 0x7269640a, 0x33836365, 0x69225682, 0x48446373, 0x261c8205, 0x73757173, 0x8369640e, 0x07514106, 0x69640825,
0x82736976, 0x870c205e, 0x622d3408, 0x6403786f, 0x6406736e, 0x69616d6f, 0x6f640f6e, 0x4e2d7374, 0x0f840a41, 0x2007e54d, 0x07304608, 0x72640425,
0x830f6761, 0x822b8c04, 0x4e2d2014, 0x1d820811, 0x6e697724, 0x07860b67, 0x08296883, 0x62697264, 0x656c6262, 0x8308870c, 0x64052215, 0x20f98272,
0x3f058207, 0x786f6270, 0x75726406, 0x046c6170, 0x6b637564, 0x6d756408, 0x6c656262, 0x6165056c, 0x09687472, 0x2d350584, 0x0466666f, 0x65676465,
0x656a6505, 0x65117463, 0x6176656c, 0x28d38274, 0x6365642d, 0x656e696c, 0x2411890e, 0x65736972, 0x230e8508, 0x6505726f, 0x6c21e182, 0x2505840a,
0x65706f2d, 0x0a860d6e, 0x86055951, 0x6f6c2a18, 0x65106b63, 0x69746f6d, 0x09d74463, 0x10881520, 0x6f6f6323, 0x08574a6c, 0x64231588, 0x92697665,
0x61682416, 0x45797070, 0x2d880834, 0x75656e25, 0x88617274, 0x8686822f, 0x6f70246d, 0x8814706f, 0x61732226, 0x08c34564, 0x74291488, 0x75676e6f,
0x6e650665, 0x84e98467, 0x26258706, 0x75716505, 0x84096c61, 0x622d3e05, 0x6506786f, 0x65736172, 0x73650972, 0x616c6163, 0x08726f74, 0x65687465,
0x74656e72, 0x2608870e, 0x6261632d, 0x8d12656c, 0x0561410e, 0x79737425, 0x82766508, 0x746f2e2e, 0x78650b65, 0x6d616c63, 0x6f697461, 0x250b826e,
0x742d7469, 0xdc822d6f, 0x7865062b, 0x74726f70, 0x65796503, 0x83038207, 0x820a2038, 0x72642707, 0x6570706f, 0x0a891272, 0x29072a43, 0x63616608,
0x6f6f6265, 0x08870c6b, 0x1220a883, 0x6d230c88, 0x82737365, 0x726522db, 0x82128207, 0x037924b1, 0x826e6166, 0x7473212b, 0x8207ee58, 0x05782c10,
0x72726566, 0x69660479, 0x830a656c, 0x632d2504, 0x74726168, 0x65220a87, 0x0a866b63, 0x756f6c24, 0x20840e64, 0x6c656429, 0x74696d69, 0x850d6465,
0x636f270e, 0x6e656d75, 0x0d8c1174, 0x39858a83, 0x6521ee82, 0x8439856c, 0x2019830a, 0x852b840b, 0x840920f0, 0x6966230b, 0x2f85646e, 0x616d6924,
0x20856567, 0x706d6925, 0x8574726f, 0x6f6c2320, 0x70856b63, 0x85079447, 0x756d252e, 0x0c636973, 0x94474384, 0x84082006, 0x6470220c, 0x82158566,
0x20728308, 0x2915850f, 0x7265776f, 0x6e696f70, 0x0f8e1374, 0x15202383, 0x72221385, 0xcf827365, 0x69746124, 0x15836e6f, 0x12827f85, 0x7624a086,
0x6f656469, 0x77221485, 0x0541726f, 0x83098306, 0x237c852c, 0x046c6d78, 0x6d204b82, 0x6d262583, 0x69727473, 0x0e830d70, 0x2d240984, 0x0666666f,
0x74230d82, 0x850e7265, 0x07734206, 0x15822383, 0xf0472d20, 0x898c8305, 0x089b4a0d, 0x19513286, 0x660b2406, 0x82676e69, 0x827220d1, 0x660425d1,
0x07657269, 0x66220483, 0x0c82786f, 0x04687327, 0x67616c66, 0x5004830e, 0x652405dc, 0x0c646572, 0x2a410e84, 0x84142006, 0x894b860c, 0x20358286,
0x24b4822d, 0x6c676e61, 0x862f8565, 0x82052022, 0x6873222f, 0x2505840a, 0x7475612d, 0x0a85096f, 0x1485d282, 0x67696c25, 0x840e7468, 0x850a8414,
0x616c2aec, 0x0c727474, 0x70696c66, 0x06265b2d, 0x0c870d20, 0x6f72662b, 0x6606746e, 0x70706f6c, 0x2a068379, 0x06726577, 0x646c6f66, 0x850e7265,
0x07e34906, 0x0e860f20, 0x20073645, 0x220f8613, 0x826f6f67, 0x056c5ca5, 0x13860c20, 0x84064242, 0x6c2d2546, 0x106b636f, 0x0b831886, 0x706f2d25,
0x860b6e65, 0x6f6d2310, 0x59876576, 0x20075742, 0x4e1b8715, 0x4e840753, 0x158f1720, 0x87064241, 0x870e86a6, 0x6c702458, 0x860d7375, 0x05cf4132,
0xd94b0d87, 0x66042505, 0x0a646f6f, 0x2d260483, 0x6c707061, 0x0a840c65, 0x20066641, 0x240c8208, 0x6c616274, 0x20e4826c, 0x2b08846f, 0x7375612d,
0x6c617274, 0x0f6e6169, 0x2d261c87, 0x6d6c6568, 0x23827465, 0x616d7224, 0x1c822d74, 0x2d6e672b, 0x746e6563, 0x66147265, 0x20138a6f, 0x233b826a,
0x11796669, 0x6c24148c, 0x12746665, 0x7224118c, 0x74686769, 0x3984bf82, 0x6c6f6223, 0x84938264, 0x6c63240b, 0x87726165, 0x6f63273d, 0x2d726f6c,
0x9c846966, 0x66221e84, 0x7e826f6c, 0x25877885, 0x63831385, 0x6e23118d, 0x87656e6f, 0x84238575, 0x84d38275, 0x6568274a, 0x72656461, 0x0f8e312d,
0x0f8e3220, 0x0f8e3320, 0x0f8e3420, 0x0f8e3520, 0x86163621, 0x215f86e8, 0x82486564, 0x073a4105, 0x65241686, 0x6c617571, 0xad482a8e, 0x242a8e07,
0x6e756f70, 0x252a8764, 0x65646e69, 0xe948746e, 0x87168e08, 0x860d2041, 0x74692583, 0x63696c61, 0x6c2b4f87, 0x2d656e69, 0x63617073, 0x41676e69,
0x6c2407b5, 0x2d747369, 0x22053455, 0x86196465, 0x24148c36, 0x7079742d, 0x232e8c65, 0x626d756e, 0x4105de43, 0x702505f9, 0x746e6961, 0x293b8610,
0x61726170, 0x70617267, 0x10861268, 0x6f75712a, 0x632d6574, 0x65736f6c, 0x2207f041, 0x887a6973, 0x74732d51, 0x656b6972, 0x6f726874, 0x1c686775,
0x148c3386, 0x8708f64d, 0x6275261c, 0x69726373, 0x08524270, 0x70757324, 0x12857265, 0x74246187, 0x1b747865, 0x0b832f86, 0x26086b49, 0x742d6c2d,
0x95722d6f, 0x8372201b, 0x876c201b, 0x6e7526c9, 0x6c726564, 0x09444269, 0xd6827720, 0x6e692d22, 0x73261290, 0x72617571, 0x6e861165, 0x74242584,
0x74686769, 0x85079c41, 0x706f2911, 0x746f622d, 0x056d6f74, 0x75222882, 0x0660076d, 0x660a2406, 0x8572756f, 0x660e2641, 0x67646972, 0x071b4565,
0x0e850620, 0x06850a20, 0x70219a82, 0x850a860d, 0x660a2447, 0x826c6c75, 0x656523f6, 0x0a890f6e, 0x78652d36, 0x66087469, 0x74636e75, 0x076e6f69,
0x656d6167, 0x0f646170, 0x95550786, 0x61672608, 0x74732d73, 0x29238361, 0x74616704, 0x61670565, 0x05836775, 0x6c657625, 0x8365670d, 0x662d27fa,
0x6c616d65, 0x0d860b65, 0x12200b83, 0x1e860b8a, 0x74241287, 0x736e6172, 0x052f1e85, 0x736f6867, 0x69670474, 0x67037466, 0x820a7469, 0x75682203,
0x21fd8262, 0x0a860d78, 0x2c053551, 0x616c670b, 0x662d7373, 0x6574756c, 0x230b8509, 0x0c67756d, 0x73240985, 0x676e6174, 0x22847c82, 0x6c757424,
0x22857069, 0x6f6f6424, 0x22840772, 0x0573652e, 0x69616d67, 0x6e67056c, 0x06656d6f, 0x20059c45, 0x26068510, 0x7261632d, 0x826f6264, 0x870d2004,
0x72682110, 0x0e202582, 0x69260d87, 0x656c6372, 0x0e8d1a73, 0x6f632d2c, 0x6e756d6d, 0x65697469, 0x1a8e1773, 0x74786528, 0x65646e65, 0x178e1464,
0x6f726725, 0x87117075, 0x6e6f2914, 0x6c6f7274, 0x1572656c, 0x2d241190, 0x0c66666f, 0x860c4146, 0x6165240c, 0x87687472, 0x87d98419, 0x826e20b3,
0x7962211a, 0x70251a87, 0x73656761, 0x23348613, 0x73796870, 0x21062654, 0x13870b62, 0x79616c22, 0x75220b89, 0x17880f73, 0x2d737525, 0x41786f62,
0x7428071b, 0x736e6172, 0x6574616c, 0x2d082c41, 0x7373616c, 0x6d6f6f72, 0x69726704, 0x04830864, 0x0520ad83, 0x0f30db84, 0x74697567, 0x652d7261,
0x7463656c, 0x0b636972, 0x70240f86, 0x136b6369, 0xb6420b8a, 0x68132407, 0x65646e61, 0x692905c7, 0x722d676e, 0x74686769, 0x22138206, 0x87726567,
0x380d8390, 0x7374756f, 0x72616808, 0x73696464, 0x65680a6b, 0x68706461, 0x73656e6f, 0x830a890e, 0x8a1320b3, 0x5c73200e, 0x07200652, 0x0c821383,
0x07860c20, 0x6f642d25, 0x870b6b63, 0x666f230c, 0x0b820566, 0x09747222, 0x44830584, 0x09881120, 0x8608d950, 0x6f722511, 0x0d6e656b, 0x55470c85,
0x68042506, 0x0b706c65, 0x31500483, 0x68072106, 0x2005c262, 0x0ea5600f, 0x69680736, 0x726f7473, 0x6f680879, 0x656c6f6c, 0x6804736e, 0x0b656d6f,
0x2d270483, 0x65646f6d, 0x840c6e72, 0x0668470b, 0x70201d82, 0x6f28f182, 0x74697073, 0x68116c61, 0x2d290886, 0x6c697562, 0x676e6964, 0x2b11880f,
0x6b72616d, 0x68057265, 0x6c65746f, 0x75250582, 0x68097a7a, 0x8305826f, 0x680526ca, 0x6e616d75, 0x2205840b, 0x8268632d, 0x8511203a, 0x616d230b,
0x9243656c, 0x69052606, 0x6567616d, 0x2605840b, 0x626c612d, 0x860a6d75, 0x6572230b, 0x0a891061, 0x20059445, 0x2610850c, 0x6b6f7262, 0x8b146e65,
0x083f5d0c, 0x0d4a1485, 0x8b182005, 0x5e2d200c, 0x7725056c, 0x65746968, 0x47188c19, 0x2d2605a2, 0x75636f66, 0x19981e73, 0x65772d25, 0x8c126b61,
0x7264251e, 0x13616d61, 0x6620128c, 0x65221282, 0x138c1073, 0x72646823, 0x24108c11, 0x656e6f6e, 0x29118c17, 0x746c6974, 0x6968732d, 0xd5867466,
0x2d28c085, 0x746e6976, 0x0e656761, 0x89492c85, 0x4c062007, 0x10250500, 0x6f626e69, 0x0aa55678, 0x6e690b25, 0x4d726f66, 0x13200542, 0xa0510b8a,
0x6e692208, 0x824e8273, 0x840a20a2, 0x61702309, 0x9a826570, 0x65746e39, 0x74656e72, 0x7078652d, 0x65726f6c, 0x6e690d72, 0x74726576, 0x826f632d,
0x07733a0e, 0x7065656a, 0x0479656e, 0x6172696a, 0x66736a08, 0x6c646469, 0x656b0365, 0x2c038267, 0x656b0a79, 0x68632d79, 0x65676e61, 0x250a8309,
0x756e696d, 0x09830873, 0x756c7023, 0x491d8473, 0x0b2005e6, 0x5e421383, 0x82082006, 0x6f62250b, 0x12647261, 0x2d200887, 0x2008b962, 0x2412880d,
0x73706163, 0x240d890e, 0x65736f6c, 0x230e880c, 0x0f66666f, 0x72250c88, 0x72757465, 0x231c896e, 0x10626174, 0x73861c88, 0x6f6b042b, 0x6c056964,
0x6c656261, 0x4105840d, 0x03240714, 0x0b6e616c, 0x0d5b0382, 0x830e2007, 0x6964230b, 0x34606373, 0x271a8405, 0x646e6570, 0x0f676e69, 0x672c1a82,
0x65676175, 0x6873632d, 0x0d707261, 0x73210f8a, 0x85388333, 0x7468251d, 0x13356c6d, 0x6a231c88, 0x47617661, 0x0c2005f2, 0x70221388, 0x4d897068,
0x74797026, 0x146e6f68, 0x0f841c89, 0x65742d2c, 0x6c067478, 0x6f747061, 0x06851170, 0x68632d2b, 0x656d6f72, 0x6b6f6f62, 0x2311860a, 0x0e63616d,
0x77260a86, 0x6f646e69, 0x32827377, 0x66747323, 0x2306826d, 0x68636e75, 0x79230682, 0x82737265, 0x2c06832e, 0x66666f2d, 0x61656c04, 0x656c0766,
0x200c8364, 0x21078406, 0x06840b6e, 0x2005a450, 0x4c0b830f, 0x662208fb, 0x0f8c0e66, 0x8c136e21, 0x2832850e, 0x62696c07, 0x79726172, 0x2007860d,
0x20a1832d, 0x4e0d8873, 0x1b87058b, 0x756c702e, 0x696c0973, 0x62746867, 0x11626c75, 0x90410988, 0x6c042507, 0x086b6e69, 0x2007215c, 0x8608840c,
0x8b10208e, 0x84be830c, 0x64652326, 0x26846e69, 0x7a820883, 0x82057821, 0x78752726, 0x636f6c04, 0xda4c096b, 0x88112008, 0x08584509, 0x260b8659,
0x676f6c05, 0x82066e69, 0x756f2205, 0x220c8274, 0x82736b6f, 0x70752f05, 0x756c0465, 0x6d06786d, 0x656e6761, 0x06850974, 0x6e6f2d23, 0x23098307,
0x0d796669, 0x1a540786, 0x870c2005, 0x82e3830d, 0x6c692922, 0x0375722d, 0x0a70616d, 0x2d200382, 0x20052b45, 0x450a8911, 0x132006b4, 0xe243118a,
0x8a0e2007, 0x666f2213, 0x25348b66, 0x69646172, 0x91827375, 0xb0827220, 0x54830820, 0x776f6424, 0x5d850c6e, 0x3a05d04e, 0x616c670e, 0x632d7373,
0x746b636f, 0x0b6c6961, 0x6574616d, 0x6c616972, 0x8269752d, 0x68742127, 0x6d211982, 0x82218270, 0x63782644, 0x6d066e64, 0x20528265, 0x2906826d,
0x79726f6d, 0x6e656d04, 0x04830975, 0x58832d20, 0x6c240985, 0x0a746665, 0x72251384, 0x74686769, 0x210a8407, 0x07827075, 0x61737327, 0x6d0d6567,
0x54078465, 0x0c200518, 0x64230d87, 0x88776172, 0x6d69211a, 0x0f202882, 0xc1461a87, 0x87122006, 0x5870200f, 0x30880814, 0x70657224, 0x2088796c,
0x2d240d84, 0x74786574, 0x0c835e88, 0x40871420, 0x880bea57, 0x69763042, 0x0a6f6564, 0x7263696d, 0x6f68706f, 0x890e656e, 0x6f2d240a, 0x8b126666,
0x05ca420e, 0x128a1320, 0x8a081764, 0x06894213, 0x12911620, 0x09205083, 0x73231684, 0x8274666f, 0x656e2c09, 0x66617263, 0x696d0574, 0x8373756e,
0x05da480f, 0x0f840c20, 0x2006fb41, 0x500c8b14, 0x14850869, 0x28069a5b, 0x6e6f6d07, 0x726f7469, 0x57078610, 0x042708ea, 0x65726f6d, 0x826f6d09,
0x6962281b, 0x6d05656b, 0x8373756f, 0x8305820f, 0x840d208b, 0x0718470f, 0x0d8c1120, 0x2f821f83, 0x65697623, 0x0671420e, 0x61636927, 0x6e6f6974,
0x290e8d12, 0x786f622d, 0x73756d09, 0x09836369, 0x09881120, 0x85084243, 0x05234b11, 0x0c850a20, 0x746f6e23, 0x83298665, 0x652d270a, 0x74686769,
0x1c890f68, 0x61682d24, 0x7782666c, 0x21845583, 0x66666f22, 0x0e887782, 0x61757127, 0x72657472, 0x29318a14, 0x74786973, 0x746e6565, 0x148a1068,
0x6f68772c, 0x6e06656c, 0x72757461, 0x06850d65, 0x65702d2c, 0x656c706f, 0x76616e0a, 0xd0846769, 0x6e062408, 0x6c646565, 0x6d730e65, 0x2d656b6f,
0x65746564, 0x726f7463, 0x6568740a, 0x736f6d72, 0x07746174, 0x8477656e, 0x2a0782e6, 0x70617073, 0x6e037265, 0x82076366, 0x742d2403, 0x830b7061,
0x06f34107, 0x6f6e0628, 0x736a6564, 0xe0826e04, 0xb8850c20, 0x20053342, 0x240c8409, 0x73756c70, 0x47098811, 0x11840873, 0x78657424, 0x09821674,
0x3505d760, 0x2d6e6f69, 0x61656c63, 0x6c612d72, 0x756e076c, 0x6972656d, 0x97710d63, 0x208d8308, 0x410d8c1e, 0xa96f08f2, 0x431e8d08, 0x4288064c,
0x428c3120, 0x42990d84, 0x428f1e85, 0x428c3220, 0x42990d84, 0x428f1e85, 0x428c3320, 0x42990d84, 0x428f1e85, 0x428c3420, 0x42990d84, 0x428f1e85,
0x428c3520, 0x42990d84, 0x428f1e85, 0x428c3620, 0x42990d84, 0x428f1e85, 0x428c3720, 0x42990d84, 0x428f1e85, 0x428c3820, 0x42990d84, 0x428f1e85,
0x428c3920, 0x42990d84, 0x42861e85, 0x70421220, 0x2d392307, 0xc7446c70, 0x91232005, 0x204c9012, 0x8623921a, 0x6e092a51, 0x69727475, 0x6e6f6974,
0x06676007, 0x6f600f20, 0x6f0d390e, 0x6b6f6e64, 0x7373616c, 0x696b696e, 0x66666f06, 0x03656369, 0x0f6c696f, 0x26080382, 0x6d65742d, 0x61726570,
0x65727574, 0x656d6f05, 0x6f086167, 0x7264656e, 0x0b657669, 0x6e65706f, 0x2d6e692d, 0x88707061, 0x656e230b, 0x17830677, 0x05646922, 0x72200682,
0x72282d82, 0x656d616e, 0x6f10746e, 0x29450886, 0x4b0e2007, 0x752e0b56, 0x776f0370, 0x6170076c, 0x67616b63, 0x07860c65, 0x6f642d25, 0x870a6e77,
0x7075220c, 0x440a870f, 0x16200629, 0xbd4c0f8e, 0x82642005, 0x656c2746, 0x10657474, 0x07846170, 0x64612d2f, 0x636e6176, 0x70056465, 0x61646e61,
0x20058307, 0x829a826f, 0x21068207, 0x2782616d, 0x08846e20, 0x69662d28, 0x79656873, 0x19871365, 0x200a125b, 0x5b138811, 0x25890716, 0x64697733,
0x6e612d65, 0x12656c67, 0x65706170, 0x75632d72, 0x083d5b74, 0x12840920, 0x696c6323, 0x29788270, 0x6e696b72, 0x61700567, 0xe4837375, 0x9f460582,
0x86128407, 0x089f460c, 0xae411485, 0x8c152006, 0x08564b0d, 0x77617027, 0x6e657003, 0x23038206, 0x0a6c6963, 0x2d240685, 0x12786f62, 0x855d0a89,
0x23128608, 0x6b636f6c, 0x6f232987, 0x82076666, 0x656333b2, 0x7008746e, 0x6d726168, 0x05796361, 0x6e6f6870, 0x05840f65, 0xbf6b2d20, 0x850d2008,
0x06a4520f, 0x0d850c20, 0xf6826820, 0x86707521, 0x6e69271a, 0x6c61742d, 0x1a850e6b, 0x636e6924, 0xee826d6f, 0x0e850a20, 0x09207483, 0x67200a87,
0x6d253e86, 0x65737369, 0x24308664, 0x6774756f, 0x8630826f, 0x87ef841b, 0x0723481b, 0x76294c86, 0x0270696f, 0x70066970, 0x28ea8369, 0x67697003,
0x6c697004, 0x2208826c, 0x8270076e, 0x20d58286, 0x26078209, 0x72742d65, 0x880d6565, 0x832c8309, 0x65742517, 0x74736572, 0x09851783, 0x052b1783,
0x7a7a6970, 0x6c700461, 0x83107961, 0x0be66304, 0x10840b20, 0x20057e47, 0x6d0b8a13, 0x138408a4, 0x1620b084, 0x72300a85, 0x6365746f, 0x2d646574,
0x746e6f63, 0x0e746e65, 0x6c231683, 0x4a747369, 0x0d2005c1, 0x08830e88, 0x75220d8b, 0x1b880f73, 0x8306d24d, 0x0798530f, 0x756c7024, 0x1a440873,
0x21968207, 0x34427375, 0x841c2006, 0x44a28514, 0xb382101f, 0x53482888, 0x20308408, 0x0597646e, 0x6f325285, 0x7006656e, 0x656b636f, 0x6f700874,
0x6162656b, 0x08826c6c, 0x72616c28, 0x0464696f, 0x0d856f70, 0x622d6c25, 0x8207786f, 0x6d79230d, 0x07827265, 0x6f63702b, 0x70056e72, 0x646e756f,
0x41058409, 0x6f25054c, 0x0e726577, 0x20058370, 0x07bb412d, 0x0e860c20, 0x0c216184, 0x0ae75a70, 0x0c8b1120, 0xef832d20, 0x72700728, 0x65746e69,
0x07860a72, 0x64332d23, 0x330a870d, 0x72656c61, 0x72701474, 0x7365666f, 0x6e6f6973, 0x682d6c61, 0x20058f51, 0x26148209, 0x7463656a, 0x8810726f,
0x552d2009, 0x0524050f, 0x736c7570, 0x752cde82, 0x656c7a7a, 0x63727106, 0x0b65646f, 0x21820685, 0x0a6e6129, 0x64617571, 0x82706f63, 0x820c2073,
0x696c390a, 0x682d7974, 0x09686769, 0x63697571, 0x6d69746b, 0x61720565, 0x08726164, 0x69210582, 0x83618261, 0x6f69220e, 0x2a0e830e, 0x61682d6f,
0x6568646e, 0x850b646c, 0x8374200e, 0x250b85f7, 0x69746361, 0x26856576, 0xfa686220, 0x840f2007, 0x09af6826, 0x61720c35, 0x65627073, 0x2d797272,
0x72076970, 0x652d7961, 0x860d646e, 0x05795007, 0x0d830920, 0x61747325, 0x880f7472, 0x84198509, 0x83198427, 0x830a2035, 0x7627081d, 0x65747265,
0x616c0878, 0x61707473, 0x72047373, 0x0a646165, 0x74756f79, 0x2d656275, 0x72077674, 0x69656365, 0x82067470, 0x726f2307, 0x06850a64, 0x06822d20,
0x79231983, 0x82656c63, 0x64642919, 0x72047469, 0x0c6f6465, 0xb5450483, 0x2f208207, 0x73657266, 0x65720568, 0x0e786567, 0x616c6572, 0x2d23df83,
0x84616373, 0x6f6c2a35, 0x72066461, 0x746f6d65, 0x24568265, 0x656d616e, 0x82e6822d, 0x65702311, 0x11827461, 0x2d260683, 0x0b66666f, 0x0a856572,
0x83636e21, 0x6c70236c, 0x52827961, 0x796c7023, 0x05804c09, 0x6c6c6123, 0x2909820c, 0x75646f72, 0x6f697463, 0x7482136e, 0x837a6921, 0x7474234c,
0x42546d6f, 0x264e8205, 0x6e6f7073, 0x83766973, 0x69772242, 0x2679826e, 0x6f626269, 0x8272046e, 0x830c2085, 0x31b68704, 0x636f7206, 0x0974656b,
0x61746f72, 0x332d6574, 0x09860b64, 0x66656c24, 0x0b8a1374, 0x8608e052, 0x69722513, 0x14746867, 0x21870c8b, 0x6f720f2f, 0x72657475, 0x7269772d,
0x73656c65, 0x82628273, 0x0373250f, 0x07737372, 0xf6830382, 0x75720535, 0x0872656c, 0x2d6e7572, 0x74736166, 0x6c617304, 0x82730965, 0x6c6c2580,
0x11657469, 0x7d620988, 0x63732108, 0x0e202182, 0x2d300584, 0x68746162, 0x6d6f6f72, 0x68637306, 0x0f6c6f6f, 0x2005c642, 0x238a842d, 0x146e6f69,
0x2d210f8e, 0x20e1826c, 0x2614830b, 0x69726477, 0x82726576, 0x69722246, 0x08d16c70, 0x64730228, 0x61657304, 0x0482096c, 0x662d7426, 0x1074616c,
0xbb460988, 0x15642105, 0x692c1084, 0x7669646e, 0x61756469, 0x75732d6c, 0x1220a682, 0x6c221584, 0x8c836765, 0x78652d26, 0x13617274, 0x6e26128c,
0x616d726f, 0x138c146c, 0x64657226, 0x64656375, 0x72203b85, 0x8b05cc61, 0x8512873b, 0x7308293b, 0x72756365, 0x10797469, 0xe17b0887, 0x73062707,
0x63656c65, 0x06850a74, 0x6c612d24, 0x0a860e6c, 0x826e6921, 0x657321e3, 0x6f221987, 0xd9826666, 0x692b2b83, 0x73046e6f, 0x06646e65, 0x82726573,
0x850c2022, 0x05764506, 0x0c860e20, 0x2006f544, 0x200e8d12, 0x8244822d, 0x8335834f, 0x860b200a, 0x6c70241d, 0x860d7375, 0x0591450b, 0x0d860f20,
0x0820ad87, 0x8708e144, 0x622d2a08, 0x730a786f, 0x65706168, 0x203e832d, 0x220a8205, 0x840d6572, 0x08924205, 0x69687326, 0x0e646c65, 0xd6630685,
0x68732708, 0x6970706f, 0x1782676e, 0x2d370885, 0x6973756d, 0x68730863, 0x64646572, 0x73077265, 0x66667568, 0x8610656c, 0x642d2907, 0x62617369,
0x0f64656c, 0x1c491087, 0x73052606, 0x616d6769, 0x2905820c, 0x61632d6e, 0x6f697475, 0x0c83066e, 0x0a6c612d, 0x766c6973, 0x61777265, 0x890f6572,
0x662d250a, 0x106b726f, 0x73250f8a, 0x6e6f6f70, 0x86108a12, 0x73032458, 0x82096d69, 0x612d2603, 0x7472656c, 0x22098307, 0x8266666f, 0x65742907,
0x0d70616d, 0x70696b73, 0x2008a47a, 0x480d840c, 0x09200632, 0x6e230c84, 0x85747865, 0x72702e24, 0x6f697665, 0x73057375, 0x6570796b, 0x2105840e,
0xed82622d, 0x73656e22, 0x6c2a1482, 0x056b6361, 0x65656c73, 0x05840970, 0x65842d20, 0x6b6f6d27, 0x0b676e69, 0x83078573, 0x73082713, 0x6370616e,
0x8a826168, 0x776f6e24, 0xe682616d, 0x63636f29, 0x73047265, 0x8261666f, 0x74722604, 0x726f7311, 0x7cae8274, 0x0e20092b, 0x73211185, 0x06715463,
0x64210e84, 0x200f8765, 0x200f840c, 0x05314e6e, 0xfc860c85, 0x6f730a2b, 0x63646e75, 0x64756f6c, 0x230a820b, 0x2d656372, 0x6b20dd82, 0x702c0b87,
0x076c6c75, 0x61657073, 0x0b72656b, 0x4b420786, 0x65702a05, 0x6d6f6465, 0x72657465, 0x2617820a, 0x68636c6c, 0x826b6365, 0x746f2f2a, 0x09796669,
0x746f7073, 0x6867696c, 0x09880e74, 0x65622d30, 0x730a6d61, 0x72617571, 0x6e692d65, 0x0a890f63, 0x61632d34, 0x730e6873, 0x6b636174, 0x65766f2d,
0x6f6c6672, 0x0e820677, 0x73726923, 0x82068204, 0x61742279, 0x06174872, 0x10830920, 0x61682d25, 0x8408666c, 0x666f2309, 0x08850c66, 0x2205544f,
0x82747305, 0x261b8267, 0x69726565, 0x820d676e, 0x09be410e, 0x0d8c0f20, 0x82322d21, 0x70652139, 0x7724f083, 0x0e647261, 0xdb411c84, 0x322d2206,
0x270e820b, 0x736f6874, 0x65706f63, 0x6f224e82, 0x4e826b63, 0x6f218e82, 0x25628270, 0x0d65726f, 0x05827473, 0x34322d27, 0x756f682d, 0x28138372,
0x730e6576, 0x61776275, 0x07124379, 0x75730a2f, 0x616c676e, 0x73657373, 0x6177730f, 0x0a7e4b70, 0x0f840d20, 0x25077a4b, 0x69777304, 0x0482066d,
0x6863742e, 0x6f777305, 0x73046472, 0x0a636e79, 0x96420483, 0x84082005, 0x24ec820a, 0x62617403, 0x2203820e, 0x446e752d, 0x65220539, 0x0e820564,
0x17656c22, 0x2d320584, 0x756c6f63, 0x702d6e6d, 0x2d73756c, 0x65746661, 0x17911872, 0x82656221, 0x136521e5, 0x0944188c, 0x8c122005, 0x69772513,
0x0a687464, 0x65241285, 0x0b746964, 0x6c250a85, 0x65677261, 0x2a0b8510, 0x2d776f72, 0x67696568, 0x89147468, 0x207c8910, 0x85148e15, 0x853b8a79,
0x84062076, 0x83742026, 0x656c24d7, 0x7e612d74, 0x6e8505c9, 0x692d7425, 0x82646170, 0x09672bf6, 0x2d676174, 0x65636166, 0x09830c73, 0x21067252,
0x0c830b65, 0x82061d4e, 0x2d672159, 0x820bd253, 0x3aac8259, 0x61740474, 0x740a6978, 0x766d6165, 0x65776569, 0x65740872, 0x7267656c, 0x830a6d61,
0x69762608, 0x6e6f6973, 0x260a8910, 0x6975672d, 0x4e136564, 0x2d280a2b, 0x736c6563, 0x16737569, 0x6625138b, 0x65726861, 0x21fe826e, 0x168b1274,
0x6c656b32, 0x0b6e6976, 0x6e6e6574, 0x622d7369, 0x046c6c61, 0x74290b82, 0x72657407, 0x6e696172, 0x289f840e, 0x732d6f74, 0x63656570, 0x223a8268,
0x882d7478, 0x6f2d230e, 0x29826666, 0x75747829, 0x74076572, 0x82616568, 0x82102035, 0x656d2d07, 0x67696c2d, 0x642d7468, 0x0b6b7261, 0x72211082,
0x057e436d, 0x0b8a1120, 0x6e2e2282, 0x740a7365, 0x626d7568, 0x776f642d, 0x0a89126e, 0x85089145, 0x70752212, 0x65088710, 0x1084080c, 0x752d7323,
0x273b8470, 0x63697406, 0x0e74656b, 0x38640685, 0x86132007, 0x6f63250e, 0x7269666e, 0x2e05345a, 0x65697403, 0x6d697409, 0x70616c65, 0x83056573,
0x08722109, 0x2d230584, 0x85073031, 0x84332008, 0x83722020, 0x850a20de, 0x61732311, 0x1484646e, 0x6261742c, 0x740d656c, 0x6c67676f, 0x04432d65,
0x8c112005, 0x0513410d, 0x6c6f6f26, 0x0c706974, 0x07b44218, 0x69646523, 0x84348274, 0x562d2014, 0x1a870524, 0x20060c42, 0x210f8714, 0xce786c70,
0x223f8809, 0x84786574, 0x6874213f, 0x2a087b4e, 0x0d726f74, 0x66617274, 0x41636966, 0x0520056c, 0x69220d82, 0x0582046e, 0x820a6d21, 0x736e2704,
0x62697263, 0x0a891065, 0x2005a14f, 0x2810840e, 0x2d726566, 0x68676972, 0x282f8274, 0x74066565, 0x6c6c6572, 0x454f826f, 0x2d240592, 0x6e776f64,
0x0d863982, 0x75656e22, 0x6c213482, 0x2f25820b, 0x6e69646e, 0x70752d67, 0x69727408, 0x6c676e61, 0x08855f83, 0x26082661, 0x706f7274, 0x850c7968,
0x612d2606, 0x64726177, 0x860c860e, 0x450e87eb, 0x162006d6, 0x8b661d86, 0x22cf820e, 0x826b6375, 0x3405822b, 0x6c65642d, 0x72657669, 0x73741379,
0x74726968, 0x6572632d, 0x8d401877, 0x20138608, 0x26828976, 0x6c626d75, 0x84740d72, 0x722d2e06, 0x6f6c6265, 0x77740667, 0x68637469, 0x23068307,
0x0b726574, 0x2d240786, 0x0e786f62, 0xc14d0b87, 0x870f2005, 0x65722e0e, 0x65657774, 0x62750674, 0x75746e75, 0x244d8207, 0x6f636172, 0x24078308,
0x616c6c65, 0x59088710, 0x752408d5, 0x0c6f646e, 0x54450483, 0x75162b07, 0x6c6f666e, 0x656c2d64, 0x50457373, 0x2316870a, 0x65726f6d, 0x0727168a,
0x72676e75, 0x8270756f, 0x61742507, 0x06647070, 0x38052f66, 0x62737503, 0x63657614, 0x2d726f74, 0x61727261, 0x2d65676e, 0x766f6261, 0x24148f65,
0x6f6c6562, 0xc7451877, 0x20cb8507, 0x85378615, 0x08fe510d, 0x6f261587, 0x6e69626d, 0x0e870c65, 0x76727524, 0x0c861165, 0x66696428, 0x65726566,
0x6688636e, 0x7e821189, 0x148a7b87, 0x13616222, 0x69253b86, 0x7265746e, 0x23b18273, 0x0b6e6f69, 0x6c201386, 0x7021688a, 0x2021826f, 0x2718860e,
0x796c6f70, 0x0f6e6f67, 0x2b830e8a, 0x0f861020, 0x82053846, 0x68208748, 0x2086089d, 0x826e7521, 0x490c201c, 0xd94706c9, 0x69762d05, 0x74617262,
0x69760565, 0x096f6564, 0x2d240584, 0x0c66666f, 0xb5430985, 0x760b2c05, 0x2d776569, 0x6e656761, 0x850a6164, 0x7272240b, 0x840d7961, 0x6163240a,
0x82756f72, 0x46248579, 0x0e2005a6, 0x64291984, 0x62687361, 0x6472616f, 0x210e8608, 0x08840979, 0x69726723, 0x233b8564, 0x64616568, 0x1785c083,
0x73696c23, 0x25458574, 0x75646f6d, 0x6a85656c, 0x69757123, 0x2516866c, 0x65727473, 0x2c856d61, 0x65657723, 0x33b4826b, 0x056f656d, 0x6d6e6576,
0x6b76026f, 0x2d6b7606, 0x09786f62, 0xc3410682, 0x76033a05, 0x7609636c, 0x6563696f, 0x6c69616d, 0x6c6f760b, 0x2d656d75, 0x68676968, 0x230b860a,
0x0d776f6c, 0xf45a0a86, 0x2c188705, 0x0366666f, 0x046e7076, 0x6b6c6177, 0x23048206, 0x0f74656c, 0x2d240685, 0x74666967, 0x6421f482, 0x2a0f8611,
0x626d656d, 0x68737265, 0x860d7069, 0x72743011, 0x6c657661, 0x6e617703, 0x74617705, 0x840c6863, 0x652d2605, 0x726f7078, 0x5f0c8674, 0x1f8305b3,
0x09726522, 0x65221f82, 0x73822d72, 0x74204182, 0x70270982, 0x65637265, 0x850a746e, 0x75702917, 0x770e706d, 0x68746165, 0x63261a82, 0x64756f6c,
0x0e870b79, 0x676f6623, 0x200b870c, 0x20e48268, 0x200c8711, 0x25e5826c, 0x6e696e74, 0x11870d67, 0x11836e20, 0x0d871420, 0x72617025, 0x85796c74,
0x880f204d, 0x756f2214, 0x24328b72, 0x6e696172, 0x23408879, 0x776f6e73, 0x75230d8a, 0x88796e6e, 0x75732696, 0x7465736e, 0x85488713, 0x642d240e,
0x886e776f, 0x21138691, 0x50887075, 0x6e697725, 0x87157964, 0x430d8433, 0x03240776, 0x06626577, 0x63220382, 0x06826d61, 0x0f22b983, 0x06836577,
0x696b2d37, 0x72676f6c, 0x77086d61, 0x73746168, 0x18707061, 0x65656877, 0x051a7a6c, 0x63612008, 0x73736563, 0x6c696269, 0x12797469, 0x74696877,
0x61622d65, 0x636e616c, 0x75612d65, 0x8d1a6f74, 0x6e692412, 0x4b6e6163, 0x7421054e, 0x211a8e18, 0x18866972, 0x188d1320, 0x6e27c682, 0x69770479,
0x83086966, 0x6f2d3204, 0x77036666, 0x77096969, 0x70696b69, 0x61696465, 0x05785f0c, 0x20054246, 0x210c8b0d, 0x0d860f64, 0x78616d27, 0x7a696d69,
0x210f8865, 0x0f846e69, 0x1f860b20, 0x65706f24, 0x0b860e6e, 0x73657227, 0x65726f74, 0x260e8507, 0x6f770973, 0x82706472, 0x06732114, 0x6b300982,
0x77047265, 0x06706172, 0x6e657277, 0x770a6863, 0x2706f967, 0x78047473, 0x0f786f62, 0x2d220483, 0xda656f63, 0x8e132007, 0x28bc840f, 0x04616478,
0x676e6978, 0x20048308, 0x2035822d, 0x4308840b, 0x78260642, 0x79056c6d, 0x50826165, 0x6c657924, 0x9c510770, 0x7a072306, 0x2a837069, 0x75730e2a,
0x756f7272, 0x732d646e, 0x88440583, 0x65722807, 0x6e617463, 0x54656c67, 0x6324094e, 0x6b636568, 0x28076868, 0x656e696c, 0x7974732d, 0x08e56a6c,
0xe1411184, 0x65092005, 0x053b08e4, 0x63696f76, 0x706f0765, 0x74696361, 0x656e0779, 0x6d2d7261, 0x6c631365, 0x4b6b636f, 0xe248053e, 0x75683608,
0x2d6e616d, 0x67657270, 0x746e616e, 0x69747307, 0x72656b63, 0x07a2500d, 0x6e616c25, 0x18146563, 0x2308334b, 0x2d647261, 0x20061773, 0xe44a1816,
0x696d2510, 0x1073756e, 0x08414a18, 0x64233a82, 0x89676e69, 0x61742710, 0x666f656b, 0x4a181466, 0xde5b0b02, 0x6c612c08, 0x656d6974, 0x09726574,
0x49696e61, 0x0a240545, 0x6b6f6f62, 0x2005d74f, 0x220a8416, 0x8265706f, 0x676122aa, 0x01421865, 0x6c70240d, 0x82077375, 0x626d2d20, 0x6208786f,
0x736c6c75, 0x0e657965, 0x270dde76, 0x6d61630a, 0x2d617265, 0x0c257f82, 0x63656863, 0x063d4d6b, 0x0c8b1420, 0x2508db47, 0x646e6163, 0x2882656c,
0x7472612a, 0x6275622d, 0x0f656c62, 0x820b0f76, 0x63072345, 0x4d837075, 0x6f63092b, 0x69727970, 0x0b746867, 0x05027563, 0x78657424, 0x7c740e74,
0x662d2805, 0x7665726f, 0x860c7265, 0x77732e0e, 0x08706565, 0x65636964, 0x3032642d, 0x20088507, 0x20078634, 0x2c078636, 0x69640438, 0x65126373,
0x6c69616d, 0x20f2842d, 0x05c94d6f, 0x48060373, 0x0a2206c2, 0xcd697665, 0x660f2407, 0x83646f6f, 0x2d6b276b, 0x6e697264, 0x0f84086b, 0x0c20a482,
0x6d287f82, 0x742d7461, 0x656c7469, 0x26072668, 0x7370616d, 0x8365680b, 0x757026da, 0x0765736c, 0x28bd8268, 0x0f796177, 0x656d6f68, 0x092f612d,
0x6e69092d, 0x6e676f63, 0x066f7469, 0x8274656b, 0x05036240, 0x756c7029, 0x6f6c0d73, 0x476e6967, 0xec6108e9, 0x5e0e8705, 0x5b580b6f, 0x5e182008,
0x14880a6f, 0xa2822d20, 0x61700a2b, 0x662d6567, 0x74737269, 0x230a8409, 0x7473616c, 0x20066e58, 0x280b8263, 0x0d636973, 0x6f697270, 0x07af5572,
0x0d880c20, 0x6f6c2808, 0x71710677, 0x74616863, 0x6f6f7004, 0x6f720e6c, 0x65646e75, 0x6f632d64, 0x72656e72, 0x776f7206, 0x09676e69, 0x60786173,
0x732506b3, 0x616e6769, 0x4fb5886c, 0x6521055e, 0x05756578, 0x75731723, 0x05316c62, 0x79726f24, 0x9c7c612d, 0x92182008, 0x69723817, 0x07746867,
0x74786574, 0x06786f62, 0x6c6f6976, 0x760d6e69, 0x82757369, 0x7473285d, 0x6f696475, 0x82657706, 0x46742056, 0x6d32059f, 0x0b6b7261, 0x656c6966,
0x6469682d, 0x0b6e6564, 0xea787061, 0x6f692305, 0x69850e6e, 0x07a04b18, 0x0e850c20, 0x7078653e, 0x04646e61, 0x6c776f62, 0x69726206, 0x06656764,
0x66667562, 0x63047265, 0x15706968, 0x200c0579, 0x07216973, 0x6169642b, 0x6461706c, 0x6369640a, 0x23598274, 0x1e797261, 0x7606fe41, 0xc56f0923,
0x07796d0c, 0x6c241e90, 0x1d746665, 0xfc843b97, 0xaf4f3a87, 0x6c578607, 0x1c9605a4, 0x6e656326, 0x19726574, 0x398e5786, 0x706f742e, 0x6361680a,
0x6e72656b, 0x13737765, 0x4a0a8a69, 0x6a3d08f8, 0x066e6f73, 0x626d616c, 0x6d066164, 0x69727461, 0x656d0678, 0x726f6574, 0x78696d08, 0x05b05163,
0x6d676938, 0x6f6c2d61, 0x0d726577, 0x72756f73, 0x622d6563, 0x636e6172, 0x0d860c68, 0x72656d31, 0x74046567, 0x07656e75, 0x68626577, 0x186b6f6f,
0x4108d54f, 0x4f180747, 0xe744088a, 0x61132606, 0x656c7070, 0x0c4e672d, 0x138f1620, 0x6d6d6f25, 0x91646e61, 0x746e2516, 0x156c6f72, 0x6f262d8e,
0x6f697470, 0x158e146e, 0x69687336, 0x620a7466, 0x732d786f, 0x6f646168, 0x61630577, 0x0d736472, 0xae600584, 0x260d8508, 0x79616c70, 0x87676e69,
0x181e2015, 0x23116d40, 0x6e616c62, 0x2007e244, 0x181e9d26, 0x91080c4d, 0x616d2526, 0x64656b72, 0x20062945, 0x5b1f9e27, 0x6332082a, 0x64756f6c,
0x6e79732d, 0x6f630763, 0x67616c6c, 0x58430f65, 0x2df48205, 0x6f662d73, 0x650e6b72, 0x65736172, 0xc9442d72, 0x66042506, 0x0c656361, 0x2d270483,
0x666f7270, 0x74656c69, 0x742405fd, 0x16656572, 0x26062e42, 0x6f6e6e61, 0x82746174, 0x702d3542, 0x0c73756c, 0x2d736167, 0x696c7963, 0x7265646e,
0x6572670d, 0x2d204f82, 0x2005fc5c, 0x05d1460c, 0x2005c86e, 0x820c850e, 0x74652520, 0x0f676e69, 0x68290e85, 0x73646e61, 0x6e776f64, 0x220f8a0d,
0x850a7075, 0x616d230d, 0xf569656c, 0x24a6860c, 0x61656c0b, 0x20648664, 0x09264510, 0x2005a046, 0x83108a0f, 0x6d0626a0, 0x656b7261, 0x08626572,
0x0a241383, 0x7263696d, 0x2c053f53, 0x766f6d0b, 0x65722d65, 0x657a6973, 0x590b8a13, 0x70270885, 0x6f2d7761, 0x5d0b6666, 0x6d25054f, 0x73756e69,
0x830b850a, 0x70032449, 0x8207746f, 0x227b8203, 0x66730b78, 0x70290592, 0x1174726f, 0x70616873, 0x06b04165, 0x29832d20, 0x11851220, 0x8406ff4c,
0x85142012, 0x086a4812, 0x39861484, 0x83068254, 0x55102039, 0x4f8608cc, 0x108f1820, 0x2007f141, 0x21188414, 0xec557270, 0x202d8605, 0x8714931c,
0x73052831, 0x79617270, 0x1874730b, 0x20080c50, 0x480b8a13, 0x742d0813, 0x2d747365, 0x65627574, 0x7865740b, 0x06174374, 0x75740d25, 0x442d656e,
0x082b073e, 0x74726163, 0x66666f2d, 0x8368630b, 0x61672509, 0x1874746e, 0x73320b85, 0x74746163, 0x6c707265, 0x682d746f, 0x69627865, 0x18850e6e,
0x6d697435, 0x6e696c65, 0x69640765, 0x726f6373, 0x69660c64, 0x4a2d656c, 0x0a23062f, 0x6a6e616c, 0x6321057e, 0x2f0a890c, 0x78047070, 0x086c6d61,
0x646e6162, 0x706d6163, 0x250c1e7e, 0x73756c70, 0x97836906, 0x62077328, 0x742d776f, 0x47186569, 0x722009bb, 0x65224e82, 0xac7d6310, 0x73752207,
0x25ae8364, 0x616c660d, 0x73826873, 0x652d6430, 0x6f036579, 0x70057261, 0x6f6e6169, 0xae4c7717, 0x08864c06, 0x61722d25, 0x4c796e69, 0x6e230920,
0x8579776f, 0x79082513, 0x792d6e69, 0x0b2c5e82, 0x65776f74, 0x65622d72, 0x0a686361, 0x66240b85, 0x0d657269, 0x4a067548, 0x643e0690, 0x6809616e,
0x75626d61, 0x72656772, 0x6e6f6707, 0x616c6f64, 0x626e6905, 0x7212786f, 0x4a186f65, 0x10200e8f, 0x69411287, 0x4e0b2007, 0x320806fd, 0x656d6f68,
0x67617409, 0x6165682d, 0x73057472, 0x6c6c756b, 0x6c6f7305, 0x610c6469, 0x6d72616c, 0x6f6e732d, 0x0a657a6f, 0x79626162, 0x6775622d, 0x820e7967,
0x826b2098, 0x06c6489f, 0x6f620425, 0x1811626d, 0x1808f948, 0x20079740, 0x06a1490c, 0x73229f82, 0x41180f74, 0x886908d1, 0x63052a05, 0x736e696f,
0x6f72630b, 0x05205b70, 0x640f6528, 0x6c657665, 0x5782706f, 0x616f6234, 0x640e6472, 0x6f6e2d6f, 0x69642d74, 0x72757473, 0x0e8d1262, 0x666f2d2a,
0x6f640666, 0x6e616275, 0x21091f7c, 0xb57b6564, 0x7b182009, 0x652508b5, 0x74696378, 0x08ce7b65, 0x77660b21, 0x732105e6, 0x0fa37674, 0x78657424,
0x9e440e74, 0x06875006, 0x72670828, 0x65696461, 0x0570746e, 0x20f08605, 0x075a6910, 0x69077375, 0x1087086b, 0x04259e83, 0x656b756e, 0x05415f0a,
0x756c7023, 0x065b5f67, 0x1e830a83, 0x75700728, 0x73696c62, 0xa6420d68, 0x632d2a06, 0x6b636f6c, 0x626f7205, 0x0887756f, 0xfc5c7220, 0x30392a05,
0x61637307, 0x72656e6e, 0x057e5706, 0x5f541020, 0x652d2509, 0x7974706d, 0x3805b053, 0x742d7469, 0x736e6172, 0x05726566, 0x74696e75, 0x70750679,
0x65746164, 0x05754f0d, 0x3006e050, 0x676e6107, 0x72616c75, 0x6c6f6405, 0x65047962, 0x2d04826d, 0x706d616c, 0x6e656d11, 0x6f642d75, 0xf97c6e77,
0x21118408, 0xde627075, 0x6f6e2308, 0xaa606574, 0x8c152008, 0x08d5470d, 0x656c7024, 0x5a420f78, 0x073a4c06, 0x08d25618, 0x69646524, 0x2e4c0e74,
0x65643605, 0x72676163, 0x610d6d61, 0x692d6c6c, 0x756c636e, 0x65766973, 0x229c8609, 0x490e736a, 0x8f840539, 0x786f6222, 0x6c240e86, 0x2d746665,
0x0f200e82, 0x72231d85, 0x84686769, 0x0667490f, 0x1c82ab82, 0x7361083b, 0x69726574, 0x62086b73, 0x2d626d6f, 0x0966666f, 0x746f6f62, 0x61727473,
0x067f4770, 0x20060246, 0x8746180e, 0x6c662309, 0x4518776f, 0x9e4b07ec, 0x630e2105, 0x65203982, 0x2808ca75, 0x6e6f6308, 0x74636174, 0x07fc4b73,
0x706d6524, 0x177f7974, 0x25758206, 0x7261650d, 0x84626874, 0x66662205, 0x05ee4b0b, 0x0b22eb84, 0x45887965, 0x0b840f20, 0x09de4518, 0x82661421,
0x07a059ac, 0x21074441, 0x34446607, 0x660c2c05, 0x2d646e69, 0x6c706572, 0x44656361, 0x83420661, 0x420b2006, 0x662006a8, 0x11209482, 0x2708b677,
0x622d6567, 0x6b616572, 0x2e07c642, 0x636c6970, 0x06776f72, 0x61726167, 0x850b6567, 0x6f2d2506, 0x0b6e6570, 0x2006c575, 0x4c598266, 0x6b240748,
0x0d706565, 0x27076f74, 0x6f746f68, 0x65680f73, 0x2d2ad482, 0x666c6168, 0x6c75662d, 0x0f890a6c, 0x0a891220, 0x61085355, 0x224206d4, 0x68042508,
0x086b6f6f, 0x2d260483, 0x0866666f, 0xcf826e69, 0x79746922, 0x24091070, 0x66697773, 0x09107074, 0x70797423, 0x05107065, 0x8207c56f, 0x6c0c2136,
0x2307126f, 0x146e6f2d, 0x18630c8b, 0x6f6c3108, 0x702d6b63, 0x65747461, 0x6c046e72, 0x15706f6f, 0x460c7d6e, 0x856e08d7, 0x086b410b, 0x69616d32,
0x786f626c, 0x64656d0b, 0x6c616369, 0x6761622d, 0x4a08e043, 0x18200743, 0x8707f143, 0x093d6c10, 0x676e6921, 0x4f8805f5, 0x2906aa5e, 0x776f6410,
0x616f6c6e, 0x10862d64, 0x65680c24, 0x0c87706c, 0xa5550e20, 0x310e8705, 0x6d706e03, 0x74756e03, 0x74636f08, 0x61726761, 0x3a4d106d, 0x6f792906,
0x622d7475, 0x1279646f, 0x6625108b, 0x65746f6f, 0x7a128c72, 0x18200592, 0x732c258b, 0x62656469, 0x6c2d7261, 0x19746665, 0x72251893, 0x74686769,
0x0565490d, 0x54462d20, 0x82082005, 0x2281820d, 0x87106e6f, 0x08434f08, 0x6c69702e, 0x0672616c, 0x74736970, 0x70106c6f, 0x6406ec68, 0x9c420d9c,
0x700c2206, 0x06c74172, 0x49836920, 0x20051864, 0x073b412d, 0x65720526, 0x07746361, 0x74292282, 0x0e747261, 0x69776572, 0x089e456e, 0x68720728,
0x75626d6f, 0x07860f73, 0x22085f88, 0x6f626f72, 0x61762d74, 0x6d757563, 0x6e757203, 0x6165730a, 0x2d686372, 0x06626577, 0x766f6873, 0x850a6c65,
0x6f2d2406, 0x4e096666, 0x3221061a, 0x20098767, 0x22098833, 0x860b6734, 0x7368241d, 0x8a106170, 0x832d200b, 0x730929d4, 0x66776f6e, 0x656b616c,
0x2607714c, 0x6d6d6f63, 0x4c117469, 0x0d850671, 0x6e652d24, 0x11901764, 0x6f6c2d26, 0x136c6163, 0x1384178d, 0x138d1820, 0x78656e23, 0x252c9474,
0x72617473, 0x2c8d1e74, 0x2d201384, 0x10203289, 0x2007a65e, 0x06c86277, 0x21820720, 0x7569642b, 0x7673036d, 0x61740867, 0x20c78467, 0x2508830a,
0x6f6d6572, 0xe05a6576, 0x064c5507, 0x69740524, 0x1482646c, 0x6165723a, 0x65727573, 0x6568632d, 0x740d7473, 0x6b637572, 0x6172742d, 0x72656c69,
0x08059456, 0x72617023, 0x656c6c61, 0x69760f6c, 0x732d7765, 0x65757165, 0x6169746e, 0x61770f6c, 0x6e696873, 0x616d2d67, 0x35078263, 0x65770765,
0x63617062, 0x6977076b, 0x74656764, 0x69770473, 0xa1457569, 0x06bf4506, 0x13646c22, 0x260ccf45, 0x622d646c, 0x921b786f, 0x087c4613, 0x8209b24f,
0x463f882a, 0x3f8c0600, 0x8c44138c, 0x0d214608, 0x14646c22, 0x5682108f, 0x931c7821, 0x08ef4614, 0x75211c85, 0x20808470, 0x820d8c11, 0x19782112,
0x2c431190, 0x61632508, 0x6c65636e, 0x5305874a, 0x12270657, 0x74736567, 0x18657275, 0x2207054e, 0x88706174, 0x77732312, 0x18837069, 0x8e6e7721,
0x20da8312, 0x85388713, 0x69722525, 0x10746867, 0x7522138d, 0x10870b70, 0x16205682, 0x77210b88, 0x206d8a6f, 0x82168b0f, 0x0d380826, 0x626d7568,
0x622d656c, 0x6c646e75, 0x696b0b65, 0x74736b63, 0x65747261, 0x656e0772, 0x696c6674, 0x6e6f0778, 0x746f6e65, 0x65700965, 0x63736972, 0x0465706f,
0x72656275, 0x26072d5a, 0x69646172, 0x551d7375, 0x62210f4a, 0x96581861, 0x251d980a, 0x74706d65, 0x3b971c79, 0x6c756624, 0x1c971b6c, 0x776f6c23,
0x581b971e, 0x1f2005bc, 0x75261e97, 0x6f6e6b6e, 0xf7476e77, 0x6c70230a, 0x9e4e7375, 0x20098305, 0x064a4713, 0x696c6125, 0x502d6e67, 0x138d05fe,
0x64696d25, 0x7e656c64, 0x2785075f, 0x706f7423, 0x23388612, 0x7473696c, 0x2005e24a, 0x07964773, 0x6f757134, 0x6f2d6574, 0x0a6e6570, 0x64697267,
0x72616c2d, 0xd87a6567, 0x666f2806, 0x756d0566, 0x72636973, 0x0f82064c, 0x61740824, 0x8b832d62, 0x8307a659, 0x590c200b, 0x6923079b, 0x8773756e,
0x756d2418, 0x5c146574, 0xda4b0b2c, 0x22148707, 0x4d726f6d, 0x04250959, 0x6f636174, 0x06104e0e, 0x2006a845, 0x200e8506, 0x05fc4506, 0x06850e20,
0x4907c442, 0x924606a8, 0x61043307, 0x0d6d6f74, 0x6c696563, 0x2d676e69, 0x6867696c, 0x7e4d1174, 0x61622405, 0x82732d72, 0x656b235d, 0x11851264,
0x65202282, 0x08201287, 0x2007e949, 0x87088710, 0x640d2360, 0x4f4a6369, 0x06465509, 0x0b303122, 0x2306a14b, 0x6e65706f, 0x8207b87c, 0x737529ba,
0x07636974, 0x64616f6c, 0x0a317f82, 0x6b636f6c, 0x7365722d, 0x6e057465, 0x616a6e69, 0x51a68710, 0xd746085a, 0x5c72880c, 0x2d240819, 0x0766666f,
0x2d243e82, 0x0a6c6c61, 0xce520783, 0x89102005, 0x05eb5e0a, 0x10830820, 0x66656c24, 0x08870f74, 0x29852d20, 0x0f880e20, 0x67697224, 0x27847468,
0x6e6f6e24, 0x17830965, 0x10201284, 0x4906064b, 0x0e25083e, 0x6e676973, 0x083c512d, 0x0e840920, 0x78657424, 0x85460a74, 0x20938206, 0x0592410b,
0x6f722d25, 0x570d746f, 0x2d3906bd, 0x6a6f6d65, 0x75730669, 0x74696d6d, 0x6f77730b, 0x632d6472, 0x73736f72, 0x05b5450a, 0x7361662c, 0x61790674,
0x72656d6d, 0x0b826308, 0x0829db83, 0x706c6568, 0x786f622d, 0x0a2c4c0f, 0x6c75662a, 0x6177056c, 0x0a736576, 0x2405db4d, 0x6c6c6562, 0x210a850b,
0xc582696c, 0x6e610c33, 0x696f7264, 0x65682d64, 0x630e6461, 0x6b636568, 0x07b6412d, 0xda541320, 0x642d240d, 0x8f6e776f, 0x656c2313, 0x68457466,
0x6f632706, 0x70616c6c, 0x46416573, 0x8e112005, 0x7075213c, 0x1a551186, 0x8d4c8405, 0x01611811, 0x2023860a, 0x46a18372, 0x12860657, 0x0970752c,
0x6b6f6f62, 0x636f6c2d, 0x09880e6b, 0x706f2d39, 0x62136e65, 0x612d7375, 0x63697472, 0x74616c75, 0x652d6465, 0x8f15646e, 0x72662513, 0x11746e6f,
0x64251583, 0x6c62756f, 0x23ec8365, 0x0a72656b, 0x73261183, 0x6f6f6863, 0x0a84086c, 0x18646921, 0x25082657, 0x72706f67, 0xdc4e166f, 0x656d2706,
0x69726574, 0x1342676e, 0x54169006, 0x172005d7, 0x70202d8f, 0x61229783, 0x178f146c, 0x6f707336, 0x61630874, 0x62616e6e, 0x630f7369, 0x632d7261,
0x65766e6f, 0x9b82c482, 0x0f830a20, 0x74736526, 0x0d657461, 0x68280a83, 0x68637461, 0x6b636162, 0x70261884, 0x756b6369, 0x18830870, 0xad827320,
0x4e821384, 0x73747223, 0x28138207, 0x6e617661, 0x74636304, 0x06565176, 0x6e6f6425, 0x43137475, 0x0b8405ac, 0x114d2d20, 0x0bc04306, 0x092a1286,
0x6c696863, 0x6f682d69, 0x09850c74, 0x20056345, 0x230c860a, 0x0c646c69, 0x26052254, 0x63617262, 0x850a7365, 0x6174240c, 0x820c7367, 0x6f732cbd,
0x6c2d656c, 0x04656e69, 0x18726f63, 0x220aa34e, 0x18666863, 0x2109964e, 0x4e186e63, 0x65220aa3, 0x19896874, 0x8a706a21, 0x726b2319, 0x78510d77,
0x69732108, 0x0bf24e18, 0x64777423, 0xee4d180f, 0x6c632a07, 0x69737361, 0x69640a63, 0x066d6370, 0xe3820620, 0x79656b23, 0x614d1816, 0x06f44a0e,
0x16841420, 0x4508c056, 0x0b250505, 0x2d726165, 0x08048268, 0x676e6922, 0x656c6508, 0x6e616870, 0x76650a74, 0x62746e65, 0x65746972, 0x6f6f660e,
0x72632d64, 0x7373696f, 0x082e1982, 0x6b726f66, 0x7466696c, 0x65756604, 0x6a47076c, 0x4d102006, 0x6128064d, 0x796c616e, 0x73636974, 0xa0821088,
0x82747321, 0x2a411837, 0x666f380b, 0x69680f66, 0x642d6867, 0x6e696665, 0x6f697469, 0x6f680e6e, 0x182d656d, 0x59081861, 0x612305d2, 0x5b6f7475,
0x0b200551, 0xb0861e84, 0x52616c21, 0x672106e7, 0x09f3526f, 0x6c09723c, 0x2d617661, 0x706d616c, 0x64656c09, 0x7274732d, 0x6c067069, 0x656b636f,
0x06850f72, 0x2308ae4d, 0x70616d12, 0x53068c7b, 0x6d2908b2, 0x6f727465, 0x656d6f6e, 0x2009880e, 0x23c8822d, 0x696d086b, 0x2d3dfb82, 0x6d056473,
0x72657869, 0x766f6d0a, 0x722d6569, 0x086c6c6f, 0x6873756d, 0x6d6f6f72, 0x49088710, 0x6e2708d2, 0x65746e69, 0x416f646e, 0x04220695, 0x2e82756e,
0xdd827020, 0x726f703c, 0x65701274, 0x646f6972, 0x742d6369, 0x656c6261, 0x326f632d, 0x70697004, 0x04831165, 0x69642d23, 0x0d5a1873, 0x510f2008,
0x73200554, 0x7423c483, 0x8d75652d, 0x6b75210f, 0x73250f8e, 0x63697204, 0x23048265, 0x7304676e, 0x09216c82, 0x20838273, 0x32fb832d, 0x796f7309,
0x7561732d, 0x73136563, 0x646e6174, 0x41647261, 0x12200a7b, 0x230dd25d, 0x302d322d, 0x3322128f, 0x128f312d, 0x12913520, 0x12823720, 0x420a7a67,
0x1021069e, 0x056f5a74, 0x82702d21, 0x6f772b93, 0x740e6472, 0x67756f68, 0xa05c7468, 0x8d162006, 0x09dd660e, 0x6361722d, 0x6461706b, 0x746c7515,
0x422d6172, 0x0d230e30, 0x846e6176, 0x6e652551, 0x0b726567, 0x75270d83, 0x696c6974, 0x82067974, 0x7369360b, 0x69760868, 0x2d6f6564, 0x77046433,
0x046c6c61, 0x70706d78, 0x10f95d1d, 0x5e0b4f66, 0x148b082c, 0x82073250, 0x066f2b42, 0x69747261, 0x61097473, 0xc9826c74, 0x6e616930, 0x757a6105,
0x620a6572, 0x656b7361, 0x22826274, 0x62181920, 0xba4c1075, 0x981c2007, 0x312d2219, 0x201c9a30, 0x201c9b32, 0x201c9b33, 0x201c9b34, 0x201c9b35,
0x201c9b36, 0x201c9b37, 0x221c9b38, 0x411f3039, 0x61251904, 0x7472656c, 0x491f9921, 0x072806c7, 0x63746962, 0x116e696f, 0x09c65f18, 0x12201986,
0x095b5c18, 0x27077341, 0x6f6c6306, 0x10726576, 0x5507505f, 0x142007b0, 0x860c865c, 0x560e203f, 0x72200673, 0x25057c61, 0x6f6f6404, 0x04830b72,
0x2105d561, 0x0b840964, 0x65706f2b, 0x6166076e, 0x666f2d6e, 0x05f44c66, 0x28066b4e, 0x6e696607, 0x65636e61, 0x051e570c, 0x2205a944, 0x826c660a,
0x702d2a45, 0x0d6e616c, 0x75726f66, 0x083c546d, 0x6c6f6723, 0x075a4266, 0x6d6f6834, 0x75670f65, 0x61662d79, 0x73656b77, 0x73616d2d, 0x14830c6b,
0x2007a869, 0x080c840a, 0x61656821, 0x68077472, 0x742d746f, 0x68046275, 0x09756c75, 0x2d656369, 0x61657263, 0x6d69096d, 0x83656761, 0x6b063794,
0x74617261, 0x616c0765, 0x75627964, 0x6f6e0867, 0x6f626574, 0xb9766b6f, 0x65723706, 0x6e727574, 0x6b6f700a, 0x632d7265, 0x05706968, 0x70616873,
0x05840d65, 0x2008085b, 0x2a188273, 0x6568772d, 0x730c6c65, 0x8263636f, 0x6966252a, 0x0c646c65, 0x200b526c, 0x220c8511, 0x412d666f, 0x7321064d,
0x08216c09, 0x5105fd6b, 0x0e200807, 0x230a1344, 0x16786f62, 0x83112244, 0x2a258bb9, 0x0666666f, 0x69776f74, 0x520f676e, 0x226c063f, 0x06a56607,
0x2d6b3422, 0x13204982, 0x2d05e243, 0x75706e69, 0x6e612d74, 0x6e6e6574, 0x138b1561, 0x6d6f6329, 0x656e6f70, 0x8b10746e, 0x64682415, 0x8b12696d,
0x84732010, 0x7616250c, 0x2d776569, 0x4808c266, 0x052e0728, 0x6a657576, 0x61780773, 0x6972616d, 0x07860f6e, 0x089e5318, 0xbb747920, 0x72632e06,
0x6f746165, 0x74732d72, 0x6f696475, 0x2216870e, 0x826d6167, 0x8f6d18c5, 0x72673508, 0x0870756f, 0x75636361, 0x74666f73, 0x72696107, 0x74726f70,
0x4a065f4f, 0xd75e0848, 0x4a172009, 0xbb470e4d, 0x4a178607, 0x2f89061c, 0x865f1520, 0x086b5a0b, 0x7561112a, 0x6e656d67, 0x2d646574, 0x6c27a582,
0x09797469, 0x82646162, 0x6f742c98, 0x6162086e, 0x61626573, 0x870c6c6c, 0x622d3008, 0x620b7461, 0x6c74746f, 0x69772d65, 0x4b0d656e, 0x2743051d,
0x84152006, 0x6f62240d, 0x82692d78, 0x6d722850, 0x61696465, 0x820a6574, 0x73732315, 0xeb826b2d, 0x0a860c20, 0x67696e24, 0x17867468, 0x77617024,
0x17850b6e, 0x65757124, 0x16866e65, 0x6f6f7223, 0x252e866b, 0x68736962, 0x5d18706f, 0x70250a8a, 0x65736c75, 0x09b65617, 0xf3500f84, 0x07d24308,
0x20071642, 0x23108715, 0x74786574, 0x2008e747, 0x8715941d, 0x63052a44, 0x656e6172, 0x72756307, 0x18b6846c, 0x21089558, 0x96497464, 0x7a6b2309,
0x57180f74, 0x895308ee, 0x07bf4d05, 0x06322208, 0x6b636f64, 0x640e7265, 0x62726f6f, 0x2d6c6c65, 0x65646976, 0x7465086f, 0x65726568, 0x65086d75,
0x05637379, 0x08871020, 0x8308e353, 0x60732010, 0x142006fe, 0xbe4d0c8b, 0x69662408, 0x442d656c, 0x0e2007b0, 0x2006284e, 0x0512796e, 0x4d181020,
0xa2420730, 0x670c2607, 0x67617261, 0x05206565, 0x61670b23, 0x250b8275, 0x74706d65, 0x0b850a79, 0x6c756624, 0x0a85096c, 0x776f6c2b, 0x616c670a,
0x772d7373, 0x27fc8269, 0x70617267, 0x136c7168, 0x250e5c47, 0x786f622d, 0xdd83680b, 0x702d7926, 0x0d6b6375, 0x73250b86, 0x6b636974, 0x058f4473,
0x656c6125, 0x440a7472, 0x70250578, 0x0673756c, 0x2eae826a, 0x6c087972, 0x62656669, 0x0d796f75, 0x4278696d, 0x0c250970, 0x6974616e, 0x062c5576,
0x6e6f0b23, 0x070c4865, 0x61700735, 0x6f657274, 0x6170066e, 0x6c617079, 0x61657005, 0x5e166563, 0x72200531, 0x1805165a, 0x2008ab5a, 0x18168c15,
0x2507b35a, 0x65697004, 0x04830a72, 0x72632d2f, 0x09656e61, 0x65706970, 0x61656c2d, 0x05c3556b, 0x700c6e25, 0x5679616c, 0x08370781, 0x696d6572,
0x7265646e, 0x6f6f720c, 0x65732d6d, 0x63697672, 0x82730a65, 0x667325ce, 0x6563726f, 0x4807f674, 0x0521062b, 0x37908274, 0x68740e68, 0x6f6d7265,
0x74617473, 0x786f622d, 0x61727407, 0x726f7463, 0x2e07a56b, 0x696c6c65, 0x0f657370, 0x74726976, 0x436c6175, 0x14200765, 0x410b056a, 0x148607ac,
0x18050d6a, 0x85083a64, 0x06884c29, 0x65771122, 0x2505fa69, 0x72727568, 0xd3826369, 0x30084044, 0x72616568, 0x6c610574, 0x056e6569, 0x69766e61,
0xe86a186c, 0x18312011, 0x2012986a, 0x22139235, 0x47183037, 0xe443106f, 0x62092306, 0x705b6465, 0x18122005, 0x87091568, 0x861520ab, 0x05345212,
0x13201587, 0x0af86718, 0x6e22138f, 0xf9666e6f, 0x86142008, 0x69722427, 0x4d746867, 0x1486088c, 0x706f7422, 0x5d081141, 0x65230867, 0x44746964,
0x8d440a08, 0x630f270c, 0x6f736e6f, 0x7b58656c, 0x69662108, 0x63320c82, 0x61706d6f, 0x660a6572, 0x2d657269, 0x63757274, 0x41430a6b, 0x656b2306,
0x0a891279, 0x29089558, 0x11757067, 0x656d6f68, 0x0444632d, 0x73752807, 0x6e690e64, 0x44786f62, 0x535f084c, 0x756c2209, 0x05965161, 0x616d7326,
0x6d107472, 0x085c4618, 0x696d2d26, 0x0f73756e, 0x7033108a, 0x0e73756c, 0x656c6170, 0x2d657474, 0x74617773, 0x4b0e6863, 0x07260dfe, 0x6b636970,
0xf17b7861, 0x24ed8308, 0x6d65720e, 0x4d30826f, 0x072806e7, 0x73756173, 0x10656761, 0x41089459, 0x112006a6, 0x29064d51, 0x6c6c6563, 0x72616c75,
0x1190312d, 0x11903220, 0x8f173321, 0x244d8635, 0x68737303, 0x0edc7417, 0x7408f341, 0x1a470ce4, 0x6f742808, 0x0d68746f, 0x67617274, 0x16200953,
0x3710634b, 0x63656863, 0x6d610c6b, 0x6e6f7a61, 0x656c612d, 0x61046178, 0x03686372, 0x0e21f482, 0x06f46862, 0x2305b766, 0x73756209, 0x18051e5e,
0x8607b967, 0x07625f4c, 0x616d6923, 0x05135067, 0x6d696c2d, 0x6973756f, 0x630a656e, 0x83647261, 0x62752135, 0x2706f25c, 0x6d616964, 0x0b646e6f,
0x68241885, 0x74726165, 0x73240b86, 0x65646170, 0x0a936618, 0x78657424, 0x374a1174, 0x06fb5a09, 0x2d500f20, 0x756d2905, 0x6c69746c, 0x13656e69,
0x2405cc49, 0x6964652d, 0x08c04974, 0x676f6323, 0x7e5f1873, 0x079b410c, 0x65640a2b, 0x2d687461, 0x72617473, 0x790a8912, 0x642c085a, 0x61696265,
0x6566066e, 0x61726f64, 0x23058e55, 0x6f646e75, 0x2306294a, 0x706d616c, 0x83071554, 0x660e266e, 0x616d726f, 0x060a7674, 0x66077332, 0x62656572,
0x67086473, 0x2d657461, 0x09646e61, 0x6e200884, 0x12850982, 0x726f6e22, 0x74210887, 0x211b8407, 0x2385726f, 0x1a887820, 0x6f782608, 0x65670672,
0x6f6f746e, 0x6f6c670b, 0x6d2d6562, 0x6c65646f, 0x6d616806, 0x0972656d, 0x656d6f68, 0x636f6c2d, 0x05904f6b, 0x2d2f0983, 0x6e65706f, 0x6e696c0a,
0x6d2d7875, 0x42746e69, 0x612505fb, 0x7472656c, 0x281f840d, 0x73657571, 0x6e6f6974, 0x0a564f13, 0x7369642d, 0x636e6174, 0x696d0465, 0x83096964,
0x702d2904, 0x0374726f, 0x1273616e, 0x2b06c646, 0x7274732d, 0x74676e65, 0x18312d68, 0xcc461291, 0x202b9105, 0x202b9132, 0x202b9732, 0x202b9133,
0x202b9733, 0x202b9134, 0x202b8534, 0x239c9014, 0x1c66666f, 0x5d181493, 0x1c910885, 0x2a05695f, 0x616c700a, 0x70732d79, 0x18646565, 0x24095941,
0x74696465, 0x05e94f0b, 0x63796325, 0x8509656c, 0x2064820b, 0x20098608, 0x241e866e, 0x65656c73, 0x0df44f70, 0x0d756122, 0x732e2485, 0x646e6174,
0x72067962, 0x69626261, 0x455c1474, 0x077c420b, 0x7d731021, 0x2d2707e0, 0x696c7075, 0x610b6b6e, 0x2d20066d, 0x092a6b82, 0x63616c73, 0x7261776b,
0x98551365, 0x0bef4206, 0x7473092a, 0x2d6d6165, 0x0c786f62, 0x09540982, 0x4c348205, 0x73290611, 0x63726165, 0x61740968, 0x06014567, 0x4608ff64,
0x0d200544, 0x34820f89, 0x4407a55b, 0x0b220676, 0x78827274, 0x75056757, 0x6925059a, 0x6e6f6974, 0x21168211, 0x0a84736e, 0x616d2d28, 0x64656b73,
0xc659740c, 0x72642505, 0x0a726579, 0x72200c84, 0x0d259183, 0x65646976, 0x072c4d6f, 0x0d850b20, 0x616d6924, 0x1f4c6567, 0x74732806, 0x6c696261,
0x83617a69, 0x770b2c57, 0x2d6c6c61, 0x6e6f6373, 0x8a106563, 0x662d250b, 0x1374616c, 0x8c47108b, 0x770f2406, 0x42696669, 0x15200aab, 0x24420f8e,
0x23158f06, 0x6b636f6c, 0x32203a8e, 0xb7423a8e, 0x8d142006, 0x2d32213a, 0x33203a92, 0xc6423a8e, 0x203a8e06, 0x203a9333, 0x423a8e34, 0x758d07d5,
0x3a843420, 0x148d1b20, 0x66186120, 0x1a200b1f, 0xa4831b8d, 0x2007ef42, 0x231a8d11, 0x1966666f, 0xae581190, 0x43198e08, 0x0f240518, 0x2d6e6970,
0x46183782, 0x0f83090f, 0x0d241b85, 0x72616873, 0x21085762, 0x1652740d, 0x51b08406, 0xa94708b3, 0x0882460b, 0x4b059742, 0x613108ef, 0x65626f64,
0x676e610b, 0x612d656c, 0x65747563, 0x240b850c, 0x7574626f, 0x26188773, 0x68676972, 0x6f610e74, 0x2d2507ca, 0x79616c70, 0x05554d16, 0x6c707324,
0x91767469, 0x06ff570a, 0x6d661685, 0x75612408, 0x4c6f6964, 0x1420050a, 0x21075f49, 0x46183031, 0x148809ac, 0x14933220, 0x14933320, 0x14933420,
0x14933520, 0x14933620, 0x14933720, 0x14933820, 0x148a3920, 0xde5c1720, 0x20bf890c, 0x6f178711, 0xf552080d, 0x44118808, 0x19880771, 0x89068e5c,
0x62082845, 0x68646475, 0x186d7369, 0x41094970, 0x0f2005ad, 0x25098f47, 0x73617265, 0x0f890d65, 0x79656b22, 0x230abc47, 0x6b636f6c, 0x6f231c8a,
0x891a6666, 0x0fbe622a, 0x7333558a, 0x646e756f, 0x7268630c, 0x69747369, 0x74696e61, 0x83630579, 0x720b204b, 0xe7570a64, 0x20918506, 0x05e75714,
0x3a0d4c42, 0x726f6307, 0x61766f64, 0x79726309, 0x69676e65, 0x6307656e, 0x61637075, 0x4a0a656b, 0x74230543, 0x8863612d, 0x6364210a, 0x4b09444e,
0x0f8905f8, 0x7078653c, 0x0974726f, 0x6b736564, 0x6d616c2d, 0x69640b70, 0x702d6373, 0x6579616c, 0x5c650c72, 0x207a8505, 0x550c8b14, 0x3e830825,
0x6e656e24, 0x08870c74, 0x6f622d29, 0x69660d78, 0x632d656c, 0x15200798, 0x39880d8c, 0x72696628, 0x73616265, 0x104b0d65, 0x20658506, 0x640d8c15,
0xf55d0851, 0x6f623010, 0x6f660878, 0x61746e75, 0x670a6e69, 0x82676f6f, 0x69662370, 0x6b180c74, 0x15200b63, 0x2d200c8b, 0x075e6b18, 0x61680833,
0x682d6472, 0x68147461, 0x70646165, 0x656e6f68, 0x09184273, 0x14820c20, 0x58747221, 0x0c8b07b0, 0x6827b888, 0x75646e69, 0x4e6d7369, 0x6d240587,
0x73756e69, 0x2505b748, 0x73756c70, 0x0a53690d, 0x053b4405, 0x0d850c20, 0x1420da85, 0x15440c8b, 0x73692908, 0x076d616c, 0x6164756a, 0x56185282,
0x9d460935, 0x6c092106, 0x07066c18, 0x09881220, 0xb165c988, 0x06e45705, 0x24051649, 0x636f6c63, 0x1354186b, 0x250d8208, 0x6d096573, 0x17477061,
0x830b2005, 0x20588609, 0x830b8308, 0x830a20b0, 0x20a08508, 0x580a8912, 0x6d22084a, 0x266d7461, 0x65642c05, 0x6e676973, 0x64656d05, 0x18126c61,
0x24086552, 0x6e79642d, 0x290d8261, 0x6f6d1173, 0x6f74696e, 0x04432d72, 0x90162008, 0x732d2a11, 0x0f726174, 0x73756f6d, 0x09704165, 0x756d0631,
0x6e696666, 0x746f6e09, 0x7571652d, 0x88116c61, 0x07c64309, 0x706e0b23, 0x08d34d6d, 0xa4880b8a, 0x41826f20, 0x53826320, 0x6c697527, 0x676e6964,
0x85d7830a, 0x890e20f2, 0x622d3a0a, 0x7007786f, 0x6163646f, 0x700e7473, 0x72676f72, 0x2d737365, 0x63656863, 0x240e8a6b, 0x6b636f6c, 0x421d8811,
0x0f2007c2, 0x0f541188, 0x71022905, 0x65720d69, 0x64726f63, 0x20062943, 0x06b75507, 0x8a5e1220, 0x0b4b4606, 0x59831286, 0x1e890a20, 0x65730b27,
0x6f742d74, 0x27968370, 0x6f687306, 0x0b726577, 0x2d250685, 0x64616568, 0x077c6411, 0x1808d444, 0x2307e642, 0x746f6f72, 0x13223483, 0x42187473,
0x094108cb, 0x84092007, 0x61662313, 0x1f556563, 0x656d2f06, 0x2d656772, 0x6c6c6563, 0x61741073, 0x73826c62, 0x2508a041, 0x78657404, 0x04830a74,
0x78822d20, 0x0c747222, 0x75290a85, 0x63656a62, 0x6f740674, 0x282d8269, 0x6f6f7407, 0x786f626c, 0x5507860f, 0x742e08a3, 0x6e72756f, 0x6e656d61,
0x77741974, 0x72822d6f, 0x726f7427, 0x7475612d, 0x27128268, 0x74616369, 0x0f6e6f69, 0x2c08837d, 0x736f6c63, 0x75066465, 0x6165726e, 0x0622496c,
0x6e696d25, 0x490a7375, 0x7021052e, 0x290a836c, 0x656c6c6f, 0x6c616279, 0x97770c6c, 0x702d2e05, 0x646e756f, 0x69687707, 0x656c7473, 0x0505471e,
0x6406f64f, 0xd042098b, 0x91172006, 0x6874251e, 0x1f6b6369, 0x7228178c, 0x74686769, 0x6c6f622d, 0x20080867, 0x841f9218, 0x06096b38, 0x63656424,
0xcc827369, 0x27851320, 0xea830e87, 0x921b6f21, 0x08995513, 0xa68d1b8e, 0x1808ae65, 0x85086273, 0x20d6902e, 0x98178a1d, 0x861891bc, 0x9c7e1899,
0x48f18c07, 0x1b880637, 0x1c20ed84, 0x0ebe7e18, 0x1520318c, 0x32841c8f, 0xb6651586, 0x20c88706, 0x08ac651a, 0x0627e390, 0x6c6c6162, 0x850e746f,
0x08c86906, 0x7465622f, 0x78616d61, 0x6f6f620e, 0x72616d6b, 0x0ab9786b, 0xbb540e89, 0x23258808, 0x1466666f, 0x4f890c8b, 0x69617227, 0x05656c6c,
0x20078262, 0x094f706e, 0x61656824, 0x78187472, 0x732d0928, 0x08726174, 0x73736163, 0x65747465, 0x08144314, 0x20050950, 0x20bb832d, 0xd7731810,
0x21c88607, 0x108f1878, 0x26090f56, 0x72766568, 0x412d6e6f, 0x298906be, 0xaa4a1087, 0x39741808, 0x622d240c, 0x9019786f, 0x08176411, 0x75211987,
0x20288370, 0x550e8d16, 0x1e5008aa, 0x052c6006, 0x0d860c20, 0x616d7325, 0x480b6c6c, 0x61240539, 0x7472656c, 0x08fc7018, 0x20094f42, 0x8771181a,
0x72722308, 0xbb85776f, 0x2006a542, 0x251a8d13, 0x68676972, 0x13921b74, 0x87089541, 0x6c70231b, 0xbd567375, 0x68702209, 0x07d75a70, 0x15205886,
0x0a366e18, 0x2009eb58, 0x07674511, 0x2008ed52, 0x057a7d0b, 0x61727425, 0x480a6b63, 0x5a830578, 0x5d06dc79, 0x19200b21, 0x29065d48, 0x656d7563,
0x622d746e, 0xea4b786f, 0x86198d08, 0x660e2581, 0x70706f6c, 0x08594718, 0x77200e83, 0x20096371, 0x831d820c, 0x7574250e, 0x1470696c, 0x55870c8b,
0x21078777, 0x6d826f66, 0x7a69732c, 0x65642d65, 0x61657263, 0x19916573, 0x856e6921, 0x67092419, 0x73736f68, 0xaa48056d, 0x656c2406, 0x8612736e,
0x7073210b, 0x64243e82, 0x65656873, 0x2407cf56, 0x65766f6d, 0x08387711, 0x20074c4a, 0x48119019, 0x6b250844, 0x6566696e, 0x2f05840e, 0x6c696d2d,
0x72617469, 0x616c1279, 0x73726579, 0x200bd64c, 0x4812870e, 0x0a2b059d, 0x6867696c, 0x756f6874, 0x890d6573, 0x6f2d2d0a, 0x616d0a6e, 0x656c2d70,
0x646e6567, 0x2205ad70, 0x5266656c, 0x1224087b, 0x756e656d, 0x41056c64, 0xba520869, 0x0d227d06, 0x696d0728, 0x732d696e, 0x07830864, 0x73696423,
0x08234863, 0x3108e45a, 0x72697006, 0x0a657461, 0x656b6f70, 0x2d6e6f6d, 0xc8716f67, 0x68732605, 0x106c6c65, 0x06d06c70, 0x2307505d, 0x6175710b,
0x7925db82, 0x776f6c2d, 0x420b870e, 0x122605f7, 0x6c666572, 0x1e4d6365, 0x8710200b, 0x071a4d12, 0x6c720e21, 0x2d2005f2, 0x0d203285, 0x73210e87,
0x20548270, 0x06994716, 0x4306f153, 0x8c50085d, 0x20328506, 0x420d8c15, 0x158608fc, 0x616d732f, 0x73096c6c, 0x69746275, 0x73656c74, 0x88098811,
0x61742528, 0x2d656c62, 0x20056c56, 0x98461819, 0x084d4110, 0xac41198e, 0x76032305, 0x6a507368, 0x69762606, 0x6761746e, 0x0f305c65, 0x2006e042,
0x0c507b12, 0x6f632d2a, 0x76046564, 0x0c65746f, 0x32490483, 0x06dc7f08, 0x24612d20, 0x69202006, 0x250817c8, 0x72616863, 0x676e6967, 0x70697a08,
0x7369642d, 0x73610c6b, 0x74636570, 0x7461722d, 0x62056f69, 0x6c656261, 0xf8826207, 0x6e6f6f27, 0x6e61620d, 0x081a736b, 0x0d8c1020, 0x6e692d23,
0x82108d11, 0x5f0f20ae, 0x6d250946, 0x73756e69, 0x230f890e, 0x73756c70, 0x0a2c7f18, 0x8a05606d, 0x05b14a10, 0x75620923, 0x05c24967, 0x09881120,
0x8308c34f, 0x07791811, 0x6c612608, 0x61646e65, 0x05a14272, 0x7e181420, 0xab680d64, 0x091a4605, 0x65657724, 0x2288136b, 0x2d250d83, 0x69676562,
0x0a25466e, 0x7263732d, 0x736e6565, 0x0c746f68, 0x44746963, 0x1420084d, 0x09480c8b, 0x09455c08, 0x0b504a18, 0x9d450e20, 0x75712105, 0x2005bd54,
0x0742450b, 0x65796522, 0x72087e45, 0x977f0ad0, 0x20f98508, 0x4e2e8716, 0x6e241017, 0x6e696174, 0x07844d82, 0xf5822d20, 0x6f630d22, 0x73350b85,
0x74726174, 0x6e6c6404, 0x6f640661, 0x726f7463, 0x676f6403, 0x25038208, 0x6469732d, 0x88650f65, 0x6f2d240a, 0x4e0a6666, 0x0a830557, 0x0a891220,
0x3008054d, 0x74697865, 0x6e75722d, 0x6165660e, 0x65727574, 0x2088852d, 0x4a0e8d16, 0x6622082f, 0x205c6c69, 0x89122006, 0x08aa410a, 0x5a4b1284,
0x8a132005, 0x08ee560b, 0x6e616824, 0x04830964, 0x6b6f2d25, 0x840a7961, 0x65702509, 0x12656361, 0x214c0a89, 0x2b128607, 0x746e696f, 0x2d676e69,
0x6e776f64, 0x6c24128e, 0x10746665, 0x0d796718, 0x0e707526, 0x72616568, 0x2009bb5d, 0x4b0e8d16, 0x68290860, 0x6573726f, 0x656f6873, 0x0b2e7b10,
0x6f622d24, 0x108c1379, 0x2005467b, 0x23138c11, 0x6c726967, 0x2306587b, 0x656c616d, 0x0f203483, 0x0e842085, 0x0f8b1e83, 0x02241483, 0x690a7069,
0x2508cd72, 0x74696c08, 0xd9826365, 0x77731420, 0x7563260d, 0x726f7372, 0x0c767313, 0x09281385, 0x756e656d, 0x6177732d, 0x83067676, 0x085f4809,
0x7a757023, 0x4386827a, 0x14350623, 0x69676572, 0x72657473, 0x742d6465, 0x65646172, 0x6b72616d, 0x056a7b06, 0x53181820, 0x5b610ed2, 0x73042908,
0x10656661, 0x73696373, 0x73298082, 0x7475632d, 0x676e6974, 0x0551430b, 0x72642d25, 0x6c0e6761, 0x0e830909, 0x1a510f20, 0x65682608, 0x7265706c,
0x060d5a09, 0x15673523, 0x7c511873, 0x662d2e08, 0x2d6b726f, 0x66696e6b, 0x6d730465, 0x2c4f826f, 0x72616c6f, 0x776f702d, 0x73087265, 0x230a8274,
0x10786f62, 0x63420887, 0x055e4508, 0x756c7023, 0x06185673, 0x20053544, 0x2130820e, 0xec5b6567, 0x88092008, 0x260983dc, 0x632d6873, 0x82116e61,
0x42098513, 0x74210892, 0xcb4a1873, 0x86082008, 0x0f762e0b, 0x69646f7a, 0x612d6361, 0x72617571, 0x87668269, 0x6972240f, 0x860d7365, 0x234e820c,
0x10726563, 0x70260d88, 0x6f636972, 0x1e876e72, 0x6d656726, 0x0a696e69, 0x6c231e86, 0x870c6f65, 0x6269230a, 0x25876172, 0x73697026, 0x12736563,
0x73241a86, 0x74696761, 0x7282c582, 0x12870e20, 0x70225382, 0x2f876f69, 0x75617423, 0x248f8972, 0x67726976, 0x08b35d6f, 0x69686324, 0xa954646c,
0x500d8408, 0x122006df, 0x2a07ed46, 0x65707573, 0x73697672, 0x9119726f, 0x222c8612, 0x826d6109, 0x61732324, 0xbc6c646e, 0x75612408, 0x54116f74,
0x484209ab, 0x54162006, 0x244b0dbd, 0x65622308, 0x8d486c6c, 0x1811200b, 0x8708e687, 0x84122022, 0x6c732411, 0x87706565, 0x62132412, 0x4a6b6f6f,
0x1a4c0816, 0x8d122005, 0x6c702413, 0x8d147375, 0x05f84112, 0x14840b20, 0x5a460b85, 0x6465270a, 0x62097469, 0x0b467375, 0x63122905, 0x75636c61,
0x6f74616c, 0x2508577f, 0x70616309, 0x94532d73, 0x73612f05, 0x65722d68, 0x646e7566, 0x65686309, 0x52836b63, 0x2607bf6f, 0x63696c73, 0x8d312d65,
0x8d32200e, 0x8d33200e, 0x8d34200e, 0x8d35200e, 0x8d36200e, 0x8d37200e, 0x0c38210e, 0x2308a163, 0x146c6c61, 0x40410c8b, 0x6c451808, 0x20b6850b,
0x083e620e, 0x7a18bf84, 0xdf83093c, 0x7c088e4b, 0xb15105fc, 0x640a2506, 0x77687369, 0x6525f982, 0x6f640b72, 0x07a46067, 0x6f64072c, 0x656e2d74,
0x67650374, 0x03820a67, 0x61652d24, 0x22827473, 0x84059e4b, 0x8a13205d, 0x2393870b, 0x0a746502, 0x82062864, 0x891220b6, 0x0816490a, 0x6c69662c,
0x61632d65, 0x656e6962, 0xb44b1a74, 0x0b57570d, 0x1a992220, 0x84089e45, 0x6f6d2522, 0x660c6576, 0x20057e7c, 0x20e68363, 0x4f0c8b14, 0x41180871,
0x6d251121, 0x73756e69, 0x06536c0d, 0x69702d26, 0x0e68636e, 0x25080074, 0x61657270, 0x0e881864, 0x70697723, 0x0a8c5765, 0x74080b74, 0x734a053c,
0x68042f07, 0x0a6c6961, 0x696c6568, 0x74706f63, 0x6d187265, 0x3b420817, 0x200f8e06, 0x200f8e32, 0x200f8e33, 0x200f8e34, 0x2a0f8e35, 0x65680836,
0x72676178, 0x87106d61, 0x081a4108, 0x62616c29, 0x6f2d6c65, 0x88116666, 0x08e54a09, 0x715a1185, 0x8c152006, 0x08c5480d, 0x2808f66c, 0x79627572,
0x2d6e6f2d, 0x32da8272, 0x616c0773, 0x65766172, 0x616d086c, 0x646f7473, 0x87106e6f, 0x08735e08, 0x65656d26, 0x14707574, 0x0ba96518, 0x28084548,
0x776e6970, 0x6c656568, 0x4f088710, 0x5c180828, 0x5718074d, 0x0c2008c6, 0xc3821188, 0x20065546, 0x066a612d, 0x2407637f, 0x73756c70, 0x06c94b13,
0x200b244e, 0x4413860d, 0x1520050b, 0x71870d8c, 0x73072808, 0x69706f68, 0x730a7966, 0x2d616e69, 0x62696577, 0x70730c6f, 0x2d796172, 0x74746f62,
0x7308656c, 0x65657571, 0x46656567, 0x66300578, 0x2d72756f, 0x6e696f70, 0x73187374, 0x2d726174, 0xc488108a, 0x74241884, 0x65657268, 0x19202a86,
0x7e891190, 0x666d792e, 0x08796e6f, 0x69726176, 0x656c6261, 0x3807fd75, 0x697a6562, 0x77057265, 0x72657069, 0x772d7a06, 0x04657661, 0x646e657a,
0x08e96015, 0x756e6922, 0x08448018, 0x18087c5a, 0x270d9d80, 0x706c610b, 0x612d6168, 0x7820cb82, 0x62200b86, 0x63200b8a, 0x64200b8a, 0x65200b8a,
0x66200b8a, 0x67200b8a, 0x68200b8a, 0x69200b8a, 0x6a200b8a, 0x6b200b8a, 0x6c200b8a, 0x6d200b8a, 0x6e200b8a, 0x6f200b8a, 0x70200b8a, 0x71200b8a,
0x72200b8a, 0x73200b8a, 0x74200b8a, 0x75200b8a, 0x76200b8a, 0x77200b8a, 0x78200b8a, 0x79200b8a, 0x7a200b8a, 0x092a0b83, 0x6c6c7562, 0x657a6f64,
0x8b181072, 0x424d071e, 0x08214c08, 0x5a054259, 0x62590949, 0x8d861805, 0x6e77210a, 0x20064347, 0x0c41521b, 0x880d0676, 0x656c222f, 0x07805866,
0x138a2f88, 0x52081359, 0x4c850d38, 0x14931c20, 0x20107c52, 0x4a941875, 0x087c5207, 0x92181188, 0xa46c0874, 0x08b4490c, 0x3206e247, 0x7972630c,
0x6c617473, 0x6c61622d, 0x6d65056c, 0x18726562, 0x2809df7c, 0x6b726f77, 0x63616c70, 0x05a16c65, 0x567f7220, 0x66142505, 0x2d656c69, 0xaf460c86,
0x06834508, 0x74656c2b, 0x2d726574, 0x65736163, 0x25129118, 0x776f6c2d, 0x18937265, 0x70707525, 0x440d7265, 0x6a320899, 0x04617661, 0x7466796c,
0x73657208, 0x6f747369, 0x08870e72, 0x6f6e2d26, 0x10736564, 0x2f059760, 0x75646e69, 0x69727473, 0x730b6c61, 0x2d656f68, 0x6c217284, 0x290b8409,
0x6c656568, 0x6c697304, 0x2182066f, 0x09234f82, 0x48626174, 0x0a200576, 0x56430983, 0x0c230805, 0x65706174, 0x61656d2d, 0x65727573, 0x6c657409,
0x6f637365, 0x79056570, 0x6f6f6861, 0x69726f06, 0x436e6967, 0xc65e089f, 0x0872490c, 0x180a8753, 0x5308a499, 0x1a8d1187, 0x92058753, 0x08a44513,
0x5a421b87, 0x090a4a0d, 0x636f6c23, 0x1898886b, 0x880c0688, 0x72672215, 0x8a42186f, 0xe5491809, 0x07a64e08, 0x61871820, 0x7d4b1087, 0x72613208,
0x61747374, 0x6e6f6974, 0x63616211, 0x6170736b, 0x08355f63, 0x61620a2b, 0x79656c72, 0x66666f2d, 0x250a8204, 0x6162036e, 0x03820974, 0x656c7424,
0x0982656e, 0x6c6c6929, 0x64726169, 0x87620e73, 0x722d2109, 0x90184382, 0x78420a9e, 0x6f622307, 0x38486b6f, 0x6f622c08, 0x676e6978, 0x6f6c672d,
0x43166576, 0x6223088e, 0x886e616c, 0x88102023, 0x89418616, 0x61722227, 0x4078186e, 0x07f16509, 0x6e6f6326, 0x6c6f7274, 0x6d232582, 0x18617265,
0x4607ba8d, 0x632808af, 0x642d7261, 0x0c726f6f, 0x65280883, 0x7463656c, 0x07636972, 0x6b220c83, 0x14847965, 0x6c756d28, 0x6c706974, 0x14820465,
0x830d6421, 0x622d2904, 0x656c6c75, 0x11646574, 0x2d240d8c, 0x1966666f, 0x4a181190, 0x39880cb1, 0x8d08df41, 0x0796432f, 0x16951e20, 0x84082741,
0x20ff861e, 0x660c8409, 0x6122057a, 0x5a186472, 0x04250ce3, 0x74616863, 0x4b04830a, 0x0f20051b, 0x6f180a84, 0x08250919, 0x66656863, 0x2023822d,
0x05bb5016, 0x8608b655, 0x06aa5e5b, 0x7d05c84f, 0xe88209a3, 0x0b6e6929, 0x706d6f63, 0x83737361, 0x8a1320f6, 0x080a440b, 0x22067941, 0x5272656c,
0x1a200794, 0xcd481291, 0x75632708, 0x732d6562, 0xe9766163, 0x7262220a, 0x09dd4a6c, 0x6964652b, 0x65640f74, 0x6c687461, 0x2ab18279, 0x776f6c6c,
0x65641573, 0x1874656c, 0x8608e649, 0x181620b4, 0x470d7250, 0x6420088f, 0x2005c767, 0x4e07860f, 0x64210818, 0x086c476e, 0xe7761e20, 0x202a8715,
0x13ef761c, 0x41080e4d, 0x0c240f3c, 0x67617264, 0x23087e6a, 0x63656a65, 0x20087255, 0x05564b14, 0x72616d2e, 0x73612d6b, 0x726e752d, 0x0e646165,
0x18057646, 0x2108225e, 0xd9877965, 0x0a891220, 0x20080242, 0x0a8d4366, 0x69661126, 0x662d656c, 0x0a0d4218, 0x11840b20, 0x2205db44, 0x656c660a,
0x09200748, 0x70240a84, 0x0b73756c, 0x20850984, 0x4d4b1620, 0x0e2a5506, 0x16861320, 0x200b7749, 0x48138615, 0x29870d8c, 0x0b6d5f18, 0x67063108,
0x616c7469, 0x6f670362, 0x72670b67, 0x2d657661, 0x6e6f7473, 0x61680965, 0x776f6c6c, 0x0a6e6565, 0x2d746168, 0x6f646566, 0x680c6172, 0x2d706c65,
0x2006be55, 0x470c8b14, 0x6822081b, 0xf26b6d6f, 0x083c4308, 0x470d506b, 0x6c2808c7, 0x61726269, 0x732d7972, 0x76294982, 0x6d067365, 0x6f627061,
0x05395178, 0x65706f2d, 0x6f6d086e, 0x7563656c, 0x8206656c, 0x752d2390, 0x14831670, 0x732d2408, 0x6372756f, 0x6e692d65, 0x61697469, 0x65766974,
0x63617007, 0x6e616d2d, 0x67617009, 0x656e2d65, 0x88117478, 0x08684b09, 0x70281184, 0x69766572, 0x1573756f, 0x5c180d8c, 0x7023083c, 0x820f6e61,
0x5c2d2003, 0x10200ae9, 0x72250f8a, 0x74686769, 0x24108308, 0x6e776f64, 0x7108830e, 0x17840980, 0x66656c23, 0x20858274, 0x05a4576e, 0x21830c20,
0x706f7423, 0x2016832d, 0x840c870d, 0x83062045, 0x7075210d, 0x86182184, 0x703708d3, 0x6b706d75, 0x72086e69, 0x756c6c6f, 0x06736a70, 0x69726373,
0x850b7470, 0x742d2106, 0x1320d882, 0xff450b8a, 0x06544b08, 0x79656b22, 0x8207045f, 0x08ed420a, 0x756b7330, 0x632d6c6c, 0x73736f72, 0x656e6f62,
0x108f1873, 0x85082241, 0x069c4318, 0x46460e20, 0x6e692b05, 0x65646176, 0x730a7372, 0x07826970, 0x65772d29, 0x69761562, 0x652d7765, 0x13200f13,
0xd187158a, 0x546c1420, 0x6f62240f, 0x6c12646c, 0x12830d51, 0x4b181120, 0x2153089c, 0x61742508, 0x74656772, 0x2907db67, 0x6d697408, 0x6e696c65,
0x08871065, 0x1088b488, 0x78657424, 0x0d8c1574, 0x2708d145, 0x6c6f6f74, 0x2d706974, 0x870d2162, 0x6c702415, 0x87147375, 0x0b27560c, 0xdf6c0920,
0x61633905, 0x72740872, 0x726f6669, 0x75076563, 0x6f736962, 0x76117466, 0x6f656469, 0x580b5351, 0x3d410621, 0x61772307, 0xbf826c6c, 0x04290e86,
0x657a6177, 0x6172770d, 0x08544d70, 0x72770e25, 0x18636e65, 0x2208b85e, 0x18636118, 0x6e0959a2, 0x5f83079e, 0x23081d48, 0x63656863, 0x88085c47,
0x052c5515, 0xa2186686, 0xff41085a, 0x6d1e200a, 0x6d201096, 0x200bb54c, 0x201e8717, 0x0562726e, 0x4408fd51, 0x49180863, 0xa1520ac9, 0x61742208,
0x08644672, 0x7269612b, 0x13676162, 0x72616c61, 0x05cc696d, 0xfa4c4389, 0x08d84109, 0x49070e4d, 0x16200527, 0x398e0e8d, 0x545c6220, 0x850e200b,
0x4b62202a, 0x398606d0, 0x398e0e87, 0x39926320, 0x398d6320, 0x398e0e87, 0x39926420, 0x07505218, 0x0e877386, 0x9118398e, 0xad860c85, 0x86071846,
0x0f014739, 0xd3851320, 0x73926620, 0xad8d6620, 0x738e0e87, 0x39926720, 0x398d6720, 0x398e0e87, 0x39926820, 0x398d6820, 0x398e0e87, 0x39926920,
0x398d6920, 0x398e0e87, 0x39926a20, 0x398d6a20, 0x398e0e87, 0x39926b20, 0x398d6b20, 0x398e0e87, 0x39926c20, 0x398d6c20, 0x398e0e87, 0x39926d20,
0x398d6d20, 0x398e0e87, 0x39926e20, 0x398d6e20, 0x398e0e87, 0x39926f20, 0x398d6f20, 0x398e0e87, 0x39927020, 0x42076c4e, 0x0e87067d, 0x7120398e,
0x71203992, 0x0e87738d, 0x7220398e, 0x72203992, 0x0e87398d, 0x7320398e, 0x70183992, 0xad860736, 0x398e0e87, 0x430c6860, 0xb44f0665, 0x87398607,
0x20398e0e, 0x20739275, 0x87ad8d75, 0x20398e0e, 0x20399276, 0x87398d76, 0x20398e0e, 0x20399277, 0x87398d77, 0x20398e0e, 0x20399278, 0x87398d78,
0x20398e0e, 0x20399279, 0x87398d79, 0x20398e0e, 0x2039927a, 0x87398d7a, 0x08cf450e, 0x6c61622e, 0x2d746f6c, 0x6f636572, 0x16746e75, 0xe9490e8d,
0x09297f08, 0x6f682d25, 0x8e17706f, 0x2027870f, 0xb79d181a, 0x201a8711, 0x201a8916, 0x0a8f7365, 0xc85e1720, 0x4b2e920e, 0x18200b16, 0x194b2e89,
0x5d188a0d, 0x188a0dd7, 0x4e0d5d4d, 0x994709ce, 0x469d180c, 0x20608d09, 0x080e4f15, 0x2e0b6248, 0x7261630d, 0x6172622d, 0x612d656b, 0x8a0f7362,
0x656c240d, 0x83077472, 0x7365230f, 0x07831070, 0x67696c2b, 0x642d7468, 0x656d6d69, 0x85368464, 0x6f662310, 0x1e890e67, 0x24826820, 0x74220e84,
0xf55d7269, 0x213c8306, 0xf4502d74, 0x82722005, 0x2755821e, 0x69726168, 0x63107974, 0x742c0782, 0x6c65622d, 0x75632d6c, 0x1a657672, 0xf957c885,
0x074e410b, 0x1a891120, 0x20066b48, 0x4811850d, 0x1c7c0636, 0x09b74805, 0x20053961, 0x097f5f19, 0x200eb24c, 0x23198a1c, 0x776f7272, 0x0c955318,
0x1c8f1220, 0x1a707522, 0x81421291, 0x241a8908, 0x79616c70, 0x420e8d16, 0x0a6008e1, 0x202a830e, 0x4f13921b, 0x99180914, 0x57500857, 0x18838207,
0x18076a99, 0x200f0597, 0x51991815, 0x08e7580c, 0x4e0ea378, 0x6c780812, 0x6c692308, 0x5f181473, 0xed500b68, 0x69642808, 0x74656d61, 0x87107265,
0x08ce4b08, 0x76271088, 0x61697261, 0x1818746e, 0x4c0f8551, 0x642a0816, 0x2d706d75, 0x63757274, 0x5618086b, 0x0e20072a, 0x08335618, 0x676e6125,
0x8d167972, 0x08534b0e, 0x63241688, 0x0c6c6f6f, 0x72220d89, 0x0c8b1479, 0x64232f91, 0x89646165, 0x65642563, 0x106c6976, 0x0fa65618, 0x68241f89,
0x79707061, 0x099f9218, 0x73696b23, 0xea561873, 0x880d8309, 0x264388f4, 0x7475656e, 0x896c6172, 0x6f702226, 0x08b15c6f, 0x7323a989, 0x88176461,
0x6f742433, 0x5375676e, 0x6f890810, 0x6e697723, 0x8348896b, 0x08d34a0d, 0x6c736536, 0x10746e69, 0x65636166, 0x6365722d, 0x696e676f, 0x6e6f6974,
0x4405ac4f, 0x1323051f, 0x616c6966, 0x6b61077a, 0x6174240d, 0x61656c62, 0x0a84056b, 0x7a08dc44, 0x1a87117f, 0x4b07d84f, 0x0b200e84, 0x74233186,
0x4f747865, 0x3d4407ba, 0x6612280b, 0x2d646f6f, 0x60707061, 0x0425094b, 0x65737566, 0x2a04830a, 0x616c622d, 0x670e6564, 0x82676f6f, 0x6461251e,
0x64726f77, 0x3009f966, 0x65657274, 0x69762d74, 0x680d7765, 0x72617a61, 0x05ba4b64, 0xd44f7320, 0x27878e05, 0x72666906, 0x0e656d61, 0xec760685,
0x054e4d08, 0x7a697324, 0x6a602d65, 0x612d2705, 0x61757463, 0x1891176c, 0x72616c24, 0x17926567, 0x616d7325, 0x61126c6c, 0x5b870967, 0x70690425,
0x5610646f, 0x682e085e, 0x656b7361, 0x6c0a6c6c, 0x2d666165, 0xef82616d, 0x696c0929, 0x702d6b6e, 0x1873756c, 0x2d0bd85c, 0x63656863, 0x616d086b,
0x632d6874, 0x0885736f, 0x6e697322, 0x742d0885, 0x6d096e61, 0x6f726369, 0x65766177, 0x68811815, 0x0862520c, 0x6622f888, 0x0b8a1366, 0x4108c746,
0x10200e18, 0x098c7f18, 0x2005cf4c, 0x42108f18, 0x188708c2, 0x4f473120, 0x87298806, 0x20299010, 0x87298f32, 0x20299010, 0x87298f33, 0x20299010,
0x87298f34, 0x20299010, 0x87298f35, 0x20299010, 0x87298f36, 0x20299010, 0x87298f37, 0x20299010, 0x87298f38, 0x20299010, 0x87298f39, 0x08fd4f10,
0x24077941, 0x6c702d39, 0x07554a75, 0x15941d20, 0x2908e454, 0x61726170, 0x74756863, 0x09881165, 0x23086f46, 0x636e6570, 0x098f9718, 0x18701421,
0x890a6340, 0x2a148223, 0x7473696c, 0x73756d2d, 0x18166369, 0x84083e7b, 0x082b530e, 0x52428f84, 0x700d280e, 0x6174736f, 0x822d6567, 0x706d2105,
0x24091f71, 0x72656c61, 0x090d7174, 0x28053d50, 0x64617208, 0x612d6f69, 0x2208866d, 0x83066d66, 0x73752211, 0x4606850e, 0x72210871, 0x203e8275,
0x052e692d, 0x65730425, 0x830c7461, 0x086e4604, 0x622a0c83, 0x05746c65, 0x65656873, 0x5a181770, 0xaf880edc, 0xef481786, 0x626c180c, 0x6f722408,
0x87147373, 0x470c8321, 0x5d18087a, 0x138f0a86, 0x220c4c78, 0x64726f73, 0x2d20082b, 0x16201983, 0x2d251190, 0x6e65706f, 0x06015411, 0x7065722a,
0x7469736f, 0x1a79726f, 0xb8621190, 0x73032408, 0x820b6170, 0x080a4103, 0x616f7431, 0x72657473, 0x65766f2d, 0x72740b6e, 0x686b6375, 0x092a05c7,
0x6e727574, 0x6c697473, 0x09881165, 0x82081046, 0x6c742311, 0x014a1665, 0x0eb24106, 0x69760b32, 0x74617262, 0x666f2d65, 0x61771166, 0x2d686374,
0x5618118b, 0x24440a02, 0x90192005, 0x08664911, 0x735c1985, 0x5c2b860a, 0x12201285, 0x430ad249, 0x01700603, 0x69722306, 0x034d6867, 0x700f200f,
0x8385081c, 0x0f8e1720, 0x49080145, 0x742707a8, 0x61116569, 0x4d72656c, 0x16200c6f, 0x52181185, 0x15200fe6, 0x0c15b318, 0x8a08d446, 0x61722215,
0x0824476d, 0x6d6d6123, 0x054f4775, 0x72610e25, 0x57736974, 0x3308086c, 0x61656206, 0x0772656b, 0x6e656c62, 0x09726564, 0x6f6f6c62, 0x61622d64,
0x6f620d67, 0x73696e6c, 0x72632d69, 0x0b73736f, 0x61657262, 0x6c732d64, 0x13656369, 0x44410b8a, 0x09e34b08, 0x1920cc86, 0xe6491190, 0x2f198208,
0x6e746867, 0x2d737365, 0x63726570, 0x06746e65, 0x2505345a, 0x7361630d, 0x99672d68, 0x630c2607, 0x69746c65, 0x20808563, 0x0b437814, 0x1809ec49,
0x21093ca4, 0xa118656c, 0xe94a095d, 0x6d6c2010, 0x15200ad1, 0x210fd64a, 0x8d826972, 0x15941d20, 0x1f5ede88, 0x6465240c, 0x90197469, 0x08b14311,
0x28058b68, 0x6665642d, 0x746c7561, 0x2258822d, 0x931c6b63, 0x08574514, 0x2608b464, 0x72666572, 0x78687365, 0xcf4c09af, 0x88112005, 0x07035b20,
0x72640b2c, 0x2d616d61, 0x6b73616d, 0x2f590973, 0x6f622605, 0x79650978, 0x05584365, 0x09881120, 0x21084647, 0x9b186166, 0x2d290972, 0x66063033,
0x6b63696c, 0x07027072, 0x706f7024, 0x46647970, 0x6f702507, 0x14646e75, 0x84060849, 0x09bb6a0c, 0x23056864, 0x636e7973, 0x83071d49, 0x089f480b,
0x2c0bba78, 0x626d756e, 0x64657265, 0x6c74722d, 0x72951819, 0x772d2d0a, 0x70706172, 0x2d676e69, 0x70696c63, 0x07426818, 0x78657423, 0x27198974,
0x7265766f, 0x776f6c66, 0x40833795, 0x518a0e20, 0x0c20fb82, 0x24071f79, 0x6e65702d, 0x240c8b10, 0x7069742d, 0x05b35514, 0x6f726225, 0x466e656b,
0x68290871, 0x2d656d6f, 0x79746963, 0x5b098811, 0x68260810, 0x70736275, 0x8d18746f, 0x6f230955, 0x88656976, 0x69762e0d, 0x086f6564, 0x6b6e696c,
0x786f622d, 0x41088710, 0x108808d1, 0x8f07314c, 0x29838810, 0x2d70616d, 0x636f6c63, 0x0988116b, 0x8308b241, 0x616d2f11, 0x72656b72, 0x7461702d,
0x6f6d0c68, 0x0b826874, 0x72756e3d, 0x6f076573, 0x6f6c7475, 0x70106b6f, 0x70737265, 0x69746365, 0x6c2d6576, 0x8c737365, 0x6f6d2b10, 0x70066572,
0x7569646f, 0x06850d6d, 0x72622d27, 0x657a6e6f, 0x230d860b, 0x646c6f67, 0x926a1987, 0x71053405, 0x61726f75, 0x77657209, 0x2d646e69, 0x720c3031,
0x826c6c6f, 0x6b732575, 0x0b657461, 0x622f0c85, 0x6564616c, 0x62757204, 0x61730479, 0x830c6b63, 0x07cb4304, 0x61730e2b, 0x79746566, 0x676f672d,
0x208f8267, 0x06a64a0c, 0x6c6f6325, 0x6b11726f, 0x6526091e, 0x70696c6c, 0xbf646573, 0x696c2307, 0xdc5b6b6e, 0x461b2007, 0x138b06bc, 0x20071341,
0x24868405, 0x656b7309, 0x85ed8477, 0x18e68309, 0x4e08c05c, 0x073c0728, 0x6d617473, 0x04726570, 0x6b6e6174, 0x726f7408, 0x73696f74, 0x72741265,
0x69736e61, 0x088eab18, 0x6e6f6923, 0x8712911a, 0x232d858a, 0x7373696d, 0x2d262782, 0x65776f74, 0xae770b72, 0x72672406, 0x18146d61, 0x2007794c,
0x79981873, 0x3c268207, 0x67697a06, 0x09656562, 0x68636461, 0x6563696f, 0x69610a73, 0x69662d72, 0x7265746c, 0x280a830c, 0x69727570, 0x72656966,
0x16571810, 0x06507207, 0x61087331, 0x2d737070, 0x03786f62, 0x046d7461, 0x82697861, 0x5004823a, 0x0f200548, 0x0a850f83, 0x6f6c2d25, 0x84096b63,
0x2009830f, 0x2009840c, 0x201b8578, 0x840c8b11, 0x86172028, 0x6f722511, 0x65746174, 0x24056c42, 0x65736977, 0x22178e1e, 0x826e756f, 0x836320a1,
0x201e8351, 0x181e8613, 0x8208e66c, 0x86698573, 0x8b698511, 0x2169851e, 0x69952d79, 0x698e1789, 0x7a205585, 0x0c86bf8b, 0x7a20bf8a, 0x17895596,
0x0a24558e, 0x6c6c6562, 0x2005d95f, 0x470a840b, 0x13200584, 0x3a4a0b8a, 0x08275208, 0x6e696d24, 0x1d617375, 0x06755107, 0x2f520e82, 0x6f682407,
0x5211646c, 0x70270930, 0x696b7261, 0x8312676e, 0x72632611, 0x65736975, 0x06c45f2d, 0x64272484, 0x6f726665, 0x822d7473, 0x746e2205, 0x87248310,
0x65722311, 0x35847261, 0x084e4186, 0x27238307, 0x63617274, 0x6e6f6974, 0x27834a87, 0x2d797222, 0x62221082, 0xdd456761, 0x820f2005, 0x075e5227,
0x776f6424, 0x0f8a0d6e, 0x0a707522, 0xc9840d84, 0x0a840b20, 0x20054446, 0x829a8313, 0x656c295a, 0x702d7373, 0x656d7961, 0x89829483, 0x76697423,
0x236c8265, 0x6e6f6d6d, 0x0d654718, 0x08096018, 0x72632008, 0x656b6369, 0x65640674, 0x6f742d76, 0x6d6f640a, 0x2d6e6961, 0x0a66666f, 0x65636166,
0x8267612d, 0x460f204a, 0x31260c5f, 0x6c660530, 0x25767261, 0x65742308, 0xc0417478, 0x83d98305, 0x0cd845b3, 0x6b187220, 0x6e3107b5, 0x0d656e6f,
0x77726f66, 0x62647261, 0x65677275, 0x08a06a72, 0x69777324, 0x5e186570, 0x743408a1, 0x682d7061, 0x03646c6f, 0x07666967, 0x6b2d6f67, 0x0d747261,
0x2d2a0786, 0x63617274, 0x6f67096b, 0xde82646f, 0x05736424, 0xaf827267, 0x64680324, 0x03820772, 0x0633b783, 0x696b6968, 0x680c676e, 0x2d656d6f,
0x6f6f6c66, 0x8b312d72, 0x8b32200c, 0x8b33200c, 0x8b61200c, 0x8b62200c, 0x364d8c0c, 0x616b076c, 0x64646162, 0x616d0c69, 0x6f626c69, 0x706f2d78,
0x8b146e65, 0x0ae5450c, 0x2d232189, 0x8c177075, 0x099c6424, 0x17880f20, 0x2005e853, 0x220f870a, 0x89127075, 0x0864490a, 0x78696d2d, 0x6d2d6465,
0x69747261, 0x822d6c61, 0x0b732106, 0x3706f06c, 0x66666f2d, 0x746f6d0d, 0x2d6e6f69, 0x736e6573, 0x700d726f, 0x746e696f, 0x2d331782, 0x656c6173,
0x6361720d, 0x2d676e69, 0x6d6c6568, 0x820b7465, 0x75712c0d, 0x61627465, 0x720b6c6c, 0x82747365, 0x2029824a, 0x07204666, 0x14303322, 0x0bdb4d18,
0x2008f24b, 0x056d4472, 0x62726f2a, 0x72057469, 0x79626775, 0x2707966a, 0x72616573, 0x730b6863, 0x2405e570, 0x6c656e61, 0x2c0b8a11, 0x72616c2d,
0x73146567, 0x61776275, 0x05be4379, 0x08b47618, 0x61657423, 0x4c03820b, 0x65320921, 0x73696e6e, 0x6172740d, 0x6566736e, 0x6f642d72, 0x0d896e77,
0x66656c24, 0x1b880b74, 0x82707521, 0x706f2419, 0x482d7968, 0x0c270504, 0x646e6977, 0x8275742d, 0x656e259f, 0x7069770a, 0x77233f82, 0x66687361,
0x6224083d, 0x65676461, 0x8408dd5d, 0x208e850d, 0x06e14a1b, 0x138a2d20, 0x235e9287, 0x441b8508, 0x1c200641, 0x2108a866, 0x75187261, 0x32870819,
0x69610829, 0x6f682d72, 0x18126e72, 0x260af071, 0x7078652d, 0x8c74726f, 0x05686912, 0x61620728, 0x6761646e, 0x07820a65, 0xaa676b20, 0x84092005,
0x6c70240a, 0x840b7375, 0x05ef4309, 0x6f620438, 0x6205746c, 0x656c6775, 0x63616306, 0x0f737574, 0x656d6163, 0x86186172, 0x172008aa, 0xe4490f8e,
0x61632a08, 0x6d2d6873, 0x656b7261, 0x08a76972, 0x6972742a, 0x2d656c70, 0x6e776f64, 0xb018138f, 0x27860c65, 0x0d65b018, 0x752c1486, 0x6c631670,
0x6465736f, 0x7061632d, 0x0b65ac18, 0x72631222, 0x0867ab18, 0x0f307886, 0x69766964, 0x662d676e, 0x7070696c, 0x0d737265, 0x95420f86, 0x860c2005,
0x6373250d, 0x11616275, 0x30820c8b, 0x8d676121, 0x61742411, 0x8c1a6b6e, 0x4e118323, 0x0e2008ad, 0x6e211a87, 0x20f1826f, 0x0570546c, 0x6e616328,
0x136c6563, 0xf3826966, 0x59430b85, 0x0d986f08, 0xc66fb783, 0x41ca840e, 0x082006fa, 0x65232d84, 0x87106579, 0x09087008, 0x24054a4b, 0x72656c61,
0x076c4b74, 0x4b0c3d69, 0x4f8b0760, 0x75181387, 0x1b200bf1, 0x180b744b, 0x50082c6c, 0x0c2c0578, 0x746e6167, 0x632d7972, 0x656e6172, 0x210bae44,
0xfc441530, 0x656e2a0a, 0x69746167, 0x312d6576, 0x2c15840a, 0x756f7267, 0x616a0670, 0x72656262, 0x0ad8600b, 0x656c0425, 0x83086b61, 0x05444404,
0x6b726125, 0x412d7265, 0x0422051f, 0x6182696d, 0x24076344, 0x6b636f6c, 0x280c870c, 0x72617473, 0x766f6d0d, 0x08115669, 0x94510f20, 0xbf931805,
0x6e042d08, 0x076c6961, 0x7261636f, 0x12616e69, 0x07bc5b18, 0x69622d2e, 0x74656d6f, 0x08636972, 0x2d6e6570, 0x09205383, 0x69820883, 0x07737522,
0x6f220983, 0x1a846666, 0x756c7024, 0x10830a73, 0x2005fb42, 0x062f5213, 0x200bea50, 0x8413860c, 0x8b14203c, 0x08d9410c, 0x42181486, 0x12860bce,
0x54875f83, 0x860c6a6f, 0x2076851f, 0x4b0d8c15, 0x702308e2, 0x826e6f68, 0x666622f9, 0x4509860d, 0x072705c0, 0x682d6970, 0x18656c6f, 0x33099c4c,
0x72617473, 0x7263730e, 0x662d7765, 0x2d74616c, 0x09706f74, 0x6c230e85, 0x85166761, 0x616d2409, 0x82696863, 0x2020874e, 0x24168d17, 0x6e756f72,
0x20388364, 0x8817850f, 0x730b220f, 0x49188265, 0x0b8a0603, 0x34082250, 0x656f6873, 0x6972702d, 0x7309746e, 0x616e6769, 0x65727574, 0x29098812,
0x6572662d, 0x6e616865, 0x12890f64, 0x616d6925, 0x890e6567, 0x6574280f, 0x730e7478, 0x44706f6c, 0x68240526, 0x0c6c6c69, 0x75210e85, 0x180c8370,
0x310c7283, 0x72656c61, 0x68741874, 0x6f6d7265, 0x6574656d, 0x2d6e2d72, 0x9316200b, 0x70752118, 0x6d25418c, 0x73756e69, 0x22288b10, 0x46756c70,
0x6c20060d, 0x18061a52, 0x7c07116b, 0x6f23082d, 0x676d756c, 0x662d0a2b, 0x61770966, 0x61706c6c, 0x0d726570, 0x63348277, 0x092b0863, 0x69666977,
0x6174732d, 0x82700f72, 0x74742dab, 0x756f2d65, 0x6e696c74, 0x00000065, 0x42fdfa05, 0x00000c7b,
};
|
faac04d5f53c0ee5b3a9fbee272e51c123dcf0be | 9f520bcbde8a70e14d5870fd9a88c0989a8fcd61 | /pitzDaily/751/p | 3de579719bbe8424d0372dfd7ca0c54ee1d1897a | [] | no_license | asAmrita/adjoinShapOptimization | 6d47c89fb14d090941da706bd7c39004f515cfea | 079cbec87529be37f81cca3ea8b28c50b9ceb8c5 | refs/heads/master | 2020-08-06T21:32:45.429939 | 2019-10-06T09:58:20 | 2019-10-06T09:58:20 | 213,144,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98,029 | p | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "751";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
6400
(
0.14496262322
0.144965881974
0.144975216191
0.144993545658
0.145020951323
0.145057434626
0.145102962733
0.145158636744
0.145225584694
0.145305645775
0.145405145818
0.14552746758
0.145670024082
0.145832723655
0.146017512807
0.146227041478
0.146463143682
0.146725890371
0.147013110515
0.147319327181
0.147639034879
0.147973950098
0.148331845101
0.14872077568
0.149145687095
0.149606469675
0.150099650514
0.150622535657
0.151174604349
0.151756386582
0.15236819859
0.153007981053
0.15366965512
0.154347009735
0.155037103293
0.155737250762
0.156447851417
0.157174529349
0.157915776585
0.158662738538
0.159416082982
0.160187522966
0.160982853891
0.16179389622
0.162609273569
0.163420818063
0.164222269704
0.165008674163
0.16577547587
0.16651863385
0.167234686905
0.167917899149
0.168558951748
0.169146742513
0.169678655357
0.170158333497
0.170581313646
0.17093815402
0.171226585515
0.171453875268
0.171626944585
0.171750434407
0.171829460152
0.171880381584
0.171921245357
0.17196183291
0.171996492495
0.172015613647
0.17201785449
0.172007632566
0.171988542669
0.171962278536
0.171929849291
0.171894996274
0.171858907485
0.17182416847
0.171792880433
0.171771273302
0.171756837754
0.171750640488
0.144957909728
0.144961385614
0.144969904792
0.144987802838
0.145016702381
0.145054633825
0.145100632808
0.145154557187
0.14521946436
0.145299281178
0.145398422398
0.145519723417
0.145662566005
0.145826197599
0.146011135771
0.146219289548
0.146454597516
0.146717990392
0.147006487505
0.147313197041
0.147630971327
0.147963801234
0.148321117168
0.148710096039
0.149135486137
0.149597014551
0.15009054671
0.150614046232
0.151167061789
0.151749592564
0.152361545047
0.153001785056
0.153664426828
0.154341911893
0.155032114232
0.155732546084
0.156443126949
0.157170357993
0.157912826314
0.15866079032
0.159413830431
0.160185993075
0.160984498622
0.161797978525
0.162614679205
0.163427685841
0.164230713773
0.165019017593
0.165787656479
0.166531437448
0.167246863004
0.167931237289
0.168576738635
0.169166782302
0.169700428377
0.170182761882
0.170604467664
0.170958601168
0.171246515856
0.171472842081
0.171643223862
0.1717657812
0.171845213705
0.171897372846
0.171939972588
0.171981389608
0.172015732663
0.172032055687
0.172030967609
0.172017826103
0.171996100418
0.171967222169
0.171931753239
0.171893271853
0.171855089908
0.171819338795
0.17178886068
0.171766758729
0.171752129131
0.171747117758
0.144944584226
0.14495029509
0.144958095422
0.14497459534
0.145002540459
0.145044572258
0.145094097146
0.145146484188
0.145208385653
0.145286510282
0.14538480114
0.14550554905
0.145648682451
0.145813129597
0.145998111411
0.146202894513
0.146435782748
0.146703674382
0.146995121146
0.147300388391
0.147614029659
0.14794181877
0.14829820872
0.148689459648
0.149115818405
0.149577314546
0.15007206138
0.150597363563
0.151151968095
0.151735809234
0.152348620901
0.152989957742
0.153654636893
0.154331925827
0.155021050862
0.155723080345
0.156434102686
0.157160900609
0.157904792431
0.158656099175
0.159415177204
0.160192019045
0.160991047389
0.161804876042
0.162623329823
0.163438748207
0.164244963514
0.165036736042
0.165809040921
0.166557125419
0.167276942846
0.167963541224
0.168608223124
0.16920184567
0.169742670095
0.170227072567
0.170647082791
0.170999568844
0.171285978002
0.171510419209
0.17167917239
0.171799070292
0.171878297981
0.171934716524
0.171983497912
0.172026379911
0.172055993696
0.17206608069
0.172058859766
0.172039698403
0.172011996533
0.171976684425
0.171935550068
0.171892411558
0.171850276752
0.171812051277
0.17178081325
0.171757906177
0.171743323993
0.171737890333
0.14492534458
0.144931243706
0.144938039841
0.144953303397
0.144978006493
0.145019979845
0.14508189214
0.145134516724
0.145191951012
0.145267128374
0.145363994041
0.145484431141
0.145628234937
0.145792745988
0.145977602294
0.146186399474
0.146423204884
0.146688270416
0.146971392768
0.147265724596
0.147575454093
0.147906806743
0.148265709035
0.148657721161
0.149085244036
0.149548221197
0.15004484604
0.150572357769
0.151129249152
0.151714939887
0.1523297752
0.152972705153
0.153639009035
0.154319173388
0.155006178801
0.155705765425
0.156420187548
0.157148029249
0.157891119772
0.15864681209
0.159414048392
0.1601975458
0.160999838332
0.161815911933
0.162637392392
0.163456704748
0.164267488954
0.165064233399
0.16584182743
0.166595437321
0.167320352674
0.168010875663
0.16865945278
0.169258925922
0.169804686654
0.170290819095
0.170710818777
0.171062265829
0.17134683329
0.17156889106
0.171735023433
0.171853649827
0.171937166143
0.172002242202
0.172056178312
0.172096032244
0.172119446223
0.172121086484
0.172103730143
0.172074343211
0.17203713344
0.171993026085
0.171943723389
0.171891628198
0.171841195396
0.171799043443
0.171766826735
0.171740881834
0.171722896607
0.171715497375
0.144895083263
0.144896581343
0.144904923053
0.144920684641
0.144948150363
0.144987974985
0.14504513412
0.145102403602
0.145163335862
0.145239080175
0.14533483797
0.14545519407
0.145600264077
0.145770211642
0.145962443483
0.146171869684
0.146401649825
0.146653636653
0.146925980147
0.147217481374
0.147528527039
0.147861433994
0.148222027291
0.148615761533
0.149044921478
0.14950977978
0.150008474124
0.150538763028
0.151098607371
0.15168731945
0.152304282224
0.152950646793
0.153620834529
0.154299171009
0.154985278636
0.155683936812
0.156397066461
0.157127536419
0.157874884973
0.15863669227
0.159412037257
0.160203012001
0.1610105483
0.161830817442
0.162656891447
0.163481570799
0.164298386981
0.165101623876
0.165886054126
0.166646683472
0.167378369507
0.168075143437
0.168730041338
0.169336221313
0.169887335524
0.170376331517
0.170797312623
0.171148445306
0.171431792199
0.171652381624
0.17181800961
0.171939297389
0.172030122555
0.172102310883
0.172155420577
0.172192393792
0.172209917755
0.172201087945
0.172169397497
0.172124525937
0.172072981907
0.172015701913
0.171952166068
0.171885149731
0.171824588827
0.171776579479
0.171738379922
0.17170419644
0.171682819279
0.171675210157
0.144840383881
0.144840802834
0.144854210977
0.144870802621
0.144901386371
0.144943738853
0.144997572277
0.145055758404
0.145121765972
0.14519998027
0.145294440866
0.145415463917
0.145569525256
0.145748345365
0.145939917636
0.146143111175
0.146362909708
0.146605724895
0.146873085543
0.147162382785
0.14747171448
0.147804953976
0.14816745796
0.148563513724
0.148994923856
0.149461539049
0.149963025842
0.15049631498
0.151060201548
0.15165270653
0.152274036347
0.152922538082
0.153592730702
0.154274588158
0.154957996066
0.155653141358
0.15636784067
0.157102831875
0.157856073916
0.158625177149
0.159409090006
0.160208429282
0.161022996766
0.161849460473
0.162681885901
0.163513524891
0.16433791832
0.165149220732
0.165942098239
0.166711411695
0.167451770103
0.168157079424
0.168820477675
0.169434719881
0.169992253323
0.170485532765
0.170909202245
0.171262011591
0.171546616107
0.171769012826
0.171938255552
0.172066104579
0.172165595712
0.172239439833
0.172290650122
0.172322754809
0.172332478653
0.172310639372
0.172260124075
0.172193781705
0.172121918455
0.172044060604
0.171957782218
0.171871322752
0.171797123959
0.171738460155
0.171688557073
0.171646604843
0.171622823963
0.171613016718
0.144757224689
0.144763834253
0.144785394416
0.1448096418
0.144836723718
0.144879936815
0.14493586147
0.144996696631
0.145066620466
0.145147968944
0.145246831558
0.145372033591
0.145534135472
0.145712337117
0.145899333053
0.146094486207
0.146307914119
0.146548154054
0.146813339483
0.147097664411
0.147404289935
0.147738242789
0.148102458287
0.148500388672
0.148934404247
0.149405004326
0.149907957359
0.150444823656
0.151013559574
0.151613123618
0.152238627734
0.152887544224
0.153558566616
0.154236569481
0.154919596238
0.155615726752
0.156333937948
0.15707454123
0.157834756784
0.158612050864
0.159405189812
0.160213889857
0.161037146917
0.16187175931
0.162712402132
0.163552726214
0.164386362343
0.165207421644
0.166010509904
0.16679039359
0.167541529636
0.168257673505
0.168931727502
0.169555832695
0.170121691322
0.170621736502
0.171051263369
0.171409693154
0.171700233629
0.17192935205
0.172106526011
0.17224303662
0.172347632191
0.1724214109
0.172476372718
0.172503135374
0.172496604633
0.172453731238
0.172378602913
0.172285190666
0.172185041028
0.172076861707
0.171959491127
0.171847416162
0.171752839694
0.171676490367
0.17161191195
0.171565239994
0.17154111855
0.171530042055
0.144658588429
0.144671143928
0.144695726908
0.144730006676
0.144760039973
0.144805420572
0.144860122111
0.144924280989
0.144999192887
0.145078958461
0.145186755932
0.145325193037
0.145485870427
0.145660737812
0.145841034312
0.146029127543
0.146241636001
0.146482325366
0.146742703194
0.147022103035
0.147326626962
0.147660802792
0.148026533307
0.1484274007
0.148864959919
0.149338790928
0.14984594379
0.150383233221
0.150959321075
0.151568404401
0.152195999857
0.152842534357
0.153511862285
0.154188120084
0.154870715143
0.155571734767
0.15629576637
0.157042862828
0.157810786766
0.158597094422
0.159400289467
0.160219461721
0.16105302165
0.161897701195
0.162748497274
0.163599364137
0.164444069553
0.165276759443
0.16609203296
0.166884604724
0.16764881921
0.168378234061
0.169065384868
0.169701883511
0.170279156591
0.170790058971
0.171230675451
0.171600790812
0.171903091248
0.17214320181
0.172330051286
0.172473195026
0.17258010836
0.172657087962
0.172711387724
0.172739189526
0.172711933331
0.172638539516
0.172530973123
0.172402586765
0.172264660971
0.172115367651
0.171957188889
0.17180767125
0.17168187757
0.171581282989
0.171506181097
0.17145916875
0.171438766131
0.17143068502
0.144549482522
0.144565528523
0.144590635577
0.144620800151
0.144658476194
0.144712765535
0.144768366606
0.144834736726
0.144918244761
0.14500403895
0.14511032174
0.145258024921
0.145421848999
0.145591327987
0.145765828273
0.145953768902
0.146165838769
0.146403630305
0.146659527501
0.146936158818
0.147239216022
0.147572780903
0.147938506128
0.148341361509
0.148786519372
0.149262480453
0.149774291984
0.150319502343
0.150897586694
0.151508403784
0.152141916341
0.152794072928
0.153453882687
0.154126281105
0.154813901242
0.155521832163
0.156252971809
0.157007530155
0.157783949671
0.158580105279
0.159394316995
0.160225184597
0.161070658613
0.161927314718
0.162790271763
0.163653687388
0.164511491819
0.165357926989
0.166187623579
0.166995271016
0.167775127824
0.168520569068
0.169223833761
0.169876311798
0.170469674262
0.170997566912
0.171456655777
0.171845819169
0.172165021167
0.172418453065
0.172616176093
0.172766600252
0.172876937071
0.172951985731
0.172995161103
0.173017286177
0.172988332761
0.172876866017
0.17272678614
0.172553827884
0.17236664306
0.172164873837
0.171950626947
0.171742245789
0.171569089937
0.171442386954
0.171365713824
0.171327571494
0.171315871124
0.171314598639
0.144428078484
0.1444462994
0.144475516803
0.144504856409
0.144545643361
0.144600643495
0.144658999848
0.144726001769
0.144810406316
0.144913698507
0.145025706181
0.145174118899
0.14533921732
0.145505347348
0.145674445012
0.145865380011
0.146080820409
0.146313752001
0.146564272266
0.146838558952
0.147141344708
0.147475485024
0.147841654316
0.14824347953
0.148695179676
0.149179900119
0.149689260776
0.150241497912
0.150825124283
0.151440568348
0.152077553882
0.152728156426
0.15338738967
0.154057828448
0.154750027883
0.155465738577
0.156205134973
0.156968210818
0.157754009982
0.158560880513
0.159387145463
0.160231036169
0.161090085302
0.161960652655
0.162837867754
0.163716020444
0.16458920604
0.165451799531
0.166298484534
0.167123937818
0.167922379503
0.168687120968
0.169410376509
0.170083799832
0.1706998416
0.171253031784
0.171739635872
0.172155138955
0.172494513177
0.172763802715
0.172979631019
0.173143705022
0.173257815608
0.17332196781
0.17334126838
0.173328171839
0.17328637608
0.173181144869
0.172977834724
0.172745328587
0.172499529613
0.172237195304
0.17194159731
0.171632553996
0.171387908196
0.171239236613
0.171177117938
0.171162843452
0.17116691288
0.171175659717
0.1442890674
0.14430643147
0.144338331449
0.144373051525
0.144422679127
0.144472770058
0.144532314091
0.144602288927
0.144679619824
0.144792714693
0.144919673317
0.145069316934
0.145235146345
0.145402356961
0.145571076959
0.145763108793
0.145980279067
0.146210343273
0.146456934852
0.146728041273
0.14702993563
0.147366181998
0.147737656139
0.148139711051
0.148587143618
0.149084770597
0.149602900321
0.150155313185
0.150741032053
0.151352263691
0.151996354448
0.152650362677
0.153308396857
0.153981443501
0.15467967748
0.155403500519
0.156151912283
0.156924544977
0.157720720987
0.158539233615
0.159378624218
0.16023693107
0.161111288169
0.16199777326
0.16289146009
0.163786749827
0.16467791355
0.16555945913
0.166426108053
0.167272536203
0.1680930176
0.168881045081
0.169629280329
0.170330285717
0.170977699904
0.171566302867
0.172089822865
0.172538394303
0.172901594986
0.173194071984
0.173450008049
0.173641151188
0.173758943464
0.173799758019
0.173773787604
0.17369807703
0.173596183643
0.173487241935
0.173286965926
0.172992172362
0.172681774599
0.172361094558
0.171943195445
0.171443857591
0.171087866716
0.170930395793
0.17091791247
0.170955422477
0.170988435317
0.171015605679
0.144128322905
0.144142204093
0.144168043398
0.144212061926
0.144272789097
0.144323972351
0.14438535596
0.144462381245
0.144538765292
0.144649065194
0.144787682882
0.144941526027
0.145107573626
0.145277609739
0.145453927956
0.145649150798
0.145865398313
0.146092808843
0.146337208363
0.146605401504
0.146903687438
0.147238142473
0.147619298022
0.148033375345
0.148476080318
0.148974059685
0.14950122603
0.150052314491
0.150647633589
0.15126468068
0.151901935197
0.152552981419
0.153214097215
0.153895785148
0.154602246631
0.155334767866
0.156092892731
0.156876099574
0.157683777759
0.158514980452
0.159368588547
0.16024272949
0.161134207681
0.162038716442
0.162951232454
0.163866308675
0.164778423333
0.16568218541
0.166572292802
0.167443418266
0.168290031271
0.169106198467
0.169885739857
0.170622871248
0.171312276707
0.17194664341
0.17251560136
0.173009030056
0.173403691378
0.173727747685
0.174078087593
0.174324936833
0.17444964882
0.174451180988
0.174354000598
0.174185621748
0.17397959947
0.173798302859
0.173596474219
0.173281832181
0.172942902287
0.172615273601
0.172018143357
0.171087559514
0.170547944389
0.170434876778
0.170563762462
0.170713562487
0.17079185729
0.170858193628
0.143945395549
0.143956339105
0.143973151353
0.144022311634
0.144084589578
0.144144357742
0.144210468738
0.144295454407
0.144380229623
0.144490183146
0.144634220317
0.144791252614
0.144957305491
0.145126441839
0.145312898105
0.145518783193
0.145734955794
0.145960387507
0.146203968348
0.146470950602
0.146765577429
0.147093735537
0.147476024216
0.147911362404
0.148361377173
0.148848845086
0.149387655431
0.149945593872
0.150533660974
0.151155106059
0.151795085586
0.152445378192
0.153109986369
0.153800112448
0.154516295264
0.155258765064
0.156027509288
0.156822240069
0.157642635724
0.158487868515
0.159356949945
0.160248307178
0.161158709538
0.162083458174
0.163017341289
0.163955131646
0.164891604899
0.16582142041
0.166739116126
0.167639313058
0.168516873086
0.169367020586
0.170185697626
0.170969403659
0.171712252837
0.172399838574
0.17302502072
0.173606507247
0.174047264102
0.174403105876
0.175073846597
0.175401113857
0.175491713575
0.175392039246
0.175152237083
0.174821206455
0.174439193847
0.174096971536
0.173823114179
0.173518138417
0.173232897864
0.173204890847
0.172286908071
0.170470534713
0.169630003618
0.169662467526
0.170130873315
0.170498714739
0.170592626797
0.170745012263
0.143741385847
0.143753994165
0.143776148375
0.143814403973
0.143871291613
0.143936898993
0.144009073585
0.144098704792
0.144196845503
0.144310389001
0.144458952126
0.144619045367
0.144786691568
0.144955848524
0.145145833764
0.145361843133
0.145582781773
0.145810391512
0.14605511957
0.146322625849
0.146615942823
0.146938725567
0.147316497938
0.147764336048
0.148231105405
0.148716897819
0.149259386826
0.149826680178
0.15041157432
0.151030506142
0.151666801722
0.152318576521
0.152993724941
0.15369431111
0.154421034302
0.155174515865
0.155955126727
0.156762528704
0.15759664576
0.158457240528
0.159343411593
0.160253600918
0.161184717895
0.162131914777
0.16308983822
0.164053567335
0.165018302848
0.165978676946
0.166928816369
0.167863173484
0.168777241068
0.169668230188
0.17053539327
0.171377758656
0.172184302392
0.172927311901
0.173653990703
0.174459405809
0.174819818038
0.174727028376
0.174921809061
0.175159503306
0.175247530285
0.175163114571
0.174954015347
0.174665224054
0.174337438755
0.174019434943
0.173746346823
0.173556448768
0.173614207763
0.174293253427
0.174086959462
0.168444468722
0.167173647898
0.168102095212
0.169635944795
0.170440439072
0.170385363336
0.170761900121
0.143511420366
0.143525767376
0.143558521378
0.143586945224
0.143637388904
0.143704942226
0.143782153054
0.143877962885
0.143992062518
0.144108903527
0.144260979154
0.144424624989
0.144595599364
0.14476832125
0.144961276882
0.145182572906
0.145408794626
0.145641227969
0.145889160225
0.14615841919
0.14645251252
0.14677390116
0.147143294621
0.147589696599
0.148081933801
0.148577134714
0.149108850751
0.149691506268
0.150286586617
0.150891680535
0.15152269157
0.152180047968
0.15286484274
0.153576713683
0.154315340992
0.155081129379
0.155874639169
0.156696095429
0.157545396573
0.158422568291
0.159327356538
0.160258277168
0.161212140644
0.162184022734
0.163168665772
0.164161747127
0.165159136473
0.166155358914
0.167143646137
0.168117874199
0.169074616104
0.17001425822
0.170940364431
0.171853215882
0.172730614942
0.173518485463
0.174131838234
0.174344024318
0.174572536048
0.174748872317
0.174864188336
0.175024406944
0.175091732198
0.175008953229
0.174801665047
0.174507780238
0.174163284629
0.173806753544
0.173472500788
0.173165058294
0.1728764963
0.172462217001
0.170508417016
0.168369308387
0.168179435785
0.169254469025
0.170780906571
0.171712754055
0.169600302101
0.171016624428
0.143250882528
0.143264874977
0.143297083075
0.143328071557
0.143376535192
0.143446242958
0.143526595099
0.143623902528
0.143753398086
0.143882571597
0.144038104437
0.144206335919
0.144382598562
0.144561939689
0.144759809433
0.144984365693
0.145214960947
0.145453100154
0.145705533557
0.145977611735
0.146273259225
0.146595667782
0.146959662882
0.147399092258
0.147908330863
0.148423195676
0.148948706728
0.149525445164
0.150131433966
0.150742773684
0.151370558547
0.152030592669
0.152723793263
0.153447160818
0.154198527971
0.154977599152
0.155785232202
0.156621912675
0.157487909826
0.158383298366
0.159308245296
0.160261792751
0.16124069801
0.162239678717
0.163253583645
0.164279373964
0.165314384785
0.16635275952
0.167385484171
0.168405531423
0.169411747927
0.170408740569
0.171404925618
0.172409903907
0.173357854366
0.173656167826
0.173923001137
0.174191864354
0.17441579734
0.174579149955
0.174671618475
0.174745846106
0.174741702419
0.17461409383
0.174371435977
0.174041442218
0.173653002435
0.173233296847
0.172802111867
0.172345536792
0.17179609157
0.171041216519
0.169834302094
0.168740128463
0.168432291119
0.168989229959
0.169928063996
0.170301176583
0.171353478254
0.172915880863
0.142961591992
0.14297495738
0.1430089154
0.143041172645
0.143090924602
0.143161959694
0.143245115016
0.143340737723
0.143474444282
0.143621465318
0.143785739617
0.143960483632
0.144144159067
0.144334429572
0.144538437377
0.144766495741
0.145001533353
0.145246088545
0.145503911395
0.145779838923
0.146077793823
0.146401538748
0.14676261139
0.147193235289
0.147704753374
0.148248817693
0.148785845303
0.149350587863
0.149952352298
0.1505671599
0.151199523547
0.15186709109
0.152569706942
0.153304639623
0.154069454182
0.154863120299
0.155685995289
0.156539182775
0.157423248568
0.158338565848
0.159285442385
0.160263433053
0.161269756098
0.162298661136
0.163344560936
0.164406153614
0.165483550238
0.16657061693
0.167654714858
0.168727278967
0.169790034772
0.170851725915
0.17193031245
0.172953509274
0.173191571777
0.173441080384
0.173725263149
0.173976464873
0.17416670952
0.174290294717
0.174343868882
0.174338009114
0.174249719992
0.174053327888
0.173749243777
0.173354644713
0.172890096835
0.172373658159
0.171815115938
0.171210244673
0.170492960882
0.169617396944
0.168581839366
0.167596720665
0.167134060636
0.167400109271
0.168236273085
0.169466531868
0.171548285829
0.173829832298
0.142646304993
0.142658103145
0.142687881574
0.142724808205
0.14278079131
0.14285363334
0.142941437803
0.14303748555
0.143171864264
0.143330478209
0.143503097622
0.143684180132
0.143874106359
0.144079010857
0.144293236343
0.144525406611
0.144765858071
0.145018557067
0.145283196011
0.145564174924
0.14586542862
0.146190881077
0.14655058441
0.146973996859
0.147481133577
0.148044812247
0.148605263974
0.14916809156
0.149760074038
0.150372648108
0.151011289397
0.151687239152
0.152400058034
0.153146835564
0.153925970814
0.154735849363
0.155575754565
0.156446740987
0.157350478716
0.158287332779
0.159257948935
0.160262638861
0.161299055899
0.16236085753
0.163440713427
0.164539872109
0.16566583715
0.16681172263
0.167953833845
0.169084495675
0.17020935228
0.171348835891
0.172428742626
0.17271497228
0.172976783073
0.173222378696
0.173467670163
0.173671023721
0.173807442913
0.173867559704
0.173846923847
0.17374521707
0.173552538355
0.173255832612
0.172853743919
0.172356136143
0.171776455613
0.17112619653
0.170410676862
0.169628564498
0.168727019628
0.167667333779
0.166500110137
0.165397934876
0.164669023808
0.164505686852
0.164949090506
0.166061579949
0.168381023671
0.1704013301
0.142308760722
0.1423192668
0.142343317306
0.142385506734
0.142446971013
0.142521515546
0.142613349749
0.142714416938
0.142847120006
0.143012712563
0.143191597602
0.143377936251
0.143571426793
0.143786353235
0.144016921899
0.144256485313
0.144503617381
0.144765807035
0.145040266638
0.145328573163
0.145634977475
0.145962774368
0.146322542132
0.146740700366
0.147238338506
0.147803270392
0.148388545474
0.148966696587
0.149557651666
0.150168820589
0.150808546598
0.151491072082
0.152214057094
0.152971875224
0.153766532782
0.154594212659
0.155452049688
0.156342664428
0.157267977358
0.158228706422
0.159225230073
0.160258299368
0.161326667056
0.162425092692
0.163547050503
0.164693698095
0.165870744089
0.167068417974
0.168271101666
0.169475443712
0.170672605793
0.171833008434
0.172158101342
0.172444539914
0.172706707413
0.172933192593
0.173122231305
0.173254261689
0.173310045497
0.173279152071
0.173156596283
0.17293967372
0.172622961736
0.172199823138
0.171668859752
0.171034947052
0.170305294765
0.169485226445
0.168574830158
0.167566174688
0.166443135211
0.165141339584
0.163677130433
0.162192119924
0.160846707709
0.15972995947
0.158815983623
0.15790953698
0.156530492194
0.153633968743
0.141950574219
0.141960982513
0.141983652428
0.142030709417
0.142092992228
0.142166919897
0.142258068656
0.142365951806
0.142496946494
0.142667181263
0.142851589745
0.143043212321
0.143241383437
0.143460868898
0.143705892659
0.143957008292
0.144213275693
0.144484867035
0.144770427725
0.145069258816
0.145384187497
0.145715903351
0.146077008271
0.146492674099
0.146981713917
0.14754126845
0.148139262818
0.148735937027
0.14932969711
0.149941733751
0.150588915084
0.151276564992
0.152007599964
0.152778208895
0.153589223994
0.154435474059
0.155313034608
0.156225038731
0.157173700347
0.158160274221
0.159185325411
0.160249884026
0.161355057078
0.16249905819
0.163672444683
0.164865279137
0.166082579197
0.167329289454
0.16860847445
0.169921316062
0.171178785864
0.171534525065
0.17183485774
0.172121607122
0.17236081598
0.172540302305
0.17265559505
0.172695456656
0.172646761745
0.172500741273
0.172252620831
0.171899357118
0.171437339805
0.170862620585
0.170173376987
0.169370552522
0.168455760075
0.167428382284
0.166283135209
0.16500820362
0.163590306921
0.161944998896
0.160019310074
0.157876733035
0.155541095716
0.152921521743
0.149773174825
0.145735940684
0.140677510963
0.139463979005
0.141568387338
0.141579377373
0.141603317263
0.141655523255
0.141718047312
0.141790585084
0.141878476832
0.141991073898
0.14211868305
0.142291915194
0.142482038736
0.142679277992
0.142883448632
0.143108901874
0.143363707652
0.143626838778
0.143894375939
0.144176231886
0.144472148249
0.144782712511
0.145109670228
0.145448071594
0.14581157693
0.146227044078
0.146709839813
0.147261866006
0.147863092681
0.148473175827
0.149081238734
0.149698373193
0.150351936971
0.15104713249
0.151784108063
0.152562274249
0.153387051103
0.154254984355
0.155156025214
0.15609205154
0.157065783901
0.158079928895
0.159136482421
0.160237321627
0.161387930452
0.162585925296
0.163807558005
0.165038489144
0.16629349082
0.167601283419
0.169001263203
0.170496201466
0.170877442342
0.171173509055
0.171474170094
0.171730995421
0.171917120624
0.172023524158
0.172044345832
0.171971746439
0.171797363643
0.171514932957
0.171120506794
0.170611244515
0.169984131238
0.169235728787
0.168362870249
0.167362681037
0.166231146496
0.16496085619
0.163538599507
0.161942837741
0.160141917039
0.158075547857
0.15558653021
0.152579782625
0.148947534364
0.144319861449
0.137867149299
0.127764573207
0.108824431037
0.0628380746618
0.141154271657
0.141165799803
0.141193226985
0.141251291116
0.141315030728
0.141386943853
0.141473932006
0.141588375113
0.14171203456
0.141885752297
0.142081349327
0.142284309999
0.142494712866
0.142726457166
0.142989174296
0.143263848693
0.143545177382
0.143838684475
0.144144544192
0.144466512439
0.144807891441
0.145156772314
0.145523456547
0.14594011148
0.146419918346
0.146964091443
0.147561704848
0.148174815558
0.148800629857
0.149436762004
0.150096311534
0.150794407977
0.151540480508
0.152331858557
0.153165256198
0.154049421376
0.154975807107
0.155938988932
0.156941814716
0.157986328647
0.159076662055
0.160221387973
0.161429839691
0.162684841716
0.16394980252
0.165219385212
0.166525796722
0.167923053023
0.169381210534
0.170274583037
0.170559297058
0.170807641626
0.171060126951
0.171253781141
0.171358774655
0.171366377786
0.171270765418
0.171066289797
0.170747780532
0.170311136331
0.169753305894
0.16907157176
0.168262687275
0.167322399242
0.166245321246
0.165024461667
0.163649901378
0.162106722943
0.160372419515
0.15841372659
0.156182024353
0.153613366956
0.150502831023
0.146567653265
0.141559348912
0.134907999623
0.125390317578
0.110583203117
0.0855860438648
0.0439428738664
0.140697061272
0.140709077794
0.140739975607
0.140804365346
0.140869331878
0.1409444227
0.14103270447
0.141147463189
0.141270886571
0.141446304352
0.141647579158
0.141856289689
0.142072868029
0.142310526225
0.142579527421
0.142863498214
0.143161007184
0.143468587687
0.14378522896
0.144118328712
0.144474551971
0.144839053023
0.145211012218
0.145628182232
0.146108014727
0.146646733303
0.147239182679
0.147850397689
0.148482876376
0.149141841426
0.149822195756
0.150527490971
0.151270428797
0.152070138715
0.15292156211
0.15382192211
0.154770871333
0.155762293079
0.156796330572
0.157875500513
0.159006719148
0.160207811446
0.161481181112
0.162791476497
0.164109936302
0.165451132668
0.166866684776
0.168297376308
0.169472818011
0.169899657142
0.170146496537
0.170370621905
0.170559898682
0.170665217553
0.170665246662
0.170552196308
0.170321156126
0.169968399231
0.169490984303
0.168886427212
0.168152341629
0.167285843693
0.166282843601
0.165137438777
0.163841370848
0.162383200941
0.160746865329
0.158909488068
0.156838354267
0.154486660999
0.151787103535
0.148640903036
0.144906088416
0.140198835983
0.134020856191
0.125814788264
0.114478996437
0.0981230853446
0.0734200943229
0.0393199496387
0.140187841524
0.140202338105
0.140235054837
0.140300028015
0.140370101627
0.140454497476
0.140548884964
0.140667769586
0.140798728322
0.140971904497
0.141178376558
0.141393055353
0.141616028027
0.141859537968
0.142133830234
0.142423354287
0.14273357141
0.143059217502
0.143389999768
0.143736202556
0.144106166862
0.144490334276
0.144876241498
0.145291641271
0.145771364248
0.146307574629
0.14689571265
0.147505270255
0.148137729945
0.148810130537
0.149513882757
0.150239302106
0.150988242056
0.151787045621
0.152646411317
0.153565820616
0.15453934617
0.155560587388
0.156627167619
0.15774462542
0.158929664265
0.160199173748
0.161537785522
0.162910760129
0.1643149782
0.165792385368
0.167290460667
0.168431727918
0.169014113419
0.169351123082
0.169629549682
0.169829719266
0.169939471238
0.169940143885
0.169818344188
0.169568259337
0.169187264108
0.168673874028
0.168026988702
0.167245302604
0.166326761275
0.165267970773
0.16406354116
0.162705404714
0.161182049613
0.159477458513
0.157569501541
0.155427579211
0.153009273842
0.150255545717
0.147083597092
0.143375742772
0.138963780383
0.133573852448
0.126630537699
0.117407013894
0.105062523272
0.0882442931723
0.0645150690287
0.0344816653207
0.139632130369
0.139650704065
0.139684114923
0.139743189525
0.139821661927
0.139916168721
0.140019992301
0.140147801334
0.14029311216
0.140463763139
0.14067257965
0.140892681401
0.141122417923
0.141372319884
0.141652554672
0.141948373747
0.142265766601
0.142607752265
0.142956192315
0.14331926721
0.143703410514
0.14410696567
0.144517777682
0.14494292097
0.145416046725
0.145948604564
0.146532540035
0.147141211226
0.147771877273
0.148448541385
0.1491668092
0.149918271576
0.150686239253
0.151487907172
0.152349066724
0.153278505602
0.154273923387
0.155327443681
0.156431240541
0.157597076365
0.158850011741
0.160193989866
0.1616008528
0.163052137422
0.164585157397
0.166205337571
0.167553249567
0.168183154767
0.168492372317
0.168810854448
0.169051731537
0.169179572964
0.169188808718
0.169068382068
0.168809398745
0.168409071051
0.167867441926
0.167185150797
0.166362553654
0.165399077819
0.164292612661
0.163038913871
0.161630966689
0.160058265934
0.158305932678
0.156353511228
0.154173243419
0.15172760007
0.148965787528
0.145818782527
0.142192169228
0.13795566019
0.132927823498
0.126855566363
0.119345506377
0.109680502215
0.0969460317149
0.0801113916001
0.0575064928805
0.0302330060795
0.139047069633
0.139066383743
0.139099159414
0.13915079317
0.139234325035
0.139334089138
0.139445038505
0.139578867988
0.139735785793
0.139913223134
0.140126686928
0.140352775547
0.140589965213
0.140846831587
0.141133759679
0.141437860809
0.141763654432
0.142119054809
0.142485473412
0.142869474023
0.143271011087
0.143691362269
0.144124736194
0.144574833836
0.145057705413
0.14558498652
0.146158287022
0.146763643934
0.147390919683
0.148066214049
0.148790029519
0.14955681495
0.150350424571
0.151167938086
0.152035341502
0.152968192687
0.153975390381
0.155057395508
0.156206271801
0.157435508716
0.158767067857
0.160188915021
0.161669806525
0.163211191297
0.164803448365
0.166139506214
0.167174663441
0.167742663175
0.167974815096
0.168210533022
0.168377672828
0.168410138091
0.168300063997
0.16804273484
0.167634041333
0.167074156949
0.166365444791
0.165510301785
0.164510129149
0.163364659888
0.162071359128
0.160624850012
0.15901630085
0.157232699231
0.155255922655
0.15306147472
0.150616717517
0.147878396402
0.144789194113
0.141272936744
0.137227900696
0.132517449702
0.126957038835
0.120296287287
0.112195894616
0.102195943437
0.0895325815768
0.0732915164443
0.0521934954487
0.0271289898921
0.138439828109
0.13845763007
0.138488543504
0.138538315985
0.13861793384
0.138717202763
0.138831350215
0.138967045416
0.139130514139
0.139317199392
0.139538474677
0.139771436202
0.140016683048
0.140280769628
0.140574453494
0.140887128882
0.14122190853
0.141589747775
0.141972600611
0.142376660448
0.14280147556
0.143241275125
0.14369676142
0.144163765603
0.144665255332
0.145208793495
0.145784038166
0.146379572184
0.146999608332
0.147670603515
0.148396683517
0.149167319947
0.149976333167
0.15081265937
0.151693264117
0.152635921146
0.153650572362
0.154753548296
0.155951854453
0.157257108048
0.158674059304
0.160176001452
0.16172980615
0.163296736455
0.164845571366
0.166275504136
0.166740198091
0.167022621884
0.167328655016
0.167528150298
0.167595013534
0.167510209597
0.167265825927
0.166859830937
0.166292865184
0.165568170122
0.16469007231
0.163662263519
0.162486744034
0.161163149824
0.159688204259
0.158055196702
0.156253411785
0.154267427671
0.152076192412
0.14965176636
0.146957590371
0.143946108771
0.140555530524
0.136705441967
0.132290890943
0.127174464907
0.121175825217
0.11405817438
0.105511281027
0.0951312790348
0.0824282722928
0.0667259685223
0.0470117266176
0.0240614651595
0.137803490253
0.137823773669
0.137851208682
0.137905244218
0.137977541242
0.138072785992
0.138186804708
0.138322633162
0.138489224608
0.138679706506
0.138908797677
0.139148480211
0.139401073231
0.139672521186
0.139973287599
0.140293348496
0.140635357501
0.141015095226
0.141413471461
0.141833622435
0.142279922553
0.142739829025
0.14322309795
0.143715685574
0.144229199719
0.144788853484
0.145386055696
0.145985869642
0.146597986523
0.147261366817
0.14799028809
0.148766545822
0.14958173366
0.150429421968
0.151319749625
0.152271293515
0.153295159651
0.154417392786
0.155666373236
0.157054511133
0.158559069948
0.16012901707
0.161724764841
0.163323710584
0.164631068434
0.165618861273
0.166193923029
0.16641534055
0.166626496289
0.16673839649
0.166691481051
0.166474042923
0.166083123795
0.165520487328
0.164790791655
0.163900037492
0.162854145992
0.161657619494
0.160312600703
0.158818261546
0.157170334621
0.155360666717
0.153376709295
0.15120086533
0.148809609462
0.146172287211
0.143249481953
0.139990816369
0.136332027442
0.132191118707
0.127463358723
0.122014880491
0.115674679679
0.1082249697
0.0993901773959
0.08882580051
0.0761081155165
0.060734624484
0.0420035574605
0.0210282418215
0.137126222655
0.137148074982
0.137178434214
0.13723487792
0.137306601353
0.137400054596
0.137513056691
0.13764842215
0.137815278912
0.138004936071
0.138239699424
0.138485964712
0.138743505975
0.13902235116
0.139331673932
0.139659214065
0.140006207825
0.140393735836
0.14080707697
0.141240502486
0.141705636439
0.142187924384
0.142691854502
0.143219342518
0.143760298658
0.144336078332
0.144957670583
0.145578404398
0.146187258755
0.146840585606
0.147563929766
0.148347059158
0.149174520561
0.150034223583
0.150928440738
0.151882387002
0.152910280201
0.154047356881
0.155346410565
0.156820443244
0.158412353799
0.160023214242
0.161609272676
0.163166680193
0.164669365222
0.165138164064
0.165380993057
0.165669602654
0.165834411606
0.165835307144
0.165658585096
0.165297327243
0.164752127876
0.164029023073
0.163136208566
0.162081974219
0.160873406472
0.159515354818
0.158009689249
0.156354814731
0.154545308529
0.152571564571
0.150419358887
0.148069262567
0.14549583076
0.142666492707
0.139540058383
0.136064745456
0.132175617101
0.127791311834
0.122809950546
0.117104145463
0.110515142867
0.102846377545
0.0938570907544
0.0832579923914
0.0707085649726
0.0558481654797
0.038113516463
0.0188492904038
0.13640718239
0.13642665841
0.136465213505
0.136523515725
0.136599421796
0.136695005179
0.136808120958
0.136943540908
0.137109840657
0.137295961987
0.137533423036
0.13778722153
0.138047944294
0.138331004181
0.138650738057
0.13898776695
0.139340739845
0.139730416555
0.14015354152
0.140599820948
0.141078941905
0.14158587481
0.142116937505
0.142669908333
0.143243795091
0.143844397461
0.144493260036
0.145151234212
0.145774265405
0.146417830105
0.147126616913
0.147907442899
0.148744909729
0.14962330882
0.150529068577
0.151481037039
0.152503927708
0.153644189446
0.154986222492
0.156545286038
0.158206911621
0.159870418895
0.161524620535
0.162838622515
0.163712654256
0.164474303578
0.164690714079
0.164865425418
0.164930996509
0.164810869982
0.164493594347
0.163980129186
0.16327661522
0.162393030895
0.161340362658
0.160128572658
0.158765410957
0.157255632594
0.155600484618
0.153797385594
0.15183968783
0.149716421058
0.147411940066
0.144905412903
0.142170092831
0.139172317285
0.13587017358
0.132211765377
0.128133011187
0.123554911908
0.118380251322
0.112489761088
0.105737918217
0.0979488181702
0.0889128972762
0.0783867515489
0.0660939392658
0.0517675483644
0.0349412426558
0.017086283555
0.135654627439
0.135673510133
0.13571504538
0.135775255747
0.135855741074
0.135955327005
0.136069606897
0.136206122264
0.136373922481
0.136556678555
0.136792920117
0.137054806406
0.137320492056
0.137603067639
0.137930434969
0.138278175023
0.138639393532
0.139031065702
0.139457584751
0.139912038957
0.140403146364
0.14092120865
0.141479602306
0.142062771935
0.142672096249
0.143303787603
0.143980557518
0.144686271566
0.145349009916
0.145998362174
0.146695854007
0.147460504257
0.148295584807
0.149188814497
0.150121579529
0.151081713963
0.152092603187
0.153214425108
0.15458280821
0.15621426666
0.157896441583
0.159560244481
0.161261857386
0.162992456635
0.163289257168
0.163490564761
0.163827650688
0.163974961929
0.163919186438
0.163661095594
0.163195032258
0.162525295288
0.161663285921
0.160622660039
0.159416522898
0.158055834229
0.156548468819
0.154898681424
0.153106825181
0.15116920888
0.149077990028
0.146821018673
0.14438156714
0.141737895969
0.138862613867
0.13572179192
0.132273790155
0.128467751726
0.124241720562
0.119520350835
0.114212212073
0.108206772686
0.101371287666
0.0935480983608
0.0845531164113
0.0741778908531
0.0621917107018
0.0483902803432
0.0323670846534
0.0156282493547
0.134872238724
0.134890780085
0.134931693701
0.134994861499
0.135078119156
0.135180666828
0.135296085336
0.135432690954
0.135606492125
0.135793349271
0.136021086498
0.136289003316
0.136562504484
0.136847600204
0.137173498069
0.1375288671
0.137898950343
0.138295245659
0.138725770359
0.139181945194
0.13968436708
0.140211049202
0.140776238452
0.141381108609
0.142019658228
0.142690845734
0.143402611025
0.14415981257
0.144894377592
0.145575459717
0.146276121012
0.147031183793
0.147854969685
0.148743828827
0.149693569106
0.150684340118
0.151701118936
0.152782670766
0.154131421505
0.155840013048
0.157568104542
0.159180786703
0.16055293713
0.161783691573
0.162662744776
0.162756154247
0.162917930223
0.162971481311
0.16279256962
0.162387266891
0.161765589087
0.160938396703
0.159921038359
0.158729792472
0.157379100854
0.155880241803
0.154240692518
0.15246386107
0.150549027111
0.148491368109
0.146281976
0.143907793699
0.141351421781
0.138590759812
0.135598454715
0.132341129555
0.128778362641
0.124861381099
0.120531431431
0.115717799716
0.110335488537
0.104282635321
0.0974378959277
0.0896583023395
0.0807783154482
0.0706126307592
0.0589580062846
0.0456458565811
0.030301244593
0.0144079577665
0.134061494594
0.134080105023
0.134120957795
0.13418764807
0.13427057908
0.134372677791
0.134489396342
0.134623900638
0.134799988478
0.134996316105
0.135215107451
0.135486059755
0.135766816138
0.136059450727
0.136380452707
0.136738061156
0.137114995888
0.137516775868
0.137955586131
0.138415031959
0.138918640129
0.139458489426
0.140027352677
0.140640085886
0.141295157227
0.141990060741
0.142733661772
0.14353190859
0.144358108405
0.145122134777
0.145847157711
0.146608639511
0.147428767463
0.148318496947
0.149269211895
0.150282276304
0.151336939218
0.152404538108
0.153649694605
0.155330731991
0.157185847475
0.159047918289
0.160271116477
0.161125489237
0.161691895677
0.161907303715
0.161971731987
0.161872021512
0.161546565414
0.160987845095
0.160208721305
0.159226499639
0.158060008604
0.156727125446
0.155242778593
0.153617928504
0.151859214096
0.149968947138
0.147945259177
0.145782277955
0.143470251121
0.140995563056
0.138340610508
0.135483516382
0.132397666527
0.129051052207
0.125405391115
0.121414986736
0.117025274985
0.112171008206
0.106774050225
0.100740824334
0.093959582718
0.0862979620286
0.0776014851174
0.0676957938773
0.0563871857034
0.0435181013655
0.0287205067409
0.01341522003
0.133224476441
0.133243323556
0.133290368101
0.133358315348
0.133436598445
0.133535796019
0.133653640708
0.133787194861
0.133955542948
0.134155872118
0.134370719774
0.134642174266
0.13492828803
0.135225866147
0.135545058846
0.135903535008
0.136282591862
0.136688513698
0.137135661937
0.137604703184
0.138106104673
0.138651415559
0.139226857745
0.139846190079
0.140507399335
0.14121146836
0.141969007459
0.142786895496
0.143668273143
0.144560420265
0.145373563595
0.14616646664
0.146998987393
0.14789033866
0.148855143294
0.149888119159
0.150985284123
0.152118826059
0.153285648413
0.154700846811
0.156462178348
0.158298750932
0.160207117817
0.160593295706
0.16066477824
0.160884301804
0.160896959254
0.160655243876
0.160175195783
0.159461235123
0.158528092797
0.157397437504
0.156090968799
0.154627520504
0.153021834177
0.151284037417
0.149419615129
0.147429654219
0.145311174576
0.143057432141
0.140658129948
0.138099501239
0.135364247287
0.132431323546
0.12927557
0.125867172226
0.122170919971
0.118145203748
0.11374066495
0.108898399811
0.103547622571
0.0976027396817
0.0909598862314
0.0834932778781
0.0750519222591
0.0654596985716
0.0545134649102
0.0420397991333
0.0276500221688
0.0126682674558
0.132362009691
0.132382354261
0.132435289839
0.132499155388
0.132573277486
0.132670690751
0.132789299418
0.132923314136
0.133083154977
0.133281456879
0.133492013735
0.133758941986
0.134049983916
0.134347734375
0.134665816188
0.135028227045
0.135407289164
0.135811041557
0.136263287168
0.136739604918
0.13724329663
0.137791891478
0.13836812075
0.13899527584
0.139661957928
0.140371328079
0.141127108154
0.141945364598
0.142830885413
0.143790190615
0.144754288985
0.145646820839
0.146529792794
0.147448563411
0.148428873253
0.14948547402
0.150624921504
0.151841897078
0.153085694813
0.154397501242
0.155839103499
0.157156474949
0.158679556541
0.159698395794
0.159711889394
0.159766108206
0.159677186464
0.159307451453
0.158677067988
0.157810414775
0.156729818623
0.155460243398
0.154025128835
0.152443599641
0.15072968023
0.14889228962
0.146935573528
0.144859384979
0.142659769923
0.140329370129
0.137857701083
0.135231289391
0.132433669911
0.129445251067
0.126243053026
0.122800303908
0.119085844371
0.115063247578
0.110689517607
0.105913193815
0.100671665327
0.0948875106146
0.0884637175599
0.0812779190492
0.0731758621534
0.0639670877998
0.0534181364415
0.0413043189149
0.0271765027305
0.0122178923196
0.131472020438
0.131492717462
0.13153557588
0.131599735404
0.131677015211
0.131775315955
0.131894323448
0.132027487496
0.132183500128
0.132378843479
0.132588985251
0.132842250309
0.133139089906
0.133438127946
0.133752715876
0.134117239422
0.134502215692
0.134903164904
0.13534945415
0.135828566082
0.136331286364
0.136886014406
0.13746400979
0.138084613919
0.138752684844
0.139467524154
0.140222957174
0.141033219594
0.141907037658
0.142854781336
0.143878909332
0.144918785941
0.145918690868
0.146911496628
0.147934639722
0.14902047177
0.150192100879
0.151472914061
0.152862481875
0.154402730436
0.155784869601
0.156580187054
0.15740957856
0.15837940134
0.158596934909
0.158567487268
0.158336290034
0.157829735297
0.157053957995
0.156041076881
0.154821989235
0.153424822857
0.15187371778
0.150187328768
0.148378504583
0.146454710356
0.144418692688
0.142269167238
0.140001425049
0.137607806902
0.135078029564
0.132399369443
0.129556722736
0.12653256583
0.123306827983
0.119856653866
0.116155979944
0.112174785147
0.107877813237
0.103222504686
0.0981558150234
0.0926095461195
0.0864937538922
0.079688009308
0.0720300973909
0.0633049635094
0.0532291470304
0.041483043967
0.0275007124255
0.0121971267252
0.13055755867
0.130577253013
0.130610929133
0.130675807769
0.130757012165
0.13085425551
0.130970270447
0.131100615618
0.131251788404
0.131444281841
0.131659871519
0.131897811729
0.132196950116
0.132504082245
0.132819823015
0.133174240399
0.133565023148
0.133969128352
0.134404520619
0.134885043967
0.135384841919
0.13593183022
0.136516707333
0.13712849409
0.137791023019
0.13849759539
0.139253434452
0.140057044648
0.140916869633
0.141844730197
0.142841631616
0.143915037997
0.145019616843
0.146122446367
0.147225800775
0.148365066309
0.149567074397
0.150863687982
0.152293342173
0.154006225123
0.156350523789
0.156456550732
0.156731983201
0.156994511278
0.157330386205
0.15726598295
0.156886536713
0.156230788374
0.155311307326
0.154160360962
0.152813603912
0.151301341668
0.149647536744
0.147869668878
0.14597902972
0.143981502557
0.141878486194
0.139667740578
0.137344076383
0.134899874345
0.132325445126
0.129609256755
0.126738068878
0.123697014412
0.120469645877
0.117037909805
0.113381937213
0.109479457239
0.105304563988
0.100825486861
0.096000902058
0.0907741655132
0.0850645640402
0.0787546444063
0.0716718940345
0.063567693651
0.0540870127226
0.0427725205884
0.028910801553
0.0128383680668
0.129625511854
0.129645831397
0.129686342331
0.129745880596
0.129821969775
0.129913249975
0.130022970747
0.130150147185
0.130295549981
0.130481017055
0.130699712968
0.13092731929
0.131218272372
0.131537112688
0.13185747234
0.132198907995
0.132590960436
0.132996570606
0.133422824489
0.133902039982
0.134404354634
0.134938423576
0.135520879719
0.136125606483
0.136782550143
0.137477749534
0.138227089343
0.139021618757
0.139867882663
0.140777233128
0.141748880559
0.142786075776
0.143891575204
0.145044814626
0.146222166368
0.147419093161
0.148651083293
0.149933036913
0.15128563442
0.152756279722
0.154480468029
0.156101267871
0.156156030544
0.155950694495
0.156025405884
0.155843233401
0.155319863869
0.154513638905
0.15345434196
0.152175406685
0.150713532756
0.149099563686
0.147356555592
0.145500332121
0.143540398923
0.141481051656
0.139322487404
0.137061752891
0.134693480792
0.132210432257
0.129603880977
0.126863887568
0.123979526066
0.120939121654
0.1177305187
0.11434131947
0.11075893789
0.106970225198
0.10296035344
0.098710563055
0.0941942279467
0.0893703956645
0.0841732995994
0.0784955352246
0.0721599416798
0.0648794093005
0.0561848027288
0.0453877796129
0.03153478959
0.0139846244493
0.128676364841
0.128696211127
0.128740640073
0.128796507753
0.128864618752
0.12895179756
0.129057539621
0.129182779761
0.129324724737
0.129499483502
0.129716490841
0.129945646473
0.130211673324
0.130537384559
0.130861993266
0.131196679867
0.131582683573
0.131992551871
0.132414580878
0.132881762441
0.133383810105
0.133908235854
0.134486585129
0.135088537859
0.135731103581
0.136419364099
0.13715313913
0.137937543515
0.138769894876
0.139658923541
0.140613957804
0.141628141359
0.142709807355
0.14385521194
0.145059552801
0.146300621679
0.147569138431
0.148853599703
0.150123188203
0.151329113983
0.152321617216
0.15362819741
0.154772130659
0.154638272028
0.154546775289
0.15425437686
0.153613435191
0.152674527057
0.151487732846
0.150093820481
0.148530648376
0.146828737784
0.145009782518
0.143087717436
0.141070202319
0.138960045327
0.136756452635
0.134456030009
0.132053533422
0.129542418123
0.126915242281
0.124163995801
0.121280442369
0.118256552877
0.115085043613
0.111759922781
0.108276838711
0.104632950597
0.100826013354
0.0968523379595
0.0927031654278
0.0883586766625
0.0837779717825
0.0788818466964
0.0735199814781
0.0674117012367
0.0599987080651
0.0502687115964
0.0363411516273
0.0152540728252
0.127710733318
0.127726966885
0.127762682523
0.127811732702
0.127882290154
0.127971348631
0.128077036539
0.128201138211
0.128338884785
0.128501868351
0.128710306941
0.128947126305
0.129191773917
0.129505375473
0.129842477547
0.130177410291
0.130545346737
0.130959685341
0.13138381139
0.131833842074
0.132334020371
0.132851881932
0.133414720452
0.134017929519
0.134642998241
0.135324471768
0.136044003172
0.136815540237
0.137634158336
0.138506581906
0.13944478206
0.140446525702
0.141516694281
0.142658140416
0.14387248027
0.145153687089
0.146485165888
0.147845371197
0.149163628349
0.150309480911
0.150470028201
0.151103725197
0.152783673569
0.153056525274
0.152931208484
0.152530702047
0.151780908157
0.150723578249
0.149421820608
0.147925577322
0.146274359532
0.144497639822
0.142615212415
0.140638917073
0.138574575613
0.136423659151
0.134184616748
0.131853882464
0.129426609767
0.126897214034
0.124259793483
0.121508522387
0.118638134512
0.115644591816
0.112525929949
0.109283125314
0.105920715428
0.102446875256
0.0988727046004
0.0952105507117
0.0914711876742
0.0876595531956
0.0837681368927
0.0797663319915
0.0755797815618
0.07105128134
0.0658169542548
0.0591245065816
0.048287741427
0.0248513608417
0.126734916534
0.126748153484
0.12677506245
0.12681120637
0.126888807054
0.126981263765
0.127086889674
0.127208595093
0.127341331422
0.127493857481
0.1276888132
0.127924600238
0.128171226004
0.128453334048
0.128796060087
0.129139899386
0.129492722046
0.129898593969
0.130327631831
0.130766404629
0.131254808612
0.131773282557
0.132315642513
0.132911734421
0.133530833323
0.134191963934
0.134902410283
0.135659154738
0.136464847823
0.137322123683
0.1382427977
0.139233126235
0.140295478589
0.141437025292
0.142661647746
0.143973758565
0.145378203668
0.146876917243
0.148455920185
0.150413530748
0.150416723344
0.150599914277
0.150854095761
0.151381995335
0.151272283042
0.150737551385
0.149855764735
0.148678173898
0.147268790823
0.145680791323
0.143953454934
0.142113998127
0.140179584101
0.138159690534
0.136058320181
0.133875773212
0.13160997223
0.129257424467
0.126813911961
0.12427501662
0.121636557152
0.118895057344
0.116048398298
0.113096757477
0.110043776799
0.106897712651
0.103672223948
0.100386498412
0.0970645776868
0.0937339186811
0.0904233569705
0.0871607506751
0.083970382785
0.0808708213198
0.0778724323694
0.0749798756327
0.0721856645482
0.0695912979359
0.0669723495364
0.0674327002828
0.125754094682
0.125768234414
0.125799454208
0.125837337874
0.125903522758
0.125992331843
0.126094890237
0.12621178014
0.126340860751
0.126484804953
0.12666110362
0.126884537675
0.127140165066
0.127403175956
0.127722600112
0.128079470922
0.128431425071
0.128811766879
0.129245730059
0.129684482843
0.130149914079
0.130668605995
0.131202754979
0.131779789842
0.13239627838
0.133038811791
0.133732002088
0.134470299185
0.135258507194
0.136098182653
0.136999467798
0.137972929015
0.139021286942
0.140153724271
0.14138018142
0.142702770416
0.144129545791
0.145663325068
0.147326617041
0.149222896897
0.150105838011
0.150128340179
0.149826622899
0.149895113977
0.149592336678
0.148887814783
0.147852194378
0.146548114151
0.145036500808
0.1433667754
0.141574723475
0.13968390819
0.137708200089
0.1356545077
0.133525076317
0.131319221155
0.129034561244
0.126667891735
0.12421580654
0.121675199218
0.119043714444
0.116320303579
0.113506075047
0.110605532885
0.107628053646
0.104589222034
0.101511594671
0.0984246094288
0.0953636340244
0.0923683932107
0.089481201157
0.0867456088216
0.084205881276
0.0819090292171
0.0799090902825
0.0782816718177
0.0771409868052
0.0767288823604
0.0771891991021
0.0804626269655
0.124770544648
0.124785834093
0.124820580583
0.12487565072
0.124926063449
0.125009087305
0.125107388104
0.125218902307
0.125344706515
0.125479064501
0.125635975259
0.125836677913
0.126082716657
0.126349522172
0.12663779895
0.126989904209
0.127357868547
0.12772416058
0.128141679755
0.1285888201
0.129041752863
0.12954379985
0.130078345687
0.130637628243
0.131238588811
0.131869725374
0.132538662192
0.133257120083
0.134019300777
0.134833114848
0.13570882331
0.13665362829
0.13767568993
0.138783647989
0.139991264325
0.141306196827
0.142731850729
0.144248062297
0.145838917753
0.147338138596
0.147508067996
0.148831737312
0.14860769328
0.148368973719
0.147826116051
0.146944307131
0.145757355367
0.144331633009
0.142727093686
0.140987360938
0.139142605271
0.137211745246
0.135205015508
0.133126743427
0.130977578141
0.128756075922
0.126459775796
0.124085950018
0.121632144863
0.11909665578
0.116478992831
0.113780539054
0.111005633902
0.108163134517
0.105268155915
0.102343435962
0.099419813758
0.0965355931645
0.0937349515561
0.0910658055666
0.0885777230572
0.0863205536097
0.0843439643281
0.0826998130464
0.0814446065509
0.0806501425935
0.080404379333
0.080854644
0.0821444175216
0.0849572179805
0.123794704878
0.123808213832
0.12383567148
0.123902151776
0.123957119683
0.124034869317
0.124128328257
0.124233520203
0.124353120638
0.124479228049
0.124621816971
0.124794762217
0.125018751338
0.125284059757
0.125564111637
0.125880412699
0.12625677113
0.126637384645
0.127030388017
0.127475496541
0.127934195309
0.128413575033
0.128937852862
0.129485180483
0.130065951376
0.130681555651
0.131329481249
0.132019881368
0.132754378461
0.133535691552
0.134371264373
0.135273106339
0.136249482209
0.137312909664
0.138479742988
0.139767689202
0.141191694884
0.142758967898
0.144491998247
0.146344008759
0.146360802291
0.146924567622
0.147002394501
0.146712863447
0.145945122625
0.144882886995
0.143555749945
0.142022244553
0.140339219472
0.138543871119
0.136659720893
0.134700558208
0.13267299913
0.130579024698
0.128417985179
0.126187964148
0.123886656471
0.121511985163
0.119062556114
0.116538113977
0.113940021857
0.111272046054
0.10854171722
0.105762233061
0.102954382715
0.100147733526
0.0973805241568
0.0946981547301
0.0921506496679
0.0897896532004
0.0876656814819
0.0858261934152
0.0843143550311
0.0831708732292
0.0824324350767
0.082137650851
0.0823065073934
0.0829654494778
0.0839799170304
0.0848960457114
0.122837385611
0.122849059422
0.122873599205
0.122936166999
0.123009200709
0.123075228366
0.123159044716
0.123254589545
0.123363808613
0.123484917037
0.123616814952
0.123771385038
0.123965531938
0.124211897076
0.124496623522
0.124792102658
0.125141945392
0.125533748657
0.125924804968
0.12634798419
0.12680975725
0.127282364238
0.127786021572
0.128322429087
0.128884954413
0.12947694219
0.130102701045
0.130762355856
0.131464672179
0.13220635629
0.132991991945
0.133835788301
0.134743659389
0.135732725625
0.136819931956
0.138035811251
0.139414874797
0.140991390989
0.142922169696
0.145619012297
0.145675085424
0.145580069445
0.145346066835
0.144904839249
0.143915508788
0.142675989723
0.141227079296
0.139609110828
0.137868869421
0.136036105069
0.134127753104
0.132152785756
0.130114710194
0.128013699804
0.125848269787
0.123616392772
0.121316177327
0.118946364082
0.116506702708
0.113998404285
0.111424637444
0.108791476195
0.106109598649
0.103396544151
0.100678706988
0.0979920959141
0.0953813372397
0.0928970217998
0.0905920416395
0.088517595558
0.0867197249396
0.0852366836065
0.0840970571718
0.0833221073805
0.0829209627118
0.0829025673058
0.0832654929887
0.0840821720969
0.0849923465462
0.0844926376978
0.121891452965
0.12190015903
0.121925343263
0.121967176376
0.122043840828
0.122113552043
0.122193791816
0.122279797914
0.122377401663
0.12249238371
0.122614914114
0.12275916685
0.122927302693
0.12314542631
0.1234176637
0.123722079778
0.124046099942
0.124424620521
0.124826385475
0.125236730485
0.125676472877
0.126150268599
0.126640559533
0.127156968989
0.127701401096
0.128272297355
0.128868018669
0.129495055875
0.130151707945
0.130841050439
0.131563056659
0.132331435574
0.133151319527
0.134033399733
0.134996160515
0.136071067088
0.137304686392
0.138715128252
0.140422689154
0.142721603411
0.145216855583
0.144276868105
0.143371408656
0.142759569685
0.141629956811
0.140270184334
0.138744608056
0.137080284554
0.135312429316
0.133464597387
0.13154903251
0.129571349001
0.127533059187
0.12543338253
0.123270618762
0.121043057388
0.118749495185
0.116389651287
0.113964485093
0.111476671837
0.108931117574
0.106336127056
0.1037055179
0.101061234772
0.0984352556356
0.0958696442862
0.0934143876172
0.0911234363332
0.0890499135315
0.0872412249008
0.0857350711339
0.0845560086089
0.0837130864549
0.0832022799881
0.0829966594617
0.0830769546608
0.0834161539164
0.0840609870655
0.084760015414
0.0869727377692
0.120944653347
0.120945809131
0.120961751546
0.120980226994
0.121042753147
0.121132523632
0.121222979745
0.121304032622
0.121392021103
0.121497013722
0.121616042608
0.121747006921
0.121906727832
0.122095822105
0.122341635989
0.12264328576
0.122969645463
0.123324555141
0.123723944287
0.124141914307
0.124567647726
0.125018929345
0.125503374099
0.12600227366
0.126523804625
0.127069149257
0.127632506099
0.128215175144
0.128817624167
0.129441579566
0.13008983264
0.130767840654
0.131482689179
0.132234781113
0.133038096461
0.133920159168
0.134912682388
0.136034290609
0.1373764733
0.139088241668
0.141000512451
0.141780184189
0.140698382579
0.140083963803
0.138993128911
0.137628273163
0.136096049332
0.134433855184
0.132672704669
0.130833960957
0.128928483876
0.126960835126
0.124932056743
0.122841444996
0.120687771139
0.118470084658
0.1161881349
0.113842763055
0.111436183838
0.108972520754
0.10645833942
0.103904119809
0.101326881788
0.0987531360899
0.0962204931383
0.0937767050165
0.0914761172175
0.0893743799406
0.0875227399905
0.0859626408483
0.0847218228442
0.0838103989972
0.0832184668792
0.0829142761826
0.0828246105818
0.0829017503372
0.0830632126944
0.0833773354562
0.0839910485484
0.0847695523531
0.120005384873
0.119994697136
0.119992019242
0.120000554786
0.120041030106
0.120127792629
0.120228958638
0.120316726387
0.12040411902
0.120502255131
0.120619632631
0.120746594216
0.120901676735
0.121080357617
0.121300271008
0.121573535806
0.121903914357
0.122254439144
0.122634461904
0.123050232774
0.123481880963
0.123919112431
0.124378428066
0.1248641427
0.12536283237
0.12587376375
0.126398141067
0.126931252732
0.127478826022
0.128035808469
0.128608698839
0.129189823714
0.129784614435
0.130392731596
0.131020233325
0.131669412602
0.132358025295
0.133131418097
0.133997878826
0.135151850764
0.136729858267
0.138337421013
0.137444328736
0.136940128482
0.136027840875
0.134771210033
0.13330178822
0.131686734432
0.12996331567
0.128155161038
0.126274877102
0.124328227683
0.12231725927
0.120242299866
0.118103203323
0.115900159365
0.113634082598
0.111307043354
0.108922529074
0.106486084575
0.104005853928
0.101494478818
0.0989723435544
0.0964707998089
0.0940331968848
0.091712585709
0.0895666243888
0.0876510595803
0.0860134760758
0.0846880070972
0.0836926293908
0.0830260546594
0.0826685795741
0.0825758075178
0.0826566644493
0.0828290481371
0.0827477078875
0.0828463436246
0.0833294785395
0.0835903223559
0.119095310555
0.119073140541
0.11905637732
0.119056836931
0.119074610849
0.119127234914
0.119216958011
0.119323640503
0.119418981277
0.119517465962
0.119630039172
0.119761028737
0.119903784607
0.120086192696
0.120295371135
0.120550395339
0.120853403428
0.12120798492
0.12158242716
0.121980785284
0.122407935061
0.122847749852
0.12329199723
0.123750870153
0.124225506208
0.124704179881
0.125184974671
0.125673352728
0.126163006896
0.126655310142
0.127140555803
0.12762050915
0.128093304595
0.12855975609
0.129012375841
0.129433291919
0.129815276924
0.130144202367
0.130316549634
0.130647565733
0.12950360176
0.13370612185
0.133897506324
0.133570545426
0.132863918956
0.13177489961
0.130412741179
0.128873640585
0.127208206581
0.125445222364
0.123600657979
0.121682818464
0.119695722812
0.117641372736
0.115521109259
0.113336508565
0.111089773
0.108784254634
0.106424694333
0.104018021637
0.101573878313
0.099107116171
0.0966417711662
0.0942144316537
0.0918743236343
0.0896793268267
0.0876892178651
0.0859580571595
0.0845277506092
0.083423429463
0.0826528417469
0.0822045373088
0.0820559388594
0.0821750528973
0.0825540323291
0.0831368842347
0.0827698620216
0.0830344673137
0.0828204712244
0.0828087956172
0.11822447764
0.118197050017
0.11817386446
0.118160838051
0.118161576056
0.11818103705
0.118241022819
0.118350328781
0.118452386216
0.118551534152
0.118659411249
0.118787148796
0.118930271678
0.119100621491
0.119314597611
0.119555779665
0.119842178597
0.120176299268
0.12055691345
0.120951343452
0.12136719337
0.121795015074
0.122238257079
0.122676908351
0.123119790411
0.123566607449
0.12401061934
0.124449485463
0.124880804468
0.125295668739
0.125692274043
0.126077296472
0.126439624263
0.126771303024
0.127053777675
0.127265353589
0.127357497203
0.1272889675
0.126629967775
0.127793745634
0.128347732533
0.128740881672
0.130129062091
0.130232802795
0.129691928492
0.128746490277
0.127494215807
0.126037693631
0.124436677319
0.122724580128
0.12092048031
0.119035365663
0.117075499863
0.11504478479
0.112946188522
0.110782752147
0.108557978147
0.106276489966
0.103944220797
0.101569441577
0.0991632120046
0.0967427237149
0.0943360961494
0.0919856681774
0.0897466928318
0.0876813335929
0.0858502010647
0.0843037698349
0.0830759041178
0.0821799857348
0.0816101635319
0.0813397166631
0.0813394003742
0.081573709673
0.0820397114046
0.0826246920372
0.0837708050212
0.0826105915815
0.0822333866203
0.0821116269227
0.117387596825
0.117367535005
0.117341002544
0.117318041487
0.117301627467
0.117297355239
0.11731980321
0.117405707712
0.117513358159
0.117612287323
0.117716606004
0.117835774281
0.117981493478
0.118148035573
0.118357081836
0.118593281886
0.118868047176
0.119197618617
0.119560860906
0.119954617664
0.120371756309
0.120791123743
0.121212800172
0.1216378612
0.122052876997
0.122463511075
0.122868550599
0.123255217817
0.123621321542
0.123962704936
0.124288414765
0.124581780689
0.124833737288
0.125029313644
0.12514911938
0.125169570577
0.125037109595
0.124782020067
0.123168650225
0.124893634417
0.126690611953
0.126153168522
0.126887070947
0.127086712793
0.126631078687
0.125771930055
0.124603411998
0.123218714189
0.121677131796
0.120013680159
0.11824925379
0.116396910963
0.114464890055
0.112458858083
0.110383305449
0.108242657691
0.106041621963
0.103786023986
0.101482886499
0.0991417777714
0.0967750940093
0.0944025945798
0.0920570605272
0.0897871733836
0.0876543176177
0.0857243258617
0.0840574803936
0.082699285961
0.0816741980938
0.0809819507145
0.0805980583801
0.080470697486
0.0805613917756
0.0808262651667
0.0812769463103
0.0818717928332
0.0819824551357
0.0816389620183
0.081450742361
0.0813702942774
0.116594485183
0.116586302153
0.116559239942
0.116530234282
0.11650088463
0.116475974541
0.116472479562
0.116503958017
0.116599440293
0.116702762785
0.116805960816
0.116919303037
0.117053626353
0.117223699147
0.117419092727
0.117672568325
0.117951462342
0.118277220352
0.118634115459
0.119015668856
0.119417789382
0.119837859203
0.120240448115
0.120638633148
0.121025682324
0.121402427749
0.121760526069
0.122095567028
0.122401722738
0.122687500491
0.122937438613
0.123137219178
0.123277827594
0.123343626052
0.12331676571
0.123183856146
0.122944502466
0.122816480616
0.121075264731
0.121705267661
0.123541749519
0.12360920964
0.123966333319
0.124120897495
0.123702846798
0.122893607804
0.121780203848
0.1204483869
0.118953712144
0.117330627346
0.115600529293
0.113777666234
0.111871666384
0.109889570409
0.10783709678
0.105719849069
0.103543553953
0.10131512639
0.09904253955
0.0967366246705
0.0944110273335
0.0920884199673
0.0898069526644
0.0876222284671
0.0856016527368
0.0838138178085
0.082317422235
0.0811522173998
0.0803341369908
0.079852448765
0.0796684290879
0.0797087952475
0.0799055456665
0.0801099757687
0.0805421998519
0.0807841516731
0.0808360145031
0.0807192829298
0.0806368710149
0.0805978912684
0.115863754052
0.115853627825
0.115827626054
0.115793562894
0.115756625853
0.11571627622
0.115686242724
0.115680571506
0.115721104268
0.115825490358
0.115933885498
0.116042481358
0.116164084244
0.116326058529
0.116529401654
0.116781543758
0.117088570118
0.117408588414
0.117767874325
0.118142554708
0.118531799898
0.11893098102
0.119319892211
0.119690706178
0.120046443598
0.120385518857
0.120701994952
0.120986472975
0.121245715087
0.121467685484
0.121637623902
0.121748540454
0.121788482223
0.121739888755
0.121582889971
0.121305235712
0.12090350134
0.120526569284
0.1190855546
0.118665026918
0.119781133584
0.12075504449
0.121191139725
0.121345766584
0.120938787397
0.120145734754
0.119055240753
0.117751207923
0.116285278862
0.114689814264
0.112985302191
0.111186086769
0.109302384677
0.107342045369
0.105311590793
0.10321751445
0.101066314731
0.098865862233
0.0966249137785
0.0943555547296
0.0920725829936
0.089802078706
0.0875883841223
0.0854945094187
0.0835934033228
0.0819549043452
0.0806340013047
0.0796626220485
0.079047656819
0.078771996764
0.0788015530353
0.07908920439
0.079547388086
0.079593405078
0.0799261824935
0.0798676651304
0.079864035592
0.0798272936402
0.0797982537245
0.0797830625059
0.115194154841
0.115168927189
0.115142655935
0.115107827954
0.115067850083
0.115018020937
0.114959908159
0.114920687498
0.114924842541
0.114984643359
0.115105439478
0.115214007767
0.115319369524
0.115475856675
0.115694832178
0.115959915651
0.116266838518
0.116608909198
0.116964244463
0.11733699928
0.117710060536
0.118088209658
0.118454199519
0.11879849363
0.119122302564
0.119421097402
0.119693565261
0.119935199163
0.12013873608
0.120292411681
0.120391687643
0.120427607199
0.120386364127
0.120250467475
0.119996348855
0.119593899302
0.11896459595
0.118043159355
0.117418709339
0.116785648525
0.116889083083
0.11828067541
0.118780951648
0.118864576311
0.118390376256
0.117557582215
0.116449003522
0.115142705815
0.113683863133
0.112100683516
0.110411056959
0.108628149472
0.106761841547
0.104820142352
0.102809891202
0.100738154044
0.0986119239546
0.096439902234
0.0942314454814
0.0919999294183
0.0897611889865
0.0875453951542
0.0854040012352
0.0834077787275
0.0816344404436
0.0801532447337
0.0790128219994
0.0782332721284
0.0778064745234
0.0777017393491
0.0778832443205
0.0782946148461
0.0788453825283
0.079772936885
0.0791251426143
0.0789699939803
0.0789301435641
0.0789203337237
0.0789175045205
0.0789123694407
0.11457415459
0.114533811374
0.114503690325
0.114479064837
0.114445329865
0.114394638635
0.114323416446
0.114241270264
0.114213813017
0.114228876809
0.114313085271
0.11443532183
0.114519428759
0.114680829171
0.114912226478
0.115206854454
0.115530748906
0.115878327933
0.116241654694
0.116602619425
0.116959663487
0.11730989611
0.117649706861
0.117965819299
0.118252103659
0.118509386971
0.118735237636
0.118926034139
0.11907035916
0.119165170609
0.119205379417
0.119182525471
0.119086257897
0.11890290421
0.11860801371
0.118154518385
0.117438127089
0.116644797286
0.116534253411
0.11641774366
0.115887431353
0.116690252744
0.11685471962
0.116705855302
0.116066721677
0.115132698796
0.113964685353
0.112626605448
0.111153340432
0.109566959707
0.107881233694
0.106106949633
0.104252758707
0.102326203582
0.100333967628
0.0982833989274
0.0961817136666
0.0940383612696
0.0918631072062
0.0896707237266
0.0874779343878
0.085319910666
0.0832561480115
0.081365255684
0.0797285793852
0.0784130861531
0.0774595784282
0.0768751079648
0.0766348995089
0.0766857518731
0.0769553551432
0.0773465805517
0.0780299109465
0.0781561058788
0.0780114874174
0.0779571009766
0.0779541300066
0.0779692411865
0.077983014721
0.0779866840616
0.11399442527
0.113944035273
0.113910837138
0.113915248685
0.113906000951
0.113866157639
0.113789204865
0.113681421514
0.113578186032
0.113596382095
0.113623138136
0.113724672392
0.11378653669
0.113937538471
0.114205601394
0.1145238817
0.114880758905
0.115236029122
0.115591869172
0.115940921268
0.116275978359
0.116600202447
0.116907068819
0.117186984772
0.117432661042
0.117643429567
0.117819091435
0.117954778026
0.118044517483
0.118086021675
0.118075769346
0.118010078391
0.117884250721
0.117690902782
0.11740570056
0.11699066392
0.116392694091
0.115857917738
0.115753474156
0.1164013207
0.115354261507
0.115533930069
0.115219339012
0.114773395762
0.113922432501
0.112847657142
0.111589094812
0.110195524976
0.108689791927
0.10708680844
0.105395272478
0.103622684175
0.101775735246
0.09986098843
0.0978845767064
0.0958539190426
0.0937762206653
0.0916616735887
0.0895202628806
0.0873683664957
0.0852234045098
0.0831267524605
0.0811467918692
0.079369543618
0.0778780179904
0.0767341241229
0.0759687372529
0.0755786471416
0.075537306296
0.0757846326504
0.0761961190218
0.0765196459274
0.0768521178163
0.0769137306084
0.0768955929246
0.0769017502882
0.0769325588007
0.0769685282086
0.0769937227494
0.0770090246525
0.11347517335
0.113390372484
0.113377158605
0.113438459934
0.113471177638
0.113451742282
0.113373975519
0.113244849097
0.113065253226
0.113116577456
0.113111010617
0.113098921412
0.112991371864
0.11335939814
0.113602598495
0.113948196496
0.114312999661
0.114679553166
0.115022895456
0.115350219101
0.115659867873
0.115949726547
0.116219828272
0.116457105532
0.116657278041
0.116819900869
0.116942561951
0.117023182107
0.117058941632
0.117049048751
0.116994365861
0.11689619291
0.116758023026
0.116576780489
0.116337477176
0.116034339374
0.115633006018
0.115103946825
0.115054944987
0.113360715811
0.11398703485
0.114375909302
0.113729347565
0.112988497741
0.111908198724
0.11066986308
0.109299563504
0.107833890621
0.106282893049
0.104653616116
0.102949103343
0.101172971726
0.0993294529742
0.0974237946925
0.0954613178154
0.0934494257632
0.0913951418031
0.0893095058529
0.0872025364281
0.0850925681462
0.0829974703989
0.080966437848
0.0790774899046
0.0774232727153
0.0760858566001
0.0751175997223
0.0745329076756
0.0743129396591
0.0744291714723
0.0748145722382
0.0753573721998
0.07616034976
0.0757963312668
0.075758662898
0.0757622827436
0.0757953864757
0.0758446665934
0.0758963086669
0.0759261827031
0.0759475663104
0.113087505866
0.112995016933
0.112974683589
0.113092222778
0.113160430651
0.113159076622
0.113086871072
0.112944221801
0.112842728066
0.112759220328
0.112772830767
0.112749411329
0.112771752751
0.112847522628
0.113129283263
0.113474860184
0.113851777319
0.114203919127
0.114534546736
0.114832449948
0.115106808578
0.115358556399
0.11558358195
0.115774691782
0.115926201894
0.116036371776
0.116104518086
0.116128175652
0.116107505415
0.116044765881
0.115944929933
0.115814393276
0.115664156268
0.115498382359
0.115336339147
0.115182797801
0.114991997544
0.114456113259
0.115263782503
0.113532198789
0.113124837891
0.113475427285
0.112446836661
0.111332597609
0.109982253577
0.108560496458
0.107065504769
0.105519276265
0.103917077526
0.102256970956
0.100535935684
0.0987534539512
0.09691111124
0.0950127540933
0.0930628164811
0.0910687650146
0.0890373518931
0.0869807103136
0.0849086980289
0.0828421320767
0.0807989843259
0.0788383878684
0.0770485757352
0.0755278873078
0.0743552168786
0.073570868269
0.0731713550592
0.0731123870074
0.0733053579072
0.0736594944931
0.0744893670891
0.0745779509789
0.0745296450427
0.0745377741145
0.074569242908
0.0746144318253
0.0746630284134
0.0747141071869
0.074745347359
0.0747588706506
0.112882900898
0.112850478936
0.112848061427
0.112902291325
0.112968751668
0.112971838072
0.112911026542
0.112790197727
0.112735448994
0.112667764549
0.11265701815
0.112663968297
0.112707414411
0.112733408621
0.11287083304
0.113094637602
0.113486037555
0.113820287841
0.114116340333
0.114381787165
0.114615336089
0.11482163614
0.114997956687
0.115138196305
0.115237337217
0.115292672174
0.115302455367
0.115265421004
0.115183738893
0.115062261588
0.114907559988
0.114729044047
0.11454707931
0.114393289428
0.114323214887
0.114372763263
0.114575814482
0.114722802361
0.116020029933
0.114530897363
0.1130094766
0.112840989168
0.111294689472
0.109729445482
0.108074158032
0.106463602452
0.104846133937
0.103223083946
0.101572965119
0.0998840779033
0.0981474383044
0.0963587014403
0.0945170843138
0.0926252856188
0.0906870179779
0.0887100878205
0.0867009776318
0.0846733231742
0.0826365913535
0.0806148089569
0.0786255157742
0.0767404596113
0.0750581523559
0.0736809627138
0.0726815772921
0.0720878739634
0.0718894493747
0.0720364216615
0.0723838586308
0.0726446947976
0.0731205100508
0.0732287222528
0.0732504435526
0.0732798887404
0.0733182744176
0.0733596236146
0.0733965293439
0.0734292740694
0.073457360027
0.0734598277817
0.112803158979
0.112796511991
0.112803519351
0.112818353376
0.112860259832
0.112853975503
0.112802495133
0.11271876214
0.112665079077
0.11262110608
0.112619225986
0.11262052885
0.112647915031
0.112690260012
0.112757584451
0.112954598601
0.113226938983
0.113506787986
0.11376023936
0.113985413474
0.114176307002
0.114332271123
0.114456937797
0.114545054777
0.114589941555
0.114587700282
0.114536140923
0.114433748234
0.114284019438
0.114091969621
0.113858245846
0.113596532283
0.113348717968
0.113178276456
0.113168153201
0.11344034412
0.114141159492
0.115527735092
0.116898987405
0.115722661731
0.113294180725
0.112147739345
0.11001938523
0.108015680259
0.106074307238
0.104305209164
0.102592951145
0.100913836049
0.0992303424726
0.0975221032275
0.095775472417
0.093983448651
0.0921437764771
0.0902586684678
0.0883315554631
0.0863710689326
0.0843835076176
0.082384599925
0.0803831146348
0.0784072460187
0.0764732707957
0.074668890581
0.0731021207811
0.0718766002841
0.0710547302069
0.0706501424513
0.0706337766053
0.0708949547435
0.0713310322504
0.072341626758
0.0719866128072
0.0719572338243
0.0719583305698
0.0719833428532
0.0720172692775
0.0720514305256
0.0720801952547
0.0721004666123
0.0721198761146
0.0721263753298
0.112752914452
0.112776232304
0.112794424734
0.112780020073
0.112793680419
0.112772943061
0.112723187974
0.112653812061
0.112583918501
0.112578992817
0.11259391405
0.112582186231
0.112561837084
0.112611299635
0.112703634514
0.112846474852
0.113040521587
0.113249814295
0.113448581015
0.113628115297
0.113775216084
0.11388629021
0.113959647029
0.113994820511
0.113984757607
0.11392283268
0.113805697511
0.113631959677
0.113404216869
0.113115529833
0.112760786788
0.112379584675
0.112014250157
0.111738672178
0.11168191699
0.112063787048
0.113192118978
0.116280803126
0.117674688887
0.116607993325
0.113330117308
0.110804906383
0.10820433144
0.105956182694
0.103851451057
0.102007925284
0.100260292214
0.0985645857282
0.0968732411372
0.0951615608324
0.0934143184414
0.0916240514482
0.0897885709927
0.0879106506713
0.0859941287275
0.0840491257241
0.0820818999828
0.0801110532028
0.0781442194342
0.0762149994086
0.0743371814175
0.0726185609849
0.0711744889974
0.0701062442608
0.0694645308517
0.0692513203657
0.0694014233616
0.0697437102274
0.0702697242938
0.0706259018664
0.0706044266948
0.0706046069423
0.0706157718725
0.0706408212246
0.0706717631821
0.0707023273505
0.0707282949371
0.070746046645
0.0707607579521
0.0707722179088
0.112750631967
0.11275774609
0.112787452441
0.11276090804
0.112745096599
0.112713606306
0.1126653013
0.112604894175
0.11253923816
0.112544971127
0.112561013246
0.112551227937
0.112523972519
0.112519205374
0.112549901322
0.112704803972
0.112869405664
0.113036844691
0.113186445151
0.113314155981
0.113412681376
0.113478733698
0.113504327183
0.113487145302
0.113421007275
0.113298104898
0.11311135363
0.112859182578
0.112532337501
0.112110527872
0.111612083231
0.111066209801
0.11049964016
0.109976730962
0.109625829644
0.109649838414
0.110401948821
0.112777874012
0.117932213636
0.112259142532
0.111401045691
0.108240555317
0.105483822493
0.103340374978
0.101304060106
0.0995223319238
0.0978239291518
0.0961637236784
0.094496265515
0.0928000486941
0.0910629050898
0.0892798374777
0.0874506593008
0.0855799565841
0.083672807137
0.0817415806391
0.0797926473142
0.077848450322
0.0759148526111
0.0740324678727
0.0722109480904
0.0705833456698
0.0692680026056
0.0683596533115
0.0678981812747
0.0678650725089
0.068127258373
0.0685800324022
0.0694905689838
0.0692947835981
0.0692344777324
0.0692212148755
0.0692309293062
0.0692552388981
0.0692851781071
0.0693151638026
0.0693412617737
0.0693584123276
0.0693738279676
0.0693875476358
0.112745646468
0.112736841635
0.112739655932
0.112727017444
0.112704789505
0.112670286575
0.112624256195
0.11257148966
0.112516761457
0.112521341647
0.112531747822
0.112526715994
0.112511310966
0.11250748678
0.112530687932
0.112550756663
0.112722032033
0.112852404672
0.112959253249
0.11304075252
0.113092004834
0.113110829321
0.113090126094
0.113021778032
0.112900256071
0.112712735593
0.112452363648
0.112109811855
0.111660287079
0.111099890199
0.110439974275
0.109678401013
0.108816425282
0.107880951518
0.106961870375
0.106160152271
0.105627292121
0.10551852486
0.106690663312
0.103165578445
0.106330649749
0.104167491478
0.101772853194
0.100125484368
0.0984321019076
0.096863874366
0.0952999552978
0.0937243879012
0.0921093268974
0.0904447150264
0.0887261442529
0.086953858552
0.0851314793931
0.0832665423564
0.0813661716643
0.0794457217456
0.0775117827416
0.075591779857
0.0736888624911
0.0718527191064
0.0700866940075
0.0685554534821
0.0673739489496
0.0666288939809
0.066347971657
0.0664597403779
0.0667960827502
0.0674548723525
0.0677105057741
0.067742622733
0.0677583718771
0.0677775425504
0.0678017371727
0.0678327182066
0.0678659039342
0.0678980501935
0.0679270050679
0.067947106685
0.0679646052425
0.0679786866234
0.112732377101
0.112721907716
0.112696191931
0.112703015028
0.112677675134
0.112640011808
0.11259503287
0.112548386626
0.112502594458
0.112505239755
0.112511184862
0.112508669273
0.112501677167
0.112502558958
0.112515321605
0.112549422183
0.112627692902
0.112700390825
0.112759312804
0.112798419693
0.112807240406
0.112781869556
0.112714601098
0.112598264078
0.112420199916
0.112166412799
0.111829934162
0.111388086895
0.110821447662
0.110122049106
0.109280286055
0.108261986432
0.107025478692
0.105604179129
0.104040474332
0.102286243562
0.100220841328
0.0976504356987
0.0932814051372
0.0951895101405
0.0969333807273
0.0982765625449
0.0973883090759
0.0965709930338
0.0953922433266
0.0941291602414
0.0927488575741
0.0912849731418
0.089737252708
0.0881118013542
0.086414595899
0.0846526769361
0.0828345846056
0.0809715073893
0.0790732440689
0.0771587280637
0.0752348139884
0.0733352161834
0.0714590346975
0.0696677020226
0.067955112259
0.0665243131097
0.0654785772376
0.0649023576426
0.0648015894819
0.0650042390838
0.0654482787085
0.0664074764762
0.0662368095556
0.0662460590604
0.0662780467635
0.0663163753678
0.0663562950609
0.0663979630885
0.0664385866922
0.066475801367
0.0665080774143
0.0665352954944
0.0665574287152
0.0665728715186
0.112722443758
0.112716911351
0.112706437717
0.112708854793
0.112665136073
0.112619738951
0.112572975519
0.112529260042
0.112491413806
0.112492670548
0.112495819568
0.112492540604
0.112486048068
0.112496809326
0.112494883517
0.112507042804
0.112538476655
0.112567991237
0.112584719734
0.112583128855
0.112551206731
0.112486842897
0.112379254832
0.112215517148
0.111980089754
0.111666542032
0.111255333236
0.110719895111
0.110042250705
0.109205821056
0.108172254743
0.106872011183
0.105280723038
0.103452196011
0.101329117089
0.098742993859
0.0954166581607
0.0900776739621
0.088220495556
0.0885890801171
0.0894204704676
0.0926910941532
0.0932277689344
0.0931551308712
0.0924385734647
0.0914599817267
0.0902548101136
0.0888977261764
0.0874135179821
0.0858231605563
0.084142511957
0.0823852523896
0.0805649948197
0.0786966931378
0.0767932076322
0.0748774291844
0.0729565054688
0.071071937638
0.0692170887402
0.0674689034566
0.0658074428742
0.0644809499116
0.0635693763755
0.0631568223624
0.0632034595856
0.0634948316882
0.0641660985321
0.0645908422822
0.0646595840111
0.0647276292297
0.0647935057263
0.0648586414343
0.0649199251082
0.0649791486004
0.0650344800517
0.065083755849
0.0651249074684
0.065159917733
0.0651844159216
0.0651973210641
0.11271974768
0.11271879179
0.112714144612
0.112717220119
0.112656908325
0.112603723344
0.112554287886
0.112511728303
0.112481197449
0.112481766627
0.112483363659
0.112478991768
0.112470032811
0.112466574996
0.112467375845
0.112462937387
0.1124572718
0.112448999231
0.112430918894
0.112390011257
0.112324239658
0.112226979519
0.112080038078
0.111868411086
0.111588829955
0.1112215877
0.110736963653
0.110119351204
0.109345501206
0.108374226392
0.107148816292
0.105601621162
0.103744601523
0.101611486212
0.0991030073236
0.0960467601357
0.0922147591704
0.0864488725713
0.085597334764
0.0853677451515
0.0858085278571
0.088874030663
0.089930037666
0.0902227111743
0.0897723385726
0.0889778342708
0.087894519568
0.0866128819921
0.0851717835117
0.0836015809928
0.0819251893646
0.0801614193983
0.078328301334
0.0764441265048
0.0745250049651
0.0725979101623
0.070670400709
0.0687934707849
0.0669528768293
0.0652465332881
0.0636350136284
0.0624231403139
0.0616610890932
0.0614107398992
0.0614866273494
0.06182477724
0.0630587705058
0.0630212230758
0.0631147354084
0.0632168657619
0.0633173649886
0.0634154253087
0.0635070107988
0.0635921298983
0.0636696001905
0.0637374500708
0.0637940527316
0.0638372809031
0.0638629180149
0.0638704828247
0.112717042102
0.112720055346
0.112715419821
0.112717996852
0.112647795339
0.112588481785
0.112536623926
0.112494311586
0.112465775098
0.112473558245
0.112474211896
0.112469527095
0.112462014341
0.112456824827
0.112444513965
0.112420275548
0.112386062909
0.112343665735
0.112290579082
0.112219407924
0.112126283169
0.111995040437
0.111810419923
0.11156824287
0.111253106974
0.110830472893
0.110287107161
0.109605665408
0.108741083096
0.107647913703
0.106267196483
0.104534936295
0.102492143961
0.100157193918
0.0974385834525
0.0942116579532
0.090368706809
0.0851226327904
0.0850851027286
0.0851067611826
0.0848231877314
0.0867223597589
0.0875540979778
0.0878615019023
0.0874787399856
0.0867509420191
0.0857191981995
0.0844682348209
0.0830396863926
0.0814670428024
0.0797767104506
0.0779905359411
0.0761298649743
0.0742155369263
0.0722670005184
0.0703151383993
0.0683682173949
0.0664885398616
0.0646524169104
0.0629860442884
0.0614219782937
0.0603400650883
0.0597646995077
0.0597332919415
0.0599208200952
0.0601923745233
0.0610743847815
0.0613194923251
0.0615207462255
0.06169078628
0.0618444895707
0.0619867461095
0.0621201294408
0.0622396178082
0.0623450550019
0.0624349922057
0.0625083927618
0.0625616728091
0.0625949599344
0.0626070871679
0.112713183972
0.112721613878
0.112711129068
0.112713127868
0.112636698964
0.112572354576
0.112518858644
0.112475900557
0.112470038646
0.112471506938
0.112469117273
0.112463688334
0.112457967067
0.112452937424
0.112424001388
0.11237736801
0.112318151203
0.112248309058
0.112166157139
0.112068080144
0.111948079899
0.111790851878
0.111584972412
0.111321081607
0.110968273668
0.110503218008
0.109919153786
0.109186043173
0.108252143477
0.107065433361
0.105561746879
0.103702313832
0.10154202678
0.0990915826026
0.0962835788831
0.0930429721856
0.0893501386409
0.0846631392578
0.0849374764118
0.0839160462032
0.0842493578967
0.0854883152707
0.0858743557116
0.0860065721084
0.0855568380862
0.0847997310315
0.0837533057713
0.0824864705002
0.0810363739933
0.0794348448506
0.0777086586475
0.0758806759998
0.0739743557991
0.0720121411043
0.0700169232714
0.0680229660008
0.0660397718493
0.0641424658472
0.0622959006479
0.0606633822482
0.0591390798126
0.0582059298652
0.0578221803584
0.0578832576859
0.0581931203228
0.0597160283276
0.0595452191417
0.059707575355
0.0599298087094
0.0601566748757
0.0603750701832
0.0605749175659
0.0607586503986
0.0609199235917
0.0610588405165
0.0611751411757
0.0612683146984
0.0613334897091
0.0613780002021
0.0614007489099
0.112704114009
0.112713410403
0.112694823693
0.112698229443
0.11262106183
0.11255571647
0.112507376863
0.11247577584
0.112467369622
0.112468753114
0.112465707373
0.112459126253
0.112453890511
0.112449217833
0.112402991882
0.11233470966
0.112250988981
0.112156380365
0.112051167454
0.111934664129
0.111797331943
0.111623872319
0.111404579102
0.111120135307
0.110740616221
0.110251380898
0.109640496665
0.108870103621
0.107883057325
0.106632105779
0.105055297436
0.103117889183
0.100888919768
0.0983844443391
0.0955556655209
0.0923597480171
0.0888170476374
0.0844236843018
0.0850196750475
0.0839961087909
0.0838350728408
0.0847248273662
0.0846889128917
0.0845648886621
0.0839695106074
0.0831159006255
0.0820015452549
0.0806774151866
0.0791729418068
0.0775154493084
0.0757298665192
0.0738384661915
0.0718657208306
0.0698347486447
0.0677721048424
0.065714573183
0.0636739416373
0.0617390347637
0.0598601062326
0.0582444030889
0.0567346662214
0.0559693526873
0.0558025436026
0.0559715393218
0.0564830505371
0.0572814718833
0.057552140186
0.0579121704118
0.0582610974062
0.0585913736935
0.0588976721748
0.0591754091781
0.0594199299283
0.0596303209618
0.0598076854019
0.0599535381071
0.0600679241727
0.0601502463402
0.0602077471584
0.0602404155174
0.112687688847
0.112673612397
0.112672397264
0.112676670985
0.11259681906
0.112533183296
0.112488851073
0.112469954965
0.112464396149
0.112467590941
0.112463353838
0.112454530198
0.112448415773
0.11244421313
0.112385154586
0.112289571334
0.112179410155
0.112063501944
0.111943967854
0.111816449436
0.111669118934
0.111491179189
0.111266059275
0.1109684247
0.110574254525
0.110071128981
0.109445625847
0.108659297582
0.107653263383
0.106373767524
0.104746640361
0.102767094211
0.100516026581
0.0980005507483
0.0951887057303
0.0920599367766
0.0886605930036
0.0845447297928
0.0852539962584
0.0843099694088
0.083747389846
0.084279237879
0.0838584569134
0.0834510217929
0.0826694787942
0.0816774092014
0.0804567532494
0.0790420249761
0.0774543953315
0.0757154570626
0.0738469622988
0.0718694809217
0.0698075430949
0.0676841248859
0.0655297908615
0.0633827035557
0.0612592089784
0.0592628263378
0.057326651594
0.0557061174487
0.0541667477495
0.0535316482367
0.0534563064295
0.0537354082657
0.0549691263567
0.0553008265394
0.0556058446122
0.0560658230709
0.0565446807498
0.0570034376363
0.0574173790652
0.0577877348509
0.0581063293498
0.058374497583
0.0585955002391
0.0587736491134
0.0589102828219
0.0590131880204
0.0590831978956
0.0591240801702
0.112679051188
0.11265322497
0.11265626798
0.112654881186
0.112577052223
0.112521707036
0.112489583386
0.112470847269
0.112466446887
0.112468489697
0.112461514613
0.112449219951
0.112440847081
0.112434325842
0.112355777201
0.112242055679
0.11211089035
0.111975721642
0.111841813622
0.111705834338
0.111559588369
0.111385293063
0.111158810557
0.110857636488
0.110462992522
0.109965305068
0.109347761353
0.10856331789
0.107554883502
0.106266858114
0.104630236558
0.102652522921
0.100410213454
0.0979111141303
0.0951318633525
0.0920648961849
0.0887735571977
0.0848769555571
0.0855509936248
0.0847254574645
0.0838641459035
0.0840349346667
0.0832785269296
0.0825928353876
0.0816110114771
0.0804582874254
0.0791064571139
0.0775764309054
0.0758820886145
0.0740391278086
0.0720654175205
0.0699790663284
0.0678037523105
0.0655616116064
0.063287509254
0.0610194378768
0.0587820753983
0.0566947218025
0.054675626645
0.0530463342724
0.0514869779791
0.0509961886935
0.0507963042443
0.051080892906
0.0527277153953
0.0529780658034
0.0534842354622
0.0541051540405
0.0547706486271
0.0553890397206
0.0559432003953
0.0564233781066
0.0568308554709
0.0571678673973
0.0574392043474
0.0576531909593
0.0578158337537
0.0579374396164
0.0580182068803
0.0580629673584
0.112666874726
0.112643320475
0.11264669821
0.112645697585
0.112569717168
0.112518642376
0.112489550157
0.112470942149
0.112467615355
0.112467736888
0.112458600442
0.112441840173
0.112428569119
0.112407329399
0.112336998991
0.112199761075
0.112040794204
0.111879866786
0.111729283105
0.111594807936
0.111465482762
0.111305984364
0.111086745414
0.110790663976
0.110406625449
0.109926909279
0.109326997808
0.108560444977
0.107572741781
0.106308488028
0.104712456065
0.102774524486
0.10056324203
0.0980992909249
0.0953551587091
0.0923242646599
0.0890756892436
0.0852800953509
0.0858323976297
0.0851623702737
0.0840976269604
0.0839128254669
0.0828765096379
0.0819366067445
0.0807567792915
0.0794347014626
0.0779374077968
0.0762751301227
0.0744559568268
0.072490023573
0.0703908937126
0.0681735714822
0.0658598234743
0.063470261434
0.0610439136073
0.0586165969362
0.0562264222306
0.0540061226232
0.0518611495842
0.050210037117
0.0486918630553
0.0485847272454
0.0485546702591
0.048494158867
0.0499289716052
0.0505352019788
0.0512448724531
0.0520574695908
0.0529454630896
0.0537699810987
0.054490339178
0.0551030696617
0.0556144191696
0.0560314130726
0.0563600018901
0.0566145234238
0.0568070246259
0.0569472683243
0.0570397122752
0.0570867112772
0.112633833796
0.112637965346
0.112637109916
0.112630495711
0.11256784806
0.112523056638
0.112493364388
0.112471856791
0.112468806181
0.11246449305
0.112454220595
0.112432493014
0.112411278203
0.11235356489
0.11232563581
0.112166076021
0.111967600976
0.111772867335
0.111606860131
0.111483740163
0.111387514766
0.111254039262
0.111048400767
0.110765120694
0.110399444851
0.109943576371
0.109371542697
0.108635939118
0.107692616845
0.106493525482
0.104983394958
0.103122016284
0.100971887762
0.0985644099995
0.0958566889312
0.0928269214047
0.089531555706
0.0856607816985
0.0860503463258
0.085554506005
0.0843875135535
0.0838706962742
0.08260921068
0.0814464432073
0.0800788567509
0.0785868582209
0.0769377325488
0.0751330328563
0.0731763106768
0.0710725984528
0.0688307889742
0.0664620401273
0.0639847919995
0.0614171696022
0.05880101721
0.0561676107546
0.0535756345724
0.0511649488049
0.0488288488581
0.0470930126672
0.0454957515046
0.0455602715971
0.0458782654637
0.0483095916264
0.0476350905799
0.0481026653466
0.0489164344346
0.0499312841901
0.0510554287131
0.0521481872509
0.0530776209684
0.0538482266164
0.0544780513365
0.0549855368423
0.055382508075
0.0556841155852
0.0559068596526
0.0560641842634
0.0561692217416
0.056218098368
0.112622819325
0.112630974205
0.112619262699
0.112602164235
0.11257984998
0.112537720026
0.112503867662
0.112479690872
0.112465640526
0.11245759904
0.112449538312
0.112424766593
0.112396069865
0.112366289446
0.112372996844
0.112158228555
0.111893009889
0.111658568533
0.111492425614
0.111397764868
0.111340292209
0.111237291384
0.111039984016
0.110766694967
0.110425736743
0.110005550633
0.109474506719
0.108788663567
0.107907169743
0.106794224397
0.105413026632
0.103688621786
0.101642940749
0.0993265695823
0.0966709684436
0.0936163651526
0.0901718694228
0.0859668319268
0.0861884930727
0.0858580943371
0.0847141375238
0.0838973624486
0.0824460077279
0.0810918488182
0.0795537906032
0.0778986167092
0.0760982569722
0.0741471520846
0.0720454208359
0.0697936357807
0.0673956936551
0.0648579606818
0.0621937421217
0.0594171594719
0.0565692746326
0.0536733795607
0.0508153301561
0.0481318320311
0.045530799322
0.0436890212667
0.0419137189609
0.041853560647
0.0422772437262
0.0441382412405
0.0443882906552
0.0452316850365
0.0463709417222
0.0476958303442
0.0491094006924
0.050513598454
0.0517115794101
0.052675834371
0.0534424546656
0.054047448972
0.054516993074
0.0548705689281
0.0551272977701
0.0553007463425
0.0554172424004
0.055471064105
0.112603717802
0.112597927429
0.112604884645
0.11260241319
0.112600776639
0.112550742866
0.112510283584
0.112478551512
0.112448704674
0.112462077424
0.112449637016
0.112422019322
0.112397611251
0.112386100346
0.112370332623
0.112159528578
0.111811626129
0.111535786191
0.111386282144
0.111337821569
0.11129562366
0.111240962471
0.111051631174
0.110787157654
0.110474351852
0.110099083046
0.109622957457
0.108999833836
0.108192484155
0.107187160153
0.105968508301
0.104450347413
0.102592023218
0.100426302168
0.0978758041302
0.0948148653793
0.0911382700948
0.0861359901839
0.0862391133493
0.0860114187099
0.0850176559394
0.0839368461252
0.082332795188
0.0808389310821
0.0791653305649
0.0773623676623
0.0754160470061
0.0733186168861
0.0710686085619
0.0686629169544
0.0660999325711
0.0633798490532
0.0605086561739
0.0574944555673
0.0543721262588
0.0511535557363
0.0479499051421
0.0448608086596
0.0418505976819
0.0398600693707
0.0380499975123
0.0384043366293
0.0387823912868
0.0399770210796
0.0407770698331
0.0420595476066
0.0436384705377
0.0453698364546
0.04714121459
0.0488838019522
0.0504035643094
0.0515993970724
0.0525249197995
0.0532375321366
0.053778965467
0.0541806626681
0.054471475946
0.0546655940357
0.0547910618624
0.0548563795776
0.112596937515
0.112594251168
0.112602809182
0.112605086864
0.112605280787
0.112552912546
0.112512644907
0.112481940317
0.112459828414
0.112464276656
0.112448102935
0.112412783034
0.112389061421
0.112379453002
0.112359162732
0.112197156338
0.111684970188
0.1114057657
0.111354951458
0.111328806966
0.111315729489
0.111326275009
0.111090847853
0.110802207388
0.110521029401
0.110206358465
0.109801489072
0.109255670752
0.108524870018
0.107622135945
0.106587304313
0.105345304103
0.103818533776
0.101916671587
0.0995888891663
0.0966612811975
0.0928351298609
0.0864497207549
0.086261857313
0.0858235095841
0.0849008814086
0.0838480404146
0.0822575758573
0.0807053704289
0.0789325508895
0.0769903782527
0.0748974693146
0.072652382553
0.0702530405077
0.06769204759
0.0649606666359
0.0620504829156
0.0589570349547
0.0556790796514
0.052239381825
0.0486406341321
0.0450128052536
0.041365988308
0.0377326015311
0.0352074419586
0.0326842952523
0.033762910316
0.0374590254974
0.0358577657035
0.0368124201129
0.0385971173533
0.0407502853601
0.0429979915326
0.0452018032529
0.047305100148
0.0491702828709
0.0506305145017
0.0517324616182
0.0525611849105
0.0531807487474
0.0536307879234
0.0539492416023
0.0541627346163
0.0542976265993
0.0543726541521
0.112592679268
0.112594745901
0.112602048461
0.112605048801
0.112601924522
0.112546052987
0.112506942006
0.112475790661
0.112450436518
0.1124288378
0.112425400469
0.112379377518
0.112366551303
0.112355726798
0.112271385803
0.112002513143
0.111426436018
0.111373018526
0.111348724789
0.111304381799
0.111267965153
0.111206963983
0.111027649851
0.110780442311
0.110548666491
0.11031108318
0.109992798683
0.109544588177
0.108878678835
0.10802763308
0.107176543966
0.106247823405
0.10518665155
0.103828237185
0.101933322379
0.0995602915142
0.0964619570661
0.0921111340042
0.0864899266685
0.0817787301893
0.0837908499136
0.0839075135586
0.0825040841083
0.080843772133
0.0789212749878
0.0768066296706
0.0745487745231
0.0721505184738
0.0696037654975
0.0668926478983
0.063998011281
0.0608992504747
0.0575766822137
0.0540124299306
0.0502063350691
0.0461514453431
0.0419852318481
0.037644714895
0.0334081811646
0.0302613115532
0.0260190421112
0.0266589093921
0.0298317200093
0.029650444897
0.0318602335508
0.0347264051938
0.0377448470325
0.040657322634
0.0433658019348
0.0458525052118
0.0480559366582
0.0497891833787
0.0510715638257
0.0520157509224
0.0527119388371
0.0532150319841
0.053563660085
0.0537918491649
0.0539300005054
0.0539945319498
0.112591485829
0.112591417057
0.112598193551
0.112592367428
0.112575736206
0.11252631317
0.112491931589
0.112463753341
0.112437184434
0.112406422664
0.112343637515
0.112372395307
0.112347693352
0.112291852224
0.112186266228
0.111976989296
0.111525863565
0.111409643072
0.1113426108
0.111213229424
0.111099635016
0.111081227621
0.110969522632
0.110625254462
0.110431931156
0.110382393922
0.110163616835
0.109901309981
0.109274583658
0.108311712784
0.107611932871
0.106989622438
0.106413770826
0.105710795788
0.104748374138
0.103201015197
0.101229502456
0.0984058144226
0.0942436523984
0.084772664806
0.0849178577584
0.0851088656939
0.0834847924498
0.0813975312904
0.0791525633953
0.0767967861979
0.0743532585381
0.0718042262374
0.0691232344625
0.066280040949
0.063242194881
0.0599743920559
0.0564376074653
0.0525875941045
0.0483816889727
0.043770238703
0.038818769487
0.0334341842603
0.028535052329
0.025174303788
0.0198835920692
0.0188458735553
0.0186282598183
0.0215760349843
0.0261239796944
0.0306599697386
0.0348193883171
0.0385075769292
0.0417515619997
0.0446138545185
0.0471235949281
0.0491055765789
0.050551123887
0.0516031304073
0.0523646383231
0.0529105615883
0.0532878344522
0.0535304472597
0.0536701248828
0.0537226949076
0.112590323581
0.112590320389
0.11258930241
0.112570701573
0.112551751414
0.112484377143
0.112462678346
0.112446215613
0.112428979034
0.112410195434
0.112387451218
0.11237668625
0.112340967463
0.112291090818
0.112157639352
0.111941407046
0.111844107184
0.11171119687
0.111283153973
0.111000006528
0.111048479974
0.111023424904
0.110835677095
0.110624449761
0.110512214513
0.110513840352
0.11029382138
0.109997241443
0.10982172888
0.108318749533
0.107717969621
0.10746963203
0.107380109473
0.107380970463
0.107388092133
0.107384876578
0.107358944333
0.107264076741
0.106811028709
0.0932827479259
0.0901116358899
0.0878131613641
0.085002838565
0.082150974337
0.0794726652945
0.076868496112
0.0742645110783
0.0715984557201
0.0688195777261
0.0658827588689
0.0627437804762
0.0593548258528
0.0556596291199
0.0515867812549
0.0470425802944
0.0418920769734
0.0359897533797
0.0290244646162
0.0218620632245
0.0141511408219
0.00455199456653
0.00903399940527
0.00218733763105
0.0118488759367
0.020218417621
0.0269158438557
0.0323426181646
0.0367948137384
0.0405207051518
0.0436997421278
0.0464472312422
0.0486141377699
0.0501822392435
0.0513198155078
0.0521345534771
0.0527120972496
0.0531103637112
0.0533670153323
0.0535154045899
0.0535727573135
0.112590635222
0.112591258167
0.112572053068
0.112558303599
0.112530044841
0.112493531068
0.112468445354
0.112449123204
0.112430556079
0.112411928476
0.112393583171
0.112378141656
0.1123716931
0.112330296723
0.112212341501
0.112017161097
0.111828966475
0.111587531607
0.111337794864
0.11117857788
0.111139605516
0.111076927288
0.110885362515
0.110685625204
0.110533273192
0.110404394125
0.110138647595
0.109824391511
0.109223525539
0.108437354233
0.107958942518
0.107744809577
0.107638767936
0.107583206749
0.107557120963
0.107564009007
0.107608812397
0.107709500497
0.107973311157
0.107763163042
0.0980151464858
0.0904151242798
0.0859601800307
0.0825584649187
0.0796368864505
0.0769113870909
0.0742353107843
0.0715190354392
0.0686991897968
0.0657236352262
0.0625429020809
0.0591036739057
0.0553419468246
0.0511734266375
0.0464781189168
0.0410679410642
0.0346325704645
0.026520021698
0.0156602580315
-0.00376072440299
-0.0221639687637
-0.00328147099556
0.000302894277342
0.001268961091
0.0158136556462
0.0244205380273
0.0308418507666
0.0358163633073
0.0398450976201
0.0432152242268
0.0460993194207
0.0483615882051
0.0499911663706
0.05117587617
0.0520227935709
0.0526182774818
0.0530262828187
0.0532910744343
0.0534506460689
0.053514613478
)
;
boundaryField
{
frontAndBack
{
type empty;
}
upperWall
{
type zeroGradient;
}
lowerWall
{
type zeroGradient;
}
inlet
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
}
}
// ************************************************************************* //
| |
78cb81d21dd6482167ef0009c00379b81ebb21a0 | 183d90d93c92c6e4a9b48177892fef344c366399 | /src/platform/menu.cc | 5071eb8d309d6b232ec0a5e82ca76f739710d4d2 | [
"MIT"
] | permissive | GerHobbelt/turbo | d484a5c627b803928690ac862b3d21aa7846f7e6 | b2e279b573bf6e4905f4cbadd9412fd9be003a55 | refs/heads/master | 2023-05-22T21:05:22.695285 | 2021-06-12T14:17:41 | 2021-06-12T14:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | cc | menu.cc | #include <ScintillaHeaders.h>
using namespace Scintilla;
Menu::Menu() noexcept :
mid(0)
{
}
void Menu::CreatePopUp()
{
}
void Menu::Destroy()
{
}
void Menu::Show(Point pt, Window &w)
{
}
|
38360bcb33ca6c569380b00e58327bd445826984 | 13e3e9c7c9d88d9b06c388980b4dc1d74ee2cb11 | /Set.cpp | e0b87793c1bbac2ef9abd736907655f23a7a9875 | [] | no_license | umarfarooq360/Cache_Simulator | e27d7357cea78b69416f80405ddda79ab74e0083 | 289e65979137280397e5be80c941c1952e7667fa | refs/heads/master | 2021-01-23T06:54:47.534490 | 2015-02-25T06:36:55 | 2015-02-25T06:36:55 | 31,300,707 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 847 | cpp | Set.cpp | #include <vector>
#include "Set.h"
#include "Line.h"
/*
This class implemets a Set which a data structure inside
the cache to hold valid bit, tag, and data.
Author: Omar Farooq
Date: 11/26/14
*/
Set::Set(){
}
Set::Set(int setAssoc, int _blockSize)
:setSize(setAssoc), blockSize(_blockSize)
{
lines = std::vector<Line>(setAssoc);
for (int i = 0; i < setAssoc; i++)
{
lines[i] = Line(_blockSize);
}
}
int Set::findMinLRU(int setAssoc){
int minLRUIndex = 0;
for (int i = 0; i < setAssoc; i++)
{
if (lines[i].getLru() < lines[minLRUIndex].getLru()){
minLRUIndex = i;
}
}
return minLRUIndex;
}
Line Set :: getLine(int i){
return lines[i];
}
void Set::modifyLine(int lineIndex, int tag, int lru){
Line tmp = Line(blockSize);
tmp.setValid();
tmp.setLru(lru);
tmp.setTag(tag);
lines[lineIndex] = tmp;
}
Set::~Set()
{
}
|
2855a402c9f45d5139b9a9c31c2b8607b14ea6ca | 1bbfeca83bac53d22b1110ca7f6c9a28bc46c22e | /ru-olymp-train-winter-2009/Submits/0812xx/17_32_57_18_21bC_8913.cpp | d6001842e1424aa0c0e648897f8b2cb38008a0d5 | [] | no_license | stden/olymp | a633c1dfb1dd8d184a123d6da89f46163d5fad93 | d85a4bb0b88797ec878b64db86ad8ec8854a63cd | refs/heads/master | 2016-09-06T06:30:56.466755 | 2013-07-13T08:48:16 | 2013-07-13T08:48:16 | 5,158,472 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,097 | cpp | 17_32_57_18_21bC_8913.cpp | #include <iostream>
#include <string>
#include <cstring>
#include <cmath>
using namespace std;
const string month[12] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
const int days[2][12] =
{
{31,28,31,30,31,30,31,31,30,31,30,31},
{31,29,31,30,31,30,31,31,30,31,30,31}
};
string text;
string pattern;
bool f(int i)
{
for(int j=0; j<(int)pattern.length(); j++)
{
if( pattern[j] == 'x' )
{
if( !isdigit(text[i+j]) ) return false;
} else
if( pattern[j] != 'c' )
{
if( pattern[j] != text[i+j] ) return false;
}
}
return true;
}
int timeZone;
int abs(int x)
{
return ((x < 0) ? (-x) : (x));
}
int find_ip()
{
int i = 0;
for(int q=1; q<=4; q++)
{
while( i<(int)text.length() && !isdigit(text[i]) ) i++;
while( i<(int)text.length() && isdigit(text[i]) ) i++;
}
return i;
}
void solve()
{
while( getline( cin, text ) )
{
for(int i = find_ip(); i < (int)text.length() - (int)pattern.length(); i++)
if( f(i) )
{
int DD,MM,YY,hh,mm,ss,currentTimeZone;
char s[5];
sscanf(text.substr(i,pattern.length()).c_str(),"[%d/%3s/%d:%d:%d:%d %d]",
&DD,s,&YY,&hh,&mm,&ss,¤tTimeZone);
currentTimeZone = (currentTimeZone/100)*60 + (currentTimeZone%100);
for(int j=0; j<12; j++)
if( month[j] == string(s) ) MM = j;
mm = mm + timeZone - currentTimeZone;
while( mm >=60 )
{
hh += 1;
mm -= 60;
}
while( mm < 0 )
{
hh -= 1;
mm += 60;
}
while( hh>=24 )
{
DD += 1;
hh -= 24;
}
while( hh < 0 )
{
DD -= 1;
hh += 24;
}
while( DD > days[ (YY%4)==0 ][MM] )
{
DD -= days[ (YY%4)==0 ][MM];
MM++;
}
while( DD < 0 )
{
MM--;
if( MM < 0 )
{
YY--;
MM += 12;
}
DD += days[ (YY%4)==0 ][MM];
}
if( MM >= 12 )
{
YY++;
MM-=12;
}
/*
if( mm >= 60 )
{
hh += (mm/60);
mm = (mm%60);
}
if( mm < 0 )
{
hh += (mm/60)-1;
mm = (mm%60)+60;
}
if( hh >= 24 )
{
DD += (hh/24);
hh = (hh%24);
}
if( hh < 0 )
{
DD += (hh/24)-1;
hh = (hh%24)+24;
}
int w = (((YY%4) == 0) ? (1):(0));
if( DD > days[w][MM] )
{
DD -= days[w][MM];
MM++;
}
if( DD < 0 )
{
MM--;
if( MM < 0 )
{
YY--;
MM+=12;
}
int w = (((YY%4) == 0) ? (1):(0));
DD += days[w][MM];
}
if( MM >= 12 )
{
MM-=12;
YY++;
}
*/
cout << text.substr(0,i);
printf("[%02d/%3s/%04d:%02d:%02d:%02d %c%02d%02d]",DD,month[MM].c_str(),YY,hh,mm,ss,(timeZone>0)?('+'):('-'),abs(timeZone/60),abs(timeZone%60));
cout << text.substr(i + pattern.length(), text.length() ) << endl;
break;
}//if
}//while
}
void init()
{
freopen( "apache.in", "r", stdin );
freopen( "apache.out", "w", stdout );
scanf("%d",&timeZone);
timeZone = (timeZone/100)*60 + (timeZone%100);
pattern = "[xx/ccc/xxxx:xx:xx:xx cxxxx]";
}
int main()
{
init();
solve();
return 0;
}
|
798ef5722e7de85f12951969c33643c4558164df | 61ba1d073fdbb34ad2ae4e9d0ae1b88083faeb02 | /Sem II/Programare Orienta pe Obiecte/Laboratoare/lab2/tempCodeRunnerFile.cpp | b0e2b3dca68f7f2ff572f42a52335368e8e6f3d8 | [] | no_license | CosminHorjea/fmi | d899b639a085203963413918d2c508307cb9ba60 | 6b4911cdec64929710d984223385c1e8e36d5c7c | refs/heads/master | 2023-07-09T01:04:24.418286 | 2023-06-22T21:50:00 | 2023-06-22T21:50:00 | 213,064,779 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 22 | cpp | tempCodeRunnerFile.cpp | 2);
// a.insert(2) |
b98ee76f5de024b6b9c30a24b5e0f360e8dc097e | a10519bf00eab305843980a8c6eecb958aed28d3 | /HyEngine/Source/Scene.cpp | 55d097ff8ad26886e05e36380ad4cea7ebe766ac | [] | no_license | oyusuk2002-debug/3D-STG | 697fc91796f16fb748fd50e63360a79cb59b1b8d | 21ad199ca2855847c131dda6d3ffb256103531fa | refs/heads/main | 2023-03-06T09:06:05.552911 | 2021-02-07T04:35:47 | 2021-02-07T04:35:47 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 4,279 | cpp | Scene.cpp | #include "StandardEngineFramework.h"
#include "Scene.h"
#include "Renderer.h"
#include "GameObject.h"
using namespace HyEngine;
Scene::Scene()
{
}
Scene::~Scene()
{
for (auto& obj : m_opaqueObjects)
SAFE_DELETE(obj);
m_opaqueObjects.clear();
for (auto& obj : m_alphaObjects)
SAFE_DELETE(obj);
m_alphaObjects.clear();
}
//void Scene::LoadScene(SerializedScene & scene, const Settings::Window & windowSettings)
//{
// Load(scene);
//}
void Scene::LoadScene()
{
Load();
}
void Scene::UnloadScene()
{
Unload();
}
void Scene::UpdateScene()
{
/*
TODO
해당 로직은 특성 상 반복이 빈번한데
이렇게 해도 괜찮은지 검토해야함.
*/
for (auto& obj : m_opaqueObjects)
obj->Update();
for (auto& obj : m_alphaObjects)
obj->Update();
for (auto& obj : m_invisibleObjects)
obj->Update();
Update();
for (auto& obj : m_opaqueObjects)
{
obj->LateUpdate();
if (obj->m_bWantsDestroy)
{
m_removeFunctions.push_back([&]()->void
{
m_opaqueObjects.remove(obj);
SAFE_DELETE(obj);
});
}
}
for (auto& obj : m_alphaObjects)
{
obj->LateUpdate();
if (obj->m_bWantsDestroy)
{
m_removeFunctions.push_back([&]()->void
{
m_alphaObjects.remove(obj);
SAFE_DELETE(obj);
});
}
}
for (auto& obj : m_invisibleObjects)
{
obj->LateUpdate();
if (obj->m_bWantsDestroy)
{
m_removeFunctions.push_back([&]()->void
{
m_invisibleObjects.remove(obj);
SAFE_DELETE(obj);
});
}
}
for (auto& removeFunction : m_removeFunctions)
{
removeFunction();
}
m_removeFunctions.clear();
}
void Scene::RenderScene(Renderer * renderer)
{
renderer->SetOpaqueContext();
for (auto& opaqueObj : m_opaqueObjects)
{
if (opaqueObj->GetActive())
renderer->Render(opaqueObj);
}
renderer->SetAlphaContext();
for (auto& alphaObj : m_alphaObjects)
{
if (alphaObj->GetActive())
renderer->Render(alphaObj);
}
RenderUI();
RenderLight();
RenderSkybox();
}
void Scene::AddOpaqueObject(GameObject * obj)
{
assert(obj->GetRenderType() == ERenderType::RenderOpaque);
if (m_reserveObjFunctions.size() != 0)
{
for (int i = 0; i < m_reserveObjFunctions.size(); i++)
{
if (obj->CompareName(m_reserveObjFunctions[i].first))
{
m_reserveObjFunctions[i].second(obj);
m_reserveObjFunctions.erase(m_reserveObjFunctions.begin() + i);
}
}
}
m_opaqueObjects.push_back(obj);
}
void Scene::AddAlphaObject(GameObject * obj)
{
if (m_reserveObjFunctions.size() != 0)
{
for (int i = 0; i < m_reserveObjFunctions.size(); i++)
{
if (obj->CompareName(m_reserveObjFunctions[i].first))
{
m_reserveObjFunctions[i].second(obj);
m_reserveObjFunctions.erase(m_reserveObjFunctions.begin() + i);
}
}
}
m_alphaObjects.push_back(obj);
}
void Scene::AddInvisibleObject(GameObject * obj)
{
if (m_reserveObjFunctions.size() != 0)
{
for (int i = 0; i < m_reserveObjFunctions.size(); i++)
{
if (obj->CompareName(m_reserveObjFunctions[i].first))
{
m_reserveObjFunctions[i].second(obj);
m_reserveObjFunctions.erase(m_reserveObjFunctions.begin() + i);
}
}
}
m_invisibleObjects.push_back(obj);
}
GameObject * HyEngine::Scene::GetGameObject(std::wstring name)
{
for (auto& obj : m_opaqueObjects)
{
if (obj->CompareName(name))
return obj;
}
for (auto& obj : m_alphaObjects)
{
if (obj->CompareName(name))
return obj;
}
for (auto& obj : m_invisibleObjects)
{
if (obj->CompareName(name))
return obj;
}
return nullptr;
}
GameObject * HyEngine::Scene::GetOpaqueObject(std::wstring name)
{
for (auto& obj : m_opaqueObjects)
{
if (obj->CompareName(name))
return obj;
}
return nullptr;
}
GameObject * HyEngine::Scene::GetAlphaObject(std::wstring name)
{
for (auto& obj : m_alphaObjects)
{
if (obj->CompareName(name))
return obj;
}
return nullptr;
}
GameObject * HyEngine::Scene::GetInvisibleObject(std::wstring name)
{
for (auto& obj : m_invisibleObjects)
{
if (obj->CompareName(name))
return obj;
}
return nullptr;
}
void HyEngine::Scene::ReserveObejct(std::wstring name, std::function<void(GameObject*)> reserveFunc)
{
GameObject* obj = GetGameObject(name);
if (obj != nullptr)
{
reserveFunc(obj);
return;
}
m_reserveObjFunctions.emplace_back(std::make_pair(name, reserveFunc));
}
|
857dcadddb0908c80af889d86c543780fd7fb083 | a715b800b1d230822e3a50ec02176626cbed7f67 | /cpp/Perfect Squares.cpp | 8e4590490482affcd6deb89bd36f7d6b2925f966 | [] | no_license | SubhradeepSS/LeetCode-Solutions | 10c85f63059ae20ff91cf6dbc8102a4edd79c487 | 965e6390a76cccf84738d21340f5c049adcc223a | refs/heads/master | 2023-05-06T13:07:10.207287 | 2021-06-01T14:18:46 | 2021-06-01T14:18:46 | 370,042,173 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 391 | cpp | Perfect Squares.cpp | class Solution {
public:
int numSquares(int n) {
int dp[n+1];
for(int i=0;i<=n;i++)
dp[i]=i;
for(int i=2;i<=n;i++){
for(int x=1;x*x<=i;x++)
{
int t=x*x;
if(t>i)
break;
dp[i]=min(dp[i],1+dp[i-t]);
}
}
return dp[n];
}
}; |
2b7d8813154211f2b197e1e039f481f70df9e3db | f371f863708a8500b8c8555d0b2c79ffe6c82f1e | /testBeamSetup.h | 42cb76aee45f2a84a6e8f45f212ba6cb403d17f1 | [] | no_license | KeesLigtenberg/GridpixTrackFitter | 70a957c1a3e47f5522462eb52eeafa1843881358 | e2b30c30e6082d207af1b31014fed4741f0f6b18 | refs/heads/master | 2020-03-18T09:31:56.853803 | 2018-05-23T14:41:02 | 2018-05-23T14:41:02 | 134,568,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,229 | h | testBeamSetup.h | /*
* testBeamSetup.h
*
* Created on: Sep 28, 2017
* Author: cligtenb
*/
#ifndef TESTBEAMSETUP_H_
#define TESTBEAMSETUP_H_
struct TimePixDetectorConfiguration : DetectorConfiguration {
constexpr static double driftSpeed=0.079; //mm/ns
TimePixDetectorConfiguration() : DetectorConfiguration{
1, {0}, //nplanes, planeposition
0.055, 256, 256 //pixelsize, xpixels, ypixels
} {};
virtual double xmin() const {return 0.*driftSpeed; }
virtual double xmax() const {return 300*driftSpeed; }
virtual double zmin() const {return 0; }
virtual double zmax() const {return pixelColumns*pixelsize; };
} timePixChip;
const DetectorConfiguration mimosa= {
6, //planes
// {0, 18.6, 37.4, 116.7, 151.1, 188.4}, //plane position from Wolf thesis
{0, 15.8, 31.8, 143.1, 161.55, 179.91 }, //plane positions as measured
0.0184, //pixelsize in mm
1153, 577 //row, column, ://one extra because exampleData starts at 1, (our data does start at 0) //TODO: remove one extra when done with exampledata.
};
const DetectorConfiguration combinedSetupForDrawing {
2, {-350,200 }, //nplanes, planeposition
0.001, int(1000*mimosa.xmax()), int(1000*mimosa.ymax()) //pixelsize, xpixels, ypixels
};
#endif /* TESTBEAMSETUP_H_ */
|
b6a3c50399f3c294a4d9a15becfb091585afa744 | 4a9bb7aa067f40a9eb3d0fca533a7067dffed2ad | /src/mc/classic/worker.cc | 4018b01ef8edeae017f3163531bd1a929948f6fe | [
"BSD-2-Clause"
] | permissive | LucasAzais/pnmc | f9d69e3aef797dcf2c1970692790e429d158a0f8 | 77756c166c7adaf815e4507c3061ef5fd8eb1602 | refs/heads/master | 2020-12-31T06:08:38.391108 | 2014-05-15T09:03:00 | 2014-05-15T09:03:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,018 | cc | worker.cc | #include <cassert>
#include <chrono>
#include <iostream>
#include <set>
#include <thread>
#include <boost/dynamic_bitset.hpp>
#include <sdd/sdd.hh>
#include <sdd/tools/size.hh>
#include "mc/classic/bound_error.hh"
#include "mc/classic/bounded_post.hh"
#include "mc/classic/dead.hh"
#include "mc/classic/dump.hh"
#include "mc/classic/live.hh"
#include "mc/classic/make_order.hh"
#include "mc/classic/post.hh"
#include "mc/classic/pre.hh"
#include "mc/classic/statistics.hh"
#include "mc/classic/timed.hh"
#include "mc/classic/worker.hh"
namespace pnmc { namespace mc { namespace classic {
namespace chrono = std::chrono;
using sdd_conf = sdd::conf1 ;
using SDD = sdd::SDD<sdd_conf>;
using homomorphism = sdd::homomorphism<sdd_conf>;
using sdd::composition;
using sdd::fixpoint;
using sdd::intersection;
using sdd::sum;
using sdd::function;
/*------------------------------------------------------------------------------------------------*/
SDD
initial_state(const sdd::order<sdd_conf>& order, const pn::net& net)
{
return SDD(order, [&](const std::string& id)
-> sdd::values::flat_set<unsigned int>
{
return {net.places_by_id().find(id)->marking};
});
}
/*------------------------------------------------------------------------------------------------*/
/// @brief Create a timed function if required by the configuration, a normal function otherwise.
template <typename Fun, typename... Args>
homomorphism
mk_fun( const conf::configuration& conf, const bool& stop, const sdd::order<sdd_conf>& o
, const sdd_conf::Identifier& id, Args&&... args)
{
if (conf.max_time > chrono::duration<double>(0))
{
return function(o, id, timed<sdd_conf, Fun>(stop, std::forward<Args>(args)...));
}
else
{
return function(o, id, Fun(std::forward<Args>(args)...));;
}
}
/*------------------------------------------------------------------------------------------------*/
/// @brief Compute the transition relation corresponding to a petri net.
homomorphism
transition_relation( const conf::configuration& conf, const sdd::order<sdd_conf>& o
, const pn::net& net, boost::dynamic_bitset<>& transitions_bitset
, statistics& stats, const bool& stop)
{
chrono::time_point<chrono::system_clock> start = chrono::system_clock::now();
std::set<homomorphism> operands;
operands.insert(sdd::id<sdd_conf>());
for (const auto& transition : net.transitions())
{
homomorphism h_t = sdd::id<sdd_conf>();
// Add a "canary" to detect live transitions.
if (conf.compute_dead_transitions)
{
if (not transition.post.empty())
{
const auto f = mk_fun<live>( conf, stop, o, transition.post.begin()->first, transition.index
, transitions_bitset);
h_t = sdd::carrier(o, transition.post.begin()->first, f);
}
}
// Post actions.
for (const auto& arc : transition.post)
{
// Is the maximal marking limited?
homomorphism f = conf.marking_bound == 0
? mk_fun<post>(conf, stop, o, arc.first, arc.second)
: mk_fun<bounded_post<sdd_conf>>( conf, stop, o, arc.first, arc.second
, conf.marking_bound, arc.first);
h_t = composition(h_t, sdd::carrier(o, arc.first, f));
}
// Pre actions.
for (const auto& arc : transition.pre)
{
homomorphism f = mk_fun<pre>(conf, stop, o, arc.first, arc.second);
h_t = composition(h_t, sdd::carrier(o, arc.first, f));
}
operands.insert(h_t);
}
stats.relation_duration = chrono::system_clock::now() - start;
return fixpoint(sum(o, operands.cbegin(), operands.cend()));
}
/*------------------------------------------------------------------------------------------------*/
homomorphism
rewrite( const conf::configuration& conf, const sdd::order<sdd_conf>& o
, const homomorphism& h, statistics& stats)
{
chrono::time_point<chrono::system_clock> start = chrono::system_clock::now();
const auto res = sdd::rewrite(o, h);
stats.rewrite_duration = chrono::system_clock::now() - start;
return res;
}
/*------------------------------------------------------------------------------------------------*/
SDD
state_space( const conf::configuration& conf, const sdd::order<sdd_conf>& o, SDD m
, homomorphism h, statistics& stats, bool& stop, const sdd::manager<sdd_conf>& manager)
{
SDD res;
// To stop the clock thread.
bool finished = false;
// The reference time;
const std::chrono::time_point<std::chrono::system_clock>
beginning(std::chrono::system_clock::now());
// Limited time mode?
std::thread clock;
if (conf.max_time > chrono::duration<double>(0))
{
clock = std::thread([&]
{
while (not finished)
{
std::this_thread::sleep_for(std::chrono::milliseconds(100));
if (std::chrono::system_clock::now() - beginning >= conf.max_time)
{
stop = true;
std::cout << "Time limit exceeded,";
std::cout << " it may take a while to completely stop." << std::endl;
break;
}
}
});
}
auto sdd_ut_thread_size
= std::thread([&]
{
const auto sample_time = std::chrono::milliseconds(500);
auto last = std::chrono::system_clock::now();
while (not finished)
{
std::this_thread::sleep_for(std::chrono::milliseconds(100));
auto now = std::chrono::system_clock::now();
if ((now - last) >= sample_time)
{
stats.sdd_ut_size.emplace_back(manager.sdd_stats().size);
last = now;
}
}
});
chrono::time_point<chrono::system_clock> start = chrono::system_clock::now();
try
{
res = h(o, m);
}
catch (const bound_error<sdd_conf>& b)
{
std::cout << "Marking limit (" << conf.marking_bound << ") reached for place " << b.place << "."
<< std::endl;
stats.interrupted = true;
res = b.result();
}
catch (const sdd::interrupt<sdd_conf>& i)
{
stats.interrupted = true;
res = i.result();
}
// Tell the clock thread to stop on next wakeup.
finished = true;
stats.state_space_duration = chrono::system_clock::now() - start;
if (stats.interrupted)
{
std::cout << "State space computation interrupted after "
<< std::chrono::duration<double>(std::chrono::system_clock::now() - beginning).count()
<< "s." << std::endl;
}
if (conf.max_time > chrono::duration<double>(0))
{
clock.join();
}
sdd_ut_thread_size.join();
return res;
}
/*------------------------------------------------------------------------------------------------*/
SDD
dead_states( const conf::configuration& conf, const sdd::order<sdd_conf>& o, const pn::net& net
, const SDD& state_space, statistics& stats)
{
std::set<homomorphism> and_operands;
std::set<homomorphism> or_operands;
chrono::time_point<chrono::system_clock> start = chrono::system_clock::now();
// Get relation
for (const auto& transition : net.transitions())
{
// We are only interested in pre actions.
for (const auto& arc : transition.pre)
{
const auto h = function(o, arc.first, dead(arc.second));
or_operands.insert(sdd::carrier(o, arc.first, h));
}
and_operands.insert(sum(o, or_operands.cbegin(), or_operands.cend()));
or_operands.clear();
}
const auto tmp = intersection(o, and_operands.cbegin(), and_operands.cend());
stats.dead_states_relation_duration = chrono::system_clock::now() - start;
// Rewrite the relation
start = chrono::system_clock::now();
const auto h = sdd::rewrite(o, tmp);
stats.dead_states_rewrite_duration = chrono::system_clock::now() - start;
// Compute the dead states
start = chrono::system_clock::now();
const auto res = h(o, state_space);
stats.dead_states_duration = chrono::system_clock::now() - start;
return res;
}
/*------------------------------------------------------------------------------------------------*/
worker::worker(const conf::configuration& c)
: conf(c)
{}
/*------------------------------------------------------------------------------------------------*/
void
worker::operator()(const pn::net& net)
const
{
// Initialize the libsdd.
auto manager = sdd::manager<sdd_conf>::init();
statistics stats(conf);
// Used in limited time mode.
bool stop = false;
// Build the order.
sdd::order<sdd_conf> o = make_order(conf, stats, net);
assert(not o.empty() && "Empty order");
if (conf.order_show)
{
std::cout << o << std::endl;
}
// Get the initial state.
const SDD m0 = initial_state(o, net);
// Map of live transitions.
boost::dynamic_bitset<> transitions_bitset(net.transitions().size());
// Compute the transition relation.
const auto h_classic = transition_relation(conf, o, net, transitions_bitset, stats, stop);
if (conf.show_relation)
{
std::cout << h_classic << std::endl;
}
// Rewrite the transition relation.
const auto h = rewrite(conf, o, h_classic, stats);
if (conf.show_relation)
{
std::cout << h << std::endl;
}
// Compute the state space.
const auto m = state_space(conf, o, m0, h, stats, stop, manager);
stats.nb_states = m.size().template convert_to<long double>();
std::cout << stats.nb_states << " states" << std::endl;
if (conf.compute_dead_transitions)
{
std::deque<std::string> dead_transitions;
for (std::size_t i = 0; i < net.transitions().size(); ++i)
{
if (not transitions_bitset[i])
{
dead_transitions.push_back(net.get_transition_by_index(i).id);
}
}
if (not dead_transitions.empty())
{
std::cout << dead_transitions.size() << " dead transition(s): ";
std::copy( dead_transitions.cbegin(), std::prev(dead_transitions.cend())
, std::ostream_iterator<std::string>(std::cout, ","));
std::cout << *std::prev(dead_transitions.cend()) << std::endl;
}
else
{
std::cout << "No dead transitions" << std::endl;
}
}
if (conf.compute_dead_states)
{
const auto dead = dead_states(conf, o, net, m, stats);
if (dead.empty())
{
std::cout << "No dead states" << std::endl;
}
else
{
std::cout << dead.size().template convert_to<long double>() << " dead state(s):"
<< std::endl;
// Get the identifier of each level (SDD::paths() doesn't give this information).
std::deque<std::reference_wrapper<const std::string>> identifiers;
o.flat(std::back_inserter(identifiers));
/*for (const auto& path : dead.paths())
{
auto id_cit = identifiers.cbegin();
auto path_cit = path.cbegin();
for (; path_cit != std::prev(path.cend()); ++path_cit, ++id_cit)
{
std::cout << id_cit->get() << " : " << *path_cit << ", ";
}
std::cout << id_cit->get() << " : " << *path_cit << std::endl;
}*/
}
}
const auto total = stats.relation_duration + stats.rewrite_duration
+ stats.state_space_duration + stats.dead_states_duration;
std::cout << total.count() << "s" << std::endl;
if (conf.show_time)
{
std::cout << "Relation : " << stats.relation_duration.count() << "s"
<< std::endl
<< "Rewrite : " << stats.rewrite_duration.count() << "s"
<< std::endl
<< "State space : " << stats.state_space_duration.count() << "s"
<< std::endl;
if (conf.compute_dead_states)
{
std::cout << "Dead states relation : " << stats.dead_states_relation_duration.count()
<< "s" << std::endl
<< "Dead states rewrite : " << stats.dead_states_rewrite_duration.count()
<< "s" << std::endl
<< "Dead states : " << stats.dead_states_duration.count()
<< "s" << std::endl;
}
if (conf.order_ordering_force)
{
std::cout << "FORCE : " << stats.force_duration.count() << "s" << std::endl;
}
}
if (conf.show_final_sdd_bytes)
{
std::cout << "Final SDD size: " << sdd::tools::size(m) << " bytes" << std::endl;
}
dump_sdd_dot(conf, m);
dump_lua(conf, m);
dump_json(conf, stats, manager, m);
}
/*------------------------------------------------------------------------------------------------*/
}}} // namespace pnmc::mc::classic
|
d7868f31a9308dabc1b6360ea88ef2d89c7942e8 | 9c9008cd94de3d3a5aa554d8f907fa84f96affc1 | /source/cpp/0023/pe0023.cpp | d55e7fc5ca4425c5d89c75de6b7ca98066b3bc60 | [] | no_license | nathanrosspowell/euler | 9ba12f613242247fb68db25d9060b110153db345 | 26e4e3a5105e9dcf1a3c64f9d1798994898aac1b | refs/heads/master | 2021-01-10T18:29:46.481042 | 2014-09-05T18:00:22 | 2014-09-05T18:00:22 | 3,178,346 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,244 | cpp | pe0023.cpp | // A perfect numebr is a number for which the sum of it's proper devisors
// is exactly equal to the number.
// For example, the sum of the proper divisors of 28 would be
// 1 + 2 + 3 + 4 + 6 +14 = 28. which means 28 is a perfect number.
//
// A number N is called deficient if the sum of it's proper divisors is less
// than N and it is called abundant if the sum exceeds N.
//
// As 12 is the smallest abundant number, 1 + 2 + 3 + 4 + 6 = 16, the smallest
// number that can be written as the sum of two abundant numbers is 24. By
// mathematical analysis, it can be shown that all integers greater than
// 28123 can be writen as the sum of two abundant numbers. However, this
// upper limit cannot be reduced any further by analysis even though it is
// known that the geatest number than cannot be expressed as the sum of two
// abundant numbers is less than this limit.
//
// Find the sum of all the positive integers which cannot be written as the
// sum of two abundant numbers.
#include <iostream>
#include <vector>
#include <numeric>
typedef int uint;
typedef std::vector< uint > List;
uint sum( uint number )
{
uint total = 0;
for ( unsigned int i = 1; i < number; ++i )
{
if ( number % i == 0 )
{
total += i;
}
}
return total;
}
int main()
{
//const uint limit = 20161;
const uint limit = 28123;
List abundant;
for ( uint num = 1; num < limit; ++num )
{
if ( sum( num ) > num )
{
abundant.push_back( num );
}
}
std::vector< bool > fromPair( limit );
for ( int i = 0; i < fromPair.size(); ++i )
{
fromPair[ i ] = false;
}
for ( int i = 0; i < abundant.size(); ++i )
{
for ( int j = 0; j < abundant.size(); ++j )
{
uint pair = abundant[ i ] + abundant[ j ];
if ( pair < limit )
{
fromPair[ pair ] = true;
}
else
{
break;
}
}
}
uint totalSum = 0;
for ( uint i = 0; i < limit; ++i )
{
if ( !fromPair[ i ] )
{
totalSum += i;
}
}
std::cout << totalSum << std::endl;
return 0;
}
|
857dae4bc2d1cb59d2944f7003a8cc38d1f62552 | 1724dfd648ca02d58ec01c0314faa2832c5dbb6a | /Pixio/Windowing/OpenGL/OpenGLWindow.cpp | 1c0c1e20e5130072e301f501a748ef54f4ae974c | [] | no_license | Tiviv/BachelorsThesis | c81ac0df71d56aaef1e8c78beb3a9884aca64cb9 | 935c7b06db76b964e4bfd3cd5b2f6489e9e479a1 | refs/heads/master | 2021-07-11T12:46:18.098049 | 2021-02-17T21:04:28 | 2021-02-17T21:04:28 | 95,643,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,473 | cpp | OpenGLWindow.cpp | #include "Pixio/Windowing/OpenGL/OpenGLWindow.h"
#include <cstring>
#include <iostream>
#include <map>
#include <GL/freeglut.h>
using namespace std;
static map<int, OpenGLWindow*> windows;
bool OpenGLWindow::init = false;
void OpenGLWindow::render()
{
int i = glutGetWindow();
windows[i]->onRender();
}
void OpenGLWindow::mouseEvent(int button, int state, int x, int y)
{
int i = glutGetWindow();
windows[i]->onMouseEvent(button, state, x, y);
}
void OpenGLWindow::keyboardEvent(unsigned char c, int x, int y)
{
int i = glutGetWindow();
windows[i]->onKeyboardEvent(c, x, y);
}
void OpenGLWindow::mouseMove(int x, int y)
{
int i = glutGetWindow();
windows[i]->onMouseMove(x, y);
}
OpenGLWindow::OpenGLWindow(IApplication& app, const CanvasAttributes& attr) : attr(attr), app(app)
{
if (!init)
{
int argc = 1;
char* argv = _strdup("Application");
glutInit(&argc, &argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA);
init = true;
}
glutInitWindowSize(static_cast<int>(attr.size.x), static_cast<int>(attr.size.y));
glutInitWindowPosition(static_cast<int>(attr.position.x), static_cast<int>(attr.position.y));
window = glutCreateWindow(attr.name.c_str());
windows[window] = this;
glutMouseFunc(OpenGLWindow::mouseEvent);
glutKeyboardFunc(OpenGLWindow::keyboardEvent);
glutDisplayFunc(OpenGLWindow::render);
glutMotionFunc(OpenGLWindow::mouseMove);
glutPassiveMotionFunc(OpenGLWindow::mouseMove);
}
OpenGLWindow::~OpenGLWindow()
{
glutDestroyWindow(window);
}
void OpenGLWindow::startRenderLoop()
{
app.onInit();
glutMainLoop();
app.onDestroy();
}
unsigned int OpenGLWindow::getWidth() const
{
return static_cast<unsigned int>(attr.size.x);
}
unsigned int OpenGLWindow::getHeight() const
{
return static_cast<unsigned int>(attr.size.y);
}
unsigned int OpenGLWindow::getBufferSize() const
{
return static_cast<unsigned int>(attr.size.x * attr.size.y) * 4;
}
void OpenGLWindow::onRender()
{
//TODO: calculate delta
app.onRender(0.016f);
glutSwapBuffers();
glutPostRedisplay();
}
void OpenGLWindow::onMouseEvent(int button, int state, int x, int y)
{
app.onMouseEvent(x, y, button, state, 0);
}
void OpenGLWindow::onKeyboardEvent(unsigned char c, int x, int y)
{
app.onKeyboardEvent(c, x, y);
}
void OpenGLWindow::onMouseMove(int x, int y)
{
app.onMouseMove(x, y, 0, 0);
} |
0d56bd17f3fe3133bf4e75cecb38f7120d944537 | 0c55a96434e461eb1885da57e5bd9c9c866c2ec7 | /mock-fb-2.cpp | 35519b7e128b6210bb2d19b05acf701a7efb6ea5 | [] | no_license | rem4ik4ever/leet-code | 9bcd54fc28ff7ad2a6ec2c6a7740a098a644b32b | 72098755d3d9713414c99d44364c70088c7a728d | refs/heads/master | 2020-05-21T14:37:44.038861 | 2020-01-13T04:27:20 | 2020-01-13T04:27:20 | 186,085,161 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 792 | cpp | mock-fb-2.cpp | #include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
// O(n)
class Solution {
public:
vector<int> productExceptSelf(vector<int>& nums) {
vector<int> res(nums.size(), 0);
int p = 1;
for (int i = 0; i < nums.size(); i++)
{
res[i] = p;;
p *= nums[i];
}
p = 1;
for (int i = nums.size() -1 ; i >= 0; i--)
{
res[i] *= p;;
p *= nums[i];
}
return res;
}
private:
void print_array(vector<int> &v){
cout << "arr: ";
for (int i = 0; i < v.size(); i++)
{
cout << v[i] << " ";
}
cout << endl;
}
};
int main(){
Solution s;
vector<int> input = {1,2,3,4};
s.productExceptSelf(input);
return 0;
} |
a6f8ccb822f109bcfe5cf6f29a840438e1322a1f | 03ba325820c997599beff5add437d35347a953aa | /source/utopian/core/renderer/jobs/DepthOfFieldJob.cpp | 4561d996fefc5b514a4f29b9925819824937dc98 | [
"MIT"
] | permissive | simplerr/UtopianEngine | cc13a43279bd49f55136120cf75c8c8d5fcff705 | b7c38df663a4b6b2fa1d7c9f1f83dfc661de1a9a | refs/heads/master | 2022-10-12T12:03:19.166812 | 2022-09-28T05:48:31 | 2022-09-28T05:48:31 | 77,483,702 | 64 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 9,036 | cpp | DepthOfFieldJob.cpp | #include "core/renderer/jobs/DepthOfFieldJob.h"
#include "core/renderer/CommonJobIncludes.h"
#include "vulkan/RenderTarget.h"
#include "vulkan/handles/Sampler.h"
#include "core/Log.h"
#include <vulkan/vulkan_core.h>
#include <thread>
namespace Utopian
{
DepthOfFieldJob::DepthOfFieldJob(Vk::Device* device, uint32_t width, uint32_t height)
: BaseJob(device, width, height)
{
InitBlurPasses();
InitDilatePass();
InitFocusPass();
mWaitHorizontalBlurPassSemaphore = std::make_shared<Vk::Semaphore>(mDevice);
mWaitVerticalBlurPassSemaphore = std::make_shared<Vk::Semaphore>(mDevice);
mWaitDilatePassSemaphore = std::make_shared<Vk::Semaphore>(mDevice);
}
DepthOfFieldJob::~DepthOfFieldJob()
{
}
void DepthOfFieldJob::LoadResources()
{
auto loadShaders = [&]()
{
Vk::EffectCreateInfo effectDesc;
effectDesc.shaderDesc.vertexShaderPath = "data/shaders/common/fullscreen.vert";
effectDesc.shaderDesc.fragmentShaderPath = "data/shaders/post_process/gaussian_blur.frag";
mBlur.horizontalEffect = Vk::gEffectManager().AddEffect<Vk::Effect>(mDevice, mBlur.horizontalRenderTarget->GetRenderPass(), effectDesc);
Vk::EffectCreateInfo effectDescCombined;
effectDescCombined.shaderDesc.vertexShaderPath = "data/shaders/common/fullscreen.vert";
effectDescCombined.shaderDesc.fragmentShaderPath = "data/shaders/post_process/gaussian_blur.frag";
mBlur.combinedEffect = Vk::gEffectManager().AddEffect<Vk::Effect>(mDevice, mBlur.combinedRenderTarget->GetRenderPass(), effectDescCombined);
Vk::EffectCreateInfo effectDescDilate;
effectDescDilate.shaderDesc.vertexShaderPath = "data/shaders/common/fullscreen.vert";
effectDescDilate.shaderDesc.fragmentShaderPath = "data/shaders/post_process/dilate.frag";
mDilate.effect = Vk::gEffectManager().AddEffect<Vk::Effect>(mDevice, mDilate.renderTarget->GetRenderPass(), effectDescDilate);
Vk::EffectCreateInfo effectDescFocus;
effectDescFocus.shaderDesc.vertexShaderPath = "data/shaders/common/fullscreen.vert";
effectDescFocus.shaderDesc.fragmentShaderPath = "data/shaders/dof/dof.frag";
mFocus.effect = Vk::gEffectManager().AddEffect<Vk::Effect>(mDevice, mFocus.renderTarget->GetRenderPass(), effectDescFocus);
};
loadShaders();
}
void DepthOfFieldJob::InitBlurPasses()
{
mBlur.horizontalImage = std::make_shared<Vk::ImageColor>(mDevice, mWidth, mHeight, VK_FORMAT_R16G16B16A16_SFLOAT, "DOF horizontal blur image");
mBlur.combinedImage = std::make_shared<Vk::ImageColor>(mDevice, mWidth, mHeight, VK_FORMAT_R16G16B16A16_SFLOAT, "DOF combined blur image");
mBlur.horizontalRenderTarget = std::make_shared<Vk::RenderTarget>(mDevice, mWidth, mHeight);
mBlur.horizontalRenderTarget->AddWriteOnlyColorAttachment(mBlur.horizontalImage);
mBlur.horizontalRenderTarget->SetClearColor(0.0f, 0.0f, 0.0f, 1.0f);
mBlur.horizontalRenderTarget->Create();
mBlur.combinedRenderTarget = std::make_shared<Vk::RenderTarget>(mDevice, mWidth, mHeight);
mBlur.combinedRenderTarget->AddWriteOnlyColorAttachment(mBlur.combinedImage);
mBlur.combinedRenderTarget->SetClearColor(0.0f, 0.0f, 0.0f, 1.0f);
mBlur.combinedRenderTarget->Create();
}
void DepthOfFieldJob::InitDilatePass()
{
mDilate.image = std::make_shared<Vk::ImageColor>(mDevice, mWidth, mHeight, VK_FORMAT_R16G16B16A16_SFLOAT, "DOF dilate output");
mDilate.renderTarget = std::make_shared<Vk::RenderTarget>(mDevice, mWidth, mHeight);
mDilate.renderTarget->AddWriteOnlyColorAttachment(mDilate.image);
mDilate.renderTarget->SetClearColor(0.0f, 0.0f, 0.0f, 1.0f);
mDilate.renderTarget->Create();
}
void DepthOfFieldJob::InitFocusPass()
{
outputImage = std::make_shared<Vk::ImageColor>(mDevice, mWidth, mHeight, VK_FORMAT_R16G16B16A16_SFLOAT, "DOF output");
mFocus.renderTarget = std::make_shared<Vk::RenderTarget>(mDevice, mWidth, mHeight);
mFocus.renderTarget->AddWriteOnlyColorAttachment(outputImage, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL);
mFocus.renderTarget->SetClearColor(0.0f, 0.0f, 0.0f, 1.0f);
mFocus.renderTarget->Create();
}
void DepthOfFieldJob::Init(const std::vector<BaseJob*>& jobs, const GBuffer& gbuffer)
{
}
void DepthOfFieldJob::PostInit(const std::vector<BaseJob*>& jobs, const GBuffer& gbuffer)
{
mBlur.settings.Create(mDevice, VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT);
mBlur.horizontalEffect->BindUniformBuffer("UBO_settings", mBlur.settings);
mBlur.combinedEffect->BindUniformBuffer("UBO_settings", mBlur.settings);
mBlur.horizontalEffect->BindCombinedImage("hdrSampler", *gbuffer.mainImage, *mBlur.horizontalRenderTarget->GetSampler());
mBlur.combinedEffect->BindCombinedImage("hdrSampler", *mBlur.horizontalImage, *mBlur.combinedRenderTarget->GetSampler());
mDilate.effect->BindCombinedImage("inputTexture", *mBlur.combinedImage, *mDilate.renderTarget->GetSampler());
mFocus.settings.Create(mDevice, VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT);
mFocus.effect->BindUniformBuffer("UBO_settings", mFocus.settings);
mFocus.effect->BindCombinedImage("normalTexture", *gbuffer.mainImage, *mFocus.renderTarget->GetSampler());
mFocus.effect->BindCombinedImage("blurredTexture", *mDilate.image, *mFocus.renderTarget->GetSampler());
mFocus.effect->BindCombinedImage("depthTexture", *gbuffer.depthImage, *mFocus.renderTarget->GetSampler());
}
void DepthOfFieldJob::RenderHorizontalBlurPass(const JobInput& jobInput)
{
mBlur.settings.data.blurScale = 1.0f;
mBlur.settings.data.blurStrength = 1.0f;
mBlur.settings.UpdateMemory();
mBlur.horizontalRenderTarget->Begin("DOF horizontal blur pass", glm::vec4(0.1f, 0.5f, 0.9f, 1.0f));
if (IsEnabled())
{
int direction = 0; // Horizontal
Vk::CommandBuffer* commandBuffer = mBlur.horizontalRenderTarget->GetCommandBuffer();
commandBuffer->CmdBindPipeline(mBlur.horizontalEffect->GetPipeline());
commandBuffer->CmdPushConstants(mBlur.horizontalEffect->GetPipelineInterface(), VK_SHADER_STAGE_ALL, sizeof(int), &direction);
commandBuffer->CmdBindDescriptorSets(mBlur.horizontalEffect);
gRendererUtility().DrawFullscreenQuad(commandBuffer);
}
mBlur.horizontalRenderTarget->End(GetWaitSemahore(), mWaitHorizontalBlurPassSemaphore);
}
void DepthOfFieldJob::RenderVerticalBlurPass(const JobInput& jobInput)
{
mBlur.combinedRenderTarget->Begin("DOF vertical blur pass", glm::vec4(0.1f, 0.5f, 0.9f, 1.0f));
if (IsEnabled())
{
int direction = 1; // Vertical
Vk::CommandBuffer* commandBuffer = mBlur.combinedRenderTarget->GetCommandBuffer();
commandBuffer->CmdBindPipeline(mBlur.combinedEffect->GetPipeline());
commandBuffer->CmdPushConstants(mBlur.combinedEffect->GetPipelineInterface(), VK_SHADER_STAGE_ALL, sizeof(int), &direction);
commandBuffer->CmdBindDescriptorSets(mBlur.combinedEffect);
gRendererUtility().DrawFullscreenQuad(commandBuffer);
}
mBlur.combinedRenderTarget->End(mWaitHorizontalBlurPassSemaphore, mWaitVerticalBlurPassSemaphore);
}
void DepthOfFieldJob::RenderDilatePass(const JobInput& jobInput)
{
mDilate.renderTarget->Begin("DOF dilate pass", glm::vec4(0.1f, 0.0f, 0.3f, 1.0f));
if (IsEnabled())
{
Vk::CommandBuffer* commandBuffer = mDilate.renderTarget->GetCommandBuffer();
commandBuffer->CmdBindPipeline(mDilate.effect->GetPipeline());
commandBuffer->CmdBindDescriptorSets(mDilate.effect);
gRendererUtility().DrawFullscreenQuad(commandBuffer);
}
mDilate.renderTarget->End(mWaitVerticalBlurPassSemaphore, mWaitDilatePassSemaphore);
}
void DepthOfFieldJob::RenderFocusPass(const JobInput& jobInput)
{
mFocus.settings.data.projection = jobInput.sceneInfo.sharedVariables.data.projectionMatrix;
mFocus.settings.data.dofEnabled = jobInput.renderingSettings.dofEnabled;
mFocus.settings.data.dofStart = jobInput.renderingSettings.dofStart;
mFocus.settings.data.dofRange = jobInput.renderingSettings.dofRange;
mFocus.settings.UpdateMemory();
mFocus.renderTarget->Begin("DOF Focus pass");
Vk::CommandBuffer* commandBuffer = mFocus.renderTarget->GetCommandBuffer();
commandBuffer->CmdBindPipeline(mFocus.effect->GetPipeline());
commandBuffer->CmdBindDescriptorSets(mFocus.effect);
gRendererUtility().DrawFullscreenQuad(commandBuffer);
mFocus.renderTarget->End(mWaitDilatePassSemaphore, GetCompletedSemahore());
}
void DepthOfFieldJob::Render(const JobInput& jobInput)
{
RenderHorizontalBlurPass(jobInput);
RenderVerticalBlurPass(jobInput);
RenderDilatePass(jobInput);
RenderFocusPass(jobInput);
}
}
|
2bf549d3d1a23a415f0fdce4273a393d56baf7a1 | d0889089b86bc407b154879cb294e703f9303989 | /Lumos/External/glm/test/core/core_func_swizzle.cpp | 9758533f9d7ce0021cb4041a899ec78e68df0932 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-happy-bunny"
] | permissive | jmorton06/Lumos | 9ab96420c619d9baac07e4561d0a7e83645d54c8 | e5f0ebfa9049d3515caaad056fda082a1e9d74ae | refs/heads/main | 2023-09-01T02:48:00.496623 | 2023-07-06T07:31:44 | 2023-07-06T07:31:44 | 164,933,352 | 1,052 | 126 | MIT | 2023-09-06T08:08:18 | 2019-01-09T20:32:10 | C++ | UTF-8 | C++ | false | false | 3,026 | cpp | core_func_swizzle.cpp | #define GLM_FORCE_SWIZZLE
#include <glm/ext/scalar_relational.hpp>
#include <glm/ext/vector_relational.hpp>
#include <glm/glm.hpp>
static int test_ivec2_swizzle()
{
int Error = 0;
# if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR || GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
{
glm::ivec2 A(1, 2);
glm::ivec2 B = A.yx();
glm::ivec2 C = B.yx();
Error += A != B ? 0 : 1;
Error += A == C ? 0 : 1;
}
# endif//GLM_CONFIG_SWIZZLE
# if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
{
glm::ivec2 A(1, 2);
glm::ivec2 B = A.yx;
glm::ivec2 C = A.yx;
Error += A != B ? 0 : 1;
Error += B == C ? 0 : 1;
B.xy = B.yx;
C.xy = C.yx;
Error += B == C ? 0 : 1;
glm::ivec2 D(0, 0);
D.yx = A.xy;
Error += A.yx() == D ? 0 : 1;
glm::ivec2 E = A.yx;
Error += E == D ? 0 : 1;
}
# endif//GLM_CONFIG_SWIZZLE
return Error;
}
int test_ivec3_swizzle()
{
int Error = 0;
# if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR || GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
{
glm::ivec3 A(1, 2, 3);
glm::ivec3 B = A.zyx();
glm::ivec3 C = B.zyx();
Error += A != B ? 0 : 1;
Error += A == C ? 0 : 1;
}
# endif
# if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
{
glm::ivec3 const A(1, 2, 3);
glm::ivec2 B = A.yx;
glm::ivec2 C = A.yx;
Error += A.yx() == B ? 0 : 1;
Error += B == C ? 0 : 1;
B.xy = B.yx;
C.xy = C.yx;
Error += B == C ? 0 : 1;
glm::ivec2 D(0, 0);
D.yx = A.xy;
Error += A.yx() == D ? 0 : 1;
glm::ivec2 E(0, 0);
E.xy = A.xy();
Error += E == A.xy() ? 0 : 1;
Error += E.xy() == A.xy() ? 0 : 1;
glm::ivec3 const F = A.xxx + A.xxx;
Error += F == glm::ivec3(2) ? 0 : 1;
glm::ivec3 const G = A.xxx - A.xxx;
Error += G == glm::ivec3(0) ? 0 : 1;
glm::ivec3 const H = A.xxx * A.xxx;
Error += H == glm::ivec3(1) ? 0 : 1;
glm::ivec3 const I = A.xxx / A.xxx;
Error += I == glm::ivec3(1) ? 0 : 1;
glm::ivec3 J(1, 2, 3);
J.xyz += glm::ivec3(1);
Error += J == glm::ivec3(2, 3, 4) ? 0 : 1;
glm::ivec3 K(1, 2, 3);
K.xyz += A.xyz;
Error += K == glm::ivec3(2, 4, 6) ? 0 : 1;
}
# endif
return Error;
}
int test_ivec4_swizzle()
{
int Error = 0;
# if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR || GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
{
glm::ivec4 A(1, 2, 3, 4);
glm::ivec4 B = A.wzyx();
glm::ivec4 C = B.wzyx();
Error += A != B ? 0 : 1;
Error += A == C ? 0 : 1;
}
# endif
return Error;
}
int test_vec4_swizzle()
{
int Error = 0;
# if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR || GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
{
glm::vec4 A(1, 2, 3, 4);
glm::vec4 B = A.wzyx();
glm::vec4 C = B.wzyx();
Error += glm::any(glm::notEqual(A, B, 0.0001f)) ? 0 : 1;
Error += glm::all(glm::equal(A, C, 0.0001f)) ? 0 : 1;
float D = glm::dot(C.wzyx(), C.xyzw());
Error += glm::equal(D, 20.f, 0.001f) ? 0 : 1;
}
# endif
return Error;
}
int main()
{
int Error = 0;
Error += test_ivec2_swizzle();
Error += test_ivec3_swizzle();
Error += test_ivec4_swizzle();
Error += test_vec4_swizzle();
return Error;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.