fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4. #include <cstdint>
  5. #include <random>
  6. #include <limits>
  7. #include <functional>
  8. #include <map>
  9. #include <chrono>
  10. #include <stdexcept>
  11. #include <iterator>
  12. typedef std::vector<std::uint8_t> BType;
  13. typedef std::vector<BType> Block;
  14.  
  15. template<class T>
  16. class GhostMemory {
  17. std::size_t N;
  18. T* P;
  19. public:
  20. GhostMemory(T* Po = nullptr, std::size_t Num = 0) : N(Num), P(Po) {}
  21.  
  22. std::size_t Size() { return N; }
  23. const T* Pointer() { return P; }
  24. T& operator[](const std::size_t Idx) {
  25. if (N <= Idx)
  26. throw std::out_of_range("OutOfRange in GhostMemory<T>::operator []");
  27. return P[Idx];
  28. }
  29. const T& operator[](const std::size_t Idx) const {
  30. if (N <= Idx)
  31. throw std::out_of_range("OutOfRange in GhostMemory<T>::operator []");
  32. return P[Idx];
  33. }
  34. bool operator==(const GhostMemory<T>& In) {
  35. if (N != In.N)
  36. return false;
  37. for (std::size_t i = 0; i < N; i++) {
  38. if ((*this)[i] != In[i])
  39. return false;
  40. }
  41. return true;
  42. }
  43. /**/
  44. bool operator<(const GhostMemory<T>& In) const {
  45. if (N < In.N) return true;
  46. //if (N < In.N) return false;
  47. for (std::size_t i = 0; i < N; i++) {
  48. if ((*this)[i] != In[i])
  49. return (*this)[i]<In[i];
  50. }
  51. return false;
  52. }
  53. /**/
  54. bool operator>(const GhostMemory<T>& In) const {
  55. if (N > In.N) return true;
  56. //if (N < In.N) return false;
  57. for (std::size_t i = 0; i < N; i++) {
  58. if ((*this)[i] != In[i])
  59. return (*this)[i]>In[i];
  60. }
  61. return false;
  62. }
  63. /**/
  64. };
  65.  
  66. typedef std::vector<GhostMemory<std::uint8_t>> Block2;
  67.  
  68.  
  69. BType MakeData(std::size_t N = std::numeric_limits<std::uint16_t>::max())
  70. {
  71. std::random_device RD;
  72. std::mt19937 mt(RD());
  73. // std::mt19937 mt(0);
  74. std::uniform_int_distribution<int> uid(0, 255);
  75.  
  76. BType ret;
  77. for (std::size_t i = 0; i < N; i++)
  78. ret.push_back(uid(mt));
  79.  
  80. return ret;
  81. }
  82.  
  83. bool Append(Block& B, BType& Data)
  84. {
  85. B.push_back(Data);
  86.  
  87. return true;
  88. }
  89.  
  90. std::pair<std::size_t,BType> BlockSortEn(BType& Data)
  91. {
  92. auto T = Data;
  93. Block B;
  94. BType R;
  95. std::size_t j = 0;
  96. for (std::size_t i = 0; i < T.size(); i++) {
  97. Append(B, T);
  98. std::rotate(T.begin(), T.begin()+1, T.end());
  99. }
  100. std::sort(B.begin(), B.end());
  101.  
  102. for (std::size_t i = 0; i < B.size(); i++) {
  103. R.push_back(B[i][Data.size() - 1]);
  104. if (B[i] == Data) j = i;
  105. }
  106.  
  107. return std::make_pair(j, R);
  108. }
  109.  
  110. std::pair<std::size_t, BType> BlockSortEn2(BType& Data)
  111. {
  112. auto T = Data;
  113. Block2 B;
  114. BType R;
  115. std::size_t j = 0;
  116.  
  117. GhostMemory <std::uint8_t> D;
  118.  
  119. auto bi = std::back_inserter(T);
  120. for (auto o : Data) bi = o;
  121. //bi = '\0';//debug for ascii char data.for debugger.
  122.  
  123. for (std::size_t i = 0; i < Data.size(); i++){
  124. GhostMemory<std::uint8_t> GM(static_cast<std::uint8_t*>(&T[i]), Data.size());
  125. B.push_back(GM);
  126. }
  127. D = B[0];
  128. std::sort(B.begin(), B.end());
  129.  
  130. for (std::size_t i = 0; i < B.size(); i++){
  131. R.push_back(B[i][Data.size() - 1]);
  132. if (B[i].Pointer() == D.Pointer()) j = i;
  133. }
  134.  
  135. return std::make_pair(j, R);
  136. }
  137.  
  138. BType BlockSortDe(std::pair<std::size_t, BType>& Data)
  139. {
  140. std::vector<std::pair<std::uint8_t, std::size_t>> T;
  141. BType R;
  142. for (std::size_t i = 0; i < Data.second.size(); i++){
  143. T.push_back(std::make_pair(Data.second[i], i));
  144. }
  145. std::sort(T.begin(), T.end());
  146. std::size_t P = Data.first;
  147. for (std::size_t i = 0; i < T.size(); i++){
  148. R.push_back(T[P].first);
  149. P = T[P].second;
  150. }
  151.  
  152. return R;
  153. }
  154.  
  155. bool MakeHoge(BType D)
  156. {
  157. auto Start = std::chrono::high_resolution_clock::now();
  158.  
  159. auto BSE = BlockSortEn2(D);
  160. auto BSD = BlockSortDe(BSE);
  161.  
  162. auto End = std::chrono::high_resolution_clock::now();
  163.  
  164. auto E = std::chrono::duration_cast<std::chrono::milliseconds>(End - Start);
  165.  
  166. std::cout << "経過時間は" << E.count() << "msでした。"<<std::endl;
  167.  
  168. std::cout << "オリジナル" << std::endl;
  169. for (auto& o : D) std::cout << static_cast<int>(o) << ',';
  170. std::cout << std::endl;
  171. std::cout << "復号化" << std::endl;
  172. for (auto& o : BSD) std::cout << static_cast<int>(o) << ',';
  173. std::cout << std::endl;
  174. std::cout << "符号化@" <<BSE.first<< std::endl;
  175. for (auto& o : BSE.second) std::cout << static_cast<int>(o) << ',';
  176. std::cout << std::endl;
  177.  
  178. if (D == BSD){
  179. std::cout << "データ完全一致!" << std::endl;
  180. }
  181. else{
  182. std::cout << "データ完全一致しませんでした!" << std::endl;
  183. }
  184.  
  185. //std::cout << "経過時間は" << E.count() << "msでした。"<<std::endl;
  186.  
  187. return true;
  188. }
  189.  
  190. bool GMemTest()
  191. {
  192. std::uint8_t S1[] = "1234567";
  193. std::uint8_t S3[] = "2234567";
  194. std::uint8_t S2[] = "123456";
  195. GhostMemory<std::uint8_t> G1(S1, sizeof(S1));
  196. GhostMemory<std::uint8_t> G2(S2, sizeof(S2));
  197. GhostMemory<std::uint8_t> G3(S3, sizeof(S3));
  198.  
  199. std::vector<int> V1{ 1, 2, 3 };
  200. std::vector<int> V2{ 1, 2 };
  201. /**/
  202. if (V1 > V2)
  203. std::cout << "std::vector is Large is Greater"<<std::endl;
  204. else
  205. std::cout << "std::vector is Small is Greater"<<std::endl;
  206.  
  207. if (G1 == G1)
  208. std::cout << "GhostMemory::oeprator = is Work;"<<std::endl;
  209. else
  210. std::cout << "GhostMemory::oeprator = is Not Work;"<<std::endl;
  211.  
  212. if (G1 > G1)
  213. std::cout << "GhostMemory::oeprator = is not Work@;"<<std::endl;
  214. else
  215. std::cout << "GhostMemory::oeprator = is Work@;"<<std::endl;
  216.  
  217. if (G1 < G1)
  218. std::cout << "GhostMemory::oeprator = is not Work@;"<<std::endl;
  219. else
  220. std::cout << "GhostMemory::oeprator = is Work@;"<<std::endl;
  221.  
  222. if (G1 > G2)
  223. std::cout << "GhostMemory::oeprator > is Work;"<<std::endl;
  224. else
  225. std::cout << "GhostMemory::oeprator > is Not Work;"<<std::endl;
  226.  
  227. if (G1 < G2)
  228. std::cout << "GhostMemory::oeprator < is not Work;"<<std::endl;
  229. else
  230. std::cout << "GhostMemory::oeprator < is Work;"<<std::endl;
  231.  
  232. if (G1 > G3)
  233. std::cout << "GhostMemory::oeprator > is Not Work@2;"<<std::endl;
  234. else
  235. std::cout << "GhostMemory::oeprator > is Work@2;"<<std::endl;
  236.  
  237. if (G1 < G3)
  238. std::cout << "GhostMemory::oeprator < is Work@2;"<<std::endl;
  239. else
  240. std::cout << "GhostMemory::oeprator < is Not Work@2;"<<std::endl;
  241. /**/
  242. return true;
  243. }
  244.  
  245.  
  246. int main()
  247. {
  248. static const std::size_t L = 1024*6;
  249. auto D = MakeData(L);
  250. BType A{ 'A', 'B', 'B', 'A', 'C' }; //サンプルA
  251. BType B{ 'a','e','a','d','a','c','a','b' };//サンプルB
  252. /* */
  253. MakeHoge(A);
  254. std::cout << std::endl;
  255. MakeHoge(B);
  256. std::cout << std::endl;
  257. MakeHoge(D);
  258. std::cout << std::endl;
  259.  
  260.  
  261. //GMemTest();
  262. }
  263.  
Runtime error #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
経過時間は0msでした。
オリジナル
65,66,66,65,67,
復号化
65,66,66,65,67,
符号化@0
67,66,66,65,65,
データ完全一致!

経過時間は0msでした。
オリジナル
97,101,97,100,97,99,97,98,
復号化
97,101,97,100,97,99,97,98,
符号化@3
99,100,101,98,97,97,97,97,
データ完全一致!

