mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
Functions4U: Fixed some clashes with Eigen Array class
git-svn-id: svn://ultimatepp.org/upp/trunk@3539 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
103b682a39
commit
77198869a7
5 changed files with 102 additions and 65 deletions
|
|
@ -82,11 +82,11 @@ Upp::int64 GetLength(const char *fileDirName);
|
|||
Upp::int64 GetDirectoryLength(const char *directoryName);
|
||||
|
||||
///////////////////////////////
|
||||
Array<String> SearchFile(String dir, const Array<String> &condFiles, const Array<String> &condFolders,
|
||||
const Array<String> &extFiles, const Array<String> &extFolders,
|
||||
const String &text, Array<String> &errorList);
|
||||
Array<String> SearchFile(String dir, String condFile, String text, Array<String> &errorList);//, int flags = 0);
|
||||
Array<String> SearchFile(String dir, String condFile, String text = "");//, int flags = 0);
|
||||
Upp::Array<String> SearchFile(String dir, const Upp::Array<String> &condFiles, const Upp::Array<String> &condFolders,
|
||||
const Upp::Array<String> &extFiles, const Upp::Array<String> &extFolders,
|
||||
const String &text, Upp::Array<String> &errorList);
|
||||
Upp::Array<String> SearchFile(String dir, String condFile, String text, Upp::Array<String> &errorList);//, int flags = 0);
|
||||
Upp::Array<String> SearchFile(String dir, String condFile, String text = "");//, int flags = 0);
|
||||
///////////////////////////////
|
||||
|
||||
bool FileToTrashBin(const char *path);
|
||||
|
|
@ -162,7 +162,7 @@ public:
|
|||
void SortByName(bool ascending = true);
|
||||
void SortByDate(bool ascending = true);
|
||||
void SortBySize(bool ascending = true);
|
||||
Array<String> &GetLastError() {return errorList;};
|
||||
Upp::Array<String> &GetLastError() {return errorList;};
|
||||
int Find(String &relFileName, String &fileName, bool isFolder);
|
||||
int Find(FileDataArray &data, int id);
|
||||
String FullFileName(int i) {return AppendFileName(basePath, fileList[i].fileName);};
|
||||
|
|
@ -176,8 +176,8 @@ private:
|
|||
String GetRelativePath(const String &fullPath);
|
||||
String GetFileText();
|
||||
|
||||
Array<FileData> fileList;
|
||||
Array<String> errorList;
|
||||
Upp::Array<FileData> fileList;
|
||||
Upp::Array<String> errorList;
|
||||
String basePath;
|
||||
long fileCount, folderCount;
|
||||
Upp::int64 fileSize;
|
||||
|
|
@ -191,7 +191,8 @@ public:
|
|||
FileDiffArray();
|
||||
void Clear();
|
||||
FileDiff& operator[](long i) {return diffList[i];}
|
||||
bool Compare(FileDataArray &master, FileDataArray &secondary, String &folderFrom, Array<String> &excepFolders, Array<String> &excepFiles, int sensSecs = 0);
|
||||
bool Compare(FileDataArray &master, FileDataArray &secondary, String &folderFrom,
|
||||
Upp::Array<String> &excepFolders, Upp::Array<String> &excepFiles, int sensSecs = 0);
|
||||
bool Apply(String toFolder, String fromFolder, int flags = 0);
|
||||
long GetCount() {return diffList.GetCount();};
|
||||
bool SaveFile(const char *fileName);
|
||||
|
|
@ -199,7 +200,7 @@ public:
|
|||
String ToString();
|
||||
|
||||
private:
|
||||
Array<FileDiff> diffList;
|
||||
Upp::Array<FileDiff> diffList;
|
||||
};
|
||||
|
||||
String Replace(String str, String find, String replace);
|
||||
|
|
@ -241,6 +242,12 @@ inline T Average(T a, T b, T c) {return T(a+b+c)/3;}
|
|||
template<class T>
|
||||
inline T Average(T a, T b, T c, T d){return T(a+b+c+d)/4;}
|
||||
template<class T>
|
||||
inline T pow2(T a) {return (a*a);}
|
||||
template<class T>
|
||||
inline T pow3(T a) {return (a*a*a);}
|
||||
template<class T>
|
||||
inline T pow4(T a) {return pow2(pow2(a));}
|
||||
template <class T>
|
||||
inline const T& min(const T& a, const T& b, const T& c) {
|
||||
return a < b ? (a < c ? a : c) : ((b < c) ? b : c); }
|
||||
template <class T>
|
||||
|
|
@ -459,7 +466,7 @@ String WideToString(LPCWSTR wcs, int len = -1);
|
|||
|
||||
String GetExtExecutable(String ext);
|
||||
|
||||
Array<String> GetDriveList();
|
||||
Upp::Array<String> GetDriveList();
|
||||
|
||||
String Getcwd();
|
||||
bool Chdir (const String &folder);
|
||||
|
|
|
|||
|
|
@ -11,6 +11,24 @@ inline RGBA *GetPixel(ImageBuffer &img, int x, int y) {
|
|||
return &img[y][x];
|
||||
}
|
||||
|
||||
inline bool IsValid(const Image &img, int x, int y) {
|
||||
return x >= 0 && y >= 0 && x < img.GetWidth() && y < img.GetHeight();
|
||||
}
|
||||
|
||||
inline bool IsValid(ImageBuffer &img, int x, int y) {
|
||||
return x >= 0 && y >= 0 && x < img.GetWidth() && y < img.GetHeight();
|
||||
}
|
||||
|
||||
template <class T>
|
||||
inline bool IsValid(const Image &img, T &t) {
|
||||
return t.x >= 0 && t.y >= 0 && t.x < img.GetWidth() && t.y < img.GetHeight();
|
||||
}
|
||||
|
||||
template <class T>
|
||||
inline bool IsValid(ImageBuffer &img, T &t) {
|
||||
return t.x >= 0 && t.y >= 0 && t.x < img.GetWidth() && t.y < img.GetHeight();
|
||||
}
|
||||
|
||||
Drawing DrawEquation(String str);
|
||||
QtfRichObject QtfEquation(String str);
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ protected:
|
|||
void (*Delete)(void *);
|
||||
};
|
||||
|
||||
static Array<PluginData>& Plugins();
|
||||
static Upp::Array<PluginData>& Plugins();
|
||||
|
||||
public:
|
||||
StaticPlugin();
|
||||
|
|
|
|||
|
|
@ -1558,10 +1558,22 @@ mg], [@(0.0.255) int]_[*@3 x], [@(0.0.255) int]_[*@3 y])&]
|
|||
[s2; Gets the color of a pixel in image [%-*@3 img] in coordinates
|
||||
[%-*@3 x], [%-*@3 y]. &]
|
||||
[s2; This pixel is modifiable.&]
|
||||
[s3;%- &]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:IsValid`(const Image`&`,int`,int`):%- [@(0.0.255) bool]_[* IsValid]([@(0.0.255) const]_
|
||||
[_^Image^ Image]_`&[*@3 img], [@(0.0.255) int]_[*@3 x], [@(0.0.255) int]_[*@3 y])&]
|
||||
[s2; Returns true if coordinates [%-*@3 x] and [%-*@3 y] are inside Image
|
||||
[%-*@3 img].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:IsValid`(ImageBuffer`&`,int`,int`):%- [@(0.0.255) bool]_[* IsValid]([_^ImageBuffer^ Im
|
||||
ageBuffer]_`&[*@3 img], [@(0.0.255) int]_[*@3 x], [@(0.0.255) int]_[*@3 y])&]
|
||||
[s2; Returns true if coordinates [%-*@3 x] and [%-*@3 y] are inside Image
|
||||
[%-*@3 img].&]
|
||||
[s3; &]
|
||||
[s3; &]
|
||||
[ {{10000@1 [s0; [* Other functions]]}}&]
|
||||
[s4; &]
|
||||
[s4;%- &]
|
||||
[s5;:GetExtExecutable`(String`):%- [_^String^ String]_[* GetExtExecutable]([_^String^ Strin
|
||||
g]_[*@3 ext])&]
|
||||
[s2; Gets the program that will open by default the files with extension
|
||||
|
|
|
|||
|
|
@ -296,55 +296,55 @@ COMPRESSED
|
|||
238,27,178,28,185,50,35,93,106,69,128,208,228,14,178,162,9,43,86,238,83,227,160,0,49,4,141,136,51,4,138,67,252,230,212,214,99,223,250,217,124,203,255,13,19,255,68,51,112,152,3,98,12,15,144,145,15,35,22,186,5,197,193,151,98,18,4,61,120,20,151,192,253,27,66,144,192,13,160,132,40,91,134,22,32,38,92,190,155,185,158,93,91,254,81,14,115,210,222,222,26,94,204,38,109,51,91,209,78,182,216,25,141,109,252,120,74,244,163,88,233,111,96,165,213,215,100,166,137,187,55,64,127,48,189,13,34,34,179,91,92,167,85,201,77,178,55,180,109,27,51,45,200,254,114,123,75,170,79,104,41,89,133,250,125,134,220,114,168,111,57,137,150,107,102,96,83,38,101,89,148,13,178,76,222,20,162,152,87,224,208,77,8,194,35,200,219,128,10,40,117,33,194,216,252,206,29,172,11,225,142,8,42,86,175,217,56,118,163,131,200,1,161,217,3,183,210,44,211,80,98,231,19,15,27,217,147,201,239,139,4,254,48,128,150,239,43,221,200,38,20,143,224,25,221,0,
|
||||
203,175,30,186,181,19,163,50,103,255,20,237,126,163,19,155,101,234,48,119,129,217,148,142,36,84,210,126,65,177,112,165,19,46,107,155,96,22,11,201,71,58,119,142,4,222,113,29,246,111,74,2,162,162,219,205,106,92,28,175,0,179,114,27,94,106,116,9,112,5,28,250,242,50,116,126,179,84,235,156,215,207,213,86,51,55,31,146,36,7,77,146,0,22,112,99,183,155,126,232,207,45,196,238,228,57,83,108,72,244,7,244,180,83,166,81,202,149,119,30,195,225,119,219,218,13,118,161,77,44,111,89,56,219,85,116,47,98,52,220,240,45,108,213,123,23,247,62,119,181,241,119,31,62,95,100,255,120,63,41,27,212,108,34,80,123,196,36,144,83,236,142,245,205,36,221,115,101,83,33,63,171,168,183,242,103,18,147,184,15,34,85,16,226,24,16,67,198,11,67,192,192,43,161,245,33,212,173,20,20,87,93,41,27,97,7,176,186,54,254,171,49,5,241,69,163,26,14,232,101,215,125,110,255,211,38,147,97,23,65,49,40,153,210,72,139,131,146,202,128,23,27,40,185,238,229,
|
||||
59,118,231,207,83,74,17,221,107,144,135,179,249,233,255,166,255,57,140,43,111,251,231,48,119,141,26,17,196,37,13,154,51,229,4,49,129,89,187,0,118,14,206,155,241,4,89,76,18,53,115,65,21,30,234,133,154,217,201,24,14,134,56,113,208,71,59,15,39,186,230,135,144,220,204,66,251,91,57,203,101,238,138,145,155,204,51,182,218,36,98,37,200,106,237,163,165,196,206,218,197,204,63,129,92,45,94,98,49,210,198,84,4,102,47,51,81,234,140,5,208,219,236,77,8,65,117,31,165,119,150,90,169,73,88,67,27,218,241,113,138,106,107,228,234,150,85,166,112,200,72,45,51,173,112,254,67,115,66,156,149,77,233,20,128,67,204,19,146,122,64,96,1,26,209,33,105,13,235,96,67,154,45,160,209,70,66,4,201,12,166,219,27,150,104,120,22,83,128,224,250,69,80,93,165,147,62,49,236,153,185,189,120,131,119,20,64,174,177,13,44,128,125,237,211,50,42,174,233,139,90,103,54,54,169,210,247,29,167,102,108,82,163,85,77,6,208,101,114,12,241,134,209,172,213,46,
|
||||
243,128,85,96,163,44,198,19,20,119,169,2,183,33,150,143,23,63,99,116,8,201,31,180,214,88,64,78,113,148,14,179,194,106,20,213,11,192,136,128,237,254,95,179,238,249,219,104,118,230,137,254,43,194,92,172,111,123,96,251,122,102,239,0,11,251,98,49,179,179,179,139,193,238,181,23,222,193,253,98,180,221,229,110,181,187,48,213,93,70,85,181,3,118,23,32,41,230,76,49,39,49,137,98,22,115,14,98,20,51,197,156,69,137,20,37,102,138,153,34,197,112,169,170,106,79,143,221,227,249,114,63,92,65,224,123,222,243,156,39,253,158,112,206,17,37,113,159,36,9,141,112,129,2,110,1,27,52,164,183,234,97,61,172,230,163,91,84,147,165,36,8,130,240,154,216,150,160,144,49,154,203,126,46,194,110,23,25,214,58,26,106,164,116,251,231,38,113,88,19,23,167,5,165,188,223,230,67,137,70,99,237,233,213,122,173,114,216,79,205,87,172,242,216,161,192,93,10,181,85,227,161,153,118,115,194,218,28,50,182,16,87,196,113,45,186,130,183,82,74,106,29,69,118,240,181,
|
||||
102,23,126,204,207,223,37,20,33,174,171,185,90,17,192,188,49,6,122,232,236,214,59,150,82,162,144,64,70,18,83,115,203,130,165,137,198,214,154,190,61,37,13,149,81,172,181,181,13,178,142,228,193,2,61,55,169,232,144,42,185,251,86,0,143,90,31,92,249,219,217,57,69,107,232,13,183,49,22,109,134,111,249,244,30,86,220,11,120,36,32,9,222,227,167,47,232,5,156,247,95,208,191,253,171,32,252,158,2,1,166,7,204,117,160,31,174,163,106,6,223,224,129,149,69,103,1,227,67,112,0,9,39,169,72,86,213,113,74,121,142,32,227,77,234,34,24,213,5,80,244,222,24,235,161,235,37,58,168,10,40,195,82,37,37,21,12,204,9,229,172,160,55,19,47,207,121,224,154,18,157,179,38,66,103,165,102,115,174,157,198,138,187,203,103,199,90,181,31,146,80,67,39,248,26,230,189,149,75,37,169,2,148,41,65,152,86,55,152,112,39,130,46,71,125,25,111,37,10,187,235,180,106,246,203,222,197,128,140,84,234,107,10,31,177,67,140,119,221,67,209,64,143,202,155,31,
|
||||
144,238,50,96,226,4,141,137,34,22,29,220,229,30,179,195,0,148,5,128,40,161,149,87,124,1,247,102,128,134,175,16,187,11,57,84,95,49,182,124,206,100,141,50,162,216,157,241,49,176,0,116,178,236,7,87,53,170,248,96,60,118,58,35,51,166,92,174,77,82,160,74,22,220,104,208,113,15,72,2,231,125,160,34,90,40,32,193,142,23,3,140,7,193,137,71,92,8,206,116,7,226,3,103,25,127,8,82,145,200,238,124,117,117,168,111,80,143,77,34,161,153,34,10,218,184,42,86,56,139,3,209,98,231,2,188,192,67,189,90,47,110,250,226,149,95,173,179,113,90,19,235,229,85,11,234,80,79,39,122,105,196,82,55,28,106,212,100,209,140,133,194,100,189,6,161,37,103,179,136,194,57,253,236,212,200,169,204,238,152,149,85,247,17,93,188,90,48,184,112,178,201,139,121,88,9,237,165,245,33,107,139,101,108,21,88,250,22,203,222,246,49,216,173,158,119,197,8,20,241,169,7,108,67,166,185,40,196,217,231,71,147,205,238,86,113,141,92,30,36,65,29,47,42,157,56,
|
||||
173,140,174,135,43,70,244,60,113,219,61,37,93,29,163,168,28,95,251,180,130,182,172,149,101,230,141,221,94,120,164,18,139,156,250,230,24,185,60,57,58,51,92,170,91,108,244,44,123,153,165,181,238,173,4,41,78,71,26,61,220,162,171,146,214,70,234,70,92,191,189,121,195,46,122,103,153,3,61,128,220,186,134,85,165,140,48,6,47,24,184,176,15,80,29,208,135,16,222,35,80,225,9,136,203,92,114,65,108,23,54,22,223,90,7,105,77,151,58,112,98,131,105,154,179,115,147,106,225,119,37,196,5,242,160,182,218,17,132,124,167,42,44,30,137,10,107,150,165,110,11,209,164,78,255,182,172,192,77,8,114,204,177,147,253,136,104,7,242,104,83,180,5,207,156,71,150,222,83,187,31,96,60,26,116,36,46,101,4,2,33,26,156,37,210,85,4,28,205,151,81,92,238,205,73,132,202,204,118,121,181,48,38,223,66,14,68,81,185,188,166,199,136,171,173,107,148,110,5,246,202,161,129,106,223,57,231,224,108,220,54,152,219,185,89,81,26,122,86,42,163,98,118,49,83,104,
|
||||
44,40,1,187,15,176,44,75,118,216,44,17,196,225,237,2,194,118,231,19,124,87,60,0,149,49,229,117,71,29,118,212,207,35,186,92,128,150,15,175,61,162,88,224,38,193,78,227,209,72,214,218,29,156,125,109,52,102,253,120,91,104,196,60,36,151,240,44,183,170,3,48,53,114,52,171,55,79,86,199,48,42,20,154,17,133,7,23,238,48,77,70,188,181,161,19,64,1,82,231,113,166,108,225,68,19,61,105,217,44,143,195,81,63,38,243,54,101,18,199,221,177,175,47,145,71,115,26,145,66,97,46,49,219,93,152,177,102,24,39,201,162,42,99,208,80,156,0,65,151,13,171,101,44,28,91,108,203,182,65,105,189,244,88,21,28,148,2,69,114,34,169,105,186,139,168,228,210,6,0,61,94,176,229,213,206,183,32,127,123,114,81,2,128,215,234,147,74,151,110,178,94,48,188,99,121,224,138,192,133,87,110,112,78,203,28,232,106,118,37,144,248,53,236,218,128,185,3,18,7,6,108,67,176,109,204,146,196,43,83,146,74,221,172,100,205,5,63,195,170,80,74,214,36,45,195,
|
||||
153,137,71,231,18,43,242,254,146,112,83,166,103,217,252,126,165,55,159,75,55,115,99,161,34,41,89,245,177,153,49,113,175,187,209,9,118,218,185,39,246,214,6,244,144,231,240,46,122,151,103,190,71,24,111,221,133,206,135,188,82,177,234,204,151,107,9,32,111,170,160,23,72,114,60,87,129,3,28,232,85,81,192,67,180,5,153,121,192,144,187,198,174,157,64,2,85,188,187,58,153,207,30,40,96,166,7,107,239,130,164,8,2,63,126,228,226,157,35,205,215,146,59,97,74,118,196,168,38,234,212,216,100,0,65,27,19,151,65,232,224,196,140,212,22,10,68,161,190,95,160,17,205,106,122,143,123,162,93,243,239,171,38,42,187,147,175,193,148,24,111,173,229,36,148,24,169,27,61,162,23,41,107,225,60,133,143,223,69,86,147,208,18,46,189,74,174,207,100,57,46,250,38,140,244,44,20,108,36,8,14,153,38,228,8,68,13,86,74,67,1,39,113,2,232,16,118,159,132,137,137,32,144,197,5,180,204,192,83,79,30,153,184,176,219,92,174,251,99,37,93,215,213,0,234,144,
|
||||
164,241,122,117,167,25,219,157,128,102,1,11,21,60,32,207,185,101,21,135,78,177,166,221,27,156,79,49,137,28,46,58,52,50,62,106,16,51,0,112,16,30,190,113,121,224,204,50,152,17,62,229,169,220,13,164,204,156,87,201,48,214,138,76,219,33,91,43,42,173,21,81,51,179,78,252,36,184,189,106,66,19,225,11,69,76,44,181,105,115,174,114,243,161,127,174,167,204,2,49,85,166,152,39,46,29,53,233,133,255,20,228,187,182,100,44,93,106,208,223,237,46,20,233,176,112,154,11,90,38,84,30,175,143,205,166,15,57,42,19,248,1,27,192,120,155,28,132,216,10,94,204,47,0,166,139,245,229,225,67,242,6,218,73,203,81,242,116,96,221,167,116,157,71,243,114,6,114,253,136,145,144,225,156,200,160,14,91,152,202,104,165,224,150,125,182,106,201,133,103,26,234,85,81,166,188,98,79,169,71,163,12,87,111,135,79,169,132,161,70,162,185,90,102,195,165,213,208,172,173,180,173,84,70,116,147,188,116,128,173,0,46,53,173,130,36,61,77,119,3,135,153,215,150,196,70,
|
||||
201,36,172,94,0,113,189,53,125,89,118,172,103,88,220,125,201,191,17,112,114,22,223,45,9,142,212,221,118,128,203,49,32,86,69,210,241,32,49,175,135,71,6,15,142,118,126,102,157,249,120,109,163,158,106,61,18,38,54,249,64,241,166,184,208,201,202,19,227,144,32,195,82,29,102,72,57,157,15,201,67,94,188,74,113,65,30,157,136,5,228,226,238,142,198,172,198,160,38,171,164,47,50,145,175,143,238,64,189,154,228,40,198,52,186,210,211,19,230,188,97,49,136,194,40,44,205,88,187,150,134,185,11,72,19,167,176,20,151,15,49,134,72,1,80,160,167,2,194,57,130,48,115,230,129,241,34,168,14,77,159,30,139,166,248,10,8,168,0,90,28,138,37,169,6,58,89,227,5,119,158,244,1,120,3,37,197,105,135,38,79,214,167,130,186,66,226,208,130,11,160,91,214,188,241,198,79,211,61,56,198,103,44,187,128,113,97,51,130,0,206,32,252,48,118,23,184,3,71,218,80,6,0,100,35,46,123,113,36,234,110,115,10,192,108,209,237,43,97,133,102,31,74,142,85,183,
|
||||
168,50,72,50,3,203,87,68,45,27,64,244,97,179,101,126,176,19,231,171,7,128,217,129,197,81,36,100,144,46,217,137,85,111,14,179,93,76,203,117,27,84,181,220,229,80,33,202,16,85,96,149,79,233,62,98,126,50,190,179,202,184,101,193,113,203,128,204,1,69,11,43,165,211,57,22,214,16,80,141,62,71,188,18,81,14,153,146,221,29,238,142,240,216,93,200,201,167,165,251,70,165,124,133,88,30,34,139,136,20,97,17,172,166,175,240,55,219,115,255,22,135,190,90,167,48,53,124,23,124,182,160,154,55,16,128,123,125,139,18,224,189,67,65,178,113,176,219,230,105,52,163,43,206,69,63,168,28,0,171,220,159,104,155,72,146,249,209,200,157,213,58,138,146,171,102,136,58,25,232,72,202,104,148,122,65,153,9,21,219,219,251,169,67,51,161,150,122,40,15,102,230,78,92,241,117,45,42,222,10,96,27,238,66,1,163,31,106,237,46,24,156,145,146,110,20,226,31,78,24,147,229,174,99,104,47,122,169,254,118,192,17,236,178,195,202,177,248,134,183,96,56,202,84,226,156,
|
||||
61,180,188,176,210,166,118,116,72,33,154,232,199,206,180,53,104,13,38,163,181,135,25,67,159,226,158,175,42,200,113,72,194,188,96,207,186,237,99,79,119,192,49,119,1,166,66,62,42,226,59,150,137,124,186,26,12,69,79,48,228,89,186,152,34,182,128,220,67,59,193,55,241,38,129,199,75,135,85,112,125,220,15,136,5,8,55,52,232,149,13,240,74,24,253,218,10,79,173,234,93,166,19,81,61,175,211,148,178,28,155,132,28,77,44,167,5,116,207,118,131,33,30,146,213,40,173,129,31,72,108,192,56,18,1,162,157,69,138,136,206,201,81,51,65,0,102,217,188,101,161,172,83,235,16,144,48,226,98,70,67,211,76,241,46,94,75,140,202,157,221,168,99,210,14,51,129,215,71,155,190,90,139,34,240,123,96,29,235,182,67,15,182,232,12,188,162,13,224,145,34,110,221,176,192,159,222,25,204,163,22,6,54,190,83,18,176,2,11,58,186,59,223,2,128,13,23,166,4,64,211,12,68,232,125,229,136,173,201,70,104,250,65,29,80,227,96,60,218,211,107,17,205,27,58,118,
|
||||
147,80,233,94,104,10,8,54,244,57,169,53,226,218,60,214,99,34,12,64,15,229,199,48,224,51,188,135,113,133,188,108,174,32,55,29,191,132,161,96,218,122,196,24,40,31,68,245,42,147,246,173,68,79,102,136,8,227,99,18,136,58,138,202,34,133,234,108,214,238,114,212,241,19,13,160,163,201,73,162,141,158,163,59,22,79,143,78,203,108,165,194,17,36,152,111,196,202,102,107,133,170,141,148,249,135,28,71,101,221,186,43,27,204,13,102,117,123,118,56,239,108,3,209,77,193,189,113,222,6,87,85,228,60,88,57,236,24,38,7,138,242,73,105,101,71,12,236,231,106,50,146,160,60,217,172,30,72,216,25,92,71,237,223,207,32,230,117,50,117,102,206,119,183,34,241,89,233,248,126,99,204,110,68,221,195,141,49,177,21,181,175,14,197,76,101,174,163,164,118,100,74,138,140,26,158,142,195,25,40,11,8,37,223,58,177,148,179,153,27,65,99,70,19,81,66,19,25,114,129,251,152,12,59,186,187,168,119,47,226,141,217,125,208,176,189,155,1,238,184,84,129,23,107,92,29,
|
||||
156,181,198,8,14,230,160,6,102,101,2,164,132,22,1,236,180,226,81,152,62,226,98,117,107,194,27,43,157,158,87,135,178,96,48,129,32,168,10,235,176,58,24,144,31,68,252,49,195,136,89,245,83,184,136,86,222,85,75,248,188,122,130,81,227,45,3,31,118,123,152,235,192,175,63,50,122,147,8,124,48,236,70,216,208,53,105,196,239,66,246,27,90,19,149,16,3,49,213,106,7,74,45,240,70,224,8,227,205,3,116,144,26,65,196,30,32,152,64,158,36,147,252,122,212,184,46,120,171,134,93,163,3,114,195,28,109,5,56,24,159,155,163,77,145,176,7,54,12,4,240,83,177,110,150,161,136,96,61,156,39,36,98,115,192,105,0,40,127,208,242,177,129,2,104,228,220,217,32,113,216,70,160,12,128,237,174,192,22,92,97,166,168,25,212,34,127,151,117,122,135,97,66,147,216,168,74,19,11,46,140,13,196,218,237,172,187,1,164,99,119,124,196,139,15,19,209,117,164,60,8,142,75,172,54,239,88,143,79,175,144,229,145,11,27,50,153,1,132,206,129,39,82,135,21,116,
|
||||
246,46,74,229,14,61,96,91,34,48,28,49,171,212,206,113,244,235,236,3,88,79,214,120,229,135,18,1,198,43,198,175,56,168,107,143,58,216,88,152,165,82,134,176,159,141,218,251,173,78,38,19,88,156,139,234,106,54,172,78,194,19,138,23,231,14,186,47,66,87,143,123,138,105,84,222,201,220,245,180,226,113,161,121,51,166,184,122,217,212,212,81,179,177,46,163,66,106,82,59,148,21,30,66,119,62,160,18,72,231,174,204,109,146,35,233,165,74,31,8,201,66,44,185,187,87,223,206,14,225,212,43,211,131,113,85,184,89,50,37,81,138,52,133,200,251,107,55,61,70,158,232,165,195,98,193,252,216,79,153,55,76,101,37,230,241,54,182,228,45,152,202,25,156,10,157,226,147,198,10,118,140,21,176,162,156,75,41,158,214,244,134,24,138,129,115,6,15,136,42,154,105,74,183,61,128,100,109,166,155,1,76,59,80,159,121,56,37,209,60,191,169,158,233,113,235,33,214,17,27,143,173,64,20,129,233,162,58,188,64,89,60,227,129,113,48,78,22,69,204,16,227,217,43,108,29,
|
||||
134,32,94,112,45,70,85,77,77,199,70,154,248,186,239,198,10,202,97,9,74,14,171,234,23,200,28,71,244,33,155,92,46,156,181,2,80,14,93,16,159,187,195,162,13,22,42,58,224,110,113,29,27,203,75,7,28,81,242,215,88,155,228,20,97,26,162,34,204,221,21,195,70,26,167,88,188,12,47,228,68,154,232,145,90,22,172,186,65,31,145,135,135,238,11,4,0,28,87,227,29,158,141,155,196,77,17,70,48,34,57,194,72,107,19,81,48,153,88,165,76,226,241,13,214,112,24,182,74,214,165,160,145,209,61,17,40,192,58,34,34,233,244,135,66,18,171,95,168,32,25,14,139,56,60,1,191,116,54,238,69,5,150,254,250,156,53,45,213,57,137,129,75,8,38,131,241,174,171,10,170,37,235,220,177,211,147,145,153,3,33,63,46,206,245,113,156,46,253,40,177,172,64,249,115,182,111,41,54,136,36,113,159,48,122,235,37,100,72,103,12,36,39,232,83,156,220,66,104,245,21,105,80,172,70,160,215,32,160,174,224,178,85,137,19,40,177,91,143,80,212,139,24,89,8,137,
|
||||
83,107,25,248,237,128,71,49,179,132,82,6,44,19,181,181,168,138,154,123,119,73,73,133,51,193,46,21,98,59,114,249,216,78,109,252,32,149,41,167,170,131,75,229,236,81,82,82,94,88,214,182,126,93,126,66,116,227,167,242,164,134,53,28,195,122,6,226,165,143,217,205,168,107,7,126,55,129,219,17,172,181,69,188,228,230,198,62,211,201,29,122,201,121,3,171,126,40,161,33,55,17,78,205,81,195,21,78,174,145,184,88,215,166,25,35,228,206,212,8,142,18,200,209,34,35,92,56,16,223,230,76,51,216,129,186,115,118,243,72,244,135,217,52,108,145,189,174,218,98,136,204,202,9,101,147,71,196,70,253,154,206,45,74,26,144,27,15,155,213,139,122,253,27,244,90,218,231,20,31,187,176,43,35,131,125,198,50,105,181,177,107,240,114,219,172,47,151,130,20,187,48,168,66,8,23,55,102,136,173,134,236,207,84,73,53,29,135,86,12,250,13,187,110,101,221,104,77,90,15,97,92,185,38,204,108,231,51,120,63,135,110,10,9,103,58,34,203,170,181,107,53,4,205,6,50,
|
||||
138,121,163,39,129,52,169,201,96,34,0,209,195,201,1,74,83,199,214,49,48,180,226,208,247,40,22,113,175,224,106,229,249,26,155,142,44,205,89,246,192,202,236,14,110,74,6,20,28,36,164,193,76,124,23,69,57,192,235,157,18,15,214,34,97,193,81,135,66,234,161,61,163,237,225,91,32,84,99,146,76,5,125,100,158,183,38,230,64,217,240,220,36,201,187,201,39,234,174,224,82,136,240,115,79,249,30,198,72,22,82,56,197,86,88,83,217,112,171,65,209,144,3,244,184,245,225,221,46,31,25,55,31,174,124,56,187,45,205,31,243,51,226,121,167,101,241,153,108,242,163,138,196,217,89,167,218,98,186,206,180,178,157,158,226,80,143,85,231,3,221,116,230,200,113,143,61,190,230,81,131,42,218,122,215,178,133,71,118,187,77,201,50,169,212,114,152,172,98,52,27,78,206,47,62,90,78,37,210,7,62,238,102,132,14,67,145,3,138,43,150,129,56,179,230,212,100,48,41,196,167,62,187,14,147,155,187,29,212,203,249,99,75,69,189,119,106,22,87,225,53,172,89,100,171,123,
|
||||
144,147,91,2,91,157,155,113,33,142,43,20,102,237,106,98,221,243,195,179,165,54,207,17,110,64,176,163,195,118,69,222,57,58,16,58,65,48,225,132,5,72,37,188,231,60,58,148,117,192,147,110,16,135,67,199,163,169,113,125,138,128,69,12,98,128,196,133,52,75,76,48,100,53,238,52,11,174,220,37,223,61,77,81,25,89,2,18,27,87,75,227,29,12,144,128,142,247,162,60,75,123,233,71,188,124,111,248,64,187,118,161,199,26,13,24,1,60,212,231,239,210,160,211,11,184,201,39,111,174,198,52,208,244,98,140,96,242,173,196,135,147,156,69,75,224,60,106,83,19,243,218,210,219,93,23,170,103,90,54,183,16,39,194,4,253,149,202,99,120,56,2,171,13,43,117,235,0,75,224,30,234,156,19,10,17,204,188,232,85,7,92,132,132,251,208,130,204,225,51,221,232,70,205,119,233,185,240,154,193,59,97,69,92,232,100,208,111,188,175,230,155,232,246,40,5,228,225,178,186,232,61,243,132,119,13,62,130,154,103,101,123,146,209,179,121,86,180,233,18,153,246,129,91,120,117,
|
||||
86,226,131,40,19,61,100,3,148,189,112,207,9,217,134,55,62,5,8,224,166,134,21,205,156,186,73,69,33,57,4,181,113,226,1,212,173,158,172,159,100,51,73,51,72,90,44,185,185,248,59,177,84,125,76,17,94,9,66,246,212,100,50,207,166,22,143,73,44,182,89,178,116,155,131,192,13,130,138,17,182,145,105,212,35,249,162,77,98,72,42,35,143,72,122,116,154,108,85,42,142,242,69,159,211,32,93,92,132,115,202,236,125,185,178,59,251,203,175,236,233,138,221,81,44,159,69,113,64,216,220,217,129,70,31,35,48,183,80,155,58,152,172,136,94,242,109,255,72,122,230,40,186,231,246,77,79,191,153,154,54,83,149,106,9,242,179,26,162,216,180,223,81,43,22,39,117,72,7,148,32,173,74,200,17,27,212,65,157,196,90,23,22,46,3,217,103,158,248,239,243,158,138,137,237,213,135,131,14,214,237,216,117,103,233,251,214,162,9,155,25,215,175,74,3,5,107,10,211,200,21,182,5,16,182,113,206,3,24,247,22,97,230,129,46,11,93,156,193,157,26,79,61,25,12,168,
|
||||
148,65,199,179,147,2,82,125,150,20,20,153,5,23,246,80,116,14,36,195,28,19,10,64,245,96,160,28,90,184,132,37,60,196,96,79,194,29,134,12,239,65,50,102,80,225,192,63,17,24,137,188,113,24,163,161,158,55,50,10,165,96,119,188,247,47,216,213,82,95,97,222,93,122,248,55,60,59,103,0,62,209,157,240,198,43,166,183,163,72,152,238,136,239,54,14,134,40,233,40,85,207,140,14,230,180,237,209,141,180,2,15,107,119,126,3,85,205,1,106,63,31,66,92,89,162,48,83,205,208,111,50,44,17,125,217,140,96,216,15,150,14,73,56,46,19,218,187,93,126,95,139,59,20,24,105,139,91,218,64,60,126,24,141,186,48,52,13,53,102,153,20,75,246,5,148,164,102,114,227,26,31,22,141,75,241,99,65,219,177,231,56,190,173,215,19,160,80,24,159,232,29,104,43,170,254,44,31,133,129,140,252,73,49,169,150,130,207,92,80,179,52,65,240,156,52,207,39,3,24,129,65,49,222,175,132,114,200,182,13,9,81,44,153,67,124,51,145,204,158,218,49,156,204,109,172,
|
||||
121,108,30,46,166,74,150,121,228,188,11,60,26,124,60,216,56,204,187,47,234,109,131,148,183,144,65,96,38,167,92,184,134,231,145,194,107,213,97,106,54,80,109,77,254,178,252,170,65,149,173,28,1,145,248,97,90,88,222,29,147,216,220,56,0,59,218,66,189,18,155,53,109,0,25,250,69,159,221,214,181,40,87,172,78,119,73,191,242,199,198,225,22,212,190,186,110,41,57,214,214,21,28,176,22,206,200,77,119,55,27,226,173,33,120,95,140,154,93,104,5,237,67,221,200,53,197,60,54,31,198,245,138,109,126,184,186,231,117,200,203,115,240,145,85,226,95,72,161,88,14,190,221,206,202,75,188,118,21,199,246,184,230,165,110,98,227,41,50,185,78,204,181,29,221,176,234,196,57,127,251,74,220,210,156,72,161,220,102,7,156,50,70,50,201,88,6,134,220,221,194,217,194,99,241,238,210,91,141,248,16,231,50,167,231,210,223,155,219,89,78,207,41,148,177,217,156,31,152,16,252,228,61,39,154,168,28,26,220,103,57,32,184,160,50,222,80,93,247,247,22,71,111,66,16,43,
|
||||
173,171,83,10,34,82,2,5,138,252,222,81,188,178,187,53,111,15,231,112,220,211,141,117,115,186,189,218,24,219,15,242,52,188,233,209,28,87,155,179,19,96,128,141,25,186,109,10,123,219,88,61,98,9,150,99,16,130,15,120,244,24,150,134,185,19,77,76,4,240,113,116,138,232,211,29,75,161,66,141,79,23,115,18,19,55,87,240,16,104,8,56,81,226,93,102,220,16,74,86,55,197,8,226,45,218,103,94,59,97,35,32,163,73,235,2,228,50,160,207,163,172,144,38,217,66,210,247,8,181,85,101,105,60,0,73,155,45,221,55,198,58,215,115,127,113,132,54,243,154,58,40,132,132,182,4,2,117,42,126,226,61,63,166,195,161,128,136,234,24,158,184,38,193,175,161,27,236,164,19,61,58,104,97,89,210,192,154,96,194,230,142,128,109,23,162,227,220,236,46,124,190,77,64,58,163,170,237,168,105,138,160,140,79,121,188,248,69,211,100,185,221,2,133,189,107,7,215,237,132,161,144,15,142,80,238,145,14,54,13,33,18,150,48,229,202,154,38,171,205,197,220,120,221,158,123,
|
||||
50,130,102,231,148,49,193,136,199,167,12,147,147,230,245,144,227,136,129,7,246,224,92,120,96,10,235,82,125,127,239,236,229,207,112,198,45,44,11,134,198,54,241,192,90,49,69,145,211,88,134,147,228,14,19,15,184,38,203,77,71,134,62,213,72,35,8,205,189,143,9,106,203,102,249,241,192,127,110,75,215,28,7,135,150,100,59,68,136,30,218,73,229,196,240,86,1,113,50,1,55,149,97,33,231,114,218,45,43,61,72,42,192,115,99,77,57,226,178,2,181,149,152,236,235,164,155,68,206,100,235,5,46,62,19,54,176,51,179,126,58,151,234,197,187,130,92,69,208,103,91,38,36,77,211,238,220,237,243,32,68,192,196,94,166,60,221,59,144,223,194,38,29,56,124,94,116,21,144,227,150,104,26,115,217,116,119,2,207,76,20,103,170,52,254,140,183,206,56,39,130,62,44,113,237,159,114,39,7,54,199,133,165,146,202,28,73,253,143,192,62,229,112,19,187,242,237,26,255,89,155,195,233,13,182,113,27,220,159,243,230,21,197,120,143,100,130,46,239,211,192,70,222,15,56,167,
|
||||
198,115,156,140,147,86,236,79,74,157,244,37,64,126,146,80,105,107,241,197,1,155,118,12,194,89,184,110,224,36,83,130,246,144,208,131,123,12,108,17,109,194,133,35,110,202,100,23,42,197,15,11,3,167,122,6,33,13,56,52,178,174,94,72,68,163,6,204,184,228,180,215,163,233,41,118,16,46,38,167,48,203,57,23,117,103,86,147,164,248,115,117,26,14,26,0,32,128,113,220,11,173,186,73,49,215,132,32,208,212,211,94,150,160,77,222,0,90,86,71,168,120,208,15,176,171,71,86,129,245,224,241,220,52,110,192,8,52,228,13,108,228,105,181,134,43,199,49,155,83,79,9,86,197,21,30,55,31,169,146,27,62,55,80,115,86,150,195,5,165,223,188,74,77,65,205,230,102,75,194,54,134,195,9,65,57,79,174,37,7,43,7,144,97,162,0,43,179,96,142,252,244,175,4,46,200,44,196,147,105,166,177,186,153,121,107,43,225,239,202,12,109,48,118,125,236,97,103,210,48,254,221,221,152,161,144,54,137,214,130,166,38,67,74,100,176,19,153,121,45,96,149,238,91,233,16,
|
||||
236,188,146,59,215,76,102,61,158,193,92,204,11,221,228,81,198,29,200,32,74,231,147,35,194,178,5,16,110,142,225,131,138,69,104,1,245,80,14,98,24,98,160,50,35,82,211,152,231,63,35,69,145,221,83,37,132,127,88,165,41,234,93,112,118,201,115,94,200,219,249,249,204,185,212,203,218,167,222,123,176,228,52,36,221,29,211,67,20,182,210,194,111,5,251,23,250,41,236,193,122,92,58,40,95,114,104,141,226,214,179,11,94,25,212,88,174,185,158,197,73,218,37,241,72,18,254,44,158,158,167,19,205,71,16,145,155,163,229,123,132,198,248,208,9,74,129,32,148,202,12,181,205,207,31,27,252,116,30,187,156,84,55,250,51,217,240,244,210,174,241,78,212,75,206,217,163,35,127,78,34,147,199,245,113,147,232,215,180,86,250,30,55,226,159,184,227,25,199,85,29,15,184,199,152,29,148,9,73,82,32,141,184,27,80,192,227,200,146,230,97,115,158,106,187,197,213,36,65,251,218,153,158,94,103,232,18,18,141,228,207,12,217,235,201,53,135,127,166,78,195,140,220,96,210,47,
|
||||
143,178,229,149,241,168,28,205,0,152,151,199,51,48,232,76,218,245,43,145,161,234,195,61,107,168,243,157,180,203,1,128,251,30,41,180,156,148,111,224,254,33,241,186,159,206,139,61,36,34,135,239,234,3,172,178,251,68,154,223,115,79,128,8,57,134,36,93,227,241,119,43,61,81,122,220,246,94,52,156,193,129,53,173,187,108,130,40,208,133,216,147,75,243,46,77,196,232,121,134,81,205,138,225,185,227,101,194,99,54,195,167,160,133,61,73,232,194,18,108,119,52,105,140,217,89,98,205,65,220,237,130,218,213,1,142,13,158,208,9,233,167,185,121,113,109,163,173,23,141,130,231,44,90,117,113,219,186,174,78,224,195,89,64,91,203,18,111,187,92,211,37,73,151,246,32,67,1,169,11,181,129,61,55,169,106,23,219,37,62,148,101,65,252,169,182,18,215,192,93,93,56,30,54,246,71,124,35,176,26,155,251,198,140,82,50,165,235,22,113,73,97,90,24,240,65,169,204,232,70,213,58,175,87,152,232,156,167,197,167,215,163,0,223,225,116,98,179,49,210,25,174,81,2,149,45,
|
||||
77,146,11,191,49,90,184,25,243,102,55,66,199,131,88,217,31,87,199,153,101,209,39,40,227,57,245,205,217,244,177,118,129,184,63,63,98,43,20,166,65,235,216,17,0,167,218,39,151,210,94,174,192,133,133,96,129,142,2,90,88,39,46,84,215,165,11,158,156,32,80,219,24,199,183,248,51,197,163,239,160,101,139,132,184,151,184,54,221,217,100,146,90,160,180,222,19,159,233,187,89,248,73,48,202,190,207,98,87,200,80,201,18,61,143,86,140,151,201,145,189,228,8,132,135,169,203,178,120,232,166,77,79,24,26,91,46,123,32,135,220,135,82,72,65,216,97,71,169,12,130,52,185,67,10,248,188,178,99,36,169,212,211,58,209,58,139,206,211,113,60,176,224,167,45,50,121,98,175,105,80,186,5,194,106,136,27,138,109,29,238,86,181,201,23,252,144,57,111,52,246,76,31,22,7,182,169,55,20,81,152,199,253,212,164,109,203,17,143,119,153,144,6,116,90,11,66,172,228,241,74,110,84,53,228,35,189,86,12,101,251,0,119,104,73,45,232,104,44,76,18,61,209,133,192,160,
|
||||
52,91,236,92,79,130,176,3,157,196,13,38,246,135,233,27,108,38,211,136,195,2,108,190,12,88,247,112,0,25,99,12,149,66,70,154,238,169,117,57,141,131,18,114,53,28,206,29,197,149,187,99,211,21,1,122,180,84,151,50,86,218,201,157,153,25,160,213,133,149,131,123,5,229,4,78,205,111,208,105,49,253,150,84,63,146,107,75,83,80,150,236,92,147,46,77,97,235,214,226,6,129,79,200,130,245,116,170,147,145,21,115,149,220,112,160,46,234,108,164,116,140,124,198,192,33,207,6,131,193,102,91,220,26,10,156,211,146,60,104,231,131,117,108,251,181,125,110,181,94,193,31,185,240,155,71,28,221,199,39,114,7,96,47,22,74,134,199,188,9,89,200,113,190,49,220,229,13,130,124,59,141,145,103,125,83,13,61,188,245,145,1,40,96,55,5,103,200,80,130,233,98,57,186,98,219,211,13,92,102,235,203,141,106,106,211,3,253,240,170,75,28,27,104,135,228,176,75,215,131,18,29,70,154,123,37,57,184,188,190,79,141,213,122,155,89,78,151,119,243,227,195,248,210,225,173,
|
||||
48,102,68,27,136,115,47,21,155,139,130,147,248,177,146,78,153,114,111,15,36,141,91,187,252,222,7,19,35,115,30,77,26,48,246,50,234,3,135,71,97,10,150,117,83,99,193,117,223,134,59,216,32,165,34,20,144,140,153,40,228,5,89,224,137,23,79,163,247,133,200,132,50,187,182,30,6,211,184,131,92,169,200,211,22,26,22,171,203,165,148,59,90,136,138,40,166,59,182,96,147,170,154,247,20,221,142,18,157,242,204,3,176,64,198,73,235,39,224,86,231,250,130,55,130,220,179,219,198,98,90,95,232,147,145,135,247,199,55,130,203,71,252,194,204,179,216,102,46,162,185,38,179,25,39,18,104,105,164,11,194,14,51,201,240,65,238,42,95,74,90,237,23,94,243,10,174,65,68,50,33,215,173,25,37,35,72,198,203,107,153,112,119,157,211,209,218,212,45,168,152,196,216,73,45,246,110,211,1,53,54,119,246,12,115,220,161,47,212,29,8,228,18,168,155,50,167,154,27,160,147,160,91,241,239,229,124,67,168,184,187,162,91,251,132,201,6,197,208,88,66,170,121,111,171,191,
|
||||
1,164,169,71,210,100,85,90,227,142,146,228,124,137,212,167,152,135,245,241,131,195,126,69,187,145,36,213,115,185,242,124,64,106,133,235,83,123,137,89,185,16,135,210,243,171,11,50,151,133,246,130,38,144,78,252,88,207,115,87,148,89,197,186,155,137,230,46,221,48,159,145,25,189,0,187,183,187,226,247,163,96,189,131,130,29,238,21,184,85,214,178,220,95,122,36,60,72,49,163,204,113,85,203,16,156,50,92,37,193,253,36,42,130,76,197,173,88,7,30,18,46,238,226,152,133,56,77,170,107,143,42,130,51,109,179,187,217,240,47,97,108,114,84,172,128,181,18,64,54,102,145,144,161,104,155,75,116,169,54,73,249,88,247,100,241,138,28,190,59,117,156,80,175,110,80,247,176,129,252,8,71,180,230,42,35,173,253,177,27,237,159,42,90,100,189,217,176,61,207,221,61,20,77,214,136,250,196,120,62,233,198,106,162,236,168,250,8,188,113,136,176,28,179,35,4,158,206,146,117,168,72,40,59,25,131,189,99,73,177,58,173,96,111,59,106,16,2,148,247,250,148,36,170,60,77,
|
||||
132,80,9,143,171,199,222,45,135,217,51,83,16,68,50,243,132,195,151,158,128,80,103,202,132,130,231,162,185,56,178,176,66,172,89,81,199,55,253,89,189,125,63,14,94,234,205,86,237,208,94,152,27,12,126,99,142,221,145,93,80,115,91,244,124,253,216,154,141,52,172,2,99,28,31,17,173,66,10,174,83,224,78,52,41,221,38,127,123,23,231,147,165,93,134,164,148,129,224,218,237,54,159,12,154,47,241,4,168,44,175,202,204,160,179,196,26,190,242,202,227,236,202,137,196,90,179,244,18,29,212,70,74,75,235,10,103,1,75,176,14,6,139,99,32,145,91,110,137,116,85,70,65,146,114,3,140,135,161,121,30,0,218,2,58,221,218,200,109,142,15,149,208,143,207,73,11,250,240,84,0,99,83,145,26,207,36,204,208,7,121,103,4,248,60,71,108,202,122,36,153,53,95,48,113,201,113,176,187,144,201,223,79,67,167,57,172,13,138,193,164,60,3,1,136,237,148,145,12,107,164,88,114,194,18,37,125,43,129,83,187,160,137,135,7,129,194,8,58,235,182,48,141,59,139,77,
|
||||
117,11,70,223,154,129,163,85,134,128,115,3,244,103,215,241,218,165,249,42,45,112,215,28,185,48,57,76,16,165,233,137,96,239,238,56,112,49,159,117,238,52,81,101,11,214,153,54,21,122,134,162,88,45,161,211,94,212,164,24,188,83,0,178,145,162,156,126,221,19,216,219,100,31,245,228,132,222,206,83,79,175,93,233,211,91,101,161,151,5,56,137,77,234,33,142,159,212,182,23,224,37,178,114,34,159,224,175,4,241,5,255,214,90,56,177,93,81,26,56,206,237,130,90,91,133,151,173,141,208,113,134,139,133,216,11,174,165,19,59,237,221,19,160,45,140,222,174,5,138,110,194,93,141,65,4,39,222,88,124,172,141,99,104,180,93,145,179,65,21,183,161,218,132,160,88,20,13,14,110,67,58,24,110,126,170,92,24,78,68,218,195,165,57,151,192,58,227,232,10,174,157,105,174,183,41,135,229,204,55,104,8,32,181,7,69,18,70,198,129,189,73,58,5,222,4,39,67,160,101,56,113,114,211,233,91,180,208,24,93,171,80,11,175,202,101,246,234,106,179,206,93,112,182,246,3,
|
||||
203,98,162,117,208,149,9,244,226,122,129,80,108,185,66,178,8,116,235,133,53,201,148,171,101,254,88,12,195,91,40,245,24,73,118,64,188,56,29,102,170,220,83,24,165,20,176,59,99,105,228,229,21,139,8,158,26,37,106,62,107,65,140,131,72,142,240,229,188,122,59,55,30,182,58,217,112,202,217,151,142,3,221,172,38,192,151,151,74,181,225,169,220,235,74,243,102,181,80,16,90,246,247,46,71,124,8,59,146,95,38,172,18,90,220,39,142,201,77,25,248,149,214,154,48,251,52,231,29,69,249,210,113,24,130,70,196,69,143,12,6,5,225,220,20,156,27,236,30,202,60,18,80,162,72,190,62,132,11,49,49,189,90,16,214,43,146,73,5,11,71,247,34,179,54,153,91,47,143,64,93,244,57,20,135,232,248,251,154,17,149,205,211,142,217,136,134,82,204,47,157,92,140,244,173,178,130,81,189,195,148,154,29,210,227,101,205,222,174,205,200,181,155,52,214,118,66,183,224,218,232,36,61,139,161,47,31,17,100,209,108,206,8,58,133,135,105,101,203,235,114,118,3,114,209,86,
|
||||
46,147,231,196,17,153,75,227,22,87,160,106,51,199,32,239,222,5,8,140,123,146,126,41,11,29,149,67,57,6,191,173,234,150,242,85,33,241,65,170,188,32,6,165,149,226,44,125,77,129,49,221,72,121,22,125,210,238,30,88,47,115,13,14,115,217,117,64,35,187,61,65,219,27,25,176,177,14,202,199,101,77,68,57,229,172,158,165,72,150,43,196,157,156,18,91,241,98,116,162,190,68,27,11,187,195,106,97,83,15,179,131,161,240,67,193,28,67,4,172,236,99,111,69,25,184,149,21,77,124,80,226,22,124,43,100,83,98,121,132,121,147,184,61,39,51,197,94,233,181,119,91,116,217,143,164,60,51,92,42,29,73,207,231,23,193,180,208,165,112,18,232,17,132,183,117,78,211,200,224,145,91,247,4,226,90,85,102,235,241,90,62,154,46,152,135,240,11,116,206,120,118,25,179,16,37,102,55,1,158,191,99,210,226,167,139,156,41,12,151,41,167,35,115,203,76,84,139,102,52,129,210,233,135,40,96,242,230,245,165,167,122,39,66,132,82,65,152,5,68,23,171,249,96,76,119,
|
||||
126,241,182,1,12,73,113,54,150,119,94,167,155,75,14,197,32,180,69,148,37,110,33,133,173,138,144,76,121,104,252,140,62,45,206,241,148,252,241,73,95,231,46,244,174,240,193,217,12,177,74,182,238,36,142,192,1,99,234,107,119,212,210,153,142,52,37,58,19,226,67,159,21,24,111,55,227,215,138,146,116,119,158,85,8,219,113,4,191,219,241,178,146,18,143,218,208,208,99,185,19,159,112,68,201,169,151,146,13,200,59,119,165,44,120,243,56,128,96,219,75,77,57,81,84,197,55,28,152,230,18,3,106,158,113,101,183,22,105,24,58,8,28,149,110,171,155,180,176,20,80,29,212,35,121,235,97,245,212,176,150,226,171,250,139,20,249,84,39,40,245,35,12,171,207,92,200,148,206,85,237,196,25,66,67,42,150,53,233,25,74,223,238,139,219,50,124,95,122,176,129,216,175,248,129,114,111,217,43,93,37,20,208,101,7,16,161,121,111,3,104,117,46,119,115,121,28,234,128,170,62,139,38,47,61,63,77,137,123,145,88,174,215,90,66,232,230,60,169,193,156,232,48,253,243,2,
|
||||
255,254,194,122,3,47,61,106,212,141,113,163,83,181,86,154,167,183,209,20,52,171,209,13,245,160,164,79,178,98,93,158,111,170,45,134,57,113,155,41,129,205,101,61,106,218,244,146,8,242,51,85,134,66,27,29,52,78,41,134,0,88,28,1,36,229,24,115,59,33,210,82,250,161,140,82,95,153,48,123,198,226,117,226,210,213,179,199,133,129,13,79,110,206,194,67,240,227,113,202,171,35,81,163,132,227,118,59,114,46,50,38,141,103,149,203,245,114,177,93,228,174,182,195,214,184,209,184,58,189,183,24,107,190,107,185,194,119,253,168,6,19,239,2,172,64,92,53,212,137,78,138,156,227,90,72,233,188,156,186,59,213,109,56,85,239,229,29,210,16,172,238,63,161,50,80,185,129,23,135,25,94,8,107,195,54,142,144,20,118,173,130,221,193,96,215,195,84,44,248,140,21,230,38,18,181,193,193,186,143,49,212,142,169,38,142,36,81,192,250,49,130,94,129,155,188,57,150,79,136,122,135,239,32,68,142,123,78,193,124,184,114,198,24,78,186,32,18,122,156,115,71,47,101,15,17,
|
||||
215,20,97,145,171,129,14,117,138,137,165,221,15,166,4,164,236,160,32,233,106,202,104,105,30,104,7,140,232,238,74,165,169,156,172,26,125,171,214,73,247,35,33,33,47,181,150,231,218,134,84,68,237,190,42,170,54,237,233,33,16,221,174,216,244,38,40,109,72,119,31,230,25,180,197,29,25,117,158,206,7,156,146,147,122,4,38,184,105,209,213,227,69,195,210,137,80,200,237,9,23,176,205,149,123,34,119,144,133,198,241,31,52,173,62,130,43,142,234,214,113,79,188,215,202,246,96,155,60,62,214,29,221,30,104,218,248,172,0,212,105,212,172,240,65,96,64,108,134,31,196,70,177,63,81,135,133,18,78,133,27,172,170,76,188,142,153,11,33,61,239,197,59,231,81,176,185,173,73,176,49,68,235,217,189,98,87,77,90,9,221,170,189,40,192,45,10,184,227,28,27,9,219,245,172,115,16,0,11,123,92,99,91,134,149,127,218,142,4,185,35,182,179,174,72,51,141,53,19,173,146,245,22,142,207,20,201,105,31,80,235,67,77,114,20,167,61,135,246,194,163,171,107,175,232,14,
|
||||
243,176,232,175,237,24,231,49,153,156,203,59,138,210,42,136,119,148,190,43,6,185,138,121,18,169,227,139,240,97,6,157,47,197,239,10,185,130,116,174,202,155,229,234,81,20,14,135,137,204,161,228,238,142,89,54,222,230,231,135,112,134,23,220,27,197,225,234,187,7,144,132,24,44,161,192,138,22,176,2,86,10,172,120,115,136,207,42,120,197,155,214,67,34,136,231,186,39,146,134,32,196,208,81,183,110,144,171,190,142,171,216,88,63,140,224,38,93,90,121,171,192,18,7,180,138,231,209,104,89,197,73,98,160,206,148,228,252,208,44,106,45,144,138,248,140,199,7,69,53,36,88,59,242,232,19,67,93,96,193,84,181,225,17,57,147,10,215,146,226,40,78,41,58,229,157,17,106,43,144,233,33,114,91,143,77,222,91,211,89,136,82,0,150,156,20,142,244,21,100,225,230,98,118,244,56,59,86,137,8,20,45,138,189,168,201,147,101,63,123,217,134,154,189,33,153,7,82,10,101,175,177,84,56,68,29,153,19,0,6,156,32,207,42,181,64,109,148,46,77,198,162,186,201,13,254,
|
||||
1,69,49,213,112,218,69,195,230,163,55,248,41,161,25,165,178,84,164,30,71,145,138,81,183,82,60,253,212,144,185,60,73,221,140,53,106,170,137,164,69,194,144,109,20,126,117,235,93,82,24,120,148,202,197,70,230,250,8,11,232,50,180,180,76,67,14,13,132,64,203,69,133,151,99,111,229,198,24,245,242,242,241,160,127,170,146,195,2,183,6,249,161,139,53,13,175,184,178,164,138,60,62,173,106,227,71,254,25,191,148,244,103,130,131,206,99,86,2,189,66,199,224,35,153,36,116,216,198,139,66,4,128,212,4,223,117,106,149,36,183,107,75,68,33,56,86,0,19,9,164,17,149,211,19,173,251,249,233,246,144,130,135,51,227,22,156,245,56,75,62,45,247,37,8,78,78,34,7,33,243,133,8,77,124,147,78,83,171,133,3,60,80,213,143,244,99,167,167,91,162,181,97,3,61,14,140,144,71,148,10,237,13,204,26,13,64,11,24,149,154,226,154,237,45,222,0,190,161,141,144,34,69,122,147,171,84,117,168,32,214,140,88,29,109,138,248,214,161,41,64,197,65,183,135,168,
|
||||
98,134,36,133,143,176,98,236,189,123,225,19,226,25,3,82,207,6,118,67,29,203,224,132,32,15,162,188,194,147,251,45,164,136,128,58,228,153,60,48,53,233,117,69,22,201,121,179,223,214,8,76,45,181,54,51,13,234,111,101,210,36,62,18,207,38,58,13,224,220,141,180,42,216,28,133,120,208,212,24,161,20,137,154,228,11,40,2,244,251,219,73,201,123,23,144,235,68,14,117,133,1,49,162,198,203,187,138,146,26,97,10,167,157,194,28,3,180,35,186,133,154,146,148,124,164,155,107,86,176,106,57,200,150,164,85,210,128,187,170,46,129,85,24,93,5,200,224,200,144,115,0,173,16,108,55,218,162,53,91,3,214,251,214,67,26,104,172,185,47,199,44,129,185,246,198,166,58,113,52,203,7,88,90,180,115,106,164,161,89,35,42,233,78,31,156,228,138,224,172,173,173,107,140,32,132,144,212,116,90,27,19,174,53,7,88,249,85,128,115,205,174,139,231,210,64,21,74,23,48,112,85,179,218,156,62,81,24,47,203,70,149,203,162,121,132,163,129,165,185,188,183,128,10,44,200,
|
||||
52,234,40,121,93,182,233,56,66,136,157,219,63,77,163,123,244,154,108,61,145,7,175,37,81,254,180,168,40,195,142,97,32,66,117,132,37,145,185,160,150,115,100,169,114,209,28,88,33,162,128,75,88,171,54,191,115,66,141,204,87,118,68,5,1,238,103,171,151,204,164,144,123,89,183,35,83,60,172,42,211,230,91,201,67,167,213,158,100,202,238,213,193,34,249,188,61,164,171,69,106,130,87,175,108,100,187,252,50,168,90,169,48,140,198,199,243,105,175,209,190,171,243,239,228,57,142,215,92,182,155,13,44,182,62,188,152,225,37,109,7,155,11,79,31,100,70,140,71,65,168,68,174,84,237,37,167,177,25,30,20,123,51,87,122,166,24,73,188,188,208,249,233,105,134,159,241,207,121,158,81,202,57,125,80,18,17,66,158,33,67,222,120,90,232,116,254,232,52,125,56,212,197,218,153,19,169,187,85,197,31,247,4,199,116,187,2,167,207,179,15,211,124,59,100,136,76,165,121,156,72,38,24,9,173,210,118,148,243,22,14,49,160,139,134,11,235,120,85,63,58,187,49,229,46,9,
|
||||
215,153,176,95,57,55,200,45,99,189,92,139,177,222,168,180,135,8,76,75,108,185,142,70,14,58,93,250,60,124,99,90,246,203,49,244,69,202,124,195,33,222,204,233,195,149,217,31,52,151,156,12,190,55,27,153,28,27,215,37,250,146,50,211,90,72,199,124,188,68,209,7,113,202,52,148,82,59,177,30,105,175,134,7,106,207,24,195,190,208,174,156,200,195,197,232,42,159,42,75,123,23,101,13,43,120,133,44,99,183,13,182,108,24,156,234,144,99,173,170,191,234,80,114,165,163,102,236,146,140,226,74,141,226,174,146,56,212,87,146,26,200,109,177,144,3,88,74,113,36,237,180,239,229,166,14,194,94,107,225,8,171,162,186,202,233,51,47,13,22,170,187,65,209,148,39,112,137,112,231,230,227,174,16,45,74,197,214,73,173,122,6,156,150,109,71,145,140,25,62,170,40,240,243,181,205,138,75,140,82,247,119,8,178,109,140,136,180,196,74,73,5,49,76,243,240,230,128,133,0,107,186,137,58,112,219,159,92,144,220,92,252,65,22,3,55,242,40,69,175,88,69,36,21,226,176,
|
||||
78,27,121,137,95,56,36,69,249,128,106,32,2,163,170,5,206,238,134,95,166,172,220,132,170,155,190,103,205,58,209,83,142,37,202,88,50,110,110,3,167,216,85,137,121,207,28,35,36,73,169,220,110,181,62,206,98,22,250,150,153,187,137,245,34,52,63,210,118,62,130,149,203,0,48,33,219,146,182,75,203,168,33,123,203,207,6,218,178,88,137,220,50,248,56,71,164,71,165,200,132,221,222,118,10,158,155,194,236,98,56,217,132,241,76,113,195,184,206,172,239,245,174,204,44,168,87,122,92,134,84,9,217,193,215,185,98,39,118,11,66,130,33,32,52,200,181,153,197,217,240,115,30,184,235,153,114,193,12,188,6,151,1,178,152,119,221,1,152,5,202,0,105,44,102,119,12,102,193,185,143,72,243,209,131,148,118,194,131,121,250,110,44,204,44,61,216,141,142,220,86,44,248,106,246,208,148,157,242,235,48,168,29,194,194,35,210,48,119,5,242,104,66,154,161,51,33,176,231,63,194,27,171,23,60,255,6,144,1,226,231,238,35,172,123,51,179,137,49,221,220,12,108,195,88,17,
|
||||
139,68,105,167,181,126,225,68,247,221,111,237,184,92,16,85,76,188,0,136,105,59,3,214,107,35,207,238,63,216,49,122,170,19,35,239,237,136,224,169,62,141,74,101,235,78,253,198,141,173,193,12,179,157,57,107,53,132,133,235,246,192,172,26,246,17,101,62,202,23,225,8,51,107,70,29,217,4,42,61,113,100,234,42,121,245,135,235,142,168,62,176,231,175,2,67,103,54,182,13,84,85,103,248,27,32,78,193,222,73,223,242,170,59,153,79,34,201,59,153,111,69,238,100,62,137,36,238,100,62,137,60,151,230,139,8,51,94,74,59,48,191,29,213,240,210,167,209,53,224,73,15,101,100,3,236,108,127,26,1,70,182,183,35,245,147,242,157,110,210,147,242,157,238,244,147,242,157,238,249,147,242,157,238,237,147,242,157,110,194,147,242,255,15,252,193,195,121,117,206,46,38,50,48,126,45,198,130,241,80,247,140,103,193,187,225,198,2,172,237,196,98,174,28,149,170,64,137,194,115,6,168,25,102,4,86,69,165,196,209,165,24,91,55,73,171,90,81,189,39,198,210,235,205,133,224,
|
||||
246,236,44,165,187,114,85,208,126,59,106,182,162,62,82,5,69,106,93,4,136,146,88,218,233,21,25,78,133,92,251,174,115,15,37,106,229,113,35,233,117,184,245,3,158,133,135,23,52,174,32,27,149,254,154,243,128,124,188,216,226,122,254,53,245,150,115,124,125,198,125,74,132,230,8,164,180,79,184,92,27,92,129,87,58,64,188,51,22,182,75,1,219,114,220,139,10,109,187,109,225,64,65,60,7,99,72,186,55,110,31,144,91,199,45,245,61,112,115,51,7,13,139,247,40,219,182,136,88,220,155,158,210,131,62,71,10,188,103,149,130,55,191,149,108,120,103,26,237,33,199,137,52,4,220,112,222,163,106,135,246,83,234,166,119,185,251,148,186,8,32,222,29,112,164,97,240,39,226,31,229,53,222,13,124,34,238,104,60,240,14,156,221,199,147,16,240,138,122,218,60,217,241,169,199,231,176,22,118,231,169,20,158,221,205,42,10,84,72,236,108,117,167,164,192,219,54,212,110,130,102,51,105,28,103,97,238,6,137,178,236,212,141,212,54,53,205,116,118,54,129,221,87,22,19,125,
|
||||
229,241,22,149,152,74,215,211,197,48,8,206,227,221,14,188,7,82,59,197,192,106,24,255,213,198,223,180,230,156,187,24,233,5,15,84,216,176,120,69,97,143,34,158,13,129,199,4,227,57,176,51,55,23,50,51,15,56,4,55,92,177,24,62,200,236,240,57,112,45,216,89,118,70,114,40,177,23,87,155,67,208,131,11,206,243,7,141,192,2,151,186,29,51,88,54,193,3,147,202,89,247,166,160,202,35,241,105,225,57,246,108,37,186,183,77,58,6,235,240,33,108,127,16,61,110,43,76,62,24,47,24,13,7,93,17,24,15,28,241,73,79,152,48,175,70,231,113,4,222,13,134,191,67,224,43,28,224,238,119,19,238,175,38,222,125,254,171,235,6,239,166,183,12,225,22,122,220,55,214,191,245,225,79,95,255,219,31,238,61,61,254,207,31,254,155,239,190,29,252,229,15,95,124,255,135,63,248,201,179,47,62,121,249,249,223,190,124,241,242,213,71,31,124,244,237,31,236,136,63,253,249,207,222,190,255,108,239,237,227,195,159,255,244,207,247,190,182,236,195,15,190,253,142,125,239,
|
||||
39,251,111,190,124,245,197,235,189,103,123,175,222,146,247,62,126,162,127,239,155,148,253,213,15,127,240,159,247,223,252,100,255,227,55,31,125,240,241,203,47,94,191,217,251,251,207,159,253,114,255,163,111,125,244,157,119,175,111,73,223,250,189,1,111,169,63,123,183,232,173,1,239,185,63,252,224,167,127,253,193,247,191,247,253,239,253,229,95,253,213,183,247,222,178,238,200,127,176,254,235,75,62,250,214,19,251,95,255,219,189,151,175,158,255,242,195,239,236,125,51,251,147,232,159,189,181,225,195,159,127,244,173,183,235,95,125,248,199,110,190,254,242,23,207,159,52,236,125,178,255,226,249,231,207,223,236,127,178,247,139,223,189,101,219,251,233,191,249,238,59,174,189,55,207,254,113,255,139,189,79,95,237,240,120,63,249,86,245,159,128,229,191,61,255,237,254,139,63,194,229,249,23,111,222,125,188,195,228,155,237,254,207,255,225,111,118,118,239,62,119,118,255,249,59,152,222,74,251,240,235,210,190,114,233,249,231,127,136,192,78,252,123,120,126,251,47,82,126,247,123,32,118,194,95,239,
|
||||
189,249,108,255,93,156,247,94,126,186,131,228,87,79,218,118,171,247,222,1,243,222,227,39,77,79,147,31,191,124,249,234,147,231,95,60,123,179,255,250,43,210,91,69,239,134,191,123,7,202,78,242,63,124,246,252,245,87,162,94,239,189,218,127,246,201,71,223,125,249,197,139,223,189,7,237,61,90,223,12,219,91,23,255,195,151,159,126,186,255,234,27,96,251,147,24,125,141,245,255,199,24,237,125,35,72,159,191,252,228,249,167,207,159,253,226,197,254,63,7,233,93,138,237,253,143,255,241,23,223,223,253,252,245,95,236,253,244,245,247,127,184,183,115,251,199,59,171,94,237,125,250,229,23,31,191,121,190,203,141,15,63,252,95,255,235,29,168,95,131,244,239,126,187,251,221,255,248,203,55,79,114,63,250,224,191,191,121,245,252,139,95,254,30,201,119,175,63,219,123,247,252,170,44,255,25,207,174,62,191,105,221,206,145,253,223,190,249,99,144,126,245,234,229,47,95,61,251,124,55,126,246,102,239,55,207,95,188,216,123,249,171,93,241,236,138,234,147,253,79,159,125,249,226,205,219,
|
||||
85,159,62,127,177,195,230,55,207,223,124,246,36,101,255,139,215,59,251,191,194,231,73,236,91,0,190,255,206,143,221,227,187,255,243,167,255,199,222,223,253,246,217,231,191,122,177,255,131,15,223,79,238,166,190,251,63,255,208,218,15,62,250,179,207,222,124,254,226,163,63,219,245,137,239,254,251,189,143,254,236,63,61,127,181,255,233,203,223,126,111,255,183,251,31,253,217,135,255,114,197,254,199,87,207,127,189,255,95,159,191,126,243,181,158,249,55,175,94,61,251,221,207,246,222,62,62,252,191,254,24,134,127,255,30,175,223,243,126,67,35,253,98,239,217,19,251,59,95,223,2,244,236,205,103,59,168,94,238,61,219,97,243,201,19,231,235,239,60,229,221,254,171,47,158,237,192,122,245,22,144,167,241,110,246,147,253,47,222,236,82,98,215,148,118,89,245,196,252,250,119,175,223,236,127,254,39,26,207,199,191,249,228,107,14,124,115,120,119,107,190,217,208,95,188,126,249,226,203,55,239,162,179,247,197,179,207,247,119,117,251,171,87,251,175,159,172,248,226,151,239,106,224,203,87,175,
|
||||
118,175,79,97,254,120,255,245,46,132,47,95,253,227,19,237,147,29,204,31,191,121,249,234,79,212,247,223,126,182,91,244,85,79,124,159,135,223,250,227,86,248,139,151,47,95,188,181,244,237,250,15,127,254,47,108,15,127,232,218,251,98,255,244,229,139,79,246,255,169,209,255,247,175,165,229,147,189,31,253,239,223,96,242,83,48,222,231,222,123,246,247,233,247,226,47,255,221,191,251,39,132,222,188,250,114,127,239,249,167,187,45,227,227,39,81,159,126,249,226,79,196,225,63,238,191,254,199,55,47,127,245,127,63,251,98,215,31,94,253,104,255,55,255,106,84,254,136,227,159,98,244,55,187,214,240,234,169,255,60,229,255,46,62,191,222,127,245,182,96,118,173,232,143,24,63,216,33,248,236,245,46,99,118,244,29,241,199,175,255,254,139,79,95,126,240,237,127,201,212,31,253,248,71,31,253,252,39,127,247,119,63,250,135,159,252,205,143,254,225,163,159,255,63,111,109,252,243,189,63,154,255,240,155,25,62,248,245,123,183,254,144,101,215,54,158,0,253,245,239,67,241,247,111,118,217,
|
||||
244,14,201,247,96,255,250,195,39,56,223,182,131,247,45,108,239,179,103,175,247,126,177,191,235,23,31,239,170,227,107,105,255,148,139,111,62,123,218,69,118,137,186,155,126,243,118,229,23,47,191,146,185,91,250,187,253,55,255,44,108,59,125,187,158,250,229,235,253,93,160,222,150,219,175,95,62,223,113,255,147,174,221,220,47,246,191,82,244,230,55,207,63,222,127,82,183,107,193,187,189,227,41,197,95,63,127,243,229,179,183,141,245,59,187,188,120,170,203,119,253,231,157,146,255,237,173,150,231,127,241,87,223,255,225,143,191,255,212,201,191,230,197,147,204,215,123,127,251,230,213,139,143,126,240,131,255,246,46,243,254,238,215,59,153,175,63,248,246,206,176,127,197,231,223,124,182,27,63,219,251,197,151,111,222,124,157,250,84,136,187,184,126,103,199,188,243,235,61,245,227,93,217,254,98,255,43,218,222,179,95,62,219,185,240,250,229,63,87,240,126,209,215,61,253,222,191,238,196,78,201,123,142,93,239,254,219,207,158,191,248,228,191,190,124,253,230,63,189,252,248,203,157,23,95,69,
|
||||
225,169,183,63,29,163,190,216,255,205,174,195,237,78,140,191,217,33,190,75,234,239,236,189,120,170,188,215,207,126,247,157,189,29,0,159,255,234,205,143,255,203,46,9,223,109,120,191,121,246,135,2,223,109,20,127,96,227,15,222,133,126,127,87,243,79,217,188,191,163,127,252,108,23,207,175,9,220,251,124,119,50,123,253,126,71,217,127,241,201,83,76,95,188,124,249,122,255,221,212,147,232,175,118,146,15,255,95,96,186,119,77,
|
||||
243,128,85,96,163,44,198,19,20,119,169,2,183,33,150,143,23,63,99,116,8,201,31,180,214,88,64,78,113,148,14,179,194,106,20,213,11,192,136,128,237,254,95,181,238,253,219,120,122,230,9,254,43,194,28,214,215,30,216,62,207,236,13,176,176,15,139,153,157,157,93,12,110,207,94,120,7,251,139,209,118,151,187,213,118,97,170,187,140,170,106,7,236,46,64,82,204,153,98,78,98,18,197,44,230,28,196,40,102,138,57,139,18,41,74,204,20,51,69,138,225,168,170,106,79,143,221,99,223,1,251,195,157,32,240,251,126,223,247,125,194,251,121,210,251,136,146,184,79,146,132,70,184,64,1,183,128,13,26,210,91,245,176,30,86,243,209,45,170,201,82,18,4,65,120,77,108,75,80,200,24,205,101,63,23,97,183,139,12,107,29,13,53,82,186,253,115,147,56,172,137,139,211,130,82,222,111,243,161,68,163,177,246,244,106,189,86,57,236,167,230,43,86,121,236,80,224,46,133,218,170,241,208,76,187,57,97,109,14,25,91,136,43,226,184,22,93,193,91,41,37,181,142,34,59,248,
|
||||
90,179,11,63,230,231,239,18,138,16,215,213,92,173,8,96,222,24,3,61,116,118,235,29,75,41,81,72,32,35,137,169,185,101,193,210,68,99,107,77,223,158,146,134,202,40,214,218,218,6,89,71,242,96,129,158,155,84,116,72,149,220,125,43,128,71,173,15,174,252,237,236,156,162,53,244,134,219,24,139,54,195,183,124,122,15,43,238,5,60,18,144,4,239,241,211,23,244,2,206,251,47,232,223,254,85,16,126,79,129,0,211,3,230,58,208,15,215,81,53,131,111,240,192,202,162,179,128,241,33,56,128,132,147,84,36,171,234,56,165,60,71,144,241,38,117,17,140,234,2,40,122,111,140,245,208,245,18,29,84,5,148,97,169,146,146,10,6,230,132,114,86,208,155,137,151,231,60,112,77,137,206,89,19,161,179,82,179,57,215,78,99,197,93,243,217,177,86,237,135,36,212,208,9,190,134,121,111,229,82,73,170,0,101,74,16,166,213,13,38,220,137,160,203,81,95,198,91,137,194,238,58,173,154,253,178,119,49,32,35,149,250,154,194,71,236,16,227,93,247,80,52,208,163,242,230,
|
||||
7,164,187,12,152,56,65,99,162,136,69,7,119,185,199,236,48,0,101,1,32,74,104,229,21,95,192,189,25,160,225,43,196,174,33,135,234,43,198,150,207,153,172,81,70,20,187,51,62,6,22,128,78,150,253,224,170,70,21,31,140,199,78,103,100,198,148,203,181,73,10,84,201,130,27,13,58,238,1,73,224,188,15,84,68,11,5,36,216,241,98,128,241,32,56,241,136,11,193,153,238,64,124,224,44,227,15,65,42,18,217,157,175,174,14,245,13,234,177,73,36,52,83,68,65,27,87,197,10,103,113,32,90,236,92,128,23,120,168,87,235,197,77,95,188,242,171,117,54,78,107,98,189,188,106,65,29,234,233,68,47,141,88,234,134,67,141,154,44,154,177,80,152,172,215,32,180,228,108,22,81,56,167,159,157,26,57,149,217,29,179,178,234,62,162,139,87,11,6,23,78,54,121,49,15,43,161,189,180,62,100,109,177,140,173,2,75,223,98,217,219,62,6,187,213,243,174,24,129,34,62,245,128,109,200,52,23,133,56,251,252,104,178,217,117,21,215,200,229,65,18,212,241,162,210,137,
|
||||
211,202,232,122,184,98,68,207,19,183,221,83,210,213,49,138,202,241,181,79,43,104,203,90,89,102,222,216,237,133,71,42,177,200,169,111,142,145,203,147,163,51,195,165,186,197,70,207,178,151,89,90,235,222,74,144,226,116,164,209,195,45,186,42,105,109,164,110,196,245,219,206,27,118,209,59,203,28,232,1,228,214,53,172,42,101,132,49,120,193,192,133,125,128,234,128,62,132,240,30,129,10,79,64,92,230,146,11,98,187,176,177,248,214,58,72,107,186,212,129,19,27,76,211,156,157,155,84,11,191,11,33,46,144,7,181,213,142,32,228,59,85,97,241,72,84,88,179,44,117,91,136,38,117,250,183,101,5,110,66,144,99,142,157,236,71,68,59,144,71,155,162,45,120,230,60,178,244,158,218,253,0,227,209,160,35,113,41,35,16,8,209,224,44,145,174,34,224,104,190,140,226,114,111,78,34,84,102,182,203,171,133,49,249,22,114,32,138,202,229,53,61,70,92,109,93,163,116,43,176,87,14,13,84,251,206,57,7,103,227,182,193,220,206,205,138,210,208,179,82,25,21,179,139,153,66,
|
||||
99,65,9,216,125,128,101,89,178,195,102,137,32,14,111,23,16,182,59,159,224,187,226,1,168,140,41,175,59,234,176,163,126,30,209,229,2,180,124,120,237,17,197,2,55,9,118,26,143,70,178,214,238,224,236,107,163,49,235,199,219,66,35,230,33,185,132,103,185,85,29,128,169,145,163,89,189,121,178,58,134,81,161,208,140,40,60,184,112,135,105,50,226,173,13,157,0,10,144,58,143,51,101,11,39,154,232,73,203,102,121,28,142,250,49,153,183,41,147,56,238,142,125,125,137,60,154,211,136,20,10,115,137,217,238,194,140,53,195,56,73,22,85,25,131,134,226,4,8,186,108,88,45,99,225,216,98,91,182,13,74,235,165,199,170,224,160,20,40,146,19,73,77,211,93,68,37,151,54,0,232,241,130,45,175,118,190,5,249,219,147,139,18,0,188,86,159,84,186,116,147,245,130,225,29,203,3,87,4,46,188,114,131,115,90,230,64,87,179,43,129,196,175,97,215,6,204,29,144,56,48,96,27,130,109,99,150,36,94,153,146,84,234,102,37,107,46,248,25,86,133,82,178,38,105,25,
|
||||
206,76,60,58,151,88,145,247,151,132,155,50,61,203,230,247,43,189,249,92,186,153,27,11,21,73,201,170,143,205,140,137,123,221,141,78,176,147,206,61,177,183,54,160,135,60,135,119,209,187,60,243,61,194,120,235,46,116,62,228,149,138,85,103,190,92,75,0,121,83,5,189,64,146,227,185,10,28,224,64,175,138,2,30,162,45,200,204,3,134,220,53,118,233,4,18,168,226,221,213,201,124,246,64,1,51,61,88,123,23,36,69,16,248,241,35,23,239,28,105,190,150,220,9,83,178,35,70,53,81,167,198,38,3,8,218,152,184,12,66,7,39,102,164,182,80,32,10,245,253,2,141,104,86,211,123,220,19,237,154,127,95,53,81,217,157,124,13,166,196,120,107,45,39,161,196,72,221,232,17,189,72,89,11,231,41,124,252,46,178,154,132,150,112,233,85,114,125,38,203,113,209,55,97,164,103,161,96,35,65,112,200,52,33,71,32,106,176,82,26,10,56,137,19,64,135,176,251,36,76,76,4,129,44,46,160,101,6,158,122,242,200,196,133,221,230,114,221,31,43,233,186,174,6,80,135,
|
||||
36,141,215,171,59,205,216,238,4,52,11,88,168,224,1,121,206,45,171,56,116,138,53,237,222,224,124,138,73,228,112,209,161,145,241,81,131,152,1,128,131,240,240,141,203,3,103,150,193,140,240,41,79,229,110,32,101,230,188,74,134,177,86,100,218,14,217,90,81,105,173,136,154,153,117,226,39,193,237,85,19,154,8,95,40,98,98,169,77,155,115,149,155,15,253,115,61,101,22,136,169,50,197,60,113,233,168,73,47,252,167,32,223,181,37,99,233,82,131,254,110,119,161,72,135,133,211,92,208,50,161,242,120,125,108,54,125,200,81,153,192,15,216,0,198,219,228,32,196,86,240,98,126,1,48,93,172,47,15,31,146,55,208,78,90,142,146,167,3,235,62,165,235,60,154,151,51,144,235,71,140,132,12,231,68,6,117,216,194,84,70,43,5,183,236,179,85,75,46,60,211,80,175,138,50,229,21,123,74,61,26,101,184,122,59,124,74,37,12,53,18,205,213,50,27,46,173,134,102,109,165,109,165,50,162,155,228,165,3,108,5,112,169,105,21,36,233,105,186,27,56,204,188,182,36,54,
|
||||
74,38,97,245,2,136,235,173,233,203,178,99,61,195,226,238,75,254,141,128,147,179,248,110,73,112,164,238,182,3,92,142,1,177,42,146,142,7,137,121,61,60,50,120,112,180,59,103,214,153,143,215,54,234,169,214,35,97,98,147,15,20,111,138,11,157,172,60,49,14,9,50,44,213,97,134,148,211,249,144,60,228,197,171,20,23,228,209,137,88,64,46,238,238,104,204,106,12,106,178,74,250,34,19,249,250,232,14,212,171,73,142,98,76,163,43,61,61,97,206,27,22,131,40,140,194,210,140,181,107,105,152,187,128,52,113,10,75,113,249,16,99,136,20,0,5,122,42,32,156,35,8,51,103,30,24,47,130,234,208,244,233,177,104,138,175,128,128,10,160,197,161,88,146,106,160,147,53,94,112,231,73,31,128,55,80,82,156,118,104,242,100,125,42,168,43,36,14,45,184,0,186,101,205,27,111,252,52,221,131,99,124,198,178,11,24,23,54,35,8,224,12,194,15,99,119,129,59,112,164,13,101,0,64,54,226,178,23,71,162,238,54,167,0,204,22,221,190,18,86,104,246,161,228,88,117,
|
||||
139,42,131,36,51,176,124,69,212,178,1,68,31,54,91,230,7,59,113,190,122,0,152,29,88,28,69,66,6,233,146,157,88,245,230,48,219,197,180,92,183,65,85,203,93,14,21,162,12,81,5,86,249,148,238,35,230,39,227,59,171,140,91,22,28,183,12,200,28,80,180,176,82,58,157,99,97,13,1,213,232,115,196,43,17,229,144,41,217,245,112,119,132,199,238,66,78,62,45,221,55,42,229,43,196,242,16,89,68,164,8,139,96,53,125,133,191,217,158,251,183,56,244,213,58,133,169,225,187,224,179,5,213,188,129,0,220,235,91,148,0,239,29,10,146,141,131,93,153,167,209,140,174,56,23,253,160,114,0,172,114,127,162,109,34,73,230,71,35,119,86,235,40,74,174,154,33,234,100,160,35,41,163,81,234,5,101,38,84,108,111,239,167,14,205,132,90,234,161,60,152,153,59,113,197,215,181,168,120,43,128,109,184,11,5,140,126,168,181,187,96,112,70,74,186,81,136,127,56,97,76,150,187,140,161,189,232,165,250,219,1,71,176,243,14,43,199,226,27,222,130,225,40,83,137,115,
|
||||
246,208,242,194,74,155,218,209,33,133,104,162,31,59,211,214,160,53,152,140,214,30,102,12,125,138,123,190,170,32,199,33,9,243,130,61,235,182,143,61,221,1,199,220,5,152,10,249,168,136,239,88,38,242,233,106,48,20,61,193,144,103,233,98,138,216,2,114,15,237,4,223,196,155,4,30,47,29,86,193,245,113,63,32,22,32,220,208,160,87,54,192,43,97,244,107,43,60,181,170,119,153,78,68,245,188,78,83,202,114,108,18,114,52,177,156,22,208,61,219,13,134,120,72,86,163,180,6,126,32,177,1,227,72,4,136,118,22,41,34,58,39,71,205,4,1,152,101,243,150,133,178,78,173,67,64,194,136,139,25,13,77,51,197,187,120,45,49,42,119,118,163,142,73,59,204,4,94,31,109,250,106,45,138,192,239,129,117,172,219,14,61,216,162,51,240,138,54,128,71,138,184,117,195,2,127,122,103,48,143,90,24,216,248,78,73,192,10,44,232,232,238,126,11,0,54,92,152,18,0,77,51,16,161,247,149,35,182,38,27,161,233,7,117,64,141,131,241,104,79,175,69,52,111,232,216,
|
||||
77,66,165,123,161,41,32,216,208,231,164,214,136,107,243,88,143,137,48,0,61,148,31,195,128,207,240,30,198,21,242,178,185,130,220,116,252,18,134,130,105,235,17,99,160,124,16,213,171,76,218,183,18,61,153,33,34,140,143,73,32,234,40,42,139,20,170,179,89,187,203,81,199,79,52,128,142,38,39,137,54,122,142,238,88,60,61,58,45,179,149,10,71,144,96,190,17,43,155,173,21,170,54,82,230,31,114,28,149,117,235,174,108,48,55,152,213,237,217,225,188,179,13,68,55,5,247,198,121,27,92,85,145,243,96,229,176,99,152,28,40,202,39,165,149,29,49,176,159,171,201,72,130,242,100,179,122,32,97,103,112,29,181,127,63,131,152,215,201,212,153,57,223,221,138,196,103,165,227,251,141,49,187,17,117,15,55,198,196,86,212,190,58,20,51,149,185,142,146,218,145,41,41,50,106,120,58,14,103,160,44,32,148,124,235,196,82,206,102,110,4,141,25,77,68,9,77,100,200,5,238,99,50,236,232,174,81,239,94,196,27,179,251,160,97,123,55,3,220,113,169,2,47,214,184,58,
|
||||
56,107,141,17,28,204,65,13,204,202,4,72,9,45,2,216,105,197,163,48,125,196,197,234,214,132,55,86,58,61,175,14,101,193,96,2,65,80,21,214,97,117,48,32,63,136,248,99,134,17,179,234,167,112,17,173,188,171,150,240,121,245,4,163,198,91,6,62,236,106,152,235,192,175,63,50,122,147,8,124,48,236,70,216,208,53,105,196,239,66,246,27,90,19,149,16,3,49,213,106,7,74,45,240,70,224,8,227,205,3,116,144,26,65,196,30,32,152,64,158,36,147,252,122,212,184,46,120,171,134,93,162,3,114,195,28,109,5,56,24,159,155,163,77,145,176,7,54,12,4,240,83,177,110,150,161,136,96,61,156,39,36,98,115,192,105,0,40,127,208,242,177,129,2,104,228,220,217,32,113,216,70,160,12,128,237,174,192,22,92,97,166,168,25,212,34,127,151,117,122,135,97,66,147,216,168,74,19,11,46,140,13,196,218,237,172,187,1,164,99,119,124,196,139,15,19,209,117,164,60,8,142,75,172,54,239,88,143,79,175,144,229,145,11,27,50,153,1,132,206,129,39,82,135,21,116,
|
||||
246,46,74,229,14,61,96,91,34,48,28,49,171,212,206,113,244,235,236,3,88,79,214,120,229,135,18,1,198,43,198,175,56,168,107,143,58,216,88,152,165,82,134,176,159,141,218,251,173,78,38,19,88,156,139,234,106,54,172,78,194,19,138,23,231,14,186,47,66,87,143,123,138,105,84,222,201,220,245,180,226,113,161,121,51,166,184,122,217,212,212,81,179,177,46,163,66,106,82,59,148,21,30,66,119,62,160,18,72,231,174,204,109,146,35,233,165,74,31,8,201,66,44,185,235,171,111,103,135,112,234,149,233,193,184,42,220,44,153,146,40,69,154,66,228,253,181,155,30,35,79,244,210,97,177,96,126,236,167,204,27,166,178,18,243,120,27,91,242,22,76,229,12,78,133,78,241,73,99,5,59,198,10,88,81,206,165,20,79,107,122,67,12,197,192,57,131,7,68,21,205,52,165,219,30,64,178,54,211,205,0,166,29,168,207,60,156,146,104,158,223,84,207,244,184,245,16,235,136,141,199,86,32,138,192,116,81,29,94,160,44,158,241,192,56,24,39,139,34,102,136,241,236,21,182,14,
|
||||
67,16,47,184,22,163,170,166,166,99,35,77,124,221,119,99,5,229,176,4,37,135,85,245,11,100,142,35,250,144,77,46,23,206,90,1,40,135,46,136,207,221,97,209,6,11,21,29,112,183,184,142,141,229,165,3,142,40,249,107,172,77,114,138,48,13,81,17,230,174,197,176,145,198,41,22,47,195,11,57,145,38,122,164,150,5,171,110,208,71,228,225,161,251,2,1,0,199,213,120,135,103,227,38,113,83,132,17,140,72,142,48,210,218,68,20,76,38,86,41,147,120,124,131,53,28,134,173,146,117,41,104,100,116,79,4,10,176,142,136,72,58,253,161,144,196,234,23,42,72,134,195,34,14,79,192,47,157,141,123,81,129,165,191,62,103,77,75,117,78,98,224,18,130,201,96,188,235,170,130,106,201,58,119,236,244,100,100,230,64,200,143,139,115,125,28,167,75,63,74,44,43,80,254,156,237,91,138,13,34,73,220,39,140,222,122,9,25,210,25,3,201,9,250,20,39,183,16,90,125,69,26,20,171,17,232,53,8,168,43,184,108,85,226,4,74,236,214,35,20,245,34,70,22,66,226,
|
||||
212,90,6,126,59,224,81,204,44,161,148,1,203,68,109,45,170,162,230,222,53,41,169,112,38,216,165,66,108,71,46,31,219,169,141,31,164,50,229,84,117,112,169,156,61,74,74,202,11,203,218,214,175,203,79,136,110,252,84,158,212,176,134,99,88,207,64,188,244,49,187,25,117,237,192,239,38,112,59,130,181,182,136,151,220,220,216,103,58,185,67,47,57,111,96,213,15,37,52,228,38,194,169,57,106,184,194,201,53,18,23,235,218,52,99,132,220,153,26,193,81,2,57,90,100,132,11,7,226,219,156,105,6,59,80,119,206,110,30,137,254,48,155,134,45,178,215,85,91,12,145,89,57,161,108,242,136,216,168,95,211,185,69,73,3,114,227,97,179,122,81,175,127,131,94,75,251,156,226,99,23,118,101,100,176,207,88,38,173,54,118,13,94,110,155,245,229,82,144,98,23,6,85,8,225,226,198,12,177,213,144,253,153,42,169,166,227,208,138,65,191,97,215,173,172,27,173,73,235,33,140,43,215,132,153,237,124,6,239,231,208,77,33,225,76,71,100,89,181,118,173,134,160,217,64,70,
|
||||
49,111,244,36,144,38,53,25,76,4,32,122,56,57,64,105,234,216,58,6,134,86,28,250,30,197,34,238,21,92,173,60,95,99,211,145,165,57,203,30,88,153,221,193,77,201,128,130,131,132,52,152,137,239,162,40,7,120,189,83,226,193,90,36,44,56,234,80,72,61,180,103,180,61,124,11,132,106,76,146,169,160,143,204,243,214,196,28,40,27,158,155,36,121,55,249,68,221,21,92,10,17,126,238,41,223,195,24,201,66,10,167,216,10,107,42,27,110,53,40,26,114,128,30,183,62,188,219,229,35,227,230,195,149,15,103,183,165,249,99,126,70,60,239,180,44,62,147,77,126,84,145,56,59,235,84,91,76,215,153,86,182,211,83,28,234,177,234,124,160,155,206,28,57,238,177,199,215,60,106,80,69,91,239,90,182,240,200,110,183,41,89,38,149,90,14,147,85,140,102,195,201,249,197,71,203,169,68,250,192,199,221,140,208,97,40,114,64,113,197,50,16,103,214,156,154,12,38,133,248,212,103,215,97,114,115,183,131,122,57,127,108,169,168,247,78,205,226,42,188,134,53,139,108,117,15,
|
||||
114,114,75,96,171,115,51,46,196,113,133,194,172,93,77,172,123,126,120,182,212,230,57,194,13,8,118,116,216,174,200,59,71,7,66,39,8,38,156,176,0,169,132,247,156,71,135,178,14,120,210,13,226,112,232,120,52,53,174,79,17,176,136,65,12,144,184,144,102,137,9,134,172,198,157,102,193,149,187,228,187,167,41,42,35,75,64,98,227,106,105,188,131,1,18,208,241,94,148,103,105,47,253,136,151,239,13,31,104,215,46,244,88,163,1,35,128,135,250,252,93,26,116,122,1,55,249,228,205,213,152,6,154,94,140,17,76,190,149,248,112,146,179,104,9,156,71,109,106,98,94,91,122,187,118,161,122,166,101,115,11,113,34,76,208,95,169,60,134,135,35,176,218,176,82,183,14,176,4,238,161,206,57,161,16,193,204,139,94,117,192,69,72,184,15,45,200,28,62,211,141,110,212,124,151,158,11,175,25,188,19,86,196,133,78,6,253,198,251,106,190,137,110,143,82,64,30,46,171,139,222,51,79,120,215,224,35,168,121,86,182,39,25,61,155,103,69,155,46,145,105,31,184,133,87,103,
|
||||
37,62,136,50,209,67,54,64,217,11,247,156,144,109,120,227,83,128,0,110,106,88,209,204,169,155,84,20,146,67,80,27,39,30,64,221,234,201,250,73,54,147,52,131,164,197,146,155,139,191,19,75,213,199,20,225,149,32,100,79,77,38,243,108,106,241,152,196,98,155,37,75,183,57,8,220,32,168,24,97,27,153,70,61,146,47,218,36,134,164,50,242,136,164,71,167,201,86,165,226,40,95,244,57,13,210,197,69,56,167,204,222,151,43,187,187,191,252,202,158,174,216,29,197,242,89,20,7,132,205,157,29,104,244,49,2,115,11,181,169,131,201,138,232,37,223,246,143,164,103,142,162,123,110,223,244,244,155,169,105,51,85,169,150,32,63,171,33,138,77,251,29,181,98,113,82,135,116,64,9,210,170,132,28,177,65,29,212,73,172,117,97,225,50,144,125,230,137,255,62,239,169,152,216,94,125,56,232,96,221,142,93,119,150,190,111,45,154,176,153,113,253,170,52,80,176,166,48,141,92,97,91,0,97,27,231,60,128,113,111,17,102,30,232,178,208,197,25,220,169,241,212,147,193,128,74,
|
||||
25,116,60,59,41,32,213,103,73,65,145,89,112,97,15,69,231,64,50,204,49,161,0,84,15,6,202,161,133,75,88,194,67,12,246,36,220,97,200,240,30,36,99,6,21,14,252,19,129,145,200,27,135,49,26,234,121,35,163,80,10,118,215,123,255,130,93,45,245,21,230,93,211,195,191,225,217,57,3,240,137,238,132,55,94,49,189,29,69,194,116,71,124,87,56,24,162,164,163,84,61,51,58,152,211,182,71,55,210,10,60,172,221,253,13,84,53,7,168,253,124,8,113,101,137,194,76,53,67,191,201,176,68,244,101,51,130,97,63,88,58,36,225,184,76,104,239,118,249,125,45,238,80,96,164,45,110,105,3,241,248,97,52,234,194,208,52,212,152,101,82,44,217,23,80,146,154,201,141,107,124,88,52,46,197,143,5,109,199,158,227,248,182,94,79,128,66,97,124,162,119,160,173,168,250,179,124,20,6,50,242,39,197,164,90,10,62,115,65,205,210,4,193,115,210,60,159,12,96,4,6,197,120,191,18,202,33,219,54,36,68,177,100,14,241,205,68,50,123,106,199,112,50,183,177,230,
|
||||
177,121,184,152,42,89,230,145,243,46,240,104,240,241,96,227,48,239,190,168,183,13,82,222,66,6,129,153,156,114,225,26,158,71,10,175,85,135,169,217,64,181,53,249,203,242,171,6,85,182,114,4,68,226,135,105,97,121,119,76,98,115,227,0,236,104,11,245,74,108,214,180,1,100,232,23,125,118,91,215,162,92,177,58,221,37,253,202,31,27,135,91,80,251,234,186,165,228,88,91,87,112,192,90,56,35,55,221,221,108,136,183,134,224,125,49,106,118,161,21,180,15,117,35,215,20,243,216,124,24,215,43,182,249,225,234,158,215,33,47,207,193,71,86,137,127,33,133,98,57,248,118,59,43,47,241,218,85,28,219,227,154,151,186,137,141,167,200,228,58,49,215,118,116,195,170,19,231,252,237,43,113,75,115,34,133,114,155,29,112,202,24,201,36,99,25,24,114,215,133,179,133,199,226,93,211,91,141,248,16,231,50,167,231,210,223,155,219,89,78,207,41,148,177,217,156,31,152,16,252,228,61,39,154,168,28,26,220,103,57,32,184,160,50,222,80,93,247,247,22,71,111,66,16,43,173,
|
||||
171,83,10,34,82,2,5,138,252,222,81,188,178,235,154,183,135,115,56,238,169,99,221,156,110,175,54,198,246,131,60,13,111,122,52,199,213,230,236,4,24,96,99,134,110,155,194,222,54,86,143,88,130,229,24,132,224,3,30,61,134,165,97,238,68,19,19,1,124,28,157,34,250,116,199,82,168,80,227,211,197,156,196,196,205,21,60,4,26,2,78,148,120,151,25,55,132,146,213,77,49,130,120,139,246,153,215,78,216,8,200,104,210,186,0,185,12,232,243,40,43,164,73,182,144,244,61,66,109,85,89,26,15,64,210,102,75,247,141,177,206,245,220,95,28,161,205,188,166,14,10,33,161,45,129,64,157,138,159,120,207,143,233,112,40,32,162,58,134,39,174,73,240,107,232,6,59,233,68,143,14,90,88,150,52,176,38,152,176,185,35,96,219,133,232,56,55,187,134,207,183,9,72,103,84,181,29,53,77,17,148,241,41,143,23,191,104,154,44,183,91,160,176,119,237,224,186,157,48,20,242,193,17,202,61,210,193,166,33,68,194,18,166,92,89,211,100,181,185,152,27,175,219,115,79,70,
|
||||
208,236,156,50,38,24,241,248,148,97,114,210,188,30,114,28,49,240,192,30,156,11,15,76,97,93,170,239,239,157,189,252,25,206,184,133,101,193,208,216,38,30,88,43,166,40,114,26,203,112,146,220,97,226,1,215,100,185,233,200,208,167,26,105,4,161,185,247,49,65,109,217,44,63,30,248,207,109,233,154,227,224,208,146,108,135,8,209,67,59,169,156,24,222,42,32,78,38,224,166,50,44,228,92,78,187,101,165,7,73,5,120,110,172,41,71,92,86,160,182,18,147,125,157,116,147,200,153,108,189,192,197,103,194,6,118,102,214,79,231,82,189,120,87,144,171,8,250,108,203,132,164,105,218,157,187,58,15,66,4,76,236,101,202,211,189,3,249,45,108,210,129,195,231,69,87,1,57,110,137,166,49,151,77,119,39,240,204,68,113,166,74,227,207,120,235,140,115,34,232,195,18,215,254,41,119,114,96,115,92,88,42,169,204,145,212,255,8,236,83,14,55,177,43,223,46,241,159,181,57,156,222,96,27,183,193,253,57,111,94,81,140,247,72,38,232,242,62,13,108,228,253,128,115,106,60,
|
||||
199,201,56,105,197,254,164,212,73,95,2,228,39,9,149,182,22,95,28,176,105,199,32,156,133,235,6,78,50,37,104,15,9,61,184,199,192,22,209,38,92,56,226,166,76,118,161,82,252,176,48,112,170,103,16,210,128,67,35,235,234,133,68,52,106,192,140,75,78,123,61,154,158,98,7,225,98,114,10,179,156,115,81,119,102,53,73,138,63,87,167,225,160,1,0,2,24,199,189,208,170,155,20,115,77,8,2,77,61,237,101,9,218,228,13,160,101,117,132,138,7,253,0,187,122,100,21,88,15,30,207,77,227,6,140,64,67,222,192,70,158,86,107,184,114,28,179,57,245,148,96,85,92,225,113,243,145,42,185,225,115,3,53,103,101,57,92,80,250,205,171,212,20,212,108,110,182,36,108,99,56,156,16,148,243,228,90,114,176,114,0,25,38,10,176,50,11,230,200,79,255,74,224,130,204,66,60,153,102,26,171,155,153,183,182,18,254,174,204,208,6,99,215,199,30,118,38,13,227,223,221,141,25,10,105,147,104,45,104,106,50,164,68,6,59,145,153,215,2,86,233,190,149,14,193,206,
|
||||
43,185,115,205,100,214,227,25,204,197,188,208,77,30,101,220,129,12,162,116,62,57,34,44,91,0,225,230,24,62,168,88,132,22,80,15,229,32,134,33,6,42,51,34,53,141,121,254,51,82,20,217,61,85,66,248,135,85,154,162,222,5,103,151,60,231,133,188,157,159,207,156,75,189,172,125,234,189,7,75,78,67,210,221,53,61,68,97,43,45,252,86,176,127,161,159,194,30,172,199,165,131,242,37,135,214,40,110,61,59,227,149,65,141,229,154,235,89,156,164,93,18,143,36,225,207,226,233,121,58,209,124,4,17,185,57,90,190,71,104,140,15,157,160,20,8,66,169,204,80,219,252,252,177,193,79,231,177,203,73,117,163,63,147,13,79,47,237,26,239,68,189,228,156,61,58,242,231,36,50,121,92,31,55,137,126,77,107,165,239,113,35,254,137,59,158,113,92,213,241,128,123,140,217,65,153,144,36,5,210,136,187,1,5,60,142,44,105,30,54,231,169,182,91,92,77,18,180,175,157,233,233,117,134,46,33,209,72,254,204,144,189,158,92,115,248,103,234,52,204,200,13,38,253,242,40,
|
||||
91,94,25,143,202,209,12,128,121,121,60,3,131,206,164,93,191,18,25,170,62,220,179,134,58,223,73,187,28,0,184,239,145,66,203,73,249,6,238,31,18,175,251,233,188,216,67,34,114,248,174,62,192,42,187,79,164,249,61,247,4,136,144,99,72,210,53,30,127,183,210,19,165,199,109,239,69,195,25,28,88,211,186,203,38,136,2,93,136,61,185,52,239,210,68,140,158,103,24,213,172,24,158,59,94,38,60,102,51,124,10,90,216,147,132,46,44,193,118,71,147,198,152,157,37,214,28,196,221,46,168,93,29,224,216,224,9,157,144,126,154,155,23,215,54,218,122,209,40,120,206,162,85,23,183,173,235,234,4,62,156,5,180,181,44,241,182,203,53,93,146,116,105,15,50,20,144,186,80,27,216,115,147,170,118,177,93,226,67,89,22,196,159,106,43,113,13,220,213,133,227,97,99,127,196,55,2,171,177,185,111,204,40,37,83,186,110,17,151,20,166,133,1,31,148,202,140,110,84,173,243,122,133,137,206,121,90,124,122,61,10,240,29,78,39,54,27,35,157,225,26,37,80,217,210,36,
|
||||
185,240,27,163,133,155,49,111,118,35,116,60,136,149,253,113,117,156,89,22,125,130,50,158,83,223,156,77,31,107,23,136,251,243,35,182,66,97,26,180,142,29,1,112,170,125,114,41,237,229,10,92,88,8,22,232,40,160,133,117,226,66,117,93,186,224,201,9,2,181,141,113,124,139,63,83,60,250,14,90,182,72,136,123,137,107,211,157,77,38,169,5,74,235,61,241,153,190,155,133,159,4,163,236,251,44,118,133,12,149,44,209,243,104,197,120,153,28,217,75,142,64,120,152,186,44,139,135,110,218,244,132,161,177,229,178,7,114,200,125,40,133,20,132,29,118,148,202,32,72,147,59,164,128,207,43,59,70,146,74,61,173,19,173,179,232,60,29,199,3,11,126,218,34,147,39,246,154,6,165,91,32,172,134,184,161,216,214,225,110,85,155,124,193,15,153,243,70,99,207,244,97,113,96,155,122,67,17,133,121,220,79,77,218,182,28,241,120,231,9,105,64,167,181,32,196,74,30,175,228,70,85,67,62,210,107,197,80,182,15,112,135,150,212,130,142,198,194,36,209,19,93,8,12,74,179,
|
||||
197,206,245,36,8,59,208,73,220,96,98,127,152,190,193,102,50,141,56,44,192,230,203,128,117,15,7,144,49,198,80,41,100,164,233,158,90,151,211,56,40,33,87,195,225,220,81,92,185,187,54,93,17,160,71,75,117,41,99,165,157,220,153,153,1,90,93,88,57,184,87,80,78,224,212,252,6,157,22,211,111,73,245,35,185,182,52,5,101,201,206,53,233,210,20,182,110,45,110,16,248,132,44,88,79,167,58,25,89,49,87,201,13,7,234,162,206,70,74,199,200,103,12,28,242,108,48,24,108,182,197,173,161,192,57,45,201,131,118,62,88,199,182,95,219,231,86,235,21,252,145,11,191,121,196,209,125,124,34,119,0,246,98,161,100,120,204,155,144,133,28,231,27,195,93,222,32,200,183,211,24,121,214,55,213,208,195,91,31,25,128,2,118,83,112,134,12,37,152,46,150,163,43,182,61,221,192,101,182,190,220,168,166,54,61,208,15,175,186,196,177,129,118,72,14,187,116,61,40,209,97,164,185,87,146,131,203,235,251,212,88,173,183,153,229,116,121,55,63,62,140,47,29,222,10,99,
|
||||
70,180,129,56,247,82,177,185,40,56,137,31,43,233,148,41,247,246,64,210,184,181,203,239,125,48,49,50,231,209,164,1,99,47,163,62,112,120,20,166,96,89,55,53,22,92,247,109,184,131,13,82,42,66,1,201,152,137,66,94,144,5,158,120,241,52,122,95,136,76,40,179,107,235,97,48,141,59,200,149,138,60,109,161,97,177,186,92,74,185,163,133,168,136,98,186,99,11,54,169,170,121,79,209,237,40,209,41,207,60,0,11,100,156,180,126,2,110,117,174,47,120,35,200,61,187,109,44,166,245,133,62,25,121,120,127,124,35,184,124,196,47,204,60,139,109,230,34,154,107,50,155,113,34,129,150,70,186,32,236,48,147,12,31,228,174,242,165,164,213,126,225,53,175,224,26,68,36,19,114,221,154,81,50,130,100,188,188,150,9,119,237,156,142,214,166,110,65,197,36,198,78,106,177,119,69,7,212,216,220,217,51,204,113,135,190,80,119,32,144,75,160,110,202,156,106,110,128,78,130,110,197,191,151,243,13,161,226,174,69,183,246,9,147,13,138,161,177,132,84,243,222,86,127,3,72,
|
||||
83,143,164,201,170,180,198,29,37,201,249,18,169,79,49,15,235,227,7,135,253,138,118,35,73,170,231,114,229,249,128,212,10,215,167,246,18,179,114,33,14,165,231,87,23,100,46,11,237,5,77,32,157,248,177,158,231,174,40,179,138,117,55,19,205,93,186,97,62,35,51,122,1,118,111,119,193,239,71,193,122,7,5,59,220,43,112,171,172,101,185,191,244,72,120,144,98,70,153,227,170,150,33,56,101,184,74,130,251,73,84,4,153,138,91,177,14,60,36,92,220,197,49,11,113,154,84,215,30,85,4,103,218,102,119,179,225,95,194,216,228,168,88,1,107,37,128,108,204,34,33,67,209,54,151,232,82,109,146,242,177,238,201,226,21,57,124,119,234,56,161,94,221,160,238,97,3,249,17,142,104,205,85,70,90,251,99,55,218,63,85,180,200,122,179,97,123,158,187,123,40,154,172,17,245,137,241,124,210,141,213,68,217,81,245,17,120,227,16,97,57,102,71,8,60,157,37,235,80,145,80,118,50,6,123,199,146,98,117,90,193,222,118,212,32,4,40,239,245,41,73,84,121,154,8,161,
|
||||
18,30,87,143,189,91,14,179,103,166,32,136,100,230,9,135,47,61,1,161,206,148,9,5,207,69,115,113,100,97,133,88,179,162,142,111,250,179,122,251,126,28,188,212,155,173,218,161,189,48,55,24,252,198,28,187,35,187,160,230,182,232,249,250,177,53,27,105,88,5,198,56,62,34,90,133,20,92,167,192,157,104,82,186,77,254,246,46,206,39,75,187,12,73,41,3,193,181,219,109,62,25,52,95,226,9,80,89,94,149,153,65,103,137,53,124,229,149,199,217,149,19,137,181,102,233,37,58,168,141,148,150,214,21,206,2,150,96,29,12,22,199,64,34,183,220,18,233,170,140,130,36,229,6,24,15,67,243,60,0,180,5,116,186,181,145,219,28,31,42,161,31,159,147,22,244,225,169,0,198,166,34,53,158,73,152,161,15,242,206,8,240,121,142,216,148,245,72,50,107,190,96,226,146,227,96,119,33,147,191,159,134,78,115,88,27,20,131,73,121,6,2,16,219,41,35,25,214,72,177,228,132,37,74,250,86,2,167,118,65,19,15,15,2,133,17,116,214,109,97,26,119,22,155,234,22,
|
||||
140,190,53,3,71,171,12,1,231,6,232,207,174,227,181,75,243,85,90,224,174,57,114,97,114,152,32,74,211,19,193,222,221,113,224,98,62,235,220,105,162,202,22,172,51,109,42,244,12,69,177,90,66,167,189,168,73,49,120,167,0,100,35,69,57,253,186,39,176,183,201,62,234,201,9,189,157,167,158,94,187,210,167,183,202,66,47,11,112,18,155,212,67,28,63,169,109,47,192,75,100,229,68,62,193,95,9,226,11,254,173,181,112,98,187,162,52,112,156,219,5,181,182,10,47,91,27,161,227,12,23,11,177,23,92,75,39,118,218,187,39,64,91,24,189,93,11,20,221,132,187,26,131,8,78,188,177,248,88,27,199,208,104,187,34,103,131,42,110,67,181,9,65,177,40,26,28,220,134,116,48,220,252,84,185,48,156,136,180,135,75,115,46,129,117,198,209,21,92,59,211,92,111,83,14,203,153,111,208,16,64,106,15,138,36,140,140,3,123,147,116,10,188,9,78,134,64,203,112,226,228,166,211,183,104,161,49,186,86,161,22,94,149,203,236,213,213,102,157,187,224,108,237,7,150,197,
|
||||
68,235,160,43,19,232,197,245,2,161,216,114,133,100,17,232,214,11,107,146,41,87,203,252,177,24,134,183,80,234,49,146,236,128,120,113,58,204,84,185,167,48,74,41,96,119,198,210,200,203,43,22,17,60,53,74,212,124,214,130,24,7,145,28,225,203,121,245,118,110,60,108,117,178,225,148,179,47,29,7,186,89,77,128,47,47,149,106,195,83,185,215,149,230,205,106,161,32,180,236,239,93,142,248,16,118,36,191,76,88,37,180,184,79,28,147,155,50,240,43,173,53,97,246,105,206,59,138,242,165,227,48,4,141,136,139,30,25,12,10,194,185,41,56,55,216,61,148,121,36,160,68,145,124,125,8,23,98,98,122,181,32,172,87,36,147,10,22,142,238,69,102,109,50,183,94,30,129,186,232,115,40,14,209,241,247,53,35,42,155,167,29,179,17,13,165,152,95,58,185,24,233,91,101,5,163,122,135,41,53,59,164,199,203,154,189,93,155,145,107,55,105,172,237,132,110,193,181,209,73,122,22,67,95,62,34,200,162,217,156,17,116,10,15,211,202,150,215,229,236,6,228,162,173,92,38,
|
||||
207,137,35,50,151,198,45,174,64,213,102,142,65,222,189,11,16,24,247,36,253,82,22,58,42,135,114,12,126,91,213,45,229,171,66,226,131,84,121,65,12,74,43,197,89,250,154,2,99,186,145,242,44,250,164,221,61,176,94,230,26,28,230,178,235,128,70,118,53,65,219,27,25,176,177,14,202,199,101,77,68,57,229,172,158,165,72,150,43,196,157,156,18,91,241,98,116,162,190,68,27,11,187,195,106,97,83,15,179,131,161,240,67,193,28,67,4,172,236,99,111,69,25,184,149,21,77,124,80,226,22,124,43,100,83,98,121,132,121,147,184,61,39,51,197,94,233,181,119,91,116,217,143,164,60,51,92,42,29,73,207,231,23,193,180,208,165,112,18,232,17,132,183,117,78,211,200,224,145,91,247,4,226,90,85,102,235,241,90,62,154,46,152,135,240,11,116,206,120,118,25,179,16,37,102,55,1,158,191,99,210,226,167,139,156,41,12,151,41,167,35,115,203,76,84,139,102,52,129,210,233,135,40,96,242,230,245,165,167,122,39,66,132,82,65,152,5,68,23,171,249,96,76,119,126,241,
|
||||
54,1,12,73,113,54,150,119,94,167,155,75,14,197,32,180,69,148,37,110,33,133,173,138,144,76,121,104,252,140,62,45,206,241,148,252,241,73,95,231,46,244,174,240,193,217,12,177,74,182,238,36,142,192,1,99,234,107,119,212,210,153,142,52,37,58,19,226,67,159,21,24,111,55,227,215,138,146,116,119,159,85,8,219,113,4,191,219,241,178,146,18,143,218,208,208,99,185,19,159,112,68,201,169,151,146,13,200,59,119,165,44,120,243,56,128,96,219,75,77,57,81,84,197,55,28,152,230,18,3,106,158,113,101,183,22,105,24,58,8,28,149,110,171,155,180,176,20,80,29,212,35,121,235,97,245,212,176,150,226,171,250,139,20,249,84,39,40,245,35,12,171,207,92,200,148,206,85,237,196,25,66,67,42,150,53,233,25,74,223,238,139,219,50,124,95,122,176,129,216,175,248,129,114,111,217,43,93,37,20,208,101,7,16,161,121,111,3,104,117,46,119,115,121,28,234,128,170,62,139,38,47,61,63,77,137,123,145,88,174,215,90,66,232,230,60,169,193,156,232,48,253,243,2,255,254,
|
||||
194,122,3,47,61,106,212,141,113,163,83,181,86,154,167,183,209,20,52,171,209,13,245,160,164,79,178,98,93,158,111,170,45,134,57,113,155,41,129,205,101,61,106,218,244,146,8,242,51,85,134,66,27,29,52,78,41,134,0,88,28,1,36,229,24,115,59,33,210,82,250,161,140,82,95,153,48,123,198,226,117,226,210,213,179,199,133,129,13,79,110,206,194,67,240,227,113,202,171,35,81,163,132,227,118,59,114,46,50,38,141,103,149,203,245,114,177,93,228,174,182,195,214,184,209,184,58,189,183,24,107,190,107,185,194,119,253,168,6,19,239,2,172,64,92,53,212,137,78,138,156,227,90,72,233,188,156,186,59,213,109,56,85,239,229,29,210,16,172,238,63,161,50,80,185,129,23,135,25,94,8,107,195,54,142,144,20,118,173,130,221,197,96,151,195,84,44,248,140,21,230,38,18,181,193,193,186,143,49,212,142,169,38,142,36,81,192,250,49,130,94,129,155,188,57,150,79,136,122,135,239,32,68,142,123,78,193,124,184,114,198,24,78,186,32,18,122,156,115,71,47,101,15,17,215,20,
|
||||
97,145,171,129,14,117,138,137,165,221,15,166,4,164,236,160,32,233,106,202,104,105,30,104,7,140,232,238,74,165,169,156,172,26,125,171,214,73,247,35,33,33,47,181,150,231,218,134,84,68,237,190,42,170,54,237,233,33,16,221,174,216,244,38,40,109,72,119,31,230,25,180,197,29,25,117,158,206,7,156,146,147,122,4,38,184,105,209,213,227,69,195,210,137,80,200,237,9,23,176,205,149,123,34,119,144,133,198,241,31,52,173,62,130,43,142,234,214,113,79,188,215,202,246,96,155,60,62,214,29,221,30,104,218,248,172,0,212,105,212,172,240,65,96,64,108,134,31,196,70,177,63,81,135,133,18,78,133,27,172,170,76,188,142,153,11,33,61,239,197,59,231,81,176,185,173,73,176,49,68,235,217,189,98,23,77,90,9,221,170,189,40,192,45,10,184,227,28,27,9,219,245,172,115,16,0,11,123,92,99,91,134,149,127,218,142,4,185,35,182,179,174,72,51,141,53,19,173,146,245,22,142,207,20,201,105,31,80,235,67,77,114,20,167,61,135,246,194,163,171,107,175,232,14,243,176,
|
||||
232,175,237,24,231,49,153,156,203,59,138,210,42,136,119,148,190,43,6,185,138,121,18,169,227,139,240,97,6,157,47,197,239,2,185,130,116,174,202,155,229,234,81,20,14,135,137,204,161,228,238,142,89,54,222,230,231,135,112,134,23,220,27,197,225,234,187,7,144,132,24,44,161,192,138,22,176,2,86,10,172,120,115,136,207,42,120,197,155,214,67,34,136,231,186,39,146,134,32,196,208,81,183,110,144,171,190,142,171,216,88,63,140,224,38,93,90,121,171,192,18,7,180,138,231,209,104,89,197,73,98,160,206,148,228,252,208,44,106,45,144,138,248,140,199,7,69,53,36,88,59,242,232,19,67,93,96,193,84,181,225,17,57,147,10,215,146,226,40,78,41,58,229,157,17,106,43,144,233,33,114,91,143,77,222,91,211,89,136,82,0,150,156,20,142,244,21,100,225,230,98,118,244,56,59,86,137,8,20,45,138,189,168,201,147,101,63,123,217,134,154,189,33,153,7,82,10,101,175,177,84,56,68,29,153,19,0,6,156,32,207,42,181,64,109,148,46,77,198,162,186,201,13,254,1,69,
|
||||
49,213,112,218,69,195,230,163,55,248,41,161,25,165,178,84,164,30,71,145,138,81,183,82,60,253,212,144,185,60,73,221,140,53,106,170,137,164,69,194,144,109,20,126,117,235,93,82,24,120,148,202,197,70,230,250,8,11,232,50,180,180,76,67,14,13,132,64,203,69,133,151,99,111,229,198,24,245,242,242,241,160,127,170,146,195,2,183,6,249,161,139,53,13,175,184,178,164,138,60,62,173,106,227,71,254,25,191,148,244,103,130,131,206,99,86,2,189,66,199,224,35,153,36,116,216,198,139,66,4,128,212,4,223,101,106,149,36,183,75,75,68,33,56,86,0,19,9,164,17,149,211,19,173,251,249,233,246,144,130,135,51,227,22,156,245,56,75,62,45,247,37,8,78,78,34,7,33,243,133,8,77,124,147,78,83,171,133,3,60,80,213,143,244,99,167,167,91,162,181,97,3,61,14,140,144,71,148,10,237,13,204,26,13,64,11,24,149,154,226,154,237,45,222,0,190,161,141,144,34,69,122,147,171,84,117,168,32,214,140,88,29,109,138,248,214,161,41,64,197,65,183,135,168,98,134,
|
||||
36,133,143,176,98,236,189,123,225,19,226,25,3,82,207,6,118,67,29,203,224,132,32,15,162,188,194,147,251,45,164,136,128,58,228,153,60,48,53,233,117,69,22,201,121,179,223,214,8,76,45,181,54,51,13,234,111,101,210,36,62,18,207,38,58,13,224,220,141,180,42,216,28,133,120,208,212,24,161,20,137,154,228,11,40,2,244,251,219,73,201,123,23,144,235,68,14,117,133,1,49,162,198,203,187,138,146,26,97,10,167,157,194,28,3,180,35,186,133,154,146,148,124,164,155,107,86,176,106,57,200,150,164,85,210,128,187,170,46,129,85,24,93,5,200,224,200,144,115,0,173,16,108,55,218,162,53,91,3,214,251,214,67,26,104,172,185,47,199,44,129,185,246,198,166,58,113,52,203,7,88,90,180,115,106,164,161,89,35,42,233,78,31,156,228,138,224,172,173,173,107,140,32,132,144,212,116,90,27,19,174,53,7,88,249,85,128,115,205,174,139,231,210,64,21,74,23,48,112,85,179,218,156,62,81,24,47,203,70,149,203,162,121,132,163,129,165,185,188,183,128,10,44,200,52,234,
|
||||
40,121,93,182,233,56,66,136,157,219,63,77,163,123,244,154,108,61,145,7,175,37,81,254,180,168,40,195,142,97,32,66,117,132,37,145,185,160,150,115,100,169,114,209,28,88,33,162,128,75,88,171,54,191,115,66,141,204,87,118,68,5,1,238,103,171,151,204,164,144,123,89,183,35,83,60,172,42,211,230,91,201,67,167,213,158,100,202,238,213,193,34,249,188,61,164,171,69,106,130,87,175,108,100,187,252,50,168,90,169,48,140,198,199,243,105,175,209,190,171,243,239,228,57,142,215,92,182,155,13,44,182,62,188,152,225,37,109,7,155,11,79,31,100,70,140,71,65,168,68,174,84,237,37,167,177,25,30,20,123,51,87,122,166,24,73,188,188,208,249,233,105,134,159,241,207,121,158,81,202,57,125,80,18,17,66,158,33,67,222,120,90,232,116,254,232,52,125,56,212,197,218,153,19,169,187,85,197,31,247,4,199,116,187,2,167,207,179,15,211,124,59,100,136,76,165,121,156,72,38,24,9,173,210,118,148,243,22,14,49,160,139,134,11,235,120,85,63,58,187,49,229,46,9,215,153,
|
||||
176,95,57,55,200,45,99,189,92,139,177,222,168,180,135,8,76,75,108,185,142,70,14,58,93,250,60,124,99,90,246,203,49,244,69,202,124,195,33,222,204,233,195,149,217,31,52,151,156,12,190,55,27,153,28,27,215,37,250,146,50,211,90,72,199,124,188,68,209,7,113,202,52,148,82,59,177,30,105,175,134,7,106,207,24,195,190,208,174,156,200,195,197,232,42,159,42,75,123,23,101,13,43,120,133,44,99,183,13,182,108,24,156,234,144,99,173,170,191,234,80,114,165,163,102,236,146,140,226,74,141,226,174,146,56,212,87,146,26,200,109,177,144,3,88,74,113,36,237,180,239,229,166,14,194,94,107,225,8,171,162,186,202,233,51,47,13,22,170,187,65,209,148,39,112,137,112,231,230,227,174,16,45,74,197,214,73,173,122,6,156,150,109,71,145,140,25,62,170,40,240,243,181,205,138,75,140,82,247,119,8,178,109,140,136,180,196,74,73,5,49,76,243,240,230,128,133,0,107,186,137,58,112,219,159,92,144,220,92,252,65,22,3,55,242,40,69,175,88,69,36,21,226,176,78,27,
|
||||
121,137,95,56,36,69,249,128,106,32,2,163,170,5,206,238,134,95,166,172,220,132,170,155,190,103,205,58,209,83,142,37,202,88,50,110,110,3,167,216,85,137,121,207,28,35,36,73,169,220,110,181,62,206,98,22,250,150,153,187,137,245,34,52,63,210,118,62,130,149,203,0,48,33,219,146,182,75,203,168,33,123,203,207,6,218,178,88,137,220,50,248,56,71,164,71,165,200,132,221,222,118,10,158,155,194,236,98,56,217,132,241,76,113,195,184,206,172,239,245,174,204,44,168,87,122,92,134,84,9,217,193,215,185,98,39,118,11,66,130,33,32,52,200,181,153,197,217,240,115,30,184,235,153,114,193,12,188,6,151,1,178,152,119,221,1,152,5,202,0,105,44,102,119,12,102,193,185,143,72,243,209,131,148,118,194,131,121,250,110,44,204,44,61,216,141,142,220,86,44,248,106,246,208,148,157,242,235,48,168,29,194,194,35,210,48,119,5,242,104,66,154,161,51,33,176,231,63,194,27,171,23,60,255,6,144,1,226,231,238,35,172,123,51,179,137,49,221,220,12,108,195,88,17,139,68,
|
||||
105,39,181,126,225,68,247,221,111,245,184,92,16,85,76,188,0,136,105,59,3,214,107,35,207,238,63,216,17,122,170,19,35,239,237,136,224,169,62,141,74,101,235,78,252,198,141,173,193,12,179,157,58,107,53,132,133,235,246,192,172,26,246,17,101,62,202,23,225,8,51,107,70,29,217,4,42,61,113,100,234,42,121,245,135,235,142,168,62,176,231,175,2,67,103,54,182,13,84,85,103,248,27,32,78,193,222,113,223,242,170,59,158,79,44,201,59,158,111,89,238,120,62,177,36,238,120,62,177,60,151,230,139,8,51,94,74,59,48,191,29,213,240,210,167,209,53,224,73,14,101,100,3,236,116,127,26,1,70,182,183,35,245,147,240,157,108,210,147,240,157,236,244,147,240,157,236,249,147,240,157,236,237,147,240,157,108,194,147,240,255,9,231,193,195,121,117,206,206,38,50,48,126,45,198,130,241,80,247,140,103,193,187,225,198,2,172,237,196,98,174,28,149,170,64,137,194,115,6,168,25,102,4,86,69,165,196,209,165,24,91,55,73,171,90,81,189,39,198,210,235,205,133,224,246,236,
|
||||
44,165,187,114,85,208,126,59,106,182,162,62,82,5,69,106,93,4,136,146,88,218,233,21,25,78,133,92,251,174,115,15,37,106,229,113,35,233,117,184,245,3,158,133,135,23,52,174,32,27,149,254,154,243,128,124,188,216,226,122,254,53,245,150,115,124,125,198,125,114,132,230,8,164,180,79,184,92,27,92,129,87,58,64,188,51,22,182,75,1,219,114,220,139,10,109,187,109,225,64,65,60,7,99,72,186,55,110,31,144,91,199,45,245,61,112,115,51,7,13,139,247,40,219,182,136,88,220,155,158,220,131,62,71,10,188,103,149,130,55,191,149,108,120,103,26,237,33,199,137,52,4,220,112,222,163,106,135,246,147,235,166,119,190,251,228,186,8,32,222,29,112,164,97,240,167,197,63,240,107,188,27,248,180,184,91,227,129,119,224,236,62,158,152,128,87,212,211,230,201,142,78,61,62,135,181,176,187,147,74,225,217,221,172,162,64,133,196,206,86,119,74,10,188,109,67,237,38,104,54,147,198,113,22,230,110,144,40,203,78,220,72,109,83,211,76,103,103,19,216,125,101,49,209,87,30,
|
||||
111,81,137,169,116,61,93,12,131,224,60,222,237,192,123,32,181,83,12,172,134,241,95,109,252,77,107,206,185,179,145,94,240,64,133,13,139,87,20,246,40,226,217,16,120,76,48,158,3,59,115,115,33,51,243,128,67,112,195,21,139,225,131,204,14,159,3,215,130,157,102,103,36,135,18,123,113,181,57,4,61,184,224,60,127,208,8,44,112,169,219,49,131,101,19,60,48,169,156,117,111,10,170,60,18,159,54,158,99,207,86,162,123,219,164,99,176,14,31,194,246,7,209,227,182,194,228,131,241,130,209,112,208,21,129,241,192,17,159,244,132,9,243,106,116,30,71,224,221,96,248,59,4,190,196,1,238,126,55,225,254,114,226,221,231,159,220,55,120,55,189,101,8,183,208,227,190,177,254,141,15,127,252,250,95,127,127,239,233,241,191,127,255,95,125,251,237,224,47,191,255,226,187,223,255,222,143,158,125,254,201,203,207,254,246,229,139,151,175,62,250,224,163,111,126,111,183,248,227,159,254,228,237,251,79,246,222,62,62,252,233,143,255,124,239,43,219,62,252,224,155,239,200,247,126,180,
|
||||
255,230,139,87,159,191,222,123,182,247,234,237,242,222,199,79,235,223,249,58,97,127,245,253,239,253,199,253,55,63,218,255,248,205,71,31,124,252,242,243,215,111,246,254,254,179,103,63,223,255,232,27,31,125,235,221,235,219,165,111,252,78,129,183,171,63,121,183,233,173,2,239,169,63,252,224,199,127,253,193,119,191,243,221,239,252,229,95,253,213,55,247,222,146,238,150,127,111,255,87,183,124,244,141,39,242,191,254,215,123,47,95,61,255,249,135,223,218,251,122,242,39,214,63,121,171,195,135,63,253,232,27,111,247,191,250,240,15,143,249,250,139,159,61,127,146,176,247,201,254,139,231,159,61,127,179,255,201,222,207,126,251,150,108,239,199,255,234,219,239,168,246,222,60,251,199,253,207,247,62,125,181,195,227,253,228,91,209,127,4,150,255,252,252,55,251,47,254,0,151,231,159,191,121,247,241,14,147,175,215,251,63,254,187,191,217,233,189,251,220,233,253,231,239,96,122,203,237,195,175,114,251,242,72,207,63,251,125,4,118,236,223,195,243,155,127,113,229,183,191,3,98,199,252,245,222,
|
||||
155,95,236,191,179,243,222,203,79,119,144,252,242,73,218,110,247,222,59,96,222,159,248,73,210,211,228,199,47,95,190,250,228,249,231,207,222,236,191,254,114,233,173,160,119,195,223,190,3,101,199,249,31,126,241,252,245,151,172,94,239,189,218,127,246,201,71,223,126,249,249,139,223,190,7,237,61,90,95,15,219,219,35,254,187,47,62,253,116,255,213,215,192,246,71,49,250,10,233,255,135,49,218,251,90,144,62,123,249,201,243,79,159,63,251,217,139,253,127,238,89,95,2,244,247,175,255,235,179,23,207,63,249,127,225,86,63,123,249,242,197,219,88,123,79,250,255,40,214,254,103,225,246,101,144,189,121,245,197,254,222,243,79,191,30,149,189,93,154,249,39,96,246,158,189,218,109,253,252,245,243,79,246,223,41,243,85,100,255,4,40,127,220,105,254,56,40,239,17,120,71,253,30,135,119,47,255,191,64,227,221,99,239,191,253,183,191,248,238,238,231,175,255,98,239,199,175,191,251,253,189,221,9,127,184,115,219,87,123,159,126,241,249,199,111,158,239,140,253,225,135,255,227,127,124,77,
|
||||
212,253,221,111,118,191,251,31,127,241,230,201,245,62,250,224,191,188,121,245,252,243,159,255,46,216,222,189,254,100,239,221,243,203,204,253,207,104,222,34,248,135,251,118,154,238,255,230,205,31,198,209,47,95,189,252,249,171,103,159,237,198,207,222,236,253,250,249,139,23,123,47,127,185,203,175,187,188,251,201,254,167,207,190,120,241,230,237,174,79,159,191,216,65,243,235,231,111,126,241,196,101,127,7,195,203,207,191,4,224,137,237,91,0,190,251,14,128,221,227,219,255,253,199,255,219,222,223,253,230,217,103,191,124,177,255,189,15,223,79,238,166,190,253,223,127,95,219,15,62,250,179,95,188,249,236,197,71,127,182,43,37,223,254,183,123,31,253,217,127,120,254,106,255,211,151,191,249,206,254,111,246,63,250,179,15,255,229,164,254,239,95,61,255,213,254,127,122,254,250,205,87,202,234,223,188,122,245,236,183,63,217,123,251,248,240,255,248,67,24,254,237,123,188,126,71,251,53,181,246,243,157,161,119,228,239,206,250,22,160,103,111,126,177,131,234,229,222,179,29,54,159,60,81,190,254,
|
||||
214,147,83,237,191,250,252,217,14,172,87,111,1,121,26,239,102,63,217,255,252,205,46,107,236,234,214,46,241,60,17,191,254,237,235,55,251,159,253,145,218,244,241,175,63,249,202,1,190,222,188,187,61,95,175,232,207,94,191,124,241,197,155,119,214,217,251,252,217,103,251,187,212,254,203,87,251,175,159,180,248,252,231,239,210,228,23,175,94,237,94,159,204,252,241,254,235,157,9,95,190,250,199,167,181,79,118,48,127,252,230,229,171,63,82,2,254,246,23,187,77,95,230,183,247,126,248,141,63,18,193,111,247,127,248,211,127,33,171,253,254,209,222,71,242,167,47,95,124,178,255,79,119,129,255,242,21,183,124,210,247,163,255,245,107,84,126,50,198,123,223,123,79,254,222,253,94,252,229,191,249,55,127,24,220,175,191,248,248,137,213,167,95,188,248,35,118,248,247,251,175,255,241,205,203,95,254,95,207,62,223,133,246,171,31,236,255,250,79,90,229,15,40,254,201,70,127,179,171,30,175,158,74,212,147,255,239,236,243,171,253,87,111,3,102,87,173,254,128,240,131,29,130,207,94,239,
|
||||
60,102,183,190,91,252,225,235,191,255,252,211,151,31,124,243,95,82,245,7,63,252,193,71,63,253,209,223,253,221,15,254,225,71,127,243,131,127,248,232,167,255,245,173,142,127,190,247,7,243,31,126,61,193,7,191,122,127,172,223,39,217,165,141,39,64,127,245,59,83,252,253,155,157,55,189,67,242,61,216,191,250,240,9,206,183,233,224,125,18,219,251,197,179,215,123,63,219,223,229,139,143,119,209,241,21,183,127,242,197,55,191,120,186,104,188,205,162,207,223,188,221,249,249,203,47,121,238,182,254,118,255,205,63,51,219,78,222,174,236,126,241,122,127,103,168,183,225,246,171,151,207,119,212,255,36,107,55,247,179,253,47,5,189,249,245,243,143,159,242,241,206,43,158,42,195,147,139,191,126,254,230,139,103,111,83,235,183,118,126,241,20,151,239,242,207,59,33,255,203,91,41,207,255,226,175,190,251,253,31,126,247,169,216,127,229,20,79,60,95,239,253,237,155,87,47,62,250,222,247,254,243,59,207,251,187,95,237,120,190,254,224,155,59,197,254,196,153,127,253,139,221,248,217,222,207,
|
||||
190,120,243,230,171,171,79,129,184,179,235,183,118,196,187,115,189,95,253,120,23,182,63,219,255,114,109,239,217,207,159,237,142,240,250,229,63,23,240,126,211,87,79,250,157,63,125,136,157,144,247,20,187,220,253,183,191,120,254,226,147,255,244,242,245,155,255,240,242,227,47,118,167,248,210,10,79,185,253,233,166,253,249,254,175,119,25,110,215,84,252,122,135,248,206,169,191,181,247,226,41,242,94,63,251,237,183,246,118,0,124,246,203,55,63,252,63,119,78,248,238,78,244,235,103,191,207,240,93,161,248,61,29,191,247,206,244,251,187,152,127,242,230,253,221,250,199,207,118,246,252,10,195,189,207,118,151,247,215,239,43,202,254,139,79,158,108,250,226,229,203,215,251,239,166,158,88,127,89,73,62,252,191,1,93,231,28,160,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue