From 904039a141b16205bb43060f93b27aaf850a15e2 Mon Sep 17 00:00:00 2001 From: oblivion Date: Sun, 2 Sep 2018 18:56:26 +0000 Subject: [PATCH] SFtp: GetDefaultDir() method added. SshSession::WhenPhase added. Docs updated. Various improvements. git-svn-id: svn://ultimatepp.org/upp/trunk@12237 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/SSH/Core.cpp | 6 +-- uppsrc/Core/SSH/Core.h | 2 +- uppsrc/Core/SSH/ReadMe | 4 +- uppsrc/Core/SSH/SFtp.cpp | 42 ++++++++++++------- uppsrc/Core/SSH/SFtp.h | 6 ++- uppsrc/Core/SSH/SSH.upp | 5 ++- uppsrc/Core/SSH/Session.cpp | 11 +++-- uppsrc/Core/SSH/Session.h | 12 +++++- uppsrc/Core/SSH/Todo | 6 +++ .../Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tpp | 11 +++++ .../Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tppi | 38 ++++++++--------- .../SSH/src.tpp/Upp_Ssh_Session_en-us.tpp | 22 ++++++---- .../SSH/src.tpp/Upp_Ssh_Session_en-us.tppi | 31 +++++++------- 13 files changed, 125 insertions(+), 71 deletions(-) create mode 100644 uppsrc/Core/SSH/Todo diff --git a/uppsrc/Core/SSH/Core.cpp b/uppsrc/Core/SSH/Core.cpp index b0e8f7439..be27ac352 100644 --- a/uppsrc/Core/SSH/Core.cpp +++ b/uppsrc/Core/SSH/Core.cpp @@ -45,7 +45,7 @@ String GetName(int type, int64 id) // Ssh: SSH objects core class. -StaticMutex ssh_mutex; +static StaticMutex sLoopLock; void Ssh::Check() { @@ -54,7 +54,7 @@ void Ssh::Check() if(IsTimeout()) SetError(-1, "Operation timed out."); - if(ssh->status == ABORTED || (sock && ssh->socket->IsAbort())) + if(ssh->status == ABORTED) SetError(-1, "Operation aborted."); if(sock && ssh->socket->IsError()) @@ -63,7 +63,7 @@ void Ssh::Check() bool Ssh::Do(Gate<>& fn) { - Mutex::Lock m_(ssh_mutex); + Mutex::Lock __(sLoopLock); Check(); if(!ssh->init) diff --git a/uppsrc/Core/SSH/Core.h b/uppsrc/Core/SSH/Core.h index ee23159d0..396b08571 100644 --- a/uppsrc/Core/SSH/Core.h +++ b/uppsrc/Core/SSH/Core.h @@ -69,7 +69,7 @@ protected: void ReportError(int rc, const String& reason); void AddTo(SocketWaitEvent& e) { e.Add(*ssh->socket, GetWaitEvents()); } dword GetWaitEvents(); - inline void RefreshUI() { WhenWait ? WhenWait() : ssh->whenwait(); } + inline void RefreshUI() { WhenWait ? WhenWait() : ssh->whenwait(); } private: static int64 GetNewId(); diff --git a/uppsrc/Core/SSH/ReadMe b/uppsrc/Core/SSH/ReadMe index 5432daa11..439b8e8fc 100644 --- a/uppsrc/Core/SSH/ReadMe +++ b/uppsrc/Core/SSH/ReadMe @@ -45,5 +45,5 @@ Todo: Reference examples: ------------------- -- SshBasics: Demonstrates basic capabilities of SSH package. -- SFtpGUI: Demonstrates a simple sftp browser with GUI. \ No newline at end of file +- SshBasics: Demonstrates basic capabilities of SSH package. +- SFtpBrowser: Demonstrates a basic sftp browser with GUI. \ No newline at end of file diff --git a/uppsrc/Core/SSH/SFtp.cpp b/uppsrc/Core/SSH/SFtp.cpp index b52e71f81..38df20366 100644 --- a/uppsrc/Core/SSH/SFtp.cpp +++ b/uppsrc/Core/SSH/SFtp.cpp @@ -65,11 +65,10 @@ void SFtp::Close(SFtpHandle handle) { if(!handle) return; - + Run([=] () mutable { int rc = libssh2_sftp_close_handle(handle); - if(!rc) - LLOG("File handle freed."); + if(!rc) LLOG("File handle freed."); return !rc; }); } @@ -132,7 +131,7 @@ int64 SFtp::GetPos(SFtpHandle handle) return pos; } -bool SFtp::Read(SFtpHandle handle, void* ptr, int size) +int SFtp::Read(SFtpHandle handle, void* ptr, int size) { int sz = min(size - done, ssh->chunk_size); @@ -142,13 +141,14 @@ bool SFtp::Read(SFtpHandle handle, void* ptr, int size) if(rc > 0) { done += rc; ssh->start_time = msecs(); + RefreshUI(); } if(!rc) LLOG("EOF received."); - return !rc || done == size; + return rc; } -bool SFtp::Write(SFtpHandle handle, const void* ptr, int size) +int SFtp::Write(SFtpHandle handle, const void* ptr, int size) { int sz = min(size - done, ssh->chunk_size); @@ -158,23 +158,38 @@ bool SFtp::Write(SFtpHandle handle, const void* ptr, int size) if(rc > 0) { done += rc; ssh->start_time = msecs(); + RefreshUI(); } if(!rc) LLOG("EOF received."); - return !rc || done == size;; + return rc; } int SFtp::Get(SFtpHandle handle, void *ptr, int size) { done = 0; - Run([=]() mutable { return Read(handle, ptr, size); }); + Run([=]() mutable { + while(done < size && !IsTimeout() && InProgress()) { + int rc = Read(handle, ptr, size); + if(rc < 0) return false; + if(!rc) break; + } + return true; + }); return GetDone(); } int SFtp::Put(SFtpHandle handle, const void *ptr, int size) { done = 0; - Run([=]() mutable { return Write(handle, ptr, size); }); + Run([=]() mutable { + while(done < size && !IsTimeout() && InProgress()) { + int rc = Write(handle, ptr, size); + if(rc < 0) return false; + if(!rc) break; + } + return true; + }); return GetDone(); } @@ -190,6 +205,7 @@ bool SFtp::CopyData(Stream& dest, Stream& src, int64 maxsize) err = Format("Buffer overflow. size = %d (allowed size >= 0 && < %d", size, maxsize); goto Bailout; } + LLOG("Transfer chunk size: " << ssh->chunk_size); if(CopyStream(dest, src, src.GetSize(), WhenProgress, ssh->chunk_size) < 0) { err = "File transfer is aborted."; goto Bailout; @@ -620,12 +636,8 @@ Array SFtpFileSystemInfo::Find(String mask, int max_co Array fi; if(!browser->InProgress()) { - if(IsNull(mask)) { // || mask.StartsWith("/media/*")) { - String dir; - if(!browser->RealizePath(".", dir)) - return pick(fi); - mask = dir; - } + if(IsNull(mask)) + mask = browser->GetDefaultDir(); mask.Replace("*", ""); auto e = browser->GetInfo(mask); if(e) { diff --git a/uppsrc/Core/SSH/SFtp.h b/uppsrc/Core/SSH/SFtp.h index 34456482f..715530c83 100644 --- a/uppsrc/Core/SSH/SFtp.h +++ b/uppsrc/Core/SSH/SFtp.h @@ -114,6 +114,8 @@ public: bool ReadLink(const String& path, String& target) { return SymLink(path, target, LIBSSH2_SFTP_READLINK); } bool RealizePath(const String& path, String& target) { return SymLink(path, target, LIBSSH2_SFTP_REALPATH); } + String GetDefaultDir() { String s; RealizePath(".", s); return s; } + // Attributes bool GetAttrs(SFtpHandle handle, SFtpAttrs& attrs); bool GetAttrs(const String& path, SFtpAttrs& attrs); @@ -154,8 +156,8 @@ private: Value QueryAttr(const String& path, int attr); bool ModifyAttr(const String& path, int attr, const Value& v); bool SymLink(const String& path, String& target, int type); - bool Read(SFtpHandle handle, void* ptr, int size); - bool Write(SFtpHandle handle, const void* ptr, int size); + int Read(SFtpHandle handle, void* ptr, int size); + int Write(SFtpHandle handle, const void* ptr, int size); bool CopyData(Stream& dest, Stream& src, int64 maxsize = INT64_MAX); One sftp_session; diff --git a/uppsrc/Core/SSH/SSH.upp b/uppsrc/Core/SSH/SSH.upp index 354190d5e..6ec5c4277 100644 --- a/uppsrc/Core/SSH/SSH.upp +++ b/uppsrc/Core/SSH/SSH.upp @@ -50,9 +50,10 @@ file Docs readonly separator, src.tpp, Info readonly separator, + ReadMe, Copying, - Issues, - ReadMe; + Todo, + Issues; mainconfig "" = ""; diff --git a/uppsrc/Core/SSH/Session.cpp b/uppsrc/Core/SSH/Session.cpp index fa30e871c..962d9a9aa 100644 --- a/uppsrc/Core/SSH/Session.cpp +++ b/uppsrc/Core/SSH/Session.cpp @@ -112,6 +112,7 @@ bool SshSession::Connect(const String& host, int port, const String& user, const } else LLOG("Proxy plugin found. Attempting to connect via proxy..."); + WhenPhase(WhenProxy ? PHASE_CONNECTION : PHASE_DNS); return true; })) goto Bailout; @@ -121,6 +122,7 @@ bool SshSession::Connect(const String& host, int port, const String& user, const return false; if(!ipinfo.GetResult()) SetError(-1, "DNS lookup failed."); + WhenPhase(PHASE_CONNECTION); return true; })) goto Bailout; @@ -169,6 +171,7 @@ bool SshSession::Connect(const String& host, int port, const String& user, const ssh->socket = &session->socket; LLOG("Session successfully initialized."); WhenConfig(); + WhenPhase(PHASE_HANDSHAKE); return true; })) goto Bailout; @@ -184,7 +187,10 @@ bool SshSession::Connect(const String& host, int port, const String& user, const if(!Run([=] () mutable { int rc = libssh2_session_handshake(ssh->session, session->socket.GetSOCKET()); if(!WouldBlock(rc) && rc < 0) SetError(rc); - if(!rc) LLOG("Handshake successful."); + if(!rc) { + LLOG("Handshake successful."); + WhenPhase(PHASE_AUTHORIZATION); + } return !rc; })) goto Bailout; @@ -202,8 +208,6 @@ bool SshSession::Connect(const String& host, int port, const String& user, const if(session->authmethods.IsEmpty()) { if(!WouldBlock()) SetError(-1); return false; } LLOG("Authentication methods successfully retrieved."); WhenAuth(); - if(IsNull(session->phrase)) - session->phrase = password; return true; })) goto Bailout; @@ -261,6 +265,7 @@ bool SshSession::Connect(const String& host, int port, const String& user, const LLOG("X11 dispatcher is set."); #endif session->connected = true; + WhenPhase(PHASE_SUCCESS); } return session->connected; })) goto Bailout; diff --git a/uppsrc/Core/SSH/Session.h b/uppsrc/Core/SSH/Session.h index c32160a79..b09597da8 100644 --- a/uppsrc/Core/SSH/Session.h +++ b/uppsrc/Core/SSH/Session.h @@ -16,11 +16,19 @@ public: HASH_SHA1 }; + enum Phase : int { + PHASE_DNS, + PHASE_CONNECTION, + PHASE_HANDSHAKE, + PHASE_AUTHORIZATION, + PHASE_SUCCESS + }; + public: SshSession& Timeout(int ms) { ssh->timeout = ms; return *this; } SshSession& HashType(Hash h) { session->hashtype = h == HASH_SHA1 ? LIBSSH2_HOSTKEY_HASH_SHA1 : LIBSSH2_HOSTKEY_HASH_MD5; return *this; } - SshSession& Keys(const String& prikey, const String& pubkey, const String& phrase = Null, bool fromfile = true); + SshSession& Keys(const String& prikey, const String& pubkey, const String& phrase, bool fromfile = true); SshSession& Method(int type, Value method) { session->iomethods(type) = pick(method); return *this; } SshSession& Methods(ValueMap methods) { session->iomethods = pick(methods); return *this; } @@ -51,6 +59,7 @@ public: Event<> WhenConfig; Event<> WhenAuth; + Event WhenPhase; Gate WhenVerify; Gate<> WhenProxy; Event WhenX11; @@ -85,5 +94,4 @@ private: enum AuthMethod { PASSWORD, PUBLICKEY, HOSTBASED, KEYBOARD, SSHAGENT }; enum HostkeyType { RSAKEY, DSSKEY }; - enum OpCodes { CONNECT, LOGIN, DISCONNECT }; }; diff --git a/uppsrc/Core/SSH/Todo b/uppsrc/Core/SSH/Todo new file mode 100644 index 000000000..52733fcb6 --- /dev/null +++ b/uppsrc/Core/SSH/Todo @@ -0,0 +1,6 @@ +TODO: +----- + +- Override libssh2 send and recv callbacks to do raw sends/recvs with U++ TcpSocket. +- Accordingly, move Ssh::Wait() to SshSession. +- Improve SFtpFileSystemInfo. \ No newline at end of file diff --git a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tpp b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tpp index 1a30acd2e..11ce2f779 100644 --- a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tpp +++ b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tpp @@ -190,6 +190,17 @@ ool]_[* RealizePath]([@(0.0.255) const]_[_^Upp`:`:String^ String][@(0.0.255) `&] effective [%-*@3 target]. Returns true on success.&] [s3; &] [s4;%- &] +[s5;:Upp`:`:SFtp`:`:GetDefaultDir`(`):%- [_^Upp`:`:String^ String]_[* GetDefaultDir]()&] +[s2; Returns the path of default directory (e.g. [C /home/][C@3 username]) +on success, and an empty string on failure.&] +[s3;%- &] +[s4;%- &] +[s5;:Upp`:`:SFtp`:`:GetCurrentDir`(`):%- [_^Upp`:`:String^ String]_[* GetCurrentDir]()&] +[s2; Returns the path of the current directory on success, and an +empty string on failure. Note that the current dir is always +&] +[s3;%- &] +[s4;%- &] [s5;:Upp`:`:SFtp`:`:GetAttrs`(Upp`:`:SFtpHandle`,Upp`:`:SFtpAttrs`&`):%- [@(0.0.255) bo ol]_[* GetAttrs]([_^Upp`:`:SFtpHandle^ SFtpHandle]_[*@3 handle], [_^Upp`:`:SFtpAttrs^ SFt pAttrs][@(0.0.255) `&]_[*@3 attrs])&] diff --git a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tppi b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tppi index 27db5c592..a4b877c9c 100644 --- a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tppi +++ b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_SFtp_en-us.tppi @@ -1,22 +1,22 @@ TITLE("SFtp") COMPRESSED -120,156,221,93,13,83,227,56,210,254,43,170,154,219,61,152,10,25,219,73,72,72,246,182,96,128,101,168,227,171,8,236,204,91,84,32,78,172,16,31,142,157,179,101,102,216,189,157,223,126,221,146,108,203,137,157,56,137,89,246,222,169,25,18,108,169,213,253,116,171,37,181,90,154,59,187,94,111,117,76,163,209,121,250,231,229,94,199,32,127,251,155,94,209,222,213,154,122,173,213,168,233,117,99,23,126,232,53,221,104,24,181,186,222,50,246,234,173,90,173,165,181,135,142,25,4,189,59,199,104,181,120,37,163,98,188,51,154,13,67,111,214,91,245,150,94,107,182,12,168,107,104,154,161,53,141,134,94,175,181,140,70,219,162,193,176,119,167,65,241,26,180,177,183,91,219,211,116,77,107,234,186,86,51,154,90,173,81,215,245,154,1,36,140,166,161,107,141,54,117,173,222,221,167,221,14,86,168,67,5,173,177,171,105,218,46,80,171,215,53,160,142,213,234,53,189,166,25,181,134,190,215,216,109,15,232,163,237,246,238,230,69,106,44,21,169,169,181,109,70,39,82,34,179,222,121, -191,223,232,232,80,117,183,178,251,174,9,205,214,27,208,216,30,74,84,131,106,134,177,219,216,211,27,117,96,169,174,25,109,159,254,59,180,125,58,161,46,147,20,108,93,55,244,206,64,111,118,128,133,239,223,191,87,245,186,38,144,106,2,47,186,6,124,27,58,60,3,57,154,122,99,79,219,107,180,244,150,86,107,214,141,70,19,68,159,154,190,57,145,146,12,234,70,71,202,209,170,180,222,237,234,187,128,168,214,2,254,27,123,64,64,3,33,224,19,128,108,192,223,90,171,205,100,101,172,135,149,246,42,123,239,0,164,90,67,107,238,105,205,122,179,81,7,73,12,125,87,7,32,53,148,31,212,208,118,61,127,98,58,189,59,172,160,33,214,75,254,180,143,232,200,12,29,16,247,247,135,63,126,56,190,216,185,237,146,59,242,251,239,58,190,220,223,2,69,86,235,70,85,219,38,119,129,214,33,119,239,247,155,157,58,233,254,194,166,189,222,31,127,252,216,187,11,106,157,31,118,8,126,209,59,237,219,233,180,223,238,183,241,53,126,114,219,106,195,235,187,253,45,173,170,85, -65,208,237,26,145,22,87,35,15,189,187,247,53,78,139,224,175,109,248,93,45,55,13,7,142,61,140,10,238,215,58,80,54,24,247,176,41,173,243,142,43,135,220,140,237,64,16,36,212,29,154,211,32,116,76,70,3,98,186,164,219,253,100,0,241,155,43,18,132,131,224,37,0,163,168,146,83,70,76,199,241,190,6,100,228,249,196,36,190,233,62,82,226,141,136,55,165,190,201,108,207,13,136,231,18,176,0,143,81,50,178,29,74,68,85,226,13,254,69,135,44,168,0,181,225,152,152,1,127,249,193,2,99,25,50,207,127,33,67,159,242,250,21,98,81,135,138,111,62,117,205,137,237,62,86,4,37,6,173,5,35,234,3,145,164,158,99,7,12,138,0,255,108,88,21,96,8,121,64,48,139,250,246,51,181,200,200,247,38,228,238,158,121,83,123,8,184,126,232,127,56,244,124,218,255,0,34,246,63,4,254,176,255,1,129,127,0,116,250,15,31,205,128,246,31,168,219,223,9,131,254,187,72,33,240,38,210,199,61,71,145,12,160,156,104,169,2,104,89,100,12,34,1,249,39,18, -208,137,233,50,123,24,0,55,148,2,92,129,87,180,109,228,190,203,0,136,201,60,7,201,43,133,145,248,97,79,48,177,66,59,153,45,224,231,145,237,31,187,204,127,153,105,167,223,142,223,244,132,220,20,36,76,25,147,106,205,81,15,248,101,75,55,90,219,39,252,231,190,30,117,2,114,197,109,147,156,83,54,246,44,114,6,58,156,235,14,141,185,238,112,99,79,168,23,178,254,150,237,178,254,54,239,23,15,247,74,25,193,168,218,9,72,255,199,222,3,52,39,107,246,182,212,119,64,5,95,238,215,200,36,232,109,99,147,70,7,84,198,2,194,68,113,242,108,58,33,133,114,100,98,131,153,209,161,231,90,92,171,12,45,142,176,49,157,41,201,60,114,17,58,14,244,60,36,2,175,185,57,10,203,199,230,60,50,112,188,225,19,86,158,120,22,21,226,114,97,235,249,82,31,142,67,247,169,107,255,70,215,144,59,174,155,39,121,240,219,140,228,192,244,16,43,145,0,106,161,64,119,63,236,200,130,188,203,91,38,131,94,79,77,43,224,6,247,213,135,193,2,48,185,129,122, -150,112,132,106,125,232,131,187,245,127,146,107,202,66,31,60,67,255,61,67,127,131,116,38,66,243,195,177,105,187,128,71,181,24,22,39,148,125,130,102,29,192,162,191,13,234,8,152,68,227,236,244,35,250,43,52,237,155,171,254,195,167,131,139,163,179,227,123,146,249,56,13,212,123,14,84,76,184,183,181,253,160,190,231,141,244,36,68,145,28,38,153,122,128,33,245,17,32,132,204,177,7,65,48,54,72,48,2,125,67,199,8,192,125,129,71,64,130,232,14,193,229,13,41,58,138,139,219,179,51,124,48,50,109,39,244,105,53,101,240,11,228,190,156,66,103,221,226,188,144,232,21,243,1,183,254,143,253,138,124,96,125,245,124,171,95,113,60,120,154,97,36,66,60,97,42,82,84,20,28,41,167,141,67,72,252,160,212,230,45,65,77,254,153,97,102,96,30,83,147,141,193,7,37,149,56,55,247,132,127,200,50,35,199,124,12,176,144,66,0,185,141,58,33,244,8,97,140,90,71,248,19,228,77,152,164,58,158,160,17,198,222,223,100,145,129,114,14,200,87,155,193,224,194,209,142, -94,136,102,133,123,20,79,120,75,85,69,155,156,110,134,186,176,206,172,202,200,47,73,97,24,235,6,12,12,24,134,152,48,16,46,1,204,91,154,246,36,4,101,13,144,119,135,194,88,145,20,161,228,208,241,2,186,181,29,149,252,58,166,64,31,250,65,48,166,86,85,218,154,252,192,214,228,8,154,37,86,91,41,221,132,185,22,204,7,59,38,204,181,218,135,204,119,184,247,56,190,184,57,190,110,243,137,87,211,0,80,177,250,33,212,191,62,62,56,234,237,252,71,96,204,1,176,93,222,177,57,60,213,92,130,103,199,191,220,196,228,190,167,105,126,190,62,189,57,158,35,202,125,196,18,170,215,167,39,159,114,201,30,92,93,29,95,204,51,107,78,225,215,101,236,222,92,94,229,145,61,4,8,56,187,135,56,245,160,17,225,17,177,25,177,60,26,184,253,191,51,66,191,193,216,148,34,159,67,237,248,203,225,217,109,247,244,87,78,208,12,193,9,16,105,186,255,14,41,88,2,120,10,52,33,164,143,143,97,98,131,19,19,108,209,116,16,246,23,209,20,248,82,193,23,87, -176,48,34,62,133,0,75,10,166,116,104,143,108,168,199,137,160,39,197,50,240,9,205,89,249,24,124,188,188,185,185,60,207,131,225,230,250,246,226,240,96,86,111,104,250,204,15,97,78,136,200,216,156,255,223,168,239,145,45,152,202,14,94,184,211,63,151,22,142,173,139,158,167,176,174,122,244,69,118,204,59,99,64,182,96,254,56,177,185,227,12,182,179,172,58,225,30,126,75,126,224,108,2,165,56,189,190,237,94,87,200,233,103,241,241,69,124,92,127,254,114,11,114,221,6,224,170,149,6,50,245,153,32,114,122,125,114,125,133,180,196,199,23,241,1,180,78,128,214,137,239,133,83,149,216,50,90,151,55,159,144,150,248,248,34,62,128,214,37,208,186,74,168,240,65,209,3,203,240,151,115,119,112,118,6,149,175,177,175,74,44,249,100,220,113,150,213,252,44,106,126,230,29,114,181,170,95,68,213,227,111,116,24,50,115,0,22,50,120,41,82,15,36,61,64,13,184,62,116,2,223,30,50,154,201,244,242,161,31,109,19,69,206,27,6,87,27,242,144,82,89,195,94,52,129,18, -189,71,14,85,169,81,9,37,197,62,142,19,157,191,242,176,83,76,11,220,124,202,81,3,39,245,231,234,1,71,35,174,7,14,232,87,27,166,235,128,22,95,125,10,199,58,239,253,255,183,85,198,73,244,183,230,20,34,85,165,192,249,236,217,150,88,54,96,21,80,75,1,53,2,182,66,194,24,126,94,89,76,219,56,90,82,3,178,84,30,42,124,248,64,205,129,176,160,37,252,6,203,205,88,242,32,31,164,4,199,117,208,185,198,16,67,174,53,87,22,25,185,130,220,192,243,28,142,156,32,87,130,69,123,142,21,205,169,55,37,229,210,175,169,254,33,120,140,173,57,53,159,22,145,18,161,177,136,5,101,21,24,145,74,186,4,204,17,212,158,80,37,197,96,63,194,24,207,18,39,146,133,175,168,87,182,199,16,84,21,155,157,89,86,228,139,91,76,218,238,139,59,44,212,3,99,57,177,198,186,29,16,235,142,125,207,133,5,184,34,146,88,177,90,56,108,167,123,100,180,134,149,14,51,0,59,48,31,113,53,255,108,15,233,198,146,83,250,148,37,121,180,104,5,158,118, -235,171,197,52,144,228,170,208,168,43,83,222,228,61,225,31,145,49,120,129,141,17,71,37,22,66,159,2,197,238,227,2,124,221,145,90,142,230,226,90,45,53,236,113,229,5,249,22,148,43,27,17,53,215,181,164,88,247,24,21,10,125,159,186,44,134,130,108,1,20,124,33,176,45,188,6,22,226,251,14,40,24,134,132,139,226,84,124,230,1,35,66,57,243,14,32,84,170,15,153,143,88,228,134,40,222,106,54,81,194,76,226,220,124,162,11,84,160,134,158,178,124,154,172,94,98,180,105,89,32,9,103,35,114,109,111,230,106,132,244,50,130,70,51,33,162,245,156,223,53,152,255,243,34,196,22,205,35,100,213,215,26,234,226,206,185,212,80,215,20,30,99,250,92,244,124,231,175,236,56,96,233,133,128,72,114,155,56,254,153,230,238,137,252,146,141,26,238,43,197,168,73,92,248,51,233,14,61,240,102,224,14,193,207,205,1,169,184,186,220,89,112,238,252,233,70,157,208,226,234,196,87,180,64,159,161,215,242,174,171,140,216,73,195,80,147,78,166,236,165,232,44,44,214,209,226, -200,242,122,122,42,61,164,188,129,254,46,159,169,239,120,166,85,45,164,201,98,83,191,114,52,85,116,7,0,157,231,153,237,62,45,213,213,114,223,18,145,42,99,149,226,219,143,105,29,21,168,196,76,255,145,178,12,15,29,188,76,6,30,110,11,58,192,93,52,45,141,22,35,216,146,237,154,124,231,109,126,95,121,115,87,109,90,37,193,27,145,122,149,46,176,58,188,215,52,128,145,100,30,222,217,157,19,128,219,102,1,172,240,190,197,47,36,165,18,176,117,96,45,114,5,205,148,3,111,68,237,47,132,176,35,32,30,122,147,169,67,191,97,230,130,3,166,250,204,87,215,128,59,34,78,173,76,192,233,104,4,246,139,69,203,69,29,102,254,7,140,249,153,171,6,213,177,139,66,139,16,143,40,109,58,246,114,34,162,184,160,151,9,174,201,95,69,216,158,68,155,210,248,216,30,132,232,40,192,81,207,59,128,220,245,5,233,37,203,56,65,187,60,100,151,15,155,43,161,251,42,35,230,235,162,62,59,149,46,27,235,238,34,43,78,195,95,8,237,238,250,182,188,80,59,107, -2,221,205,6,58,158,53,22,51,241,94,245,245,96,47,20,23,93,21,250,87,88,255,189,145,74,50,70,209,178,125,205,169,59,242,86,136,122,200,25,50,79,212,154,207,220,146,30,7,105,150,189,178,76,194,26,81,107,17,72,108,12,48,225,52,219,180,225,189,13,109,251,19,158,235,71,204,1,38,79,165,16,156,139,131,96,66,213,92,202,76,1,3,206,194,109,54,197,109,137,189,22,129,105,14,242,24,235,76,200,40,127,181,196,216,50,12,205,167,83,159,6,116,166,255,11,106,121,70,182,9,128,96,36,34,231,172,144,225,101,197,29,231,211,206,202,179,49,132,140,39,152,1,88,185,214,211,223,209,215,50,156,69,114,103,197,173,115,140,167,76,249,151,196,175,17,138,121,155,138,50,247,16,167,222,12,80,37,248,165,51,51,96,231,158,101,143,94,48,187,178,160,161,96,209,123,158,142,25,153,73,154,204,107,26,140,3,45,97,96,207,30,217,67,225,126,48,123,83,162,50,135,144,130,201,102,126,168,24,78,233,17,149,151,92,226,156,94,7,184,37,163,170,162,191,236, -165,17,190,153,179,196,121,228,163,181,14,20,127,45,219,60,224,117,54,182,205,132,204,171,219,166,12,65,115,80,94,211,26,151,35,179,158,53,150,15,213,235,89,163,130,117,158,7,216,212,14,113,195,230,152,231,244,173,30,255,79,234,190,154,213,161,76,246,140,149,197,179,140,104,119,170,160,168,71,81,96,115,93,121,103,8,188,157,208,113,136,182,240,214,254,4,131,125,235,202,157,170,254,118,82,167,66,131,69,37,247,134,79,148,173,45,184,82,251,13,229,230,92,20,20,248,202,158,174,221,159,147,186,111,39,172,72,57,158,2,39,5,5,254,136,135,85,214,149,88,169,252,118,34,243,227,54,34,111,218,116,86,113,104,93,81,101,19,23,62,71,226,237,96,24,142,77,223,28,226,121,149,53,160,128,121,208,145,231,206,156,184,153,63,76,68,100,185,66,7,104,120,6,124,56,25,0,71,48,232,242,44,18,50,245,61,28,92,193,68,173,16,17,64,103,140,135,141,162,83,127,85,114,138,27,117,22,20,96,60,29,126,104,58,78,116,184,239,243,152,186,159,77,27,214,201, -94,200,108,183,248,201,26,172,120,229,123,143,0,86,144,158,14,158,152,12,38,23,248,179,247,83,206,234,43,119,89,246,51,2,162,146,142,0,56,29,225,49,41,204,220,168,136,164,141,71,19,83,177,197,145,74,144,84,28,14,3,76,82,162,203,3,86,35,219,7,11,228,135,90,41,42,19,16,123,182,45,153,228,101,78,188,80,236,98,138,170,24,115,193,51,137,209,233,130,1,197,189,72,73,208,167,150,32,41,14,181,41,52,39,230,75,68,87,28,112,243,24,152,203,44,113,142,191,66,172,66,6,33,195,77,77,46,73,172,33,45,154,66,241,28,21,52,83,190,79,106,14,60,159,165,146,138,210,138,22,25,53,133,206,17,222,200,58,242,36,97,144,58,69,152,111,208,153,225,100,76,127,237,191,239,87,146,83,118,217,86,190,89,236,88,36,217,246,223,139,254,204,252,153,215,202,209,60,92,212,63,244,255,241,112,122,113,211,127,56,63,248,146,244,123,126,250,14,87,84,1,83,87,249,61,217,147,56,154,113,78,86,234,236,148,140,90,6,48,240,217,60,225,153,231,190, -204,36,4,242,147,138,60,157,43,28,33,182,243,113,103,193,55,243,95,184,98,61,98,121,48,148,198,44,137,163,193,201,105,21,121,72,178,186,176,251,131,127,10,193,122,94,120,130,54,244,243,162,131,114,152,173,76,225,173,11,169,244,42,220,80,165,145,43,95,91,203,145,102,121,58,252,10,170,93,168,159,68,141,43,91,192,95,67,181,93,243,153,226,232,25,13,189,56,138,161,50,87,30,136,37,157,236,241,87,125,4,13,36,74,43,41,251,26,53,150,172,65,205,103,58,151,117,34,177,231,170,197,13,180,213,178,80,202,56,242,173,142,84,247,169,113,139,244,248,0,53,52,221,248,160,23,26,21,14,84,25,78,187,64,198,145,103,90,25,58,157,221,199,72,227,202,243,138,100,197,53,148,152,153,205,154,192,175,244,144,52,228,255,91,200,230,245,150,4,82,188,59,224,245,250,137,170,60,104,137,43,15,47,38,200,236,20,182,91,168,75,64,49,146,221,33,200,255,195,30,49,171,169,74,70,23,201,76,185,75,186,198,74,74,192,11,17,150,14,100,43,119,167,121,101,145, -30,31,137,162,68,174,112,81,110,203,95,80,121,75,102,160,135,136,153,31,98,204,8,166,246,204,180,157,2,55,89,240,207,88,225,193,184,43,174,12,136,187,231,123,113,250,65,85,104,92,136,223,63,34,191,103,43,86,94,64,144,100,216,37,44,86,201,71,219,181,148,203,41,108,120,101,186,195,212,85,15,178,186,106,192,179,211,241,69,23,219,168,251,205,49,20,156,202,252,13,55,115,151,141,44,187,237,38,217,93,133,39,5,110,188,57,247,158,41,30,87,197,135,63,205,81,248,249,65,94,135,163,220,134,227,210,0,167,69,99,234,76,97,18,19,223,37,99,43,139,207,192,158,76,29,123,36,210,123,97,237,20,200,69,91,198,125,55,100,11,31,42,55,214,216,248,75,42,222,6,191,227,221,53,219,50,127,52,73,28,230,10,226,12,84,147,61,117,193,80,198,109,51,170,201,189,198,237,43,170,170,96,21,116,193,143,205,165,111,225,200,31,190,101,133,226,193,1,40,76,182,208,123,108,47,200,190,88,150,43,80,56,10,48,35,219,45,172,26,178,69,203,218,232,134,210, -133,229,10,241,36,186,109,205,205,191,11,10,152,185,165,189,178,120,39,43,137,119,178,130,120,143,252,112,252,91,203,39,54,240,11,11,40,54,234,11,74,24,101,29,100,8,19,157,135,202,151,106,19,161,226,237,94,88,118,229,8,183,96,115,29,42,21,22,49,123,159,124,131,110,184,129,196,98,75,113,69,137,163,74,171,73,60,179,251,250,231,202,42,179,237,178,18,186,10,36,177,41,73,164,219,127,70,115,226,178,55,15,166,165,178,193,89,60,229,117,72,242,44,109,156,218,36,102,33,0,19,143,35,100,35,188,22,130,49,67,223,115,195,212,235,38,8,38,194,126,95,104,79,7,34,134,203,159,193,136,28,153,83,116,140,33,23,138,181,228,61,13,196,146,33,71,214,120,105,32,202,21,235,7,114,23,33,199,238,237,153,29,225,85,249,141,55,120,139,48,29,23,46,141,243,217,109,221,85,217,151,251,180,69,152,151,69,75,99,61,107,111,118,101,246,197,182,79,33,246,69,209,210,216,95,184,247,180,170,28,124,83,177,136,20,188,96,105,50,228,110,35,174,202,63,110, -3,23,97,31,203,149,198,253,220,190,239,202,214,195,119,201,11,25,15,47,89,158,233,171,219,243,171,114,141,219,36,184,242,43,194,119,84,182,36,206,125,73,110,77,206,249,54,64,81,214,227,194,37,241,142,49,250,13,120,71,36,47,93,167,144,155,143,202,150,193,57,46,136,17,246,254,142,7,20,229,232,187,166,12,201,37,87,69,164,72,74,151,164,1,26,19,92,139,255,27,79,238,137,20,94,156,71,53,10,207,151,213,20,254,156,115,65,124,186,192,11,49,211,194,217,14,191,115,233,50,100,211,80,70,221,147,195,179,240,45,176,39,182,99,242,251,52,111,93,251,27,113,112,38,53,153,192,12,187,255,247,0,99,134,80,109,77,52,190,76,156,85,160,128,226,37,227,224,146,111,19,39,134,224,58,10,242,136,7,241,13,84,224,237,224,87,32,128,133,153,249,88,73,22,206,60,24,178,224,12,74,192,15,18,50,250,141,181,103,98,117,117,189,86,107,55,90,187,205,159,48,190,245,115,163,94,239,56,31,140,93,31,254,177,15,122,125,0,255,246,245,29,17,24,250,7, -70,134,240,2,211,54,78,150,68,244,174,221,134,226,13,40,222,128,226,13,40,222,216,55,136,108,65,188,76,211,218,210,155,173,109,73,237,32,158,236,66,73,249,236,202,11,2,27,47,143,251,21,239,203,221,10,182,243,91,64,118,14,9,123,129,129,48,170,79,238,14,185,252,202,245,207,149,232,116,101,69,14,22,21,62,208,85,196,144,221,223,145,99,118,37,153,134,40,207,248,117,123,189,132,59,108,48,180,173,84,123,7,145,158,226,132,26,158,154,226,138,16,130,184,247,119,134,196,227,230,36,248,150,239,134,52,38,209,186,95,165,115,150,189,182,183,93,242,127,240,167,125,126,142,193,219,35,242,233,19,124,109,119,187,178,11,207,80,54,163,245,245,28,101,117,13,189,26,77,229,66,197,20,89,255,235,55,241,119,46,66,89,48,214,185,86,124,94,245,32,241,247,173,56,56,31,135,144,227,213,239,81,116,247,177,18,106,95,199,93,37,141,45,218,229,86,57,40,55,167,44,62,140,239,138,251,9,148,43,11,184,75,72,219,95,106,191,180,216,118,215,42,194,46,59,101, -88,62,12,175,116,166,16,80,101,102,250,14,154,37,104,166,178,50,228,81,194,141,182,99,138,7,249,249,21,31,240,21,93,175,69,71,179,51,31,249,88,133,229,87,46,211,61,17,159,106,182,220,130,211,113,63,203,180,111,206,88,180,23,156,98,87,172,1,4,209,232,248,32,226,52,179,199,68,168,195,255,191,137,153,217,30,32,213,235,253,23,204,177,41,184, +120,156,221,93,13,115,219,54,210,254,43,152,201,181,39,103,100,153,164,36,75,150,122,157,56,142,235,120,206,95,227,143,38,239,120,100,139,18,33,139,103,138,212,241,195,142,219,107,126,251,237,2,32,9,138,164,68,74,116,221,123,51,137,37,147,192,98,247,217,197,2,88,44,144,91,179,213,234,246,117,173,221,127,252,231,249,94,95,35,127,251,155,90,87,222,53,59,106,179,219,110,170,45,109,23,126,168,77,85,107,107,205,150,218,213,246,90,221,102,179,171,244,198,150,238,121,131,91,75,235,118,89,37,173,174,189,211,58,109,77,237,180,186,173,174,218,236,116,53,168,171,41,138,166,116,180,182,218,106,118,181,118,207,160,222,120,112,171,64,241,38,180,177,183,219,220,83,84,69,233,168,170,210,212,58,74,179,221,82,213,166,6,36,180,142,166,42,237,30,181,141,193,237,231,221,62,86,104,65,5,165,189,171,40,202,46,80,107,181,20,160,142,213,90,77,181,169,104,205,182,186,215,222,237,141,232,131,105,15,110,211,34,181,87,138,212,81,122,166,79,103,66,34,189,213,127, +255,161,221,87,161,234,110,125,247,93,7,154,109,181,161,177,61,148,168,9,213,52,109,183,189,167,182,91,192,82,75,209,122,46,253,119,96,186,116,70,109,95,80,48,85,85,83,251,35,181,211,7,22,190,127,255,222,80,91,10,71,170,3,188,168,10,240,173,169,240,12,228,232,168,237,61,101,175,221,85,187,74,179,211,210,218,29,16,125,174,187,250,76,72,50,106,105,125,33,71,183,222,125,183,171,238,2,162,74,23,248,111,239,1,1,5,132,128,79,0,178,13,127,155,221,158,47,42,99,61,172,180,87,223,123,7,32,53,219,74,103,79,233,180,58,237,22,72,162,169,187,42,0,169,160,252,160,134,158,237,184,51,221,26,220,98,5,5,177,94,241,167,247,137,78,244,192,2,113,127,191,255,227,135,195,179,237,155,43,114,75,126,255,93,197,151,31,106,160,200,70,75,107,40,91,228,214,83,250,228,246,253,135,78,191,69,174,126,241,231,131,193,31,127,252,56,184,245,154,253,31,182,9,126,81,251,189,155,249,124,216,27,246,240,53,126,50,219,234,193,235,219,15,53,165,161, +52,64,208,173,38,17,22,215,36,247,131,219,247,77,70,139,224,175,61,248,93,46,55,15,70,150,57,14,11,126,104,246,161,172,55,29,96,83,74,255,29,83,14,185,158,154,30,39,72,168,61,214,231,94,96,233,62,245,136,110,147,171,171,207,26,16,191,190,32,94,48,242,94,60,48,138,6,57,246,137,110,89,206,179,71,38,142,75,116,226,234,246,3,37,206,132,56,115,234,234,190,233,216,30,113,108,2,22,224,248,148,76,76,139,18,94,149,56,163,127,209,177,239,213,129,218,120,74,116,143,189,220,49,192,88,198,190,227,190,144,177,75,89,253,58,49,168,69,249,55,151,218,250,204,180,31,234,156,146,15,173,121,19,234,2,145,184,158,101,122,62,20,1,254,253,113,131,131,193,229,1,193,12,234,154,79,212,32,19,215,153,145,219,59,223,153,155,99,192,117,103,184,115,224,184,116,184,3,34,14,119,60,119,60,220,65,224,239,1,157,225,253,71,221,163,195,123,106,15,183,3,111,248,46,84,8,188,9,245,113,199,80,36,35,40,199,91,170,3,90,6,153,130,72,64,254, +145,120,116,166,219,190,57,246,128,27,74,1,46,207,41,218,54,114,127,229,3,16,179,52,7,241,43,137,145,232,225,128,51,81,162,157,204,22,240,243,147,233,30,218,190,251,178,208,206,176,23,189,25,112,185,41,72,152,48,38,217,154,195,30,240,75,77,213,186,91,71,236,231,7,53,236,4,228,130,217,38,57,165,254,212,49,200,9,232,48,213,29,218,169,238,112,109,206,168,19,248,195,154,105,251,195,45,214,47,238,239,164,50,156,81,185,19,144,225,143,131,123,104,78,212,28,212,228,119,64,5,95,126,104,146,153,55,216,194,38,181,62,168,204,247,136,207,139,147,39,221,10,40,148,35,51,19,204,140,142,29,219,96,90,245,209,226,136,63,165,11,37,125,135,156,5,150,5,61,15,137,192,107,102,142,220,242,177,57,135,140,44,103,252,136,149,103,142,65,185,184,76,216,86,190,212,7,211,192,126,188,50,127,163,107,200,29,213,205,147,220,251,109,65,114,96,122,140,149,136,7,181,80,160,219,31,182,69,65,214,229,13,221,135,94,79,117,195,99,6,247,236,194,96,1,152, +92,67,61,131,59,66,185,62,244,193,221,214,63,201,37,245,3,23,60,195,240,189,143,254,6,233,204,184,230,199,83,221,180,1,143,70,49,44,142,168,255,25,154,181,0,139,225,22,168,195,243,5,26,39,199,31,209,95,161,105,95,95,12,239,63,239,159,125,58,57,188,35,153,143,147,64,189,103,64,69,132,7,181,173,123,249,61,107,100,32,32,10,229,208,201,220,1,12,169,139,0,33,100,150,57,242,188,169,70,188,9,232,27,58,134,7,238,11,60,2,18,68,119,8,46,111,76,209,81,156,221,156,156,224,131,137,110,90,129,75,27,9,131,95,34,247,249,28,58,107,141,241,66,194,87,190,11,184,13,127,28,214,197,3,227,217,113,141,97,221,114,224,105,134,145,112,241,184,169,8,81,81,112,164,156,52,14,46,241,189,84,155,181,4,53,217,103,134,153,129,121,204,117,127,10,62,40,174,196,184,185,35,236,67,148,153,88,250,131,135,133,36,2,200,109,216,9,161,71,112,99,84,250,220,159,32,111,220,36,229,241,4,141,48,242,254,186,31,26,40,227,128,60,155,62,12, +46,12,237,240,5,111,150,187,71,254,132,181,212,144,180,201,232,102,168,11,235,44,170,140,252,18,23,134,177,110,228,131,1,195,16,19,120,220,37,128,121,11,211,158,5,160,172,17,242,110,81,24,43,226,34,148,28,88,142,71,107,91,97,201,231,41,5,250,208,15,188,41,53,26,194,214,196,7,182,38,70,208,44,177,122,82,233,14,204,181,96,62,216,215,97,174,213,59,240,93,139,121,143,195,179,235,195,203,30,155,120,117,52,0,21,171,31,64,253,203,195,253,79,131,237,255,112,140,25,0,166,205,58,54,131,167,145,75,240,228,240,151,235,136,220,247,36,205,47,151,199,215,135,41,162,204,71,172,160,122,121,124,244,57,151,236,254,197,197,225,89,154,89,125,14,191,174,98,247,250,252,34,143,236,1,64,192,216,61,192,169,7,13,9,79,136,233,19,195,161,158,61,252,187,79,232,55,24,155,18,228,115,168,29,126,61,56,185,185,58,254,149,17,212,3,112,2,68,152,238,191,3,10,150,0,158,2,77,8,233,227,99,152,216,224,196,4,91,212,45,132,253,133,55,5,190, +148,243,197,20,204,141,136,77,33,192,146,188,57,29,155,19,19,234,49,34,232,73,177,12,124,66,115,70,62,6,31,207,175,175,207,79,243,96,184,190,188,57,59,216,95,212,27,154,190,239,6,48,39,68,100,76,198,255,111,212,117,72,13,166,178,163,23,230,244,79,133,133,99,235,188,231,73,172,203,30,125,153,29,179,206,232,145,26,204,31,103,38,115,156,222,86,150,85,199,220,195,111,241,15,156,77,160,20,199,151,55,87,151,117,114,252,133,127,124,229,31,151,95,190,222,128,92,55,30,184,106,169,129,76,125,198,136,28,95,30,93,94,32,45,254,241,149,127,0,173,35,160,117,228,58,193,92,38,182,138,214,249,245,103,164,197,63,190,242,15,160,117,14,180,46,98,42,108,80,116,192,50,220,213,220,237,159,156,64,229,75,236,171,2,75,54,25,183,172,85,53,191,240,154,95,88,135,44,87,245,43,175,122,248,141,142,3,95,31,129,133,140,94,138,212,3,73,247,81,3,182,11,157,192,53,199,62,205,100,122,245,208,143,182,137,34,231,13,131,229,134,60,164,84,213,176, +23,78,160,120,239,17,67,85,98,84,66,73,177,143,227,68,231,175,60,236,20,211,2,51,159,106,212,192,72,253,185,122,192,209,136,233,129,1,250,108,194,116,29,208,98,171,79,238,88,211,222,255,127,91,101,140,196,176,150,82,136,80,149,4,231,147,99,26,124,217,128,85,64,45,5,212,8,216,114,9,35,248,89,101,62,109,99,104,9,13,136,82,121,168,176,225,3,53,7,194,130,150,240,27,44,55,35,201,189,124,144,98,28,215,65,231,18,67,12,185,214,92,95,102,228,18,114,35,199,177,24,114,156,92,5,22,237,88,70,56,167,222,148,148,77,159,19,253,131,243,24,89,115,98,62,205,35,37,92,99,33,11,210,42,48,36,21,119,9,152,35,200,61,161,65,138,193,254,9,99,60,43,156,72,22,190,188,94,213,30,131,83,149,108,118,97,89,145,47,110,49,105,175,94,236,113,161,30,24,201,137,53,214,237,128,88,119,234,58,54,44,192,37,145,248,138,213,192,97,59,217,35,195,53,172,112,152,30,216,129,254,128,171,249,39,115,76,55,150,156,210,199,44,201,195,69, +43,240,180,219,42,23,211,64,146,101,161,145,87,166,172,201,59,194,62,66,99,112,60,19,35,142,82,44,132,62,122,146,221,71,5,216,186,35,177,28,205,197,181,81,105,216,227,194,241,242,45,40,87,54,194,107,174,107,73,145,238,49,42,20,184,46,181,253,8,10,82,3,40,216,66,96,139,123,13,44,196,246,29,80,48,12,9,23,197,169,248,204,3,70,132,106,230,29,64,168,82,31,146,142,88,228,134,40,222,106,54,81,193,76,226,84,127,164,75,84,32,135,158,178,124,154,168,94,97,180,105,85,32,9,103,35,98,109,175,231,106,132,12,50,130,70,11,33,162,245,156,223,37,152,255,211,50,196,150,205,35,68,213,215,26,234,162,206,185,210,80,215,20,30,99,250,76,244,124,231,47,237,56,96,233,165,128,8,114,155,56,254,133,230,238,136,248,146,141,26,238,43,69,168,9,92,216,51,225,14,29,240,102,224,14,193,207,165,128,148,92,93,238,44,56,119,254,116,45,79,104,113,117,226,74,90,160,79,208,107,89,215,149,70,236,184,97,168,73,103,115,255,165,232,44,44, +210,209,242,200,242,122,122,170,60,164,188,129,254,206,159,168,107,57,186,209,40,164,201,98,83,191,106,52,85,116,7,0,157,231,137,105,63,174,212,213,106,223,18,146,170,98,149,226,154,15,73,29,21,168,228,235,238,3,245,51,60,180,247,50,27,57,184,45,104,1,119,225,180,52,92,140,96,75,166,173,179,157,183,244,190,242,230,174,90,55,42,130,55,36,245,42,93,160,60,188,151,212,131,145,36,13,239,226,206,9,192,109,250,30,172,240,190,69,47,4,165,10,176,181,96,45,114,1,205,84,3,111,72,237,47,132,176,197,33,30,59,179,185,69,191,97,230,130,5,166,250,196,86,215,128,59,34,78,141,76,192,233,100,2,246,139,69,171,69,29,102,254,34,51,133,121,248,212,4,57,41,167,88,43,196,53,6,181,172,69,0,155,47,129,163,12,183,122,99,135,70,106,180,241,0,238,245,128,236,76,157,25,221,25,220,98,248,55,240,168,203,2,34,91,169,249,173,110,115,15,72,60,198,193,58,187,162,192,240,1,95,149,148,16,49,174,177,92,68,121,205,19,139,89,66,10, +114,134,46,223,159,66,71,91,160,133,222,95,183,158,245,23,143,148,16,117,223,247,221,204,53,160,60,76,243,66,203,250,79,72,105,211,153,20,35,194,139,115,122,153,93,69,103,175,66,156,143,194,20,3,124,108,142,2,116,251,0,117,218,157,231,174,22,201,32,94,148,115,218,21,244,19,129,236,234,73,80,41,116,95,101,254,243,186,168,47,46,140,170,198,250,106,153,21,39,225,47,132,246,213,250,182,188,84,59,107,2,125,149,13,116,180,6,40,102,226,131,198,235,193,94,40,202,93,22,250,87,88,205,191,145,74,50,230,68,85,251,154,99,123,226,148,136,97,137,245,14,75,187,75,231,225,9,143,131,52,171,142,19,196,65,170,176,181,16,36,54,162,225,162,73,55,225,189,9,109,187,51,150,185,73,244,17,166,194,37,16,76,69,181,48,61,46,53,212,23,48,224,44,220,22,19,22,87,216,107,17,152,82,144,71,88,103,66,70,217,171,21,198,150,97,104,46,157,187,212,163,11,253,159,83,203,51,178,77,0,4,35,225,25,132,133,12,47,43,138,156,78,34,172,206,198, +16,50,150,46,8,96,229,90,207,112,91,93,203,112,150,201,157,181,11,145,99,60,85,202,191,98,55,2,161,72,219,84,152,135,137,56,13,22,128,170,192,47,157,232,158,127,234,24,230,228,5,115,101,11,26,10,22,189,99,201,181,161,153,36,201,188,166,193,88,208,18,134,105,205,137,57,230,238,7,115,113,5,42,41,132,36,76,54,243,67,197,112,74,142,168,172,228,10,231,244,58,192,173,24,85,37,253,101,47,116,241,77,202,18,211,200,135,43,87,40,254,90,182,185,207,234,108,108,155,49,153,87,183,77,177,161,192,64,121,77,107,92,141,204,122,214,88,61,84,175,103,141,18,214,121,30,96,83,59,196,237,183,67,150,161,89,126,55,39,174,251,106,86,135,50,153,11,86,22,205,50,194,189,198,130,162,126,10,195,29,235,202,187,64,224,237,132,142,2,55,133,19,53,102,24,186,93,87,238,68,245,183,147,58,17,232,45,42,185,51,126,164,254,218,130,75,181,223,80,110,198,69,65,129,47,204,249,218,253,57,174,251,118,194,242,4,242,57,112,82,80,224,143,120,244,104, +93,137,165,202,111,39,50,59,60,197,179,224,117,171,140,67,187,226,85,54,113,225,41,18,111,7,195,120,170,187,250,24,79,31,173,1,5,6,249,29,123,225,252,84,250,104,24,17,229,10,29,135,98,231,25,130,217,8,56,130,65,151,229,4,145,185,235,224,224,10,38,106,4,44,50,174,243,163,99,225,25,206,6,57,198,109,87,3,10,248,236,112,195,88,183,172,240,168,230,151,41,181,191,232,38,172,147,157,192,55,237,226,59,2,88,241,194,117,30,0,44,47,57,29,60,210,125,152,92,224,207,193,79,57,171,175,220,101,217,207,8,136,76,58,4,224,152,237,132,96,30,78,157,167,224,60,232,152,88,207,15,200,130,164,252,168,31,238,151,200,162,139,227,114,19,211,5,11,100,71,148,41,42,19,16,123,50,13,145,178,167,207,156,128,239,73,243,170,24,115,193,19,166,225,89,145,17,197,157,101,65,208,165,6,39,201,143,40,74,52,103,250,75,72,151,31,87,116,124,48,151,69,226,12,127,137,88,157,140,2,159,111,82,128,36,145,134,148,112,10,197,50,142,208,76,217, +174,183,62,114,220,133,45,142,132,162,121,126,84,161,83,161,215,162,142,56,23,234,37,206,132,230,27,116,102,56,25,147,153,135,239,135,245,248,204,100,182,149,111,22,59,230,41,211,195,247,188,63,251,238,194,107,233,160,37,46,234,239,135,255,184,63,62,187,30,222,159,238,127,141,251,61,59,75,137,43,42,207,151,87,249,3,209,147,24,154,81,134,93,226,36,156,136,90,122,48,240,153,44,125,157,101,50,45,164,119,178,115,167,44,57,47,152,32,182,233,184,51,231,219,119,95,152,98,29,98,56,48,148,70,44,241,131,222,241,217,35,113,228,181,177,180,251,131,127,10,192,122,94,88,186,61,244,243,162,131,114,144,173,76,238,173,11,169,244,34,216,80,165,161,43,95,91,203,161,102,217,225,134,18,170,93,170,159,88,141,165,45,224,175,161,218,43,253,137,226,232,25,14,189,56,138,161,50,75,15,196,130,78,246,248,43,63,130,6,98,165,85,148,75,143,26,139,215,160,250,19,77,229,16,9,236,153,106,113,3,173,92,78,81,21,7,248,229,145,234,46,49,110,145,1,27, +160,198,186,29,29,219,67,163,194,129,42,195,105,23,200,31,115,116,35,67,167,171,247,225,195,138,107,40,49,51,55,57,134,95,234,33,73,200,255,183,144,205,235,45,49,164,120,19,196,235,245,19,89,121,208,18,83,30,94,51,145,217,41,76,187,80,151,128,98,36,187,67,144,255,135,61,98,81,83,245,140,46,146,153,64,25,119,141,82,74,192,235,45,86,14,100,165,187,83,90,89,100,192,70,162,48,45,47,88,150,169,244,23,84,222,138,25,232,1,98,230,6,24,51,130,169,189,175,155,86,129,123,73,216,103,164,112,111,122,197,47,128,136,186,231,123,126,150,69,86,104,84,136,221,38,35,190,103,43,86,92,39,17,231,75,198,44,54,200,71,211,54,164,171,70,76,120,165,219,227,196,197,29,162,186,108,192,139,211,241,101,215,20,201,251,205,17,20,140,74,250,190,162,212,213,49,171,238,46,138,119,87,225,73,129,251,139,78,157,39,138,135,143,241,225,79,41,10,63,223,139,203,141,164,187,141,108,234,225,180,104,74,173,57,76,98,162,155,129,76,105,241,233,153,179,185, +101,78,94,68,250,151,235,137,69,91,198,237,69,164,134,15,165,251,135,76,252,37,17,111,131,223,241,38,162,45,145,13,28,167,129,51,5,49,6,26,241,158,58,103,40,227,238,32,217,228,94,227,46,29,89,85,176,10,58,99,135,32,147,119,170,44,77,163,59,99,199,28,139,6,7,160,48,169,161,247,216,90,146,125,177,42,87,160,112,20,96,65,182,27,88,53,100,139,150,181,209,13,165,11,203,133,233,141,196,52,82,243,239,130,2,102,110,105,151,22,239,168,148,120,71,37,196,123,96,87,29,188,181,124,124,3,191,176,128,124,163,190,160,132,97,214,65,134,48,225,233,182,124,169,54,17,42,218,238,133,101,87,142,112,75,54,215,161,82,97,17,179,247,201,55,232,134,27,72,204,183,20,75,74,28,86,42,39,241,194,238,235,159,43,171,200,182,203,74,232,42,144,196,38,37,145,110,253,25,205,241,171,251,28,152,150,102,103,68,135,151,91,137,147,209,81,106,19,159,133,0,76,44,142,144,141,240,90,8,70,12,125,207,13,83,175,155,32,24,11,251,125,169,61,237,243, +24,46,123,6,35,114,104,78,225,161,148,92,40,214,146,247,216,227,75,134,28,89,163,165,1,47,87,172,31,136,93,132,28,187,55,23,118,132,203,242,27,109,240,22,97,58,42,92,25,231,139,219,186,101,217,23,251,180,69,152,23,69,43,99,61,107,111,182,52,251,124,219,167,16,251,188,104,101,236,47,221,123,42,43,7,219,84,44,34,5,43,88,153,12,185,219,136,101,249,199,109,224,34,236,99,185,202,184,79,237,251,150,182,30,182,75,94,200,120,88,201,234,76,95,222,158,47,203,53,110,147,224,202,175,8,223,97,217,138,56,119,5,185,53,57,103,219,0,69,89,143,10,87,196,59,198,232,55,224,29,145,60,183,173,66,110,62,44,91,5,231,184,32,70,216,135,219,14,80,20,163,239,154,50,196,87,150,21,145,34,46,93,145,6,104,68,112,45,254,175,29,177,39,82,120,113,30,214,40,60,95,150,83,248,115,206,5,177,233,2,43,228,235,134,56,235,214,32,231,129,63,15,68,212,61,62,10,13,223,60,115,102,90,58,187,29,245,198,54,191,17,11,103,82,179,25, +204,176,135,127,247,48,102,8,213,214,68,227,235,204,42,3,5,20,175,24,7,155,124,155,89,17,4,151,97,144,71,156,255,11,239,19,3,111,7,191,2,1,44,236,235,15,245,120,225,204,130,33,75,206,160,120,236,88,168,79,191,249,189,133,88,93,75,109,54,123,237,238,110,231,39,140,111,253,220,110,181,250,214,142,182,235,194,63,127,71,109,141,224,223,7,117,155,7,134,254,129,145,33,188,142,182,135,147,37,30,189,235,245,160,120,27,138,183,161,120,27,138,183,63,104,68,180,192,95,38,105,213,212,78,119,75,80,219,143,38,187,80,82,60,187,112,60,207,196,171,0,127,197,219,143,107,222,86,126,11,200,206,1,241,95,96,32,12,235,227,89,81,148,95,186,204,187,30,158,149,173,139,193,162,206,6,186,58,31,178,135,219,98,204,174,199,211,16,233,25,187,60,113,16,115,135,13,6,166,145,104,111,63,212,83,148,80,195,82,83,108,30,66,224,183,56,47,144,120,216,156,4,219,242,221,144,198,44,92,247,203,116,78,178,215,246,166,77,254,15,254,244,78,79,49,120, +251,137,124,254,12,95,123,87,87,162,11,47,80,214,195,245,117,138,178,188,134,46,71,83,186,30,51,65,214,125,254,198,255,166,34,148,5,99,157,107,197,231,101,15,18,125,175,69,193,249,40,132,28,173,126,63,133,55,89,75,161,246,117,220,85,220,216,178,93,110,153,131,106,115,202,162,171,21,194,83,202,241,65,102,230,18,146,246,151,216,47,45,182,221,85,70,216,85,167,12,171,135,225,149,206,20,2,170,190,158,188,81,104,5,154,137,172,12,113,148,112,163,237,152,226,65,126,118,97,11,124,69,215,107,208,201,226,204,71,60,150,97,249,149,201,116,71,248,167,156,45,183,228,116,220,207,34,237,155,49,22,238,5,39,216,229,107,0,78,52,60,62,136,56,45,236,49,17,106,177,255,61,100,97,182,7,72,13,6,255,5,101,128,198,91, diff --git a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tpp b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tpp index 5a0de6328..579f39ca3 100644 --- a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tpp +++ b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tpp @@ -40,16 +40,16 @@ Returns `*this for method chaining.&] [s5;:Upp`:`:SshSession`:`:Keys`(const Upp`:`:String`&`,const Upp`:`:String`&`,const Upp`:`:String`&`,bool`): [_^Upp`:`:SshSession^ S shSession][@(0.0.255) `&]_[* Keys]([@(0.0.255) const]_[_^Upp`:`:String^ String][@(0.0.255) `& ]_[*@3 prikey], [@(0.0.255) const]_[_^Upp`:`:String^ String][@(0.0.255) `&]_[*@3 pubkey], -[@(0.0.255) const]_[_^Upp`:`:String^ String][@(0.0.255) `&]_[*@3 phrase]_`=_Null, +[@(0.0.255) const]_[_^Upp`:`:String^ String][@(0.0.255) `&]_[*@3 phrase], [@(0.0.255) bool]_[*@3 fromfile]_`=_[@(0.0.255) true])&] [s2;%% Sets the asymmetric encryption keys to be used to authenticate the session. [%-*@3 phrase] can be used to decipher the private -key. If phrase is not specified, supplied password will be used -instead. Returns `*this for method chaining. Note that when the -[%-*@3 fromfile] parameter is true, [%-*@3 prikey] and [%-*@3 pubkey] -strings will be treated as file paths to the respective key files. -This is the default behaviour. Otherwise they will be treated -as memory buffers containing the actual keys.&] +key, or it can be empty (not recommended). Returns `*this for +method chaining. Note that when the [%-*@3 fromfile] parameter +is true, [%-*@3 prikey] and [%-*@3 pubkey] strings will be treated +as file paths to the respective key files. This is the default +behaviour. Otherwise they will be treated as memory buffers containing +the actual keys.&] [s3;%% &] [s4; &] [s5;:Upp`:`:SshSession`:`:Method`(int`,Upp`:`:Value`): [_^Upp`:`:SshSession^ SshSession @@ -201,6 +201,14 @@ authentication phase to allow user to query or set the authentication method(s)&] [s3; &] [s4; &] +[s5;:Upp`:`:SshSession`:`:WhenPhase: [_^Upp`:`:Event^ Event]<[@(0.0.255) int]>_[* WhenPhase +]&] +[s2;%% This event is invoked at certain phases of connection process, +and is meant to be informational. Possible values of its parameter +are: [*C PHASE`_DNS, PHASE`_CONNECTION, PHASE`_HANDSHAKE, PHASE`_AUTHORIZATION, +PHASE`_SUCCESS]&] +[s3; &] +[s4; &] [s5;:Upp`:`:SshSession`:`:WhenVerify: [_^Upp`:`:Gate^ Gate]<[_^Upp`:`:String^ String], [@(0.0.255) int]>_[* WhenVerify]&] [s0;l288;%% This gate is invoked after a successful protocol handshake diff --git a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tppi b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tppi index f3494a858..3309f5ed1 100644 --- a/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tppi +++ b/uppsrc/Core/SSH/src.tpp/Upp_Ssh_Session_en-us.tppi @@ -1,18 +1,19 @@ TITLE("Session") COMPRESSED -120,156,197,26,13,115,26,183,242,175,104,146,182,15,50,128,239,131,3,12,237,27,39,196,137,51,249,156,226,246,165,195,156,125,226,16,112,245,125,189,147,206,14,175,109,126,251,219,149,116,31,216,96,155,56,105,51,14,112,186,213,106,191,181,187,210,52,232,118,7,35,106,57,163,139,215,239,15,71,22,249,238,59,179,101,60,182,251,166,61,112,108,179,107,245,224,195,180,77,203,177,236,174,57,176,14,187,3,219,30,24,67,63,164,156,187,211,208,26,12,228,36,171,101,61,182,250,142,101,246,187,131,238,192,180,251,3,11,230,90,134,97,25,125,203,49,187,246,192,114,134,115,198,125,119,106,0,184,13,107,28,246,236,67,195,52,140,190,105,26,182,213,55,108,167,107,154,182,5,40,172,190,101,26,206,144,197,115,119,122,210,27,225,132,46,76,48,156,158,97,24,61,192,214,237,26,128,29,167,117,109,211,54,44,219,49,15,157,222,112,198,150,65,236,78,111,178,228,220,201,82,223,24,6,130,69,154,35,218,29,61,57,114,70,38,76,237,181,122,143,251,176,108,215,129,197, -14,145,35,27,166,89,86,207,57,52,157,46,144,212,53,172,97,198,254,155,7,25,139,88,44,52,134,192,52,45,115,52,51,251,35,32,225,243,231,207,29,179,107,40,73,245,129,22,211,0,186,45,19,198,128,143,190,233,28,26,135,206,192,28,24,118,191,107,57,125,96,61,165,25,141,52,39,179,174,53,210,124,12,90,131,199,61,179,7,18,53,6,64,191,115,8,8,12,96,2,190,65,144,14,252,217,131,161,208,147,113,30,78,58,108,29,62,6,33,217,142,209,63,52,250,221,190,211,5,78,44,179,103,130,32,13,228,31,212,48,140,147,44,162,161,59,197,9,6,202,250,142,127,195,231,108,65,243,16,216,253,227,252,47,50,37,127,252,97,226,240,81,3,84,216,233,90,29,163,73,166,220,24,125,255,61,153,62,57,234,143,186,100,194,87,19,198,121,144,196,174,251,215,95,63,184,83,110,143,8,126,153,163,225,47,105,234,13,189,97,5,130,79,210,194,134,100,122,212,48,58,70,7,152,109,218,68,91,157,77,206,221,233,19,187,142,19,199,134,48,90,135,78,243,89,24, -248,5,248,145,61,146,51,92,92,212,24,61,150,106,2,250,78,87,1,87,136,9,139,125,154,242,60,164,130,113,66,9,103,126,158,49,194,87,44,12,73,227,146,101,184,18,177,154,0,29,128,166,225,189,92,187,67,94,9,2,56,50,198,211,36,230,193,44,100,100,145,100,132,113,65,129,0,190,10,226,101,139,208,92,172,96,82,224,83,161,158,227,57,137,104,76,193,98,151,176,150,159,173,83,145,44,51,154,174,0,36,12,215,122,245,185,94,94,175,69,224,143,198,100,50,57,177,136,159,68,105,24,80,73,72,6,212,117,106,242,208,12,1,85,115,150,5,151,128,102,145,37,17,153,158,137,36,13,124,16,239,129,119,48,78,50,230,29,0,42,239,128,103,190,119,128,90,56,7,20,222,249,51,202,153,119,206,98,175,157,115,239,113,165,157,82,45,103,82,144,100,6,112,106,37,197,207,138,114,2,232,47,128,32,96,13,120,229,157,74,209,133,137,188,104,152,214,160,249,82,126,30,153,149,149,144,15,82,93,228,45,19,171,100,78,222,4,92,92,179,20,103,135,165,156,6, -17,75,114,225,53,130,88,120,77,48,153,243,179,27,112,103,27,198,82,89,9,241,126,112,207,97,113,141,195,109,212,223,1,62,124,121,100,147,136,187,77,36,193,66,90,39,76,112,34,212,4,114,73,195,156,1,36,137,2,208,53,243,147,120,206,59,8,130,106,38,160,243,107,144,34,33,239,114,80,104,154,35,18,120,93,83,90,50,251,157,249,2,151,77,200,44,76,252,11,68,17,37,115,214,33,63,51,145,103,49,39,222,19,129,246,138,246,21,41,65,249,43,26,196,0,216,33,239,18,1,248,87,20,12,130,175,8,207,103,124,205,33,166,113,169,27,0,139,99,22,130,77,196,43,48,9,129,107,7,25,152,135,116,227,77,34,185,178,22,5,81,88,185,82,4,176,143,63,186,183,107,228,132,242,213,233,58,101,94,3,127,125,169,78,10,44,174,196,162,20,177,186,161,7,16,33,134,95,240,54,38,45,112,69,4,204,145,18,82,126,65,22,32,29,150,165,25,200,181,67,198,224,62,51,70,166,99,114,242,20,76,255,252,237,115,135,184,0,91,14,76,78,158,154,46,104, -16,190,208,127,16,127,33,36,137,157,134,203,4,228,183,138,238,165,148,125,164,246,154,173,185,215,0,11,226,130,20,0,2,168,94,122,63,120,173,253,134,103,73,18,126,169,216,145,140,77,63,144,139,192,187,10,153,92,8,16,201,239,45,72,64,83,32,239,11,182,118,91,228,225,152,242,217,215,194,180,202,32,100,185,231,222,79,231,232,132,155,24,81,102,26,14,205,127,17,132,10,178,14,35,178,156,109,179,64,202,215,17,168,62,131,248,5,155,8,198,114,244,103,160,154,163,195,131,189,229,28,172,19,126,214,182,1,38,103,150,155,200,244,251,118,141,68,226,43,59,45,230,205,153,31,164,224,184,114,14,136,246,18,231,3,126,216,124,22,122,14,90,107,156,128,243,167,0,187,8,216,188,5,49,32,133,45,2,48,164,16,163,175,146,108,78,174,2,136,61,5,222,0,68,200,232,124,223,232,114,5,28,72,58,52,201,165,180,136,204,60,152,0,50,209,115,64,86,173,146,45,101,13,50,20,21,67,74,173,132,75,133,241,146,52,145,49,138,190,12,155,9,98,5,164,98, -37,197,168,92,29,217,19,176,165,33,247,18,0,194,173,220,195,175,57,235,140,173,232,101,144,228,176,47,190,135,241,236,10,162,51,2,172,183,45,20,177,40,201,214,100,150,47,22,176,205,163,113,9,197,183,210,174,47,114,26,74,117,238,229,208,106,43,83,251,82,75,67,252,138,1,246,75,93,83,33,220,181,73,97,220,67,47,41,17,203,181,206,136,252,42,54,50,133,97,139,9,167,25,3,222,49,227,16,25,141,33,149,201,68,97,4,104,15,8,162,31,181,254,228,114,32,251,18,90,143,107,40,183,50,134,136,174,11,145,98,90,5,98,13,11,100,45,2,184,41,129,173,83,144,100,161,7,33,157,184,130,8,171,214,76,224,77,69,155,70,142,240,133,137,100,0,128,102,133,208,33,163,27,224,0,0,233,137,248,234,161,90,41,2,162,117,93,210,111,105,250,48,197,98,216,221,84,30,160,212,250,131,95,27,42,188,153,144,108,215,3,7,21,105,236,74,202,124,149,228,225,188,212,7,24,181,215,86,169,73,74,65,150,45,116,239,140,169,216,149,49,16,37,199,92,55, -77,184,202,108,181,212,80,249,58,235,211,41,67,5,91,170,24,133,12,174,24,164,33,187,97,84,13,222,220,173,229,127,90,189,31,116,184,124,10,209,218,107,124,169,82,235,88,220,198,182,93,163,86,19,192,118,81,136,54,193,196,26,118,146,50,104,111,194,237,193,237,189,120,149,105,55,108,250,15,100,182,142,102,63,110,85,157,38,227,249,55,229,244,4,140,12,75,155,7,170,117,3,205,126,156,174,208,204,177,106,250,198,58,5,53,204,18,250,80,251,173,99,217,143,207,11,61,211,107,195,238,196,50,170,54,236,6,112,18,134,12,146,241,3,93,43,179,230,183,149,195,211,37,160,126,152,16,74,20,117,9,28,199,80,217,67,204,203,185,172,222,99,44,184,188,54,69,80,73,241,46,166,118,103,87,50,131,209,163,186,155,196,11,199,192,232,87,75,249,138,148,82,135,219,61,196,241,146,137,19,64,22,178,82,28,111,94,61,195,94,2,84,61,199,147,201,171,247,239,206,200,245,145,77,153,60,145,50,41,241,148,50,41,57,164,176,83,72,157,23,9,91,24,204,64,56, -86,217,192,88,201,137,216,199,224,185,239,51,108,29,188,251,229,205,27,28,88,208,32,204,51,182,31,67,207,176,172,205,144,33,89,17,108,40,121,179,34,208,148,171,9,64,249,249,205,114,162,84,112,165,48,166,171,72,14,126,139,19,73,176,32,244,18,40,69,11,216,143,212,23,85,29,186,7,189,181,89,123,16,141,205,161,28,247,208,121,176,100,42,183,170,120,241,254,197,85,40,194,144,11,217,41,201,232,21,153,173,5,227,205,13,197,160,37,199,132,69,169,88,107,162,106,106,34,13,214,1,195,189,86,123,151,213,49,137,130,229,74,200,130,4,108,181,148,88,179,35,203,122,85,163,235,26,135,51,161,61,73,22,21,247,235,81,21,162,221,210,166,186,165,17,113,86,54,21,26,77,87,251,219,126,74,156,36,254,5,19,215,227,201,169,159,170,23,103,164,252,185,45,154,148,8,234,209,164,242,29,153,216,64,1,201,10,239,41,188,134,203,73,251,81,90,230,168,155,164,110,207,43,73,53,65,147,102,140,138,14,105,69,95,145,166,99,93,9,169,220,150,90,129,111,24, -16,70,174,210,130,212,228,202,205,201,164,196,82,79,42,9,205,88,149,76,194,203,217,154,120,143,48,238,121,143,52,198,194,152,106,229,194,42,240,87,133,61,149,249,39,215,54,91,175,48,116,181,217,218,190,140,202,101,189,71,245,114,23,246,172,34,199,197,57,224,46,97,114,197,50,31,75,238,144,9,136,117,251,85,133,32,105,220,79,118,169,7,170,219,36,3,229,200,111,247,199,157,225,225,223,90,107,53,92,123,105,46,135,88,176,125,7,231,213,134,85,42,239,82,146,179,161,190,211,21,118,217,66,16,6,10,121,1,149,246,14,116,82,108,126,14,25,123,44,176,177,93,144,48,4,129,23,57,46,234,22,158,228,134,135,37,137,124,196,24,37,179,37,245,184,53,171,0,93,41,225,151,98,122,33,192,182,149,30,110,142,237,82,202,88,246,2,16,238,70,170,32,231,226,167,244,147,10,176,238,194,106,84,202,139,47,68,90,116,91,101,135,133,130,63,239,225,185,10,213,88,33,216,146,183,232,55,50,111,209,191,107,132,21,35,219,104,35,144,159,48,108,81,61,152,186, -227,79,204,223,66,26,14,75,186,240,71,141,40,249,184,93,90,12,94,61,156,158,137,127,83,109,62,106,205,223,80,154,191,83,103,254,87,80,217,105,190,67,99,234,133,20,140,250,89,163,73,15,108,85,151,0,174,218,65,170,242,63,12,177,144,57,94,129,253,163,187,61,92,100,120,172,180,45,45,198,113,149,20,227,175,186,248,228,243,86,74,51,22,97,184,84,71,85,15,33,45,129,153,190,216,213,4,111,14,183,54,108,137,158,246,21,154,214,121,22,214,250,42,26,175,76,184,169,58,116,211,71,10,101,143,21,183,141,90,43,20,231,215,210,253,44,175,103,186,29,82,149,80,235,88,208,79,69,86,246,203,207,111,176,123,137,237,14,25,79,241,216,115,12,216,188,41,214,21,127,130,117,194,7,132,21,239,79,116,23,207,29,30,28,120,83,140,223,195,50,124,30,121,46,70,75,111,58,68,75,241,92,119,58,38,29,119,159,109,233,14,217,183,100,19,115,175,83,136,111,175,46,100,249,218,185,64,213,14,69,65,124,141,67,3,20,244,87,57,124,208,186,218,211,192,104, -217,208,147,220,110,116,208,145,195,221,230,182,143,246,159,7,220,47,12,224,186,226,46,147,96,46,21,87,1,213,195,64,53,90,157,27,214,121,217,195,255,255,3,217,3,200,100,17,44,235,81,233,248,18,18,135,51,34,191,220,31,101,222,83,1,86,229,143,44,161,25,2,161,51,177,40,16,66,137,15,233,145,87,67,100,67,95,251,92,154,37,34,241,147,80,22,164,124,69,47,96,104,133,41,29,170,2,157,80,37,72,240,4,245,77,182,38,242,56,81,225,186,145,243,238,201,33,102,108,247,224,79,54,29,54,243,185,253,88,44,138,135,107,89,217,125,217,220,154,204,53,120,115,63,102,127,133,140,99,177,174,179,251,18,54,141,51,130,159,183,100,183,55,157,186,148,139,194,184,77,50,75,236,144,224,73,80,124,153,92,160,96,22,216,136,160,133,67,44,242,112,155,218,111,72,226,82,46,32,101,32,171,100,186,164,184,151,213,178,232,139,56,185,138,73,3,28,14,43,223,166,4,131,240,142,13,95,166,234,111,65,179,37,200,17,95,196,52,98,213,30,30,231,209,12,137, -2,42,193,95,202,51,146,50,231,150,185,52,13,65,67,43,26,138,162,152,151,238,37,149,151,37,53,223,190,175,18,62,100,201,167,157,58,40,5,43,161,42,127,122,181,80,253,170,66,170,115,182,8,98,60,53,20,229,9,90,33,232,76,214,250,51,6,9,138,58,213,12,226,64,4,52,212,117,107,141,129,226,178,76,196,240,226,74,37,122,17,132,193,255,84,11,32,200,240,188,50,131,162,195,107,67,73,16,230,75,76,248,189,71,36,102,2,226,231,5,202,224,211,154,208,57,77,81,112,16,241,188,246,28,47,156,204,191,169,12,63,154,230,110,167,5,112,120,175,154,98,165,60,97,68,74,179,55,34,31,222,79,94,125,4,74,195,53,210,168,219,123,144,55,229,202,97,63,214,67,229,245,96,38,133,173,83,63,201,10,224,173,177,83,30,141,22,41,91,153,120,113,93,191,130,241,167,66,206,210,205,26,121,65,229,222,157,22,93,82,240,173,173,22,153,69,110,92,11,82,105,226,158,194,45,90,205,117,9,191,200,99,201,224,25,41,126,221,18,47,26,183,69,146,47,120, -213,44,181,88,144,182,45,224,224,77,173,25,245,47,212,245,47,169,214,50,35,252,226,30,120,209,150,146,5,182,12,64,210,2,2,206,229,246,174,142,213,208,209,74,84,234,134,143,38,64,166,227,10,179,186,134,70,177,51,82,128,74,172,89,225,168,53,22,90,55,238,175,37,179,226,12,92,6,198,2,41,111,201,243,220,154,247,71,10,25,197,219,105,62,171,174,130,217,224,163,243,0,89,130,72,80,69,58,210,128,119,186,13,131,153,134,60,75,14,68,40,207,174,241,1,237,55,203,149,113,187,10,157,190,81,146,68,41,38,60,167,8,45,199,235,160,5,89,170,97,161,23,40,66,2,6,169,130,129,50,124,49,108,235,80,81,233,12,165,93,15,34,101,251,67,119,146,228,68,140,41,215,67,10,133,141,24,0,247,185,238,54,78,52,237,9,222,194,2,81,135,247,188,238,86,123,82,169,218,147,250,17,70,61,49,211,55,33,252,106,165,61,220,210,251,124,99,161,122,86,251,217,189,115,221,57,43,151,37,144,204,36,17,21,250,110,163,31,38,197,70,185,121,189,140,40, -39,211,57,171,177,33,201,91,239,150,214,174,33,20,205,48,45,77,107,164,203,46,242,140,225,86,19,212,219,97,55,174,58,168,22,100,3,219,141,77,117,71,83,247,176,26,170,5,216,172,117,208,192,104,32,94,130,101,251,23,116,201,58,181,197,74,19,232,154,182,61,116,6,189,126,120,96,245,50,248,47,14,204,238,12,254,31,153,109,101,12,63,41,107,128,40,67,142,63,97,233,188,100,174,59,28,2,188,3,240,14,192,59,0,239,28,89,18,154,168,87,155,168,26,102,127,208,44,145,1,38,0,42,31,101,147,23,178,182,173,56,255,236,214,104,24,147,186,1,12,223,30,159,158,188,127,238,157,31,127,28,159,60,125,247,242,216,45,176,34,240,152,204,131,5,148,39,94,27,163,61,236,189,94,123,153,37,121,106,122,109,72,170,204,18,150,220,107,82,247,239,155,229,181,153,150,242,87,152,109,57,61,119,155,66,174,233,22,15,140,81,43,127,159,90,205,187,213,122,242,126,114,250,250,248,183,107,90,149,231,152,115,206,119,137,69,190,207,56,189,15,219,99,117,97,173, -49,86,183,165,193,153,14,32,212,77,100,162,211,252,59,133,113,15,105,140,143,223,141,127,254,237,195,41,30,120,170,200,115,43,248,164,6,190,41,32,202,56,88,133,215,246,69,70,118,9,17,96,204,67,75,194,60,12,68,173,52,243,73,35,11,126,143,231,148,133,242,209,59,10,215,156,98,216,13,131,188,3,9,198,157,171,204,252,219,64,172,193,173,32,54,196,249,135,1,248,148,139,187,86,161,153,143,71,12,119,188,6,44,187,32,98,72,157,238,99,182,111,159,142,229,33,33,238,247,255,184,237,246,239,97,186,64,240,189,108,22,225,54,69,178,138,168,175,2,153,215,214,177,108,155,228,234,96,142,105,221,9,182,51,168,86,16,94,251,240,142,229,162,185,115,39,192,221,88,178,32,101,209,220,236,25,164,113,109,192,59,74,82,22,67,60,235,248,73,180,211,67,148,209,168,68,66,142,185,238,255,1,244,93,122,38, +120,156,197,26,13,119,218,70,242,175,236,75,218,30,228,1,150,4,2,12,189,123,118,136,19,251,37,177,253,130,211,75,143,39,91,139,88,64,181,144,116,218,149,29,174,109,126,251,205,236,174,62,192,96,155,56,105,251,82,35,173,102,103,231,123,103,102,119,228,183,90,221,62,181,236,254,245,219,179,253,190,69,126,248,193,172,25,207,155,29,179,217,181,155,102,203,106,195,31,179,105,90,182,213,108,153,93,107,191,213,109,54,187,70,207,11,40,231,206,40,176,186,93,57,201,170,89,207,173,142,109,153,157,86,183,213,53,155,157,174,5,115,45,195,176,140,142,101,155,173,102,215,178,123,19,198,61,103,100,0,120,19,214,216,111,55,247,13,211,48,58,166,105,52,173,142,209,180,91,166,217,180,0,133,213,177,76,195,238,177,112,226,140,142,219,125,156,208,130,9,134,221,54,12,163,13,216,90,45,3,176,227,180,86,211,108,26,86,211,54,247,237,118,111,204,102,126,232,140,238,178,100,63,200,82,199,232,249,130,45,52,71,180,213,127,113,96,247,77,152,218,174,181,159,119,96, +217,150,13,139,237,35,71,77,152,102,89,109,123,223,180,91,64,82,203,176,122,9,251,111,234,39,108,193,66,161,49,248,166,105,153,253,177,217,233,3,9,95,190,124,105,152,45,67,73,170,3,180,152,6,208,109,153,48,6,124,116,76,123,223,216,183,187,102,215,104,118,90,150,221,1,214,99,154,208,133,230,100,220,178,250,154,143,110,173,251,188,109,182,65,162,70,23,232,183,247,1,129,1,76,192,47,8,210,134,127,205,110,79,232,201,56,15,39,237,215,246,159,131,144,154,182,209,217,55,58,173,142,221,2,78,44,179,109,130,32,13,228,31,212,208,11,163,100,65,3,103,132,19,12,148,245,3,255,245,94,177,41,77,3,96,247,247,171,63,201,136,252,254,187,137,195,7,21,80,97,163,101,53,140,42,25,113,163,255,227,143,100,244,226,160,211,111,145,33,159,15,25,231,126,20,58,206,159,127,254,228,140,120,179,79,240,199,236,247,62,198,177,219,115,123,5,8,190,73,11,235,145,209,65,197,104,24,13,96,182,218,36,218,234,154,228,202,25,189,104,150,113,226,88,15,70, +203,208,113,58,14,124,47,3,63,104,246,229,12,7,23,53,250,207,165,154,128,190,139,185,207,21,98,194,66,143,198,60,13,168,96,156,80,194,153,151,38,140,240,57,11,2,82,185,97,9,174,68,172,42,64,251,160,105,248,46,215,110,144,19,65,0,71,194,120,28,133,220,31,7,140,76,163,132,48,46,40,16,192,231,126,56,171,17,154,138,57,76,242,61,42,212,123,56,33,11,26,82,176,216,25,172,229,37,203,88,68,179,132,198,115,0,9,130,165,94,125,162,151,215,107,17,248,71,67,50,28,30,91,196,139,22,113,224,83,73,72,2,212,53,74,242,208,12,1,85,19,150,248,55,128,102,154,68,11,50,186,20,81,236,123,32,222,61,119,111,16,37,204,221,3,84,238,30,79,60,119,15,181,112,5,40,220,171,151,148,51,247,138,133,110,61,229,238,243,66,59,185,90,46,165,32,201,24,224,212,74,138,159,57,229,4,208,95,3,65,192,26,240,202,27,133,162,51,19,121,93,49,173,110,245,141,252,123,96,22,86,66,206,165,186,200,123,38,230,209,132,188,243,185,88,179, +20,123,139,165,92,248,11,22,165,194,173,248,161,112,171,96,50,87,151,119,224,46,87,140,165,176,18,226,254,228,92,193,226,26,135,83,41,127,3,124,248,241,160,73,22,220,169,34,9,22,210,58,100,130,19,161,38,144,27,26,164,12,32,201,194,7,93,51,47,10,39,188,129,32,168,102,2,58,95,131,20,17,57,77,65,161,113,138,72,224,115,73,105,209,248,55,230,9,92,54,34,227,32,242,174,17,197,34,154,176,6,249,192,68,154,132,156,184,47,4,218,43,218,215,66,9,202,155,83,63,4,192,6,57,141,4,224,159,83,48,8,62,39,60,29,243,37,135,152,198,165,110,0,44,12,89,0,54,17,206,193,36,4,174,237,39,96,30,210,141,87,137,228,202,90,20,68,102,229,74,17,192,62,62,180,238,215,200,49,229,243,139,101,204,220,10,62,125,173,78,50,44,142,196,162,20,49,191,163,7,16,33,134,95,240,54,38,45,112,78,4,204,145,18,82,126,65,166,32,29,150,196,9,200,181,65,6,224,62,99,70,70,3,114,124,8,166,127,245,254,149,77,28,128,205,7, +134,199,135,166,3,26,132,31,244,31,196,159,9,73,98,167,193,44,2,249,205,23,143,82,202,46,82,123,203,150,220,173,128,5,113,65,50,0,1,84,207,220,159,220,218,110,195,227,40,10,190,86,236,72,198,170,31,200,69,224,91,129,76,46,4,136,228,239,6,36,160,41,144,247,53,91,58,53,242,116,76,233,248,91,97,154,39,16,178,214,48,161,172,244,119,52,251,169,31,48,231,202,253,231,85,25,70,36,41,219,100,121,148,47,23,160,242,4,226,22,108,30,24,195,209,143,129,90,142,142,14,118,150,114,176,74,120,44,133,127,38,103,230,155,199,232,199,122,137,52,226,41,251,204,230,77,152,231,199,224,176,114,14,136,244,6,231,3,254,26,1,99,3,47,214,224,108,17,139,37,169,132,145,0,103,128,141,1,50,145,9,155,84,119,141,27,183,64,163,92,73,19,149,203,131,200,156,130,9,32,4,125,2,164,81,203,9,87,122,150,65,38,27,82,10,35,92,170,130,147,91,31,2,30,80,41,18,70,209,75,97,155,64,172,128,84,204,165,160,148,19,243,24,162,31,108, +86,200,159,4,128,64,42,119,231,53,55,28,179,57,189,241,163,20,118,188,51,24,79,110,33,238,34,192,114,211,66,11,182,136,146,37,25,167,211,41,108,224,104,54,66,241,173,244,231,137,148,6,82,97,59,185,170,218,164,212,142,83,211,16,191,96,232,252,90,167,83,8,183,109,63,24,209,208,106,115,196,114,173,75,34,127,178,45,74,97,216,96,164,113,194,128,119,204,37,68,66,67,72,82,18,145,25,1,218,3,130,232,87,173,63,185,28,200,62,135,214,227,26,202,41,140,97,65,151,153,72,49,97,2,177,6,25,50,105,161,148,192,166,40,72,52,213,131,144,40,220,66,236,84,107,70,240,165,160,77,35,71,248,204,68,18,0,64,179,66,232,128,209,21,112,0,128,196,67,124,243,32,172,20,1,113,184,44,233,247,52,126,154,98,49,160,174,42,15,80,106,253,193,211,138,10,239,166,26,155,245,192,65,69,26,187,146,50,159,71,105,48,201,245,1,70,237,214,85,210,17,83,144,101,13,221,59,97,42,58,37,12,68,201,49,139,141,35,174,114,86,45,53,84,190,206, +231,116,50,80,192,230,42,70,33,131,43,250,113,192,238,24,85,133,87,183,107,249,239,86,239,57,36,171,183,81,50,57,132,120,236,86,190,86,169,101,44,78,101,211,190,80,202,246,97,67,200,68,27,97,202,12,123,69,172,231,175,193,237,192,237,163,120,149,9,53,108,231,79,100,182,140,102,55,110,85,5,38,227,249,119,229,244,24,140,12,139,150,39,170,117,5,205,110,156,206,209,204,177,30,250,206,58,5,53,140,35,250,84,251,45,99,217,141,207,107,61,211,173,195,238,196,18,170,54,236,10,112,18,4,12,210,236,61,93,5,179,234,247,149,195,225,12,80,63,77,8,57,138,178,4,142,66,168,217,33,230,165,92,214,229,33,150,82,110,157,34,168,164,120,27,83,219,179,43,153,193,232,81,221,39,226,153,99,96,244,43,37,117,89,210,168,195,237,14,226,120,195,196,49,32,11,88,46,142,119,39,47,177,75,0,245,204,209,112,120,114,118,122,73,214,71,86,101,242,66,202,36,199,147,203,36,231,144,194,78,33,117,158,37,108,129,63,6,225,88,121,107,98,46,39,98, +135,130,167,158,199,176,41,112,250,241,221,59,28,152,82,63,72,19,182,27,67,47,177,96,77,144,33,153,235,175,40,121,53,215,215,148,171,9,64,249,213,221,66,33,87,112,161,48,166,235,67,14,126,139,19,137,63,37,244,6,40,69,11,216,141,212,215,69,133,185,3,189,165,89,59,16,141,109,159,20,247,208,137,63,99,42,183,42,120,113,255,193,85,40,194,144,11,217,41,73,232,45,25,47,5,227,213,21,197,160,37,135,186,106,80,68,149,212,68,42,172,1,134,187,86,85,231,117,47,89,248,179,185,32,88,107,128,173,230,18,131,98,227,56,175,190,117,89,194,153,208,158,36,139,138,199,117,159,50,209,110,104,64,221,211,98,184,204,219,5,149,170,163,253,109,55,37,14,35,239,154,137,245,120,114,225,197,234,195,37,201,31,55,69,147,28,65,57,154,20,190,35,19,27,40,17,89,230,61,153,215,112,57,105,55,74,243,28,117,149,212,205,121,37,41,38,104,210,140,126,214,251,44,232,203,210,116,158,198,152,202,109,168,21,248,138,1,97,228,202,45,72,77,46,220,156, +12,115,44,229,164,146,208,132,21,201,36,124,28,47,137,251,12,227,158,251,76,99,204,140,169,84,46,204,125,111,158,217,83,158,127,114,109,179,229,10,67,87,155,181,205,203,168,92,214,125,86,46,119,97,207,202,114,92,156,3,238,18,68,183,44,241,176,173,25,48,1,177,110,183,170,16,36,141,251,201,54,245,64,117,27,37,160,28,249,235,252,188,53,60,252,75,107,173,132,107,39,205,165,16,11,54,239,224,188,216,176,114,229,221,72,114,86,212,119,49,199,254,89,0,194,64,33,79,161,210,222,130,78,138,205,75,33,99,15,5,182,172,51,18,122,32,240,44,199,69,221,194,155,220,240,176,36,145,175,24,163,100,182,164,94,55,102,21,160,43,37,252,92,76,175,5,216,182,210,195,221,177,109,74,25,200,94,0,194,221,73,21,228,92,252,43,253,164,0,44,187,176,26,149,242,226,83,17,103,125,84,48,22,46,40,248,243,14,158,171,80,13,20,130,13,121,139,254,34,243,22,253,92,34,44,27,217,68,27,129,252,132,97,19,234,201,212,29,125,102,222,6,210,112,88,210, +133,15,37,162,228,235,102,105,49,248,244,116,122,134,222,93,181,121,168,53,111,69,105,222,86,157,121,223,64,101,23,233,22,141,169,15,82,48,234,177,68,147,30,216,168,46,1,92,213,253,88,229,127,24,98,33,115,188,5,251,71,119,123,186,200,240,192,104,83,90,140,227,42,41,198,167,178,248,228,251,70,74,19,182,192,112,169,14,161,158,66,90,4,51,61,177,173,189,93,237,109,108,201,18,61,237,27,180,163,211,36,40,245,85,52,94,153,112,83,117,156,166,15,11,176,9,233,79,125,181,109,148,90,161,56,191,148,238,39,105,57,211,109,144,162,132,90,134,130,126,206,178,178,143,31,222,97,247,18,219,29,50,158,226,129,230,0,176,185,35,172,43,254,0,235,132,63,16,86,220,63,208,93,92,167,183,183,231,142,48,126,247,242,240,121,224,58,24,45,221,81,15,45,197,117,156,209,128,52,156,93,182,165,7,100,95,147,77,204,157,206,23,190,191,186,144,229,181,62,125,209,14,69,65,124,139,227,0,20,244,55,57,86,208,186,218,209,192,104,222,208,147,220,174,116,208, +145,195,237,230,182,139,246,95,249,220,203,12,96,93,113,55,145,63,145,138,43,128,202,97,160,24,45,78,4,203,188,236,224,255,255,134,236,1,100,50,245,103,229,168,116,116,3,137,195,37,145,63,206,207,50,239,41,0,139,242,71,150,208,12,129,208,153,216,194,23,66,137,15,233,145,151,62,100,67,95,251,92,156,68,34,242,162,64,22,164,124,78,175,97,104,142,41,29,170,2,157,80,37,72,240,6,245,77,178,36,242,160,80,225,186,147,243,238,200,33,102,108,143,224,79,54,29,86,243,185,221,88,204,138,135,181,172,236,177,108,110,76,230,42,188,186,27,179,231,184,218,118,110,215,93,55,231,94,206,219,166,92,63,188,137,174,21,231,30,75,100,31,91,114,197,145,117,109,140,146,213,36,42,10,17,217,96,193,139,16,170,125,226,135,83,188,205,130,112,52,104,144,243,172,193,173,83,125,64,228,131,65,23,135,24,144,196,2,27,47,6,228,252,248,112,120,228,94,189,58,29,214,178,231,193,217,233,233,209,224,226,228,236,52,31,58,62,60,125,53,60,62,124,123,148,143, +28,126,188,56,62,251,112,242,159,195,21,184,225,199,193,224,104,56,116,118,147,234,47,144,199,77,151,101,177,190,129,173,248,146,224,223,123,106,134,187,161,50,151,183,194,184,201,222,102,216,119,42,11,125,42,197,145,133,153,105,26,108,114,166,59,246,117,35,23,144,150,37,123,15,116,70,49,67,40,213,38,215,97,116,27,146,10,132,49,236,39,84,37,24,108,154,216,70,103,170,171,33,104,50,3,235,196,15,33,168,165,200,140,194,116,49,70,162,248,170,210,242,74,70,86,40,52,0,187,159,211,64,100,45,146,117,59,217,209,143,207,147,232,243,86,29,20,134,140,80,133,33,159,76,85,23,48,147,234,132,77,253,16,164,234,139,252,92,50,19,116,34,59,40,99,6,118,170,78,131,253,208,23,62,13,116,55,160,196,64,118,185,40,183,111,45,122,225,7,254,255,84,99,197,79,38,40,23,40,229,220,58,20,90,65,58,195,50,202,125,70,66,38,96,87,186,70,25,124,94,18,58,161,49,10,14,246,17,183,62,193,11,58,147,239,42,195,79,166,185,61,56,0,56,124,87, +173,198,92,158,48,34,165,217,238,147,243,179,225,201,39,160,52,88,34,141,186,105,10,217,104,170,194,224,167,242,6,180,30,69,164,176,117,66,45,89,1,188,37,118,242,3,231,44,17,206,211,89,174,187,2,96,252,177,144,179,116,11,76,94,232,121,116,255,74,23,106,124,99,3,75,230,230,43,215,168,84,242,189,163,112,179,6,126,89,194,175,211,80,50,120,73,178,167,123,226,69,229,190,72,242,21,159,170,185,22,51,210,54,5,28,188,217,54,166,222,181,186,46,39,213,154,231,217,95,125,178,144,53,251,100,219,66,6,32,105,1,62,231,50,105,82,135,149,232,104,57,42,117,35,74,19,32,139,28,133,89,93,219,163,216,111,202,64,37,214,36,115,212,18,11,181,59,247,253,162,113,118,179,64,6,198,12,41,236,81,120,74,94,242,254,133,66,70,241,54,159,199,138,171,115,77,240,209,137,175,182,173,82,164,35,21,248,166,155,91,152,191,201,19,122,95,4,242,70,0,190,160,253,38,169,50,110,71,161,211,55,112,162,69,140,105,228,5,66,171,157,178,4,154,145,165, +218,64,122,129,44,36,96,144,202,24,200,195,23,195,29,148,138,66,103,40,237,114,16,201,155,74,186,63,39,39,98,76,89,15,41,20,210,27,0,220,229,122,224,32,210,180,71,120,107,13,68,29,60,242,122,96,233,77,37,192,47,202,7,67,229,116,87,223,47,241,138,149,118,112,75,247,203,157,133,202,181,194,23,231,193,117,39,44,95,150,64,138,24,97,10,163,238,130,122,65,148,109,148,171,215,241,136,114,50,93,9,24,43,146,188,247,46,110,233,114,71,214,98,212,210,180,250,186,152,37,47,25,110,53,126,185,201,120,231,2,137,106,236,86,176,137,91,85,119,90,117,103,176,162,178,173,106,169,47,9,70,3,241,18,44,219,187,166,51,214,40,45,150,155,64,203,108,54,123,118,183,221,9,246,172,118,2,255,139,61,179,53,134,255,15,204,186,50,134,127,42,107,128,40,67,142,62,99,67,98,198,28,167,215,3,120,27,224,109,128,183,1,222,62,176,36,52,81,159,86,81,85,204,78,183,154,35,3,76,0,148,191,202,214,57,228,194,27,113,254,209,42,209,48,32,101, +3,232,189,63,130,36,240,149,123,117,244,105,0,25,226,155,35,39,195,138,192,3,50,241,167,80,244,185,117,140,246,176,247,186,245,89,18,165,177,233,214,33,169,50,115,88,242,168,73,173,191,110,150,91,103,90,202,223,96,182,101,183,157,77,10,89,211,45,30,195,163,86,254,58,181,154,15,171,245,248,108,120,241,246,232,215,53,173,202,211,225,9,231,219,196,34,191,39,156,62,134,237,129,186,232,87,25,168,219,229,224,76,123,16,234,134,50,209,169,254,149,194,120,132,52,6,71,167,131,15,191,158,99,189,163,247,249,123,193,135,37,240,85,1,81,198,193,42,220,186,39,18,178,77,136,0,99,238,91,18,230,105,32,106,165,177,71,42,137,255,91,56,161,44,144,175,238,65,176,228,20,195,110,224,167,13,72,48,30,92,101,236,221,7,98,117,239,5,105,66,156,127,26,128,71,185,120,104,21,154,120,120,112,243,192,103,192,178,13,34,132,212,233,49,102,251,254,112,32,143,94,113,191,255,219,109,183,243,8,211,5,130,31,101,179,8,183,42,146,249,130,122,42,144,185,117, +29,203,54,73,174,12,102,155,214,131,96,91,131,106,1,225,214,247,31,88,110,49,177,31,4,120,24,75,226,199,108,49,49,219,6,169,172,13,184,7,81,204,66,136,103,13,47,90,108,245,16,101,52,42,145,144,99,142,243,127,88,31,219,225,