経過時間は2msでした。
オリジナル
218,232,108,62,213,35,50,228,204,137,100,14,44,61,108,63,162,133,18,11,96,219,7,164,57,79,96,167,145,64,29,40,144,48,223,212,34,219,143,80,109,239,115,28,113,43,181,203,32,99,147,253,28,78,138,155,79,195,65,176,237,66,94,116,201,152,191,47,29,14,41,77,96,116,109,84,210,238,183,59,159,77,176,103,176,236,34,157,133,65,246,31,156,181,244,174,33,87,126,97,23,82,150,93,197,251,140,25,117,255,111,79,134,15,129,198,45,174,223,198,118,247,108,226,40,180,173,115,173,197,20,236,134,173,15,96,168,114,230,251,124,44,74,135,165,62,149,23,15,157,112,10,77,51,174,179,170,126,195,6,56,218,99,16,117,95,115,242,225,172,75,241,237,89,153,34,4,172,250,15,134,106,139,29,222,164,45,146,143,223,143,223,97,23,23,101,217,23,142,182,171,51,231,49,49,129,104,115,112,25,69,50,213,225,36,93,216,246,146,248,62,157,6,35,136,185,158,159,72,248,29,246,252,38,152,231,226,169,112,72,13,53,185,186,223,176,90,77,47,80,129,193,186,182,142,58,33,89,67,51,128,70,24,253,249,56,8,122,188,108,111,67,130,2,67,128,54,113,248,142,217,206,43,137,27,155,126,53,98,65,249,90,35,95,218,202,215,62,101,10,186,24,50,98,184,167,85,83,239,29,163,129,72,32,163,12,89,108,239,191,75,234,242,197,121,21,184,221,104,67,66,214,221,162,119,196,155,152,16,4,147,99,223,243,250,191,90,129,1,26,124,238,170,65,67,39,191,167,114,74,231,4,30,148,93,24,247,183,247,186,86,42,243,208,184,247,211,90,204,103,71,135,76,46,250,57,49,165,94,81,217,39,14,14,157,95,165,133,255,116,221,199,216,196,129,168,228,31,43,112,52,169,100,182,33,163,82,202,26,89,205,249,104,115,49,55,146,251,23,43,248,148,15,95,116,192,181,159,68,214,39,93,121,231,46,224,31,215,162,253,98,126,213,95,214,42,69,224,214,153,74,157,174,27,189,181,34,78,187,202,151,65,133,172,203,51,241,108,18,177,48,129,189,50,38,194,89,16,113,173,51,245,133,104,198,217,10,179,154,224,246,59,34,90,65,188,132,13,165,38,221,100,49,23,206,227,9,85,97,21,246,76,145,6,148,102,184,170,56,237,138,58,144,2,215,68,62,249,38,129,222,24,166,158,198,30,105,207,135,190,118,242,242,211,134,137,24,50,87,65,27,15,38,135,200,125,201,251,11,125,162,199,180,51,126,173,197,47,63,207,231,242,183,60,237,158,203,114,92,108,170,231,58,31,103,155,168,60,152,241,12,145,235,158,127,34,65,170,213,83,61,146,239,15,9,90,55,240,170,10,64,220,39,237,219,19,58,38,169,161,98,232,145,108,249,53,37,6,33,189,23,21,240,114,51,106,212,130,192,105,199,85,145,14,19,254,25,88,255,68,103,202,24,66,210,157,78,2,13,132,99,161,145,76,236,91,131,115,127,9,213,9,4,131,89,38,160,53,166,55,15,102,109,78,150,32,92,175,115,31,42,253,15,79,230,113,185,212,11,240,108,33,44,199,136,199,80,144,163,72,51,65,191,85,132,21,225,157,72,150,100,95,236,220,255,243,242,33,17,178,155,219,164,202,121,103,105,98,248,160,88,14,26,192,25,77,235,132,199,239,99,78,226,78,101,252,120,124,143,204,230,98,83,42,204,101,25,204,248,221,102,38,128,91,123,76,207,169,214,190,211,69,212,210,134,68,240,175,41,31,253,127,92,241,147,90,194,230,180,254,106,79,54,247,212,48,23,175,50,2,75,141,66,227,235,254,52,27,92,255,204,253,169,93,68,114,222,223,35,207,84,52,192,26,141,78,208,127,98,1,135,114,8,18,185,40,89,203,117,37,117,136,36,158,71,14,188,249,30,33,247,97,4,89,124,203,18,13,113,228,239,2,210,24,85,67,48,48,29,32,28,51,161,197,218,39,169,142,123,103,106,78,103,211,244,114,236,168,188,84,251,107,77,109,113,71,43,74,83,134,233,46,49,183,6,141,154,112,183,113,7,237,179,195,116,109,39,196,144,228,49,161,145,131,129,36,188,97,82,118,245,123,108,77,99,102,215,200,241,137,108,88,235,199,249,44,62,168,202,155,86,232,18,101,82,217,65,37,83,75,114,215,234,85,221,60,63,100,203,166,230,5,133,27,106,5,5,39,60,219,236,71,7,29,30,129,250,19,39,159,18,254,216,41,25,69,244,114,6,76,6,200,221,165,68,40,184,202,71,167,75,233,76,242,115,162,205,82,250,49,231,172,223,164,253,20,251,61,109,119,95,121,104,207,120,104,203,118,89,254,151,145,71,157,245,25,32,165,196,7,243,70,80,128,12,246,59,181,177,186,189,170,40,15,223,110,27,128,3,228,244,88,42,28,124,101,250,59,221,47,206,210,205,255,27,26,67,19,166,16,165,11,12,98,240,106,238,119,160,24,94,214,221,45,205,191,67,104,18,163,39,4,32,66,169,22,250,149,32,202,79,221,178,148,253,153,43,126,171,56,25,230,243,133,120,176,252,132,231,209,110,201,92,133,247,87,25,248,114,45,170,117,147,242,85,11,125,71,228,192,22,114,215,38,165,206,54,17,136,107,142,195,232,93,221,195,210,174,33,60,158,218,31,47,191,152,96,86,198,160,209,232,159,12,200,28,143,228,205,223,32,88,253,6,138,130,228,161,141,101,2,135,58,254,229,150,21,14,137,18,143,124,56,48,83,29,198,20,155,12,57,227,101,175,109,15,72,50,130,84,223,205,163,181,160,162,232,58,193,99,131,124,97,242,145,232,119,180,244,91,222,185,135,214,33,107,112,147,183,144,220,66,98,176,45,85,154,184,92,21,88,90,189,53,29,127,37,146,11,124,231,86,13,84,19,89,64,54,253,38,112,161,74,121,88,77,8,15,158,250,187,251,157,202,148,17,217,8,224,127,146,203,233,49,193,136,142,161,76,222,68,245,164,15,149,165,58,251,235,126,119,68,129,185,94,146,25,232,222,122,194,121,146,57,236,6,76,49,118,115,65,103,86,82,45,66,138,86,206,3,131,44,97,156,78,15,1,23,121,226,171,29,8,144,42,60,125,114,161,251,106,201,206,246,140,240,161,26,244,255,88,23,37,11,185,27,223,79,183,133,135,142,38,214,91,95,228,233,122,84,23,2,109,87,50,51,202,26,127,5,115,233,149,18,123,202,40,33,37,156,252,165,90,212,30,212,182,87,182,236,251,39,134,154,145,25,62,172,126,42,103,37,215,143,96,156,138,141,33,180,171,43,53,66,8,48,221,232,39,208,37,194,100,180,245,252,229,117,39,115,173,17,9,152,156,150,87,221,151,138,17,213,220,141,88,212,2,13,70,83,183,121,7,169,190,1,48,130,251,182,95,10,142,162,224,22,109,193,166,148,20,218,222,176,190,141,191,105,243,145,83,152,245,167,145,120,25,180,61,111,3,199,135,243,18,245,186,114,15,244,52,1,17,74,182,206,97,131,238,128,183,64,133,210,236,63,155,200,243,232,21,71,231,25,36,58,166,198,51,171,102,228,103,166,248,191,216,134,157,134,252,55,129,219,48,64,249,201,13,245,203,76,24,248,2,198,106,171,43,47,246,211,160,8,146,205,127,213,27,3,73,75,117,15,58,79,167,229,145,136,170,90,56,248,6,183,24,7,59,188,11,217,221,22,120,163,72,86,3,141,30,186,52,144,238,66,75,236,242,5,239,230,83,126,28,87,225,182,152,100,121,40,247,62,229,17,191,159,199,218,126,17,249,126,76,159,71,47,68,250,247,144,132,190,122,59,88,156,125,228,84,184,233,142,23,85,203,225,136,73,63,28,102,209,76,175,244,143,179,63,41,197,44,148,218,126,183,176,74,239,204,126,208,69,119,70,30,107,193,158,148,152,233,238,206,68,10,200,83,114,77,190,33,151,159,184,105,132,151,96,129,99,123,182,95,162,248,1,43,158,85,43,214,157,67,162,81,95,235,247,62,225,8,128,164,227,74,135,81,10,189,183,252,131,45,95,118,18,227,216,219,98,160,113,177,201,167,88,19,209,107,21,36,13,21,78,79,72,32,141,95,136,70,178,118,33,169,139,122,172,31,73,155,161,228,37,204,186,54,181,175,95,127,106,119,36,1,253,146,23,88,201,119,99,192,130,52,190,250,89,91,31,33,125,95,8,3,61,236,90,68,0,249,47,131,84,243,53,0,242,153,139,190,130,124,98,212,193,214,164,134,243,22,24,104,148,187,102,28,73,154,207,254,14,17,248,64,58,4,83,51,186,66,136,248,38,113,22,164,149,170,119,125,149,250,96,162,251,190,43,87,124,115,202,136,171,47,129,245,81,174,147,158,117,255,96,174,97,95,108,166,77,217,10,48,240,115,0,174,172,43,108,97,170,114,32,36,15,57,64,116,174,205,104,103,182,165,181,63,254,0,246,219,175,168,241,25,6,163,70,5,131,3,48,52,232,163,126,39,147,20,128,83,203,97,74,194,152,30,188,200,53,55,176,247,132,0,241,19,203,104,30,0,67,7,131,50,6,182,175,177,188,160,16,5,239,127,20,134,85,101,35,82,186,42,110,209,185,164,182,164,205,255,36,112,94,3,245,243,232,83,30,111,241,22,192,16,140,95,36,166,112,2,118,183,225,183,159,8,171,239,246,144,201,8,85,98,139,109,72,194,245,213,157,62,120,153,172,127,24,86,9,133,37,228,171,137,245,26,28,239,118,211,197,7,72,61,241,154,208,243,167,14,207,156,50,28,240,131,182,113,215,185,129,95,72,212,174,254,189,99,19,145,51,141,117,199,170,29,170,43,184,131,213,204,180,119,144,182,1,1,216,182,203,15,202,78,170,189,188,136,39,45,7,161,82,142,140,205,22,124,138,219,33,141,40,101,71,24,76,152,165,53,70,83,88,233,39,8,40,182,125,83,45,247,105,158,237,230,229,67,30,6,101,215,109,241,209,1,101,3,83,56,240,135,96,8,25,105,59,93,108,194,172,196,224,248,139,77,101,79,80,131,127,19,238,200,132,61,209,61,230,91,164,207,174,33,52,67,220,56,157,249,110,87,153,196,155,239,165,244,237,200,129,60,68,198,246,96,11,201,146,218,148,197,47,7,8,48,147,213,194,224,244,134,184,16,119,160,116,190,231,65,55,67,0,112,91,215,67,27,87,167,231,46,43,132,100,93,177,210,45,158,207,97,18,91,146,29,183,177,24,83,85,29,198,65,139,111,84,80,118,168,186,224,157,80,249,153,173,29,89,98,75,164,220,15,46,112,46,241,127,83,122,135,99,89,68,210,246,237,66,204,236,154,132,192,11,45,210,166,31,197,10,119,167,96,214,210,105,123,106,73,104,197,7,40,86,211,86,231,213,155,160,234,208,185,53,210,95,236,4,205,215,169,71,110,99,212,85,131,71,171,34,141,199,12,208,253,135,219,63,7,113,113,217,166,90,109,237,114,64,139,170,146,162,199,68,128,208,95,191,97,239,68,161,190,182,6,20,170,63,89,183,98,202,176,126,69,137,34,20,160,162,51,181,32,203,223,127,75,54,139,233,241,224,43,121,45,213,246,29,104,173,216,224,42,236,0,73,196,221,69,184,210,11,196,91,90,29,112,155,231,222,106,183,135,27,134,209,221,227,50,144,66,168,33,242,140,2,249,116,47,151,107,49,98,95,232,206,176,95,75,95,40,8,156,46,202,31,226,241,55,147,197,215,233,203,241,203,184,154,1,191,107,101,130,202,172,134,192,46,162,250,82,9,245,19,146,182,19,91,49,65,240,217,245,37,52,11,206,92,177,43,183,21,4,40,104,89,9,157,140,194,109,6,36,195,244,125,204,247,89,232,233,29,229,103,132,218,98,14,29,163,220,32,200,174,129,34,184,76,66,251,50,38,125,131,145,130,45,184,154,47,154,29,31,245,201,142,54,94,113,251,220,76,169,194,214,83,119,118,22,244,188,57,215,114,17,231,29,125,203,5,117,133,86,4,159,26,139,146,27,240,87,189,89,118,110,181,42,170,15,157,189,191,151,150,82,59,174,223,45,168,103,15,184,197,228,16,14,249,145,68,14,216,252,116,247,122,95,239,188,141,73,123,121,86,196,131,117,84,24,0,211,252,38,240,134,166,107,4,164,229,2,42,171,180,204,46,5,5,28,69,41,7,252,143,236,132,210,115,206,72,124,168,62,95,184,107,48,113,4,166,42,162,39,61,50,7,79,49,243,167,211,214,60,174,252,24,244,139,58,105,157,6,168,243,52,77,159,131,74,72,154,27,127,227,253,141,77,147,144,110,117,154,114,195,159,182,171,178,180,42,170,241,7,25,90,46,231,130,207,72,176,139,23,107,219,25,118,179,102,184,23,193,216,216,210,234,36,185,199,249,238,167,138,227,205,20,14,102,194,177,35,133,102,163,20,172,175,133,21,40,140,253,239,192,201,85,103,252,127,50,104,249,193,148,142,231,122,49,57,65,179,130,77,114,117,86,199,194,94,212,153,236,71,51,17,17,175,86,251,101,8,230,13,22,105,17,166,131,64,168,192,21,6,92,28,27,84,80,162,17,182,24,150,70,112,164,241,86,225,248,160,29,203,104,5,210,8,31,80,115,244,11,101,185,129,236,132,129,236,254,224,70,111,55,128,81,62,238,12,236,119,83,31,121,191,158,73,110,146,197,196,18,55,20,74,189,77,65,135,28,214,185,108,177,196,25,40,134,105,99,107,6,85,157,244,192,36,108,48,87,205,225,200,138,242,255,206,53,154,117,58,132,120,24,179,150,26,200,61,221,176,14,37,221,147,7,136,21,151,151,63,140,248,237,59,94,198,3,126,41,22,249,212,144,233,43,21,67,118,37,60,19,253,169,66,42,246,111,46,86,92,231,167,164,245,57,19,100,142,21,142,199,107,181,210,157,121,113,154,29,95,238,95,13,188,142,3,200,100,72,45,32,151,117,190,79,69,153,159,61,30,151,132,236,238,103,242,249,253,0,177,34,219,145,235,62,97,42,0,73,27,210,152,229,188,139,212,94,90,211,208,93,0,132,80,127,181,182,228,255,23,172,70,119,122,194,125,29,65,60,42,46,227,169,54,65,133,239,75,211,244,99,152,253,202,12,172,211,24,118,172,82,241,127,171,71,147,220,150,99,16,67,3,233,177,53,71,138,135,16,215,150,94,168,157,135,106,172,148,125,74,149,140,131,74,206,171,105,121,113,215,98,21,230,198,121,165,4,109,66,36,164,139,132,205,177,212,211,247,102,216,144,54,18,111,211,22,14,46,167,239,75,32,137,217,1,65,146,110,105,11,182,45,155,159,247,16,87,172,8,61,131,49,226,218,139,139,134,135,119,182,204,163,128,249,75,26,225,134,5,115,18,4,59,139,161,218,114,133,233,75,208,138,89,167,171,199,211,13,28,165,195,105,42,254,198,160,78,236,244,191,165,73,78,19,84,34,200,176,208,69,253,149,1,140,136,11,213,9,120,255,146,141,87,210,120,82,42,58,194,39,53,143,12,252,4,47,178,217,236,1,240,62,68,102,124,2,120,78,45,48,9,109,162,105,200,178,207,69,156,235,90,204,36,35,110,116,162,218,194,243,4,175,145,74,187,169,161,198,125,216,252,123,248,254,35,134,150,226,27,66,236,28,237,251,147,227,172,252,237,88,66,166,32,137,210,175,121,129,242,226,95,130,130,180,249,44,103,96,136,220,65,152,41,208,90,192,34,95,37,228,2,14,155,242,48,151,180,51,46,36,37,48,141,189,29,190,226,146,9,170,153,252,46,187,62,91,227,143,114,178,31,55,195,30,92,204,2,159,92,0,243,201,129,14,95,199,235,206,21,69,13,168,101,224,240,99,2,86,189,86,218,58,87,203,144,112,97,60,8,151,128,135,112,6,220,162,138,193,147,34,85,136,92,41,209,29,141,169,104,253,54,132,207,153,46,241,32,131,73,42,243,204,0,152,12,72,132,56,166,206,33,44,237,45,130,36,80,149,51,61,168,131,147,95,27,44,89,155,57,182,184,244,150,246,161,94,103,96,168,107,64,21,89,37,69,229,178,175,56,176,88,64,146,66,158,118,253,16,39,136,175,77,175,203,219,10,131,6,171,4,231,95,136,241,33,183,167,202,209,32,135,215,172,130,124,149,43,93,188,20,16,223,119,215,28,251,155,119,55,87,201,191,172,75,170,134,242,179,241,72,172,148,243,173,19,105,252,155,34,179,165,87,139,116,175,33,251,124,126,125,5,173,27,197,191,21,250,118,49,212,187,152,139,24,254,155,152,137,178,145,108,205,137,184,221,237,220,160,222,110,116,160,19,156,62,21,226,191,10,59,18,41,202,155,229,50,232,92,43,251,138,96,135,80,239,63,120,34,53,115,205,50,211,18,168,36,206,106,218,30,97,56,198,73,225,108,202,203,144,13,24,117,82,107,37,110,210,158,216,105,133,83,74,17,164,242,52,148,152,148,123,28,96,119,172,139,217,41,88,155,12,44,151,189,216,239,196,127,65,222,155,117,30,218,195,5,219,235,99,188,140,169,238,185,7,155,190,233,30,97,131,240,68,60,129,144,1,146,16,85,27,65,24,150,63,171,162,228,78,27,56,120,169,40,84,98,37,203,159,103,1,212,162,93,174,81,30,225,97,47,22,3,23,130,100,183,231,236,249,185,240,163,41,40,141,159,2,75,231,106,185,173,126,26,42,216,176,212,212,124,129,65,250,128,34,164,182,142,94,61,10,132,35,217,209,17,112,0,21,154,95,78,44,82,158,102,195,155,24,45,8,37,156,35,175,45,218,114,46,53,14,204,16,175,82,152,204,16,179,78,20,114,101,213,123,71,74,45,210,245,66,53,244,70,77,218,159,161,235,124,102,13,161,184,35,137,234,89,145,117,203,191,244,93,43,151,16,153,38,222,5,58,135,17,1,37,75,57,139,30,83,152,86,157,60,111,26,81,219,214,227,194,74,245,224,173,189,115,14,246,35,89,131,180,215,121,236,252,162,68,43,205,192,202,80,82,160,49,166,207,33,159,192,185,155,135,10,249,224,127,204,148,77,93,174,28,227,32,231,152,154,199,155,171,101,116,94,109,23,113,189,229,16,22,198,13,12,79,221,67,196,151,80,143,109,246,219,37,136,140,234,243,125,118,190,110,133,213,187,248,116,135,10,6,237,35,32,126,2,139,140,72,180,145,107,199,65,169,115,160,188,62,226,105,23,98,185,255,34,183,1,240,180,171,145,77,13,19,107,229,3,163,148,50,186,166,136,51,89,28,182,162,255,108,161,188,105,252,19,72,78,185,127,31,116,122,43,128,1,212,114,13,244,181,79,251,232,101,13,78,150,1,20,105,195,144,255,22,114,198,114,3,113,164,115,17,38,185,125,111,231,30,116,38,177,192,98,75,59,3,139,102,61,149,121,10,169,203,59,93,212,102,243,161,31,57,249,201,11,69,214,64,222,23,199,41,38,238,195,156,215,202,63,36,48,111,53,243,246,78,7,48,39,178,124,28,210,180,36,139,178,198,15,98,241,7,133,19,206,46,41,61,195,178,206,205,169,85,244,24,119,17,15,189,192,5,131,43,11,233,99,245,99,39,22,246,199,96,154,24,24,231,30,240,231,247,170,196,18,90,36,50,150,160,108,136,158,51,35,161,27,47,119,22,38,68,186,238,140,193,51,233,208,153,119,158,54,153,228,144,249,49,225,17,139,200,200,64,61,115,248,204,196,60,187,140,119,37,117,235,91,213,131,26,175,90,94,106,146,137,44,69,26,134,125,43,212,36,244,40,230,136,171,208,230,148,135,141,15,41,222,19,190,200,48,72,32,129,223,8,113,218,220,148,76,214,221,33,42,38,114,164,60,5,59,177,235,82,181,39,181,206,248,94,234,77,38,65,140,245,237,126,225,214,36,135,50,110,211,163,125,222,209,215,57,32,13,100,44,231,248,198,223,125,81,5,85,243,194,80,133,214,161,234,145,148,200,246,86,255,122,121,147,67,48,25,141,41,151,153,238,130,162,135,73,58,142,195,46,128,147,83,221,70,125,17,196,114,95,9,38,233,104,14,56,220,89,205,33,150,203,209,161,66,248,182,33,134,124,166,140,236,5,237,247,55,33,242,217,180,88,198,220,224,230,183,95,92,209,215,16,220,183,15,75,158,33,226,215,111,47,47,133,219,204,220,122,187,188,116,25,194,171,180,101,242,226,187,92,236,91,196,237,0,63,29,177,174,233,110,160,109,178,121,108,219,92,173,98,148,75,11,244,152,251,16,66,182,105,109,48,190,81,35,4,254,166,157,221,49,237,162,129,140,170,205,25,99,149,40,110,51,202,52,99,26,253,138,85,73,104,132,68,95,186,131,206,97,236,177,115,217,9,118,243,216,43,22,14,10,252,216,202,123,207,44,188,234,182,120,104,119,96,189,138,17,152,203,52,19,13,4,76,229,125,205,238,66,83,56,143,74,164,25,19,173,162,236,91,214,91,174,145,136,252,10,77,13,168,156,0,172,238,49,156,107,104,8,41,112,26,208,196,172,73,6,250,147,175,24,91,188,94,162,196,214,160,131,219,4,80,52,164,130,231,64,71,146,63,17,85,91,18,45,229,9,54,67,105,73,155,62,140,109,32,79,14,222,248,73,162,81,60,245,216,219,71,226,19,252,79,126,249,67,130,231,75,132,133,73,241,125,90,22,99,103,245,137,159,193,86,56,67,23,101,45,246,37,10,237,101,160,179,62,164,199,93,165,113,135,172,85,182,165,55,10,164,117,15,55,198,54,70,155,113,145,123,169,106,207,55,198,182,192,137,61,124,154,38,2,203,7,115,84,22,160,221,53,88,70,227,230,177,206,251,50,159,141,217,59,197,218,237,71,207,244,123,202,21,0,13,155,140,27,112,81,207,206,34,118,209,53,213,83,68,167,238,207,96,73,210,239,38,10,127,5,100,189,103,0,219,236,126,56,35,67,213,18,95,155,140,31,12,194,92,36,114,132,70,24,118,102,156,85,124,159,88,169,92,182,46,237,84,67,16,218,52,213,250,243,75,110,134,172,186,228,171,208,166,123,33,171,160,133,155,210,155,47,141,97,42,35,64,147,215,101,157,1,252,141,2,149,133,35,85,87,118,85,14,188,183,166,67,126,113,151,107,48,24,234,143,94,110,236,217,132,49,206,158,176,225,114,233,171,150,167,172,224,75,48,14,211,255,8,31,182,199,18,253,113,30,170,172,26,34,181,99,5,224,42,16,178,86,190,216,7,125,157,48,152,172,204,193,16,204,119,210,222,186,79,229,155,98,82,108,81,119,226,58,19,50,224,171,101,243,205,153,37,244,170,247,125,192,114,52,5,87,202,74,14,255,86,44,175,194,222,117,7,15,91,122,239,222,172,155,51,144,100,203,24,212,89,86,169,69,23,226,226,170,79,188,67,152,51,244,27,87,85,143,242,196,123,158,146,85,15,130,143,42,214,100,237,11,155,10,238,214,59,108,153,77,210,195,67,225,246,103,160,88,12,57,197,31,118,127,76,96,31,185,59,190,174,246,79,22,196,214,174,222,87,154,197,25,158,233,221,54,91,227,243,12,80,86,136,217,233,40,187,94,136,115,70,230,21,224,87,15,4,53,71,242,42,50,243,141,253,248,249,8,17,56,222,28,240,159,28,1,120,208,246,98,22,145,235,224,78,34,128,240,125,9,205,230,79,240,74,230,227,123,144,116,157,253,87,136,50,47,73,14,140,47,16,5,185,46,206,220,172,67,147,224,44,84,54,193,255,124,38,246,198,98,6,252,16,46,149,176,93,48,119,219,201,27,4,93,36,179,36,193,204,22,67,208,195,190,237,5,226,95,162,140,206,192,107,105,94,206,6,224,142,171,92,204,217,231,86,104,203,226,184,124,24,48,184,211,227,106,78,199,140,21,247,173,21,54,37,35,183,171,247,154,231,7,14,146,166,159,239,116,130,137,42,111,130,134,144,62,161,221,231,103,84,0,183,9,212,142,42,235,33,74,130,187,204,116,205,229,238,8,253,6,184,160,14,104,245,72,168,166,91,154,19,20,196,236,146,20,129,196,214,79,174,124,127,65,235,185,115,237,205,183,106,134,210,50,24,131,223,54,228,36,126,35,169,69,56,29,65,36,151,179,19,58,243,140,227,242,71,229,48,239,89,144,108,36,168,119,28,72,191,220,38,111,74,242,233,127,134,218,41,199,116,124,134,3,163,249,154,108,193,2,33,24,236,196,44,192,141,218,4,49,144,54,236,243,97,70,81,136,69,251,214,158,207,104,222,222,171,51,50,99,7,89,252,189,249,97,82,84,245,60,213,165,93,225,56,134,14,115,133,247,227,219,36,42,103,14,233,182,38,61,128,59,208,159,188,177,170,154,68,230,197,90,198,145,178,242,74,173,167,236,147,169,130,82,220,246,41,183,11,15,242,222,127,92,78,117,31,65,172,122,212,62,127,61,86,222,148,50,62,187,136,252,161,72,120,188,69,178,191,145,151,204,54,106,122,96,11,49,88,158,233,232,156,209,67,151,170,82,82,109,130,120,79,200,248,192,6,134,5,8,62,91,117,89,175,67,224,113,237,25,102,146,61,229,101,243,140,189,42,227,156,233,100,202,231,145,232,90,194,120,25,220,138,20,85,106,75,1,58,180,16,20,95,195,167,212,18,53,169,66,215,151,50,78,118,240,145,197,159,60,100,250,250,233,237,118,73,92,168,84,59,252,140,79,126,184,129,86,106,218,148,250,145,112,132,147,196,154,140,206,5,93,149,223,0,192,247,239,211,99,35,224,171,211,223,188,32,87,126,192,149,109,154,64,157,1,31,14,157,183,46,183,98,181,98,67,110,130,189,252,54,175,222,87,39,208,99,225,41,63,221,192,101,135,193,202,4,218,75,181,80,173,70,64,61,182,235,81,15,44,150,189,160,224,127,90,195,193,117,10,141,145,14,120,229,162,138,150,65,11,95,186,48,220,15,180,57,194,180,252,75,79,146,132,74,81,238,74,101,43,140,183,28,212,171,36,36,253,140,66,136,156,186,101,230,240,81,60,75,137,183,236,126,72,106,252,179,6,20,62,83,230,174,70,61,74,200,77,64,16,134,8,96,123,64,112,61,163,80,225,189,24,234,145,197,0,66,144,94,113,135,40,227,101,250,143,149,201,182,205,50,104,20,210,114,72,111,180,159,167,198,2,45,196,170,186,184,217,175,3,198,132,132,117,247,22,83,110,201,78,150,7,0,121,96,240,218,211,53,218,180,242,27,216,92,164,11,121,213,149,178,59,90,93,106,155,49,75,31,40,121,96,189,203,103,247,202,220,52,139,124,201,177,99,251,123,233,78,87,119,225,221,192,15,228,190,148,160,236,94,42,172,53,73,85,151,97,78,237,40,76,77,99,160,126,231,98,13,21,27,141,206,250,155,80,199,219,126,224,190,49,100,64,78,94,59,104,102,230,83,201,116,171,109,76,175,15,124,74,174,91,255,129,252,134,63,83,81,171,201,108,63,170,81,227,4,245,226,165,49,244,184,216,12,84,157,238,16,171,172,221,113,232,171,250,170,54,86,42,68,180,202,191,158,195,180,245,136,238,17,186,47,224,130,223,189,195,238,174,230,15,227,238,155,143,183,217,188,87,27,115,184,151,54,159,42,118,137,88,36,99,68,5,116,58,127,241,200,
復号化
218,232,108,62,213,35,50,228,204,137,100,14,44,61,108,63,162,133,18,11,96,219,7,164,57,79,96,167,145,64,29,40,144,48,223,212,34,219,143,80,109,239,115,28,113,43,181,203,32,99,147,253,28,78,138,155,79,195,65,176,237,66,94,116,201,152,191,47,29,14,41,77,96,116,109,84,210,238,183,59,159,77,176,103,176,236,34,157,133,65,246,31,156,181,244,174,33,87,126,97,23,82,150,93,197,251,140,25,117,255,111,79,134,15,129,198,45,174,223,198,118,247,108,226,40,180,173,115,173,197,20,236,134,173,15,96,168,114,230,251,124,44,74,135,165,62,149,23,15,157,112,10,77,51,174,179,170,126,195,6,56,218,99,16,117,95,115,242,225,172,75,241,237,89,153,34,4,172,250,15,134,106,139,29,222,164,45,146,143,223,143,223,97,23,23,101,217,23,142,182,171,51,231,49,49,129,104,115,112,25,69,50,213,225,36,93,216,246,146,248,62,157,6,35,136,185,158,159,72,248,29,246,252,38,152,231,226,169,112,72,13,53,185,186,223,176,90,77,47,80,129,193,186,182,142,58,33,89,67,51,128,70,24,253,249,56,8,122,188,108,111,67,130,2,67,128,54,113,248,142,217,206,43,137,27,155,126,53,98,65,249,90,35,95,218,202,215,62,101,10,186,24,50,98,184,167,85,83,239,29,163,129,72,32,163,12,89,108,239,191,75,234,242,197,121,21,184,221,104,67,66,214,221,162,119,196,155,152,16,4,147,99,223,243,250,191,90,129,1,26,124,238,170,65,67,39,191,167,114,74,231,4,30,148,93,24,247,183,247,186,86,42,243,208,184,247,211,90,204,103,71,135,76,46,250,57,49,165,94,81,217,39,14,14,157,95,165,133,255,116,221,199,216,196,129,168,228,31,43,112,52,169,100,182,33,163,82,202,26,89,205,249,104,115,49,55,146,251,23,43,248,148,15,95,116,192,181,159,68,214,39,93,121,231,46,224,31,215,162,253,98,126,213,95,214,42,69,224,214,153,74,157,174,27,189,181,34,78,187,202,151,65,133,172,203,51,241,108,18,177,48,129,189,50,38,194,89,16,113,173,51,245,133,104,198,217,10,179,154,224,246,59,34,90,65,188,132,13,165,38,221,100,49,23,206,227,9,85,97,21,246,76,145,6,148,102,184,170,56,237,138,58,144,2,215,68,62,249,38,129,222,24,166,158,198,30,105,207,135,190,118,242,242,211,134,137,24,50,87,65,27,15,38,135,200,125,201,251,11,125,162,199,180,51,126,173,197,47,63,207,231,242,183,60,237,158,203,114,92,108,170,231,58,31,103,155,168,60,152,241,12,145,235,158,127,34,65,170,213,83,61,146,239,15,9,90,55,240,170,10,64,220,39,237,219,19,58,38,169,161,98,232,145,108,249,53,37,6,33,189,23,21,240,114,51,106,212,130,192,105,199,85,145,14,19,254,25,88,255,68,103,202,24,66,210,157,78,2,13,132,99,161,145,76,236,91,131,115,127,9,213,9,4,131,89,38,160,53,166,55,15,102,109,78,150,32,92,175,115,31,42,253,15,79,230,113,185,212,11,240,108,33,44,199,136,199,80,144,163,72,51,65,191,85,132,21,225,157,72,150,100,95,236,220,255,243,242,33,17,178,155,219,164,202,121,103,105,98,248,160,88,14,26,192,25,77,235,132,199,239,99,78,226,78,101,252,120,124,143,204,230,98,83,42,204,101,25,204,248,221,102,38,128,91,123,76,207,169,214,190,211,69,212,210,134,68,240,175,41,31,253,127,92,241,147,90,194,230,180,254,106,79,54,247,212,48,23,175,50,2,75,141,66,227,235,254,52,27,92,255,204,253,169,93,68,114,222,223,35,207,84,52,192,26,141,78,208,127,98,1,135,114,8,18,185,40,89,203,117,37,117,136,36,158,71,14,188,249,30,33,247,97,4,89,124,203,18,13,113,228,239,2,210,24,85,67,48,48,29,32,28,51,161,197,218,39,169,142,123,103,106,78,103,211,244,114,236,168,188,84,251,107,77,109,113,71,43,74,83,134,233,46,49,183,6,141,154,112,183,113,7,237,179,195,116,109,39,196,144,228,49,161,145,131,129,36,188,97,82,118,245,123,108,77,99,102,215,200,241,137,108,88,235,199,249,44,62,168,202,155,86,232,18,101,82,217,65,37,83,75,114,215,234,85,221,60,63,100,203,166,230,5,133,27,106,5,5,39,60,219,236,71,7,29,30,129,250,19,39,159,18,254,216,41,25,69,244,114,6,76,6,200,221,165,68,40,184,202,71,167,75,233,76,242,115,162,205,82,250,49,231,172,223,164,253,20,251,61,109,119,95,121,104,207,120,104,203,118,89,254,151,145,71,157,245,25,32,165,196,7,243,70,80,128,12,246,59,181,177,186,189,170,40,15,223,110,27,128,3,228,244,88,42,28,124,101,250,59,221,47,206,210,205,255,27,26,67,19,166,16,165,11,12,98,240,106,238,119,160,24,94,214,221,45,205,191,67,104,18,163,39,4,32,66,169,22,250,149,32,202,79,221,178,148,253,153,43,126,171,56,25,230,243,133,120,176,252,132,231,209,110,201,92,133,247,87,25,248,114,45,170,117,147,242,85,11,125,71,228,192,22,114,215,38,165,206,54,17,136,107,142,195,232,93,221,195,210,174,33,60,158,218,31,47,191,152,96,86,198,160,209,232,159,12,200,28,143,228,205,223,32,88,253,6,138,130,228,161,141,101,2,135,58,254,229,150,21,14,137,18,143,124,56,48,83,29,198,20,155,12,57,227,101,175,109,15,72,50,130,84,223,205,163,181,160,162,232,58,193,99,131,124,97,242,145,232,119,180,244,91,222,185,135,214,33,107,112,147,183,144,220,66,98,176,45,85,154,184,92,21,88,90,189,53,29,127,37,146,11,124,231,86,13,84,19,89,64,54,253,38,112,161,74,121,88,77,8,15,158,250,187,251,157,202,148,17,217,8,224,127,146,203,233,49,193,136,142,161,76,222,68,245,164,15,149,165,58,251,235,126,119,68,129,185,94,146,25,232,222,122,194,121,146,57,236,6,76,49,118,115,65,103,86,82,45,66,138,86,206,3,131,44,97,156,78,15,1,23,121,226,171,29,8,144,42,60,125,114,161,251,106,201,206,246,140,240,161,26,244,255,88,23,37,11,185,27,223,79,183,133,135,142,38,214,91,95,228,233,122,84,23,2,109,87,50,51,202,26,127,5,115,233,149,18,123,202,40,33,37,156,252,165,90,212,30,212,182,87,182,236,251,39,134,154,145,25,62,172,126,42,103,37,215,143,96,156,138,141,33,180,171,43,53,66,8,48,221,232,39,208,37,194,100,180,245,252,229,117,39,115,173,17,9,152,156,150,87,221,151,138,17,213,220,141,88,212,2,13,70,83,183,121,7,169,190,1,48,130,251,182,95,10,142,162,224,22,109,193,166,148,20,218,222,176,190,141,191,105,243,145,83,152,245,167,145,120,25,180,61,111,3,199,135,243,18,245,186,114,15,244,52,1,17,74,182,206,97,131,238,128,183,64,133,210,236,63,155,200,243,232,21,71,231,25,36,58,166,198,51,171,102,228,103,166,248,191,216,134,157,134,252,55,129,219,48,64,249,201,13,245,203,76,24,248,2,198,106,171,43,47,246,211,160,8,146,205,127,213,27,3,73,75,117,15,58,79,167,229,145,136,170,90,56,248,6,183,24,7,59,188,11,217,221,22,120,163,72,86,3,141,30,186,52,144,238,66,75,236,242,5,239,230,83,126,28,87,225,182,152,100,121,40,247,62,229,17,191,159,199,218,126,17,249,126,76,159,71,47,68,250,247,144,132,190,122,59,88,156,125,228,84,184,233,142,23,85,203,225,136,73,63,28,102,209,76,175,244,143,179,63,41,197,44,148,218,126,183,176,74,239,204,126,208,69,119,70,30,107,193,158,148,152,233,238,206,68,10,200,83,114,77,190,33,151,159,184,105,132,151,96,129,99,123,182,95,162,248,1,43,158,85,43,214,157,67,162,81,95,235,247,62,225,8,128,164,227,74,135,81,10,189,183,252,131,45,95,118,18,227,216,219,98,160,113,177,201,167,88,19,209,107,21,36,13,21,78,79,72,32,141,95,136,70,178,118,33,169,139,122,172,31,73,155,161,228,37,204,186,54,181,175,95,127,106,119,36,1,253,146,23,88,201,119,99,192,130,52,190,250,89,91,31,33,125,95,8,3,61,236,90,68,0,249,47,131,84,243,53,0,242,153,139,190,130,124,98,212,193,214,164,134,243,22,24,104,148,187,102,28,73,154,207,254,14,17,248,64,58,4,83,51,186,66,136,248,38,113,22,164,149,170,119,125,149,250,96,162,251,190,43,87,124,115,202,136,171,47,129,245,81,174,147,158,117,255,96,174,97,95,108,166,77,217,10,48,240,115,0,174,172,43,108,97,170,114,32,36,15,57,64,116,174,205,104,103,182,165,181,63,254,0,246,219,175,168,241,25,6,163,70,5,131,3,48,52,232,163,126,39,147,20,128,83,203,97,74,194,152,30,188,200,53,55,176,247,132,0,241,19,203,104,30,0,67,7,131,50,6,182,175,177,188,160,16,5,239,127,20,134,85,101,35,82,186,42,110,209,185,164,182,164,205,255,36,112,94,3,245,243,232,83,30,111,241,22,192,16,140,95,36,166,112,2,118,183,225,183,159,8,171,239,246,144,201,8,85,98,139,109,72,194,245,213,157,62,120,153,172,127,24,86,9,133,37,228,171,137,245,26,28,239,118,211,197,7,72,61,241,154,208,243,167,14,207,156,50,28,240,131,182,113,215,185,129,95,72,212,174,254,189,99,19,145,51,141,117,199,170,29,170,43,184,131,213,204,180,119,144,182,1,1,216,182,203,15,202,78,170,189,188,136,39,45,7,161,82,142,140,205,22,124,138,219,33,141,40,101,71,24,76,152,165,53,70,83,88,233,39,8,40,182,125,83,45,247,105,158,237,230,229,67,30,6,101,215,109,241,209,1,101,3,83,56,240,135,96,8,25,105,59,93,108,194,172,196,224,248,139,77,101,79,80,131,127,19,238,200,132,61,209,61,230,91,164,207,174,33,52,67,220,56,157,249,110,87,153,196,155,239,165,244,237,200,129,60,68,198,246,96,11,201,146,218,148,197,47,7,8,48,147,213,194,224,244,134,184,16,119,160,116,190,231,65,55,67,0,112,91,215,67,27,87,167,231,46,43,132,100,93,177,210,45,158,207,97,18,91,146,29,183,177,24,83,85,29,198,65,139,111,84,80,118,168,186,224,157,80,249,153,173,29,89,98,75,164,220,15,46,112,46,241,127,83,122,135,99,89,68,210,246,237,66,204,236,154,132,192,11,45,210,166,31,197,10,119,167,96,214,210,105,123,106,73,104,197,7,40,86,211,86,231,213,155,160,234,208,185,53,210,95,236,4,205,215,169,71,110,99,212,85,131,71,171,34,141,199,12,208,253,135,219,63,7,113,113,217,166,90,109,237,114,64,139,170,146,162,199,68,128,208,95,191,97,239,68,161,190,182,6,20,170,63,89,183,98,202,176,126,69,137,34,20,160,162,51,181,32,203,223,127,75,54,139,233,241,224,43,121,45,213,246,29,104,173,216,224,42,236,0,73,196,221,69,184,210,11,196,91,90,29,112,155,231,222,106,183,135,27,134,209,221,227,50,144,66,168,33,242,140,2,249,116,47,151,107,49,98,95,232,206,176,95,75,95,40,8,156,46,202,31,226,241,55,147,197,215,233,203,241,203,184,154,1,191,107,101,130,202,172,134,192,46,162,250,82,9,245,19,146,182,19,91,49,65,240,217,245,37,52,11,206,92,177,43,183,21,4,40,104,89,9,157,140,194,109,6,36,195,244,125,204,247,89,232,233,29,229,103,132,218,98,14,29,163,220,32,200,174,129,34,184,76,66,251,50,38,125,131,145,130,45,184,154,47,154,29,31,245,201,142,54,94,113,251,220,76,169,194,214,83,119,118,22,244,188,57,215,114,17,231,29,125,203,5,117,133,86,4,159,26,139,146,27,240,87,189,89,118,110,181,42,170,15,157,189,191,151,150,82,59,174,223,45,168,103,15,184,197,228,16,14,249,145,68,14,216,252,116,247,122,95,239,188,141,73,123,121,86,196,131,117,84,24,0,211,252,38,240,134,166,107,4,164,229,2,42,171,180,204,46,5,5,28,69,41,7,252,143,236,132,210,115,206,72,124,168,62,95,184,107,48,113,4,166,42,162,39,61,50,7,79,49,243,167,211,214,60,174,252,24,244,139,58,105,157,6,168,243,52,77,159,131,74,72,154,27,127,227,253,141,77,147,144,110,117,154,114,195,159,182,171,178,180,42,170,241,7,25,90,46,231,130,207,72,176,139,23,107,219,25,118,179,102,184,23,193,216,216,210,234,36,185,199,249,238,167,138,227,205,20,14,102,194,177,35,133,102,163,20,172,175,133,21,40,140,253,239,192,201,85,103,252,127,50,104,249,193,148,142,231,122,49,57,65,179,130,77,114,117,86,199,194,94,212,153,236,71,51,17,17,175,86,251,101,8,230,13,22,105,17,166,131,64,168,192,21,6,92,28,27,84,80,162,17,182,24,150,70,112,164,241,86,225,248,160,29,203,104,5,210,8,31,80,115,244,11,101,185,129,236,132,129,236,254,224,70,111,55,128,81,62,238,12,236,119,83,31,121,191,158,73,110,146,197,196,18,55,20,74,189,77,65,135,28,214,185,108,177,196,25,40,134,105,99,107,6,85,157,244,192,36,108,48,87,205,225,200,138,242,255,206,53,154,117,58,132,120,24,179,150,26,200,61,221,176,14,37,221,147,7,136,21,151,151,63,140,248,237,59,94,198,3,126,41,22,249,212,144,233,43,21,67,118,37,60,19,253,169,66,42,246,111,46,86,92,231,167,164,245,57,19,100,142,21,142,199,107,181,210,157,121,113,154,29,95,238,95,13,188,142,3,200,100,72,45,32,151,117,190,79,69,153,159,61,30,151,132,236,238,103,242,249,253,0,177,34,219,145,235,62,97,42,0,73,27,210,152,229,188,139,212,94,90,211,208,93,0,132,80,127,181,182,228,255,23,172,70,119,122,194,125,29,65,60,42,46,227,169,54,65,133,239,75,211,244,99,152,253,202,12,172,211,24,118,172,82,241,127,171,71,147,220,150,99,16,67,3,233,177,53,71,138,135,16,215,150,94,168,157,135,106,172,148,125,74,149,140,131,74,206,171,105,121,113,215,98,21,230,198,121,165,4,109,66,36,164,139,132,205,177,212,211,247,102,216,144,54,18,111,211,22,14,46,167,239,75,32,137,217,1,65,146,110,105,11,182,45,155,159,247,16,87,172,8,61,131,49,226,218,139,139,134,135,119,182,204,163,128,249,75,26,225,134,5,115,18,4,59,139,161,218,114,133,233,75,208,138,89,167,171,199,211,13,28,165,195,105,42,254,198,160,78,236,244,191,165,73,78,19,84,34,200,176,208,69,253,149,1,140,136,11,213,9,120,255,146,141,87,210,120,82,42,58,194,39,53,143,12,252,4,47,178,217,236,1,240,62,68,102,124,2,120,78,45,48,9,109,162,105,200,178,207,69,156,235,90,204,36,35,110,116,162,218,194,243,4,175,145,74,187,169,161,198,125,216,252,123,248,254,35,134,150,226,27,66,236,28,237,251,147,227,172,252,237,88,66,166,32,137,210,175,121,129,242,226,95,130,130,180,249,44,103,96,136,220,65,152,41,208,90,192,34,95,37,228,2,14,155,242,48,151,180,51,46,36,37,48,141,189,29,190,226,146,9,170,153,252,46,187,62,91,227,143,114,178,31,55,195,30,92,204,2,159,92,0,243,201,129,14,95,199,235,206,21,69,13,168,101,224,240,99,2,86,189,86,218,58,87,203,144,112,97,60,8,151,128,135,112,6,220,162,138,193,147,34,85,136,92,41,209,29,141,169,104,253,54,132,207,153,46,241,32,131,73,42,243,204,0,152,12,72,132,56,166,206,33,44,237,45,130,36,80,149,51,61,168,131,147,95,27,44,89,155,57,182,184,244,150,246,161,94,103,96,168,107,64,21,89,37,69,229,178,175,56,176,88,64,146,66,158,118,253,16,39,136,175,77,175,203,219,10,131,6,171,4,231,95,136,241,33,183,167,202,209,32,135,215,172,130,124,149,43,93,188,20,16,223,119,215,28,251,155,119,55,87,201,191,172,75,170,134,242,179,241,72,172,148,243,173,19,105,252,155,34,179,165,87,139,116,175,33,251,124,126,125,5,173,27,197,191,21,250,118,49,212,187,152,139,24,254,155,152,137,178,145,108,205,137,184,221,237,220,160,222,110,116,160,19,156,62,21,226,191,10,59,18,41,202,155,229,50,232,92,43,251,138,96,135,80,239,63,120,34,53,115,205,50,211,18,168,36,206,106,218,30,97,56,198,73,225,108,202,203,144,13,24,117,82,107,37,110,210,158,216,105,133,83,74,17,164,242,52,148,152,148,123,28,96,119,172,139,217,41,88,155,12,44,151,189,216,239,196,127,65,222,155,117,30,218,195,5,219,235,99,188,140,169,238,185,7,155,190,233,30,97,131,240,68,60,129,144,1,146,16,85,27,65,24,150,63,171,162,228,78,27,56,120,169,40,84,98,37,203,159,103,1,212,162,93,174,81,30,225,97,47,22,3,23,130,100,183,231,236,249,185,240,163,41,40,141,159,2,75,231,106,185,173,126,26,42,216,176,212,212,124,129,65,250,128,34,164,182,142,94,61,10,132,35,217,209,17,112,0,21,154,95,78,44,82,158,102,195,155,24,45,8,37,156,35,175,45,218,114,46,53,14,204,16,175,82,152,204,16,179,78,20,114,101,213,123,71,74,45,210,245,66,53,244,70,77,218,159,161,235,124,102,13,161,184,35,137,234,89,145,117,203,191,244,93,43,151,16,153,38,222,5,58,135,17,1,37,75,57,139,30,83,152,86,157,60,111,26,81,219,214,227,194,74,245,224,173,189,115,14,246,35,89,131,180,215,121,236,252,162,68,43,205,192,202,80,82,160,49,166,207,33,159,192,185,155,135,10,249,224,127,204,148,77,93,174,28,227,32,231,152,154,199,155,171,101,116,94,109,23,113,189,229,16,22,198,13,12,79,221,67,196,151,80,143,109,246,219,37,136,140,234,243,125,118,190,110,133,213,187,248,116,135,10,6,237,35,32,126,2,139,140,72,180,145,107,199,65,169,115,160,188,62,226,105,23,98,185,255,34,183,1,240,180,171,145,77,13,19,107,229,3,163,148,50,186,166,136,51,89,28,182,162,255,108,161,188,105,252,19,72,78,185,127,31,116,122,43,128,1,212,114,13,244,181,79,251,232,101,13,78,150,1,20,105,195,144,255,22,114,198,114,3,113,164,115,17,38,185,125,111,231,30,116,38,177,192,98,75,59,3,139,102,61,149,121,10,169,203,59,93,212,102,243,161,31,57,249,201,11,69,214,64,222,23,199,41,38,238,195,156,215,202,63,36,48,111,53,243,246,78,7,48,39,178,124,28,210,180,36,139,178,198,15,98,241,7,133,19,206,46,41,61,195,178,206,205,169,85,244,24,119,17,15,189,192,5,131,43,11,233,99,245,99,39,22,246,199,96,154,24,24,231,30,240,231,247,170,196,18,90,36,50,150,160,108,136,158,51,35,161,27,47,119,22,38,68,186,238,140,193,51,233,208,153,119,158,54,153,228,144,249,49,225,17,139,200,200,64,61,115,248,204,196,60,187,140,119,37,117,235,91,213,131,26,175,90,94,106,146,137,44,69,26,134,125,43,212,36,244,40,230,136,171,208,230,148,135,141,15,41,222,19,190,200,48,72,32,129,223,8,113,218,220,148,76,214,221,33,42,38,114,164,60,5,59,177,235,82,181,39,181,206,248,94,234,77,38,65,140,245,237,126,225,214,36,135,50,110,211,163,125,222,209,215,57,32,13,100,44,231,248,198,223,125,81,5,85,243,194,80,133,214,161,234,145,148,200,246,86,255,122,121,147,67,48,25,141,41,151,153,238,130,162,135,73,58,142,195,46,128,147,83,221,70,125,17,196,114,95,9,38,233,104,14,56,220,89,205,33,150,203,209,161,66,248,182,33,134,124,166,140,236,5,237,247,55,33,242,217,180,88,198,220,224,230,183,95,92,209,215,16,220,183,15,75,158,33,226,215,111,47,47,133,219,204,220,122,187,188,116,25,194,171,180,101,242,226,187,92,236,91,196,237,0,63,29,177,174,233,110,160,109,178,121,108,219,92,173,98,148,75,11,244,152,251,16,66,182,105,109,48,190,81,35,4,254,166,157,221,49,237,162,129,140,170,205,25,99,149,40,110,51,202,52,99,26,253,138,85,73,104,132,68,95,186,131,206,97,236,177,115,217,9,118,243,216,43,22,14,10,252,216,202,123,207,44,188,234,182,120,104,119,96,189,138,17,152,203,52,19,13,4,76,229,125,205,238,66,83,56,143,74,164,25,19,173,162,236,91,214,91,174,145,136,252,10,77,13,168,156,0,172,238,49,156,107,104,8,41,112,26,208,196,172,73,6,250,147,175,24,91,188,94,162,196,214,160,131,219,4,80,52,164,130,231,64,71,146,63,17,85,91,18,45,229,9,54,67,105,73,155,62,140,109,32,79,14,222,248,73,162,81,60,245,216,219,71,226,19,252,79,126,249,67,130,231,75,132,133,73,241,125,90,22,99,103,245,137,159,193,86,56,67,23,101,45,246,37,10,237,101,160,179,62,164,199,93,165,113,135,172,85,182,165,55,10,164,117,15,55,198,54,70,155,113,145,123,169,106,207,55,198,182,192,137,61,124,154,38,2,203,7,115,84,22,160,221,53,88,70,227,230,177,206,251,50,159,141,217,59,197,218,237,71,207,244,123,202,21,0,13,155,140,27,112,81,207,206,34,118,209,53,213,83,68,167,238,207,96,73,210,239,38,10,127,5,100,189,103,0,219,236,126,56,35,67,213,18,95,155,140,31,12,194,92,36,114,132,70,24,118,102,156,85,124,159,88,169,92,182,46,237,84,67,16,218,52,213,250,243,75,110,134,172,186,228,171,208,166,123,33,171,160,133,155,210,155,47,141,97,42,35,64,147,215,101,157,1,252,141,2,149,133,35,85,87,118,85,14,188,183,166,67,126,113,151,107,48,24,234,143,94,110,236,217,132,49,206,158,176,225,114,233,171,150,167,172,224,75,48,14,211,255,8,31,182,199,18,253,113,30,170,172,26,34,181,99,5,224,42,16,178,86,190,216,7,125,157,48,152,172,204,193,16,204,119,210,222,186,79,229,155,98,82,108,81,119,226,58,19,50,224,171,101,243,205,153,37,244,170,247,125,192,114,52,5,87,202,74,14,255,86,44,175,194,222,117,7,15,91,122,239,222,172,155,51,144,100,203,24,212,89,86,169,69,23,226,226,170,79,188,67,152,51,244,27,87,85,143,242,196,123,158,146,85,15,130,143,42,214,100,237,11,155,10,238,214,59,108,153,77,210,195,67,225,246,103,160,88,12,57,197,31,118,127,76,96,31,185,59,190,174,246,79,22,196,214,174,222,87,154,197,25,158,233,221,54,91,227,243,12,80,86,136,217,233,40,187,94,136,115,70,230,21,224,87,15,4,53,71,242,42,50,243,141,253,248,249,8,17,56,222,28,240,159,28,1,120,208,246,98,22,145,235,224,78,34,128,240,125,9,205,230,79,240,74,230,227,123,144,116,157,253,87,136,50,47,73,14,140,47,16,5,185,46,206,220,172,67,147,224,44,84,54,193,255,124,38,246,198,98,6,252,16,46,149,176,93,48,119,219,201,27,4,93,36,179,36,193,204,22,67,208,195,190,237,5,226,95,162,140,206,192,107,105,94,206,6,224,142,171,92,204,217,231,86,104,203,226,184,124,24,48,184,211,227,106,78,199,140,21,247,173,21,54,37,35,183,171,247,154,231,7,14,146,166,159,239,116,130,137,42,111,130,134,144,62,161,221,231,103,84,0,183,9,212,142,42,235,33,74,130,187,204,116,205,229,238,8,253,6,184,160,14,104,245,72,168,166,91,154,19,20,196,236,146,20,129,196,214,79,174,124,127,65,235,185,115,237,205,183,106,134,210,50,24,131,223,54,228,36,126,35,169,69,56,29,65,36,151,179,19,58,243,140,227,242,71,229,48,239,89,144,108,36,168,119,28,72,191,220,38,111,74,242,233,127,134,218,41,199,116,124,134,3,163,249,154,108,193,2,33,24,236,196,44,192,141,218,4,49,144,54,236,243,97,70,81,136,69,251,214,158,207,104,222,222,171,51,50,99,7,89,252,189,249,97,82,84,245,60,213,165,93,225,56,134,14,115,133,247,227,219,36,42,103,14,233,182,38,61,128,59,208,159,188,177,170,154,68,230,197,90,198,145,178,242,74,173,167,236,147,169,130,82,220,246,41,183,11,15,242,222,127,92,78,117,31,65,172,122,212,62,127,61,86,222,148,50,62,187,136,252,161,72,120,188,69,178,191,145,151,204,54,106,122,96,11,49,88,158,233,232,156,209,67,151,170,82,82,109,130,120,79,200,248,192,6,134,5,8,62,91,117,89,175,67,224,113,237,25,102,146,61,229,101,243,140,189,42,227,156,233,100,202,231,145,232,90,194,120,25,220,138,20,85,106,75,1,58,180,16,20,95,195,167,212,18,53,169,66,215,151,50,78,118,240,145,197,159,60,100,250,250,233,237,118,73,92,168,84,59,252,140,79,126,184,129,86,106,218,148,250,145,112,132,147,196,154,140,206,5,93,149,223,0,192,247,239,211,99,35,224,171,211,223,188,32,87,126,192,149,109,154,64,157,1,31,14,157,183,46,183,98,181,98,67,110,130,189,252,54,175,222,87,39,208,99,225,41,63,221,192,101,135,193,202,4,218,75,181,80,173,70,64,61,182,235,81,15,44,150,189,160,224,127,90,195,193,117,10,141,145,14,120,229,162,138,150,65,11,95,186,48,220,15,180,57,194,180,252,75,79,146,132,74,81,238,74,101,43,140,183,28,212,171,36,36,253,140,66,136,156,186,101,230,240,81,60,75,137,183,236,126,72,106,252,179,6,20,62,83,230,174,70,61,74,200,77,64,16,134,8,96,123,64,112,61,163,80,225,189,24,234,145,197,0,66,144,94,113,135,40,227,101,250,143,149,201,182,205,50,104,20,210,114,72,111,180,159,167,198,2,45,196,170,186,184,217,175,3,198,132,132,117,247,22,83,110,201,78,150,7,0,121,96,240,218,211,53,218,180,242,27,216,92,164,11,121,213,149,178,59,90,93,106,155,49,75,31,40,121,96,189,203,103,247,202,220,52,139,124,201,177,99,251,123,233,78,87,119,225,221,192,15,228,190,148,160,236,94,42,172,53,73,85,151,97,78,237,40,76,77,99,160,126,231,98,13,21,27,141,206,250,155,80,199,219,126,224,190,49,100,64,78,94,59,104,102,230,83,201,116,171,109,76,175,15,124,74,174,91,255,129,252,134,63,83,81,171,201,108,63,170,81,227,4,245,226,165,49,244,184,216,12,84,157,238,16,171,172,221,113,232,171,250,170,54,86,42,68,180,202,191,158,195,180,245,136,238,17,186,47,224,130,223,189,195,238,174,230,15,227,238,155,143,183,217,188,87,27,115,184,151,54,159,42,118,137,88,36,99,68,5,116,58,127,241,200,
符号化@5245
21,112,237,197,30,42,236,67,7,93,204,156,115,253,84,223,24,103,132,53,92,254,68,182,52,150,15,129,157,17,248,190,75,217,209,28,98,149,144,154,128,103,1,236,183,157,36,212,78,228,193,229,198,130,50,159,99,23,112,124,101,126,141,204,248,38,239,144,140,22,131,8,27,101,114,198,206,59,86,229,134,175,111,142,128,67,94,231,39,21,252,218,15,18,13,219,58,97,27,165,9,16,86,107,113,34,243,236,202,171,227,35,46,106,134,5,5,222,60,81,52,206,127,134,127,68,203,70,192,230,125,16,104,195,99,237,236,16,242,179,182,37,157,109,195,114,236,107,21,30,192,253,183,145,25,157,131,50,248,253,76,112,206,10,73,98,150,47,231,117,241,71,197,78,24,197,50,99,63,203,216,67,241,147,185,45,219,121,113,196,41,95,77,249,114,96,210,255,45,39,104,7,66,172,5,201,134,223,56,225,29,160,60,40,159,217,101,238,213,95,229,227,15,48,217,213,86,17,89,146,125,183,127,82,135,217,191,170,252,112,197,38,219,61,117,95,55,121,217,101,81,68,37,155,135,14,165,183,192,96,201,65,18,244,164,146,85,251,237,105,37,210,96,52,136,188,43,212,75,155,88,155,152,13,243,216,163,11,241,202,31,159,199,238,128,143,19,198,77,98,36,230,144,211,72,2,101,86,32,18,2,0,102,132,69,77,95,114,201,22,39,254,145,88,98,176,29,100,22,104,129,20,160,134,145,21,73,7,2,14,31,85,71,53,167,48,68,79,103,115,16,74,78,87,239,27,141,81,220,117,36,117,109,183,253,7,148,173,198,55,175,134,85,250,164,23,170,8,220,103,17,203,40,230,192,11,114,152,47,160,228,180,229,253,252,251,99,146,247,89,99,184,64,192,151,166,238,204,42,204,193,135,67,215,20,135,173,119,51,115,8,1,63,209,54,225,138,74,105,17,33,162,238,229,125,138,148,114,14,126,115,133,203,59,91,212,196,196,97,213,232,54,149,137,104,211,108,8,118,243,199,159,52,154,250,58,219,179,252,78,84,182,57,173,13,99,245,160,67,25,222,241,133,88,127,226,60,14,205,188,6,55,138,16,1,78,147,146,127,198,34,6,163,19,104,148,197,253,202,183,192,150,13,107,133,173,43,206,232,13,92,64,142,136,0,121,230,132,62,98,23,97,140,191,47,43,211,243,119,204,247,90,13,224,255,192,221,205,98,84,113,241,79,16,118,39,41,169,84,149,189,97,88,251,97,142,146,105,67,23,139,109,1,3,217,255,48,184,222,49,69,84,183,154,155,124,137,186,202,71,177,210,127,175,160,22,13,70,211,244,50,65,182,222,120,203,24,48,189,33,252,93,76,70,139,241,164,245,231,196,145,112,41,192,254,7,205,237,8,140,219,48,197,120,116,101,120,56,146,87,245,172,126,27,111,202,1,202,69,159,192,131,14,150,112,75,161,99,213,201,65,255,95,161,78,85,226,28,244,67,52,133,140,87,154,110,135,21,137,174,173,73,242,185,146,159,92,32,5,119,102,253,126,123,63,115,42,200,13,89,124,183,135,174,236,26,50,222,215,171,47,7,154,48,64,56,125,173,154,246,90,231,53,209,239,14,170,63,146,189,83,85,160,139,233,248,104,67,249,139,195,218,233,198,70,83,231,29,4,61,113,141,152,212,117,81,231,140,1,91,75,115,228,218,178,161,117,172,8,58,127,197,83,246,8,96,166,224,202,29,41,57,29,114,4,109,188,223,150,203,35,72,241,209,166,75,72,45,72,25,220,149,181,227,242,2,40,221,108,206,174,174,235,174,58,214,31,182,219,205,190,207,182,118,123,141,241,6,158,168,55,30,175,153,137,120,127,181,147,59,192,206,78,171,236,128,155,26,255,129,84,212,177,81,237,213,42,56,101,133,246,90,36,177,254,6,184,51,126,156,37,223,132,99,119,21,32,204,171,46,219,63,90,25,130,225,88,192,255,92,228,214,180,65,136,66,95,108,93,234,129,179,6,168,212,36,53,246,23,54,36,245,118,89,1,65,107,117,119,219,127,8,33,208,98,228,103,14,95,133,153,154,239,182,77,22,220,253,248,42,50,102,249,15,252,89,215,58,116,17,50,142,165,153,9,41,252,124,163,233,217,99,136,194,5,162,214,117,251,16,126,19,218,48,181,67,109,232,87,220,95,170,202,237,169,7,185,141,4,149,31,25,21,41,29,226,8,68,233,135,244,121,69,126,216,175,199,163,46,225,14,217,8,141,246,63,218,18,152,92,15,97,224,88,97,33,60,242,82,144,86,214,36,126,186,137,159,166,181,180,2,94,83,143,26,189,142,224,73,86,66,31,105,131,233,216,171,171,71,190,149,172,31,224,153,122,46,206,101,93,1,113,177,170,68,125,85,23,92,14,249,137,124,78,224,27,131,249,197,15,12,86,207,196,33,100,33,39,24,72,78,82,176,131,237,164,182,210,223,114,198,130,2,221,11,74,121,175,18,101,83,204,51,206,231,233,114,111,15,195,16,192,14,183,252,156,185,231,42,90,182,153,112,76,197,140,97,191,111,197,71,50,77,27,171,249,47,155,116,154,4,31,221,186,43,45,75,212,107,67,48,7,67,3,219,200,56,108,36,107,93,177,1,37,8,242,157,24,109,186,8,144,229,10,100,231,115,122,91,155,11,107,190,76,49,4,238,228,57,160,46,233,132,118,249,131,250,221,79,165,175,131,61,210,156,251,189,136,87,148,151,24,24,51,205,127,135,72,227,36,251,148,205,69,19,35,229,42,71,158,180,171,149,72,136,114,180,67,145,155,28,198,77,162,83,50,110,171,193,203,152,173,244,114,37,203,254,33,243,202,220,186,242,80,112,130,84,218,48,243,46,189,249,200,43,165,177,4,172,221,126,34,39,206,160,18,13,185,209,211,111,66,206,144,21,169,9,198,170,221,142,204,128,253,75,158,151,252,186,84,223,144,79,64,165,166,18,247,65,119,111,252,49,241,53,31,15,207,90,249,171,69,126,124,86,27,225,83,220,132,175,97,6,14,17,170,83,90,245,215,250,15,49,164,75,155,180,12,188,12,146,31,64,226,231,142,19,15,218,139,116,117,5,73,138,36,1,232,42,19,165,135,75,10,246,122,178,105,203,237,94,214,4,183,82,5,246,7,185,217,128,250,84,164,97,37,65,221,129,81,159,157,42,68,168,33,214,196,245,39,183,81,94,159,39,70,127,44,251,180,64,137,38,8,83,102,112,51,64,41,132,200,146,209,3,72,156,240,20,8,187,168,235,215,157,212,155,165,248,144,179,44,25,50,108,247,188,247,81,68,219,146,73,0,202,179,134,170,60,239,151,236,108,108,150,47,41,181,77,107,145,89,248,200,70,231,100,123,57,183,114,88,35,154,131,10,214,48,150,27,87,29,217,231,29,170,115,151,54,77,198,38,1,220,199,34,31,195,57,90,51,127,127,49,133,98,129,53,109,169,245,238,238,237,220,140,186,45,0,146,88,144,32,16,237,24,67,169,141,27,161,76,55,16,0,84,26,56,215,229,65,147,85,89,104,191,54,98,21,166,2,111,249,172,209,188,157,221,22,35,52,175,195,90,99,206,145,165,162,240,215,132,62,255,93,199,119,239,83,42,38,60,89,159,154,134,222,47,21,169,44,28,25,169,208,126,79,207,188,221,211,11,42,37,25,136,208,163,132,128,119,174,173,244,243,97,53,13,224,150,172,221,54,136,88,115,236,158,101,113,159,236,123,169,103,53,64,171,145,202,131,237,219,125,242,21,53,112,48,79,129,100,15,163,7,19,163,126,114,161,206,12,157,74,245,241,207,140,28,109,95,159,172,47,0,131,135,136,3,165,53,118,85,106,158,141,28,105,31,248,0,96,198,133,202,83,71,131,132,43,238,161,33,227,44,125,153,143,242,124,17,145,20,97,61,131,240,114,176,111,194,106,148,249,49,239,224,127,37,98,252,95,243,83,73,231,60,2,15,98,172,218,233,239,2,167,191,66,172,6,203,135,6,184,40,127,246,24,126,220,109,209,123,148,161,4,145,233,88,145,10,234,90,10,200,189,148,41,108,76,139,107,130,141,52,175,159,114,153,166,70,25,157,246,156,73,179,228,224,95,120,21,233,64,226,106,92,50,28,13,201,109,202,72,34,106,141,99,160,97,32,246,7,106,190,78,101,57,140,252,111,75,58,214,223,170,155,120,12,202,186,15,230,181,4,202,12,143,31,84,132,70,47,79,194,151,199,36,84,181,155,163,135,157,125,135,235,174,190,240,162,128,162,108,70,83,245,112,94,26,170,74,250,120,86,150,170,97,117,98,82,97,161,23,175,44,80,235,35,163,101,130,172,205,48,232,119,98,125,4,66,3,213,213,133,37,63,24,70,22,200,214,127,230,74,30,145,70,230,128,147,62,85,103,13,115,122,117,19,207,44,168,237,111,27,40,12,228,109,130,131,82,188,242,118,146,16,83,158,24,138,167,35,17,9,8,134,201,20,156,212,191,34,87,199,73,45,6,172,23,234,5,169,72,133,24,231,54,186,255,193,103,46,231,129,80,152,89,2,178,121,96,117,138,40,189,61,241,211,155,175,246,224,247,188,222,109,50,27,85,78,43,33,32,253,165,110,222,27,16,182,240,55,5,58,48,141,150,28,160,160,167,255,137,244,176,237,53,121,21,41,59,49,159,180,23,141,83,108,32,25,104,194,51,21,131,19,33,99,212,250,29,12,189,4,35,239,234,237,44,138,117,63,40,220,26,247,7,118,125,91,249,18,25,9,170,34,236,176,59,175,166,191,88,208,232,147,127,197,235,211,94,165,85,89,19,196,214,62,15,128,236,18,166,230,214,24,236,235,236,112,244,62,54,174,159,184,6,194,136,232,127,114,201,216,73,219,32,206,169,30,171,95,86,187,127,27,208,148,4,244,176,169,90,59,39,5,199,77,162,100,43,150,59,36,232,165,112,236,78,142,165,212,161,90,116,143,144,54,66,187,185,188,150,59,105,194,24,248,125,114,182,238,147,140,34,75,129,176,154,183,97,117,15,45,119,175,226,141,231,18,226,182,157,62,11,68,208,20,14,213,35,91,98,81,210,100,29,122,135,122,246,76,207,152,77,28,8,151,138,103,199,143,250,79,103,15,255,119,121,167,11,121,247,207,85,223,126,62,141,225,30,112,243,203,151,249,188,174,206,30,44,108,206,191,124,127,198,231,218,215,246,84,53,181,192,89,155,230,49,253,85,173,219,66,183,50,23,183,124,161,12,15,105,240,181,50,150,218,189,52,211,245,36,239,135,77,22,105,129,193,32,25,244,77,132,235,119,110,147,208,233,177,137,13,221,49,200,132,150,152,19,194,169,130,5,233,144,63,214,60,141,1,251,62,232,204,85,74,23,40,77,18,171,107,192,215,237,227,11,114,6,23,168,186,180,229,171,124,227,78,124,187,221,139,15,68,25,118,133,179,148,14,158,28,99,247,171,104,212,189,159,42,168,42,204,231,65,44,94,121,123,229,31,246,228,176,104,68,78,238,99,203,85,203,107,233,67,50,203,221,40,59,205,249,129,120,73,24,29,73,133,120,86,121,207,14,50,169,110,22,226,195,25,67,107,103,134,182,171,210,184,216,58,247,20,192,162,30,191,188,19,27,123,85,103,227,254,127,54,183,134,94,93,198,135,222,231,251,169,51,206,86,240,72,166,99,209,82,151,184,151,168,251,191,156,192,33,136,199,30,145,23,19,241,240,144,36,232,61,201,123,82,137,43,188,160,59,255,95,92,185,154,93,225,145,121,247,89,145,194,175,94,140,116,105,4,139,171,102,116,2,77,61,82,149,9,160,22,90,80,215,143,223,40,249,71,146,222,35,144,67,190,75,73,233,118,83,209,42,37,50,94,61,60,246,215,48,70,108,38,255,139,42,72,18,125,30,17,166,135,157,115,41,46,43,64,169,27,0,36,144,145,107,29,38,70,154,48,183,38,253,28,109,7,94,165,155,126,121,3,16,160,230,23,121,182,113,8,13,221,224,54,94,198,244,135,212,186,215,170,248,218,240,192,237,210,167,83,203,196,20,77,36,218,125,38,143,154,22,22,75,68,168,225,244,240,189,164,5,239,175,104,118,136,7,104,131,14,169,242,39,173,27,124,53,210,177,5,185,95,80,61,188,30,249,5,101,195,96,31,199,239,248,144,110,110,201,64,139,160,95,94,204,255,252,222,193,164,75,155,78,203,229,154,24,131,114,91,16,5,37,170,110,151,141,145,37,132,158,25,95,119,178,67,250,237,87,203,24,89,49,31,42,80,24,25,2,125,34,239,78,190,9,82,198,158,24,47,168,106,140,155,126,69,236,109,104,201,83,70,170,180,153,238,16,10,96,232,135,162,204,223,48,87,81,132,145,194,63,2,130,210,182,207,252,62,22,56,133,72,1,14,9,183,149,197,100,43,123,74,40,0,202,95,178,157,105,175,194,122,198,31,11,23,93,215,116,231,190,233,247,106,255,83,139,220,8,222,119,172,91,148,166,96,213,91,142,105,245,73,227,196,145,99,244,18,202,251,252,102,184,178,255,251,143,15,131,130,28,235,87,251,174,212,116,22,120,130,61,85,134,72,139,89,11,26,126,240,70,194,134,11,148,223,182,241,33,185,60,243,38,119,7,11,247,200,29,244,229,198,163,156,32,218,173,83,36,163,3,172,155,236,176,236,249,87,67,235,124,43,51,218,79,87,170,204,98,219,237,160,79,10,26,115,131,239,172,185,158,29,252,62,196,124,223,118,241,224,222,253,208,95,233,224,241,80,224,205,27,58,43,27,80,250,67,61,51,55,20,38,151,46,8,238,68,34,163,90,201,174,131,200,124,163,184,185,96,49,162,60,196,68,48,80,20,15,55,38,32,185,132,121,47,30,255,67,45,145,192,179,169,50,23,109,190,172,95,111,116,15,238,130,74,110,212,101,231,224,138,164,67,48,5,10,213,5,3,252,61,7,166,85,32,159,140,47,4,91,196,99,80,145,125,168,89,240,186,184,160,24,97,97,247,188,85,10,217,72,200,104,114,146,0,13,43,132,58,236,198,75,112,105,144,154,235,139,54,236,103,252,151,162,7,175,5,149,9,157,132,105,117,35,245,243,183,160,65,64,110,80,47,114,65,92,115,165,124,6,225,16,56,79,252,210,20,40,15,33,26,139,211,130,35,39,216,240,110,236,244,172,27,106,127,83,170,164,157,116,155,138,58,183,65,113,36,2,162,71,96,74,240,122,157,128,1,134,148,133,74,113,207,101,38,185,32,253,199,140,7,117,188,87,166,81,95,225,85,17,94,37,193,66,108,145,202,230,39,35,199,86,96,245,95,66,145,187,14,134,43,69,130,146,192,118,204,241,245,152,75,205,32,32,35,171,189,151,220,237,253,66,208,251,6,71,156,162,78,162,124,167,200,176,152,106,57,244,248,3,98,65,87,169,52,164,139,218,2,26,59,64,36,153,17,188,172,54,242,199,251,155,155,14,253,139,252,16,62,187,149,1,188,129,43,243,238,157,142,154,162,243,136,166,246,65,63,40,252,135,3,138,33,25,75,188,253,26,146,220,32,47,161,51,10,6,40,29,48,190,34,27,159,192,243,188,100,233,135,212,201,182,182,169,82,136,10,224,23,58,107,21,248,148,53,130,56,219,234,215,80,227,18,250,244,155,124,223,146,28,252,85,129,58,203,8,40,216,49,134,50,66,51,89,147,203,123,247,80,119,246,183,196,212,52,228,195,76,85,141,154,19,167,249,151,175,161,171,243,180,178,232,250,89,167,113,131,161,229,174,234,191,198,234,240,231,242,219,12,22,226,37,1,236,253,94,139,91,121,102,71,64,158,65,79,106,255,45,170,14,19,110,127,8,201,61,246,55,221,39,193,121,128,241,131,4,77,174,236,250,112,132,55,48,64,71,67,251,117,99,248,202,166,222,163,98,220,204,30,6,152,172,230,193,52,158,190,104,218,145,44,172,218,178,253,233,62,250,99,124,80,192,61,2,74,15,164,46,213,143,93,125,78,78,229,179,78,24,138,24,151,156,82,215,220,72,50,171,44,33,134,244,43,215,184,151,202,196,132,85,113,47,32,8,30,221,254,191,21,41,33,67,36,48,44,145,0,155,194,65,67,83,191,182,155,187,148,231,9,76,48,201,17,82,210,38,148,60,83,244,99,89,205,16,253,207,214,108,208,242,69,120,249,87,54,212,151,170,184,91,96,72,47,113,124,184,109,170,21,249,141,117,53,236,196,134,85,87,152,73,241,179,247,11,88,20,195,252,210,106,172,89,73,138,250,202,229,70,222,251,27,185,13,95,238,196,254,45,213,73,103,199,7,63,133,178,202,112,196,14,168,37,8,207,19,97,102,49,88,96,152,31,136,232,195,227,69,37,64,101,62,105,125,86,213,214,225,210,224,14,15,210,34,134,168,9,74,14,15,251,166,84,85,71,56,116,75,136,119,36,191,43,82,147,66,235,123,193,185,206,191,166,237,45,214,210,60,25,88,105,15,141,183,232,39,4,240,54,197,153,181,76,158,59,124,2,203,77,50,218,180,195,151,208,33,137,191,166,155,211,184,188,116,119,248,82,38,198,103,248,150,110,98,119,99,214,171,20,181,101,115,198,22,220,189,155,148,240,35,243,209,252,112,142,7,246,169,228,99,49,13,108,68,51,169,139,62,155,214,159,114,80,42,160,252,73,67,212,109,221,237,63,130,229,220,95,94,146,125,115,116,142,171,160,173,95,46,96,215,182,32,102,18,240,6,144,120,61,33,211,232,204,29,3,205,29,3,92,245,74,222,7,114,113,10,52,214,36,22,34,185,62,219,182,91,75,128,4,112,17,167,223,121,16,13,226,152,182,149,135,221,191,179,252,213,49,93,95,182,28,32,38,239,19,210,66,4,53,183,108,217,168,134,36,208,17,186,124,193,254,24,146,58,56,49,203,103,243,71,184,201,119,191,238,96,245,231,89,150,159,183,243,195,79,87,173,68,46,66,18,155,124,92,13,45,96,96,36,61,13,94,72,118,236,64,62,129,175,6,66,120,227,253,53,86,35,215,205,88,253,52,141,123,226,65,147,33,39,38,187,7,76,10,207,140,240,42,199,189,29,250,184,20,238,226,63,151,136,97,45,149,179,75,139,9,177,30,196,78,247,140,65,108,42,244,6,226,71,212,106,180,136,222,182,126,127,142,155,224,51,206,116,228,180,233,33,63,16,182,194,42,167,81,228,136,224,8,183,232,87,170,122,174,42,220,23,196,191,225,118,135,65,62,153,215,202,119,106,72,222,20,134,194,133,152,12,171,231,167,0,4,227,134,115,243,247,5,153,113,80,92,180,185,19,74,224,115,126,104,157,93,207,210,244,230,93,74,96,79,200,91,81,0,51,116,214,59,45,238,177,190,60,212,217,76,147,116,240,35,23,178,89,136,16,17,26,181,101,92,210,172,4,219,182,44,77,54,76,221,98,183,56,223,149,206,77,202,72,222,200,216,158,103,65,55,120,183,0,194,92,18,233,201,236,188,29,181,175,38,108,113,230,93,205,59,114,149,16,70,109,39,137,221,17,229,171,69,139,195,200,47,145,252,151,36,160,143,16,118,65,24,10,34,174,237,242,58,210,178,151,199,15,25,217,171,204,72,111,33,240,40,68,171,131,218,119,195,100,130,194,230,51,189,82,110,165,244,75,98,34,192,163,54,59,127,43,39,107,156,144,190,146,17,248,100,233,11,92,212,251,123,66,131,234,40,186,164,225,28,164,85,103,142,159,6,57,198,31,216,119,201,74,181,61,87,34,49,0,41,220,43,6,140,157,238,242,128,230,46,89,205,112,83,79,106,147,225,188,33,35,126,29,143,118,100,137,247,189,134,102,161,34,154,159,95,226,126,43,115,203,45,6,98,102,15,40,69,48,244,186,21,137,84,182,208,238,11,18,5,208,31,129,214,235,38,78,215,101,222,192,136,209,106,53,36,113,249,98,10,82,17,95,30,204,51,222,247,156,245,95,50,193,170,177,185,168,172,68,46,226,40,148,62,60,212,74,122,78,130,213,250,59,93,223,244,160,79,120,168,217,91,36,161,122,187,65,189,229,99,239,13,177,159,14,30,44,14,33,225,141,140,129,90,74,86,87,254,100,173,96,150,186,27,10,170,157,15,223,96,151,113,252,130,169,77,251,224,117,48,118,135,132,139,176,228,59,161,19,214,86,29,116,155,195,52,226,197,152,205,239,65,250,95,141,1,178,189,47,121,202,17,244,39,201,248,72,203,189,248,132,221,22,168,228,26,52,90,244,134,177,221,130,206,125,99,182,44,126,116,159,239,205,0,108,204,140,159,58,195,49,138,249,107,109,129,135,36,212,23,54,58,227,243,38,12,199,37,140,90,122,122,74,25,108,102,57,169,175,213,90,218,72,218,126,55,142,79,210,165,179,105,102,238,114,95,61,158,208,90,221,142,189,36,165,197,170,177,236,204,11,17,242,239,216,86,39,67,147,119,153,45,208,129,162,22,73,172,20,91,145,104,211,31,173,154,57,41,148,173,230,242,145,27,146,147,161,59,184,93,167,94,22,178,29,158,129,166,55,29,56,246,2,114,223,230,161,3,90,254,86,55,104,88,248,68,141,182,23,107,162,136,105,164,246,142,41,3,44,78,154,117,162,86,171,221,159,80,95,132,235,185,12,190,188,26,200,74,10,3,135,237,238,225,32,34,105,139,241,6,215,155,148,79,144,249,249,219,110,192,110,171,83,88,243,245,11,116,177,124,149,87,106,125,193,253,123,103,82,51,46,123,51,215,184,87,15,32,192,164,216,115,157,187,168,41,130,98,180,108,167,218,247,100,125,2,182,124,100,181,172,152,169,245,83,189,29,19,158,89,104,202,87,37,100,241,117,150,175,32,85,104,146,233,243,92,14,152,193,90,180,151,42,90,187,16,239,228,127,182,213,37,172,248,92,219,143,66,125,25,255,227,140,170,89,182,115,162,174,146,108,243,223,206,132,237,45,43,4,228,87,116,9,125,89,210,164,86,140,94,235,166,207,217,19,255,165,238,115,11,182,131,36,49,74,232,140,178,47,46,23,201,181,141,177,166,123,106,178,130,35,238,158,158,104,105,132,14,76,164,81,63,71,154,39,126,176,41,211,128,39,78,75,233,59,171,243,234,67,26,171,154,120,12,241,217,41,202,118,61,156,102,19,231,203,110,92,222,134,160,5,184,2,177,134,53,214,20,132,87,212,27,155,66,181,110,45,195,137,28,77,206,119,216,133,84,73,45,68,199,50,111,172,218,190,86,247,239,242,246,110,118,90,167,171,184,75,103,212,0,14,88,185,167,90,223,43,247,122,99,24,139,93,1,212,106,9,249,94,1,28,72,30,49,98,69,177,176,9,11,67,127,62,170,53,126,101,91,121,231,245,60,133,147,131,17,50,45,52,135,225,68,95,238,211,69,196,194,38,91,42,224,43,251,196,133,193,196,28,169,96,76,94,66,219,209,119,114,209,202,91,2,113,147,101,226,57,180,37,16,66,31,205,135,113,102,156,197,114,190,184,254,243,27,158,191,102,42,1,199,252,216,193,245,227,173,189,93,14,125,137,17,115,77,198,101,81,139,141,82,236,113,184,242,183,142,35,11,204,136,178,240,141,106,158,197,134,16,86,4,132,56,45,161,199,148,226,146,106,77,53,162,30,95,240,113,20,200,197,131,96,203,237,107,138,227,246,129,135,216,108,216,199,34,34,155,246,119,133,81,5,60,0,164,48,163,191,64,202,67,136,144,251,56,204,25,213,218,147,237,6,206,16,198,82,236,217,214,214,59,157,160,233,85,79,196,83,38,248,184,172,37,87,214,200,61,79,225,63,93,116,209,161,48,184,38,41,64,129,56,76,175,174,231,160,194,232,242,86,65,29,222,239,218,91,210,125,104,114,14,149,129,205,222,174,131,27,143,15,16,198,203,143,172,186,211,130,174,84,48,99,162,46,5,216,241,147,254,172,235,21,67,160,8,249,47,6,186,50,35,245,126,69,220,101,194,154,196,62,49,213,99,93,30,73,176,26,203,21,242,87,183,80,205,126,119,67,86,71,150,108,119,78,242,5,62,190,245,231,226,121,203,242,21,33,49,23,31,81,206,28,221,164,57,40,211,230,91,42,46,147,214,138,18,247,70,66,15,140,91,127,37,197,168,54,161,144,162,125,102,153,130,37,186,15,71,50,143,95,113,3,182,164,107,45,189,62,71,155,230,61,29,252,76,167,254,79,120,69,152,205,166,8,174,70,205,239,102,61,204,79,40,208,83,227,194,224,68,21,74,237,101,25,114,74,154,71,17,111,24,167,121,51,170,130,190,130,124,217,4,126,221,75,142,46,202,32,92,49,132,86,155,152,183,207,240,44,86,243,221,162,243,145,50,195,251,218,145,98,233,209,52,113,95,25,89,232,190,88,217,144,134,203,133,75,123,11,156,38,174,228,242,184,115,114,3,14,215,51,158,158,250,152,139,210,94,215,137,24,161,24,188,160,75,140,42,145,182,177,156,117,219,161,251,77,145,65,88,199,145,95,227,42,217,95,140,57,66,176,210,219,153,61,76,92,162,160,12,219,183,129,143,20,196,167,204,114,97,24,110,95,132,75,54,78,231,182,121,129,196,190,100,113,6,78,44,248,176,246,218,46,252,241,10,109,233,245,56,60,49,7,244,115,39,221,158,5,28,229,62,157,136,172,144,205,81,95,236,106,131,153,186,227,249,124,195,210,169,38,19,233,167,10,228,146,83,210,80,97,167,133,48,199,109,159,28,5,155,95,108,253,216,74,247,122,5,171,1,131,79,230,27,224,98,11,21,48,128,28,38,56,118,28,140,185,55,68,1,65,96,30,170,98,152,0,111,168,46,136,226,179,164,51,73,46,82,200,92,61,127,203,109,233,75,236,180,243,71,155,164,227,178,147,76,33,97,0,134,231,143,234,242,33,15,115,129,101,74,118,103,138,194,227,135,134,168,84,7,250,236,234,230,101,58,50,105,102,208,49,148,85,0,42,101,42,118,200,245,255,53,223,115,85,51,36,15,53,228,180,191,211,69,211,207,195,224,24,175,184,11,37,181,13,49,22,236,157,165,26,9,157,137,217,164,84,210,104,129,99,118,51,180,103,68,152,18,31,13,194,60,74,4,140,3,180,213,65,14,45,220,224,12,21,243,174,200,198,208,225,42,206,239,216,150,38,22,47,109,0,210,29,159,117,237,235,40,133,204,33,211,45,118,116,170,176,250,171,231,21,24,